diff --git a/.DS_Store b/.DS_Store index 0f52f76..4614058 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/IoTConnect.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate b/IoTConnect.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate index 857840e..4e5dba2 100644 Binary files a/IoTConnect.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate and b/IoTConnect.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/IoTConnect/IoTConnect.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist b/IoTConnect/IoTConnect.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist index 3255c3e..0b5ff69 100644 --- a/IoTConnect/IoTConnect.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/IoTConnect/IoTConnect.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ IoTConnect.xcscheme_^#shared#^_ orderHint - 5 + 3 diff --git a/IoTConnect2.zip b/IoTConnect2.zip new file mode 100644 index 0000000..f8beaa8 Binary files /dev/null and b/IoTConnect2.zip differ diff --git a/IoTConnect2/IoTConnect2.xcodeproj/project.pbxproj b/IoTConnect2/IoTConnect2.xcodeproj/project.pbxproj index c839cb5..279ad6e 100644 --- a/IoTConnect2/IoTConnect2.xcodeproj/project.pbxproj +++ b/IoTConnect2/IoTConnect2.xcodeproj/project.pbxproj @@ -700,6 +700,7 @@ DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; + "DYLIB_CURRENT_VERSION[arch=*]" = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_MODULE_VERIFIER = YES; GENERATE_INFOPLIST_FILE = YES; diff --git a/IoTConnect2/IoTConnect2.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist b/IoTConnect2/IoTConnect2.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist index 6541732..327c4a0 100644 --- a/IoTConnect2/IoTConnect2.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/IoTConnect2/IoTConnect2.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ IoTConnect2.xcscheme_^#shared#^_ orderHint - 5 + 2 IoTConnect2_AWS.xcscheme_^#shared#^_ diff --git a/IoTConnect2/IoTConnect2.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate b/IoTConnect2/IoTConnect2.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate index 327ae26..2934580 100644 Binary files a/IoTConnect2/IoTConnect2.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate and b/IoTConnect2/IoTConnect2.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/.DS_Store b/IoTConnect2/IoTConnect2/IoTConnect_2.0/.DS_Store index 80f14b2..33f8545 100644 Binary files a/IoTConnect2/IoTConnect2/IoTConnect_2.0/.DS_Store and b/IoTConnect2/IoTConnect2/IoTConnect_2.0/.DS_Store differ diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/Config.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/Config.swift index 4936380..ce9f882 100644 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/Config.swift +++ b/IoTConnect2/IoTConnect2/IoTConnect_2.0/Config.swift @@ -36,7 +36,8 @@ public enum CommandType:Int{ } struct SDKURL { - static let discoveryHost = "https://discovery.iotconnect.io" + static let discoveryHostAZ = "https://discovery.iotconnect.io" + static let discoveryHostAZEMEA = "https://eudiscovery.iotconnect.io" static let discoveryHostAWS = "https://jzbybwq654.execute-api.us-east-1.amazonaws.com/Prod" static let discoveryHostAWSPOC = "https://awsdiscovery.iotconnect.io"//"https://awspoc.iotconnect.io" static let discoveryHostAWSPROD = "https://discoveryconsole.iotconnect.io" @@ -60,18 +61,18 @@ struct SDKURL { static func discovery(_ strDiscoveryURL:String, _ cpId:String, _ lang:String, _ ver:String, _ env:String, _ pf:String) -> String { //kirtan - - #if IOTAWS - if env == IOTCEnvironment.PREQA.rawValue{ - return String(format: "\(SDKURL.discoveryHostAWS)/api/v\(ver)/dsdk/cpid/\(cpId)/env/\(env)/\(endPointAWS)\(pf)") - }else if env == IOTCEnvironment.POC.rawValue{ - return String(format: "\(SDKURL.discoveryHostAWSPOC)/api/v\(ver)/dsdk/cpid/\(cpId)/env/\(env)/\(endPointAWS)\(pf)") - }else{ - return String(format: "\(SDKURL.discoveryHostAWSPROD)/api/v\(ver)/dsdk/cpid/\(cpId)/env/\(env)/\(endPointAWS)\(pf)") - } - #else - return String(format: "\(strDiscoveryURL)/api/v\(ver)/dsdk/cpid/\(cpId)/env/\(env)") - #endif + return String(format: "\(strDiscoveryURL)/api/v\(ver)/dsdk/cpid/\(cpId)/env/\(env)/\(endPointAWS)\(pf)") +// #if IOTAWS +// if env == IOTCEnvironment.PREQA.rawValue{ +// return String(format: "\(SDKURL.discoveryHostAWS)/api/v\(ver)/dsdk/cpid/\(cpId)/env/\(env)/\(endPointAWS)\(pf)") +// }else if env == IOTCEnvironment.POC.rawValue{ +// return String(format: "\(SDKURL.discoveryHostAWSPOC)/api/v\(ver)/dsdk/cpid/\(cpId)/env/\(env)/\(endPointAWS)\(pf)") +// }else{ +// return String(format: "\(SDKURL.discoveryHostAWSPROD)/api/v\(ver)/dsdk/cpid/\(cpId)/env/\(env)/\(endPointAWS)\(pf)") +// } +// #else +// return String(format: "\(strDiscoveryURL)/api/v\(ver)/dsdk/cpid/\(cpId)/env/\(env)") +// #endif } } @@ -232,5 +233,6 @@ struct Dictkeys{ static let medsageTypekey = "mt" static let displayNamekey = "dn" static let protocolkey = "p" + static let message = "message" } diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/ErrosLog.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/ErrosLog.swift index 4d5a0f3..c8e76fd 100644 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/ErrosLog.swift +++ b/IoTConnect2/IoTConnect2/IoTConnect_2.0/ErrosLog.swift @@ -27,6 +27,8 @@ struct Log {//class case ERR_IN13 = "Please give uniqueID value" case ERR_IN14 = "Client connection closed" case ERR_IN15 = "Please give env value" + case ERR_IN16 = "Please enter valid CPID" + case ERR_IN17 = "Please enter valid UniqueID" case ERR_SD02 = "It does not matched with payload's 'uniqueId'" case ERR_SD06 = "Missing required parameter 'data'" case ERR_SD10 = "Publish data failed : MQTT connection not found" diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/IoTConnectManager/IoTConnectManager.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/IoTConnectManager/IoTConnectManager.swift index 3f9b0d8..c55855a 100644 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/IoTConnectManager/IoTConnectManager.swift +++ b/IoTConnect2/IoTConnect2/IoTConnect_2.0/IoTConnectManager/IoTConnectManager.swift @@ -38,7 +38,7 @@ class IoTConnectManager { var strCPId: String! var strUniqueId: String! var strEnv: IOTCEnvironment = .PROD - var strDiscoveryURL: String = SDKURL.discoveryHost + var strDiscoveryURL: String = SDKURL.discoveryHostAZ var strDiscoveryURLAWS: String = SDKURL.discoveryHostAWS var dictReference: [String:Any]! var dictSyncResponse: [String:Any]! @@ -69,6 +69,9 @@ class IoTConnectManager { var twinResponsePubTopic = "$iothub/twin/GET/?$rid=0" var twinResponseSubTopic = "$iothub/twin/res/#" + + var arrAttForValidation:AttributesData? + init() {} //MARK: - Method - SDK-Initialiase @@ -238,11 +241,14 @@ class IoTConnectManager { print("df \(df) diff\(diff) \(time) \(Date())") if diff >= df{ validateData(data: data, skipValidation: dataSDKOptions.skipValidation) + }else{ + print("Please try to send data after DF value.") } }else{ validateData(data: data, skipValidation: dataSDKOptions.skipValidation) } }else { + print("sync count is 0") self.objCommon.manageDebugLog(code: Log.Errors.ERR_SD06.rawValue, uniqueId: strUniqueId, cpId: strCPId, message: "", logFlag: false, isDebugEnabled: boolDebugYN) } } @@ -372,7 +378,9 @@ class IoTConnectManager { dictD?.append(anotherDict: ["\(key)":["\(value)","\(value)","\(value)","\(value)",totalCount,"\(value)"]]) } dataDevice[Dictkeys.dKey] = dictD + arrCalcDictEdgeDevice[firstIndex] = dataDevice + arrCalcDictEdgeDevice[firstIndex][Dictkeys.datekey] = dt }else{ if let val = dictD?[key], let firstIndexData = arrData.firstIndex(where: {$0[key] != nil}){ if let valDict = val as? [String:Any]{ @@ -387,19 +395,25 @@ class IoTConnectManager { var val = dictD?[key] as? [String:Any] val?[dictValueKey] = arrValues dictD?[key] = val + arrCalcDictEdgeDevice[firstIndex]["d"] = dictD ?? [:] + arrCalcDictEdgeDevice[firstIndex][Dictkeys.datekey] = dt }else{ var val = dictD?[key] as? [String:Any] val?.append(anotherDict: [dictValueKey:arrValues ?? []]) dictD?[key] = val + arrCalcDictEdgeDevice[firstIndex]["d"] = dictD ?? [:] + arrCalcDictEdgeDevice[firstIndex][Dictkeys.datekey] = dt } } } }else{ let arr = arrData[firstIndexData][key] as? [String] dictD?[key] = calcEdgeData(arrValues: arr ?? [], latestVal: "\(value)") + arrCalcDictEdgeDevice[firstIndex][Dictkeys.dKey] = dictD ?? [:] + arrCalcDictEdgeDevice[firstIndex][Dictkeys.datekey] = dt } }else{ if let valDict = value as? [String:Any]{ @@ -410,7 +424,9 @@ class IoTConnectManager { }else{ dictD?.append(anotherDict: ["\(key)":["\(value)","\(value)","\(value)","\(value)",totalCount,"\(value)"]]) } + arrCalcDictEdgeDevice[firstIndex][Dictkeys.dKey] = dictD ?? [:] + arrCalcDictEdgeDevice[firstIndex][Dictkeys.datekey] = dt } } }else{ diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/IoTConnectManager/IoTConnectService.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/IoTConnectManager/IoTConnectService.swift index 9444895..086485f 100644 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/IoTConnectManager/IoTConnectService.swift +++ b/IoTConnect2/IoTConnect2/IoTConnect_2.0/IoTConnectManager/IoTConnectService.swift @@ -33,40 +33,56 @@ extension IoTConnectManager { blockHandlerGetAttribuesCallBack = getAttributesCallback blockHandlerGetTwinsCallBack = getTwinsCallback blockHandlerGetChildDevicesCallback = getChildDevucesCallback - if cpId.isEmpty{ - self.callBackDelegate?.onDeviceCommandCallback(response: nil, error: Log.Errors.ERR_IN12.rawValue) - self.blockHandlerDeviceCallBack(["sdkStatus": Log.Errors.ERR_IN12.rawValue]) - print(Log.Errors.ERR_IN12.rawValue) - boolCanCallInialiseYN = true - }else if uniqueId.isEmpty{ - print(Log.Errors.ERR_IN13.rawValue) - boolCanCallInialiseYN = true - }else{ - boolCanCallInialiseYN = true - objCommon.createDirectoryFoldersForLogs() - objCommon.manageDebugLog(code: Log.Info.INFO_IN04, uniqueId: uniqueId, cpId: cpId, message: "", logFlag: true, isDebugEnabled: boolDebugYN) - objCommon.getBaseURL(strURL: SDKURL.discovery(strDiscoveryURL, cpId, SDKConstants.language, SDKConstants.version, strEnv.rawValue, pf)) { (status, data) in - if status { - if let dataRef = data as? [String : Any] { - self.objCommon.manageDebugLog(code: Log.Info.INFO_IN07, uniqueId: uniqueId, cpId: cpId, message: "", logFlag: true, isDebugEnabled: self.boolDebugYN) - self.dictReference = dataRef - if self.dictReference[keyPath:"d.ec"] as? Int == 0{ - self.initaliseCall(uniqueId: uniqueId) - }else{ - let errorDict = [Dictkeys.errorkey:Log.getAPIErrorMsg(errorCode: self.dictReference[keyPath:"d.ec"] as? Int ?? 15)] - deviceCallback(errorDict) - self.objCommon.manageDebugLog(code: self.dictReference[keyPath:"d.ec"] ?? 15, uniqueId: uniqueId, cpId: cpId, message: "", logFlag: false, isDebugEnabled: self.boolDebugYN) - } - } else { - self.objCommon.manageDebugLog(code: Log.Errors.ERR_IN09.rawValue, uniqueId: uniqueId, cpId: cpId, message: "", logFlag: false, isDebugEnabled: self.boolDebugYN) + boolCanCallInialiseYN = true + objCommon.createDirectoryFoldersForLogs() + objCommon.manageDebugLog(code: Log.Info.INFO_IN04, uniqueId: uniqueId, cpId: cpId, message: "", logFlag: true, isDebugEnabled: boolDebugYN) + var discoveryURL = getDiscoveryURL() + objCommon.getBaseURL(strURL: SDKURL.discovery(discoveryURL, cpId, SDKConstants.language, SDKConstants.version, strEnv.rawValue, pf)) { (status, data) in + if status { + if let dataRef = data as? [String : Any] { + self.objCommon.manageDebugLog(code: Log.Info.INFO_IN07, uniqueId: uniqueId, cpId: cpId, message: "", logFlag: true, isDebugEnabled: self.boolDebugYN) + self.dictReference = dataRef + if self.dictReference[keyPath:"d.ec"] as? Int == 0{ + self.initaliseCall(uniqueId: uniqueId) + }else{ + let errorDict = [Dictkeys.errorkey:Log.getAPIErrorMsg(errorCode: self.dictReference[keyPath:"d.ec"] as? Int ?? 15)] + deviceCallback(errorDict) + self.objCommon.manageDebugLog(code: self.dictReference[keyPath:"d.ec"] ?? 15, uniqueId: uniqueId, cpId: cpId, message: "", logFlag: false, isDebugEnabled: self.boolDebugYN) } } else { - if let error = data as? Error { - self.objCommon.manageDebugLog(code: Log.Errors.ERR_IN01.rawValue, uniqueId: uniqueId, cpId: cpId, message: error.localizedDescription, logFlag: false, isDebugEnabled: self.boolDebugYN) - } + self.objCommon.manageDebugLog(code: Log.Errors.ERR_IN09.rawValue, uniqueId: uniqueId, cpId: cpId, message: "", logFlag: false, isDebugEnabled: self.boolDebugYN) + } + } else { + if let error = data as? Error { + self.callBackDelegate?.onDeviceCommandCallback(response: nil, error: error.localizedDescription) + self.blockHandlerDeviceCallBack(["sdkStatus": error.localizedDescription]) + self.objCommon.manageDebugLog(code: Log.Errors.ERR_IN01.rawValue, uniqueId: uniqueId, cpId: cpId, message: error.localizedDescription, logFlag: false, isDebugEnabled: self.boolDebugYN) } } } + // } + } + + func getDiscoveryURL()->String{ + if strDiscoveryURL.isEmpty{ +#if IOTAWS + if strEnv.rawValue == IOTCEnvironment.PREQA.rawValue{ + return SDKURL.discoveryHostAWS + }else if strEnv.rawValue == IOTCEnvironment.POC.rawValue{ + return SDKURL.discoveryHostAWSPOC + }else{ + return SDKURL.discoveryHostAWSPROD + } +#else + if strEnv.rawValue == IOTCEnvironment.EU.rawValue{ + return SDKURL.discoveryHostAZEMEA + }else{ + return SDKURL.discoveryHostAZ + } +#endif + }else{ + return strDiscoveryURL + } } /** @@ -249,7 +265,7 @@ extension IoTConnectManager { } @objc private func reInitialise() { - if self.repeatTimerCount < 5{ + if self.repeatTimerCount < 3{ print("reInitialise") self.repeatTimerCount += 1 self.objCommon.manageDebugLog(code: Log.Info.INFO_IN06, uniqueId: strUniqueId, cpId: strCPId, message: "", logFlag: true, isDebugEnabled: self.boolDebugYN) @@ -702,84 +718,122 @@ extension IoTConnectManager { var dictForEdgeRuleData = [String:Any]() if arrData?.count ?? 0 > 1{ +// print("contains child device") var arrDictValidData = [[String:Any]]() var arrDictInValidData = [[String:Any]]() - let arrAtt = IoTConnectManager.sharedInstance.attributes - +// let arrAtt = IoTConnectManager.sharedInstance.attributes +// print("att \(String(describing: arrAtt?.att?.count))") + for i in 0...(arrData?.count ?? 0)-1{ if let dictValD = arrData?[i][Dictkeys.dKey] as? [String:Any]{ dictValD.forEach({ (dictkey:String,val:Any) in - - for j in 0...(arrAtt?.att?.count ?? 0)-1{ +// print("key_val gateway \(dictkey) \(val) i\(i)") + + for j in 0...(IoTConnectManager.sharedInstance.arrAttForValidation?.att?.count ?? 0)-1{ if let valDict = val as? [String:Any]{ for (valDictKey,dictValue) in valDict{ + // print("valDictKey \(valDictKey) dictValue \(dictValue) dVal \(String(describing: arrAtt?.att?[j].d))") if dictValue is String{ - var arrFilterD = arrAtt?.att?[j].d?.filter({$0.ln == valDictKey}) - if arrFilterD?.count ?? 0 > 0{ - + // var arrFilterD = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?.filter({$0.ln == valDictKey}) + + let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?.firstIndex(where: {$0.ln == valDictKey}) + + if firstIndexVal != nil{ + // if arrFilterD?.count ?? 0 > 0{ + // print("arrFilterD gateway \(String(describing: arrFilterD))") var isValidData = skipValidation - if !skipValidation{ - isValidData = checkisValValid(val: dictValue as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) - } - if isValidData{ - if boolEdgeDevice == 1, let _ = Double(dictValue as? String ?? ""){ - arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictkey:[valDictKey:dictValue]],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "" ) - - if edgeRules != nil,!(dictValue as? String ?? "").isEmpty{ - createResponseForEdgeRuleDeviceTelemetryData(dict: [dictkey:[valDictKey:dictValue]]) - } + + let val = dictValue as! String + + if !val.isEmpty{ + + if !skipValidation{ + // isValidData = checkisValValid(val: dictValue as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) + isValidData = checkisValValid(val: dictValue as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0].dv ) + } - if arrDictValidData.count == 0{ - arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] - ) - - }else{ - if let index = arrDictValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { - var dVal = arrDictValidData[index][Dictkeys.dKey] as? [String:Any] - let attDict = dVal?[dictkey] as? [String:Any] - - let newDict = [valDictKey:dictValue] - if attDict == nil{ - dVal?.append(anotherDict: [dictkey:[valDictKey:dictValue]]) - }else{ - dVal?[dictkey] = attDict?.merging(newDict , uniquingKeysWith: { current, _ in - return current - }) + if isValidData{ + if boolEdgeDevice == 1, let _ = Double(dictValue as? String ?? ""){ + arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictkey:[valDictKey:dictValue]],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "" ) + + if edgeRules != nil,!(dictValue as? String ?? "").isEmpty{ + createResponseForEdgeRuleDeviceTelemetryData(dict: [dictkey:[valDictKey:dictValue]]) } - arrDictValidData[index][Dictkeys.dKey] = dVal - }else{ + } + if arrDictValidData.count == 0{ arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] ) - } - } - }else{ - if arrDictInValidData.count == 0{ - arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] - - ) - }else{ - if let index = arrDictInValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { - var dVal = arrDictInValidData[index][Dictkeys.dKey] as? [String:Any] - let attDict = dVal?[dictkey] as? [String:Any] - let newDict = [valDictKey:dictValue] - if attDict == nil{ - dVal?.append(anotherDict: [dictkey:[valDictKey:dictValue]]) + }else{ + if let index = arrDictValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { + var dVal = arrDictValidData[index][Dictkeys.dKey] as? [String:Any] + let attDict = dVal?[dictkey] as? [String:Any] + // print("attDict \(String(describing: attDict))") + let newDict = [valDictKey:dictValue] + if attDict == nil{ + dVal?.append(anotherDict: [dictkey:[valDictKey:dictValue]]) + }else{ + dVal?[dictkey] = attDict?.merging(newDict , uniquingKeysWith: { current, _ in + return current + }) + } + arrDictValidData[index][Dictkeys.dKey] = dVal + // print("arrDictValidData \(arrDictValidData)") }else{ - dVal?[dictkey] = attDict?.merging(newDict , uniquingKeysWith: { current, _ in - return current - }) + arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] + ) + // print("arrDictValidData \(arrDictValidData)") } - - arrDictInValidData[index][Dictkeys.dKey] = dVal + } + }else{ + // dict = dictInValidData + var isEdgeValidForFaulty = false + + if boolEdgeDevice == 1{ + isEdgeValidForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0].fltDataTime) }else{ - arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] - ) + isEdgeValidForFaulty = true + } + + if isEdgeValidForFaulty == true{ + + IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0].fltDataTime = Date() + + print("New faulty data \(IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0]) \(Date())") + + if arrDictInValidData.count == 0{ + arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] + + ) + // print("arrDictInValidData \(arrDictInValidData)") + }else{ + if let index = arrDictInValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { + var dVal = arrDictInValidData[index][Dictkeys.dKey] as? [String:Any] + let attDict = dVal?[dictkey] as? [String:Any] + + let newDict = [valDictKey:dictValue] + if attDict == nil{ + dVal?.append(anotherDict: [dictkey:[valDictKey:dictValue]]) + }else{ + dVal?[dictkey] = attDict?.merging(newDict , uniquingKeysWith: { current, _ in + return current + }) + } + + arrDictInValidData[index][Dictkeys.dKey] = dVal + // print("arrDictInValidData \(arrDictInValidData)") + + }else{ + arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] + ) + // print("arrDictInValidData \(arrDictInValidData)") + } + } } } + // arrFilterD?.removeAll() } - arrFilterD?.removeAll() } }else{ print(Log.Errors.ERR_InValidValue.rawValue) @@ -788,50 +842,78 @@ extension IoTConnectManager { } }else{ if val is String{ - let arrFilterD = arrAtt?.att?[j].d?.filter({$0.ln == dictkey}) - if arrFilterD?.count ?? 0 > 0{ +// let arrFilterD = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?.filter({$0.ln == dictkey}) + + let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?.firstIndex(where: {$0.ln == dictkey}) + + if firstIndexVal != nil{ + // if arrFilterD?.count ?? 0 > 0{ + // print("arrFilterD \(arrFilterD)") + // isDataFound = true var isValidData = skipValidation - if !skipValidation{ - isValidData = checkisValValid(val: val as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) - } - if isValidData{ - if boolEdgeDevice == 1, let _ = Double(val as? String ?? ""){ - arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictkey:val],id: arrData?[i][Dictkeys.idkey] as? String,tg: arrData?[i][Dictkeys.tagkey] as? String,dt: arrData?[0][Dictkeys.datekey] as? String ?? "") + let value = val as! String + var isEdgeValidForFaulty = false + + if !value.isEmpty{ + if !skipValidation{ + isValidData = checkisValValid(val: val as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0].dv) + } + if isValidData{ + // dictValidData.append(anotherDict: [dictkey:val]) - if edgeRules != nil,!(val as? String ?? "").isEmpty{ - createResponseForEdgeRuleDeviceTelemetryData(dict:[dictkey:val]) + if boolEdgeDevice == 1, let _ = Double(val as? String ?? ""){ + arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictkey:val],id: arrData?[i][Dictkeys.idkey] as? String,tg: arrData?[i][Dictkeys.tagkey] as? String,dt: arrData?[0][Dictkeys.datekey] as? String ?? "") + + if edgeRules != nil,!(val as? String ?? "").isEmpty{ + createResponseForEdgeRuleDeviceTelemetryData(dict:[dictkey:val]) + } + } - - } - //issue same id key - if let index = arrDictValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { - var dVal = arrDictValidData[index][Dictkeys.dKey] as? [String:Any] - let newDict = [dictkey:val] - dVal = dVal?.merging(newDict , uniquingKeysWith: { current, _ in - return current - }) - arrDictValidData[index][Dictkeys.dKey] = dVal - }else{ - arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:val]] - - ) - } - - }else{ - if let index = arrDictInValidData.firstIndex(where: {$0[Dictkeys.tagkey] as? String == arrData?[i][Dictkeys.tagkey] as? String}) { - var dVal = arrDictInValidData[index][Dictkeys.dKey] as? [String:Any] - - let newDict = [dictkey:val] - dVal = dVal?.merging(newDict , uniquingKeysWith: { current, _ in - return current - }) - arrDictInValidData[index][Dictkeys.dKey] = dVal + //issue same id key + if let index = arrDictValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { + var dVal = arrDictValidData[index][Dictkeys.dKey] as? [String:Any] + let newDict = [dictkey:val] + dVal = dVal?.merging(newDict , uniquingKeysWith: { current, _ in + return current + }) + arrDictValidData[index][Dictkeys.dKey] = dVal + }else{ + arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:val]] + + ) + } + // print("arrDictValidData gateway \(arrDictValidData)") }else{ - arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:val]]) + if boolEdgeDevice == 1{ + isEdgeValidForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0].fltDataTime) + + + }else{ + isEdgeValidForFaulty = true + } + if isEdgeValidForFaulty{ + + IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0].fltDataTime = Date() + + print("New faulty data \( IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?[firstIndexVal ?? 0]) \(Date())") + + + if let index = arrDictInValidData.firstIndex(where: {$0[Dictkeys.tagkey] as? String == arrData?[i][Dictkeys.tagkey] as? String}) { + var dVal = arrDictInValidData[index][Dictkeys.dKey] as? [String:Any] + + let newDict = [dictkey:val] + dVal = dVal?.merging(newDict , uniquingKeysWith: { current, _ in + return current + }) + arrDictInValidData[index][Dictkeys.dKey] = dVal + }else{ + arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:val]]) + } + } } + // break } - // break } }else{ print(Log.Errors.ERR_InValidValue.rawValue) @@ -848,113 +930,187 @@ extension IoTConnectManager { ] ?? "",Dictkeys.dKey:arrDictValidData] if boolEdgeDevice == 1{ +// print("dictValidData edgeDevice \(dictValidData)") sendMessageForEdgeRuleMatch(dictValidData: dictValidData, dictDeviceTelemetry: dictForEdgeRuleData,id: arrData?[0][Dictkeys.idkey] as? String ?? "", tag: arrData?[0][Dictkeys.tagkey] as? String ?? "") }else{ let topic = dictSyncResponse[keyPath:"p.topics.rpt"] as! String prevSendDataTime = Date() objMQTTClient.publishTopicOnMQTT(withData: dictValidData, topic: topic) } +// print("final dictValidData gateway \(dictValidData)") } if !arrDictInValidData.isEmpty{ dictInValidData = [Dictkeys.datekey:data[Dictkeys.datekey] ?? "",Dictkeys.dKey:arrDictInValidData] - if boolEdgeDevice == 1{ - - }else{ +// if boolEdgeDevice == 1{ +// +// }else{ let topic = dictSyncResponse[keyPath:"p.topics.flt"] as! String prevSendDataTime = Date() objMQTTClient.publishTopicOnMQTT(withData: dictInValidData, topic: topic) - } +// print("final dictInValidData gateway \(dictInValidData)") +// } } }else{ +// print("count is 1") let dictValD = arrData?[0][Dictkeys.dKey] as? [String:Any] - if dictValD == nil{ + if dictValD == nil || ((dictValD?.isEmpty) == true){ print(Log.Errors.ERR_InValidValue.rawValue) }else{ dictValD?.forEach { +// print("key_val \($0.key) \($0.value)") let dictValDKey = $0.key let value = $0.value - let arrAtt = IoTConnectManager.sharedInstance.attributes - for i in 0...(arrAtt?.att?.count ?? 0)-1{ - if let valDict = value as? [String:Any]{ - for (valDictKey,dictValue) in valDict{ - if dictValue is String{ - var arrFilterD = arrAtt?.att?[i].d?.filter({$0.ln == valDictKey}) - if arrFilterD?.count ?? 0 > 0{ - var dict = [String:Any]() - var isValidData = skipValidation - if !skipValidation{ - isValidData = checkisValValid(val: dictValue as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) - } - - if isValidData{ - dict = dictValidData - }else{ - dict = dictInValidData - } +// let arrAtt = IoTConnectManager.sharedInstance.attributes +// print("att \(String(describing: arrAtt?.att?.count))") +// print("att \(String(describing: arrAtt?.att?.count))") + + if IoTConnectManager.sharedInstance.arrAttForValidation?.att?.count ?? 0 > 0{ + for i in 0...(IoTConnectManager.sharedInstance.arrAttForValidation?.att?.count ?? 0)-1{ + //print("arrAtt?.att \(i)") + if let valDict = value as? [String:Any]{ + for (valDictKey,dictValue) in valDict{ + if dictValue is String{ +// var arrFilterD = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.filter({$0.ln == valDictKey}) + + let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == valDictKey}) - if dict[$0.key] != nil{ - let val = dict[$0.key] as? [String:Any] - let newVal = [valDictKey:dictValue] as? [String:Any] - dict[$0.key] = val?.merging(newVal ?? [:], uniquingKeysWith: { current, _ in - return current - }) - }else{ - dict.updateValue([valDictKey:dictValue], forKey:$0.key) - } - arrFilterD?.removeAll() - if isValidData{ - dictValidData = dict + if firstIndexVal != nil{ +// if arrFilterD?.count ?? 0 > 0{ + // print("arrFilterD \(String(describing: arrFilterD))") + var dict = [String:Any]() + var isValidData = skipValidation + + var value = dictValue as! String - if boolEdgeDevice == 1, let _ = Double(dictValue as? String ?? ""){ - arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictValDKey:[valDictKey:dictValue]],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "" ) + if !value.isEmpty{ + if !skipValidation{ +// isValidData = checkisValValid(val: dictValue as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) + isValidData = checkisValValid(val: dictValue as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv) + } - if edgeRules != nil,!(dictValue as? String ?? "").isEmpty{ - createResponseForEdgeRuleDeviceTelemetryData(dict: [dictValDKey:[valDictKey:dictValue]]) + if isValidData{ + dict = dictValidData + }else{ + dict = dictInValidData + } + + if dict[$0.key] != nil{ + let val = dict[$0.key] as? [String:Any] + let newVal = [valDictKey:dictValue] as? [String:Any] + dict[$0.key] = val?.merging(newVal ?? [:], uniquingKeysWith: { current, _ in + return current + }) + // print("dictValidData \(valDictKey) \(dictValidData)") + }else{ + dict.updateValue([valDictKey:dictValue], forKey:$0.key) } +// arrFilterD?.removeAll() + if isValidData{ + dictValidData = dict + + if boolEdgeDevice == 1, let _ = Double(dictValue as? String ?? ""){ + arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictValDKey:[valDictKey:dictValue]],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "" ) + + if edgeRules != nil,!(dictValue as? String ?? "").isEmpty{ + createResponseForEdgeRuleDeviceTelemetryData(dict: [dictValDKey:[valDictKey:dictValue]]) + } + } + }else{ + var isEdgeValidForFaulty = false + if boolEdgeDevice == 1{ + isEdgeValidForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) + }else{ + isEdgeValidForFaulty = true + } + + if isEdgeValidForFaulty == true{ + dictInValidData = dict + + IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() + + print("New fauty data \(IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0])") + } + } + // print("dictValidData \(valDictKey) \(dictValidData)") + // print("dictInValidData \(valDictKey) \(dictInValidData)") } - }else{ - dictInValidData = dict } + }else{ + print(Log.Errors.ERR_InValidValue.rawValue) + continue } - }else{ - print(Log.Errors.ERR_InValidValue.rawValue) - continue } - } - }else{ - if value is String{ - let arrFilterD = arrAtt?.att?[i].d?.filter({$0.ln == dictValDKey}) - if arrFilterD?.count ?? 0 > 0{ + }else{ + if value is String{ +// let arrFilterD = arrAtt?.att?[i].d?.filter({$0.ln == dictValDKey}) - var isValidData = skipValidation - if !skipValidation,value is String{ - isValidData = checkisValValid(val: value as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) - } + let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == dictValDKey}) - if isValidData{ - dictValidData.append(anotherDict: [$0.key:$0.value]) -// print("dictValidData \(dictValidData)") +// if arrFilterD?.count ?? 0 > 0{ + if firstIndexVal != nil{ - if boolEdgeDevice == 1, let _ = Double(value as? String ?? ""){ - arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictValDKey:value],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "") + var isValidData = skipValidation + + if !(value as! String).isEmpty{ + if !skipValidation,value is String{ +// isValidData = checkisValValid(val: value as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) + isValidData = checkisValValid(val: value as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv) + } - if edgeRules != nil{ - createResponseForEdgeRuleDeviceTelemetryData(dict: [dictValDKey:value]) + if isValidData{ + dictValidData.append(anotherDict: [$0.key:$0.value]) + // print("dictValidData \(dictValidData)") + + if boolEdgeDevice == 1, let _ = Double(value as? String ?? ""){ + arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictValDKey:value],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "") + + if edgeRules != nil{ + createResponseForEdgeRuleDeviceTelemetryData(dict: [dictValDKey:value]) + } + } + }else{ + if boolEdgeDevice == 1{ +// let faultTime = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime + let isValiForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) + + if isValiForFaulty{ + + dictInValidData.append(anotherDict: [$0.key:$0.value]) + + IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() + + print("New faulty data \(IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0])") + + } + +// var diffSinceLast = Date.seconds(faultTime ?? Date()) + +// let diffSinceLast = Calendar.current.dateComponents([.second], from: faultTime ?? Date(), to: Date()).second + +// if diffSinceLast ?? 0 > 60{ +// print("Edge Device Fault data \($0.key) GT 60") +// dictInValidData.append(anotherDict: [$0.key:$0.value]) +// } + + }else { + dictInValidData.append(anotherDict: [$0.key:$0.value]) + } + // print("dictInValidData \(dictInValidData)") } + break } - }else{ - dictInValidData.append(anotherDict: [$0.key:$0.value]) } - break + }else{ + print(Log.Errors.ERR_InValidValue.rawValue) + continue } - }else{ - print(Log.Errors.ERR_InValidValue.rawValue) - continue } } + }else{ + print(Log.Errors.ERR_InValidValue.rawValue) } } } @@ -966,6 +1122,7 @@ extension IoTConnectManager { let topic = dictSyncResponse[keyPath:"p.topics.rpt"] as! String objMQTTClient.publishTopicOnMQTT(withData: dictValidData, topic: topic) }else{ +// print("dictValidData edgeDevice \(dictValidData)") sendMessageForEdgeRuleMatch(dictValidData: dictValidData, dictDeviceTelemetry: dictForEdgeRuleData,id: arrData?[0][Dictkeys.idkey] as? String ?? "", tag: arrData?[0][Dictkeys.tagkey] as? String ?? "") } } @@ -977,11 +1134,11 @@ extension IoTConnectManager { Dictkeys.tagkey:arrData?[0][Dictkeys.tagkey], Dictkeys.dKey:dictInValidData]]] - if boolEdgeDevice != 1{ +// if boolEdgeDevice != 1{ prevSendDataTime = Date() let topic = dictSyncResponse[keyPath:"p.topics.flt"] as! String objMQTTClient.publishTopicOnMQTT(withData: dictInValidData, topic: topic) - } +// } } } @@ -1143,6 +1300,1176 @@ extension IoTConnectManager { dictForEdgeRuleData.append(anotherDict: [dictkey:dictVal]) } }) +// print("dictForEdgeRuleData \(dictForEdgeRuleData)") + } + } + +// func validateData(data: [String:Any],skipValidation:Bool){ +// let arrData = data[Dictkeys.dKey] as? [[String:Any]] +// var dictValidData = [String:Any]() +// var dictInValidData = [String:Any]() +// let boolEdgeDevice = dictSyncResponse[keyPath: "meta.edge"] as? Int +// var dictForEdgeRuleData = [String:Any]() +// +// if arrData?.count ?? 0 > 1{ +//// print("contains child device") +// var arrDictValidData = [[String:Any]]() +// var arrDictInValidData = [[String:Any]]() +//// let arrAtt = IoTConnectManager.sharedInstance.attributes +//// print("att \(String(describing: arrAtt?.att?.count))") +// +// for i in 0...(arrData?.count ?? 0)-1{ +// if let dictValD = arrData?[i][Dictkeys.dKey] as? [String:Any]{ +// dictValD.forEach({ (dictkey:String,val:Any) in +//// print("key_val gateway \(dictkey) \(val) i\(i)") +// +// for j in 0...(IoTConnectManager.sharedInstance.arrAttForValidation?.att?.count ?? 0)-1{ +// if let valDict = val as? [String:Any]{ +// for (valDictKey,dictValue) in valDict{ +// // print("valDictKey \(valDictKey) dictValue \(dictValue) dVal \(String(describing: arrAtt?.att?[j].d))") +// if dictValue is String{ +// // var arrFilterD = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?.filter({$0.ln == valDictKey}) +// +// let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == valDictKey}) +// +// if firstIndexVal != nil{ +// // if arrFilterD?.count ?? 0 > 0{ +// // print("arrFilterD gateway \(String(describing: arrFilterD))") +// var isValidData = skipValidation +// +// let val = dictValue as! String +// +// if !val.isEmpty{ +// +// if !skipValidation{ +// // isValidData = checkisValValid(val: dictValue as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) +// isValidData = checkisValValid(val: dictValue as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv ) +// // +// } +// if isValidData{ +// if boolEdgeDevice == 1, let _ = Double(dictValue as? String ?? ""){ +// arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictkey:[valDictKey:dictValue]],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "" ) +// +// if edgeRules != nil,!(dictValue as? String ?? "").isEmpty{ +// createResponseForEdgeRuleDeviceTelemetryData(dict: [dictkey:[valDictKey:dictValue]]) +// } +// } +// if arrDictValidData.count == 0{ +// arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] +// ) +// +// }else{ +// if let index = arrDictValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { +// var dVal = arrDictValidData[index][Dictkeys.dKey] as? [String:Any] +// let attDict = dVal?[dictkey] as? [String:Any] +// // print("attDict \(String(describing: attDict))") +// let newDict = [valDictKey:dictValue] +// if attDict == nil{ +// dVal?.append(anotherDict: [dictkey:[valDictKey:dictValue]]) +// }else{ +// dVal?[dictkey] = attDict?.merging(newDict , uniquingKeysWith: { current, _ in +// return current +// }) +// } +// arrDictValidData[index][Dictkeys.dKey] = dVal +// // print("arrDictValidData \(arrDictValidData)") +// }else{ +// arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] +// ) +// // print("arrDictValidData \(arrDictValidData)") +// } +// } +// }else{ +// // dict = dictInValidData +// var isEdgeValidForFaulty = false +// +// if boolEdgeDevice == 1{ +// isEdgeValidForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) +// +// }else{ +// isEdgeValidForFaulty = true +// } +// +// if isEdgeValidForFaulty == true{ +// +// IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() +// +// print("New faulty data \(IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0]) \(Date())") +// +// if arrDictInValidData.count == 0{ +// arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] +// +// ) +// // print("arrDictInValidData \(arrDictInValidData)") +// }else{ +// if let index = arrDictInValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { +// var dVal = arrDictInValidData[index][Dictkeys.dKey] as? [String:Any] +// let attDict = dVal?[dictkey] as? [String:Any] +// +// let newDict = [valDictKey:dictValue] +// if attDict == nil{ +// dVal?.append(anotherDict: [dictkey:[valDictKey:dictValue]]) +// }else{ +// dVal?[dictkey] = attDict?.merging(newDict , uniquingKeysWith: { current, _ in +// return current +// }) +// } +// +// arrDictInValidData[index][Dictkeys.dKey] = dVal +// // print("arrDictInValidData \(arrDictInValidData)") +// +// }else{ +// arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] +// ) +// // print("arrDictInValidData \(arrDictInValidData)") +// } +// } +// } +// } +// // arrFilterD?.removeAll() +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// continue +// } +// } +// }else{ +// if val is String{ +//// let arrFilterD = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[j].d?.filter({$0.ln == dictkey}) +// +// let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == dictkey}) +// +// if firstIndexVal != nil{ +// // if arrFilterD?.count ?? 0 > 0{ +// // print("arrFilterD \(arrFilterD)") +// // isDataFound = true +// var isValidData = skipValidation +// +// let value = val as! String +// var isEdgeValidForFaulty = false +// +// if !value.isEmpty{ +// if !skipValidation{ +// isValidData = checkisValValid(val: val as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv) +// } +// if isValidData{ +// // dictValidData.append(anotherDict: [dictkey:val]) +// +// if boolEdgeDevice == 1, let _ = Double(val as? String ?? ""){ +// arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictkey:val],id: arrData?[i][Dictkeys.idkey] as? String,tg: arrData?[i][Dictkeys.tagkey] as? String,dt: arrData?[0][Dictkeys.datekey] as? String ?? "") +// +// if edgeRules != nil,!(val as? String ?? "").isEmpty{ +// createResponseForEdgeRuleDeviceTelemetryData(dict:[dictkey:val]) +// } +// +// } +// //issue same id key +// if let index = arrDictValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { +// var dVal = arrDictValidData[index][Dictkeys.dKey] as? [String:Any] +// let newDict = [dictkey:val] +// dVal = dVal?.merging(newDict , uniquingKeysWith: { current, _ in +// return current +// }) +// arrDictValidData[index][Dictkeys.dKey] = dVal +// }else{ +// arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:val]] +// +// ) +// } +// // print("arrDictValidData gateway \(arrDictValidData)") +// }else{ +// if boolEdgeDevice == 1{ +// isEdgeValidForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) +// +// +// }else{ +// isEdgeValidForFaulty = true +// } +// if isEdgeValidForFaulty{ +// +// IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() +// +// print("New faulty data \( IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0]) \(Date())") +// +// +// if let index = arrDictInValidData.firstIndex(where: {$0[Dictkeys.tagkey] as? String == arrData?[i][Dictkeys.tagkey] as? String}) { +// var dVal = arrDictInValidData[index][Dictkeys.dKey] as? [String:Any] +// +// let newDict = [dictkey:val] +// dVal = dVal?.merging(newDict , uniquingKeysWith: { current, _ in +// return current +// }) +// arrDictInValidData[index][Dictkeys.dKey] = dVal +// }else{ +// arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:val]]) +// } +// } +// } +// // break +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// continue +// } +// } +// } +// }) +// } +// } +// +// if !arrDictValidData.isEmpty{ +// dictValidData = [Dictkeys.datekey:data[Dictkeys.datekey +// ] ?? "",Dictkeys.dKey:arrDictValidData] +// +// if boolEdgeDevice == 1{ +//// print("dictValidData edgeDevice \(dictValidData)") +// sendMessageForEdgeRuleMatch(dictValidData: dictValidData, dictDeviceTelemetry: dictForEdgeRuleData,id: arrData?[0][Dictkeys.idkey] as? String ?? "", tag: arrData?[0][Dictkeys.tagkey] as? String ?? "") +// }else{ +// let topic = dictSyncResponse[keyPath:"p.topics.rpt"] as! String +// prevSendDataTime = Date() +// objMQTTClient.publishTopicOnMQTT(withData: dictValidData, topic: topic) +// } +// +//// print("final dictValidData gateway \(dictValidData)") +// } +// +// if !arrDictInValidData.isEmpty{ +// dictInValidData = [Dictkeys.datekey:data[Dictkeys.datekey] ?? "",Dictkeys.dKey:arrDictInValidData] +// +//// if boolEdgeDevice == 1{ +//// +//// }else{ +// let topic = dictSyncResponse[keyPath:"p.topics.flt"] as! String +// prevSendDataTime = Date() +// objMQTTClient.publishTopicOnMQTT(withData: dictInValidData, topic: topic) +//// print("final dictInValidData gateway \(dictInValidData)") +//// } +// } +// }else{ +//// print("count is 1") +// let dictValD = arrData?[0][Dictkeys.dKey] as? [String:Any] +// +// if dictValD == nil || ((dictValD?.isEmpty) == true){ +// print(Log.Errors.ERR_InValidValue.rawValue) +// }else{ +// dictValD?.forEach { +//// print("key_val \($0.key) \($0.value)") +// let dictValDKey = $0.key +// let value = $0.value +//// let arrAtt = IoTConnectManager.sharedInstance.attributes +//// print("att \(String(describing: arrAtt?.att?.count))") +//// print("att \(String(describing: arrAtt?.att?.count))") +// +// if IoTConnectManager.sharedInstance.arrAttForValidation?.att?.count ?? 0 > 0{ +// for i in 0...(IoTConnectManager.sharedInstance.arrAttForValidation?.att?.count ?? 0)-1{ +// //print("arrAtt?.att \(i)") +// if let valDict = value as? [String:Any]{ +// for (valDictKey,dictValue) in valDict{ +// if dictValue is String{ +//// var arrFilterD = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.filter({$0.ln == valDictKey}) +// +// let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == valDictKey}) +// +// if firstIndexVal != nil{ +//// if arrFilterD?.count ?? 0 > 0{ +// // print("arrFilterD \(String(describing: arrFilterD))") +// var dict = [String:Any]() +// var isValidData = skipValidation +// +// var value = dictValue as! String +// +// if !value.isEmpty{ +// if !skipValidation{ +//// isValidData = checkisValValid(val: dictValue as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) +// isValidData = checkisValValid(val: dictValue as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv) +// //IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt +// } +// +// if isValidData{ +// dict = dictValidData +// }else{ +// dict = dictInValidData +// } +// +// if dict[$0.key] != nil{ +// let val = dict[$0.key] as? [String:Any] +// let newVal = [valDictKey:dictValue] as? [String:Any] +// dict[$0.key] = val?.merging(newVal ?? [:], uniquingKeysWith: { current, _ in +// return current +// }) +// // print("dictValidData \(valDictKey) \(dictValidData)") +// }else{ +// dict.updateValue([valDictKey:dictValue], forKey:$0.key) +// } +//// arrFilterD?.removeAll() +// if isValidData{ +// dictValidData = dict +// +// if boolEdgeDevice == 1, let _ = Double(dictValue as? String ?? ""){ +// arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictValDKey:[valDictKey:dictValue]],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "" ) +// +// if edgeRules != nil,!(dictValue as? String ?? "").isEmpty{ +// createResponseForEdgeRuleDeviceTelemetryData(dict: [dictValDKey:[valDictKey:dictValue]]) +// } +// } +// }else{ +// var isEdgeValidForFaulty = false +// if boolEdgeDevice == 1{ +// isEdgeValidForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) +// +// +// } +// +// if isEdgeValidForFaulty == true{ +// dictInValidData = dict +// +// IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() +// +// print("New fauty data \(IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0])") +// } +// } +// // print("dictValidData \(valDictKey) \(dictValidData)") +// // print("dictInValidData \(valDictKey) \(dictInValidData)") +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// continue +// } +// } +// }else{ +// if value is String{ +//// let arrFilterD = arrAtt?.att?[i].d?.filter({$0.ln == dictValDKey}) +// +// let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == dictValDKey}) +// +//// if arrFilterD?.count ?? 0 > 0{ +// if firstIndexVal != nil{ +// +// var isValidData = skipValidation +// +// if !(value as! String).isEmpty{ +// if !skipValidation,value is String{ +//// isValidData = checkisValValid(val: value as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) +// isValidData = checkisValValid(val: value as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv) +// } +// +// if isValidData{ +// dictValidData.append(anotherDict: [$0.key:$0.value]) +// // print("dictValidData \(dictValidData)") +// +// if boolEdgeDevice == 1, let _ = Double(value as? String ?? ""){ +// arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictValDKey:value],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "") +// +// if edgeRules != nil{ +// createResponseForEdgeRuleDeviceTelemetryData(dict: [dictValDKey:value]) +// } +// } +// }else{ +// if boolEdgeDevice == 1{ +//// let faultTime = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime +// let isValiForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) +// +// if isValiForFaulty{ +// +// dictInValidData.append(anotherDict: [$0.key:$0.value]) +// +// IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() +// +// print("New faulty data \(IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0])") +// +// } +// +//// var diffSinceLast = Date.seconds(faultTime ?? Date()) +// +//// let diffSinceLast = Calendar.current.dateComponents([.second], from: faultTime ?? Date(), to: Date()).second +// +//// if diffSinceLast ?? 0 > 60{ +//// print("Edge Device Fault data \($0.key) GT 60") +//// dictInValidData.append(anotherDict: [$0.key:$0.value]) +//// } +// +// }else { +// dictInValidData.append(anotherDict: [$0.key:$0.value]) +// } +// // print("dictInValidData \(dictInValidData)") +// } +// break +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// continue +// } +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// } +// } +// } +// +// if !dictValidData.isEmpty{ +// if boolEdgeDevice != 1{ +// dictValidData = [Dictkeys.datekey:data[Dictkeys.datekey] ?? "",Dictkeys.dKey:[[Dictkeys.datekey:arrData?[0][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[0][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[0][Dictkeys.tagkey] ?? "",Dictkeys.dKey:dictValidData]]] +// prevSendDataTime = Date() +// let topic = dictSyncResponse[keyPath:"p.topics.rpt"] as! String +// objMQTTClient.publishTopicOnMQTT(withData: dictValidData, topic: topic) +// }else{ +//// print("dictValidData edgeDevice \(dictValidData)") +// sendMessageForEdgeRuleMatch(dictValidData: dictValidData, dictDeviceTelemetry: dictForEdgeRuleData,id: arrData?[0][Dictkeys.idkey] as? String ?? "", tag: arrData?[0][Dictkeys.tagkey] as? String ?? "") +// } +// } +// +// if !dictInValidData.isEmpty{ +// dictInValidData = [Dictkeys.datekey:data[Dictkeys.datekey] ?? "", +// Dictkeys.dKey:[[Dictkeys.datekey:arrData?[0][Dictkeys.datekey], +// Dictkeys.idkey:arrData?[0][Dictkeys.idkey], +// Dictkeys.tagkey:arrData?[0][Dictkeys.tagkey], +// Dictkeys.dKey:dictInValidData]]] +// +//// if boolEdgeDevice != 1{ +// prevSendDataTime = Date() +// let topic = dictSyncResponse[keyPath:"p.topics.flt"] as! String +// objMQTTClient.publishTopicOnMQTT(withData: dictInValidData, topic: topic) +//// } +// } +// } +// +// func checkisValValid(val:String,dt:Int,dv:String?)-> Bool{ +// switch dt{ +// case SupportedDataType.intValue: +// if Int32(val) != nil{ +// if validateNumber(value: val, dv: dv, dataType: SupportedDataType.intValue) == true{ +// return true +// }else{ +// return false +// } +// }else{ +// if val.isEmpty && (dv == nil || dv?.isEmpty == true){ +// return true +// } +// if !val.isEmpty{ +// if let doubleVal = Double(val){ +// let roundVal = Int32(round(doubleVal)) +// if validateNumber(value: "\(roundVal)", dv: dv, dataType: SupportedDataType.intValue) == true{ +// return true +// }else{ +// return false +// } +// } +// } +// return false +// } +// +// case SupportedDataType.boolValue: +// let isValid = self.validateBoolValue(value: val, dv: dv) +// if isValid{ +// return true +// }else{ +// return false +// } +// case SupportedDataType.strVal: +// //remaining +// let isValid = self.validateNumber(value: val, dv: dv, dataType: SupportedDataType.decimalVal) +// if isValid{ +// return true +// }else{ +// return false +// } +// case SupportedDataType.bitValue: +// let isValid = self.validateBit(value: val, dv: dv) +// +// if isValid{ +// return true +// }else{ +// return false +// } +// +// case SupportedDataType.dateValue: +// let isValid = validateDate(value: val, dateFormat: "YYYY-MM-dd", dv: dv) +// +// if (isValid){ +// return true +// }else{ +// return false +// } +// +// case SupportedDataType.dateTimeVal: +// let isValid = validateDate(value: val, dateFormat:"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'" , dv: dv) +// if isValid{ +// return true +// }else{ +// return false +// } +// +// case SupportedDataType.decimalVal: +// if let floatVal = Float(val){ +// //range is -7.9*1028 +// if floatVal.isLessThanOrEqualTo(8121.2) && +// floatVal >= -8121.2 +// { +// if validateNumber(value: val, dv: dv, dataType: SupportedDataType.decimalVal) == true{ +// return true +// }else{ +// return false +// } +// }else{ +// return false +// } +// } +// if val.isEmpty && (dv == nil || dv?.isEmpty == true){ +// return true +// } +// return false +// +// case SupportedDataType.latLongVal: +// //[10,8] [11,8] +// if validateLatLong(value: val,dv: dv){ +// return true +// } +// +// return false +// +// case SupportedDataType.longVal: +// if Int64(val) != nil{ +// if validateNumber(value: val, dv: dv, dataType: SupportedDataType.longVal) == true{ +// return true +// }else{ +// return false +// } +// }else{ +// if val.isEmpty && (dv == nil || dv?.isEmpty == true){ +// return true +// } +// if !val.isEmpty{ +// if let doubleVal = Double(val){ +// let roundVal = Int64(round(doubleVal)) +// if validateNumber(value: "\(roundVal)", dv: dv, dataType: SupportedDataType.intValue) == true{ +// return true +// }else{ +// return false +// } +// } +// } +// return false +// } +// +// case SupportedDataType.timeVal: +// if dv == nil || dv?.isEmpty == true{ +// if val.isEmpty == true{ +// return true +// } +// } +// let arrVal = val.components(separatedBy: ":") +// if arrVal.count >= 3{ +// let isValid = validateDate(value: val, dateFormat: "HH:mm:ss", dv: dv) +// +// if isValid{ +// return true +// }else{ +// return false +// } +// }else +// { +// return false +// } +// +// default: +// return false +// } +// } +// +// func createResponseForEdgeRuleDeviceTelemetryData(dict:[String:Any]){ +// dict.forEach({ (dictkey:String,dictVal:Any) in +// if let valDict = dictVal as? [String:Any]{ +// if dictForEdgeRuleData[dictkey] != nil{ +// var dict = dictForEdgeRuleData[dictkey] as? [String:Any] +// dict?.append(anotherDict:valDict) +// dictForEdgeRuleData[dictkey] = dict +// }else{ +// dictForEdgeRuleData.append(anotherDict: dict) +// } +// }else{ +// dictForEdgeRuleData.append(anotherDict: [dictkey:dictVal]) +// } +// }) +//// print("dictForEdgeRuleData \(dictForEdgeRuleData)") +// } +// } + +// func validateData(data: [String:Any],skipValidation:Bool){ +// let arrData = data[Dictkeys.dKey] as? [[String:Any]] +// var dictValidData = [String:Any]() +// var dictInValidData = [String:Any]() +// let boolEdgeDevice = dictSyncResponse[keyPath: "meta.edge"] as? Int +// var dictForEdgeRuleData = [String:Any]() +// +// if arrData?.count ?? 0 > 1{ +// //contains child device +// var arrDictValidData = [[String:Any]]() +// var arrDictInValidData = [[String:Any]]() +//// let arrAtt = IoTConnectManager.sharedInstance.attributes +// +// for i in 0...(arrData?.count ?? 0)-1{ +// if let dictValD = arrData?[i][Dictkeys.dKey] as? [String:Any]{ +// dictValD.forEach({ (dictkey:String,val:Any) in +// +//// for j in 0...(arrAtt?.att?.count ?? 0)-1{ +// for j in 0...(IoTConnectManager.sharedInstance.arrAttForValidation?.att?.count ?? 0)-1{ +// if let valDict = val as? [String:Any]{ +// for (valDictKey,dictValue) in valDict{ +// if dictValue is String{ +// // var arrFilterD = arrAtt?.att?[j].d?.filter({$0.ln == valDictKey}) +// // if arrFilterD?.count ?? 0 > 0{ +// let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == valDictKey}) +// +// if firstIndexVal != nil{ +// +// var isValidData = skipValidation +// +// if !(dictValue as! String).isEmpty{ +// +// if !skipValidation{ +// // isValidData = checkisValValid(val: dictValue as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) +// isValidData = checkisValValid(val: dictValue as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv ) +// } +// if isValidData{ +// if boolEdgeDevice == 1, let _ = Double(dictValue as? String ?? ""){ +// arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictkey:[valDictKey:dictValue]],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "" ) +// +// if edgeRules != nil,!(dictValue as? String ?? "").isEmpty{ +// createResponseForEdgeRuleDeviceTelemetryData(dict: [dictkey:[valDictKey:dictValue]]) +// } +// } +// if arrDictValidData.count == 0{ +// arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] +// ) +// +// }else{ +// if let index = arrDictValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { +// var dVal = arrDictValidData[index][Dictkeys.dKey] as? [String:Any] +// let attDict = dVal?[dictkey] as? [String:Any] +// +// let newDict = [valDictKey:dictValue] +// if attDict == nil{ +// dVal?.append(anotherDict: [dictkey:[valDictKey:dictValue]]) +// }else{ +// dVal?[dictkey] = attDict?.merging(newDict , uniquingKeysWith: { current, _ in +// return current +// }) +// } +// arrDictValidData[index][Dictkeys.dKey] = dVal +// }else{ +// arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] +// ) +// } +// } +// }else{ +// var isEdgeValidForFaulty = false +// +// if boolEdgeDevice == 1{ +// isEdgeValidForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) +// }else{ +// isEdgeValidForFaulty = true +// } +// +// if isEdgeValidForFaulty == true{ +// IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() +// +// print("New faulty data \(IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0]) \(Date())") +// +// if arrDictInValidData.count == 0{ +// arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] +// +// ) +// }else{ +// if let index = arrDictInValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { +// var dVal = arrDictInValidData[index][Dictkeys.dKey] as? [String:Any] +// let attDict = dVal?[dictkey] as? [String:Any] +// +// let newDict = [valDictKey:dictValue] +// if attDict == nil{ +// dVal?.append(anotherDict: [dictkey:[valDictKey:dictValue]]) +// }else{ +// dVal?[dictkey] = attDict?.merging(newDict , uniquingKeysWith: { current, _ in +// return current +// }) +// } +// +// arrDictInValidData[index][Dictkeys.dKey] = dVal +// +// }else{ +// arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:[valDictKey:dictValue]]] +// ) +// } +// } +// } +// } +// // arrFilterD?.removeAll() +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// continue +// } +// } +// }else{ +// if val is String{ +// // let arrFilterD = arrAtt?.att?[j].d?.filter({$0.ln == dictkey}) +// let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == dictkey}) +// +// // if arrFilterD?.count ?? 0 > 0{ +// if firstIndexVal != nil{ +// var isValidData = skipValidation +// +// let value = val as! String +// var isEdgeValidForFaulty = false +// +// if !(val as! String).isEmpty{ +// if !skipValidation{ +// // isValidData = checkisValValid(val: val as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) +// isValidData = checkisValValid(val: val as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv) +// } +// if isValidData{ +// if boolEdgeDevice == 1, let _ = Double(val as? String ?? ""){ +// arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictkey:val],id: arrData?[i][Dictkeys.idkey] as? String,tg: arrData?[i][Dictkeys.tagkey] as? String,dt: arrData?[0][Dictkeys.datekey] as? String ?? "") +// +// if edgeRules != nil,!(val as? String ?? "").isEmpty{ +// createResponseForEdgeRuleDeviceTelemetryData(dict:[dictkey:val]) +// } +// +// } +// //issue same id key +// if let index = arrDictValidData.firstIndex(where: {$0[Dictkeys.idkey] as? String == arrData?[i][Dictkeys.idkey] as? String}) { +// var dVal = arrDictValidData[index][Dictkeys.dKey] as? [String:Any] +// let newDict = [dictkey:val] +// dVal = dVal?.merging(newDict , uniquingKeysWith: { current, _ in +// return current +// }) +// arrDictValidData[index][Dictkeys.dKey] = dVal +// }else{ +// arrDictValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:val]] +// +// ) +// } +// +// }else{ +// if boolEdgeDevice == 1{ +// isEdgeValidForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) +// }else{ +// isEdgeValidForFaulty = true +// } +// +// if isEdgeValidForFaulty{ +// IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() +// +// print("New faulty data \( IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0]) \(Date())") +// +// if let index = arrDictInValidData.firstIndex(where: {$0[Dictkeys.tagkey] as? String == arrData?[i][Dictkeys.tagkey] as? String}) { +// var dVal = arrDictInValidData[index][Dictkeys.dKey] as? [String:Any] +// +// let newDict = [dictkey:val] +// dVal = dVal?.merging(newDict , uniquingKeysWith: { current, _ in +// return current +// }) +// arrDictInValidData[index][Dictkeys.dKey] = dVal +// }else{ +// arrDictInValidData.append([Dictkeys.datekey:arrData?[i][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[i][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[i][Dictkeys.tagkey] ?? "",Dictkeys.dKey:[dictkey:val]]) +// } +// } +// } +// // break +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// continue +// } +// } +// } +// }) +// } +// } +// +// if !arrDictValidData.isEmpty{ +// dictValidData = [Dictkeys.datekey:data[Dictkeys.datekey +// ] ?? "",Dictkeys.dKey:arrDictValidData] +// +// if boolEdgeDevice == 1{ +// sendMessageForEdgeRuleMatch(dictValidData: dictValidData, dictDeviceTelemetry: dictForEdgeRuleData,id: arrData?[0][Dictkeys.idkey] as? String ?? "", tag: arrData?[0][Dictkeys.tagkey] as? String ?? "") +// }else{ +// let topic = dictSyncResponse[keyPath:"p.topics.rpt"] as! String +// prevSendDataTime = Date() +// objMQTTClient.publishTopicOnMQTT(withData: dictValidData, topic: topic) +// } +// } +// +// if !arrDictInValidData.isEmpty{ +// dictInValidData = [Dictkeys.datekey:data[Dictkeys.datekey] ?? "",Dictkeys.dKey:arrDictInValidData] +// +//// if boolEdgeDevice == 1{ +//// +//// }else{ +// let topic = dictSyncResponse[keyPath:"p.topics.flt"] as! String +// prevSendDataTime = Date() +// objMQTTClient.publishTopicOnMQTT(withData: dictInValidData, topic: topic) +//// } +// } +// }else{ +// //"count is 1 +// let dictValD = arrData?[0][Dictkeys.dKey] as? [String:Any] +// +// if dictValD == nil || ((dictValD?.isEmpty) == true){ +// print(Log.Errors.ERR_InValidValue.rawValue) +// }else{ +// dictValD?.forEach { +// let dictValDKey = $0.key +// let value = $0.value +// let arrAtt = IoTConnectManager.sharedInstance.attributes +// +// if arrAtt?.att?.count ?? 0 > 0{ +// for i in 0...(arrAtt?.att?.count ?? 0)-1{ +// if let valDict = value as? [String:Any]{ +// for (valDictKey,dictValue) in valDict{ +// if dictValue is String{ +//// var arrFilterD = arrAtt?.att?[i].d?.filter({$0.ln == valDictKey}) +// let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == valDictKey}) +//// if arrFilterD?.count ?? 0 > 0{ +// if firstIndexVal != nil{ +// var dict = [String:Any]() +// var isValidData = skipValidation +// +// if (dictValue as! String).isEmpty{ +// if !skipValidation{ +//// isValidData = checkisValValid(val: dictValue as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) +// isValidData = checkisValValid(val: dictValue as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv) +// } +// +// if isValidData{ +// dict = dictValidData +// }else{ +// dict = dictInValidData +// } +// +// if dict[$0.key] != nil{ +// let val = dict[$0.key] as? [String:Any] +// let newVal = [valDictKey:dictValue] as? [String:Any] +// dict[$0.key] = val?.merging(newVal ?? [:], uniquingKeysWith: { current, _ in +// return current +// }) +// }else{ +// dict.updateValue([valDictKey:dictValue], forKey:$0.key) +// } +//// arrFilterD?.removeAll() +// if isValidData{ +// dictValidData = dict +// +// if boolEdgeDevice == 1, let _ = Double(dictValue as? String ?? ""){ +// arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictValDKey:[valDictKey:dictValue]],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "" ) +// +// if edgeRules != nil,!(dictValue as? String ?? "").isEmpty{ +// createResponseForEdgeRuleDeviceTelemetryData(dict: [dictValDKey:[valDictKey:dictValue]]) +// } +// } +// }else{ +// var isEdgeValidForFaulty = false +// +// if boolEdgeDevice == 1{ +// isEdgeValidForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) +// } +// if isEdgeValidForFaulty == true{ +// dictInValidData = dict +// +// IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() +// +// print("New fauty data \(IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0])") +// } +//// dictInValidData = dict +// } +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// continue +// } +// } +// }else{ +// if value is String{ +//// let arrFilterD = arrAtt?.att?[i].d?.filter({$0.ln == dictValDKey}) +// let firstIndexVal = IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?.firstIndex(where: {$0.ln == dictValDKey}) +// +//// if arrFilterD?.count ?? 0 > 0{ +// if firstIndexVal != nil{ +// +// var isValidData = skipValidation +// if !(value as! String).isEmpty{ +// +// if !skipValidation,value is String{ +//// isValidData = checkisValValid(val: value as! String, dt: arrFilterD?[0].dt ?? 0, dv: arrFilterD?[0].dv) +// isValidData = checkisValValid(val: value as! String, dt: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dt ?? 0, dv: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].dv) +// } +// +// if isValidData{ +// dictValidData.append(anotherDict: [$0.key:$0.value]) +// // print("dictValidData \(dictValidData)") +// +// if boolEdgeDevice == 1, let _ = Double(value as? String ?? ""){ +// arrDataEdgeDevices = storeEdgeDeviceData(arr: arrDataEdgeDevices, dictVal: [dictValDKey:value],id: arrData?[0][Dictkeys.idkey] as? String ?? "",tg: arrData?[0][Dictkeys.tagkey] as? String ?? "",dt: arrData?[0][Dictkeys.datekey] as? String ?? "") +// +// if edgeRules != nil{ +// createResponseForEdgeRuleDeviceTelemetryData(dict: [dictValDKey:value]) +// } +// } +// }else{ +// if boolEdgeDevice == 1{ +// let isValiForFaulty = checkEdgeDeviceFaultTime(faultTime: IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime) +// +// if isValiForFaulty{ +// +// dictInValidData.append(anotherDict: [$0.key:$0.value]) +// IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0].fltDataTime = Date() +// +// print("New faulty data \(IoTConnectManager.sharedInstance.arrAttForValidation?.att?[i].d?[firstIndexVal ?? 0])") +// } +// }else{ +// dictInValidData.append(anotherDict: [$0.key:$0.value]) +// } +// } +// break +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// continue +// } +// } +// } +// }else{ +// print(Log.Errors.ERR_InValidValue.rawValue) +// } +// } +// } +// +// if !dictValidData.isEmpty{ +// if boolEdgeDevice != 1{ +// dictValidData = [Dictkeys.datekey:data[Dictkeys.datekey] ?? "",Dictkeys.dKey:[[Dictkeys.datekey:arrData?[0][Dictkeys.datekey] ?? "",Dictkeys.idkey:arrData?[0][Dictkeys.idkey] ?? "",Dictkeys.tagkey:arrData?[0][Dictkeys.tagkey] ?? "",Dictkeys.dKey:dictValidData]]] +// prevSendDataTime = Date() +// let topic = dictSyncResponse[keyPath:"p.topics.rpt"] as! String +// objMQTTClient.publishTopicOnMQTT(withData: dictValidData, topic: topic) +// }else{ +// sendMessageForEdgeRuleMatch(dictValidData: dictValidData, dictDeviceTelemetry: dictForEdgeRuleData,id: arrData?[0][Dictkeys.idkey] as? String ?? "", tag: arrData?[0][Dictkeys.tagkey] as? String ?? "") +// } +// } +// +// if !dictInValidData.isEmpty{ +// dictInValidData = [Dictkeys.datekey:data[Dictkeys.datekey] ?? "", +// Dictkeys.dKey:[[Dictkeys.datekey:arrData?[0][Dictkeys.datekey], +// Dictkeys.idkey:arrData?[0][Dictkeys.idkey], +// Dictkeys.tagkey:arrData?[0][Dictkeys.tagkey], +// Dictkeys.dKey:dictInValidData]]] +// +//// if boolEdgeDevice != 1{ +// prevSendDataTime = Date() +// let topic = dictSyncResponse[keyPath:"p.topics.flt"] as! String +// objMQTTClient.publishTopicOnMQTT(withData: dictInValidData, topic: topic) +//// } +// } +// } +// +// func checkisValValid(val:String,dt:Int,dv:String?)-> Bool{ +// switch dt{ +// case SupportedDataType.intValue: +// if Int32(val) != nil{ +// if validateNumber(value: val, dv: dv, dataType: SupportedDataType.intValue) == true{ +// return true +// }else{ +// return false +// } +// }else{ +// if val.isEmpty && (dv == nil || dv?.isEmpty == true){ +// return true +// } +// if !val.isEmpty{ +// if let doubleVal = Double(val){ +// let roundVal = Int32(round(doubleVal)) +// if validateNumber(value: "\(roundVal)", dv: dv, dataType: SupportedDataType.intValue) == true{ +// return true +// }else{ +// return false +// } +// } +// } +// return false +// } +// +// case SupportedDataType.boolValue: +// let isValid = self.validateBoolValue(value: val, dv: dv) +// if isValid{ +// return true +// }else{ +// return false +// } +// case SupportedDataType.strVal: +// //remaining +// let isValid = self.validateNumber(value: val, dv: dv, dataType: SupportedDataType.decimalVal) +// if isValid{ +// return true +// }else{ +// return false +// } +// case SupportedDataType.bitValue: +// let isValid = self.validateBit(value: val, dv: dv) +// +// if isValid{ +// return true +// }else{ +// return false +// } +// +// case SupportedDataType.dateValue: +// let isValid = validateDate(value: val, dateFormat: "YYYY-MM-dd", dv: dv) +// +// if (isValid){ +// return true +// }else{ +// return false +// } +// +// case SupportedDataType.dateTimeVal: +// let isValid = validateDate(value: val, dateFormat:"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'" , dv: dv) +// if isValid{ +// return true +// }else{ +// return false +// } +// +// case SupportedDataType.decimalVal: +// if let floatVal = Float(val){ +// //range is -7.9*1028 +// if floatVal.isLessThanOrEqualTo(8121.2) && +// floatVal >= -8121.2 +// { +// if validateNumber(value: val, dv: dv, dataType: SupportedDataType.decimalVal) == true{ +// return true +// }else{ +// return false +// } +// }else{ +// return false +// } +// } +// if val.isEmpty && (dv == nil || dv?.isEmpty == true){ +// return true +// } +// return false +// +// case SupportedDataType.latLongVal: +// //[10,8] [11,8] +// if validateLatLong(value: val,dv: dv){ +// return true +// } +// +// return false +// +// case SupportedDataType.longVal: +// if Int64(val) != nil{ +// if validateNumber(value: val, dv: dv, dataType: SupportedDataType.longVal) == true{ +// return true +// }else{ +// return false +// } +// }else{ +// if val.isEmpty && (dv == nil || dv?.isEmpty == true){ +// return true +// } +// if !val.isEmpty{ +// if let doubleVal = Double(val){ +// let roundVal = Int64(round(doubleVal)) +// if validateNumber(value: "\(roundVal)", dv: dv, dataType: SupportedDataType.intValue) == true{ +// return true +// }else{ +// return false +// } +// } +// } +// return false +// } +// +// case SupportedDataType.timeVal: +// if dv == nil || dv?.isEmpty == true{ +// if val.isEmpty == true{ +// return true +// } +// } +// let arrVal = val.components(separatedBy: ":") +// if arrVal.count >= 3{ +// let isValid = validateDate(value: val, dateFormat: "HH:mm:ss", dv: dv) +// +// if isValid{ +// return true +// }else{ +// return false +// } +// }else +// { +// return false +// } +// +// default: +// return false +// } +// } +// +// func createResponseForEdgeRuleDeviceTelemetryData(dict:[String:Any]){ +// dict.forEach({ (dictkey:String,dictVal:Any) in +// if let valDict = dictVal as? [String:Any]{ +// if dictForEdgeRuleData[dictkey] != nil{ +// var dict = dictForEdgeRuleData[dictkey] as? [String:Any] +// dict?.append(anotherDict:valDict) +// dictForEdgeRuleData[dictkey] = dict +// }else{ +// dictForEdgeRuleData.append(anotherDict: dict) +// } +// }else{ +// dictForEdgeRuleData.append(anotherDict: [dictkey:dictVal]) +// } +// }) +// } +// } + + func checkEdgeDeviceFaultTime(faultTime:Date?)->Bool{ + if faultTime == nil{ + print("Edge Valid for faulty") + return true + } + + // let diffSinceLast = Calendar.current.dateComponents([.second], from: faultTime ?? Date(), to: Date()).second + // + // if diffSinceLast ?? 0 > 60{ + //// print("Edge Device Fault data \($0.key) GT 60") + //// dictInValidData.append(anotherDict: [$0.key:$0.value]) + // print("Edge Valid for faulty") + // return true + // }else{ + // print("Edge not Valid for faulty") + // return false + // } + + let Dateformatter = DateFormatter() + + let distanceBetweenDates: TimeInterval? = Date().timeIntervalSince(faultTime ?? Date()) + + let secbetweenDates = Int(distanceBetweenDates!) + + if secbetweenDates > 60{ + print("Edge Valid for faulty") + return true + }else{ + print("Edge not Valid for faulty \(faultTime) \(Date()) \(secbetweenDates)") + return false } } diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/MQTTClient.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/MQTTClient.swift index 1517989..9d85828 100644 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/MQTTClient.swift +++ b/IoTConnect2/IoTConnect2/IoTConnect_2.0/MQTTClient.swift @@ -56,6 +56,11 @@ class MQTTClient { if mqtt?.connState == .connected { mqtt!.disconnect() } + + if mqtt != nil{ + mqtt = nil + } + mqtt = CocoaMQTT(clientID: dataSyncResponse[keyPath:"p.id"] as! String, host: dataSyncResponse[keyPath:"p.h"] as! String, port: dataSyncResponse[keyPath:"p.p"] as! UInt16) guard let mqtt = mqtt else { return } @@ -481,17 +486,22 @@ class MQTTClient { print("publishTopicOnMQTT: \(dictSDKToHub) \(topic)") var topicToSend = "" if topic == ""{ - topicToSend = dataSyncResponse[keyPath:"p.topics.di"] as! String + if let diTopic = dataSyncResponse[keyPath:"p.topics.di"] as? String{ + topicToSend = diTopic + } }else{ topicToSend = topic } - do { - let jsonData = try JSONSerialization.data(withJSONObject: dictSDKToHub, options: .prettyPrinted) - let message = String(data: jsonData, encoding: .utf8)! - publishDataOnMQTT(dictSDKToHubForOS: dictSDKToHub, strPubTopic: topicToSend, strMessageToPass: message)// p.pub - } catch let error { - print("parse error: \(error.localizedDescription)") - objCommon.manageDebugLog(code: Log.Errors.ERR_CM01.rawValue, uniqueId: strUniqueID, cpId: strCPID, message: error.localizedDescription, logFlag: false, isDebugEnabled: boolDebugYN) + + if !topicToSend.isEmpty{ + do { + let jsonData = try JSONSerialization.data(withJSONObject: dictSDKToHub, options: .prettyPrinted) + let message = String(data: jsonData, encoding: .utf8)! + publishDataOnMQTT(dictSDKToHubForOS: dictSDKToHub, strPubTopic: topicToSend, strMessageToPass: message)// p.pub + } catch let error { + print("parse error: \(error.localizedDescription)") + objCommon.manageDebugLog(code: Log.Errors.ERR_CM01.rawValue, uniqueId: strUniqueID, cpId: strCPID, message: error.localizedDescription, logFlag: false, isDebugEnabled: boolDebugYN) + } } } @@ -569,9 +579,9 @@ extension MQTTClient: CocoaMQTTDelegate { if ack == .accept { blockHandler?(["sdkStatus": "connect"], 1) let p = dataSyncResponse["p"] as? [String:Any] - let topics = p?["topics"] as? [String:Any] - mqtt.subscribe(topics?["c2d"] as! String, qos: .qos1) - + if let topics = p?["topics"] as? [String:Any]{ + mqtt.subscribe(topics["c2d"] as! String, qos: .qos1) + } #if IOTAWS let set = topics?["set"] as? [String:Any] print("twinPropertySubTopic \(set?["pub"] as! String)") @@ -677,7 +687,7 @@ extension MQTTClient: CocoaMQTTDelegate { let decoder = JSONDecoder() let decodedAttributes = try decoder.decode(AttributesData.self, from: json) IoTConnectManager.sharedInstance.attributes = decodedAttributes - + IoTConnectManager.sharedInstance.arrAttForValidation = decodedAttributes } catch { print(error) } @@ -831,7 +841,16 @@ extension MQTTClient: CocoaMQTTDelegate { Dictkeys.ackIDKey: "", Dictkeys.commandTypeKey: CommandType.DEVICE_CONNECTION_STATUS.rawValue]], 2) }else{ - blockHandler?(["sdkStatus": Log.Errors.ERR_IN14.rawValue], 1) + blockHandler?([Dictkeys.commandTypeKey: CommandType.DEVICE_CONNECTION_STATUS.rawValue, + Dictkeys.dataKey: [Dictkeys.cpIDkey: strCPID, + Dictkeys.guidKey: "", + Dictkeys.uniqueIDKey: strUniqueID, + Dictkeys.commandKey: false, + Dictkeys.ackKey: false, + Dictkeys.ackIDKey: "", + Dictkeys.message:Log.Errors.ERR_IN14.rawValue, + Dictkeys.commandTypeKey: CommandType.DEVICE_CONNECTION_STATUS.rawValue]], 2) +// blockHandler?(["sdkStatus": Log.Errors.ERR_IN14.rawValue], 1) } } } diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/Models/Attributes.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/Models/Attributes.swift index 1bcab15..d6efabe 100644 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/Models/Attributes.swift +++ b/IoTConnect2/IoTConnect2/IoTConnect_2.0/Models/Attributes.swift @@ -34,4 +34,5 @@ struct AttData: Codable { var p:String? = "" var value:String? var connectedTime:Date? + var fltDataTime:Date? } diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/Models/IoTConnectConfig.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/Models/IoTConnectConfig.swift index 93c8ce8..53558ed 100644 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/Models/IoTConnectConfig.swift +++ b/IoTConnect2/IoTConnect2/IoTConnect_2.0/Models/IoTConnectConfig.swift @@ -27,14 +27,15 @@ public struct IoTConnectConfig { let mqttConnectionType: MqttConnectionType let debugConfig: DebugConfig? let mqttConfig: MqttConfig? - let sdkOptions: SDKClientOption? + var sdkOptions: SDKClientOption? public init( uniqueId: String, mqttConnectionType: MqttConnectionType, debugConfig: DebugConfig? = nil, mqttConfig: MqttConfig? = nil, sdkOptions: SDKClientOption) { - self.uniqueId = uniqueId + self.uniqueId = uniqueId.replacingOccurrences(of: " ", with: "") self.mqttConnectionType = mqttConnectionType self.debugConfig = debugConfig self.mqttConfig = mqttConfig self.sdkOptions = sdkOptions + self.sdkOptions?.cpId = sdkOptions.cpId.replacingOccurrences(of: " ", with: "") } } diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/.DS_Store b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/.DS_Store index 053dab5..5008ddf 100644 Binary files a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/.DS_Store and b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/.DS_Store differ diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/.DS_Store b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/.DS_Store deleted file mode 100644 index 6d7246c..0000000 Binary files a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/.DS_Store and /dev/null differ diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTT.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTT.swift deleted file mode 100644 index 9990613..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTT.swift +++ /dev/null @@ -1,767 +0,0 @@ -// -// CocoaMQTT.swift -// CocoaMQTT -// - - -import Foundation -//import CocoaAsyncSocket - -/** - * Connection State - */ -@objc public enum CocoaMQTTConnState: UInt8, CustomStringConvertible { - case disconnected = 0 - case connecting - case connected - - public var description: String { - switch self { - case .connecting: return "connecting" - case .connected: return "connected" - case .disconnected: return "disconnected" - } - } -} - -/** - * Conn Ack - */ -@objc public enum CocoaMQTTConnAck: UInt8, CustomStringConvertible { - case accept = 0 - case unacceptableProtocolVersion - case identifierRejected - case serverUnavailable - case badUsernameOrPassword - case notAuthorized - case reserved - - public var description: String { - switch self { - case .accept: return "accept" - case .unacceptableProtocolVersion: return "unacceptableProtocolVersion" - case .identifierRejected: return "identifierRejected" - case .serverUnavailable: return "serverUnavailable" - case .badUsernameOrPassword: return "badUsernameOrPassword" - case .notAuthorized: return "notAuthorized" - case .reserved: return "reserved" - } - } -} - -/// CocoaMQTT Delegate -@objc public protocol CocoaMQTTDelegate { - - /// - func mqtt(_ mqtt: CocoaMQTT, didConnectAck ack: CocoaMQTTConnAck) - - /// - func mqtt(_ mqtt: CocoaMQTT, didPublishMessage message: CocoaMQTTMessage, id: UInt16) - - /// - func mqtt(_ mqtt: CocoaMQTT, didPublishAck id: UInt16) - - /// - func mqtt(_ mqtt: CocoaMQTT, didReceiveMessage message: CocoaMQTTMessage, id: UInt16 ) - - /// - func mqtt(_ mqtt: CocoaMQTT, didSubscribeTopics success: NSDictionary, failed: [String]) - - /// - func mqtt(_ mqtt: CocoaMQTT, didUnsubscribeTopics topics: [String]) - - /// - func mqttDidPing(_ mqtt: CocoaMQTT) - - /// - func mqttDidReceivePong(_ mqtt: CocoaMQTT) - - /// - func mqttDidDisconnect(_ mqtt: CocoaMQTT, withError err: Error?) - - /// Manually validate SSL/TLS server certificate. - /// - /// This method will be called if enable `allowUntrustCACertificate` - @objc optional func mqtt(_ mqtt: CocoaMQTT, didReceive trust: SecTrust, completionHandler: @escaping (Bool) -> Void) - - /// - @objc optional func mqtt(_ mqtt: CocoaMQTT, didPublishComplete id: UInt16) - - /// - @objc optional func mqtt(_ mqtt: CocoaMQTT, didStateChangeTo state: CocoaMQTTConnState) -} - -/** - * Blueprint of the MQTT Client - */ -protocol CocoaMQTTClient { - - /* Basic Properties */ - - var host: String { get set } - var port: UInt16 { get set } - var clientID: String { get } - var username: String? {get set} - var password: String? {get set} - var cleanSession: Bool {get set} - var keepAlive: UInt16 {get set} - var willMessage: CocoaMQTTMessage? {get set} - - /* Basic Properties */ - - /* CONNNEC/DISCONNECT */ - - func connect() -> Bool - func connect(timeout:TimeInterval) -> Bool - func disconnect() - func ping() - - /* CONNNEC/DISCONNECT */ - - /* PUBLISH/SUBSCRIBE */ - - func subscribe(_ topic: String, qos: CocoaMQTTQoS) - func subscribe(_ topics: [(String, CocoaMQTTQoS)]) - - func unsubscribe(_ topic: String) - func unsubscribe(_ topics: [String]) - - func publish(_ topic: String, withString string: String, qos: CocoaMQTTQoS, retained: Bool) -> Int - func publish(_ message: CocoaMQTTMessage) -> Int - - /* PUBLISH/SUBSCRIBE */ -} - - -/// MQTT Client -/// -/// - Note: GCDAsyncSocket need delegate to extend NSObject -public class CocoaMQTT: NSObject, CocoaMQTTClient { - - public weak var delegate: CocoaMQTTDelegate? - - public var host = "localhost" - - public var port: UInt16 = 1883 - - public var clientID: String - - public var username: String? - - public var password: String? - - /// Clean Session flag. Default is true - /// - /// - TODO: What's behavior each Clean Session flags??? - public var cleanSession = true - - /// Setup a **Last Will Message** to client before connecting to broker - public var willMessage: CocoaMQTTMessage? - - /// Enable backgounding socket if running on iOS platform. Default is true - /// - /// - Note: - public var backgroundOnSocket: Bool { - get { return (self.socket as? CocoaMQTTSocket)?.backgroundOnSocket ?? true } - set { (self.socket as? CocoaMQTTSocket)?.backgroundOnSocket = newValue } - } - - /// Delegate Executed queue. Default is `DispatchQueue.main` - /// - /// The delegate/closure callback function will be committed asynchronously to it - public var delegateQueue = DispatchQueue.main - - public var connState = CocoaMQTTConnState.disconnected { - didSet { - __delegate_queue { - self.delegate?.mqtt?(self, didStateChangeTo: self.connState) - self.didChangeState(self, self.connState) - } - } - } - - // deliver - private var deliver = CocoaMQTTDeliver() - - /// Re-deliver the un-acked messages - public var deliverTimeout: Double { - get { return deliver.retryTimeInterval } - set { deliver.retryTimeInterval = newValue } - } - - /// Message queue size. default 1000 - /// - /// The new publishing messages of Qos1/Qos2 will be drop, if the queue is full - public var messageQueueSize: UInt { - get { return deliver.mqueueSize } - set { deliver.mqueueSize = newValue } - } - - /// In-flight window size. default 10 - public var inflightWindowSize: UInt { - get { return deliver.inflightWindowSize } - set { deliver.inflightWindowSize = newValue } - } - - /// Keep alive time interval - public var keepAlive: UInt16 = 60 - private var aliveTimer: CocoaMQTTTimer? - - /// Enable auto-reconnect mechanism - public var autoReconnect = false - - /// Reconnect time interval - /// - /// - note: This value will be increased with `autoReconnectTimeInterval *= 2` - /// if reconnect failed - public var autoReconnectTimeInterval: UInt16 = 1 // starts from 1 second - - /// Maximum auto reconnect time interval - /// - /// The timer starts from `autoReconnectTimeInterval` second and grows exponentially until this value - /// After that, it uses this value for subsequent requests. - public var maxAutoReconnectTimeInterval: UInt16 = 128 // 128 seconds - - private var reconnectTimeInterval: UInt16 = 0 - - private var autoReconnTimer: CocoaMQTTTimer? - private var is_internal_disconnected = false - - /// Console log level - public var logLevel: CocoaMQTTLoggerLevel { - get { - return CocoaMQTTLogger.logger.minLevel - } - set { - CocoaMQTTLogger.logger.minLevel = newValue - } - } - - /// Enable SSL connection - public var enableSSL: Bool { - get { return self.socket.enableSSL } - set { socket.enableSSL = newValue } - } - - /// - public var sslSettings: [String: NSObject]? { - get { return (self.socket as? CocoaMQTTSocket)?.sslSettings ?? nil } - set { (self.socket as? CocoaMQTTSocket)?.sslSettings = newValue } - } - - /// Allow self-signed ca certificate. - /// - /// Default is false - public var allowUntrustCACertificate: Bool { - get { return (self.socket as? CocoaMQTTSocket)?.allowUntrustCACertificate ?? false } - set { (self.socket as? CocoaMQTTSocket)?.allowUntrustCACertificate = newValue } - } - - /// The subscribed topics in current communication - public var subscriptions: [String: CocoaMQTTQoS] = [:] - - fileprivate var subscriptionsWaitingAck: [UInt16: [(String, CocoaMQTTQoS)]] = [:] - fileprivate var unsubscriptionsWaitingAck: [UInt16: [String]] = [:] - - - /// Sending messages - fileprivate var sendingMessages: [UInt16: CocoaMQTTMessage] = [:] - - /// message id counter - private var _msgid: UInt16 = 0 - fileprivate var socket: CocoaMQTTSocketProtocol - fileprivate var reader: CocoaMQTTReader? - - // Closures - public var didConnectAck: (CocoaMQTT, CocoaMQTTConnAck) -> Void = { _, _ in } - public var didPublishMessage: (CocoaMQTT, CocoaMQTTMessage, UInt16) -> Void = { _, _, _ in } - public var didPublishAck: (CocoaMQTT, UInt16) -> Void = { _, _ in } - public var didReceiveMessage: (CocoaMQTT, CocoaMQTTMessage, UInt16) -> Void = { _, _, _ in } - public var didSubscribeTopics: (CocoaMQTT, NSDictionary, [String]) -> Void = { _, _, _ in } - public var didUnsubscribeTopics: (CocoaMQTT, [String]) -> Void = { _, _ in } - public var didPing: (CocoaMQTT) -> Void = { _ in } - public var didReceivePong: (CocoaMQTT) -> Void = { _ in } - public var didDisconnect: (CocoaMQTT, Error?) -> Void = { _, _ in } - public var didReceiveTrust: (CocoaMQTT, SecTrust, @escaping (Bool) -> Swift.Void) -> Void = { _, _, _ in } - public var didCompletePublish: (CocoaMQTT, UInt16) -> Void = { _, _ in } - public var didChangeState: (CocoaMQTT, CocoaMQTTConnState) -> Void = { _, _ in } - - /// Initial client object - /// - /// - Parameters: - /// - clientID: Client Identifier - /// - host: The MQTT broker host domain or IP address. Default is "localhost" - /// - port: The MQTT service port of host. Default is 1883 - public init(clientID: String, host: String = "localhost", port: UInt16 = 1883, socket: CocoaMQTTSocketProtocol = CocoaMQTTSocket()) { - self.clientID = clientID - self.host = host - self.port = port - self.socket = socket - super.init() - deliver.delegate = self - } - - deinit { - aliveTimer?.suspend() - autoReconnTimer?.suspend() - - socket.setDelegate(nil, delegateQueue: nil) - socket.disconnect() - } - - fileprivate func send(_ frame: Frame, tag: Int = 0) { - printDebug("SEND: \(frame)") - let data = frame.bytes() - socket.write(Data(bytes: data, count: data.count), withTimeout: 5, tag: tag) - } - - fileprivate func sendConnectFrame() { - - var connect = FrameConnect(clientID: clientID) - connect.keepalive = keepAlive - connect.username = username - connect.password = password - connect.willMsg = willMessage - connect.cleansess = cleanSession - - send(connect) - reader!.start() - } - - fileprivate func nextMessageID() -> UInt16 { - if _msgid == UInt16.max { - _msgid = 0 - } - _msgid += 1 - return _msgid - } - - fileprivate func puback(_ type: FrameType, msgid: UInt16) { - switch type { - case .puback: - send(FramePubAck(msgid: msgid)) - case .pubrec: - send(FramePubRec(msgid: msgid)) - case .pubcomp: - send(FramePubComp(msgid: msgid)) - default: return - } - } - - /// Connect to MQTT broker - /// - /// - Returns: - /// - Bool: It indicates whether successfully calling socket connect function. - /// Not yet established correct MQTT session - public func connect() -> Bool { - return connect(timeout: -1) - } - - /// Connect to MQTT broker - /// - Parameters: - /// - timeout: Connect timeout - /// - Returns: - /// - Bool: It indicates whether successfully calling socket connect function. - /// Not yet established correct MQTT session - public func connect(timeout: TimeInterval) -> Bool { - socket.setDelegate(self, delegateQueue: delegateQueue) - reader = CocoaMQTTReader(socket: socket, delegate: self) - do { - if timeout > 0 { - try socket.connect(toHost: self.host, onPort: self.port, withTimeout: timeout) - } else { - try socket.connect(toHost: self.host, onPort: self.port) - } - - delegateQueue.async { [weak self] in - guard let self = self else { return } - self.connState = .connecting - } - - return true - } catch let error as NSError { - printError("socket connect error: \(error.description)") - return false - } - } - - /// Send a DISCONNECT packet to the broker then close the connection - /// - /// - Note: Only can be called from outside. - /// If you want to disconnect from inside framework, call internal_disconnect() - /// disconnect expectedly - public func disconnect() { - is_internal_disconnected = false - internal_disconnect() - } - - /// Disconnect unexpectedly - func internal_disconnect() { - is_internal_disconnected = true - send(FrameDisconnect(), tag: -0xE0) - socket.disconnect() - } - - /// Send a PING request to broker - public func ping() { - printDebug("ping") - send(FramePingReq(), tag: -0xC0) - - __delegate_queue { - self.delegate?.mqttDidPing(self) - self.didPing(self) - } - } - - /// Publish a message to broker - /// - /// - Parameters: - /// - topic: Topic Name. It can not contain '#', '+' wildcards - /// - string: Payload string - /// - qos: Qos. Default is Qos1 - /// - retained: Retained flag. Mark this message is a retained message. default is false - /// - Returns: - /// - 0 will be returned, if the message's qos is qos0 - /// - 1-65535 will be returned, if the messages's qos is qos1/qos2 - /// - -1 will be returned, if the messages queue is full - @discardableResult - public func publish(_ topic: String, withString string: String, qos: CocoaMQTTQoS = .qos1, retained: Bool = false) -> Int { - let message = CocoaMQTTMessage(topic: topic, string: string, qos: qos, retained: retained) - return publish(message) - } - - /// Publish a message to broker - /// - /// - Parameters: - /// - message: Message - @discardableResult - public func publish(_ message: CocoaMQTTMessage) -> Int { - let msgid: UInt16 - - if message.qos == .qos0 { - msgid = 0 - } else { - msgid = nextMessageID() - } - - var frame = FramePublish(topic: message.topic, - payload: message.payload, - qos: message.qos, - msgid: msgid) - - frame.retained = message.retained - - delegateQueue.async { - self.sendingMessages[msgid] = message - } - - // Push frame to deliver message queue - guard deliver.add(frame) else { - delegateQueue.async { - self.sendingMessages.removeValue(forKey: msgid) - } - return -1 - } - - return Int(msgid) - } - - /// Subscribe a `/` - /// - /// - Parameters: - /// - topic: Topic Name or Topic Filter - /// - qos: Qos. Default is qos1 - public func subscribe(_ topic: String, qos: CocoaMQTTQoS = .qos1) { - return subscribe([(topic, qos)]) - } - - /// Subscribe a lists of topics - /// - /// - Parameters: - /// - topics: A list of tuples presented by `(/, Qos)` - public func subscribe(_ topics: [(String, CocoaMQTTQoS)]) { - let msgid = nextMessageID() - let frame = FrameSubscribe(msgid: msgid, topics: topics) - send(frame, tag: Int(msgid)) - subscriptionsWaitingAck[msgid] = topics - } - - /// Unsubscribe a Topic - /// - /// - Parameters: - /// - topic: A Topic Name or Topic Filter - public func unsubscribe(_ topic: String) { - return unsubscribe([topic]) - } - - /// Unsubscribe a list of topics - /// - /// - Parameters: - /// - topics: A list of `/` - public func unsubscribe(_ topics: [String]) { - let msgid = nextMessageID() - let frame = FrameUnsubscribe(msgid: msgid, topics: topics) - unsubscriptionsWaitingAck[msgid] = topics - send(frame, tag: Int(msgid)) - } -} - -// MARK: CocoaMQTTDeliverProtocol -extension CocoaMQTT: CocoaMQTTDeliverProtocol { - - func deliver(_ deliver: CocoaMQTTDeliver, wantToSend frame: Frame) { - if let publish = frame as? FramePublish { - let msgid = publish.msgid - guard let message = sendingMessages[msgid] else { - printError("Want send \(frame), but not found in CocoaMQTT cache") - return - } - - send(publish, tag: Int(msgid)) - - - self.delegate?.mqtt(self, didPublishMessage: message, id: msgid) - self.didPublishMessage(self, message, msgid) - - } else if let pubrel = frame as? FramePubRel { - // -- Send PUBREL - send(pubrel, tag: Int(pubrel.msgid)) - } - } -} - -extension CocoaMQTT { - - func __delegate_queue(_ fun: @escaping () -> Void) { - delegateQueue.async { [weak self] in - guard let _ = self else { return } - fun() - } - } -} - -// MARK: - CocoaMQTTSocketDelegate -extension CocoaMQTT: CocoaMQTTSocketDelegate { - - public func socketConnected(_ socket: CocoaMQTTSocketProtocol) { - sendConnectFrame() - } - - public func socket(_ socket: CocoaMQTTSocketProtocol, - didReceive trust: SecTrust, - completionHandler: @escaping (Bool) -> Swift.Void) { - - printDebug("Call the SSL/TLS manually validating function") - - delegate?.mqtt?(self, didReceive: trust, completionHandler: completionHandler) - didReceiveTrust(self, trust, completionHandler) - } - - // ? - public func socketDidSecure(_ sock: GCDAsyncSocket) { - printDebug("Socket has successfully completed SSL/TLS negotiation") - sendConnectFrame() - } - - public func socket(_ socket: CocoaMQTTSocketProtocol, didWriteDataWithTag tag: Int) { - // XXX: How to print writed bytes?? - } - - public func socket(_ socket: CocoaMQTTSocketProtocol, didRead data: Data, withTag tag: Int) { - let etag = CocoaMQTTReadTag(rawValue: tag)! - var bytes = [UInt8]([0]) - switch etag { - case CocoaMQTTReadTag.header: - data.copyBytes(to: &bytes, count: 1) - reader!.headerReady(bytes[0]) - case CocoaMQTTReadTag.length: - data.copyBytes(to: &bytes, count: 1) - reader!.lengthReady(bytes[0]) - case CocoaMQTTReadTag.payload: - reader!.payloadReady(data) - } - } - - public func socketDidDisconnect(_ socket: CocoaMQTTSocketProtocol, withError err: Error?) { - // Clean up - socket.setDelegate(nil, delegateQueue: nil) - connState = .disconnected - delegate?.mqttDidDisconnect(self, withError: err) - didDisconnect(self, err) - - guard is_internal_disconnected else { - return - } - - guard autoReconnect else { - return - } - - if reconnectTimeInterval == 0 { - reconnectTimeInterval = autoReconnectTimeInterval - } - - // Start reconnector once socket error occurred - printInfo("Try reconnect to server after \(reconnectTimeInterval)s") - autoReconnTimer = CocoaMQTTTimer.after(Double(reconnectTimeInterval), name: "autoReconnTimer", { [weak self] in - guard let self = self else { return } - if self.reconnectTimeInterval < self.maxAutoReconnectTimeInterval { - self.reconnectTimeInterval *= 2 - } else { - self.reconnectTimeInterval = self.maxAutoReconnectTimeInterval - } - _ = self.connect() - }) - } -} - -// MARK: - CocoaMQTTReaderDelegate -extension CocoaMQTT: CocoaMQTTReaderDelegate { - - func didReceive(_ reader: CocoaMQTTReader, connack: FrameConnAck) { - printDebug("RECV: \(connack)") - - if connack.returnCode == .accept { - - // Disable auto-reconnect - - reconnectTimeInterval = 0 - autoReconnTimer = nil - is_internal_disconnected = false - - // Start keepalive timer - - let interval = Double(keepAlive <= 0 ? 60: keepAlive) - - aliveTimer = CocoaMQTTTimer.every(interval, name: "aliveTimer") { [weak self] in - guard let self = self else { return } - self.delegateQueue.async { - guard self.connState == .connected else { - self.aliveTimer = nil - return - } - self.ping() - } - } - - // recover session if enable - - if cleanSession { - deliver.cleanAll() - } else { - if let storage = CocoaMQTTStorage(by: clientID) { - deliver.recoverSessionBy(storage) - } else { - printWarning("Localstorage initial failed for key: \(clientID)") - } - } - - connState = .connected - - } else { - connState = .disconnected - internal_disconnect() - } - - delegate?.mqtt(self, didConnectAck: connack.returnCode) - didConnectAck(self, connack.returnCode) - } - - func didReceive(_ reader: CocoaMQTTReader, publish: FramePublish) { - printDebug("RECV: \(publish)") - - let message = CocoaMQTTMessage(topic: publish.topic, payload: publish.payload(), qos: publish.qos, retained: publish.retained) - - message.duplicated = publish.dup - - printInfo("Received message: \(message)") - delegate?.mqtt(self, didReceiveMessage: message, id: publish.msgid) - didReceiveMessage(self, message, publish.msgid) - - if message.qos == .qos1 { - puback(FrameType.puback, msgid: publish.msgid) - } else if message.qos == .qos2 { - puback(FrameType.pubrec, msgid: publish.msgid) - } - } - - func didReceive(_ reader: CocoaMQTTReader, puback: FramePubAck) { - printDebug("RECV: \(puback)") - - deliver.ack(by: puback) - - delegate?.mqtt(self, didPublishAck: puback.msgid) - didPublishAck(self, puback.msgid) - } - - func didReceive(_ reader: CocoaMQTTReader, pubrec: FramePubRec) { - printDebug("RECV: \(pubrec)") - - deliver.ack(by: pubrec) - } - - func didReceive(_ reader: CocoaMQTTReader, pubrel: FramePubRel) { - printDebug("RECV: \(pubrel)") - - puback(FrameType.pubcomp, msgid: pubrel.msgid) - } - - func didReceive(_ reader: CocoaMQTTReader, pubcomp: FramePubComp) { - printDebug("RECV: \(pubcomp)") - - deliver.ack(by: pubcomp) - - delegate?.mqtt?(self, didPublishComplete: pubcomp.msgid) - didCompletePublish(self, pubcomp.msgid) - } - - func didReceive(_ reader: CocoaMQTTReader, suback: FrameSubAck) { - printDebug("RECV: \(suback)") - - guard let topicsAndQos = subscriptionsWaitingAck.removeValue(forKey: suback.msgid) else { - printWarning("UNEXPECT SUBACK Received: \(suback)") - return - } - - guard topicsAndQos.count == suback.grantedQos.count else { - printWarning("UNEXPECT SUBACK Recivied: \(suback)") - return - } - - let success: NSMutableDictionary = NSMutableDictionary() - var failed = [String]() - for (idx,(topic, _)) in topicsAndQos.enumerated() { - if suback.grantedQos[idx] != .FAILTURE { - subscriptions[topic] = suback.grantedQos[idx] - success[topic] = suback.grantedQos[idx].rawValue - } else { - failed.append(topic) - } - } - - delegate?.mqtt(self, didSubscribeTopics: success, failed: failed) - didSubscribeTopics(self, success, failed) - } - - func didReceive(_ reader: CocoaMQTTReader, unsuback: FrameUnsubAck) { - printDebug("RECV: \(unsuback)") - - guard let topics = unsubscriptionsWaitingAck.removeValue(forKey: unsuback.msgid) else { - printWarning("UNEXPECT UNSUBACK Received: \(unsuback.msgid)") - return - } - // Remove local subscription - for t in topics { - subscriptions.removeValue(forKey: t) - } - delegate?.mqtt(self, didUnsubscribeTopics: topics) - didUnsubscribeTopics(self, topics) - } - - func didReceive(_ reader: CocoaMQTTReader, pingresp: FramePingResp) { - printDebug("RECV: \(pingresp)") - - delegate?.mqttDidReceivePong(self) - didReceivePong(self) - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTDeliver.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTDeliver.swift deleted file mode 100644 index ccea3b4..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTDeliver.swift +++ /dev/null @@ -1,296 +0,0 @@ -// -// CocoaMQTTDeliver.swift -// CocoaMQTT -// - - -import Foundation -import Dispatch - -protocol CocoaMQTTDeliverProtocol: AnyObject { - - var delegateQueue: DispatchQueue { get set } - - func deliver(_ deliver: CocoaMQTTDeliver, wantToSend frame: Frame) -} - -private struct InflightFrame { - - /// The infligth frame maybe a `FramePublish` or `FramePubRel` - var frame: Frame - - var timestamp: TimeInterval - - init(frame: Frame) { - self.init(frame: frame, timestamp: Date.init(timeIntervalSinceNow: 0).timeIntervalSince1970) - } - - init(frame: Frame, timestamp: TimeInterval) { - self.frame = frame - self.timestamp = timestamp - } -} - -extension Array where Element == InflightFrame { - - func filterMap(isIncluded: (Element) -> (Bool, Element)) -> [Element] { - var tmp = [Element]() - for e in self { - let res = isIncluded(e) - if res.0 { - tmp.append(res.1) - } - } - return tmp - } -} - -// CocoaMQTTDeliver -class CocoaMQTTDeliver: NSObject { - - /// The dispatch queue is used by delivering frames in serially - private var deliverQueue = DispatchQueue.init(label: "deliver.cocoamqtt.emqx", qos: .default) - - weak var delegate: CocoaMQTTDeliverProtocol? - - fileprivate var inflight = [InflightFrame]() - - fileprivate var mqueue = [Frame]() - - var mqueueSize: UInt = 1000 - - var inflightWindowSize: UInt = 10 - - /// Retry time interval millisecond - var retryTimeInterval: Double = 5000 - - private var awaitingTimer: CocoaMQTTTimer? - - var isQueueEmpty: Bool { get { return mqueue.count == 0 }} - var isQueueFull: Bool { get { return mqueue.count >= mqueueSize }} - var isInflightFull: Bool { get { return inflight.count >= inflightWindowSize }} - var isInflightEmpty: Bool { get { return inflight.count == 0 }} - - var storage: CocoaMQTTStorage? - - func recoverSessionBy(_ storage: CocoaMQTTStorage) { - - let frames = storage.takeAll() - guard frames.count >= 0 else { - return - } - - // Sync to push the frame to mqueue for avoiding overcommit - deliverQueue.sync { - for f in frames { - mqueue.append(f) - } - self.storage = storage - printInfo("Deliver recover \(frames.count) msgs") - printDebug("Recover message \(frames)") - } - - deliverQueue.async { [weak self] in - guard let self = self else { return } - self.tryTransport() - } - } - - /// Add a FramePublish to the message queue to wait for sending - /// - /// return false means the frame is rejected because of the buffer is full - func add(_ frame: FramePublish) -> Bool { - guard !isQueueFull else { - printError("Sending buffer is full, frame \(frame) has been rejected to add.") - return false - } - - // Sync to push the frame to mqueue for avoiding overcommit - deliverQueue.sync { - mqueue.append(frame) - _ = storage?.write(frame) - } - - deliverQueue.async { [weak self] in - guard let self = self else { return } - self.tryTransport() - } - - return true - } - - /// Acknowledge a PUBLISH/PUBREL by msgid - func ack(by frame: Frame) { - var msgid: UInt16 - - if let puback = frame as? FramePubAck { msgid = puback.msgid } - else if let pubrec = frame as? FramePubRec { msgid = pubrec.msgid } - else if let pubcom = frame as? FramePubComp { msgid = pubcom.msgid } - else { return } - - deliverQueue.async { [weak self] in - guard let self = self else { return } - let acked = self.ackInflightFrame(withMsgid: msgid, type: frame.type) - if acked.count == 0 { - printWarning("Acknowledge by \(frame), but not found in inflight window") - } else { - // TODO: ACK DONT DELETE PUBREL - for f in acked { - if frame is FramePubAck || frame is FramePubComp { - self.storage?.remove(f) - } - } - printDebug("Acknowledge frame id \(msgid) success, acked: \(acked)") - self.tryTransport() - } - } - } - - /// Clean Inflight content to prevent message blocked, when next connection established - /// - /// !!Warning: it's a temporary method for hotfix #221 - func cleanAll() { - deliverQueue.sync { [weak self] in - guard let self = self else { return } - self.mqueue.removeAll() - self.inflight.removeAll() - } - } -} - -// MARK: Private Funcs -extension CocoaMQTTDeliver { - - // try transport a frame from mqueue to inflight - private func tryTransport() { - if isQueueEmpty || isInflightFull { return } - - // take out the earliest frame - if mqueue.isEmpty { return } - let frame = mqueue.remove(at: 0) - - deliver(frame) - - // keep trying after a transport - self.tryTransport() - } - - /// Try to deliver a frame - private func deliver(_ frame: Frame) { - if frame.qos == .qos0 { - // Send Qos0 message, whatever the in-flight queue is full - // TODO: A retrict deliver mode is need? - sendfun(frame) - } else { - - sendfun(frame) - inflight.append(InflightFrame(frame: frame)) - - // Start a retry timer for resending it if it not receive PUBACK or PUBREC - if awaitingTimer == nil { - awaitingTimer = CocoaMQTTTimer.every(retryTimeInterval / 1000.0, name: "awaitingTimer") { [weak self] in - guard let self = self else { return } - self.deliverQueue.async { - self.redeliver() - } - } - } - } - } - - /// Attempt to redeliver in-flight messages - private func redeliver() { - if isInflightEmpty { - // Revoke the awaiting timer - awaitingTimer = nil - return - } - - let nowTimestamp = Date(timeIntervalSinceNow: 0).timeIntervalSince1970 - for (idx, frame) in inflight.enumerated() { - if (nowTimestamp - frame.timestamp) >= (retryTimeInterval/1000.0) { - - var duplicatedFrame = frame - duplicatedFrame.frame.dup = true - duplicatedFrame.timestamp = nowTimestamp - - inflight[idx] = duplicatedFrame - - printInfo("Re-delivery frame \(duplicatedFrame.frame)") - sendfun(duplicatedFrame.frame) - } - } - } - - @discardableResult - private func ackInflightFrame(withMsgid msgid: UInt16, type: FrameType) -> [Frame] { - var ackedFrames = [Frame]() - inflight = inflight.filterMap { frame in - - // -- ACK for PUBLISH - if let publish = frame.frame as? FramePublish, - publish.msgid == msgid { - - if publish.qos == .qos2 && type == .pubrec { // -- Replace PUBLISH with PUBREL - let pubrel = FramePubRel(msgid: publish.msgid) - - var nframe = frame - nframe.frame = pubrel - nframe.timestamp = Date(timeIntervalSinceNow: 0).timeIntervalSince1970 - - _ = storage?.write(pubrel) - sendfun(pubrel) - - ackedFrames.append(publish) - return (true, nframe) - } else if publish.qos == .qos1 && type == .puback { - ackedFrames.append(publish) - return (false, frame) - } - } - - // -- ACK for PUBREL - if let pubrel = frame.frame as? FramePubRel, - pubrel.msgid == msgid && type == .pubcomp { - - ackedFrames.append(pubrel) - return (false, frame) - } - return (true, frame) - } - - return ackedFrames - } - - private func sendfun(_ frame: Frame) { - guard let delegate = self.delegate else { - printError("The deliver delegate is nil!!! the frame will be drop: \(frame)") - return - } - - if frame.qos == .qos0 { - if let p = frame as? FramePublish { storage?.remove(p) } - } - - delegate.delegateQueue.async { - delegate.deliver(self, wantToSend: frame) - } - } -} - - -// For tests -extension CocoaMQTTDeliver { - - func t_inflightFrames() -> [Frame] { - var frames = [Frame]() - for f in inflight { - frames.append(f.frame) - } - return frames - } - - func t_queuedFrames() -> [Frame] { - return mqueue - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTLogger.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTLogger.swift deleted file mode 100644 index a17dadb..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTLogger.swift +++ /dev/null @@ -1,63 +0,0 @@ -// -// CocoaMQTTLogger.swift -// CocoaMQTT -// - -import Foundation - -// Convenience functions -func printDebug(_ message: String) { - CocoaMQTTLogger.logger.debug(message) -} - -func printInfo(_ message: String) { - CocoaMQTTLogger.logger.info(message) -} - -func printWarning(_ message: String) { - CocoaMQTTLogger.logger.warning(message) -} - -func printError(_ message: String) { - CocoaMQTTLogger.logger.error(message) -} - - -// Enum log levels -public enum CocoaMQTTLoggerLevel: Int { - case debug = 0, info, warning, error, off -} - - -open class CocoaMQTTLogger: NSObject { - - // Singleton - public static var logger = CocoaMQTTLogger() - public override init() { super.init() } - - // min level - var minLevel: CocoaMQTTLoggerLevel = .warning - - // logs - open func log(level: CocoaMQTTLoggerLevel, message: String) { - guard level.rawValue >= minLevel.rawValue else { return } - print("CocoaMQTT(\(level)): \(message)") - } - - func debug(_ message: String) { - log(level: .debug, message: message) - } - - func info(_ message: String) { - log(level: .info, message: message) - } - - func warning(_ message: String) { - log(level: .warning, message: message) - } - - func error(_ message: String) { - log(level: .error, message: message) - } - -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTMessage.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTMessage.swift deleted file mode 100644 index b7833f0..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTMessage.swift +++ /dev/null @@ -1,67 +0,0 @@ -// -// CocoaMQTTMessage.swift -// CocoaMQTT -// - - -import Foundation - - -/// MQTT Message -public class CocoaMQTTMessage: NSObject { - - public var qos = CocoaMQTTQoS.qos1 - - public var topic: String - - public var payload: [UInt8] - - public var retained = false - - /// The `duplicated` property show that this message maybe has be received before - /// - /// - note: Readonly property - public var duplicated = false - - /// Return the payload as a utf8 string if possible - /// - /// It will return nil if the payload is not a valid utf8 string - public var string: String? { - get { - return NSString(bytes: payload, length: payload.count, encoding: String.Encoding.utf8.rawValue) as String? - } - } - - public init(topic: String, string: String, qos: CocoaMQTTQoS = .qos1, retained: Bool = false) { - self.topic = topic - self.payload = [UInt8](string.utf8) - self.qos = qos - self.retained = retained - } - - public init(topic: String, payload: [UInt8], qos: CocoaMQTTQoS = .qos1, retained: Bool = false) { - self.topic = topic - self.payload = payload - self.qos = qos - self.retained = retained - } -} - -extension CocoaMQTTMessage { - - public override var description: String { - return "CocoaMQTTMessage(topic: \(topic), qos: \(qos), payload: \(payload.summary))" - } -} - -// For test -extension CocoaMQTTMessage { - - var t_pub_frame: FramePublish { - var frame = FramePublish(topic: topic, payload: payload, qos: qos, msgid: 0) - frame.retained = retained - frame.dup = duplicated - return frame - } - -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTReader.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTReader.swift deleted file mode 100644 index 053f2ea..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTReader.swift +++ /dev/null @@ -1,180 +0,0 @@ -// -// CocoaMQTTReader.swift -// CocoaMQTT -// - - -import Foundation - -/// Read tag for AsyncSocket -enum CocoaMQTTReadTag: Int { - case header = 0 - case length - case payload -} - -/// -protocol CocoaMQTTReaderDelegate: AnyObject { - - func didReceive(_ reader: CocoaMQTTReader, connack: FrameConnAck) - - func didReceive(_ reader: CocoaMQTTReader, publish: FramePublish) - - func didReceive(_ reader: CocoaMQTTReader, puback: FramePubAck) - - func didReceive(_ reader: CocoaMQTTReader, pubrec: FramePubRec) - - func didReceive(_ reader: CocoaMQTTReader, pubrel: FramePubRel) - - func didReceive(_ reader: CocoaMQTTReader, pubcomp: FramePubComp) - - func didReceive(_ reader: CocoaMQTTReader, suback: FrameSubAck) - - func didReceive(_ reader: CocoaMQTTReader, unsuback: FrameUnsubAck) - - func didReceive(_ reader: CocoaMQTTReader, pingresp: FramePingResp) -} - -class CocoaMQTTReader { - - private var socket: CocoaMQTTSocketProtocol - - private weak var delegate: CocoaMQTTReaderDelegate? - - private let timeout: TimeInterval = 30_000 - - /* -- Reader states -- */ - private var header: UInt8 = 0 - private var length: UInt = 0 - private var data: [UInt8] = [] - private var multiply = 1 - /* -- Reader states -- */ - - init(socket: CocoaMQTTSocketProtocol, delegate: CocoaMQTTReaderDelegate?) { - self.socket = socket - self.delegate = delegate - } - - func start() { - readHeader() - } - - func headerReady(_ header: UInt8) { - self.header = header - readLength() - } - - func lengthReady(_ byte: UInt8) { - length += (UInt)((Int)(byte & 127) * multiply) - // done - if byte & 0x80 == 0 { - if length == 0 { - frameReady() - } else { - readPayload() - } - // more - } else { - multiply *= 128 - readLength() - } - } - - func payloadReady(_ data: Data) { - self.data = [UInt8](repeating: 0, count: data.count) - data.copyBytes(to: &(self.data), count: data.count) - frameReady() - } - - private func readHeader() { - reset() - socket.readData(toLength: 1, withTimeout: -1, tag: CocoaMQTTReadTag.header.rawValue) - } - - private func readLength() { - socket.readData(toLength: 1, withTimeout: timeout, tag: CocoaMQTTReadTag.length.rawValue) - } - - private func readPayload() { - socket.readData(toLength: length, withTimeout: timeout, tag: CocoaMQTTReadTag.payload.rawValue) - } - - private func frameReady() { - - guard let frameType = FrameType(rawValue: UInt8(header & 0xF0)) else { - printError("Received unknown frame type, header: \(header), data:\(data)") - readHeader() - return - } - - // XXX: stupid implement - - switch frameType { - case .connack: - guard let connack = FrameConnAck(fixedHeader: header, bytes: data) else { - printError("Reader parse \(frameType) failed, data: \(data)") - break - } - delegate?.didReceive(self, connack: connack) - case .publish: - guard let publish = FramePublish(fixedHeader: header, bytes: data) else { - printError("Reader parse \(frameType) failed, data: \(data)") - break - } - delegate?.didReceive(self, publish: publish) - case .puback: - guard let puback = FramePubAck(fixedHeader: header, bytes: data) else { - printError("Reader parse \(frameType) failed, data: \(data)") - break - } - delegate?.didReceive(self, puback: puback) - case .pubrec: - guard let pubrec = FramePubRec(fixedHeader: header, bytes: data) else { - printError("Reader parse \(frameType) failed, data: \(data)") - break - } - delegate?.didReceive(self, pubrec: pubrec) - case .pubrel: - guard let pubrel = FramePubRel(fixedHeader: header, bytes: data) else { - printError("Reader parse \(frameType) failed, data: \(data)") - break - } - delegate?.didReceive(self, pubrel: pubrel) - case .pubcomp: - guard let pubcomp = FramePubComp(fixedHeader: header, bytes: data) else { - printError("Reader parse \(frameType) failed, data: \(data)") - break - } - delegate?.didReceive(self, pubcomp: pubcomp) - case .suback: - guard let frame = FrameSubAck(fixedHeader: header, bytes: data) else { - printError("Reader parse \(frameType) failed, data: \(data)") - break - } - delegate?.didReceive(self, suback: frame) - case .unsuback: - guard let frame = FrameUnsubAck(fixedHeader: header, bytes: data) else { - printError("Reader parse \(frameType) failed, data: \(data)") - break - } - delegate?.didReceive(self, unsuback: frame) - case .pingresp: - guard let frame = FramePingResp(fixedHeader: header, bytes: data) else { - printError("Reader parse \(frameType) failed, data: \(data)") - break - } - delegate?.didReceive(self, pingresp: frame) - default: - break - } - - readHeader() - } - - private func reset() { - length = 0 - multiply = 1 - header = 0 - data = [] - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTSocket.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTSocket.swift deleted file mode 100644 index 44c01fd..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTSocket.swift +++ /dev/null @@ -1,134 +0,0 @@ -// -// CocoaMQTTSocket.swift -// CocoaMQTT -// - - -import Foundation -//import CocoaAsyncSocket - -// MARK: - Interfaces - -public protocol CocoaMQTTSocketDelegate: AnyObject { - func socketConnected(_ socket: CocoaMQTTSocketProtocol) - func socket(_ socket: CocoaMQTTSocketProtocol, didReceive trust: SecTrust, completionHandler: @escaping (Bool) -> Swift.Void) - func socket(_ socket: CocoaMQTTSocketProtocol, didWriteDataWithTag tag: Int) - func socket(_ socket: CocoaMQTTSocketProtocol, didRead data: Data, withTag tag: Int) - func socketDidDisconnect(_ socket: CocoaMQTTSocketProtocol, withError err: Error?) -} - -public protocol CocoaMQTTSocketProtocol { - - var enableSSL: Bool { get set } - - func setDelegate(_ theDelegate: CocoaMQTTSocketDelegate?, delegateQueue: DispatchQueue?) - func connect(toHost host: String, onPort port: UInt16) throws - func connect(toHost host: String, onPort port: UInt16, withTimeout timeout: TimeInterval) throws - func disconnect() - func readData(toLength length: UInt, withTimeout timeout: TimeInterval, tag: Int) - func write(_ data: Data, withTimeout timeout: TimeInterval, tag: Int) -} - -// MARK: - CocoaMQTTSocket - -public class CocoaMQTTSocket: NSObject { - - public var backgroundOnSocket = true - - public var enableSSL = false - - /// - public var sslSettings: [String: NSObject]? - - /// Allow self-signed ca certificate. - /// - /// Default is false - public var allowUntrustCACertificate = false - - fileprivate let reference = GCDAsyncSocket() - fileprivate weak var delegate: CocoaMQTTSocketDelegate? - - public override init() { super.init() } -} - -extension CocoaMQTTSocket: CocoaMQTTSocketProtocol { - public func setDelegate(_ theDelegate: CocoaMQTTSocketDelegate?, delegateQueue: DispatchQueue?) { - delegate = theDelegate - reference.setDelegate((delegate != nil ? self : nil), delegateQueue: delegateQueue) - } - - public func connect(toHost host: String, onPort port: UInt16) throws { - try connect(toHost: host, onPort: port, withTimeout: -1) - } - - public func connect(toHost host: String, onPort port: UInt16, withTimeout timeout: TimeInterval) throws { - try reference.connect(toHost: host, onPort: port, withTimeout: timeout) - } - - public func disconnect() { - reference.disconnect() - } - - public func readData(toLength length: UInt, withTimeout timeout: TimeInterval, tag: Int) { - reference.readData(toLength: length, withTimeout: timeout, tag: tag) - } - - public func write(_ data: Data, withTimeout timeout: TimeInterval, tag: Int) { - reference.write(data, withTimeout: timeout, tag: tag) - } -} - -extension CocoaMQTTSocket: GCDAsyncSocketDelegate { - public func socket(_ sock: GCDAsyncSocket, didConnectToHost host: String, port: UInt16) { - printInfo("Connected to \(host) : \(port)") - - #if os(iOS) - if backgroundOnSocket { - sock.perform { - guard sock.enableBackgroundingOnSocket() else { - printWarning("Enable backgrounding socket failed, please check related permissions") - return - } - printInfo("Enable backgrounding socket successfully") - } - } - #endif - - if enableSSL { - var setting = sslSettings ?? [:] - if allowUntrustCACertificate { - setting[GCDAsyncSocketManuallyEvaluateTrust as String] = NSNumber(value: true) - } - sock.startTLS(setting) - } else { - delegate?.socketConnected(self) - } - } - - public func socket(_ sock: GCDAsyncSocket, didReceive trust: SecTrust, completionHandler: @escaping (Bool) -> Swift.Void) { - if let theDelegate = delegate { - theDelegate.socket(self, didReceive: trust, completionHandler: completionHandler) - } else { - completionHandler(false) - } - } - - public func socketDidSecure(_ sock: GCDAsyncSocket) { - printDebug("socket did secure") - delegate?.socketConnected(self) - } - - public func socket(_ sock: GCDAsyncSocket, didWriteDataWithTag tag: Int) { - printDebug("socket wrote data \(tag)") - delegate?.socket(self, didWriteDataWithTag: tag) - } - - public func socket(_ sock: GCDAsyncSocket, didRead data: Data, withTag tag: Int) { - delegate?.socket(self, didRead: data, withTag: tag) - } - - public func socketDidDisconnect(_ sock: GCDAsyncSocket, withError err: Error?) { - printDebug("socket disconnected") - delegate?.socketDidDisconnect(self, withError: err) - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTStorage.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTStorage.swift deleted file mode 100644 index 31030c4..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTStorage.swift +++ /dev/null @@ -1,130 +0,0 @@ -// -// CocoaMQTTStorage.swift -// CocoaMQTT -// - - -import Foundation - -protocol CocoaMQTTStorageProtocol { - - var clientId: String { get set } - - init?(by clientId: String) - - func write(_ frame: FramePublish) -> Bool - - func write(_ frame: FramePubRel) -> Bool - - func remove(_ frame: FramePublish) - - func remove(_ frame: FramePubRel) - - func synchronize() -> Bool - - /// Read all stored messages by saving order - func readAll() -> [Frame] -} - -final class CocoaMQTTStorage: CocoaMQTTStorageProtocol { - - var clientId: String - - var userDefault: UserDefaults - - init?(by clientId: String) { - guard let userDefault = UserDefaults(suiteName: CocoaMQTTStorage.name(clientId)) else { - return nil - } - - self.clientId = clientId - self.userDefault = userDefault - } - - deinit { - userDefault.synchronize() - } - - func write(_ frame: FramePublish) -> Bool { - guard frame.qos > .qos0 else { - return false - } - userDefault.set(frame.bytes(), forKey: key(frame.msgid)) - return true - } - - func write(_ frame: FramePubRel) -> Bool { - userDefault.set(frame.bytes(), forKey: key(frame.msgid)) - return true - } - - func remove(_ frame: FramePublish) { - userDefault.removeObject(forKey: key(frame.msgid)) - } - - func remove(_ frame: FramePubRel) { - userDefault.removeObject(forKey: key(frame.msgid)) - } - - func remove(_ frame: Frame) { - if let pub = frame as? FramePublish { - userDefault.removeObject(forKey: key(pub.msgid)) - } else if let rel = frame as? FramePubRel { - userDefault.removeObject(forKey: key(rel.msgid)) - } - } - - func synchronize() -> Bool { - return userDefault.synchronize() - } - - func readAll() -> [Frame] { - return __read(needDelete: false) - } - - func takeAll() -> [Frame] { - return __read(needDelete: true) - } - - private func key(_ msgid: UInt16) -> String { - return "\(msgid)" - } - - private class func name(_ clientId: String) -> String { - return "cocomqtt-\(clientId)" - } - - private func parse(_ bytes: [UInt8]) -> (UInt8, [UInt8])? { - /// bytes 1..<5 may be 'Remaining Length' - for i in 1 ..< 5 { - if (bytes[i] & 0x80) == 0 { - return (bytes[0], Array(bytes.suffix(from: i+1))) - } - } - - return nil - } - - private func __read(needDelete: Bool) -> [Frame] { - var frames = [Frame]() - let allObjs = userDefault.dictionaryRepresentation().sorted { (k1, k2) in - return k1.key < k2.key - } - for (k, v) in allObjs { - guard let bytes = v as? [UInt8] else { continue } - guard let parsed = parse(bytes) else { continue } - - if needDelete { - userDefault.removeObject(forKey: k) - } - - if let f = FramePublish(fixedHeader: parsed.0, bytes: parsed.1) { - frames.append(f) - } else if let f = FramePubRel(fixedHeader: parsed.0, bytes: parsed.1) { - frames.append(f) - } - } - return frames - } - -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTTimer.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTTimer.swift deleted file mode 100644 index a542ecd..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTTimer.swift +++ /dev/null @@ -1,110 +0,0 @@ -// -// CocoaMQTTTimer.swift -// CocoaMQTT -// -// Contributed by Jens(https://github.com/jmiltner) -// -// Copyright © 2019 emqx.io. All rights reserved. -// - -import Foundation - -// modeled after RepeatingTimer by Daniel Galasko: https://medium.com/@danielgalasko/a-background-repeating-timer-in-swift-412cecfd2ef9 -/// RepeatingTimer mimics the API of DispatchSourceTimer but in a way that prevents -/// crashes that occur from calling resume multiple times on a timer that is -/// already resumed (noted by https://github.com/SiftScience/sift-ios/issues/52) -class CocoaMQTTTimer { - - let timeInterval: TimeInterval - let startDelay: TimeInterval - let name: String - - init(delay:TimeInterval?=nil, name: String, timeInterval: TimeInterval) { - self.name = name - self.timeInterval = timeInterval - if let delay = delay { - self.startDelay = delay - } else { - self.startDelay = timeInterval - } - } - - class func every(_ interval: TimeInterval, name: String, _ block: @escaping () -> Void) -> CocoaMQTTTimer { - let timer = CocoaMQTTTimer(name: name, timeInterval: interval) - timer.eventHandler = block - timer.resume() - return timer - } - - @discardableResult - class func after(_ interval: TimeInterval, name: String, _ block: @escaping () -> Void) -> CocoaMQTTTimer { - var timer : CocoaMQTTTimer? = CocoaMQTTTimer(delay: interval, name: name, timeInterval:0) - timer?.eventHandler = { - block() - timer?.suspend() - timer = nil - } - timer?.resume() - return timer! - } - - /// Execute the tasks concurrently on the target_queue with default QOS - private static let target_queue = DispatchQueue(label: "io.emqx.CocoaMQTT.TimerQueue", qos: .default, attributes: .concurrent) - - /// Execute each timer tasks serially and use the target queue for concurrency among timers - private lazy var timer: DispatchSourceTimer = { - let queue = DispatchQueue(label: "io.emqx.CocoaMQTT." + name, target: CocoaMQTTTimer.target_queue) - let t = DispatchSource.makeTimerSource(flags: .strict, queue: queue) - t.schedule(deadline: .now() + self.startDelay, repeating: self.timeInterval > 0 ? Double(self.timeInterval) : Double.infinity) - t.setEventHandler(handler: { [weak self] in - self?.eventHandler?() - }) - return t - }() - - var eventHandler: (() -> Void)? - - private enum State { - case suspended - case resumed - case canceled - } - - private var state: State = .suspended - - deinit { - timer.setEventHandler {} - timer.cancel() - /* - If the timer is suspended, calling cancel without resuming - triggers a crash. This is documented here https://forums.developer.apple.com/thread/15902 - */ - resume() - eventHandler = nil - } - - func resume() { - if state == .resumed { - return - } - state = .resumed - timer.resume() - } - - func suspend() { - if state == .suspended { - return - } - state = .suspended - timer.suspend() - } - - /// Manually cancel timer - func cancel() { - if state == .canceled { - return - } - state = .canceled - timer.cancel() - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTTypes.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTTypes.swift deleted file mode 100644 index 2a94e71..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTTypes.swift +++ /dev/null @@ -1,84 +0,0 @@ -// -// CocoaMQTTTypes.swift -// CocoaMQTT -// - - -import Foundation - - -/// Encode and Decode big-endian UInt16 -extension UInt16 { - - /// Most Significant Byte (MSB) - private var highByte: UInt8 { - return UInt8( (self & 0xFF00) >> 8) - } - - /// Least Significant Byte (LSB) - private var lowByte: UInt8 { - return UInt8(self & 0x00FF) - } - - var hlBytes: [UInt8] { - return [highByte, lowByte] - } -} - - -extension String { - - /// String with two bytes length - var bytesWithLength: [UInt8] { - return UInt16(utf8.count).hlBytes + utf8 - } -} - - -extension Bool { - - /// Bool to bit of UInt8 - var bit: UInt8 { - return self ? 1 : 0 - } - - /// Initial a bool with a bit - init(bit: UInt8) { - self = (bit == 0) ? false : true - } -} - -extension UInt8 { - - /// Read a bit value - func bitAt(_ offset: UInt8) -> UInt8 { - return (self >> offset) & 0x01 - } -} - - - -public enum CocoaMQTTError: Error { - case invalidURL - case readTimeout - case writeTimeout - @available(OSX 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) - public enum FoundationConnection : Error { - case closed(URLSessionWebSocketTask.CloseCode) - } - -} - -extension Array where Element == UInt8 { - var summary: String { - if self.count <= 10 { - return "\(self)" - } else { - var descr = "[\(self[0])" - for i in self[1..<10] { - descr += ", \(i)" - } - return "\(descr), ...]" - } - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTWebSocket.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTWebSocket.swift deleted file mode 100644 index aa67430..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/CocoaMQTTWebSocket.swift +++ /dev/null @@ -1,453 +0,0 @@ -// -// CocoaMQTTWebSocket.swift -// CocoaMQTT -// - -import Foundation -//import Starscream -#if IS_SWIFT_PACKAGE -import CocoaMQTT -#endif - -// MARK: - Interfaces - -public protocol CocoaMQTTWebSocketConnectionDelegate: AnyObject { - - func connection(_ conn: CocoaMQTTWebSocketConnection, didReceive trust: SecTrust, completionHandler: @escaping (Bool) -> Swift.Void) - - func connectionOpened(_ conn: CocoaMQTTWebSocketConnection) - - func connectionClosed(_ conn: CocoaMQTTWebSocketConnection, withError error: Error?) - - func connection(_ conn: CocoaMQTTWebSocketConnection, receivedString string: String) - - func connection(_ conn: CocoaMQTTWebSocketConnection, receivedData data: Data) -} - -public protocol CocoaMQTTWebSocketConnection: NSObjectProtocol { - - var delegate: CocoaMQTTWebSocketConnectionDelegate? { get set } - - var queue: DispatchQueue { get set } - - func connect() - - func disconnect() - - func write(data: Data, handler: @escaping (Error?) -> Void) -} - -public protocol CocoaMQTTWebSocketConnectionBuilder { - - func buildConnection(forURL url: URL, withHeaders headers: [String: String]) throws -> CocoaMQTTWebSocketConnection - -} - -// MARK: - CocoaMQTTWebSocket - -public class CocoaMQTTWebSocket: CocoaMQTTSocketProtocol { - - public var enableSSL = false - - public var headers: [String: String] = [:] - - public typealias ConnectionBuilder = CocoaMQTTWebSocketConnectionBuilder - - public struct DefaultConnectionBuilder: ConnectionBuilder { - - public init() {} - - - public func buildConnection(forURL url: URL, withHeaders headers: [String: String]) throws -> CocoaMQTTWebSocketConnection { - if #available(OSX 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) { - let config = URLSessionConfiguration.default - config.httpAdditionalHeaders = headers - return CocoaMQTTWebSocket.FoundationConnection(url: url, config: config) - } else { - var request = URLRequest(url: url) - headers.forEach { request.setValue($1, forHTTPHeaderField: $0)} - return CocoaMQTTWebSocket.StarscreamConnection(request: request) - } - } - } - - public func setDelegate(_ theDelegate: CocoaMQTTSocketDelegate?, delegateQueue: DispatchQueue?) { - internalQueue.async { - self.delegate = theDelegate - self.delegateQueue = delegateQueue - } - } - let uri: String - let builder: ConnectionBuilder - public init(uri: String = "", builder: ConnectionBuilder = CocoaMQTTWebSocket.DefaultConnectionBuilder()) { - self.uri = uri - self.builder = builder - } - - public func connect(toHost host: String, onPort port: UInt16) throws { - try connect(toHost: host, onPort: port, withTimeout: -1) - } - - public func connect(toHost host: String, onPort port: UInt16, withTimeout timeout: TimeInterval) throws { - - let urlStr = "\(enableSSL ? "wss": "ws")://\(host):\(port)\(uri)" - - guard let url = URL(string: urlStr) else { throw CocoaMQTTError.invalidURL } - try internalQueue.sync { - connection?.disconnect() - connection?.delegate = nil - let newConnection = try builder.buildConnection(forURL: url, withHeaders: self.headers) - connection = newConnection - newConnection.delegate = self - newConnection.queue = internalQueue - newConnection.connect() - } - } - - public func disconnect() { - internalQueue.async { - //self.reset() - self.closeConnection(withError: nil) - } - } - - public func readData(toLength length: UInt, withTimeout timeout: TimeInterval, tag: Int) { - internalQueue.async { - let newRead = ReadItem(tag: tag, length: length, timeout: (timeout > 0.0) ? .now() + timeout : .distantFuture) - self.scheduledReads.append(newRead) - self.checkScheduledReads() - } - } - - public func write(_ data: Data, withTimeout timeout: TimeInterval, tag: Int) { - internalQueue.async { - let newWrite = WriteItem(tag: tag, timeout: (timeout > 0.0) ? .now() + timeout : .distantFuture) - self.scheduledWrites.insert(newWrite) - self.checkScheduledWrites() - self.connection?.write(data: data) { possibleError in - if let error = possibleError { - self.closeConnection(withError: error) - } else { - guard self.scheduledWrites.remove(newWrite) != nil else { return } - guard let delegate = self.delegate else { return } - delegate.socket(self, didWriteDataWithTag: tag) - } - } - } - } - - internal var delegate: CocoaMQTTSocketDelegate? - internal var delegateQueue: DispatchQueue? - internal var internalQueue = DispatchQueue(label: "CocoaMQTTWebSocket") - - private var connection: CocoaMQTTWebSocketConnection? - - private func reset() { - connection?.delegate = nil - connection?.disconnect() - connection = nil - - readBuffer.removeAll() - scheduledReads.removeAll() - readTimeoutTimer.reset() - - scheduledWrites.removeAll() - writeTimeoutTimer.reset() - } - - private func closeConnection(withError error: Error?) { - reset() - __delegate_queue { - self.delegate?.socketDidDisconnect(self, withError: error) - } - } - - private class ReusableTimer { - let queue: DispatchQueue - var timer: DispatchSourceTimer? - - init(queue: DispatchQueue) { - self.queue = queue - } - - func schedule(wallDeadline: DispatchWallTime, handler: @escaping () -> Void) { - reset() - let newTimer = DispatchSource.makeTimerSource(flags: .strict, queue: queue) - timer = newTimer - newTimer.schedule(wallDeadline: wallDeadline) - newTimer.setEventHandler(handler: handler) - newTimer.resume() - } - - func reset() { - timer?.cancel() - timer = nil - } - } - - private struct ReadItem { - let tag: Int - let length: UInt - let timeout: DispatchWallTime - } - - private var readBuffer = Data() - private var scheduledReads: [ReadItem] = [] - private lazy var readTimeoutTimer = ReusableTimer(queue: internalQueue) - private func checkScheduledReads() { - guard let theDelegate = delegate else { return } - guard let delegateQueue = delegateQueue else { return } - - readTimeoutTimer.reset() - while (scheduledReads.first?.length ?? UInt.max) <= readBuffer.count { - let nextRead = scheduledReads.removeFirst() - let readRange = readBuffer.startIndex..() - private lazy var writeTimeoutTimer = ReusableTimer(queue: internalQueue) - private func checkScheduledWrites() { - writeTimeoutTimer.reset() - guard let closestTimeout = scheduledWrites.sorted(by: { a,b in a.timeout < b.timeout }).first?.timeout else { return } - if closestTimeout < .now() { - closeConnection(withError: CocoaMQTTError.writeTimeout) - } else { - writeTimeoutTimer.schedule(wallDeadline: closestTimeout) { [weak self] in - self?.checkScheduledWrites() - } - } - } -} - -extension CocoaMQTTWebSocket: CocoaMQTTWebSocketConnectionDelegate { - public func connection(_ conn: CocoaMQTTWebSocketConnection, didReceive trust: SecTrust, completionHandler: @escaping (Bool) -> Swift.Void) { - guard conn.isEqual(connection) else { return } - if let del = delegate { - __delegate_queue { - del.socket(self, didReceive: trust, completionHandler: completionHandler) - } - } else { - completionHandler(false) - } - } - - public func connectionOpened(_ conn: CocoaMQTTWebSocketConnection) { - guard conn.isEqual(connection) else { return } - guard let delegate = delegate else { return } - guard let delegateQueue = delegateQueue else { return } - delegateQueue.async { - delegate.socketConnected(self) - } - } - - public func connectionClosed(_ conn: CocoaMQTTWebSocketConnection, withError error: Error?) { - guard conn.isEqual(connection) else { return } - closeConnection(withError: error) - } - - public func connection(_ conn: CocoaMQTTWebSocketConnection, receivedString string: String) { - guard let data = string.data(using: .utf8) else { return } - self.connection(conn, receivedData: data) - } - - public func connection(_ conn: CocoaMQTTWebSocketConnection, receivedData data: Data) { - guard conn.isEqual(connection) else { return } - readBuffer.append(data) - checkScheduledReads() - } -} - -// MARK: - CocoaMQTTWebSocket.FoundationConnection - -@available(OSX 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) -public extension CocoaMQTTWebSocket { - class FoundationConnection: NSObject, CocoaMQTTWebSocketConnection { - - public weak var delegate: CocoaMQTTWebSocketConnectionDelegate? - public lazy var queue = DispatchQueue(label: "CocoaMQTTFoundationWebSocketConnection-\(self.hashValue)") - - var session: URLSession? - var task: URLSessionWebSocketTask? - - public init(url: URL, config: URLSessionConfiguration) { - super.init() - let theSession = URLSession(configuration: config, delegate: self, delegateQueue: nil) - session = theSession - task = theSession.webSocketTask(with: url, protocols: ["mqtt"]) - } - - public func connect() { - task?.resume() - } - - public func disconnect() { - task?.cancel() - session = nil - task = nil - delegate = nil - } - - public func write(data: Data, handler: @escaping (Error?) -> Void) { - task?.send(.data(data)) { possibleError in - handler(possibleError) - } - } - - func scheduleRead() { - queue.async { - guard let task = self.task else { return } - task.receive { result in - self.queue.async { - guard let delegate = self.delegate else { return } - switch result { - case .success(let message): - switch message { - case .data(let data): - delegate.connection(self, receivedData: data) - case .string(let string): - delegate.connection(self, receivedString: string) - @unknown default: break - } - self.scheduleRead() - case .failure(let error): - delegate.connectionClosed(self, withError: error) - } - } - } - } - } - } -} - -@available(OSX 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) -extension CocoaMQTTWebSocket.FoundationConnection: URLSessionWebSocketDelegate { - public func urlSession(_ session: URLSession, task: URLSessionTask, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) { - queue.async { - if let trust = challenge.protectionSpace.serverTrust, let delegate = self.delegate { - delegate.connection(self, didReceive: trust) { shouldTrust in - completionHandler(shouldTrust ? .performDefaultHandling : .rejectProtectionSpace, nil) - } - } else { - completionHandler(.performDefaultHandling, nil) - } - } - } - - public func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didOpenWithProtocol protocol: String?) { - queue.async { - self.delegate?.connectionOpened(self) - } - scheduleRead() - } - - public func urlSession(_ session: URLSession, webSocketTask: URLSessionWebSocketTask, didCloseWith closeCode: URLSessionWebSocketTask.CloseCode, reason: Data?) { - queue.async { - self.delegate?.connectionClosed(self, withError: CocoaMQTTError.FoundationConnection.closed(closeCode)) - } - } - -} - -// MARK: - CocoaMQTTWebSocket.StarscreamConnection - -public extension CocoaMQTTWebSocket { - class StarscreamConnection: NSObject, CocoaMQTTWebSocketConnection { - public var reference: WebSocket - public weak var delegate: CocoaMQTTWebSocketConnectionDelegate? - public var queue: DispatchQueue { - get { reference.callbackQueue } - set { reference.callbackQueue = newValue } - } - - public init(request: URLRequest) { - reference = WebSocket(request: request, protocols: ["mqtt"], stream: FoundationStream()) - super.init() - reference.delegate = self - } - - public func connect() { - reference.connect() - } - - public func disconnect() { - reference.disconnect() - } - - public func write(data: Data, handler: @escaping (Error?) -> Void) { - reference.write(data: data) { - handler(nil) - } - } - } -} - -extension CocoaMQTTWebSocket.StarscreamConnection: SSLTrustValidator { - public func isValid(_ trust: SecTrust, domain: String?) -> Bool { - guard let delegate = self.delegate else { return false } - - var shouldAccept = false - let semaphore = DispatchSemaphore(value: 0) - delegate.connection(self, didReceive: trust) { result in - shouldAccept = result - semaphore.signal() - } - semaphore.wait() - - return shouldAccept - } -} - -extension CocoaMQTTWebSocket.StarscreamConnection: WebSocketDelegate { - - public func websocketDidConnect(socket: WebSocketClient) { - delegate?.connectionOpened(self) - } - - public func websocketDidDisconnect(socket: WebSocketClient, error: Error?) { - delegate?.connectionClosed(self, withError: error) - } - - public func websocketDidReceiveMessage(socket: WebSocketClient, text: String) { - delegate?.connection(self, receivedString: text) - } - - public func websocketDidReceiveData(socket: WebSocketClient, data: Data) { - delegate?.connection(self, receivedData: data) - } -} - -// MARK: - Helper - -extension CocoaMQTTWebSocket { - - func __delegate_queue(_ fun: @escaping () -> Void) { - delegateQueue?.async { [weak self] in - guard let _ = self else { return } - fun() - } - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Compression.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Compression.swift deleted file mode 100644 index 416869b..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Compression.swift +++ /dev/null @@ -1,156 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Compression.swift -// -////////////////////////////////////////////////////////////////////////////////////////////////// - -import Foundation -import zlib - -class Decompressor { - private var strm = z_stream() - private var buffer = [UInt8](repeating: 0, count: 0x2000) - private var inflateInitialized = false - private let windowBits:Int - - init?(windowBits:Int) { - self.windowBits = windowBits - guard initInflate() else { return nil } - } - - private func initInflate() -> Bool { - if Z_OK == inflateInit2_(&strm, -CInt(windowBits), - ZLIB_VERSION, CInt(MemoryLayout.size)) - { - inflateInitialized = true - return true - } - return false - } - - func reset() throws { - teardownInflate() - guard initInflate() else { throw WSError(type: .compressionError, message: "Error for decompressor on reset", code: 0) } - } - - func decompress(_ data: Data, finish: Bool) throws -> Data { - return try data.withUnsafeBytes { (bytes:UnsafePointer) -> Data in - return try decompress(bytes: bytes, count: data.count, finish: finish) - } - - } - - func decompress(bytes: UnsafePointer, count: Int, finish: Bool) throws -> Data { - var decompressed = Data() - try decompress(bytes: bytes, count: count, out: &decompressed) - - if finish { - let tail:[UInt8] = [0x00, 0x00, 0xFF, 0xFF] - try decompress(bytes: tail, count: tail.count, out: &decompressed) - } - - return decompressed - - } - - private func decompress(bytes: UnsafePointer, count: Int, out:inout Data) throws { - var res:CInt = 0 - strm.next_in = UnsafeMutablePointer(mutating: bytes) - strm.avail_in = CUnsignedInt(count) - - repeat { - strm.next_out = UnsafeMutablePointer(&buffer) - strm.avail_out = CUnsignedInt(buffer.count) - - res = inflate(&strm, 0) - - let byteCount = buffer.count - Int(strm.avail_out) - out.append(buffer, count: byteCount) - } while res == Z_OK && strm.avail_out == 0 - - guard (res == Z_OK && strm.avail_out > 0) - || (res == Z_BUF_ERROR && Int(strm.avail_out) == buffer.count) - else { - throw WSError(type: .compressionError, message: "Error on decompressing", code: 0) - } - } - - private func teardownInflate() { - if inflateInitialized, Z_OK == inflateEnd(&strm) { - inflateInitialized = false - } - } - - deinit { - teardownInflate() - } -} - -class Compressor { - private var strm = z_stream() - private var buffer = [UInt8](repeating: 0, count: 0x2000) - private var deflateInitialized = false - private let windowBits:Int - - init?(windowBits: Int) { - self.windowBits = windowBits - guard initDeflate() else { return nil } - } - - private func initDeflate() -> Bool { - if Z_OK == deflateInit2_(&strm, Z_DEFAULT_COMPRESSION, Z_DEFLATED, - -CInt(windowBits), 8, Z_DEFAULT_STRATEGY, - ZLIB_VERSION, CInt(MemoryLayout.size)) - { - deflateInitialized = true - return true - } - return false - } - - func reset() throws { - teardownDeflate() - guard initDeflate() else { throw WSError(type: .compressionError, message: "Error for compressor on reset", code: 0) } - } - - func compress(_ data: Data) throws -> Data { - var compressed = Data() - var res:CInt = 0 - data.withUnsafeBytes { (ptr:UnsafePointer) -> Void in - strm.next_in = UnsafeMutablePointer(mutating: ptr) - strm.avail_in = CUnsignedInt(data.count) - - repeat { - strm.next_out = UnsafeMutablePointer(&buffer) - strm.avail_out = CUnsignedInt(buffer.count) - - res = deflate(&strm, Z_SYNC_FLUSH) - - let byteCount = buffer.count - Int(strm.avail_out) - compressed.append(buffer, count: byteCount) - } - while res == Z_OK && strm.avail_out == 0 - - } - - guard res == Z_OK && strm.avail_out > 0 - || (res == Z_BUF_ERROR && Int(strm.avail_out) == buffer.count) - else { - throw WSError(type: .compressionError, message: "Error on compressing", code: 0) - } - - compressed.removeLast(4) - return compressed - } - - private func teardownDeflate() { - if deflateInitialized, Z_OK == deflateEnd(&strm) { - deflateInitialized = false - } - } - - deinit { - teardownDeflate() - } -} - diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Frame.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Frame.swift deleted file mode 100644 index e890f5d..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Frame.swift +++ /dev/null @@ -1,168 +0,0 @@ -// -// Frame.swift -// CocoaMQTT -// - - -import Foundation - - -/// Quality of Service levels -@objc public enum CocoaMQTTQoS: UInt8, CustomStringConvertible { - /// At most once delivery - case qos0 = 0 - - /// At least once delivery - case qos1 - - /// Exactly once delivery - case qos2 - - /// !!! Used SUBACK frame only - case FAILTURE = 0x80 - - public var description: String { - switch self { - case .qos0: return "qos0" - case .qos1: return "qos1" - case .qos2: return "qos2" - case .FAILTURE: return "Failure" - } - } -} - -extension CocoaMQTTQoS: Comparable { - - public static func < (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool { - return lhs.rawValue < rhs.rawValue - } - - public static func <= (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool { - return lhs.rawValue <= rhs.rawValue - } - - public static func > (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool { - return lhs.rawValue > rhs.rawValue - } - - public static func >= (lhs: CocoaMQTTQoS, rhs: CocoaMQTTQoS) -> Bool { - return lhs.rawValue >= rhs.rawValue - } -} - -/// MQTT Frame Type -enum FrameType: UInt8 { - case reserved = 0x00 - case connect = 0x10 - case connack = 0x20 - case publish = 0x30 - case puback = 0x40 - case pubrec = 0x50 - case pubrel = 0x60 - case pubcomp = 0x70 - case subscribe = 0x80 - case suback = 0x90 - case unsubscribe = 0xA0 - case unsuback = 0xB0 - case pingreq = 0xC0 - case pingresp = 0xD0 - case disconnect = 0xE0 -} - -/// The frame can be initialized with a bytes -protocol InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) -} - - -/// MQTT Frame protocol -protocol Frame { - - /// Each MQTT Control Packet contains a fixed header - var fixedHeader: UInt8 {get set} - - /// Some types of MQTT Control Packets contain a variable header component - func variableHeader() -> [UInt8] - - /// Some MQTT Control Packets contain a payload as the final part of the packet - func payload() -> [UInt8] -} - -extension Frame { - - /// Pack struct to binary - func bytes() -> [UInt8] { - let variableHeader = self.variableHeader() - let payload = self.payload() - - let len = UInt32(variableHeader.count + payload.count) - return [fixedHeader] + remainingLen(len: len) + variableHeader + payload - } - - private func remainingLen(len: UInt32) -> [UInt8] { - var bytes: [UInt8] = [] - var digit: UInt8 = 0 - - var len = len - repeat { - digit = UInt8(len % 128) - len = len / 128 - // if there are more digits to encode, set the top bit of this digit - if len > 0 { - digit = digit | 0x80 - } - bytes.append(digit) - } while len > 0 - - return bytes - } -} - -/// Fixed Header Attributes -extension Frame { - - /// The Fixed Header consist of the following attritutes - /// - /// +---------+----------+-------+--------+ - /// | 7 6 5 4 | 3 | 2 1 | 0 | - /// +---------+----------+-------+--------+ - /// | Type | DUP flag | QoS | RETAIN | - /// +-------------------------------------+ - - - /// The type of the Frame - var type: FrameType { - return FrameType(rawValue: fixedHeader & 0xF0)! - } - - /// Dup flag - var dup: Bool { - get { - return ((fixedHeader & 0x08) >> 3) == 0 ? false : true - } - set { - fixedHeader = (fixedHeader & 0xF7) | (newValue.bit << 3) - } - } - - /// Qos level - var qos: CocoaMQTTQoS { - get { - return CocoaMQTTQoS(rawValue: (fixedHeader & 0x06) >> 1)! - } - set { - fixedHeader = (fixedHeader & 0xF9) | (newValue.rawValue << 1) - } - } - - /// Retained flag - var retained: Bool { - get { - return (fixedHeader & 0x01) == 0 ? false : true - } - set { - fixedHeader = (fixedHeader & 0xFE) | newValue.bit - } - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameConnAck.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameConnAck.swift deleted file mode 100644 index b348990..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameConnAck.swift +++ /dev/null @@ -1,60 +0,0 @@ -// -// FrameConnack.swift -// CocoaMQTT -// - - -import Foundation - - -struct FrameConnAck: Frame { - - var fixedHeader: UInt8 = FrameType.connack.rawValue - - // --- Attributes - - var returnCode: CocoaMQTTConnAck - - var sessPresent: Bool = false - - // --- Attributes End - - init(code: CocoaMQTTConnAck) { - returnCode = code - } -} - -extension FrameConnAck { - - func variableHeader() -> [UInt8] { - return [sessPresent.bit, returnCode.rawValue] - } - - func payload() -> [UInt8] { return [] } -} - -extension FrameConnAck: InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) { - guard fixedHeader == FrameType.connack.rawValue else { - return nil - } - - guard bytes.count == 2 else { - return nil - } - - sessPresent = Bool(bit: bytes[0] & 0x01) - - guard let ack = CocoaMQTTConnAck(rawValue: bytes[1]) else { - return nil - } - returnCode = ack - } -} - -extension FrameConnAck: CustomStringConvertible { - var description: String { - return "CONNACK(code: \(returnCode), sp: \(sessPresent))" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameConnect.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameConnect.swift deleted file mode 100644 index 748322b..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameConnect.swift +++ /dev/null @@ -1,178 +0,0 @@ -// -// ConnectFrame.swift -// CocoaMQTT -// - - -import Foundation - -/// MQTT CONNECT Frame -struct FrameConnect: Frame { - - var fixedHeader: UInt8 = FrameType.connect.rawValue - - private let PROTOCOL_LEVEL = UInt8(4) - private let PROTOCOL_VERSION: String = "MQTT/3.1.1" - private let PROTOCOL_MAGIC: String = "MQTT" - - // --- Attributes - - var clientID: String - - var keepalive: UInt16 = 60 - - var willMsg: CocoaMQTTMessage? - - var username: String? - - var password: String? - - var cleansess: Bool = true - - // --- Attributes End - - init(clientID: String) { - self.clientID = clientID - } -} - -extension FrameConnect { - - func variableHeader() -> [UInt8] { - var header = [UInt8]() - var flags = ConnFlags() - - // variable header - header += PROTOCOL_MAGIC.bytesWithLength - header.append(PROTOCOL_LEVEL) - - if let will = willMsg { - flags.flagWill = true - flags.flagWillQoS = will.qos.rawValue - flags.flagWillRetain = will.retained - } - - if let _ = username { - flags.flagUsername = true - - // Append password attribute if username presented - if let _ = password { - flags.flagPassword = true - } - } - - flags.flagCleanSession = cleansess - - header.append(flags.rawValue) - header += keepalive.hlBytes - - return header - } - - func payload() -> [UInt8] { - var payload = [UInt8]() - - payload += clientID.bytesWithLength - - if let will = willMsg { - payload += will.topic.bytesWithLength - payload += UInt16(will.payload.count).hlBytes - payload += will.payload - } - if let username = username { - payload += username.bytesWithLength - - // Append password attribute if username presented - if let password = password { - payload += password.bytesWithLength - } - } - - return payload - } -} - -extension FrameConnect: CustomStringConvertible { - - var description: String { - return "CONNECT(id: \(clientID), username: \(username ?? "nil"), " + - "password: \(password ?? "nil"), keepalive : \(keepalive), " + - "cleansess: \(cleansess))" - } -} - - -/// Connect Flags -private struct ConnFlags { - - /// These Flags consist of following flags: - /// - /// +----------+----------+------------+--------------------+--------------+----------+ - /// | 7 | 6 | 5 | 4 3 | 2 | 1 | 0 | - /// +----------+----------+------------+---------+----------+--------------+----------+ - /// | username | password | willretain | willqos | willflag | cleansession | reserved | - /// +----------+----------+------------+---------+----------+--------------+----------+ - /// - var rawValue: UInt8 = 0 - - var flagUsername: Bool { - get { - return Bool(bit: (rawValue >> 7) & 0x01) - } - - set { - rawValue = (rawValue & 0x7F) | (newValue.bit << 7) - } - } - - var flagPassword: Bool { - get { - return Bool(bit:(rawValue >> 6) & 0x01) - } - - set { - rawValue = (rawValue & 0xBF) | (newValue.bit << 6) - } - } - - var flagWillRetain: Bool { - get { - return Bool(bit: (rawValue >> 5) & 0x01) - } - - set { - rawValue = (rawValue & 0xDF) | (newValue.bit << 5) - } - } - - var flagWillQoS: UInt8 { - get { - return (rawValue >> 3) & 0x03 - } - - set { - rawValue = (rawValue & 0xE7) | (newValue << 3) - } - } - - var flagWill: Bool { - get { - return Bool(bit:(rawValue >> 2) & 0x01) - } - - set { - rawValue = (rawValue & 0xFB) | (newValue.bit << 2) - } - } - - var flagCleanSession: Bool { - get { - return Bool(bit: (rawValue >> 1) & 0x01) - } - - set { - rawValue = (rawValue & 0xFD) | (newValue.bit << 1) - - } - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameDisconnect.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameDisconnect.swift deleted file mode 100644 index 8a04f9a..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameDisconnect.swift +++ /dev/null @@ -1,29 +0,0 @@ -// -// FrameDisconnect.swift -// CocoaMQTT -// - - -import Foundation - - -/// MQTT Disconnect packet -struct FrameDisconnect: Frame { - - var fixedHeader: UInt8 = FrameType.disconnect.rawValue - - init() { /* Nothing to do */ } -} - -extension FrameDisconnect { - - func variableHeader() -> [UInt8] { return [] } - - func payload() -> [UInt8] { return [] } -} - -extension FrameDisconnect: CustomStringConvertible { - var description: String { - return "DISCONNECT" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePingReq.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePingReq.swift deleted file mode 100644 index cb0692e..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePingReq.swift +++ /dev/null @@ -1,27 +0,0 @@ -// -// FramePingReq.swift -// CocoaMQTT -// - - -import Foundation - -struct FramePingReq: Frame { - - var fixedHeader: UInt8 = FrameType.pingreq.rawValue - - init() { /* Nothing to do */ } -} - -extension FramePingReq { - - func variableHeader() -> [UInt8] { return [] } - - func payload() -> [UInt8] { return [] } -} - -extension FramePingReq: CustomStringConvertible { - var description: String { - return "PING" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePingResp.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePingResp.swift deleted file mode 100644 index 40d58cb..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePingResp.swift +++ /dev/null @@ -1,42 +0,0 @@ -// -// FramePingResp.swift -// CocoaMQTT -// - - -import Foundation - - -/// MQTT PINGRESP packet -struct FramePingResp: Frame { - - var fixedHeader: UInt8 = FrameType.pingresp.rawValue - - init() { /* Nothing to do */ } -} - -extension FramePingResp { - - func variableHeader() -> [UInt8] { return [] } - - func payload() -> [UInt8] { return [] } -} - -extension FramePingResp: InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) { - guard fixedHeader == FrameType.pingresp.rawValue else { - return nil - } - - guard bytes.count == 0 else { - return nil - } - } -} - -extension FramePingResp: CustomStringConvertible { - var description: String { - return "PONG" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubAck.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubAck.swift deleted file mode 100644 index 52af321..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubAck.swift +++ /dev/null @@ -1,50 +0,0 @@ -// -// FramePuback.swift -// CocoaMQTT -// - -import Foundation - - -/// MQTT PUBACK packet -struct FramePubAck: Frame { - - var fixedHeader: UInt8 = FrameType.puback.rawValue - - // --- Attributes - - var msgid: UInt16 - - // --- Attributes End - - init(msgid: UInt16) { - self.msgid = msgid - } -} - -extension FramePubAck { - - func variableHeader() -> [UInt8] { return msgid.hlBytes } - - func payload() -> [UInt8] { return [] } -} - -extension FramePubAck: InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) { - guard fixedHeader == FrameType.puback.rawValue else { - return nil - } - guard bytes.count == 2 else { - return nil - } - - msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) - } -} - -extension FramePubAck: CustomStringConvertible { - var description: String { - return "PUBACK(id: \(msgid))" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubComp.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubComp.swift deleted file mode 100644 index fbaeeb3..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubComp.swift +++ /dev/null @@ -1,51 +0,0 @@ -// -// FramePubCom.swift -// CocoaMQTT -// - - -import Foundation - -/// MQTT PUBCOMP packet -struct FramePubComp: Frame { - - var fixedHeader: UInt8 = FrameType.pubcomp.rawValue - - // --- Attributes - - var msgid: UInt16 - - // --- Attributes End - - init(msgid: UInt16) { - self.msgid = msgid - } -} - -extension FramePubComp { - - func variableHeader() -> [UInt8] { return msgid.hlBytes } - - func payload() -> [UInt8] { return [] } -} - -extension FramePubComp: InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) { - guard fixedHeader == FrameType.pubcomp.rawValue else { - return nil - } - - guard bytes.count == 2 else { - return nil - } - - msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) - } -} - -extension FramePubComp: CustomStringConvertible { - var description: String { - return "PUBCOMP(id: \(msgid))" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubRec.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubRec.swift deleted file mode 100644 index 050a959..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubRec.swift +++ /dev/null @@ -1,51 +0,0 @@ -// -// FramePubRec.swift -// CocoaMQTT -// - - -import Foundation - -/// MQTT PUBREC packet -struct FramePubRec: Frame { - - var fixedHeader: UInt8 = 0x50 - - // --- Attributes - - var msgid: UInt16 - - // --- Attributes End - - init(msgid: UInt16) { - self.msgid = msgid - } -} - -extension FramePubRec { - - func variableHeader() -> [UInt8] { return msgid.hlBytes } - - func payload() -> [UInt8] { return [] } -} - - -extension FramePubRec: InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) { - guard fixedHeader == FrameType.pubrec.rawValue else { - return nil - } - guard bytes.count == 2 else { - return nil - } - - msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) - } -} - -extension FramePubRec: CustomStringConvertible { - var description: String { - return "PUBREC(id: \(msgid))" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubRel.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubRel.swift deleted file mode 100644 index 85e46da..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePubRel.swift +++ /dev/null @@ -1,53 +0,0 @@ -// -// FramePubRel.swift -// CocoaMQTT -// - - -import Foundation - -/// MQTT PUBREL packet -struct FramePubRel: Frame { - - var fixedHeader: UInt8 = FrameType.pubrel.rawValue - - // --- Attributes - - var msgid: UInt16 - - // --- Attributes End - - init(msgid: UInt16) { - self.msgid = msgid - - qos = .qos1 - } -} - -extension FramePubRel { - - func variableHeader() -> [UInt8] { return msgid.hlBytes } - - func payload() -> [UInt8] { return [] } -} - -extension FramePubRel: InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) { - guard fixedHeader == 0x62 else { - return nil - } - guard bytes.count == 2 else { - return nil - } - - self.fixedHeader = fixedHeader - msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) - } -} - -extension FramePubRel: CustomStringConvertible { - var description: String { - return "PUBREL(id: \(msgid))" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePublish.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePublish.swift deleted file mode 100644 index d269b3f..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FramePublish.swift +++ /dev/null @@ -1,100 +0,0 @@ -// -// FramePublish.swift -// CocoaMQTT -// - - -import Foundation - -/// MQTT PUBLISH Frame -struct FramePublish: Frame { - - var fixedHeader: UInt8 = FrameType.publish.rawValue - - // --- Attributes - - var msgid: UInt16 - - var topic: String - - var _payload: [UInt8] = [] - - // --- Attributes End - - init(topic: String, payload: [UInt8], qos: CocoaMQTTQoS = .qos0, msgid: UInt16 = 0) { - self.topic = topic - self._payload = payload - self.msgid = msgid - - self.qos = qos - } -} - -extension FramePublish { - - func variableHeader() -> [UInt8] { - - var header = topic.bytesWithLength - - if qos > .qos0 { - header += msgid.hlBytes - } - - return header - } - - func payload() -> [UInt8] { return _payload } -} - -extension FramePublish: InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) { - - guard fixedHeader & 0xF0 == FrameType.publish.rawValue else { - return nil - } - - self.fixedHeader = fixedHeader - - // parse topic - if bytes.count < 2 { - return nil - } - - let len = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) - - var pos = 2 + Int(len) - - if bytes.count < pos { - return nil - } - - topic = NSString(bytes: [UInt8](bytes[2...(pos-1)]), length: Int(len), encoding: String.Encoding.utf8.rawValue)! as String - - // msgid - if (fixedHeader & 0x06) >> 1 == CocoaMQTTQoS.qos0.rawValue { - msgid = 0 - } else { - if bytes.count < pos + 2 { - return nil - } - msgid = UInt16(bytes[pos]) << 8 + UInt16(bytes[pos+1]) - pos += 2 - } - - // payload - if (pos == bytes.count) { - _payload = [] - } else if (pos < bytes.count) { - _payload = [UInt8](bytes[pos.. [UInt8] { return msgid.hlBytes } - - func payload() -> [UInt8] { - - var payload = [UInt8]() - - for qos in grantedQos { - payload.append(qos.rawValue) - } - - return payload - } -} - -extension FrameSubAck: InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) { - self.fixedHeader = fixedHeader - - // the bytes length must bigger than 3 - guard bytes.count >= 3 else { - return nil - } - - self.msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) - self.grantedQos = [] - for i in 2 ..< bytes.count { - guard let qos = CocoaMQTTQoS(rawValue: bytes[i]) else { - return nil - } - self.grantedQos.append(qos) - } - } -} - -extension FrameSubAck: CustomStringConvertible { - var description: String { - return "SUBACK(id: \(msgid))" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameSubscribe.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameSubscribe.swift deleted file mode 100644 index a5623d7..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameSubscribe.swift +++ /dev/null @@ -1,57 +0,0 @@ -// -// FrameSubscribe.swift -// CocoaMQTT -// - - -import Foundation - - -/// MQTT SUBSCRIBE Frame -struct FrameSubscribe: Frame { - - var fixedHeader: UInt8 = FrameType.subscribe.rawValue - - // --- Attributes - - var msgid: UInt16 - - var topics: [(String, CocoaMQTTQoS)] - - // --- Attributes End - - init(msgid: UInt16, topic: String, reqos: CocoaMQTTQoS) { - self.init(msgid: msgid, topics: [(topic, reqos)]) - } - - init(msgid: UInt16, topics: [(String, CocoaMQTTQoS)]) { - fixedHeader = FrameType.subscribe.rawValue - self.msgid = msgid - self.topics = topics - - qos = CocoaMQTTQoS.qos1 - } -} - -extension FrameSubscribe { - - func variableHeader() -> [UInt8] { return msgid.hlBytes } - - func payload() -> [UInt8] { - - var payload = [UInt8]() - - for (topic, qos) in topics { - payload += topic.bytesWithLength - payload.append(qos.rawValue) - } - - return payload - } -} - -extension FrameSubscribe: CustomStringConvertible { - var description: String { - return "SUBSCRIBE(id: \(msgid), topics: \(topics))" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameUnsubAck.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameUnsubAck.swift deleted file mode 100644 index 4da3424..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameUnsubAck.swift +++ /dev/null @@ -1,53 +0,0 @@ -// -// FrameUnsubAck.swift -// CocoaMQTT -// - - -import Foundation - - -/// MQTT UNSUBACK packet -struct FrameUnsubAck: Frame { - - var fixedHeader: UInt8 = FrameType.unsuback.rawValue - - // --- Attributes - - var msgid: UInt16 - - // --- Attributes End - - init(msgid: UInt16) { - self.msgid = msgid - } -} - -extension FrameUnsubAck { - - func variableHeader() -> [UInt8] { return msgid.hlBytes } - - func payload() -> [UInt8] { return [] } -} - - -extension FrameUnsubAck: InitialWithBytes { - - init?(fixedHeader: UInt8, bytes: [UInt8]) { - guard fixedHeader == FrameType.unsuback.rawValue else { - return nil - } - - guard bytes.count == 2 else { - return nil - } - - msgid = UInt16(bytes[0]) << 8 + UInt16(bytes[1]) - } -} - -extension FrameUnsubAck: CustomStringConvertible { - var description: String { - return "UNSUBSACK(id: \(msgid))" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameUnsubscribe.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameUnsubscribe.swift deleted file mode 100644 index 1d50342..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/FrameUnsubscribe.swift +++ /dev/null @@ -1,51 +0,0 @@ -// -// FrameUnsubscribe.swift -// CocoaMQTT -// - - -import Foundation - - -/// MQTT UNSUBSCRIBE packet -struct FrameUnsubscribe: Frame { - - var fixedHeader: UInt8 = FrameType.unsubscribe.rawValue - - // --- Attributes - - var msgid: UInt16 - - var topics: [String] - - // --- Attribetes end - - init(msgid: UInt16, topics: [String]) { - self.msgid = msgid - self.topics = topics - - qos = CocoaMQTTQoS.qos1 - } -} - -extension FrameUnsubscribe { - - func variableHeader() -> [UInt8] { return msgid.hlBytes } - - func payload() -> [UInt8] { - - var payload = [UInt8]() - - for t in topics { - payload += t.bytesWithLength - } - - return payload - } -} - -extension FrameUnsubscribe: CustomStringConvertible { - var description: String { - return "UNSUBSCRIBE(id: \(msgid), topics: \(topics))" - } -} diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/MQTTwihtoutPods-Bridging-Header.h b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/MQTTwihtoutPods-Bridging-Header.h deleted file mode 100644 index d1fa0db..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/MQTTwihtoutPods-Bridging-Header.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// MQTTwihtoutPods-Bridging-Header.h -// MQTTwihtoutPods -// -// Created by rushabh.patel on 25/05/21. -// - -#ifndef MQTTwihtoutPods_Bridging_Header_h -#define MQTTwihtoutPods_Bridging_Header_h -//#import "GCDAsyncSocket.h" -//#import "GCDAsyncUdpSocket.h" - -#endif /* MQTTwihtoutPods_Bridging_Header_h */ diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncSocket.h b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncSocket.h deleted file mode 100644 index c339f8a..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncSocket.h +++ /dev/null @@ -1,1226 +0,0 @@ -// -// GCDAsyncSocket.h -// -// This class is in the public domain. -// Originally created by Robbie Hanson in Q3 2010. -// Updated and maintained by Deusty LLC and the Apple development community. -// -// https://github.com/robbiehanson/CocoaAsyncSocket -// - -#import -#import -#import -#import -#import - -#include // AF_INET, AF_INET6 - -@class GCDAsyncReadPacket; -@class GCDAsyncWritePacket; -@class GCDAsyncSocketPreBuffer; -@protocol GCDAsyncSocketDelegate; - -NS_ASSUME_NONNULL_BEGIN - -extern NSString *const GCDAsyncSocketException; -extern NSString *const GCDAsyncSocketErrorDomain; - -extern NSString *const GCDAsyncSocketQueueName; -extern NSString *const GCDAsyncSocketThreadName; - -extern NSString *const GCDAsyncSocketManuallyEvaluateTrust; -#if TARGET_OS_IPHONE -extern NSString *const GCDAsyncSocketUseCFStreamForTLS; -#endif -#define GCDAsyncSocketSSLPeerName (NSString *)kCFStreamSSLPeerName -#define GCDAsyncSocketSSLCertificates (NSString *)kCFStreamSSLCertificates -#define GCDAsyncSocketSSLIsServer (NSString *)kCFStreamSSLIsServer -extern NSString *const GCDAsyncSocketSSLPeerID; -extern NSString *const GCDAsyncSocketSSLProtocolVersionMin; -extern NSString *const GCDAsyncSocketSSLProtocolVersionMax; -extern NSString *const GCDAsyncSocketSSLSessionOptionFalseStart; -extern NSString *const GCDAsyncSocketSSLSessionOptionSendOneByteRecord; -extern NSString *const GCDAsyncSocketSSLCipherSuites; -extern NSString *const GCDAsyncSocketSSLALPN; -#if !TARGET_OS_IPHONE -extern NSString *const GCDAsyncSocketSSLDiffieHellmanParameters; -#endif - -#define GCDAsyncSocketLoggingContext 65535 - - -typedef NS_ERROR_ENUM(GCDAsyncSocketErrorDomain, GCDAsyncSocketError) { - GCDAsyncSocketNoError = 0, // Never used - GCDAsyncSocketBadConfigError, // Invalid configuration - GCDAsyncSocketBadParamError, // Invalid parameter was passed - GCDAsyncSocketConnectTimeoutError, // A connect operation timed out - GCDAsyncSocketReadTimeoutError, // A read operation timed out - GCDAsyncSocketWriteTimeoutError, // A write operation timed out - GCDAsyncSocketReadMaxedOutError, // Reached set maxLength without completing - GCDAsyncSocketClosedError, // The remote peer closed the connection - GCDAsyncSocketOtherError, // Description provided in userInfo -}; - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - - -@interface GCDAsyncSocket : NSObject - -/** - * GCDAsyncSocket uses the standard delegate paradigm, - * but executes all delegate callbacks on a given delegate dispatch queue. - * This allows for maximum concurrency, while at the same time providing easy thread safety. - * - * You MUST set a delegate AND delegate dispatch queue before attempting to - * use the socket, or you will get an error. - * - * The socket queue is optional. - * If you pass NULL, GCDAsyncSocket will automatically create it's own socket queue. - * If you choose to provide a socket queue, the socket queue must not be a concurrent queue. - * If you choose to provide a socket queue, and the socket queue has a configured target queue, - * then please see the discussion for the method markSocketQueueTargetQueue. - * - * The delegate queue and socket queue can optionally be the same. -**/ -- (instancetype)init; -- (instancetype)initWithSocketQueue:(nullable dispatch_queue_t)sq; -- (instancetype)initWithDelegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq; -- (instancetype)initWithDelegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq socketQueue:(nullable dispatch_queue_t)sq NS_DESIGNATED_INITIALIZER; - -/** - * Create GCDAsyncSocket from already connect BSD socket file descriptor -**/ -+ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD socketQueue:(nullable dispatch_queue_t)sq error:(NSError**)error; - -+ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD delegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq error:(NSError**)error; - -+ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD delegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq socketQueue:(nullable dispatch_queue_t)sq error:(NSError **)error; - -#pragma mark Configuration - -@property (atomic, weak, readwrite, nullable) id delegate; -#if OS_OBJECT_USE_OBJC -@property (atomic, strong, readwrite, nullable) dispatch_queue_t delegateQueue; -#else -@property (atomic, assign, readwrite, nullable) dispatch_queue_t delegateQueue; -#endif - -- (void)getDelegate:(id __nullable * __nullable)delegatePtr delegateQueue:(dispatch_queue_t __nullable * __nullable)delegateQueuePtr; -- (void)setDelegate:(nullable id)delegate delegateQueue:(nullable dispatch_queue_t)delegateQueue; - -/** - * If you are setting the delegate to nil within the delegate's dealloc method, - * you may need to use the synchronous versions below. -**/ -- (void)synchronouslySetDelegate:(nullable id)delegate; -- (void)synchronouslySetDelegateQueue:(nullable dispatch_queue_t)delegateQueue; -- (void)synchronouslySetDelegate:(nullable id)delegate delegateQueue:(nullable dispatch_queue_t)delegateQueue; - -/** - * By default, both IPv4 and IPv6 are enabled. - * - * For accepting incoming connections, this means GCDAsyncSocket automatically supports both protocols, - * and can simulataneously accept incoming connections on either protocol. - * - * For outgoing connections, this means GCDAsyncSocket can connect to remote hosts running either protocol. - * If a DNS lookup returns only IPv4 results, GCDAsyncSocket will automatically use IPv4. - * If a DNS lookup returns only IPv6 results, GCDAsyncSocket will automatically use IPv6. - * If a DNS lookup returns both IPv4 and IPv6 results, the preferred protocol will be chosen. - * By default, the preferred protocol is IPv4, but may be configured as desired. -**/ - -@property (atomic, assign, readwrite, getter=isIPv4Enabled) BOOL IPv4Enabled; -@property (atomic, assign, readwrite, getter=isIPv6Enabled) BOOL IPv6Enabled; - -@property (atomic, assign, readwrite, getter=isIPv4PreferredOverIPv6) BOOL IPv4PreferredOverIPv6; - -/** - * When connecting to both IPv4 and IPv6 using Happy Eyeballs (RFC 6555) https://tools.ietf.org/html/rfc6555 - * this is the delay between connecting to the preferred protocol and the fallback protocol. - * - * Defaults to 300ms. -**/ -@property (atomic, assign, readwrite) NSTimeInterval alternateAddressDelay; - -/** - * User data allows you to associate arbitrary information with the socket. - * This data is not used internally by socket in any way. -**/ -@property (atomic, strong, readwrite, nullable) id userData; - -#pragma mark Accepting - -/** - * Tells the socket to begin listening and accepting connections on the given port. - * When a connection is accepted, a new instance of GCDAsyncSocket will be spawned to handle it, - * and the socket:didAcceptNewSocket: delegate method will be invoked. - * - * The socket will listen on all available interfaces (e.g. wifi, ethernet, etc) -**/ -- (BOOL)acceptOnPort:(uint16_t)port error:(NSError **)errPtr; - -/** - * This method is the same as acceptOnPort:error: with the - * additional option of specifying which interface to listen on. - * - * For example, you could specify that the socket should only accept connections over ethernet, - * and not other interfaces such as wifi. - * - * The interface may be specified by name (e.g. "en1" or "lo0") or by IP address (e.g. "192.168.4.34"). - * You may also use the special strings "localhost" or "loopback" to specify that - * the socket only accept connections from the local machine. - * - * You can see the list of interfaces via the command line utility "ifconfig", - * or programmatically via the getifaddrs() function. - * - * To accept connections on any interface pass nil, or simply use the acceptOnPort:error: method. -**/ -- (BOOL)acceptOnInterface:(nullable NSString *)interface port:(uint16_t)port error:(NSError **)errPtr; - -/** - * Tells the socket to begin listening and accepting connections on the unix domain at the given url. - * When a connection is accepted, a new instance of GCDAsyncSocket will be spawned to handle it, - * and the socket:didAcceptNewSocket: delegate method will be invoked. - * - * The socket will listen on all available interfaces (e.g. wifi, ethernet, etc) - **/ -- (BOOL)acceptOnUrl:(NSURL *)url error:(NSError **)errPtr; - -#pragma mark Connecting - -/** - * Connects to the given host and port. - * - * This method invokes connectToHost:onPort:viaInterface:withTimeout:error: - * and uses the default interface, and no timeout. -**/ -- (BOOL)connectToHost:(NSString *)host onPort:(uint16_t)port error:(NSError **)errPtr; - -/** - * Connects to the given host and port with an optional timeout. - * - * This method invokes connectToHost:onPort:viaInterface:withTimeout:error: and uses the default interface. -**/ -- (BOOL)connectToHost:(NSString *)host - onPort:(uint16_t)port - withTimeout:(NSTimeInterval)timeout - error:(NSError **)errPtr; - -/** - * Connects to the given host & port, via the optional interface, with an optional timeout. - * - * The host may be a domain name (e.g. "deusty.com") or an IP address string (e.g. "192.168.0.2"). - * The host may also be the special strings "localhost" or "loopback" to specify connecting - * to a service on the local machine. - * - * The interface may be a name (e.g. "en1" or "lo0") or the corresponding IP address (e.g. "192.168.4.35"). - * The interface may also be used to specify the local port (see below). - * - * To not time out use a negative time interval. - * - * This method will return NO if an error is detected, and set the error pointer (if one was given). - * Possible errors would be a nil host, invalid interface, or socket is already connected. - * - * If no errors are detected, this method will start a background connect operation and immediately return YES. - * The delegate callbacks are used to notify you when the socket connects, or if the host was unreachable. - * - * Since this class supports queued reads and writes, you can immediately start reading and/or writing. - * All read/write operations will be queued, and upon socket connection, - * the operations will be dequeued and processed in order. - * - * The interface may optionally contain a port number at the end of the string, separated by a colon. - * This allows you to specify the local port that should be used for the outgoing connection. (read paragraph to end) - * To specify both interface and local port: "en1:8082" or "192.168.4.35:2424". - * To specify only local port: ":8082". - * Please note this is an advanced feature, and is somewhat hidden on purpose. - * You should understand that 99.999% of the time you should NOT specify the local port for an outgoing connection. - * If you think you need to, there is a very good chance you have a fundamental misunderstanding somewhere. - * Local ports do NOT need to match remote ports. In fact, they almost never do. - * This feature is here for networking professionals using very advanced techniques. -**/ -- (BOOL)connectToHost:(NSString *)host - onPort:(uint16_t)port - viaInterface:(nullable NSString *)interface - withTimeout:(NSTimeInterval)timeout - error:(NSError **)errPtr; - -/** - * Connects to the given address, specified as a sockaddr structure wrapped in a NSData object. - * For example, a NSData object returned from NSNetService's addresses method. - * - * If you have an existing struct sockaddr you can convert it to a NSData object like so: - * struct sockaddr sa -> NSData *dsa = [NSData dataWithBytes:&remoteAddr length:remoteAddr.sa_len]; - * struct sockaddr *sa -> NSData *dsa = [NSData dataWithBytes:remoteAddr length:remoteAddr->sa_len]; - * - * This method invokes connectToAddress:remoteAddr viaInterface:nil withTimeout:-1 error:errPtr. -**/ -- (BOOL)connectToAddress:(NSData *)remoteAddr error:(NSError **)errPtr; - -/** - * This method is the same as connectToAddress:error: with an additional timeout option. - * To not time out use a negative time interval, or simply use the connectToAddress:error: method. -**/ -- (BOOL)connectToAddress:(NSData *)remoteAddr withTimeout:(NSTimeInterval)timeout error:(NSError **)errPtr; - -/** - * Connects to the given address, using the specified interface and timeout. - * - * The address is specified as a sockaddr structure wrapped in a NSData object. - * For example, a NSData object returned from NSNetService's addresses method. - * - * If you have an existing struct sockaddr you can convert it to a NSData object like so: - * struct sockaddr sa -> NSData *dsa = [NSData dataWithBytes:&remoteAddr length:remoteAddr.sa_len]; - * struct sockaddr *sa -> NSData *dsa = [NSData dataWithBytes:remoteAddr length:remoteAddr->sa_len]; - * - * The interface may be a name (e.g. "en1" or "lo0") or the corresponding IP address (e.g. "192.168.4.35"). - * The interface may also be used to specify the local port (see below). - * - * The timeout is optional. To not time out use a negative time interval. - * - * This method will return NO if an error is detected, and set the error pointer (if one was given). - * Possible errors would be a nil host, invalid interface, or socket is already connected. - * - * If no errors are detected, this method will start a background connect operation and immediately return YES. - * The delegate callbacks are used to notify you when the socket connects, or if the host was unreachable. - * - * Since this class supports queued reads and writes, you can immediately start reading and/or writing. - * All read/write operations will be queued, and upon socket connection, - * the operations will be dequeued and processed in order. - * - * The interface may optionally contain a port number at the end of the string, separated by a colon. - * This allows you to specify the local port that should be used for the outgoing connection. (read paragraph to end) - * To specify both interface and local port: "en1:8082" or "192.168.4.35:2424". - * To specify only local port: ":8082". - * Please note this is an advanced feature, and is somewhat hidden on purpose. - * You should understand that 99.999% of the time you should NOT specify the local port for an outgoing connection. - * If you think you need to, there is a very good chance you have a fundamental misunderstanding somewhere. - * Local ports do NOT need to match remote ports. In fact, they almost never do. - * This feature is here for networking professionals using very advanced techniques. -**/ -- (BOOL)connectToAddress:(NSData *)remoteAddr - viaInterface:(nullable NSString *)interface - withTimeout:(NSTimeInterval)timeout - error:(NSError **)errPtr; -/** - * Connects to the unix domain socket at the given url, using the specified timeout. - */ -- (BOOL)connectToUrl:(NSURL *)url withTimeout:(NSTimeInterval)timeout error:(NSError **)errPtr; - -/** - * Iterates over the given NetService's addresses in order, and invokes connectToAddress:error:. Stops at the - * first invocation that succeeds and returns YES; otherwise returns NO. - */ -- (BOOL)connectToNetService:(NSNetService *)netService error:(NSError **)errPtr; - -#pragma mark Disconnecting - -/** - * Disconnects immediately (synchronously). Any pending reads or writes are dropped. - * - * If the socket is not already disconnected, an invocation to the socketDidDisconnect:withError: delegate method - * will be queued onto the delegateQueue asynchronously (behind any previously queued delegate methods). - * In other words, the disconnected delegate method will be invoked sometime shortly after this method returns. - * - * Please note the recommended way of releasing a GCDAsyncSocket instance (e.g. in a dealloc method) - * [asyncSocket setDelegate:nil]; - * [asyncSocket disconnect]; - * [asyncSocket release]; - * - * If you plan on disconnecting the socket, and then immediately asking it to connect again, - * you'll likely want to do so like this: - * [asyncSocket setDelegate:nil]; - * [asyncSocket disconnect]; - * [asyncSocket setDelegate:self]; - * [asyncSocket connect...]; -**/ -- (void)disconnect; - -/** - * Disconnects after all pending reads have completed. - * After calling this, the read and write methods will do nothing. - * The socket will disconnect even if there are still pending writes. -**/ -- (void)disconnectAfterReading; - -/** - * Disconnects after all pending writes have completed. - * After calling this, the read and write methods will do nothing. - * The socket will disconnect even if there are still pending reads. -**/ -- (void)disconnectAfterWriting; - -/** - * Disconnects after all pending reads and writes have completed. - * After calling this, the read and write methods will do nothing. -**/ -- (void)disconnectAfterReadingAndWriting; - -#pragma mark Diagnostics - -/** - * Returns whether the socket is disconnected or connected. - * - * A disconnected socket may be recycled. - * That is, it can be used again for connecting or listening. - * - * If a socket is in the process of connecting, it may be neither disconnected nor connected. -**/ -@property (atomic, readonly) BOOL isDisconnected; -@property (atomic, readonly) BOOL isConnected; - -/** - * Returns the local or remote host and port to which this socket is connected, or nil and 0 if not connected. - * The host will be an IP address. -**/ -@property (atomic, readonly, nullable) NSString *connectedHost; -@property (atomic, readonly) uint16_t connectedPort; -@property (atomic, readonly, nullable) NSURL *connectedUrl; - -@property (atomic, readonly, nullable) NSString *localHost; -@property (atomic, readonly) uint16_t localPort; - -/** - * Returns the local or remote address to which this socket is connected, - * specified as a sockaddr structure wrapped in a NSData object. - * - * @seealso connectedHost - * @seealso connectedPort - * @seealso localHost - * @seealso localPort -**/ -@property (atomic, readonly, nullable) NSData *connectedAddress; -@property (atomic, readonly, nullable) NSData *localAddress; - -/** - * Returns whether the socket is IPv4 or IPv6. - * An accepting socket may be both. -**/ -@property (atomic, readonly) BOOL isIPv4; -@property (atomic, readonly) BOOL isIPv6; - -/** - * Returns whether or not the socket has been secured via SSL/TLS. - * - * See also the startTLS method. -**/ -@property (atomic, readonly) BOOL isSecure; - -#pragma mark Reading - -// The readData and writeData methods won't block (they are asynchronous). -// -// When a read is complete the socket:didReadData:withTag: delegate method is dispatched on the delegateQueue. -// When a write is complete the socket:didWriteDataWithTag: delegate method is dispatched on the delegateQueue. -// -// You may optionally set a timeout for any read/write operation. (To not timeout, use a negative time interval.) -// If a read/write opertion times out, the corresponding "socket:shouldTimeout..." delegate method -// is called to optionally allow you to extend the timeout. -// Upon a timeout, the "socket:didDisconnectWithError:" method is called -// -// The tag is for your convenience. -// You can use it as an array index, step number, state id, pointer, etc. - -/** - * Reads the first available bytes that become available on the socket. - * - * If the timeout value is negative, the read operation will not use a timeout. -**/ -- (void)readDataWithTimeout:(NSTimeInterval)timeout tag:(long)tag; - -/** - * Reads the first available bytes that become available on the socket. - * The bytes will be appended to the given byte buffer starting at the given offset. - * The given buffer will automatically be increased in size if needed. - * - * If the timeout value is negative, the read operation will not use a timeout. - * If the buffer is nil, the socket will create a buffer for you. - * - * If the bufferOffset is greater than the length of the given buffer, - * the method will do nothing, and the delegate will not be called. - * - * If you pass a buffer, you must not alter it in any way while the socket is using it. - * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. - * That is, it will reference the bytes that were appended to the given buffer via - * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. -**/ -- (void)readDataWithTimeout:(NSTimeInterval)timeout - buffer:(nullable NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - tag:(long)tag; - -/** - * Reads the first available bytes that become available on the socket. - * The bytes will be appended to the given byte buffer starting at the given offset. - * The given buffer will automatically be increased in size if needed. - * A maximum of length bytes will be read. - * - * If the timeout value is negative, the read operation will not use a timeout. - * If the buffer is nil, a buffer will automatically be created for you. - * If maxLength is zero, no length restriction is enforced. - * - * If the bufferOffset is greater than the length of the given buffer, - * the method will do nothing, and the delegate will not be called. - * - * If you pass a buffer, you must not alter it in any way while the socket is using it. - * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. - * That is, it will reference the bytes that were appended to the given buffer via - * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. -**/ -- (void)readDataWithTimeout:(NSTimeInterval)timeout - buffer:(nullable NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - maxLength:(NSUInteger)length - tag:(long)tag; - -/** - * Reads the given number of bytes. - * - * If the timeout value is negative, the read operation will not use a timeout. - * - * If the length is 0, this method does nothing and the delegate is not called. -**/ -- (void)readDataToLength:(NSUInteger)length withTimeout:(NSTimeInterval)timeout tag:(long)tag; - -/** - * Reads the given number of bytes. - * The bytes will be appended to the given byte buffer starting at the given offset. - * The given buffer will automatically be increased in size if needed. - * - * If the timeout value is negative, the read operation will not use a timeout. - * If the buffer is nil, a buffer will automatically be created for you. - * - * If the length is 0, this method does nothing and the delegate is not called. - * If the bufferOffset is greater than the length of the given buffer, - * the method will do nothing, and the delegate will not be called. - * - * If you pass a buffer, you must not alter it in any way while AsyncSocket is using it. - * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. - * That is, it will reference the bytes that were appended to the given buffer via - * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. -**/ -- (void)readDataToLength:(NSUInteger)length - withTimeout:(NSTimeInterval)timeout - buffer:(nullable NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - tag:(long)tag; - -/** - * Reads bytes until (and including) the passed "data" parameter, which acts as a separator. - * - * If the timeout value is negative, the read operation will not use a timeout. - * - * If you pass nil or zero-length data as the "data" parameter, - * the method will do nothing (except maybe print a warning), and the delegate will not be called. - * - * To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter. - * If you're developing your own custom protocol, be sure your separator can not occur naturally as - * part of the data between separators. - * For example, imagine you want to send several small documents over a socket. - * Using CRLF as a separator is likely unwise, as a CRLF could easily exist within the documents. - * In this particular example, it would be better to use a protocol similar to HTTP with - * a header that includes the length of the document. - * Also be careful that your separator cannot occur naturally as part of the encoding for a character. - * - * The given data (separator) parameter should be immutable. - * For performance reasons, the socket will retain it, not copy it. - * So if it is immutable, don't modify it while the socket is using it. -**/ -- (void)readDataToData:(nullable NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag; - -/** - * Reads bytes until (and including) the passed "data" parameter, which acts as a separator. - * The bytes will be appended to the given byte buffer starting at the given offset. - * The given buffer will automatically be increased in size if needed. - * - * If the timeout value is negative, the read operation will not use a timeout. - * If the buffer is nil, a buffer will automatically be created for you. - * - * If the bufferOffset is greater than the length of the given buffer, - * the method will do nothing (except maybe print a warning), and the delegate will not be called. - * - * If you pass a buffer, you must not alter it in any way while the socket is using it. - * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. - * That is, it will reference the bytes that were appended to the given buffer via - * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. - * - * To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter. - * If you're developing your own custom protocol, be sure your separator can not occur naturally as - * part of the data between separators. - * For example, imagine you want to send several small documents over a socket. - * Using CRLF as a separator is likely unwise, as a CRLF could easily exist within the documents. - * In this particular example, it would be better to use a protocol similar to HTTP with - * a header that includes the length of the document. - * Also be careful that your separator cannot occur naturally as part of the encoding for a character. - * - * The given data (separator) parameter should be immutable. - * For performance reasons, the socket will retain it, not copy it. - * So if it is immutable, don't modify it while the socket is using it. -**/ -- (void)readDataToData:(NSData *)data - withTimeout:(NSTimeInterval)timeout - buffer:(nullable NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - tag:(long)tag; - -/** - * Reads bytes until (and including) the passed "data" parameter, which acts as a separator. - * - * If the timeout value is negative, the read operation will not use a timeout. - * - * If maxLength is zero, no length restriction is enforced. - * Otherwise if maxLength bytes are read without completing the read, - * it is treated similarly to a timeout - the socket is closed with a GCDAsyncSocketReadMaxedOutError. - * The read will complete successfully if exactly maxLength bytes are read and the given data is found at the end. - * - * If you pass nil or zero-length data as the "data" parameter, - * the method will do nothing (except maybe print a warning), and the delegate will not be called. - * If you pass a maxLength parameter that is less than the length of the data parameter, - * the method will do nothing (except maybe print a warning), and the delegate will not be called. - * - * To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter. - * If you're developing your own custom protocol, be sure your separator can not occur naturally as - * part of the data between separators. - * For example, imagine you want to send several small documents over a socket. - * Using CRLF as a separator is likely unwise, as a CRLF could easily exist within the documents. - * In this particular example, it would be better to use a protocol similar to HTTP with - * a header that includes the length of the document. - * Also be careful that your separator cannot occur naturally as part of the encoding for a character. - * - * The given data (separator) parameter should be immutable. - * For performance reasons, the socket will retain it, not copy it. - * So if it is immutable, don't modify it while the socket is using it. -**/ -- (void)readDataToData:(NSData *)data withTimeout:(NSTimeInterval)timeout maxLength:(NSUInteger)length tag:(long)tag; - -/** - * Reads bytes until (and including) the passed "data" parameter, which acts as a separator. - * The bytes will be appended to the given byte buffer starting at the given offset. - * The given buffer will automatically be increased in size if needed. - * - * If the timeout value is negative, the read operation will not use a timeout. - * If the buffer is nil, a buffer will automatically be created for you. - * - * If maxLength is zero, no length restriction is enforced. - * Otherwise if maxLength bytes are read without completing the read, - * it is treated similarly to a timeout - the socket is closed with a GCDAsyncSocketReadMaxedOutError. - * The read will complete successfully if exactly maxLength bytes are read and the given data is found at the end. - * - * If you pass a maxLength parameter that is less than the length of the data (separator) parameter, - * the method will do nothing (except maybe print a warning), and the delegate will not be called. - * If the bufferOffset is greater than the length of the given buffer, - * the method will do nothing (except maybe print a warning), and the delegate will not be called. - * - * If you pass a buffer, you must not alter it in any way while the socket is using it. - * After completion, the data returned in socket:didReadData:withTag: will be a subset of the given buffer. - * That is, it will reference the bytes that were appended to the given buffer via - * the method [NSData dataWithBytesNoCopy:length:freeWhenDone:NO]. - * - * To read a line from the socket, use the line separator (e.g. CRLF for HTTP, see below) as the "data" parameter. - * If you're developing your own custom protocol, be sure your separator can not occur naturally as - * part of the data between separators. - * For example, imagine you want to send several small documents over a socket. - * Using CRLF as a separator is likely unwise, as a CRLF could easily exist within the documents. - * In this particular example, it would be better to use a protocol similar to HTTP with - * a header that includes the length of the document. - * Also be careful that your separator cannot occur naturally as part of the encoding for a character. - * - * The given data (separator) parameter should be immutable. - * For performance reasons, the socket will retain it, not copy it. - * So if it is immutable, don't modify it while the socket is using it. -**/ -- (void)readDataToData:(NSData *)data - withTimeout:(NSTimeInterval)timeout - buffer:(nullable NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - maxLength:(NSUInteger)length - tag:(long)tag; - -/** - * Returns progress of the current read, from 0.0 to 1.0, or NaN if no current read (use isnan() to check). - * The parameters "tag", "done" and "total" will be filled in if they aren't NULL. -**/ -- (float)progressOfReadReturningTag:(nullable long *)tagPtr bytesDone:(nullable NSUInteger *)donePtr total:(nullable NSUInteger *)totalPtr; - -#pragma mark Writing - -/** - * Writes data to the socket, and calls the delegate when finished. - * - * If you pass in nil or zero-length data, this method does nothing and the delegate will not be called. - * If the timeout value is negative, the write operation will not use a timeout. - * - * Thread-Safety Note: - * If the given data parameter is mutable (NSMutableData) then you MUST NOT alter the data while - * the socket is writing it. In other words, it's not safe to alter the data until after the delegate method - * socket:didWriteDataWithTag: is invoked signifying that this particular write operation has completed. - * This is due to the fact that GCDAsyncSocket does NOT copy the data. It simply retains it. - * This is for performance reasons. Often times, if NSMutableData is passed, it is because - * a request/response was built up in memory. Copying this data adds an unwanted/unneeded overhead. - * If you need to write data from an immutable buffer, and you need to alter the buffer before the socket - * completes writing the bytes (which is NOT immediately after this method returns, but rather at a later time - * when the delegate method notifies you), then you should first copy the bytes, and pass the copy to this method. -**/ -- (void)writeData:(nullable NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag; - -/** - * Returns progress of the current write, from 0.0 to 1.0, or NaN if no current write (use isnan() to check). - * The parameters "tag", "done" and "total" will be filled in if they aren't NULL. -**/ -- (float)progressOfWriteReturningTag:(nullable long *)tagPtr bytesDone:(nullable NSUInteger *)donePtr total:(nullable NSUInteger *)totalPtr; - -#pragma mark Security - -/** - * Secures the connection using SSL/TLS. - * - * This method may be called at any time, and the TLS handshake will occur after all pending reads and writes - * are finished. This allows one the option of sending a protocol dependent StartTLS message, and queuing - * the upgrade to TLS at the same time, without having to wait for the write to finish. - * Any reads or writes scheduled after this method is called will occur over the secured connection. - * - * ==== The available TOP-LEVEL KEYS are: - * - * - GCDAsyncSocketManuallyEvaluateTrust - * The value must be of type NSNumber, encapsulating a BOOL value. - * If you set this to YES, then the underlying SecureTransport system will not evaluate the SecTrustRef of the peer. - * Instead it will pause at the moment evaulation would typically occur, - * and allow us to handle the security evaluation however we see fit. - * So GCDAsyncSocket will invoke the delegate method socket:shouldTrustPeer: passing the SecTrustRef. - * - * Note that if you set this option, then all other configuration keys are ignored. - * Evaluation will be completely up to you during the socket:didReceiveTrust:completionHandler: delegate method. - * - * For more information on trust evaluation see: - * Apple's Technical Note TN2232 - HTTPS Server Trust Evaluation - * https://developer.apple.com/library/ios/technotes/tn2232/_index.html - * - * If unspecified, the default value is NO. - * - * - GCDAsyncSocketUseCFStreamForTLS (iOS only) - * The value must be of type NSNumber, encapsulating a BOOL value. - * By default GCDAsyncSocket will use the SecureTransport layer to perform encryption. - * This gives us more control over the security protocol (many more configuration options), - * plus it allows us to optimize things like sys calls and buffer allocation. - * - * However, if you absolutely must, you can instruct GCDAsyncSocket to use the old-fashioned encryption - * technique by going through the CFStream instead. So instead of using SecureTransport, GCDAsyncSocket - * will instead setup a CFRead/CFWriteStream. And then set the kCFStreamPropertySSLSettings property - * (via CFReadStreamSetProperty / CFWriteStreamSetProperty) and will pass the given options to this method. - * - * Thus all the other keys in the given dictionary will be ignored by GCDAsyncSocket, - * and will passed directly CFReadStreamSetProperty / CFWriteStreamSetProperty. - * For more infomation on these keys, please see the documentation for kCFStreamPropertySSLSettings. - * - * If unspecified, the default value is NO. - * - * ==== The available CONFIGURATION KEYS are: - * - * - kCFStreamSSLPeerName - * The value must be of type NSString. - * It should match the name in the X.509 certificate given by the remote party. - * See Apple's documentation for SSLSetPeerDomainName. - * - * - kCFStreamSSLCertificates - * The value must be of type NSArray. - * See Apple's documentation for SSLSetCertificate. - * - * - kCFStreamSSLIsServer - * The value must be of type NSNumber, encapsulationg a BOOL value. - * See Apple's documentation for SSLCreateContext for iOS. - * This is optional for iOS. If not supplied, a NO value is the default. - * This is not needed for Mac OS X, and the value is ignored. - * - * - GCDAsyncSocketSSLPeerID - * The value must be of type NSData. - * You must set this value if you want to use TLS session resumption. - * See Apple's documentation for SSLSetPeerID. - * - * - GCDAsyncSocketSSLProtocolVersionMin - * - GCDAsyncSocketSSLProtocolVersionMax - * The value(s) must be of type NSNumber, encapsulting a SSLProtocol value. - * See Apple's documentation for SSLSetProtocolVersionMin & SSLSetProtocolVersionMax. - * See also the SSLProtocol typedef. - * - * - GCDAsyncSocketSSLSessionOptionFalseStart - * The value must be of type NSNumber, encapsulating a BOOL value. - * See Apple's documentation for kSSLSessionOptionFalseStart. - * - * - GCDAsyncSocketSSLSessionOptionSendOneByteRecord - * The value must be of type NSNumber, encapsulating a BOOL value. - * See Apple's documentation for kSSLSessionOptionSendOneByteRecord. - * - * - GCDAsyncSocketSSLCipherSuites - * The values must be of type NSArray. - * Each item within the array must be a NSNumber, encapsulating an SSLCipherSuite. - * See Apple's documentation for SSLSetEnabledCiphers. - * See also the SSLCipherSuite typedef. - * - * - GCDAsyncSocketSSLDiffieHellmanParameters (Mac OS X only) - * The value must be of type NSData. - * See Apple's documentation for SSLSetDiffieHellmanParams. - * - * ==== The following UNAVAILABLE KEYS are: (with throw an exception) - * - * - kCFStreamSSLAllowsAnyRoot (UNAVAILABLE) - * You MUST use manual trust evaluation instead (see GCDAsyncSocketManuallyEvaluateTrust). - * Corresponding deprecated method: SSLSetAllowsAnyRoot - * - * - kCFStreamSSLAllowsExpiredRoots (UNAVAILABLE) - * You MUST use manual trust evaluation instead (see GCDAsyncSocketManuallyEvaluateTrust). - * Corresponding deprecated method: SSLSetAllowsExpiredRoots - * - * - kCFStreamSSLAllowsExpiredCertificates (UNAVAILABLE) - * You MUST use manual trust evaluation instead (see GCDAsyncSocketManuallyEvaluateTrust). - * Corresponding deprecated method: SSLSetAllowsExpiredCerts - * - * - kCFStreamSSLValidatesCertificateChain (UNAVAILABLE) - * You MUST use manual trust evaluation instead (see GCDAsyncSocketManuallyEvaluateTrust). - * Corresponding deprecated method: SSLSetEnableCertVerify - * - * - kCFStreamSSLLevel (UNAVAILABLE) - * You MUST use GCDAsyncSocketSSLProtocolVersionMin & GCDAsyncSocketSSLProtocolVersionMin instead. - * Corresponding deprecated method: SSLSetProtocolVersionEnabled - * - * - * Please refer to Apple's documentation for corresponding SSLFunctions. - * - * If you pass in nil or an empty dictionary, the default settings will be used. - * - * IMPORTANT SECURITY NOTE: - * The default settings will check to make sure the remote party's certificate is signed by a - * trusted 3rd party certificate agency (e.g. verisign) and that the certificate is not expired. - * However it will not verify the name on the certificate unless you - * give it a name to verify against via the kCFStreamSSLPeerName key. - * The security implications of this are important to understand. - * Imagine you are attempting to create a secure connection to MySecureServer.com, - * but your socket gets directed to MaliciousServer.com because of a hacked DNS server. - * If you simply use the default settings, and MaliciousServer.com has a valid certificate, - * the default settings will not detect any problems since the certificate is valid. - * To properly secure your connection in this particular scenario you - * should set the kCFStreamSSLPeerName property to "MySecureServer.com". - * - * You can also perform additional validation in socketDidSecure. -**/ -- (void)startTLS:(nullable NSDictionary *)tlsSettings; - -#pragma mark Advanced - -/** - * Traditionally sockets are not closed until the conversation is over. - * However, it is technically possible for the remote enpoint to close its write stream. - * Our socket would then be notified that there is no more data to be read, - * but our socket would still be writeable and the remote endpoint could continue to receive our data. - * - * The argument for this confusing functionality stems from the idea that a client could shut down its - * write stream after sending a request to the server, thus notifying the server there are to be no further requests. - * In practice, however, this technique did little to help server developers. - * - * To make matters worse, from a TCP perspective there is no way to tell the difference from a read stream close - * and a full socket close. They both result in the TCP stack receiving a FIN packet. The only way to tell - * is by continuing to write to the socket. If it was only a read stream close, then writes will continue to work. - * Otherwise an error will be occur shortly (when the remote end sends us a RST packet). - * - * In addition to the technical challenges and confusion, many high level socket/stream API's provide - * no support for dealing with the problem. If the read stream is closed, the API immediately declares the - * socket to be closed, and shuts down the write stream as well. In fact, this is what Apple's CFStream API does. - * It might sound like poor design at first, but in fact it simplifies development. - * - * The vast majority of the time if the read stream is closed it's because the remote endpoint closed its socket. - * Thus it actually makes sense to close the socket at this point. - * And in fact this is what most networking developers want and expect to happen. - * However, if you are writing a server that interacts with a plethora of clients, - * you might encounter a client that uses the discouraged technique of shutting down its write stream. - * If this is the case, you can set this property to NO, - * and make use of the socketDidCloseReadStream delegate method. - * - * The default value is YES. -**/ -@property (atomic, assign, readwrite) BOOL autoDisconnectOnClosedReadStream; - -/** - * GCDAsyncSocket maintains thread safety by using an internal serial dispatch_queue. - * In most cases, the instance creates this queue itself. - * However, to allow for maximum flexibility, the internal queue may be passed in the init method. - * This allows for some advanced options such as controlling socket priority via target queues. - * However, when one begins to use target queues like this, they open the door to some specific deadlock issues. - * - * For example, imagine there are 2 queues: - * dispatch_queue_t socketQueue; - * dispatch_queue_t socketTargetQueue; - * - * If you do this (pseudo-code): - * socketQueue.targetQueue = socketTargetQueue; - * - * Then all socketQueue operations will actually get run on the given socketTargetQueue. - * This is fine and works great in most situations. - * But if you run code directly from within the socketTargetQueue that accesses the socket, - * you could potentially get deadlock. Imagine the following code: - * - * - (BOOL)socketHasSomething - * { - * __block BOOL result = NO; - * dispatch_block_t block = ^{ - * result = [self someInternalMethodToBeRunOnlyOnSocketQueue]; - * } - * if (is_executing_on_queue(socketQueue)) - * block(); - * else - * dispatch_sync(socketQueue, block); - * - * return result; - * } - * - * What happens if you call this method from the socketTargetQueue? The result is deadlock. - * This is because the GCD API offers no mechanism to discover a queue's targetQueue. - * Thus we have no idea if our socketQueue is configured with a targetQueue. - * If we had this information, we could easily avoid deadlock. - * But, since these API's are missing or unfeasible, you'll have to explicitly set it. - * - * IF you pass a socketQueue via the init method, - * AND you've configured the passed socketQueue with a targetQueue, - * THEN you should pass the end queue in the target hierarchy. - * - * For example, consider the following queue hierarchy: - * socketQueue -> ipQueue -> moduleQueue - * - * This example demonstrates priority shaping within some server. - * All incoming client connections from the same IP address are executed on the same target queue. - * And all connections for a particular module are executed on the same target queue. - * Thus, the priority of all networking for the entire module can be changed on the fly. - * Additionally, networking traffic from a single IP cannot monopolize the module. - * - * Here's how you would accomplish something like that: - * - (dispatch_queue_t)newSocketQueueForConnectionFromAddress:(NSData *)address onSocket:(GCDAsyncSocket *)sock - * { - * dispatch_queue_t socketQueue = dispatch_queue_create("", NULL); - * dispatch_queue_t ipQueue = [self ipQueueForAddress:address]; - * - * dispatch_set_target_queue(socketQueue, ipQueue); - * dispatch_set_target_queue(iqQueue, moduleQueue); - * - * return socketQueue; - * } - * - (void)socket:(GCDAsyncSocket *)sock didAcceptNewSocket:(GCDAsyncSocket *)newSocket - * { - * [clientConnections addObject:newSocket]; - * [newSocket markSocketQueueTargetQueue:moduleQueue]; - * } - * - * Note: This workaround is ONLY needed if you intend to execute code directly on the ipQueue or moduleQueue. - * This is often NOT the case, as such queues are used solely for execution shaping. -**/ -- (void)markSocketQueueTargetQueue:(dispatch_queue_t)socketQueuesPreConfiguredTargetQueue; -- (void)unmarkSocketQueueTargetQueue:(dispatch_queue_t)socketQueuesPreviouslyConfiguredTargetQueue; - -/** - * It's not thread-safe to access certain variables from outside the socket's internal queue. - * - * For example, the socket file descriptor. - * File descriptors are simply integers which reference an index in the per-process file table. - * However, when one requests a new file descriptor (by opening a file or socket), - * the file descriptor returned is guaranteed to be the lowest numbered unused descriptor. - * So if we're not careful, the following could be possible: - * - * - Thread A invokes a method which returns the socket's file descriptor. - * - The socket is closed via the socket's internal queue on thread B. - * - Thread C opens a file, and subsequently receives the file descriptor that was previously the socket's FD. - * - Thread A is now accessing/altering the file instead of the socket. - * - * In addition to this, other variables are not actually objects, - * and thus cannot be retained/released or even autoreleased. - * An example is the sslContext, of type SSLContextRef, which is actually a malloc'd struct. - * - * Although there are internal variables that make it difficult to maintain thread-safety, - * it is important to provide access to these variables - * to ensure this class can be used in a wide array of environments. - * This method helps to accomplish this by invoking the current block on the socket's internal queue. - * The methods below can be invoked from within the block to access - * those generally thread-unsafe internal variables in a thread-safe manner. - * The given block will be invoked synchronously on the socket's internal queue. - * - * If you save references to any protected variables and use them outside the block, you do so at your own peril. -**/ -- (void)performBlock:(dispatch_block_t)block; - -/** - * These methods are only available from within the context of a performBlock: invocation. - * See the documentation for the performBlock: method above. - * - * Provides access to the socket's file descriptor(s). - * If the socket is a server socket (is accepting incoming connections), - * it might actually have multiple internal socket file descriptors - one for IPv4 and one for IPv6. -**/ -- (int)socketFD; -- (int)socket4FD; -- (int)socket6FD; - -#if TARGET_OS_IPHONE - -/** - * These methods are only available from within the context of a performBlock: invocation. - * See the documentation for the performBlock: method above. - * - * Provides access to the socket's internal CFReadStream/CFWriteStream. - * - * These streams are only used as workarounds for specific iOS shortcomings: - * - * - Apple has decided to keep the SecureTransport framework private is iOS. - * This means the only supplied way to do SSL/TLS is via CFStream or some other API layered on top of it. - * Thus, in order to provide SSL/TLS support on iOS we are forced to rely on CFStream, - * instead of the preferred and faster and more powerful SecureTransport. - * - * - If a socket doesn't have backgrounding enabled, and that socket is closed while the app is backgrounded, - * Apple only bothers to notify us via the CFStream API. - * The faster and more powerful GCD API isn't notified properly in this case. - * - * See also: (BOOL)enableBackgroundingOnSocket -**/ -- (nullable CFReadStreamRef)readStream; -- (nullable CFWriteStreamRef)writeStream; - -/** - * This method is only available from within the context of a performBlock: invocation. - * See the documentation for the performBlock: method above. - * - * Configures the socket to allow it to operate when the iOS application has been backgrounded. - * In other words, this method creates a read & write stream, and invokes: - * - * CFReadStreamSetProperty(readStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); - * CFWriteStreamSetProperty(writeStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); - * - * Returns YES if successful, NO otherwise. - * - * Note: Apple does not officially support backgrounding server sockets. - * That is, if your socket is accepting incoming connections, Apple does not officially support - * allowing iOS applications to accept incoming connections while an app is backgrounded. - * - * Example usage: - * - * - (void)socket:(GCDAsyncSocket *)sock didConnectToHost:(NSString *)host port:(uint16_t)port - * { - * [asyncSocket performBlock:^{ - * [asyncSocket enableBackgroundingOnSocket]; - * }]; - * } -**/ -- (BOOL)enableBackgroundingOnSocket; - -#endif - -/** - * This method is only available from within the context of a performBlock: invocation. - * See the documentation for the performBlock: method above. - * - * Provides access to the socket's SSLContext, if SSL/TLS has been started on the socket. -**/ -- (nullable SSLContextRef)sslContext; - -#pragma mark Utilities - -/** - * The address lookup utility used by the class. - * This method is synchronous, so it's recommended you use it on a background thread/queue. - * - * The special strings "localhost" and "loopback" return the loopback address for IPv4 and IPv6. - * - * @returns - * A mutable array with all IPv4 and IPv6 addresses returned by getaddrinfo. - * The addresses are specifically for TCP connections. - * You can filter the addresses, if needed, using the other utility methods provided by the class. -**/ -+ (nullable NSMutableArray *)lookupHost:(NSString *)host port:(uint16_t)port error:(NSError **)errPtr; - -/** - * Extracting host and port information from raw address data. -**/ - -+ (nullable NSString *)hostFromAddress:(NSData *)address; -+ (uint16_t)portFromAddress:(NSData *)address; - -+ (BOOL)isIPv4Address:(NSData *)address; -+ (BOOL)isIPv6Address:(NSData *)address; - -+ (BOOL)getHost:( NSString * __nullable * __nullable)hostPtr port:(nullable uint16_t *)portPtr fromAddress:(NSData *)address; - -+ (BOOL)getHost:(NSString * __nullable * __nullable)hostPtr port:(nullable uint16_t *)portPtr family:(nullable sa_family_t *)afPtr fromAddress:(NSData *)address; - -/** - * A few common line separators, for use with the readDataToData:... methods. -**/ -+ (NSData *)CRLFData; // 0x0D0A -+ (NSData *)CRData; // 0x0D -+ (NSData *)LFData; // 0x0A -+ (NSData *)ZeroData; // 0x00 - -@end - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -@protocol GCDAsyncSocketDelegate -@optional - -/** - * This method is called immediately prior to socket:didAcceptNewSocket:. - * It optionally allows a listening socket to specify the socketQueue for a new accepted socket. - * If this method is not implemented, or returns NULL, the new accepted socket will create its own default queue. - * - * Since you cannot autorelease a dispatch_queue, - * this method uses the "new" prefix in its name to specify that the returned queue has been retained. - * - * Thus you could do something like this in the implementation: - * return dispatch_queue_create("MyQueue", NULL); - * - * If you are placing multiple sockets on the same queue, - * then care should be taken to increment the retain count each time this method is invoked. - * - * For example, your implementation might look something like this: - * dispatch_retain(myExistingQueue); - * return myExistingQueue; -**/ -- (nullable dispatch_queue_t)newSocketQueueForConnectionFromAddress:(NSData *)address onSocket:(GCDAsyncSocket *)sock; - -/** - * Called when a socket accepts a connection. - * Another socket is automatically spawned to handle it. - * - * You must retain the newSocket if you wish to handle the connection. - * Otherwise the newSocket instance will be released and the spawned connection will be closed. - * - * By default the new socket will have the same delegate and delegateQueue. - * You may, of course, change this at any time. -**/ -- (void)socket:(GCDAsyncSocket *)sock didAcceptNewSocket:(GCDAsyncSocket *)newSocket; - -/** - * Called when a socket connects and is ready for reading and writing. - * The host parameter will be an IP address, not a DNS name. -**/ -- (void)socket:(GCDAsyncSocket *)sock didConnectToHost:(NSString *)host port:(uint16_t)port; - -/** - * Called when a socket connects and is ready for reading and writing. - * The host parameter will be an IP address, not a DNS name. - **/ -- (void)socket:(GCDAsyncSocket *)sock didConnectToUrl:(NSURL *)url; - -/** - * Called when a socket has completed reading the requested data into memory. - * Not called if there is an error. -**/ -- (void)socket:(GCDAsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag; - -/** - * Called when a socket has read in data, but has not yet completed the read. - * This would occur if using readToData: or readToLength: methods. - * It may be used for things such as updating progress bars. -**/ -- (void)socket:(GCDAsyncSocket *)sock didReadPartialDataOfLength:(NSUInteger)partialLength tag:(long)tag; - -/** - * Called when a socket has completed writing the requested data. Not called if there is an error. -**/ -- (void)socket:(GCDAsyncSocket *)sock didWriteDataWithTag:(long)tag; - -/** - * Called when a socket has written some data, but has not yet completed the entire write. - * It may be used for things such as updating progress bars. -**/ -- (void)socket:(GCDAsyncSocket *)sock didWritePartialDataOfLength:(NSUInteger)partialLength tag:(long)tag; - -/** - * Called if a read operation has reached its timeout without completing. - * This method allows you to optionally extend the timeout. - * If you return a positive time interval (> 0) the read's timeout will be extended by the given amount. - * If you don't implement this method, or return a non-positive time interval (<= 0) the read will timeout as usual. - * - * The elapsed parameter is the sum of the original timeout, plus any additions previously added via this method. - * The length parameter is the number of bytes that have been read so far for the read operation. - * - * Note that this method may be called multiple times for a single read if you return positive numbers. -**/ -- (NSTimeInterval)socket:(GCDAsyncSocket *)sock shouldTimeoutReadWithTag:(long)tag - elapsed:(NSTimeInterval)elapsed - bytesDone:(NSUInteger)length; - -/** - * Called if a write operation has reached its timeout without completing. - * This method allows you to optionally extend the timeout. - * If you return a positive time interval (> 0) the write's timeout will be extended by the given amount. - * If you don't implement this method, or return a non-positive time interval (<= 0) the write will timeout as usual. - * - * The elapsed parameter is the sum of the original timeout, plus any additions previously added via this method. - * The length parameter is the number of bytes that have been written so far for the write operation. - * - * Note that this method may be called multiple times for a single write if you return positive numbers. -**/ -- (NSTimeInterval)socket:(GCDAsyncSocket *)sock shouldTimeoutWriteWithTag:(long)tag - elapsed:(NSTimeInterval)elapsed - bytesDone:(NSUInteger)length; - -/** - * Conditionally called if the read stream closes, but the write stream may still be writeable. - * - * This delegate method is only called if autoDisconnectOnClosedReadStream has been set to NO. - * See the discussion on the autoDisconnectOnClosedReadStream method for more information. -**/ -- (void)socketDidCloseReadStream:(GCDAsyncSocket *)sock; - -/** - * Called when a socket disconnects with or without error. - * - * If you call the disconnect method, and the socket wasn't already disconnected, - * then an invocation of this delegate method will be enqueued on the delegateQueue - * before the disconnect method returns. - * - * Note: If the GCDAsyncSocket instance is deallocated while it is still connected, - * and the delegate is not also deallocated, then this method will be invoked, - * but the sock parameter will be nil. (It must necessarily be nil since it is no longer available.) - * This is a generally rare, but is possible if one writes code like this: - * - * asyncSocket = nil; // I'm implicitly disconnecting the socket - * - * In this case it may preferrable to nil the delegate beforehand, like this: - * - * asyncSocket.delegate = nil; // Don't invoke my delegate method - * asyncSocket = nil; // I'm implicitly disconnecting the socket - * - * Of course, this depends on how your state machine is configured. -**/ -- (void)socketDidDisconnect:(GCDAsyncSocket *)sock withError:(nullable NSError *)err; - -/** - * Called after the socket has successfully completed SSL/TLS negotiation. - * This method is not called unless you use the provided startTLS method. - * - * If a SSL/TLS negotiation fails (invalid certificate, etc) then the socket will immediately close, - * and the socketDidDisconnect:withError: delegate method will be called with the specific SSL error code. -**/ -- (void)socketDidSecure:(GCDAsyncSocket *)sock; - -/** - * Allows a socket delegate to hook into the TLS handshake and manually validate the peer it's connecting to. - * - * This is only called if startTLS is invoked with options that include: - * - GCDAsyncSocketManuallyEvaluateTrust == YES - * - * Typically the delegate will use SecTrustEvaluate (and related functions) to properly validate the peer. - * - * Note from Apple's documentation: - * Because [SecTrustEvaluate] might look on the network for certificates in the certificate chain, - * [it] might block while attempting network access. You should never call it from your main thread; - * call it only from within a function running on a dispatch queue or on a separate thread. - * - * Thus this method uses a completionHandler block rather than a normal return value. - * The completionHandler block is thread-safe, and may be invoked from a background queue/thread. - * It is safe to invoke the completionHandler block even if the socket has been closed. -**/ -- (void)socket:(GCDAsyncSocket *)sock didReceiveTrust:(SecTrustRef)trust - completionHandler:(void (^)(BOOL shouldTrustPeer))completionHandler; - -@end -NS_ASSUME_NONNULL_END diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncSocket.m b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncSocket.m deleted file mode 100755 index f3d1c17..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncSocket.m +++ /dev/null @@ -1,8526 +0,0 @@ -// -// GCDAsyncSocket.m -// -// This class is in the public domain. -// Originally created by Robbie Hanson in Q4 2010. -// Updated and maintained by Deusty LLC and the Apple development community. -// -// https://github.com/robbiehanson/CocoaAsyncSocket -// - -#import "GCDAsyncSocket.h" - -#if TARGET_OS_IPHONE -#import -#endif - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import - -#if ! __has_feature(objc_arc) -#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC). -// For more information see: https://github.com/robbiehanson/CocoaAsyncSocket/wiki/ARC -#endif - - -#ifndef GCDAsyncSocketLoggingEnabled -#define GCDAsyncSocketLoggingEnabled 0 -#endif - -#if GCDAsyncSocketLoggingEnabled - -// Logging Enabled - See log level below - -// Logging uses the CocoaLumberjack framework (which is also GCD based). -// https://github.com/robbiehanson/CocoaLumberjack -// -// It allows us to do a lot of logging without significantly slowing down the code. -#import "DDLog.h" - -#define LogAsync YES -#define LogContext GCDAsyncSocketLoggingContext - -#define LogObjc(flg, frmt, ...) LOG_OBJC_MAYBE(LogAsync, logLevel, flg, LogContext, frmt, ##__VA_ARGS__) -#define LogC(flg, frmt, ...) LOG_C_MAYBE(LogAsync, logLevel, flg, LogContext, frmt, ##__VA_ARGS__) - -#define LogError(frmt, ...) LogObjc(LOG_FLAG_ERROR, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogWarn(frmt, ...) LogObjc(LOG_FLAG_WARN, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogInfo(frmt, ...) LogObjc(LOG_FLAG_INFO, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogVerbose(frmt, ...) LogObjc(LOG_FLAG_VERBOSE, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) - -#define LogCError(frmt, ...) LogC(LOG_FLAG_ERROR, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogCWarn(frmt, ...) LogC(LOG_FLAG_WARN, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogCInfo(frmt, ...) LogC(LOG_FLAG_INFO, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogCVerbose(frmt, ...) LogC(LOG_FLAG_VERBOSE, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) - -#define LogTrace() LogObjc(LOG_FLAG_VERBOSE, @"%@: %@", THIS_FILE, THIS_METHOD) -#define LogCTrace() LogC(LOG_FLAG_VERBOSE, @"%@: %s", THIS_FILE, __FUNCTION__) - -#ifndef GCDAsyncSocketLogLevel -#define GCDAsyncSocketLogLevel LOG_LEVEL_VERBOSE -#endif - -// Log levels : off, error, warn, info, verbose -static const int logLevel = GCDAsyncSocketLogLevel; - -#else - -// Logging Disabled - -#define LogError(frmt, ...) {} -#define LogWarn(frmt, ...) {} -#define LogInfo(frmt, ...) {} -#define LogVerbose(frmt, ...) {} - -#define LogCError(frmt, ...) {} -#define LogCWarn(frmt, ...) {} -#define LogCInfo(frmt, ...) {} -#define LogCVerbose(frmt, ...) {} - -#define LogTrace() {} -#define LogCTrace(frmt, ...) {} - -#endif - -/** - * Seeing a return statements within an inner block - * can sometimes be mistaken for a return point of the enclosing method. - * This makes inline blocks a bit easier to read. -**/ -#define return_from_block return - -/** - * A socket file descriptor is really just an integer. - * It represents the index of the socket within the kernel. - * This makes invalid file descriptor comparisons easier to read. -**/ -#define SOCKET_NULL -1 - - -NSString *const GCDAsyncSocketException = @"GCDAsyncSocketException"; -NSString *const GCDAsyncSocketErrorDomain = @"GCDAsyncSocketErrorDomain"; - -NSString *const GCDAsyncSocketQueueName = @"GCDAsyncSocket"; -NSString *const GCDAsyncSocketThreadName = @"GCDAsyncSocket-CFStream"; - -NSString *const GCDAsyncSocketManuallyEvaluateTrust = @"GCDAsyncSocketManuallyEvaluateTrust"; -#if TARGET_OS_IPHONE -NSString *const GCDAsyncSocketUseCFStreamForTLS = @"GCDAsyncSocketUseCFStreamForTLS"; -#endif -NSString *const GCDAsyncSocketSSLPeerID = @"GCDAsyncSocketSSLPeerID"; -NSString *const GCDAsyncSocketSSLProtocolVersionMin = @"GCDAsyncSocketSSLProtocolVersionMin"; -NSString *const GCDAsyncSocketSSLProtocolVersionMax = @"GCDAsyncSocketSSLProtocolVersionMax"; -NSString *const GCDAsyncSocketSSLSessionOptionFalseStart = @"GCDAsyncSocketSSLSessionOptionFalseStart"; -NSString *const GCDAsyncSocketSSLSessionOptionSendOneByteRecord = @"GCDAsyncSocketSSLSessionOptionSendOneByteRecord"; -NSString *const GCDAsyncSocketSSLCipherSuites = @"GCDAsyncSocketSSLCipherSuites"; -NSString *const GCDAsyncSocketSSLALPN = @"GCDAsyncSocketSSLALPN"; -#if !TARGET_OS_IPHONE -NSString *const GCDAsyncSocketSSLDiffieHellmanParameters = @"GCDAsyncSocketSSLDiffieHellmanParameters"; -#endif - -enum GCDAsyncSocketFlags -{ - kSocketStarted = 1 << 0, // If set, socket has been started (accepting/connecting) - kConnected = 1 << 1, // If set, the socket is connected - kForbidReadsWrites = 1 << 2, // If set, no new reads or writes are allowed - kReadsPaused = 1 << 3, // If set, reads are paused due to possible timeout - kWritesPaused = 1 << 4, // If set, writes are paused due to possible timeout - kDisconnectAfterReads = 1 << 5, // If set, disconnect after no more reads are queued - kDisconnectAfterWrites = 1 << 6, // If set, disconnect after no more writes are queued - kSocketCanAcceptBytes = 1 << 7, // If set, we know socket can accept bytes. If unset, it's unknown. - kReadSourceSuspended = 1 << 8, // If set, the read source is suspended - kWriteSourceSuspended = 1 << 9, // If set, the write source is suspended - kQueuedTLS = 1 << 10, // If set, we've queued an upgrade to TLS - kStartingReadTLS = 1 << 11, // If set, we're waiting for TLS negotiation to complete - kStartingWriteTLS = 1 << 12, // If set, we're waiting for TLS negotiation to complete - kSocketSecure = 1 << 13, // If set, socket is using secure communication via SSL/TLS - kSocketHasReadEOF = 1 << 14, // If set, we have read EOF from socket - kReadStreamClosed = 1 << 15, // If set, we've read EOF plus prebuffer has been drained - kDealloc = 1 << 16, // If set, the socket is being deallocated -#if TARGET_OS_IPHONE - kAddedStreamsToRunLoop = 1 << 17, // If set, CFStreams have been added to listener thread - kUsingCFStreamForTLS = 1 << 18, // If set, we're forced to use CFStream instead of SecureTransport - kSecureSocketHasBytesAvailable = 1 << 19, // If set, CFReadStream has notified us of bytes available -#endif -}; - -enum GCDAsyncSocketConfig -{ - kIPv4Disabled = 1 << 0, // If set, IPv4 is disabled - kIPv6Disabled = 1 << 1, // If set, IPv6 is disabled - kPreferIPv6 = 1 << 2, // If set, IPv6 is preferred over IPv4 - kAllowHalfDuplexConnection = 1 << 3, // If set, the socket will stay open even if the read stream closes -}; - -#if TARGET_OS_IPHONE - static NSThread *cfstreamThread; // Used for CFStreams - - - static uint64_t cfstreamThreadRetainCount; // setup & teardown - static dispatch_queue_t cfstreamThreadSetupQueue; // setup & teardown -#endif - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * A PreBuffer is used when there is more data available on the socket - * than is being requested by current read request. - * In this case we slurp up all data from the socket (to minimize sys calls), - * and store additional yet unread data in a "prebuffer". - * - * The prebuffer is entirely drained before we read from the socket again. - * In other words, a large chunk of data is written is written to the prebuffer. - * The prebuffer is then drained via a series of one or more reads (for subsequent read request(s)). - * - * A ring buffer was once used for this purpose. - * But a ring buffer takes up twice as much memory as needed (double the size for mirroring). - * In fact, it generally takes up more than twice the needed size as everything has to be rounded up to vm_page_size. - * And since the prebuffer is always completely drained after being written to, a full ring buffer isn't needed. - * - * The current design is very simple and straight-forward, while also keeping memory requirements lower. -**/ - -@interface GCDAsyncSocketPreBuffer : NSObject -{ - uint8_t *preBuffer; - size_t preBufferSize; - - uint8_t *readPointer; - uint8_t *writePointer; -} - -- (instancetype)initWithCapacity:(size_t)numBytes NS_DESIGNATED_INITIALIZER; - -- (void)ensureCapacityForWrite:(size_t)numBytes; - -- (size_t)availableBytes; -- (uint8_t *)readBuffer; - -- (void)getReadBuffer:(uint8_t **)bufferPtr availableBytes:(size_t *)availableBytesPtr; - -- (size_t)availableSpace; -- (uint8_t *)writeBuffer; - -- (void)getWriteBuffer:(uint8_t **)bufferPtr availableSpace:(size_t *)availableSpacePtr; - -- (void)didRead:(size_t)bytesRead; -- (void)didWrite:(size_t)bytesWritten; - -- (void)reset; - -@end - -@implementation GCDAsyncSocketPreBuffer - -// Cover the superclass' designated initializer -- (instancetype)init NS_UNAVAILABLE -{ - NSAssert(0, @"Use the designated initializer"); - return nil; -} - -- (instancetype)initWithCapacity:(size_t)numBytes -{ - if ((self = [super init])) - { - preBufferSize = numBytes; - preBuffer = malloc(preBufferSize); - - readPointer = preBuffer; - writePointer = preBuffer; - } - return self; -} - -- (void)dealloc -{ - if (preBuffer) - free(preBuffer); -} - -- (void)ensureCapacityForWrite:(size_t)numBytes -{ - size_t availableSpace = [self availableSpace]; - - if (numBytes > availableSpace) - { - size_t additionalBytes = numBytes - availableSpace; - - size_t newPreBufferSize = preBufferSize + additionalBytes; - uint8_t *newPreBuffer = realloc(preBuffer, newPreBufferSize); - - size_t readPointerOffset = readPointer - preBuffer; - size_t writePointerOffset = writePointer - preBuffer; - - preBuffer = newPreBuffer; - preBufferSize = newPreBufferSize; - - readPointer = preBuffer + readPointerOffset; - writePointer = preBuffer + writePointerOffset; - } -} - -- (size_t)availableBytes -{ - return writePointer - readPointer; -} - -- (uint8_t *)readBuffer -{ - return readPointer; -} - -- (void)getReadBuffer:(uint8_t **)bufferPtr availableBytes:(size_t *)availableBytesPtr -{ - if (bufferPtr) *bufferPtr = readPointer; - if (availableBytesPtr) *availableBytesPtr = [self availableBytes]; -} - -- (void)didRead:(size_t)bytesRead -{ - readPointer += bytesRead; - - if (readPointer == writePointer) - { - // The prebuffer has been drained. Reset pointers. - readPointer = preBuffer; - writePointer = preBuffer; - } -} - -- (size_t)availableSpace -{ - return preBufferSize - (writePointer - preBuffer); -} - -- (uint8_t *)writeBuffer -{ - return writePointer; -} - -- (void)getWriteBuffer:(uint8_t **)bufferPtr availableSpace:(size_t *)availableSpacePtr -{ - if (bufferPtr) *bufferPtr = writePointer; - if (availableSpacePtr) *availableSpacePtr = [self availableSpace]; -} - -- (void)didWrite:(size_t)bytesWritten -{ - writePointer += bytesWritten; -} - -- (void)reset -{ - readPointer = preBuffer; - writePointer = preBuffer; -} - -@end - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * The GCDAsyncReadPacket encompasses the instructions for any given read. - * The content of a read packet allows the code to determine if we're: - * - reading to a certain length - * - reading to a certain separator - * - or simply reading the first chunk of available data -**/ -@interface GCDAsyncReadPacket : NSObject -{ - @public - NSMutableData *buffer; - NSUInteger startOffset; - NSUInteger bytesDone; - NSUInteger maxLength; - NSTimeInterval timeout; - NSUInteger readLength; - NSData *term; - BOOL bufferOwner; - NSUInteger originalBufferLength; - long tag; -} -- (instancetype)initWithData:(NSMutableData *)d - startOffset:(NSUInteger)s - maxLength:(NSUInteger)m - timeout:(NSTimeInterval)t - readLength:(NSUInteger)l - terminator:(NSData *)e - tag:(long)i NS_DESIGNATED_INITIALIZER; - -- (void)ensureCapacityForAdditionalDataOfLength:(NSUInteger)bytesToRead; - -- (NSUInteger)optimalReadLengthWithDefault:(NSUInteger)defaultValue shouldPreBuffer:(BOOL *)shouldPreBufferPtr; - -- (NSUInteger)readLengthForNonTermWithHint:(NSUInteger)bytesAvailable; -- (NSUInteger)readLengthForTermWithHint:(NSUInteger)bytesAvailable shouldPreBuffer:(BOOL *)shouldPreBufferPtr; -- (NSUInteger)readLengthForTermWithPreBuffer:(GCDAsyncSocketPreBuffer *)preBuffer found:(BOOL *)foundPtr; - -- (NSInteger)searchForTermAfterPreBuffering:(ssize_t)numBytes; - -@end - -@implementation GCDAsyncReadPacket - -// Cover the superclass' designated initializer -- (instancetype)init NS_UNAVAILABLE -{ - NSAssert(0, @"Use the designated initializer"); - return nil; -} - -- (instancetype)initWithData:(NSMutableData *)d - startOffset:(NSUInteger)s - maxLength:(NSUInteger)m - timeout:(NSTimeInterval)t - readLength:(NSUInteger)l - terminator:(NSData *)e - tag:(long)i -{ - if((self = [super init])) - { - bytesDone = 0; - maxLength = m; - timeout = t; - readLength = l; - term = [e copy]; - tag = i; - - if (d) - { - buffer = d; - startOffset = s; - bufferOwner = NO; - originalBufferLength = [d length]; - } - else - { - if (readLength > 0) - buffer = [[NSMutableData alloc] initWithLength:readLength]; - else - buffer = [[NSMutableData alloc] initWithLength:0]; - - startOffset = 0; - bufferOwner = YES; - originalBufferLength = 0; - } - } - return self; -} - -/** - * Increases the length of the buffer (if needed) to ensure a read of the given size will fit. -**/ -- (void)ensureCapacityForAdditionalDataOfLength:(NSUInteger)bytesToRead -{ - NSUInteger buffSize = [buffer length]; - NSUInteger buffUsed = startOffset + bytesDone; - - NSUInteger buffSpace = buffSize - buffUsed; - - if (bytesToRead > buffSpace) - { - NSUInteger buffInc = bytesToRead - buffSpace; - - [buffer increaseLengthBy:buffInc]; - } -} - -/** - * This method is used when we do NOT know how much data is available to be read from the socket. - * This method returns the default value unless it exceeds the specified readLength or maxLength. - * - * Furthermore, the shouldPreBuffer decision is based upon the packet type, - * and whether the returned value would fit in the current buffer without requiring a resize of the buffer. -**/ -- (NSUInteger)optimalReadLengthWithDefault:(NSUInteger)defaultValue shouldPreBuffer:(BOOL *)shouldPreBufferPtr -{ - NSUInteger result; - - if (readLength > 0) - { - // Read a specific length of data - result = readLength - bytesDone; - - // There is no need to prebuffer since we know exactly how much data we need to read. - // Even if the buffer isn't currently big enough to fit this amount of data, - // it would have to be resized eventually anyway. - - if (shouldPreBufferPtr) - *shouldPreBufferPtr = NO; - } - else - { - // Either reading until we find a specified terminator, - // or we're simply reading all available data. - // - // In other words, one of: - // - // - readDataToData packet - // - readDataWithTimeout packet - - if (maxLength > 0) - result = MIN(defaultValue, (maxLength - bytesDone)); - else - result = defaultValue; - - // Since we don't know the size of the read in advance, - // the shouldPreBuffer decision is based upon whether the returned value would fit - // in the current buffer without requiring a resize of the buffer. - // - // This is because, in all likelyhood, the amount read from the socket will be less than the default value. - // Thus we should avoid over-allocating the read buffer when we can simply use the pre-buffer instead. - - if (shouldPreBufferPtr) - { - NSUInteger buffSize = [buffer length]; - NSUInteger buffUsed = startOffset + bytesDone; - - NSUInteger buffSpace = buffSize - buffUsed; - - if (buffSpace >= result) - *shouldPreBufferPtr = NO; - else - *shouldPreBufferPtr = YES; - } - } - - return result; -} - -/** - * For read packets without a set terminator, returns the amount of data - * that can be read without exceeding the readLength or maxLength. - * - * The given parameter indicates the number of bytes estimated to be available on the socket, - * which is taken into consideration during the calculation. - * - * The given hint MUST be greater than zero. -**/ -- (NSUInteger)readLengthForNonTermWithHint:(NSUInteger)bytesAvailable -{ - NSAssert(term == nil, @"This method does not apply to term reads"); - NSAssert(bytesAvailable > 0, @"Invalid parameter: bytesAvailable"); - - if (readLength > 0) - { - // Read a specific length of data - - return MIN(bytesAvailable, (readLength - bytesDone)); - - // No need to avoid resizing the buffer. - // If the user provided their own buffer, - // and told us to read a certain length of data that exceeds the size of the buffer, - // then it is clear that our code will resize the buffer during the read operation. - // - // This method does not actually do any resizing. - // The resizing will happen elsewhere if needed. - } - else - { - // Read all available data - - NSUInteger result = bytesAvailable; - - if (maxLength > 0) - { - result = MIN(result, (maxLength - bytesDone)); - } - - // No need to avoid resizing the buffer. - // If the user provided their own buffer, - // and told us to read all available data without giving us a maxLength, - // then it is clear that our code might resize the buffer during the read operation. - // - // This method does not actually do any resizing. - // The resizing will happen elsewhere if needed. - - return result; - } -} - -/** - * For read packets with a set terminator, returns the amount of data - * that can be read without exceeding the maxLength. - * - * The given parameter indicates the number of bytes estimated to be available on the socket, - * which is taken into consideration during the calculation. - * - * To optimize memory allocations, mem copies, and mem moves - * the shouldPreBuffer boolean value will indicate if the data should be read into a prebuffer first, - * or if the data can be read directly into the read packet's buffer. -**/ -- (NSUInteger)readLengthForTermWithHint:(NSUInteger)bytesAvailable shouldPreBuffer:(BOOL *)shouldPreBufferPtr -{ - NSAssert(term != nil, @"This method does not apply to non-term reads"); - NSAssert(bytesAvailable > 0, @"Invalid parameter: bytesAvailable"); - - - NSUInteger result = bytesAvailable; - - if (maxLength > 0) - { - result = MIN(result, (maxLength - bytesDone)); - } - - // Should the data be read into the read packet's buffer, or into a pre-buffer first? - // - // One would imagine the preferred option is the faster one. - // So which one is faster? - // - // Reading directly into the packet's buffer requires: - // 1. Possibly resizing packet buffer (malloc/realloc) - // 2. Filling buffer (read) - // 3. Searching for term (memcmp) - // 4. Possibly copying overflow into prebuffer (malloc/realloc, memcpy) - // - // Reading into prebuffer first: - // 1. Possibly resizing prebuffer (malloc/realloc) - // 2. Filling buffer (read) - // 3. Searching for term (memcmp) - // 4. Copying underflow into packet buffer (malloc/realloc, memcpy) - // 5. Removing underflow from prebuffer (memmove) - // - // Comparing the performance of the two we can see that reading - // data into the prebuffer first is slower due to the extra memove. - // - // However: - // The implementation of NSMutableData is open source via core foundation's CFMutableData. - // Decreasing the length of a mutable data object doesn't cause a realloc. - // In other words, the capacity of a mutable data object can grow, but doesn't shrink. - // - // This means the prebuffer will rarely need a realloc. - // The packet buffer, on the other hand, may often need a realloc. - // This is especially true if we are the buffer owner. - // Furthermore, if we are constantly realloc'ing the packet buffer, - // and then moving the overflow into the prebuffer, - // then we're consistently over-allocating memory for each term read. - // And now we get into a bit of a tradeoff between speed and memory utilization. - // - // The end result is that the two perform very similarly. - // And we can answer the original question very simply by another means. - // - // If we can read all the data directly into the packet's buffer without resizing it first, - // then we do so. Otherwise we use the prebuffer. - - if (shouldPreBufferPtr) - { - NSUInteger buffSize = [buffer length]; - NSUInteger buffUsed = startOffset + bytesDone; - - if ((buffSize - buffUsed) >= result) - *shouldPreBufferPtr = NO; - else - *shouldPreBufferPtr = YES; - } - - return result; -} - -/** - * For read packets with a set terminator, - * returns the amount of data that can be read from the given preBuffer, - * without going over a terminator or the maxLength. - * - * It is assumed the terminator has not already been read. -**/ -- (NSUInteger)readLengthForTermWithPreBuffer:(GCDAsyncSocketPreBuffer *)preBuffer found:(BOOL *)foundPtr -{ - NSAssert(term != nil, @"This method does not apply to non-term reads"); - NSAssert([preBuffer availableBytes] > 0, @"Invoked with empty pre buffer!"); - - // We know that the terminator, as a whole, doesn't exist in our own buffer. - // But it is possible that a _portion_ of it exists in our buffer. - // So we're going to look for the terminator starting with a portion of our own buffer. - // - // Example: - // - // term length = 3 bytes - // bytesDone = 5 bytes - // preBuffer length = 5 bytes - // - // If we append the preBuffer to our buffer, - // it would look like this: - // - // --------------------- - // |B|B|B|B|B|P|P|P|P|P| - // --------------------- - // - // So we start our search here: - // - // --------------------- - // |B|B|B|B|B|P|P|P|P|P| - // -------^-^-^--------- - // - // And move forwards... - // - // --------------------- - // |B|B|B|B|B|P|P|P|P|P| - // ---------^-^-^------- - // - // Until we find the terminator or reach the end. - // - // --------------------- - // |B|B|B|B|B|P|P|P|P|P| - // ---------------^-^-^- - - BOOL found = NO; - - NSUInteger termLength = [term length]; - NSUInteger preBufferLength = [preBuffer availableBytes]; - - if ((bytesDone + preBufferLength) < termLength) - { - // Not enough data for a full term sequence yet - return preBufferLength; - } - - NSUInteger maxPreBufferLength; - if (maxLength > 0) { - maxPreBufferLength = MIN(preBufferLength, (maxLength - bytesDone)); - - // Note: maxLength >= termLength - } - else { - maxPreBufferLength = preBufferLength; - } - - uint8_t seq[termLength]; - const void *termBuf = [term bytes]; - - NSUInteger bufLen = MIN(bytesDone, (termLength - 1)); - uint8_t *buf = (uint8_t *)[buffer mutableBytes] + startOffset + bytesDone - bufLen; - - NSUInteger preLen = termLength - bufLen; - const uint8_t *pre = [preBuffer readBuffer]; - - NSUInteger loopCount = bufLen + maxPreBufferLength - termLength + 1; // Plus one. See example above. - - NSUInteger result = maxPreBufferLength; - - NSUInteger i; - for (i = 0; i < loopCount; i++) - { - if (bufLen > 0) - { - // Combining bytes from buffer and preBuffer - - memcpy(seq, buf, bufLen); - memcpy(seq + bufLen, pre, preLen); - - if (memcmp(seq, termBuf, termLength) == 0) - { - result = preLen; - found = YES; - break; - } - - buf++; - bufLen--; - preLen++; - } - else - { - // Comparing directly from preBuffer - - if (memcmp(pre, termBuf, termLength) == 0) - { - NSUInteger preOffset = pre - [preBuffer readBuffer]; // pointer arithmetic - - result = preOffset + termLength; - found = YES; - break; - } - - pre++; - } - } - - // There is no need to avoid resizing the buffer in this particular situation. - - if (foundPtr) *foundPtr = found; - return result; -} - -/** - * For read packets with a set terminator, scans the packet buffer for the term. - * It is assumed the terminator had not been fully read prior to the new bytes. - * - * If the term is found, the number of excess bytes after the term are returned. - * If the term is not found, this method will return -1. - * - * Note: A return value of zero means the term was found at the very end. - * - * Prerequisites: - * The given number of bytes have been added to the end of our buffer. - * Our bytesDone variable has NOT been changed due to the prebuffered bytes. -**/ -- (NSInteger)searchForTermAfterPreBuffering:(ssize_t)numBytes -{ - NSAssert(term != nil, @"This method does not apply to non-term reads"); - - // The implementation of this method is very similar to the above method. - // See the above method for a discussion of the algorithm used here. - - uint8_t *buff = [buffer mutableBytes]; - NSUInteger buffLength = bytesDone + numBytes; - - const void *termBuff = [term bytes]; - NSUInteger termLength = [term length]; - - // Note: We are dealing with unsigned integers, - // so make sure the math doesn't go below zero. - - NSUInteger i = ((buffLength - numBytes) >= termLength) ? (buffLength - numBytes - termLength + 1) : 0; - - while (i + termLength <= buffLength) - { - uint8_t *subBuffer = buff + startOffset + i; - - if (memcmp(subBuffer, termBuff, termLength) == 0) - { - return buffLength - (i + termLength); - } - - i++; - } - - return -1; -} - - -@end - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * The GCDAsyncWritePacket encompasses the instructions for any given write. -**/ -@interface GCDAsyncWritePacket : NSObject -{ - @public - NSData *buffer; - NSUInteger bytesDone; - long tag; - NSTimeInterval timeout; -} -- (instancetype)initWithData:(NSData *)d timeout:(NSTimeInterval)t tag:(long)i NS_DESIGNATED_INITIALIZER; -@end - -@implementation GCDAsyncWritePacket - -// Cover the superclass' designated initializer -- (instancetype)init NS_UNAVAILABLE -{ - NSAssert(0, @"Use the designated initializer"); - return nil; -} - -- (instancetype)initWithData:(NSData *)d timeout:(NSTimeInterval)t tag:(long)i -{ - if((self = [super init])) - { - buffer = d; // Retain not copy. For performance as documented in header file. - bytesDone = 0; - timeout = t; - tag = i; - } - return self; -} - - -@end - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * The GCDAsyncSpecialPacket encompasses special instructions for interruptions in the read/write queues. - * This class my be altered to support more than just TLS in the future. -**/ -@interface GCDAsyncSpecialPacket : NSObject -{ - @public - NSDictionary *tlsSettings; -} -- (instancetype)initWithTLSSettings:(NSDictionary *)settings NS_DESIGNATED_INITIALIZER; -@end - -@implementation GCDAsyncSpecialPacket - -// Cover the superclass' designated initializer -- (instancetype)init NS_UNAVAILABLE -{ - NSAssert(0, @"Use the designated initializer"); - return nil; -} - -- (instancetype)initWithTLSSettings:(NSDictionary *)settings -{ - if((self = [super init])) - { - tlsSettings = [settings copy]; - } - return self; -} - - -@end - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -@implementation GCDAsyncSocket -{ - uint32_t flags; - uint16_t config; - - __weak id delegate; - dispatch_queue_t delegateQueue; - - int socket4FD; - int socket6FD; - int socketUN; - NSURL *socketUrl; - int stateIndex; - NSData * connectInterface4; - NSData * connectInterface6; - NSData * connectInterfaceUN; - - dispatch_queue_t socketQueue; - - dispatch_source_t accept4Source; - dispatch_source_t accept6Source; - dispatch_source_t acceptUNSource; - dispatch_source_t connectTimer; - dispatch_source_t readSource; - dispatch_source_t writeSource; - dispatch_source_t readTimer; - dispatch_source_t writeTimer; - - NSMutableArray *readQueue; - NSMutableArray *writeQueue; - - GCDAsyncReadPacket *currentRead; - GCDAsyncWritePacket *currentWrite; - - unsigned long socketFDBytesAvailable; - - GCDAsyncSocketPreBuffer *preBuffer; - -#if TARGET_OS_IPHONE - CFStreamClientContext streamContext; - CFReadStreamRef readStream; - CFWriteStreamRef writeStream; -#endif - SSLContextRef sslContext; - GCDAsyncSocketPreBuffer *sslPreBuffer; - size_t sslWriteCachedLength; - OSStatus sslErrCode; - OSStatus lastSSLHandshakeError; - - void *IsOnSocketQueueOrTargetQueueKey; - - id userData; - NSTimeInterval alternateAddressDelay; -} - -- (instancetype)init -{ - return [self initWithDelegate:nil delegateQueue:NULL socketQueue:NULL]; -} - -- (instancetype)initWithSocketQueue:(dispatch_queue_t)sq -{ - return [self initWithDelegate:nil delegateQueue:NULL socketQueue:sq]; -} - -- (instancetype)initWithDelegate:(id)aDelegate delegateQueue:(dispatch_queue_t)dq -{ - return [self initWithDelegate:aDelegate delegateQueue:dq socketQueue:NULL]; -} - -- (instancetype)initWithDelegate:(id)aDelegate delegateQueue:(dispatch_queue_t)dq socketQueue:(dispatch_queue_t)sq -{ - if((self = [super init])) - { - delegate = aDelegate; - delegateQueue = dq; - - #if !OS_OBJECT_USE_OBJC - if (dq) dispatch_retain(dq); - #endif - - socket4FD = SOCKET_NULL; - socket6FD = SOCKET_NULL; - socketUN = SOCKET_NULL; - socketUrl = nil; - stateIndex = 0; - - if (sq) - { - NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), - @"The given socketQueue parameter must not be a concurrent queue."); - NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), - @"The given socketQueue parameter must not be a concurrent queue."); - NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), - @"The given socketQueue parameter must not be a concurrent queue."); - - socketQueue = sq; - #if !OS_OBJECT_USE_OBJC - dispatch_retain(sq); - #endif - } - else - { - socketQueue = dispatch_queue_create([GCDAsyncSocketQueueName UTF8String], NULL); - } - - // The dispatch_queue_set_specific() and dispatch_get_specific() functions take a "void *key" parameter. - // From the documentation: - // - // > Keys are only compared as pointers and are never dereferenced. - // > Thus, you can use a pointer to a static variable for a specific subsystem or - // > any other value that allows you to identify the value uniquely. - // - // We're just going to use the memory address of an ivar. - // Specifically an ivar that is explicitly named for our purpose to make the code more readable. - // - // However, it feels tedious (and less readable) to include the "&" all the time: - // dispatch_get_specific(&IsOnSocketQueueOrTargetQueueKey) - // - // So we're going to make it so it doesn't matter if we use the '&' or not, - // by assigning the value of the ivar to the address of the ivar. - // Thus: IsOnSocketQueueOrTargetQueueKey == &IsOnSocketQueueOrTargetQueueKey; - - IsOnSocketQueueOrTargetQueueKey = &IsOnSocketQueueOrTargetQueueKey; - - void *nonNullUnusedPointer = (__bridge void *)self; - dispatch_queue_set_specific(socketQueue, IsOnSocketQueueOrTargetQueueKey, nonNullUnusedPointer, NULL); - - readQueue = [[NSMutableArray alloc] initWithCapacity:5]; - currentRead = nil; - - writeQueue = [[NSMutableArray alloc] initWithCapacity:5]; - currentWrite = nil; - - preBuffer = [[GCDAsyncSocketPreBuffer alloc] initWithCapacity:(1024 * 4)]; - alternateAddressDelay = 0.3; - } - return self; -} - -- (void)dealloc -{ - LogInfo(@"%@ - %@ (start)", THIS_METHOD, self); - - // Set dealloc flag. - // This is used by closeWithError to ensure we don't accidentally retain ourself. - flags |= kDealloc; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - [self closeWithError:nil]; - } - else - { - dispatch_sync(socketQueue, ^{ - [self closeWithError:nil]; - }); - } - - delegate = nil; - - #if !OS_OBJECT_USE_OBJC - if (delegateQueue) dispatch_release(delegateQueue); - #endif - delegateQueue = NULL; - - #if !OS_OBJECT_USE_OBJC - if (socketQueue) dispatch_release(socketQueue); - #endif - socketQueue = NULL; - - LogInfo(@"%@ - %@ (finish)", THIS_METHOD, self); -} - -#pragma mark - - -+ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD socketQueue:(nullable dispatch_queue_t)sq error:(NSError**)error { - return [self socketFromConnectedSocketFD:socketFD delegate:nil delegateQueue:NULL socketQueue:sq error:error]; -} - -+ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD delegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq error:(NSError**)error { - return [self socketFromConnectedSocketFD:socketFD delegate:aDelegate delegateQueue:dq socketQueue:NULL error:error]; -} - -+ (nullable instancetype)socketFromConnectedSocketFD:(int)socketFD delegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq socketQueue:(nullable dispatch_queue_t)sq error:(NSError* __autoreleasing *)error -{ - __block BOOL errorOccured = NO; - - GCDAsyncSocket *socket = [[[self class] alloc] initWithDelegate:aDelegate delegateQueue:dq socketQueue:sq]; - - dispatch_sync(socket->socketQueue, ^{ @autoreleasepool { - struct sockaddr addr; - socklen_t addr_size = sizeof(struct sockaddr); - int retVal = getpeername(socketFD, (struct sockaddr *)&addr, &addr_size); - if (retVal) - { - NSString *errMsg = NSLocalizedStringWithDefaultValue(@"GCDAsyncSocketOtherError", - @"GCDAsyncSocket", [NSBundle mainBundle], - @"Attempt to create socket from socket FD failed. getpeername() failed", nil); - - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - errorOccured = YES; - if (error) - *error = [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketOtherError userInfo:userInfo]; - return; - } - - if (addr.sa_family == AF_INET) - { - socket->socket4FD = socketFD; - } - else if (addr.sa_family == AF_INET6) - { - socket->socket6FD = socketFD; - } - else - { - NSString *errMsg = NSLocalizedStringWithDefaultValue(@"GCDAsyncSocketOtherError", - @"GCDAsyncSocket", [NSBundle mainBundle], - @"Attempt to create socket from socket FD failed. socket FD is neither IPv4 nor IPv6", nil); - - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - errorOccured = YES; - if (error) - *error = [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketOtherError userInfo:userInfo]; - return; - } - - socket->flags = kSocketStarted; - [socket didConnect:socket->stateIndex]; - }}); - - return errorOccured? nil: socket; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Configuration -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (id)delegate -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return delegate; - } - else - { - __block id result; - - dispatch_sync(socketQueue, ^{ - result = self->delegate; - }); - - return result; - } -} - -- (void)setDelegate:(id)newDelegate synchronously:(BOOL)synchronously -{ - dispatch_block_t block = ^{ - self->delegate = newDelegate; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { - block(); - } - else { - if (synchronously) - dispatch_sync(socketQueue, block); - else - dispatch_async(socketQueue, block); - } -} - -- (void)setDelegate:(id)newDelegate -{ - [self setDelegate:newDelegate synchronously:NO]; -} - -- (void)synchronouslySetDelegate:(id)newDelegate -{ - [self setDelegate:newDelegate synchronously:YES]; -} - -- (dispatch_queue_t)delegateQueue -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return delegateQueue; - } - else - { - __block dispatch_queue_t result; - - dispatch_sync(socketQueue, ^{ - result = self->delegateQueue; - }); - - return result; - } -} - -- (void)setDelegateQueue:(dispatch_queue_t)newDelegateQueue synchronously:(BOOL)synchronously -{ - dispatch_block_t block = ^{ - - #if !OS_OBJECT_USE_OBJC - if (self->delegateQueue) dispatch_release(self->delegateQueue); - if (newDelegateQueue) dispatch_retain(newDelegateQueue); - #endif - - self->delegateQueue = newDelegateQueue; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { - block(); - } - else { - if (synchronously) - dispatch_sync(socketQueue, block); - else - dispatch_async(socketQueue, block); - } -} - -- (void)setDelegateQueue:(dispatch_queue_t)newDelegateQueue -{ - [self setDelegateQueue:newDelegateQueue synchronously:NO]; -} - -- (void)synchronouslySetDelegateQueue:(dispatch_queue_t)newDelegateQueue -{ - [self setDelegateQueue:newDelegateQueue synchronously:YES]; -} - -- (void)getDelegate:(id *)delegatePtr delegateQueue:(dispatch_queue_t *)delegateQueuePtr -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - if (delegatePtr) *delegatePtr = delegate; - if (delegateQueuePtr) *delegateQueuePtr = delegateQueue; - } - else - { - __block id dPtr = NULL; - __block dispatch_queue_t dqPtr = NULL; - - dispatch_sync(socketQueue, ^{ - dPtr = self->delegate; - dqPtr = self->delegateQueue; - }); - - if (delegatePtr) *delegatePtr = dPtr; - if (delegateQueuePtr) *delegateQueuePtr = dqPtr; - } -} - -- (void)setDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue synchronously:(BOOL)synchronously -{ - dispatch_block_t block = ^{ - - self->delegate = newDelegate; - - #if !OS_OBJECT_USE_OBJC - if (self->delegateQueue) dispatch_release(self->delegateQueue); - if (newDelegateQueue) dispatch_retain(newDelegateQueue); - #endif - - self->delegateQueue = newDelegateQueue; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { - block(); - } - else { - if (synchronously) - dispatch_sync(socketQueue, block); - else - dispatch_async(socketQueue, block); - } -} - -- (void)setDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue -{ - [self setDelegate:newDelegate delegateQueue:newDelegateQueue synchronously:NO]; -} - -- (void)synchronouslySetDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue -{ - [self setDelegate:newDelegate delegateQueue:newDelegateQueue synchronously:YES]; -} - -- (BOOL)isIPv4Enabled -{ - // Note: YES means kIPv4Disabled is OFF - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return ((config & kIPv4Disabled) == 0); - } - else - { - __block BOOL result; - - dispatch_sync(socketQueue, ^{ - result = ((self->config & kIPv4Disabled) == 0); - }); - - return result; - } -} - -- (void)setIPv4Enabled:(BOOL)flag -{ - // Note: YES means kIPv4Disabled is OFF - - dispatch_block_t block = ^{ - - if (flag) - self->config &= ~kIPv4Disabled; - else - self->config |= kIPv4Disabled; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (BOOL)isIPv6Enabled -{ - // Note: YES means kIPv6Disabled is OFF - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return ((config & kIPv6Disabled) == 0); - } - else - { - __block BOOL result; - - dispatch_sync(socketQueue, ^{ - result = ((self->config & kIPv6Disabled) == 0); - }); - - return result; - } -} - -- (void)setIPv6Enabled:(BOOL)flag -{ - // Note: YES means kIPv6Disabled is OFF - - dispatch_block_t block = ^{ - - if (flag) - self->config &= ~kIPv6Disabled; - else - self->config |= kIPv6Disabled; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (BOOL)isIPv4PreferredOverIPv6 -{ - // Note: YES means kPreferIPv6 is OFF - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return ((config & kPreferIPv6) == 0); - } - else - { - __block BOOL result; - - dispatch_sync(socketQueue, ^{ - result = ((self->config & kPreferIPv6) == 0); - }); - - return result; - } -} - -- (void)setIPv4PreferredOverIPv6:(BOOL)flag -{ - // Note: YES means kPreferIPv6 is OFF - - dispatch_block_t block = ^{ - - if (flag) - self->config &= ~kPreferIPv6; - else - self->config |= kPreferIPv6; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (NSTimeInterval) alternateAddressDelay { - __block NSTimeInterval delay; - dispatch_block_t block = ^{ - delay = self->alternateAddressDelay; - }; - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - return delay; -} - -- (void) setAlternateAddressDelay:(NSTimeInterval)delay { - dispatch_block_t block = ^{ - self->alternateAddressDelay = delay; - }; - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (id)userData -{ - __block id result = nil; - - dispatch_block_t block = ^{ - - result = self->userData; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (void)setUserData:(id)arbitraryUserData -{ - dispatch_block_t block = ^{ - - if (self->userData != arbitraryUserData) - { - self->userData = arbitraryUserData; - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Accepting -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (BOOL)acceptOnPort:(uint16_t)port error:(NSError **)errPtr -{ - return [self acceptOnInterface:nil port:port error:errPtr]; -} - -- (BOOL)acceptOnInterface:(NSString *)inInterface port:(uint16_t)port error:(NSError **)errPtr -{ - LogTrace(); - - // Just in-case interface parameter is immutable. - NSString *interface = [inInterface copy]; - - __block BOOL result = NO; - __block NSError *err = nil; - - // CreateSocket Block - // This block will be invoked within the dispatch block below. - - int(^createSocket)(int, NSData*) = ^int (int domain, NSData *interfaceAddr) { - - int socketFD = socket(domain, SOCK_STREAM, 0); - - if (socketFD == SOCKET_NULL) - { - NSString *reason = @"Error in socket() function"; - err = [self errorWithErrno:errno reason:reason]; - - return SOCKET_NULL; - } - - int status; - - // Set socket options - - status = fcntl(socketFD, F_SETFL, O_NONBLOCK); - if (status == -1) - { - NSString *reason = @"Error enabling non-blocking IO on socket (fcntl)"; - err = [self errorWithErrno:errno reason:reason]; - - LogVerbose(@"close(socketFD)"); - close(socketFD); - return SOCKET_NULL; - } - - int reuseOn = 1; - status = setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseOn, sizeof(reuseOn)); - if (status == -1) - { - NSString *reason = @"Error enabling address reuse (setsockopt)"; - err = [self errorWithErrno:errno reason:reason]; - - LogVerbose(@"close(socketFD)"); - close(socketFD); - return SOCKET_NULL; - } - - // Bind socket - - status = bind(socketFD, (const struct sockaddr *)[interfaceAddr bytes], (socklen_t)[interfaceAddr length]); - if (status == -1) - { - NSString *reason = @"Error in bind() function"; - err = [self errorWithErrno:errno reason:reason]; - - LogVerbose(@"close(socketFD)"); - close(socketFD); - return SOCKET_NULL; - } - - // Listen - - status = listen(socketFD, 1024); - if (status == -1) - { - NSString *reason = @"Error in listen() function"; - err = [self errorWithErrno:errno reason:reason]; - - LogVerbose(@"close(socketFD)"); - close(socketFD); - return SOCKET_NULL; - } - - return socketFD; - }; - - // Create dispatch block and run on socketQueue - - dispatch_block_t block = ^{ @autoreleasepool { - - if (self->delegate == nil) // Must have delegate set - { - NSString *msg = @"Attempting to accept without a delegate. Set a delegate first."; - err = [self badConfigError:msg]; - - return_from_block; - } - - if (self->delegateQueue == NULL) // Must have delegate queue set - { - NSString *msg = @"Attempting to accept without a delegate queue. Set a delegate queue first."; - err = [self badConfigError:msg]; - - return_from_block; - } - - BOOL isIPv4Disabled = (self->config & kIPv4Disabled) ? YES : NO; - BOOL isIPv6Disabled = (self->config & kIPv6Disabled) ? YES : NO; - - if (isIPv4Disabled && isIPv6Disabled) // Must have IPv4 or IPv6 enabled - { - NSString *msg = @"Both IPv4 and IPv6 have been disabled. Must enable at least one protocol first."; - err = [self badConfigError:msg]; - - return_from_block; - } - - if (![self isDisconnected]) // Must be disconnected - { - NSString *msg = @"Attempting to accept while connected or accepting connections. Disconnect first."; - err = [self badConfigError:msg]; - - return_from_block; - } - - // Clear queues (spurious read/write requests post disconnect) - [self->readQueue removeAllObjects]; - [self->writeQueue removeAllObjects]; - - // Resolve interface from description - - NSMutableData *interface4 = nil; - NSMutableData *interface6 = nil; - - [self getInterfaceAddress4:&interface4 address6:&interface6 fromDescription:interface port:port]; - - if ((interface4 == nil) && (interface6 == nil)) - { - NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; - err = [self badParamError:msg]; - - return_from_block; - } - - if (isIPv4Disabled && (interface6 == nil)) - { - NSString *msg = @"IPv4 has been disabled and specified interface doesn't support IPv6."; - err = [self badParamError:msg]; - - return_from_block; - } - - if (isIPv6Disabled && (interface4 == nil)) - { - NSString *msg = @"IPv6 has been disabled and specified interface doesn't support IPv4."; - err = [self badParamError:msg]; - - return_from_block; - } - - BOOL enableIPv4 = !isIPv4Disabled && (interface4 != nil); - BOOL enableIPv6 = !isIPv6Disabled && (interface6 != nil); - - // Create sockets, configure, bind, and listen - - if (enableIPv4) - { - LogVerbose(@"Creating IPv4 socket"); - self->socket4FD = createSocket(AF_INET, interface4); - - if (self->socket4FD == SOCKET_NULL) - { - return_from_block; - } - } - - if (enableIPv6) - { - LogVerbose(@"Creating IPv6 socket"); - - if (enableIPv4 && (port == 0)) - { - // No specific port was specified, so we allowed the OS to pick an available port for us. - // Now we need to make sure the IPv6 socket listens on the same port as the IPv4 socket. - - struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)[interface6 mutableBytes]; - addr6->sin6_port = htons([self localPort4]); - } - - self->socket6FD = createSocket(AF_INET6, interface6); - - if (self->socket6FD == SOCKET_NULL) - { - if (self->socket4FD != SOCKET_NULL) - { - LogVerbose(@"close(socket4FD)"); - close(self->socket4FD); - self->socket4FD = SOCKET_NULL; - } - - return_from_block; - } - } - - // Create accept sources - - if (enableIPv4) - { - self->accept4Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, self->socket4FD, 0, self->socketQueue); - - int socketFD = self->socket4FD; - dispatch_source_t acceptSource = self->accept4Source; - - __weak GCDAsyncSocket *weakSelf = self; - - dispatch_source_set_event_handler(self->accept4Source, ^{ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf == nil) return_from_block; - - LogVerbose(@"event4Block"); - - unsigned long i = 0; - unsigned long numPendingConnections = dispatch_source_get_data(acceptSource); - - LogVerbose(@"numPendingConnections: %lu", numPendingConnections); - - while ([strongSelf doAccept:socketFD] && (++i < numPendingConnections)); - - #pragma clang diagnostic pop - }}); - - - dispatch_source_set_cancel_handler(self->accept4Source, ^{ - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - #if !OS_OBJECT_USE_OBJC - LogVerbose(@"dispatch_release(accept4Source)"); - dispatch_release(acceptSource); - #endif - - LogVerbose(@"close(socket4FD)"); - close(socketFD); - - #pragma clang diagnostic pop - }); - - LogVerbose(@"dispatch_resume(accept4Source)"); - dispatch_resume(self->accept4Source); - } - - if (enableIPv6) - { - self->accept6Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, self->socket6FD, 0, self->socketQueue); - - int socketFD = self->socket6FD; - dispatch_source_t acceptSource = self->accept6Source; - - __weak GCDAsyncSocket *weakSelf = self; - - dispatch_source_set_event_handler(self->accept6Source, ^{ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf == nil) return_from_block; - - LogVerbose(@"event6Block"); - - unsigned long i = 0; - unsigned long numPendingConnections = dispatch_source_get_data(acceptSource); - - LogVerbose(@"numPendingConnections: %lu", numPendingConnections); - - while ([strongSelf doAccept:socketFD] && (++i < numPendingConnections)); - - #pragma clang diagnostic pop - }}); - - dispatch_source_set_cancel_handler(self->accept6Source, ^{ - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - #if !OS_OBJECT_USE_OBJC - LogVerbose(@"dispatch_release(accept6Source)"); - dispatch_release(acceptSource); - #endif - - LogVerbose(@"close(socket6FD)"); - close(socketFD); - - #pragma clang diagnostic pop - }); - - LogVerbose(@"dispatch_resume(accept6Source)"); - dispatch_resume(self->accept6Source); - } - - self->flags |= kSocketStarted; - - result = YES; - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (result == NO) - { - LogInfo(@"Error in accept: %@", err); - - if (errPtr) - *errPtr = err; - } - - return result; -} - -- (BOOL)acceptOnUrl:(NSURL *)url error:(NSError **)errPtr -{ - LogTrace(); - - __block BOOL result = NO; - __block NSError *err = nil; - - // CreateSocket Block - // This block will be invoked within the dispatch block below. - - int(^createSocket)(int, NSData*) = ^int (int domain, NSData *interfaceAddr) { - - int socketFD = socket(domain, SOCK_STREAM, 0); - - if (socketFD == SOCKET_NULL) - { - NSString *reason = @"Error in socket() function"; - err = [self errorWithErrno:errno reason:reason]; - - return SOCKET_NULL; - } - - int status; - - // Set socket options - - status = fcntl(socketFD, F_SETFL, O_NONBLOCK); - if (status == -1) - { - NSString *reason = @"Error enabling non-blocking IO on socket (fcntl)"; - err = [self errorWithErrno:errno reason:reason]; - - LogVerbose(@"close(socketFD)"); - close(socketFD); - return SOCKET_NULL; - } - - int reuseOn = 1; - status = setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseOn, sizeof(reuseOn)); - if (status == -1) - { - NSString *reason = @"Error enabling address reuse (setsockopt)"; - err = [self errorWithErrno:errno reason:reason]; - - LogVerbose(@"close(socketFD)"); - close(socketFD); - return SOCKET_NULL; - } - - // Bind socket - - status = bind(socketFD, (const struct sockaddr *)[interfaceAddr bytes], (socklen_t)[interfaceAddr length]); - if (status == -1) - { - NSString *reason = @"Error in bind() function"; - err = [self errorWithErrno:errno reason:reason]; - - LogVerbose(@"close(socketFD)"); - close(socketFD); - return SOCKET_NULL; - } - - // Listen - - status = listen(socketFD, 1024); - if (status == -1) - { - NSString *reason = @"Error in listen() function"; - err = [self errorWithErrno:errno reason:reason]; - - LogVerbose(@"close(socketFD)"); - close(socketFD); - return SOCKET_NULL; - } - - return socketFD; - }; - - // Create dispatch block and run on socketQueue - - dispatch_block_t block = ^{ @autoreleasepool { - - if (self->delegate == nil) // Must have delegate set - { - NSString *msg = @"Attempting to accept without a delegate. Set a delegate first."; - err = [self badConfigError:msg]; - - return_from_block; - } - - if (self->delegateQueue == NULL) // Must have delegate queue set - { - NSString *msg = @"Attempting to accept without a delegate queue. Set a delegate queue first."; - err = [self badConfigError:msg]; - - return_from_block; - } - - if (![self isDisconnected]) // Must be disconnected - { - NSString *msg = @"Attempting to accept while connected or accepting connections. Disconnect first."; - err = [self badConfigError:msg]; - - return_from_block; - } - - // Clear queues (spurious read/write requests post disconnect) - [self->readQueue removeAllObjects]; - [self->writeQueue removeAllObjects]; - - // Remove a previous socket - - NSError *error = nil; - NSFileManager *fileManager = [NSFileManager defaultManager]; - NSString *urlPath = url.path; - if (urlPath && [fileManager fileExistsAtPath:urlPath]) { - if (![fileManager removeItemAtURL:url error:&error]) { - NSString *msg = @"Could not remove previous unix domain socket at given url."; - err = [self otherError:msg]; - - return_from_block; - } - } - - // Resolve interface from description - - NSData *interface = [self getInterfaceAddressFromUrl:url]; - - if (interface == nil) - { - NSString *msg = @"Invalid unix domain url. Specify a valid file url that does not exist (e.g. \"file:///tmp/socket\")"; - err = [self badParamError:msg]; - - return_from_block; - } - - // Create sockets, configure, bind, and listen - - LogVerbose(@"Creating unix domain socket"); - self->socketUN = createSocket(AF_UNIX, interface); - - if (self->socketUN == SOCKET_NULL) - { - return_from_block; - } - - self->socketUrl = url; - - // Create accept sources - - self->acceptUNSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, self->socketUN, 0, self->socketQueue); - - int socketFD = self->socketUN; - dispatch_source_t acceptSource = self->acceptUNSource; - - __weak GCDAsyncSocket *weakSelf = self; - - dispatch_source_set_event_handler(self->acceptUNSource, ^{ @autoreleasepool { - - __strong GCDAsyncSocket *strongSelf = weakSelf; - - LogVerbose(@"eventUNBlock"); - - unsigned long i = 0; - unsigned long numPendingConnections = dispatch_source_get_data(acceptSource); - - LogVerbose(@"numPendingConnections: %lu", numPendingConnections); - - while ([strongSelf doAccept:socketFD] && (++i < numPendingConnections)); - }}); - - dispatch_source_set_cancel_handler(self->acceptUNSource, ^{ - -#if !OS_OBJECT_USE_OBJC - LogVerbose(@"dispatch_release(acceptUNSource)"); - dispatch_release(acceptSource); -#endif - - LogVerbose(@"close(socketUN)"); - close(socketFD); - }); - - LogVerbose(@"dispatch_resume(acceptUNSource)"); - dispatch_resume(self->acceptUNSource); - - self->flags |= kSocketStarted; - - result = YES; - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (result == NO) - { - LogInfo(@"Error in accept: %@", err); - - if (errPtr) - *errPtr = err; - } - - return result; -} - -- (BOOL)doAccept:(int)parentSocketFD -{ - LogTrace(); - - int socketType; - int childSocketFD; - NSData *childSocketAddress; - - if (parentSocketFD == socket4FD) - { - socketType = 0; - - struct sockaddr_in addr; - socklen_t addrLen = sizeof(addr); - - childSocketFD = accept(parentSocketFD, (struct sockaddr *)&addr, &addrLen); - - if (childSocketFD == -1) - { - LogWarn(@"Accept failed with error: %@", [self errnoError]); - return NO; - } - - childSocketAddress = [NSData dataWithBytes:&addr length:addrLen]; - } - else if (parentSocketFD == socket6FD) - { - socketType = 1; - - struct sockaddr_in6 addr; - socklen_t addrLen = sizeof(addr); - - childSocketFD = accept(parentSocketFD, (struct sockaddr *)&addr, &addrLen); - - if (childSocketFD == -1) - { - LogWarn(@"Accept failed with error: %@", [self errnoError]); - return NO; - } - - childSocketAddress = [NSData dataWithBytes:&addr length:addrLen]; - } - else // if (parentSocketFD == socketUN) - { - socketType = 2; - - struct sockaddr_un addr; - socklen_t addrLen = sizeof(addr); - - childSocketFD = accept(parentSocketFD, (struct sockaddr *)&addr, &addrLen); - - if (childSocketFD == -1) - { - LogWarn(@"Accept failed with error: %@", [self errnoError]); - return NO; - } - - childSocketAddress = [NSData dataWithBytes:&addr length:addrLen]; - } - - // Enable non-blocking IO on the socket - - int result = fcntl(childSocketFD, F_SETFL, O_NONBLOCK); - if (result == -1) - { - LogWarn(@"Error enabling non-blocking IO on accepted socket (fcntl)"); - LogVerbose(@"close(childSocketFD)"); - close(childSocketFD); - return NO; - } - - // Prevent SIGPIPE signals - - int nosigpipe = 1; - setsockopt(childSocketFD, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe)); - - // Notify delegate - - if (delegateQueue) - { - __strong id theDelegate = delegate; - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - // Query delegate for custom socket queue - - dispatch_queue_t childSocketQueue = NULL; - - if ([theDelegate respondsToSelector:@selector(newSocketQueueForConnectionFromAddress:onSocket:)]) - { - childSocketQueue = [theDelegate newSocketQueueForConnectionFromAddress:childSocketAddress - onSocket:self]; - } - - // Create GCDAsyncSocket instance for accepted socket - - GCDAsyncSocket *acceptedSocket = [[[self class] alloc] initWithDelegate:theDelegate - delegateQueue:self->delegateQueue - socketQueue:childSocketQueue]; - - if (socketType == 0) - acceptedSocket->socket4FD = childSocketFD; - else if (socketType == 1) - acceptedSocket->socket6FD = childSocketFD; - else - acceptedSocket->socketUN = childSocketFD; - - acceptedSocket->flags = (kSocketStarted | kConnected); - - // Setup read and write sources for accepted socket - - dispatch_async(acceptedSocket->socketQueue, ^{ @autoreleasepool { - - [acceptedSocket setupReadAndWriteSourcesForNewlyConnectedSocket:childSocketFD]; - }}); - - // Notify delegate - - if ([theDelegate respondsToSelector:@selector(socket:didAcceptNewSocket:)]) - { - [theDelegate socket:self didAcceptNewSocket:acceptedSocket]; - } - - // Release the socket queue returned from the delegate (it was retained by acceptedSocket) - #if !OS_OBJECT_USE_OBJC - if (childSocketQueue) dispatch_release(childSocketQueue); - #endif - - // The accepted socket should have been retained by the delegate. - // Otherwise it gets properly released when exiting the block. - }}); - } - - return YES; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Connecting -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * This method runs through the various checks required prior to a connection attempt. - * It is shared between the connectToHost and connectToAddress methods. - * -**/ -- (BOOL)preConnectWithInterface:(NSString *)interface error:(NSError **)errPtr -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - if (delegate == nil) // Must have delegate set - { - if (errPtr) - { - NSString *msg = @"Attempting to connect without a delegate. Set a delegate first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - if (delegateQueue == NULL) // Must have delegate queue set - { - if (errPtr) - { - NSString *msg = @"Attempting to connect without a delegate queue. Set a delegate queue first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - if (![self isDisconnected]) // Must be disconnected - { - if (errPtr) - { - NSString *msg = @"Attempting to connect while connected or accepting connections. Disconnect first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; - BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; - - if (isIPv4Disabled && isIPv6Disabled) // Must have IPv4 or IPv6 enabled - { - if (errPtr) - { - NSString *msg = @"Both IPv4 and IPv6 have been disabled. Must enable at least one protocol first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - if (interface) - { - NSMutableData *interface4 = nil; - NSMutableData *interface6 = nil; - - [self getInterfaceAddress4:&interface4 address6:&interface6 fromDescription:interface port:0]; - - if ((interface4 == nil) && (interface6 == nil)) - { - if (errPtr) - { - NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; - *errPtr = [self badParamError:msg]; - } - return NO; - } - - if (isIPv4Disabled && (interface6 == nil)) - { - if (errPtr) - { - NSString *msg = @"IPv4 has been disabled and specified interface doesn't support IPv6."; - *errPtr = [self badParamError:msg]; - } - return NO; - } - - if (isIPv6Disabled && (interface4 == nil)) - { - if (errPtr) - { - NSString *msg = @"IPv6 has been disabled and specified interface doesn't support IPv4."; - *errPtr = [self badParamError:msg]; - } - return NO; - } - - connectInterface4 = interface4; - connectInterface6 = interface6; - } - - // Clear queues (spurious read/write requests post disconnect) - [readQueue removeAllObjects]; - [writeQueue removeAllObjects]; - - return YES; -} - -- (BOOL)preConnectWithUrl:(NSURL *)url error:(NSError **)errPtr -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - if (delegate == nil) // Must have delegate set - { - if (errPtr) - { - NSString *msg = @"Attempting to connect without a delegate. Set a delegate first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - if (delegateQueue == NULL) // Must have delegate queue set - { - if (errPtr) - { - NSString *msg = @"Attempting to connect without a delegate queue. Set a delegate queue first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - if (![self isDisconnected]) // Must be disconnected - { - if (errPtr) - { - NSString *msg = @"Attempting to connect while connected or accepting connections. Disconnect first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - NSData *interface = [self getInterfaceAddressFromUrl:url]; - - if (interface == nil) - { - if (errPtr) - { - NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; - *errPtr = [self badParamError:msg]; - } - return NO; - } - - connectInterfaceUN = interface; - - // Clear queues (spurious read/write requests post disconnect) - [readQueue removeAllObjects]; - [writeQueue removeAllObjects]; - - return YES; -} - -- (BOOL)connectToHost:(NSString*)host onPort:(uint16_t)port error:(NSError **)errPtr -{ - return [self connectToHost:host onPort:port withTimeout:-1 error:errPtr]; -} - -- (BOOL)connectToHost:(NSString *)host - onPort:(uint16_t)port - withTimeout:(NSTimeInterval)timeout - error:(NSError **)errPtr -{ - return [self connectToHost:host onPort:port viaInterface:nil withTimeout:timeout error:errPtr]; -} - -- (BOOL)connectToHost:(NSString *)inHost - onPort:(uint16_t)port - viaInterface:(NSString *)inInterface - withTimeout:(NSTimeInterval)timeout - error:(NSError **)errPtr -{ - LogTrace(); - - // Just in case immutable objects were passed - NSString *host = [inHost copy]; - NSString *interface = [inInterface copy]; - - __block BOOL result = NO; - __block NSError *preConnectErr = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - // Check for problems with host parameter - - if ([host length] == 0) - { - NSString *msg = @"Invalid host parameter (nil or \"\"). Should be a domain name or IP address string."; - preConnectErr = [self badParamError:msg]; - - return_from_block; - } - - // Run through standard pre-connect checks - - if (![self preConnectWithInterface:interface error:&preConnectErr]) - { - return_from_block; - } - - // We've made it past all the checks. - // It's time to start the connection process. - - self->flags |= kSocketStarted; - - LogVerbose(@"Dispatching DNS lookup..."); - - // It's possible that the given host parameter is actually a NSMutableString. - // So we want to copy it now, within this block that will be executed synchronously. - // This way the asynchronous lookup block below doesn't have to worry about it changing. - - NSString *hostCpy = [host copy]; - - int aStateIndex = self->stateIndex; - __weak GCDAsyncSocket *weakSelf = self; - - dispatch_queue_t globalConcurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); - dispatch_async(globalConcurrentQueue, ^{ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - NSError *lookupErr = nil; - NSMutableArray *addresses = [[self class] lookupHost:hostCpy port:port error:&lookupErr]; - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf == nil) return_from_block; - - if (lookupErr) - { - dispatch_async(strongSelf->socketQueue, ^{ @autoreleasepool { - - [strongSelf lookup:aStateIndex didFail:lookupErr]; - }}); - } - else - { - NSData *address4 = nil; - NSData *address6 = nil; - - for (NSData *address in addresses) - { - if (!address4 && [[self class] isIPv4Address:address]) - { - address4 = address; - } - else if (!address6 && [[self class] isIPv6Address:address]) - { - address6 = address; - } - } - - dispatch_async(strongSelf->socketQueue, ^{ @autoreleasepool { - - [strongSelf lookup:aStateIndex didSucceedWithAddress4:address4 address6:address6]; - }}); - } - - #pragma clang diagnostic pop - }}); - - [self startConnectTimeout:timeout]; - - result = YES; - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - - if (errPtr) *errPtr = preConnectErr; - return result; -} - -- (BOOL)connectToAddress:(NSData *)remoteAddr error:(NSError **)errPtr -{ - return [self connectToAddress:remoteAddr viaInterface:nil withTimeout:-1 error:errPtr]; -} - -- (BOOL)connectToAddress:(NSData *)remoteAddr withTimeout:(NSTimeInterval)timeout error:(NSError **)errPtr -{ - return [self connectToAddress:remoteAddr viaInterface:nil withTimeout:timeout error:errPtr]; -} - -- (BOOL)connectToAddress:(NSData *)inRemoteAddr - viaInterface:(NSString *)inInterface - withTimeout:(NSTimeInterval)timeout - error:(NSError **)errPtr -{ - LogTrace(); - - // Just in case immutable objects were passed - NSData *remoteAddr = [inRemoteAddr copy]; - NSString *interface = [inInterface copy]; - - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - // Check for problems with remoteAddr parameter - - NSData *address4 = nil; - NSData *address6 = nil; - - if ([remoteAddr length] >= sizeof(struct sockaddr)) - { - const struct sockaddr *sockaddr = (const struct sockaddr *)[remoteAddr bytes]; - - if (sockaddr->sa_family == AF_INET) - { - if ([remoteAddr length] == sizeof(struct sockaddr_in)) - { - address4 = remoteAddr; - } - } - else if (sockaddr->sa_family == AF_INET6) - { - if ([remoteAddr length] == sizeof(struct sockaddr_in6)) - { - address6 = remoteAddr; - } - } - } - - if ((address4 == nil) && (address6 == nil)) - { - NSString *msg = @"A valid IPv4 or IPv6 address was not given"; - err = [self badParamError:msg]; - - return_from_block; - } - - BOOL isIPv4Disabled = (self->config & kIPv4Disabled) ? YES : NO; - BOOL isIPv6Disabled = (self->config & kIPv6Disabled) ? YES : NO; - - if (isIPv4Disabled && (address4 != nil)) - { - NSString *msg = @"IPv4 has been disabled and an IPv4 address was passed."; - err = [self badParamError:msg]; - - return_from_block; - } - - if (isIPv6Disabled && (address6 != nil)) - { - NSString *msg = @"IPv6 has been disabled and an IPv6 address was passed."; - err = [self badParamError:msg]; - - return_from_block; - } - - // Run through standard pre-connect checks - - if (![self preConnectWithInterface:interface error:&err]) - { - return_from_block; - } - - // We've made it past all the checks. - // It's time to start the connection process. - - if (![self connectWithAddress4:address4 address6:address6 error:&err]) - { - return_from_block; - } - - self->flags |= kSocketStarted; - - [self startConnectTimeout:timeout]; - - result = YES; - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (result == NO) - { - if (errPtr) - *errPtr = err; - } - - return result; -} - -- (BOOL)connectToUrl:(NSURL *)url withTimeout:(NSTimeInterval)timeout error:(NSError **)errPtr -{ - LogTrace(); - - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - // Check for problems with host parameter - - if ([url.path length] == 0) - { - NSString *msg = @"Invalid unix domain socket url."; - err = [self badParamError:msg]; - - return_from_block; - } - - // Run through standard pre-connect checks - - if (![self preConnectWithUrl:url error:&err]) - { - return_from_block; - } - - // We've made it past all the checks. - // It's time to start the connection process. - - self->flags |= kSocketStarted; - - // Start the normal connection process - - NSError *connectError = nil; - if (![self connectWithAddressUN:self->connectInterfaceUN error:&connectError]) - { - [self closeWithError:connectError]; - - return_from_block; - } - - [self startConnectTimeout:timeout]; - - result = YES; - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (result == NO) - { - if (errPtr) - *errPtr = err; - } - - return result; -} - -- (BOOL)connectToNetService:(NSNetService *)netService error:(NSError **)errPtr -{ - NSArray* addresses = [netService addresses]; - for (NSData* address in addresses) - { - BOOL result = [self connectToAddress:address error:errPtr]; - if (result) - { - return YES; - } - } - - return NO; -} - -- (void)lookup:(int)aStateIndex didSucceedWithAddress4:(NSData *)address4 address6:(NSData *)address6 -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert(address4 || address6, @"Expected at least one valid address"); - - if (aStateIndex != stateIndex) - { - LogInfo(@"Ignoring lookupDidSucceed, already disconnected"); - - // The connect operation has been cancelled. - // That is, socket was disconnected, or connection has already timed out. - return; - } - - // Check for problems - - BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; - BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; - - if (isIPv4Disabled && (address6 == nil)) - { - NSString *msg = @"IPv4 has been disabled and DNS lookup found no IPv6 address."; - - [self closeWithError:[self otherError:msg]]; - return; - } - - if (isIPv6Disabled && (address4 == nil)) - { - NSString *msg = @"IPv6 has been disabled and DNS lookup found no IPv4 address."; - - [self closeWithError:[self otherError:msg]]; - return; - } - - // Start the normal connection process - - NSError *err = nil; - if (![self connectWithAddress4:address4 address6:address6 error:&err]) - { - [self closeWithError:err]; - } -} - -/** - * This method is called if the DNS lookup fails. - * This method is executed on the socketQueue. - * - * Since the DNS lookup executed synchronously on a global concurrent queue, - * the original connection request may have already been cancelled or timed-out by the time this method is invoked. - * The lookupIndex tells us whether the lookup is still valid or not. -**/ -- (void)lookup:(int)aStateIndex didFail:(NSError *)error -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - - if (aStateIndex != stateIndex) - { - LogInfo(@"Ignoring lookup:didFail: - already disconnected"); - - // The connect operation has been cancelled. - // That is, socket was disconnected, or connection has already timed out. - return; - } - - [self endConnectTimeout]; - [self closeWithError:error]; -} - -- (BOOL)bindSocket:(int)socketFD toInterface:(NSData *)connectInterface error:(NSError **)errPtr -{ - // Bind the socket to the desired interface (if needed) - - if (connectInterface) - { - LogVerbose(@"Binding socket..."); - - if ([[self class] portFromAddress:connectInterface] > 0) - { - // Since we're going to be binding to a specific port, - // we should turn on reuseaddr to allow us to override sockets in time_wait. - - int reuseOn = 1; - setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseOn, sizeof(reuseOn)); - } - - const struct sockaddr *interfaceAddr = (const struct sockaddr *)[connectInterface bytes]; - - int result = bind(socketFD, interfaceAddr, (socklen_t)[connectInterface length]); - if (result != 0) - { - if (errPtr) - *errPtr = [self errorWithErrno:errno reason:@"Error in bind() function"]; - - return NO; - } - } - - return YES; -} - -- (int)createSocket:(int)family connectInterface:(NSData *)connectInterface errPtr:(NSError **)errPtr -{ - int socketFD = socket(family, SOCK_STREAM, 0); - - if (socketFD == SOCKET_NULL) - { - if (errPtr) - *errPtr = [self errorWithErrno:errno reason:@"Error in socket() function"]; - - return socketFD; - } - - if (![self bindSocket:socketFD toInterface:connectInterface error:errPtr]) - { - [self closeSocket:socketFD]; - - return SOCKET_NULL; - } - - // Prevent SIGPIPE signals - - int nosigpipe = 1; - setsockopt(socketFD, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe)); - - return socketFD; -} - -- (void)connectSocket:(int)socketFD address:(NSData *)address stateIndex:(int)aStateIndex -{ - // If there already is a socket connected, we close socketFD and return - if (self.isConnected) - { - [self closeSocket:socketFD]; - return; - } - - // Start the connection process in a background queue - - __weak GCDAsyncSocket *weakSelf = self; - - dispatch_queue_t globalConcurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); - dispatch_async(globalConcurrentQueue, ^{ -#pragma clang diagnostic push -#pragma clang diagnostic warning "-Wimplicit-retain-self" - - int result = connect(socketFD, (const struct sockaddr *)[address bytes], (socklen_t)[address length]); - int err = errno; - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf == nil) return_from_block; - - dispatch_async(strongSelf->socketQueue, ^{ @autoreleasepool { - - if (strongSelf.isConnected) - { - [strongSelf closeSocket:socketFD]; - return_from_block; - } - - if (result == 0) - { - [self closeUnusedSocket:socketFD]; - - [strongSelf didConnect:aStateIndex]; - } - else - { - [strongSelf closeSocket:socketFD]; - - // If there are no more sockets trying to connect, we inform the error to the delegate - if (strongSelf.socket4FD == SOCKET_NULL && strongSelf.socket6FD == SOCKET_NULL) - { - NSError *error = [strongSelf errorWithErrno:err reason:@"Error in connect() function"]; - [strongSelf didNotConnect:aStateIndex error:error]; - } - } - }}); - -#pragma clang diagnostic pop - }); - - LogVerbose(@"Connecting..."); -} - -- (void)closeSocket:(int)socketFD -{ - if (socketFD != SOCKET_NULL && - (socketFD == socket6FD || socketFD == socket4FD)) - { - close(socketFD); - - if (socketFD == socket4FD) - { - LogVerbose(@"close(socket4FD)"); - socket4FD = SOCKET_NULL; - } - else if (socketFD == socket6FD) - { - LogVerbose(@"close(socket6FD)"); - socket6FD = SOCKET_NULL; - } - } -} - -- (void)closeUnusedSocket:(int)usedSocketFD -{ - if (usedSocketFD != socket4FD) - { - [self closeSocket:socket4FD]; - } - else if (usedSocketFD != socket6FD) - { - [self closeSocket:socket6FD]; - } -} - -- (BOOL)connectWithAddress4:(NSData *)address4 address6:(NSData *)address6 error:(NSError **)errPtr -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - LogVerbose(@"IPv4: %@:%hu", [[self class] hostFromAddress:address4], [[self class] portFromAddress:address4]); - LogVerbose(@"IPv6: %@:%hu", [[self class] hostFromAddress:address6], [[self class] portFromAddress:address6]); - - // Determine socket type - - BOOL preferIPv6 = (config & kPreferIPv6) ? YES : NO; - - // Create and bind the sockets - - if (address4) - { - LogVerbose(@"Creating IPv4 socket"); - - socket4FD = [self createSocket:AF_INET connectInterface:connectInterface4 errPtr:errPtr]; - } - - if (address6) - { - LogVerbose(@"Creating IPv6 socket"); - - socket6FD = [self createSocket:AF_INET6 connectInterface:connectInterface6 errPtr:errPtr]; - } - - if (socket4FD == SOCKET_NULL && socket6FD == SOCKET_NULL) - { - return NO; - } - - int socketFD, alternateSocketFD; - NSData *address, *alternateAddress; - - if ((preferIPv6 && socket6FD != SOCKET_NULL) || socket4FD == SOCKET_NULL) - { - socketFD = socket6FD; - alternateSocketFD = socket4FD; - address = address6; - alternateAddress = address4; - } - else - { - socketFD = socket4FD; - alternateSocketFD = socket6FD; - address = address4; - alternateAddress = address6; - } - - int aStateIndex = stateIndex; - - [self connectSocket:socketFD address:address stateIndex:aStateIndex]; - - if (alternateAddress) - { - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(alternateAddressDelay * NSEC_PER_SEC)), socketQueue, ^{ - [self connectSocket:alternateSocketFD address:alternateAddress stateIndex:aStateIndex]; - }); - } - - return YES; -} - -- (BOOL)connectWithAddressUN:(NSData *)address error:(NSError **)errPtr -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - // Create the socket - - int socketFD; - - LogVerbose(@"Creating unix domain socket"); - - socketUN = socket(AF_UNIX, SOCK_STREAM, 0); - - socketFD = socketUN; - - if (socketFD == SOCKET_NULL) - { - if (errPtr) - *errPtr = [self errorWithErrno:errno reason:@"Error in socket() function"]; - - return NO; - } - - // Bind the socket to the desired interface (if needed) - - LogVerbose(@"Binding socket..."); - - int reuseOn = 1; - setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseOn, sizeof(reuseOn)); - -// const struct sockaddr *interfaceAddr = (const struct sockaddr *)[address bytes]; -// -// int result = bind(socketFD, interfaceAddr, (socklen_t)[address length]); -// if (result != 0) -// { -// if (errPtr) -// *errPtr = [self errnoErrorWithReason:@"Error in bind() function"]; -// -// return NO; -// } - - // Prevent SIGPIPE signals - - int nosigpipe = 1; - setsockopt(socketFD, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe)); - - // Start the connection process in a background queue - - int aStateIndex = stateIndex; - - dispatch_queue_t globalConcurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); - dispatch_async(globalConcurrentQueue, ^{ - - const struct sockaddr *addr = (const struct sockaddr *)[address bytes]; - int result = connect(socketFD, addr, addr->sa_len); - if (result == 0) - { - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - [self didConnect:aStateIndex]; - }}); - } - else - { - // TODO: Bad file descriptor - perror("connect"); - NSError *error = [self errorWithErrno:errno reason:@"Error in connect() function"]; - - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - [self didNotConnect:aStateIndex error:error]; - }}); - } - }); - - LogVerbose(@"Connecting..."); - - return YES; -} - -- (void)didConnect:(int)aStateIndex -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - - if (aStateIndex != stateIndex) - { - LogInfo(@"Ignoring didConnect, already disconnected"); - - // The connect operation has been cancelled. - // That is, socket was disconnected, or connection has already timed out. - return; - } - - flags |= kConnected; - - [self endConnectTimeout]; - - #if TARGET_OS_IPHONE - // The endConnectTimeout method executed above incremented the stateIndex. - aStateIndex = stateIndex; - #endif - - // Setup read/write streams (as workaround for specific shortcomings in the iOS platform) - // - // Note: - // There may be configuration options that must be set by the delegate before opening the streams. - // The primary example is the kCFStreamNetworkServiceTypeVoIP flag, which only works on an unopened stream. - // - // Thus we wait until after the socket:didConnectToHost:port: delegate method has completed. - // This gives the delegate time to properly configure the streams if needed. - - dispatch_block_t SetupStreamsPart1 = ^{ - #if TARGET_OS_IPHONE - - if (![self createReadAndWriteStream]) - { - [self closeWithError:[self otherError:@"Error creating CFStreams"]]; - return; - } - - if (![self registerForStreamCallbacksIncludingReadWrite:NO]) - { - [self closeWithError:[self otherError:@"Error in CFStreamSetClient"]]; - return; - } - - #endif - }; - dispatch_block_t SetupStreamsPart2 = ^{ - #if TARGET_OS_IPHONE - - if (aStateIndex != self->stateIndex) - { - // The socket has been disconnected. - return; - } - - if (![self addStreamsToRunLoop]) - { - [self closeWithError:[self otherError:@"Error in CFStreamScheduleWithRunLoop"]]; - return; - } - - if (![self openStreams]) - { - [self closeWithError:[self otherError:@"Error creating CFStreams"]]; - return; - } - - #endif - }; - - // Notify delegate - - NSString *host = [self connectedHost]; - uint16_t port = [self connectedPort]; - NSURL *url = [self connectedUrl]; - - __strong id theDelegate = delegate; - - if (delegateQueue && host != nil && [theDelegate respondsToSelector:@selector(socket:didConnectToHost:port:)]) - { - SetupStreamsPart1(); - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socket:self didConnectToHost:host port:port]; - - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - SetupStreamsPart2(); - }}); - }}); - } - else if (delegateQueue && url != nil && [theDelegate respondsToSelector:@selector(socket:didConnectToUrl:)]) - { - SetupStreamsPart1(); - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socket:self didConnectToUrl:url]; - - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - SetupStreamsPart2(); - }}); - }}); - } - else - { - SetupStreamsPart1(); - SetupStreamsPart2(); - } - - // Get the connected socket - - int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; - - // Enable non-blocking IO on the socket - - int result = fcntl(socketFD, F_SETFL, O_NONBLOCK); - if (result == -1) - { - NSString *errMsg = @"Error enabling non-blocking IO on socket (fcntl)"; - [self closeWithError:[self otherError:errMsg]]; - - return; - } - - // Setup our read/write sources - - [self setupReadAndWriteSourcesForNewlyConnectedSocket:socketFD]; - - // Dequeue any pending read/write requests - - [self maybeDequeueRead]; - [self maybeDequeueWrite]; -} - -- (void)didNotConnect:(int)aStateIndex error:(NSError *)error -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - - if (aStateIndex != stateIndex) - { - LogInfo(@"Ignoring didNotConnect, already disconnected"); - - // The connect operation has been cancelled. - // That is, socket was disconnected, or connection has already timed out. - return; - } - - [self closeWithError:error]; -} - -- (void)startConnectTimeout:(NSTimeInterval)timeout -{ - if (timeout >= 0.0) - { - connectTimer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, socketQueue); - - __weak GCDAsyncSocket *weakSelf = self; - - dispatch_source_set_event_handler(connectTimer, ^{ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf == nil) return_from_block; - - [strongSelf doConnectTimeout]; - - #pragma clang diagnostic pop - }}); - - #if !OS_OBJECT_USE_OBJC - dispatch_source_t theConnectTimer = connectTimer; - dispatch_source_set_cancel_handler(connectTimer, ^{ - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - LogVerbose(@"dispatch_release(connectTimer)"); - dispatch_release(theConnectTimer); - - #pragma clang diagnostic pop - }); - #endif - - dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeout * NSEC_PER_SEC)); - dispatch_source_set_timer(connectTimer, tt, DISPATCH_TIME_FOREVER, 0); - - dispatch_resume(connectTimer); - } -} - -- (void)endConnectTimeout -{ - LogTrace(); - - if (connectTimer) - { - dispatch_source_cancel(connectTimer); - connectTimer = NULL; - } - - // Increment stateIndex. - // This will prevent us from processing results from any related background asynchronous operations. - // - // Note: This should be called from close method even if connectTimer is NULL. - // This is because one might disconnect a socket prior to a successful connection which had no timeout. - - stateIndex++; - - if (connectInterface4) - { - connectInterface4 = nil; - } - if (connectInterface6) - { - connectInterface6 = nil; - } -} - -- (void)doConnectTimeout -{ - LogTrace(); - - [self endConnectTimeout]; - [self closeWithError:[self connectTimeoutError]]; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Disconnecting -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (void)closeWithError:(NSError *)error -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - [self endConnectTimeout]; - - if (currentRead != nil) [self endCurrentRead]; - if (currentWrite != nil) [self endCurrentWrite]; - - [readQueue removeAllObjects]; - [writeQueue removeAllObjects]; - - [preBuffer reset]; - - #if TARGET_OS_IPHONE - { - if (readStream || writeStream) - { - [self removeStreamsFromRunLoop]; - - if (readStream) - { - CFReadStreamSetClient(readStream, kCFStreamEventNone, NULL, NULL); - CFReadStreamClose(readStream); - CFRelease(readStream); - readStream = NULL; - } - if (writeStream) - { - CFWriteStreamSetClient(writeStream, kCFStreamEventNone, NULL, NULL); - CFWriteStreamClose(writeStream); - CFRelease(writeStream); - writeStream = NULL; - } - } - } - #endif - - [sslPreBuffer reset]; - sslErrCode = lastSSLHandshakeError = noErr; - - if (sslContext) - { - // Getting a linker error here about the SSLx() functions? - // You need to add the Security Framework to your application. - - SSLClose(sslContext); - - #if TARGET_OS_IPHONE || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1080) - CFRelease(sslContext); - #else - SSLDisposeContext(sslContext); - #endif - - sslContext = NULL; - } - - // For some crazy reason (in my opinion), cancelling a dispatch source doesn't - // invoke the cancel handler if the dispatch source is paused. - // So we have to unpause the source if needed. - // This allows the cancel handler to be run, which in turn releases the source and closes the socket. - - if (!accept4Source && !accept6Source && !acceptUNSource && !readSource && !writeSource) - { - LogVerbose(@"manually closing close"); - - if (socket4FD != SOCKET_NULL) - { - LogVerbose(@"close(socket4FD)"); - close(socket4FD); - socket4FD = SOCKET_NULL; - } - - if (socket6FD != SOCKET_NULL) - { - LogVerbose(@"close(socket6FD)"); - close(socket6FD); - socket6FD = SOCKET_NULL; - } - - if (socketUN != SOCKET_NULL) - { - LogVerbose(@"close(socketUN)"); - close(socketUN); - socketUN = SOCKET_NULL; - unlink(socketUrl.path.fileSystemRepresentation); - socketUrl = nil; - } - } - else - { - if (accept4Source) - { - LogVerbose(@"dispatch_source_cancel(accept4Source)"); - dispatch_source_cancel(accept4Source); - - // We never suspend accept4Source - - accept4Source = NULL; - } - - if (accept6Source) - { - LogVerbose(@"dispatch_source_cancel(accept6Source)"); - dispatch_source_cancel(accept6Source); - - // We never suspend accept6Source - - accept6Source = NULL; - } - - if (acceptUNSource) - { - LogVerbose(@"dispatch_source_cancel(acceptUNSource)"); - dispatch_source_cancel(acceptUNSource); - - // We never suspend acceptUNSource - - acceptUNSource = NULL; - } - - if (readSource) - { - LogVerbose(@"dispatch_source_cancel(readSource)"); - dispatch_source_cancel(readSource); - - [self resumeReadSource]; - - readSource = NULL; - } - - if (writeSource) - { - LogVerbose(@"dispatch_source_cancel(writeSource)"); - dispatch_source_cancel(writeSource); - - [self resumeWriteSource]; - - writeSource = NULL; - } - - // The sockets will be closed by the cancel handlers of the corresponding source - - socket4FD = SOCKET_NULL; - socket6FD = SOCKET_NULL; - socketUN = SOCKET_NULL; - } - - // If the client has passed the connect/accept method, then the connection has at least begun. - // Notify delegate that it is now ending. - BOOL shouldCallDelegate = (flags & kSocketStarted) ? YES : NO; - BOOL isDeallocating = (flags & kDealloc) ? YES : NO; - - // Clear stored socket info and all flags (config remains as is) - socketFDBytesAvailable = 0; - flags = 0; - sslWriteCachedLength = 0; - - if (shouldCallDelegate) - { - __strong id theDelegate = delegate; - __strong id theSelf = isDeallocating ? nil : self; - - if (delegateQueue && [theDelegate respondsToSelector: @selector(socketDidDisconnect:withError:)]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socketDidDisconnect:theSelf withError:error]; - }}); - } - } -} - -- (void)disconnect -{ - dispatch_block_t block = ^{ @autoreleasepool { - - if (self->flags & kSocketStarted) - { - [self closeWithError:nil]; - } - }}; - - // Synchronous disconnection, as documented in the header file - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); -} - -- (void)disconnectAfterReading -{ - dispatch_async(socketQueue, ^{ @autoreleasepool { - - if (self->flags & kSocketStarted) - { - self->flags |= (kForbidReadsWrites | kDisconnectAfterReads); - [self maybeClose]; - } - }}); -} - -- (void)disconnectAfterWriting -{ - dispatch_async(socketQueue, ^{ @autoreleasepool { - - if (self->flags & kSocketStarted) - { - self->flags |= (kForbidReadsWrites | kDisconnectAfterWrites); - [self maybeClose]; - } - }}); -} - -- (void)disconnectAfterReadingAndWriting -{ - dispatch_async(socketQueue, ^{ @autoreleasepool { - - if (self->flags & kSocketStarted) - { - self->flags |= (kForbidReadsWrites | kDisconnectAfterReads | kDisconnectAfterWrites); - [self maybeClose]; - } - }}); -} - -/** - * Closes the socket if possible. - * That is, if all writes have completed, and we're set to disconnect after writing, - * or if all reads have completed, and we're set to disconnect after reading. -**/ -- (void)maybeClose -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - BOOL shouldClose = NO; - - if (flags & kDisconnectAfterReads) - { - if (([readQueue count] == 0) && (currentRead == nil)) - { - if (flags & kDisconnectAfterWrites) - { - if (([writeQueue count] == 0) && (currentWrite == nil)) - { - shouldClose = YES; - } - } - else - { - shouldClose = YES; - } - } - } - else if (flags & kDisconnectAfterWrites) - { - if (([writeQueue count] == 0) && (currentWrite == nil)) - { - shouldClose = YES; - } - } - - if (shouldClose) - { - [self closeWithError:nil]; - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Errors -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (NSError *)badConfigError:(NSString *)errMsg -{ - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketBadConfigError userInfo:userInfo]; -} - -- (NSError *)badParamError:(NSString *)errMsg -{ - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketBadParamError userInfo:userInfo]; -} - -+ (NSError *)gaiError:(int)gai_error -{ - NSString *errMsg = [NSString stringWithCString:gai_strerror(gai_error) encoding:NSASCIIStringEncoding]; - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:@"kCFStreamErrorDomainNetDB" code:gai_error userInfo:userInfo]; -} - -- (NSError *)errorWithErrno:(int)err reason:(NSString *)reason -{ - NSString *errMsg = [NSString stringWithUTF8String:strerror(err)]; - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg, - NSLocalizedFailureReasonErrorKey : reason}; - - return [NSError errorWithDomain:NSPOSIXErrorDomain code:err userInfo:userInfo]; -} - -- (NSError *)errnoError -{ - NSString *errMsg = [NSString stringWithUTF8String:strerror(errno)]; - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:NSPOSIXErrorDomain code:errno userInfo:userInfo]; -} - -- (NSError *)sslError:(OSStatus)ssl_error -{ - NSString *msg = @"Error code definition can be found in Apple's SecureTransport.h"; - NSDictionary *userInfo = @{NSLocalizedRecoverySuggestionErrorKey : msg}; - - return [NSError errorWithDomain:@"kCFStreamErrorDomainSSL" code:ssl_error userInfo:userInfo]; -} - -- (NSError *)connectTimeoutError -{ - NSString *errMsg = NSLocalizedStringWithDefaultValue(@"GCDAsyncSocketConnectTimeoutError", - @"GCDAsyncSocket", [NSBundle mainBundle], - @"Attempt to connect to host timed out", nil); - - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketConnectTimeoutError userInfo:userInfo]; -} - -/** - * Returns a standard AsyncSocket maxed out error. -**/ -- (NSError *)readMaxedOutError -{ - NSString *errMsg = NSLocalizedStringWithDefaultValue(@"GCDAsyncSocketReadMaxedOutError", - @"GCDAsyncSocket", [NSBundle mainBundle], - @"Read operation reached set maximum length", nil); - - NSDictionary *info = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketReadMaxedOutError userInfo:info]; -} - -/** - * Returns a standard AsyncSocket write timeout error. -**/ -- (NSError *)readTimeoutError -{ - NSString *errMsg = NSLocalizedStringWithDefaultValue(@"GCDAsyncSocketReadTimeoutError", - @"GCDAsyncSocket", [NSBundle mainBundle], - @"Read operation timed out", nil); - - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketReadTimeoutError userInfo:userInfo]; -} - -/** - * Returns a standard AsyncSocket write timeout error. -**/ -- (NSError *)writeTimeoutError -{ - NSString *errMsg = NSLocalizedStringWithDefaultValue(@"GCDAsyncSocketWriteTimeoutError", - @"GCDAsyncSocket", [NSBundle mainBundle], - @"Write operation timed out", nil); - - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketWriteTimeoutError userInfo:userInfo]; -} - -- (NSError *)connectionClosedError -{ - NSString *errMsg = NSLocalizedStringWithDefaultValue(@"GCDAsyncSocketClosedError", - @"GCDAsyncSocket", [NSBundle mainBundle], - @"Socket closed by remote peer", nil); - - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketClosedError userInfo:userInfo]; -} - -- (NSError *)otherError:(NSString *)errMsg -{ - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncSocketErrorDomain code:GCDAsyncSocketOtherError userInfo:userInfo]; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Diagnostics -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (BOOL)isDisconnected -{ - __block BOOL result = NO; - - dispatch_block_t block = ^{ - result = (self->flags & kSocketStarted) ? NO : YES; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (BOOL)isConnected -{ - __block BOOL result = NO; - - dispatch_block_t block = ^{ - result = (self->flags & kConnected) ? YES : NO; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (NSString *)connectedHost -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - if (socket4FD != SOCKET_NULL) - return [self connectedHostFromSocket4:socket4FD]; - if (socket6FD != SOCKET_NULL) - return [self connectedHostFromSocket6:socket6FD]; - - return nil; - } - else - { - __block NSString *result = nil; - - dispatch_sync(socketQueue, ^{ @autoreleasepool { - - if (self->socket4FD != SOCKET_NULL) - result = [self connectedHostFromSocket4:self->socket4FD]; - else if (self->socket6FD != SOCKET_NULL) - result = [self connectedHostFromSocket6:self->socket6FD]; - }}); - - return result; - } -} - -- (uint16_t)connectedPort -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - if (socket4FD != SOCKET_NULL) - return [self connectedPortFromSocket4:socket4FD]; - if (socket6FD != SOCKET_NULL) - return [self connectedPortFromSocket6:socket6FD]; - - return 0; - } - else - { - __block uint16_t result = 0; - - dispatch_sync(socketQueue, ^{ - // No need for autorelease pool - - if (self->socket4FD != SOCKET_NULL) - result = [self connectedPortFromSocket4:self->socket4FD]; - else if (self->socket6FD != SOCKET_NULL) - result = [self connectedPortFromSocket6:self->socket6FD]; - }); - - return result; - } -} - -- (NSURL *)connectedUrl -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - if (socketUN != SOCKET_NULL) - return [self connectedUrlFromSocketUN:socketUN]; - - return nil; - } - else - { - __block NSURL *result = nil; - - dispatch_sync(socketQueue, ^{ @autoreleasepool { - - if (self->socketUN != SOCKET_NULL) - result = [self connectedUrlFromSocketUN:self->socketUN]; - }}); - - return result; - } -} - -- (NSString *)localHost -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - if (socket4FD != SOCKET_NULL) - return [self localHostFromSocket4:socket4FD]; - if (socket6FD != SOCKET_NULL) - return [self localHostFromSocket6:socket6FD]; - - return nil; - } - else - { - __block NSString *result = nil; - - dispatch_sync(socketQueue, ^{ @autoreleasepool { - - if (self->socket4FD != SOCKET_NULL) - result = [self localHostFromSocket4:self->socket4FD]; - else if (self->socket6FD != SOCKET_NULL) - result = [self localHostFromSocket6:self->socket6FD]; - }}); - - return result; - } -} - -- (uint16_t)localPort -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - if (socket4FD != SOCKET_NULL) - return [self localPortFromSocket4:socket4FD]; - if (socket6FD != SOCKET_NULL) - return [self localPortFromSocket6:socket6FD]; - - return 0; - } - else - { - __block uint16_t result = 0; - - dispatch_sync(socketQueue, ^{ - // No need for autorelease pool - - if (self->socket4FD != SOCKET_NULL) - result = [self localPortFromSocket4:self->socket4FD]; - else if (self->socket6FD != SOCKET_NULL) - result = [self localPortFromSocket6:self->socket6FD]; - }); - - return result; - } -} - -- (NSString *)connectedHost4 -{ - if (socket4FD != SOCKET_NULL) - return [self connectedHostFromSocket4:socket4FD]; - - return nil; -} - -- (NSString *)connectedHost6 -{ - if (socket6FD != SOCKET_NULL) - return [self connectedHostFromSocket6:socket6FD]; - - return nil; -} - -- (uint16_t)connectedPort4 -{ - if (socket4FD != SOCKET_NULL) - return [self connectedPortFromSocket4:socket4FD]; - - return 0; -} - -- (uint16_t)connectedPort6 -{ - if (socket6FD != SOCKET_NULL) - return [self connectedPortFromSocket6:socket6FD]; - - return 0; -} - -- (NSString *)localHost4 -{ - if (socket4FD != SOCKET_NULL) - return [self localHostFromSocket4:socket4FD]; - - return nil; -} - -- (NSString *)localHost6 -{ - if (socket6FD != SOCKET_NULL) - return [self localHostFromSocket6:socket6FD]; - - return nil; -} - -- (uint16_t)localPort4 -{ - if (socket4FD != SOCKET_NULL) - return [self localPortFromSocket4:socket4FD]; - - return 0; -} - -- (uint16_t)localPort6 -{ - if (socket6FD != SOCKET_NULL) - return [self localPortFromSocket6:socket6FD]; - - return 0; -} - -- (NSString *)connectedHostFromSocket4:(int)socketFD -{ - struct sockaddr_in sockaddr4; - socklen_t sockaddr4len = sizeof(sockaddr4); - - if (getpeername(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) < 0) - { - return nil; - } - return [[self class] hostFromSockaddr4:&sockaddr4]; -} - -- (NSString *)connectedHostFromSocket6:(int)socketFD -{ - struct sockaddr_in6 sockaddr6; - socklen_t sockaddr6len = sizeof(sockaddr6); - - if (getpeername(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) < 0) - { - return nil; - } - return [[self class] hostFromSockaddr6:&sockaddr6]; -} - -- (uint16_t)connectedPortFromSocket4:(int)socketFD -{ - struct sockaddr_in sockaddr4; - socklen_t sockaddr4len = sizeof(sockaddr4); - - if (getpeername(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) < 0) - { - return 0; - } - return [[self class] portFromSockaddr4:&sockaddr4]; -} - -- (uint16_t)connectedPortFromSocket6:(int)socketFD -{ - struct sockaddr_in6 sockaddr6; - socklen_t sockaddr6len = sizeof(sockaddr6); - - if (getpeername(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) < 0) - { - return 0; - } - return [[self class] portFromSockaddr6:&sockaddr6]; -} - -- (NSURL *)connectedUrlFromSocketUN:(int)socketFD -{ - struct sockaddr_un sockaddr; - socklen_t sockaddrlen = sizeof(sockaddr); - - if (getpeername(socketFD, (struct sockaddr *)&sockaddr, &sockaddrlen) < 0) - { - return 0; - } - return [[self class] urlFromSockaddrUN:&sockaddr]; -} - -- (NSString *)localHostFromSocket4:(int)socketFD -{ - struct sockaddr_in sockaddr4; - socklen_t sockaddr4len = sizeof(sockaddr4); - - if (getsockname(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) < 0) - { - return nil; - } - return [[self class] hostFromSockaddr4:&sockaddr4]; -} - -- (NSString *)localHostFromSocket6:(int)socketFD -{ - struct sockaddr_in6 sockaddr6; - socklen_t sockaddr6len = sizeof(sockaddr6); - - if (getsockname(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) < 0) - { - return nil; - } - return [[self class] hostFromSockaddr6:&sockaddr6]; -} - -- (uint16_t)localPortFromSocket4:(int)socketFD -{ - struct sockaddr_in sockaddr4; - socklen_t sockaddr4len = sizeof(sockaddr4); - - if (getsockname(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) < 0) - { - return 0; - } - return [[self class] portFromSockaddr4:&sockaddr4]; -} - -- (uint16_t)localPortFromSocket6:(int)socketFD -{ - struct sockaddr_in6 sockaddr6; - socklen_t sockaddr6len = sizeof(sockaddr6); - - if (getsockname(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) < 0) - { - return 0; - } - return [[self class] portFromSockaddr6:&sockaddr6]; -} - -- (NSData *)connectedAddress -{ - __block NSData *result = nil; - - dispatch_block_t block = ^{ - if (self->socket4FD != SOCKET_NULL) - { - struct sockaddr_in sockaddr4; - socklen_t sockaddr4len = sizeof(sockaddr4); - - if (getpeername(self->socket4FD, (struct sockaddr *)&sockaddr4, &sockaddr4len) == 0) - { - result = [[NSData alloc] initWithBytes:&sockaddr4 length:sockaddr4len]; - } - } - - if (self->socket6FD != SOCKET_NULL) - { - struct sockaddr_in6 sockaddr6; - socklen_t sockaddr6len = sizeof(sockaddr6); - - if (getpeername(self->socket6FD, (struct sockaddr *)&sockaddr6, &sockaddr6len) == 0) - { - result = [[NSData alloc] initWithBytes:&sockaddr6 length:sockaddr6len]; - } - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (NSData *)localAddress -{ - __block NSData *result = nil; - - dispatch_block_t block = ^{ - if (self->socket4FD != SOCKET_NULL) - { - struct sockaddr_in sockaddr4; - socklen_t sockaddr4len = sizeof(sockaddr4); - - if (getsockname(self->socket4FD, (struct sockaddr *)&sockaddr4, &sockaddr4len) == 0) - { - result = [[NSData alloc] initWithBytes:&sockaddr4 length:sockaddr4len]; - } - } - - if (self->socket6FD != SOCKET_NULL) - { - struct sockaddr_in6 sockaddr6; - socklen_t sockaddr6len = sizeof(sockaddr6); - - if (getsockname(self->socket6FD, (struct sockaddr *)&sockaddr6, &sockaddr6len) == 0) - { - result = [[NSData alloc] initWithBytes:&sockaddr6 length:sockaddr6len]; - } - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (BOOL)isIPv4 -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return (socket4FD != SOCKET_NULL); - } - else - { - __block BOOL result = NO; - - dispatch_sync(socketQueue, ^{ - result = (self->socket4FD != SOCKET_NULL); - }); - - return result; - } -} - -- (BOOL)isIPv6 -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return (socket6FD != SOCKET_NULL); - } - else - { - __block BOOL result = NO; - - dispatch_sync(socketQueue, ^{ - result = (self->socket6FD != SOCKET_NULL); - }); - - return result; - } -} - -- (BOOL)isSecure -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return (flags & kSocketSecure) ? YES : NO; - } - else - { - __block BOOL result; - - dispatch_sync(socketQueue, ^{ - result = (self->flags & kSocketSecure) ? YES : NO; - }); - - return result; - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Utilities -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * Finds the address of an interface description. - * An inteface description may be an interface name (en0, en1, lo0) or corresponding IP (192.168.4.34). - * - * The interface description may optionally contain a port number at the end, separated by a colon. - * If a non-zero port parameter is provided, any port number in the interface description is ignored. - * - * The returned value is a 'struct sockaddr' wrapped in an NSMutableData object. -**/ -- (void)getInterfaceAddress4:(NSMutableData **)interfaceAddr4Ptr - address6:(NSMutableData **)interfaceAddr6Ptr - fromDescription:(NSString *)interfaceDescription - port:(uint16_t)port -{ - NSMutableData *addr4 = nil; - NSMutableData *addr6 = nil; - - NSString *interface = nil; - - NSArray *components = [interfaceDescription componentsSeparatedByString:@":"]; - if ([components count] > 0) - { - NSString *temp = [components objectAtIndex:0]; - if ([temp length] > 0) - { - interface = temp; - } - } - if ([components count] > 1 && port == 0) - { - NSString *temp = [components objectAtIndex:1]; - long portL = strtol([temp UTF8String], NULL, 10); - - if (portL > 0 && portL <= UINT16_MAX) - { - port = (uint16_t)portL; - } - } - - if (interface == nil) - { - // ANY address - - struct sockaddr_in sockaddr4; - memset(&sockaddr4, 0, sizeof(sockaddr4)); - - sockaddr4.sin_len = sizeof(sockaddr4); - sockaddr4.sin_family = AF_INET; - sockaddr4.sin_port = htons(port); - sockaddr4.sin_addr.s_addr = htonl(INADDR_ANY); - - struct sockaddr_in6 sockaddr6; - memset(&sockaddr6, 0, sizeof(sockaddr6)); - - sockaddr6.sin6_len = sizeof(sockaddr6); - sockaddr6.sin6_family = AF_INET6; - sockaddr6.sin6_port = htons(port); - sockaddr6.sin6_addr = in6addr_any; - - addr4 = [NSMutableData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]; - addr6 = [NSMutableData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]; - } - else if ([interface isEqualToString:@"localhost"] || [interface isEqualToString:@"loopback"]) - { - // LOOPBACK address - - struct sockaddr_in sockaddr4; - memset(&sockaddr4, 0, sizeof(sockaddr4)); - - sockaddr4.sin_len = sizeof(sockaddr4); - sockaddr4.sin_family = AF_INET; - sockaddr4.sin_port = htons(port); - sockaddr4.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - - struct sockaddr_in6 sockaddr6; - memset(&sockaddr6, 0, sizeof(sockaddr6)); - - sockaddr6.sin6_len = sizeof(sockaddr6); - sockaddr6.sin6_family = AF_INET6; - sockaddr6.sin6_port = htons(port); - sockaddr6.sin6_addr = in6addr_loopback; - - addr4 = [NSMutableData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]; - addr6 = [NSMutableData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]; - } - else - { - const char *iface = [interface UTF8String]; - - struct ifaddrs *addrs; - const struct ifaddrs *cursor; - - if ((getifaddrs(&addrs) == 0)) - { - cursor = addrs; - while (cursor != NULL) - { - if ((addr4 == nil) && (cursor->ifa_addr->sa_family == AF_INET)) - { - // IPv4 - - struct sockaddr_in nativeAddr4; - memcpy(&nativeAddr4, cursor->ifa_addr, sizeof(nativeAddr4)); - - if (strcmp(cursor->ifa_name, iface) == 0) - { - // Name match - - nativeAddr4.sin_port = htons(port); - - addr4 = [NSMutableData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; - } - else - { - char ip[INET_ADDRSTRLEN]; - - const char *conversion = inet_ntop(AF_INET, &nativeAddr4.sin_addr, ip, sizeof(ip)); - - if ((conversion != NULL) && (strcmp(ip, iface) == 0)) - { - // IP match - - nativeAddr4.sin_port = htons(port); - - addr4 = [NSMutableData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; - } - } - } - else if ((addr6 == nil) && (cursor->ifa_addr->sa_family == AF_INET6)) - { - // IPv6 - - struct sockaddr_in6 nativeAddr6; - memcpy(&nativeAddr6, cursor->ifa_addr, sizeof(nativeAddr6)); - - if (strcmp(cursor->ifa_name, iface) == 0) - { - // Name match - - nativeAddr6.sin6_port = htons(port); - - addr6 = [NSMutableData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; - } - else - { - char ip[INET6_ADDRSTRLEN]; - - const char *conversion = inet_ntop(AF_INET6, &nativeAddr6.sin6_addr, ip, sizeof(ip)); - - if ((conversion != NULL) && (strcmp(ip, iface) == 0)) - { - // IP match - - nativeAddr6.sin6_port = htons(port); - - addr6 = [NSMutableData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; - } - } - } - - cursor = cursor->ifa_next; - } - - freeifaddrs(addrs); - } - } - - if (interfaceAddr4Ptr) *interfaceAddr4Ptr = addr4; - if (interfaceAddr6Ptr) *interfaceAddr6Ptr = addr6; -} - -- (NSData *)getInterfaceAddressFromUrl:(NSURL *)url -{ - NSString *path = url.path; - if (path.length == 0) { - return nil; - } - - struct sockaddr_un nativeAddr; - nativeAddr.sun_family = AF_UNIX; - strlcpy(nativeAddr.sun_path, path.fileSystemRepresentation, sizeof(nativeAddr.sun_path)); - nativeAddr.sun_len = (unsigned char)SUN_LEN(&nativeAddr); - NSData *interface = [NSData dataWithBytes:&nativeAddr length:sizeof(struct sockaddr_un)]; - - return interface; -} - -- (void)setupReadAndWriteSourcesForNewlyConnectedSocket:(int)socketFD -{ - readSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, socketFD, 0, socketQueue); - writeSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_WRITE, socketFD, 0, socketQueue); - - // Setup event handlers - - __weak GCDAsyncSocket *weakSelf = self; - - dispatch_source_set_event_handler(readSource, ^{ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf == nil) return_from_block; - - LogVerbose(@"readEventBlock"); - - strongSelf->socketFDBytesAvailable = dispatch_source_get_data(strongSelf->readSource); - LogVerbose(@"socketFDBytesAvailable: %lu", strongSelf->socketFDBytesAvailable); - - if (strongSelf->socketFDBytesAvailable > 0) - [strongSelf doReadData]; - else - [strongSelf doReadEOF]; - - #pragma clang diagnostic pop - }}); - - dispatch_source_set_event_handler(writeSource, ^{ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf == nil) return_from_block; - - LogVerbose(@"writeEventBlock"); - - strongSelf->flags |= kSocketCanAcceptBytes; - [strongSelf doWriteData]; - - #pragma clang diagnostic pop - }}); - - // Setup cancel handlers - - __block int socketFDRefCount = 2; - - #if !OS_OBJECT_USE_OBJC - dispatch_source_t theReadSource = readSource; - dispatch_source_t theWriteSource = writeSource; - #endif - - dispatch_source_set_cancel_handler(readSource, ^{ - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - LogVerbose(@"readCancelBlock"); - - #if !OS_OBJECT_USE_OBJC - LogVerbose(@"dispatch_release(readSource)"); - dispatch_release(theReadSource); - #endif - - if (--socketFDRefCount == 0) - { - LogVerbose(@"close(socketFD)"); - close(socketFD); - } - - #pragma clang diagnostic pop - }); - - dispatch_source_set_cancel_handler(writeSource, ^{ - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - LogVerbose(@"writeCancelBlock"); - - #if !OS_OBJECT_USE_OBJC - LogVerbose(@"dispatch_release(writeSource)"); - dispatch_release(theWriteSource); - #endif - - if (--socketFDRefCount == 0) - { - LogVerbose(@"close(socketFD)"); - close(socketFD); - } - - #pragma clang diagnostic pop - }); - - // We will not be able to read until data arrives. - // But we should be able to write immediately. - - socketFDBytesAvailable = 0; - flags &= ~kReadSourceSuspended; - - LogVerbose(@"dispatch_resume(readSource)"); - dispatch_resume(readSource); - - flags |= kSocketCanAcceptBytes; - flags |= kWriteSourceSuspended; -} - -- (BOOL)usingCFStreamForTLS -{ - #if TARGET_OS_IPHONE - - if ((flags & kSocketSecure) && (flags & kUsingCFStreamForTLS)) - { - // The startTLS method was given the GCDAsyncSocketUseCFStreamForTLS flag. - - return YES; - } - - #endif - - return NO; -} - -- (BOOL)usingSecureTransportForTLS -{ - // Invoking this method is equivalent to ![self usingCFStreamForTLS] (just more readable) - - #if TARGET_OS_IPHONE - - if ((flags & kSocketSecure) && (flags & kUsingCFStreamForTLS)) - { - // The startTLS method was given the GCDAsyncSocketUseCFStreamForTLS flag. - - return NO; - } - - #endif - - return YES; -} - -- (void)suspendReadSource -{ - if (!(flags & kReadSourceSuspended)) - { - LogVerbose(@"dispatch_suspend(readSource)"); - - dispatch_suspend(readSource); - flags |= kReadSourceSuspended; - } -} - -- (void)resumeReadSource -{ - if (flags & kReadSourceSuspended) - { - LogVerbose(@"dispatch_resume(readSource)"); - - dispatch_resume(readSource); - flags &= ~kReadSourceSuspended; - } -} - -- (void)suspendWriteSource -{ - if (!(flags & kWriteSourceSuspended)) - { - LogVerbose(@"dispatch_suspend(writeSource)"); - - dispatch_suspend(writeSource); - flags |= kWriteSourceSuspended; - } -} - -- (void)resumeWriteSource -{ - if (flags & kWriteSourceSuspended) - { - LogVerbose(@"dispatch_resume(writeSource)"); - - dispatch_resume(writeSource); - flags &= ~kWriteSourceSuspended; - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Reading -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (void)readDataWithTimeout:(NSTimeInterval)timeout tag:(long)tag -{ - [self readDataWithTimeout:timeout buffer:nil bufferOffset:0 maxLength:0 tag:tag]; -} - -- (void)readDataWithTimeout:(NSTimeInterval)timeout - buffer:(NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - tag:(long)tag -{ - [self readDataWithTimeout:timeout buffer:buffer bufferOffset:offset maxLength:0 tag:tag]; -} - -- (void)readDataWithTimeout:(NSTimeInterval)timeout - buffer:(NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - maxLength:(NSUInteger)length - tag:(long)tag -{ - if (offset > [buffer length]) { - LogWarn(@"Cannot read: offset > [buffer length]"); - return; - } - - GCDAsyncReadPacket *packet = [[GCDAsyncReadPacket alloc] initWithData:buffer - startOffset:offset - maxLength:length - timeout:timeout - readLength:0 - terminator:nil - tag:tag]; - - dispatch_async(socketQueue, ^{ @autoreleasepool { - - LogTrace(); - - if ((self->flags & kSocketStarted) && !(self->flags & kForbidReadsWrites)) - { - [self->readQueue addObject:packet]; - [self maybeDequeueRead]; - } - }}); - - // Do not rely on the block being run in order to release the packet, - // as the queue might get released without the block completing. -} - -- (void)readDataToLength:(NSUInteger)length withTimeout:(NSTimeInterval)timeout tag:(long)tag -{ - [self readDataToLength:length withTimeout:timeout buffer:nil bufferOffset:0 tag:tag]; -} - -- (void)readDataToLength:(NSUInteger)length - withTimeout:(NSTimeInterval)timeout - buffer:(NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - tag:(long)tag -{ - if (length == 0) { - LogWarn(@"Cannot read: length == 0"); - return; - } - if (offset > [buffer length]) { - LogWarn(@"Cannot read: offset > [buffer length]"); - return; - } - - GCDAsyncReadPacket *packet = [[GCDAsyncReadPacket alloc] initWithData:buffer - startOffset:offset - maxLength:0 - timeout:timeout - readLength:length - terminator:nil - tag:tag]; - - dispatch_async(socketQueue, ^{ @autoreleasepool { - - LogTrace(); - - if ((self->flags & kSocketStarted) && !(self->flags & kForbidReadsWrites)) - { - [self->readQueue addObject:packet]; - [self maybeDequeueRead]; - } - }}); - - // Do not rely on the block being run in order to release the packet, - // as the queue might get released without the block completing. -} - -- (void)readDataToData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag -{ - [self readDataToData:data withTimeout:timeout buffer:nil bufferOffset:0 maxLength:0 tag:tag]; -} - -- (void)readDataToData:(NSData *)data - withTimeout:(NSTimeInterval)timeout - buffer:(NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - tag:(long)tag -{ - [self readDataToData:data withTimeout:timeout buffer:buffer bufferOffset:offset maxLength:0 tag:tag]; -} - -- (void)readDataToData:(NSData *)data withTimeout:(NSTimeInterval)timeout maxLength:(NSUInteger)length tag:(long)tag -{ - [self readDataToData:data withTimeout:timeout buffer:nil bufferOffset:0 maxLength:length tag:tag]; -} - -- (void)readDataToData:(NSData *)data - withTimeout:(NSTimeInterval)timeout - buffer:(NSMutableData *)buffer - bufferOffset:(NSUInteger)offset - maxLength:(NSUInteger)maxLength - tag:(long)tag -{ - if ([data length] == 0) { - LogWarn(@"Cannot read: [data length] == 0"); - return; - } - if (offset > [buffer length]) { - LogWarn(@"Cannot read: offset > [buffer length]"); - return; - } - if (maxLength > 0 && maxLength < [data length]) { - LogWarn(@"Cannot read: maxLength > 0 && maxLength < [data length]"); - return; - } - - GCDAsyncReadPacket *packet = [[GCDAsyncReadPacket alloc] initWithData:buffer - startOffset:offset - maxLength:maxLength - timeout:timeout - readLength:0 - terminator:data - tag:tag]; - - dispatch_async(socketQueue, ^{ @autoreleasepool { - - LogTrace(); - - if ((self->flags & kSocketStarted) && !(self->flags & kForbidReadsWrites)) - { - [self->readQueue addObject:packet]; - [self maybeDequeueRead]; - } - }}); - - // Do not rely on the block being run in order to release the packet, - // as the queue might get released without the block completing. -} - -- (float)progressOfReadReturningTag:(long *)tagPtr bytesDone:(NSUInteger *)donePtr total:(NSUInteger *)totalPtr -{ - __block float result = 0.0F; - - dispatch_block_t block = ^{ - - if (!self->currentRead || ![self->currentRead isKindOfClass:[GCDAsyncReadPacket class]]) - { - // We're not reading anything right now. - - if (tagPtr != NULL) *tagPtr = 0; - if (donePtr != NULL) *donePtr = 0; - if (totalPtr != NULL) *totalPtr = 0; - - result = NAN; - } - else - { - // It's only possible to know the progress of our read if we're reading to a certain length. - // If we're reading to data, we of course have no idea when the data will arrive. - // If we're reading to timeout, then we have no idea when the next chunk of data will arrive. - - NSUInteger done = self->currentRead->bytesDone; - NSUInteger total = self->currentRead->readLength; - - if (tagPtr != NULL) *tagPtr = self->currentRead->tag; - if (donePtr != NULL) *donePtr = done; - if (totalPtr != NULL) *totalPtr = total; - - if (total > 0) - result = (float)done / (float)total; - else - result = 1.0F; - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -/** - * This method starts a new read, if needed. - * - * It is called when: - * - a user requests a read - * - after a read request has finished (to handle the next request) - * - immediately after the socket opens to handle any pending requests - * - * This method also handles auto-disconnect post read/write completion. -**/ -- (void)maybeDequeueRead -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - // If we're not currently processing a read AND we have an available read stream - if ((currentRead == nil) && (flags & kConnected)) - { - if ([readQueue count] > 0) - { - // Dequeue the next object in the write queue - currentRead = [readQueue objectAtIndex:0]; - [readQueue removeObjectAtIndex:0]; - - - if ([currentRead isKindOfClass:[GCDAsyncSpecialPacket class]]) - { - LogVerbose(@"Dequeued GCDAsyncSpecialPacket"); - - // Attempt to start TLS - flags |= kStartingReadTLS; - - // This method won't do anything unless both kStartingReadTLS and kStartingWriteTLS are set - [self maybeStartTLS]; - } - else - { - LogVerbose(@"Dequeued GCDAsyncReadPacket"); - - // Setup read timer (if needed) - [self setupReadTimerWithTimeout:currentRead->timeout]; - - // Immediately read, if possible - [self doReadData]; - } - } - else if (flags & kDisconnectAfterReads) - { - if (flags & kDisconnectAfterWrites) - { - if (([writeQueue count] == 0) && (currentWrite == nil)) - { - [self closeWithError:nil]; - } - } - else - { - [self closeWithError:nil]; - } - } - else if (flags & kSocketSecure) - { - [self flushSSLBuffers]; - - // Edge case: - // - // We just drained all data from the ssl buffers, - // and all known data from the socket (socketFDBytesAvailable). - // - // If we didn't get any data from this process, - // then we may have reached the end of the TCP stream. - // - // Be sure callbacks are enabled so we're notified about a disconnection. - - if ([preBuffer availableBytes] == 0) - { - if ([self usingCFStreamForTLS]) { - // Callbacks never disabled - } - else { - [self resumeReadSource]; - } - } - } - } -} - -- (void)flushSSLBuffers -{ - LogTrace(); - - NSAssert((flags & kSocketSecure), @"Cannot flush ssl buffers on non-secure socket"); - - if ([preBuffer availableBytes] > 0) - { - // Only flush the ssl buffers if the prebuffer is empty. - // This is to avoid growing the prebuffer inifinitely large. - - return; - } - - #if TARGET_OS_IPHONE - - if ([self usingCFStreamForTLS]) - { - if ((flags & kSecureSocketHasBytesAvailable) && CFReadStreamHasBytesAvailable(readStream)) - { - LogVerbose(@"%@ - Flushing ssl buffers into prebuffer...", THIS_METHOD); - - CFIndex defaultBytesToRead = (1024 * 4); - - [preBuffer ensureCapacityForWrite:defaultBytesToRead]; - - uint8_t *buffer = [preBuffer writeBuffer]; - - CFIndex result = CFReadStreamRead(readStream, buffer, defaultBytesToRead); - LogVerbose(@"%@ - CFReadStreamRead(): result = %i", THIS_METHOD, (int)result); - - if (result > 0) - { - [preBuffer didWrite:result]; - } - - flags &= ~kSecureSocketHasBytesAvailable; - } - - return; - } - - #endif - - __block NSUInteger estimatedBytesAvailable = 0; - - dispatch_block_t updateEstimatedBytesAvailable = ^{ - - // Figure out if there is any data available to be read - // - // socketFDBytesAvailable <- Number of encrypted bytes we haven't read from the bsd socket - // [sslPreBuffer availableBytes] <- Number of encrypted bytes we've buffered from bsd socket - // sslInternalBufSize <- Number of decrypted bytes SecureTransport has buffered - // - // We call the variable "estimated" because we don't know how many decrypted bytes we'll get - // from the encrypted bytes in the sslPreBuffer. - // However, we do know this is an upper bound on the estimation. - - estimatedBytesAvailable = self->socketFDBytesAvailable + [self->sslPreBuffer availableBytes]; - - size_t sslInternalBufSize = 0; - SSLGetBufferedReadSize(self->sslContext, &sslInternalBufSize); - - estimatedBytesAvailable += sslInternalBufSize; - }; - - updateEstimatedBytesAvailable(); - - if (estimatedBytesAvailable > 0) - { - LogVerbose(@"%@ - Flushing ssl buffers into prebuffer...", THIS_METHOD); - - BOOL done = NO; - do - { - LogVerbose(@"%@ - estimatedBytesAvailable = %lu", THIS_METHOD, (unsigned long)estimatedBytesAvailable); - - // Make sure there's enough room in the prebuffer - - [preBuffer ensureCapacityForWrite:estimatedBytesAvailable]; - - // Read data into prebuffer - - uint8_t *buffer = [preBuffer writeBuffer]; - size_t bytesRead = 0; - - OSStatus result = SSLRead(sslContext, buffer, (size_t)estimatedBytesAvailable, &bytesRead); - LogVerbose(@"%@ - read from secure socket = %u", THIS_METHOD, (unsigned)bytesRead); - - if (bytesRead > 0) - { - [preBuffer didWrite:bytesRead]; - } - - LogVerbose(@"%@ - prebuffer.length = %zu", THIS_METHOD, [preBuffer availableBytes]); - - if (result != noErr) - { - done = YES; - } - else - { - updateEstimatedBytesAvailable(); - } - - } while (!done && estimatedBytesAvailable > 0); - } -} - -- (void)doReadData -{ - LogTrace(); - - // This method is called on the socketQueue. - // It might be called directly, or via the readSource when data is available to be read. - - if ((currentRead == nil) || (flags & kReadsPaused)) - { - LogVerbose(@"No currentRead or kReadsPaused"); - - // Unable to read at this time - - if (flags & kSocketSecure) - { - // Here's the situation: - // - // We have an established secure connection. - // There may not be a currentRead, but there might be encrypted data sitting around for us. - // When the user does get around to issuing a read, that encrypted data will need to be decrypted. - // - // So why make the user wait? - // We might as well get a head start on decrypting some data now. - // - // The other reason we do this has to do with detecting a socket disconnection. - // The SSL/TLS protocol has it's own disconnection handshake. - // So when a secure socket is closed, a "goodbye" packet comes across the wire. - // We want to make sure we read the "goodbye" packet so we can properly detect the TCP disconnection. - - [self flushSSLBuffers]; - } - - if ([self usingCFStreamForTLS]) - { - // CFReadStream only fires once when there is available data. - // It won't fire again until we've invoked CFReadStreamRead. - } - else - { - // If the readSource is firing, we need to pause it - // or else it will continue to fire over and over again. - // - // If the readSource is not firing, - // we want it to continue monitoring the socket. - - if (socketFDBytesAvailable > 0) - { - [self suspendReadSource]; - } - } - return; - } - - BOOL hasBytesAvailable = NO; - unsigned long estimatedBytesAvailable = 0; - - if ([self usingCFStreamForTLS]) - { - #if TARGET_OS_IPHONE - - // Requested CFStream, rather than SecureTransport, for TLS (via GCDAsyncSocketUseCFStreamForTLS) - - estimatedBytesAvailable = 0; - if ((flags & kSecureSocketHasBytesAvailable) && CFReadStreamHasBytesAvailable(readStream)) - hasBytesAvailable = YES; - else - hasBytesAvailable = NO; - - #endif - } - else - { - estimatedBytesAvailable = socketFDBytesAvailable; - - if (flags & kSocketSecure) - { - // There are 2 buffers to be aware of here. - // - // We are using SecureTransport, a TLS/SSL security layer which sits atop TCP. - // We issue a read to the SecureTranport API, which in turn issues a read to our SSLReadFunction. - // Our SSLReadFunction then reads from the BSD socket and returns the encrypted data to SecureTransport. - // SecureTransport then decrypts the data, and finally returns the decrypted data back to us. - // - // The first buffer is one we create. - // SecureTransport often requests small amounts of data. - // This has to do with the encypted packets that are coming across the TCP stream. - // But it's non-optimal to do a bunch of small reads from the BSD socket. - // So our SSLReadFunction reads all available data from the socket (optimizing the sys call) - // and may store excess in the sslPreBuffer. - - estimatedBytesAvailable += [sslPreBuffer availableBytes]; - - // The second buffer is within SecureTransport. - // As mentioned earlier, there are encrypted packets coming across the TCP stream. - // SecureTransport needs the entire packet to decrypt it. - // But if the entire packet produces X bytes of decrypted data, - // and we only asked SecureTransport for X/2 bytes of data, - // it must store the extra X/2 bytes of decrypted data for the next read. - // - // The SSLGetBufferedReadSize function will tell us the size of this internal buffer. - // From the documentation: - // - // "This function does not block or cause any low-level read operations to occur." - - size_t sslInternalBufSize = 0; - SSLGetBufferedReadSize(sslContext, &sslInternalBufSize); - - estimatedBytesAvailable += sslInternalBufSize; - } - - hasBytesAvailable = (estimatedBytesAvailable > 0); - } - - if ((hasBytesAvailable == NO) && ([preBuffer availableBytes] == 0)) - { - LogVerbose(@"No data available to read..."); - - // No data available to read. - - if (![self usingCFStreamForTLS]) - { - // Need to wait for readSource to fire and notify us of - // available data in the socket's internal read buffer. - - [self resumeReadSource]; - } - return; - } - - if (flags & kStartingReadTLS) - { - LogVerbose(@"Waiting for SSL/TLS handshake to complete"); - - // The readQueue is waiting for SSL/TLS handshake to complete. - - if (flags & kStartingWriteTLS) - { - if ([self usingSecureTransportForTLS] && lastSSLHandshakeError == errSSLWouldBlock) - { - // We are in the process of a SSL Handshake. - // We were waiting for incoming data which has just arrived. - - [self ssl_continueSSLHandshake]; - } - } - else - { - // We are still waiting for the writeQueue to drain and start the SSL/TLS process. - // We now know data is available to read. - - if (![self usingCFStreamForTLS]) - { - // Suspend the read source or else it will continue to fire nonstop. - - [self suspendReadSource]; - } - } - - return; - } - - BOOL done = NO; // Completed read operation - NSError *error = nil; // Error occurred - - NSUInteger totalBytesReadForCurrentRead = 0; - - // - // STEP 1 - READ FROM PREBUFFER - // - - if ([preBuffer availableBytes] > 0) - { - // There are 3 types of read packets: - // - // 1) Read all available data. - // 2) Read a specific length of data. - // 3) Read up to a particular terminator. - - NSUInteger bytesToCopy; - - if (currentRead->term != nil) - { - // Read type #3 - read up to a terminator - - bytesToCopy = [currentRead readLengthForTermWithPreBuffer:preBuffer found:&done]; - } - else - { - // Read type #1 or #2 - - bytesToCopy = [currentRead readLengthForNonTermWithHint:[preBuffer availableBytes]]; - } - - // Make sure we have enough room in the buffer for our read. - - [currentRead ensureCapacityForAdditionalDataOfLength:bytesToCopy]; - - // Copy bytes from prebuffer into packet buffer - - uint8_t *buffer = (uint8_t *)[currentRead->buffer mutableBytes] + currentRead->startOffset + - currentRead->bytesDone; - - memcpy(buffer, [preBuffer readBuffer], bytesToCopy); - - // Remove the copied bytes from the preBuffer - [preBuffer didRead:bytesToCopy]; - - LogVerbose(@"copied(%lu) preBufferLength(%zu)", (unsigned long)bytesToCopy, [preBuffer availableBytes]); - - // Update totals - - currentRead->bytesDone += bytesToCopy; - totalBytesReadForCurrentRead += bytesToCopy; - - // Check to see if the read operation is done - - if (currentRead->readLength > 0) - { - // Read type #2 - read a specific length of data - - done = (currentRead->bytesDone == currentRead->readLength); - } - else if (currentRead->term != nil) - { - // Read type #3 - read up to a terminator - - // Our 'done' variable was updated via the readLengthForTermWithPreBuffer:found: method - - if (!done && currentRead->maxLength > 0) - { - // We're not done and there's a set maxLength. - // Have we reached that maxLength yet? - - if (currentRead->bytesDone >= currentRead->maxLength) - { - error = [self readMaxedOutError]; - } - } - } - else - { - // Read type #1 - read all available data - // - // We're done as soon as - // - we've read all available data (in prebuffer and socket) - // - we've read the maxLength of read packet. - - done = ((currentRead->maxLength > 0) && (currentRead->bytesDone == currentRead->maxLength)); - } - - } - - // - // STEP 2 - READ FROM SOCKET - // - - BOOL socketEOF = (flags & kSocketHasReadEOF) ? YES : NO; // Nothing more to read via socket (end of file) - BOOL waiting = !done && !error && !socketEOF && !hasBytesAvailable; // Ran out of data, waiting for more - - if (!done && !error && !socketEOF && hasBytesAvailable) - { - NSAssert(([preBuffer availableBytes] == 0), @"Invalid logic"); - - BOOL readIntoPreBuffer = NO; - uint8_t *buffer = NULL; - size_t bytesRead = 0; - - if (flags & kSocketSecure) - { - if ([self usingCFStreamForTLS]) - { - #if TARGET_OS_IPHONE - - // Using CFStream, rather than SecureTransport, for TLS - - NSUInteger defaultReadLength = (1024 * 32); - - NSUInteger bytesToRead = [currentRead optimalReadLengthWithDefault:defaultReadLength - shouldPreBuffer:&readIntoPreBuffer]; - - // Make sure we have enough room in the buffer for our read. - // - // We are either reading directly into the currentRead->buffer, - // or we're reading into the temporary preBuffer. - - if (readIntoPreBuffer) - { - [preBuffer ensureCapacityForWrite:bytesToRead]; - - buffer = [preBuffer writeBuffer]; - } - else - { - [currentRead ensureCapacityForAdditionalDataOfLength:bytesToRead]; - - buffer = (uint8_t *)[currentRead->buffer mutableBytes] - + currentRead->startOffset - + currentRead->bytesDone; - } - - // Read data into buffer - - CFIndex result = CFReadStreamRead(readStream, buffer, (CFIndex)bytesToRead); - LogVerbose(@"CFReadStreamRead(): result = %i", (int)result); - - if (result < 0) - { - error = (__bridge_transfer NSError *)CFReadStreamCopyError(readStream); - } - else if (result == 0) - { - socketEOF = YES; - } - else - { - waiting = YES; - bytesRead = (size_t)result; - } - - // We only know how many decrypted bytes were read. - // The actual number of bytes read was likely more due to the overhead of the encryption. - // So we reset our flag, and rely on the next callback to alert us of more data. - flags &= ~kSecureSocketHasBytesAvailable; - - #endif - } - else - { - // Using SecureTransport for TLS - // - // We know: - // - how many bytes are available on the socket - // - how many encrypted bytes are sitting in the sslPreBuffer - // - how many decypted bytes are sitting in the sslContext - // - // But we do NOT know: - // - how many encypted bytes are sitting in the sslContext - // - // So we play the regular game of using an upper bound instead. - - NSUInteger defaultReadLength = (1024 * 32); - - if (defaultReadLength < estimatedBytesAvailable) { - defaultReadLength = estimatedBytesAvailable + (1024 * 16); - } - - NSUInteger bytesToRead = [currentRead optimalReadLengthWithDefault:defaultReadLength - shouldPreBuffer:&readIntoPreBuffer]; - - if (bytesToRead > SIZE_MAX) { // NSUInteger may be bigger than size_t - bytesToRead = SIZE_MAX; - } - - // Make sure we have enough room in the buffer for our read. - // - // We are either reading directly into the currentRead->buffer, - // or we're reading into the temporary preBuffer. - - if (readIntoPreBuffer) - { - [preBuffer ensureCapacityForWrite:bytesToRead]; - - buffer = [preBuffer writeBuffer]; - } - else - { - [currentRead ensureCapacityForAdditionalDataOfLength:bytesToRead]; - - buffer = (uint8_t *)[currentRead->buffer mutableBytes] - + currentRead->startOffset - + currentRead->bytesDone; - } - - // The documentation from Apple states: - // - // "a read operation might return errSSLWouldBlock, - // indicating that less data than requested was actually transferred" - // - // However, starting around 10.7, the function will sometimes return noErr, - // even if it didn't read as much data as requested. So we need to watch out for that. - - OSStatus result; - do - { - void *loop_buffer = buffer + bytesRead; - size_t loop_bytesToRead = (size_t)bytesToRead - bytesRead; - size_t loop_bytesRead = 0; - - result = SSLRead(sslContext, loop_buffer, loop_bytesToRead, &loop_bytesRead); - LogVerbose(@"read from secure socket = %u", (unsigned)loop_bytesRead); - - bytesRead += loop_bytesRead; - - } while ((result == noErr) && (bytesRead < bytesToRead)); - - - if (result != noErr) - { - if (result == errSSLWouldBlock) - waiting = YES; - else - { - if (result == errSSLClosedGraceful || result == errSSLClosedAbort) - { - // We've reached the end of the stream. - // Handle this the same way we would an EOF from the socket. - socketEOF = YES; - sslErrCode = result; - } - else - { - error = [self sslError:result]; - } - } - // It's possible that bytesRead > 0, even if the result was errSSLWouldBlock. - // This happens when the SSLRead function is able to read some data, - // but not the entire amount we requested. - - if (bytesRead <= 0) - { - bytesRead = 0; - } - } - - // Do not modify socketFDBytesAvailable. - // It will be updated via the SSLReadFunction(). - } - } - else - { - // Normal socket operation - - NSUInteger bytesToRead; - - // There are 3 types of read packets: - // - // 1) Read all available data. - // 2) Read a specific length of data. - // 3) Read up to a particular terminator. - - if (currentRead->term != nil) - { - // Read type #3 - read up to a terminator - - bytesToRead = [currentRead readLengthForTermWithHint:estimatedBytesAvailable - shouldPreBuffer:&readIntoPreBuffer]; - } - else - { - // Read type #1 or #2 - - bytesToRead = [currentRead readLengthForNonTermWithHint:estimatedBytesAvailable]; - } - - if (bytesToRead > SIZE_MAX) { // NSUInteger may be bigger than size_t (read param 3) - bytesToRead = SIZE_MAX; - } - - // Make sure we have enough room in the buffer for our read. - // - // We are either reading directly into the currentRead->buffer, - // or we're reading into the temporary preBuffer. - - if (readIntoPreBuffer) - { - [preBuffer ensureCapacityForWrite:bytesToRead]; - - buffer = [preBuffer writeBuffer]; - } - else - { - [currentRead ensureCapacityForAdditionalDataOfLength:bytesToRead]; - - buffer = (uint8_t *)[currentRead->buffer mutableBytes] - + currentRead->startOffset - + currentRead->bytesDone; - } - - // Read data into buffer - - int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; - - ssize_t result = read(socketFD, buffer, (size_t)bytesToRead); - LogVerbose(@"read from socket = %i", (int)result); - - if (result < 0) - { - if (errno == EWOULDBLOCK) - waiting = YES; - else - error = [self errorWithErrno:errno reason:@"Error in read() function"]; - - socketFDBytesAvailable = 0; - } - else if (result == 0) - { - socketEOF = YES; - socketFDBytesAvailable = 0; - } - else - { - bytesRead = result; - - if (bytesRead < bytesToRead) - { - // The read returned less data than requested. - // This means socketFDBytesAvailable was a bit off due to timing, - // because we read from the socket right when the readSource event was firing. - socketFDBytesAvailable = 0; - } - else - { - if (socketFDBytesAvailable <= bytesRead) - socketFDBytesAvailable = 0; - else - socketFDBytesAvailable -= bytesRead; - } - - if (socketFDBytesAvailable == 0) - { - waiting = YES; - } - } - } - - if (bytesRead > 0) - { - // Check to see if the read operation is done - - if (currentRead->readLength > 0) - { - // Read type #2 - read a specific length of data - // - // Note: We should never be using a prebuffer when we're reading a specific length of data. - - NSAssert(readIntoPreBuffer == NO, @"Invalid logic"); - - currentRead->bytesDone += bytesRead; - totalBytesReadForCurrentRead += bytesRead; - - done = (currentRead->bytesDone == currentRead->readLength); - } - else if (currentRead->term != nil) - { - // Read type #3 - read up to a terminator - - if (readIntoPreBuffer) - { - // We just read a big chunk of data into the preBuffer - - [preBuffer didWrite:bytesRead]; - LogVerbose(@"read data into preBuffer - preBuffer.length = %zu", [preBuffer availableBytes]); - - // Search for the terminating sequence - - NSUInteger bytesToCopy = [currentRead readLengthForTermWithPreBuffer:preBuffer found:&done]; - LogVerbose(@"copying %lu bytes from preBuffer", (unsigned long)bytesToCopy); - - // Ensure there's room on the read packet's buffer - - [currentRead ensureCapacityForAdditionalDataOfLength:bytesToCopy]; - - // Copy bytes from prebuffer into read buffer - - uint8_t *readBuf = (uint8_t *)[currentRead->buffer mutableBytes] + currentRead->startOffset - + currentRead->bytesDone; - - memcpy(readBuf, [preBuffer readBuffer], bytesToCopy); - - // Remove the copied bytes from the prebuffer - [preBuffer didRead:bytesToCopy]; - LogVerbose(@"preBuffer.length = %zu", [preBuffer availableBytes]); - - // Update totals - currentRead->bytesDone += bytesToCopy; - totalBytesReadForCurrentRead += bytesToCopy; - - // Our 'done' variable was updated via the readLengthForTermWithPreBuffer:found: method above - } - else - { - // We just read a big chunk of data directly into the packet's buffer. - // We need to move any overflow into the prebuffer. - - NSInteger overflow = [currentRead searchForTermAfterPreBuffering:bytesRead]; - - if (overflow == 0) - { - // Perfect match! - // Every byte we read stays in the read buffer, - // and the last byte we read was the last byte of the term. - - currentRead->bytesDone += bytesRead; - totalBytesReadForCurrentRead += bytesRead; - done = YES; - } - else if (overflow > 0) - { - // The term was found within the data that we read, - // and there are extra bytes that extend past the end of the term. - // We need to move these excess bytes out of the read packet and into the prebuffer. - - NSInteger underflow = bytesRead - overflow; - - // Copy excess data into preBuffer - - LogVerbose(@"copying %ld overflow bytes into preBuffer", (long)overflow); - [preBuffer ensureCapacityForWrite:overflow]; - - uint8_t *overflowBuffer = buffer + underflow; - memcpy([preBuffer writeBuffer], overflowBuffer, overflow); - - [preBuffer didWrite:overflow]; - LogVerbose(@"preBuffer.length = %zu", [preBuffer availableBytes]); - - // Note: The completeCurrentRead method will trim the buffer for us. - - currentRead->bytesDone += underflow; - totalBytesReadForCurrentRead += underflow; - done = YES; - } - else - { - // The term was not found within the data that we read. - - currentRead->bytesDone += bytesRead; - totalBytesReadForCurrentRead += bytesRead; - done = NO; - } - } - - if (!done && currentRead->maxLength > 0) - { - // We're not done and there's a set maxLength. - // Have we reached that maxLength yet? - - if (currentRead->bytesDone >= currentRead->maxLength) - { - error = [self readMaxedOutError]; - } - } - } - else - { - // Read type #1 - read all available data - - if (readIntoPreBuffer) - { - // We just read a chunk of data into the preBuffer - - [preBuffer didWrite:bytesRead]; - - // Now copy the data into the read packet. - // - // Recall that we didn't read directly into the packet's buffer to avoid - // over-allocating memory since we had no clue how much data was available to be read. - // - // Ensure there's room on the read packet's buffer - - [currentRead ensureCapacityForAdditionalDataOfLength:bytesRead]; - - // Copy bytes from prebuffer into read buffer - - uint8_t *readBuf = (uint8_t *)[currentRead->buffer mutableBytes] + currentRead->startOffset - + currentRead->bytesDone; - - memcpy(readBuf, [preBuffer readBuffer], bytesRead); - - // Remove the copied bytes from the prebuffer - [preBuffer didRead:bytesRead]; - - // Update totals - currentRead->bytesDone += bytesRead; - totalBytesReadForCurrentRead += bytesRead; - } - else - { - currentRead->bytesDone += bytesRead; - totalBytesReadForCurrentRead += bytesRead; - } - - done = YES; - } - - } // if (bytesRead > 0) - - } // if (!done && !error && !socketEOF && hasBytesAvailable) - - - if (!done && currentRead->readLength == 0 && currentRead->term == nil) - { - // Read type #1 - read all available data - // - // We might arrive here if we read data from the prebuffer but not from the socket. - - done = (totalBytesReadForCurrentRead > 0); - } - - // Check to see if we're done, or if we've made progress - - if (done) - { - [self completeCurrentRead]; - - if (!error && (!socketEOF || [preBuffer availableBytes] > 0)) - { - [self maybeDequeueRead]; - } - } - else if (totalBytesReadForCurrentRead > 0) - { - // We're not done read type #2 or #3 yet, but we have read in some bytes - // - // We ensure that `waiting` is set in order to resume the readSource (if it is suspended). It is - // possible to reach this point and `waiting` not be set, if the current read's length is - // sufficiently large. In that case, we may have read to some upperbound successfully, but - // that upperbound could be smaller than the desired length. - waiting = YES; - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didReadPartialDataOfLength:tag:)]) - { - long theReadTag = currentRead->tag; - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socket:self didReadPartialDataOfLength:totalBytesReadForCurrentRead tag:theReadTag]; - }}); - } - } - - // Check for errors - - if (error) - { - [self closeWithError:error]; - } - else if (socketEOF) - { - [self doReadEOF]; - } - else if (waiting) - { - if (![self usingCFStreamForTLS]) - { - // Monitor the socket for readability (if we're not already doing so) - [self resumeReadSource]; - } - } - - // Do not add any code here without first adding return statements in the error cases above. -} - -- (void)doReadEOF -{ - LogTrace(); - - // This method may be called more than once. - // If the EOF is read while there is still data in the preBuffer, - // then this method may be called continually after invocations of doReadData to see if it's time to disconnect. - - flags |= kSocketHasReadEOF; - - if (flags & kSocketSecure) - { - // If the SSL layer has any buffered data, flush it into the preBuffer now. - - [self flushSSLBuffers]; - } - - BOOL shouldDisconnect = NO; - NSError *error = nil; - - if ((flags & kStartingReadTLS) || (flags & kStartingWriteTLS)) - { - // We received an EOF during or prior to startTLS. - // The SSL/TLS handshake is now impossible, so this is an unrecoverable situation. - - shouldDisconnect = YES; - - if ([self usingSecureTransportForTLS]) - { - error = [self sslError:errSSLClosedAbort]; - } - } - else if (flags & kReadStreamClosed) - { - // The preBuffer has already been drained. - // The config allows half-duplex connections. - // We've previously checked the socket, and it appeared writeable. - // So we marked the read stream as closed and notified the delegate. - // - // As per the half-duplex contract, the socket will be closed when a write fails, - // or when the socket is manually closed. - - shouldDisconnect = NO; - } - else if ([preBuffer availableBytes] > 0) - { - LogVerbose(@"Socket reached EOF, but there is still data available in prebuffer"); - - // Although we won't be able to read any more data from the socket, - // there is existing data that has been prebuffered that we can read. - - shouldDisconnect = NO; - } - else if (config & kAllowHalfDuplexConnection) - { - // We just received an EOF (end of file) from the socket's read stream. - // This means the remote end of the socket (the peer we're connected to) - // has explicitly stated that it will not be sending us any more data. - // - // Query the socket to see if it is still writeable. (Perhaps the peer will continue reading data from us) - - int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; - - struct pollfd pfd[1]; - pfd[0].fd = socketFD; - pfd[0].events = POLLOUT; - pfd[0].revents = 0; - - poll(pfd, 1, 0); - - if (pfd[0].revents & POLLOUT) - { - // Socket appears to still be writeable - - shouldDisconnect = NO; - flags |= kReadStreamClosed; - - // Notify the delegate that we're going half-duplex - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socketDidCloseReadStream:)]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socketDidCloseReadStream:self]; - }}); - } - } - else - { - shouldDisconnect = YES; - } - } - else - { - shouldDisconnect = YES; - } - - - if (shouldDisconnect) - { - if (error == nil) - { - if ([self usingSecureTransportForTLS]) - { - if (sslErrCode != noErr && sslErrCode != errSSLClosedGraceful) - { - error = [self sslError:sslErrCode]; - } - else - { - error = [self connectionClosedError]; - } - } - else - { - error = [self connectionClosedError]; - } - } - [self closeWithError:error]; - } - else - { - if (![self usingCFStreamForTLS]) - { - // Suspend the read source (if needed) - - [self suspendReadSource]; - } - } -} - -- (void)completeCurrentRead -{ - LogTrace(); - - NSAssert(currentRead, @"Trying to complete current read when there is no current read."); - - - NSData *result = nil; - - if (currentRead->bufferOwner) - { - // We created the buffer on behalf of the user. - // Trim our buffer to be the proper size. - [currentRead->buffer setLength:currentRead->bytesDone]; - - result = currentRead->buffer; - } - else - { - // We did NOT create the buffer. - // The buffer is owned by the caller. - // Only trim the buffer if we had to increase its size. - - if ([currentRead->buffer length] > currentRead->originalBufferLength) - { - NSUInteger readSize = currentRead->startOffset + currentRead->bytesDone; - NSUInteger origSize = currentRead->originalBufferLength; - - NSUInteger buffSize = MAX(readSize, origSize); - - [currentRead->buffer setLength:buffSize]; - } - - uint8_t *buffer = (uint8_t *)[currentRead->buffer mutableBytes] + currentRead->startOffset; - - result = [NSData dataWithBytesNoCopy:buffer length:currentRead->bytesDone freeWhenDone:NO]; - } - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didReadData:withTag:)]) - { - GCDAsyncReadPacket *theRead = currentRead; // Ensure currentRead retained since result may not own buffer - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socket:self didReadData:result withTag:theRead->tag]; - }}); - } - - [self endCurrentRead]; -} - -- (void)endCurrentRead -{ - if (readTimer) - { - dispatch_source_cancel(readTimer); - readTimer = NULL; - } - - currentRead = nil; -} - -- (void)setupReadTimerWithTimeout:(NSTimeInterval)timeout -{ - if (timeout >= 0.0) - { - readTimer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, socketQueue); - - __weak GCDAsyncSocket *weakSelf = self; - - dispatch_source_set_event_handler(readTimer, ^{ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf == nil) return_from_block; - - [strongSelf doReadTimeout]; - - #pragma clang diagnostic pop - }}); - - #if !OS_OBJECT_USE_OBJC - dispatch_source_t theReadTimer = readTimer; - dispatch_source_set_cancel_handler(readTimer, ^{ - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - LogVerbose(@"dispatch_release(readTimer)"); - dispatch_release(theReadTimer); - - #pragma clang diagnostic pop - }); - #endif - - dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeout * NSEC_PER_SEC)); - - dispatch_source_set_timer(readTimer, tt, DISPATCH_TIME_FOREVER, 0); - dispatch_resume(readTimer); - } -} - -- (void)doReadTimeout -{ - // This is a little bit tricky. - // Ideally we'd like to synchronously query the delegate about a timeout extension. - // But if we do so synchronously we risk a possible deadlock. - // So instead we have to do so asynchronously, and callback to ourselves from within the delegate block. - - flags |= kReadsPaused; - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:shouldTimeoutReadWithTag:elapsed:bytesDone:)]) - { - GCDAsyncReadPacket *theRead = currentRead; - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - NSTimeInterval timeoutExtension = 0.0; - - timeoutExtension = [theDelegate socket:self shouldTimeoutReadWithTag:theRead->tag - elapsed:theRead->timeout - bytesDone:theRead->bytesDone]; - - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - [self doReadTimeoutWithExtension:timeoutExtension]; - }}); - }}); - } - else - { - [self doReadTimeoutWithExtension:0.0]; - } -} - -- (void)doReadTimeoutWithExtension:(NSTimeInterval)timeoutExtension -{ - if (currentRead) - { - if (timeoutExtension > 0.0) - { - currentRead->timeout += timeoutExtension; - - // Reschedule the timer - dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeoutExtension * NSEC_PER_SEC)); - dispatch_source_set_timer(readTimer, tt, DISPATCH_TIME_FOREVER, 0); - - // Unpause reads, and continue - flags &= ~kReadsPaused; - [self doReadData]; - } - else - { - LogVerbose(@"ReadTimeout"); - - [self closeWithError:[self readTimeoutError]]; - } - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Writing -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (void)writeData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag -{ - if ([data length] == 0) return; - - GCDAsyncWritePacket *packet = [[GCDAsyncWritePacket alloc] initWithData:data timeout:timeout tag:tag]; - - dispatch_async(socketQueue, ^{ @autoreleasepool { - - LogTrace(); - - if ((self->flags & kSocketStarted) && !(self->flags & kForbidReadsWrites)) - { - [self->writeQueue addObject:packet]; - [self maybeDequeueWrite]; - } - }}); - - // Do not rely on the block being run in order to release the packet, - // as the queue might get released without the block completing. -} - -- (float)progressOfWriteReturningTag:(long *)tagPtr bytesDone:(NSUInteger *)donePtr total:(NSUInteger *)totalPtr -{ - __block float result = 0.0F; - - dispatch_block_t block = ^{ - - if (!self->currentWrite || ![self->currentWrite isKindOfClass:[GCDAsyncWritePacket class]]) - { - // We're not writing anything right now. - - if (tagPtr != NULL) *tagPtr = 0; - if (donePtr != NULL) *donePtr = 0; - if (totalPtr != NULL) *totalPtr = 0; - - result = NAN; - } - else - { - NSUInteger done = self->currentWrite->bytesDone; - NSUInteger total = [self->currentWrite->buffer length]; - - if (tagPtr != NULL) *tagPtr = self->currentWrite->tag; - if (donePtr != NULL) *donePtr = done; - if (totalPtr != NULL) *totalPtr = total; - - result = (float)done / (float)total; - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -/** - * Conditionally starts a new write. - * - * It is called when: - * - a user requests a write - * - after a write request has finished (to handle the next request) - * - immediately after the socket opens to handle any pending requests - * - * This method also handles auto-disconnect post read/write completion. -**/ -- (void)maybeDequeueWrite -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - - // If we're not currently processing a write AND we have an available write stream - if ((currentWrite == nil) && (flags & kConnected)) - { - if ([writeQueue count] > 0) - { - // Dequeue the next object in the write queue - currentWrite = [writeQueue objectAtIndex:0]; - [writeQueue removeObjectAtIndex:0]; - - - if ([currentWrite isKindOfClass:[GCDAsyncSpecialPacket class]]) - { - LogVerbose(@"Dequeued GCDAsyncSpecialPacket"); - - // Attempt to start TLS - flags |= kStartingWriteTLS; - - // This method won't do anything unless both kStartingReadTLS and kStartingWriteTLS are set - [self maybeStartTLS]; - } - else - { - LogVerbose(@"Dequeued GCDAsyncWritePacket"); - - // Setup write timer (if needed) - [self setupWriteTimerWithTimeout:currentWrite->timeout]; - - // Immediately write, if possible - [self doWriteData]; - } - } - else if (flags & kDisconnectAfterWrites) - { - if (flags & kDisconnectAfterReads) - { - if (([readQueue count] == 0) && (currentRead == nil)) - { - [self closeWithError:nil]; - } - } - else - { - [self closeWithError:nil]; - } - } - } -} - -- (void)doWriteData -{ - LogTrace(); - - // This method is called by the writeSource via the socketQueue - - if ((currentWrite == nil) || (flags & kWritesPaused)) - { - LogVerbose(@"No currentWrite or kWritesPaused"); - - // Unable to write at this time - - if ([self usingCFStreamForTLS]) - { - // CFWriteStream only fires once when there is available data. - // It won't fire again until we've invoked CFWriteStreamWrite. - } - else - { - // If the writeSource is firing, we need to pause it - // or else it will continue to fire over and over again. - - if (flags & kSocketCanAcceptBytes) - { - [self suspendWriteSource]; - } - } - return; - } - - if (!(flags & kSocketCanAcceptBytes)) - { - LogVerbose(@"No space available to write..."); - - // No space available to write. - - if (![self usingCFStreamForTLS]) - { - // Need to wait for writeSource to fire and notify us of - // available space in the socket's internal write buffer. - - [self resumeWriteSource]; - } - return; - } - - if (flags & kStartingWriteTLS) - { - LogVerbose(@"Waiting for SSL/TLS handshake to complete"); - - // The writeQueue is waiting for SSL/TLS handshake to complete. - - if (flags & kStartingReadTLS) - { - if ([self usingSecureTransportForTLS] && lastSSLHandshakeError == errSSLWouldBlock) - { - // We are in the process of a SSL Handshake. - // We were waiting for available space in the socket's internal OS buffer to continue writing. - - [self ssl_continueSSLHandshake]; - } - } - else - { - // We are still waiting for the readQueue to drain and start the SSL/TLS process. - // We now know we can write to the socket. - - if (![self usingCFStreamForTLS]) - { - // Suspend the write source or else it will continue to fire nonstop. - - [self suspendWriteSource]; - } - } - - return; - } - - // Note: This method is not called if currentWrite is a GCDAsyncSpecialPacket (startTLS packet) - - BOOL waiting = NO; - NSError *error = nil; - size_t bytesWritten = 0; - - if (flags & kSocketSecure) - { - if ([self usingCFStreamForTLS]) - { - #if TARGET_OS_IPHONE - - // - // Writing data using CFStream (over internal TLS) - // - - const uint8_t *buffer = (const uint8_t *)[currentWrite->buffer bytes] + currentWrite->bytesDone; - - NSUInteger bytesToWrite = [currentWrite->buffer length] - currentWrite->bytesDone; - - if (bytesToWrite > SIZE_MAX) // NSUInteger may be bigger than size_t (write param 3) - { - bytesToWrite = SIZE_MAX; - } - - CFIndex result = CFWriteStreamWrite(writeStream, buffer, (CFIndex)bytesToWrite); - LogVerbose(@"CFWriteStreamWrite(%lu) = %li", (unsigned long)bytesToWrite, result); - - if (result < 0) - { - error = (__bridge_transfer NSError *)CFWriteStreamCopyError(writeStream); - } - else - { - bytesWritten = (size_t)result; - - // We always set waiting to true in this scenario. - // CFStream may have altered our underlying socket to non-blocking. - // Thus if we attempt to write without a callback, we may end up blocking our queue. - waiting = YES; - } - - #endif - } - else - { - // We're going to use the SSLWrite function. - // - // OSStatus SSLWrite(SSLContextRef context, const void *data, size_t dataLength, size_t *processed) - // - // Parameters: - // context - An SSL session context reference. - // data - A pointer to the buffer of data to write. - // dataLength - The amount, in bytes, of data to write. - // processed - On return, the length, in bytes, of the data actually written. - // - // It sounds pretty straight-forward, - // but there are a few caveats you should be aware of. - // - // The SSLWrite method operates in a non-obvious (and rather annoying) manner. - // According to the documentation: - // - // Because you may configure the underlying connection to operate in a non-blocking manner, - // a write operation might return errSSLWouldBlock, indicating that less data than requested - // was actually transferred. In this case, you should repeat the call to SSLWrite until some - // other result is returned. - // - // This sounds perfect, but when our SSLWriteFunction returns errSSLWouldBlock, - // then the SSLWrite method returns (with the proper errSSLWouldBlock return value), - // but it sets processed to dataLength !! - // - // In other words, if the SSLWrite function doesn't completely write all the data we tell it to, - // then it doesn't tell us how many bytes were actually written. So, for example, if we tell it to - // write 256 bytes then it might actually write 128 bytes, but then report 0 bytes written. - // - // You might be wondering: - // If the SSLWrite function doesn't tell us how many bytes were written, - // then how in the world are we supposed to update our parameters (buffer & bytesToWrite) - // for the next time we invoke SSLWrite? - // - // The answer is that SSLWrite cached all the data we told it to write, - // and it will push out that data next time we call SSLWrite. - // If we call SSLWrite with new data, it will push out the cached data first, and then the new data. - // If we call SSLWrite with empty data, then it will simply push out the cached data. - // - // For this purpose we're going to break large writes into a series of smaller writes. - // This allows us to report progress back to the delegate. - - OSStatus result; - - BOOL hasCachedDataToWrite = (sslWriteCachedLength > 0); - BOOL hasNewDataToWrite = YES; - - if (hasCachedDataToWrite) - { - size_t processed = 0; - - result = SSLWrite(sslContext, NULL, 0, &processed); - - if (result == noErr) - { - bytesWritten = sslWriteCachedLength; - sslWriteCachedLength = 0; - - if ([currentWrite->buffer length] == (currentWrite->bytesDone + bytesWritten)) - { - // We've written all data for the current write. - hasNewDataToWrite = NO; - } - } - else - { - if (result == errSSLWouldBlock) - { - waiting = YES; - } - else - { - error = [self sslError:result]; - } - - // Can't write any new data since we were unable to write the cached data. - hasNewDataToWrite = NO; - } - } - - if (hasNewDataToWrite) - { - const uint8_t *buffer = (const uint8_t *)[currentWrite->buffer bytes] - + currentWrite->bytesDone - + bytesWritten; - - NSUInteger bytesToWrite = [currentWrite->buffer length] - currentWrite->bytesDone - bytesWritten; - - if (bytesToWrite > SIZE_MAX) // NSUInteger may be bigger than size_t (write param 3) - { - bytesToWrite = SIZE_MAX; - } - - size_t bytesRemaining = bytesToWrite; - - BOOL keepLooping = YES; - while (keepLooping) - { - const size_t sslMaxBytesToWrite = 32768; - size_t sslBytesToWrite = MIN(bytesRemaining, sslMaxBytesToWrite); - size_t sslBytesWritten = 0; - - result = SSLWrite(sslContext, buffer, sslBytesToWrite, &sslBytesWritten); - - if (result == noErr) - { - buffer += sslBytesWritten; - bytesWritten += sslBytesWritten; - bytesRemaining -= sslBytesWritten; - - keepLooping = (bytesRemaining > 0); - } - else - { - if (result == errSSLWouldBlock) - { - waiting = YES; - sslWriteCachedLength = sslBytesToWrite; - } - else - { - error = [self sslError:result]; - } - - keepLooping = NO; - } - - } // while (keepLooping) - - } // if (hasNewDataToWrite) - } - } - else - { - // - // Writing data directly over raw socket - // - - int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; - - const uint8_t *buffer = (const uint8_t *)[currentWrite->buffer bytes] + currentWrite->bytesDone; - - NSUInteger bytesToWrite = [currentWrite->buffer length] - currentWrite->bytesDone; - - if (bytesToWrite > SIZE_MAX) // NSUInteger may be bigger than size_t (write param 3) - { - bytesToWrite = SIZE_MAX; - } - - ssize_t result = write(socketFD, buffer, (size_t)bytesToWrite); - LogVerbose(@"wrote to socket = %zd", result); - - // Check results - if (result < 0) - { - if (errno == EWOULDBLOCK) - { - waiting = YES; - } - else - { - error = [self errorWithErrno:errno reason:@"Error in write() function"]; - } - } - else - { - bytesWritten = result; - } - } - - // We're done with our writing. - // If we explictly ran into a situation where the socket told us there was no room in the buffer, - // then we immediately resume listening for notifications. - // - // We must do this before we dequeue another write, - // as that may in turn invoke this method again. - // - // Note that if CFStream is involved, it may have maliciously put our socket in blocking mode. - - if (waiting) - { - flags &= ~kSocketCanAcceptBytes; - - if (![self usingCFStreamForTLS]) - { - [self resumeWriteSource]; - } - } - - // Check our results - - BOOL done = NO; - - if (bytesWritten > 0) - { - // Update total amount read for the current write - currentWrite->bytesDone += bytesWritten; - LogVerbose(@"currentWrite->bytesDone = %lu", (unsigned long)currentWrite->bytesDone); - - // Is packet done? - done = (currentWrite->bytesDone == [currentWrite->buffer length]); - } - - if (done) - { - [self completeCurrentWrite]; - - if (!error) - { - dispatch_async(socketQueue, ^{ @autoreleasepool{ - - [self maybeDequeueWrite]; - }}); - } - } - else - { - // We were unable to finish writing the data, - // so we're waiting for another callback to notify us of available space in the lower-level output buffer. - - if (!waiting && !error) - { - // This would be the case if our write was able to accept some data, but not all of it. - - flags &= ~kSocketCanAcceptBytes; - - if (![self usingCFStreamForTLS]) - { - [self resumeWriteSource]; - } - } - - if (bytesWritten > 0) - { - // We're not done with the entire write, but we have written some bytes - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didWritePartialDataOfLength:tag:)]) - { - long theWriteTag = currentWrite->tag; - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socket:self didWritePartialDataOfLength:bytesWritten tag:theWriteTag]; - }}); - } - } - } - - // Check for errors - - if (error) - { - [self closeWithError:[self errorWithErrno:errno reason:@"Error in write() function"]]; - } - - // Do not add any code here without first adding a return statement in the error case above. -} - -- (void)completeCurrentWrite -{ - LogTrace(); - - NSAssert(currentWrite, @"Trying to complete current write when there is no current write."); - - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didWriteDataWithTag:)]) - { - long theWriteTag = currentWrite->tag; - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socket:self didWriteDataWithTag:theWriteTag]; - }}); - } - - [self endCurrentWrite]; -} - -- (void)endCurrentWrite -{ - if (writeTimer) - { - dispatch_source_cancel(writeTimer); - writeTimer = NULL; - } - - currentWrite = nil; -} - -- (void)setupWriteTimerWithTimeout:(NSTimeInterval)timeout -{ - if (timeout >= 0.0) - { - writeTimer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, socketQueue); - - __weak GCDAsyncSocket *weakSelf = self; - - dispatch_source_set_event_handler(writeTimer, ^{ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf == nil) return_from_block; - - [strongSelf doWriteTimeout]; - - #pragma clang diagnostic pop - }}); - - #if !OS_OBJECT_USE_OBJC - dispatch_source_t theWriteTimer = writeTimer; - dispatch_source_set_cancel_handler(writeTimer, ^{ - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - LogVerbose(@"dispatch_release(writeTimer)"); - dispatch_release(theWriteTimer); - - #pragma clang diagnostic pop - }); - #endif - - dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeout * NSEC_PER_SEC)); - - dispatch_source_set_timer(writeTimer, tt, DISPATCH_TIME_FOREVER, 0); - dispatch_resume(writeTimer); - } -} - -- (void)doWriteTimeout -{ - // This is a little bit tricky. - // Ideally we'd like to synchronously query the delegate about a timeout extension. - // But if we do so synchronously we risk a possible deadlock. - // So instead we have to do so asynchronously, and callback to ourselves from within the delegate block. - - flags |= kWritesPaused; - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:shouldTimeoutWriteWithTag:elapsed:bytesDone:)]) - { - GCDAsyncWritePacket *theWrite = currentWrite; - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - NSTimeInterval timeoutExtension = 0.0; - - timeoutExtension = [theDelegate socket:self shouldTimeoutWriteWithTag:theWrite->tag - elapsed:theWrite->timeout - bytesDone:theWrite->bytesDone]; - - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - [self doWriteTimeoutWithExtension:timeoutExtension]; - }}); - }}); - } - else - { - [self doWriteTimeoutWithExtension:0.0]; - } -} - -- (void)doWriteTimeoutWithExtension:(NSTimeInterval)timeoutExtension -{ - if (currentWrite) - { - if (timeoutExtension > 0.0) - { - currentWrite->timeout += timeoutExtension; - - // Reschedule the timer - dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeoutExtension * NSEC_PER_SEC)); - dispatch_source_set_timer(writeTimer, tt, DISPATCH_TIME_FOREVER, 0); - - // Unpause writes, and continue - flags &= ~kWritesPaused; - [self doWriteData]; - } - else - { - LogVerbose(@"WriteTimeout"); - - [self closeWithError:[self writeTimeoutError]]; - } - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Security -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (void)startTLS:(NSDictionary *)tlsSettings -{ - LogTrace(); - - if (tlsSettings == nil) - { - // Passing nil/NULL to CFReadStreamSetProperty will appear to work the same as passing an empty dictionary, - // but causes problems if we later try to fetch the remote host's certificate. - // - // To be exact, it causes the following to return NULL instead of the normal result: - // CFReadStreamCopyProperty(readStream, kCFStreamPropertySSLPeerCertificates) - // - // So we use an empty dictionary instead, which works perfectly. - - tlsSettings = [NSDictionary dictionary]; - } - - GCDAsyncSpecialPacket *packet = [[GCDAsyncSpecialPacket alloc] initWithTLSSettings:tlsSettings]; - - dispatch_async(socketQueue, ^{ @autoreleasepool { - - if ((self->flags & kSocketStarted) && !(self->flags & kQueuedTLS) && !(self->flags & kForbidReadsWrites)) - { - [self->readQueue addObject:packet]; - [self->writeQueue addObject:packet]; - - self->flags |= kQueuedTLS; - - [self maybeDequeueRead]; - [self maybeDequeueWrite]; - } - }}); - -} - -- (void)maybeStartTLS -{ - // We can't start TLS until: - // - All queued reads prior to the user calling startTLS are complete - // - All queued writes prior to the user calling startTLS are complete - // - // We'll know these conditions are met when both kStartingReadTLS and kStartingWriteTLS are set - - if ((flags & kStartingReadTLS) && (flags & kStartingWriteTLS)) - { - BOOL useSecureTransport = YES; - - #if TARGET_OS_IPHONE - { - GCDAsyncSpecialPacket *tlsPacket = (GCDAsyncSpecialPacket *)currentRead; - NSDictionary *tlsSettings = @{}; - if (tlsPacket) { - tlsSettings = tlsPacket->tlsSettings; - } - NSNumber *value = [tlsSettings objectForKey:GCDAsyncSocketUseCFStreamForTLS]; - if (value && [value boolValue]) - useSecureTransport = NO; - } - #endif - - if (useSecureTransport) - { - [self ssl_startTLS]; - } - else - { - #if TARGET_OS_IPHONE - [self cf_startTLS]; - #endif - } - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Security via SecureTransport -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (OSStatus)sslReadWithBuffer:(void *)buffer length:(size_t *)bufferLength -{ - LogVerbose(@"sslReadWithBuffer:%p length:%lu", buffer, (unsigned long)*bufferLength); - - if ((socketFDBytesAvailable == 0) && ([sslPreBuffer availableBytes] == 0)) - { - LogVerbose(@"%@ - No data available to read...", THIS_METHOD); - - // No data available to read. - // - // Need to wait for readSource to fire and notify us of - // available data in the socket's internal read buffer. - - [self resumeReadSource]; - - *bufferLength = 0; - return errSSLWouldBlock; - } - - size_t totalBytesRead = 0; - size_t totalBytesLeftToBeRead = *bufferLength; - - BOOL done = NO; - BOOL socketError = NO; - - // - // STEP 1 : READ FROM SSL PRE BUFFER - // - - size_t sslPreBufferLength = [sslPreBuffer availableBytes]; - - if (sslPreBufferLength > 0) - { - LogVerbose(@"%@: Reading from SSL pre buffer...", THIS_METHOD); - - size_t bytesToCopy; - if (sslPreBufferLength > totalBytesLeftToBeRead) - bytesToCopy = totalBytesLeftToBeRead; - else - bytesToCopy = sslPreBufferLength; - - LogVerbose(@"%@: Copying %zu bytes from sslPreBuffer", THIS_METHOD, bytesToCopy); - - memcpy(buffer, [sslPreBuffer readBuffer], bytesToCopy); - [sslPreBuffer didRead:bytesToCopy]; - - LogVerbose(@"%@: sslPreBuffer.length = %zu", THIS_METHOD, [sslPreBuffer availableBytes]); - - totalBytesRead += bytesToCopy; - totalBytesLeftToBeRead -= bytesToCopy; - - done = (totalBytesLeftToBeRead == 0); - - if (done) LogVerbose(@"%@: Complete", THIS_METHOD); - } - - // - // STEP 2 : READ FROM SOCKET - // - - if (!done && (socketFDBytesAvailable > 0)) - { - LogVerbose(@"%@: Reading from socket...", THIS_METHOD); - - int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; - - BOOL readIntoPreBuffer; - size_t bytesToRead; - uint8_t *buf; - - if (socketFDBytesAvailable > totalBytesLeftToBeRead) - { - // Read all available data from socket into sslPreBuffer. - // Then copy requested amount into dataBuffer. - - LogVerbose(@"%@: Reading into sslPreBuffer...", THIS_METHOD); - - [sslPreBuffer ensureCapacityForWrite:socketFDBytesAvailable]; - - readIntoPreBuffer = YES; - bytesToRead = (size_t)socketFDBytesAvailable; - buf = [sslPreBuffer writeBuffer]; - } - else - { - // Read available data from socket directly into dataBuffer. - - LogVerbose(@"%@: Reading directly into dataBuffer...", THIS_METHOD); - - readIntoPreBuffer = NO; - bytesToRead = totalBytesLeftToBeRead; - buf = (uint8_t *)buffer + totalBytesRead; - } - - ssize_t result = read(socketFD, buf, bytesToRead); - LogVerbose(@"%@: read from socket = %zd", THIS_METHOD, result); - - if (result < 0) - { - LogVerbose(@"%@: read errno = %i", THIS_METHOD, errno); - - if (errno != EWOULDBLOCK) - { - socketError = YES; - } - - socketFDBytesAvailable = 0; - } - else if (result == 0) - { - LogVerbose(@"%@: read EOF", THIS_METHOD); - - socketError = YES; - socketFDBytesAvailable = 0; - } - else - { - size_t bytesReadFromSocket = result; - - if (socketFDBytesAvailable > bytesReadFromSocket) - socketFDBytesAvailable -= bytesReadFromSocket; - else - socketFDBytesAvailable = 0; - - if (readIntoPreBuffer) - { - [sslPreBuffer didWrite:bytesReadFromSocket]; - - size_t bytesToCopy = MIN(totalBytesLeftToBeRead, bytesReadFromSocket); - - LogVerbose(@"%@: Copying %zu bytes out of sslPreBuffer", THIS_METHOD, bytesToCopy); - - memcpy((uint8_t *)buffer + totalBytesRead, [sslPreBuffer readBuffer], bytesToCopy); - [sslPreBuffer didRead:bytesToCopy]; - - totalBytesRead += bytesToCopy; - totalBytesLeftToBeRead -= bytesToCopy; - - LogVerbose(@"%@: sslPreBuffer.length = %zu", THIS_METHOD, [sslPreBuffer availableBytes]); - } - else - { - totalBytesRead += bytesReadFromSocket; - totalBytesLeftToBeRead -= bytesReadFromSocket; - } - - done = (totalBytesLeftToBeRead == 0); - - if (done) LogVerbose(@"%@: Complete", THIS_METHOD); - } - } - - *bufferLength = totalBytesRead; - - if (done) - return noErr; - - if (socketError) - return errSSLClosedAbort; - - return errSSLWouldBlock; -} - -- (OSStatus)sslWriteWithBuffer:(const void *)buffer length:(size_t *)bufferLength -{ - if (!(flags & kSocketCanAcceptBytes)) - { - // Unable to write. - // - // Need to wait for writeSource to fire and notify us of - // available space in the socket's internal write buffer. - - [self resumeWriteSource]; - - *bufferLength = 0; - return errSSLWouldBlock; - } - - size_t bytesToWrite = *bufferLength; - size_t bytesWritten = 0; - - BOOL done = NO; - BOOL socketError = NO; - - int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; - - ssize_t result = write(socketFD, buffer, bytesToWrite); - - if (result < 0) - { - if (errno != EWOULDBLOCK) - { - socketError = YES; - } - - flags &= ~kSocketCanAcceptBytes; - } - else if (result == 0) - { - flags &= ~kSocketCanAcceptBytes; - } - else - { - bytesWritten = result; - - done = (bytesWritten == bytesToWrite); - } - - *bufferLength = bytesWritten; - - if (done) - return noErr; - - if (socketError) - return errSSLClosedAbort; - - return errSSLWouldBlock; -} - -static OSStatus SSLReadFunction(SSLConnectionRef connection, void *data, size_t *dataLength) -{ - GCDAsyncSocket *asyncSocket = (__bridge GCDAsyncSocket *)connection; - - NSCAssert(dispatch_get_specific(asyncSocket->IsOnSocketQueueOrTargetQueueKey), @"What the deuce?"); - - return [asyncSocket sslReadWithBuffer:data length:dataLength]; -} - -static OSStatus SSLWriteFunction(SSLConnectionRef connection, const void *data, size_t *dataLength) -{ - GCDAsyncSocket *asyncSocket = (__bridge GCDAsyncSocket *)connection; - - NSCAssert(dispatch_get_specific(asyncSocket->IsOnSocketQueueOrTargetQueueKey), @"What the deuce?"); - - return [asyncSocket sslWriteWithBuffer:data length:dataLength]; -} - -- (void)ssl_startTLS -{ - LogTrace(); - - LogVerbose(@"Starting TLS (via SecureTransport)..."); - - OSStatus status; - - GCDAsyncSpecialPacket *tlsPacket = (GCDAsyncSpecialPacket *)currentRead; - if (tlsPacket == nil) // Code to quiet the analyzer - { - NSAssert(NO, @"Logic error"); - - [self closeWithError:[self otherError:@"Logic error"]]; - return; - } - NSDictionary *tlsSettings = tlsPacket->tlsSettings; - - // Create SSLContext, and setup IO callbacks and connection ref - - NSNumber *isServerNumber = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLIsServer]; - BOOL isServer = [isServerNumber boolValue]; - - #if TARGET_OS_IPHONE || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1080) - { - if (isServer) - sslContext = SSLCreateContext(kCFAllocatorDefault, kSSLServerSide, kSSLStreamType); - else - sslContext = SSLCreateContext(kCFAllocatorDefault, kSSLClientSide, kSSLStreamType); - - if (sslContext == NULL) - { - [self closeWithError:[self otherError:@"Error in SSLCreateContext"]]; - return; - } - } - #else // (__MAC_OS_X_VERSION_MIN_REQUIRED < 1080) - { - status = SSLNewContext(isServer, &sslContext); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLNewContext"]]; - return; - } - } - #endif - - status = SSLSetIOFuncs(sslContext, &SSLReadFunction, &SSLWriteFunction); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetIOFuncs"]]; - return; - } - - status = SSLSetConnection(sslContext, (__bridge SSLConnectionRef)self); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetConnection"]]; - return; - } - - - NSNumber *shouldManuallyEvaluateTrust = [tlsSettings objectForKey:GCDAsyncSocketManuallyEvaluateTrust]; - if ([shouldManuallyEvaluateTrust boolValue]) - { - if (isServer) - { - [self closeWithError:[self otherError:@"Manual trust validation is not supported for server sockets"]]; - return; - } - - status = SSLSetSessionOption(sslContext, kSSLSessionOptionBreakOnServerAuth, true); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetSessionOption"]]; - return; - } - - #if !TARGET_OS_IPHONE && (__MAC_OS_X_VERSION_MIN_REQUIRED < 1080) - - // Note from Apple's documentation: - // - // It is only necessary to call SSLSetEnableCertVerify on the Mac prior to OS X 10.8. - // On OS X 10.8 and later setting kSSLSessionOptionBreakOnServerAuth always disables the - // built-in trust evaluation. All versions of iOS behave like OS X 10.8 and thus - // SSLSetEnableCertVerify is not available on that platform at all. - - status = SSLSetEnableCertVerify(sslContext, NO); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetEnableCertVerify"]]; - return; - } - - #endif - } - - // Configure SSLContext from given settings - // - // Checklist: - // 1. kCFStreamSSLPeerName - // 2. kCFStreamSSLCertificates - // 3. GCDAsyncSocketSSLPeerID - // 4. GCDAsyncSocketSSLProtocolVersionMin - // 5. GCDAsyncSocketSSLProtocolVersionMax - // 6. GCDAsyncSocketSSLSessionOptionFalseStart - // 7. GCDAsyncSocketSSLSessionOptionSendOneByteRecord - // 8. GCDAsyncSocketSSLCipherSuites - // 9. GCDAsyncSocketSSLDiffieHellmanParameters (Mac) - // 10. GCDAsyncSocketSSLALPN - // - // Deprecated (throw error): - // 10. kCFStreamSSLAllowsAnyRoot - // 11. kCFStreamSSLAllowsExpiredRoots - // 12. kCFStreamSSLAllowsExpiredCertificates - // 13. kCFStreamSSLValidatesCertificateChain - // 14. kCFStreamSSLLevel - - NSObject *value; - - // 1. kCFStreamSSLPeerName - - value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLPeerName]; - if ([value isKindOfClass:[NSString class]]) - { - NSString *peerName = (NSString *)value; - - const char *peer = [peerName UTF8String]; - size_t peerLen = strlen(peer); - - status = SSLSetPeerDomainName(sslContext, peer, peerLen); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetPeerDomainName"]]; - return; - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for kCFStreamSSLPeerName. Value must be of type NSString."); - - [self closeWithError:[self otherError:@"Invalid value for kCFStreamSSLPeerName."]]; - return; - } - - // 2. kCFStreamSSLCertificates - - value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLCertificates]; - if ([value isKindOfClass:[NSArray class]]) - { - NSArray *certs = (NSArray *)value; - - status = SSLSetCertificate(sslContext, (__bridge CFArrayRef)certs); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetCertificate"]]; - return; - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for kCFStreamSSLCertificates. Value must be of type NSArray."); - - [self closeWithError:[self otherError:@"Invalid value for kCFStreamSSLCertificates."]]; - return; - } - - // 3. GCDAsyncSocketSSLPeerID - - value = [tlsSettings objectForKey:GCDAsyncSocketSSLPeerID]; - if ([value isKindOfClass:[NSData class]]) - { - NSData *peerIdData = (NSData *)value; - - status = SSLSetPeerID(sslContext, [peerIdData bytes], [peerIdData length]); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetPeerID"]]; - return; - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for GCDAsyncSocketSSLPeerID. Value must be of type NSData." - @" (You can convert strings to data using a method like" - @" [string dataUsingEncoding:NSUTF8StringEncoding])"); - - [self closeWithError:[self otherError:@"Invalid value for GCDAsyncSocketSSLPeerID."]]; - return; - } - - // 4. GCDAsyncSocketSSLProtocolVersionMin - - value = [tlsSettings objectForKey:GCDAsyncSocketSSLProtocolVersionMin]; - if ([value isKindOfClass:[NSNumber class]]) - { - SSLProtocol minProtocol = (SSLProtocol)[(NSNumber *)value intValue]; - if (minProtocol != kSSLProtocolUnknown) - { - status = SSLSetProtocolVersionMin(sslContext, minProtocol); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetProtocolVersionMin"]]; - return; - } - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for GCDAsyncSocketSSLProtocolVersionMin. Value must be of type NSNumber."); - - [self closeWithError:[self otherError:@"Invalid value for GCDAsyncSocketSSLProtocolVersionMin."]]; - return; - } - - // 5. GCDAsyncSocketSSLProtocolVersionMax - - value = [tlsSettings objectForKey:GCDAsyncSocketSSLProtocolVersionMax]; - if ([value isKindOfClass:[NSNumber class]]) - { - SSLProtocol maxProtocol = (SSLProtocol)[(NSNumber *)value intValue]; - if (maxProtocol != kSSLProtocolUnknown) - { - status = SSLSetProtocolVersionMax(sslContext, maxProtocol); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetProtocolVersionMax"]]; - return; - } - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for GCDAsyncSocketSSLProtocolVersionMax. Value must be of type NSNumber."); - - [self closeWithError:[self otherError:@"Invalid value for GCDAsyncSocketSSLProtocolVersionMax."]]; - return; - } - - // 6. GCDAsyncSocketSSLSessionOptionFalseStart - - value = [tlsSettings objectForKey:GCDAsyncSocketSSLSessionOptionFalseStart]; - if ([value isKindOfClass:[NSNumber class]]) - { - NSNumber *falseStart = (NSNumber *)value; - status = SSLSetSessionOption(sslContext, kSSLSessionOptionFalseStart, [falseStart boolValue]); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetSessionOption (kSSLSessionOptionFalseStart)"]]; - return; - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for GCDAsyncSocketSSLSessionOptionFalseStart. Value must be of type NSNumber."); - - [self closeWithError:[self otherError:@"Invalid value for GCDAsyncSocketSSLSessionOptionFalseStart."]]; - return; - } - - // 7. GCDAsyncSocketSSLSessionOptionSendOneByteRecord - - value = [tlsSettings objectForKey:GCDAsyncSocketSSLSessionOptionSendOneByteRecord]; - if ([value isKindOfClass:[NSNumber class]]) - { - NSNumber *oneByteRecord = (NSNumber *)value; - status = SSLSetSessionOption(sslContext, kSSLSessionOptionSendOneByteRecord, [oneByteRecord boolValue]); - if (status != noErr) - { - [self closeWithError: - [self otherError:@"Error in SSLSetSessionOption (kSSLSessionOptionSendOneByteRecord)"]]; - return; - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for GCDAsyncSocketSSLSessionOptionSendOneByteRecord." - @" Value must be of type NSNumber."); - - [self closeWithError:[self otherError:@"Invalid value for GCDAsyncSocketSSLSessionOptionSendOneByteRecord."]]; - return; - } - - // 8. GCDAsyncSocketSSLCipherSuites - - value = [tlsSettings objectForKey:GCDAsyncSocketSSLCipherSuites]; - if ([value isKindOfClass:[NSArray class]]) - { - NSArray *cipherSuites = (NSArray *)value; - NSUInteger numberCiphers = [cipherSuites count]; - SSLCipherSuite ciphers[numberCiphers]; - - NSUInteger cipherIndex; - for (cipherIndex = 0; cipherIndex < numberCiphers; cipherIndex++) - { - NSNumber *cipherObject = [cipherSuites objectAtIndex:cipherIndex]; - ciphers[cipherIndex] = (SSLCipherSuite)[cipherObject unsignedIntValue]; - } - - status = SSLSetEnabledCiphers(sslContext, ciphers, numberCiphers); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetEnabledCiphers"]]; - return; - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for GCDAsyncSocketSSLCipherSuites. Value must be of type NSArray."); - - [self closeWithError:[self otherError:@"Invalid value for GCDAsyncSocketSSLCipherSuites."]]; - return; - } - - // 9. GCDAsyncSocketSSLDiffieHellmanParameters - - #if !TARGET_OS_IPHONE - value = [tlsSettings objectForKey:GCDAsyncSocketSSLDiffieHellmanParameters]; - if ([value isKindOfClass:[NSData class]]) - { - NSData *diffieHellmanData = (NSData *)value; - - status = SSLSetDiffieHellmanParams(sslContext, [diffieHellmanData bytes], [diffieHellmanData length]); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetDiffieHellmanParams"]]; - return; - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for GCDAsyncSocketSSLDiffieHellmanParameters. Value must be of type NSData."); - - [self closeWithError:[self otherError:@"Invalid value for GCDAsyncSocketSSLDiffieHellmanParameters."]]; - return; - } - #endif - - // 10. kCFStreamSSLCertificates - value = [tlsSettings objectForKey:GCDAsyncSocketSSLALPN]; - if ([value isKindOfClass:[NSArray class]]) - { - if (@available(iOS 11.0, macOS 10.13, tvOS 11.0, *)) - { - CFArrayRef protocols = (__bridge CFArrayRef)((NSArray *) value); - status = SSLSetALPNProtocols(sslContext, protocols); - if (status != noErr) - { - [self closeWithError:[self otherError:@"Error in SSLSetALPNProtocols"]]; - return; - } - } - else - { - NSAssert(NO, @"Security option unavailable - GCDAsyncSocketSSLALPN" - @" - iOS 11.0, macOS 10.13 required"); - [self closeWithError:[self otherError:@"Security option unavailable - GCDAsyncSocketSSLALPN"]]; - } - } - else if (value) - { - NSAssert(NO, @"Invalid value for GCDAsyncSocketSSLALPN. Value must be of type NSArray."); - - [self closeWithError:[self otherError:@"Invalid value for GCDAsyncSocketSSLALPN."]]; - return; - } - - // DEPRECATED checks - - // 10. kCFStreamSSLAllowsAnyRoot - - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wdeprecated-declarations" - value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLAllowsAnyRoot]; - #pragma clang diagnostic pop - if (value) - { - NSAssert(NO, @"Security option unavailable - kCFStreamSSLAllowsAnyRoot" - @" - You must use manual trust evaluation"); - - [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLAllowsAnyRoot"]]; - return; - } - - // 11. kCFStreamSSLAllowsExpiredRoots - - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wdeprecated-declarations" - value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLAllowsExpiredRoots]; - #pragma clang diagnostic pop - if (value) - { - NSAssert(NO, @"Security option unavailable - kCFStreamSSLAllowsExpiredRoots" - @" - You must use manual trust evaluation"); - - [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLAllowsExpiredRoots"]]; - return; - } - - // 12. kCFStreamSSLValidatesCertificateChain - - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wdeprecated-declarations" - value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLValidatesCertificateChain]; - #pragma clang diagnostic pop - if (value) - { - NSAssert(NO, @"Security option unavailable - kCFStreamSSLValidatesCertificateChain" - @" - You must use manual trust evaluation"); - - [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLValidatesCertificateChain"]]; - return; - } - - // 13. kCFStreamSSLAllowsExpiredCertificates - - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wdeprecated-declarations" - value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLAllowsExpiredCertificates]; - #pragma clang diagnostic pop - if (value) - { - NSAssert(NO, @"Security option unavailable - kCFStreamSSLAllowsExpiredCertificates" - @" - You must use manual trust evaluation"); - - [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLAllowsExpiredCertificates"]]; - return; - } - - // 14. kCFStreamSSLLevel - - #pragma clang diagnostic push - #pragma clang diagnostic ignored "-Wdeprecated-declarations" - value = [tlsSettings objectForKey:(__bridge NSString *)kCFStreamSSLLevel]; - #pragma clang diagnostic pop - if (value) - { - NSAssert(NO, @"Security option unavailable - kCFStreamSSLLevel" - @" - You must use GCDAsyncSocketSSLProtocolVersionMin & GCDAsyncSocketSSLProtocolVersionMax"); - - [self closeWithError:[self otherError:@"Security option unavailable - kCFStreamSSLLevel"]]; - return; - } - - // Setup the sslPreBuffer - // - // Any data in the preBuffer needs to be moved into the sslPreBuffer, - // as this data is now part of the secure read stream. - - sslPreBuffer = [[GCDAsyncSocketPreBuffer alloc] initWithCapacity:(1024 * 4)]; - - size_t preBufferLength = [preBuffer availableBytes]; - - if (preBufferLength > 0) - { - [sslPreBuffer ensureCapacityForWrite:preBufferLength]; - - memcpy([sslPreBuffer writeBuffer], [preBuffer readBuffer], preBufferLength); - [preBuffer didRead:preBufferLength]; - [sslPreBuffer didWrite:preBufferLength]; - } - - sslErrCode = lastSSLHandshakeError = noErr; - - // Start the SSL Handshake process - - [self ssl_continueSSLHandshake]; -} - -- (void)ssl_continueSSLHandshake -{ - LogTrace(); - - // If the return value is noErr, the session is ready for normal secure communication. - // If the return value is errSSLWouldBlock, the SSLHandshake function must be called again. - // If the return value is errSSLServerAuthCompleted, we ask delegate if we should trust the - // server and then call SSLHandshake again to resume the handshake or close the connection - // errSSLPeerBadCert SSL error. - // Otherwise, the return value indicates an error code. - - OSStatus status = SSLHandshake(sslContext); - lastSSLHandshakeError = status; - - if (status == noErr) - { - LogVerbose(@"SSLHandshake complete"); - - flags &= ~kStartingReadTLS; - flags &= ~kStartingWriteTLS; - - flags |= kSocketSecure; - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socketDidSecure:)]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socketDidSecure:self]; - }}); - } - - [self endCurrentRead]; - [self endCurrentWrite]; - - [self maybeDequeueRead]; - [self maybeDequeueWrite]; - } - else if (status == errSSLPeerAuthCompleted) - { - LogVerbose(@"SSLHandshake peerAuthCompleted - awaiting delegate approval"); - - __block SecTrustRef trust = NULL; - status = SSLCopyPeerTrust(sslContext, &trust); - if (status != noErr) - { - [self closeWithError:[self sslError:status]]; - return; - } - - int aStateIndex = stateIndex; - dispatch_queue_t theSocketQueue = socketQueue; - - __weak GCDAsyncSocket *weakSelf = self; - - void (^comletionHandler)(BOOL) = ^(BOOL shouldTrust){ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - dispatch_async(theSocketQueue, ^{ @autoreleasepool { - - if (trust) { - CFRelease(trust); - trust = NULL; - } - - __strong GCDAsyncSocket *strongSelf = weakSelf; - if (strongSelf) - { - [strongSelf ssl_shouldTrustPeer:shouldTrust stateIndex:aStateIndex]; - } - }}); - - #pragma clang diagnostic pop - }}; - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socket:didReceiveTrust:completionHandler:)]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socket:self didReceiveTrust:trust completionHandler:comletionHandler]; - }}); - } - else - { - if (trust) { - CFRelease(trust); - trust = NULL; - } - - NSString *msg = @"GCDAsyncSocketManuallyEvaluateTrust specified in tlsSettings," - @" but delegate doesn't implement socket:shouldTrustPeer:"; - - [self closeWithError:[self otherError:msg]]; - return; - } - } - else if (status == errSSLWouldBlock) - { - LogVerbose(@"SSLHandshake continues..."); - - // Handshake continues... - // - // This method will be called again from doReadData or doWriteData. - } - else - { - [self closeWithError:[self sslError:status]]; - } -} - -- (void)ssl_shouldTrustPeer:(BOOL)shouldTrust stateIndex:(int)aStateIndex -{ - LogTrace(); - - if (aStateIndex != stateIndex) - { - LogInfo(@"Ignoring ssl_shouldTrustPeer - invalid state (maybe disconnected)"); - - // One of the following is true - // - the socket was disconnected - // - the startTLS operation timed out - // - the completionHandler was already invoked once - - return; - } - - // Increment stateIndex to ensure completionHandler can only be called once. - stateIndex++; - - if (shouldTrust) - { - NSAssert(lastSSLHandshakeError == errSSLPeerAuthCompleted, @"ssl_shouldTrustPeer called when last error is %d and not errSSLPeerAuthCompleted", (int)lastSSLHandshakeError); - [self ssl_continueSSLHandshake]; - } - else - { - [self closeWithError:[self sslError:errSSLPeerBadCert]]; - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Security via CFStream -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -#if TARGET_OS_IPHONE - -- (void)cf_finishSSLHandshake -{ - LogTrace(); - - if ((flags & kStartingReadTLS) && (flags & kStartingWriteTLS)) - { - flags &= ~kStartingReadTLS; - flags &= ~kStartingWriteTLS; - - flags |= kSocketSecure; - - __strong id theDelegate = delegate; - - if (delegateQueue && [theDelegate respondsToSelector:@selector(socketDidSecure:)]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate socketDidSecure:self]; - }}); - } - - [self endCurrentRead]; - [self endCurrentWrite]; - - [self maybeDequeueRead]; - [self maybeDequeueWrite]; - } -} - -- (void)cf_abortSSLHandshake:(NSError *)error -{ - LogTrace(); - - if ((flags & kStartingReadTLS) && (flags & kStartingWriteTLS)) - { - flags &= ~kStartingReadTLS; - flags &= ~kStartingWriteTLS; - - [self closeWithError:error]; - } -} - -- (void)cf_startTLS -{ - LogTrace(); - - LogVerbose(@"Starting TLS (via CFStream)..."); - - if ([preBuffer availableBytes] > 0) - { - NSString *msg = @"Invalid TLS transition. Handshake has already been read from socket."; - - [self closeWithError:[self otherError:msg]]; - return; - } - - [self suspendReadSource]; - [self suspendWriteSource]; - - socketFDBytesAvailable = 0; - flags &= ~kSocketCanAcceptBytes; - flags &= ~kSecureSocketHasBytesAvailable; - - flags |= kUsingCFStreamForTLS; - - if (![self createReadAndWriteStream]) - { - [self closeWithError:[self otherError:@"Error in CFStreamCreatePairWithSocket"]]; - return; - } - - if (![self registerForStreamCallbacksIncludingReadWrite:YES]) - { - [self closeWithError:[self otherError:@"Error in CFStreamSetClient"]]; - return; - } - - if (![self addStreamsToRunLoop]) - { - [self closeWithError:[self otherError:@"Error in CFStreamScheduleWithRunLoop"]]; - return; - } - - NSAssert([currentRead isKindOfClass:[GCDAsyncSpecialPacket class]], @"Invalid read packet for startTLS"); - NSAssert([currentWrite isKindOfClass:[GCDAsyncSpecialPacket class]], @"Invalid write packet for startTLS"); - - GCDAsyncSpecialPacket *tlsPacket = (GCDAsyncSpecialPacket *)currentRead; - CFDictionaryRef tlsSettings = (__bridge CFDictionaryRef)tlsPacket->tlsSettings; - - // Getting an error concerning kCFStreamPropertySSLSettings ? - // You need to add the CFNetwork framework to your iOS application. - - BOOL r1 = CFReadStreamSetProperty(readStream, kCFStreamPropertySSLSettings, tlsSettings); - BOOL r2 = CFWriteStreamSetProperty(writeStream, kCFStreamPropertySSLSettings, tlsSettings); - - // For some reason, starting around the time of iOS 4.3, - // the first call to set the kCFStreamPropertySSLSettings will return true, - // but the second will return false. - // - // Order doesn't seem to matter. - // So you could call CFReadStreamSetProperty and then CFWriteStreamSetProperty, or you could reverse the order. - // Either way, the first call will return true, and the second returns false. - // - // Interestingly, this doesn't seem to affect anything. - // Which is not altogether unusual, as the documentation seems to suggest that (for many settings) - // setting it on one side of the stream automatically sets it for the other side of the stream. - // - // Although there isn't anything in the documentation to suggest that the second attempt would fail. - // - // Furthermore, this only seems to affect streams that are negotiating a security upgrade. - // In other words, the socket gets connected, there is some back-and-forth communication over the unsecure - // connection, and then a startTLS is issued. - // So this mostly affects newer protocols (XMPP, IMAP) as opposed to older protocols (HTTPS). - - if (!r1 && !r2) // Yes, the && is correct - workaround for apple bug. - { - [self closeWithError:[self otherError:@"Error in CFStreamSetProperty"]]; - return; - } - - if (![self openStreams]) - { - [self closeWithError:[self otherError:@"Error in CFStreamOpen"]]; - return; - } - - LogVerbose(@"Waiting for SSL Handshake to complete..."); -} - -#endif - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark CFStream -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -#if TARGET_OS_IPHONE - -+ (void)ignore:(id)_ -{} - -+ (void)startCFStreamThreadIfNeeded -{ - LogTrace(); - - static dispatch_once_t predicate; - dispatch_once(&predicate, ^{ - - cfstreamThreadRetainCount = 0; - cfstreamThreadSetupQueue = dispatch_queue_create("GCDAsyncSocket-CFStreamThreadSetup", DISPATCH_QUEUE_SERIAL); - }); - - dispatch_sync(cfstreamThreadSetupQueue, ^{ @autoreleasepool { - - if (++cfstreamThreadRetainCount == 1) - { - cfstreamThread = [[NSThread alloc] initWithTarget:self - selector:@selector(cfstreamThread:) - object:nil]; - [cfstreamThread start]; - } - }}); -} - -+ (void)stopCFStreamThreadIfNeeded -{ - LogTrace(); - - // The creation of the cfstreamThread is relatively expensive. - // So we'd like to keep it available for recycling. - // However, there's a tradeoff here, because it shouldn't remain alive forever. - // So what we're going to do is use a little delay before taking it down. - // This way it can be reused properly in situations where multiple sockets are continually in flux. - - int delayInSeconds = 30; - dispatch_time_t when = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC)); - dispatch_after(when, cfstreamThreadSetupQueue, ^{ @autoreleasepool { - #pragma clang diagnostic push - #pragma clang diagnostic warning "-Wimplicit-retain-self" - - if (cfstreamThreadRetainCount == 0) - { - LogWarn(@"Logic error concerning cfstreamThread start / stop"); - return_from_block; - } - - if (--cfstreamThreadRetainCount == 0) - { - [cfstreamThread cancel]; // set isCancelled flag - - // wake up the thread - [[self class] performSelector:@selector(ignore:) - onThread:cfstreamThread - withObject:[NSNull null] - waitUntilDone:NO]; - - cfstreamThread = nil; - } - - #pragma clang diagnostic pop - }}); -} - -+ (void)cfstreamThread:(id)unused { @autoreleasepool -{ - [[NSThread currentThread] setName:GCDAsyncSocketThreadName]; - - LogInfo(@"CFStreamThread: Started"); - - // We can't run the run loop unless it has an associated input source or a timer. - // So we'll just create a timer that will never fire - unless the server runs for decades. - [NSTimer scheduledTimerWithTimeInterval:[[NSDate distantFuture] timeIntervalSinceNow] - target:self - selector:@selector(ignore:) - userInfo:nil - repeats:YES]; - - NSThread *currentThread = [NSThread currentThread]; - NSRunLoop *currentRunLoop = [NSRunLoop currentRunLoop]; - - BOOL isCancelled = [currentThread isCancelled]; - - while (!isCancelled && [currentRunLoop runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]]) - { - isCancelled = [currentThread isCancelled]; - } - - LogInfo(@"CFStreamThread: Stopped"); -}} - -+ (void)scheduleCFStreams:(GCDAsyncSocket *)asyncSocket -{ - LogTrace(); - NSAssert([NSThread currentThread] == cfstreamThread, @"Invoked on wrong thread"); - - CFRunLoopRef runLoop = CFRunLoopGetCurrent(); - - if (asyncSocket->readStream) - CFReadStreamScheduleWithRunLoop(asyncSocket->readStream, runLoop, kCFRunLoopDefaultMode); - - if (asyncSocket->writeStream) - CFWriteStreamScheduleWithRunLoop(asyncSocket->writeStream, runLoop, kCFRunLoopDefaultMode); -} - -+ (void)unscheduleCFStreams:(GCDAsyncSocket *)asyncSocket -{ - LogTrace(); - NSAssert([NSThread currentThread] == cfstreamThread, @"Invoked on wrong thread"); - - CFRunLoopRef runLoop = CFRunLoopGetCurrent(); - - if (asyncSocket->readStream) - CFReadStreamUnscheduleFromRunLoop(asyncSocket->readStream, runLoop, kCFRunLoopDefaultMode); - - if (asyncSocket->writeStream) - CFWriteStreamUnscheduleFromRunLoop(asyncSocket->writeStream, runLoop, kCFRunLoopDefaultMode); -} - -static void CFReadStreamCallback (CFReadStreamRef stream, CFStreamEventType type, void *pInfo) -{ - GCDAsyncSocket *asyncSocket = (__bridge GCDAsyncSocket *)pInfo; - - switch(type) - { - case kCFStreamEventHasBytesAvailable: - { - dispatch_async(asyncSocket->socketQueue, ^{ @autoreleasepool { - - LogCVerbose(@"CFReadStreamCallback - HasBytesAvailable"); - - if (asyncSocket->readStream != stream) - return_from_block; - - if ((asyncSocket->flags & kStartingReadTLS) && (asyncSocket->flags & kStartingWriteTLS)) - { - // If we set kCFStreamPropertySSLSettings before we opened the streams, this might be a lie. - // (A callback related to the tcp stream, but not to the SSL layer). - - if (CFReadStreamHasBytesAvailable(asyncSocket->readStream)) - { - asyncSocket->flags |= kSecureSocketHasBytesAvailable; - [asyncSocket cf_finishSSLHandshake]; - } - } - else - { - asyncSocket->flags |= kSecureSocketHasBytesAvailable; - [asyncSocket doReadData]; - } - }}); - - break; - } - default: - { - NSError *error = (__bridge_transfer NSError *)CFReadStreamCopyError(stream); - - if (error == nil && type == kCFStreamEventEndEncountered) - { - error = [asyncSocket connectionClosedError]; - } - - dispatch_async(asyncSocket->socketQueue, ^{ @autoreleasepool { - - LogCVerbose(@"CFReadStreamCallback - Other"); - - if (asyncSocket->readStream != stream) - return_from_block; - - if ((asyncSocket->flags & kStartingReadTLS) && (asyncSocket->flags & kStartingWriteTLS)) - { - [asyncSocket cf_abortSSLHandshake:error]; - } - else - { - [asyncSocket closeWithError:error]; - } - }}); - - break; - } - } - -} - -static void CFWriteStreamCallback (CFWriteStreamRef stream, CFStreamEventType type, void *pInfo) -{ - GCDAsyncSocket *asyncSocket = (__bridge GCDAsyncSocket *)pInfo; - - switch(type) - { - case kCFStreamEventCanAcceptBytes: - { - dispatch_async(asyncSocket->socketQueue, ^{ @autoreleasepool { - - LogCVerbose(@"CFWriteStreamCallback - CanAcceptBytes"); - - if (asyncSocket->writeStream != stream) - return_from_block; - - if ((asyncSocket->flags & kStartingReadTLS) && (asyncSocket->flags & kStartingWriteTLS)) - { - // If we set kCFStreamPropertySSLSettings before we opened the streams, this might be a lie. - // (A callback related to the tcp stream, but not to the SSL layer). - - if (CFWriteStreamCanAcceptBytes(asyncSocket->writeStream)) - { - asyncSocket->flags |= kSocketCanAcceptBytes; - [asyncSocket cf_finishSSLHandshake]; - } - } - else - { - asyncSocket->flags |= kSocketCanAcceptBytes; - [asyncSocket doWriteData]; - } - }}); - - break; - } - default: - { - NSError *error = (__bridge_transfer NSError *)CFWriteStreamCopyError(stream); - - if (error == nil && type == kCFStreamEventEndEncountered) - { - error = [asyncSocket connectionClosedError]; - } - - dispatch_async(asyncSocket->socketQueue, ^{ @autoreleasepool { - - LogCVerbose(@"CFWriteStreamCallback - Other"); - - if (asyncSocket->writeStream != stream) - return_from_block; - - if ((asyncSocket->flags & kStartingReadTLS) && (asyncSocket->flags & kStartingWriteTLS)) - { - [asyncSocket cf_abortSSLHandshake:error]; - } - else - { - [asyncSocket closeWithError:error]; - } - }}); - - break; - } - } - -} - -- (BOOL)createReadAndWriteStream -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - - if (readStream || writeStream) - { - // Streams already created - return YES; - } - - int socketFD = (socket4FD != SOCKET_NULL) ? socket4FD : (socket6FD != SOCKET_NULL) ? socket6FD : socketUN; - - if (socketFD == SOCKET_NULL) - { - // Cannot create streams without a file descriptor - return NO; - } - - if (![self isConnected]) - { - // Cannot create streams until file descriptor is connected - return NO; - } - - LogVerbose(@"Creating read and write stream..."); - - CFStreamCreatePairWithSocket(NULL, (CFSocketNativeHandle)socketFD, &readStream, &writeStream); - - // The kCFStreamPropertyShouldCloseNativeSocket property should be false by default (for our case). - // But let's not take any chances. - - if (readStream) - CFReadStreamSetProperty(readStream, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); - if (writeStream) - CFWriteStreamSetProperty(writeStream, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); - - if ((readStream == NULL) || (writeStream == NULL)) - { - LogWarn(@"Unable to create read and write stream..."); - - if (readStream) - { - CFReadStreamClose(readStream); - CFRelease(readStream); - readStream = NULL; - } - if (writeStream) - { - CFWriteStreamClose(writeStream); - CFRelease(writeStream); - writeStream = NULL; - } - - return NO; - } - - return YES; -} - -- (BOOL)registerForStreamCallbacksIncludingReadWrite:(BOOL)includeReadWrite -{ - LogVerbose(@"%@ %@", THIS_METHOD, (includeReadWrite ? @"YES" : @"NO")); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert((readStream != NULL && writeStream != NULL), @"Read/Write stream is null"); - - streamContext.version = 0; - streamContext.info = (__bridge void *)(self); - streamContext.retain = nil; - streamContext.release = nil; - streamContext.copyDescription = nil; - - CFOptionFlags readStreamEvents = kCFStreamEventErrorOccurred | kCFStreamEventEndEncountered; - if (includeReadWrite) - readStreamEvents |= kCFStreamEventHasBytesAvailable; - - if (!CFReadStreamSetClient(readStream, readStreamEvents, &CFReadStreamCallback, &streamContext)) - { - return NO; - } - - CFOptionFlags writeStreamEvents = kCFStreamEventErrorOccurred | kCFStreamEventEndEncountered; - if (includeReadWrite) - writeStreamEvents |= kCFStreamEventCanAcceptBytes; - - if (!CFWriteStreamSetClient(writeStream, writeStreamEvents, &CFWriteStreamCallback, &streamContext)) - { - return NO; - } - - return YES; -} - -- (BOOL)addStreamsToRunLoop -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert((readStream != NULL && writeStream != NULL), @"Read/Write stream is null"); - - if (!(flags & kAddedStreamsToRunLoop)) - { - LogVerbose(@"Adding streams to runloop..."); - - [[self class] startCFStreamThreadIfNeeded]; - dispatch_sync(cfstreamThreadSetupQueue, ^{ - [[self class] performSelector:@selector(scheduleCFStreams:) - onThread:cfstreamThread - withObject:self - waitUntilDone:YES]; - }); - flags |= kAddedStreamsToRunLoop; - } - - return YES; -} - -- (void)removeStreamsFromRunLoop -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert((readStream != NULL && writeStream != NULL), @"Read/Write stream is null"); - - if (flags & kAddedStreamsToRunLoop) - { - LogVerbose(@"Removing streams from runloop..."); - - dispatch_sync(cfstreamThreadSetupQueue, ^{ - [[self class] performSelector:@selector(unscheduleCFStreams:) - onThread:cfstreamThread - withObject:self - waitUntilDone:YES]; - }); - [[self class] stopCFStreamThreadIfNeeded]; - - flags &= ~kAddedStreamsToRunLoop; - } -} - -- (BOOL)openStreams -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert((readStream != NULL && writeStream != NULL), @"Read/Write stream is null"); - - CFStreamStatus readStatus = CFReadStreamGetStatus(readStream); - CFStreamStatus writeStatus = CFWriteStreamGetStatus(writeStream); - - if ((readStatus == kCFStreamStatusNotOpen) || (writeStatus == kCFStreamStatusNotOpen)) - { - LogVerbose(@"Opening read and write stream..."); - - BOOL r1 = CFReadStreamOpen(readStream); - BOOL r2 = CFWriteStreamOpen(writeStream); - - if (!r1 || !r2) - { - LogError(@"Error in CFStreamOpen"); - return NO; - } - } - - return YES; -} - -#endif - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Advanced -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * See header file for big discussion of this method. -**/ -- (BOOL)autoDisconnectOnClosedReadStream -{ - // Note: YES means kAllowHalfDuplexConnection is OFF - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return ((config & kAllowHalfDuplexConnection) == 0); - } - else - { - __block BOOL result; - - dispatch_sync(socketQueue, ^{ - result = ((self->config & kAllowHalfDuplexConnection) == 0); - }); - - return result; - } -} - -/** - * See header file for big discussion of this method. -**/ -- (void)setAutoDisconnectOnClosedReadStream:(BOOL)flag -{ - // Note: YES means kAllowHalfDuplexConnection is OFF - - dispatch_block_t block = ^{ - - if (flag) - self->config &= ~kAllowHalfDuplexConnection; - else - self->config |= kAllowHalfDuplexConnection; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - - -/** - * See header file for big discussion of this method. -**/ -- (void)markSocketQueueTargetQueue:(dispatch_queue_t)socketNewTargetQueue -{ - void *nonNullUnusedPointer = (__bridge void *)self; - dispatch_queue_set_specific(socketNewTargetQueue, IsOnSocketQueueOrTargetQueueKey, nonNullUnusedPointer, NULL); -} - -/** - * See header file for big discussion of this method. -**/ -- (void)unmarkSocketQueueTargetQueue:(dispatch_queue_t)socketOldTargetQueue -{ - dispatch_queue_set_specific(socketOldTargetQueue, IsOnSocketQueueOrTargetQueueKey, NULL, NULL); -} - -/** - * See header file for big discussion of this method. -**/ -- (void)performBlock:(dispatch_block_t)block -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); -} - -/** - * Questions? Have you read the header file? -**/ -- (int)socketFD -{ - if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); - return SOCKET_NULL; - } - - if (socket4FD != SOCKET_NULL) - return socket4FD; - else - return socket6FD; -} - -/** - * Questions? Have you read the header file? -**/ -- (int)socket4FD -{ - if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); - return SOCKET_NULL; - } - - return socket4FD; -} - -/** - * Questions? Have you read the header file? -**/ -- (int)socket6FD -{ - if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); - return SOCKET_NULL; - } - - return socket6FD; -} - -#if TARGET_OS_IPHONE - -/** - * Questions? Have you read the header file? -**/ -- (CFReadStreamRef)readStream -{ - if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); - return NULL; - } - - if (readStream == NULL) - [self createReadAndWriteStream]; - - return readStream; -} - -/** - * Questions? Have you read the header file? -**/ -- (CFWriteStreamRef)writeStream -{ - if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); - return NULL; - } - - if (writeStream == NULL) - [self createReadAndWriteStream]; - - return writeStream; -} - -- (BOOL)enableBackgroundingOnSocketWithCaveat:(BOOL)caveat -{ - if (![self createReadAndWriteStream]) - { - // Error occurred creating streams (perhaps socket isn't open) - return NO; - } - - BOOL r1, r2; - - LogVerbose(@"Enabling backgrouding on socket"); - -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wdeprecated-declarations" - r1 = CFReadStreamSetProperty(readStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); - r2 = CFWriteStreamSetProperty(writeStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); -#pragma clang diagnostic pop - - if (!r1 || !r2) - { - return NO; - } - - if (!caveat) - { - if (![self openStreams]) - { - return NO; - } - } - - return YES; -} - -/** - * Questions? Have you read the header file? -**/ -- (BOOL)enableBackgroundingOnSocket -{ - LogTrace(); - - if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); - return NO; - } - - return [self enableBackgroundingOnSocketWithCaveat:NO]; -} - -- (BOOL)enableBackgroundingOnSocketWithCaveat // Deprecated in iOS 4.??? -{ - // This method was created as a workaround for a bug in iOS. - // Apple has since fixed this bug. - // I'm not entirely sure which version of iOS they fixed it in... - - LogTrace(); - - if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); - return NO; - } - - return [self enableBackgroundingOnSocketWithCaveat:YES]; -} - -#endif - -- (SSLContextRef)sslContext -{ - if (!dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@ - Method only available from within the context of a performBlock: invocation", THIS_METHOD); - return NULL; - } - - return sslContext; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Class Utilities -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -+ (NSMutableArray *)lookupHost:(NSString *)host port:(uint16_t)port error:(NSError **)errPtr -{ - LogTrace(); - - NSMutableArray *addresses = nil; - NSError *error = nil; - - if ([host isEqualToString:@"localhost"] || [host isEqualToString:@"loopback"]) - { - // Use LOOPBACK address - struct sockaddr_in nativeAddr4; - nativeAddr4.sin_len = sizeof(struct sockaddr_in); - nativeAddr4.sin_family = AF_INET; - nativeAddr4.sin_port = htons(port); - nativeAddr4.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - memset(&(nativeAddr4.sin_zero), 0, sizeof(nativeAddr4.sin_zero)); - - struct sockaddr_in6 nativeAddr6; - nativeAddr6.sin6_len = sizeof(struct sockaddr_in6); - nativeAddr6.sin6_family = AF_INET6; - nativeAddr6.sin6_port = htons(port); - nativeAddr6.sin6_flowinfo = 0; - nativeAddr6.sin6_addr = in6addr_loopback; - nativeAddr6.sin6_scope_id = 0; - - // Wrap the native address structures - - NSData *address4 = [NSData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; - NSData *address6 = [NSData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; - - addresses = [NSMutableArray arrayWithCapacity:2]; - [addresses addObject:address4]; - [addresses addObject:address6]; - } - else - { - NSString *portStr = [NSString stringWithFormat:@"%hu", port]; - - struct addrinfo hints, *res, *res0; - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = PF_UNSPEC; - hints.ai_socktype = SOCK_STREAM; - hints.ai_protocol = IPPROTO_TCP; - - int gai_error = getaddrinfo([host UTF8String], [portStr UTF8String], &hints, &res0); - - if (gai_error) - { - error = [self gaiError:gai_error]; - } - else - { - NSUInteger capacity = 0; - for (res = res0; res; res = res->ai_next) - { - if (res->ai_family == AF_INET || res->ai_family == AF_INET6) { - capacity++; - } - } - - addresses = [NSMutableArray arrayWithCapacity:capacity]; - - for (res = res0; res; res = res->ai_next) - { - if (res->ai_family == AF_INET) - { - // Found IPv4 address. - // Wrap the native address structure, and add to results. - - NSData *address4 = [NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]; - [addresses addObject:address4]; - } - else if (res->ai_family == AF_INET6) - { - // Fixes connection issues with IPv6 - // https://github.com/robbiehanson/CocoaAsyncSocket/issues/429#issuecomment-222477158 - - // Found IPv6 address. - // Wrap the native address structure, and add to results. - - struct sockaddr_in6 *sockaddr = (struct sockaddr_in6 *)(void *)res->ai_addr; - in_port_t *portPtr = &sockaddr->sin6_port; - if ((portPtr != NULL) && (*portPtr == 0)) { - *portPtr = htons(port); - } - - NSData *address6 = [NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]; - [addresses addObject:address6]; - } - } - freeaddrinfo(res0); - - if ([addresses count] == 0) - { - error = [self gaiError:EAI_FAIL]; - } - } - } - - if (errPtr) *errPtr = error; - return addresses; -} - -+ (NSString *)hostFromSockaddr4:(const struct sockaddr_in *)pSockaddr4 -{ - char addrBuf[INET_ADDRSTRLEN]; - - if (inet_ntop(AF_INET, &pSockaddr4->sin_addr, addrBuf, (socklen_t)sizeof(addrBuf)) == NULL) - { - addrBuf[0] = '\0'; - } - - return [NSString stringWithCString:addrBuf encoding:NSASCIIStringEncoding]; -} - -+ (NSString *)hostFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6 -{ - char addrBuf[INET6_ADDRSTRLEN]; - - if (inet_ntop(AF_INET6, &pSockaddr6->sin6_addr, addrBuf, (socklen_t)sizeof(addrBuf)) == NULL) - { - addrBuf[0] = '\0'; - } - - return [NSString stringWithCString:addrBuf encoding:NSASCIIStringEncoding]; -} - -+ (uint16_t)portFromSockaddr4:(const struct sockaddr_in *)pSockaddr4 -{ - return ntohs(pSockaddr4->sin_port); -} - -+ (uint16_t)portFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6 -{ - return ntohs(pSockaddr6->sin6_port); -} - -+ (NSURL *)urlFromSockaddrUN:(const struct sockaddr_un *)pSockaddr -{ - NSString *path = [NSString stringWithUTF8String:pSockaddr->sun_path]; - return [NSURL fileURLWithPath:path]; -} - -+ (NSString *)hostFromAddress:(NSData *)address -{ - NSString *host; - - if ([self getHost:&host port:NULL fromAddress:address]) - return host; - else - return nil; -} - -+ (uint16_t)portFromAddress:(NSData *)address -{ - uint16_t port; - - if ([self getHost:NULL port:&port fromAddress:address]) - return port; - else - return 0; -} - -+ (BOOL)isIPv4Address:(NSData *)address -{ - if ([address length] >= sizeof(struct sockaddr)) - { - const struct sockaddr *sockaddrX = [address bytes]; - - if (sockaddrX->sa_family == AF_INET) { - return YES; - } - } - - return NO; -} - -+ (BOOL)isIPv6Address:(NSData *)address -{ - if ([address length] >= sizeof(struct sockaddr)) - { - const struct sockaddr *sockaddrX = [address bytes]; - - if (sockaddrX->sa_family == AF_INET6) { - return YES; - } - } - - return NO; -} - -+ (BOOL)getHost:(NSString **)hostPtr port:(uint16_t *)portPtr fromAddress:(NSData *)address -{ - return [self getHost:hostPtr port:portPtr family:NULL fromAddress:address]; -} - -+ (BOOL)getHost:(NSString **)hostPtr port:(uint16_t *)portPtr family:(sa_family_t *)afPtr fromAddress:(NSData *)address -{ - if ([address length] >= sizeof(struct sockaddr)) - { - const struct sockaddr *sockaddrX = [address bytes]; - - if (sockaddrX->sa_family == AF_INET) - { - if ([address length] >= sizeof(struct sockaddr_in)) - { - struct sockaddr_in sockaddr4; - memcpy(&sockaddr4, sockaddrX, sizeof(sockaddr4)); - - if (hostPtr) *hostPtr = [self hostFromSockaddr4:&sockaddr4]; - if (portPtr) *portPtr = [self portFromSockaddr4:&sockaddr4]; - if (afPtr) *afPtr = AF_INET; - - return YES; - } - } - else if (sockaddrX->sa_family == AF_INET6) - { - if ([address length] >= sizeof(struct sockaddr_in6)) - { - struct sockaddr_in6 sockaddr6; - memcpy(&sockaddr6, sockaddrX, sizeof(sockaddr6)); - - if (hostPtr) *hostPtr = [self hostFromSockaddr6:&sockaddr6]; - if (portPtr) *portPtr = [self portFromSockaddr6:&sockaddr6]; - if (afPtr) *afPtr = AF_INET6; - - return YES; - } - } - } - - return NO; -} - -+ (NSData *)CRLFData -{ - return [NSData dataWithBytes:"\x0D\x0A" length:2]; -} - -+ (NSData *)CRData -{ - return [NSData dataWithBytes:"\x0D" length:1]; -} - -+ (NSData *)LFData -{ - return [NSData dataWithBytes:"\x0A" length:1]; -} - -+ (NSData *)ZeroData -{ - return [NSData dataWithBytes:"" length:1]; -} - -@end diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncUdpSocket.h b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncUdpSocket.h deleted file mode 100644 index af327e0..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncUdpSocket.h +++ /dev/null @@ -1,1036 +0,0 @@ -// -// GCDAsyncUdpSocket -// -// This class is in the public domain. -// Originally created by Robbie Hanson of Deusty LLC. -// Updated and maintained by Deusty LLC and the Apple development community. -// -// https://github.com/robbiehanson/CocoaAsyncSocket -// - -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN -extern NSString *const GCDAsyncUdpSocketException; -extern NSString *const GCDAsyncUdpSocketErrorDomain; - -extern NSString *const GCDAsyncUdpSocketQueueName; -extern NSString *const GCDAsyncUdpSocketThreadName; - -typedef NS_ERROR_ENUM(GCDAsyncUdpSocketErrorDomain, GCDAsyncUdpSocketError) { - GCDAsyncUdpSocketNoError = 0, // Never used - GCDAsyncUdpSocketBadConfigError, // Invalid configuration - GCDAsyncUdpSocketBadParamError, // Invalid parameter was passed - GCDAsyncUdpSocketSendTimeoutError, // A send operation timed out - GCDAsyncUdpSocketClosedError, // The socket was closed - GCDAsyncUdpSocketOtherError, // Description provided in userInfo -}; - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -@class GCDAsyncUdpSocket; - -@protocol GCDAsyncUdpSocketDelegate -@optional - -/** - * By design, UDP is a connectionless protocol, and connecting is not needed. - * However, you may optionally choose to connect to a particular host for reasons - * outlined in the documentation for the various connect methods listed above. - * - * This method is called if one of the connect methods are invoked, and the connection is successful. -**/ -- (void)udpSocket:(GCDAsyncUdpSocket *)sock didConnectToAddress:(NSData *)address; - -/** - * By design, UDP is a connectionless protocol, and connecting is not needed. - * However, you may optionally choose to connect to a particular host for reasons - * outlined in the documentation for the various connect methods listed above. - * - * This method is called if one of the connect methods are invoked, and the connection fails. - * This may happen, for example, if a domain name is given for the host and the domain name is unable to be resolved. -**/ -- (void)udpSocket:(GCDAsyncUdpSocket *)sock didNotConnect:(NSError * _Nullable)error; - -/** - * Called when the datagram with the given tag has been sent. -**/ -- (void)udpSocket:(GCDAsyncUdpSocket *)sock didSendDataWithTag:(long)tag; - -/** - * Called if an error occurs while trying to send a datagram. - * This could be due to a timeout, or something more serious such as the data being too large to fit in a sigle packet. -**/ -- (void)udpSocket:(GCDAsyncUdpSocket *)sock didNotSendDataWithTag:(long)tag dueToError:(NSError * _Nullable)error; - -/** - * Called when the socket has received the requested datagram. -**/ -- (void)udpSocket:(GCDAsyncUdpSocket *)sock didReceiveData:(NSData *)data - fromAddress:(NSData *)address - withFilterContext:(nullable id)filterContext; - -/** - * Called when the socket is closed. -**/ -- (void)udpSocketDidClose:(GCDAsyncUdpSocket *)sock withError:(NSError * _Nullable)error; - -@end - -/** - * You may optionally set a receive filter for the socket. - * A filter can provide several useful features: - * - * 1. Many times udp packets need to be parsed. - * Since the filter can run in its own independent queue, you can parallelize this parsing quite easily. - * The end result is a parallel socket io, datagram parsing, and packet processing. - * - * 2. Many times udp packets are discarded because they are duplicate/unneeded/unsolicited. - * The filter can prevent such packets from arriving at the delegate. - * And because the filter can run in its own independent queue, this doesn't slow down the delegate. - * - * - Since the udp protocol does not guarantee delivery, udp packets may be lost. - * Many protocols built atop udp thus provide various resend/re-request algorithms. - * This sometimes results in duplicate packets arriving. - * A filter may allow you to architect the duplicate detection code to run in parallel to normal processing. - * - * - Since the udp socket may be connectionless, its possible for unsolicited packets to arrive. - * Such packets need to be ignored. - * - * 3. Sometimes traffic shapers are needed to simulate real world environments. - * A filter allows you to write custom code to simulate such environments. - * The ability to code this yourself is especially helpful when your simulated environment - * is more complicated than simple traffic shaping (e.g. simulating a cone port restricted router), - * or the system tools to handle this aren't available (e.g. on a mobile device). - * - * @param data - The packet that was received. - * @param address - The address the data was received from. - * See utilities section for methods to extract info from address. - * @param context - Out parameter you may optionally set, which will then be passed to the delegate method. - * For example, filter block can parse the data and then, - * pass the parsed data to the delegate. - * - * @returns - YES if the received packet should be passed onto the delegate. - * NO if the received packet should be discarded, and not reported to the delegete. - * - * Example: - * - * GCDAsyncUdpSocketReceiveFilterBlock filter = ^BOOL (NSData *data, NSData *address, id *context) { - * - * MyProtocolMessage *msg = [MyProtocol parseMessage:data]; - * - * *context = response; - * return (response != nil); - * }; - * [udpSocket setReceiveFilter:filter withQueue:myParsingQueue]; - * -**/ -typedef BOOL (^GCDAsyncUdpSocketReceiveFilterBlock)(NSData *data, NSData *address, id __nullable * __nonnull context); - -/** - * You may optionally set a send filter for the socket. - * A filter can provide several interesting possibilities: - * - * 1. Optional caching of resolved addresses for domain names. - * The cache could later be consulted, resulting in fewer system calls to getaddrinfo. - * - * 2. Reusable modules of code for bandwidth monitoring. - * - * 3. Sometimes traffic shapers are needed to simulate real world environments. - * A filter allows you to write custom code to simulate such environments. - * The ability to code this yourself is especially helpful when your simulated environment - * is more complicated than simple traffic shaping (e.g. simulating a cone port restricted router), - * or the system tools to handle this aren't available (e.g. on a mobile device). - * - * @param data - The packet that was received. - * @param address - The address the data was received from. - * See utilities section for methods to extract info from address. - * @param tag - The tag that was passed in the send method. - * - * @returns - YES if the packet should actually be sent over the socket. - * NO if the packet should be silently dropped (not sent over the socket). - * - * Regardless of the return value, the delegate will be informed that the packet was successfully sent. - * -**/ -typedef BOOL (^GCDAsyncUdpSocketSendFilterBlock)(NSData *data, NSData *address, long tag); - - -@interface GCDAsyncUdpSocket : NSObject - -/** - * GCDAsyncUdpSocket uses the standard delegate paradigm, - * but executes all delegate callbacks on a given delegate dispatch queue. - * This allows for maximum concurrency, while at the same time providing easy thread safety. - * - * You MUST set a delegate AND delegate dispatch queue before attempting to - * use the socket, or you will get an error. - * - * The socket queue is optional. - * If you pass NULL, GCDAsyncSocket will automatically create its own socket queue. - * If you choose to provide a socket queue, the socket queue must not be a concurrent queue, - * then please see the discussion for the method markSocketQueueTargetQueue. - * - * The delegate queue and socket queue can optionally be the same. -**/ -- (instancetype)init; -- (instancetype)initWithSocketQueue:(nullable dispatch_queue_t)sq; -- (instancetype)initWithDelegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq; -- (instancetype)initWithDelegate:(nullable id)aDelegate delegateQueue:(nullable dispatch_queue_t)dq socketQueue:(nullable dispatch_queue_t)sq NS_DESIGNATED_INITIALIZER; - -#pragma mark Configuration - -- (nullable id)delegate; -- (void)setDelegate:(nullable id)delegate; -- (void)synchronouslySetDelegate:(nullable id)delegate; - -- (nullable dispatch_queue_t)delegateQueue; -- (void)setDelegateQueue:(nullable dispatch_queue_t)delegateQueue; -- (void)synchronouslySetDelegateQueue:(nullable dispatch_queue_t)delegateQueue; - -- (void)getDelegate:(id __nullable * __nullable)delegatePtr delegateQueue:(dispatch_queue_t __nullable * __nullable)delegateQueuePtr; -- (void)setDelegate:(nullable id)delegate delegateQueue:(nullable dispatch_queue_t)delegateQueue; -- (void)synchronouslySetDelegate:(nullable id)delegate delegateQueue:(nullable dispatch_queue_t)delegateQueue; - -/** - * By default, both IPv4 and IPv6 are enabled. - * - * This means GCDAsyncUdpSocket automatically supports both protocols, - * and can send to IPv4 or IPv6 addresses, - * as well as receive over IPv4 and IPv6. - * - * For operations that require DNS resolution, GCDAsyncUdpSocket supports both IPv4 and IPv6. - * If a DNS lookup returns only IPv4 results, GCDAsyncUdpSocket will automatically use IPv4. - * If a DNS lookup returns only IPv6 results, GCDAsyncUdpSocket will automatically use IPv6. - * If a DNS lookup returns both IPv4 and IPv6 results, then the protocol used depends on the configured preference. - * If IPv4 is preferred, then IPv4 is used. - * If IPv6 is preferred, then IPv6 is used. - * If neutral, then the first IP version in the resolved array will be used. - * - * Starting with Mac OS X 10.7 Lion and iOS 5, the default IP preference is neutral. - * On prior systems the default IP preference is IPv4. - **/ -- (BOOL)isIPv4Enabled; -- (void)setIPv4Enabled:(BOOL)flag; - -- (BOOL)isIPv6Enabled; -- (void)setIPv6Enabled:(BOOL)flag; - -- (BOOL)isIPv4Preferred; -- (BOOL)isIPv6Preferred; -- (BOOL)isIPVersionNeutral; - -- (void)setPreferIPv4; -- (void)setPreferIPv6; -- (void)setIPVersionNeutral; - -/** - * Gets/Sets the maximum size of the buffer that will be allocated for receive operations. - * The default maximum size is 65535 bytes. - * - * The theoretical maximum size of any IPv4 UDP packet is UINT16_MAX = 65535. - * The theoretical maximum size of any IPv6 UDP packet is UINT32_MAX = 4294967295. - * - * Since the OS/GCD notifies us of the size of each received UDP packet, - * the actual allocated buffer size for each packet is exact. - * And in practice the size of UDP packets is generally much smaller than the max. - * Indeed most protocols will send and receive packets of only a few bytes, - * or will set a limit on the size of packets to prevent fragmentation in the IP layer. - * - * If you set the buffer size too small, the sockets API in the OS will silently discard - * any extra data, and you will not be notified of the error. -**/ -- (uint16_t)maxReceiveIPv4BufferSize; -- (void)setMaxReceiveIPv4BufferSize:(uint16_t)max; - -- (uint32_t)maxReceiveIPv6BufferSize; -- (void)setMaxReceiveIPv6BufferSize:(uint32_t)max; - -/** - * Gets/Sets the maximum size of the buffer that will be allocated for send operations. - * The default maximum size is 65535 bytes. - * - * Given that a typical link MTU is 1500 bytes, a large UDP datagram will have to be - * fragmented, and that’s both expensive and risky (if one fragment goes missing, the - * entire datagram is lost). You are much better off sending a large number of smaller - * UDP datagrams, preferably using a path MTU algorithm to avoid fragmentation. - * - * You must set it before the sockt is created otherwise it won't work. - * - **/ -- (uint16_t)maxSendBufferSize; -- (void)setMaxSendBufferSize:(uint16_t)max; - -/** - * User data allows you to associate arbitrary information with the socket. - * This data is not used internally in any way. -**/ -- (nullable id)userData; -- (void)setUserData:(nullable id)arbitraryUserData; - -#pragma mark Diagnostics - -/** - * Returns the local address info for the socket. - * - * The localAddress method returns a sockaddr structure wrapped in a NSData object. - * The localHost method returns the human readable IP address as a string. - * - * Note: Address info may not be available until after the socket has been binded, connected - * or until after data has been sent. -**/ -- (nullable NSData *)localAddress; -- (nullable NSString *)localHost; -- (uint16_t)localPort; - -- (nullable NSData *)localAddress_IPv4; -- (nullable NSString *)localHost_IPv4; -- (uint16_t)localPort_IPv4; - -- (nullable NSData *)localAddress_IPv6; -- (nullable NSString *)localHost_IPv6; -- (uint16_t)localPort_IPv6; - -/** - * Returns the remote address info for the socket. - * - * The connectedAddress method returns a sockaddr structure wrapped in a NSData object. - * The connectedHost method returns the human readable IP address as a string. - * - * Note: Since UDP is connectionless by design, connected address info - * will not be available unless the socket is explicitly connected to a remote host/port. - * If the socket is not connected, these methods will return nil / 0. -**/ -- (nullable NSData *)connectedAddress; -- (nullable NSString *)connectedHost; -- (uint16_t)connectedPort; - -/** - * Returns whether or not this socket has been connected to a single host. - * By design, UDP is a connectionless protocol, and connecting is not needed. - * If connected, the socket will only be able to send/receive data to/from the connected host. -**/ -- (BOOL)isConnected; - -/** - * Returns whether or not this socket has been closed. - * The only way a socket can be closed is if you explicitly call one of the close methods. -**/ -- (BOOL)isClosed; - -/** - * Returns whether or not this socket is IPv4. - * - * By default this will be true, unless: - * - IPv4 is disabled (via setIPv4Enabled:) - * - The socket is explicitly bound to an IPv6 address - * - The socket is connected to an IPv6 address -**/ -- (BOOL)isIPv4; - -/** - * Returns whether or not this socket is IPv6. - * - * By default this will be true, unless: - * - IPv6 is disabled (via setIPv6Enabled:) - * - The socket is explicitly bound to an IPv4 address - * _ The socket is connected to an IPv4 address - * - * This method will also return false on platforms that do not support IPv6. - * Note: The iPhone does not currently support IPv6. -**/ -- (BOOL)isIPv6; - -#pragma mark Binding - -/** - * Binds the UDP socket to the given port. - * Binding should be done for server sockets that receive data prior to sending it. - * Client sockets can skip binding, - * as the OS will automatically assign the socket an available port when it starts sending data. - * - * You may optionally pass a port number of zero to immediately bind the socket, - * yet still allow the OS to automatically assign an available port. - * - * You cannot bind a socket after its been connected. - * You can only bind a socket once. - * You can still connect a socket (if desired) after binding. - * - * On success, returns YES. - * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass NULL for errPtr. -**/ -- (BOOL)bindToPort:(uint16_t)port error:(NSError **)errPtr; - -/** - * Binds the UDP socket to the given port and optional interface. - * Binding should be done for server sockets that receive data prior to sending it. - * Client sockets can skip binding, - * as the OS will automatically assign the socket an available port when it starts sending data. - * - * You may optionally pass a port number of zero to immediately bind the socket, - * yet still allow the OS to automatically assign an available port. - * - * The interface may be a name (e.g. "en1" or "lo0") or the corresponding IP address (e.g. "192.168.4.35"). - * You may also use the special strings "localhost" or "loopback" to specify that - * the socket only accept packets from the local machine. - * - * You cannot bind a socket after its been connected. - * You can only bind a socket once. - * You can still connect a socket (if desired) after binding. - * - * On success, returns YES. - * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass NULL for errPtr. -**/ -- (BOOL)bindToPort:(uint16_t)port interface:(nullable NSString *)interface error:(NSError **)errPtr; - -/** - * Binds the UDP socket to the given address, specified as a sockaddr structure wrapped in a NSData object. - * - * If you have an existing struct sockaddr you can convert it to a NSData object like so: - * struct sockaddr sa -> NSData *dsa = [NSData dataWithBytes:&remoteAddr length:remoteAddr.sa_len]; - * struct sockaddr *sa -> NSData *dsa = [NSData dataWithBytes:remoteAddr length:remoteAddr->sa_len]; - * - * Binding should be done for server sockets that receive data prior to sending it. - * Client sockets can skip binding, - * as the OS will automatically assign the socket an available port when it starts sending data. - * - * You cannot bind a socket after its been connected. - * You can only bind a socket once. - * You can still connect a socket (if desired) after binding. - * - * On success, returns YES. - * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass NULL for errPtr. -**/ -- (BOOL)bindToAddress:(NSData *)localAddr error:(NSError **)errPtr; - -#pragma mark Connecting - -/** - * Connects the UDP socket to the given host and port. - * By design, UDP is a connectionless protocol, and connecting is not needed. - * - * Choosing to connect to a specific host/port has the following effect: - * - You will only be able to send data to the connected host/port. - * - You will only be able to receive data from the connected host/port. - * - You will receive ICMP messages that come from the connected host/port, such as "connection refused". - * - * The actual process of connecting a UDP socket does not result in any communication on the socket. - * It simply changes the internal state of the socket. - * - * You cannot bind a socket after it has been connected. - * You can only connect a socket once. - * - * The host may be a domain name (e.g. "deusty.com") or an IP address string (e.g. "192.168.0.2"). - * - * This method is asynchronous as it requires a DNS lookup to resolve the given host name. - * If an obvious error is detected, this method immediately returns NO and sets errPtr. - * If you don't care about the error, you can pass nil for errPtr. - * Otherwise, this method returns YES and begins the asynchronous connection process. - * The result of the asynchronous connection process will be reported via the delegate methods. - **/ -- (BOOL)connectToHost:(NSString *)host onPort:(uint16_t)port error:(NSError **)errPtr; - -/** - * Connects the UDP socket to the given address, specified as a sockaddr structure wrapped in a NSData object. - * - * If you have an existing struct sockaddr you can convert it to a NSData object like so: - * struct sockaddr sa -> NSData *dsa = [NSData dataWithBytes:&remoteAddr length:remoteAddr.sa_len]; - * struct sockaddr *sa -> NSData *dsa = [NSData dataWithBytes:remoteAddr length:remoteAddr->sa_len]; - * - * By design, UDP is a connectionless protocol, and connecting is not needed. - * - * Choosing to connect to a specific address has the following effect: - * - You will only be able to send data to the connected address. - * - You will only be able to receive data from the connected address. - * - You will receive ICMP messages that come from the connected address, such as "connection refused". - * - * Connecting a UDP socket does not result in any communication on the socket. - * It simply changes the internal state of the socket. - * - * You cannot bind a socket after its been connected. - * You can only connect a socket once. - * - * On success, returns YES. - * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass nil for errPtr. - * - * Note: Unlike the connectToHost:onPort:error: method, this method does not require a DNS lookup. - * Thus when this method returns, the connection has either failed or fully completed. - * In other words, this method is synchronous, unlike the asynchronous connectToHost::: method. - * However, for compatibility and simplification of delegate code, if this method returns YES - * then the corresponding delegate method (udpSocket:didConnectToHost:port:) is still invoked. -**/ -- (BOOL)connectToAddress:(NSData *)remoteAddr error:(NSError **)errPtr; - -#pragma mark Multicast - -/** - * Join multicast group. - * Group should be an IP address (eg @"225.228.0.1"). - * - * On success, returns YES. - * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass nil for errPtr. -**/ -- (BOOL)joinMulticastGroup:(NSString *)group error:(NSError **)errPtr; - -/** - * Join multicast group. - * Group should be an IP address (eg @"225.228.0.1"). - * The interface may be a name (e.g. "en1" or "lo0") or the corresponding IP address (e.g. "192.168.4.35"). - * - * On success, returns YES. - * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass nil for errPtr. -**/ -- (BOOL)joinMulticastGroup:(NSString *)group onInterface:(nullable NSString *)interface error:(NSError **)errPtr; - -- (BOOL)leaveMulticastGroup:(NSString *)group error:(NSError **)errPtr; -- (BOOL)leaveMulticastGroup:(NSString *)group onInterface:(nullable NSString *)interface error:(NSError **)errPtr; - -/** - * Send multicast on a specified interface. - * For IPv4, interface should be the the IP address of the interface (eg @"192.168.10.1"). - * For IPv6, interface should be the a network interface name (eg @"en0"). - * - * On success, returns YES. - * Otherwise returns NO, and sets errPtr. If you don't care about the error, you can pass nil for errPtr. -**/ - -- (BOOL)sendIPv4MulticastOnInterface:(NSString*)interface error:(NSError **)errPtr; -- (BOOL)sendIPv6MulticastOnInterface:(NSString*)interface error:(NSError **)errPtr; - -#pragma mark Reuse Port - -/** - * By default, only one socket can be bound to a given IP address + port at a time. - * To enable multiple processes to simultaneously bind to the same address+port, - * you need to enable this functionality in the socket. All processes that wish to - * use the address+port simultaneously must all enable reuse port on the socket - * bound to that port. - **/ -- (BOOL)enableReusePort:(BOOL)flag error:(NSError **)errPtr; - -#pragma mark Broadcast - -/** - * By default, the underlying socket in the OS will not allow you to send broadcast messages. - * In order to send broadcast messages, you need to enable this functionality in the socket. - * - * A broadcast is a UDP message to addresses like "192.168.255.255" or "255.255.255.255" that is - * delivered to every host on the network. - * The reason this is generally disabled by default (by the OS) is to prevent - * accidental broadcast messages from flooding the network. -**/ -- (BOOL)enableBroadcast:(BOOL)flag error:(NSError **)errPtr; - -#pragma mark Sending - -/** - * Asynchronously sends the given data, with the given timeout and tag. - * - * This method may only be used with a connected socket. - * Recall that connecting is optional for a UDP socket. - * For connected sockets, data can only be sent to the connected address. - * For non-connected sockets, the remote destination is specified for each packet. - * For more information about optionally connecting udp sockets, see the documentation for the connect methods above. - * - * @param data - * The data to send. - * If data is nil or zero-length, this method does nothing. - * If passing NSMutableData, please read the thread-safety notice below. - * - * @param timeout - * The timeout for the send opeartion. - * If the timeout value is negative, the send operation will not use a timeout. - * - * @param tag - * The tag is for your convenience. - * It is not sent or received over the socket in any manner what-so-ever. - * It is reported back as a parameter in the udpSocket:didSendDataWithTag: - * or udpSocket:didNotSendDataWithTag:dueToError: methods. - * You can use it as an array index, state id, type constant, etc. - * - * - * Thread-Safety Note: - * If the given data parameter is mutable (NSMutableData) then you MUST NOT alter the data while - * the socket is sending it. In other words, it's not safe to alter the data until after the delegate method - * udpSocket:didSendDataWithTag: or udpSocket:didNotSendDataWithTag:dueToError: is invoked signifying - * that this particular send operation has completed. - * This is due to the fact that GCDAsyncUdpSocket does NOT copy the data. - * It simply retains it for performance reasons. - * Often times, if NSMutableData is passed, it is because a request/response was built up in memory. - * Copying this data adds an unwanted/unneeded overhead. - * If you need to write data from an immutable buffer, and you need to alter the buffer before the socket - * completes sending the bytes (which is NOT immediately after this method returns, but rather at a later time - * when the delegate method notifies you), then you should first copy the bytes, and pass the copy to this method. -**/ -- (void)sendData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag; - -/** - * Asynchronously sends the given data, with the given timeout and tag, to the given host and port. - * - * This method cannot be used with a connected socket. - * Recall that connecting is optional for a UDP socket. - * For connected sockets, data can only be sent to the connected address. - * For non-connected sockets, the remote destination is specified for each packet. - * For more information about optionally connecting udp sockets, see the documentation for the connect methods above. - * - * @param data - * The data to send. - * If data is nil or zero-length, this method does nothing. - * If passing NSMutableData, please read the thread-safety notice below. - * - * @param host - * The destination to send the udp packet to. - * May be specified as a domain name (e.g. "deusty.com") or an IP address string (e.g. "192.168.0.2"). - * You may also use the convenience strings of "loopback" or "localhost". - * - * @param port - * The port of the host to send to. - * - * @param timeout - * The timeout for the send opeartion. - * If the timeout value is negative, the send operation will not use a timeout. - * - * @param tag - * The tag is for your convenience. - * It is not sent or received over the socket in any manner what-so-ever. - * It is reported back as a parameter in the udpSocket:didSendDataWithTag: - * or udpSocket:didNotSendDataWithTag:dueToError: methods. - * You can use it as an array index, state id, type constant, etc. - * - * - * Thread-Safety Note: - * If the given data parameter is mutable (NSMutableData) then you MUST NOT alter the data while - * the socket is sending it. In other words, it's not safe to alter the data until after the delegate method - * udpSocket:didSendDataWithTag: or udpSocket:didNotSendDataWithTag:dueToError: is invoked signifying - * that this particular send operation has completed. - * This is due to the fact that GCDAsyncUdpSocket does NOT copy the data. - * It simply retains it for performance reasons. - * Often times, if NSMutableData is passed, it is because a request/response was built up in memory. - * Copying this data adds an unwanted/unneeded overhead. - * If you need to write data from an immutable buffer, and you need to alter the buffer before the socket - * completes sending the bytes (which is NOT immediately after this method returns, but rather at a later time - * when the delegate method notifies you), then you should first copy the bytes, and pass the copy to this method. -**/ -- (void)sendData:(NSData *)data - toHost:(NSString *)host - port:(uint16_t)port - withTimeout:(NSTimeInterval)timeout - tag:(long)tag; - -/** - * Asynchronously sends the given data, with the given timeout and tag, to the given address. - * - * This method cannot be used with a connected socket. - * Recall that connecting is optional for a UDP socket. - * For connected sockets, data can only be sent to the connected address. - * For non-connected sockets, the remote destination is specified for each packet. - * For more information about optionally connecting udp sockets, see the documentation for the connect methods above. - * - * @param data - * The data to send. - * If data is nil or zero-length, this method does nothing. - * If passing NSMutableData, please read the thread-safety notice below. - * - * @param remoteAddr - * The address to send the data to (specified as a sockaddr structure wrapped in a NSData object). - * - * @param timeout - * The timeout for the send opeartion. - * If the timeout value is negative, the send operation will not use a timeout. - * - * @param tag - * The tag is for your convenience. - * It is not sent or received over the socket in any manner what-so-ever. - * It is reported back as a parameter in the udpSocket:didSendDataWithTag: - * or udpSocket:didNotSendDataWithTag:dueToError: methods. - * You can use it as an array index, state id, type constant, etc. - * - * - * Thread-Safety Note: - * If the given data parameter is mutable (NSMutableData) then you MUST NOT alter the data while - * the socket is sending it. In other words, it's not safe to alter the data until after the delegate method - * udpSocket:didSendDataWithTag: or udpSocket:didNotSendDataWithTag:dueToError: is invoked signifying - * that this particular send operation has completed. - * This is due to the fact that GCDAsyncUdpSocket does NOT copy the data. - * It simply retains it for performance reasons. - * Often times, if NSMutableData is passed, it is because a request/response was built up in memory. - * Copying this data adds an unwanted/unneeded overhead. - * If you need to write data from an immutable buffer, and you need to alter the buffer before the socket - * completes sending the bytes (which is NOT immediately after this method returns, but rather at a later time - * when the delegate method notifies you), then you should first copy the bytes, and pass the copy to this method. -**/ -- (void)sendData:(NSData *)data toAddress:(NSData *)remoteAddr withTimeout:(NSTimeInterval)timeout tag:(long)tag; - -/** - * You may optionally set a send filter for the socket. - * A filter can provide several interesting possibilities: - * - * 1. Optional caching of resolved addresses for domain names. - * The cache could later be consulted, resulting in fewer system calls to getaddrinfo. - * - * 2. Reusable modules of code for bandwidth monitoring. - * - * 3. Sometimes traffic shapers are needed to simulate real world environments. - * A filter allows you to write custom code to simulate such environments. - * The ability to code this yourself is especially helpful when your simulated environment - * is more complicated than simple traffic shaping (e.g. simulating a cone port restricted router), - * or the system tools to handle this aren't available (e.g. on a mobile device). - * - * For more information about GCDAsyncUdpSocketSendFilterBlock, see the documentation for its typedef. - * To remove a previously set filter, invoke this method and pass a nil filterBlock and NULL filterQueue. - * - * Note: This method invokes setSendFilter:withQueue:isAsynchronous: (documented below), - * passing YES for the isAsynchronous parameter. -**/ -- (void)setSendFilter:(nullable GCDAsyncUdpSocketSendFilterBlock)filterBlock withQueue:(nullable dispatch_queue_t)filterQueue; - -/** - * The receive filter can be run via dispatch_async or dispatch_sync. - * Most typical situations call for asynchronous operation. - * - * However, there are a few situations in which synchronous operation is preferred. - * Such is the case when the filter is extremely minimal and fast. - * This is because dispatch_sync is faster than dispatch_async. - * - * If you choose synchronous operation, be aware of possible deadlock conditions. - * Since the socket queue is executing your block via dispatch_sync, - * then you cannot perform any tasks which may invoke dispatch_sync on the socket queue. - * For example, you can't query properties on the socket. -**/ -- (void)setSendFilter:(nullable GCDAsyncUdpSocketSendFilterBlock)filterBlock - withQueue:(nullable dispatch_queue_t)filterQueue - isAsynchronous:(BOOL)isAsynchronous; - -#pragma mark Receiving - -/** - * There are two modes of operation for receiving packets: one-at-a-time & continuous. - * - * In one-at-a-time mode, you call receiveOnce everytime your delegate is ready to process an incoming udp packet. - * Receiving packets one-at-a-time may be better suited for implementing certain state machine code, - * where your state machine may not always be ready to process incoming packets. - * - * In continuous mode, the delegate is invoked immediately everytime incoming udp packets are received. - * Receiving packets continuously is better suited to real-time streaming applications. - * - * You may switch back and forth between one-at-a-time mode and continuous mode. - * If the socket is currently in continuous mode, calling this method will switch it to one-at-a-time mode. - * - * When a packet is received (and not filtered by the optional receive filter), - * the delegate method (udpSocket:didReceiveData:fromAddress:withFilterContext:) is invoked. - * - * If the socket is able to begin receiving packets, this method returns YES. - * Otherwise it returns NO, and sets the errPtr with appropriate error information. - * - * An example error: - * You created a udp socket to act as a server, and immediately called receive. - * You forgot to first bind the socket to a port number, and received a error with a message like: - * "Must bind socket before you can receive data." -**/ -- (BOOL)receiveOnce:(NSError **)errPtr; - -/** - * There are two modes of operation for receiving packets: one-at-a-time & continuous. - * - * In one-at-a-time mode, you call receiveOnce everytime your delegate is ready to process an incoming udp packet. - * Receiving packets one-at-a-time may be better suited for implementing certain state machine code, - * where your state machine may not always be ready to process incoming packets. - * - * In continuous mode, the delegate is invoked immediately everytime incoming udp packets are received. - * Receiving packets continuously is better suited to real-time streaming applications. - * - * You may switch back and forth between one-at-a-time mode and continuous mode. - * If the socket is currently in one-at-a-time mode, calling this method will switch it to continuous mode. - * - * For every received packet (not filtered by the optional receive filter), - * the delegate method (udpSocket:didReceiveData:fromAddress:withFilterContext:) is invoked. - * - * If the socket is able to begin receiving packets, this method returns YES. - * Otherwise it returns NO, and sets the errPtr with appropriate error information. - * - * An example error: - * You created a udp socket to act as a server, and immediately called receive. - * You forgot to first bind the socket to a port number, and received a error with a message like: - * "Must bind socket before you can receive data." -**/ -- (BOOL)beginReceiving:(NSError **)errPtr; - -/** - * If the socket is currently receiving (beginReceiving has been called), this method pauses the receiving. - * That is, it won't read any more packets from the underlying OS socket until beginReceiving is called again. - * - * Important Note: - * GCDAsyncUdpSocket may be running in parallel with your code. - * That is, your delegate is likely running on a separate thread/dispatch_queue. - * When you invoke this method, GCDAsyncUdpSocket may have already dispatched delegate methods to be invoked. - * Thus, if those delegate methods have already been dispatch_async'd, - * your didReceive delegate method may still be invoked after this method has been called. - * You should be aware of this, and program defensively. -**/ -- (void)pauseReceiving; - -/** - * You may optionally set a receive filter for the socket. - * This receive filter may be set to run in its own queue (independent of delegate queue). - * - * A filter can provide several useful features. - * - * 1. Many times udp packets need to be parsed. - * Since the filter can run in its own independent queue, you can parallelize this parsing quite easily. - * The end result is a parallel socket io, datagram parsing, and packet processing. - * - * 2. Many times udp packets are discarded because they are duplicate/unneeded/unsolicited. - * The filter can prevent such packets from arriving at the delegate. - * And because the filter can run in its own independent queue, this doesn't slow down the delegate. - * - * - Since the udp protocol does not guarantee delivery, udp packets may be lost. - * Many protocols built atop udp thus provide various resend/re-request algorithms. - * This sometimes results in duplicate packets arriving. - * A filter may allow you to architect the duplicate detection code to run in parallel to normal processing. - * - * - Since the udp socket may be connectionless, its possible for unsolicited packets to arrive. - * Such packets need to be ignored. - * - * 3. Sometimes traffic shapers are needed to simulate real world environments. - * A filter allows you to write custom code to simulate such environments. - * The ability to code this yourself is especially helpful when your simulated environment - * is more complicated than simple traffic shaping (e.g. simulating a cone port restricted router), - * or the system tools to handle this aren't available (e.g. on a mobile device). - * - * Example: - * - * GCDAsyncUdpSocketReceiveFilterBlock filter = ^BOOL (NSData *data, NSData *address, id *context) { - * - * MyProtocolMessage *msg = [MyProtocol parseMessage:data]; - * - * *context = response; - * return (response != nil); - * }; - * [udpSocket setReceiveFilter:filter withQueue:myParsingQueue]; - * - * For more information about GCDAsyncUdpSocketReceiveFilterBlock, see the documentation for its typedef. - * To remove a previously set filter, invoke this method and pass a nil filterBlock and NULL filterQueue. - * - * Note: This method invokes setReceiveFilter:withQueue:isAsynchronous: (documented below), - * passing YES for the isAsynchronous parameter. -**/ -- (void)setReceiveFilter:(nullable GCDAsyncUdpSocketReceiveFilterBlock)filterBlock withQueue:(nullable dispatch_queue_t)filterQueue; - -/** - * The receive filter can be run via dispatch_async or dispatch_sync. - * Most typical situations call for asynchronous operation. - * - * However, there are a few situations in which synchronous operation is preferred. - * Such is the case when the filter is extremely minimal and fast. - * This is because dispatch_sync is faster than dispatch_async. - * - * If you choose synchronous operation, be aware of possible deadlock conditions. - * Since the socket queue is executing your block via dispatch_sync, - * then you cannot perform any tasks which may invoke dispatch_sync on the socket queue. - * For example, you can't query properties on the socket. -**/ -- (void)setReceiveFilter:(nullable GCDAsyncUdpSocketReceiveFilterBlock)filterBlock - withQueue:(nullable dispatch_queue_t)filterQueue - isAsynchronous:(BOOL)isAsynchronous; - -#pragma mark Closing - -/** - * Immediately closes the underlying socket. - * Any pending send operations are discarded. - * - * The GCDAsyncUdpSocket instance may optionally be used again. - * (it will setup/configure/use another unnderlying BSD socket). -**/ -- (void)close; - -/** - * Closes the underlying socket after all pending send operations have been sent. - * - * The GCDAsyncUdpSocket instance may optionally be used again. - * (it will setup/configure/use another unnderlying BSD socket). -**/ -- (void)closeAfterSending; - -#pragma mark Advanced -/** - * GCDAsyncSocket maintains thread safety by using an internal serial dispatch_queue. - * In most cases, the instance creates this queue itself. - * However, to allow for maximum flexibility, the internal queue may be passed in the init method. - * This allows for some advanced options such as controlling socket priority via target queues. - * However, when one begins to use target queues like this, they open the door to some specific deadlock issues. - * - * For example, imagine there are 2 queues: - * dispatch_queue_t socketQueue; - * dispatch_queue_t socketTargetQueue; - * - * If you do this (pseudo-code): - * socketQueue.targetQueue = socketTargetQueue; - * - * Then all socketQueue operations will actually get run on the given socketTargetQueue. - * This is fine and works great in most situations. - * But if you run code directly from within the socketTargetQueue that accesses the socket, - * you could potentially get deadlock. Imagine the following code: - * - * - (BOOL)socketHasSomething - * { - * __block BOOL result = NO; - * dispatch_block_t block = ^{ - * result = [self someInternalMethodToBeRunOnlyOnSocketQueue]; - * } - * if (is_executing_on_queue(socketQueue)) - * block(); - * else - * dispatch_sync(socketQueue, block); - * - * return result; - * } - * - * What happens if you call this method from the socketTargetQueue? The result is deadlock. - * This is because the GCD API offers no mechanism to discover a queue's targetQueue. - * Thus we have no idea if our socketQueue is configured with a targetQueue. - * If we had this information, we could easily avoid deadlock. - * But, since these API's are missing or unfeasible, you'll have to explicitly set it. - * - * IF you pass a socketQueue via the init method, - * AND you've configured the passed socketQueue with a targetQueue, - * THEN you should pass the end queue in the target hierarchy. - * - * For example, consider the following queue hierarchy: - * socketQueue -> ipQueue -> moduleQueue - * - * This example demonstrates priority shaping within some server. - * All incoming client connections from the same IP address are executed on the same target queue. - * And all connections for a particular module are executed on the same target queue. - * Thus, the priority of all networking for the entire module can be changed on the fly. - * Additionally, networking traffic from a single IP cannot monopolize the module. - * - * Here's how you would accomplish something like that: - * - (dispatch_queue_t)newSocketQueueForConnectionFromAddress:(NSData *)address onSocket:(GCDAsyncSocket *)sock - * { - * dispatch_queue_t socketQueue = dispatch_queue_create("", NULL); - * dispatch_queue_t ipQueue = [self ipQueueForAddress:address]; - * - * dispatch_set_target_queue(socketQueue, ipQueue); - * dispatch_set_target_queue(iqQueue, moduleQueue); - * - * return socketQueue; - * } - * - (void)socket:(GCDAsyncSocket *)sock didAcceptNewSocket:(GCDAsyncSocket *)newSocket - * { - * [clientConnections addObject:newSocket]; - * [newSocket markSocketQueueTargetQueue:moduleQueue]; - * } - * - * Note: This workaround is ONLY needed if you intend to execute code directly on the ipQueue or moduleQueue. - * This is often NOT the case, as such queues are used solely for execution shaping. - **/ -- (void)markSocketQueueTargetQueue:(dispatch_queue_t)socketQueuesPreConfiguredTargetQueue; -- (void)unmarkSocketQueueTargetQueue:(dispatch_queue_t)socketQueuesPreviouslyConfiguredTargetQueue; - -/** - * It's not thread-safe to access certain variables from outside the socket's internal queue. - * - * For example, the socket file descriptor. - * File descriptors are simply integers which reference an index in the per-process file table. - * However, when one requests a new file descriptor (by opening a file or socket), - * the file descriptor returned is guaranteed to be the lowest numbered unused descriptor. - * So if we're not careful, the following could be possible: - * - * - Thread A invokes a method which returns the socket's file descriptor. - * - The socket is closed via the socket's internal queue on thread B. - * - Thread C opens a file, and subsequently receives the file descriptor that was previously the socket's FD. - * - Thread A is now accessing/altering the file instead of the socket. - * - * In addition to this, other variables are not actually objects, - * and thus cannot be retained/released or even autoreleased. - * An example is the sslContext, of type SSLContextRef, which is actually a malloc'd struct. - * - * Although there are internal variables that make it difficult to maintain thread-safety, - * it is important to provide access to these variables - * to ensure this class can be used in a wide array of environments. - * This method helps to accomplish this by invoking the current block on the socket's internal queue. - * The methods below can be invoked from within the block to access - * those generally thread-unsafe internal variables in a thread-safe manner. - * The given block will be invoked synchronously on the socket's internal queue. - * - * If you save references to any protected variables and use them outside the block, you do so at your own peril. -**/ -- (void)performBlock:(dispatch_block_t)block; - -/** - * These methods are only available from within the context of a performBlock: invocation. - * See the documentation for the performBlock: method above. - * - * Provides access to the socket's file descriptor(s). - * If the socket isn't connected, or explicity bound to a particular interface, - * it might actually have multiple internal socket file descriptors - one for IPv4 and one for IPv6. -**/ -- (int)socketFD; -- (int)socket4FD; -- (int)socket6FD; - -#if TARGET_OS_IPHONE - -/** - * These methods are only available from within the context of a performBlock: invocation. - * See the documentation for the performBlock: method above. - * - * Returns (creating if necessary) a CFReadStream/CFWriteStream for the internal socket. - * - * Generally GCDAsyncUdpSocket doesn't use CFStream. (It uses the faster GCD API's.) - * However, if you need one for any reason, - * these methods are a convenient way to get access to a safe instance of one. -**/ -- (nullable CFReadStreamRef)readStream; -- (nullable CFWriteStreamRef)writeStream; - -/** - * This method is only available from within the context of a performBlock: invocation. - * See the documentation for the performBlock: method above. - * - * Configures the socket to allow it to operate when the iOS application has been backgrounded. - * In other words, this method creates a read & write stream, and invokes: - * - * CFReadStreamSetProperty(readStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); - * CFWriteStreamSetProperty(writeStream, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); - * - * Returns YES if successful, NO otherwise. - * - * Example usage: - * - * [asyncUdpSocket performBlock:^{ - * [asyncUdpSocket enableBackgroundingOnSocket]; - * }]; - * - * - * NOTE : Apple doesn't currently support backgrounding UDP sockets. (Only TCP for now). -**/ -//- (BOOL)enableBackgroundingOnSockets; - -#endif - -#pragma mark Utilities - -/** - * Extracting host/port/family information from raw address data. -**/ - -+ (nullable NSString *)hostFromAddress:(NSData *)address; -+ (uint16_t)portFromAddress:(NSData *)address; -+ (int)familyFromAddress:(NSData *)address; - -+ (BOOL)isIPv4Address:(NSData *)address; -+ (BOOL)isIPv6Address:(NSData *)address; - -+ (BOOL)getHost:(NSString * __nullable * __nullable)hostPtr port:(uint16_t * __nullable)portPtr fromAddress:(NSData *)address; -+ (BOOL)getHost:(NSString * __nullable * __nullable)hostPtr port:(uint16_t * __nullable)portPtr family:(int * __nullable)afPtr fromAddress:(NSData *)address; - -@end - -NS_ASSUME_NONNULL_END diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncUdpSocket.m b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncUdpSocket.m deleted file mode 100755 index b0c59c3..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/GCDAsyncUdpSocket.m +++ /dev/null @@ -1,5632 +0,0 @@ -// -// GCDAsyncUdpSocket -// -// This class is in the public domain. -// Originally created by Robbie Hanson of Deusty LLC. -// Updated and maintained by Deusty LLC and the Apple development community. -// -// https://github.com/robbiehanson/CocoaAsyncSocket -// - -#import "GCDAsyncUdpSocket.h" - -#if ! __has_feature(objc_arc) -#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC). -// For more information see: https://github.com/robbiehanson/CocoaAsyncSocket/wiki/ARC -#endif - -#if TARGET_OS_IPHONE - #import - #import -#endif - -#import -#import -#import -#import -#import -#import -#import - - -#if 0 - -// Logging Enabled - See log level below - -// Logging uses the CocoaLumberjack framework (which is also GCD based). -// https://github.com/robbiehanson/CocoaLumberjack -// -// It allows us to do a lot of logging without significantly slowing down the code. -#import "DDLog.h" - -#define LogAsync NO -#define LogContext 65535 - -#define LogObjc(flg, frmt, ...) LOG_OBJC_MAYBE(LogAsync, logLevel, flg, LogContext, frmt, ##__VA_ARGS__) -#define LogC(flg, frmt, ...) LOG_C_MAYBE(LogAsync, logLevel, flg, LogContext, frmt, ##__VA_ARGS__) - -#define LogError(frmt, ...) LogObjc(LOG_FLAG_ERROR, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogWarn(frmt, ...) LogObjc(LOG_FLAG_WARN, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogInfo(frmt, ...) LogObjc(LOG_FLAG_INFO, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogVerbose(frmt, ...) LogObjc(LOG_FLAG_VERBOSE, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) - -#define LogCError(frmt, ...) LogC(LOG_FLAG_ERROR, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogCWarn(frmt, ...) LogC(LOG_FLAG_WARN, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogCInfo(frmt, ...) LogC(LOG_FLAG_INFO, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) -#define LogCVerbose(frmt, ...) LogC(LOG_FLAG_VERBOSE, (@"%@: " frmt), THIS_FILE, ##__VA_ARGS__) - -#define LogTrace() LogObjc(LOG_FLAG_VERBOSE, @"%@: %@", THIS_FILE, THIS_METHOD) -#define LogCTrace() LogC(LOG_FLAG_VERBOSE, @"%@: %s", THIS_FILE, __FUNCTION__) - -// Log levels : off, error, warn, info, verbose -static const int logLevel = LOG_LEVEL_VERBOSE; - -#else - -// Logging Disabled - -#define LogError(frmt, ...) {} -#define LogWarn(frmt, ...) {} -#define LogInfo(frmt, ...) {} -#define LogVerbose(frmt, ...) {} - -#define LogCError(frmt, ...) {} -#define LogCWarn(frmt, ...) {} -#define LogCInfo(frmt, ...) {} -#define LogCVerbose(frmt, ...) {} - -#define LogTrace() {} -#define LogCTrace(frmt, ...) {} - -#endif - -/** - * Seeing a return statements within an inner block - * can sometimes be mistaken for a return point of the enclosing method. - * This makes inline blocks a bit easier to read. -**/ -#define return_from_block return - -/** - * A socket file descriptor is really just an integer. - * It represents the index of the socket within the kernel. - * This makes invalid file descriptor comparisons easier to read. -**/ -#define SOCKET_NULL -1 - -/** - * Just to type less code. -**/ -#define AutoreleasedBlock(block) ^{ @autoreleasepool { block(); }} - - -@class GCDAsyncUdpSendPacket; - -NSString *const GCDAsyncUdpSocketException = @"GCDAsyncUdpSocketException"; -NSString *const GCDAsyncUdpSocketErrorDomain = @"GCDAsyncUdpSocketErrorDomain"; - -NSString *const GCDAsyncUdpSocketQueueName = @"GCDAsyncUdpSocket"; -NSString *const GCDAsyncUdpSocketThreadName = @"GCDAsyncUdpSocket-CFStream"; - -enum GCDAsyncUdpSocketFlags -{ - kDidCreateSockets = 1 << 0, // If set, the sockets have been created. - kDidBind = 1 << 1, // If set, bind has been called. - kConnecting = 1 << 2, // If set, a connection attempt is in progress. - kDidConnect = 1 << 3, // If set, socket is connected. - kReceiveOnce = 1 << 4, // If set, one-at-a-time receive is enabled - kReceiveContinuous = 1 << 5, // If set, continuous receive is enabled - kIPv4Deactivated = 1 << 6, // If set, socket4 was closed due to bind or connect on IPv6. - kIPv6Deactivated = 1 << 7, // If set, socket6 was closed due to bind or connect on IPv4. - kSend4SourceSuspended = 1 << 8, // If set, send4Source is suspended. - kSend6SourceSuspended = 1 << 9, // If set, send6Source is suspended. - kReceive4SourceSuspended = 1 << 10, // If set, receive4Source is suspended. - kReceive6SourceSuspended = 1 << 11, // If set, receive6Source is suspended. - kSock4CanAcceptBytes = 1 << 12, // If set, we know socket4 can accept bytes. If unset, it's unknown. - kSock6CanAcceptBytes = 1 << 13, // If set, we know socket6 can accept bytes. If unset, it's unknown. - kForbidSendReceive = 1 << 14, // If set, no new send or receive operations are allowed to be queued. - kCloseAfterSends = 1 << 15, // If set, close as soon as no more sends are queued. - kFlipFlop = 1 << 16, // Used to alternate between IPv4 and IPv6 sockets. -#if TARGET_OS_IPHONE - kAddedStreamListener = 1 << 17, // If set, CFStreams have been added to listener thread -#endif -}; - -enum GCDAsyncUdpSocketConfig -{ - kIPv4Disabled = 1 << 0, // If set, IPv4 is disabled - kIPv6Disabled = 1 << 1, // If set, IPv6 is disabled - kPreferIPv4 = 1 << 2, // If set, IPv4 is preferred over IPv6 - kPreferIPv6 = 1 << 3, // If set, IPv6 is preferred over IPv4 -}; - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -@interface GCDAsyncUdpSocket () -{ -#if __has_feature(objc_arc_weak) - __weak id delegate; -#else - __unsafe_unretained id delegate; -#endif - dispatch_queue_t delegateQueue; - - GCDAsyncUdpSocketReceiveFilterBlock receiveFilterBlock; - dispatch_queue_t receiveFilterQueue; - BOOL receiveFilterAsync; - - GCDAsyncUdpSocketSendFilterBlock sendFilterBlock; - dispatch_queue_t sendFilterQueue; - BOOL sendFilterAsync; - - uint32_t flags; - uint16_t config; - - uint16_t max4ReceiveSize; - uint32_t max6ReceiveSize; - - uint16_t maxSendSize; - - int socket4FD; - int socket6FD; - - dispatch_queue_t socketQueue; - - dispatch_source_t send4Source; - dispatch_source_t send6Source; - dispatch_source_t receive4Source; - dispatch_source_t receive6Source; - dispatch_source_t sendTimer; - - GCDAsyncUdpSendPacket *currentSend; - NSMutableArray *sendQueue; - - unsigned long socket4FDBytesAvailable; - unsigned long socket6FDBytesAvailable; - - uint32_t pendingFilterOperations; - - NSData *cachedLocalAddress4; - NSString *cachedLocalHost4; - uint16_t cachedLocalPort4; - - NSData *cachedLocalAddress6; - NSString *cachedLocalHost6; - uint16_t cachedLocalPort6; - - NSData *cachedConnectedAddress; - NSString *cachedConnectedHost; - uint16_t cachedConnectedPort; - int cachedConnectedFamily; - - void *IsOnSocketQueueOrTargetQueueKey; - -#if TARGET_OS_IPHONE - CFStreamClientContext streamContext; - CFReadStreamRef readStream4; - CFReadStreamRef readStream6; - CFWriteStreamRef writeStream4; - CFWriteStreamRef writeStream6; -#endif - - id userData; -} - -- (void)resumeSend4Source; -- (void)resumeSend6Source; -- (void)resumeReceive4Source; -- (void)resumeReceive6Source; -- (void)closeSockets; - -- (void)maybeConnect; -- (BOOL)connectWithAddress4:(NSData *)address4 error:(NSError **)errPtr; -- (BOOL)connectWithAddress6:(NSData *)address6 error:(NSError **)errPtr; - -- (void)maybeDequeueSend; -- (void)doPreSend; -- (void)doSend; -- (void)endCurrentSend; -- (void)setupSendTimerWithTimeout:(NSTimeInterval)timeout; - -- (void)doReceive; -- (void)doReceiveEOF; - -- (void)closeWithError:(NSError *)error; - -- (BOOL)performMulticastRequest:(int)requestType forGroup:(NSString *)group onInterface:(NSString *)interface error:(NSError **)errPtr; - -#if TARGET_OS_IPHONE -- (BOOL)createReadAndWriteStreams:(NSError **)errPtr; -- (BOOL)registerForStreamCallbacks:(NSError **)errPtr; -- (BOOL)addStreamsToRunLoop:(NSError **)errPtr; -- (BOOL)openStreams:(NSError **)errPtr; -- (void)removeStreamsFromRunLoop; -- (void)closeReadAndWriteStreams; -#endif - -+ (NSString *)hostFromSockaddr4:(const struct sockaddr_in *)pSockaddr4; -+ (NSString *)hostFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6; -+ (uint16_t)portFromSockaddr4:(const struct sockaddr_in *)pSockaddr4; -+ (uint16_t)portFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6; - -#if TARGET_OS_IPHONE -// Forward declaration -+ (void)listenerThread:(id)unused; -#endif - -@end - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * The GCDAsyncUdpSendPacket encompasses the instructions for a single send/write. -**/ -@interface GCDAsyncUdpSendPacket : NSObject { -@public - NSData *buffer; - NSTimeInterval timeout; - long tag; - - BOOL resolveInProgress; - BOOL filterInProgress; - - NSArray *resolvedAddresses; - NSError *resolveError; - - NSData *address; - int addressFamily; -} - -- (instancetype)initWithData:(NSData *)d timeout:(NSTimeInterval)t tag:(long)i NS_DESIGNATED_INITIALIZER; - -@end - -@implementation GCDAsyncUdpSendPacket - -// Cover the superclass' designated initializer -- (instancetype)init NS_UNAVAILABLE -{ - NSAssert(0, @"Use the designated initializer"); - return nil; -} - -- (instancetype)initWithData:(NSData *)d timeout:(NSTimeInterval)t tag:(long)i -{ - if ((self = [super init])) - { - buffer = d; - timeout = t; - tag = i; - - resolveInProgress = NO; - } - return self; -} - - -@end - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -@interface GCDAsyncUdpSpecialPacket : NSObject { -@public -// uint8_t type; - - BOOL resolveInProgress; - - NSArray *addresses; - NSError *error; -} - -- (instancetype)init NS_DESIGNATED_INITIALIZER; - -@end - -@implementation GCDAsyncUdpSpecialPacket - -- (instancetype)init -{ - self = [super init]; - return self; -} - - -@end - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -@implementation GCDAsyncUdpSocket - -- (instancetype)init -{ - LogTrace(); - - return [self initWithDelegate:nil delegateQueue:NULL socketQueue:NULL]; -} - -- (instancetype)initWithSocketQueue:(dispatch_queue_t)sq -{ - LogTrace(); - - return [self initWithDelegate:nil delegateQueue:NULL socketQueue:sq]; -} - -- (instancetype)initWithDelegate:(id)aDelegate delegateQueue:(dispatch_queue_t)dq -{ - LogTrace(); - - return [self initWithDelegate:aDelegate delegateQueue:dq socketQueue:NULL]; -} - -- (instancetype)initWithDelegate:(id)aDelegate delegateQueue:(dispatch_queue_t)dq socketQueue:(dispatch_queue_t)sq -{ - LogTrace(); - - if ((self = [super init])) - { - delegate = aDelegate; - - if (dq) - { - delegateQueue = dq; - #if !OS_OBJECT_USE_OBJC - dispatch_retain(delegateQueue); - #endif - } - - max4ReceiveSize = 65535; - max6ReceiveSize = 65535; - - maxSendSize = 65535; - - socket4FD = SOCKET_NULL; - socket6FD = SOCKET_NULL; - - if (sq) - { - NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), - @"The given socketQueue parameter must not be a concurrent queue."); - NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), - @"The given socketQueue parameter must not be a concurrent queue."); - NSAssert(sq != dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), - @"The given socketQueue parameter must not be a concurrent queue."); - - socketQueue = sq; - #if !OS_OBJECT_USE_OBJC - dispatch_retain(socketQueue); - #endif - } - else - { - socketQueue = dispatch_queue_create([GCDAsyncUdpSocketQueueName UTF8String], NULL); - } - - // The dispatch_queue_set_specific() and dispatch_get_specific() functions take a "void *key" parameter. - // From the documentation: - // - // > Keys are only compared as pointers and are never dereferenced. - // > Thus, you can use a pointer to a static variable for a specific subsystem or - // > any other value that allows you to identify the value uniquely. - // - // We're just going to use the memory address of an ivar. - // Specifically an ivar that is explicitly named for our purpose to make the code more readable. - // - // However, it feels tedious (and less readable) to include the "&" all the time: - // dispatch_get_specific(&IsOnSocketQueueOrTargetQueueKey) - // - // So we're going to make it so it doesn't matter if we use the '&' or not, - // by assigning the value of the ivar to the address of the ivar. - // Thus: IsOnSocketQueueOrTargetQueueKey == &IsOnSocketQueueOrTargetQueueKey; - - IsOnSocketQueueOrTargetQueueKey = &IsOnSocketQueueOrTargetQueueKey; - - void *nonNullUnusedPointer = (__bridge void *)self; - dispatch_queue_set_specific(socketQueue, IsOnSocketQueueOrTargetQueueKey, nonNullUnusedPointer, NULL); - - currentSend = nil; - sendQueue = [[NSMutableArray alloc] initWithCapacity:5]; - - #if TARGET_OS_IPHONE - [[NSNotificationCenter defaultCenter] addObserver:self - selector:@selector(applicationWillEnterForeground:) - name:UIApplicationWillEnterForegroundNotification - object:nil]; - #endif - } - return self; -} - -- (void)dealloc -{ - LogInfo(@"%@ - %@ (start)", THIS_METHOD, self); - -#if TARGET_OS_IPHONE - [[NSNotificationCenter defaultCenter] removeObserver:self]; -#endif - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - [self closeWithError:nil]; - } - else - { - dispatch_sync(socketQueue, ^{ - [self closeWithError:nil]; - }); - } - - delegate = nil; - #if !OS_OBJECT_USE_OBJC - if (delegateQueue) dispatch_release(delegateQueue); - #endif - delegateQueue = NULL; - - #if !OS_OBJECT_USE_OBJC - if (socketQueue) dispatch_release(socketQueue); - #endif - socketQueue = NULL; - - LogInfo(@"%@ - %@ (finish)", THIS_METHOD, self); -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Configuration -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (id)delegate -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return delegate; - } - else - { - __block id result = nil; - - dispatch_sync(socketQueue, ^{ - result = self->delegate; - }); - - return result; - } -} - -- (void)setDelegate:(id)newDelegate synchronously:(BOOL)synchronously -{ - dispatch_block_t block = ^{ - self->delegate = newDelegate; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { - block(); - } - else { - if (synchronously) - dispatch_sync(socketQueue, block); - else - dispatch_async(socketQueue, block); - } -} - -- (void)setDelegate:(id)newDelegate -{ - [self setDelegate:newDelegate synchronously:NO]; -} - -- (void)synchronouslySetDelegate:(id)newDelegate -{ - [self setDelegate:newDelegate synchronously:YES]; -} - -- (dispatch_queue_t)delegateQueue -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - return delegateQueue; - } - else - { - __block dispatch_queue_t result = NULL; - - dispatch_sync(socketQueue, ^{ - result = self->delegateQueue; - }); - - return result; - } -} - -- (void)setDelegateQueue:(dispatch_queue_t)newDelegateQueue synchronously:(BOOL)synchronously -{ - dispatch_block_t block = ^{ - - #if !OS_OBJECT_USE_OBJC - if (self->delegateQueue) dispatch_release(self->delegateQueue); - if (newDelegateQueue) dispatch_retain(newDelegateQueue); - #endif - - self->delegateQueue = newDelegateQueue; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { - block(); - } - else { - if (synchronously) - dispatch_sync(socketQueue, block); - else - dispatch_async(socketQueue, block); - } -} - -- (void)setDelegateQueue:(dispatch_queue_t)newDelegateQueue -{ - [self setDelegateQueue:newDelegateQueue synchronously:NO]; -} - -- (void)synchronouslySetDelegateQueue:(dispatch_queue_t)newDelegateQueue -{ - [self setDelegateQueue:newDelegateQueue synchronously:YES]; -} - -- (void)getDelegate:(id *)delegatePtr delegateQueue:(dispatch_queue_t *)delegateQueuePtr -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - if (delegatePtr) *delegatePtr = delegate; - if (delegateQueuePtr) *delegateQueuePtr = delegateQueue; - } - else - { - __block id dPtr = NULL; - __block dispatch_queue_t dqPtr = NULL; - - dispatch_sync(socketQueue, ^{ - dPtr = self->delegate; - dqPtr = self->delegateQueue; - }); - - if (delegatePtr) *delegatePtr = dPtr; - if (delegateQueuePtr) *delegateQueuePtr = dqPtr; - } -} - -- (void)setDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue synchronously:(BOOL)synchronously -{ - dispatch_block_t block = ^{ - - self->delegate = newDelegate; - - #if !OS_OBJECT_USE_OBJC - if (self->delegateQueue) dispatch_release(self->delegateQueue); - if (newDelegateQueue) dispatch_retain(newDelegateQueue); - #endif - - self->delegateQueue = newDelegateQueue; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) { - block(); - } - else { - if (synchronously) - dispatch_sync(socketQueue, block); - else - dispatch_async(socketQueue, block); - } -} - -- (void)setDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue -{ - [self setDelegate:newDelegate delegateQueue:newDelegateQueue synchronously:NO]; -} - -- (void)synchronouslySetDelegate:(id)newDelegate delegateQueue:(dispatch_queue_t)newDelegateQueue -{ - [self setDelegate:newDelegate delegateQueue:newDelegateQueue synchronously:YES]; -} - -- (BOOL)isIPv4Enabled -{ - // Note: YES means kIPv4Disabled is OFF - - __block BOOL result = NO; - - dispatch_block_t block = ^{ - - result = ((self->config & kIPv4Disabled) == 0); - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (void)setIPv4Enabled:(BOOL)flag -{ - // Note: YES means kIPv4Disabled is OFF - - dispatch_block_t block = ^{ - - LogVerbose(@"%@ %@", THIS_METHOD, (flag ? @"YES" : @"NO")); - - if (flag) - self->config &= ~kIPv4Disabled; - else - self->config |= kIPv4Disabled; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (BOOL)isIPv6Enabled -{ - // Note: YES means kIPv6Disabled is OFF - - __block BOOL result = NO; - - dispatch_block_t block = ^{ - - result = ((self->config & kIPv6Disabled) == 0); - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (void)setIPv6Enabled:(BOOL)flag -{ - // Note: YES means kIPv6Disabled is OFF - - dispatch_block_t block = ^{ - - LogVerbose(@"%@ %@", THIS_METHOD, (flag ? @"YES" : @"NO")); - - if (flag) - self->config &= ~kIPv6Disabled; - else - self->config |= kIPv6Disabled; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (BOOL)isIPv4Preferred -{ - __block BOOL result = NO; - - dispatch_block_t block = ^{ - result = (self->config & kPreferIPv4) ? YES : NO; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (BOOL)isIPv6Preferred -{ - __block BOOL result = NO; - - dispatch_block_t block = ^{ - result = (self->config & kPreferIPv6) ? YES : NO; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (BOOL)isIPVersionNeutral -{ - __block BOOL result = NO; - - dispatch_block_t block = ^{ - result = (self->config & (kPreferIPv4 | kPreferIPv6)) == 0; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (void)setPreferIPv4 -{ - dispatch_block_t block = ^{ - - LogTrace(); - - self->config |= kPreferIPv4; - self->config &= ~kPreferIPv6; - - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (void)setPreferIPv6 -{ - dispatch_block_t block = ^{ - - LogTrace(); - - self->config &= ~kPreferIPv4; - self->config |= kPreferIPv6; - - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (void)setIPVersionNeutral -{ - dispatch_block_t block = ^{ - - LogTrace(); - - self->config &= ~kPreferIPv4; - self->config &= ~kPreferIPv6; - - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (uint16_t)maxReceiveIPv4BufferSize -{ - __block uint16_t result = 0; - - dispatch_block_t block = ^{ - - result = self->max4ReceiveSize; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (void)setMaxReceiveIPv4BufferSize:(uint16_t)max -{ - dispatch_block_t block = ^{ - - LogVerbose(@"%@ %u", THIS_METHOD, (unsigned)max); - - self->max4ReceiveSize = max; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (uint32_t)maxReceiveIPv6BufferSize -{ - __block uint32_t result = 0; - - dispatch_block_t block = ^{ - - result = self->max6ReceiveSize; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (void)setMaxReceiveIPv6BufferSize:(uint32_t)max -{ - dispatch_block_t block = ^{ - - LogVerbose(@"%@ %u", THIS_METHOD, (unsigned)max); - - self->max6ReceiveSize = max; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (void)setMaxSendBufferSize:(uint16_t)max -{ - dispatch_block_t block = ^{ - - LogVerbose(@"%@ %u", THIS_METHOD, (unsigned)max); - - self->maxSendSize = max; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (uint16_t)maxSendBufferSize -{ - __block uint16_t result = 0; - - dispatch_block_t block = ^{ - - result = self->maxSendSize; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (id)userData -{ - __block id result = nil; - - dispatch_block_t block = ^{ - - result = self->userData; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (void)setUserData:(id)arbitraryUserData -{ - dispatch_block_t block = ^{ - - if (self->userData != arbitraryUserData) - { - self->userData = arbitraryUserData; - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Delegate Helpers -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (void)notifyDidConnectToAddress:(NSData *)anAddress -{ - LogTrace(); - - __strong id theDelegate = delegate; - if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocket:didConnectToAddress:)]) - { - NSData *address = [anAddress copy]; // In case param is NSMutableData - - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate udpSocket:self didConnectToAddress:address]; - }}); - } -} - -- (void)notifyDidNotConnect:(NSError *)error -{ - LogTrace(); - - __strong id theDelegate = delegate; - if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocket:didNotConnect:)]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate udpSocket:self didNotConnect:error]; - }}); - } -} - -- (void)notifyDidSendDataWithTag:(long)tag -{ - LogTrace(); - - __strong id theDelegate = delegate; - if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocket:didSendDataWithTag:)]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate udpSocket:self didSendDataWithTag:tag]; - }}); - } -} - -- (void)notifyDidNotSendDataWithTag:(long)tag dueToError:(NSError *)error -{ - LogTrace(); - - __strong id theDelegate = delegate; - if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocket:didNotSendDataWithTag:dueToError:)]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate udpSocket:self didNotSendDataWithTag:tag dueToError:error]; - }}); - } -} - -- (void)notifyDidReceiveData:(NSData *)data fromAddress:(NSData *)address withFilterContext:(id)context -{ - LogTrace(); - - SEL selector = @selector(udpSocket:didReceiveData:fromAddress:withFilterContext:); - - __strong id theDelegate = delegate; - if (delegateQueue && [theDelegate respondsToSelector:selector]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate udpSocket:self didReceiveData:data fromAddress:address withFilterContext:context]; - }}); - } -} - -- (void)notifyDidCloseWithError:(NSError *)error -{ - LogTrace(); - - __strong id theDelegate = delegate; - if (delegateQueue && [theDelegate respondsToSelector:@selector(udpSocketDidClose:withError:)]) - { - dispatch_async(delegateQueue, ^{ @autoreleasepool { - - [theDelegate udpSocketDidClose:self withError:error]; - }}); - } -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Errors -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (NSError *)badConfigError:(NSString *)errMsg -{ - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncUdpSocketErrorDomain - code:GCDAsyncUdpSocketBadConfigError - userInfo:userInfo]; -} - -- (NSError *)badParamError:(NSString *)errMsg -{ - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncUdpSocketErrorDomain - code:GCDAsyncUdpSocketBadParamError - userInfo:userInfo]; -} - -- (NSError *)gaiError:(int)gai_error -{ - NSString *errMsg = [NSString stringWithCString:gai_strerror(gai_error) encoding:NSASCIIStringEncoding]; - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:@"kCFStreamErrorDomainNetDB" code:gai_error userInfo:userInfo]; -} - -- (NSError *)errnoErrorWithReason:(NSString *)reason -{ - NSString *errMsg = [NSString stringWithUTF8String:strerror(errno)]; - NSDictionary *userInfo; - - if (reason) - userInfo = @{NSLocalizedDescriptionKey : errMsg, - NSLocalizedFailureReasonErrorKey : reason}; - else - userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:NSPOSIXErrorDomain code:errno userInfo:userInfo]; -} - -- (NSError *)errnoError -{ - return [self errnoErrorWithReason:nil]; -} - -/** - * Returns a standard send timeout error. -**/ -- (NSError *)sendTimeoutError -{ - NSString *errMsg = NSLocalizedStringWithDefaultValue(@"GCDAsyncUdpSocketSendTimeoutError", - @"GCDAsyncUdpSocket", [NSBundle mainBundle], - @"Send operation timed out", nil); - - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncUdpSocketErrorDomain - code:GCDAsyncUdpSocketSendTimeoutError - userInfo:userInfo]; -} - -- (NSError *)socketClosedError -{ - NSString *errMsg = NSLocalizedStringWithDefaultValue(@"GCDAsyncUdpSocketClosedError", - @"GCDAsyncUdpSocket", [NSBundle mainBundle], - @"Socket closed", nil); - - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncUdpSocketErrorDomain code:GCDAsyncUdpSocketClosedError userInfo:userInfo]; -} - -- (NSError *)otherError:(NSString *)errMsg -{ - NSDictionary *userInfo = @{NSLocalizedDescriptionKey : errMsg}; - - return [NSError errorWithDomain:GCDAsyncUdpSocketErrorDomain - code:GCDAsyncUdpSocketOtherError - userInfo:userInfo]; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Utilities -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (BOOL)preOp:(NSError **)errPtr -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - if (delegate == nil) // Must have delegate set - { - if (errPtr) - { - NSString *msg = @"Attempting to use socket without a delegate. Set a delegate first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - if (delegateQueue == NULL) // Must have delegate queue set - { - if (errPtr) - { - NSString *msg = @"Attempting to use socket without a delegate queue. Set a delegate queue first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - return YES; -} - -/** - * This method executes on a global concurrent queue. - * When complete, it executes the given completion block on the socketQueue. -**/ -- (void)asyncResolveHost:(NSString *)aHost - port:(uint16_t)port - withCompletionBlock:(void (^)(NSArray *addresses, NSError *error))completionBlock -{ - LogTrace(); - - // Check parameter(s) - - if (aHost == nil) - { - NSString *msg = @"The host param is nil. Should be domain name or IP address string."; - NSError *error = [self badParamError:msg]; - - // We should still use dispatch_async since this method is expected to be asynchronous - - dispatch_async(socketQueue, ^{ @autoreleasepool { - - completionBlock(nil, error); - }}); - - return; - } - - // It's possible that the given aHost parameter is actually a NSMutableString. - // So we want to copy it now, within this block that will be executed synchronously. - // This way the asynchronous lookup block below doesn't have to worry about it changing. - - NSString *host = [aHost copy]; - - - dispatch_queue_t globalConcurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); - dispatch_async(globalConcurrentQueue, ^{ @autoreleasepool { - - NSMutableArray *addresses = [NSMutableArray arrayWithCapacity:2]; - NSError *error = nil; - - if ([host isEqualToString:@"localhost"] || [host isEqualToString:@"loopback"]) - { - // Use LOOPBACK address - struct sockaddr_in sockaddr4; - memset(&sockaddr4, 0, sizeof(sockaddr4)); - - sockaddr4.sin_len = sizeof(struct sockaddr_in); - sockaddr4.sin_family = AF_INET; - sockaddr4.sin_port = htons(port); - sockaddr4.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - - struct sockaddr_in6 sockaddr6; - memset(&sockaddr6, 0, sizeof(sockaddr6)); - - sockaddr6.sin6_len = sizeof(struct sockaddr_in6); - sockaddr6.sin6_family = AF_INET6; - sockaddr6.sin6_port = htons(port); - sockaddr6.sin6_addr = in6addr_loopback; - - // Wrap the native address structures and add to list - [addresses addObject:[NSData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]]; - [addresses addObject:[NSData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]]; - } - else - { - NSString *portStr = [NSString stringWithFormat:@"%hu", port]; - - struct addrinfo hints, *res, *res0; - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = PF_UNSPEC; - hints.ai_socktype = SOCK_DGRAM; - hints.ai_protocol = IPPROTO_UDP; - - int gai_error = getaddrinfo([host UTF8String], [portStr UTF8String], &hints, &res0); - - if (gai_error) - { - error = [self gaiError:gai_error]; - } - else - { - for(res = res0; res; res = res->ai_next) - { - if (res->ai_family == AF_INET) - { - // Found IPv4 address - // Wrap the native address structure and add to list - - [addresses addObject:[NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]]; - } - else if (res->ai_family == AF_INET6) - { - - // Fixes connection issues with IPv6, it is the same solution for udp socket. - // https://github.com/robbiehanson/CocoaAsyncSocket/issues/429#issuecomment-222477158 - struct sockaddr_in6 *sockaddr = (struct sockaddr_in6 *)(void *)res->ai_addr; - in_port_t *portPtr = &sockaddr->sin6_port; - if ((portPtr != NULL) && (*portPtr == 0)) { - *portPtr = htons(port); - } - - // Found IPv6 address - // Wrap the native address structure and add to list - [addresses addObject:[NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]]; - } - } - freeaddrinfo(res0); - - if ([addresses count] == 0) - { - error = [self gaiError:EAI_FAIL]; - } - } - } - - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - completionBlock(addresses, error); - }}); - - }}); -} - -/** - * This method picks an address from the given list of addresses. - * The address picked depends upon which protocols are disabled, deactived, & preferred. - * - * Returns the address family (AF_INET or AF_INET6) of the picked address, - * or AF_UNSPEC and the corresponding error is there's a problem. -**/ -- (int)getAddress:(NSData **)addressPtr error:(NSError **)errorPtr fromAddresses:(NSArray *)addresses -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert([addresses count] > 0, @"Expected at least one address"); - - int resultAF = AF_UNSPEC; - NSData *resultAddress = nil; - NSError *resultError = nil; - - // Check for problems - - BOOL resolvedIPv4Address = NO; - BOOL resolvedIPv6Address = NO; - - for (NSData *address in addresses) - { - switch ([[self class] familyFromAddress:address]) - { - case AF_INET : resolvedIPv4Address = YES; break; - case AF_INET6 : resolvedIPv6Address = YES; break; - - default : NSAssert(NO, @"Addresses array contains invalid address"); - } - } - - BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; - BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; - - if (isIPv4Disabled && !resolvedIPv6Address) - { - NSString *msg = @"IPv4 has been disabled and DNS lookup found no IPv6 address(es)."; - resultError = [self otherError:msg]; - - if (addressPtr) *addressPtr = resultAddress; - if (errorPtr) *errorPtr = resultError; - - return resultAF; - } - - if (isIPv6Disabled && !resolvedIPv4Address) - { - NSString *msg = @"IPv6 has been disabled and DNS lookup found no IPv4 address(es)."; - resultError = [self otherError:msg]; - - if (addressPtr) *addressPtr = resultAddress; - if (errorPtr) *errorPtr = resultError; - - return resultAF; - } - - BOOL isIPv4Deactivated = (flags & kIPv4Deactivated) ? YES : NO; - BOOL isIPv6Deactivated = (flags & kIPv6Deactivated) ? YES : NO; - - if (isIPv4Deactivated && !resolvedIPv6Address) - { - NSString *msg = @"IPv4 has been deactivated due to bind/connect, and DNS lookup found no IPv6 address(es)."; - resultError = [self otherError:msg]; - - if (addressPtr) *addressPtr = resultAddress; - if (errorPtr) *errorPtr = resultError; - - return resultAF; - } - - if (isIPv6Deactivated && !resolvedIPv4Address) - { - NSString *msg = @"IPv6 has been deactivated due to bind/connect, and DNS lookup found no IPv4 address(es)."; - resultError = [self otherError:msg]; - - if (addressPtr) *addressPtr = resultAddress; - if (errorPtr) *errorPtr = resultError; - - return resultAF; - } - - // Extract first IPv4 and IPv6 address in list - - BOOL ipv4WasFirstInList = YES; - NSData *address4 = nil; - NSData *address6 = nil; - - for (NSData *address in addresses) - { - int af = [[self class] familyFromAddress:address]; - - if (af == AF_INET) - { - if (address4 == nil) - { - address4 = address; - - if (address6) - break; - else - ipv4WasFirstInList = YES; - } - } - else // af == AF_INET6 - { - if (address6 == nil) - { - address6 = address; - - if (address4) - break; - else - ipv4WasFirstInList = NO; - } - } - } - - // Determine socket type - - BOOL preferIPv4 = (config & kPreferIPv4) ? YES : NO; - BOOL preferIPv6 = (config & kPreferIPv6) ? YES : NO; - - BOOL useIPv4 = ((preferIPv4 && address4) || (address6 == nil)); - BOOL useIPv6 = ((preferIPv6 && address6) || (address4 == nil)); - - NSAssert(!(preferIPv4 && preferIPv6), @"Invalid config state"); - NSAssert(!(useIPv4 && useIPv6), @"Invalid logic"); - - if (useIPv4 || (!useIPv6 && ipv4WasFirstInList)) - { - resultAF = AF_INET; - resultAddress = address4; - } - else - { - resultAF = AF_INET6; - resultAddress = address6; - } - - if (addressPtr) *addressPtr = resultAddress; - if (errorPtr) *errorPtr = resultError; - - return resultAF; -} - -/** - * Finds the address(es) of an interface description. - * An inteface description may be an interface name (en0, en1, lo0) or corresponding IP (192.168.4.34). -**/ -- (void)convertIntefaceDescription:(NSString *)interfaceDescription - port:(uint16_t)port - intoAddress4:(NSData **)interfaceAddr4Ptr - address6:(NSData **)interfaceAddr6Ptr -{ - NSData *addr4 = nil; - NSData *addr6 = nil; - - if (interfaceDescription == nil) - { - // ANY address - - struct sockaddr_in sockaddr4; - memset(&sockaddr4, 0, sizeof(sockaddr4)); - - sockaddr4.sin_len = sizeof(sockaddr4); - sockaddr4.sin_family = AF_INET; - sockaddr4.sin_port = htons(port); - sockaddr4.sin_addr.s_addr = htonl(INADDR_ANY); - - struct sockaddr_in6 sockaddr6; - memset(&sockaddr6, 0, sizeof(sockaddr6)); - - sockaddr6.sin6_len = sizeof(sockaddr6); - sockaddr6.sin6_family = AF_INET6; - sockaddr6.sin6_port = htons(port); - sockaddr6.sin6_addr = in6addr_any; - - addr4 = [NSData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]; - addr6 = [NSData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]; - } - else if ([interfaceDescription isEqualToString:@"localhost"] || - [interfaceDescription isEqualToString:@"loopback"]) - { - // LOOPBACK address - - struct sockaddr_in sockaddr4; - memset(&sockaddr4, 0, sizeof(sockaddr4)); - - sockaddr4.sin_len = sizeof(struct sockaddr_in); - sockaddr4.sin_family = AF_INET; - sockaddr4.sin_port = htons(port); - sockaddr4.sin_addr.s_addr = htonl(INADDR_LOOPBACK); - - struct sockaddr_in6 sockaddr6; - memset(&sockaddr6, 0, sizeof(sockaddr6)); - - sockaddr6.sin6_len = sizeof(struct sockaddr_in6); - sockaddr6.sin6_family = AF_INET6; - sockaddr6.sin6_port = htons(port); - sockaddr6.sin6_addr = in6addr_loopback; - - addr4 = [NSData dataWithBytes:&sockaddr4 length:sizeof(sockaddr4)]; - addr6 = [NSData dataWithBytes:&sockaddr6 length:sizeof(sockaddr6)]; - } - else - { - const char *iface = [interfaceDescription UTF8String]; - - struct ifaddrs *addrs; - const struct ifaddrs *cursor; - - if ((getifaddrs(&addrs) == 0)) - { - cursor = addrs; - while (cursor != NULL) - { - if ((addr4 == nil) && (cursor->ifa_addr->sa_family == AF_INET)) - { - // IPv4 - - struct sockaddr_in *addr = (struct sockaddr_in *)(void *)cursor->ifa_addr; - - if (strcmp(cursor->ifa_name, iface) == 0) - { - // Name match - - struct sockaddr_in nativeAddr4 = *addr; - nativeAddr4.sin_port = htons(port); - - addr4 = [NSData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; - } - else - { - char ip[INET_ADDRSTRLEN]; - - const char *conversion; - conversion = inet_ntop(AF_INET, &addr->sin_addr, ip, sizeof(ip)); - - if ((conversion != NULL) && (strcmp(ip, iface) == 0)) - { - // IP match - - struct sockaddr_in nativeAddr4 = *addr; - nativeAddr4.sin_port = htons(port); - - addr4 = [NSData dataWithBytes:&nativeAddr4 length:sizeof(nativeAddr4)]; - } - } - } - else if ((addr6 == nil) && (cursor->ifa_addr->sa_family == AF_INET6)) - { - // IPv6 - - const struct sockaddr_in6 *addr = (const struct sockaddr_in6 *)(const void *)cursor->ifa_addr; - - if (strcmp(cursor->ifa_name, iface) == 0) - { - // Name match - - struct sockaddr_in6 nativeAddr6 = *addr; - nativeAddr6.sin6_port = htons(port); - - addr6 = [NSData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; - } - else - { - char ip[INET6_ADDRSTRLEN]; - - const char *conversion; - conversion = inet_ntop(AF_INET6, &addr->sin6_addr, ip, sizeof(ip)); - - if ((conversion != NULL) && (strcmp(ip, iface) == 0)) - { - // IP match - - struct sockaddr_in6 nativeAddr6 = *addr; - nativeAddr6.sin6_port = htons(port); - - addr6 = [NSData dataWithBytes:&nativeAddr6 length:sizeof(nativeAddr6)]; - } - } - } - - cursor = cursor->ifa_next; - } - - freeifaddrs(addrs); - } - } - - if (interfaceAddr4Ptr) *interfaceAddr4Ptr = addr4; - if (interfaceAddr6Ptr) *interfaceAddr6Ptr = addr6; -} - -/** - * Converts a numeric hostname into its corresponding address. - * The hostname is expected to be an IPv4 or IPv6 address represented as a human-readable string. (e.g. 192.168.4.34) -**/ -- (void)convertNumericHost:(NSString *)numericHost - port:(uint16_t)port - intoAddress4:(NSData **)addr4Ptr - address6:(NSData **)addr6Ptr -{ - NSData *addr4 = nil; - NSData *addr6 = nil; - - if (numericHost) - { - NSString *portStr = [NSString stringWithFormat:@"%hu", port]; - - struct addrinfo hints, *res, *res0; - - memset(&hints, 0, sizeof(hints)); - hints.ai_family = PF_UNSPEC; - hints.ai_socktype = SOCK_DGRAM; - hints.ai_protocol = IPPROTO_UDP; - hints.ai_flags = AI_NUMERICHOST; // No name resolution should be attempted - - if (getaddrinfo([numericHost UTF8String], [portStr UTF8String], &hints, &res0) == 0) - { - for (res = res0; res; res = res->ai_next) - { - if ((addr4 == nil) && (res->ai_family == AF_INET)) - { - // Found IPv4 address - // Wrap the native address structure - addr4 = [NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]; - } - else if ((addr6 == nil) && (res->ai_family == AF_INET6)) - { - // Found IPv6 address - // Wrap the native address structure - addr6 = [NSData dataWithBytes:res->ai_addr length:res->ai_addrlen]; - } - } - freeaddrinfo(res0); - } - } - - if (addr4Ptr) *addr4Ptr = addr4; - if (addr6Ptr) *addr6Ptr = addr6; -} - -- (BOOL)isConnectedToAddress4:(NSData *)someAddr4 -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert(flags & kDidConnect, @"Not connected"); - NSAssert(cachedConnectedAddress, @"Expected cached connected address"); - - if (cachedConnectedFamily != AF_INET) - { - return NO; - } - - const struct sockaddr_in *sSockaddr4 = (const struct sockaddr_in *)[someAddr4 bytes]; - const struct sockaddr_in *cSockaddr4 = (const struct sockaddr_in *)[cachedConnectedAddress bytes]; - - if (memcmp(&sSockaddr4->sin_addr, &cSockaddr4->sin_addr, sizeof(struct in_addr)) != 0) - { - return NO; - } - if (memcmp(&sSockaddr4->sin_port, &cSockaddr4->sin_port, sizeof(in_port_t)) != 0) - { - return NO; - } - - return YES; -} - -- (BOOL)isConnectedToAddress6:(NSData *)someAddr6 -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert(flags & kDidConnect, @"Not connected"); - NSAssert(cachedConnectedAddress, @"Expected cached connected address"); - - if (cachedConnectedFamily != AF_INET6) - { - return NO; - } - - const struct sockaddr_in6 *sSockaddr6 = (const struct sockaddr_in6 *)[someAddr6 bytes]; - const struct sockaddr_in6 *cSockaddr6 = (const struct sockaddr_in6 *)[cachedConnectedAddress bytes]; - - if (memcmp(&sSockaddr6->sin6_addr, &cSockaddr6->sin6_addr, sizeof(struct in6_addr)) != 0) - { - return NO; - } - if (memcmp(&sSockaddr6->sin6_port, &cSockaddr6->sin6_port, sizeof(in_port_t)) != 0) - { - return NO; - } - - return YES; -} - -- (unsigned int)indexOfInterfaceAddr4:(NSData *)interfaceAddr4 -{ - if (interfaceAddr4 == nil) - return 0; - if ([interfaceAddr4 length] != sizeof(struct sockaddr_in)) - return 0; - - int result = 0; - const struct sockaddr_in *ifaceAddr = (const struct sockaddr_in *)[interfaceAddr4 bytes]; - - struct ifaddrs *addrs; - const struct ifaddrs *cursor; - - if ((getifaddrs(&addrs) == 0)) - { - cursor = addrs; - while (cursor != NULL) - { - if (cursor->ifa_addr->sa_family == AF_INET) - { - // IPv4 - - const struct sockaddr_in *addr = (const struct sockaddr_in *)(const void *)cursor->ifa_addr; - - if (memcmp(&addr->sin_addr, &ifaceAddr->sin_addr, sizeof(struct in_addr)) == 0) - { - result = if_nametoindex(cursor->ifa_name); - break; - } - } - - cursor = cursor->ifa_next; - } - - freeifaddrs(addrs); - } - - return result; -} - -- (unsigned int)indexOfInterfaceAddr6:(NSData *)interfaceAddr6 -{ - if (interfaceAddr6 == nil) - return 0; - if ([interfaceAddr6 length] != sizeof(struct sockaddr_in6)) - return 0; - - int result = 0; - const struct sockaddr_in6 *ifaceAddr = (const struct sockaddr_in6 *)[interfaceAddr6 bytes]; - - struct ifaddrs *addrs; - const struct ifaddrs *cursor; - - if ((getifaddrs(&addrs) == 0)) - { - cursor = addrs; - while (cursor != NULL) - { - if (cursor->ifa_addr->sa_family == AF_INET6) - { - // IPv6 - - const struct sockaddr_in6 *addr = (const struct sockaddr_in6 *)(const void *)cursor->ifa_addr; - - if (memcmp(&addr->sin6_addr, &ifaceAddr->sin6_addr, sizeof(struct in6_addr)) == 0) - { - result = if_nametoindex(cursor->ifa_name); - break; - } - } - - cursor = cursor->ifa_next; - } - - freeifaddrs(addrs); - } - - return result; -} - -- (void)setupSendAndReceiveSourcesForSocket4 -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - send4Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_WRITE, socket4FD, 0, socketQueue); - receive4Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, socket4FD, 0, socketQueue); - - // Setup event handlers - - dispatch_source_set_event_handler(send4Source, ^{ @autoreleasepool { - - LogVerbose(@"send4EventBlock"); - LogVerbose(@"dispatch_source_get_data(send4Source) = %lu", dispatch_source_get_data(send4Source)); - - self->flags |= kSock4CanAcceptBytes; - - // If we're ready to send data, do so immediately. - // Otherwise pause the send source or it will continue to fire over and over again. - - if (self->currentSend == nil) - { - LogVerbose(@"Nothing to send"); - [self suspendSend4Source]; - } - else if (self->currentSend->resolveInProgress) - { - LogVerbose(@"currentSend - waiting for address resolve"); - [self suspendSend4Source]; - } - else if (self->currentSend->filterInProgress) - { - LogVerbose(@"currentSend - waiting on sendFilter"); - [self suspendSend4Source]; - } - else - { - [self doSend]; - } - - }}); - - dispatch_source_set_event_handler(receive4Source, ^{ @autoreleasepool { - - LogVerbose(@"receive4EventBlock"); - - self->socket4FDBytesAvailable = dispatch_source_get_data(self->receive4Source); - LogVerbose(@"socket4FDBytesAvailable: %lu", socket4FDBytesAvailable); - - if (self->socket4FDBytesAvailable > 0) - [self doReceive]; - else - [self doReceiveEOF]; - - }}); - - // Setup cancel handlers - - __block int socketFDRefCount = 2; - - int theSocketFD = socket4FD; - - #if !OS_OBJECT_USE_OBJC - dispatch_source_t theSendSource = send4Source; - dispatch_source_t theReceiveSource = receive4Source; - #endif - - dispatch_source_set_cancel_handler(send4Source, ^{ - - LogVerbose(@"send4CancelBlock"); - - #if !OS_OBJECT_USE_OBJC - LogVerbose(@"dispatch_release(send4Source)"); - dispatch_release(theSendSource); - #endif - - if (--socketFDRefCount == 0) - { - LogVerbose(@"close(socket4FD)"); - close(theSocketFD); - } - }); - - dispatch_source_set_cancel_handler(receive4Source, ^{ - - LogVerbose(@"receive4CancelBlock"); - - #if !OS_OBJECT_USE_OBJC - LogVerbose(@"dispatch_release(receive4Source)"); - dispatch_release(theReceiveSource); - #endif - - if (--socketFDRefCount == 0) - { - LogVerbose(@"close(socket4FD)"); - close(theSocketFD); - } - }); - - // We will not be able to receive until the socket is bound to a port, - // either explicitly via bind, or implicitly by connect or by sending data. - // - // But we should be able to send immediately. - - socket4FDBytesAvailable = 0; - flags |= kSock4CanAcceptBytes; - - flags |= kSend4SourceSuspended; - flags |= kReceive4SourceSuspended; -} - -- (void)setupSendAndReceiveSourcesForSocket6 -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - send6Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_WRITE, socket6FD, 0, socketQueue); - receive6Source = dispatch_source_create(DISPATCH_SOURCE_TYPE_READ, socket6FD, 0, socketQueue); - - // Setup event handlers - - dispatch_source_set_event_handler(send6Source, ^{ @autoreleasepool { - - LogVerbose(@"send6EventBlock"); - LogVerbose(@"dispatch_source_get_data(send6Source) = %lu", dispatch_source_get_data(send6Source)); - - self->flags |= kSock6CanAcceptBytes; - - // If we're ready to send data, do so immediately. - // Otherwise pause the send source or it will continue to fire over and over again. - - if (self->currentSend == nil) - { - LogVerbose(@"Nothing to send"); - [self suspendSend6Source]; - } - else if (self->currentSend->resolveInProgress) - { - LogVerbose(@"currentSend - waiting for address resolve"); - [self suspendSend6Source]; - } - else if (self->currentSend->filterInProgress) - { - LogVerbose(@"currentSend - waiting on sendFilter"); - [self suspendSend6Source]; - } - else - { - [self doSend]; - } - - }}); - - dispatch_source_set_event_handler(receive6Source, ^{ @autoreleasepool { - - LogVerbose(@"receive6EventBlock"); - - self->socket6FDBytesAvailable = dispatch_source_get_data(self->receive6Source); - LogVerbose(@"socket6FDBytesAvailable: %lu", socket6FDBytesAvailable); - - if (self->socket6FDBytesAvailable > 0) - [self doReceive]; - else - [self doReceiveEOF]; - - }}); - - // Setup cancel handlers - - __block int socketFDRefCount = 2; - - int theSocketFD = socket6FD; - - #if !OS_OBJECT_USE_OBJC - dispatch_source_t theSendSource = send6Source; - dispatch_source_t theReceiveSource = receive6Source; - #endif - - dispatch_source_set_cancel_handler(send6Source, ^{ - - LogVerbose(@"send6CancelBlock"); - - #if !OS_OBJECT_USE_OBJC - LogVerbose(@"dispatch_release(send6Source)"); - dispatch_release(theSendSource); - #endif - - if (--socketFDRefCount == 0) - { - LogVerbose(@"close(socket6FD)"); - close(theSocketFD); - } - }); - - dispatch_source_set_cancel_handler(receive6Source, ^{ - - LogVerbose(@"receive6CancelBlock"); - - #if !OS_OBJECT_USE_OBJC - LogVerbose(@"dispatch_release(receive6Source)"); - dispatch_release(theReceiveSource); - #endif - - if (--socketFDRefCount == 0) - { - LogVerbose(@"close(socket6FD)"); - close(theSocketFD); - } - }); - - // We will not be able to receive until the socket is bound to a port, - // either explicitly via bind, or implicitly by connect or by sending data. - // - // But we should be able to send immediately. - - socket6FDBytesAvailable = 0; - flags |= kSock6CanAcceptBytes; - - flags |= kSend6SourceSuspended; - flags |= kReceive6SourceSuspended; -} - -- (BOOL)createSocket4:(BOOL)useIPv4 socket6:(BOOL)useIPv6 error:(NSError * __autoreleasing *)errPtr -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert(((flags & kDidCreateSockets) == 0), @"Sockets have already been created"); - - // CreateSocket Block - // This block will be invoked below. - - int(^createSocket)(int) = ^int (int domain) { - - int socketFD = socket(domain, SOCK_DGRAM, 0); - - if (socketFD == SOCKET_NULL) - { - if (errPtr) - *errPtr = [self errnoErrorWithReason:@"Error in socket() function"]; - - return SOCKET_NULL; - } - - int status; - - // Set socket options - - status = fcntl(socketFD, F_SETFL, O_NONBLOCK); - if (status == -1) - { - if (errPtr) - *errPtr = [self errnoErrorWithReason:@"Error enabling non-blocking IO on socket (fcntl)"]; - - close(socketFD); - return SOCKET_NULL; - } - - int reuseaddr = 1; - status = setsockopt(socketFD, SOL_SOCKET, SO_REUSEADDR, &reuseaddr, sizeof(reuseaddr)); - if (status == -1) - { - if (errPtr) - *errPtr = [self errnoErrorWithReason:@"Error enabling address reuse (setsockopt)"]; - - close(socketFD); - return SOCKET_NULL; - } - - int nosigpipe = 1; - status = setsockopt(socketFD, SOL_SOCKET, SO_NOSIGPIPE, &nosigpipe, sizeof(nosigpipe)); - if (status == -1) - { - if (errPtr) - *errPtr = [self errnoErrorWithReason:@"Error disabling sigpipe (setsockopt)"]; - - close(socketFD); - return SOCKET_NULL; - } - - /** - * The theoretical maximum size of any IPv4 UDP packet is UINT16_MAX = 65535. - * The theoretical maximum size of any IPv6 UDP packet is UINT32_MAX = 4294967295. - * - * The default maximum size of the UDP buffer in iOS is 9216 bytes. - * - * This is the reason of #222(GCD does not necessarily return the size of an entire UDP packet) and - * #535(GCDAsyncUDPSocket can not send data when data is greater than 9K) - * - * - * Enlarge the maximum size of UDP packet. - * I can not ensure the protocol type now so that the max size is set to 65535 :) - **/ - - status = setsockopt(socketFD, SOL_SOCKET, SO_SNDBUF, (const char*)&self->maxSendSize, sizeof(int)); - if (status == -1) - { - if (errPtr) - *errPtr = [self errnoErrorWithReason:@"Error setting send buffer size (setsockopt)"]; - close(socketFD); - return SOCKET_NULL; - } - - status = setsockopt(socketFD, SOL_SOCKET, SO_RCVBUF, (const char*)&self->maxSendSize, sizeof(int)); - if (status == -1) - { - if (errPtr) - *errPtr = [self errnoErrorWithReason:@"Error setting receive buffer size (setsockopt)"]; - close(socketFD); - return SOCKET_NULL; - } - - - return socketFD; - }; - - // Create sockets depending upon given configuration. - - if (useIPv4) - { - LogVerbose(@"Creating IPv4 socket"); - - socket4FD = createSocket(AF_INET); - if (socket4FD == SOCKET_NULL) - { - // errPtr set in local createSocket() block - return NO; - } - } - - if (useIPv6) - { - LogVerbose(@"Creating IPv6 socket"); - - socket6FD = createSocket(AF_INET6); - if (socket6FD == SOCKET_NULL) - { - // errPtr set in local createSocket() block - - if (socket4FD != SOCKET_NULL) - { - close(socket4FD); - socket4FD = SOCKET_NULL; - } - - return NO; - } - } - - // Setup send and receive sources - - if (useIPv4) - [self setupSendAndReceiveSourcesForSocket4]; - if (useIPv6) - [self setupSendAndReceiveSourcesForSocket6]; - - flags |= kDidCreateSockets; - return YES; -} - -- (BOOL)createSockets:(NSError **)errPtr -{ - LogTrace(); - - BOOL useIPv4 = [self isIPv4Enabled]; - BOOL useIPv6 = [self isIPv6Enabled]; - - return [self createSocket4:useIPv4 socket6:useIPv6 error:errPtr]; -} - -- (void)suspendSend4Source -{ - if (send4Source && !(flags & kSend4SourceSuspended)) - { - LogVerbose(@"dispatch_suspend(send4Source)"); - - dispatch_suspend(send4Source); - flags |= kSend4SourceSuspended; - } -} - -- (void)suspendSend6Source -{ - if (send6Source && !(flags & kSend6SourceSuspended)) - { - LogVerbose(@"dispatch_suspend(send6Source)"); - - dispatch_suspend(send6Source); - flags |= kSend6SourceSuspended; - } -} - -- (void)resumeSend4Source -{ - if (send4Source && (flags & kSend4SourceSuspended)) - { - LogVerbose(@"dispatch_resume(send4Source)"); - - dispatch_resume(send4Source); - flags &= ~kSend4SourceSuspended; - } -} - -- (void)resumeSend6Source -{ - if (send6Source && (flags & kSend6SourceSuspended)) - { - LogVerbose(@"dispatch_resume(send6Source)"); - - dispatch_resume(send6Source); - flags &= ~kSend6SourceSuspended; - } -} - -- (void)suspendReceive4Source -{ - if (receive4Source && !(flags & kReceive4SourceSuspended)) - { - LogVerbose(@"dispatch_suspend(receive4Source)"); - - dispatch_suspend(receive4Source); - flags |= kReceive4SourceSuspended; - } -} - -- (void)suspendReceive6Source -{ - if (receive6Source && !(flags & kReceive6SourceSuspended)) - { - LogVerbose(@"dispatch_suspend(receive6Source)"); - - dispatch_suspend(receive6Source); - flags |= kReceive6SourceSuspended; - } -} - -- (void)resumeReceive4Source -{ - if (receive4Source && (flags & kReceive4SourceSuspended)) - { - LogVerbose(@"dispatch_resume(receive4Source)"); - - dispatch_resume(receive4Source); - flags &= ~kReceive4SourceSuspended; - } -} - -- (void)resumeReceive6Source -{ - if (receive6Source && (flags & kReceive6SourceSuspended)) - { - LogVerbose(@"dispatch_resume(receive6Source)"); - - dispatch_resume(receive6Source); - flags &= ~kReceive6SourceSuspended; - } -} - -- (void)closeSocket4 -{ - if (socket4FD != SOCKET_NULL) - { - LogVerbose(@"dispatch_source_cancel(send4Source)"); - dispatch_source_cancel(send4Source); - - LogVerbose(@"dispatch_source_cancel(receive4Source)"); - dispatch_source_cancel(receive4Source); - - // For some crazy reason (in my opinion), cancelling a dispatch source doesn't - // invoke the cancel handler if the dispatch source is paused. - // So we have to unpause the source if needed. - // This allows the cancel handler to be run, which in turn releases the source and closes the socket. - - [self resumeSend4Source]; - [self resumeReceive4Source]; - - // The sockets will be closed by the cancel handlers of the corresponding source - - send4Source = NULL; - receive4Source = NULL; - - socket4FD = SOCKET_NULL; - - // Clear socket states - - socket4FDBytesAvailable = 0; - flags &= ~kSock4CanAcceptBytes; - - // Clear cached info - - cachedLocalAddress4 = nil; - cachedLocalHost4 = nil; - cachedLocalPort4 = 0; - } -} - -- (void)closeSocket6 -{ - if (socket6FD != SOCKET_NULL) - { - LogVerbose(@"dispatch_source_cancel(send6Source)"); - dispatch_source_cancel(send6Source); - - LogVerbose(@"dispatch_source_cancel(receive6Source)"); - dispatch_source_cancel(receive6Source); - - // For some crazy reason (in my opinion), cancelling a dispatch source doesn't - // invoke the cancel handler if the dispatch source is paused. - // So we have to unpause the source if needed. - // This allows the cancel handler to be run, which in turn releases the source and closes the socket. - - [self resumeSend6Source]; - [self resumeReceive6Source]; - - send6Source = NULL; - receive6Source = NULL; - - // The sockets will be closed by the cancel handlers of the corresponding source - - socket6FD = SOCKET_NULL; - - // Clear socket states - - socket6FDBytesAvailable = 0; - flags &= ~kSock6CanAcceptBytes; - - // Clear cached info - - cachedLocalAddress6 = nil; - cachedLocalHost6 = nil; - cachedLocalPort6 = 0; - } -} - -- (void)closeSockets -{ - [self closeSocket4]; - [self closeSocket6]; - - flags &= ~kDidCreateSockets; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Diagnostics -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (BOOL)getLocalAddress:(NSData **)dataPtr - host:(NSString **)hostPtr - port:(uint16_t *)portPtr - forSocket:(int)socketFD - withFamily:(int)socketFamily -{ - - NSData *data = nil; - NSString *host = nil; - uint16_t port = 0; - - if (socketFamily == AF_INET) - { - struct sockaddr_in sockaddr4; - socklen_t sockaddr4len = sizeof(sockaddr4); - - if (getsockname(socketFD, (struct sockaddr *)&sockaddr4, &sockaddr4len) == 0) - { - data = [NSData dataWithBytes:&sockaddr4 length:sockaddr4len]; - host = [[self class] hostFromSockaddr4:&sockaddr4]; - port = [[self class] portFromSockaddr4:&sockaddr4]; - } - else - { - LogWarn(@"Error in getsockname: %@", [self errnoError]); - } - } - else if (socketFamily == AF_INET6) - { - struct sockaddr_in6 sockaddr6; - socklen_t sockaddr6len = sizeof(sockaddr6); - - if (getsockname(socketFD, (struct sockaddr *)&sockaddr6, &sockaddr6len) == 0) - { - data = [NSData dataWithBytes:&sockaddr6 length:sockaddr6len]; - host = [[self class] hostFromSockaddr6:&sockaddr6]; - port = [[self class] portFromSockaddr6:&sockaddr6]; - } - else - { - LogWarn(@"Error in getsockname: %@", [self errnoError]); - } - } - - if (dataPtr) *dataPtr = data; - if (hostPtr) *hostPtr = host; - if (portPtr) *portPtr = port; - - return (data != nil); -} - -- (void)maybeUpdateCachedLocalAddress4Info -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - if ( cachedLocalAddress4 || ((flags & kDidBind) == 0) || (socket4FD == SOCKET_NULL) ) - { - return; - } - - NSData *address = nil; - NSString *host = nil; - uint16_t port = 0; - - if ([self getLocalAddress:&address host:&host port:&port forSocket:socket4FD withFamily:AF_INET]) - { - - cachedLocalAddress4 = address; - cachedLocalHost4 = host; - cachedLocalPort4 = port; - } -} - -- (void)maybeUpdateCachedLocalAddress6Info -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - if ( cachedLocalAddress6 || ((flags & kDidBind) == 0) || (socket6FD == SOCKET_NULL) ) - { - return; - } - - NSData *address = nil; - NSString *host = nil; - uint16_t port = 0; - - if ([self getLocalAddress:&address host:&host port:&port forSocket:socket6FD withFamily:AF_INET6]) - { - - cachedLocalAddress6 = address; - cachedLocalHost6 = host; - cachedLocalPort6 = port; - } -} - -- (NSData *)localAddress -{ - __block NSData *result = nil; - - dispatch_block_t block = ^{ - - if (self->socket4FD != SOCKET_NULL) - { - [self maybeUpdateCachedLocalAddress4Info]; - result = self->cachedLocalAddress4; - } - else - { - [self maybeUpdateCachedLocalAddress6Info]; - result = self->cachedLocalAddress6; - } - - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (NSString *)localHost -{ - __block NSString *result = nil; - - dispatch_block_t block = ^{ - - if (self->socket4FD != SOCKET_NULL) - { - [self maybeUpdateCachedLocalAddress4Info]; - result = self->cachedLocalHost4; - } - else - { - [self maybeUpdateCachedLocalAddress6Info]; - result = self->cachedLocalHost6; - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (uint16_t)localPort -{ - __block uint16_t result = 0; - - dispatch_block_t block = ^{ - - if (self->socket4FD != SOCKET_NULL) - { - [self maybeUpdateCachedLocalAddress4Info]; - result = self->cachedLocalPort4; - } - else - { - [self maybeUpdateCachedLocalAddress6Info]; - result = self->cachedLocalPort6; - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (NSData *)localAddress_IPv4 -{ - __block NSData *result = nil; - - dispatch_block_t block = ^{ - - [self maybeUpdateCachedLocalAddress4Info]; - result = self->cachedLocalAddress4; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (NSString *)localHost_IPv4 -{ - __block NSString *result = nil; - - dispatch_block_t block = ^{ - - [self maybeUpdateCachedLocalAddress4Info]; - result = self->cachedLocalHost4; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (uint16_t)localPort_IPv4 -{ - __block uint16_t result = 0; - - dispatch_block_t block = ^{ - - [self maybeUpdateCachedLocalAddress4Info]; - result = self->cachedLocalPort4; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (NSData *)localAddress_IPv6 -{ - __block NSData *result = nil; - - dispatch_block_t block = ^{ - - [self maybeUpdateCachedLocalAddress6Info]; - result = self->cachedLocalAddress6; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (NSString *)localHost_IPv6 -{ - __block NSString *result = nil; - - dispatch_block_t block = ^{ - - [self maybeUpdateCachedLocalAddress6Info]; - result = self->cachedLocalHost6; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (uint16_t)localPort_IPv6 -{ - __block uint16_t result = 0; - - dispatch_block_t block = ^{ - - [self maybeUpdateCachedLocalAddress6Info]; - result = self->cachedLocalPort6; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (void)maybeUpdateCachedConnectedAddressInfo -{ - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - if (cachedConnectedAddress || (flags & kDidConnect) == 0) - { - return; - } - - NSData *data = nil; - NSString *host = nil; - uint16_t port = 0; - int family = AF_UNSPEC; - - if (socket4FD != SOCKET_NULL) - { - struct sockaddr_in sockaddr4; - socklen_t sockaddr4len = sizeof(sockaddr4); - - if (getpeername(socket4FD, (struct sockaddr *)&sockaddr4, &sockaddr4len) == 0) - { - data = [NSData dataWithBytes:&sockaddr4 length:sockaddr4len]; - host = [[self class] hostFromSockaddr4:&sockaddr4]; - port = [[self class] portFromSockaddr4:&sockaddr4]; - family = AF_INET; - } - else - { - LogWarn(@"Error in getpeername: %@", [self errnoError]); - } - } - else if (socket6FD != SOCKET_NULL) - { - struct sockaddr_in6 sockaddr6; - socklen_t sockaddr6len = sizeof(sockaddr6); - - if (getpeername(socket6FD, (struct sockaddr *)&sockaddr6, &sockaddr6len) == 0) - { - data = [NSData dataWithBytes:&sockaddr6 length:sockaddr6len]; - host = [[self class] hostFromSockaddr6:&sockaddr6]; - port = [[self class] portFromSockaddr6:&sockaddr6]; - family = AF_INET6; - } - else - { - LogWarn(@"Error in getpeername: %@", [self errnoError]); - } - } - - - cachedConnectedAddress = data; - cachedConnectedHost = host; - cachedConnectedPort = port; - cachedConnectedFamily = family; -} - -- (NSData *)connectedAddress -{ - __block NSData *result = nil; - - dispatch_block_t block = ^{ - - [self maybeUpdateCachedConnectedAddressInfo]; - result = self->cachedConnectedAddress; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (NSString *)connectedHost -{ - __block NSString *result = nil; - - dispatch_block_t block = ^{ - - [self maybeUpdateCachedConnectedAddressInfo]; - result = self->cachedConnectedHost; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (uint16_t)connectedPort -{ - __block uint16_t result = 0; - - dispatch_block_t block = ^{ - - [self maybeUpdateCachedConnectedAddressInfo]; - result = self->cachedConnectedPort; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, AutoreleasedBlock(block)); - - return result; -} - -- (BOOL)isConnected -{ - __block BOOL result = NO; - - dispatch_block_t block = ^{ - result = (self->flags & kDidConnect) ? YES : NO; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (BOOL)isClosed -{ - __block BOOL result = YES; - - dispatch_block_t block = ^{ - - result = (self->flags & kDidCreateSockets) ? NO : YES; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (BOOL)isIPv4 -{ - __block BOOL result = NO; - - dispatch_block_t block = ^{ - - if (self->flags & kDidCreateSockets) - { - result = (self->socket4FD != SOCKET_NULL); - } - else - { - result = [self isIPv4Enabled]; - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -- (BOOL)isIPv6 -{ - __block BOOL result = NO; - - dispatch_block_t block = ^{ - - if (self->flags & kDidCreateSockets) - { - result = (self->socket6FD != SOCKET_NULL); - } - else - { - result = [self isIPv6Enabled]; - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - return result; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Binding -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * This method runs through the various checks required prior to a bind attempt. - * It is shared between the various bind methods. -**/ -- (BOOL)preBind:(NSError **)errPtr -{ - if (![self preOp:errPtr]) - { - return NO; - } - - if (flags & kDidBind) - { - if (errPtr) - { - NSString *msg = @"Cannot bind a socket more than once."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - if ((flags & kConnecting) || (flags & kDidConnect)) - { - if (errPtr) - { - NSString *msg = @"Cannot bind after connecting. If needed, bind first, then connect."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; - BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; - - if (isIPv4Disabled && isIPv6Disabled) // Must have IPv4 or IPv6 enabled - { - if (errPtr) - { - NSString *msg = @"Both IPv4 and IPv6 have been disabled. Must enable at least one protocol first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - return YES; -} - -- (BOOL)bindToPort:(uint16_t)port error:(NSError **)errPtr -{ - return [self bindToPort:port interface:nil error:errPtr]; -} - -- (BOOL)bindToPort:(uint16_t)port interface:(NSString *)interface error:(NSError **)errPtr -{ - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - // Run through sanity checks - - if (![self preBind:&err]) - { - return_from_block; - } - - // Check the given interface - - NSData *interface4 = nil; - NSData *interface6 = nil; - - [self convertIntefaceDescription:interface port:port intoAddress4:&interface4 address6:&interface6]; - - if ((interface4 == nil) && (interface6 == nil)) - { - NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; - err = [self badParamError:msg]; - - return_from_block; - } - - BOOL isIPv4Disabled = (self->config & kIPv4Disabled) ? YES : NO; - BOOL isIPv6Disabled = (self->config & kIPv6Disabled) ? YES : NO; - - if (isIPv4Disabled && (interface6 == nil)) - { - NSString *msg = @"IPv4 has been disabled and specified interface doesn't support IPv6."; - err = [self badParamError:msg]; - - return_from_block; - } - - if (isIPv6Disabled && (interface4 == nil)) - { - NSString *msg = @"IPv6 has been disabled and specified interface doesn't support IPv4."; - err = [self badParamError:msg]; - - return_from_block; - } - - // Determine protocol(s) - - BOOL useIPv4 = !isIPv4Disabled && (interface4 != nil); - BOOL useIPv6 = !isIPv6Disabled && (interface6 != nil); - - // Create the socket(s) if needed - - if ((self->flags & kDidCreateSockets) == 0) - { - if (![self createSocket4:useIPv4 socket6:useIPv6 error:&err]) - { - return_from_block; - } - } - - // Bind the socket(s) - - LogVerbose(@"Binding socket to port(%hu) interface(%@)", port, interface); - - if (useIPv4) - { - int status = bind(self->socket4FD, (const struct sockaddr *)[interface4 bytes], (socklen_t)[interface4 length]); - if (status == -1) - { - [self closeSockets]; - - NSString *reason = @"Error in bind() function"; - err = [self errnoErrorWithReason:reason]; - - return_from_block; - } - } - - if (useIPv6) - { - int status = bind(self->socket6FD, (const struct sockaddr *)[interface6 bytes], (socklen_t)[interface6 length]); - if (status == -1) - { - [self closeSockets]; - - NSString *reason = @"Error in bind() function"; - err = [self errnoErrorWithReason:reason]; - - return_from_block; - } - } - - // Update flags - - self->flags |= kDidBind; - - if (!useIPv4) self->flags |= kIPv4Deactivated; - if (!useIPv6) self->flags |= kIPv6Deactivated; - - result = YES; - - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (err) - LogError(@"Error binding to port/interface: %@", err); - - if (errPtr) - *errPtr = err; - - return result; -} - -- (BOOL)bindToAddress:(NSData *)localAddr error:(NSError **)errPtr -{ - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - // Run through sanity checks - - if (![self preBind:&err]) - { - return_from_block; - } - - // Check the given address - - int addressFamily = [[self class] familyFromAddress:localAddr]; - - if (addressFamily == AF_UNSPEC) - { - NSString *msg = @"A valid IPv4 or IPv6 address was not given"; - err = [self badParamError:msg]; - - return_from_block; - } - - NSData *localAddr4 = (addressFamily == AF_INET) ? localAddr : nil; - NSData *localAddr6 = (addressFamily == AF_INET6) ? localAddr : nil; - - BOOL isIPv4Disabled = (self->config & kIPv4Disabled) ? YES : NO; - BOOL isIPv6Disabled = (self->config & kIPv6Disabled) ? YES : NO; - - if (isIPv4Disabled && localAddr4) - { - NSString *msg = @"IPv4 has been disabled and an IPv4 address was passed."; - err = [self badParamError:msg]; - - return_from_block; - } - - if (isIPv6Disabled && localAddr6) - { - NSString *msg = @"IPv6 has been disabled and an IPv6 address was passed."; - err = [self badParamError:msg]; - - return_from_block; - } - - // Determine protocol(s) - - BOOL useIPv4 = !isIPv4Disabled && (localAddr4 != nil); - BOOL useIPv6 = !isIPv6Disabled && (localAddr6 != nil); - - // Create the socket(s) if needed - - if ((self->flags & kDidCreateSockets) == 0) - { - if (![self createSocket4:useIPv4 socket6:useIPv6 error:&err]) - { - return_from_block; - } - } - - // Bind the socket(s) - - if (useIPv4) - { - LogVerbose(@"Binding socket to address(%@:%hu)", - [[self class] hostFromAddress:localAddr4], - [[self class] portFromAddress:localAddr4]); - - int status = bind(self->socket4FD, (const struct sockaddr *)[localAddr4 bytes], (socklen_t)[localAddr4 length]); - if (status == -1) - { - [self closeSockets]; - - NSString *reason = @"Error in bind() function"; - err = [self errnoErrorWithReason:reason]; - - return_from_block; - } - } - else - { - LogVerbose(@"Binding socket to address(%@:%hu)", - [[self class] hostFromAddress:localAddr6], - [[self class] portFromAddress:localAddr6]); - - int status = bind(self->socket6FD, (const struct sockaddr *)[localAddr6 bytes], (socklen_t)[localAddr6 length]); - if (status == -1) - { - [self closeSockets]; - - NSString *reason = @"Error in bind() function"; - err = [self errnoErrorWithReason:reason]; - - return_from_block; - } - } - - // Update flags - - self->flags |= kDidBind; - - if (!useIPv4) self->flags |= kIPv4Deactivated; - if (!useIPv6) self->flags |= kIPv6Deactivated; - - result = YES; - - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (err) - LogError(@"Error binding to address: %@", err); - - if (errPtr) - *errPtr = err; - - return result; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Connecting -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * This method runs through the various checks required prior to a connect attempt. - * It is shared between the various connect methods. -**/ -- (BOOL)preConnect:(NSError **)errPtr -{ - if (![self preOp:errPtr]) - { - return NO; - } - - if ((flags & kConnecting) || (flags & kDidConnect)) - { - if (errPtr) - { - NSString *msg = @"Cannot connect a socket more than once."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - BOOL isIPv4Disabled = (config & kIPv4Disabled) ? YES : NO; - BOOL isIPv6Disabled = (config & kIPv6Disabled) ? YES : NO; - - if (isIPv4Disabled && isIPv6Disabled) // Must have IPv4 or IPv6 enabled - { - if (errPtr) - { - NSString *msg = @"Both IPv4 and IPv6 have been disabled. Must enable at least one protocol first."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - return YES; -} - -- (BOOL)connectToHost:(NSString *)host onPort:(uint16_t)port error:(NSError **)errPtr -{ - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - // Run through sanity checks. - - if (![self preConnect:&err]) - { - return_from_block; - } - - // Check parameter(s) - - if (host == nil) - { - NSString *msg = @"The host param is nil. Should be domain name or IP address string."; - err = [self badParamError:msg]; - - return_from_block; - } - - // Create the socket(s) if needed - - if ((self->flags & kDidCreateSockets) == 0) - { - if (![self createSockets:&err]) - { - return_from_block; - } - } - - // Create special connect packet - - GCDAsyncUdpSpecialPacket *packet = [[GCDAsyncUdpSpecialPacket alloc] init]; - packet->resolveInProgress = YES; - - // Start asynchronous DNS resolve for host:port on background queue - - LogVerbose(@"Dispatching DNS resolve for connect..."); - - [self asyncResolveHost:host port:port withCompletionBlock:^(NSArray *addresses, NSError *error) { - - // The asyncResolveHost:port:: method asynchronously dispatches a task onto the global concurrent queue, - // and immediately returns. Once the async resolve task completes, - // this block is executed on our socketQueue. - - packet->resolveInProgress = NO; - - packet->addresses = addresses; - packet->error = error; - - [self maybeConnect]; - }]; - - // Updates flags, add connect packet to send queue, and pump send queue - - self->flags |= kConnecting; - - [self->sendQueue addObject:packet]; - [self maybeDequeueSend]; - - result = YES; - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (err) - LogError(@"Error connecting to host/port: %@", err); - - if (errPtr) - *errPtr = err; - - return result; -} - -- (BOOL)connectToAddress:(NSData *)remoteAddr error:(NSError **)errPtr -{ - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - // Run through sanity checks. - - if (![self preConnect:&err]) - { - return_from_block; - } - - // Check parameter(s) - - if (remoteAddr == nil) - { - NSString *msg = @"The address param is nil. Should be a valid address."; - err = [self badParamError:msg]; - - return_from_block; - } - - // Create the socket(s) if needed - - if ((self->flags & kDidCreateSockets) == 0) - { - if (![self createSockets:&err]) - { - return_from_block; - } - } - - // The remoteAddr parameter could be of type NSMutableData. - // So we copy it to be safe. - - NSData *address = [remoteAddr copy]; - NSArray *addresses = [NSArray arrayWithObject:address]; - - GCDAsyncUdpSpecialPacket *packet = [[GCDAsyncUdpSpecialPacket alloc] init]; - packet->addresses = addresses; - - // Updates flags, add connect packet to send queue, and pump send queue - - self->flags |= kConnecting; - - [self->sendQueue addObject:packet]; - [self maybeDequeueSend]; - - result = YES; - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (err) - LogError(@"Error connecting to address: %@", err); - - if (errPtr) - *errPtr = err; - - return result; -} - -- (void)maybeConnect -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - - BOOL sendQueueReady = [currentSend isKindOfClass:[GCDAsyncUdpSpecialPacket class]]; - - if (sendQueueReady) - { - GCDAsyncUdpSpecialPacket *connectPacket = (GCDAsyncUdpSpecialPacket *)currentSend; - - if (connectPacket->resolveInProgress) - { - LogVerbose(@"Waiting for DNS resolve..."); - } - else - { - if (connectPacket->error) - { - [self notifyDidNotConnect:connectPacket->error]; - } - else - { - NSData *address = nil; - NSError *error = nil; - - int addressFamily = [self getAddress:&address error:&error fromAddresses:connectPacket->addresses]; - - // Perform connect - - BOOL result = NO; - - switch (addressFamily) - { - case AF_INET : result = [self connectWithAddress4:address error:&error]; break; - case AF_INET6 : result = [self connectWithAddress6:address error:&error]; break; - } - - if (result) - { - flags |= kDidBind; - flags |= kDidConnect; - - cachedConnectedAddress = address; - cachedConnectedHost = [[self class] hostFromAddress:address]; - cachedConnectedPort = [[self class] portFromAddress:address]; - cachedConnectedFamily = addressFamily; - - [self notifyDidConnectToAddress:address]; - } - else - { - [self notifyDidNotConnect:error]; - } - } - - flags &= ~kConnecting; - - [self endCurrentSend]; - [self maybeDequeueSend]; - } - } -} - -- (BOOL)connectWithAddress4:(NSData *)address4 error:(NSError **)errPtr -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - int status = connect(socket4FD, (const struct sockaddr *)[address4 bytes], (socklen_t)[address4 length]); - if (status != 0) - { - if (errPtr) - *errPtr = [self errnoErrorWithReason:@"Error in connect() function"]; - - return NO; - } - - [self closeSocket6]; - flags |= kIPv6Deactivated; - - return YES; -} - -- (BOOL)connectWithAddress6:(NSData *)address6 error:(NSError **)errPtr -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - int status = connect(socket6FD, (const struct sockaddr *)[address6 bytes], (socklen_t)[address6 length]); - if (status != 0) - { - if (errPtr) - *errPtr = [self errnoErrorWithReason:@"Error in connect() function"]; - - return NO; - } - - [self closeSocket4]; - flags |= kIPv4Deactivated; - - return YES; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Multicast -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (BOOL)preJoin:(NSError **)errPtr -{ - if (![self preOp:errPtr]) - { - return NO; - } - - if (!(flags & kDidBind)) - { - if (errPtr) - { - NSString *msg = @"Must bind a socket before joining a multicast group."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - if ((flags & kConnecting) || (flags & kDidConnect)) - { - if (errPtr) - { - NSString *msg = @"Cannot join a multicast group if connected."; - *errPtr = [self badConfigError:msg]; - } - return NO; - } - - return YES; -} - -- (BOOL)joinMulticastGroup:(NSString *)group error:(NSError **)errPtr -{ - return [self joinMulticastGroup:group onInterface:nil error:errPtr]; -} - -- (BOOL)joinMulticastGroup:(NSString *)group onInterface:(NSString *)interface error:(NSError **)errPtr -{ - // IP_ADD_MEMBERSHIP == IPV6_JOIN_GROUP - return [self performMulticastRequest:IP_ADD_MEMBERSHIP forGroup:group onInterface:interface error:errPtr]; -} - -- (BOOL)leaveMulticastGroup:(NSString *)group error:(NSError **)errPtr -{ - return [self leaveMulticastGroup:group onInterface:nil error:errPtr]; -} - -- (BOOL)leaveMulticastGroup:(NSString *)group onInterface:(NSString *)interface error:(NSError **)errPtr -{ - // IP_DROP_MEMBERSHIP == IPV6_LEAVE_GROUP - return [self performMulticastRequest:IP_DROP_MEMBERSHIP forGroup:group onInterface:interface error:errPtr]; -} - -- (BOOL)performMulticastRequest:(int)requestType - forGroup:(NSString *)group - onInterface:(NSString *)interface - error:(NSError **)errPtr -{ - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - // Run through sanity checks - - if (![self preJoin:&err]) - { - return_from_block; - } - - // Convert group to address - - NSData *groupAddr4 = nil; - NSData *groupAddr6 = nil; - - [self convertNumericHost:group port:0 intoAddress4:&groupAddr4 address6:&groupAddr6]; - - if ((groupAddr4 == nil) && (groupAddr6 == nil)) - { - NSString *msg = @"Unknown group. Specify valid group IP address."; - err = [self badParamError:msg]; - - return_from_block; - } - - // Convert interface to address - - NSData *interfaceAddr4 = nil; - NSData *interfaceAddr6 = nil; - - [self convertIntefaceDescription:interface port:0 intoAddress4:&interfaceAddr4 address6:&interfaceAddr6]; - - if ((interfaceAddr4 == nil) && (interfaceAddr6 == nil)) - { - NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\") or IP address."; - err = [self badParamError:msg]; - - return_from_block; - } - - // Perform join - - if ((self->socket4FD != SOCKET_NULL) && groupAddr4 && interfaceAddr4) - { - const struct sockaddr_in *nativeGroup = (const struct sockaddr_in *)[groupAddr4 bytes]; - const struct sockaddr_in *nativeIface = (const struct sockaddr_in *)[interfaceAddr4 bytes]; - - struct ip_mreq imreq; - imreq.imr_multiaddr = nativeGroup->sin_addr; - imreq.imr_interface = nativeIface->sin_addr; - - int status = setsockopt(self->socket4FD, IPPROTO_IP, requestType, (const void *)&imreq, sizeof(imreq)); - if (status != 0) - { - err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; - - return_from_block; - } - - // Using IPv4 only - [self closeSocket6]; - - result = YES; - } - else if ((self->socket6FD != SOCKET_NULL) && groupAddr6 && interfaceAddr6) - { - const struct sockaddr_in6 *nativeGroup = (const struct sockaddr_in6 *)[groupAddr6 bytes]; - - struct ipv6_mreq imreq; - imreq.ipv6mr_multiaddr = nativeGroup->sin6_addr; - imreq.ipv6mr_interface = [self indexOfInterfaceAddr6:interfaceAddr6]; - - int status = setsockopt(self->socket6FD, IPPROTO_IPV6, requestType, (const void *)&imreq, sizeof(imreq)); - if (status != 0) - { - err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; - - return_from_block; - } - - // Using IPv6 only - [self closeSocket4]; - - result = YES; - } - else - { - NSString *msg = @"Socket, group, and interface do not have matching IP versions"; - err = [self badParamError:msg]; - - return_from_block; - } - - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (errPtr) - *errPtr = err; - - return result; -} - -- (BOOL)sendIPv4MulticastOnInterface:(NSString*)interface error:(NSError **)errPtr -{ - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - if (![self preOp:&err]) - { - return_from_block; - } - - if ((self->flags & kDidCreateSockets) == 0) - { - if (![self createSockets:&err]) - { - return_from_block; - } - } - - // Convert interface to address - - NSData *interfaceAddr4 = nil; - NSData *interfaceAddr6 = nil; - - [self convertIntefaceDescription:interface port:0 intoAddress4:&interfaceAddr4 address6:&interfaceAddr6]; - - if (interfaceAddr4 == nil) - { - NSString *msg = @"Unknown interface. Specify valid interface by IP address."; - err = [self badParamError:msg]; - return_from_block; - } - - if (self->socket4FD != SOCKET_NULL) { - const struct sockaddr_in *nativeIface = (struct sockaddr_in *)[interfaceAddr4 bytes]; - struct in_addr interface_addr = nativeIface->sin_addr; - int status = setsockopt(self->socket4FD, IPPROTO_IP, IP_MULTICAST_IF, &interface_addr, sizeof(interface_addr)); - if (status != 0) { - err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; - return_from_block; - result = YES; - } - } - - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (errPtr) - *errPtr = err; - - return result; -} - -- (BOOL)sendIPv6MulticastOnInterface:(NSString*)interface error:(NSError **)errPtr -{ - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - if (![self preOp:&err]) - { - return_from_block; - } - - if ((self->flags & kDidCreateSockets) == 0) - { - if (![self createSockets:&err]) - { - return_from_block; - } - } - - // Convert interface to address - - NSData *interfaceAddr4 = nil; - NSData *interfaceAddr6 = nil; - - [self convertIntefaceDescription:interface port:0 intoAddress4:&interfaceAddr4 address6:&interfaceAddr6]; - - if (interfaceAddr6 == nil) - { - NSString *msg = @"Unknown interface. Specify valid interface by name (e.g. \"en1\")."; - err = [self badParamError:msg]; - return_from_block; - } - - if ((self->socket6FD != SOCKET_NULL)) { - uint32_t scope_id = [self indexOfInterfaceAddr6:interfaceAddr6]; - int status = setsockopt(self->socket6FD, IPPROTO_IPV6, IPV6_MULTICAST_IF, &scope_id, sizeof(scope_id)); - if (status != 0) { - err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; - return_from_block; - } - result = YES; - } - - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (errPtr) - *errPtr = err; - - return result; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Reuse port -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (BOOL)enableReusePort:(BOOL)flag error:(NSError **)errPtr -{ - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - if (![self preOp:&err]) - { - return_from_block; - } - - if ((self->flags & kDidCreateSockets) == 0) - { - if (![self createSockets:&err]) - { - return_from_block; - } - } - - int value = flag ? 1 : 0; - if (self->socket4FD != SOCKET_NULL) - { - int error = setsockopt(self->socket4FD, SOL_SOCKET, SO_REUSEPORT, (const void *)&value, sizeof(value)); - - if (error) - { - err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; - - return_from_block; - } - result = YES; - } - - if (self->socket6FD != SOCKET_NULL) - { - int error = setsockopt(self->socket6FD, SOL_SOCKET, SO_REUSEPORT, (const void *)&value, sizeof(value)); - - if (error) - { - err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; - - return_from_block; - } - result = YES; - } - - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (errPtr) - *errPtr = err; - - return result; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Broadcast -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (BOOL)enableBroadcast:(BOOL)flag error:(NSError **)errPtr -{ - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ @autoreleasepool { - - if (![self preOp:&err]) - { - return_from_block; - } - - if ((self->flags & kDidCreateSockets) == 0) - { - if (![self createSockets:&err]) - { - return_from_block; - } - } - - if (self->socket4FD != SOCKET_NULL) - { - int value = flag ? 1 : 0; - int error = setsockopt(self->socket4FD, SOL_SOCKET, SO_BROADCAST, (const void *)&value, sizeof(value)); - - if (error) - { - err = [self errnoErrorWithReason:@"Error in setsockopt() function"]; - - return_from_block; - } - result = YES; - } - - // IPv6 does not implement broadcast, the ability to send a packet to all hosts on the attached link. - // The same effect can be achieved by sending a packet to the link-local all hosts multicast group. - - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (errPtr) - *errPtr = err; - - return result; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Sending -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (void)sendData:(NSData *)data withTag:(long)tag -{ - [self sendData:data withTimeout:-1.0 tag:tag]; -} - -- (void)sendData:(NSData *)data withTimeout:(NSTimeInterval)timeout tag:(long)tag -{ - LogTrace(); - - if ([data length] == 0) - { - LogWarn(@"Ignoring attempt to send nil/empty data."); - return; - } - - - - GCDAsyncUdpSendPacket *packet = [[GCDAsyncUdpSendPacket alloc] initWithData:data timeout:timeout tag:tag]; - - dispatch_async(socketQueue, ^{ @autoreleasepool { - - [self->sendQueue addObject:packet]; - [self maybeDequeueSend]; - }}); - -} - -- (void)sendData:(NSData *)data - toHost:(NSString *)host - port:(uint16_t)port - withTimeout:(NSTimeInterval)timeout - tag:(long)tag -{ - LogTrace(); - - if ([data length] == 0) - { - LogWarn(@"Ignoring attempt to send nil/empty data."); - return; - } - - GCDAsyncUdpSendPacket *packet = [[GCDAsyncUdpSendPacket alloc] initWithData:data timeout:timeout tag:tag]; - packet->resolveInProgress = YES; - - [self asyncResolveHost:host port:port withCompletionBlock:^(NSArray *addresses, NSError *error) { - - // The asyncResolveHost:port:: method asynchronously dispatches a task onto the global concurrent queue, - // and immediately returns. Once the async resolve task completes, - // this block is executed on our socketQueue. - - packet->resolveInProgress = NO; - - packet->resolvedAddresses = addresses; - packet->resolveError = error; - - if (packet == self->currentSend) - { - LogVerbose(@"currentSend - address resolved"); - [self doPreSend]; - } - }]; - - dispatch_async(socketQueue, ^{ @autoreleasepool { - - [self->sendQueue addObject:packet]; - [self maybeDequeueSend]; - - }}); - -} - -- (void)sendData:(NSData *)data toAddress:(NSData *)remoteAddr withTimeout:(NSTimeInterval)timeout tag:(long)tag -{ - LogTrace(); - - if ([data length] == 0) - { - LogWarn(@"Ignoring attempt to send nil/empty data."); - return; - } - - GCDAsyncUdpSendPacket *packet = [[GCDAsyncUdpSendPacket alloc] initWithData:data timeout:timeout tag:tag]; - packet->addressFamily = [GCDAsyncUdpSocket familyFromAddress:remoteAddr]; - packet->address = remoteAddr; - - dispatch_async(socketQueue, ^{ @autoreleasepool { - - [self->sendQueue addObject:packet]; - [self maybeDequeueSend]; - }}); -} - -- (void)setSendFilter:(GCDAsyncUdpSocketSendFilterBlock)filterBlock withQueue:(dispatch_queue_t)filterQueue -{ - [self setSendFilter:filterBlock withQueue:filterQueue isAsynchronous:YES]; -} - -- (void)setSendFilter:(GCDAsyncUdpSocketSendFilterBlock)filterBlock - withQueue:(dispatch_queue_t)filterQueue - isAsynchronous:(BOOL)isAsynchronous -{ - GCDAsyncUdpSocketSendFilterBlock newFilterBlock = NULL; - dispatch_queue_t newFilterQueue = NULL; - - if (filterBlock) - { - NSAssert(filterQueue, @"Must provide a dispatch_queue in which to run the filter block."); - - newFilterBlock = [filterBlock copy]; - newFilterQueue = filterQueue; - #if !OS_OBJECT_USE_OBJC - dispatch_retain(newFilterQueue); - #endif - } - - dispatch_block_t block = ^{ - - #if !OS_OBJECT_USE_OBJC - if (self->sendFilterQueue) dispatch_release(self->sendFilterQueue); - #endif - - self->sendFilterBlock = newFilterBlock; - self->sendFilterQueue = newFilterQueue; - self->sendFilterAsync = isAsynchronous; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (void)maybeDequeueSend -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - // If we don't have a send operation already in progress - if (currentSend == nil) - { - // Create the sockets if needed - if ((flags & kDidCreateSockets) == 0) - { - NSError *err = nil; - if (![self createSockets:&err]) - { - [self closeWithError:err]; - return; - } - } - - while ([sendQueue count] > 0) - { - // Dequeue the next object in the queue - currentSend = [sendQueue objectAtIndex:0]; - [sendQueue removeObjectAtIndex:0]; - - if ([currentSend isKindOfClass:[GCDAsyncUdpSpecialPacket class]]) - { - [self maybeConnect]; - - return; // The maybeConnect method, if it connects, will invoke this method again - } - else if (currentSend->resolveError) - { - // Notify delegate - [self notifyDidNotSendDataWithTag:currentSend->tag dueToError:currentSend->resolveError]; - - // Clear currentSend - currentSend = nil; - - continue; - } - else - { - // Start preprocessing checks on the send packet - [self doPreSend]; - - break; - } - } - - if ((currentSend == nil) && (flags & kCloseAfterSends)) - { - [self closeWithError:nil]; - } - } -} - -/** - * This method is called after a sendPacket has been dequeued. - * It performs various preprocessing checks on the packet, - * and queries the sendFilter (if set) to determine if the packet can be sent. - * - * If the packet passes all checks, it will be passed on to the doSend method. -**/ -- (void)doPreSend -{ - LogTrace(); - - // - // 1. Check for problems with send packet - // - - BOOL waitingForResolve = NO; - NSError *error = nil; - - if (flags & kDidConnect) - { - // Connected socket - - if (currentSend->resolveInProgress || currentSend->resolvedAddresses || currentSend->resolveError) - { - NSString *msg = @"Cannot specify destination of packet for connected socket"; - error = [self badConfigError:msg]; - } - else - { - currentSend->address = cachedConnectedAddress; - currentSend->addressFamily = cachedConnectedFamily; - } - } - else - { - // Non-Connected socket - - if (currentSend->resolveInProgress) - { - // We're waiting for the packet's destination to be resolved. - waitingForResolve = YES; - } - else if (currentSend->resolveError) - { - error = currentSend->resolveError; - } - else if (currentSend->address == nil) - { - if (currentSend->resolvedAddresses == nil) - { - NSString *msg = @"You must specify destination of packet for a non-connected socket"; - error = [self badConfigError:msg]; - } - else - { - // Pick the proper address to use (out of possibly several resolved addresses) - - NSData *address = nil; - int addressFamily = AF_UNSPEC; - - addressFamily = [self getAddress:&address error:&error fromAddresses:currentSend->resolvedAddresses]; - - currentSend->address = address; - currentSend->addressFamily = addressFamily; - } - } - } - - if (waitingForResolve) - { - // We're waiting for the packet's destination to be resolved. - - LogVerbose(@"currentSend - waiting for address resolve"); - - if (flags & kSock4CanAcceptBytes) { - [self suspendSend4Source]; - } - if (flags & kSock6CanAcceptBytes) { - [self suspendSend6Source]; - } - - return; - } - - if (error) - { - // Unable to send packet due to some error. - // Notify delegate and move on. - - [self notifyDidNotSendDataWithTag:currentSend->tag dueToError:error]; - [self endCurrentSend]; - [self maybeDequeueSend]; - - return; - } - - // - // 2. Query sendFilter (if applicable) - // - - if (sendFilterBlock && sendFilterQueue) - { - // Query sendFilter - - if (sendFilterAsync) - { - // Scenario 1 of 3 - Need to asynchronously query sendFilter - - currentSend->filterInProgress = YES; - GCDAsyncUdpSendPacket *sendPacket = currentSend; - - dispatch_async(sendFilterQueue, ^{ @autoreleasepool { - - BOOL allowed = self->sendFilterBlock(sendPacket->buffer, sendPacket->address, sendPacket->tag); - - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - sendPacket->filterInProgress = NO; - if (sendPacket == self->currentSend) - { - if (allowed) - { - [self doSend]; - } - else - { - LogVerbose(@"currentSend - silently dropped by sendFilter"); - - [self notifyDidSendDataWithTag:self->currentSend->tag]; - [self endCurrentSend]; - [self maybeDequeueSend]; - } - } - }}); - }}); - } - else - { - // Scenario 2 of 3 - Need to synchronously query sendFilter - - __block BOOL allowed = YES; - - dispatch_sync(sendFilterQueue, ^{ @autoreleasepool { - - allowed = self->sendFilterBlock(self->currentSend->buffer, self->currentSend->address, self->currentSend->tag); - }}); - - if (allowed) - { - [self doSend]; - } - else - { - LogVerbose(@"currentSend - silently dropped by sendFilter"); - - [self notifyDidSendDataWithTag:currentSend->tag]; - [self endCurrentSend]; - [self maybeDequeueSend]; - } - } - } - else // if (!sendFilterBlock || !sendFilterQueue) - { - // Scenario 3 of 3 - No sendFilter. Just go straight into sending. - - [self doSend]; - } -} - -/** - * This method performs the actual sending of data in the currentSend packet. - * It should only be called if the -**/ -- (void)doSend -{ - LogTrace(); - - NSAssert(currentSend != nil, @"Invalid logic"); - - // Perform the actual send - - ssize_t result = 0; - - if (flags & kDidConnect) - { - // Connected socket - - const void *buffer = [currentSend->buffer bytes]; - size_t length = (size_t)[currentSend->buffer length]; - - if (currentSend->addressFamily == AF_INET) - { - result = send(socket4FD, buffer, length, 0); - LogVerbose(@"send(socket4FD) = %d", result); - } - else - { - result = send(socket6FD, buffer, length, 0); - LogVerbose(@"send(socket6FD) = %d", result); - } - } - else - { - // Non-Connected socket - - const void *buffer = [currentSend->buffer bytes]; - size_t length = (size_t)[currentSend->buffer length]; - - const void *dst = [currentSend->address bytes]; - socklen_t dstSize = (socklen_t)[currentSend->address length]; - - if (currentSend->addressFamily == AF_INET) - { - result = sendto(socket4FD, buffer, length, 0, dst, dstSize); - LogVerbose(@"sendto(socket4FD) = %d", result); - } - else - { - result = sendto(socket6FD, buffer, length, 0, dst, dstSize); - LogVerbose(@"sendto(socket6FD) = %d", result); - } - } - - // If the socket wasn't bound before, it is now - - if ((flags & kDidBind) == 0) - { - flags |= kDidBind; - } - - // Check the results. - // - // From the send() & sendto() manpage: - // - // Upon successful completion, the number of bytes which were sent is returned. - // Otherwise, -1 is returned and the global variable errno is set to indicate the error. - - BOOL waitingForSocket = NO; - NSError *socketError = nil; - - if (result == 0) - { - waitingForSocket = YES; - } - else if (result < 0) - { - if (errno == EAGAIN) - waitingForSocket = YES; - else - socketError = [self errnoErrorWithReason:@"Error in send() function."]; - } - - if (waitingForSocket) - { - // Not enough room in the underlying OS socket send buffer. - // Wait for a notification of available space. - - LogVerbose(@"currentSend - waiting for socket"); - - if (!(flags & kSock4CanAcceptBytes)) { - [self resumeSend4Source]; - } - if (!(flags & kSock6CanAcceptBytes)) { - [self resumeSend6Source]; - } - - if ((sendTimer == NULL) && (currentSend->timeout >= 0.0)) - { - // Unable to send packet right away. - // Start timer to timeout the send operation. - - [self setupSendTimerWithTimeout:currentSend->timeout]; - } - } - else if (socketError) - { - [self closeWithError:socketError]; - } - else // done - { - [self notifyDidSendDataWithTag:currentSend->tag]; - [self endCurrentSend]; - [self maybeDequeueSend]; - } -} - -/** - * Releases all resources associated with the currentSend. -**/ -- (void)endCurrentSend -{ - if (sendTimer) - { - dispatch_source_cancel(sendTimer); - #if !OS_OBJECT_USE_OBJC - dispatch_release(sendTimer); - #endif - sendTimer = NULL; - } - - currentSend = nil; -} - -/** - * Performs the operations to timeout the current send operation, and move on. -**/ -- (void)doSendTimeout -{ - LogTrace(); - - [self notifyDidNotSendDataWithTag:currentSend->tag dueToError:[self sendTimeoutError]]; - [self endCurrentSend]; - [self maybeDequeueSend]; -} - -/** - * Sets up a timer that fires to timeout the current send operation. - * This method should only be called once per send packet. -**/ -- (void)setupSendTimerWithTimeout:(NSTimeInterval)timeout -{ - NSAssert(sendTimer == NULL, @"Invalid logic"); - NSAssert(timeout >= 0.0, @"Invalid logic"); - - LogTrace(); - - sendTimer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, socketQueue); - - dispatch_source_set_event_handler(sendTimer, ^{ @autoreleasepool { - - [self doSendTimeout]; - }}); - - dispatch_time_t tt = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(timeout * NSEC_PER_SEC)); - - dispatch_source_set_timer(sendTimer, tt, DISPATCH_TIME_FOREVER, 0); - dispatch_resume(sendTimer); -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Receiving -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (BOOL)receiveOnce:(NSError **)errPtr -{ - LogTrace(); - - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ - - if ((self->flags & kReceiveOnce) == 0) - { - if ((self->flags & kDidCreateSockets) == 0) - { - NSString *msg = @"Must bind socket before you can receive data. " - @"You can do this explicitly via bind, or implicitly via connect or by sending data."; - - err = [self badConfigError:msg]; - return_from_block; - } - - self->flags |= kReceiveOnce; // Enable - self->flags &= ~kReceiveContinuous; // Disable - - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - [self doReceive]; - }}); - } - - result = YES; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (err) - LogError(@"Error in beginReceiving: %@", err); - - if (errPtr) - *errPtr = err; - - return result; -} - -- (BOOL)beginReceiving:(NSError **)errPtr -{ - LogTrace(); - - __block BOOL result = NO; - __block NSError *err = nil; - - dispatch_block_t block = ^{ - - if ((self->flags & kReceiveContinuous) == 0) - { - if ((self->flags & kDidCreateSockets) == 0) - { - NSString *msg = @"Must bind socket before you can receive data. " - @"You can do this explicitly via bind, or implicitly via connect or by sending data."; - - err = [self badConfigError:msg]; - return_from_block; - } - - self->flags |= kReceiveContinuous; // Enable - self->flags &= ~kReceiveOnce; // Disable - - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - [self doReceive]; - }}); - } - - result = YES; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); - - if (err) - LogError(@"Error in beginReceiving: %@", err); - - if (errPtr) - *errPtr = err; - - return result; -} - -- (void)pauseReceiving -{ - LogTrace(); - - dispatch_block_t block = ^{ - - self->flags &= ~kReceiveOnce; // Disable - self->flags &= ~kReceiveContinuous; // Disable - - if (self->socket4FDBytesAvailable > 0) { - [self suspendReceive4Source]; - } - if (self->socket6FDBytesAvailable > 0) { - [self suspendReceive6Source]; - } - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (void)setReceiveFilter:(GCDAsyncUdpSocketReceiveFilterBlock)filterBlock withQueue:(dispatch_queue_t)filterQueue -{ - [self setReceiveFilter:filterBlock withQueue:filterQueue isAsynchronous:YES]; -} - -- (void)setReceiveFilter:(GCDAsyncUdpSocketReceiveFilterBlock)filterBlock - withQueue:(dispatch_queue_t)filterQueue - isAsynchronous:(BOOL)isAsynchronous -{ - GCDAsyncUdpSocketReceiveFilterBlock newFilterBlock = NULL; - dispatch_queue_t newFilterQueue = NULL; - - if (filterBlock) - { - NSAssert(filterQueue, @"Must provide a dispatch_queue in which to run the filter block."); - - newFilterBlock = [filterBlock copy]; - newFilterQueue = filterQueue; - #if !OS_OBJECT_USE_OBJC - dispatch_retain(newFilterQueue); - #endif - } - - dispatch_block_t block = ^{ - - #if !OS_OBJECT_USE_OBJC - if (self->receiveFilterQueue) dispatch_release(self->receiveFilterQueue); - #endif - - self->receiveFilterBlock = newFilterBlock; - self->receiveFilterQueue = newFilterQueue; - self->receiveFilterAsync = isAsynchronous; - }; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -- (void)doReceive -{ - LogTrace(); - - if ((flags & (kReceiveOnce | kReceiveContinuous)) == 0) - { - LogVerbose(@"Receiving is paused..."); - - if (socket4FDBytesAvailable > 0) { - [self suspendReceive4Source]; - } - if (socket6FDBytesAvailable > 0) { - [self suspendReceive6Source]; - } - - return; - } - - if ((flags & kReceiveOnce) && (pendingFilterOperations > 0)) - { - LogVerbose(@"Receiving is temporarily paused (pending filter operations)..."); - - if (socket4FDBytesAvailable > 0) { - [self suspendReceive4Source]; - } - if (socket6FDBytesAvailable > 0) { - [self suspendReceive6Source]; - } - - return; - } - - if ((socket4FDBytesAvailable == 0) && (socket6FDBytesAvailable == 0)) - { - LogVerbose(@"No data available to receive..."); - - if (socket4FDBytesAvailable == 0) { - [self resumeReceive4Source]; - } - if (socket6FDBytesAvailable == 0) { - [self resumeReceive6Source]; - } - - return; - } - - // Figure out if we should receive on socket4 or socket6 - - BOOL doReceive4; - - if (flags & kDidConnect) - { - // Connected socket - - doReceive4 = (socket4FD != SOCKET_NULL); - } - else - { - // Non-Connected socket - - if (socket4FDBytesAvailable > 0) - { - if (socket6FDBytesAvailable > 0) - { - // Bytes available on socket4 & socket6 - - doReceive4 = (flags & kFlipFlop) ? YES : NO; - - flags ^= kFlipFlop; // flags = flags xor kFlipFlop; (toggle flip flop bit) - } - else { - // Bytes available on socket4, but not socket6 - doReceive4 = YES; - } - } - else { - // Bytes available on socket6, but not socket4 - doReceive4 = NO; - } - } - - // Perform socket IO - - ssize_t result = 0; - - NSData *data = nil; - NSData *addr4 = nil; - NSData *addr6 = nil; - - if (doReceive4) - { - NSAssert(socket4FDBytesAvailable > 0, @"Invalid logic"); - LogVerbose(@"Receiving on IPv4"); - - struct sockaddr_in sockaddr4; - socklen_t sockaddr4len = sizeof(sockaddr4); - - // #222: GCD does not necessarily return the size of an entire UDP packet - // from dispatch_source_get_data(), so we must use the maximum packet size. - size_t bufSize = max4ReceiveSize; - void *buf = malloc(bufSize); - - result = recvfrom(socket4FD, buf, bufSize, 0, (struct sockaddr *)&sockaddr4, &sockaddr4len); - LogVerbose(@"recvfrom(socket4FD) = %i", (int)result); - - if (result > 0) - { - if ((size_t)result >= socket4FDBytesAvailable) - socket4FDBytesAvailable = 0; - else - socket4FDBytesAvailable -= result; - - if ((size_t)result != bufSize) { - buf = realloc(buf, result); - } - - data = [NSData dataWithBytesNoCopy:buf length:result freeWhenDone:YES]; - addr4 = [NSData dataWithBytes:&sockaddr4 length:sockaddr4len]; - } - else - { - LogVerbose(@"recvfrom(socket4FD) = %@", [self errnoError]); - socket4FDBytesAvailable = 0; - free(buf); - } - } - else - { - NSAssert(socket6FDBytesAvailable > 0, @"Invalid logic"); - LogVerbose(@"Receiving on IPv6"); - - struct sockaddr_in6 sockaddr6; - socklen_t sockaddr6len = sizeof(sockaddr6); - - // #222: GCD does not necessarily return the size of an entire UDP packet - // from dispatch_source_get_data(), so we must use the maximum packet size. - size_t bufSize = max6ReceiveSize; - void *buf = malloc(bufSize); - - result = recvfrom(socket6FD, buf, bufSize, 0, (struct sockaddr *)&sockaddr6, &sockaddr6len); - LogVerbose(@"recvfrom(socket6FD) -> %i", (int)result); - - if (result > 0) - { - if ((size_t)result >= socket6FDBytesAvailable) - socket6FDBytesAvailable = 0; - else - socket6FDBytesAvailable -= result; - - if ((size_t)result != bufSize) { - buf = realloc(buf, result); - } - - data = [NSData dataWithBytesNoCopy:buf length:result freeWhenDone:YES]; - addr6 = [NSData dataWithBytes:&sockaddr6 length:sockaddr6len]; - } - else - { - LogVerbose(@"recvfrom(socket6FD) = %@", [self errnoError]); - socket6FDBytesAvailable = 0; - free(buf); - } - } - - - BOOL waitingForSocket = NO; - BOOL notifiedDelegate = NO; - BOOL ignored = NO; - - NSError *socketError = nil; - - if (result == 0) - { - waitingForSocket = YES; - } - else if (result < 0) - { - if (errno == EAGAIN) - waitingForSocket = YES; - else - socketError = [self errnoErrorWithReason:@"Error in recvfrom() function"]; - } - else - { - if (flags & kDidConnect) - { - if (addr4 && ![self isConnectedToAddress4:addr4]) - ignored = YES; - if (addr6 && ![self isConnectedToAddress6:addr6]) - ignored = YES; - } - - NSData *addr = (addr4 != nil) ? addr4 : addr6; - - if (!ignored) - { - if (receiveFilterBlock && receiveFilterQueue) - { - // Run data through filter, and if approved, notify delegate - - __block id filterContext = nil; - __block BOOL allowed = NO; - - if (receiveFilterAsync) - { - pendingFilterOperations++; - dispatch_async(receiveFilterQueue, ^{ @autoreleasepool { - - allowed = self->receiveFilterBlock(data, addr, &filterContext); - - // Transition back to socketQueue to get the current delegate / delegateQueue - dispatch_async(self->socketQueue, ^{ @autoreleasepool { - - self->pendingFilterOperations--; - - if (allowed) - { - [self notifyDidReceiveData:data fromAddress:addr withFilterContext:filterContext]; - } - else - { - LogVerbose(@"received packet silently dropped by receiveFilter"); - } - - if (self->flags & kReceiveOnce) - { - if (allowed) - { - // The delegate has been notified, - // so our receive once operation has completed. - self->flags &= ~kReceiveOnce; - } - else if (self->pendingFilterOperations == 0) - { - // All pending filter operations have completed, - // and none were allowed through. - // Our receive once operation hasn't completed yet. - [self doReceive]; - } - } - }}); - }}); - } - else // if (!receiveFilterAsync) - { - dispatch_sync(receiveFilterQueue, ^{ @autoreleasepool { - - allowed = self->receiveFilterBlock(data, addr, &filterContext); - }}); - - if (allowed) - { - [self notifyDidReceiveData:data fromAddress:addr withFilterContext:filterContext]; - notifiedDelegate = YES; - } - else - { - LogVerbose(@"received packet silently dropped by receiveFilter"); - ignored = YES; - } - } - } - else // if (!receiveFilterBlock || !receiveFilterQueue) - { - [self notifyDidReceiveData:data fromAddress:addr withFilterContext:nil]; - notifiedDelegate = YES; - } - } - } - - if (waitingForSocket) - { - // Wait for a notification of available data. - - if (socket4FDBytesAvailable == 0) { - [self resumeReceive4Source]; - } - if (socket6FDBytesAvailable == 0) { - [self resumeReceive6Source]; - } - } - else if (socketError) - { - [self closeWithError:socketError]; - } - else - { - if (flags & kReceiveContinuous) - { - // Continuous receive mode - [self doReceive]; - } - else - { - // One-at-a-time receive mode - if (notifiedDelegate) - { - // The delegate has been notified (no set filter). - // So our receive once operation has completed. - flags &= ~kReceiveOnce; - } - else if (ignored) - { - [self doReceive]; - } - else - { - // Waiting on asynchronous receive filter... - } - } - } -} - -- (void)doReceiveEOF -{ - LogTrace(); - - [self closeWithError:[self socketClosedError]]; -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Closing -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -- (void)closeWithError:(NSError *)error -{ - LogVerbose(@"closeWithError: %@", error); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - if (currentSend) [self endCurrentSend]; - - [sendQueue removeAllObjects]; - - // If a socket has been created, we should notify the delegate. - BOOL shouldCallDelegate = (flags & kDidCreateSockets) ? YES : NO; - - // Close all sockets, send/receive sources, cfstreams, etc -#if TARGET_OS_IPHONE - [self removeStreamsFromRunLoop]; - [self closeReadAndWriteStreams]; -#endif - [self closeSockets]; - - // Clear all flags (config remains as is) - flags = 0; - - if (shouldCallDelegate) - { - [self notifyDidCloseWithError:error]; - } -} - -- (void)close -{ - LogTrace(); - - dispatch_block_t block = ^{ @autoreleasepool { - - [self closeWithError:nil]; - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); -} - -- (void)closeAfterSending -{ - LogTrace(); - - dispatch_block_t block = ^{ @autoreleasepool { - - self->flags |= kCloseAfterSends; - - if (self->currentSend == nil && [self->sendQueue count] == 0) - { - [self closeWithError:nil]; - } - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark CFStream -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -#if TARGET_OS_IPHONE - -static NSThread *listenerThread; - -+ (void)ignore:(id)_ -{} - -+ (void)startListenerThreadIfNeeded -{ - static dispatch_once_t predicate; - dispatch_once(&predicate, ^{ - - listenerThread = [[NSThread alloc] initWithTarget:self - selector:@selector(listenerThread:) - object:nil]; - [listenerThread start]; - }); -} - -+ (void)listenerThread:(id)unused -{ - @autoreleasepool { - - [[NSThread currentThread] setName:GCDAsyncUdpSocketThreadName]; - - LogInfo(@"ListenerThread: Started"); - - // We can't run the run loop unless it has an associated input source or a timer. - // So we'll just create a timer that will never fire - unless the server runs for a decades. - [NSTimer scheduledTimerWithTimeInterval:[[NSDate distantFuture] timeIntervalSinceNow] - target:self - selector:@selector(ignore:) - userInfo:nil - repeats:YES]; - - [[NSRunLoop currentRunLoop] run]; - - LogInfo(@"ListenerThread: Stopped"); - } -} - -+ (void)addStreamListener:(GCDAsyncUdpSocket *)asyncUdpSocket -{ - LogTrace(); - NSAssert([NSThread currentThread] == listenerThread, @"Invoked on wrong thread"); - - CFRunLoopRef runLoop = CFRunLoopGetCurrent(); - - if (asyncUdpSocket->readStream4) - CFReadStreamScheduleWithRunLoop(asyncUdpSocket->readStream4, runLoop, kCFRunLoopDefaultMode); - - if (asyncUdpSocket->readStream6) - CFReadStreamScheduleWithRunLoop(asyncUdpSocket->readStream6, runLoop, kCFRunLoopDefaultMode); - - if (asyncUdpSocket->writeStream4) - CFWriteStreamScheduleWithRunLoop(asyncUdpSocket->writeStream4, runLoop, kCFRunLoopDefaultMode); - - if (asyncUdpSocket->writeStream6) - CFWriteStreamScheduleWithRunLoop(asyncUdpSocket->writeStream6, runLoop, kCFRunLoopDefaultMode); -} - -+ (void)removeStreamListener:(GCDAsyncUdpSocket *)asyncUdpSocket -{ - LogTrace(); - NSAssert([NSThread currentThread] == listenerThread, @"Invoked on wrong thread"); - - CFRunLoopRef runLoop = CFRunLoopGetCurrent(); - - if (asyncUdpSocket->readStream4) - CFReadStreamUnscheduleFromRunLoop(asyncUdpSocket->readStream4, runLoop, kCFRunLoopDefaultMode); - - if (asyncUdpSocket->readStream6) - CFReadStreamUnscheduleFromRunLoop(asyncUdpSocket->readStream6, runLoop, kCFRunLoopDefaultMode); - - if (asyncUdpSocket->writeStream4) - CFWriteStreamUnscheduleFromRunLoop(asyncUdpSocket->writeStream4, runLoop, kCFRunLoopDefaultMode); - - if (asyncUdpSocket->writeStream6) - CFWriteStreamUnscheduleFromRunLoop(asyncUdpSocket->writeStream6, runLoop, kCFRunLoopDefaultMode); -} - -static void CFReadStreamCallback(CFReadStreamRef stream, CFStreamEventType type, void *pInfo) -{ - @autoreleasepool { - GCDAsyncUdpSocket *asyncUdpSocket = (__bridge GCDAsyncUdpSocket *)pInfo; - - switch(type) - { - case kCFStreamEventOpenCompleted: - { - LogCVerbose(@"CFReadStreamCallback - Open"); - break; - } - case kCFStreamEventHasBytesAvailable: - { - LogCVerbose(@"CFReadStreamCallback - HasBytesAvailable"); - break; - } - case kCFStreamEventErrorOccurred: - case kCFStreamEventEndEncountered: - { - NSError *error = (__bridge_transfer NSError *)CFReadStreamCopyError(stream); - if (error == nil && type == kCFStreamEventEndEncountered) - { - error = [asyncUdpSocket socketClosedError]; - } - - dispatch_async(asyncUdpSocket->socketQueue, ^{ @autoreleasepool { - - LogCVerbose(@"CFReadStreamCallback - %@", - (type == kCFStreamEventErrorOccurred) ? @"Error" : @"EndEncountered"); - - if (stream != asyncUdpSocket->readStream4 && - stream != asyncUdpSocket->readStream6 ) - { - LogCVerbose(@"CFReadStreamCallback - Ignored"); - return_from_block; - } - - [asyncUdpSocket closeWithError:error]; - - }}); - - break; - } - default: - { - LogCError(@"CFReadStreamCallback - UnknownType: %i", (int)type); - } - } - } -} - -static void CFWriteStreamCallback(CFWriteStreamRef stream, CFStreamEventType type, void *pInfo) -{ - @autoreleasepool { - GCDAsyncUdpSocket *asyncUdpSocket = (__bridge GCDAsyncUdpSocket *)pInfo; - - switch(type) - { - case kCFStreamEventOpenCompleted: - { - LogCVerbose(@"CFWriteStreamCallback - Open"); - break; - } - case kCFStreamEventCanAcceptBytes: - { - LogCVerbose(@"CFWriteStreamCallback - CanAcceptBytes"); - break; - } - case kCFStreamEventErrorOccurred: - case kCFStreamEventEndEncountered: - { - NSError *error = (__bridge_transfer NSError *)CFWriteStreamCopyError(stream); - if (error == nil && type == kCFStreamEventEndEncountered) - { - error = [asyncUdpSocket socketClosedError]; - } - - dispatch_async(asyncUdpSocket->socketQueue, ^{ @autoreleasepool { - - LogCVerbose(@"CFWriteStreamCallback - %@", - (type == kCFStreamEventErrorOccurred) ? @"Error" : @"EndEncountered"); - - if (stream != asyncUdpSocket->writeStream4 && - stream != asyncUdpSocket->writeStream6 ) - { - LogCVerbose(@"CFWriteStreamCallback - Ignored"); - return_from_block; - } - - [asyncUdpSocket closeWithError:error]; - - }}); - - break; - } - default: - { - LogCError(@"CFWriteStreamCallback - UnknownType: %i", (int)type); - } - } - } -} - -- (BOOL)createReadAndWriteStreams:(NSError **)errPtr -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - NSError *err = nil; - - if (readStream4 || writeStream4 || readStream6 || writeStream6) - { - // Streams already created - return YES; - } - - if (socket4FD == SOCKET_NULL && socket6FD == SOCKET_NULL) - { - err = [self otherError:@"Cannot create streams without a file descriptor"]; - goto Failed; - } - - // Create streams - - LogVerbose(@"Creating read and write stream(s)..."); - - if (socket4FD != SOCKET_NULL) - { - CFStreamCreatePairWithSocket(NULL, (CFSocketNativeHandle)socket4FD, &readStream4, &writeStream4); - if (!readStream4 || !writeStream4) - { - err = [self otherError:@"Error in CFStreamCreatePairWithSocket() [IPv4]"]; - goto Failed; - } - } - - if (socket6FD != SOCKET_NULL) - { - CFStreamCreatePairWithSocket(NULL, (CFSocketNativeHandle)socket6FD, &readStream6, &writeStream6); - if (!readStream6 || !writeStream6) - { - err = [self otherError:@"Error in CFStreamCreatePairWithSocket() [IPv6]"]; - goto Failed; - } - } - - // Ensure the CFStream's don't close our underlying socket - - CFReadStreamSetProperty(readStream4, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); - CFWriteStreamSetProperty(writeStream4, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); - - CFReadStreamSetProperty(readStream6, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); - CFWriteStreamSetProperty(writeStream6, kCFStreamPropertyShouldCloseNativeSocket, kCFBooleanFalse); - - return YES; - -Failed: - if (readStream4) - { - CFReadStreamClose(readStream4); - CFRelease(readStream4); - readStream4 = NULL; - } - if (writeStream4) - { - CFWriteStreamClose(writeStream4); - CFRelease(writeStream4); - writeStream4 = NULL; - } - if (readStream6) - { - CFReadStreamClose(readStream6); - CFRelease(readStream6); - readStream6 = NULL; - } - if (writeStream6) - { - CFWriteStreamClose(writeStream6); - CFRelease(writeStream6); - writeStream6 = NULL; - } - - if (errPtr) - *errPtr = err; - - return NO; -} - -- (BOOL)registerForStreamCallbacks:(NSError **)errPtr -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert(readStream4 || writeStream4 || readStream6 || writeStream6, @"Read/Write streams are null"); - - NSError *err = nil; - - streamContext.version = 0; - streamContext.info = (__bridge void *)self; - streamContext.retain = nil; - streamContext.release = nil; - streamContext.copyDescription = nil; - - CFOptionFlags readStreamEvents = kCFStreamEventErrorOccurred | kCFStreamEventEndEncountered; - CFOptionFlags writeStreamEvents = kCFStreamEventErrorOccurred | kCFStreamEventEndEncountered; - -// readStreamEvents |= (kCFStreamEventOpenCompleted | kCFStreamEventHasBytesAvailable); -// writeStreamEvents |= (kCFStreamEventOpenCompleted | kCFStreamEventCanAcceptBytes); - - if (socket4FD != SOCKET_NULL) - { - if (readStream4 == NULL || writeStream4 == NULL) - { - err = [self otherError:@"Read/Write stream4 is null"]; - goto Failed; - } - - BOOL r1 = CFReadStreamSetClient(readStream4, readStreamEvents, &CFReadStreamCallback, &streamContext); - BOOL r2 = CFWriteStreamSetClient(writeStream4, writeStreamEvents, &CFWriteStreamCallback, &streamContext); - - if (!r1 || !r2) - { - err = [self otherError:@"Error in CFStreamSetClient(), [IPv4]"]; - goto Failed; - } - } - - if (socket6FD != SOCKET_NULL) - { - if (readStream6 == NULL || writeStream6 == NULL) - { - err = [self otherError:@"Read/Write stream6 is null"]; - goto Failed; - } - - BOOL r1 = CFReadStreamSetClient(readStream6, readStreamEvents, &CFReadStreamCallback, &streamContext); - BOOL r2 = CFWriteStreamSetClient(writeStream6, writeStreamEvents, &CFWriteStreamCallback, &streamContext); - - if (!r1 || !r2) - { - err = [self otherError:@"Error in CFStreamSetClient() [IPv6]"]; - goto Failed; - } - } - - return YES; - -Failed: - if (readStream4) { - CFReadStreamSetClient(readStream4, kCFStreamEventNone, NULL, NULL); - } - if (writeStream4) { - CFWriteStreamSetClient(writeStream4, kCFStreamEventNone, NULL, NULL); - } - if (readStream6) { - CFReadStreamSetClient(readStream6, kCFStreamEventNone, NULL, NULL); - } - if (writeStream6) { - CFWriteStreamSetClient(writeStream6, kCFStreamEventNone, NULL, NULL); - } - - if (errPtr) *errPtr = err; - return NO; -} - -- (BOOL)addStreamsToRunLoop:(NSError **)errPtr -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert(readStream4 || writeStream4 || readStream6 || writeStream6, @"Read/Write streams are null"); - - if (!(flags & kAddedStreamListener)) - { - [[self class] startListenerThreadIfNeeded]; - [[self class] performSelector:@selector(addStreamListener:) - onThread:listenerThread - withObject:self - waitUntilDone:YES]; - - flags |= kAddedStreamListener; - } - - return YES; -} - -- (BOOL)openStreams:(NSError **)errPtr -{ - LogTrace(); - - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - NSAssert(readStream4 || writeStream4 || readStream6 || writeStream6, @"Read/Write streams are null"); - - NSError *err = nil; - - if (socket4FD != SOCKET_NULL) - { - BOOL r1 = CFReadStreamOpen(readStream4); - BOOL r2 = CFWriteStreamOpen(writeStream4); - - if (!r1 || !r2) - { - err = [self otherError:@"Error in CFStreamOpen() [IPv4]"]; - goto Failed; - } - } - - if (socket6FD != SOCKET_NULL) - { - BOOL r1 = CFReadStreamOpen(readStream6); - BOOL r2 = CFWriteStreamOpen(writeStream6); - - if (!r1 || !r2) - { - err = [self otherError:@"Error in CFStreamOpen() [IPv6]"]; - goto Failed; - } - } - - return YES; - -Failed: - if (errPtr) *errPtr = err; - return NO; -} - -- (void)removeStreamsFromRunLoop -{ - LogTrace(); - NSAssert(dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey), @"Must be dispatched on socketQueue"); - - if (flags & kAddedStreamListener) - { - [[self class] performSelector:@selector(removeStreamListener:) - onThread:listenerThread - withObject:self - waitUntilDone:YES]; - - flags &= ~kAddedStreamListener; - } -} - -- (void)closeReadAndWriteStreams -{ - LogTrace(); - - if (readStream4) - { - CFReadStreamSetClient(readStream4, kCFStreamEventNone, NULL, NULL); - CFReadStreamClose(readStream4); - CFRelease(readStream4); - readStream4 = NULL; - } - if (writeStream4) - { - CFWriteStreamSetClient(writeStream4, kCFStreamEventNone, NULL, NULL); - CFWriteStreamClose(writeStream4); - CFRelease(writeStream4); - writeStream4 = NULL; - } - if (readStream6) - { - CFReadStreamSetClient(readStream6, kCFStreamEventNone, NULL, NULL); - CFReadStreamClose(readStream6); - CFRelease(readStream6); - readStream6 = NULL; - } - if (writeStream6) - { - CFWriteStreamSetClient(writeStream6, kCFStreamEventNone, NULL, NULL); - CFWriteStreamClose(writeStream6); - CFRelease(writeStream6); - writeStream6 = NULL; - } -} - -#endif - -#if TARGET_OS_IPHONE -- (void)applicationWillEnterForeground:(NSNotification *)notification -{ - LogTrace(); - - // If the application was backgrounded, then iOS may have shut down our sockets. - // So we take a quick look to see if any of them received an EOF. - - dispatch_block_t block = ^{ @autoreleasepool { - - [self resumeReceive4Source]; - [self resumeReceive6Source]; - }}; - - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_async(socketQueue, block); -} -#endif - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Advanced -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/** - * See header file for big discussion of this method. - **/ -- (void)markSocketQueueTargetQueue:(dispatch_queue_t)socketNewTargetQueue -{ - void *nonNullUnusedPointer = (__bridge void *)self; - dispatch_queue_set_specific(socketNewTargetQueue, IsOnSocketQueueOrTargetQueueKey, nonNullUnusedPointer, NULL); -} - -/** - * See header file for big discussion of this method. - **/ -- (void)unmarkSocketQueueTargetQueue:(dispatch_queue_t)socketOldTargetQueue -{ - dispatch_queue_set_specific(socketOldTargetQueue, IsOnSocketQueueOrTargetQueueKey, NULL, NULL); -} - -- (void)performBlock:(dispatch_block_t)block -{ - if (dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - block(); - else - dispatch_sync(socketQueue, block); -} - -- (int)socketFD -{ - if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", - THIS_FILE, THIS_METHOD); - return SOCKET_NULL; - } - - if (socket4FD != SOCKET_NULL) - return socket4FD; - else - return socket6FD; -} - -- (int)socket4FD -{ - if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", - THIS_FILE, THIS_METHOD); - return SOCKET_NULL; - } - - return socket4FD; -} - -- (int)socket6FD -{ - if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", - THIS_FILE, THIS_METHOD); - return SOCKET_NULL; - } - - return socket6FD; -} - -#if TARGET_OS_IPHONE - -- (CFReadStreamRef)readStream -{ - if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", - THIS_FILE, THIS_METHOD); - return NULL; - } - - NSError *err = nil; - if (![self createReadAndWriteStreams:&err]) - { - LogError(@"Error creating CFStream(s): %@", err); - return NULL; - } - - // Todo... - - if (readStream4) - return readStream4; - else - return readStream6; -} - -- (CFWriteStreamRef)writeStream -{ - if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", - THIS_FILE, THIS_METHOD); - return NULL; - } - - NSError *err = nil; - if (![self createReadAndWriteStreams:&err]) - { - LogError(@"Error creating CFStream(s): %@", err); - return NULL; - } - - if (writeStream4) - return writeStream4; - else - return writeStream6; -} - -- (BOOL)enableBackgroundingOnSockets -{ - if (! dispatch_get_specific(IsOnSocketQueueOrTargetQueueKey)) - { - LogWarn(@"%@: %@ - Method only available from within the context of a performBlock: invocation", - THIS_FILE, THIS_METHOD); - return NO; - } - - // Why is this commented out? - // See comments below. - -// NSError *err = nil; -// if (![self createReadAndWriteStreams:&err]) -// { -// LogError(@"Error creating CFStream(s): %@", err); -// return NO; -// } -// -// LogVerbose(@"Enabling backgrouding on socket"); -// -// BOOL r1, r2; -// -// if (readStream4 && writeStream4) -// { -// r1 = CFReadStreamSetProperty(readStream4, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); -// r2 = CFWriteStreamSetProperty(writeStream4, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); -// -// if (!r1 || !r2) -// { -// LogError(@"Error setting voip type (IPv4)"); -// return NO; -// } -// } -// -// if (readStream6 && writeStream6) -// { -// r1 = CFReadStreamSetProperty(readStream6, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); -// r2 = CFWriteStreamSetProperty(writeStream6, kCFStreamNetworkServiceType, kCFStreamNetworkServiceTypeVoIP); -// -// if (!r1 || !r2) -// { -// LogError(@"Error setting voip type (IPv6)"); -// return NO; -// } -// } -// -// return YES; - - // The above code will actually appear to work. - // The methods will return YES, and everything will appear fine. - // - // One tiny problem: the sockets will still get closed when the app gets backgrounded. - // - // Apple does not officially support backgrounding UDP sockets. - - return NO; -} - -#endif - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -#pragma mark Class Methods -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -+ (NSString *)hostFromSockaddr4:(const struct sockaddr_in *)pSockaddr4 -{ - char addrBuf[INET_ADDRSTRLEN]; - - if (inet_ntop(AF_INET, &pSockaddr4->sin_addr, addrBuf, (socklen_t)sizeof(addrBuf)) == NULL) - { - addrBuf[0] = '\0'; - } - - return [NSString stringWithCString:addrBuf encoding:NSASCIIStringEncoding]; -} - -+ (NSString *)hostFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6 -{ - char addrBuf[INET6_ADDRSTRLEN]; - - if (inet_ntop(AF_INET6, &pSockaddr6->sin6_addr, addrBuf, (socklen_t)sizeof(addrBuf)) == NULL) - { - addrBuf[0] = '\0'; - } - - return [NSString stringWithCString:addrBuf encoding:NSASCIIStringEncoding]; -} - -+ (uint16_t)portFromSockaddr4:(const struct sockaddr_in *)pSockaddr4 -{ - return ntohs(pSockaddr4->sin_port); -} - -+ (uint16_t)portFromSockaddr6:(const struct sockaddr_in6 *)pSockaddr6 -{ - return ntohs(pSockaddr6->sin6_port); -} - -+ (NSString *)hostFromAddress:(NSData *)address -{ - NSString *host = nil; - [self getHost:&host port:NULL family:NULL fromAddress:address]; - - return host; -} - -+ (uint16_t)portFromAddress:(NSData *)address -{ - uint16_t port = 0; - [self getHost:NULL port:&port family:NULL fromAddress:address]; - - return port; -} - -+ (int)familyFromAddress:(NSData *)address -{ - int af = AF_UNSPEC; - [self getHost:NULL port:NULL family:&af fromAddress:address]; - - return af; -} - -+ (BOOL)isIPv4Address:(NSData *)address -{ - int af = AF_UNSPEC; - [self getHost:NULL port:NULL family:&af fromAddress:address]; - - return (af == AF_INET); -} - -+ (BOOL)isIPv6Address:(NSData *)address -{ - int af = AF_UNSPEC; - [self getHost:NULL port:NULL family:&af fromAddress:address]; - - return (af == AF_INET6); -} - -+ (BOOL)getHost:(NSString **)hostPtr port:(uint16_t *)portPtr fromAddress:(NSData *)address -{ - return [self getHost:hostPtr port:portPtr family:NULL fromAddress:address]; -} - -+ (BOOL)getHost:(NSString **)hostPtr port:(uint16_t *)portPtr family:(int *)afPtr fromAddress:(NSData *)address -{ - if ([address length] >= sizeof(struct sockaddr)) - { - const struct sockaddr *addrX = (const struct sockaddr *)[address bytes]; - - if (addrX->sa_family == AF_INET) - { - if ([address length] >= sizeof(struct sockaddr_in)) - { - const struct sockaddr_in *addr4 = (const struct sockaddr_in *)(const void *)addrX; - - if (hostPtr) *hostPtr = [self hostFromSockaddr4:addr4]; - if (portPtr) *portPtr = [self portFromSockaddr4:addr4]; - if (afPtr) *afPtr = AF_INET; - - return YES; - } - } - else if (addrX->sa_family == AF_INET6) - { - if ([address length] >= sizeof(struct sockaddr_in6)) - { - const struct sockaddr_in6 *addr6 = (const struct sockaddr_in6 *)(const void *)addrX; - - if (hostPtr) *hostPtr = [self hostFromSockaddr6:addr6]; - if (portPtr) *portPtr = [self portFromSockaddr6:addr6]; - if (afPtr) *afPtr = AF_INET6; - - return YES; - } - } - } - - if (hostPtr) *hostPtr = nil; - if (portPtr) *portPtr = 0; - if (afPtr) *afPtr = AF_UNSPEC; - - return NO; -} - -@end diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/MQTTwihtoutPods-Bridging-Header.h b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/MQTTwihtoutPods-Bridging-Header.h deleted file mode 100644 index d4d1f76..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Socket/MQTTwihtoutPods-Bridging-Header.h +++ /dev/null @@ -1,8 +0,0 @@ -// -// Use this file to import your target's public headers that you would like to expose to Swift. -// - - - -#import "GCDAsyncSocket.h" -#import "GCDAsyncUdpSocket.h" diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Starscream/SSLClientCertificate.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Starscream/SSLClientCertificate.swift deleted file mode 100644 index c6bb374..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Starscream/SSLClientCertificate.swift +++ /dev/null @@ -1,90 +0,0 @@ -// -// SSLClientCertificate.swift -// Starscream -// - - -import Foundation - -public struct SSLClientCertificateError: LocalizedError { - public var errorDescription: String? - - init(errorDescription: String) { - self.errorDescription = errorDescription - } -} - -public class SSLClientCertificate { - internal let streamSSLCertificates: NSArray - - /** - Convenience init. - - parameter pkcs12Path: Path to pkcs12 file containing private key and X.509 ceritifacte (.p12) - - parameter password: file password, see **kSecImportExportPassphrase** - */ - public convenience init(pkcs12Path: String, password: String) throws { - let pkcs12Url = URL(fileURLWithPath: pkcs12Path) - do { - try self.init(pkcs12Url: pkcs12Url, password: password) - } catch { - throw error - } - } - - /** - Designated init. For more information, see SSLSetCertificate() in Security/SecureTransport.h. - - parameter identity: SecIdentityRef, see **kCFStreamSSLCertificates** - - parameter identityCertificate: CFArray of SecCertificateRefs, see **kCFStreamSSLCertificates** - */ - public init(identity: SecIdentity, identityCertificate: SecCertificate) { - self.streamSSLCertificates = NSArray(objects: identity, identityCertificate) - } - - /** - Convenience init. - - parameter pkcs12Url: URL to pkcs12 file containing private key and X.509 ceritifacte (.p12) - - parameter password: file password, see **kSecImportExportPassphrase** - */ - public convenience init(pkcs12Url: URL, password: String) throws { - let importOptions = [kSecImportExportPassphrase as String : password] as CFDictionary - do { - try self.init(pkcs12Url: pkcs12Url, importOptions: importOptions) - } catch { - throw error - } - } - - /** - Designated init. - - parameter pkcs12Url: URL to pkcs12 file containing private key and X.509 ceritifacte (.p12) - - parameter importOptions: A dictionary containing import options. A - kSecImportExportPassphrase entry is required at minimum. Only password-based - PKCS12 blobs are currently supported. See **SecImportExport.h** - */ - public init(pkcs12Url: URL, importOptions: CFDictionary) throws { - do { - let pkcs12Data = try Data(contentsOf: pkcs12Url) - var rawIdentitiesAndCertificates: CFArray? - let pkcs12CFData: CFData = pkcs12Data as CFData - let importStatus = SecPKCS12Import(pkcs12CFData, importOptions, &rawIdentitiesAndCertificates) - - guard importStatus == errSecSuccess else { - throw SSLClientCertificateError(errorDescription: "(Starscream) Error during 'SecPKCS12Import', see 'SecBase.h' - OSStatus: \(importStatus)") - } - guard let identitiyAndCertificate = (rawIdentitiesAndCertificates as? Array>)?.first else { - throw SSLClientCertificateError(errorDescription: "(Starscream) Error - PKCS12 file is empty") - } - - let identity = identitiyAndCertificate[kSecImportItemIdentity as String] as! SecIdentity - var identityCertificate: SecCertificate? - let copyStatus = SecIdentityCopyCertificate(identity, &identityCertificate) - guard copyStatus == errSecSuccess else { - throw SSLClientCertificateError(errorDescription: "(Starscream) Error during 'SecIdentityCopyCertificate', see 'SecBase.h' - OSStatus: \(copyStatus)") - } - self.streamSSLCertificates = NSArray(objects: identity, identityCertificate!) - } catch { - throw error - } - } -} - diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Starscream/SSLSecurity.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Starscream/SSLSecurity.swift deleted file mode 100644 index 86e0485..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Starscream/SSLSecurity.swift +++ /dev/null @@ -1,251 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// SSLSecurity.swift -// Starscream -// -////////////////////////////////////////////////////////////////////////////////////////////////// -#if os(Linux) -#else -import Foundation -import Security - -public protocol SSLTrustValidator { - func isValid(_ trust: SecTrust, domain: String?) -> Bool -} - -open class SSLCert { - var certData: Data? - var key: SecKey? - - /** - Designated init for certificates - - - parameter data: is the binary data of the certificate - - - returns: a representation security object to be used with - */ - public init(data: Data) { - self.certData = data - } - - /** - Designated init for public keys - - - parameter key: is the public key to be used - - - returns: a representation security object to be used with - */ - public init(key: SecKey) { - self.key = key - } -} - -open class SSLSecurity : SSLTrustValidator { - public var validatedDN = true //should the domain name be validated? - public var validateEntireChain = true //should the entire cert chain be validated - - var isReady = false //is the key processing done? - var certificates: [Data]? //the certificates - var pubKeys: [SecKey]? //the public keys - var usePublicKeys = false //use public keys or certificate validation? - - /** - Use certs from main app bundle - - - parameter usePublicKeys: is to specific if the publicKeys or certificates should be used for SSL pinning validation - - - returns: a representation security object to be used with - */ - public convenience init(usePublicKeys: Bool = false) { - let paths = Bundle.main.paths(forResourcesOfType: "cer", inDirectory: ".") - - let certs = paths.reduce([SSLCert]()) { (certs: [SSLCert], path: String) -> [SSLCert] in - var certs = certs - if let data = NSData(contentsOfFile: path) { - certs.append(SSLCert(data: data as Data)) - } - return certs - } - - self.init(certs: certs, usePublicKeys: usePublicKeys) - } - - /** - Designated init - - - parameter certs: is the certificates or public keys to use - - parameter usePublicKeys: is to specific if the publicKeys or certificates should be used for SSL pinning validation - - - returns: a representation security object to be used with - */ - public init(certs: [SSLCert], usePublicKeys: Bool) { - self.usePublicKeys = usePublicKeys - - if self.usePublicKeys { - DispatchQueue.global(qos: .default).async { - let pubKeys = certs.reduce([SecKey]()) { (pubKeys: [SecKey], cert: SSLCert) -> [SecKey] in - var pubKeys = pubKeys - if let data = cert.certData, cert.key == nil { - cert.key = self.extractPublicKey(data) - } - if let key = cert.key { - pubKeys.append(key) - } - return pubKeys - } - - self.pubKeys = pubKeys - self.isReady = true - } - } else { - let certificates = certs.reduce([Data]()) { (certificates: [Data], cert: SSLCert) -> [Data] in - var certificates = certificates - if let data = cert.certData { - certificates.append(data) - } - return certificates - } - self.certificates = certificates - self.isReady = true - } - } - - /** - Valid the trust and domain name. - - - parameter trust: is the serverTrust to validate - - parameter domain: is the CN domain to validate - - - returns: if the key was successfully validated - */ - open func isValid(_ trust: SecTrust, domain: String?) -> Bool { - - var tries = 0 - while !self.isReady { - usleep(1000) - tries += 1 - if tries > 5 { - return false //doesn't appear it is going to ever be ready... - } - } - var policy: SecPolicy - if self.validatedDN { - policy = SecPolicyCreateSSL(true, domain as NSString?) - } else { - policy = SecPolicyCreateBasicX509() - } - SecTrustSetPolicies(trust,policy) - if self.usePublicKeys { - if let keys = self.pubKeys { - let serverPubKeys = publicKeyChain(trust) - for serverKey in serverPubKeys as [AnyObject] { - for key in keys as [AnyObject] { - if serverKey.isEqual(key) { - return true - } - } - } - } - } else if let certs = self.certificates { - let serverCerts = certificateChain(trust) - var collect = [SecCertificate]() - for cert in certs { - collect.append(SecCertificateCreateWithData(nil,cert as CFData)!) - } - SecTrustSetAnchorCertificates(trust,collect as NSArray) - var result: SecTrustResultType = .unspecified - SecTrustEvaluate(trust,&result) - if result == .unspecified || result == .proceed { - if !validateEntireChain { - return true - } - var trustedCount = 0 - for serverCert in serverCerts { - for cert in certs { - if cert == serverCert { - trustedCount += 1 - break - } - } - } - if trustedCount == serverCerts.count { - return true - } - } - } - return false - } - - /** - Get the public key from a certificate data - - - parameter data: is the certificate to pull the public key from - - - returns: a public key - */ - public func extractPublicKey(_ data: Data) -> SecKey? { - guard let cert = SecCertificateCreateWithData(nil, data as CFData) else { return nil } - - return extractPublicKey(cert, policy: SecPolicyCreateBasicX509()) - } - - /** - Get the public key from a certificate - - - parameter data: is the certificate to pull the public key from - - - returns: a public key - */ - public func extractPublicKey(_ cert: SecCertificate, policy: SecPolicy) -> SecKey? { - var possibleTrust: SecTrust? - SecTrustCreateWithCertificates(cert, policy, &possibleTrust) - - guard let trust = possibleTrust else { return nil } - var result: SecTrustResultType = .unspecified - SecTrustEvaluate(trust, &result) - return SecTrustCopyPublicKey(trust) - } - - /** - Get the certificate chain for the trust - - - parameter trust: is the trust to lookup the certificate chain for - - - returns: the certificate chain for the trust - */ - public func certificateChain(_ trust: SecTrust) -> [Data] { - let certificates = (0.. [Data] in - var certificates = certificates - let cert = SecTrustGetCertificateAtIndex(trust, index) - certificates.append(SecCertificateCopyData(cert!) as Data) - return certificates - } - - return certificates - } - - /** - Get the public key chain for the trust - - - parameter trust: is the trust to lookup the certificate chain and extract the public keys - - - returns: the public keys from the certifcate chain for the trust - */ - public func publicKeyChain(_ trust: SecTrust) -> [SecKey] { - let policy = SecPolicyCreateBasicX509() - let keys = (0.. [SecKey] in - var keys = keys - let cert = SecTrustGetCertificateAtIndex(trust, index) - if let key = extractPublicKey(cert!, policy: policy) { - keys.append(key) - } - - return keys - } - - return keys - } - - -} -#endif diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Starscream/WebSocket.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Starscream/WebSocket.swift deleted file mode 100644 index 5fe11ff..0000000 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/OtherFramwork/MQTT/Starscream/WebSocket.swift +++ /dev/null @@ -1,1340 +0,0 @@ -////////////////////////////////////////////////////////////////////////////////////////////////// -// -// Websocket.swift -// - -import Foundation -import CoreFoundation -import CommonCrypto - -public let WebsocketDidConnectNotification = "WebsocketDidConnectNotification" -public let WebsocketDidDisconnectNotification = "WebsocketDidDisconnectNotification" -public let WebsocketDisconnectionErrorKeyName = "WebsocketDisconnectionErrorKeyName" - -//Standard WebSocket close codes -public enum CloseCode : UInt16 { - case normal = 1000 - case goingAway = 1001 - case protocolError = 1002 - case protocolUnhandledType = 1003 - // 1004 reserved. - case noStatusReceived = 1005 - //1006 reserved. - case encoding = 1007 - case policyViolated = 1008 - case messageTooBig = 1009 -} - -public enum ErrorType: Error { - case outputStreamWriteError //output stream error during write - case compressionError - case invalidSSLError //Invalid SSL certificate - case writeTimeoutError //The socket timed out waiting to be ready to write - case protocolError //There was an error parsing the WebSocket frames - case upgradeError //There was an error during the HTTP upgrade - case closeError //There was an error during the close (socket probably has been dereferenced) -} - -public struct WSError: Error { - public let type: ErrorType - public let message: String - public let code: Int -} - -//WebSocketClient is setup to be dependency injection for testing -public protocol WebSocketClient: class { - var delegate: WebSocketDelegate? {get set} - var pongDelegate: WebSocketPongDelegate? {get set} - var disableSSLCertValidation: Bool {get set} - var overrideTrustHostname: Bool {get set} - var desiredTrustHostname: String? {get set} - var sslClientCertificate: SSLClientCertificate? {get set} - #if os(Linux) - #else - var security: SSLTrustValidator? {get set} - var enabledSSLCipherSuites: [SSLCipherSuite]? {get set} - #endif - var isConnected: Bool {get} - - func connect() - func disconnect(forceTimeout: TimeInterval?, closeCode: UInt16) - func write(string: String, completion: (() -> ())?) - func write(data: Data, completion: (() -> ())?) - func write(ping: Data, completion: (() -> ())?) - func write(pong: Data, completion: (() -> ())?) -} - -//implements some of the base behaviors -extension WebSocketClient { - public func write(string: String) { - write(string: string, completion: nil) - } - - public func write(data: Data) { - write(data: data, completion: nil) - } - - public func write(ping: Data) { - write(ping: ping, completion: nil) - } - - public func write(pong: Data) { - write(pong: pong, completion: nil) - } - - public func disconnect() { - disconnect(forceTimeout: nil, closeCode: CloseCode.normal.rawValue) - } -} - -//SSL settings for the stream -public struct SSLSettings { - public let useSSL: Bool - public let disableCertValidation: Bool - public var overrideTrustHostname: Bool - public var desiredTrustHostname: String? - public let sslClientCertificate: SSLClientCertificate? - #if os(Linux) - #else - public let cipherSuites: [SSLCipherSuite]? - #endif -} - -public protocol WSStreamDelegate: class { - func newBytesInStream() - func streamDidError(error: Error?) -} - -//This protocol is to allow custom implemention of the underlining stream. This way custom socket libraries (e.g. linux) can be used -public protocol WSStream { - var delegate: WSStreamDelegate? {get set} - func connect(url: URL, port: Int, timeout: TimeInterval, ssl: SSLSettings, completion: @escaping ((Error?) -> Void)) - func write(data: Data) -> Int - func read() -> Data? - func cleanup() - #if os(Linux) || os(watchOS) - #else - func sslTrust() -> (trust: SecTrust?, domain: String?) - #endif -} - -open class FoundationStream : NSObject, WSStream, StreamDelegate { - private static let sharedWorkQueue = DispatchQueue(label: "com.vluxe.starscream.websocket", attributes: []) - private var inputStream: InputStream? - private var outputStream: OutputStream? - public weak var delegate: WSStreamDelegate? - let BUFFER_MAX = 4096 - - public var enableSOCKSProxy = false - - public func connect(url: URL, port: Int, timeout: TimeInterval, ssl: SSLSettings, completion: @escaping ((Error?) -> Void)) { - var readStream: Unmanaged? - var writeStream: Unmanaged? - let h = url.host! as NSString - CFStreamCreatePairWithSocketToHost(nil, h, UInt32(port), &readStream, &writeStream) - inputStream = readStream!.takeRetainedValue() - outputStream = writeStream!.takeRetainedValue() - - #if os(watchOS) //watchOS us unfortunately is missing the kCFStream properties to make this work - #else - if enableSOCKSProxy { - let proxyDict = CFNetworkCopySystemProxySettings() - let socksConfig = CFDictionaryCreateMutableCopy(nil, 0, proxyDict!.takeRetainedValue()) - let propertyKey = CFStreamPropertyKey(rawValue: kCFStreamPropertySOCKSProxy) - CFWriteStreamSetProperty(outputStream, propertyKey, socksConfig) - CFReadStreamSetProperty(inputStream, propertyKey, socksConfig) - } - #endif - - guard let inStream = inputStream, let outStream = outputStream else { return } - inStream.delegate = self - outStream.delegate = self - if ssl.useSSL { - inStream.setProperty(StreamSocketSecurityLevel.negotiatedSSL as AnyObject, forKey: Stream.PropertyKey.socketSecurityLevelKey) - outStream.setProperty(StreamSocketSecurityLevel.negotiatedSSL as AnyObject, forKey: Stream.PropertyKey.socketSecurityLevelKey) - #if os(watchOS) //watchOS us unfortunately is missing the kCFStream properties to make this work - #else - var settings = [NSObject: NSObject]() - if ssl.disableCertValidation { - settings[kCFStreamSSLValidatesCertificateChain] = NSNumber(value: false) - } - if ssl.overrideTrustHostname { - if let hostname = ssl.desiredTrustHostname { - settings[kCFStreamSSLPeerName] = hostname as NSString - } else { - settings[kCFStreamSSLPeerName] = kCFNull - } - } - if let sslClientCertificate = ssl.sslClientCertificate { - settings[kCFStreamSSLCertificates] = sslClientCertificate.streamSSLCertificates - } - - inStream.setProperty(settings, forKey: kCFStreamPropertySSLSettings as Stream.PropertyKey) - outStream.setProperty(settings, forKey: kCFStreamPropertySSLSettings as Stream.PropertyKey) - #endif - - #if os(Linux) - #else - if let cipherSuites = ssl.cipherSuites { - #if os(watchOS) //watchOS us unfortunately is missing the kCFStream properties to make this work - #else - if let sslContextIn = CFReadStreamCopyProperty(inputStream, CFStreamPropertyKey(rawValue: kCFStreamPropertySSLContext)) as! SSLContext?, - let sslContextOut = CFWriteStreamCopyProperty(outputStream, CFStreamPropertyKey(rawValue: kCFStreamPropertySSLContext)) as! SSLContext? { - let resIn = SSLSetEnabledCiphers(sslContextIn, cipherSuites, cipherSuites.count) - let resOut = SSLSetEnabledCiphers(sslContextOut, cipherSuites, cipherSuites.count) - if resIn != errSecSuccess { - completion(WSError(type: .invalidSSLError, message: "Error setting ingoing cypher suites", code: Int(resIn))) - } - if resOut != errSecSuccess { - completion(WSError(type: .invalidSSLError, message: "Error setting outgoing cypher suites", code: Int(resOut))) - } - } - #endif - } - #endif - } - - CFReadStreamSetDispatchQueue(inStream, FoundationStream.sharedWorkQueue) - CFWriteStreamSetDispatchQueue(outStream, FoundationStream.sharedWorkQueue) - inStream.open() - outStream.open() - - var out = timeout// wait X seconds before giving up - FoundationStream.sharedWorkQueue.async { [weak self] in - while !outStream.hasSpaceAvailable { - usleep(100) // wait until the socket is ready - out -= 100 - if out < 0 { - completion(WSError(type: .writeTimeoutError, message: "Timed out waiting for the socket to be ready for a write", code: 0)) - return - } else if let error = outStream.streamError { - completion(error) - return // disconnectStream will be called. - } else if self == nil { - completion(WSError(type: .closeError, message: "socket object has been dereferenced", code: 0)) - return - } - } - completion(nil) //success! - } - } - - public func write(data: Data) -> Int { - guard let outStream = outputStream else {return -1} - let buffer = UnsafeRawPointer((data as NSData).bytes).assumingMemoryBound(to: UInt8.self) - return outStream.write(buffer, maxLength: data.count) - } - - public func read() -> Data? { - guard let stream = inputStream else {return nil} - let buf = NSMutableData(capacity: BUFFER_MAX) - let buffer = UnsafeMutableRawPointer(mutating: buf!.bytes).assumingMemoryBound(to: UInt8.self) - let length = stream.read(buffer, maxLength: BUFFER_MAX) - if length < 1 { - return nil - } - return Data(bytes: buffer, count: length) - } - - public func cleanup() { - if let stream = inputStream { - stream.delegate = nil - CFReadStreamSetDispatchQueue(stream, nil) - stream.close() - } - if let stream = outputStream { - stream.delegate = nil - CFWriteStreamSetDispatchQueue(stream, nil) - stream.close() - } - outputStream = nil - inputStream = nil - } - - #if os(Linux) || os(watchOS) - #else - public func sslTrust() -> (trust: SecTrust?, domain: String?) { - guard let outputStream = outputStream else { return (nil, nil) } - - let trust = outputStream.property(forKey: kCFStreamPropertySSLPeerTrust as Stream.PropertyKey) as! SecTrust? - var domain = outputStream.property(forKey: kCFStreamSSLPeerName as Stream.PropertyKey) as! String? - if domain == nil, - let sslContextOut = CFWriteStreamCopyProperty(outputStream, CFStreamPropertyKey(rawValue: kCFStreamPropertySSLContext)) as! SSLContext? { - var peerNameLen: Int = 0 - SSLGetPeerDomainNameLength(sslContextOut, &peerNameLen) - var peerName = Data(count: peerNameLen) - let _ = peerName.withUnsafeMutableBytes { (peerNamePtr: UnsafeMutablePointer) in - SSLGetPeerDomainName(sslContextOut, peerNamePtr, &peerNameLen) - } - if let peerDomain = String(bytes: peerName, encoding: .utf8), peerDomain.count > 0 { - domain = peerDomain - } - } - - return (trust, domain) - } - #endif - - /** - Delegate for the stream methods. Processes incoming bytes - */ - open func stream(_ aStream: Stream, handle eventCode: Stream.Event) { - if eventCode == .hasBytesAvailable { - if aStream == inputStream { - delegate?.newBytesInStream() - } - } else if eventCode == .errorOccurred { - delegate?.streamDidError(error: aStream.streamError) - } else if eventCode == .endEncountered { - delegate?.streamDidError(error: nil) - } - } -} - -//WebSocket implementation - -//standard delegate you should use -public protocol WebSocketDelegate: class { - func websocketDidConnect(socket: WebSocketClient) - func websocketDidDisconnect(socket: WebSocketClient, error: Error?) - func websocketDidReceiveMessage(socket: WebSocketClient, text: String) - func websocketDidReceiveData(socket: WebSocketClient, data: Data) -} - -//got pongs -public protocol WebSocketPongDelegate: class { - func websocketDidReceivePong(socket: WebSocketClient, data: Data?) -} - -// A Delegate with more advanced info on messages and connection etc. -public protocol WebSocketAdvancedDelegate: class { - func websocketDidConnect(socket: WebSocket) - func websocketDidDisconnect(socket: WebSocket, error: Error?) - func websocketDidReceiveMessage(socket: WebSocket, text: String, response: WebSocket.WSResponse) - func websocketDidReceiveData(socket: WebSocket, data: Data, response: WebSocket.WSResponse) - func websocketHttpUpgrade(socket: WebSocket, request: String) - func websocketHttpUpgrade(socket: WebSocket, response: String) -} - - -open class WebSocket : NSObject, StreamDelegate, WebSocketClient, WSStreamDelegate { - - public enum OpCode : UInt8 { - case continueFrame = 0x0 - case textFrame = 0x1 - case binaryFrame = 0x2 - // 3-7 are reserved. - case connectionClose = 0x8 - case ping = 0x9 - case pong = 0xA - // B-F reserved. - } - - public static let ErrorDomain = "WebSocket" - - // Where the callback is executed. It defaults to the main UI thread queue. - public var callbackQueue = DispatchQueue.main - - // MARK: - Constants - - let headerWSUpgradeName = "Upgrade" - let headerWSUpgradeValue = "websocket" - let headerWSHostName = "Host" - let headerWSConnectionName = "Connection" - let headerWSConnectionValue = "Upgrade" - let headerWSProtocolName = "Sec-WebSocket-Protocol" - let headerWSVersionName = "Sec-WebSocket-Version" - let headerWSVersionValue = "13" - let headerWSExtensionName = "Sec-WebSocket-Extensions" - let headerWSKeyName = "Sec-WebSocket-Key" - let headerOriginName = "Origin" - let headerWSAcceptName = "Sec-WebSocket-Accept" - let BUFFER_MAX = 4096 - let FinMask: UInt8 = 0x80 - let OpCodeMask: UInt8 = 0x0F - let RSVMask: UInt8 = 0x70 - let RSV1Mask: UInt8 = 0x40 - let MaskMask: UInt8 = 0x80 - let PayloadLenMask: UInt8 = 0x7F - let MaxFrameSize: Int = 32 - let httpSwitchProtocolCode = 101 - let supportedSSLSchemes = ["wss", "https"] - - public class WSResponse { - var isFin = false - public var code: OpCode = .continueFrame - var bytesLeft = 0 - public var frameCount = 0 - public var buffer: NSMutableData? - public let firstFrame = { - return Date() - }() - } - - // MARK: - Delegates - - /// Responds to callback about new messages coming in over the WebSocket - /// and also connection/disconnect messages. - public weak var delegate: WebSocketDelegate? - - /// The optional advanced delegate can be used instead of of the delegate - public weak var advancedDelegate: WebSocketAdvancedDelegate? - - /// Receives a callback for each pong message recived. - public weak var pongDelegate: WebSocketPongDelegate? - - public var onConnect: (() -> Void)? - public var onDisconnect: ((Error?) -> Void)? - public var onText: ((String) -> Void)? - public var onData: ((Data) -> Void)? - public var onPong: ((Data?) -> Void)? - public var onHttpResponseHeaders: (([String: String]) -> Void)? - - public var disableSSLCertValidation = false - public var overrideTrustHostname = false - public var desiredTrustHostname: String? = nil - public var sslClientCertificate: SSLClientCertificate? = nil - - public var enableCompression = true - #if os(Linux) - #else - public var security: SSLTrustValidator? - public var enabledSSLCipherSuites: [SSLCipherSuite]? - #endif - - public var isConnected: Bool { - mutex.lock() - let isConnected = connected - mutex.unlock() - return isConnected - } - public var request: URLRequest //this is only public to allow headers, timeout, etc to be modified on reconnect - public var currentURL: URL { return request.url! } - - public var respondToPingWithPong: Bool = true - - // MARK: - Private - - private struct CompressionState { - var supportsCompression = false - var messageNeedsDecompression = false - var serverMaxWindowBits = 15 - var clientMaxWindowBits = 15 - var clientNoContextTakeover = false - var serverNoContextTakeover = false - var decompressor:Decompressor? = nil - var compressor:Compressor? = nil - } - - private var stream: WSStream - private var connected = false - private var isConnecting = false - private let mutex = NSLock() - private var compressionState = CompressionState() - private var writeQueue = OperationQueue() - private var readStack = [WSResponse]() - private var inputQueue = [Data]() - private var fragBuffer: Data? - private var certValidated = false - private var didDisconnect = false - private var readyToWrite = false - private var headerSecKey = "" - private var canDispatch: Bool { - mutex.lock() - let canWork = readyToWrite - mutex.unlock() - return canWork - } - - /// Used for setting protocols. - public init(request: URLRequest, protocols: [String]? = nil, stream: WSStream = FoundationStream()) { - self.request = request - self.stream = stream - if request.value(forHTTPHeaderField: headerOriginName) == nil { - guard let url = request.url else {return} - var origin = url.absoluteString - if let hostUrl = URL (string: "/", relativeTo: url) { - origin = hostUrl.absoluteString - origin.remove(at: origin.index(before: origin.endIndex)) - } - self.request.setValue(origin, forHTTPHeaderField: headerOriginName) - } - if let protocols = protocols { - self.request.setValue(protocols.joined(separator: ","), forHTTPHeaderField: headerWSProtocolName) - } - writeQueue.maxConcurrentOperationCount = 1 - } - - public convenience init(url: URL, protocols: [String]? = nil) { - var request = URLRequest(url: url) - request.timeoutInterval = 5 - self.init(request: request, protocols: protocols) - } - - // Used for specifically setting the QOS for the write queue. - public convenience init(url: URL, writeQueueQOS: QualityOfService, protocols: [String]? = nil) { - self.init(url: url, protocols: protocols) - writeQueue.qualityOfService = writeQueueQOS - } - - /** - Connect to the WebSocket server on a background thread. - */ - open func connect() { - guard !isConnecting else { return } - didDisconnect = false - isConnecting = true - createHTTPRequest() - } - - /** - Disconnect from the server. I send a Close control frame to the server, then expect the server to respond with a Close control frame and close the socket from its end. I notify my delegate once the socket has been closed. - - If you supply a non-nil `forceTimeout`, I wait at most that long (in seconds) for the server to close the socket. After the timeout expires, I close the socket and notify my delegate. - - If you supply a zero (or negative) `forceTimeout`, I immediately close the socket (without sending a Close control frame) and notify my delegate. - - - Parameter forceTimeout: Maximum time to wait for the server to close the socket. - - Parameter closeCode: The code to send on disconnect. The default is the normal close code for cleanly disconnecting a webSocket. - */ - open func disconnect(forceTimeout: TimeInterval? = nil, closeCode: UInt16 = CloseCode.normal.rawValue) { - guard isConnected else { return } - switch forceTimeout { - case .some(let seconds) where seconds > 0: - let milliseconds = Int(seconds * 1_000) - callbackQueue.asyncAfter(deadline: .now() + .milliseconds(milliseconds)) { [weak self] in - self?.disconnectStream(nil) - } - fallthrough - case .none: - writeError(closeCode) - default: - disconnectStream(nil) - break - } - } - - /** - Write a string to the websocket. This sends it as a text frame. - - If you supply a non-nil completion block, I will perform it when the write completes. - - - parameter string: The string to write. - - parameter completion: The (optional) completion handler. - */ - open func write(string: String, completion: (() -> ())? = nil) { - guard isConnected else { return } - dequeueWrite(string.data(using: String.Encoding.utf8)!, code: .textFrame, writeCompletion: completion) - } - - /** - Write binary data to the websocket. This sends it as a binary frame. - - If you supply a non-nil completion block, I will perform it when the write completes. - - - parameter data: The data to write. - - parameter completion: The (optional) completion handler. - */ - open func write(data: Data, completion: (() -> ())? = nil) { - guard isConnected else { return } - dequeueWrite(data, code: .binaryFrame, writeCompletion: completion) - } - - /** - Write a ping to the websocket. This sends it as a control frame. - Yodel a sound to the planet. This sends it as an astroid. http://youtu.be/Eu5ZJELRiJ8?t=42s - */ - open func write(ping: Data, completion: (() -> ())? = nil) { - guard isConnected else { return } - dequeueWrite(ping, code: .ping, writeCompletion: completion) - } - - /** - Write a pong to the websocket. This sends it as a control frame. - Respond to a Yodel. - */ - open func write(pong: Data, completion: (() -> ())? = nil) { - guard isConnected else { return } - dequeueWrite(pong, code: .pong, writeCompletion: completion) - } - - /** - Private method that starts the connection. - */ - private func createHTTPRequest() { - guard let url = request.url else {return} - var port = url.port - if port == nil { - if supportedSSLSchemes.contains(url.scheme!) { - port = 443 - } else { - port = 80 - } - } - request.setValue(headerWSUpgradeValue, forHTTPHeaderField: headerWSUpgradeName) - request.setValue(headerWSConnectionValue, forHTTPHeaderField: headerWSConnectionName) - headerSecKey = generateWebSocketKey() - request.setValue(headerWSVersionValue, forHTTPHeaderField: headerWSVersionName) - request.setValue(headerSecKey, forHTTPHeaderField: headerWSKeyName) - - if enableCompression { - let val = "permessage-deflate; client_max_window_bits; server_max_window_bits=15" - request.setValue(val, forHTTPHeaderField: headerWSExtensionName) - } - let hostValue = request.allHTTPHeaderFields?[headerWSHostName] ?? "\(url.host!):\(port!)" - request.setValue(hostValue, forHTTPHeaderField: headerWSHostName) - - var path = url.absoluteString - let offset = (url.scheme?.count ?? 2) + 3 - path = String(path[path.index(path.startIndex, offsetBy: offset).. String { - var key = "" - let seed = 16 - for _ in 0.., bufferLen: Int) { - let code = processHTTP(buffer, bufferLen: bufferLen) - switch code { - case 0: - break - case -1: - fragBuffer = Data(bytes: buffer, count: bufferLen) - break // do nothing, we are going to collect more data - default: - doDisconnect(WSError(type: .upgradeError, message: "Invalid HTTP upgrade", code: code)) - } - } - - /** - Finds the HTTP Packet in the TCP stream, by looking for the CRLF. - */ - private func processHTTP(_ buffer: UnsafePointer, bufferLen: Int) -> Int { - let CRLFBytes = [UInt8(ascii: "\r"), UInt8(ascii: "\n"), UInt8(ascii: "\r"), UInt8(ascii: "\n")] - var k = 0 - var totalSize = 0 - for i in 0.. 0 { - let code = validateResponse(buffer, bufferLen: totalSize) - if code != 0 { - return code - } - isConnecting = false - mutex.lock() - connected = true - mutex.unlock() - didDisconnect = false - if canDispatch { - callbackQueue.async { [weak self] in - guard let self = self else { return } - self.onConnect?() - self.delegate?.websocketDidConnect(socket: self) - self.advancedDelegate?.websocketDidConnect(socket: self) - NotificationCenter.default.post(name: NSNotification.Name(WebsocketDidConnectNotification), object: self) - } - } - //totalSize += 1 //skip the last \n - let restSize = bufferLen - totalSize - if restSize > 0 { - processRawMessagesInBuffer(buffer + totalSize, bufferLen: restSize) - } - return 0 //success - } - return -1 // Was unable to find the full TCP header. - } - - /** - Validates the HTTP is a 101 as per the RFC spec. - */ - private func validateResponse(_ buffer: UnsafePointer, bufferLen: Int) -> Int { - guard let str = String(data: Data(bytes: buffer, count: bufferLen), encoding: .utf8) else { return -1 } - let splitArr = str.components(separatedBy: "\r\n") - var code = -1 - var i = 0 - var headers = [String: String]() - for str in splitArr { - if i == 0 { - let responseSplit = str.components(separatedBy: .whitespaces) - guard responseSplit.count > 1 else { return -1 } - if let c = Int(responseSplit[1]) { - code = c - } - } else { - let responseSplit = str.components(separatedBy: ":") - guard responseSplit.count > 1 else { break } - let key = responseSplit[0].trimmingCharacters(in: .whitespaces) - let val = responseSplit[1].trimmingCharacters(in: .whitespaces) - headers[key.lowercased()] = val - } - i += 1 - } - advancedDelegate?.websocketHttpUpgrade(socket: self, response: str) - onHttpResponseHeaders?(headers) - if code != httpSwitchProtocolCode { - return code - } - - if let extensionHeader = headers[headerWSExtensionName.lowercased()] { - processExtensionHeader(extensionHeader) - } - - if let acceptKey = headers[headerWSAcceptName.lowercased()] { - if acceptKey.count > 0 { - if headerSecKey.count > 0 { - let sha = "\(headerSecKey)258EAFA5-E914-47DA-95CA-C5AB0DC85B11".sha1Base64() - if sha != acceptKey as String { - return -1 - } - } - return 0 - } - } - return -1 - } - - /** - Parses the extension header, setting up the compression parameters. - */ - func processExtensionHeader(_ extensionHeader: String) { - let parts = extensionHeader.components(separatedBy: ";") - for p in parts { - let part = p.trimmingCharacters(in: .whitespaces) - if part == "permessage-deflate" { - compressionState.supportsCompression = true - } else if part.hasPrefix("server_max_window_bits=") { - let valString = part.components(separatedBy: "=")[1] - if let val = Int(valString.trimmingCharacters(in: .whitespaces)) { - compressionState.serverMaxWindowBits = val - } - } else if part.hasPrefix("client_max_window_bits=") { - let valString = part.components(separatedBy: "=")[1] - if let val = Int(valString.trimmingCharacters(in: .whitespaces)) { - compressionState.clientMaxWindowBits = val - } - } else if part == "client_no_context_takeover" { - compressionState.clientNoContextTakeover = true - } else if part == "server_no_context_takeover" { - compressionState.serverNoContextTakeover = true - } - } - if compressionState.supportsCompression { - compressionState.decompressor = Decompressor(windowBits: compressionState.serverMaxWindowBits) - compressionState.compressor = Compressor(windowBits: compressionState.clientMaxWindowBits) - } - } - - /** - Read a 16 bit big endian value from a buffer - */ - private static func readUint16(_ buffer: UnsafePointer, offset: Int) -> UInt16 { - return (UInt16(buffer[offset + 0]) << 8) | UInt16(buffer[offset + 1]) - } - - /** - Read a 64 bit big endian value from a buffer - */ - private static func readUint64(_ buffer: UnsafePointer, offset: Int) -> UInt64 { - var value = UInt64(0) - for i in 0...7 { - value = (value << 8) | UInt64(buffer[offset + i]) - } - return value - } - - /** - Write a 16-bit big endian value to a buffer. - */ - private static func writeUint16(_ buffer: UnsafeMutablePointer, offset: Int, value: UInt16) { - buffer[offset + 0] = UInt8(value >> 8) - buffer[offset + 1] = UInt8(value & 0xff) - } - - /** - Write a 64-bit big endian value to a buffer. - */ - private static func writeUint64(_ buffer: UnsafeMutablePointer, offset: Int, value: UInt64) { - for i in 0...7 { - buffer[offset + i] = UInt8((value >> (8*UInt64(7 - i))) & 0xff) - } - } - - /** - Process one message at the start of `buffer`. Return another buffer (sharing storage) that contains the leftover contents of `buffer` that I didn't process. - */ - private func processOneRawMessage(inBuffer buffer: UnsafeBufferPointer) -> UnsafeBufferPointer { - let response = readStack.last - guard let baseAddress = buffer.baseAddress else {return emptyBuffer} - let bufferLen = buffer.count - if response != nil && bufferLen < 2 { - fragBuffer = Data(buffer: buffer) - return emptyBuffer - } - if let response = response, response.bytesLeft > 0 { - var len = response.bytesLeft - var extra = bufferLen - response.bytesLeft - if response.bytesLeft > bufferLen { - len = bufferLen - extra = 0 - } - response.bytesLeft -= len - response.buffer?.append(Data(bytes: baseAddress, count: len)) - _ = processResponse(response) - return buffer.fromOffset(bufferLen - extra) - } else { - let isFin = (FinMask & baseAddress[0]) - let receivedOpcodeRawValue = (OpCodeMask & baseAddress[0]) - let receivedOpcode = OpCode(rawValue: receivedOpcodeRawValue) - let isMasked = (MaskMask & baseAddress[1]) - let payloadLen = (PayloadLenMask & baseAddress[1]) - var offset = 2 - if compressionState.supportsCompression && receivedOpcode != .continueFrame { - compressionState.messageNeedsDecompression = (RSV1Mask & baseAddress[0]) > 0 - } - if (isMasked > 0 || (RSVMask & baseAddress[0]) > 0) && receivedOpcode != .pong && !compressionState.messageNeedsDecompression { - let errCode = CloseCode.protocolError.rawValue - doDisconnect(WSError(type: .protocolError, message: "masked and rsv data is not currently supported", code: Int(errCode))) - writeError(errCode) - return emptyBuffer - } - let isControlFrame = (receivedOpcode == .connectionClose || receivedOpcode == .ping) - if !isControlFrame && (receivedOpcode != .binaryFrame && receivedOpcode != .continueFrame && - receivedOpcode != .textFrame && receivedOpcode != .pong) { - let errCode = CloseCode.protocolError.rawValue - doDisconnect(WSError(type: .protocolError, message: "unknown opcode: \(receivedOpcodeRawValue)", code: Int(errCode))) - writeError(errCode) - return emptyBuffer - } - if isControlFrame && isFin == 0 { - let errCode = CloseCode.protocolError.rawValue - doDisconnect(WSError(type: .protocolError, message: "control frames can't be fragmented", code: Int(errCode))) - writeError(errCode) - return emptyBuffer - } - var closeCode = CloseCode.normal.rawValue - if receivedOpcode == .connectionClose { - if payloadLen == 1 { - closeCode = CloseCode.protocolError.rawValue - } else if payloadLen > 1 { - closeCode = WebSocket.readUint16(baseAddress, offset: offset) - if closeCode < 1000 || (closeCode > 1003 && closeCode < 1007) || (closeCode > 1013 && closeCode < 3000) { - closeCode = CloseCode.protocolError.rawValue - } - } - if payloadLen < 2 { - doDisconnect(WSError(type: .protocolError, message: "connection closed by server", code: Int(closeCode))) - writeError(closeCode) - return emptyBuffer - } - } else if isControlFrame && payloadLen > 125 { - writeError(CloseCode.protocolError.rawValue) - return emptyBuffer - } - var dataLength = UInt64(payloadLen) - if dataLength == 127 { - dataLength = WebSocket.readUint64(baseAddress, offset: offset) - offset += MemoryLayout.size - } else if dataLength == 126 { - dataLength = UInt64(WebSocket.readUint16(baseAddress, offset: offset)) - offset += MemoryLayout.size - } - if bufferLen < offset || UInt64(bufferLen - offset) < dataLength { - fragBuffer = Data(bytes: baseAddress, count: bufferLen) - return emptyBuffer - } - var len = dataLength - if dataLength > UInt64(bufferLen) { - len = UInt64(bufferLen-offset) - } - if receivedOpcode == .connectionClose && len > 0 { - let size = MemoryLayout.size - offset += size - len -= UInt64(size) - } - let data: Data - if compressionState.messageNeedsDecompression, let decompressor = compressionState.decompressor { - do { - data = try decompressor.decompress(bytes: baseAddress+offset, count: Int(len), finish: isFin > 0) - if isFin > 0 && compressionState.serverNoContextTakeover { - try decompressor.reset() - } - } catch { - let closeReason = "Decompression failed: \(error)" - let closeCode = CloseCode.encoding.rawValue - doDisconnect(WSError(type: .protocolError, message: closeReason, code: Int(closeCode))) - writeError(closeCode) - return emptyBuffer - } - } else { - data = Data(bytes: baseAddress+offset, count: Int(len)) - } - - if receivedOpcode == .connectionClose { - var closeReason = "connection closed by server" - if let customCloseReason = String(data: data, encoding: .utf8) { - closeReason = customCloseReason - } else { - closeCode = CloseCode.protocolError.rawValue - } - doDisconnect(WSError(type: .protocolError, message: closeReason, code: Int(closeCode))) - writeError(closeCode) - return emptyBuffer - } - if receivedOpcode == .pong { - if canDispatch { - callbackQueue.async { [weak self] in - guard let self = self else { return } - let pongData: Data? = data.count > 0 ? data : nil - self.onPong?(pongData) - self.pongDelegate?.websocketDidReceivePong(socket: self, data: pongData) - } - } - return buffer.fromOffset(offset + Int(len)) - } - var response = readStack.last - if isControlFrame { - response = nil // Don't append pings. - } - if isFin == 0 && receivedOpcode == .continueFrame && response == nil { - let errCode = CloseCode.protocolError.rawValue - doDisconnect(WSError(type: .protocolError, message: "continue frame before a binary or text frame", code: Int(errCode))) - writeError(errCode) - return emptyBuffer - } - var isNew = false - if response == nil { - if receivedOpcode == .continueFrame { - let errCode = CloseCode.protocolError.rawValue - doDisconnect(WSError(type: .protocolError, message: "first frame can't be a continue frame", code: Int(errCode))) - writeError(errCode) - return emptyBuffer - } - isNew = true - response = WSResponse() - response!.code = receivedOpcode! - response!.bytesLeft = Int(dataLength) - response!.buffer = NSMutableData(data: data) - } else { - if receivedOpcode == .continueFrame { - response!.bytesLeft = Int(dataLength) - } else { - let errCode = CloseCode.protocolError.rawValue - doDisconnect(WSError(type: .protocolError, message: "second and beyond of fragment message must be a continue frame", code: Int(errCode))) - writeError(errCode) - return emptyBuffer - } - response!.buffer!.append(data) - } - if let response = response { - response.bytesLeft -= Int(len) - response.frameCount += 1 - response.isFin = isFin > 0 ? true : false - if isNew { - readStack.append(response) - } - _ = processResponse(response) - } - - let step = Int(offset + numericCast(len)) - return buffer.fromOffset(step) - } - } - - /** - Process all messages in the buffer if possible. - */ - private func processRawMessagesInBuffer(_ pointer: UnsafePointer, bufferLen: Int) { - var buffer = UnsafeBufferPointer(start: pointer, count: bufferLen) - repeat { - buffer = processOneRawMessage(inBuffer: buffer) - } while buffer.count >= 2 - if buffer.count > 0 { - fragBuffer = Data(buffer: buffer) - } - } - - /** - Process the finished response of a buffer. - */ - private func processResponse(_ response: WSResponse) -> Bool { - if response.isFin && response.bytesLeft <= 0 { - if response.code == .ping { - if respondToPingWithPong { - let data = response.buffer! // local copy so it is perverse for writing - dequeueWrite(data as Data, code: .pong) - } - } else if response.code == .textFrame { - guard let str = String(data: response.buffer! as Data, encoding: .utf8) else { - writeError(CloseCode.encoding.rawValue) - return false - } - if canDispatch { - callbackQueue.async { [weak self] in - guard let self = self else { return } - self.onText?(str) - self.delegate?.websocketDidReceiveMessage(socket: self, text: str) - self.advancedDelegate?.websocketDidReceiveMessage(socket: self, text: str, response: response) - } - } - } else if response.code == .binaryFrame { - if canDispatch { - let data = response.buffer! // local copy so it is perverse for writing - callbackQueue.async { [weak self] in - guard let self = self else { return } - self.onData?(data as Data) - self.delegate?.websocketDidReceiveData(socket: self, data: data as Data) - self.advancedDelegate?.websocketDidReceiveData(socket: self, data: data as Data, response: response) - } - } - } - readStack.removeLast() - return true - } - return false - } - - /** - Write an error to the socket - */ - private func writeError(_ code: UInt16) { - let buf = NSMutableData(capacity: MemoryLayout.size) - let buffer = UnsafeMutableRawPointer(mutating: buf!.bytes).assumingMemoryBound(to: UInt8.self) - WebSocket.writeUint16(buffer, offset: 0, value: code) - dequeueWrite(Data(bytes: buffer, count: MemoryLayout.size), code: .connectionClose) - } - - /** - Used to write things to the stream - */ - private func dequeueWrite(_ data: Data, code: OpCode, writeCompletion: (() -> ())? = nil) { - let operation = BlockOperation() - operation.addExecutionBlock { [weak self, weak operation] in - //stream isn't ready, let's wait - guard let self = self else { return } - guard let sOperation = operation else { return } - var offset = 2 - var firstByte:UInt8 = self.FinMask | code.rawValue - var data = data - if [.textFrame, .binaryFrame].contains(code), let compressor = self.compressionState.compressor { - do { - data = try compressor.compress(data) - if self.compressionState.clientNoContextTakeover { - try compressor.reset() - } - firstByte |= self.RSV1Mask - } catch { - // TODO: report error? We can just send the uncompressed frame. - } - } - let dataLength = data.count - let frame = NSMutableData(capacity: dataLength + self.MaxFrameSize) - let buffer = UnsafeMutableRawPointer(frame!.mutableBytes).assumingMemoryBound(to: UInt8.self) - buffer[0] = firstByte - if dataLength < 126 { - buffer[1] = CUnsignedChar(dataLength) - } else if dataLength <= Int(UInt16.max) { - buffer[1] = 126 - WebSocket.writeUint16(buffer, offset: offset, value: UInt16(dataLength)) - offset += MemoryLayout.size - } else { - buffer[1] = 127 - WebSocket.writeUint64(buffer, offset: offset, value: UInt64(dataLength)) - offset += MemoryLayout.size - } - buffer[1] |= self.MaskMask - let maskKey = UnsafeMutablePointer(buffer + offset) - _ = SecRandomCopyBytes(kSecRandomDefault, Int(MemoryLayout.size), maskKey) - offset += MemoryLayout.size - - for i in 0...size] - offset += 1 - } - var total = 0 - while !sOperation.isCancelled { - if !self.readyToWrite { - self.doDisconnect(WSError(type: .outputStreamWriteError, message: "output stream had an error during write", code: 0)) - break - } - let stream = self.stream - let writeBuffer = UnsafeRawPointer(frame!.bytes+total).assumingMemoryBound(to: UInt8.self) - let len = stream.write(data: Data(bytes: writeBuffer, count: offset-total)) - if len <= 0 { - self.doDisconnect(WSError(type: .outputStreamWriteError, message: "output stream had an error during write", code: 0)) - break - } else { - total += len - } - if total >= offset { - if let callback = writeCompletion { - self.callbackQueue.async { - callback() - } - } - - break - } - } - } - writeQueue.addOperation(operation) - } - - /** - Used to preform the disconnect delegate - */ - private func doDisconnect(_ error: Error?) { - guard !didDisconnect else { return } - didDisconnect = true - isConnecting = false - mutex.lock() - connected = false - mutex.unlock() - guard canDispatch else {return} - callbackQueue.async { [weak self] in - guard let self = self else { return } - self.onDisconnect?(error) - self.delegate?.websocketDidDisconnect(socket: self, error: error) - self.advancedDelegate?.websocketDidDisconnect(socket: self, error: error) - let userInfo = error.map{ [WebsocketDisconnectionErrorKeyName: $0] } - NotificationCenter.default.post(name: NSNotification.Name(WebsocketDidDisconnectNotification), object: self, userInfo: userInfo) - } - } - - // MARK: - Deinit - - deinit { - mutex.lock() - readyToWrite = false - cleanupStream() - mutex.unlock() - writeQueue.cancelAllOperations() - } - -} - -private extension String { - func sha1Base64() -> String { - let data = self.data(using: String.Encoding.utf8)! - var digest = [UInt8](repeating: 0, count:Int(CC_SHA1_DIGEST_LENGTH)) - data.withUnsafeBytes { _ = CC_SHA1($0, CC_LONG(data.count), &digest) } - return Data(bytes: digest).base64EncodedString() - } -} - -private extension Data { - - init(buffer: UnsafeBufferPointer) { - self.init(bytes: buffer.baseAddress!, count: buffer.count) - } - -} - -private extension UnsafeBufferPointer { - - func fromOffset(_ offset: Int) -> UnsafeBufferPointer { - return UnsafeBufferPointer(start: baseAddress?.advanced(by: offset), count: count - offset) - } - -} - -private let emptyBuffer = UnsafeBufferPointer(start: nil, count: 0) - -#if swift(>=4) -#else -fileprivate extension String { - var count: Int { - return self.characters.count - } -} -#endif diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/SDKClient.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/SDKClient.swift index f7d88a8..a34776d 100644 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/SDKClient.swift +++ b/IoTConnect2/IoTConnect2/IoTConnect_2.0/SDKClient.swift @@ -38,6 +38,9 @@ public class SDKClient { private var blockHandlerCreateChildCallBack:CreateChildDeviceCallBackBlock? private var blockHandlerDeleteChildCallBack:DeleteChildDeviceCallBackBlock? + private var cpIDRegex = "^[a-zA-Z0-9]+$" + private var uniqueIDregex = "^[\\w\\d—-]*$"//"^[a-zA-Z0-9-]+$" + /** Initialize configuration for IoTConnect SDK @@ -50,8 +53,8 @@ public class SDKClient { - returns: Returns nothing */ - public func initialize(config: IoTConnectConfig) { - //, withBlock completionHandler: @escaping (Error:String?) -> Void + public func initialize(config: IoTConnectConfig,errorBlock:@escaping(_ error:String)->Void) { + //,errorBlock:@escaping(_ error:String)->Void = {errorMsg in } #if IOTAWS print("SDKClient initialize AWS") #else @@ -60,11 +63,28 @@ public class SDKClient { if config.sdkOptions!.cpId.isEmpty{ print(Log.Errors.ERR_IN12.rawValue) + errorBlock (Log.Errors.ERR_IN12.rawValue) }else if config.uniqueId.isEmpty{ print(Log.Errors.ERR_IN13.rawValue) + errorBlock (Log.Errors.ERR_IN13.rawValue) }else if let ioTEnv = config.sdkOptions!.env,ioTEnv.rawValue.isEmpty{ print(Log.Errors.ERR_IN15.rawValue) - }else{ + errorBlock (Log.Errors.ERR_IN15.rawValue) + }else if validateWithRegex(regexString: cpIDRegex, textToValidate: config.sdkOptions!.cpId) == false{ + errorBlock (Log.Errors.ERR_IN16.rawValue) + }else if validateWithRegex(regexString: uniqueIDregex, textToValidate: config.uniqueId) == false{ + errorBlock (Log.Errors.ERR_IN17.rawValue) + } + else{ + if let manager = iotConnectManager,let client = manager.objMQTTClient{ + // client.mqttObj?.disconnect() + print("Manager \(iotConnectManager) \(iotConnectManager.timerNotRegister)") + client.disconnect() + iotConnectManager.timerNotRegister?.invalidate() + iotConnectManager.timerNotRegister = nil + iotConnectManager = nil + } + iotConnectManager = IoTConnectManager(cpId: config.sdkOptions!.cpId, uniqueId: config.uniqueId, env: config.sdkOptions!.env!.rawValue, sdkOptions: config.sdkOptions, deviceCallback: { (message) in if self.blockHandlerDeviceCallBack != nil { self.blockHandlerDeviceCallBack!(message) @@ -90,6 +110,12 @@ public class SDKClient { } } + + private func validateWithRegex(regexString:String,textToValidate:String) -> Bool{ + let strPred = NSPredicate(format:"SELF MATCHES %@", regexString) + return strPred.evaluate(with: textToValidate) + } + /** Used for sending data from Device to Cloud @@ -103,7 +129,9 @@ public class SDKClient { Returns nothing */ public func sendData(data: [String:Any]) { - iotConnectManager.sendData(data: data) + if let manager = iotConnectManager{ + manager.sendData(data: data) + } } /** @@ -311,8 +339,12 @@ public class SDKClient { //Create child device callback public func createChildDevice(deviceId:String, deviceTag:String, displayName:String,createChildCallBack:@escaping CreateChildDeviceCallBackBlock) -> (){ - iotConnectManager?.createChildDevice(deviceId: deviceId, deviceTag: deviceTag, displayName: displayName) blockHandlerCreateChildCallBack = createChildCallBack + if validateWithRegex(regexString: uniqueIDregex, textToValidate: deviceId) == false{ + blockHandlerCreateChildCallBack?(Log.Errors.ERR_IN17.rawValue) + }else{ + iotConnectManager?.createChildDevice(deviceId: deviceId, deviceTag: deviceTag, displayName: displayName) + } } //Delete child device callback diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/common/.DS_Store b/IoTConnect2/IoTConnect2/IoTConnect_2.0/common/.DS_Store index fb0295b..4061002 100644 Binary files a/IoTConnect2/IoTConnect2/IoTConnect_2.0/common/.DS_Store and b/IoTConnect2/IoTConnect2/IoTConnect_2.0/common/.DS_Store differ diff --git a/IoTConnect2/IoTConnect2/IoTConnect_2.0/common/Network/Common.swift b/IoTConnect2/IoTConnect2/IoTConnect_2.0/common/Network/Common.swift index cbcb1a7..b6109e2 100644 --- a/IoTConnect2/IoTConnect2/IoTConnect_2.0/common/Network/Common.swift +++ b/IoTConnect2/IoTConnect2/IoTConnect_2.0/common/Network/Common.swift @@ -14,7 +14,7 @@ public enum IOTCEnvironment: String,CaseIterable { case POC = "poc" #else //define Azure environment - case DEV = "DEV" + case EU = "EMEA" case AVNET = "AVNET" case QA = "QA" #endif @@ -38,23 +38,28 @@ class Common { //MARK: Get Base URL func getBaseURL(strURL: String, callBack: @escaping (Bool, Any) -> ()) { print("BaseURL \(strURL)") - let dataTaskMain = URLSession.shared.dataTask(with: URL(string: strURL)!) { (data, response, error) in - if error == nil { - - let errorParse: Error? = nil - let jsonData = try? JSONSerialization.jsonObject(with: data!, options: .mutableContainers) - print("getBaseURL response \(jsonData ?? "")") - if jsonData == nil { - callBack(false, errorParse as Any) + if let url = URL(string: strURL){ + let dataTaskMain = URLSession.shared.dataTask(with: url) { (data, response, error) in + if error == nil { + + // let errorParse: Error? = nil + do{ + let jsonData = + try JSONSerialization.jsonObject(with: data!, options: .mutableContainers) + print("getBaseURL response \(jsonData)") + callBack(true, jsonData as Any) + }catch let error{ + callBack(false, error as Any) + } } else { - callBack(true, jsonData as Any) + print("getBaseURL error \(String(describing: error))") + callBack(false, error as Any) } - } else { - print("getBaseURL error \(String(describing: error))") - callBack(false, error as Any) } + dataTaskMain.resume() + }else{ + callBack(false, "DiscoveryUrl is wrong.") } - dataTaskMain.resume() } //MARK: Device Sync Call func makeSyncCall(withBaseURL strURL: String, withData dictToPass: [AnyHashable: Any]?, withBlock completionHandler: @escaping (_ data: Data?, _ response: URLResponse?, _ error: Error?) -> Void) { diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Info.plist similarity index 91% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Info.plist index 12c1021..649b36a 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Info.plist +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Info.plist @@ -5,7 +5,7 @@ ArchiveVersion 2 CreationDate - 2024-03-04T04:28:16Z + 2024-05-22T07:27:59Z Name IoTConnect2_AWS SchemeName diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT new file mode 100755 index 0000000..c9fc2c2 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h similarity index 99% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h index 64ef097..70ea37c 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef COCOAMQTT_SWIFT_H #define COCOAMQTT_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-umbrella.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-umbrella.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-umbrella.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-umbrella.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist similarity index 75% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist index 3e8e5e2..012b301 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.abi.json b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.abi.json similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.abi.json rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.abi.json diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc index 099542a..e7394b5 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule new file mode 100644 index 0000000..ba07a44 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h similarity index 99% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h index a76ebf6..7afd2d9 100644 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_AWS_SWIFT_H #define IOTCONNECT2_AWS_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist similarity index 70% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist index 708cd18..d35d017 100644 Binary files a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS new file mode 100755 index 0000000..274c387 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/LICENSE b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/LICENSE similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/LICENSE rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/LICENSE diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..bb45398 --- /dev/null +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,11054 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS12ReachabilityC", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2_AWS.DebugConfig", + "usr": "s:15IoTConnect2_AWS11DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2_AWS.MqttConfig", + "usr": "s:15IoTConnect2_AWS10MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS11DebugConfigV", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS10MqttConfigV", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PREQA", + "printedName": "PREQA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "POC", + "printedName": "POC", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS0A4TCPfO", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS9SSLOptionV", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS11CommandTypeO", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS9SDKClientC", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", + "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 20991, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4310, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17309, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19292, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33318, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5543, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 9694, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface similarity index 98% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface index 42f9806..5df7d57 100644 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc similarity index 92% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc index cf4dde5..738a047 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface similarity index 98% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface index 42f9806..5df7d57 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftmodule b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftmodule new file mode 100644 index 0000000..5ac6baa Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftmodule differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncSocket.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncSocket.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncSocket.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncSocket.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncUdpSocket.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncUdpSocket.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncUdpSocket.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncUdpSocket.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MqttCocoaAsyncSocket-umbrella.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MqttCocoaAsyncSocket-umbrella.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MqttCocoaAsyncSocket-umbrella.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MqttCocoaAsyncSocket-umbrella.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist similarity index 73% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist index 8c75cc4..71a8ef8 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket similarity index 99% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket index 4ab2493..4e181d2 100755 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Headers/Pods-IoTConnect2_AWS-umbrella.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Headers/Pods-IoTConnect2_AWS-umbrella.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Headers/Pods-IoTConnect2_AWS-umbrella.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Headers/Pods-IoTConnect2_AWS-umbrella.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist similarity index 60% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist index c14fd62..052c491 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS new file mode 100644 index 0000000..486628d Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT new file mode 100644 index 0000000..77073cc Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml new file mode 100644 index 0000000..12cf3c8 --- /dev/null +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml @@ -0,0 +1,1708 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT' +relocations: + - { offsetInCU: 0x34, offset: 0x54E65, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x49290, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x54E9A, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x492B8, symSize: 0x0 } + - { offsetInCU: 0xAB, offset: 0x54F5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x208, symBinAddr: 0x4208, symSize: 0x30 } + - { offsetInCU: 0xDC, offset: 0x54F8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x238, symBinAddr: 0x4238, symSize: 0xC } + - { offsetInCU: 0xF8, offset: 0x54FA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x244, symBinAddr: 0x4244, symSize: 0x8 } + - { offsetInCU: 0x114, offset: 0x54FC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7BC0, symBinAddr: 0xBBAC, symSize: 0x14 } + - { offsetInCU: 0x19A, offset: 0x5504A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7BD4, symBinAddr: 0xBBC0, symSize: 0x28 } + - { offsetInCU: 0x28C, offset: 0x5513C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x24C, symBinAddr: 0x424C, symSize: 0x108 } + - { offsetInCU: 0x3BA, offset: 0x5526A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x354, symBinAddr: 0x4354, symSize: 0x8 } + - { offsetInCU: 0x635, offset: 0x554E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xCE4, symBinAddr: 0x4CE4, symSize: 0x118 } + - { offsetInCU: 0xB39, offset: 0x559E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x23BC, symBinAddr: 0x63BC, symSize: 0x10 } + - { offsetInCU: 0xB51, offset: 0x55A01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x23CC, symBinAddr: 0x63CC, symSize: 0x4 } + - { offsetInCU: 0xBA2, offset: 0x55A52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2434, symBinAddr: 0x6434, symSize: 0x10 } + - { offsetInCU: 0xBBA, offset: 0x55A6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x2444, symBinAddr: 0x6444, symSize: 0x4 } + - { offsetInCU: 0xC1A, offset: 0x55ACA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x24AC, symBinAddr: 0x64AC, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x55AE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x24BC, symBinAddr: 0x64BC, symSize: 0x4 } + - { offsetInCU: 0xC83, offset: 0x55B33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2524, symBinAddr: 0x6524, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x55B62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x2598, symBinAddr: 0x6598, symSize: 0x10 } + - { offsetInCU: 0xCCA, offset: 0x55B7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x25A8, symBinAddr: 0x65A8, symSize: 0x4 } + - { offsetInCU: 0xD2A, offset: 0x55BDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x2610, symBinAddr: 0x6610, symSize: 0x10 } + - { offsetInCU: 0xD59, offset: 0x55C09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x2684, symBinAddr: 0x6684, symSize: 0x10 } + - { offsetInCU: 0xD71, offset: 0x55C21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2694, symBinAddr: 0x6694, symSize: 0x4 } + - { offsetInCU: 0xDB3, offset: 0x55C63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x26FC, symBinAddr: 0x66FC, symSize: 0x10 } + - { offsetInCU: 0xDCB, offset: 0x55C7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x270C, symBinAddr: 0x670C, symSize: 0x4 } + - { offsetInCU: 0xE0D, offset: 0x55CBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x2774, symBinAddr: 0x6774, symSize: 0x10 } + - { offsetInCU: 0xE25, offset: 0x55CD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x2784, symBinAddr: 0x6784, symSize: 0x4 } + - { offsetInCU: 0xE76, offset: 0x55D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x27EC, symBinAddr: 0x67EC, symSize: 0x10 } + - { offsetInCU: 0xE8E, offset: 0x55D3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x27FC, symBinAddr: 0x67FC, symSize: 0x4 } + - { offsetInCU: 0xEF0, offset: 0x55DA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2864, symBinAddr: 0x6864, symSize: 0x10 } + - { offsetInCU: 0xF1F, offset: 0x55DCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x28D8, symBinAddr: 0x68D8, symSize: 0x10 } + - { offsetInCU: 0xFBB, offset: 0x55E6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x3154, symBinAddr: 0x7154, symSize: 0x24 } + - { offsetInCU: 0x12B8, offset: 0x56168, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4C30, symBinAddr: 0x8C30, symSize: 0x2C } + - { offsetInCU: 0x131F, offset: 0x561CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4C5C, symBinAddr: 0x8C5C, symSize: 0x44 } + - { offsetInCU: 0x141D, offset: 0x562CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x6C54, symBinAddr: 0xAC40, symSize: 0x24C } + - { offsetInCU: 0x15F1, offset: 0x564A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x70BC, symBinAddr: 0xB0A8, symSize: 0x234 } + - { offsetInCU: 0x17C5, offset: 0x56675, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x72F0, symBinAddr: 0xB2DC, symSize: 0x200 } + - { offsetInCU: 0x1999, offset: 0x56849, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x74F0, symBinAddr: 0xB4DC, symSize: 0x22C } + - { offsetInCU: 0x1B6D, offset: 0x56A1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x771C, symBinAddr: 0xB708, symSize: 0x270 } + - { offsetInCU: 0x1D41, offset: 0x56BF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x798C, symBinAddr: 0xB978, symSize: 0x234 } + - { offsetInCU: 0x2006, offset: 0x56EB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x4D8, symBinAddr: 0x44D8, symSize: 0x14 } + - { offsetInCU: 0x201E, offset: 0x56ECE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x4EC, symBinAddr: 0x44EC, symSize: 0x1C } + - { offsetInCU: 0x2036, offset: 0x56EE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x56C, symBinAddr: 0x456C, symSize: 0x8 } + - { offsetInCU: 0x204E, offset: 0x56EFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x6F8, symBinAddr: 0x46F8, symSize: 0xC } + - { offsetInCU: 0x2066, offset: 0x56F16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x760, symBinAddr: 0x4760, symSize: 0xC } + - { offsetInCU: 0x207E, offset: 0x56F2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x870, symBinAddr: 0x4870, symSize: 0x8 } + - { offsetInCU: 0x2096, offset: 0x56F46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x948, symBinAddr: 0x4948, symSize: 0x8 } + - { offsetInCU: 0x2124, offset: 0x56FD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xCDC, symBinAddr: 0x4CDC, symSize: 0x8 } + - { offsetInCU: 0x2285, offset: 0x57135, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x13A8, symBinAddr: 0x53A8, symSize: 0x8 } + - { offsetInCU: 0x229D, offset: 0x5714D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1480, symBinAddr: 0x5480, symSize: 0x8 } + - { offsetInCU: 0x22B5, offset: 0x57165, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1488, symBinAddr: 0x5488, symSize: 0x8 } + - { offsetInCU: 0x22CD, offset: 0x5717D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1560, symBinAddr: 0x5560, symSize: 0x8 } + - { offsetInCU: 0x22E5, offset: 0x57195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1638, symBinAddr: 0x5638, symSize: 0x8 } + - { offsetInCU: 0x22FD, offset: 0x571AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x1710, symBinAddr: 0x5710, symSize: 0x8 } + - { offsetInCU: 0x2315, offset: 0x571C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1718, symBinAddr: 0x5718, symSize: 0x8 } + - { offsetInCU: 0x232D, offset: 0x571DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x1720, symBinAddr: 0x5720, symSize: 0x8 } + - { offsetInCU: 0x240C, offset: 0x572BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x2228, symBinAddr: 0x6228, symSize: 0x3C } + - { offsetInCU: 0x243B, offset: 0x572EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x2340, symBinAddr: 0x6340, symSize: 0x24 } + - { offsetInCU: 0x246A, offset: 0x5731A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x2364, symBinAddr: 0x6364, symSize: 0x24 } + - { offsetInCU: 0x2499, offset: 0x57349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x2388, symBinAddr: 0x6388, symSize: 0x24 } + - { offsetInCU: 0x24C8, offset: 0x57378, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x23AC, symBinAddr: 0x63AC, symSize: 0x8 } + - { offsetInCU: 0x24E0, offset: 0x57390, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x23B4, symBinAddr: 0x63B4, symSize: 0x8 } + - { offsetInCU: 0x2567, offset: 0x57417, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x3178, symBinAddr: 0x7178, symSize: 0x22C } + - { offsetInCU: 0x26EA, offset: 0x5759A, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x3E10, symBinAddr: 0x7E10, symSize: 0x2C } + - { offsetInCU: 0x2A6F, offset: 0x5791F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4CA0, symBinAddr: 0x8CA0, symSize: 0x8 } + - { offsetInCU: 0x2AEF, offset: 0x5799F, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x4EF4, symBinAddr: 0x8EF4, symSize: 0x3C } + - { offsetInCU: 0x2B3D, offset: 0x579ED, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x50DC, symBinAddr: 0x90DC, symSize: 0x64 } + - { offsetInCU: 0x2CF4, offset: 0x57BA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x58A0, symBinAddr: 0x98A0, symSize: 0x4 } + - { offsetInCU: 0x2D14, offset: 0x57BC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x58A0, symBinAddr: 0x98A0, symSize: 0x4 } + - { offsetInCU: 0x2D39, offset: 0x57BE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x58A4, symBinAddr: 0x98A4, symSize: 0x4 } + - { offsetInCU: 0x2D55, offset: 0x57C05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x58A8, symBinAddr: 0x98A8, symSize: 0x4 } + - { offsetInCU: 0x2D71, offset: 0x57C21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x58AC, symBinAddr: 0x98AC, symSize: 0x4 } + - { offsetInCU: 0x2D8D, offset: 0x57C3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x58B0, symBinAddr: 0x98B0, symSize: 0x4 } + - { offsetInCU: 0x2DA9, offset: 0x57C59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x58B4, symBinAddr: 0x98B4, symSize: 0x4 } + - { offsetInCU: 0x2DC5, offset: 0x57C75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x58B8, symBinAddr: 0x98B8, symSize: 0x234 } + - { offsetInCU: 0x2E4D, offset: 0x57CFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5AEC, symBinAddr: 0x9AEC, symSize: 0x140 } + - { offsetInCU: 0x2F5A, offset: 0x57E0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5C2C, symBinAddr: 0x9C2C, symSize: 0x2C } + - { offsetInCU: 0x2FAB, offset: 0x57E5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5C58, symBinAddr: 0x9C58, symSize: 0x8 } + - { offsetInCU: 0x3008, offset: 0x57EB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5C60, symBinAddr: 0x9C60, symSize: 0x8 } + - { offsetInCU: 0x3065, offset: 0x57F15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5C68, symBinAddr: 0x9C68, symSize: 0x8 } + - { offsetInCU: 0x30C2, offset: 0x57F72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5C70, symBinAddr: 0x9C70, symSize: 0x8 } + - { offsetInCU: 0x311F, offset: 0x57FCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5C78, symBinAddr: 0x9C78, symSize: 0x8 } + - { offsetInCU: 0x317C, offset: 0x5802C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5C80, symBinAddr: 0x9C80, symSize: 0x8 } + - { offsetInCU: 0x31D9, offset: 0x58089, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5C88, symBinAddr: 0x9C88, symSize: 0x8 } + - { offsetInCU: 0x3230, offset: 0x580E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5C90, symBinAddr: 0x9C90, symSize: 0x4 } + - { offsetInCU: 0x3250, offset: 0x58100, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5C90, symBinAddr: 0x9C90, symSize: 0x4 } + - { offsetInCU: 0x3263, offset: 0x58113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5C94, symBinAddr: 0x9C94, symSize: 0x8 } + - { offsetInCU: 0x327B, offset: 0x5812B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5C9C, symBinAddr: 0x9C9C, symSize: 0x10 } + - { offsetInCU: 0x3293, offset: 0x58143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5CAC, symBinAddr: 0x9CAC, symSize: 0x1C } + - { offsetInCU: 0x32AB, offset: 0x5815B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5CC8, symBinAddr: 0x9CC8, symSize: 0x8 } + - { offsetInCU: 0x32C3, offset: 0x58173, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x5CD0, symBinAddr: 0x9CD0, symSize: 0xC } + - { offsetInCU: 0x32DB, offset: 0x5818B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x5CDC, symBinAddr: 0x9CDC, symSize: 0xC } + - { offsetInCU: 0x32F3, offset: 0x581A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x5CE8, symBinAddr: 0x9CE8, symSize: 0x8 } + - { offsetInCU: 0x330B, offset: 0x581BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x5CF0, symBinAddr: 0x9CF0, symSize: 0x8 } + - { offsetInCU: 0x3323, offset: 0x581D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x5CF8, symBinAddr: 0x9CF8, symSize: 0x38 } + - { offsetInCU: 0x333B, offset: 0x581EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x5D30, symBinAddr: 0x9D30, symSize: 0x8 } + - { offsetInCU: 0x3353, offset: 0x58203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x5D60, symBinAddr: 0x9D60, symSize: 0x8 } + - { offsetInCU: 0x336B, offset: 0x5821B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5D68, symBinAddr: 0x9D68, symSize: 0x8 } + - { offsetInCU: 0x3383, offset: 0x58233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x5D70, symBinAddr: 0x9D70, symSize: 0x8 } + - { offsetInCU: 0x339B, offset: 0x5824B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5D78, symBinAddr: 0x9D78, symSize: 0x8 } + - { offsetInCU: 0x33B3, offset: 0x58263, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5D80, symBinAddr: 0x9D80, symSize: 0x8 } + - { offsetInCU: 0x33CB, offset: 0x5827B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x5D88, symBinAddr: 0x9D88, symSize: 0x8 } + - { offsetInCU: 0x33E3, offset: 0x58293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x5D90, symBinAddr: 0x9D90, symSize: 0x8 } + - { offsetInCU: 0x33FB, offset: 0x582AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5D98, symBinAddr: 0x9D98, symSize: 0x8 } + - { offsetInCU: 0x3413, offset: 0x582C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5DA0, symBinAddr: 0x9DA0, symSize: 0x8 } + - { offsetInCU: 0x342B, offset: 0x582DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x5DA8, symBinAddr: 0x9DA8, symSize: 0x8 } + - { offsetInCU: 0x3443, offset: 0x582F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x5F78, symBinAddr: 0x9F78, symSize: 0x24 } + - { offsetInCU: 0x3472, offset: 0x58322, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5F9C, symBinAddr: 0x9F9C, symSize: 0x8 } + - { offsetInCU: 0x348A, offset: 0x5833A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x5FA4, symBinAddr: 0x9FA4, symSize: 0x8 } + - { offsetInCU: 0x34A2, offset: 0x58352, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x5FAC, symBinAddr: 0x9FAC, symSize: 0x8 } + - { offsetInCU: 0x34BA, offset: 0x5836A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x5FB4, symBinAddr: 0x9FB4, symSize: 0x8 } + - { offsetInCU: 0x34D2, offset: 0x58382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x5FBC, symBinAddr: 0x9FBC, symSize: 0x8 } + - { offsetInCU: 0x34EA, offset: 0x5839A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x5FC4, symBinAddr: 0x9FC4, symSize: 0x8 } + - { offsetInCU: 0x3502, offset: 0x583B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x5FCC, symBinAddr: 0x9FCC, symSize: 0x18 } + - { offsetInCU: 0x351A, offset: 0x583CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x5FE4, symBinAddr: 0x9FE4, symSize: 0x1C } + - { offsetInCU: 0x3532, offset: 0x583E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x6000, symBinAddr: 0xA000, symSize: 0xC } + - { offsetInCU: 0x354A, offset: 0x583FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x600C, symBinAddr: 0xA00C, symSize: 0xC } + - { offsetInCU: 0x3562, offset: 0x58412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6018, symBinAddr: 0xA018, symSize: 0x8 } + - { offsetInCU: 0x357A, offset: 0x5842A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x6020, symBinAddr: 0xA020, symSize: 0x8 } + - { offsetInCU: 0x3592, offset: 0x58442, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x6028, symBinAddr: 0xA028, symSize: 0x8 } + - { offsetInCU: 0x35AA, offset: 0x5845A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6030, symBinAddr: 0xA030, symSize: 0x8 } + - { offsetInCU: 0x35C2, offset: 0x58472, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x6038, symBinAddr: 0xA038, symSize: 0x8 } + - { offsetInCU: 0x35DA, offset: 0x5848A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x6040, symBinAddr: 0xA040, symSize: 0x8 } + - { offsetInCU: 0x35F2, offset: 0x584A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x6048, symBinAddr: 0xA048, symSize: 0x8 } + - { offsetInCU: 0x360A, offset: 0x584BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x6050, symBinAddr: 0xA050, symSize: 0x8 } + - { offsetInCU: 0x3622, offset: 0x584D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x6058, symBinAddr: 0xA058, symSize: 0x8 } + - { offsetInCU: 0x363A, offset: 0x584EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x6060, symBinAddr: 0xA060, symSize: 0x8 } + - { offsetInCU: 0x3652, offset: 0x58502, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x6068, symBinAddr: 0xA068, symSize: 0x24 } + - { offsetInCU: 0x3695, offset: 0x58545, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x608C, symBinAddr: 0xA08C, symSize: 0xC } + - { offsetInCU: 0x36AD, offset: 0x5855D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6098, symBinAddr: 0xA098, symSize: 0xC } + - { offsetInCU: 0x36C5, offset: 0x58575, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x60A4, symBinAddr: 0xA0A4, symSize: 0x8 } + - { offsetInCU: 0x36DD, offset: 0x5858D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x60AC, symBinAddr: 0xA0AC, symSize: 0xC } + - { offsetInCU: 0x36F5, offset: 0x585A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x60B8, symBinAddr: 0xA0B8, symSize: 0x8 } + - { offsetInCU: 0x370D, offset: 0x585BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x60C0, symBinAddr: 0xA0C0, symSize: 0x8 } + - { offsetInCU: 0x3725, offset: 0x585D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x60C8, symBinAddr: 0xA0C8, symSize: 0xC } + - { offsetInCU: 0x373D, offset: 0x585ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x60D4, symBinAddr: 0xA0D4, symSize: 0x8 } + - { offsetInCU: 0x3755, offset: 0x58605, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x60DC, symBinAddr: 0xA0DC, symSize: 0xC } + - { offsetInCU: 0x376D, offset: 0x5861D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x60E8, symBinAddr: 0xA0E8, symSize: 0x10 } + - { offsetInCU: 0x3785, offset: 0x58635, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x60F8, symBinAddr: 0xA0F8, symSize: 0x8 } + - { offsetInCU: 0x379D, offset: 0x5864D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x6100, symBinAddr: 0xA100, symSize: 0x1C } + - { offsetInCU: 0x37B5, offset: 0x58665, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x611C, symBinAddr: 0xA11C, symSize: 0xC } + - { offsetInCU: 0x37CD, offset: 0x5867D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x6128, symBinAddr: 0xA128, symSize: 0xC } + - { offsetInCU: 0x37E5, offset: 0x58695, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6134, symBinAddr: 0xA134, symSize: 0x8 } + - { offsetInCU: 0x37FD, offset: 0x586AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x613C, symBinAddr: 0xA13C, symSize: 0x8 } + - { offsetInCU: 0x3815, offset: 0x586C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x6144, symBinAddr: 0xA144, symSize: 0x8 } + - { offsetInCU: 0x382D, offset: 0x586DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x614C, symBinAddr: 0xA14C, symSize: 0x8 } + - { offsetInCU: 0x3845, offset: 0x586F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x6154, symBinAddr: 0xA154, symSize: 0xC } + - { offsetInCU: 0x385D, offset: 0x5870D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x6160, symBinAddr: 0xA160, symSize: 0xC } + - { offsetInCU: 0x3875, offset: 0x58725, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x616C, symBinAddr: 0xA16C, symSize: 0xC } + - { offsetInCU: 0x388D, offset: 0x5873D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x6178, symBinAddr: 0xA178, symSize: 0xC } + - { offsetInCU: 0x38A5, offset: 0x58755, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x6184, symBinAddr: 0xA184, symSize: 0x8 } + - { offsetInCU: 0x38BD, offset: 0x5876D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x618C, symBinAddr: 0xA18C, symSize: 0x8 } + - { offsetInCU: 0x38D5, offset: 0x58785, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x6194, symBinAddr: 0xA194, symSize: 0x8 } + - { offsetInCU: 0x38ED, offset: 0x5879D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x619C, symBinAddr: 0xA19C, symSize: 0x10 } + - { offsetInCU: 0x3905, offset: 0x587B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x61AC, symBinAddr: 0xA1AC, symSize: 0x8 } + - { offsetInCU: 0x391D, offset: 0x587CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x61B4, symBinAddr: 0xA1B4, symSize: 0xC } + - { offsetInCU: 0x3935, offset: 0x587E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x61C0, symBinAddr: 0xA1C0, symSize: 0x8 } + - { offsetInCU: 0x394D, offset: 0x587FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x61C8, symBinAddr: 0xA1C8, symSize: 0x8 } + - { offsetInCU: 0x3965, offset: 0x58815, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x61D0, symBinAddr: 0xA1D0, symSize: 0x8 } + - { offsetInCU: 0x397D, offset: 0x5882D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x61D8, symBinAddr: 0xA1D8, symSize: 0x8 } + - { offsetInCU: 0x3995, offset: 0x58845, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x61E0, symBinAddr: 0xA1E0, symSize: 0x8 } + - { offsetInCU: 0x39AD, offset: 0x5885D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x61E8, symBinAddr: 0xA1E8, symSize: 0xC } + - { offsetInCU: 0x39C5, offset: 0x58875, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x61F4, symBinAddr: 0xA1F4, symSize: 0x8 } + - { offsetInCU: 0x39DD, offset: 0x5888D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x61FC, symBinAddr: 0xA1FC, symSize: 0xC } + - { offsetInCU: 0x39F5, offset: 0x588A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x6208, symBinAddr: 0xA208, symSize: 0xC } + - { offsetInCU: 0x3A0D, offset: 0x588BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6214, symBinAddr: 0xA214, symSize: 0x8 } + - { offsetInCU: 0x3A25, offset: 0x588D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x621C, symBinAddr: 0xA21C, symSize: 0x8 } + - { offsetInCU: 0x3A3D, offset: 0x588ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x6224, symBinAddr: 0xA224, symSize: 0x8 } + - { offsetInCU: 0x3A55, offset: 0x58905, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x622C, symBinAddr: 0xA22C, symSize: 0xC } + - { offsetInCU: 0x3A6D, offset: 0x5891D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x6238, symBinAddr: 0xA238, symSize: 0xC } + - { offsetInCU: 0x3A85, offset: 0x58935, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x6244, symBinAddr: 0xA244, symSize: 0x8 } + - { offsetInCU: 0x3A9D, offset: 0x5894D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x624C, symBinAddr: 0xA24C, symSize: 0x8 } + - { offsetInCU: 0x3AB5, offset: 0x58965, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x6254, symBinAddr: 0xA254, symSize: 0x8 } + - { offsetInCU: 0x3ACD, offset: 0x5897D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x625C, symBinAddr: 0xA25C, symSize: 0x8 } + - { offsetInCU: 0x3AE5, offset: 0x58995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x6264, symBinAddr: 0xA264, symSize: 0x8 } + - { offsetInCU: 0x3AFD, offset: 0x589AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x626C, symBinAddr: 0xA26C, symSize: 0xC } + - { offsetInCU: 0x3B15, offset: 0x589C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6278, symBinAddr: 0xA278, symSize: 0x8 } + - { offsetInCU: 0x3B2D, offset: 0x589DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x6280, symBinAddr: 0xA280, symSize: 0x8 } + - { offsetInCU: 0x3B45, offset: 0x589F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x6288, symBinAddr: 0xA288, symSize: 0x8 } + - { offsetInCU: 0x3B5D, offset: 0x58A0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x6290, symBinAddr: 0xA290, symSize: 0x8 } + - { offsetInCU: 0x3B75, offset: 0x58A25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x6298, symBinAddr: 0xA298, symSize: 0x8 } + - { offsetInCU: 0x3B8D, offset: 0x58A3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x62A0, symBinAddr: 0xA2A0, symSize: 0xC } + - { offsetInCU: 0x3BA5, offset: 0x58A55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x62AC, symBinAddr: 0xA2AC, symSize: 0x8 } + - { offsetInCU: 0x3BBD, offset: 0x58A6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x62B4, symBinAddr: 0xA2B4, symSize: 0x8 } + - { offsetInCU: 0x3BD5, offset: 0x58A85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x62BC, symBinAddr: 0xA2BC, symSize: 0x8 } + - { offsetInCU: 0x3BED, offset: 0x58A9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x62C4, symBinAddr: 0xA2C4, symSize: 0x8 } + - { offsetInCU: 0x3C05, offset: 0x58AB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x62CC, symBinAddr: 0xA2CC, symSize: 0xC } + - { offsetInCU: 0x3C1D, offset: 0x58ACD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x62D8, symBinAddr: 0xA2D8, symSize: 0x8 } + - { offsetInCU: 0x3C35, offset: 0x58AE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x62E0, symBinAddr: 0xA2E0, symSize: 0xC } + - { offsetInCU: 0x3C4D, offset: 0x58AFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x62EC, symBinAddr: 0xA2EC, symSize: 0x8 } + - { offsetInCU: 0x3C65, offset: 0x58B15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x62F4, symBinAddr: 0xA2F4, symSize: 0x8 } + - { offsetInCU: 0x3C7D, offset: 0x58B2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x62FC, symBinAddr: 0xA2FC, symSize: 0x8 } + - { offsetInCU: 0x3C95, offset: 0x58B45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x6304, symBinAddr: 0xA304, symSize: 0x8 } + - { offsetInCU: 0x3CAD, offset: 0x58B5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x630C, symBinAddr: 0xA30C, symSize: 0xC } + - { offsetInCU: 0x3CC5, offset: 0x58B75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6318, symBinAddr: 0xA318, symSize: 0x8 } + - { offsetInCU: 0x3CDD, offset: 0x58B8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6320, symBinAddr: 0xA320, symSize: 0xC } + - { offsetInCU: 0x3CF5, offset: 0x58BA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x632C, symBinAddr: 0xA32C, symSize: 0x8 } + - { offsetInCU: 0x3D0D, offset: 0x58BBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x6334, symBinAddr: 0xA334, symSize: 0xC } + - { offsetInCU: 0x3D25, offset: 0x58BD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x6340, symBinAddr: 0xA340, symSize: 0xC } + - { offsetInCU: 0x3D3D, offset: 0x58BED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x634C, symBinAddr: 0xA34C, symSize: 0x8 } + - { offsetInCU: 0x3D55, offset: 0x58C05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6354, symBinAddr: 0xA354, symSize: 0x8 } + - { offsetInCU: 0x3D6D, offset: 0x58C1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x635C, symBinAddr: 0xA35C, symSize: 0xC } + - { offsetInCU: 0x3D85, offset: 0x58C35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6368, symBinAddr: 0xA368, symSize: 0x8 } + - { offsetInCU: 0x3D9D, offset: 0x58C4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x6370, symBinAddr: 0xA370, symSize: 0x8 } + - { offsetInCU: 0x3DB5, offset: 0x58C65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x6378, symBinAddr: 0xA378, symSize: 0x8 } + - { offsetInCU: 0x3DCD, offset: 0x58C7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x6380, symBinAddr: 0xA380, symSize: 0x8 } + - { offsetInCU: 0x4201, offset: 0x590B1, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x6AF4, symBinAddr: 0xAAE0, symSize: 0x160 } + - { offsetInCU: 0x42D3, offset: 0x59183, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x7BFC, symBinAddr: 0xBBE8, symSize: 0x40 } + - { offsetInCU: 0x42E7, offset: 0x59197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x7C60, symBinAddr: 0xBC4C, symSize: 0x8 } + - { offsetInCU: 0x42FB, offset: 0x591AB, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x7C68, symBinAddr: 0xBC54, symSize: 0x24 } + - { offsetInCU: 0x430F, offset: 0x591BF, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x7C8C, symBinAddr: 0xBC78, symSize: 0x20 } + - { offsetInCU: 0x4323, offset: 0x591D3, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x7CAC, symBinAddr: 0xBC98, symSize: 0x28 } + - { offsetInCU: 0x43DA, offset: 0x5928A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x7EDC, symBinAddr: 0xBEC8, symSize: 0x20 } + - { offsetInCU: 0x43EE, offset: 0x5929E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOb', symObjAddr: 0x7EFC, symBinAddr: 0xBEE8, symSize: 0x18 } + - { offsetInCU: 0x4402, offset: 0x592B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x7F4C, symBinAddr: 0xBF38, symSize: 0x8 } + - { offsetInCU: 0x4416, offset: 0x592C6, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x7F54, symBinAddr: 0xBF40, symSize: 0x10 } + - { offsetInCU: 0x442A, offset: 0x592DA, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x7F64, symBinAddr: 0xBF50, symSize: 0x8 } + - { offsetInCU: 0x443E, offset: 0x592EE, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x7FAC, symBinAddr: 0xBF98, symSize: 0x54 } + - { offsetInCU: 0x4452, offset: 0x59302, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8000, symBinAddr: 0xBFEC, symSize: 0x8 } + - { offsetInCU: 0x4466, offset: 0x59316, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x8034, symBinAddr: 0xC020, symSize: 0x10 } + - { offsetInCU: 0x447A, offset: 0x5932A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x8044, symBinAddr: 0xC030, symSize: 0x6C } + - { offsetInCU: 0x448E, offset: 0x5933E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x80B0, symBinAddr: 0xC09C, symSize: 0x6C } + - { offsetInCU: 0x44A2, offset: 0x59352, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8140, symBinAddr: 0xC12C, symSize: 0xC } + - { offsetInCU: 0x44B6, offset: 0x59366, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x814C, symBinAddr: 0xC138, symSize: 0x8 } + - { offsetInCU: 0x49F5, offset: 0x598A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xA560, symBinAddr: 0xE54C, symSize: 0x4 } + - { offsetInCU: 0x4A09, offset: 0x598B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xA564, symBinAddr: 0xE550, symSize: 0x44 } + - { offsetInCU: 0x4A1D, offset: 0x598CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xA5A8, symBinAddr: 0xE594, symSize: 0x10 } + - { offsetInCU: 0x4A31, offset: 0x598E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xA624, symBinAddr: 0xE610, symSize: 0x24 } + - { offsetInCU: 0x4A45, offset: 0x598F5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xA64C, symBinAddr: 0xE638, symSize: 0x44 } + - { offsetInCU: 0x4A59, offset: 0x59909, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xA690, symBinAddr: 0xE67C, symSize: 0x28 } + - { offsetInCU: 0x4A6D, offset: 0x5991D, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xA6B8, symBinAddr: 0xE6A4, symSize: 0x28 } + - { offsetInCU: 0x4A81, offset: 0x59931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xA6E8, symBinAddr: 0xE6D4, symSize: 0x8 } + - { offsetInCU: 0x4A95, offset: 0x59945, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xA714, symBinAddr: 0xE700, symSize: 0x8 } + - { offsetInCU: 0x4AA9, offset: 0x59959, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xA72C, symBinAddr: 0xE718, symSize: 0x8 } + - { offsetInCU: 0x4ABD, offset: 0x5996D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xA734, symBinAddr: 0xE720, symSize: 0x8 } + - { offsetInCU: 0x4AD1, offset: 0x59981, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xA88C, symBinAddr: 0xE878, symSize: 0x14 } + - { offsetInCU: 0x4AE5, offset: 0x59995, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xA8A0, symBinAddr: 0xE88C, symSize: 0x44 } + - { offsetInCU: 0x4AF9, offset: 0x599A9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xA8E4, symBinAddr: 0xE8D0, symSize: 0x14 } + - { offsetInCU: 0x4B0D, offset: 0x599BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xA974, symBinAddr: 0xE960, symSize: 0xC0 } + - { offsetInCU: 0x4B21, offset: 0x599D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xAA9C, symBinAddr: 0xEA88, symSize: 0x44 } + - { offsetInCU: 0x4B35, offset: 0x599E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xAB14, symBinAddr: 0xEB00, symSize: 0x44 } + - { offsetInCU: 0x4B49, offset: 0x599F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xAB84, symBinAddr: 0xEB70, symSize: 0xC } + - { offsetInCU: 0x4BBC, offset: 0x59A6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x148, symBinAddr: 0x4148, symSize: 0x14 } + - { offsetInCU: 0x4C78, offset: 0x59B28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x15C, symBinAddr: 0x415C, symSize: 0x44 } + - { offsetInCU: 0x4D07, offset: 0x59BB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A0, symBinAddr: 0x41A0, symSize: 0x28 } + - { offsetInCU: 0x4D5A, offset: 0x59C0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C8, symBinAddr: 0x41C8, symSize: 0x40 } + - { offsetInCU: 0x52DF, offset: 0x5A18F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTgm5Tf4g_n', symObjAddr: 0x7CD4, symBinAddr: 0xBCC0, symSize: 0xF8 } + - { offsetInCU: 0x5439, offset: 0x5A2E9, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x8270, symBinAddr: 0xC25C, symSize: 0x104 } + - { offsetInCU: 0x59E8, offset: 0x5A898, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x4 } + - { offsetInCU: 0x59FC, offset: 0x5A8AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x4, symBinAddr: 0x4004, symSize: 0x4 } + - { offsetInCU: 0x5A1D, offset: 0x5A8CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x8, symBinAddr: 0x4008, symSize: 0x28 } + - { offsetInCU: 0x5A38, offset: 0x5A8E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x30, symBinAddr: 0x4030, symSize: 0x118 } + - { offsetInCU: 0x5B23, offset: 0x5A9D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x35C, symBinAddr: 0x435C, symSize: 0x48 } + - { offsetInCU: 0x5B42, offset: 0x5A9F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x3A4, symBinAddr: 0x43A4, symSize: 0x58 } + - { offsetInCU: 0x5B77, offset: 0x5AA27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x3FC, symBinAddr: 0x43FC, symSize: 0x70 } + - { offsetInCU: 0x5B9C, offset: 0x5AA4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x46C, symBinAddr: 0x446C, symSize: 0x6C } + - { offsetInCU: 0x5BBD, offset: 0x5AA6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x528, symBinAddr: 0x4528, symSize: 0x44 } + - { offsetInCU: 0x5BE2, offset: 0x5AA92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvg', symObjAddr: 0x574, symBinAddr: 0x4574, symSize: 0x44 } + - { offsetInCU: 0x5C01, offset: 0x5AAB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvs', symObjAddr: 0x5B8, symBinAddr: 0x45B8, symSize: 0x48 } + - { offsetInCU: 0x5C36, offset: 0x5AAE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x600, symBinAddr: 0x4600, symSize: 0x44 } + - { offsetInCU: 0x5C5B, offset: 0x5AB0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x6B4, symBinAddr: 0x46B4, symSize: 0x44 } + - { offsetInCU: 0x5C80, offset: 0x5AB30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x71C, symBinAddr: 0x471C, symSize: 0x44 } + - { offsetInCU: 0x5CA5, offset: 0x5AB55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x482C, symSize: 0x44 } + - { offsetInCU: 0x5CCA, offset: 0x5AB7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvg', symObjAddr: 0x878, symBinAddr: 0x4878, symSize: 0x44 } + - { offsetInCU: 0x5CE9, offset: 0x5AB99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvs', symObjAddr: 0x8BC, symBinAddr: 0x48BC, symSize: 0x48 } + - { offsetInCU: 0x5D1A, offset: 0x5ABCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x904, symBinAddr: 0x4904, symSize: 0x44 } + - { offsetInCU: 0x5D3F, offset: 0x5ABEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x950, symBinAddr: 0x4950, symSize: 0x50 } + - { offsetInCU: 0x5D5E, offset: 0x5AC0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0x9A0, symBinAddr: 0x49A0, symSize: 0x50 } + - { offsetInCU: 0x5D93, offset: 0x5AC43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0x9F0, symBinAddr: 0x49F0, symSize: 0x44 } + - { offsetInCU: 0x5DB8, offset: 0x5AC68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0xA34, symBinAddr: 0x4A34, symSize: 0x4 } + - { offsetInCU: 0x5E0C, offset: 0x5ACBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0xA38, symBinAddr: 0x4A38, symSize: 0xC0 } + - { offsetInCU: 0x5E7B, offset: 0x5AD2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xB04, symBinAddr: 0x4B04, symSize: 0xF4 } + - { offsetInCU: 0x5EED, offset: 0x5AD9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xC04, symBinAddr: 0x4C04, symSize: 0x44 } + - { offsetInCU: 0x5F0C, offset: 0x5ADBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xC48, symBinAddr: 0x4C48, symSize: 0x50 } + - { offsetInCU: 0x5F41, offset: 0x5ADF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC98, symBinAddr: 0x4C98, symSize: 0x44 } + - { offsetInCU: 0x5FCF, offset: 0x5AE7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xDFC, symBinAddr: 0x4DFC, symSize: 0x250 } + - { offsetInCU: 0x6048, offset: 0x5AEF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4CA8, symBinAddr: 0x8CA8, symSize: 0x5C } + - { offsetInCU: 0x6087, offset: 0x5AF37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0x104C, symBinAddr: 0x504C, symSize: 0x44 } + - { offsetInCU: 0x60BA, offset: 0x5AF6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x1090, symBinAddr: 0x5090, symSize: 0x90 } + - { offsetInCU: 0x6102, offset: 0x5AFB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x1120, symBinAddr: 0x5120, symSize: 0x48 } + - { offsetInCU: 0x6127, offset: 0x5AFD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x1168, symBinAddr: 0x5168, symSize: 0x80 } + - { offsetInCU: 0x6189, offset: 0x5B039, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } + - { offsetInCU: 0x61A9, offset: 0x5B059, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } + - { offsetInCU: 0x6207, offset: 0x5B0B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x120C, symBinAddr: 0x520C, symSize: 0x20 } + - { offsetInCU: 0x623C, offset: 0x5B0EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x120C, symBinAddr: 0x520C, symSize: 0x20 } + - { offsetInCU: 0x6292, offset: 0x5B142, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x122C, symBinAddr: 0x522C, symSize: 0x34 } + - { offsetInCU: 0x62F5, offset: 0x5B1A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1260, symBinAddr: 0x5260, symSize: 0x20 } + - { offsetInCU: 0x6319, offset: 0x5B1C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1260, symBinAddr: 0x5260, symSize: 0x20 } + - { offsetInCU: 0x632D, offset: 0x5B1DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1260, symBinAddr: 0x5260, symSize: 0x20 } + - { offsetInCU: 0x6354, offset: 0x5B204, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1280, symBinAddr: 0x5280, symSize: 0x20 } + - { offsetInCU: 0x6374, offset: 0x5B224, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1280, symBinAddr: 0x5280, symSize: 0x20 } + - { offsetInCU: 0x63D2, offset: 0x5B282, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x12A0, symBinAddr: 0x52A0, symSize: 0x20 } + - { offsetInCU: 0x6406, offset: 0x5B2B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x12A0, symBinAddr: 0x52A0, symSize: 0x20 } + - { offsetInCU: 0x645B, offset: 0x5B30B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x12C0, symBinAddr: 0x52C0, symSize: 0x34 } + - { offsetInCU: 0x64BE, offset: 0x5B36E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12F4, symBinAddr: 0x52F4, symSize: 0x20 } + - { offsetInCU: 0x64E2, offset: 0x5B392, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12F4, symBinAddr: 0x52F4, symSize: 0x20 } + - { offsetInCU: 0x64F6, offset: 0x5B3A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12F4, symBinAddr: 0x52F4, symSize: 0x20 } + - { offsetInCU: 0x651D, offset: 0x5B3CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x20 } + - { offsetInCU: 0x653D, offset: 0x5B3ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x20 } + - { offsetInCU: 0x6596, offset: 0x5B446, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x1334, symBinAddr: 0x5334, symSize: 0x20 } + - { offsetInCU: 0x65CA, offset: 0x5B47A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x1334, symBinAddr: 0x5334, symSize: 0x20 } + - { offsetInCU: 0x661F, offset: 0x5B4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1354, symBinAddr: 0x5354, symSize: 0x34 } + - { offsetInCU: 0x6682, offset: 0x5B532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1388, symBinAddr: 0x5388, symSize: 0x20 } + - { offsetInCU: 0x66A6, offset: 0x5B556, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1388, symBinAddr: 0x5388, symSize: 0x20 } + - { offsetInCU: 0x66BA, offset: 0x5B56A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1388, symBinAddr: 0x5388, symSize: 0x20 } + - { offsetInCU: 0x66CD, offset: 0x5B57D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvg', symObjAddr: 0x13B0, symBinAddr: 0x53B0, symSize: 0x44 } + - { offsetInCU: 0x66EC, offset: 0x5B59C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvs', symObjAddr: 0x13F4, symBinAddr: 0x53F4, symSize: 0x48 } + - { offsetInCU: 0x6721, offset: 0x5B5D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x143C, symBinAddr: 0x543C, symSize: 0x44 } + - { offsetInCU: 0x6746, offset: 0x5B5F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvg', symObjAddr: 0x1490, symBinAddr: 0x5490, symSize: 0x44 } + - { offsetInCU: 0x6765, offset: 0x5B615, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvs', symObjAddr: 0x14D4, symBinAddr: 0x54D4, symSize: 0x48 } + - { offsetInCU: 0x6796, offset: 0x5B646, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x151C, symBinAddr: 0x551C, symSize: 0x44 } + - { offsetInCU: 0x67BB, offset: 0x5B66B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1568, symBinAddr: 0x5568, symSize: 0x44 } + - { offsetInCU: 0x67DA, offset: 0x5B68A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x15AC, symBinAddr: 0x55AC, symSize: 0x48 } + - { offsetInCU: 0x680F, offset: 0x5B6BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x15F4, symBinAddr: 0x55F4, symSize: 0x44 } + - { offsetInCU: 0x6834, offset: 0x5B6E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1640, symBinAddr: 0x5640, symSize: 0x44 } + - { offsetInCU: 0x6853, offset: 0x5B703, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1684, symBinAddr: 0x5684, symSize: 0x48 } + - { offsetInCU: 0x6888, offset: 0x5B738, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x16CC, symBinAddr: 0x56CC, symSize: 0x44 } + - { offsetInCU: 0x68CC, offset: 0x5B77C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x1728, symBinAddr: 0x5728, symSize: 0x78 } + - { offsetInCU: 0x6937, offset: 0x5B7E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x17A0, symBinAddr: 0x57A0, symSize: 0x7C } + - { offsetInCU: 0x69AF, offset: 0x5B85F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x181C, symBinAddr: 0x581C, symSize: 0x90 } + - { offsetInCU: 0x6A08, offset: 0x5B8B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x18AC, symBinAddr: 0x58AC, symSize: 0x24 } + - { offsetInCU: 0x6A29, offset: 0x5B8D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x18D0, symBinAddr: 0x58D0, symSize: 0x88 } + - { offsetInCU: 0x6A7B, offset: 0x5B92B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x1958, symBinAddr: 0x5958, symSize: 0x7C } + - { offsetInCU: 0x6ADC, offset: 0x5B98C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x19D4, symBinAddr: 0x59D4, symSize: 0xA8 } + - { offsetInCU: 0x6B30, offset: 0x5B9E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1A7C, symBinAddr: 0x5A7C, symSize: 0x80 } + - { offsetInCU: 0x6B8F, offset: 0x5BA3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1AFC, symBinAddr: 0x5AFC, symSize: 0xC8 } + - { offsetInCU: 0x6C0F, offset: 0x5BABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1BC4, symBinAddr: 0x5BC4, symSize: 0xD4 } + - { offsetInCU: 0x6C92, offset: 0x5BB42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1C98, symBinAddr: 0x5C98, symSize: 0xFC } + - { offsetInCU: 0x6D24, offset: 0x5BBD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1D94, symBinAddr: 0x5D94, symSize: 0x130 } + - { offsetInCU: 0x6DC7, offset: 0x5BC77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1EC4, symBinAddr: 0x5EC4, symSize: 0xC0 } + - { offsetInCU: 0x6E39, offset: 0x5BCE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x2050, symBinAddr: 0x6050, symSize: 0xF4 } + - { offsetInCU: 0x6EAE, offset: 0x5BD5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2264, symBinAddr: 0x6264, symSize: 0x48 } + - { offsetInCU: 0x6ED4, offset: 0x5BD84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x22AC, symBinAddr: 0x62AC, symSize: 0x50 } + - { offsetInCU: 0x6F0B, offset: 0x5BDBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x22FC, symBinAddr: 0x62FC, symSize: 0x44 } + - { offsetInCU: 0x6F2A, offset: 0x5BDDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x23F0, symBinAddr: 0x63F0, symSize: 0x44 } + - { offsetInCU: 0x6F50, offset: 0x5BE00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2468, symBinAddr: 0x6468, symSize: 0x44 } + - { offsetInCU: 0x6F76, offset: 0x5BE26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x24E0, symBinAddr: 0x64E0, symSize: 0x44 } + - { offsetInCU: 0x6F9C, offset: 0x5BE4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2554, symBinAddr: 0x6554, symSize: 0x44 } + - { offsetInCU: 0x6FC2, offset: 0x5BE72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x25CC, symBinAddr: 0x65CC, symSize: 0x44 } + - { offsetInCU: 0x6FE8, offset: 0x5BE98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x2640, symBinAddr: 0x6640, symSize: 0x44 } + - { offsetInCU: 0x700E, offset: 0x5BEBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x26B8, symBinAddr: 0x66B8, symSize: 0x44 } + - { offsetInCU: 0x7034, offset: 0x5BEE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2730, symBinAddr: 0x6730, symSize: 0x44 } + - { offsetInCU: 0x705A, offset: 0x5BF0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x27A8, symBinAddr: 0x67A8, symSize: 0x44 } + - { offsetInCU: 0x7080, offset: 0x5BF30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x2820, symBinAddr: 0x6820, symSize: 0x44 } + - { offsetInCU: 0x70A6, offset: 0x5BF56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2894, symBinAddr: 0x6894, symSize: 0x44 } + - { offsetInCU: 0x70CC, offset: 0x5BF7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x29B4, symBinAddr: 0x69B4, symSize: 0x44 } + - { offsetInCU: 0x70F8, offset: 0x5BFA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x29F8, symBinAddr: 0x69F8, symSize: 0x70 } + - { offsetInCU: 0x713E, offset: 0x5BFEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2A68, symBinAddr: 0x6A68, symSize: 0x574 } + - { offsetInCU: 0x734B, offset: 0x5C1FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x2FDC, symBinAddr: 0x6FDC, symSize: 0x178 } + - { offsetInCU: 0x747B, offset: 0x5C32B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x33A4, symBinAddr: 0x73A4, symSize: 0x338 } + - { offsetInCU: 0x761F, offset: 0x5C4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x36DC, symBinAddr: 0x76DC, symSize: 0x8 } + - { offsetInCU: 0x771D, offset: 0x5C5CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x36E4, symBinAddr: 0x76E4, symSize: 0x66C } + - { offsetInCU: 0x7A03, offset: 0x5C8B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x3D50, symBinAddr: 0x7D50, symSize: 0xC0 } + - { offsetInCU: 0x7AEB, offset: 0x5C99B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x3E3C, symBinAddr: 0x7E3C, symSize: 0xC8 } + - { offsetInCU: 0x7BB6, offset: 0x5CA66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x3F04, symBinAddr: 0x7F04, symSize: 0x100 } + - { offsetInCU: 0x7C32, offset: 0x5CAE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x4004, symBinAddr: 0x8004, symSize: 0xB0 } + - { offsetInCU: 0x7D21, offset: 0x5CBD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x40B4, symBinAddr: 0x80B4, symSize: 0x148 } + - { offsetInCU: 0x7ECC, offset: 0x5CD7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x41FC, symBinAddr: 0x81FC, symSize: 0x51C } + - { offsetInCU: 0x80F7, offset: 0x5CFA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x4718, symBinAddr: 0x8718, symSize: 0x7C } + - { offsetInCU: 0x8164, offset: 0x5D014, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x4794, symBinAddr: 0x8794, symSize: 0xBC } + - { offsetInCU: 0x8296, offset: 0x5D146, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4850, symBinAddr: 0x8850, symSize: 0x78 } + - { offsetInCU: 0x8367, offset: 0x5D217, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x48C8, symBinAddr: 0x88C8, symSize: 0xF8 } + - { offsetInCU: 0x8587, offset: 0x5D437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x49C0, symBinAddr: 0x89C0, symSize: 0x134 } + - { offsetInCU: 0x8739, offset: 0x5D5E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x4AF4, symBinAddr: 0x8AF4, symSize: 0xF0 } + - { offsetInCU: 0x886B, offset: 0x5D71B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4BE4, symBinAddr: 0x8BE4, symSize: 0x20 } + - { offsetInCU: 0x887F, offset: 0x5D72F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4C04, symBinAddr: 0x8C04, symSize: 0x2C } + - { offsetInCU: 0x88DF, offset: 0x5D78F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4D04, symBinAddr: 0x8D04, symSize: 0x4 } + - { offsetInCU: 0x8953, offset: 0x5D803, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x4D08, symBinAddr: 0x8D08, symSize: 0x1EC } + - { offsetInCU: 0x8A48, offset: 0x5D8F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x4F30, symBinAddr: 0x8F30, symSize: 0x1AC } + - { offsetInCU: 0x8B23, offset: 0x5D9D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5140, symBinAddr: 0x9140, symSize: 0xC4 } + - { offsetInCU: 0x8B9E, offset: 0x5DA4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x5204, symBinAddr: 0x9204, symSize: 0x4 } + - { offsetInCU: 0x8C85, offset: 0x5DB35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5208, symBinAddr: 0x9208, symSize: 0x258 } + - { offsetInCU: 0x90BC, offset: 0x5DF6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5460, symBinAddr: 0x9460, symSize: 0x390 } + - { offsetInCU: 0x92E3, offset: 0x5E193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x57F0, symBinAddr: 0x97F0, symSize: 0xB0 } + - { offsetInCU: 0x94A7, offset: 0x5E357, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5UInt8V_Tg5', symObjAddr: 0x639C, symBinAddr: 0xA388, symSize: 0xB4 } + - { offsetInCU: 0x9590, offset: 0x5E440, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x6450, symBinAddr: 0xA43C, symSize: 0xE4 } + - { offsetInCU: 0x9679, offset: 0x5E529, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x6534, symBinAddr: 0xA520, symSize: 0xB4 } + - { offsetInCU: 0x9762, offset: 0x5E612, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x6600, symBinAddr: 0xA5EC, symSize: 0xBC } + - { offsetInCU: 0x984B, offset: 0x5E6FB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x677C, symBinAddr: 0xA768, symSize: 0xC4 } + - { offsetInCU: 0x9918, offset: 0x5E7C8, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x6840, symBinAddr: 0xA82C, symSize: 0xA4 } + - { offsetInCU: 0x9B37, offset: 0x5E9E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x8374, symBinAddr: 0xC360, symSize: 0x330 } + - { offsetInCU: 0x9D8C, offset: 0x5EC3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x86A4, symBinAddr: 0xC690, symSize: 0x68C } + - { offsetInCU: 0xA312, offset: 0x5F1C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x8D30, symBinAddr: 0xCD1C, symSize: 0x468 } + - { offsetInCU: 0xA6CD, offset: 0x5F57D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9198, symBinAddr: 0xD184, symSize: 0x224 } + - { offsetInCU: 0xA832, offset: 0x5F6E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x93BC, symBinAddr: 0xD3A8, symSize: 0x190 } + - { offsetInCU: 0xA959, offset: 0x5F809, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x954C, symBinAddr: 0xD538, symSize: 0x1A0 } + - { offsetInCU: 0xAAB4, offset: 0x5F964, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x96EC, symBinAddr: 0xD6D8, symSize: 0x23C } + - { offsetInCU: 0xAD26, offset: 0x5FBD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0x9928, symBinAddr: 0xD914, symSize: 0x75C } + - { offsetInCU: 0xB3EA, offset: 0x6029A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA084, symBinAddr: 0xE070, symSize: 0x39C } + - { offsetInCU: 0xB741, offset: 0x605F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xA420, symBinAddr: 0xE40C, symSize: 0x140 } + - { offsetInCU: 0x19A, offset: 0x608A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x31C, symBinAddr: 0xEFE4, symSize: 0x20 } + - { offsetInCU: 0x1CB, offset: 0x608DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x33C, symBinAddr: 0xF004, symSize: 0xC } + - { offsetInCU: 0x1E7, offset: 0x608F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x348, symBinAddr: 0xF010, symSize: 0xA0 } + - { offsetInCU: 0x248, offset: 0x60957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x3E8, symBinAddr: 0xF0B0, symSize: 0x104 } + - { offsetInCU: 0x5BE, offset: 0x60CCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xDC8, symBinAddr: 0xFA90, symSize: 0x118 } + - { offsetInCU: 0xB1E, offset: 0x6122D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x2530, symBinAddr: 0x111F8, symSize: 0x10 } + - { offsetInCU: 0xB36, offset: 0x61245, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2540, symBinAddr: 0x11208, symSize: 0x4 } + - { offsetInCU: 0xB96, offset: 0x612A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x25A8, symBinAddr: 0x11270, symSize: 0x10 } + - { offsetInCU: 0xBAE, offset: 0x612BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x25B8, symBinAddr: 0x11280, symSize: 0x4 } + - { offsetInCU: 0xC0E, offset: 0x6131D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2620, symBinAddr: 0x112E8, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x61335, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2630, symBinAddr: 0x112F8, symSize: 0x4 } + - { offsetInCU: 0xC86, offset: 0x61395, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2698, symBinAddr: 0x11360, symSize: 0x10 } + - { offsetInCU: 0xCB5, offset: 0x613C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x270C, symBinAddr: 0x113D4, symSize: 0x10 } + - { offsetInCU: 0xCCD, offset: 0x613DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x271C, symBinAddr: 0x113E4, symSize: 0x4 } + - { offsetInCU: 0xD3C, offset: 0x6144B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x2784, symBinAddr: 0x1144C, symSize: 0x10 } + - { offsetInCU: 0xD54, offset: 0x61463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2794, symBinAddr: 0x1145C, symSize: 0x4 } + - { offsetInCU: 0xDC3, offset: 0x614D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x27FC, symBinAddr: 0x114C4, symSize: 0x10 } + - { offsetInCU: 0xDDB, offset: 0x614EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x280C, symBinAddr: 0x114D4, symSize: 0x4 } + - { offsetInCU: 0xE3B, offset: 0x6154A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2874, symBinAddr: 0x1153C, symSize: 0x10 } + - { offsetInCU: 0xE53, offset: 0x61562, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2884, symBinAddr: 0x1154C, symSize: 0x4 } + - { offsetInCU: 0xE95, offset: 0x615A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x28EC, symBinAddr: 0x115B4, symSize: 0x10 } + - { offsetInCU: 0xEAD, offset: 0x615BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x28FC, symBinAddr: 0x115C4, symSize: 0x4 } + - { offsetInCU: 0xEEF, offset: 0x615FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2964, symBinAddr: 0x1162C, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x61616, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2974, symBinAddr: 0x1163C, symSize: 0x4 } + - { offsetInCU: 0xF58, offset: 0x61667, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x29DC, symBinAddr: 0x116A4, symSize: 0x10 } + - { offsetInCU: 0xF87, offset: 0x61696, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2A50, symBinAddr: 0x11718, symSize: 0x10 } + - { offsetInCU: 0xFB6, offset: 0x616C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2AC4, symBinAddr: 0x1178C, symSize: 0x10 } + - { offsetInCU: 0xFCE, offset: 0x616DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x2AD4, symBinAddr: 0x1179C, symSize: 0x4 } + - { offsetInCU: 0x1030, offset: 0x6173F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2B3C, symBinAddr: 0x11804, symSize: 0x10 } + - { offsetInCU: 0x105F, offset: 0x6176E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x2BB0, symBinAddr: 0x11878, symSize: 0x10 } + - { offsetInCU: 0x1077, offset: 0x61786, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x2BC0, symBinAddr: 0x11888, symSize: 0x4 } + - { offsetInCU: 0x1135, offset: 0x61844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x3678, symBinAddr: 0x12340, symSize: 0x24 } + - { offsetInCU: 0x14D6, offset: 0x61BE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x5070, symBinAddr: 0x13D38, symSize: 0x2C } + - { offsetInCU: 0x153D, offset: 0x61C4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x509C, symBinAddr: 0x13D64, symSize: 0x44 } + - { offsetInCU: 0x163B, offset: 0x61D4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x6A90, symBinAddr: 0x156AC, symSize: 0x234 } + - { offsetInCU: 0x180F, offset: 0x61F1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x6EE0, symBinAddr: 0x15AFC, symSize: 0x24C } + - { offsetInCU: 0x19E3, offset: 0x620F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x712C, symBinAddr: 0x15D48, symSize: 0x200 } + - { offsetInCU: 0x1BB7, offset: 0x622C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x732C, symBinAddr: 0x15F48, symSize: 0x22C } + - { offsetInCU: 0x1D8B, offset: 0x6249A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x7558, symBinAddr: 0x16174, symSize: 0x270 } + - { offsetInCU: 0x1F5F, offset: 0x6266E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x77C8, symBinAddr: 0x163E4, symSize: 0x25C } + - { offsetInCU: 0x2133, offset: 0x62842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x7A24, symBinAddr: 0x16640, symSize: 0x234 } + - { offsetInCU: 0x2514, offset: 0x62C23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x7C58, symBinAddr: 0x16874, symSize: 0x340 } + - { offsetInCU: 0x25BF, offset: 0x62CCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x7F98, symBinAddr: 0x16BB4, symSize: 0x344 } + - { offsetInCU: 0x266A, offset: 0x62D79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x82DC, symBinAddr: 0x16EF8, symSize: 0x344 } + - { offsetInCU: 0x288D, offset: 0x62F9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x369C, symBinAddr: 0x12364, symSize: 0x288 } + - { offsetInCU: 0x2C9F, offset: 0x633AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x50E0, symBinAddr: 0x13DA8, symSize: 0x8 } + - { offsetInCU: 0x2ECE, offset: 0x635DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5C40, symBinAddr: 0x14908, symSize: 0x4 } + - { offsetInCU: 0x2EEE, offset: 0x635FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5C40, symBinAddr: 0x14908, symSize: 0x4 } + - { offsetInCU: 0x2F13, offset: 0x63622, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5C44, symBinAddr: 0x1490C, symSize: 0x4 } + - { offsetInCU: 0x2F2F, offset: 0x6363E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5C48, symBinAddr: 0x14910, symSize: 0x4 } + - { offsetInCU: 0x2F4B, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5C4C, symBinAddr: 0x14914, symSize: 0x4 } + - { offsetInCU: 0x2F67, offset: 0x63676, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5C50, symBinAddr: 0x14918, symSize: 0x4 } + - { offsetInCU: 0x2F83, offset: 0x63692, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5C54, symBinAddr: 0x1491C, symSize: 0x4 } + - { offsetInCU: 0x2F9F, offset: 0x636AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5C58, symBinAddr: 0x14920, symSize: 0x234 } + - { offsetInCU: 0x3027, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5E8C, symBinAddr: 0x14B54, symSize: 0x140 } + - { offsetInCU: 0x3134, offset: 0x63843, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5FCC, symBinAddr: 0x14C94, symSize: 0x24 } + - { offsetInCU: 0x322B, offset: 0x6393A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x5FF0, symBinAddr: 0x14CB8, symSize: 0x8 } + - { offsetInCU: 0x327C, offset: 0x6398B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x5FF8, symBinAddr: 0x14CC0, symSize: 0x40 } + - { offsetInCU: 0x32CD, offset: 0x639DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x6038, symBinAddr: 0x14D00, symSize: 0x40 } + - { offsetInCU: 0x331E, offset: 0x63A2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6078, symBinAddr: 0x14D40, symSize: 0x8 } + - { offsetInCU: 0x336F, offset: 0x63A7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x6080, symBinAddr: 0x14D48, symSize: 0x8 } + - { offsetInCU: 0x33C0, offset: 0x63ACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6088, symBinAddr: 0x14D50, symSize: 0x8 } + - { offsetInCU: 0x3411, offset: 0x63B20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x6090, symBinAddr: 0x14D58, symSize: 0x8 } + - { offsetInCU: 0x3468, offset: 0x63B77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6098, symBinAddr: 0x14D60, symSize: 0x4 } + - { offsetInCU: 0x3488, offset: 0x63B97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6098, symBinAddr: 0x14D60, symSize: 0x4 } + - { offsetInCU: 0x349B, offset: 0x63BAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x6100, symBinAddr: 0x14D88, symSize: 0x8 } + - { offsetInCU: 0x34CA, offset: 0x63BD9, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tgm5', symObjAddr: 0x64F8, symBinAddr: 0x15114, symSize: 0x54 } + - { offsetInCU: 0x35A5, offset: 0x63CB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x8620, symBinAddr: 0x1723C, symSize: 0xAC } + - { offsetInCU: 0x35E7, offset: 0x63CF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x86CC, symBinAddr: 0x172E8, symSize: 0x94 } + - { offsetInCU: 0x3629, offset: 0x63D38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x8760, symBinAddr: 0x1737C, symSize: 0x20 } + - { offsetInCU: 0x363D, offset: 0x63D4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x87D0, symBinAddr: 0x173D4, symSize: 0x8 } + - { offsetInCU: 0x3651, offset: 0x63D60, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x87D8, symBinAddr: 0x173DC, symSize: 0x10 } + - { offsetInCU: 0x3665, offset: 0x63D74, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x87E8, symBinAddr: 0x173EC, symSize: 0x8 } + - { offsetInCU: 0x3679, offset: 0x63D88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8884, symBinAddr: 0x17434, symSize: 0x8 } + - { offsetInCU: 0x36CC, offset: 0x63DDB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x888C, symBinAddr: 0x1743C, symSize: 0xC4 } + - { offsetInCU: 0x3742, offset: 0x63E51, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8950, symBinAddr: 0x17500, symSize: 0x78 } + - { offsetInCU: 0x376F, offset: 0x63E7E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x89C8, symBinAddr: 0x17578, symSize: 0x80 } + - { offsetInCU: 0x3803, offset: 0x63F12, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x8A48, symBinAddr: 0x175F8, symSize: 0x68 } + - { offsetInCU: 0x3C95, offset: 0x643A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xB45C, symBinAddr: 0x1A00C, symSize: 0x8 } + - { offsetInCU: 0x3CA9, offset: 0x643B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xB464, symBinAddr: 0x1A014, symSize: 0x4 } + - { offsetInCU: 0x3CBD, offset: 0x643CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xB468, symBinAddr: 0x1A018, symSize: 0x44 } + - { offsetInCU: 0x3CD1, offset: 0x643E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xB4AC, symBinAddr: 0x1A05C, symSize: 0x10 } + - { offsetInCU: 0x3CE5, offset: 0x643F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xB4BC, symBinAddr: 0x1A06C, symSize: 0x24 } + - { offsetInCU: 0x3CF9, offset: 0x64408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xB5A8, symBinAddr: 0x1A158, symSize: 0x10 } + - { offsetInCU: 0x3D0D, offset: 0x6441C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xB628, symBinAddr: 0x1A1D8, symSize: 0x10 } + - { offsetInCU: 0x3D21, offset: 0x64430, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xB6B8, symBinAddr: 0x1A224, symSize: 0x8 } + - { offsetInCU: 0x3D35, offset: 0x64444, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xB6C0, symBinAddr: 0x1A22C, symSize: 0x8 } + - { offsetInCU: 0x3D49, offset: 0x64458, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xB6D8, symBinAddr: 0x1A244, symSize: 0x8 } + - { offsetInCU: 0x3D5D, offset: 0x6446C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xB6E0, symBinAddr: 0x1A24C, symSize: 0x8 } + - { offsetInCU: 0x3DA3, offset: 0x644B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xBDBC, symBinAddr: 0x1A724, symSize: 0x10 } + - { offsetInCU: 0x3DB7, offset: 0x644C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xBE70, symBinAddr: 0x1A794, symSize: 0x10 } + - { offsetInCU: 0x3DCB, offset: 0x644DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xBEA4, symBinAddr: 0x1A7C8, symSize: 0xC } + - { offsetInCU: 0x3DDF, offset: 0x644EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xBF7C, symBinAddr: 0x1A85C, symSize: 0xC } + - { offsetInCU: 0x3F1A, offset: 0x64629, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x25C, symBinAddr: 0xEF24, symSize: 0x14 } + - { offsetInCU: 0x3FCA, offset: 0x646D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x270, symBinAddr: 0xEF38, symSize: 0x44 } + - { offsetInCU: 0x4059, offset: 0x64768, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2B4, symBinAddr: 0xEF7C, symSize: 0x28 } + - { offsetInCU: 0x40AC, offset: 0x647BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2DC, symBinAddr: 0xEFA4, symSize: 0x40 } + - { offsetInCU: 0x49EB, offset: 0x650FA, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xECC8, symSize: 0xE4 } + - { offsetInCU: 0x4ABA, offset: 0x651C9, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE4, symBinAddr: 0xEDAC, symSize: 0xAC } + - { offsetInCU: 0x4B52, offset: 0x65261, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0xEE58, symSize: 0xA0 } + - { offsetInCU: 0x4B77, offset: 0x65286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x230, symBinAddr: 0xEEF8, symSize: 0x28 } + - { offsetInCU: 0x4B96, offset: 0x652A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x258, symBinAddr: 0xEF20, symSize: 0x4 } + - { offsetInCU: 0x4C84, offset: 0x65393, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x4EC, symBinAddr: 0xF1B4, symSize: 0x48 } + - { offsetInCU: 0x4CA3, offset: 0x653B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x534, symBinAddr: 0xF1FC, symSize: 0x58 } + - { offsetInCU: 0x4CD8, offset: 0x653E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x58C, symBinAddr: 0xF254, symSize: 0x70 } + - { offsetInCU: 0x4CFD, offset: 0x6540C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x5FC, symBinAddr: 0xF2C4, symSize: 0x6C } + - { offsetInCU: 0x4D1E, offset: 0x6542D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x688, symBinAddr: 0xF350, symSize: 0x44 } + - { offsetInCU: 0x4D43, offset: 0x65452, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvg', symObjAddr: 0x6CC, symBinAddr: 0xF394, symSize: 0x44 } + - { offsetInCU: 0x4D62, offset: 0x65471, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvs', symObjAddr: 0x710, symBinAddr: 0xF3D8, symSize: 0x48 } + - { offsetInCU: 0x4D97, offset: 0x654A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x758, symBinAddr: 0xF420, symSize: 0x44 } + - { offsetInCU: 0x4DBC, offset: 0x654CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x80C, symBinAddr: 0xF4D4, symSize: 0x44 } + - { offsetInCU: 0x4DE1, offset: 0x654F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x868, symBinAddr: 0xF530, symSize: 0x44 } + - { offsetInCU: 0x4E06, offset: 0x65515, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x96C, symBinAddr: 0xF634, symSize: 0x44 } + - { offsetInCU: 0x4E2B, offset: 0x6553A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvg', symObjAddr: 0x9B0, symBinAddr: 0xF678, symSize: 0x44 } + - { offsetInCU: 0x4E4A, offset: 0x65559, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvs', symObjAddr: 0x9F4, symBinAddr: 0xF6BC, symSize: 0x48 } + - { offsetInCU: 0x4E7B, offset: 0x6558A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0xA3C, symBinAddr: 0xF704, symSize: 0x44 } + - { offsetInCU: 0x4EA0, offset: 0x655AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvg', symObjAddr: 0xA80, symBinAddr: 0xF748, symSize: 0x50 } + - { offsetInCU: 0x4EBF, offset: 0x655CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0xADC, symBinAddr: 0xF7A4, symSize: 0x44 } + - { offsetInCU: 0x4EE4, offset: 0x655F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0xB20, symBinAddr: 0xF7E8, symSize: 0x4 } + - { offsetInCU: 0x4F38, offset: 0x65647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0xB24, symBinAddr: 0xF7EC, symSize: 0xC0 } + - { offsetInCU: 0x4FA7, offset: 0x656B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xBF0, symBinAddr: 0xF8B8, symSize: 0xF4 } + - { offsetInCU: 0x5019, offset: 0x65728, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCF0, symBinAddr: 0xF9B8, symSize: 0x44 } + - { offsetInCU: 0x5038, offset: 0x65747, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xD34, symBinAddr: 0xF9FC, symSize: 0x50 } + - { offsetInCU: 0x506D, offset: 0x6577C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD84, symBinAddr: 0xFA4C, symSize: 0x44 } + - { offsetInCU: 0x50FB, offset: 0x6580A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xEE0, symBinAddr: 0xFBA8, symSize: 0x250 } + - { offsetInCU: 0x5174, offset: 0x65883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x50E8, symBinAddr: 0x13DB0, symSize: 0x5C } + - { offsetInCU: 0x51B3, offset: 0x658C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0x1130, symBinAddr: 0xFDF8, symSize: 0x44 } + - { offsetInCU: 0x51E6, offset: 0x658F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1174, symBinAddr: 0xFE3C, symSize: 0x90 } + - { offsetInCU: 0x522E, offset: 0x6593D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1204, symBinAddr: 0xFECC, symSize: 0x48 } + - { offsetInCU: 0x5253, offset: 0x65962, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x124C, symBinAddr: 0xFF14, symSize: 0x80 } + - { offsetInCU: 0x52B5, offset: 0x659C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x12CC, symBinAddr: 0xFF94, symSize: 0x20 } + - { offsetInCU: 0x52D5, offset: 0x659E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x12CC, symBinAddr: 0xFF94, symSize: 0x20 } + - { offsetInCU: 0x5333, offset: 0x65A42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x12EC, symBinAddr: 0xFFB4, symSize: 0x20 } + - { offsetInCU: 0x5368, offset: 0x65A77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x12EC, symBinAddr: 0xFFB4, symSize: 0x20 } + - { offsetInCU: 0x53BE, offset: 0x65ACD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x130C, symBinAddr: 0xFFD4, symSize: 0x34 } + - { offsetInCU: 0x5421, offset: 0x65B30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1340, symBinAddr: 0x10008, symSize: 0x20 } + - { offsetInCU: 0x5445, offset: 0x65B54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1340, symBinAddr: 0x10008, symSize: 0x20 } + - { offsetInCU: 0x5459, offset: 0x65B68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1340, symBinAddr: 0x10008, symSize: 0x20 } + - { offsetInCU: 0x5480, offset: 0x65B8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1360, symBinAddr: 0x10028, symSize: 0x20 } + - { offsetInCU: 0x54A0, offset: 0x65BAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1360, symBinAddr: 0x10028, symSize: 0x20 } + - { offsetInCU: 0x54FE, offset: 0x65C0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1380, symBinAddr: 0x10048, symSize: 0x20 } + - { offsetInCU: 0x5532, offset: 0x65C41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1380, symBinAddr: 0x10048, symSize: 0x20 } + - { offsetInCU: 0x5587, offset: 0x65C96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x13A0, symBinAddr: 0x10068, symSize: 0x34 } + - { offsetInCU: 0x55EA, offset: 0x65CF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13D4, symBinAddr: 0x1009C, symSize: 0x20 } + - { offsetInCU: 0x560E, offset: 0x65D1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13D4, symBinAddr: 0x1009C, symSize: 0x20 } + - { offsetInCU: 0x5622, offset: 0x65D31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13D4, symBinAddr: 0x1009C, symSize: 0x20 } + - { offsetInCU: 0x5649, offset: 0x65D58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13F4, symBinAddr: 0x100BC, symSize: 0x20 } + - { offsetInCU: 0x5669, offset: 0x65D78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13F4, symBinAddr: 0x100BC, symSize: 0x20 } + - { offsetInCU: 0x56C2, offset: 0x65DD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x1414, symBinAddr: 0x100DC, symSize: 0x20 } + - { offsetInCU: 0x56F6, offset: 0x65E05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x1414, symBinAddr: 0x100DC, symSize: 0x20 } + - { offsetInCU: 0x574B, offset: 0x65E5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x1434, symBinAddr: 0x100FC, symSize: 0x34 } + - { offsetInCU: 0x57AE, offset: 0x65EBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1468, symBinAddr: 0x10130, symSize: 0x20 } + - { offsetInCU: 0x57D2, offset: 0x65EE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1468, symBinAddr: 0x10130, symSize: 0x20 } + - { offsetInCU: 0x57E6, offset: 0x65EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1468, symBinAddr: 0x10130, symSize: 0x20 } + - { offsetInCU: 0x57F9, offset: 0x65F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvg', symObjAddr: 0x1488, symBinAddr: 0x10150, symSize: 0x44 } + - { offsetInCU: 0x5818, offset: 0x65F27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvs', symObjAddr: 0x14CC, symBinAddr: 0x10194, symSize: 0x48 } + - { offsetInCU: 0x584D, offset: 0x65F5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x1514, symBinAddr: 0x101DC, symSize: 0x44 } + - { offsetInCU: 0x5872, offset: 0x65F81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvg', symObjAddr: 0x1558, symBinAddr: 0x10220, symSize: 0x44 } + - { offsetInCU: 0x5891, offset: 0x65FA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvs', symObjAddr: 0x159C, symBinAddr: 0x10264, symSize: 0x48 } + - { offsetInCU: 0x58C2, offset: 0x65FD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x15E4, symBinAddr: 0x102AC, symSize: 0x44 } + - { offsetInCU: 0x58E7, offset: 0x65FF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1628, symBinAddr: 0x102F0, symSize: 0x44 } + - { offsetInCU: 0x5906, offset: 0x66015, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x166C, symBinAddr: 0x10334, symSize: 0x48 } + - { offsetInCU: 0x593B, offset: 0x6604A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x16B4, symBinAddr: 0x1037C, symSize: 0x44 } + - { offsetInCU: 0x5960, offset: 0x6606F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x16F8, symBinAddr: 0x103C0, symSize: 0x44 } + - { offsetInCU: 0x597F, offset: 0x6608E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x173C, symBinAddr: 0x10404, symSize: 0x48 } + - { offsetInCU: 0x59B4, offset: 0x660C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1784, symBinAddr: 0x1044C, symSize: 0x44 } + - { offsetInCU: 0x59D9, offset: 0x660E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvg', symObjAddr: 0x17C8, symBinAddr: 0x10490, symSize: 0x50 } + - { offsetInCU: 0x59F8, offset: 0x66107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x1824, symBinAddr: 0x104EC, symSize: 0x44 } + - { offsetInCU: 0x5A1D, offset: 0x6612C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvg', symObjAddr: 0x1868, symBinAddr: 0x10530, symSize: 0x50 } + - { offsetInCU: 0x5A42, offset: 0x66151, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x1910, symBinAddr: 0x105D8, symSize: 0x44 } + - { offsetInCU: 0x5A86, offset: 0x66195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x1954, symBinAddr: 0x1061C, symSize: 0x78 } + - { offsetInCU: 0x5AF1, offset: 0x66200, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x19CC, symBinAddr: 0x10694, symSize: 0x7C } + - { offsetInCU: 0x5B69, offset: 0x66278, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1A48, symBinAddr: 0x10710, symSize: 0x90 } + - { offsetInCU: 0x5BC2, offset: 0x662D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x1AD8, symBinAddr: 0x107A0, symSize: 0x24 } + - { offsetInCU: 0x5BE3, offset: 0x662F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1AFC, symBinAddr: 0x107C4, symSize: 0x88 } + - { offsetInCU: 0x5C35, offset: 0x66344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x1B84, symBinAddr: 0x1084C, symSize: 0x7C } + - { offsetInCU: 0x5C96, offset: 0x663A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1C00, symBinAddr: 0x108C8, symSize: 0xA8 } + - { offsetInCU: 0x5CEA, offset: 0x663F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1CA8, symBinAddr: 0x10970, symSize: 0x80 } + - { offsetInCU: 0x5D49, offset: 0x66458, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1D28, symBinAddr: 0x109F0, symSize: 0xC8 } + - { offsetInCU: 0x5DCB, offset: 0x664DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1DF0, symBinAddr: 0x10AB8, symSize: 0xD4 } + - { offsetInCU: 0x5E51, offset: 0x66560, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1EC4, symBinAddr: 0x10B8C, symSize: 0xFC } + - { offsetInCU: 0x5EE8, offset: 0x665F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1FC0, symBinAddr: 0x10C88, symSize: 0x130 } + - { offsetInCU: 0x5F8F, offset: 0x6669E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x20F0, symBinAddr: 0x10DB8, symSize: 0xC0 } + - { offsetInCU: 0x6001, offset: 0x66710, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x227C, symBinAddr: 0x10F44, symSize: 0xF4 } + - { offsetInCU: 0x6076, offset: 0x66785, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2454, symBinAddr: 0x1111C, symSize: 0x48 } + - { offsetInCU: 0x6095, offset: 0x667A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x249C, symBinAddr: 0x11164, symSize: 0x50 } + - { offsetInCU: 0x60CC, offset: 0x667DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x24EC, symBinAddr: 0x111B4, symSize: 0x44 } + - { offsetInCU: 0x60F2, offset: 0x66801, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2564, symBinAddr: 0x1122C, symSize: 0x44 } + - { offsetInCU: 0x6118, offset: 0x66827, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x25DC, symBinAddr: 0x112A4, symSize: 0x44 } + - { offsetInCU: 0x613E, offset: 0x6684D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2654, symBinAddr: 0x1131C, symSize: 0x44 } + - { offsetInCU: 0x6164, offset: 0x66873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x26C8, symBinAddr: 0x11390, symSize: 0x44 } + - { offsetInCU: 0x618A, offset: 0x66899, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x2740, symBinAddr: 0x11408, symSize: 0x44 } + - { offsetInCU: 0x61B0, offset: 0x668BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x27B8, symBinAddr: 0x11480, symSize: 0x44 } + - { offsetInCU: 0x61D6, offset: 0x668E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x2830, symBinAddr: 0x114F8, symSize: 0x44 } + - { offsetInCU: 0x61FC, offset: 0x6690B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x28A8, symBinAddr: 0x11570, symSize: 0x44 } + - { offsetInCU: 0x6222, offset: 0x66931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2920, symBinAddr: 0x115E8, symSize: 0x44 } + - { offsetInCU: 0x6248, offset: 0x66957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x2998, symBinAddr: 0x11660, symSize: 0x44 } + - { offsetInCU: 0x626E, offset: 0x6697D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x2A0C, symBinAddr: 0x116D4, symSize: 0x44 } + - { offsetInCU: 0x6294, offset: 0x669A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2A80, symBinAddr: 0x11748, symSize: 0x44 } + - { offsetInCU: 0x62BA, offset: 0x669C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x2AF8, symBinAddr: 0x117C0, symSize: 0x44 } + - { offsetInCU: 0x62E0, offset: 0x669EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2B6C, symBinAddr: 0x11834, symSize: 0x44 } + - { offsetInCU: 0x6306, offset: 0x66A15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2C90, symBinAddr: 0x11958, symSize: 0x44 } + - { offsetInCU: 0x6332, offset: 0x66A41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2CD4, symBinAddr: 0x1199C, symSize: 0x70 } + - { offsetInCU: 0x63E4, offset: 0x66AF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2D44, symBinAddr: 0x11A0C, symSize: 0x7BC } + - { offsetInCU: 0x66DA, offset: 0x66DE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x3500, symBinAddr: 0x121C8, symSize: 0x178 } + - { offsetInCU: 0x681E, offset: 0x66F2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3924, symBinAddr: 0x125EC, symSize: 0x390 } + - { offsetInCU: 0x69E1, offset: 0x670F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3CB4, symBinAddr: 0x1297C, symSize: 0x8 } + - { offsetInCU: 0x6AD9, offset: 0x671E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3CBC, symBinAddr: 0x12984, symSize: 0x66C } + - { offsetInCU: 0x6DBF, offset: 0x674CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4328, symBinAddr: 0x12FF0, symSize: 0xC0 } + - { offsetInCU: 0x6EA2, offset: 0x675B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x43E8, symBinAddr: 0x130B0, symSize: 0xC4 } + - { offsetInCU: 0x6F4D, offset: 0x6765C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x44AC, symBinAddr: 0x13174, symSize: 0x4 } + - { offsetInCU: 0x6F8F, offset: 0x6769E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x44B0, symBinAddr: 0x13178, symSize: 0x100 } + - { offsetInCU: 0x7075, offset: 0x67784, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x45B0, symBinAddr: 0x13278, symSize: 0x100 } + - { offsetInCU: 0x70F1, offset: 0x67800, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x46B0, symBinAddr: 0x13378, symSize: 0xB0 } + - { offsetInCU: 0x7192, offset: 0x678A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4760, symBinAddr: 0x13428, symSize: 0xC4 } + - { offsetInCU: 0x7287, offset: 0x67996, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4824, symBinAddr: 0x134EC, symSize: 0x8 } + - { offsetInCU: 0x729B, offset: 0x679AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x482C, symBinAddr: 0x134F4, symSize: 0x6C } + - { offsetInCU: 0x7308, offset: 0x67A17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x4898, symBinAddr: 0x13560, symSize: 0xC4 } + - { offsetInCU: 0x747D, offset: 0x67B8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x495C, symBinAddr: 0x13624, symSize: 0x124 } + - { offsetInCU: 0x7602, offset: 0x67D11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4A80, symBinAddr: 0x13748, symSize: 0xF4 } + - { offsetInCU: 0x7782, offset: 0x67E91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4B74, symBinAddr: 0x1383C, symSize: 0x114 } + - { offsetInCU: 0x7A0F, offset: 0x6811E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4C88, symBinAddr: 0x13950, symSize: 0x1BC } + - { offsetInCU: 0x7C0A, offset: 0x68319, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4E44, symBinAddr: 0x13B0C, symSize: 0xD4 } + - { offsetInCU: 0x7D2E, offset: 0x6843D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x4F18, symBinAddr: 0x13BE0, symSize: 0x10C } + - { offsetInCU: 0x7DEC, offset: 0x684FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x5024, symBinAddr: 0x13CEC, symSize: 0x20 } + - { offsetInCU: 0x7E00, offset: 0x6850F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x5044, symBinAddr: 0x13D0C, symSize: 0x2C } + - { offsetInCU: 0x7E60, offset: 0x6856F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5144, symBinAddr: 0x13E0C, symSize: 0x4 } + - { offsetInCU: 0x7EB0, offset: 0x685BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5148, symBinAddr: 0x13E10, symSize: 0x1EC } + - { offsetInCU: 0x7FA5, offset: 0x686B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5334, symBinAddr: 0x13FFC, symSize: 0x1AC } + - { offsetInCU: 0x8080, offset: 0x6878F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x54E0, symBinAddr: 0x141A8, symSize: 0xC4 } + - { offsetInCU: 0x80FB, offset: 0x6880A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x55A4, symBinAddr: 0x1426C, symSize: 0x4 } + - { offsetInCU: 0x81DC, offset: 0x688EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x55A8, symBinAddr: 0x14270, symSize: 0x258 } + - { offsetInCU: 0x860D, offset: 0x68D1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x5800, symBinAddr: 0x144C8, symSize: 0x390 } + - { offsetInCU: 0x8834, offset: 0x68F43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5B90, symBinAddr: 0x14858, symSize: 0xB0 } + - { offsetInCU: 0x89B3, offset: 0x690C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6174, symBinAddr: 0x14D90, symSize: 0x1B8 } + - { offsetInCU: 0x8A15, offset: 0x69124, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x632C, symBinAddr: 0x14F48, symSize: 0xC4 } + - { offsetInCU: 0x8A84, offset: 0x69193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x63F0, symBinAddr: 0x1500C, symSize: 0x108 } + - { offsetInCU: 0x8B25, offset: 0x69234, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x6560, symBinAddr: 0x1517C, symSize: 0x1DC } + - { offsetInCU: 0x8D74, offset: 0x69483, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x8AB0, symBinAddr: 0x17660, symSize: 0x6BC } + - { offsetInCU: 0x9347, offset: 0x69A56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x916C, symBinAddr: 0x17D1C, symSize: 0x3F8 } + - { offsetInCU: 0x968D, offset: 0x69D9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x97BC, symBinAddr: 0x1836C, symSize: 0x19C } + - { offsetInCU: 0x97FB, offset: 0x69F0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9958, symBinAddr: 0x18508, symSize: 0x270 } + - { offsetInCU: 0x9ADD, offset: 0x6A1EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0x9BC8, symBinAddr: 0x18778, symSize: 0x9C4 } + - { offsetInCU: 0xA17F, offset: 0x6A88E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA58C, symBinAddr: 0x1913C, symSize: 0x6F8 } + - { offsetInCU: 0xA696, offset: 0x6ADA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAC84, symBinAddr: 0x19834, symSize: 0x140 } + - { offsetInCU: 0xA7EB, offset: 0x6AEFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xADC4, symBinAddr: 0x19974, symSize: 0x698 } + - { offsetInCU: 0xAC90, offset: 0x6B39F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xB6E8, symBinAddr: 0x1A254, symSize: 0x29C } + - { offsetInCU: 0x4DE, offset: 0x6BAE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x1928, symBinAddr: 0x1C2BC, symSize: 0x2C } + - { offsetInCU: 0x7ED, offset: 0x6BDF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1984, symBinAddr: 0x1C318, symSize: 0x84 } + - { offsetInCU: 0x81C, offset: 0x6BE22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x1A08, symBinAddr: 0x1C39C, symSize: 0x58 } + - { offsetInCU: 0x99D, offset: 0x6BFA3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfC9CocoaMQTT5Frame_p_Tgm5', symObjAddr: 0x1E88, symBinAddr: 0x1C81C, symSize: 0x88 } + - { offsetInCU: 0xA87, offset: 0x6C08D, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x20C4, symBinAddr: 0x1CA58, symSize: 0xCC } + - { offsetInCU: 0xBE1, offset: 0x6C1E7, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0x2190, symBinAddr: 0x1CB24, symSize: 0x6C } + - { offsetInCU: 0xCA1, offset: 0x6C2A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x24E8, symBinAddr: 0x1CE3C, symSize: 0x20 } + - { offsetInCU: 0xD32, offset: 0x6C338, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x2760, symBinAddr: 0x1D070, symSize: 0x8 } + - { offsetInCU: 0xD78, offset: 0x6C37E, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTgm5', symObjAddr: 0x0, symBinAddr: 0x1A994, symSize: 0xDC } + - { offsetInCU: 0xFFA, offset: 0x6C600, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x21FC, symBinAddr: 0x1CB90, symSize: 0x2AC } + - { offsetInCU: 0x12CB, offset: 0x6C8D1, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS_SD6ValuesVyS2S_GTgm5Tf4g_n', symObjAddr: 0x2508, symBinAddr: 0x1CE5C, symSize: 0xE0 } + - { offsetInCU: 0x139D, offset: 0x6C9A3, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTgm5Tf4g_n', symObjAddr: 0x25E8, symBinAddr: 0x1CF3C, symSize: 0x124 } + - { offsetInCU: 0x1578, offset: 0x6CB7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0xDC, symBinAddr: 0x1AA70, symSize: 0x70 } + - { offsetInCU: 0x158C, offset: 0x6CB92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x14C, symBinAddr: 0x1AAE0, symSize: 0x60 } + - { offsetInCU: 0x15A0, offset: 0x6CBA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x1AC, symBinAddr: 0x1AB40, symSize: 0x44 } + - { offsetInCU: 0x15C5, offset: 0x6CBCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x1F0, symBinAddr: 0x1AB84, symSize: 0x48 } + - { offsetInCU: 0x15FA, offset: 0x6CC00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x238, symBinAddr: 0x1ABCC, symSize: 0x44 } + - { offsetInCU: 0x161F, offset: 0x6CC25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x27C, symBinAddr: 0x1AC10, symSize: 0x54 } + - { offsetInCU: 0x163E, offset: 0x6CC44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x2D0, symBinAddr: 0x1AC64, symSize: 0x5C } + - { offsetInCU: 0x1673, offset: 0x6CC79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x32C, symBinAddr: 0x1ACC0, symSize: 0x44 } + - { offsetInCU: 0x1698, offset: 0x6CC9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x370, symBinAddr: 0x1AD04, symSize: 0x48 } + - { offsetInCU: 0x16B7, offset: 0x6CCBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x3B8, symBinAddr: 0x1AD4C, symSize: 0x50 } + - { offsetInCU: 0x16EC, offset: 0x6CCF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x408, symBinAddr: 0x1AD9C, symSize: 0x44 } + - { offsetInCU: 0x1711, offset: 0x6CD17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvg', symObjAddr: 0x44C, symBinAddr: 0x1ADE0, symSize: 0x44 } + - { offsetInCU: 0x1736, offset: 0x6CD3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvs', symObjAddr: 0x490, symBinAddr: 0x1AE24, symSize: 0x48 } + - { offsetInCU: 0x1767, offset: 0x6CD6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x4D8, symBinAddr: 0x1AE6C, symSize: 0x44 } + - { offsetInCU: 0x178C, offset: 0x6CD92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvg', symObjAddr: 0x51C, symBinAddr: 0x1AEB0, symSize: 0x44 } + - { offsetInCU: 0x17B1, offset: 0x6CDB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvs', symObjAddr: 0x560, symBinAddr: 0x1AEF4, symSize: 0x48 } + - { offsetInCU: 0x17E2, offset: 0x6CDE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x5A8, symBinAddr: 0x1AF3C, symSize: 0x44 } + - { offsetInCU: 0x1807, offset: 0x6CE0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x5EC, symBinAddr: 0x1AF80, symSize: 0x4 } + - { offsetInCU: 0x1828, offset: 0x6CE2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvg', symObjAddr: 0x5F0, symBinAddr: 0x1AF84, symSize: 0x44 } + - { offsetInCU: 0x1847, offset: 0x6CE4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvs', symObjAddr: 0x634, symBinAddr: 0x1AFC8, symSize: 0x48 } + - { offsetInCU: 0x1878, offset: 0x6CE7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x67C, symBinAddr: 0x1B010, symSize: 0x44 } + - { offsetInCU: 0x189D, offset: 0x6CEA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x6D8, symBinAddr: 0x1B06C, symSize: 0x44 } + - { offsetInCU: 0x18C2, offset: 0x6CEC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x7D0, symBinAddr: 0x1B164, symSize: 0x44 } + - { offsetInCU: 0x18E7, offset: 0x6CEED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x1B1C0, symSize: 0x44 } + - { offsetInCU: 0x190C, offset: 0x6CF12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x930, symBinAddr: 0x1B2C4, symSize: 0x44 } + - { offsetInCU: 0x1931, offset: 0x6CF37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x98C, symBinAddr: 0x1B320, symSize: 0x44 } + - { offsetInCU: 0x1956, offset: 0x6CF5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0xA78, symBinAddr: 0x1B40C, symSize: 0x44 } + - { offsetInCU: 0x19D9, offset: 0x6CFDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0xABC, symBinAddr: 0x1B450, symSize: 0x110 } + - { offsetInCU: 0x1C13, offset: 0x6D219, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xBCC, symBinAddr: 0x1B560, symSize: 0x704 } + - { offsetInCU: 0x27F2, offset: 0x6DDF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x12D0, symBinAddr: 0x1BC64, symSize: 0x178 } + - { offsetInCU: 0x2892, offset: 0x6DE98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1448, symBinAddr: 0x1BDDC, symSize: 0x13C } + - { offsetInCU: 0x28F3, offset: 0x6DEF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x1584, symBinAddr: 0x1BF18, symSize: 0x70 } + - { offsetInCU: 0x2907, offset: 0x6DF0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x15F4, symBinAddr: 0x1BF88, symSize: 0x2E8 } + - { offsetInCU: 0x2998, offset: 0x6DF9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x18DC, symBinAddr: 0x1C270, symSize: 0x20 } + - { offsetInCU: 0x29AC, offset: 0x6DFB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x18FC, symBinAddr: 0x1C290, symSize: 0x2C } + - { offsetInCU: 0x2A05, offset: 0x6E00B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x1954, symBinAddr: 0x1C2E8, symSize: 0x30 } + - { offsetInCU: 0x2AA6, offset: 0x6E0AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1A60, symBinAddr: 0x1C3F4, symSize: 0x218 } + - { offsetInCU: 0x2CB3, offset: 0x6E2B9, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1C78, symBinAddr: 0x1C60C, symSize: 0xD0 } + - { offsetInCU: 0x2EC4, offset: 0x6E4CA, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1D48, symBinAddr: 0x1C6DC, symSize: 0x128 } + - { offsetInCU: 0x20B, offset: 0x6E94A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xD64, symBinAddr: 0x1DE08, symSize: 0x6C8 } + - { offsetInCU: 0x5F2, offset: 0x6ED31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x142C, symBinAddr: 0x1E4D0, symSize: 0xB8 } + - { offsetInCU: 0x6B0, offset: 0x6EDEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x1748, symBinAddr: 0x1E7EC, symSize: 0x20 } + - { offsetInCU: 0x8B6, offset: 0x6EFF5, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x668, symBinAddr: 0x1D70C, symSize: 0x20 } + - { offsetInCU: 0x8CA, offset: 0x6F009, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x688, symBinAddr: 0x1D72C, symSize: 0x20 } + - { offsetInCU: 0xA79, offset: 0x6F1B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x1798, symBinAddr: 0x1E83C, symSize: 0x78 } + - { offsetInCU: 0xAA8, offset: 0x6F1E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x1810, symBinAddr: 0x1E8B4, symSize: 0x20 } + - { offsetInCU: 0xABC, offset: 0x6F1FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x1830, symBinAddr: 0x1E8D4, symSize: 0x30 } + - { offsetInCU: 0xAD0, offset: 0x6F20F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1860, symBinAddr: 0x1E904, symSize: 0x4 } + - { offsetInCU: 0xAE4, offset: 0x6F223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1884, symBinAddr: 0x1E908, symSize: 0x40 } + - { offsetInCU: 0xAF8, offset: 0x6F237, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x18C4, symBinAddr: 0x1E948, symSize: 0x30 } + - { offsetInCU: 0xB0C, offset: 0x6F24B, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x18F4, symBinAddr: 0x1E978, symSize: 0x168 } + - { offsetInCU: 0xB20, offset: 0x6F25F, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1A5C, symBinAddr: 0x1EAE0, symSize: 0x14 } + - { offsetInCU: 0xB34, offset: 0x6F273, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1A70, symBinAddr: 0x1EAF4, symSize: 0x40 } + - { offsetInCU: 0xB48, offset: 0x6F287, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1AB0, symBinAddr: 0x1EB34, symSize: 0x48 } + - { offsetInCU: 0xB5C, offset: 0x6F29B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1AF8, symBinAddr: 0x1EB7C, symSize: 0x4C } + - { offsetInCU: 0xB70, offset: 0x6F2AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1B44, symBinAddr: 0x1EBC8, symSize: 0x10 } + - { offsetInCU: 0xDA5, offset: 0x6F4E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x24EC, symBinAddr: 0x1F570, symSize: 0x840 } + - { offsetInCU: 0x12CA, offset: 0x6FA09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2D60, symBinAddr: 0x1FDE4, symSize: 0xC } + - { offsetInCU: 0x12E9, offset: 0x6FA28, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x2D7C, symBinAddr: 0x1FE00, symSize: 0x20 } + - { offsetInCU: 0x1312, offset: 0x6FA51, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2D9C, symBinAddr: 0x1FE20, symSize: 0x10 } + - { offsetInCU: 0x1326, offset: 0x6FA65, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2DAC, symBinAddr: 0x1FE30, symSize: 0x8 } + - { offsetInCU: 0x133A, offset: 0x6FA79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x2DD8, symBinAddr: 0x1FE5C, symSize: 0x18 } + - { offsetInCU: 0x138E, offset: 0x6FACD, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x2EBC, symBinAddr: 0x1FEDC, symSize: 0x78 } + - { offsetInCU: 0x1408, offset: 0x6FB47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x2F34, symBinAddr: 0x1FF54, symSize: 0x5A0 } + - { offsetInCU: 0x15E7, offset: 0x6FD26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x34D4, symBinAddr: 0x204F4, symSize: 0x56C } + - { offsetInCU: 0x17A9, offset: 0x6FEE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3A40, symBinAddr: 0x20A60, symSize: 0x44 } + - { offsetInCU: 0x17BD, offset: 0x6FEFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0x3A84, symBinAddr: 0x20AA4, symSize: 0x18 } + - { offsetInCU: 0x17D1, offset: 0x6FF10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3A9C, symBinAddr: 0x20ABC, symSize: 0x8 } + - { offsetInCU: 0x17E5, offset: 0x6FF24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3AC8, symBinAddr: 0x20AE8, symSize: 0x20 } + - { offsetInCU: 0x181E, offset: 0x6FF5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3AE8, symBinAddr: 0x20B08, symSize: 0x48 } + - { offsetInCU: 0x1847, offset: 0x6FF86, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3B30, symBinAddr: 0x20B50, symSize: 0x48 } + - { offsetInCU: 0x1862, offset: 0x6FFA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3B78, symBinAddr: 0x20B98, symSize: 0x24 } + - { offsetInCU: 0x1892, offset: 0x6FFD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3BC4, symBinAddr: 0x20BBC, symSize: 0x38 } + - { offsetInCU: 0x18BB, offset: 0x6FFFA, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3BFC, symBinAddr: 0x20BF4, symSize: 0x3C } + - { offsetInCU: 0x18CF, offset: 0x7000E, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3C40, symBinAddr: 0x20C38, symSize: 0x3C } + - { offsetInCU: 0x18E3, offset: 0x70022, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3D08, symBinAddr: 0x20D00, symSize: 0x24 } + - { offsetInCU: 0x18F7, offset: 0x70036, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3D2C, symBinAddr: 0x20D24, symSize: 0x1A4 } + - { offsetInCU: 0x1AFF, offset: 0x7023E, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x3ED0, symBinAddr: 0x20EC8, symSize: 0x40 } + - { offsetInCU: 0x1B13, offset: 0x70252, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x3F90, symBinAddr: 0x20F88, symSize: 0x44 } + - { offsetInCU: 0x1B27, offset: 0x70266, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x40B4, symBinAddr: 0x210AC, symSize: 0xC } + - { offsetInCU: 0x1B3B, offset: 0x7027A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x413C, symBinAddr: 0x210C8, symSize: 0x18 } + - { offsetInCU: 0x1FA2, offset: 0x706E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1D0A4, symSize: 0x338 } + - { offsetInCU: 0x207E, offset: 0x707BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x338, symBinAddr: 0x1D3DC, symSize: 0x330 } + - { offsetInCU: 0x2552, offset: 0x70C91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x6A8, symBinAddr: 0x1D74C, symSize: 0xA4 } + - { offsetInCU: 0x26F8, offset: 0x70E37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x74C, symBinAddr: 0x1D7F0, symSize: 0x48C } + - { offsetInCU: 0x28ED, offset: 0x7102C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xBD8, symBinAddr: 0x1DC7C, symSize: 0x138 } + - { offsetInCU: 0x2BB6, offset: 0x712F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x14E4, symBinAddr: 0x1E588, symSize: 0x264 } + - { offsetInCU: 0x2BFD, offset: 0x7133C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1768, symBinAddr: 0x1E80C, symSize: 0x30 } + - { offsetInCU: 0x2C3C, offset: 0x7137B, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1B54, symBinAddr: 0x1EBD8, symSize: 0xA0 } + - { offsetInCU: 0x2DA9, offset: 0x714E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1BF4, symBinAddr: 0x1EC78, symSize: 0x264 } + - { offsetInCU: 0x2FA9, offset: 0x716E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x1E58, symBinAddr: 0x1EEDC, symSize: 0x224 } + - { offsetInCU: 0x30AE, offset: 0x717ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x207C, symBinAddr: 0x1F100, symSize: 0x470 } + - { offsetInCU: 0x3498, offset: 0x71BD7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x2E94, symBinAddr: 0x1FEB4, symSize: 0x14 } + - { offsetInCU: 0x34C8, offset: 0x71C07, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x2EA8, symBinAddr: 0x1FEC8, symSize: 0x14 } + - { offsetInCU: 0x27, offset: 0x71CDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x21114, symSize: 0x40 } + - { offsetInCU: 0x4B, offset: 0x71CFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x48B8, symBinAddr: 0x65F08, symSize: 0x0 } + - { offsetInCU: 0xF3, offset: 0x71DA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x318, symBinAddr: 0x2142C, symSize: 0x4C } + - { offsetInCU: 0x17D, offset: 0x71E31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x21114, symSize: 0x40 } + - { offsetInCU: 0x1CA, offset: 0x71E7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x10C, symBinAddr: 0x21220, symSize: 0x28 } + - { offsetInCU: 0x1FB, offset: 0x71EAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x134, symBinAddr: 0x21248, symSize: 0xC } + - { offsetInCU: 0x217, offset: 0x71ECB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x4E0, symBinAddr: 0x215F4, symSize: 0x10 } + - { offsetInCU: 0x26E, offset: 0x71F22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x140, symBinAddr: 0x21254, symSize: 0x2C } + - { offsetInCU: 0x334, offset: 0x71FE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x4DC, symBinAddr: 0x215F0, symSize: 0x4 } + - { offsetInCU: 0x35F, offset: 0x72013, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x4F0, symBinAddr: 0x21604, symSize: 0x20 } + - { offsetInCU: 0x373, offset: 0x72027, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x550, symBinAddr: 0x21624, symSize: 0x4 } + - { offsetInCU: 0x387, offset: 0x7203B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x554, symBinAddr: 0x21628, symSize: 0x44 } + - { offsetInCU: 0x39B, offset: 0x7204F, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x598, symBinAddr: 0x2166C, symSize: 0xC } + - { offsetInCU: 0x3AF, offset: 0x72063, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x5A4, symBinAddr: 0x21678, symSize: 0x4 } + - { offsetInCU: 0x3C3, offset: 0x72077, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x5A8, symBinAddr: 0x2167C, symSize: 0x90 } + - { offsetInCU: 0x3D7, offset: 0x7208B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x638, symBinAddr: 0x2170C, symSize: 0xBC } + - { offsetInCU: 0x3EB, offset: 0x7209F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6F4, symBinAddr: 0x217C8, symSize: 0x8 } + - { offsetInCU: 0x3FF, offset: 0x720B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6FC, symBinAddr: 0x217D0, symSize: 0x4 } + - { offsetInCU: 0x413, offset: 0x720C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x700, symBinAddr: 0x217D4, symSize: 0x8 } + - { offsetInCU: 0x427, offset: 0x720DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x708, symBinAddr: 0x217DC, symSize: 0x10 } + - { offsetInCU: 0x464, offset: 0x72118, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x4C, symBinAddr: 0x21160, symSize: 0x14 } + - { offsetInCU: 0x514, offset: 0x721C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x60, symBinAddr: 0x21174, symSize: 0x44 } + - { offsetInCU: 0x5C3, offset: 0x72277, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA4, symBinAddr: 0x211B8, symSize: 0x28 } + - { offsetInCU: 0x616, offset: 0x722CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xCC, symBinAddr: 0x211E0, symSize: 0x40 } + - { offsetInCU: 0x7A4, offset: 0x72458, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x40, symBinAddr: 0x21154, symSize: 0x4 } + - { offsetInCU: 0x7B8, offset: 0x7246C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x44, symBinAddr: 0x21158, symSize: 0x8 } + - { offsetInCU: 0x817, offset: 0x724CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x16C, symBinAddr: 0x21280, symSize: 0x20 } + - { offsetInCU: 0x831, offset: 0x724E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x18C, symBinAddr: 0x212A0, symSize: 0x68 } + - { offsetInCU: 0x85E, offset: 0x72512, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1F4, symBinAddr: 0x21308, symSize: 0x74 } + - { offsetInCU: 0x89B, offset: 0x7254F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x268, symBinAddr: 0x2137C, symSize: 0x6C } + - { offsetInCU: 0x8C8, offset: 0x7257C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2D4, symBinAddr: 0x213E8, symSize: 0x4 } + - { offsetInCU: 0x8E9, offset: 0x7259D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2D8, symBinAddr: 0x213EC, symSize: 0x40 } + - { offsetInCU: 0x985, offset: 0x72639, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x364, symBinAddr: 0x21478, symSize: 0x148 } + - { offsetInCU: 0xB0E, offset: 0x727C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x4AC, symBinAddr: 0x215C0, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x72820, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x217EC, symSize: 0x120 } + - { offsetInCU: 0x2AE, offset: 0x72AA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0x980, symBinAddr: 0x2216C, symSize: 0x2C } + - { offsetInCU: 0x3BD, offset: 0x72BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0x9DC, symBinAddr: 0x221C8, symSize: 0x3C } + - { offsetInCU: 0x3EC, offset: 0x72BE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xA18, symBinAddr: 0x22204, symSize: 0x58 } + - { offsetInCU: 0x473, offset: 0x72C6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xC88, symBinAddr: 0x22474, symSize: 0x20 } + - { offsetInCU: 0x6C5, offset: 0x72EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x217EC, symSize: 0x120 } + - { offsetInCU: 0x78C, offset: 0x72F85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x120, symBinAddr: 0x2190C, symSize: 0xF0 } + - { offsetInCU: 0x7D1, offset: 0x72FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x210, symBinAddr: 0x219FC, symSize: 0x44 } + - { offsetInCU: 0x7F6, offset: 0x72FEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x254, symBinAddr: 0x21A40, symSize: 0x48 } + - { offsetInCU: 0x82B, offset: 0x73024, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x29C, symBinAddr: 0x21A88, symSize: 0x44 } + - { offsetInCU: 0x850, offset: 0x73049, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x2E0, symBinAddr: 0x21ACC, symSize: 0x54 } + - { offsetInCU: 0x86F, offset: 0x73068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x334, symBinAddr: 0x21B20, symSize: 0x5C } + - { offsetInCU: 0x8A4, offset: 0x7309D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x390, symBinAddr: 0x21B7C, symSize: 0x44 } + - { offsetInCU: 0x8C9, offset: 0x730C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x3D4, symBinAddr: 0x21BC0, symSize: 0x48 } + - { offsetInCU: 0x8E8, offset: 0x730E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x41C, symBinAddr: 0x21C08, symSize: 0x50 } + - { offsetInCU: 0x91D, offset: 0x73116, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x46C, symBinAddr: 0x21C58, symSize: 0x44 } + - { offsetInCU: 0x942, offset: 0x7313B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvg', symObjAddr: 0x4B0, symBinAddr: 0x21C9C, symSize: 0x44 } + - { offsetInCU: 0x967, offset: 0x73160, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvs', symObjAddr: 0x4F4, symBinAddr: 0x21CE0, symSize: 0x48 } + - { offsetInCU: 0x998, offset: 0x73191, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x53C, symBinAddr: 0x21D28, symSize: 0x44 } + - { offsetInCU: 0x9BD, offset: 0x731B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvg', symObjAddr: 0x580, symBinAddr: 0x21D6C, symSize: 0x44 } + - { offsetInCU: 0x9E2, offset: 0x731DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvs', symObjAddr: 0x5C4, symBinAddr: 0x21DB0, symSize: 0x48 } + - { offsetInCU: 0xA13, offset: 0x7320C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x60C, symBinAddr: 0x21DF8, symSize: 0x44 } + - { offsetInCU: 0xA38, offset: 0x73231, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x650, symBinAddr: 0x21E3C, symSize: 0x4 } + - { offsetInCU: 0xAB2, offset: 0x732AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x654, symBinAddr: 0x21E40, symSize: 0x110 } + - { offsetInCU: 0xBB4, offset: 0x733AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x764, symBinAddr: 0x21F50, symSize: 0x104 } + - { offsetInCU: 0xC36, offset: 0x7342F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x868, symBinAddr: 0x22054, symSize: 0xCC } + - { offsetInCU: 0xC79, offset: 0x73472, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x934, symBinAddr: 0x22120, symSize: 0x20 } + - { offsetInCU: 0xC8D, offset: 0x73486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x954, symBinAddr: 0x22140, symSize: 0x2C } + - { offsetInCU: 0xCE6, offset: 0x734DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0x9AC, symBinAddr: 0x22198, symSize: 0x30 } + - { offsetInCU: 0xD82, offset: 0x7357B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xA70, symBinAddr: 0x2225C, symSize: 0x218 } + - { offsetInCU: 0x27, offset: 0x73786, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x224A4, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x737E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x104, symBinAddr: 0x225A8, symSize: 0x28 } + - { offsetInCU: 0xB8, offset: 0x73817, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x12C, symBinAddr: 0x225D0, symSize: 0x18 } + - { offsetInCU: 0xE1, offset: 0x73840, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x764, symBinAddr: 0x22C08, symSize: 0x2C } + - { offsetInCU: 0x180, offset: 0x738DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x248, symBinAddr: 0x226EC, symSize: 0x28 } + - { offsetInCU: 0x1B1, offset: 0x73910, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x22714, symSize: 0x18 } + - { offsetInCU: 0x1DA, offset: 0x73939, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x790, symBinAddr: 0x22C34, symSize: 0x58 } + - { offsetInCU: 0x305, offset: 0x73A64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x288, symBinAddr: 0x2272C, symSize: 0x220 } + - { offsetInCU: 0x5E2, offset: 0x73D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x4B8, symBinAddr: 0x2295C, symSize: 0x120 } + - { offsetInCU: 0x86A, offset: 0x73FC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x5D8, symBinAddr: 0x22A7C, symSize: 0xC0 } + - { offsetInCU: 0x9B2, offset: 0x74111, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x698, symBinAddr: 0x22B3C, symSize: 0xCC } + - { offsetInCU: 0xADF, offset: 0x7423E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x7E8, symBinAddr: 0x22C8C, symSize: 0x4 } + - { offsetInCU: 0xAF3, offset: 0x74252, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x7EC, symBinAddr: 0x22C90, symSize: 0x44 } + - { offsetInCU: 0xB07, offset: 0x74266, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x830, symBinAddr: 0x22CD4, symSize: 0x4 } + - { offsetInCU: 0xB1B, offset: 0x7427A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x834, symBinAddr: 0x22CD8, symSize: 0x44 } + - { offsetInCU: 0xB2F, offset: 0x7428E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x888, symBinAddr: 0x22D1C, symSize: 0x90 } + - { offsetInCU: 0xB43, offset: 0x742A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x918, symBinAddr: 0x22DAC, symSize: 0xBC } + - { offsetInCU: 0xB57, offset: 0x742B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0x9D4, symBinAddr: 0x22E68, symSize: 0x8 } + - { offsetInCU: 0xB6B, offset: 0x742CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0x9DC, symBinAddr: 0x22E70, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x742DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0x9E0, symBinAddr: 0x22E74, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x742F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0x9E8, symBinAddr: 0x22E7C, symSize: 0x10 } + - { offsetInCU: 0xBA7, offset: 0x74306, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0x9F8, symBinAddr: 0x22E8C, symSize: 0x90 } + - { offsetInCU: 0xBBB, offset: 0x7431A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xA88, symBinAddr: 0x22F1C, symSize: 0xBC } + - { offsetInCU: 0xBCF, offset: 0x7432E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xB44, symBinAddr: 0x22FD8, symSize: 0x4 } + - { offsetInCU: 0xBE3, offset: 0x74342, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xB48, symBinAddr: 0x22FDC, symSize: 0x10 } + - { offsetInCU: 0xBF7, offset: 0x74356, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xB98, symBinAddr: 0x22FEC, symSize: 0x48 } + - { offsetInCU: 0xC0B, offset: 0x7436A, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGMa', symObjAddr: 0xBE0, symBinAddr: 0x23034, symSize: 0x54 } + - { offsetInCU: 0xC48, offset: 0x743A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x18, symBinAddr: 0x224BC, symSize: 0x24 } + - { offsetInCU: 0xD42, offset: 0x744A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x3C, symBinAddr: 0x224E0, symSize: 0x4C } + - { offsetInCU: 0xE1A, offset: 0x74579, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x2252C, symSize: 0x34 } + - { offsetInCU: 0xE96, offset: 0x745F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBC, symBinAddr: 0x22560, symSize: 0x48 } + - { offsetInCU: 0xF51, offset: 0x746B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C, symBinAddr: 0x22600, symSize: 0x24 } + - { offsetInCU: 0x1045, offset: 0x747A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x180, symBinAddr: 0x22624, symSize: 0x4C } + - { offsetInCU: 0x111D, offset: 0x7487C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CC, symBinAddr: 0x22670, symSize: 0x34 } + - { offsetInCU: 0x1199, offset: 0x748F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x226A4, symSize: 0x48 } + - { offsetInCU: 0x13B7, offset: 0x74B16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x224A4, symSize: 0x14 } + - { offsetInCU: 0x13DC, offset: 0x74B3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x14, symBinAddr: 0x224B8, symSize: 0x4 } + - { offsetInCU: 0x1436, offset: 0x74B95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x144, symBinAddr: 0x225E8, symSize: 0x4 } + - { offsetInCU: 0x144A, offset: 0x74BA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x148, symBinAddr: 0x225EC, symSize: 0x14 } + - { offsetInCU: 0x3C4, offset: 0x75073, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1064, symBinAddr: 0x240F4, symSize: 0x20 } + - { offsetInCU: 0x3D8, offset: 0x75087, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1084, symBinAddr: 0x24114, symSize: 0x44 } + - { offsetInCU: 0x3EC, offset: 0x7509B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x114C, symBinAddr: 0x24158, symSize: 0x34 } + - { offsetInCU: 0x400, offset: 0x750AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x1180, symBinAddr: 0x2418C, symSize: 0x50 } + - { offsetInCU: 0x414, offset: 0x750C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x11D0, symBinAddr: 0x241DC, symSize: 0x34 } + - { offsetInCU: 0x428, offset: 0x750D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x1204, symBinAddr: 0x24210, symSize: 0x5C } + - { offsetInCU: 0x43C, offset: 0x750EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x1314, symBinAddr: 0x24320, symSize: 0x50 } + - { offsetInCU: 0x450, offset: 0x750FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1364, symBinAddr: 0x24370, symSize: 0x80 } + - { offsetInCU: 0x464, offset: 0x75113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x13E4, symBinAddr: 0x243F0, symSize: 0x24 } + - { offsetInCU: 0x4E0, offset: 0x7518F, size: 0x8, addend: 0x0, symName: '_$sSa9repeating5countSayxGx_SitcfCs5UInt8V_Tgm5', symObjAddr: 0x30C, symBinAddr: 0x2339C, symSize: 0x78 } + - { offsetInCU: 0x724, offset: 0x753D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x23090, symSize: 0x16C } + - { offsetInCU: 0x88F, offset: 0x7553E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x16C, symBinAddr: 0x231FC, symSize: 0x180 } + - { offsetInCU: 0xAE5, offset: 0x75794, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x384, symBinAddr: 0x23414, symSize: 0xCAC } + - { offsetInCU: 0x10BC, offset: 0x75D6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0x1030, symBinAddr: 0x240C0, symSize: 0x34 } + - { offsetInCU: 0x78, offset: 0x75E60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x84, symBinAddr: 0x24498, symSize: 0x34 } + - { offsetInCU: 0xA9, offset: 0x75E91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xB8, symBinAddr: 0x244CC, symSize: 0xC } + - { offsetInCU: 0x12A, offset: 0x75F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xDC, symBinAddr: 0x244F0, symSize: 0x30 } + - { offsetInCU: 0x15B, offset: 0x75F43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x24864, symSize: 0x4C } + - { offsetInCU: 0x1C0, offset: 0x75FA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x24560, symSize: 0x30 } + - { offsetInCU: 0x1F1, offset: 0x75FD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x248B4, symSize: 0x4C } + - { offsetInCU: 0x256, offset: 0x7603E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x1B4, symBinAddr: 0x245C8, symSize: 0x30 } + - { offsetInCU: 0x303, offset: 0x760EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x248, symBinAddr: 0x2465C, symSize: 0x30 } + - { offsetInCU: 0x36E, offset: 0x76156, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x290, symBinAddr: 0x246A4, symSize: 0x30 } + - { offsetInCU: 0x39F, offset: 0x76187, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x538, symBinAddr: 0x2494C, symSize: 0x58 } + - { offsetInCU: 0x404, offset: 0x761EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2D8, symBinAddr: 0x246EC, symSize: 0x30 } + - { offsetInCU: 0x435, offset: 0x7621D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x590, symBinAddr: 0x249A4, symSize: 0x4C } + - { offsetInCU: 0x49A, offset: 0x76282, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x33C, symBinAddr: 0x24750, symSize: 0x20 } + - { offsetInCU: 0x505, offset: 0x762ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x420, symBinAddr: 0x24834, symSize: 0x30 } + - { offsetInCU: 0x537, offset: 0x7631F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0x5DC, symBinAddr: 0x249F0, symSize: 0x4 } + - { offsetInCU: 0x54B, offset: 0x76333, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0x5E0, symBinAddr: 0x249F4, symSize: 0x44 } + - { offsetInCU: 0x55F, offset: 0x76347, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x624, symBinAddr: 0x24A38, symSize: 0x4 } + - { offsetInCU: 0x573, offset: 0x7635B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x628, symBinAddr: 0x24A3C, symSize: 0x44 } + - { offsetInCU: 0x587, offset: 0x7636F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x66C, symBinAddr: 0x24A80, symSize: 0x4 } + - { offsetInCU: 0x59B, offset: 0x76383, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x24A84, symSize: 0x44 } + - { offsetInCU: 0x5AF, offset: 0x76397, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x6B4, symBinAddr: 0x24AC8, symSize: 0x4 } + - { offsetInCU: 0x5C3, offset: 0x763AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x6B8, symBinAddr: 0x24ACC, symSize: 0x44 } + - { offsetInCU: 0x5D7, offset: 0x763BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x6FC, symBinAddr: 0x24B10, symSize: 0x4 } + - { offsetInCU: 0x5EB, offset: 0x763D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x700, symBinAddr: 0x24B14, symSize: 0x44 } + - { offsetInCU: 0x5FF, offset: 0x763E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x744, symBinAddr: 0x24B58, symSize: 0x4 } + - { offsetInCU: 0x613, offset: 0x763FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x748, symBinAddr: 0x24B5C, symSize: 0x44 } + - { offsetInCU: 0x627, offset: 0x7640F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x78C, symBinAddr: 0x24BA0, symSize: 0x4 } + - { offsetInCU: 0x63B, offset: 0x76423, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x790, symBinAddr: 0x24BA4, symSize: 0x44 } + - { offsetInCU: 0x64F, offset: 0x76437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x7D4, symBinAddr: 0x24BE8, symSize: 0x4 } + - { offsetInCU: 0x663, offset: 0x7644B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x7D8, symBinAddr: 0x24BEC, symSize: 0x44 } + - { offsetInCU: 0x677, offset: 0x7645F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x81C, symBinAddr: 0x24C30, symSize: 0x4 } + - { offsetInCU: 0x68B, offset: 0x76473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x820, symBinAddr: 0x24C34, symSize: 0x44 } + - { offsetInCU: 0x69F, offset: 0x76487, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x864, symBinAddr: 0x24C78, symSize: 0x4 } + - { offsetInCU: 0x6B3, offset: 0x7649B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x868, symBinAddr: 0x24C7C, symSize: 0x44 } + - { offsetInCU: 0x6C7, offset: 0x764AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x8AC, symBinAddr: 0x24CC0, symSize: 0x4 } + - { offsetInCU: 0x6DB, offset: 0x764C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x8B0, symBinAddr: 0x24CC4, symSize: 0x44 } + - { offsetInCU: 0x6EF, offset: 0x764D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x8F4, symBinAddr: 0x24D08, symSize: 0x10 } + - { offsetInCU: 0x703, offset: 0x764EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x904, symBinAddr: 0x24D18, symSize: 0x10 } + - { offsetInCU: 0x717, offset: 0x764FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x914, symBinAddr: 0x24D28, symSize: 0x10 } + - { offsetInCU: 0x72B, offset: 0x76513, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x924, symBinAddr: 0x24D38, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x76527, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x934, symBinAddr: 0x24D48, symSize: 0x10 } + - { offsetInCU: 0x753, offset: 0x7653B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x944, symBinAddr: 0x24D58, symSize: 0x10 } + - { offsetInCU: 0x767, offset: 0x7654F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x954, symBinAddr: 0x24D68, symSize: 0x10 } + - { offsetInCU: 0x77B, offset: 0x76563, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x964, symBinAddr: 0x24D78, symSize: 0x10 } + - { offsetInCU: 0x78F, offset: 0x76577, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x974, symBinAddr: 0x24D88, symSize: 0x10 } + - { offsetInCU: 0x7A3, offset: 0x7658B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x984, symBinAddr: 0x24D98, symSize: 0x10 } + - { offsetInCU: 0x7B7, offset: 0x7659F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x994, symBinAddr: 0x24DA8, symSize: 0x10 } + - { offsetInCU: 0x7F4, offset: 0x765DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x24454, symSize: 0x14 } + - { offsetInCU: 0x859, offset: 0x76641, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x58, symBinAddr: 0x2446C, symSize: 0x28 } + - { offsetInCU: 0x96F, offset: 0x76757, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x24414, symSize: 0x3C } + - { offsetInCU: 0x98E, offset: 0x76776, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3C, symBinAddr: 0x24450, symSize: 0x4 } + - { offsetInCU: 0x9DA, offset: 0x767C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0xD0, symBinAddr: 0x244E4, symSize: 0x4 } + - { offsetInCU: 0xA08, offset: 0x767F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x140, symBinAddr: 0x24554, symSize: 0x4 } + - { offsetInCU: 0xA36, offset: 0x7681E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1A8, symBinAddr: 0x245BC, symSize: 0x4 } + - { offsetInCU: 0xA64, offset: 0x7684C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1E8, symBinAddr: 0x245FC, symSize: 0x4 } + - { offsetInCU: 0xA85, offset: 0x7686D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1F8, symBinAddr: 0x2460C, symSize: 0x4 } + - { offsetInCU: 0xAA6, offset: 0x7688E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x23C, symBinAddr: 0x24650, symSize: 0x4 } + - { offsetInCU: 0xADF, offset: 0x768C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x284, symBinAddr: 0x24698, symSize: 0x4 } + - { offsetInCU: 0xB0D, offset: 0x768F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2CC, symBinAddr: 0x246E0, symSize: 0x4 } + - { offsetInCU: 0xB41, offset: 0x76929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x308, symBinAddr: 0x2471C, symSize: 0x28 } + - { offsetInCU: 0xB60, offset: 0x76948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x330, symBinAddr: 0x24744, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x76981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x35C, symBinAddr: 0x24770, symSize: 0x34 } + - { offsetInCU: 0xBB8, offset: 0x769A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x390, symBinAddr: 0x247A4, symSize: 0x4 } + - { offsetInCU: 0x1AD, offset: 0x76BB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x460, symBinAddr: 0x25298, symSize: 0x20 } + - { offsetInCU: 0x210, offset: 0x76C1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x720, symBinAddr: 0x25558, symSize: 0x48 } + - { offsetInCU: 0x24D, offset: 0x76C57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x768, symBinAddr: 0x255A0, symSize: 0x4C } + - { offsetInCU: 0x28A, offset: 0x76C94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x7B4, symBinAddr: 0x255EC, symSize: 0x48 } + - { offsetInCU: 0x2C8, offset: 0x76CD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x440, symBinAddr: 0x25278, symSize: 0x20 } + - { offsetInCU: 0x2DC, offset: 0x76CE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x4B0, symBinAddr: 0x252E8, symSize: 0x48 } + - { offsetInCU: 0x3E8, offset: 0x76DF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x7FC, symBinAddr: 0x25634, symSize: 0x20 } + - { offsetInCU: 0x404, offset: 0x76E0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x81C, symBinAddr: 0x25654, symSize: 0x24 } + - { offsetInCU: 0x457, offset: 0x76E61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x840, symBinAddr: 0x25678, symSize: 0x20 } + - { offsetInCU: 0x47A, offset: 0x76E84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x860, symBinAddr: 0x25698, symSize: 0x1C } + - { offsetInCU: 0x4B7, offset: 0x76EC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x87C, symBinAddr: 0x256B4, symSize: 0x24 } + - { offsetInCU: 0x50D, offset: 0x76F17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x8A0, symBinAddr: 0x256D8, symSize: 0x68 } + - { offsetInCU: 0x6DE, offset: 0x770E8, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xEF8, symBinAddr: 0x25D10, symSize: 0x2C } + - { offsetInCU: 0x6F6, offset: 0x77100, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xF24, symBinAddr: 0x25D3C, symSize: 0x84 } + - { offsetInCU: 0x742, offset: 0x7714C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0x1070, symBinAddr: 0x25E88, symSize: 0x1C0 } + - { offsetInCU: 0x7D6, offset: 0x771E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1234, symBinAddr: 0x2604C, symSize: 0x4C } + - { offsetInCU: 0x826, offset: 0x77230, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x1288, symBinAddr: 0x260A0, symSize: 0x54 } + - { offsetInCU: 0x87D, offset: 0x77287, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x1398, symBinAddr: 0x261B0, symSize: 0x158 } + - { offsetInCU: 0x8E5, offset: 0x772EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x14F8, symBinAddr: 0x26310, symSize: 0x68 } + - { offsetInCU: 0x96B, offset: 0x77375, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x18D4, symBinAddr: 0x266A0, symSize: 0x3C } + - { offsetInCU: 0x97F, offset: 0x77389, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x1934, symBinAddr: 0x26700, symSize: 0x8 } + - { offsetInCU: 0x993, offset: 0x7739D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x193C, symBinAddr: 0x26708, symSize: 0x10 } + - { offsetInCU: 0x9A7, offset: 0x773B1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x194C, symBinAddr: 0x26718, symSize: 0x8 } + - { offsetInCU: 0xA25, offset: 0x7742F, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1DB8, symBinAddr: 0x26B40, symSize: 0x14 } + - { offsetInCU: 0xA4E, offset: 0x77458, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1DCC, symBinAddr: 0x26B54, symSize: 0x24 } + - { offsetInCU: 0xCE0, offset: 0x776EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x24E38, symSize: 0x20 } + - { offsetInCU: 0xCF4, offset: 0x776FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvg', symObjAddr: 0x20, symBinAddr: 0x24E58, symSize: 0x44 } + - { offsetInCU: 0xD19, offset: 0x77723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvs', symObjAddr: 0x64, symBinAddr: 0x24E9C, symSize: 0x48 } + - { offsetInCU: 0xD4A, offset: 0x77754, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0xAC, symBinAddr: 0x24EE4, symSize: 0x44 } + - { offsetInCU: 0xD6F, offset: 0x77779, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvg', symObjAddr: 0xF0, symBinAddr: 0x24F28, symSize: 0x44 } + - { offsetInCU: 0xD8E, offset: 0x77798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvs', symObjAddr: 0x134, symBinAddr: 0x24F6C, symSize: 0x48 } + - { offsetInCU: 0xDB3, offset: 0x777BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x17C, symBinAddr: 0x24FB4, symSize: 0x44 } + - { offsetInCU: 0xDD2, offset: 0x777DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1C0, symBinAddr: 0x24FF8, symSize: 0x48 } + - { offsetInCU: 0xDF1, offset: 0x777FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x208, symBinAddr: 0x25040, symSize: 0x50 } + - { offsetInCU: 0xE26, offset: 0x77830, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x258, symBinAddr: 0x25090, symSize: 0x44 } + - { offsetInCU: 0xE4B, offset: 0x77855, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x29C, symBinAddr: 0x250D4, symSize: 0x4 } + - { offsetInCU: 0xE6C, offset: 0x77876, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvg', symObjAddr: 0x2A0, symBinAddr: 0x250D8, symSize: 0x44 } + - { offsetInCU: 0xE8B, offset: 0x77895, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvs', symObjAddr: 0x2E4, symBinAddr: 0x2511C, symSize: 0x48 } + - { offsetInCU: 0xEBC, offset: 0x778C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x32C, symBinAddr: 0x25164, symSize: 0x44 } + - { offsetInCU: 0xEEF, offset: 0x778F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x370, symBinAddr: 0x251A8, symSize: 0xD0 } + - { offsetInCU: 0xF36, offset: 0x77940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x480, symBinAddr: 0x252B8, symSize: 0x30 } + - { offsetInCU: 0xF97, offset: 0x779A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x4F8, symBinAddr: 0x25330, symSize: 0x88 } + - { offsetInCU: 0x1022, offset: 0x77A2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x580, symBinAddr: 0x253B8, symSize: 0x18 } + - { offsetInCU: 0x1053, offset: 0x77A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x598, symBinAddr: 0x253D0, symSize: 0xEC } + - { offsetInCU: 0x10A8, offset: 0x77AB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x684, symBinAddr: 0x254BC, symSize: 0x18 } + - { offsetInCU: 0x10C5, offset: 0x77ACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x69C, symBinAddr: 0x254D4, symSize: 0x20 } + - { offsetInCU: 0x10FF, offset: 0x77B09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x6BC, symBinAddr: 0x254F4, symSize: 0x64 } + - { offsetInCU: 0x1377, offset: 0x77D81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x908, symBinAddr: 0x25740, symSize: 0x488 } + - { offsetInCU: 0x164D, offset: 0x78057, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xDB0, symBinAddr: 0x25BC8, symSize: 0x148 } + - { offsetInCU: 0x1729, offset: 0x78133, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xFA8, symBinAddr: 0x25DC0, symSize: 0xC8 } + - { offsetInCU: 0x17F3, offset: 0x781FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1230, symBinAddr: 0x26048, symSize: 0x4 } + - { offsetInCU: 0x180E, offset: 0x78218, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x1280, symBinAddr: 0x26098, symSize: 0x8 } + - { offsetInCU: 0x1829, offset: 0x78233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x12DC, symBinAddr: 0x260F4, symSize: 0xBC } + - { offsetInCU: 0x18B0, offset: 0x782BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x14F0, symBinAddr: 0x26308, symSize: 0x8 } + - { offsetInCU: 0x18E0, offset: 0x782EA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x1560, symBinAddr: 0x26378, symSize: 0x4C } + - { offsetInCU: 0x1979, offset: 0x78383, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x1954, symBinAddr: 0x26720, symSize: 0x12C } + - { offsetInCU: 0x1A02, offset: 0x7840C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x1A80, symBinAddr: 0x2684C, symSize: 0x19C } + - { offsetInCU: 0x1AC9, offset: 0x784D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1C1C, symBinAddr: 0x269E8, symSize: 0x134 } + - { offsetInCU: 0x970, offset: 0x78EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x59D0, symBinAddr: 0x2C558, symSize: 0x20 } + - { offsetInCU: 0xD1C, offset: 0x79290, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x60C8, symBinAddr: 0x2CC50, symSize: 0x68 } + - { offsetInCU: 0xE07, offset: 0x7937B, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6130, symBinAddr: 0x2CCB8, symSize: 0x104 } + - { offsetInCU: 0x10E0, offset: 0x79654, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6234, symBinAddr: 0x2CDBC, symSize: 0x3FC } + - { offsetInCU: 0x1589, offset: 0x79AFD, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x6630, symBinAddr: 0x2D1B8, symSize: 0x12C } + - { offsetInCU: 0x17B4, offset: 0x79D28, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x675C, symBinAddr: 0x2D2E4, symSize: 0x284 } + - { offsetInCU: 0x1B8B, offset: 0x7A0FF, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x69E0, symBinAddr: 0x2D568, symSize: 0x14C } + - { offsetInCU: 0x1D85, offset: 0x7A2F9, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x6B2C, symBinAddr: 0x2D6B4, symSize: 0x2FC } + - { offsetInCU: 0x1F36, offset: 0x7A4AA, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSnySiG_Tgmq5', symObjAddr: 0x6EF0, symBinAddr: 0x2DA78, symSize: 0x80 } + - { offsetInCU: 0x2136, offset: 0x7A6AA, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayVyAByxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x74C0, symBinAddr: 0x2E048, symSize: 0xD8 } + - { offsetInCU: 0x2204, offset: 0x7A778, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x7598, symBinAddr: 0x2E120, symSize: 0x48 } + - { offsetInCU: 0x2218, offset: 0x7A78C, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x7620, symBinAddr: 0x2E168, symSize: 0x10 } + - { offsetInCU: 0x222C, offset: 0x7A7A0, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x76D0, symBinAddr: 0x2E1F8, symSize: 0x3C } + - { offsetInCU: 0x2240, offset: 0x7A7B4, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x770C, symBinAddr: 0x2E234, symSize: 0x40 } + - { offsetInCU: 0x2254, offset: 0x7A7C8, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOr', symObjAddr: 0x7790, symBinAddr: 0x2E2B8, symSize: 0x28 } + - { offsetInCU: 0x2268, offset: 0x7A7DC, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOs', symObjAddr: 0x77B8, symBinAddr: 0x2E2E0, symSize: 0x28 } + - { offsetInCU: 0x2941, offset: 0x7AEB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x26B88, symSize: 0xA8C } + - { offsetInCU: 0x35C5, offset: 0x7BB39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x1520, symBinAddr: 0x280A8, symSize: 0xA1C } + - { offsetInCU: 0x40A1, offset: 0x7C615, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x1F3C, symBinAddr: 0x28AC4, symSize: 0x9C4 } + - { offsetInCU: 0x4B50, offset: 0x7D0C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2900, symBinAddr: 0x29488, symSize: 0xBDC } + - { offsetInCU: 0x59BE, offset: 0x7DF32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x34DC, symBinAddr: 0x2A064, symSize: 0xB74 } + - { offsetInCU: 0x682A, offset: 0x7ED9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x4068, symBinAddr: 0x2ABF0, symSize: 0xAA0 } + - { offsetInCU: 0x74F2, offset: 0x7FA66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x4B08, symBinAddr: 0x2B690, symSize: 0xA38 } + - { offsetInCU: 0x8027, offset: 0x8059B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x5540, symBinAddr: 0x2C0C8, symSize: 0x190 } + - { offsetInCU: 0x8122, offset: 0x80696, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x56D0, symBinAddr: 0x2C258, symSize: 0x180 } + - { offsetInCU: 0x81EA, offset: 0x8075E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x5850, symBinAddr: 0x2C3D8, symSize: 0x128 } + - { offsetInCU: 0x8345, offset: 0x808B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x5978, symBinAddr: 0x2C500, symSize: 0x58 } + - { offsetInCU: 0x8525, offset: 0x80A99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x59F0, symBinAddr: 0x2C578, symSize: 0x6D8 } + - { offsetInCU: 0x8D6B, offset: 0x812DF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x6E28, symBinAddr: 0x2D9B0, symSize: 0x14 } + - { offsetInCU: 0x8D8D, offset: 0x81301, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x6E3C, symBinAddr: 0x2D9C4, symSize: 0xB4 } + - { offsetInCU: 0x8E0E, offset: 0x81382, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x6F70, symBinAddr: 0x2DAF8, symSize: 0x1C8 } + - { offsetInCU: 0x8F00, offset: 0x81474, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x7138, symBinAddr: 0x2DCC0, symSize: 0x1DC } + - { offsetInCU: 0x9010, offset: 0x81584, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x7314, symBinAddr: 0x2DE9C, symSize: 0xE4 } + - { offsetInCU: 0x909E, offset: 0x81612, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x73F8, symBinAddr: 0x2DF80, symSize: 0x14 } + - { offsetInCU: 0x4F, offset: 0x81707, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x1168, symBinAddr: 0x62960, symSize: 0x0 } + - { offsetInCU: 0x7F, offset: 0x81737, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2E308, symSize: 0xB4 } + - { offsetInCU: 0x11E, offset: 0x817D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x860, symBinAddr: 0x2EB68, symSize: 0x14 } + - { offsetInCU: 0x19C, offset: 0x81854, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x874, symBinAddr: 0x2EB7C, symSize: 0x44 } + - { offsetInCU: 0x27F, offset: 0x81937, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8B8, symBinAddr: 0x2EBC0, symSize: 0x28 } + - { offsetInCU: 0x31F, offset: 0x819D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAD4, symBinAddr: 0x2EDDC, symSize: 0x4 } + - { offsetInCU: 0x399, offset: 0x81A51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xD88, symBinAddr: 0x2F040, symSize: 0xAC } + - { offsetInCU: 0x464, offset: 0x81B1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE34, symBinAddr: 0x2F0EC, symSize: 0x110 } + - { offsetInCU: 0x52E, offset: 0x81BE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB4, symBinAddr: 0x2E3BC, symSize: 0x11C } + - { offsetInCU: 0x58F, offset: 0x81C47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAF8, symBinAddr: 0x2EE00, symSize: 0x20 } + - { offsetInCU: 0x5A3, offset: 0x81C5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB28, symBinAddr: 0x2EE20, symSize: 0x90 } + - { offsetInCU: 0x5B7, offset: 0x81C6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xBB8, symBinAddr: 0x2EEB0, symSize: 0xBC } + - { offsetInCU: 0x5CB, offset: 0x81C83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC74, symBinAddr: 0x2EF6C, symSize: 0x8 } + - { offsetInCU: 0x5DF, offset: 0x81C97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC7C, symBinAddr: 0x2EF74, symSize: 0x4 } + - { offsetInCU: 0x5F3, offset: 0x81CAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC80, symBinAddr: 0x2EF78, symSize: 0x8 } + - { offsetInCU: 0x607, offset: 0x81CBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC88, symBinAddr: 0x2EF80, symSize: 0x10 } + - { offsetInCU: 0x61B, offset: 0x81CD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xC98, symBinAddr: 0x2EF90, symSize: 0x4 } + - { offsetInCU: 0x62F, offset: 0x81CE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xC9C, symBinAddr: 0x2EF94, symSize: 0x44 } + - { offsetInCU: 0x643, offset: 0x81CFB, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCE0, symBinAddr: 0x2EFD8, symSize: 0x10 } + - { offsetInCU: 0x657, offset: 0x81D0F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xCF0, symBinAddr: 0x2EFE8, symSize: 0x8 } + - { offsetInCU: 0x66B, offset: 0x81D23, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xCF8, symBinAddr: 0x2EFF0, symSize: 0x10 } + - { offsetInCU: 0x67F, offset: 0x81D37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xF94, symBinAddr: 0x2F24C, symSize: 0xC } + - { offsetInCU: 0x693, offset: 0x81D4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x1064, symBinAddr: 0x2F31C, symSize: 0x8 } + - { offsetInCU: 0x6A7, offset: 0x81D5F, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x106C, symBinAddr: 0x2F324, symSize: 0x10 } + - { offsetInCU: 0x769, offset: 0x81E21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x2EBE8, symSize: 0x40 } + - { offsetInCU: 0x922, offset: 0x81FDA, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x7A4, symBinAddr: 0x2EAAC, symSize: 0xBC } + - { offsetInCU: 0x979, offset: 0x82031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1D0, symBinAddr: 0x2E4D8, symSize: 0x5C } + - { offsetInCU: 0x99D, offset: 0x82055, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x22C, symBinAddr: 0x2E534, symSize: 0x4FC } + - { offsetInCU: 0xA89, offset: 0x82141, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x728, symBinAddr: 0x2EA30, symSize: 0x7C } + - { offsetInCU: 0xB5F, offset: 0x82217, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x920, symBinAddr: 0x2EC28, symSize: 0x1B4 } + - { offsetInCU: 0xBC0, offset: 0x82278, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAD8, symBinAddr: 0x2EDE0, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x8233C, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2F33C, symSize: 0x5C } + - { offsetInCU: 0x232, offset: 0x82543, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x2F718, symSize: 0x14 } + - { offsetInCU: 0x274, offset: 0x82585, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x3F0, symBinAddr: 0x2F72C, symSize: 0x44 } + - { offsetInCU: 0x357, offset: 0x82668, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x434, symBinAddr: 0x2F770, symSize: 0x28 } + - { offsetInCU: 0x3EA, offset: 0x826FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x49C, symBinAddr: 0x2F7D8, symSize: 0x4 } + - { offsetInCU: 0x3FE, offset: 0x8270F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4A0, symBinAddr: 0x2F7DC, symSize: 0x44 } + - { offsetInCU: 0x412, offset: 0x82723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x504, symBinAddr: 0x2F830, symSize: 0x90 } + - { offsetInCU: 0x426, offset: 0x82737, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x594, symBinAddr: 0x2F8C0, symSize: 0xBC } + - { offsetInCU: 0x43A, offset: 0x8274B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x650, symBinAddr: 0x2F97C, symSize: 0x8 } + - { offsetInCU: 0x44E, offset: 0x8275F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x658, symBinAddr: 0x2F984, symSize: 0x4 } + - { offsetInCU: 0x462, offset: 0x82773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x65C, symBinAddr: 0x2F988, symSize: 0x8 } + - { offsetInCU: 0x476, offset: 0x82787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x664, symBinAddr: 0x2F990, symSize: 0x10 } + - { offsetInCU: 0x48A, offset: 0x8279B, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x674, symBinAddr: 0x2F9A0, symSize: 0xC } + - { offsetInCU: 0x49E, offset: 0x827AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x680, symBinAddr: 0x2F9AC, symSize: 0x20 } + - { offsetInCU: 0x4B2, offset: 0x827C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x6A0, symBinAddr: 0x2F9CC, symSize: 0x28 } + - { offsetInCU: 0x4C6, offset: 0x827D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x6C8, symBinAddr: 0x2F9F4, symSize: 0x8 } + - { offsetInCU: 0x4DA, offset: 0x827EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x6D0, symBinAddr: 0x2F9FC, symSize: 0x4 } + - { offsetInCU: 0x4EE, offset: 0x827FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x6D4, symBinAddr: 0x2FA00, symSize: 0x4 } + - { offsetInCU: 0x502, offset: 0x82813, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x6D8, symBinAddr: 0x2FA04, symSize: 0x10 } + - { offsetInCU: 0x692, offset: 0x829A3, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x988, symBinAddr: 0x2FC6C, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x82AB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x354, symBinAddr: 0x2F690, symSize: 0x4 } + - { offsetInCU: 0x7BB, offset: 0x82ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x358, symBinAddr: 0x2F694, symSize: 0x4 } + - { offsetInCU: 0x7D7, offset: 0x82AE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x35C, symBinAddr: 0x2F698, symSize: 0x4 } + - { offsetInCU: 0x7F3, offset: 0x82B04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x360, symBinAddr: 0x2F69C, symSize: 0x4 } + - { offsetInCU: 0x846, offset: 0x82B57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x45C, symBinAddr: 0x2F798, symSize: 0x40 } + - { offsetInCU: 0x8E2, offset: 0x82BF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x4E4, symBinAddr: 0x2F820, symSize: 0x4 } + - { offsetInCU: 0x8FE, offset: 0x82C0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x4E8, symBinAddr: 0x2F824, symSize: 0x4 } + - { offsetInCU: 0x91A, offset: 0x82C2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x4EC, symBinAddr: 0x2F828, symSize: 0x4 } + - { offsetInCU: 0x936, offset: 0x82C47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x4F0, symBinAddr: 0x2F82C, symSize: 0x4 } + - { offsetInCU: 0xAE7, offset: 0x82DF8, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2F33C, symSize: 0x5C } + - { offsetInCU: 0xB67, offset: 0x82E78, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x5C, symBinAddr: 0x2F398, symSize: 0x104 } + - { offsetInCU: 0xBFA, offset: 0x82F0B, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x160, symBinAddr: 0x2F49C, symSize: 0xB4 } + - { offsetInCU: 0xD96, offset: 0x830A7, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x214, symBinAddr: 0x2F550, symSize: 0x140 } + - { offsetInCU: 0xF65, offset: 0x83276, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x364, symBinAddr: 0x2F6A0, symSize: 0x10 } + - { offsetInCU: 0xFA1, offset: 0x832B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x374, symBinAddr: 0x2F6B0, symSize: 0x24 } + - { offsetInCU: 0x1030, offset: 0x83341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x398, symBinAddr: 0x2F6D4, symSize: 0x44 } + - { offsetInCU: 0x1184, offset: 0x83495, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x6E8, symBinAddr: 0x2FA14, symSize: 0x258 } + - { offsetInCU: 0x2B, offset: 0x83769, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2FCB0, symSize: 0x28 } + - { offsetInCU: 0x93, offset: 0x837D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x250, symBinAddr: 0x2FF00, symSize: 0x30 } + - { offsetInCU: 0xC4, offset: 0x83802, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x280, symBinAddr: 0x2FF30, symSize: 0xC } + - { offsetInCU: 0xE0, offset: 0x8381E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x28C, symBinAddr: 0x2FF3C, symSize: 0xA0 } + - { offsetInCU: 0x10A, offset: 0x83848, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4E0, symBinAddr: 0x30190, symSize: 0x34 } + - { offsetInCU: 0x1AF, offset: 0x838ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x474, symBinAddr: 0x30124, symSize: 0x28 } + - { offsetInCU: 0x1E0, offset: 0x8391E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x49C, symBinAddr: 0x3014C, symSize: 0x10 } + - { offsetInCU: 0x212, offset: 0x83950, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4AC, symBinAddr: 0x3015C, symSize: 0x34 } + - { offsetInCU: 0x303, offset: 0x83A41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x35C, symBinAddr: 0x3000C, symSize: 0x14 } + - { offsetInCU: 0x346, offset: 0x83A84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x370, symBinAddr: 0x30020, symSize: 0x14 } + - { offsetInCU: 0x389, offset: 0x83AC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x384, symBinAddr: 0x30034, symSize: 0x14 } + - { offsetInCU: 0x3CC, offset: 0x83B0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x398, symBinAddr: 0x30048, symSize: 0x14 } + - { offsetInCU: 0x40F, offset: 0x83B4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x514, symBinAddr: 0x301C4, symSize: 0x4 } + - { offsetInCU: 0x423, offset: 0x83B61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x518, symBinAddr: 0x301C8, symSize: 0x44 } + - { offsetInCU: 0x437, offset: 0x83B75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x55C, symBinAddr: 0x3020C, symSize: 0x4 } + - { offsetInCU: 0x44B, offset: 0x83B89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x560, symBinAddr: 0x30210, symSize: 0x10 } + - { offsetInCU: 0x45F, offset: 0x83B9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x580, symBinAddr: 0x30220, symSize: 0x90 } + - { offsetInCU: 0x473, offset: 0x83BB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x610, symBinAddr: 0x302B0, symSize: 0xBC } + - { offsetInCU: 0x487, offset: 0x83BC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x6CC, symBinAddr: 0x3036C, symSize: 0x8 } + - { offsetInCU: 0x49B, offset: 0x83BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x6D4, symBinAddr: 0x30374, symSize: 0x4 } + - { offsetInCU: 0x4AF, offset: 0x83BED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x6D8, symBinAddr: 0x30378, symSize: 0x8 } + - { offsetInCU: 0x4C3, offset: 0x83C01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x6E0, symBinAddr: 0x30380, symSize: 0x10 } + - { offsetInCU: 0x4D7, offset: 0x83C15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x6F0, symBinAddr: 0x30390, symSize: 0x4 } + - { offsetInCU: 0x4EB, offset: 0x83C29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x6F4, symBinAddr: 0x30394, symSize: 0x44 } + - { offsetInCU: 0x52E, offset: 0x83C6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x190, symBinAddr: 0x2FE40, symSize: 0x14 } + - { offsetInCU: 0x5D8, offset: 0x83D16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1A4, symBinAddr: 0x2FE54, symSize: 0x44 } + - { offsetInCU: 0x667, offset: 0x83DA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1E8, symBinAddr: 0x2FE98, symSize: 0x28 } + - { offsetInCU: 0x6BA, offset: 0x83DF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x210, symBinAddr: 0x2FEC0, symSize: 0x40 } + - { offsetInCU: 0x726, offset: 0x83E64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3AC, symBinAddr: 0x3005C, symSize: 0x18 } + - { offsetInCU: 0x7D0, offset: 0x83F0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3C4, symBinAddr: 0x30074, symSize: 0x44 } + - { offsetInCU: 0x8B1, offset: 0x83FEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x408, symBinAddr: 0x300B8, symSize: 0x2C } + - { offsetInCU: 0x936, offset: 0x84074, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x434, symBinAddr: 0x300E4, symSize: 0x40 } + - { offsetInCU: 0xA9A, offset: 0x841D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2FCB0, symSize: 0x28 } + - { offsetInCU: 0xAF8, offset: 0x84236, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x28, symBinAddr: 0x2FCD8, symSize: 0x4 } + - { offsetInCU: 0xB1F, offset: 0x8425D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x2C, symBinAddr: 0x2FCDC, symSize: 0x5C } + - { offsetInCU: 0xB6F, offset: 0x842AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0x88, symBinAddr: 0x2FD38, symSize: 0x30 } + - { offsetInCU: 0xBCB, offset: 0x84309, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xB8, symBinAddr: 0x2FD68, symSize: 0x10 } + - { offsetInCU: 0xBF9, offset: 0x84337, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xC8, symBinAddr: 0x2FD78, symSize: 0xA0 } + - { offsetInCU: 0xC18, offset: 0x84356, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x168, symBinAddr: 0x2FE18, symSize: 0x28 } + - { offsetInCU: 0xC68, offset: 0x843A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x32C, symBinAddr: 0x2FFDC, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x843D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x33C, symBinAddr: 0x2FFEC, symSize: 0x10 } + - { offsetInCU: 0xCC4, offset: 0x84402, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x34C, symBinAddr: 0x2FFFC, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x845A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x303D8, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x845DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x303E0, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x845FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x303E0, symSize: 0x8 } + - { offsetInCU: 0x1B8, offset: 0x84714, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0xE8, symBinAddr: 0x304C0, symSize: 0x8 } + - { offsetInCU: 0x1CC, offset: 0x84728, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x130, symBinAddr: 0x30508, symSize: 0x50 } + - { offsetInCU: 0x1E0, offset: 0x8473C, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x180, symBinAddr: 0x30558, symSize: 0xC } + - { offsetInCU: 0x1F4, offset: 0x84750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x18C, symBinAddr: 0x30564, symSize: 0x40 } + - { offsetInCU: 0x208, offset: 0x84764, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x1CC, symBinAddr: 0x305A4, symSize: 0x5C } + - { offsetInCU: 0x21C, offset: 0x84778, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x228, symBinAddr: 0x30600, symSize: 0x50 } + - { offsetInCU: 0x230, offset: 0x8478C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x278, symBinAddr: 0x30650, symSize: 0x10 } + - { offsetInCU: 0x3E7, offset: 0x84943, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x303E8, symSize: 0xD4 } + - { offsetInCU: 0x4B, offset: 0x84B5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30660, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x84B91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30668, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x84BB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30668, symSize: 0x8 } + - { offsetInCU: 0xC7, offset: 0x84BD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30670, symSize: 0x1C } + - { offsetInCU: 0x156, offset: 0x84C67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x2C, symBinAddr: 0x3068C, symSize: 0xE4 } + - { offsetInCU: 0x2EC, offset: 0x84DFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x110, symBinAddr: 0x30770, symSize: 0x110 } + - { offsetInCU: 0x407, offset: 0x84F18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x264, symBinAddr: 0x30884, symSize: 0x28 } + - { offsetInCU: 0x41B, offset: 0x84F2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x2DC, symBinAddr: 0x308FC, symSize: 0x7C } + - { offsetInCU: 0x42F, offset: 0x84F40, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x358, symBinAddr: 0x30978, symSize: 0x14 } + - { offsetInCU: 0x443, offset: 0x84F54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x36C, symBinAddr: 0x3098C, symSize: 0x5C } + - { offsetInCU: 0x457, offset: 0x84F68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x3C8, symBinAddr: 0x309E8, symSize: 0x5C } + - { offsetInCU: 0x46B, offset: 0x84F7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x424, symBinAddr: 0x30A44, symSize: 0x54 } + - { offsetInCU: 0x47F, offset: 0x84F90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x478, symBinAddr: 0x30A98, symSize: 0x10 } + - { offsetInCU: 0x4F, offset: 0x85227, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30AA8, symSize: 0x8 } + - { offsetInCU: 0x84, offset: 0x8525C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30AB0, symSize: 0x8 } + - { offsetInCU: 0xA4, offset: 0x8527C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30AB0, symSize: 0x8 } + - { offsetInCU: 0x383, offset: 0x8555B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xE20, symBinAddr: 0x318C8, symSize: 0x58 } + - { offsetInCU: 0x39F, offset: 0x85577, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0xEFC, symBinAddr: 0x31964, symSize: 0x30 } + - { offsetInCU: 0x3B3, offset: 0x8558B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0xF70, symBinAddr: 0x31994, symSize: 0x78 } + - { offsetInCU: 0x3C7, offset: 0x8559F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x102C, symBinAddr: 0x31A0C, symSize: 0x140 } + - { offsetInCU: 0x3DB, offset: 0x855B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x116C, symBinAddr: 0x31B4C, symSize: 0x1F0 } + - { offsetInCU: 0x3EF, offset: 0x855C7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x135C, symBinAddr: 0x31D3C, symSize: 0x34 } + - { offsetInCU: 0x403, offset: 0x855DB, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x1390, symBinAddr: 0x31D70, symSize: 0x3C } + - { offsetInCU: 0x417, offset: 0x855EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x13CC, symBinAddr: 0x31DAC, symSize: 0x138 } + - { offsetInCU: 0x42B, offset: 0x85603, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x1504, symBinAddr: 0x31EE4, symSize: 0x48 } + - { offsetInCU: 0x43F, offset: 0x85617, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x154C, symBinAddr: 0x31F2C, symSize: 0x68 } + - { offsetInCU: 0x453, offset: 0x8562B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x15B4, symBinAddr: 0x31F94, symSize: 0x10 } + - { offsetInCU: 0x746, offset: 0x8591E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x30AB8, symSize: 0x2F0 } + - { offsetInCU: 0xBD0, offset: 0x85DA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x300, symBinAddr: 0x30DA8, symSize: 0x354 } + - { offsetInCU: 0x110B, offset: 0x862E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x654, symBinAddr: 0x310FC, symSize: 0x284 } + - { offsetInCU: 0x1552, offset: 0x8672A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x8D8, symBinAddr: 0x31380, symSize: 0x28C } + - { offsetInCU: 0x1A1A, offset: 0x86BF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xB64, symBinAddr: 0x3160C, symSize: 0x2BC } + - { offsetInCU: 0x4B, offset: 0x86ECD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31FA4, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x86F02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31FAC, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x86F22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31FAC, symSize: 0x8 } + - { offsetInCU: 0x204, offset: 0x87086, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3B8, symBinAddr: 0x3235C, symSize: 0x1C } + - { offsetInCU: 0x220, offset: 0x870A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x458, symBinAddr: 0x323BC, symSize: 0x30 } + - { offsetInCU: 0x234, offset: 0x870B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x488, symBinAddr: 0x323EC, symSize: 0x30 } + - { offsetInCU: 0x248, offset: 0x870CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x4B8, symBinAddr: 0x3241C, symSize: 0x74 } + - { offsetInCU: 0x25C, offset: 0x870DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x52C, symBinAddr: 0x32490, symSize: 0xAC } + - { offsetInCU: 0x270, offset: 0x870F2, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x5D8, symBinAddr: 0x3253C, symSize: 0x1C } + - { offsetInCU: 0x284, offset: 0x87106, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x5F4, symBinAddr: 0x32558, symSize: 0x74 } + - { offsetInCU: 0x298, offset: 0x8711A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x668, symBinAddr: 0x325CC, symSize: 0x5C } + - { offsetInCU: 0x2AC, offset: 0x8712E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x6C4, symBinAddr: 0x32628, symSize: 0x60 } + - { offsetInCU: 0x2C0, offset: 0x87142, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x724, symBinAddr: 0x32688, symSize: 0x10 } + - { offsetInCU: 0x472, offset: 0x872F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x31FB4, symSize: 0xE4 } + - { offsetInCU: 0x615, offset: 0x87497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0xF4, symBinAddr: 0x32098, symSize: 0x2C4 } + - { offsetInCU: 0x27, offset: 0x878D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32698, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x878F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32698, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x87928, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x326A0, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x87948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x326A0, symSize: 0x8 } + - { offsetInCU: 0xAE, offset: 0x8795B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x326A8, symSize: 0x10 } + - { offsetInCU: 0xCA, offset: 0x87977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x20, symBinAddr: 0x326B8, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x87A4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x326C8, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x87A69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x326C8, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x87A9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x326D0, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x87ABE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x326D0, symSize: 0x8 } + - { offsetInCU: 0xAE, offset: 0x87AD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x326D8, symSize: 0x10 } + - { offsetInCU: 0xCA, offset: 0x87AED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x20, symBinAddr: 0x326E8, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x87BE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x326F8, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x87C19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32700, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x87C39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32700, symSize: 0x8 } + - { offsetInCU: 0x26D, offset: 0x87E06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x290, symBinAddr: 0x32988, symSize: 0x88 } + - { offsetInCU: 0x337, offset: 0x87ED0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x318, symBinAddr: 0x32A10, symSize: 0x118 } + - { offsetInCU: 0x497, offset: 0x88030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x4B4, symBinAddr: 0x32B6C, symSize: 0x30 } + - { offsetInCU: 0x4AB, offset: 0x88044, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x4E4, symBinAddr: 0x32B9C, symSize: 0x30 } + - { offsetInCU: 0x4BF, offset: 0x88058, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x514, symBinAddr: 0x32BCC, symSize: 0x5C } + - { offsetInCU: 0x4D3, offset: 0x8806C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x570, symBinAddr: 0x32C28, symSize: 0x94 } + - { offsetInCU: 0x4E7, offset: 0x88080, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x604, symBinAddr: 0x32CBC, symSize: 0x14 } + - { offsetInCU: 0x4FB, offset: 0x88094, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x618, symBinAddr: 0x32CD0, symSize: 0x64 } + - { offsetInCU: 0x50F, offset: 0x880A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x67C, symBinAddr: 0x32D34, symSize: 0x5C } + - { offsetInCU: 0x523, offset: 0x880BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x6D8, symBinAddr: 0x32D90, symSize: 0x5C } + - { offsetInCU: 0x537, offset: 0x880D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x734, symBinAddr: 0x32DEC, symSize: 0x10 } + - { offsetInCU: 0x755, offset: 0x882EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32708, symSize: 0x128 } + - { offsetInCU: 0x968, offset: 0x88501, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x32830, symSize: 0x158 } + - { offsetInCU: 0x4B, offset: 0x8875B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32DFC, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x88790, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32E04, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x887B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32E04, symSize: 0x8 } + - { offsetInCU: 0x26D, offset: 0x8897D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x290, symBinAddr: 0x3308C, symSize: 0x88 } + - { offsetInCU: 0x31D, offset: 0x88A2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x318, symBinAddr: 0x33114, symSize: 0xD4 } + - { offsetInCU: 0x42E, offset: 0x88B3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x470, symBinAddr: 0x3322C, symSize: 0x30 } + - { offsetInCU: 0x442, offset: 0x88B52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x4A0, symBinAddr: 0x3325C, symSize: 0x30 } + - { offsetInCU: 0x456, offset: 0x88B66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x4D0, symBinAddr: 0x3328C, symSize: 0x5C } + - { offsetInCU: 0x46A, offset: 0x88B7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x52C, symBinAddr: 0x332E8, symSize: 0x94 } + - { offsetInCU: 0x47E, offset: 0x88B8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x5D4, symBinAddr: 0x3337C, symSize: 0x64 } + - { offsetInCU: 0x492, offset: 0x88BA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x638, symBinAddr: 0x333E0, symSize: 0x5C } + - { offsetInCU: 0x4A6, offset: 0x88BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x694, symBinAddr: 0x3343C, symSize: 0x5C } + - { offsetInCU: 0x4BA, offset: 0x88BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x6F0, symBinAddr: 0x33498, symSize: 0x10 } + - { offsetInCU: 0x6D8, offset: 0x88DE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32E0C, symSize: 0x128 } + - { offsetInCU: 0x8EB, offset: 0x88FFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x32F34, symSize: 0x158 } + - { offsetInCU: 0x27, offset: 0x8921C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x334A8, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x89240, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x334A8, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x89275, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x334B0, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x89295, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x334B0, symSize: 0x8 } + - { offsetInCU: 0x2BA, offset: 0x894AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3F0, symBinAddr: 0x33898, symSize: 0x40 } + - { offsetInCU: 0x469, offset: 0x8965E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x430, symBinAddr: 0x338D8, symSize: 0x824 } + - { offsetInCU: 0xA7F, offset: 0x89C74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xC54, symBinAddr: 0x340FC, symSize: 0x48 } + - { offsetInCU: 0xA93, offset: 0x89C88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xCDC, symBinAddr: 0x34144, symSize: 0x30 } + - { offsetInCU: 0xAA7, offset: 0x89C9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xD0C, symBinAddr: 0x34174, symSize: 0x48 } + - { offsetInCU: 0xABB, offset: 0x89CB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xD54, symBinAddr: 0x341BC, symSize: 0xB4 } + - { offsetInCU: 0xACF, offset: 0x89CC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xE08, symBinAddr: 0x34270, symSize: 0x104 } + - { offsetInCU: 0xAE3, offset: 0x89CD8, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xF0C, symBinAddr: 0x34374, symSize: 0x1C } + - { offsetInCU: 0xAF7, offset: 0x89CEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xF28, symBinAddr: 0x34390, symSize: 0xB4 } + - { offsetInCU: 0xB0B, offset: 0x89D00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0xFDC, symBinAddr: 0x34444, symSize: 0x48 } + - { offsetInCU: 0xB1F, offset: 0x89D14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0x1024, symBinAddr: 0x3448C, symSize: 0x58 } + - { offsetInCU: 0xB33, offset: 0x89D28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0x107C, symBinAddr: 0x344E4, symSize: 0x10 } + - { offsetInCU: 0xEA9, offset: 0x8A09E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x334B8, symSize: 0x128 } + - { offsetInCU: 0x114A, offset: 0x8A33F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x335E0, symSize: 0x184 } + - { offsetInCU: 0x14DE, offset: 0x8A6D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2BC, symBinAddr: 0x33764, symSize: 0x134 } + - { offsetInCU: 0x4B, offset: 0x8AA08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x344F4, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8AA3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x344FC, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8AA5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x344FC, symSize: 0x8 } + - { offsetInCU: 0x26D, offset: 0x8AC2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x290, symBinAddr: 0x34784, symSize: 0x88 } + - { offsetInCU: 0x31D, offset: 0x8ACDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x318, symBinAddr: 0x3480C, symSize: 0xD4 } + - { offsetInCU: 0x42E, offset: 0x8ADEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x470, symBinAddr: 0x34924, symSize: 0x30 } + - { offsetInCU: 0x442, offset: 0x8ADFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x4A0, symBinAddr: 0x34954, symSize: 0x30 } + - { offsetInCU: 0x456, offset: 0x8AE13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x4D0, symBinAddr: 0x34984, symSize: 0x5C } + - { offsetInCU: 0x46A, offset: 0x8AE27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x52C, symBinAddr: 0x349E0, symSize: 0x94 } + - { offsetInCU: 0x47E, offset: 0x8AE3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x5D4, symBinAddr: 0x34A74, symSize: 0x64 } + - { offsetInCU: 0x492, offset: 0x8AE4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x638, symBinAddr: 0x34AD8, symSize: 0x5C } + - { offsetInCU: 0x4A6, offset: 0x8AE63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x694, symBinAddr: 0x34B34, symSize: 0x5C } + - { offsetInCU: 0x4BA, offset: 0x8AE77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x6F0, symBinAddr: 0x34B90, symSize: 0x10 } + - { offsetInCU: 0x6D8, offset: 0x8B095, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x34504, symSize: 0x128 } + - { offsetInCU: 0x8EB, offset: 0x8B2A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x3462C, symSize: 0x158 } + - { offsetInCU: 0x4B, offset: 0x8B4ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34BA0, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8B522, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34BA8, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8B542, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34BA8, symSize: 0x8 } + - { offsetInCU: 0x26D, offset: 0x8B70F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x258, symBinAddr: 0x34DF8, symSize: 0x88 } + - { offsetInCU: 0x2E1, offset: 0x8B783, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2E0, symBinAddr: 0x34E80, symSize: 0xD0 } + - { offsetInCU: 0x3F2, offset: 0x8B894, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x434, symBinAddr: 0x34F94, symSize: 0x30 } + - { offsetInCU: 0x406, offset: 0x8B8A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x464, symBinAddr: 0x34FC4, symSize: 0x30 } + - { offsetInCU: 0x41A, offset: 0x8B8BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x494, symBinAddr: 0x34FF4, symSize: 0x64 } + - { offsetInCU: 0x42E, offset: 0x8B8D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x4F8, symBinAddr: 0x35058, symSize: 0x94 } + - { offsetInCU: 0x442, offset: 0x8B8E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x5A0, symBinAddr: 0x350EC, symSize: 0x6C } + - { offsetInCU: 0x456, offset: 0x8B8F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x60C, symBinAddr: 0x35158, symSize: 0x5C } + - { offsetInCU: 0x46A, offset: 0x8B90C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x668, symBinAddr: 0x351B4, symSize: 0x5C } + - { offsetInCU: 0x47E, offset: 0x8B920, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x6C4, symBinAddr: 0x35210, symSize: 0x10 } + - { offsetInCU: 0x695, offset: 0x8BB37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x34BB0, symSize: 0xF0 } + - { offsetInCU: 0x893, offset: 0x8BD35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x100, symBinAddr: 0x34CA0, symSize: 0x158 } + - { offsetInCU: 0x27, offset: 0x8BF57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35220, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8BF7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35220, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8BFB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35228, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8BFD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35228, symSize: 0x8 } + - { offsetInCU: 0xC9, offset: 0x8BFF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x35230, symSize: 0x88 } + - { offsetInCU: 0x35A, offset: 0x8C28A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x98, symBinAddr: 0x352B8, symSize: 0x500 } + - { offsetInCU: 0xAD8, offset: 0x8CA08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x598, symBinAddr: 0x357B8, symSize: 0x30 } + - { offsetInCU: 0xAEC, offset: 0x8CA1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x5C8, symBinAddr: 0x357E8, symSize: 0x40 } + - { offsetInCU: 0xB00, offset: 0x8CA30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x608, symBinAddr: 0x35828, symSize: 0x7C } + - { offsetInCU: 0xB14, offset: 0x8CA44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x684, symBinAddr: 0x358A4, symSize: 0xBC } + - { offsetInCU: 0xB28, offset: 0x8CA58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x75C, symBinAddr: 0x35960, symSize: 0x84 } + - { offsetInCU: 0xB3C, offset: 0x8CA6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x7E0, symBinAddr: 0x359E4, symSize: 0x48 } + - { offsetInCU: 0xB50, offset: 0x8CA80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x828, symBinAddr: 0x35A2C, symSize: 0x4C } + - { offsetInCU: 0xB64, offset: 0x8CA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x874, symBinAddr: 0x35A78, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8CEC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35A88, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8CEFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35A90, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8CF1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35A90, symSize: 0x8 } + - { offsetInCU: 0x515, offset: 0x8D391, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xAB4, symBinAddr: 0x3653C, symSize: 0x38 } + - { offsetInCU: 0x546, offset: 0x8D3C2, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xD40, symBinAddr: 0x36788, symSize: 0x28 } + - { offsetInCU: 0x55A, offset: 0x8D3D6, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xD68, symBinAddr: 0x367B0, symSize: 0x28 } + - { offsetInCU: 0x56E, offset: 0x8D3EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xD90, symBinAddr: 0x367D8, symSize: 0x30 } + - { offsetInCU: 0x582, offset: 0x8D3FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xDC0, symBinAddr: 0x36808, symSize: 0x30 } + - { offsetInCU: 0x596, offset: 0x8D412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xDF0, symBinAddr: 0x36838, symSize: 0x84 } + - { offsetInCU: 0x5AA, offset: 0x8D426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xE74, symBinAddr: 0x368BC, symSize: 0xAC } + - { offsetInCU: 0x5BE, offset: 0x8D43A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0xF34, symBinAddr: 0x36968, symSize: 0x8C } + - { offsetInCU: 0x5D2, offset: 0x8D44E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0xFC0, symBinAddr: 0x369F4, symSize: 0x5C } + - { offsetInCU: 0x5E6, offset: 0x8D462, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x101C, symBinAddr: 0x36A50, symSize: 0x60 } + - { offsetInCU: 0x5FA, offset: 0x8D476, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x107C, symBinAddr: 0x36AB0, symSize: 0x10 } + - { offsetInCU: 0xA48, offset: 0x8D8C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x35A98, symSize: 0xAC } + - { offsetInCU: 0xBFB, offset: 0x8DA77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xBC, symBinAddr: 0x35B44, symSize: 0x26C } + - { offsetInCU: 0x1047, offset: 0x8DEC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x328, symBinAddr: 0x35DB0, symSize: 0x1E8 } + - { offsetInCU: 0x14B6, offset: 0x8E332, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x510, symBinAddr: 0x35F98, symSize: 0x5A4 } + - { offsetInCU: 0x195E, offset: 0x8E7DA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xB2C, symBinAddr: 0x36574, symSize: 0x1D0 } + - { offsetInCU: 0x27, offset: 0x8E881, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36AC0, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8E8A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36AC0, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8E8DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36AC8, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8E8FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36AC8, symSize: 0x8 } + - { offsetInCU: 0xDE, offset: 0x8E938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBC, symBinAddr: 0x36B7C, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x8E9CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF4, symBinAddr: 0x36BB4, symSize: 0x108 } + - { offsetInCU: 0x27E, offset: 0x8EAD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x1FC, symBinAddr: 0x36CBC, symSize: 0x30 } + - { offsetInCU: 0x292, offset: 0x8EAEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x22C, symBinAddr: 0x36CEC, symSize: 0x38 } + - { offsetInCU: 0x2A6, offset: 0x8EB00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x264, symBinAddr: 0x36D24, symSize: 0x6C } + - { offsetInCU: 0x2BA, offset: 0x8EB14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x2D0, symBinAddr: 0x36D90, symSize: 0xA4 } + - { offsetInCU: 0x2CE, offset: 0x8EB28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x388, symBinAddr: 0x36E34, symSize: 0x74 } + - { offsetInCU: 0x2E2, offset: 0x8EB3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x3FC, symBinAddr: 0x36EA8, symSize: 0x48 } + - { offsetInCU: 0x2F6, offset: 0x8EB50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x444, symBinAddr: 0x36EF0, symSize: 0x4C } + - { offsetInCU: 0x30A, offset: 0x8EB64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x490, symBinAddr: 0x36F3C, symSize: 0x10 } + - { offsetInCU: 0x445, offset: 0x8EC9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x36AD0, symSize: 0xAC } + - { offsetInCU: 0x27, offset: 0x8ED8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36F4C, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x8EDAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36F4C, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x8EDE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36F54, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x8EE00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36F54, symSize: 0x8 } + - { offsetInCU: 0xC2, offset: 0x8EE27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x36F5C, symSize: 0x1C } + - { offsetInCU: 0x255, offset: 0x8EFBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x2C, symBinAddr: 0x36F78, symSize: 0x18C } + - { offsetInCU: 0x57D, offset: 0x8F2E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1B8, symBinAddr: 0x37104, symSize: 0x88 } + - { offsetInCU: 0x70F, offset: 0x8F474, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x240, symBinAddr: 0x3718C, symSize: 0x158 } + - { offsetInCU: 0xAA9, offset: 0x8F80E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x398, symBinAddr: 0x372E4, symSize: 0x4F8 } + - { offsetInCU: 0xF3E, offset: 0x8FCA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x8D0, symBinAddr: 0x377DC, symSize: 0x30 } + - { offsetInCU: 0xF52, offset: 0x8FCB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0x900, symBinAddr: 0x3780C, symSize: 0x30 } + - { offsetInCU: 0xF66, offset: 0x8FCCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0x930, symBinAddr: 0x3783C, symSize: 0x64 } + - { offsetInCU: 0xF7A, offset: 0x8FCDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0x994, symBinAddr: 0x378A0, symSize: 0x8C } + - { offsetInCU: 0xF8E, offset: 0x8FCF3, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xA20, symBinAddr: 0x3792C, symSize: 0xC } + - { offsetInCU: 0xFA2, offset: 0x8FD07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xA2C, symBinAddr: 0x37938, symSize: 0x6C } + - { offsetInCU: 0xFB6, offset: 0x8FD1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xA98, symBinAddr: 0x379A4, symSize: 0x5C } + - { offsetInCU: 0xFCA, offset: 0x8FD2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xAF4, symBinAddr: 0x37A00, symSize: 0x54 } + - { offsetInCU: 0xFDE, offset: 0x8FD43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xB48, symBinAddr: 0x37A54, symSize: 0x10 } + - { offsetInCU: 0x153, offset: 0x9042A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x62C, symBinAddr: 0x38090, symSize: 0x74 } + - { offsetInCU: 0x2AF, offset: 0x90586, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x6D0, symBinAddr: 0x38134, symSize: 0x60 } + - { offsetInCU: 0x2DE, offset: 0x905B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x730, symBinAddr: 0x38194, symSize: 0x20 } + - { offsetInCU: 0x41D, offset: 0x906F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x18, symBinAddr: 0x37A7C, symSize: 0x44 } + - { offsetInCU: 0x442, offset: 0x90719, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x74, symBinAddr: 0x37AD8, symSize: 0x44 } + - { offsetInCU: 0x467, offset: 0x9073E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x178, symBinAddr: 0x37BDC, symSize: 0x44 } + - { offsetInCU: 0x48C, offset: 0x90763, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x264, symBinAddr: 0x37CC8, symSize: 0x44 } + - { offsetInCU: 0x4B1, offset: 0x90788, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x2A8, symBinAddr: 0x37D0C, symSize: 0x4 } + - { offsetInCU: 0x577, offset: 0x9084E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x37D10, symSize: 0x2F8 } + - { offsetInCU: 0x9F5, offset: 0x90CCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x5A4, symBinAddr: 0x38008, symSize: 0x20 } + - { offsetInCU: 0xA09, offset: 0x90CE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x5C4, symBinAddr: 0x38028, symSize: 0x68 } + - { offsetInCU: 0xA3A, offset: 0x90D11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x6A0, symBinAddr: 0x38104, symSize: 0x30 } + - { offsetInCU: 0x24A, offset: 0x90F88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xE6C, symBinAddr: 0x3902C, symSize: 0x20 } + - { offsetInCU: 0x3E2, offset: 0x91120, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xEBC, symBinAddr: 0x3907C, symSize: 0x4C } + - { offsetInCU: 0x411, offset: 0x9114F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0xF08, symBinAddr: 0x390C8, symSize: 0x20 } + - { offsetInCU: 0x58B, offset: 0x912C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x18, symBinAddr: 0x381D8, symSize: 0x44 } + - { offsetInCU: 0x5B0, offset: 0x912EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x74, symBinAddr: 0x38234, symSize: 0x44 } + - { offsetInCU: 0x5D5, offset: 0x91313, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x16C, symBinAddr: 0x3832C, symSize: 0x44 } + - { offsetInCU: 0x5FA, offset: 0x91338, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x25C, symBinAddr: 0x3841C, symSize: 0x44 } + - { offsetInCU: 0x61F, offset: 0x9135D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x2B8, symBinAddr: 0x38478, symSize: 0x44 } + - { offsetInCU: 0x644, offset: 0x91382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x3A8, symBinAddr: 0x38568, symSize: 0x44 } + - { offsetInCU: 0x669, offset: 0x913A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x404, symBinAddr: 0x385C4, symSize: 0x44 } + - { offsetInCU: 0x68E, offset: 0x913CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x448, symBinAddr: 0x38608, symSize: 0x4 } + - { offsetInCU: 0x6AF, offset: 0x913ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x44C, symBinAddr: 0x3860C, symSize: 0x54 } + - { offsetInCU: 0x6CE, offset: 0x9140C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x4A0, symBinAddr: 0x38660, symSize: 0x5C } + - { offsetInCU: 0x703, offset: 0x91441, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x4FC, symBinAddr: 0x386BC, symSize: 0x44 } + - { offsetInCU: 0x728, offset: 0x91466, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x5E8, symBinAddr: 0x387A8, symSize: 0x44 } + - { offsetInCU: 0x898, offset: 0x915D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x62C, symBinAddr: 0x387EC, symSize: 0x758 } + - { offsetInCU: 0x169C, offset: 0x923DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xD84, symBinAddr: 0x38F44, symSize: 0x20 } + - { offsetInCU: 0x16B0, offset: 0x923EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xDA4, symBinAddr: 0x38F64, symSize: 0xC8 } + - { offsetInCU: 0x16D3, offset: 0x92411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xE8C, symBinAddr: 0x3904C, symSize: 0x30 } + - { offsetInCU: 0x4CA, offset: 0x92912, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1874, symBinAddr: 0x3A97C, symSize: 0x20 } + - { offsetInCU: 0x716, offset: 0x92B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x18C4, symBinAddr: 0x3A9CC, symSize: 0x9C } + - { offsetInCU: 0x973, offset: 0x92DBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x3410, symBinAddr: 0x3C518, symSize: 0x20 } + - { offsetInCU: 0xC47, offset: 0x9308F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x39108, symSize: 0x20 } + - { offsetInCU: 0xC5B, offset: 0x930A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x39128, symSize: 0x48 } + - { offsetInCU: 0xC80, offset: 0x930C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x39170, symSize: 0x5C } + - { offsetInCU: 0xCA9, offset: 0x930F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x391CC, symSize: 0x44 } + - { offsetInCU: 0xCCE, offset: 0x93116, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x120, symBinAddr: 0x39228, symSize: 0x44 } + - { offsetInCU: 0xCF3, offset: 0x9313B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x17C, symBinAddr: 0x39284, symSize: 0x44 } + - { offsetInCU: 0xD18, offset: 0x93160, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1C0, symBinAddr: 0x392C8, symSize: 0x4C } + - { offsetInCU: 0xD3D, offset: 0x93185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x20C, symBinAddr: 0x39314, symSize: 0x50 } + - { offsetInCU: 0xD62, offset: 0x931AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x25C, symBinAddr: 0x39364, symSize: 0x44 } + - { offsetInCU: 0xD87, offset: 0x931CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x393A8, symSize: 0x4 } + - { offsetInCU: 0xDA8, offset: 0x931F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2A4, symBinAddr: 0x393AC, symSize: 0x44 } + - { offsetInCU: 0xDCD, offset: 0x93215, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvs', symObjAddr: 0x2E8, symBinAddr: 0x393F0, symSize: 0x48 } + - { offsetInCU: 0xDF6, offset: 0x9323E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x330, symBinAddr: 0x39438, symSize: 0x44 } + - { offsetInCU: 0xE1B, offset: 0x93263, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x428, symBinAddr: 0x39530, symSize: 0x44 } + - { offsetInCU: 0xE40, offset: 0x93288, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x484, symBinAddr: 0x3958C, symSize: 0x44 } + - { offsetInCU: 0xE65, offset: 0x932AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x4E0, symBinAddr: 0x395E8, symSize: 0x44 } + - { offsetInCU: 0xE8A, offset: 0x932D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x53C, symBinAddr: 0x39644, symSize: 0x44 } + - { offsetInCU: 0xEAF, offset: 0x932F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x580, symBinAddr: 0x39688, symSize: 0x48 } + - { offsetInCU: 0xED4, offset: 0x9331C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x5C8, symBinAddr: 0x396D0, symSize: 0x50 } + - { offsetInCU: 0xF09, offset: 0x93351, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x618, symBinAddr: 0x39720, symSize: 0x44 } + - { offsetInCU: 0xF28, offset: 0x93370, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x65C, symBinAddr: 0x39764, symSize: 0x44 } + - { offsetInCU: 0xF4D, offset: 0x93395, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvs', symObjAddr: 0x6A0, symBinAddr: 0x397A8, symSize: 0x48 } + - { offsetInCU: 0xF76, offset: 0x933BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x6E8, symBinAddr: 0x397F0, symSize: 0x44 } + - { offsetInCU: 0xF9B, offset: 0x933E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x72C, symBinAddr: 0x39834, symSize: 0x44 } + - { offsetInCU: 0xFC0, offset: 0x93408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvs', symObjAddr: 0x770, symBinAddr: 0x39878, symSize: 0x48 } + - { offsetInCU: 0xFE9, offset: 0x93431, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x7B8, symBinAddr: 0x398C0, symSize: 0x44 } + - { offsetInCU: 0x100E, offset: 0x93456, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x7FC, symBinAddr: 0x39904, symSize: 0x44 } + - { offsetInCU: 0x1033, offset: 0x9347B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvs', symObjAddr: 0x840, symBinAddr: 0x39948, symSize: 0x48 } + - { offsetInCU: 0x105C, offset: 0x934A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x888, symBinAddr: 0x39990, symSize: 0x44 } + - { offsetInCU: 0x1081, offset: 0x934C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x978, symBinAddr: 0x39A80, symSize: 0x44 } + - { offsetInCU: 0x10A6, offset: 0x934EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0x9D4, symBinAddr: 0x39ADC, symSize: 0x44 } + - { offsetInCU: 0x10CB, offset: 0x93513, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0xA30, symBinAddr: 0x39B38, symSize: 0x44 } + - { offsetInCU: 0x10F0, offset: 0x93538, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xB34, symBinAddr: 0x39C3C, symSize: 0x44 } + - { offsetInCU: 0x1115, offset: 0x9355D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xB78, symBinAddr: 0x39C80, symSize: 0x48 } + - { offsetInCU: 0x113A, offset: 0x93582, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xBC0, symBinAddr: 0x39CC8, symSize: 0x50 } + - { offsetInCU: 0x1163, offset: 0x935AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xC10, symBinAddr: 0x39D18, symSize: 0x44 } + - { offsetInCU: 0x14F1, offset: 0x93939, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xC54, symBinAddr: 0x39D5C, symSize: 0xA3C } + - { offsetInCU: 0x216A, offset: 0x945B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x1700, symBinAddr: 0x3A808, symSize: 0x174 } + - { offsetInCU: 0x218F, offset: 0x945D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1894, symBinAddr: 0x3A99C, symSize: 0x30 } + - { offsetInCU: 0x21B9, offset: 0x94601, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1960, symBinAddr: 0x3AA68, symSize: 0x64 } + - { offsetInCU: 0x21FE, offset: 0x94646, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x19C4, symBinAddr: 0x3AACC, symSize: 0x34 } + - { offsetInCU: 0x223C, offset: 0x94684, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19F8, symBinAddr: 0x3AB00, symSize: 0xE0 } + - { offsetInCU: 0x22B0, offset: 0x946F8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1AD8, symBinAddr: 0x3ABE0, symSize: 0xA0 } + - { offsetInCU: 0x22E0, offset: 0x94728, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1B9C, symBinAddr: 0x3ACA4, symSize: 0x1C8 } + - { offsetInCU: 0x238E, offset: 0x947D6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1D64, symBinAddr: 0x3AE6C, symSize: 0x1B8 } + - { offsetInCU: 0x245E, offset: 0x948A6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x228C, symBinAddr: 0x3B394, symSize: 0x1C4 } + - { offsetInCU: 0x2513, offset: 0x9495B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2474, symBinAddr: 0x3B57C, symSize: 0x354 } + - { offsetInCU: 0x25F6, offset: 0x94A3E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x27C8, symBinAddr: 0x3B8D0, symSize: 0x338 } + - { offsetInCU: 0x26D9, offset: 0x94B21, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x30D0, symBinAddr: 0x3C1D8, symSize: 0x340 } + - { offsetInCU: 0x27, offset: 0x94C50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3C57C, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x94DF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3C9B4, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x94EBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x488, symBinAddr: 0x3CA04, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x950D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xA78, symBinAddr: 0x3CFF4, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x952F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3C57C, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x9530D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3C59C, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x95338, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3C5E8, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x9535D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3C638, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x95382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3C67C, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x953A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3C680, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x953C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3C6C4, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x953F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3C70C, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x95416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3C750, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9543B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3C7A4, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x95464, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3C800, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x95489, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3C844, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x954AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3C88C, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x954E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3C8DC, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x95502, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3C920, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x95516, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3C928, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x95539, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x458, symBinAddr: 0x3C9D4, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x95771, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3CA40, symSize: 0x5B4 } + - { offsetInCU: 0x27, offset: 0x95E48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D020, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x95FE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3D458, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x960B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x488, symBinAddr: 0x3D4A8, symSize: 0x3C } + - { offsetInCU: 0x4CD, offset: 0x962EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xAB4, symBinAddr: 0x3DAD4, symSize: 0x20 } + - { offsetInCU: 0x6F1, offset: 0x96512, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D020, symSize: 0x20 } + - { offsetInCU: 0x705, offset: 0x96526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3D040, symSize: 0x4C } + - { offsetInCU: 0x730, offset: 0x96551, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3D08C, symSize: 0x50 } + - { offsetInCU: 0x755, offset: 0x96576, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3D0DC, symSize: 0x44 } + - { offsetInCU: 0x77A, offset: 0x9659B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3D120, symSize: 0x4 } + - { offsetInCU: 0x79B, offset: 0x965BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3D124, symSize: 0x44 } + - { offsetInCU: 0x7C0, offset: 0x965E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3D168, symSize: 0x48 } + - { offsetInCU: 0x7E9, offset: 0x9660A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3D1B0, symSize: 0x44 } + - { offsetInCU: 0x80E, offset: 0x9662F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3D1F4, symSize: 0x54 } + - { offsetInCU: 0x833, offset: 0x96654, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3D248, symSize: 0x5C } + - { offsetInCU: 0x85C, offset: 0x9667D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3D2A4, symSize: 0x44 } + - { offsetInCU: 0x881, offset: 0x966A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3D2E8, symSize: 0x48 } + - { offsetInCU: 0x8A6, offset: 0x966C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3D330, symSize: 0x50 } + - { offsetInCU: 0x8DB, offset: 0x966FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3D380, symSize: 0x44 } + - { offsetInCU: 0x8FA, offset: 0x9671B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3D3C4, symSize: 0x8 } + - { offsetInCU: 0x90E, offset: 0x9672F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3D3CC, symSize: 0x8C } + - { offsetInCU: 0x931, offset: 0x96752, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x458, symBinAddr: 0x3D478, symSize: 0x30 } + - { offsetInCU: 0xB6F, offset: 0x96990, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3D4E4, symSize: 0x5F0 } + - { offsetInCU: 0x393, offset: 0x97407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x1604, symBinAddr: 0x3F104, symSize: 0x20 } + - { offsetInCU: 0x761, offset: 0x977D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x1654, symBinAddr: 0x3F154, symSize: 0x74 } + - { offsetInCU: 0x790, offset: 0x97804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x16C8, symBinAddr: 0x3F1C8, symSize: 0x20 } + - { offsetInCU: 0xA9A, offset: 0x97B0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DB00, symSize: 0x20 } + - { offsetInCU: 0xAAE, offset: 0x97B22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3DB20, symSize: 0x48 } + - { offsetInCU: 0xAD3, offset: 0x97B47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3DB68, symSize: 0x5C } + - { offsetInCU: 0xAFC, offset: 0x97B70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3DBC4, symSize: 0x44 } + - { offsetInCU: 0xB21, offset: 0x97B95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0x108, symBinAddr: 0x3DC08, symSize: 0x4C } + - { offsetInCU: 0xB46, offset: 0x97BBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x154, symBinAddr: 0x3DC54, symSize: 0x50 } + - { offsetInCU: 0xB6B, offset: 0x97BDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x1A4, symBinAddr: 0x3DCA4, symSize: 0x44 } + - { offsetInCU: 0xB90, offset: 0x97C04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1E8, symBinAddr: 0x3DCE8, symSize: 0x54 } + - { offsetInCU: 0xBB5, offset: 0x97C29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x23C, symBinAddr: 0x3DD3C, symSize: 0x50 } + - { offsetInCU: 0xBDA, offset: 0x97C4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x28C, symBinAddr: 0x3DD8C, symSize: 0x44 } + - { offsetInCU: 0xBFF, offset: 0x97C73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2E8, symBinAddr: 0x3DDE8, symSize: 0x44 } + - { offsetInCU: 0xC24, offset: 0x97C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x32C, symBinAddr: 0x3DE2C, symSize: 0x4 } + - { offsetInCU: 0xC45, offset: 0x97CB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x348, symBinAddr: 0x3DE48, symSize: 0x44 } + - { offsetInCU: 0xC6A, offset: 0x97CDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3A4, symBinAddr: 0x3DEA4, symSize: 0x44 } + - { offsetInCU: 0xC8F, offset: 0x97D03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x490, symBinAddr: 0x3DF90, symSize: 0x44 } + - { offsetInCU: 0xCAE, offset: 0x97D22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivg', symObjAddr: 0x4D4, symBinAddr: 0x3DFD4, symSize: 0x44 } + - { offsetInCU: 0xCD3, offset: 0x97D47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivs', symObjAddr: 0x518, symBinAddr: 0x3E018, symSize: 0x48 } + - { offsetInCU: 0xCFC, offset: 0x97D70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x560, symBinAddr: 0x3E060, symSize: 0x44 } + - { offsetInCU: 0xD21, offset: 0x97D95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x3E164, symSize: 0x44 } + - { offsetInCU: 0xD46, offset: 0x97DBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x6A8, symBinAddr: 0x3E1A8, symSize: 0x54 } + - { offsetInCU: 0xD65, offset: 0x97DD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x6FC, symBinAddr: 0x3E1FC, symSize: 0x5C } + - { offsetInCU: 0xD8E, offset: 0x97E02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x758, symBinAddr: 0x3E258, symSize: 0x44 } + - { offsetInCU: 0xDB3, offset: 0x97E27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x848, symBinAddr: 0x3E348, symSize: 0x44 } + - { offsetInCU: 0xDD8, offset: 0x97E4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivg', symObjAddr: 0x88C, symBinAddr: 0x3E38C, symSize: 0x44 } + - { offsetInCU: 0xDFD, offset: 0x97E71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivs', symObjAddr: 0x8D0, symBinAddr: 0x3E3D0, symSize: 0x48 } + - { offsetInCU: 0xE26, offset: 0x97E9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x918, symBinAddr: 0x3E418, symSize: 0x44 } + - { offsetInCU: 0x11CC, offset: 0x98240, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x95C, symBinAddr: 0x3E45C, symSize: 0xB40 } + - { offsetInCU: 0x1E93, offset: 0x98F07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x150C, symBinAddr: 0x3F00C, symSize: 0xF8 } + - { offsetInCU: 0x1EB6, offset: 0x98F2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1624, symBinAddr: 0x3F124, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x98F94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F214, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x99134, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3F64C, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x991FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x488, symBinAddr: 0x3F69C, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x99419, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xA78, symBinAddr: 0x3FC8C, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x9963D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F214, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x99651, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3F234, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x9967C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3F280, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x996A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3F2D0, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x996C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3F314, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x996E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3F318, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x9970C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3F35C, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x99735, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3F3A4, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x9975A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3F3E8, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9977F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3F43C, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x997A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3F498, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x997CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3F4DC, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x997F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3F524, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x99827, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3F574, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x99846, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3F5B8, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x9985A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3F5C0, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x9987D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x458, symBinAddr: 0x3F66C, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x99AB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3F6D8, symSize: 0x5B4 } + - { offsetInCU: 0x27, offset: 0x9A18C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3FCB8, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9A32C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x400F0, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x9A3F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x488, symBinAddr: 0x40140, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x9A611, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xAB4, symBinAddr: 0x4076C, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x9A835, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3FCB8, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x9A849, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3FCD8, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x9A874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3FD24, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x9A899, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3FD74, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x9A8BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3FDB8, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x9A8DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3FDBC, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x9A904, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3FE00, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x9A92D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3FE48, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x9A952, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3FE8C, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9A977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3FEE0, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x9A9A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3FF3C, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x9A9C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3FF80, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x9A9EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3FFC8, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x9AA1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x40018, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x9AA3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x4005C, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x9AA52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x40064, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x9AA75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x458, symBinAddr: 0x40110, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x9ACAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x4017C, symSize: 0x5F0 } + - { offsetInCU: 0x27, offset: 0x9B3B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x40798, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9B558, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x44C, symBinAddr: 0x40BE4, symSize: 0x20 } + - { offsetInCU: 0x2A8, offset: 0x9B639, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x49C, symBinAddr: 0x40C34, symSize: 0x4C } + - { offsetInCU: 0x585, offset: 0x9B916, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xBFC, symBinAddr: 0x41394, symSize: 0x20 } + - { offsetInCU: 0x7E8, offset: 0x9BB79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x40798, symSize: 0x20 } + - { offsetInCU: 0x7FC, offset: 0x9BB8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x407B8, symSize: 0x48 } + - { offsetInCU: 0x827, offset: 0x9BBB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x40800, symSize: 0x50 } + - { offsetInCU: 0x85C, offset: 0x9BBED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x40850, symSize: 0x44 } + - { offsetInCU: 0x87B, offset: 0x9BC0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x40894, symSize: 0x4 } + - { offsetInCU: 0x89C, offset: 0x9BC2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x40898, symSize: 0x44 } + - { offsetInCU: 0x8C1, offset: 0x9BC52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x408DC, symSize: 0x48 } + - { offsetInCU: 0x8EA, offset: 0x9BC7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x40924, symSize: 0x44 } + - { offsetInCU: 0x90F, offset: 0x9BCA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x40968, symSize: 0x54 } + - { offsetInCU: 0x934, offset: 0x9BCC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x409BC, symSize: 0x5C } + - { offsetInCU: 0x95D, offset: 0x9BCEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x40A18, symSize: 0x44 } + - { offsetInCU: 0x982, offset: 0x9BD13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x40A5C, symSize: 0x48 } + - { offsetInCU: 0x9A7, offset: 0x9BD38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x40AA4, symSize: 0x50 } + - { offsetInCU: 0x9DC, offset: 0x9BD6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x40AF4, symSize: 0x44 } + - { offsetInCU: 0x9FB, offset: 0x9BD8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x40B38, symSize: 0x8 } + - { offsetInCU: 0xA0F, offset: 0x9BDA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x40B40, symSize: 0xA4 } + - { offsetInCU: 0xA34, offset: 0x9BDC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x46C, symBinAddr: 0x40C04, symSize: 0x30 } + - { offsetInCU: 0xCC3, offset: 0x9C054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4E8, symBinAddr: 0x40C80, symSize: 0x6A4 } + - { offsetInCU: 0x27, offset: 0x9C8CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x413C0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9CA6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x44C, symBinAddr: 0x4180C, symSize: 0x20 } + - { offsetInCU: 0x2A8, offset: 0x9CB4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x49C, symBinAddr: 0x4185C, symSize: 0x4C } + - { offsetInCU: 0x585, offset: 0x9CE2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xBFC, symBinAddr: 0x41FBC, symSize: 0x20 } + - { offsetInCU: 0x7E8, offset: 0x9D08F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x413C0, symSize: 0x20 } + - { offsetInCU: 0x7FC, offset: 0x9D0A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x413E0, symSize: 0x48 } + - { offsetInCU: 0x827, offset: 0x9D0CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x41428, symSize: 0x50 } + - { offsetInCU: 0x85C, offset: 0x9D103, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x41478, symSize: 0x44 } + - { offsetInCU: 0x87B, offset: 0x9D122, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x414BC, symSize: 0x4 } + - { offsetInCU: 0x89C, offset: 0x9D143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x414C0, symSize: 0x44 } + - { offsetInCU: 0x8C1, offset: 0x9D168, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x41504, symSize: 0x48 } + - { offsetInCU: 0x8EA, offset: 0x9D191, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x4154C, symSize: 0x44 } + - { offsetInCU: 0x90F, offset: 0x9D1B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x41590, symSize: 0x54 } + - { offsetInCU: 0x934, offset: 0x9D1DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x415E4, symSize: 0x5C } + - { offsetInCU: 0x95D, offset: 0x9D204, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x41640, symSize: 0x44 } + - { offsetInCU: 0x982, offset: 0x9D229, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x41684, symSize: 0x48 } + - { offsetInCU: 0x9A7, offset: 0x9D24E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x416CC, symSize: 0x50 } + - { offsetInCU: 0x9DC, offset: 0x9D283, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x4171C, symSize: 0x44 } + - { offsetInCU: 0x9FB, offset: 0x9D2A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x41760, symSize: 0x8 } + - { offsetInCU: 0xA0F, offset: 0x9D2B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x41768, symSize: 0xA4 } + - { offsetInCU: 0xA34, offset: 0x9D2DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x46C, symBinAddr: 0x4182C, symSize: 0x30 } + - { offsetInCU: 0xCC3, offset: 0x9D56A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4E8, symBinAddr: 0x418A8, symSize: 0x6A4 } + - { offsetInCU: 0x306, offset: 0x9E0C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x1218, symBinAddr: 0x43200, symSize: 0x2C } + - { offsetInCU: 0x384, offset: 0x9E141, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0xA34, symBinAddr: 0x42A1C, symSize: 0x20 } + - { offsetInCU: 0x5E3, offset: 0x9E3A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1274, symBinAddr: 0x4325C, symSize: 0x60 } + - { offsetInCU: 0x888, offset: 0x9E645, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x41FE8, symSize: 0x48 } + - { offsetInCU: 0x8B3, offset: 0x9E670, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x48, symBinAddr: 0x42030, symSize: 0x5C } + - { offsetInCU: 0x8E8, offset: 0x9E6A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0xA4, symBinAddr: 0x4208C, symSize: 0x44 } + - { offsetInCU: 0x90D, offset: 0x9E6CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xE8, symBinAddr: 0x420D0, symSize: 0x4C } + - { offsetInCU: 0x92C, offset: 0x9E6E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x134, symBinAddr: 0x4211C, symSize: 0x50 } + - { offsetInCU: 0x95D, offset: 0x9E71A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x184, symBinAddr: 0x4216C, symSize: 0x44 } + - { offsetInCU: 0x982, offset: 0x9E73F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x421C8, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x9E764, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x224, symBinAddr: 0x4220C, symSize: 0x4C } + - { offsetInCU: 0x9C6, offset: 0x9E783, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x270, symBinAddr: 0x42258, symSize: 0x50 } + - { offsetInCU: 0x9F7, offset: 0x9E7B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2C0, symBinAddr: 0x422A8, symSize: 0x44 } + - { offsetInCU: 0xA1C, offset: 0x9E7D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x422EC, symSize: 0x4 } + - { offsetInCU: 0xA3D, offset: 0x9E7FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x320, symBinAddr: 0x42308, symSize: 0x44 } + - { offsetInCU: 0xA62, offset: 0x9E81F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x37C, symBinAddr: 0x42364, symSize: 0x44 } + - { offsetInCU: 0xA87, offset: 0x9E844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x468, symBinAddr: 0x42450, symSize: 0x44 } + - { offsetInCU: 0xAAC, offset: 0x9E869, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x42548, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x9E88E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x4264C, symSize: 0x44 } + - { offsetInCU: 0xAFC, offset: 0x9E8B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x6A8, symBinAddr: 0x42690, symSize: 0xBC } + - { offsetInCU: 0xB10, offset: 0x9E8CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x764, symBinAddr: 0x4274C, symSize: 0x2D0 } + - { offsetInCU: 0xD25, offset: 0x9EAE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0xA54, symBinAddr: 0x42A3C, symSize: 0x778 } + - { offsetInCU: 0x1B1D, offset: 0x9F8DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0x11CC, symBinAddr: 0x431B4, symSize: 0x20 } + - { offsetInCU: 0x1B31, offset: 0x9F8EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0x11EC, symBinAddr: 0x431D4, symSize: 0x2C } + - { offsetInCU: 0x1B8A, offset: 0x9F947, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x1244, symBinAddr: 0x4322C, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x9F9C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x432DC, symSize: 0xC8 } + - { offsetInCU: 0x390, offset: 0x9FD2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0x99C, symBinAddr: 0x43C78, symSize: 0x20 } + - { offsetInCU: 0x4EC, offset: 0x9FE88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x432DC, symSize: 0xC8 } + - { offsetInCU: 0x549, offset: 0x9FEE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xC8, symBinAddr: 0x433A4, symSize: 0xC4 } + - { offsetInCU: 0x586, offset: 0x9FF22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x18C, symBinAddr: 0x43468, symSize: 0x48 } + - { offsetInCU: 0x5A0, offset: 0x9FF3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x1D4, symBinAddr: 0x434B0, symSize: 0x50 } + - { offsetInCU: 0x5B4, offset: 0x9FF50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x224, symBinAddr: 0x43500, symSize: 0x3C } + - { offsetInCU: 0x5C8, offset: 0x9FF64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x260, symBinAddr: 0x4353C, symSize: 0x30 } + - { offsetInCU: 0x5DC, offset: 0x9FF78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x290, symBinAddr: 0x4356C, symSize: 0x3C } + - { offsetInCU: 0x5F0, offset: 0x9FF8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x2CC, symBinAddr: 0x435A8, symSize: 0x3C } + - { offsetInCU: 0x604, offset: 0x9FFA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x308, symBinAddr: 0x435E4, symSize: 0x30 } + - { offsetInCU: 0x618, offset: 0x9FFB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x338, symBinAddr: 0x43614, symSize: 0x3C } + - { offsetInCU: 0x62C, offset: 0x9FFC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x374, symBinAddr: 0x43650, symSize: 0x3C } + - { offsetInCU: 0x640, offset: 0x9FFDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x3B0, symBinAddr: 0x4368C, symSize: 0x30 } + - { offsetInCU: 0x654, offset: 0x9FFF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x3E0, symBinAddr: 0x436BC, symSize: 0x3C } + - { offsetInCU: 0x668, offset: 0xA0004, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x41C, symBinAddr: 0x436F8, symSize: 0x3C } + - { offsetInCU: 0x67C, offset: 0xA0018, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x458, symBinAddr: 0x43734, symSize: 0x30 } + - { offsetInCU: 0x690, offset: 0xA002C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x488, symBinAddr: 0x43764, symSize: 0x3C } + - { offsetInCU: 0x6A4, offset: 0xA0040, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x4C4, symBinAddr: 0x437A0, symSize: 0x3C } + - { offsetInCU: 0x6B8, offset: 0xA0054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x500, symBinAddr: 0x437DC, symSize: 0x4 } + - { offsetInCU: 0x6CC, offset: 0xA0068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x504, symBinAddr: 0x437E0, symSize: 0x30 } + - { offsetInCU: 0x6E0, offset: 0xA007C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x534, symBinAddr: 0x43810, symSize: 0x3C } + - { offsetInCU: 0x6F4, offset: 0xA0090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x570, symBinAddr: 0x4384C, symSize: 0x3C } + - { offsetInCU: 0x708, offset: 0xA00A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x5AC, symBinAddr: 0x43888, symSize: 0xA0 } + - { offsetInCU: 0x731, offset: 0xA00CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x64C, symBinAddr: 0x43928, symSize: 0xA4 } + - { offsetInCU: 0x7E3, offset: 0xA017F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x6F0, symBinAddr: 0x439CC, symSize: 0x26C } + - { offsetInCU: 0x994, offset: 0xA0330, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0x95C, symBinAddr: 0x43C38, symSize: 0x1C } + - { offsetInCU: 0x9C5, offset: 0xA0361, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0x978, symBinAddr: 0x43C54, symSize: 0x24 } + - { offsetInCU: 0x18D, offset: 0xA052F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xE8C, symBinAddr: 0x44AFC, symSize: 0xE4 } + - { offsetInCU: 0x1A9, offset: 0xA054B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xF70, symBinAddr: 0x44BE0, symSize: 0x54 } + - { offsetInCU: 0x1FB, offset: 0xA059D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x133C, symBinAddr: 0x44FAC, symSize: 0x3C } + - { offsetInCU: 0x24E, offset: 0xA05F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x290, symBinAddr: 0x43F3C, symSize: 0x20 } + - { offsetInCU: 0x262, offset: 0xA0604, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x2B0, symBinAddr: 0x43F5C, symSize: 0x20 } + - { offsetInCU: 0x276, offset: 0xA0618, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x440, symBinAddr: 0x440B0, symSize: 0x20 } + - { offsetInCU: 0x28A, offset: 0xA062C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x19D0, symBinAddr: 0x45640, symSize: 0x18 } + - { offsetInCU: 0x29E, offset: 0xA0640, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x19E8, symBinAddr: 0x45658, symSize: 0x20 } + - { offsetInCU: 0x2B2, offset: 0xA0654, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1A08, symBinAddr: 0x45678, symSize: 0x18 } + - { offsetInCU: 0x2C6, offset: 0xA0668, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x1A68, symBinAddr: 0x456D8, symSize: 0xC } + - { offsetInCU: 0x2DA, offset: 0xA067C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1A74, symBinAddr: 0x456E4, symSize: 0x10 } + - { offsetInCU: 0x2EE, offset: 0xA0690, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1A84, symBinAddr: 0x456F4, symSize: 0x8 } + - { offsetInCU: 0x302, offset: 0xA06A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1A8C, symBinAddr: 0x456FC, symSize: 0x10 } + - { offsetInCU: 0x316, offset: 0xA06B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1A9C, symBinAddr: 0x4570C, symSize: 0x10 } + - { offsetInCU: 0x32A, offset: 0xA06CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1AAC, symBinAddr: 0x4571C, symSize: 0x10 } + - { offsetInCU: 0x33E, offset: 0xA06E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1ABC, symBinAddr: 0x4572C, symSize: 0x10 } + - { offsetInCU: 0x352, offset: 0xA06F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1ACC, symBinAddr: 0x4573C, symSize: 0x10 } + - { offsetInCU: 0x366, offset: 0xA0708, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1ADC, symBinAddr: 0x4574C, symSize: 0x4 } + - { offsetInCU: 0x37A, offset: 0xA071C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1AE0, symBinAddr: 0x45750, symSize: 0x50 } + - { offsetInCU: 0x38E, offset: 0xA0730, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B30, symBinAddr: 0x457A0, symSize: 0xC } + - { offsetInCU: 0x3A2, offset: 0xA0744, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B3C, symBinAddr: 0x457AC, symSize: 0xC } + - { offsetInCU: 0x3B6, offset: 0xA0758, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1D8C, symBinAddr: 0x459FC, symSize: 0x7C } + - { offsetInCU: 0x3CA, offset: 0xA076C, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E08, symBinAddr: 0x45A78, symSize: 0x2C } + - { offsetInCU: 0x40A, offset: 0xA07AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0x109C, symBinAddr: 0x44D0C, symSize: 0x50 } + - { offsetInCU: 0x426, offset: 0xA07C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0x10EC, symBinAddr: 0x44D5C, symSize: 0x40 } + - { offsetInCU: 0x442, offset: 0xA07E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0x112C, symBinAddr: 0x44D9C, symSize: 0x4 } + - { offsetInCU: 0x45E, offset: 0xA0800, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0x1130, symBinAddr: 0x44DA0, symSize: 0x4 } + - { offsetInCU: 0x499, offset: 0xA083B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1134, symBinAddr: 0x44DA4, symSize: 0x10 } + - { offsetInCU: 0x4B9, offset: 0xA085B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1134, symBinAddr: 0x44DA4, symSize: 0x10 } + - { offsetInCU: 0x4CA, offset: 0xA086C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0x1144, symBinAddr: 0x44DB4, symSize: 0x60 } + - { offsetInCU: 0x4E6, offset: 0xA0888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x11A4, symBinAddr: 0x44E14, symSize: 0x64 } + - { offsetInCU: 0x502, offset: 0xA08A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1208, symBinAddr: 0x44E78, symSize: 0x50 } + - { offsetInCU: 0x542, offset: 0xA08E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x12EC, symBinAddr: 0x44F5C, symSize: 0x50 } + - { offsetInCU: 0x58C, offset: 0xA092E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x1378, symBinAddr: 0x44FE8, symSize: 0x78 } + - { offsetInCU: 0x5E4, offset: 0xA0986, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x13F0, symBinAddr: 0x45060, symSize: 0x60 } + - { offsetInCU: 0x622, offset: 0xA09C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x1450, symBinAddr: 0x450C0, symSize: 0x34 } + - { offsetInCU: 0x63E, offset: 0xA09E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1484, symBinAddr: 0x450F4, symSize: 0x8 } + - { offsetInCU: 0x674, offset: 0xA0A16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x148C, symBinAddr: 0x450FC, symSize: 0x5C } + - { offsetInCU: 0x6A5, offset: 0xA0A47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x14E8, symBinAddr: 0x45158, symSize: 0x5C } + - { offsetInCU: 0x6C1, offset: 0xA0A63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x1544, symBinAddr: 0x451B4, symSize: 0x70 } + - { offsetInCU: 0x6E4, offset: 0xA0A86, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x1758, symBinAddr: 0x453C8, symSize: 0x4 } + - { offsetInCU: 0x70D, offset: 0xA0AAF, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B48, symBinAddr: 0x457B8, symSize: 0x178 } + - { offsetInCU: 0x894, offset: 0xA0C36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x43CAC, symSize: 0x54 } + - { offsetInCU: 0x8A8, offset: 0xA0C4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x170, symBinAddr: 0x43E1C, symSize: 0x120 } + - { offsetInCU: 0x917, offset: 0xA0CB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x30C, symBinAddr: 0x43F7C, symSize: 0x78 } + - { offsetInCU: 0x967, offset: 0xA0D09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x384, symBinAddr: 0x43FF4, symSize: 0xBC } + - { offsetInCU: 0x9D1, offset: 0xA0D73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x460, symBinAddr: 0x440D0, symSize: 0x60 } + - { offsetInCU: 0x9F9, offset: 0xA0D9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x4C0, symBinAddr: 0x44130, symSize: 0x140 } + - { offsetInCU: 0xA61, offset: 0xA0E03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x600, symBinAddr: 0x44270, symSize: 0x64 } + - { offsetInCU: 0xAA3, offset: 0xA0E45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x664, symBinAddr: 0x442D4, symSize: 0x90 } + - { offsetInCU: 0xB01, offset: 0xA0EA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x6F4, symBinAddr: 0x44364, symSize: 0xC4 } + - { offsetInCU: 0xB53, offset: 0xA0EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x7B8, symBinAddr: 0x44428, symSize: 0xDC } + - { offsetInCU: 0xB96, offset: 0xA0F38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x894, symBinAddr: 0x44504, symSize: 0x104 } + - { offsetInCU: 0xBE6, offset: 0xA0F88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x998, symBinAddr: 0x44608, symSize: 0xD8 } + - { offsetInCU: 0xC44, offset: 0xA0FE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0xA70, symBinAddr: 0x446E0, symSize: 0xBC } + - { offsetInCU: 0xC86, offset: 0xA1028, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0xB2C, symBinAddr: 0x4479C, symSize: 0x88 } + - { offsetInCU: 0xCE4, offset: 0xA1086, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xBB4, symBinAddr: 0x44824, symSize: 0x190 } + - { offsetInCU: 0xD31, offset: 0xA10D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xD44, symBinAddr: 0x449B4, symSize: 0xB0 } + - { offsetInCU: 0xD7F, offset: 0xA1121, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xDF4, symBinAddr: 0x44A64, symSize: 0x24 } + - { offsetInCU: 0xDB5, offset: 0xA1157, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xE18, symBinAddr: 0x44A88, symSize: 0x2C } + - { offsetInCU: 0xDF5, offset: 0xA1197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xFC4, symBinAddr: 0x44C34, symSize: 0xA8 } + - { offsetInCU: 0xE44, offset: 0xA11E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0x106C, symBinAddr: 0x44CDC, symSize: 0x30 } + - { offsetInCU: 0xEB2, offset: 0xA1254, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x175C, symBinAddr: 0x453CC, symSize: 0x274 } +... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS new file mode 100644 index 0000000..be84b06 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml new file mode 100644 index 0000000..881a1ec --- /dev/null +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml @@ -0,0 +1,1662 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' +relocations: + - { offsetInCU: 0x34, offset: 0x58969, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6F4D0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5899E, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6F508, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58A03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x39BC8, symBinAddr: 0x88B78, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x58CA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x93A0, symBinAddr: 0x11338, symSize: 0x15FC } + - { offsetInCU: 0x1C16, offset: 0x5A5CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x8000, symSize: 0x3C } + - { offsetInCU: 0x1DD2, offset: 0x5A786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1B6C, symBinAddr: 0x9B2C, symSize: 0x8 } + - { offsetInCU: 0x1DE6, offset: 0x5A79A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1B74, symBinAddr: 0x9B34, symSize: 0x3C } + - { offsetInCU: 0x1DFA, offset: 0x5A7AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1BB0, symBinAddr: 0x9B70, symSize: 0x168 } + - { offsetInCU: 0x2260, offset: 0x5AC14, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8184, symBinAddr: 0x10134, symSize: 0xC } + - { offsetInCU: 0x2274, offset: 0x5AC28, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8190, symBinAddr: 0x10140, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x5AC3C, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8194, symBinAddr: 0x10144, symSize: 0x20 } + - { offsetInCU: 0x229C, offset: 0x5AC50, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x81B4, symBinAddr: 0x10164, symSize: 0x28 } + - { offsetInCU: 0x24C1, offset: 0x5AE75, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x87F4, symBinAddr: 0x1078C, symSize: 0x2C } + - { offsetInCU: 0x24D5, offset: 0x5AE89, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8820, symBinAddr: 0x107B8, symSize: 0x2C } + - { offsetInCU: 0x24E9, offset: 0x5AE9D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x888C, symBinAddr: 0x10824, symSize: 0x2C } + - { offsetInCU: 0x24FD, offset: 0x5AEB1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x88B8, symBinAddr: 0x10850, symSize: 0x2C } + - { offsetInCU: 0x2566, offset: 0x5AF1A, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x8CC8, symBinAddr: 0x10C60, symSize: 0x68 } + - { offsetInCU: 0x2B9B, offset: 0x5B54F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xAA0C, symBinAddr: 0x129A4, symSize: 0x48 } + - { offsetInCU: 0x2BAF, offset: 0x5B563, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xAA54, symBinAddr: 0x129EC, symSize: 0x40 } + - { offsetInCU: 0x2BC3, offset: 0x5B577, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xAA94, symBinAddr: 0x12A2C, symSize: 0x20 } + - { offsetInCU: 0x2BD7, offset: 0x5B58B, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xAAB4, symBinAddr: 0x12A4C, symSize: 0x10 } + - { offsetInCU: 0x2BEB, offset: 0x5B59F, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xAAC4, symBinAddr: 0x12A5C, symSize: 0x3C } + - { offsetInCU: 0x2BFF, offset: 0x5B5B3, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAB60, symBinAddr: 0x12AF8, symSize: 0x44 } + - { offsetInCU: 0x2C13, offset: 0x5B5C7, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xAD2C, symBinAddr: 0x12CC4, symSize: 0x8 } + - { offsetInCU: 0x2C27, offset: 0x5B5DB, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xAD34, symBinAddr: 0x12CCC, symSize: 0x10 } + - { offsetInCU: 0x2C3B, offset: 0x5B5EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xAD44, symBinAddr: 0x12CDC, symSize: 0x5C } + - { offsetInCU: 0x2C4F, offset: 0x5B603, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xADA0, symBinAddr: 0x12D38, symSize: 0x30C } + - { offsetInCU: 0x2C63, offset: 0x5B617, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB0AC, symBinAddr: 0x13044, symSize: 0x240 } + - { offsetInCU: 0x2C77, offset: 0x5B62B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xB2EC, symBinAddr: 0x13284, symSize: 0x70 } + - { offsetInCU: 0x2C8B, offset: 0x5B63F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xB35C, symBinAddr: 0x132F4, symSize: 0x34 } + - { offsetInCU: 0x2C9F, offset: 0x5B653, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xB390, symBinAddr: 0x13328, symSize: 0x174 } + - { offsetInCU: 0x2CB3, offset: 0x5B667, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xB504, symBinAddr: 0x1349C, symSize: 0xB4 } + - { offsetInCU: 0x2CC7, offset: 0x5B67B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xB5B8, symBinAddr: 0x13550, symSize: 0x10 } + - { offsetInCU: 0x2CDB, offset: 0x5B68F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xB5C8, symBinAddr: 0x13560, symSize: 0x34 } + - { offsetInCU: 0x2CEF, offset: 0x5B6A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xB638, symBinAddr: 0x135D0, symSize: 0x5C } + - { offsetInCU: 0x2D03, offset: 0x5B6B7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xB738, symBinAddr: 0x136D0, symSize: 0x2C } + - { offsetInCU: 0x2D17, offset: 0x5B6CB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xB764, symBinAddr: 0x136FC, symSize: 0x2C } + - { offsetInCU: 0x2D2B, offset: 0x5B6DF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xB790, symBinAddr: 0x13728, symSize: 0x2C } + - { offsetInCU: 0x2D3F, offset: 0x5B6F3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xB7BC, symBinAddr: 0x13754, symSize: 0x2C } + - { offsetInCU: 0x2D53, offset: 0x5B707, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xB7E8, symBinAddr: 0x13780, symSize: 0x2C } + - { offsetInCU: 0x2D67, offset: 0x5B71B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xB814, symBinAddr: 0x137AC, symSize: 0x2C } + - { offsetInCU: 0x2D7B, offset: 0x5B72F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xB840, symBinAddr: 0x137D8, symSize: 0x2C } + - { offsetInCU: 0x30D9, offset: 0x5BA8D, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6AA0, symBinAddr: 0xEA60, symSize: 0x6C } + - { offsetInCU: 0x31ED, offset: 0x5BBA1, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x81F0, symBinAddr: 0x101A0, symSize: 0x80 } + - { offsetInCU: 0x327E, offset: 0x5BC32, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8270, symBinAddr: 0x10220, symSize: 0x90 } + - { offsetInCU: 0x331E, offset: 0x5BCD2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8300, symBinAddr: 0x102B0, symSize: 0x14 } + - { offsetInCU: 0x335C, offset: 0x5BD10, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8320, symBinAddr: 0x102D0, symSize: 0x8 } + - { offsetInCU: 0x33BF, offset: 0x5BD73, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8328, symBinAddr: 0x102D8, symSize: 0x14 } + - { offsetInCU: 0x3470, offset: 0x5BE24, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x833C, symBinAddr: 0x102EC, symSize: 0x14 } + - { offsetInCU: 0x3519, offset: 0x5BECD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8350, symBinAddr: 0x10300, symSize: 0x14 } + - { offsetInCU: 0x35C0, offset: 0x5BF74, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8364, symBinAddr: 0x10314, symSize: 0x30 } + - { offsetInCU: 0x374C, offset: 0x5C100, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8394, symBinAddr: 0x10344, symSize: 0x2C } + - { offsetInCU: 0x38E3, offset: 0x5C297, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x83C0, symBinAddr: 0x10370, symSize: 0x24 } + - { offsetInCU: 0x39CF, offset: 0x5C383, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x83E4, symBinAddr: 0x10394, symSize: 0x14 } + - { offsetInCU: 0x3A35, offset: 0x5C3E9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x83F8, symBinAddr: 0x103A8, symSize: 0x14 } + - { offsetInCU: 0x3A9B, offset: 0x5C44F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x840C, symBinAddr: 0x103BC, symSize: 0x14 } + - { offsetInCU: 0x3B1A, offset: 0x5C4CE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8420, symBinAddr: 0x103D0, symSize: 0x14 } + - { offsetInCU: 0x3BCD, offset: 0x5C581, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8434, symBinAddr: 0x103E4, symSize: 0x14 } + - { offsetInCU: 0x3C4E, offset: 0x5C602, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8448, symBinAddr: 0x103F8, symSize: 0x14 } + - { offsetInCU: 0x3D10, offset: 0x5C6C4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x845C, symBinAddr: 0x1040C, symSize: 0x14 } + - { offsetInCU: 0x3DAA, offset: 0x5C75E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8470, symBinAddr: 0x10420, symSize: 0x10 } + - { offsetInCU: 0x3E12, offset: 0x5C7C6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8480, symBinAddr: 0x10430, symSize: 0x18 } + - { offsetInCU: 0x3E2E, offset: 0x5C7E2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8498, symBinAddr: 0x10448, symSize: 0x14 } + - { offsetInCU: 0x3EAA, offset: 0x5C85E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x84C8, symBinAddr: 0x10478, symSize: 0x8 } + - { offsetInCU: 0x3EC6, offset: 0x5C87A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x84D0, symBinAddr: 0x10480, symSize: 0x14 } + - { offsetInCU: 0x3EF7, offset: 0x5C8AB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x84E4, symBinAddr: 0x10494, symSize: 0x14 } + - { offsetInCU: 0x3F28, offset: 0x5C8DC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x84F8, symBinAddr: 0x104A8, symSize: 0x14 } + - { offsetInCU: 0x3F59, offset: 0x5C90D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x850C, symBinAddr: 0x104BC, symSize: 0x30 } + - { offsetInCU: 0x3F88, offset: 0x5C93C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x853C, symBinAddr: 0x104EC, symSize: 0x2C } + - { offsetInCU: 0x3FB9, offset: 0x5C96D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8568, symBinAddr: 0x10518, symSize: 0x24 } + - { offsetInCU: 0x3FEA, offset: 0x5C99E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x858C, symBinAddr: 0x1053C, symSize: 0x14 } + - { offsetInCU: 0x401B, offset: 0x5C9CF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x85A0, symBinAddr: 0x10550, symSize: 0x14 } + - { offsetInCU: 0x404C, offset: 0x5CA00, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x85B4, symBinAddr: 0x10564, symSize: 0x14 } + - { offsetInCU: 0x407D, offset: 0x5CA31, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x85C8, symBinAddr: 0x10578, symSize: 0x14 } + - { offsetInCU: 0x40AE, offset: 0x5CA62, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x85DC, symBinAddr: 0x1058C, symSize: 0x14 } + - { offsetInCU: 0x40DF, offset: 0x5CA93, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x85F0, symBinAddr: 0x105A0, symSize: 0x14 } + - { offsetInCU: 0x4110, offset: 0x5CAC4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8604, symBinAddr: 0x105B4, symSize: 0x14 } + - { offsetInCU: 0x4141, offset: 0x5CAF5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8618, symBinAddr: 0x105C8, symSize: 0x10 } + - { offsetInCU: 0x4172, offset: 0x5CB26, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8628, symBinAddr: 0x105D8, symSize: 0x18 } + - { offsetInCU: 0x418E, offset: 0x5CB42, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8640, symBinAddr: 0x105F0, symSize: 0x14 } + - { offsetInCU: 0x41DE, offset: 0x5CB92, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8660, symBinAddr: 0x10610, symSize: 0x40 } + - { offsetInCU: 0x4266, offset: 0x5CC1A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x86A0, symBinAddr: 0x10650, symSize: 0x70 } + - { offsetInCU: 0x42EA, offset: 0x5CC9E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8758, symBinAddr: 0x10708, symSize: 0x4 } + - { offsetInCU: 0x4306, offset: 0x5CCBA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x875C, symBinAddr: 0x1070C, symSize: 0x4 } + - { offsetInCU: 0x4331, offset: 0x5CCE5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8760, symBinAddr: 0x10710, symSize: 0x40 } + - { offsetInCU: 0x43BF, offset: 0x5CD73, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x87B8, symBinAddr: 0x10750, symSize: 0x3C } + - { offsetInCU: 0x43F0, offset: 0x5CDA4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x88E4, symBinAddr: 0x1087C, symSize: 0x14 } + - { offsetInCU: 0x4427, offset: 0x5CDDB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x88F8, symBinAddr: 0x10890, symSize: 0x3C } + - { offsetInCU: 0x4467, offset: 0x5CE1B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8934, symBinAddr: 0x108CC, symSize: 0x88 } + - { offsetInCU: 0x4511, offset: 0x5CEC5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8A50, symBinAddr: 0x109E8, symSize: 0x84 } + - { offsetInCU: 0x4545, offset: 0x5CEF9, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9068, symBinAddr: 0x11000, symSize: 0xB8 } + - { offsetInCU: 0x461D, offset: 0x5CFD1, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9120, symBinAddr: 0x110B8, symSize: 0x164 } + - { offsetInCU: 0x489B, offset: 0x5D24F, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x48BB, offset: 0x5D26F, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x48CF, offset: 0x5D283, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x48EF, offset: 0x5D2A3, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x4903, offset: 0x5D2B7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x4917, offset: 0x5D2CB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x492B, offset: 0x5D2DF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x4A28, offset: 0x5D3DC, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4A48, offset: 0x5D3FC, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4A5C, offset: 0x5D410, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4A7C, offset: 0x5D430, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4A90, offset: 0x5D444, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4AA4, offset: 0x5D458, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4AB8, offset: 0x5D46C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4CE5, offset: 0x5D699, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x89E4, symBinAddr: 0x1097C, symSize: 0x44 } + - { offsetInCU: 0x4D0E, offset: 0x5D6C2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8A28, symBinAddr: 0x109C0, symSize: 0x28 } + - { offsetInCU: 0x4D49, offset: 0x5D6FD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x89C8, symBinAddr: 0x10960, symSize: 0x10 } + - { offsetInCU: 0x4D65, offset: 0x5D719, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x89D8, symBinAddr: 0x10970, symSize: 0xC } + - { offsetInCU: 0x4D93, offset: 0x5D747, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x89BC, symBinAddr: 0x10954, symSize: 0xC } + - { offsetInCU: 0x4E6B, offset: 0x5D81F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8314, symBinAddr: 0x102C4, symSize: 0xC } + - { offsetInCU: 0x4E9D, offset: 0x5D851, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x84AC, symBinAddr: 0x1045C, symSize: 0x10 } + - { offsetInCU: 0x4EB9, offset: 0x5D86D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x84BC, symBinAddr: 0x1046C, symSize: 0xC } + - { offsetInCU: 0x4F17, offset: 0x5D8CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x803C, symSize: 0x44 } + - { offsetInCU: 0x4F2B, offset: 0x5D8DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x8080, symSize: 0x4 } + - { offsetInCU: 0x4F53, offset: 0x5D907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x8084, symSize: 0x2BC } + - { offsetInCU: 0x5084, offset: 0x5DA38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x8340, symSize: 0x1444 } + - { offsetInCU: 0x5385, offset: 0x5DD39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x17C4, symBinAddr: 0x9784, symSize: 0x384 } + - { offsetInCU: 0x53DE, offset: 0x5DD92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1B48, symBinAddr: 0x9B08, symSize: 0x24 } + - { offsetInCU: 0x5416, offset: 0x5DDCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D18, symBinAddr: 0x9CD8, symSize: 0x298 } + - { offsetInCU: 0x5587, offset: 0x5DF3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1FB0, symBinAddr: 0x9F70, symSize: 0x3E4 } + - { offsetInCU: 0x5832, offset: 0x5E1E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2394, symBinAddr: 0xA354, symSize: 0x794 } + - { offsetInCU: 0x5E83, offset: 0x5E837, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2B28, symBinAddr: 0xAAE8, symSize: 0x534 } + - { offsetInCU: 0x6278, offset: 0x5EC2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x305C, symBinAddr: 0xB01C, symSize: 0x3A44 } + - { offsetInCU: 0x7251, offset: 0x5FC05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6B1C, symBinAddr: 0xEACC, symSize: 0x150 } + - { offsetInCU: 0x7330, offset: 0x5FCE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6C6C, symBinAddr: 0xEC1C, symSize: 0x300 } + - { offsetInCU: 0x7593, offset: 0x5FF47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x6F6C, symBinAddr: 0xEF1C, symSize: 0x3C8 } + - { offsetInCU: 0x78F1, offset: 0x602A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7334, symBinAddr: 0xF2E4, symSize: 0x2B0 } + - { offsetInCU: 0x7A98, offset: 0x6044C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7834, symBinAddr: 0xF7E4, symSize: 0x31C } + - { offsetInCU: 0x7BF3, offset: 0x605A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x7B50, symBinAddr: 0xFB00, symSize: 0x438 } + - { offsetInCU: 0x7E5D, offset: 0x60811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x7F88, symBinAddr: 0xFF38, symSize: 0x188 } + - { offsetInCU: 0x8119, offset: 0x60ACD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8AD4, symBinAddr: 0x10A6C, symSize: 0x1F4 } + - { offsetInCU: 0x819E, offset: 0x60B52, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x8E8C, symBinAddr: 0x10E24, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x60E50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13810, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x60E8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x13820, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x60F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13810, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x60FDF, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x1384C, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x60FF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x13860, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0x13940, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x610C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0x13958, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x6113A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0x13984, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x6116F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x1398C, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x611A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0x139B0, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x611BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0x139BC, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x611D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2398, symBinAddr: 0x15BD8, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61398, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13E8, symBinAddr: 0x14C28, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x613CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1438, symBinAddr: 0x14C78, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x613F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x27B4, symBinAddr: 0x15FF4, symSize: 0x145C } + - { offsetInCU: 0x4B4, offset: 0x61450, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1488, symBinAddr: 0x14CC8, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x614A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x14CD0, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x6158B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D0, symBinAddr: 0x14D10, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x615FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1530, symBinAddr: 0x14D70, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x6164B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x153C, symBinAddr: 0x14D7C, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x616A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15B8, symBinAddr: 0x14DF8, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x616C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15C4, symBinAddr: 0x14E04, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x616FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1620, symBinAddr: 0x14E60, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61735, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1670, symBinAddr: 0x14EB0, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61758, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3C10, symBinAddr: 0x17450, symSize: 0x258 } + - { offsetInCU: 0x857, offset: 0x617F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x14F08, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61828, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1724, symBinAddr: 0x14F64, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61859, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1748, symBinAddr: 0x14F88, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61875, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1754, symBinAddr: 0x14F94, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5DAC, symBinAddr: 0x195A8, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x6196A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0x14FF0, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x619A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1800, symBinAddr: 0x15040, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x619C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5F5C, symBinAddr: 0x19758, symSize: 0x320 } + - { offsetInCU: 0xA97, offset: 0x61A33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1848, symBinAddr: 0x15088, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61A68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1898, symBinAddr: 0x150D8, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61A99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x18BC, symBinAddr: 0x150FC, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61AB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18C8, symBinAddr: 0x15108, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61AD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x627C, symBinAddr: 0x19A78, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x61B81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1924, symBinAddr: 0x15164, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x61BB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1964, symBinAddr: 0x151A4, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x61BDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x63E4, symBinAddr: 0x19BE0, symSize: 0x2D8 } + - { offsetInCU: 0xCA2, offset: 0x61C3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x19A4, symBinAddr: 0x151E4, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x61C73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x19F0, symBinAddr: 0x15230, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x61CA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A14, symBinAddr: 0x15254, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x61CC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x15260, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x61CDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x66BC, symBinAddr: 0x19EB8, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x61D9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A7C, symBinAddr: 0x152BC, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x61DD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AEC, symBinAddr: 0x1532C, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x61DF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x681C, symBinAddr: 0x1A018, symSize: 0x4E8 } + - { offsetInCU: 0xEC9, offset: 0x61E65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B4C, symBinAddr: 0x1538C, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x61E9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BD4, symBinAddr: 0x15414, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x61ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BF8, symBinAddr: 0x15438, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x61EE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C04, symBinAddr: 0x15444, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x61F03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6DD0, symBinAddr: 0x1A5CC, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x62017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C60, symBinAddr: 0x154A0, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x6204E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CC4, symBinAddr: 0x15504, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x62071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7064, symBinAddr: 0x1A860, symSize: 0x58C } + - { offsetInCU: 0x1162, offset: 0x620FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D14, symBinAddr: 0x15554, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6217E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1D2C, symBinAddr: 0x1556C, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x62261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D70, symBinAddr: 0x155B0, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x622E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DD8, symBinAddr: 0x15618, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x6233C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DF4, symBinAddr: 0x15634, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x6236D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E18, symBinAddr: 0x15658, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x62389, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E24, symBinAddr: 0x15664, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x623A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7634, symBinAddr: 0x1AE30, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62433, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x156C0, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x6246A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EAC, symBinAddr: 0x156EC, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x6248D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x76F4, symBinAddr: 0x1AEF0, symSize: 0x1B0 } + - { offsetInCU: 0x156C, offset: 0x62508, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1ED0, symBinAddr: 0x15710, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x6253D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x15780, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x6256E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1F64, symBinAddr: 0x157A4, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x6258A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F70, symBinAddr: 0x157B0, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x625A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x78E8, symBinAddr: 0x1B0E4, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x626B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FCC, symBinAddr: 0x1580C, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x626E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2024, symBinAddr: 0x15864, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x6270B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7B2C, symBinAddr: 0x1B328, symSize: 0x370 } + - { offsetInCU: 0x17D2, offset: 0x6276E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x158B4, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x627A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x20D8, symBinAddr: 0x15918, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x627D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x20FC, symBinAddr: 0x1593C, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x627F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2108, symBinAddr: 0x15948, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x6280C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E9C, symBinAddr: 0x1B698, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x628EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2164, symBinAddr: 0x159A4, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62925, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21AC, symBinAddr: 0x159EC, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62948, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8090, symBinAddr: 0x1B88C, symSize: 0x390 } + - { offsetInCU: 0x1A2F, offset: 0x629CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2278, symBinAddr: 0x15AB8, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62A15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2290, symBinAddr: 0x15AD0, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22B4, symBinAddr: 0x15AF4, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62A62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x22C0, symBinAddr: 0x15B00, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x84A8, symBinAddr: 0x1BCA4, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x62B25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x231C, symBinAddr: 0x15B5C, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x62B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2360, symBinAddr: 0x15BA0, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x62B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x85B4, symBinAddr: 0x1BDB0, symSize: 0x1DC } + - { offsetInCU: 0x1C20, offset: 0x62BBC, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3EA8, symBinAddr: 0x176A8, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x62BD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3ECC, symBinAddr: 0x176CC, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x62BE4, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F10, symBinAddr: 0x17710, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x62BF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3F30, symBinAddr: 0x17730, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x62C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3F74, symBinAddr: 0x17774, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x62C20, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FB8, symBinAddr: 0x177B8, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x62C34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3FC0, symBinAddr: 0x177BC, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x62C48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4010, symBinAddr: 0x1780C, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x62C5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x409C, symBinAddr: 0x17898, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x62C70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x40A4, symBinAddr: 0x178A0, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x62C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x40A8, symBinAddr: 0x178A4, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x62C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x40AC, symBinAddr: 0x178A8, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x62CAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x40BC, symBinAddr: 0x178B8, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x62CC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x496C, symBinAddr: 0x18168, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x62CD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x497C, symBinAddr: 0x18178, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x62CE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4980, symBinAddr: 0x1817C, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x62CFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x49C4, symBinAddr: 0x181C0, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x62D10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x49C8, symBinAddr: 0x181C4, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x62D24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4A0C, symBinAddr: 0x18208, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x62D38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4A10, symBinAddr: 0x1820C, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x62D4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x4A54, symBinAddr: 0x18250, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x62D60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4A98, symBinAddr: 0x18294, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x62D74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4ADC, symBinAddr: 0x182D8, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x62D88, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4B20, symBinAddr: 0x1831C, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x62D9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x4B64, symBinAddr: 0x18360, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x62DB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4BA8, symBinAddr: 0x183A4, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x62DC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x4BEC, symBinAddr: 0x183E8, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x62DD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x4C30, symBinAddr: 0x1842C, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x62DEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x4C74, symBinAddr: 0x18470, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x62E00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x4CB8, symBinAddr: 0x184B4, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x62E14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x4CFC, symBinAddr: 0x184F8, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x62E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4D40, symBinAddr: 0x1853C, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x62E3C, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4D84, symBinAddr: 0x18580, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x62E50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4D90, symBinAddr: 0x1858C, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x62E64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4E20, symBinAddr: 0x1861C, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x62E78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4EDC, symBinAddr: 0x186D8, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x62E8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4EE4, symBinAddr: 0x186E0, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x62EA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4EE8, symBinAddr: 0x186E4, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x62EB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4EF0, symBinAddr: 0x186EC, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x62EC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4F00, symBinAddr: 0x186FC, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x62EDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4F28, symBinAddr: 0x18724, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x62EF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4F6C, symBinAddr: 0x18768, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x62F04, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4FE0, symBinAddr: 0x187DC, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x62F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4FF4, symBinAddr: 0x187F0, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x62F2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x5040, symBinAddr: 0x1883C, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x62F40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x5088, symBinAddr: 0x18884, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x62F54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x50D0, symBinAddr: 0x188CC, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x62F68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x50E0, symBinAddr: 0x188DC, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x62F7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5118, symBinAddr: 0x18914, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x62F90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x518C, symBinAddr: 0x18988, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x62FA4, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5248, symBinAddr: 0x18A44, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x62FB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x5264, symBinAddr: 0x18A60, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x62FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x52E0, symBinAddr: 0x18ADC, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x62FE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5328, symBinAddr: 0x18B24, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x62FF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x537C, symBinAddr: 0x18B78, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x63008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x538C, symBinAddr: 0x18B88, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x6301C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x53B4, symBinAddr: 0x18BB0, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x63030, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x53F0, symBinAddr: 0x18BEC, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x63044, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x545C, symBinAddr: 0x18C58, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x63058, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5468, symBinAddr: 0x18C64, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x6306C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x54AC, symBinAddr: 0x18CA8, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x63080, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x54F4, symBinAddr: 0x18CF0, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63094, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5534, symBinAddr: 0x18D30, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x630A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x5544, symBinAddr: 0x18D40, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x630BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x5594, symBinAddr: 0x18D90, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x630D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5640, symBinAddr: 0x18E3C, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x630E4, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5754, symBinAddr: 0x18F50, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x630F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5780, symBinAddr: 0x18F7C, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x6310C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x581C, symBinAddr: 0x19018, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x63120, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x5864, symBinAddr: 0x19060, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x63134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x58C0, symBinAddr: 0x190BC, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x63148, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x58D0, symBinAddr: 0x190CC, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x6315C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5928, symBinAddr: 0x19124, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x63170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x59EC, symBinAddr: 0x191E8, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63184, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5B30, symBinAddr: 0x1932C, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x5B64, symBinAddr: 0x19360, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x631AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x5C18, symBinAddr: 0x19414, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x631C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5C60, symBinAddr: 0x1945C, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x631D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x5CC4, symBinAddr: 0x194C0, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x631E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5CD4, symBinAddr: 0x194D0, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x631FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x5CD8, symBinAddr: 0x194D4, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x63210, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5D1C, symBinAddr: 0x19518, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x63224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5D20, symBinAddr: 0x1951C, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x63238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5D64, symBinAddr: 0x19560, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x6324C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5D68, symBinAddr: 0x19564, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x63260, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x6D04, symBinAddr: 0x1A500, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63274, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x6D48, symBinAddr: 0x1A544, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63288, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6D8C, symBinAddr: 0x1A588, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x6329C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x75F0, symBinAddr: 0x1ADEC, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x632B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x78A4, symBinAddr: 0x1B0A0, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x632C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8420, symBinAddr: 0x1BC1C, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x632D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8464, symBinAddr: 0x1BC60, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x632EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8790, symBinAddr: 0x1BF8C, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x63300, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x87D4, symBinAddr: 0x1BFD0, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63314, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x8818, symBinAddr: 0x1C014, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63328, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x88C0, symBinAddr: 0x1C0BC, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x6333C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8904, symBinAddr: 0x1C100, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x63350, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8994, symBinAddr: 0x1C190, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63364, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A50, symBinAddr: 0x1C24C, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63378, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A54, symBinAddr: 0x1C250, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x6338C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8A64, symBinAddr: 0x1C260, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x633A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8AF4, symBinAddr: 0x1C2F0, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x633B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8BB0, symBinAddr: 0x1C3AC, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x633C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8BB4, symBinAddr: 0x1C3B0, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x633DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8BC4, symBinAddr: 0x1C3C0, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x633F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8C54, symBinAddr: 0x1C450, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63404, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x8D10, symBinAddr: 0x1C50C, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63418, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8D18, symBinAddr: 0x1C514, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x6342C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x8D1C, symBinAddr: 0x1C518, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x63440, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8D28, symBinAddr: 0x1C524, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63454, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8D38, symBinAddr: 0x1C534, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63468, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8DC8, symBinAddr: 0x1C5C4, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x6347C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8E84, symBinAddr: 0x1C680, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x63490, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8E88, symBinAddr: 0x1C684, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x634A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8EA0, symBinAddr: 0x1C69C, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x634B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8EA4, symBinAddr: 0x1C6A0, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x634CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8EB4, symBinAddr: 0x1C6B0, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x634E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8EEC, symBinAddr: 0x1C6E8, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x634F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8F60, symBinAddr: 0x1C75C, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63508, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9024, symBinAddr: 0x1C820, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x6351C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x9048, symBinAddr: 0x1C844, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x90BC, symBinAddr: 0x1C8B8, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63544, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x9104, symBinAddr: 0x1C900, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63558, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x9158, symBinAddr: 0x1C954, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x6356C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x9168, symBinAddr: 0x1C964, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63580, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x91A0, symBinAddr: 0x1C99C, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63594, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x9204, symBinAddr: 0x1CA00, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x635A8, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x92B0, symBinAddr: 0x1CAAC, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x635BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x92C4, symBinAddr: 0x1CAC0, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x635D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x9328, symBinAddr: 0x1CB24, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x635E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9370, symBinAddr: 0x1CB6C, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x635F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x93C0, symBinAddr: 0x1CBBC, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x6360C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x93D0, symBinAddr: 0x1CBCC, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63620, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x9408, symBinAddr: 0x1CC04, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63634, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9474, symBinAddr: 0x1CC70, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63648, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9528, symBinAddr: 0x1CD24, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x6365C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x954C, symBinAddr: 0x1CD48, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63670, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x95B8, symBinAddr: 0x1CDB4, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63684, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x9600, symBinAddr: 0x1CDFC, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63698, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9650, symBinAddr: 0x1CE4C, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x636AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9660, symBinAddr: 0x1CE5C, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x636C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9664, symBinAddr: 0x1CE60, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x636D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x96A8, symBinAddr: 0x1CEA4, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x636E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x96AC, symBinAddr: 0x1CEA8, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x636FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x96F0, symBinAddr: 0x1CEEC, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63710, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x96F4, symBinAddr: 0x1CEF0, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63724, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9738, symBinAddr: 0x1CF34, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63738, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x973C, symBinAddr: 0x1CF38, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x6374C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9780, symBinAddr: 0x1CF7C, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63760, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9784, symBinAddr: 0x1CF80, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63774, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97C8, symBinAddr: 0x1CFC4, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63788, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97CC, symBinAddr: 0x1CFC8, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x6379C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9810, symBinAddr: 0x1D00C, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x637B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9814, symBinAddr: 0x1D010, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x637C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9858, symBinAddr: 0x1D054, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x637D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x985C, symBinAddr: 0x1D058, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x637EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x98A0, symBinAddr: 0x1D09C, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63800, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x98A4, symBinAddr: 0x1D0A0, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63814, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98E8, symBinAddr: 0x1D0E4, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63828, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98EC, symBinAddr: 0x1D0E8, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x6383C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9930, symBinAddr: 0x1D12C, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63850, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9934, symBinAddr: 0x1D130, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63864, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9978, symBinAddr: 0x1D174, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63878, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x997C, symBinAddr: 0x1D178, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x6388C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x99C0, symBinAddr: 0x1D1BC, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x638A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x99C4, symBinAddr: 0x1D1C0, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x638B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9A08, symBinAddr: 0x1D204, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x638C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9A0C, symBinAddr: 0x1D208, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x638DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9A50, symBinAddr: 0x1D24C, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x638F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9A54, symBinAddr: 0x1D250, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63904, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9A98, symBinAddr: 0x1D294, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63918, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9ADC, symBinAddr: 0x1D2D8, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x6392C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9B20, symBinAddr: 0x1D31C, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63940, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9B64, symBinAddr: 0x1D360, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63954, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9BF4, symBinAddr: 0x1D3F0, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63968, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9CB0, symBinAddr: 0x1D4AC, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x6397C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9CB4, symBinAddr: 0x1D4B0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63990, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9E18, symBinAddr: 0x1D614, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x639A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9E1C, symBinAddr: 0x1D618, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x639B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9E2C, symBinAddr: 0x1D628, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x639CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9EBC, symBinAddr: 0x1D6B8, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x639E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9F78, symBinAddr: 0x1D774, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x639F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9F7C, symBinAddr: 0x1D778, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63A08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F8C, symBinAddr: 0x1D788, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63A1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x1D78C, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63A30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9FD4, symBinAddr: 0x1D7D0, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63A44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9FD8, symBinAddr: 0x1D7D4, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63A58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA01C, symBinAddr: 0x1D818, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63A6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA020, symBinAddr: 0x1D81C, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63A80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA064, symBinAddr: 0x1D860, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63A94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA068, symBinAddr: 0x1D864, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63AA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA0AC, symBinAddr: 0x1D8A8, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63ABC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA0B0, symBinAddr: 0x1D8AC, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63AD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0F4, symBinAddr: 0x1D8F0, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63AE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0F8, symBinAddr: 0x1D8F4, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63AF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA13C, symBinAddr: 0x1D938, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x63B0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA140, symBinAddr: 0x1D93C, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x63B20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA184, symBinAddr: 0x1D980, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x63B34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA188, symBinAddr: 0x1D984, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x63B48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA1CC, symBinAddr: 0x1D9C8, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x63B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x1D9CC, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x63BB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0x139C8, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0x139F0, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x63C3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14F4, symBinAddr: 0x14D34, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x63CFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15D0, symBinAddr: 0x14E10, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x63D19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15F8, symBinAddr: 0x14E38, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x63D3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x14FA0, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x63D57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0x14FC8, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x63D79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18D4, symBinAddr: 0x15114, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x63D95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18FC, symBinAddr: 0x1513C, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x63DB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x1526C, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x63DD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x15294, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x63DF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C10, symBinAddr: 0x15450, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x63E11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x15478, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x63E64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D98, symBinAddr: 0x155D8, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x63F06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0x15670, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x63F22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E58, symBinAddr: 0x15698, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x63F44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F7C, symBinAddr: 0x157BC, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x63F60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1FA4, symBinAddr: 0x157E4, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x63F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2114, symBinAddr: 0x15954, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x63F9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x213C, symBinAddr: 0x1597C, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x63FC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x22CC, symBinAddr: 0x15B0C, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x63FDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x22F4, symBinAddr: 0x15B34, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x640C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x13870, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x64146, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0x13A18, symSize: 0x41C } + - { offsetInCU: 0x31DB, offset: 0x64177, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5F4, symBinAddr: 0x13E34, symSize: 0x110 } + - { offsetInCU: 0x320C, offset: 0x641A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x704, symBinAddr: 0x13F44, symSize: 0x18C } + - { offsetInCU: 0x323D, offset: 0x641D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x890, symBinAddr: 0x140D0, symSize: 0x164 } + - { offsetInCU: 0x326E, offset: 0x6420A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9F4, symBinAddr: 0x14234, symSize: 0x1B4 } + - { offsetInCU: 0x329F, offset: 0x6423B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xBA8, symBinAddr: 0x143E8, symSize: 0x204 } + - { offsetInCU: 0x32D0, offset: 0x6426C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDAC, symBinAddr: 0x145EC, symSize: 0x128 } + - { offsetInCU: 0x3301, offset: 0x6429D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xED4, symBinAddr: 0x14714, symSize: 0x1DC } + - { offsetInCU: 0x3332, offset: 0x642CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10B0, symBinAddr: 0x148F0, symSize: 0x1FC } + - { offsetInCU: 0x3363, offset: 0x642FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12AC, symBinAddr: 0x14AEC, symSize: 0x13C } + - { offsetInCU: 0x27, offset: 0x6453B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAA4, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x1DDB8, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64915, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x1DDE8, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x64929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x1DE28, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x6493D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x1DECC, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64951, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1DFD0, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x1DFFC, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x64979, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x1E098, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x6498D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1E0E0, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x649A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1E140, symSize: 0x10 } + - { offsetInCU: 0x60E, offset: 0x64B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAA4, symSize: 0x38 } + - { offsetInCU: 0x626, offset: 0x64B3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAA4, symSize: 0x38 } + - { offsetInCU: 0x64D, offset: 0x64B61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x1DADC, symSize: 0x3C } + - { offsetInCU: 0x667, offset: 0x64B7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x1DB18, symSize: 0x54 } + - { offsetInCU: 0x69C, offset: 0x64BB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x1DB6C, symSize: 0x10 } + - { offsetInCU: 0x6B0, offset: 0x64BC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x1DB7C, symSize: 0x4 } + - { offsetInCU: 0x6D1, offset: 0x64BE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0xDC, symBinAddr: 0x1DB80, symSize: 0x14 } + - { offsetInCU: 0x6E5, offset: 0x64BF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0xF0, symBinAddr: 0x1DB94, symSize: 0x14 } + - { offsetInCU: 0x715, offset: 0x64C29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x104, symBinAddr: 0x1DBA8, symSize: 0x10 } + - { offsetInCU: 0x739, offset: 0x64C4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x1DBB8, symSize: 0x4 } + - { offsetInCU: 0x75A, offset: 0x64C6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x1DBBC, symSize: 0x2C } + - { offsetInCU: 0x76E, offset: 0x64C82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x1DBE8, symSize: 0x34 } + - { offsetInCU: 0x7A3, offset: 0x64CB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1DC1C, symSize: 0x10 } + - { offsetInCU: 0x7C7, offset: 0x64CDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1DC2C, symSize: 0x4 } + - { offsetInCU: 0x7E8, offset: 0x64CFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1DC30, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x64D10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x1DC38, symSize: 0x8 } + - { offsetInCU: 0x82C, offset: 0x64D40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1DC40, symSize: 0x10 } + - { offsetInCU: 0x850, offset: 0x64D64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1DC50, symSize: 0x4 } + - { offsetInCU: 0x871, offset: 0x64D85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x1DC54, symSize: 0x8 } + - { offsetInCU: 0x885, offset: 0x64D99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1DC5C, symSize: 0x8 } + - { offsetInCU: 0x8B5, offset: 0x64DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x1DC64, symSize: 0x10 } + - { offsetInCU: 0x8D9, offset: 0x64DED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x1DC74, symSize: 0x4 } + - { offsetInCU: 0x8FA, offset: 0x64E0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x1DC78, symSize: 0x2C } + - { offsetInCU: 0x90E, offset: 0x64E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x1DCA4, symSize: 0x34 } + - { offsetInCU: 0x943, offset: 0x64E57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x1DCD8, symSize: 0x10 } + - { offsetInCU: 0x967, offset: 0x64E7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x1DCE8, symSize: 0x4 } + - { offsetInCU: 0x988, offset: 0x64E9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x1DCEC, symSize: 0x2C } + - { offsetInCU: 0x99C, offset: 0x64EB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x1DD18, symSize: 0x34 } + - { offsetInCU: 0x9D1, offset: 0x64EE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1DD4C, symSize: 0x10 } + - { offsetInCU: 0x9F5, offset: 0x64F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1DD5C, symSize: 0x4 } + - { offsetInCU: 0xA16, offset: 0x64F2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1DD60, symSize: 0xC } + - { offsetInCU: 0xA2A, offset: 0x64F3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1DD6C, symSize: 0xC } + - { offsetInCU: 0xA5E, offset: 0x64F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x1DD78, symSize: 0x10 } + - { offsetInCU: 0xA82, offset: 0x64F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x1DD88, symSize: 0x4 } + - { offsetInCU: 0xAA3, offset: 0x64FB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1DD8C, symSize: 0xC } + - { offsetInCU: 0xAB7, offset: 0x64FCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x1DD98, symSize: 0xC } + - { offsetInCU: 0xAEB, offset: 0x64FFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x1DDA4, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x65023, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x1DDB4, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x650E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x598, symBinAddr: 0x1E6E8, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x65117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5C4, symBinAddr: 0x1E714, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x65133, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x1E950, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x651AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x7AC, symBinAddr: 0x1E8FC, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x651DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7D8, symBinAddr: 0x1E928, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x651F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x864, symBinAddr: 0x1E9B4, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x65239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C8, symBinAddr: 0x1EA18, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x65269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9DC, symBinAddr: 0x1EB1C, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x6527D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA6C, symBinAddr: 0x1EBAC, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65291, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB28, symBinAddr: 0x1EC68, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x652A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB2C, symBinAddr: 0x1EC6C, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x652B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB3C, symBinAddr: 0x1EC7C, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x652CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBCC, symBinAddr: 0x1ED0C, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x652E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC88, symBinAddr: 0x1EDC8, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x652F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC90, symBinAddr: 0x1EDD0, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x65309, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC94, symBinAddr: 0x1EDD4, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x6531D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC9C, symBinAddr: 0x1EDDC, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x65331, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCAC, symBinAddr: 0x1EDEC, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x65345, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x1EDF0, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x65359, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF4, symBinAddr: 0x1EE34, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x6536D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF8, symBinAddr: 0x1EE38, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x65477, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1E150, symSize: 0x2AC } + - { offsetInCU: 0x433, offset: 0x6549A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1E3FC, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x655C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x1EFB8, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x65608, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x1EFD8, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x6565C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x1F064, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65683, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x1F068, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x656AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1F06C, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x656D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1F0E0, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x6570D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x1F0E4, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65779, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x1F164, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x657CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x1F1C8, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x1F258, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x6587D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x1F2D8, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x658AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1F33C, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x658CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x1F340, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x659B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1FA94, symSize: 0x384 } + - { offsetInCU: 0x7D5, offset: 0x65CC6, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1060, symBinAddr: 0x1FEE4, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x65CDA, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1070, symBinAddr: 0x1FEF4, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x65CEE, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1104, symBinAddr: 0x1FF04, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x65D02, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x114C, symBinAddr: 0x1FF4C, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x65D16, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1160, symBinAddr: 0x1FF60, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x65D2A, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x11A4, symBinAddr: 0x1FFA4, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x65D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11E4, symBinAddr: 0x1FFE4, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x65D52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x13A8, symBinAddr: 0x201A8, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x65D66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13D8, symBinAddr: 0x201D8, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x65D7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1594, symBinAddr: 0x20394, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x65F84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1EE84, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x65FAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1EF98, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x660DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x1F344, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x661BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1FA20, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x6624D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF94, symBinAddr: 0x1FE18, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x662C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFFC, symBinAddr: 0x1FE80, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x6636D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AF0, symBinAddr: 0x87318, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x66387, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2AF8, symBinAddr: 0x87320, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x66395, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x203D4, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x663D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x20408, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x66407, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x20448, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x66477, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20528, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x66497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20528, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x6650F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x20690, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x6652F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x20690, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x66555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x206EC, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x665CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20758, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x665EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20758, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x6690A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1C70, symBinAddr: 0x22034, symSize: 0x1A0 } + - { offsetInCU: 0x6B4, offset: 0x669D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x207DC, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66A08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x20864, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66A48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x2095C, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66A5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x209BC, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66A70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x20A0C, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x20A94, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66AE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x20CC8, symSize: 0x5C } + - { offsetInCU: 0x9D1, offset: 0x66CEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x16E4, symBinAddr: 0x21AA8, symSize: 0x140 } + - { offsetInCU: 0xACD, offset: 0x66DEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1824, symBinAddr: 0x21BE8, symSize: 0x18 } + - { offsetInCU: 0xAE1, offset: 0x66DFF, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1978, symBinAddr: 0x21D3C, symSize: 0x2C } + - { offsetInCU: 0xAF9, offset: 0x66E17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1C0C, symBinAddr: 0x21FD0, symSize: 0x44 } + - { offsetInCU: 0xB0D, offset: 0x66E2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1C50, symBinAddr: 0x22014, symSize: 0x20 } + - { offsetInCU: 0xB21, offset: 0x66E3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1E10, symBinAddr: 0x221D4, symSize: 0x20 } + - { offsetInCU: 0xB35, offset: 0x66E53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E30, symBinAddr: 0x221F4, symSize: 0x4 } + - { offsetInCU: 0xB49, offset: 0x66E67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E34, symBinAddr: 0x221F8, symSize: 0x44 } + - { offsetInCU: 0xB5D, offset: 0x66E7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E78, symBinAddr: 0x2223C, symSize: 0x4 } + - { offsetInCU: 0xB71, offset: 0x66E8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1E7C, symBinAddr: 0x22240, symSize: 0x44 } + - { offsetInCU: 0xB85, offset: 0x66EA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1FA0, symBinAddr: 0x22364, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x66EB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1FB8, symBinAddr: 0x2237C, symSize: 0x14 } + - { offsetInCU: 0xBAD, offset: 0x66ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1FCC, symBinAddr: 0x22390, symSize: 0x18 } + - { offsetInCU: 0xBC1, offset: 0x66EDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x2044, symBinAddr: 0x22408, symSize: 0x6C } + - { offsetInCU: 0xBD5, offset: 0x66EF3, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x20B0, symBinAddr: 0x22474, symSize: 0x14 } + - { offsetInCU: 0xBE9, offset: 0x66F07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x20C4, symBinAddr: 0x22488, symSize: 0x50 } + - { offsetInCU: 0xBFD, offset: 0x66F1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x2114, symBinAddr: 0x224D8, symSize: 0x48 } + - { offsetInCU: 0xC11, offset: 0x66F2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x215C, symBinAddr: 0x22520, symSize: 0x48 } + - { offsetInCU: 0xC25, offset: 0x66F43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x21A4, symBinAddr: 0x22568, symSize: 0x8 } + - { offsetInCU: 0xC39, offset: 0x66F57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x21AC, symBinAddr: 0x22570, symSize: 0x4 } + - { offsetInCU: 0xC4D, offset: 0x66F6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x21B0, symBinAddr: 0x22574, symSize: 0x8 } + - { offsetInCU: 0xC61, offset: 0x66F7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x21B8, symBinAddr: 0x2257C, symSize: 0x10 } + - { offsetInCU: 0xC75, offset: 0x66F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x22A0, symBinAddr: 0x22654, symSize: 0x90 } + - { offsetInCU: 0xC89, offset: 0x66FA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2330, symBinAddr: 0x226E4, symSize: 0xBC } + - { offsetInCU: 0xC9D, offset: 0x66FBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x23EC, symBinAddr: 0x227A0, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x66FCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x23F0, symBinAddr: 0x227A4, symSize: 0x10 } + - { offsetInCU: 0xCC5, offset: 0x66FE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x2400, symBinAddr: 0x227B4, symSize: 0x90 } + - { offsetInCU: 0xCD9, offset: 0x66FF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2490, symBinAddr: 0x22844, symSize: 0xBC } + - { offsetInCU: 0xCED, offset: 0x6700B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x254C, symBinAddr: 0x22900, symSize: 0x8 } + - { offsetInCU: 0xD01, offset: 0x6701F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x2554, symBinAddr: 0x22908, symSize: 0x4 } + - { offsetInCU: 0xD15, offset: 0x67033, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2558, symBinAddr: 0x2290C, symSize: 0x8 } + - { offsetInCU: 0xD29, offset: 0x67047, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2560, symBinAddr: 0x22914, symSize: 0x10 } + - { offsetInCU: 0xD48, offset: 0x67066, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2598, symBinAddr: 0x2294C, symSize: 0x24 } + - { offsetInCU: 0xD71, offset: 0x6708F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x26A4, symBinAddr: 0x22A58, symSize: 0x8 } + - { offsetInCU: 0xD85, offset: 0x670A3, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x26AC, symBinAddr: 0x22A60, symSize: 0x10 } + - { offsetInCU: 0xD99, offset: 0x670B7, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x26BC, symBinAddr: 0x22A70, symSize: 0x8 } + - { offsetInCU: 0xDAD, offset: 0x670CB, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2748, symBinAddr: 0x22A78, symSize: 0x3C } + - { offsetInCU: 0xE2F, offset: 0x6714D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x203C4, symSize: 0x4 } + - { offsetInCU: 0xE4B, offset: 0x67169, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x203C8, symSize: 0x4 } + - { offsetInCU: 0xE67, offset: 0x67185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x203CC, symSize: 0x4 } + - { offsetInCU: 0xE83, offset: 0x671A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x203D0, symSize: 0x4 } + - { offsetInCU: 0x10F5, offset: 0x67413, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x2047C, symSize: 0x40 } + - { offsetInCU: 0x1123, offset: 0x67441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x204BC, symSize: 0x60 } + - { offsetInCU: 0x115B, offset: 0x67479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x20588, symSize: 0x84 } + - { offsetInCU: 0x1182, offset: 0x674A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x2060C, symSize: 0x14 } + - { offsetInCU: 0x11C9, offset: 0x674E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x20620, symSize: 0x28 } + - { offsetInCU: 0x12D0, offset: 0x675EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x20910, symSize: 0x4C } + - { offsetInCU: 0x12EF, offset: 0x6760D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x2096C, symSize: 0x50 } + - { offsetInCU: 0x1318, offset: 0x67636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x209CC, symSize: 0x3C } + - { offsetInCU: 0x133D, offset: 0x6765B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x20A08, symSize: 0x4 } + - { offsetInCU: 0x1392, offset: 0x676B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x20B40, symSize: 0x4C } + - { offsetInCU: 0x13B1, offset: 0x676CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x20B8C, symSize: 0x50 } + - { offsetInCU: 0x13DA, offset: 0x676F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x20BDC, symSize: 0x3C } + - { offsetInCU: 0x13FF, offset: 0x6771D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x20C18, symSize: 0x8 } + - { offsetInCU: 0x1420, offset: 0x6773E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x20C20, symSize: 0x30 } + - { offsetInCU: 0x143D, offset: 0x6775B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x20C50, symSize: 0x3C } + - { offsetInCU: 0x1462, offset: 0x67780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x20C8C, symSize: 0x3C } + - { offsetInCU: 0x14AC, offset: 0x677CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x960, symBinAddr: 0x20D24, symSize: 0x30 } + - { offsetInCU: 0x14C9, offset: 0x677E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x990, symBinAddr: 0x20D54, symSize: 0x44 } + - { offsetInCU: 0x14F2, offset: 0x67810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x9D4, symBinAddr: 0x20D98, symSize: 0x3C } + - { offsetInCU: 0x151E, offset: 0x6783C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x20DD4, symSize: 0xC8 } + - { offsetInCU: 0x1558, offset: 0x67876, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x20E9C, symSize: 0x4 } + - { offsetInCU: 0x15FC, offset: 0x6791A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xADC, symBinAddr: 0x20EA0, symSize: 0x128 } + - { offsetInCU: 0x172D, offset: 0x67A4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xC04, symBinAddr: 0x20FC8, symSize: 0x224 } + - { offsetInCU: 0x1796, offset: 0x67AB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x183C, symBinAddr: 0x21C00, symSize: 0x13C } + - { offsetInCU: 0x1844, offset: 0x67B62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xE28, symBinAddr: 0x211EC, symSize: 0x70 } + - { offsetInCU: 0x186E, offset: 0x67B8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xE98, symBinAddr: 0x2125C, symSize: 0x30 } + - { offsetInCU: 0x1890, offset: 0x67BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xEC8, symBinAddr: 0x2128C, symSize: 0x188 } + - { offsetInCU: 0x1935, offset: 0x67C53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0x1050, symBinAddr: 0x21414, symSize: 0x14 } + - { offsetInCU: 0x1982, offset: 0x67CA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0x10D4, symBinAddr: 0x21498, symSize: 0x3C } + - { offsetInCU: 0x1A08, offset: 0x67D26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0x1064, symBinAddr: 0x21428, symSize: 0x70 } + - { offsetInCU: 0x1A9C, offset: 0x67DBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0x1110, symBinAddr: 0x214D4, symSize: 0x78 } + - { offsetInCU: 0x1B80, offset: 0x67E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0x1188, symBinAddr: 0x2154C, symSize: 0x230 } + - { offsetInCU: 0x1D6C, offset: 0x6808A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x13B8, symBinAddr: 0x2177C, symSize: 0xC } + - { offsetInCU: 0x1DC3, offset: 0x680E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21788, symSize: 0x4 } + - { offsetInCU: 0x1DDF, offset: 0x680FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21788, symSize: 0x4 } + - { offsetInCU: 0x1DF8, offset: 0x68116, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21788, symSize: 0x4 } + - { offsetInCU: 0x1E11, offset: 0x6812F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13C8, symBinAddr: 0x2178C, symSize: 0x4 } + - { offsetInCU: 0x1E29, offset: 0x68147, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13CC, symBinAddr: 0x21790, symSize: 0xB8 } + - { offsetInCU: 0x1EC9, offset: 0x681E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14C4, symBinAddr: 0x21888, symSize: 0x4 } + - { offsetInCU: 0x1EE1, offset: 0x681FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2604, symBinAddr: 0x229B8, symSize: 0x7C } + - { offsetInCU: 0x1FB8, offset: 0x682D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x1484, symBinAddr: 0x21848, symSize: 0x40 } + - { offsetInCU: 0x1FED, offset: 0x6830B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg', symObjAddr: 0x14C8, symBinAddr: 0x2188C, symSize: 0x2C } + - { offsetInCU: 0x202E, offset: 0x6834C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14F4, symBinAddr: 0x218B8, symSize: 0x2C } + - { offsetInCU: 0x206F, offset: 0x6838D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1520, symBinAddr: 0x218E4, symSize: 0x2C } + - { offsetInCU: 0x20E6, offset: 0x68404, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x154C, symBinAddr: 0x21910, symSize: 0x198 } + - { offsetInCU: 0x25E3, offset: 0x68901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x19A4, symBinAddr: 0x21D68, symSize: 0x24 } + - { offsetInCU: 0x2626, offset: 0x68944, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x19C8, symBinAddr: 0x21D8C, symSize: 0x244 } + - { offsetInCU: 0x43, offset: 0x68AE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x22B7C, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x22BB8, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68B0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x22C3C, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68B26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x22D64, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68B4F, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x22D94, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68B63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x22DB0, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68B77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x22E4C, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68B8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x22EB0, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68B9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x22F0C, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x68BB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x22F1C, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x68BC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x22F4C, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x68BDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x22F74, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x68BEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x22FD0, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x68C03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x23054, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x68C17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x230B8, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x68C2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x23114, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x68C3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x23174, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x68C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x235CC, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x68CE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x235D4, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x68DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA98, symBinAddr: 0x23614, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x68E37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF8, symBinAddr: 0x23674, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x68E86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB04, symBinAddr: 0x23680, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x68EE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB80, symBinAddr: 0x236FC, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x68EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB8C, symBinAddr: 0x23708, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x68F39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBE8, symBinAddr: 0x23764, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x68F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC34, symBinAddr: 0x237B0, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x68F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFF8, symBinAddr: 0x23B74, symSize: 0x154 } + - { offsetInCU: 0x580, offset: 0x69020, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC74, symBinAddr: 0x237F0, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x6907B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC8C, symBinAddr: 0x23808, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x690F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xCB8, symBinAddr: 0x23834, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x6912A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x2387C, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x6915B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xD24, symBinAddr: 0x238A0, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x69177, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD30, symBinAddr: 0x238AC, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x69193, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x129C, symBinAddr: 0x23D94, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x69253, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD8C, symBinAddr: 0x23908, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x6928A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDD8, symBinAddr: 0x23954, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x692AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13F0, symBinAddr: 0x23EE8, symSize: 0x264 } + - { offsetInCU: 0x87C, offset: 0x6931C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEA4, symBinAddr: 0x23A20, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x69351, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x23A70, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x69382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF18, symBinAddr: 0x23A94, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x6939E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF24, symBinAddr: 0x23AA0, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x693BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D8C, symBinAddr: 0x24818, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x6946A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF80, symBinAddr: 0x23AFC, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x694A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC0, symBinAddr: 0x23B3C, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x694C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EF4, symBinAddr: 0x24980, symSize: 0x2B8 } + - { offsetInCU: 0xA81, offset: 0x69521, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x11B0, symBinAddr: 0x23CC8, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x69535, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x1214, symBinAddr: 0x23D0C, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x69549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1258, symBinAddr: 0x23D50, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x6955D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1654, symBinAddr: 0x2414C, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x69571, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x16DC, symBinAddr: 0x24190, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x69585, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x17CC, symBinAddr: 0x24280, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x69599, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1828, symBinAddr: 0x242CC, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x695AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1830, symBinAddr: 0x242D4, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x695C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1834, symBinAddr: 0x242D8, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x695D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x183C, symBinAddr: 0x242E0, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x695E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1850, symBinAddr: 0x242F0, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x695FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x18A0, symBinAddr: 0x24340, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69611, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x192C, symBinAddr: 0x243CC, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x69625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1934, symBinAddr: 0x243D4, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1938, symBinAddr: 0x243D8, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x6964D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x193C, symBinAddr: 0x243DC, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x194C, symBinAddr: 0x243EC, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x69675, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1984, symBinAddr: 0x24424, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69689, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x19E8, symBinAddr: 0x24488, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x6969D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1AA8, symBinAddr: 0x24534, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x696B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1B0C, symBinAddr: 0x24598, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x696C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B68, symBinAddr: 0x245F4, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x696D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1BCC, symBinAddr: 0x24658, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x696ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BDC, symBinAddr: 0x24668, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69701, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BE0, symBinAddr: 0x2466C, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x69715, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1C24, symBinAddr: 0x246B0, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69729, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1C28, symBinAddr: 0x246B4, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x6973D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C6C, symBinAddr: 0x246F8, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69751, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C70, symBinAddr: 0x246FC, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x69765, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CB4, symBinAddr: 0x24740, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69779, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CB8, symBinAddr: 0x24744, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x6978D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CFC, symBinAddr: 0x24788, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x697A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x2478C, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x697B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1D44, symBinAddr: 0x247D0, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x697C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D48, symBinAddr: 0x247D4, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x697DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x21AC, symBinAddr: 0x24C38, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x697F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x2344, symBinAddr: 0x24DD0, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2348, symBinAddr: 0x24DD4, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69819, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2358, symBinAddr: 0x24DE4, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x6982D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x235C, symBinAddr: 0x24DE8, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69841, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x23A0, symBinAddr: 0x24E2C, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x23A4, symBinAddr: 0x24E30, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x23E8, symBinAddr: 0x24E74, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x6987D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23EC, symBinAddr: 0x24E78, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x698DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xABC, symBinAddr: 0x23638, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x6999C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB98, symBinAddr: 0x23714, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x699B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBC0, symBinAddr: 0x2373C, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x699DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD3C, symBinAddr: 0x238B8, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x699F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD64, symBinAddr: 0x238E0, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69A18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF30, symBinAddr: 0x23AAC, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69A34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF58, symBinAddr: 0x23AD4, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69B23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x23184, symSize: 0x11C } + - { offsetInCU: 0x10B4, offset: 0x69B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x724, symBinAddr: 0x232A0, symSize: 0x1C8 } + - { offsetInCU: 0x10E5, offset: 0x69B85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8EC, symBinAddr: 0x23468, symSize: 0x164 } + - { offsetInCU: 0xA6, offset: 0x69D40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x25160, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x69D60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x25160, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x69D86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x2D4, symBinAddr: 0x25178, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x69E69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x318, symBinAddr: 0x251BC, symSize: 0x28 } + - { offsetInCU: 0x4BB, offset: 0x6A155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x380, symBinAddr: 0x25224, symSize: 0x4 } + - { offsetInCU: 0x4CF, offset: 0x6A169, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x384, symBinAddr: 0x25228, symSize: 0x44 } + - { offsetInCU: 0x4E3, offset: 0x6A17D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x3C8, symBinAddr: 0x2526C, symSize: 0x30 } + - { offsetInCU: 0x4F7, offset: 0x6A191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x3F8, symBinAddr: 0x2529C, symSize: 0x7C } + - { offsetInCU: 0x50B, offset: 0x6A1A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x474, symBinAddr: 0x25318, symSize: 0x184 } + - { offsetInCU: 0x51F, offset: 0x6A1B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0x5F8, symBinAddr: 0x2549C, symSize: 0x394 } + - { offsetInCU: 0x53A, offset: 0x6A1D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0x98C, symBinAddr: 0x25830, symSize: 0x30 } + - { offsetInCU: 0x563, offset: 0x6A1FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0x9BC, symBinAddr: 0x25860, symSize: 0x2C } + - { offsetInCU: 0x577, offset: 0x6A211, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0x9E8, symBinAddr: 0x2588C, symSize: 0x34 } + - { offsetInCU: 0x58B, offset: 0x6A225, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xA1C, symBinAddr: 0x258C0, symSize: 0x44 } + - { offsetInCU: 0x59F, offset: 0x6A239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xA60, symBinAddr: 0x25904, symSize: 0x1B4 } + - { offsetInCU: 0x5B3, offset: 0x6A24D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0xC14, symBinAddr: 0x25AB8, symSize: 0x48 } + - { offsetInCU: 0x5C7, offset: 0x6A261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0xC5C, symBinAddr: 0x25B00, symSize: 0x78 } + - { offsetInCU: 0x5DB, offset: 0x6A275, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0xCD4, symBinAddr: 0x25B78, symSize: 0x10 } + - { offsetInCU: 0x5EF, offset: 0x6A289, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0xCE8, symBinAddr: 0x25B8C, symSize: 0x8 } + - { offsetInCU: 0x603, offset: 0x6A29D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0xD28, symBinAddr: 0x25BCC, symSize: 0x54 } + - { offsetInCU: 0x617, offset: 0x6A2B1, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xD7C, symBinAddr: 0x25C20, symSize: 0x14 } + - { offsetInCU: 0x62B, offset: 0x6A2C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0xD90, symBinAddr: 0x25C34, symSize: 0x3C } + - { offsetInCU: 0x63F, offset: 0x6A2D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0xDCC, symBinAddr: 0x25C70, symSize: 0x48 } + - { offsetInCU: 0x653, offset: 0x6A2ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0xE14, symBinAddr: 0x25CB8, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x6A301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0xE54, symBinAddr: 0x25CF8, symSize: 0x10 } + - { offsetInCU: 0x67B, offset: 0x6A315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0xE64, symBinAddr: 0x25D08, symSize: 0x38 } + - { offsetInCU: 0x68F, offset: 0x6A329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0xE9C, symBinAddr: 0x25D40, symSize: 0x6C } + - { offsetInCU: 0x6A3, offset: 0x6A33D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x25DAC, symSize: 0xDC } + - { offsetInCU: 0x6B7, offset: 0x6A351, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0xFE4, symBinAddr: 0x25E88, symSize: 0x1C } + - { offsetInCU: 0x6CB, offset: 0x6A365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1000, symBinAddr: 0x25EA4, symSize: 0x74 } + - { offsetInCU: 0x6DF, offset: 0x6A379, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1074, symBinAddr: 0x25F18, symSize: 0x5C } + - { offsetInCU: 0x6F3, offset: 0x6A38D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x10D0, symBinAddr: 0x25F74, symSize: 0x64 } + - { offsetInCU: 0x707, offset: 0x6A3A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1134, symBinAddr: 0x25FD8, symSize: 0x10 } + - { offsetInCU: 0x71B, offset: 0x6A3B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1144, symBinAddr: 0x25FE8, symSize: 0x28 } + - { offsetInCU: 0x72F, offset: 0x6A3C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x116C, symBinAddr: 0x26010, symSize: 0x3C } + - { offsetInCU: 0x743, offset: 0x6A3DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x11A8, symBinAddr: 0x2604C, symSize: 0x6C } + - { offsetInCU: 0x757, offset: 0x6A3F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1220, symBinAddr: 0x260B8, symSize: 0x44 } + - { offsetInCU: 0x76B, offset: 0x6A405, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1264, symBinAddr: 0x260FC, symSize: 0x48 } + - { offsetInCU: 0x77F, offset: 0x6A419, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x12AC, symBinAddr: 0x26144, symSize: 0x40 } + - { offsetInCU: 0x793, offset: 0x6A42D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x12EC, symBinAddr: 0x26184, symSize: 0x10 } + - { offsetInCU: 0x7A7, offset: 0x6A441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1300, symBinAddr: 0x26194, symSize: 0x54 } + - { offsetInCU: 0x7BB, offset: 0x6A455, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1354, symBinAddr: 0x261E8, symSize: 0x44 } + - { offsetInCU: 0x7CF, offset: 0x6A469, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1398, symBinAddr: 0x2622C, symSize: 0x10 } + - { offsetInCU: 0x7E3, offset: 0x6A47D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x13B4, symBinAddr: 0x2623C, symSize: 0x90 } + - { offsetInCU: 0x7F7, offset: 0x6A491, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1444, symBinAddr: 0x262CC, symSize: 0xBC } + - { offsetInCU: 0x80B, offset: 0x6A4A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1500, symBinAddr: 0x26388, symSize: 0x8 } + - { offsetInCU: 0x81F, offset: 0x6A4B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1508, symBinAddr: 0x26390, symSize: 0x4 } + - { offsetInCU: 0x833, offset: 0x6A4CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x150C, symBinAddr: 0x26394, symSize: 0xC } + - { offsetInCU: 0x847, offset: 0x6A4E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1518, symBinAddr: 0x263A0, symSize: 0x10 } + - { offsetInCU: 0x8BE, offset: 0x6A558, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x340, symBinAddr: 0x251E4, symSize: 0x40 } + - { offsetInCU: 0xA61, offset: 0x6A6FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x24ED4, symSize: 0x18 } + - { offsetInCU: 0xA9A, offset: 0x6A734, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x24EEC, symSize: 0x94 } + - { offsetInCU: 0xAFB, offset: 0x6A795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xAC, symBinAddr: 0x24F80, symSize: 0x2C } + - { offsetInCU: 0xB15, offset: 0x6A7AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0xD8, symBinAddr: 0x24FAC, symSize: 0x34 } + - { offsetInCU: 0xB4A, offset: 0x6A7E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x10C, symBinAddr: 0x24FE0, symSize: 0x10 } + - { offsetInCU: 0xB5E, offset: 0x6A7F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x11C, symBinAddr: 0x24FF0, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x6A819, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x120, symBinAddr: 0x24FF4, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x6A82D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x128, symBinAddr: 0x24FFC, symSize: 0x8 } + - { offsetInCU: 0xBC3, offset: 0x6A85D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x130, symBinAddr: 0x25004, symSize: 0x10 } + - { offsetInCU: 0xBE7, offset: 0x6A881, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x25014, symSize: 0x4 } + - { offsetInCU: 0xC08, offset: 0x6A8A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x144, symBinAddr: 0x25018, symSize: 0x14 } + - { offsetInCU: 0xC1C, offset: 0x6A8B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x188, symBinAddr: 0x2502C, symSize: 0x14 } + - { offsetInCU: 0xC30, offset: 0x6A8CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x19C, symBinAddr: 0x25040, symSize: 0x2C } + - { offsetInCU: 0xC44, offset: 0x6A8DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x1C8, symBinAddr: 0x2506C, symSize: 0x2C } + - { offsetInCU: 0xC58, offset: 0x6A8F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x1F4, symBinAddr: 0x25098, symSize: 0x8 } + - { offsetInCU: 0xC6C, offset: 0x6A906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x1FC, symBinAddr: 0x250A0, symSize: 0x8 } + - { offsetInCU: 0xC9E, offset: 0x6A938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x204, symBinAddr: 0x250A8, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x6A94C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x214, symBinAddr: 0x250B8, symSize: 0x4 } + - { offsetInCU: 0xCD3, offset: 0x6A96D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x218, symBinAddr: 0x250BC, symSize: 0x8 } + - { offsetInCU: 0xCE7, offset: 0x6A981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x220, symBinAddr: 0x250C4, symSize: 0x8 } + - { offsetInCU: 0xD19, offset: 0x6A9B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x228, symBinAddr: 0x250CC, symSize: 0x10 } + - { offsetInCU: 0xD3D, offset: 0x6A9D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x238, symBinAddr: 0x250DC, symSize: 0x4 } + - { offsetInCU: 0xD5E, offset: 0x6A9F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x23C, symBinAddr: 0x250E0, symSize: 0x10 } + - { offsetInCU: 0xD82, offset: 0x6AA1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x24C, symBinAddr: 0x250F0, symSize: 0x4 } + - { offsetInCU: 0xDB1, offset: 0x6AA4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x250, symBinAddr: 0x250F4, symSize: 0x28 } + - { offsetInCU: 0xE3C, offset: 0x6AAD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x278, symBinAddr: 0x2511C, symSize: 0x44 } + - { offsetInCU: 0x943, offset: 0x6B540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x72B4, symBinAddr: 0x2D674, symSize: 0x28 } + - { offsetInCU: 0x18F2, offset: 0x6C4EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x146E8, symBinAddr: 0x3AAA8, symSize: 0xA0 } + - { offsetInCU: 0x198A, offset: 0x6C587, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x1567C, symBinAddr: 0x3BA3C, symSize: 0x44 } + - { offsetInCU: 0x19A6, offset: 0x6C5A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x156C0, symBinAddr: 0x3BA80, symSize: 0x150 } + - { offsetInCU: 0x1ABF, offset: 0x6C6BC, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x15810, symBinAddr: 0x3BBD0, symSize: 0x54 } + - { offsetInCU: 0x1B3D, offset: 0x6C73A, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x158B8, symBinAddr: 0x3BC24, symSize: 0x4C } + - { offsetInCU: 0x1BCB, offset: 0x6C7C8, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x15904, symBinAddr: 0x3BC70, symSize: 0x50 } + - { offsetInCU: 0x1C39, offset: 0x6C836, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x15954, symBinAddr: 0x3BCC0, symSize: 0x64 } + - { offsetInCU: 0x22CF, offset: 0x6CECC, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x167CC, symBinAddr: 0x3CB38, symSize: 0x84 } + - { offsetInCU: 0x2333, offset: 0x6CF30, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x16850, symBinAddr: 0x3CBBC, symSize: 0x80 } + - { offsetInCU: 0x2400, offset: 0x6CFFD, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x169EC, symBinAddr: 0x3CD58, symSize: 0x40 } + - { offsetInCU: 0x25AE, offset: 0x6D1AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1745C, symBinAddr: 0x3D74C, symSize: 0x1A0 } + - { offsetInCU: 0x2703, offset: 0x6D300, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x175FC, symBinAddr: 0x3D8EC, symSize: 0x360 } + - { offsetInCU: 0x2E25, offset: 0x6DA22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1878C, symBinAddr: 0x3EA7C, symSize: 0xBCC } + - { offsetInCU: 0x3E91, offset: 0x6EA8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19358, symBinAddr: 0x3F648, symSize: 0x1C0 } + - { offsetInCU: 0x4012, offset: 0x6EC0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19518, symBinAddr: 0x3F808, symSize: 0x1A0 } + - { offsetInCU: 0x441A, offset: 0x6F017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1A134, symBinAddr: 0x40424, symSize: 0x8 } + - { offsetInCU: 0x442E, offset: 0x6F02B, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1A204, symBinAddr: 0x404F4, symSize: 0x10 } + - { offsetInCU: 0x4442, offset: 0x6F03F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1A214, symBinAddr: 0x40504, symSize: 0x14 } + - { offsetInCU: 0x4456, offset: 0x6F053, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1A228, symBinAddr: 0x40518, symSize: 0x44 } + - { offsetInCU: 0x446A, offset: 0x6F067, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1A27C, symBinAddr: 0x4055C, symSize: 0x44 } + - { offsetInCU: 0x447E, offset: 0x6F07B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1A2C0, symBinAddr: 0x405A0, symSize: 0x30C } + - { offsetInCU: 0x4492, offset: 0x6F08F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1A5CC, symBinAddr: 0x408AC, symSize: 0x240 } + - { offsetInCU: 0x44A6, offset: 0x6F0A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1A80C, symBinAddr: 0x40AEC, symSize: 0x70 } + - { offsetInCU: 0x44BA, offset: 0x6F0B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1A87C, symBinAddr: 0x40B5C, symSize: 0x34 } + - { offsetInCU: 0x44CE, offset: 0x6F0CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1A8B0, symBinAddr: 0x40B90, symSize: 0x174 } + - { offsetInCU: 0x44E2, offset: 0x6F0DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1AA24, symBinAddr: 0x40D04, symSize: 0xB4 } + - { offsetInCU: 0x4535, offset: 0x6F132, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1B2F0, symBinAddr: 0x40DB8, symSize: 0xC4 } + - { offsetInCU: 0x45AB, offset: 0x6F1A8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B3B4, symBinAddr: 0x40E7C, symSize: 0x78 } + - { offsetInCU: 0x45D8, offset: 0x6F1D5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B42C, symBinAddr: 0x40EF4, symSize: 0x80 } + - { offsetInCU: 0x466C, offset: 0x6F269, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B4AC, symBinAddr: 0x40F74, symSize: 0x68 } + - { offsetInCU: 0x47D3, offset: 0x6F3D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B514, symBinAddr: 0x40FDC, symSize: 0x660 } + - { offsetInCU: 0x4C97, offset: 0x6F894, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1BB84, symBinAddr: 0x4164C, symSize: 0x4C } + - { offsetInCU: 0x4CAB, offset: 0x6F8A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1BC78, symBinAddr: 0x416B8, symSize: 0x8 } + - { offsetInCU: 0x4CBF, offset: 0x6F8BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1BC80, symBinAddr: 0x416C0, symSize: 0x44 } + - { offsetInCU: 0x4CD3, offset: 0x6F8D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1BCC4, symBinAddr: 0x41704, symSize: 0x44 } + - { offsetInCU: 0x4CE7, offset: 0x6F8E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BD70, symBinAddr: 0x4176C, symSize: 0x8 } + - { offsetInCU: 0x4CFB, offset: 0x6F8F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1BE00, symBinAddr: 0x417F4, symSize: 0x44 } + - { offsetInCU: 0x4D30, offset: 0x6F92D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BF08, symBinAddr: 0x418FC, symSize: 0x48 } + - { offsetInCU: 0x4D44, offset: 0x6F941, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BF74, symBinAddr: 0x41968, symSize: 0x3C } + - { offsetInCU: 0x4D58, offset: 0x6F955, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BFB0, symBinAddr: 0x419A4, symSize: 0x34 } + - { offsetInCU: 0x4D6C, offset: 0x6F969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1C008, symBinAddr: 0x419FC, symSize: 0x40 } + - { offsetInCU: 0x4D80, offset: 0x6F97D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1C048, symBinAddr: 0x41A3C, symSize: 0x48 } + - { offsetInCU: 0x4D94, offset: 0x6F991, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1C154, symBinAddr: 0x41B48, symSize: 0x18 } + - { offsetInCU: 0x4DA8, offset: 0x6F9A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1C16C, symBinAddr: 0x41B60, symSize: 0x10 } + - { offsetInCU: 0x4DBC, offset: 0x6F9B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1C17C, symBinAddr: 0x41B70, symSize: 0x34 } + - { offsetInCU: 0x4DD0, offset: 0x6F9CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1C1EC, symBinAddr: 0x41BE0, symSize: 0x30 } + - { offsetInCU: 0x5441, offset: 0x7003E, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9B68, symBinAddr: 0x2FF28, symSize: 0x400 } + - { offsetInCU: 0x55A4, offset: 0x701A1, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xADF4, symBinAddr: 0x311B4, symSize: 0x390 } + - { offsetInCU: 0x5868, offset: 0x70465, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xB184, symBinAddr: 0x31544, symSize: 0x3B8 } + - { offsetInCU: 0x5CC6, offset: 0x708C3, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF5A4, symBinAddr: 0x35964, symSize: 0x18C } + - { offsetInCU: 0x609C, offset: 0x70C99, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x16E7C, symBinAddr: 0x3D1E8, symSize: 0x110 } + - { offsetInCU: 0x61F8, offset: 0x70DF5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x16FCC, symBinAddr: 0x3D2F8, symSize: 0xFC } + - { offsetInCU: 0x6315, offset: 0x70F12, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x172B4, symBinAddr: 0x3D5A4, symSize: 0x1A8 } + - { offsetInCU: 0x6425, offset: 0x71022, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1795C, symBinAddr: 0x3DC4C, symSize: 0x188 } + - { offsetInCU: 0x6772, offset: 0x7136F, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x198A0, symBinAddr: 0x3FB90, symSize: 0x1C8 } + - { offsetInCU: 0x68A1, offset: 0x7149E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x19A68, symBinAddr: 0x3FD58, symSize: 0x11C } + - { offsetInCU: 0x6A03, offset: 0x71600, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x19B84, symBinAddr: 0x3FE74, symSize: 0xFC } + - { offsetInCU: 0x6B65, offset: 0x71762, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x19C80, symBinAddr: 0x3FF70, symSize: 0xE4 } + - { offsetInCU: 0x6CBB, offset: 0x718B8, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19D64, symBinAddr: 0x40054, symSize: 0x114 } + - { offsetInCU: 0x6E11, offset: 0x71A0E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19E78, symBinAddr: 0x40168, symSize: 0xF0 } + - { offsetInCU: 0x6F73, offset: 0x71B70, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1A050, symBinAddr: 0x40340, symSize: 0xE4 } + - { offsetInCU: 0x70EA, offset: 0x71CE7, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BE44, symBinAddr: 0x41838, symSize: 0xC4 } + - { offsetInCU: 0x7651, offset: 0x7224E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x263C0, symSize: 0x1A0 } + - { offsetInCU: 0x7794, offset: 0x72391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x1A0, symBinAddr: 0x26560, symSize: 0x5D8 } + - { offsetInCU: 0x7AA9, offset: 0x726A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2824, symBinAddr: 0x28BE4, symSize: 0x6D0 } + - { offsetInCU: 0x7D74, offset: 0x72971, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x778, symBinAddr: 0x26B38, symSize: 0x88 } + - { offsetInCU: 0x7ECC, offset: 0x72AC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x800, symBinAddr: 0x26BC0, symSize: 0x1D44 } + - { offsetInCU: 0x9069, offset: 0x73C66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB53C, symBinAddr: 0x318FC, symSize: 0x3810 } + - { offsetInCU: 0xA390, offset: 0x74F8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xED4C, symBinAddr: 0x3510C, symSize: 0x578 } + - { offsetInCU: 0xA7E2, offset: 0x753DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10880, symBinAddr: 0x36C40, symSize: 0x25C0 } + - { offsetInCU: 0xBE70, offset: 0x76A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13E60, symBinAddr: 0x3A220, symSize: 0x3DC } + - { offsetInCU: 0xC00B, offset: 0x76C08, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2544, symBinAddr: 0x28904, symSize: 0x2E0 } + - { offsetInCU: 0xC447, offset: 0x77044, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x2EF4, symBinAddr: 0x292B4, symSize: 0x3B8 } + - { offsetInCU: 0xC6D3, offset: 0x772D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x32AC, symBinAddr: 0x2966C, symSize: 0x3924 } + - { offsetInCU: 0xE279, offset: 0x78E76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6BD0, symBinAddr: 0x2CF90, symSize: 0x278 } + - { offsetInCU: 0xE385, offset: 0x78F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x72DC, symBinAddr: 0x2D69C, symSize: 0x1848 } + - { offsetInCU: 0xEE0C, offset: 0x79A09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x6E48, symBinAddr: 0x2D208, symSize: 0x118 } + - { offsetInCU: 0xEE85, offset: 0x79A82, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6F60, symBinAddr: 0x2D320, symSize: 0x16C } + - { offsetInCU: 0xEEA0, offset: 0x79A9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x70CC, symBinAddr: 0x2D48C, symSize: 0x1E8 } + - { offsetInCU: 0xF17F, offset: 0x79D7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x8B78, symBinAddr: 0x2EF38, symSize: 0x3F8 } + - { offsetInCU: 0xF3A0, offset: 0x79F9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9F68, symBinAddr: 0x30328, symSize: 0xE8C } + - { offsetInCU: 0xFCA5, offset: 0x7A8A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8F70, symBinAddr: 0x2F330, symSize: 0xBF8 } + - { offsetInCU: 0x10675, offset: 0x7B272, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF730, symBinAddr: 0x35AF0, symSize: 0x1150 } + - { offsetInCU: 0x1182A, offset: 0x7C427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x17AE4, symBinAddr: 0x3DDD4, symSize: 0xB10 } + - { offsetInCU: 0x122BA, offset: 0x7CEB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x12E40, symBinAddr: 0x39200, symSize: 0x1020 } + - { offsetInCU: 0x12D9E, offset: 0x7D99B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x1423C, symBinAddr: 0x3A5FC, symSize: 0x208 } + - { offsetInCU: 0x12E22, offset: 0x7DA1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14444, symBinAddr: 0x3A804, symSize: 0x294 } + - { offsetInCU: 0x12F32, offset: 0x7DB2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x14788, symBinAddr: 0x3AB48, symSize: 0xEF4 } + - { offsetInCU: 0x1395D, offset: 0x7E55A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x159B8, symBinAddr: 0x3BD24, symSize: 0x64 } + - { offsetInCU: 0x1399B, offset: 0x7E598, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15A1C, symBinAddr: 0x3BD88, symSize: 0x30 } + - { offsetInCU: 0x139E2, offset: 0x7E5DF, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15A4C, symBinAddr: 0x3BDB8, symSize: 0x80 } + - { offsetInCU: 0x13A7C, offset: 0x7E679, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x15ACC, symBinAddr: 0x3BE38, symSize: 0x6C } + - { offsetInCU: 0x13B2C, offset: 0x7E729, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15B38, symBinAddr: 0x3BEA4, symSize: 0x4C } + - { offsetInCU: 0x13BA5, offset: 0x7E7A2, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x15BB0, symBinAddr: 0x3BF1C, symSize: 0xE0 } + - { offsetInCU: 0x13C19, offset: 0x7E816, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15C90, symBinAddr: 0x3BFFC, symSize: 0xC4 } + - { offsetInCU: 0x13C42, offset: 0x7E83F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15D54, symBinAddr: 0x3C0C0, symSize: 0x174 } + - { offsetInCU: 0x13D1B, offset: 0x7E918, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x15EC8, symBinAddr: 0x3C234, symSize: 0x104 } + - { offsetInCU: 0x13E4A, offset: 0x7EA47, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x15FCC, symBinAddr: 0x3C338, symSize: 0x124 } + - { offsetInCU: 0x13F6B, offset: 0x7EB68, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x160F0, symBinAddr: 0x3C45C, symSize: 0x170 } + - { offsetInCU: 0x140EC, offset: 0x7ECE9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x16260, symBinAddr: 0x3C5CC, symSize: 0x174 } + - { offsetInCU: 0x1423A, offset: 0x7EE37, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x163D4, symBinAddr: 0x3C740, symSize: 0xFC } + - { offsetInCU: 0x14370, offset: 0x7EF6D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x164D0, symBinAddr: 0x3C83C, symSize: 0xFC } + - { offsetInCU: 0x144A6, offset: 0x7F0A3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x166D0, symBinAddr: 0x3CA3C, symSize: 0xFC } + - { offsetInCU: 0x145DC, offset: 0x7F1D9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x168D0, symBinAddr: 0x3CC3C, symSize: 0x11C } + - { offsetInCU: 0x146C7, offset: 0x7F2C4, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x16C90, symBinAddr: 0x3CFFC, symSize: 0x138 } + - { offsetInCU: 0x14796, offset: 0x7F393, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16DC8, symBinAddr: 0x3D134, symSize: 0xB4 } + - { offsetInCU: 0x1482E, offset: 0x7F42B, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x170C8, symBinAddr: 0x3D3F4, symSize: 0x18C } + - { offsetInCU: 0x14A30, offset: 0x7F62D, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x185F4, symBinAddr: 0x3E8E4, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x7FD60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x41C48, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x7FD78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x41C48, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x7FD8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x41C78, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x7FDA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x41D64, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x7FDB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x41FCC, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x7FDC8, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x423E8, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x7FDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x423F0, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x7FDF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x4262C, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x7FE04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x42674, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x7FE18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x42730, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x80412, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8FF8, symBinAddr: 0x4B738, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x804D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x9218, symBinAddr: 0x4B958, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x8059D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD868, symBinAddr: 0x4FFA8, symSize: 0x7C0 } + - { offsetInCU: 0x9D6, offset: 0x808CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xE028, symBinAddr: 0x50768, symSize: 0xA34 } + - { offsetInCU: 0xCB0, offset: 0x80BA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xEA5C, symBinAddr: 0x5119C, symSize: 0x2AC } + - { offsetInCU: 0xDF2, offset: 0x80CEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xF400, symBinAddr: 0x51B40, symSize: 0x860 } + - { offsetInCU: 0x10E8, offset: 0x80FE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xFC60, symBinAddr: 0x523A0, symSize: 0xC2C } + - { offsetInCU: 0x13C2, offset: 0x812BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x1088C, symBinAddr: 0x52FCC, symSize: 0x314 } + - { offsetInCU: 0x1504, offset: 0x813FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x10BA0, symBinAddr: 0x532E0, symSize: 0x208 } + - { offsetInCU: 0x1985, offset: 0x8187E, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1EC8, symBinAddr: 0x44608, symSize: 0x2C } + - { offsetInCU: 0x1E8A, offset: 0x81D83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x94DC, symBinAddr: 0x4BC1C, symSize: 0x20 } + - { offsetInCU: 0x1ECF, offset: 0x81DC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x94FC, symBinAddr: 0x4BC3C, symSize: 0x8C } + - { offsetInCU: 0x1F8B, offset: 0x81E84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xA690, symBinAddr: 0x4CDD0, symSize: 0x54 } + - { offsetInCU: 0x1FC5, offset: 0x81EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xA6E4, symBinAddr: 0x4CE24, symSize: 0x50 } + - { offsetInCU: 0x201B, offset: 0x81F14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA734, symBinAddr: 0x4CE74, symSize: 0x64 } + - { offsetInCU: 0x204E, offset: 0x81F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA798, symBinAddr: 0x4CED8, symSize: 0x4 } + - { offsetInCU: 0x208D, offset: 0x81F86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA79C, symBinAddr: 0x4CEDC, symSize: 0x78 } + - { offsetInCU: 0x20E3, offset: 0x81FDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA814, symBinAddr: 0x4CF54, symSize: 0x88 } + - { offsetInCU: 0x2154, offset: 0x8204D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA89C, symBinAddr: 0x4CFDC, symSize: 0xDC } + - { offsetInCU: 0x21D6, offset: 0x820CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA978, symBinAddr: 0x4D0B8, symSize: 0x4 } + - { offsetInCU: 0x21F2, offset: 0x820EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA97C, symBinAddr: 0x4D0BC, symSize: 0x4 } + - { offsetInCU: 0x222C, offset: 0x82125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA980, symBinAddr: 0x4D0C0, symSize: 0x64 } + - { offsetInCU: 0x2599, offset: 0x82492, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xBC28, symBinAddr: 0x4E368, symSize: 0xE4 } + - { offsetInCU: 0x267D, offset: 0x82576, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xBDF0, symBinAddr: 0x4E530, symSize: 0x280 } + - { offsetInCU: 0x2819, offset: 0x82712, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xC620, symBinAddr: 0x4ED60, symSize: 0x64 } + - { offsetInCU: 0x2DFA, offset: 0x82CF3, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xCE24, symBinAddr: 0x4F564, symSize: 0x374 } + - { offsetInCU: 0x359C, offset: 0x83495, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xD198, symBinAddr: 0x4F8D8, symSize: 0x280 } + - { offsetInCU: 0x3973, offset: 0x8386C, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xD418, symBinAddr: 0x4FB58, symSize: 0x148 } + - { offsetInCU: 0x3B6D, offset: 0x83A66, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xD560, symBinAddr: 0x4FCA0, symSize: 0x1F8 } + - { offsetInCU: 0x3D2C, offset: 0x83C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x11558, symBinAddr: 0x53C98, symSize: 0x104 } + - { offsetInCU: 0x3E76, offset: 0x83D6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x14050, symBinAddr: 0x56790, symSize: 0x120 } + - { offsetInCU: 0x3F8E, offset: 0x83E87, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x14658, symBinAddr: 0x56D38, symSize: 0x10 } + - { offsetInCU: 0x3FA2, offset: 0x83E9B, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14668, symBinAddr: 0x56D48, symSize: 0x10 } + - { offsetInCU: 0x3FB6, offset: 0x83EAF, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x146FC, symBinAddr: 0x56D58, symSize: 0x48 } + - { offsetInCU: 0x3FCA, offset: 0x83EC3, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x147E8, symBinAddr: 0x56DA0, symSize: 0x3C } + - { offsetInCU: 0x3FDE, offset: 0x83ED7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x14824, symBinAddr: 0x56DDC, symSize: 0x44 } + - { offsetInCU: 0x3FF2, offset: 0x83EEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOd', symObjAddr: 0x14868, symBinAddr: 0x56E20, symSize: 0x48 } + - { offsetInCU: 0x4006, offset: 0x83EFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x148B0, symBinAddr: 0x56E68, symSize: 0x8 } + - { offsetInCU: 0x401A, offset: 0x83F13, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x148B8, symBinAddr: 0x56E70, symSize: 0x10 } + - { offsetInCU: 0x402E, offset: 0x83F27, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x148C8, symBinAddr: 0x56E80, symSize: 0x8 } + - { offsetInCU: 0x4042, offset: 0x83F3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14950, symBinAddr: 0x56EC4, symSize: 0x30 } + - { offsetInCU: 0x409A, offset: 0x83F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x14A10, symBinAddr: 0x56F84, symSize: 0x24 } + - { offsetInCU: 0x40D6, offset: 0x83FCF, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14A78, symBinAddr: 0x56FEC, symSize: 0x44 } + - { offsetInCU: 0x4BF4, offset: 0x84AED, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x42740, symSize: 0x80 } + - { offsetInCU: 0x4C5C, offset: 0x84B55, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x80, symBinAddr: 0x427C0, symSize: 0xA0 } + - { offsetInCU: 0x4DBF, offset: 0x84CB8, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x120, symBinAddr: 0x42860, symSize: 0x9C } + - { offsetInCU: 0x4EEA, offset: 0x84DE3, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1BC, symBinAddr: 0x428FC, symSize: 0x74 } + - { offsetInCU: 0x4F6F, offset: 0x84E68, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x230, symBinAddr: 0x42970, symSize: 0x4 } + - { offsetInCU: 0x4F8A, offset: 0x84E83, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x234, symBinAddr: 0x42974, symSize: 0x134 } + - { offsetInCU: 0x4FF5, offset: 0x84EEE, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x42AA8, symSize: 0xE8 } + - { offsetInCU: 0x50D7, offset: 0x84FD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x42B90, symSize: 0x204 } + - { offsetInCU: 0x5256, offset: 0x8514F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x42D94, symSize: 0xAF8 } + - { offsetInCU: 0x56E8, offset: 0x855E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x114C, symBinAddr: 0x4388C, symSize: 0x3CC } + - { offsetInCU: 0x58FF, offset: 0x857F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1518, symBinAddr: 0x43C58, symSize: 0x9B0 } + - { offsetInCU: 0x5C76, offset: 0x85B6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x1EF4, symBinAddr: 0x44634, symSize: 0x229C } + - { offsetInCU: 0x7193, offset: 0x8708C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xED08, symBinAddr: 0x51448, symSize: 0x6F8 } + - { offsetInCU: 0x759E, offset: 0x87497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4190, symBinAddr: 0x468D0, symSize: 0x1660 } + - { offsetInCU: 0x8459, offset: 0x88352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x57F0, symBinAddr: 0x47F30, symSize: 0x1038 } + - { offsetInCU: 0x8E60, offset: 0x88D59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x6828, symBinAddr: 0x48F68, symSize: 0x3F0 } + - { offsetInCU: 0x8FC9, offset: 0x88EC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7510, symBinAddr: 0x49C50, symSize: 0x208 } + - { offsetInCU: 0x921B, offset: 0x89114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7718, symBinAddr: 0x49E58, symSize: 0x93C } + - { offsetInCU: 0x9A1B, offset: 0x89914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8054, symBinAddr: 0x4A794, symSize: 0x2E8 } + - { offsetInCU: 0x9B6D, offset: 0x89A66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x833C, symBinAddr: 0x4AA7C, symSize: 0x648 } + - { offsetInCU: 0x9F3A, offset: 0x89E33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x8984, symBinAddr: 0x4B0C4, symSize: 0x674 } + - { offsetInCU: 0xA1DC, offset: 0x8A0D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x943C, symBinAddr: 0x4BB7C, symSize: 0x80 } + - { offsetInCU: 0xA1FF, offset: 0x8A0F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x94BC, symBinAddr: 0x4BBFC, symSize: 0x20 } + - { offsetInCU: 0xA28A, offset: 0x8A183, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x9588, symBinAddr: 0x4BCC8, symSize: 0x10C8 } + - { offsetInCU: 0xA8F2, offset: 0x8A7EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xA650, symBinAddr: 0x4CD90, symSize: 0x40 } + - { offsetInCU: 0xA965, offset: 0x8A85E, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA9E4, symBinAddr: 0x4D124, symSize: 0x4 } + - { offsetInCU: 0xA980, offset: 0x8A879, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA9E8, symBinAddr: 0x4D128, symSize: 0x8 } + - { offsetInCU: 0xA998, offset: 0x8A891, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA9E8, symBinAddr: 0x4D128, symSize: 0x8 } + - { offsetInCU: 0xA9A9, offset: 0x8A8A2, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA9F0, symBinAddr: 0x4D130, symSize: 0xC8 } + - { offsetInCU: 0xAA31, offset: 0x8A92A, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xAAB8, symBinAddr: 0x4D1F8, symSize: 0xCC } + - { offsetInCU: 0xAAD1, offset: 0x8A9CA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xAC80, symBinAddr: 0x4D3C0, symSize: 0x1F4 } + - { offsetInCU: 0xAB71, offset: 0x8AA6A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xAE74, symBinAddr: 0x4D5B4, symSize: 0x1C4 } + - { offsetInCU: 0xAC2D, offset: 0x8AB26, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xB038, symBinAddr: 0x4D778, symSize: 0x340 } + - { offsetInCU: 0xAD24, offset: 0x8AC1D, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xB378, symBinAddr: 0x4DAB8, symSize: 0x340 } + - { offsetInCU: 0xAE0E, offset: 0x8AD07, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB6B8, symBinAddr: 0x4DDF8, symSize: 0x1DC } + - { offsetInCU: 0xAEB3, offset: 0x8ADAC, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB894, symBinAddr: 0x4DFD4, symSize: 0x204 } + - { offsetInCU: 0xAF51, offset: 0x8AE4A, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xBA98, symBinAddr: 0x4E1D8, symSize: 0x4C } + - { offsetInCU: 0xAFFD, offset: 0x8AEF6, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xBAE4, symBinAddr: 0x4E224, symSize: 0x90 } + - { offsetInCU: 0xB089, offset: 0x8AF82, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xBB74, symBinAddr: 0x4E2B4, symSize: 0x40 } + - { offsetInCU: 0xB0C6, offset: 0x8AFBF, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xBBB4, symBinAddr: 0x4E2F4, symSize: 0x18 } + - { offsetInCU: 0xB118, offset: 0x8B011, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xBBCC, symBinAddr: 0x4E30C, symSize: 0x3C } + - { offsetInCU: 0xB141, offset: 0x8B03A, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xBC08, symBinAddr: 0x4E348, symSize: 0x1C } + - { offsetInCU: 0xB182, offset: 0x8B07B, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xC2F4, symBinAddr: 0x4EA34, symSize: 0x8C } + - { offsetInCU: 0xB196, offset: 0x8B08F, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xC380, symBinAddr: 0x4EAC0, symSize: 0x4C } + - { offsetInCU: 0xB1C6, offset: 0x8B0BF, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xC3CC, symBinAddr: 0x4EB0C, symSize: 0x164 } + - { offsetInCU: 0xB223, offset: 0x8B11C, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC530, symBinAddr: 0x4EC70, symSize: 0xF0 } + - { offsetInCU: 0xB24A, offset: 0x8B143, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC684, symBinAddr: 0x4EDC4, symSize: 0x214 } + - { offsetInCU: 0xB27F, offset: 0x8B178, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC898, symBinAddr: 0x4EFD8, symSize: 0x78 } + - { offsetInCU: 0xB293, offset: 0x8B18C, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC910, symBinAddr: 0x4F050, symSize: 0x1C } + - { offsetInCU: 0xB2A7, offset: 0x8B1A0, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC92C, symBinAddr: 0x4F06C, symSize: 0x1C } + - { offsetInCU: 0xB2BB, offset: 0x8B1B4, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC948, symBinAddr: 0x4F088, symSize: 0x1C } + - { offsetInCU: 0xB2F2, offset: 0x8B1EB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC964, symBinAddr: 0x4F0A4, symSize: 0x104 } + - { offsetInCU: 0xB3F0, offset: 0x8B2E9, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xCA68, symBinAddr: 0x4F1A8, symSize: 0x174 } + - { offsetInCU: 0xB506, offset: 0x8B3FF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xCBDC, symBinAddr: 0x4F31C, symSize: 0x124 } + - { offsetInCU: 0xB5DA, offset: 0x8B4D3, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xCD00, symBinAddr: 0x4F440, symSize: 0x124 } + - { offsetInCU: 0xB719, offset: 0x8B612, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD758, symBinAddr: 0x4FE98, symSize: 0x14 } + - { offsetInCU: 0xB73B, offset: 0x8B634, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD76C, symBinAddr: 0x4FEAC, symSize: 0xFC } + - { offsetInCU: 0xB815, offset: 0x8B70E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x10DA8, symBinAddr: 0x534E8, symSize: 0x7B0 } + - { offsetInCU: 0xBC9C, offset: 0x8BB95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x1165C, symBinAddr: 0x53D9C, symSize: 0x29F4 } + - { offsetInCU: 0xC430, offset: 0x8C329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x14170, symBinAddr: 0x568B0, symSize: 0x488 } + - { offsetInCU: 0x95, offset: 0x8C749, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFBC, symBinAddr: 0x580A8, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8C79C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1008, symBinAddr: 0x580F4, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8C7CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x102C, symBinAddr: 0x58118, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8C7E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1038, symBinAddr: 0x58124, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8C805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5FB8, symBinAddr: 0x5D014, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8C89C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1094, symBinAddr: 0x58180, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8C8D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E4, symBinAddr: 0x581D0, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8C8F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x60EC, symBinAddr: 0x5D148, symSize: 0x133C } + - { offsetInCU: 0x2D0, offset: 0x8C984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1134, symBinAddr: 0x58220, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8C9DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x114C, symBinAddr: 0x58238, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8CA59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1178, symBinAddr: 0x58264, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8CA8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11E0, symBinAddr: 0x582CC, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8CABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1204, symBinAddr: 0x582F0, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8CADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1210, symBinAddr: 0x582FC, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8CAF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7F0C, symBinAddr: 0x5E550, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8CBE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x126C, symBinAddr: 0x58358, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8CC20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12BC, symBinAddr: 0x583A8, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8CC43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8108, symBinAddr: 0x5E74C, symSize: 0xF48 } + - { offsetInCU: 0x611, offset: 0x8CCC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x14DC, symBinAddr: 0x585C8, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8CCF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1508, symBinAddr: 0x585F4, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8CD12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1578, symBinAddr: 0x58664, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8CD47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15D8, symBinAddr: 0x586C4, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8CD97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x15FC, symBinAddr: 0x586E8, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8CDB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1608, symBinAddr: 0x586F4, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8CDCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x922C, symBinAddr: 0x5F870, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8CE2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1664, symBinAddr: 0x58750, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8CE65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16AC, symBinAddr: 0x58798, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8CE88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9288, symBinAddr: 0x5F8CC, symSize: 0x230 } + - { offsetInCU: 0x838, offset: 0x8CEEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16F4, symBinAddr: 0x587E0, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8CF21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16FC, symBinAddr: 0x587E8, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8CF52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1720, symBinAddr: 0x5880C, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8CF6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x172C, symBinAddr: 0x58818, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8CF8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x94B8, symBinAddr: 0x5FAFC, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8D0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1788, symBinAddr: 0x58874, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8D11D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17E8, symBinAddr: 0x588D4, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8D140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x97A4, symBinAddr: 0x5FDE8, symSize: 0x548 } + - { offsetInCU: 0xB19, offset: 0x8D1CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1840, symBinAddr: 0x5892C, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8D24D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1858, symBinAddr: 0x58944, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8D330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x189C, symBinAddr: 0x58988, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8D3B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0x589F0, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8D40B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1928, symBinAddr: 0x58A14, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8D43C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x194C, symBinAddr: 0x58A38, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8D458, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1958, symBinAddr: 0x58A44, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8D474, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9CEC, symBinAddr: 0x60330, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8D502, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19B4, symBinAddr: 0x58AA0, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8D539, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19E0, symBinAddr: 0x58ACC, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8D55C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9DA8, symBinAddr: 0x603EC, symSize: 0x1B0 } + - { offsetInCU: 0xF18, offset: 0x8D5CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x58B74, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8D601, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x58BEC, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8D632, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B24, symBinAddr: 0x58C10, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8D64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B30, symBinAddr: 0x58C1C, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8D66A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9F58, symBinAddr: 0x6059C, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8D765, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B8C, symBinAddr: 0x58C78, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8D79C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BFC, symBinAddr: 0x58CE8, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8D7BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA1A4, symBinAddr: 0x607E8, symSize: 0x8D8 } + - { offsetInCU: 0x11A5, offset: 0x8D859, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1DE8, symBinAddr: 0x58ED4, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8D88A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1E14, symBinAddr: 0x58F00, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8D89E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1E3C, symBinAddr: 0x58F28, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8D8D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E44, symBinAddr: 0x58F30, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8D923, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1E68, symBinAddr: 0x58F54, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8D93F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E74, symBinAddr: 0x58F60, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8D95B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAB48, symBinAddr: 0x6118C, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8D9D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0x58FBC, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8DA10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F28, symBinAddr: 0x59014, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8DA33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xABA4, symBinAddr: 0x611E8, symSize: 0x770 } + - { offsetInCU: 0x1457, offset: 0x8DB0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D80, symBinAddr: 0x5CE60, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8DB64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5DD4, symBinAddr: 0x5CEB4, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8DBB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5E54, symBinAddr: 0x5CF34, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8DBEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E5C, symBinAddr: 0x5CF3C, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8DC6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5EBC, symBinAddr: 0x5CF9C, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8DC89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x2150, symBinAddr: 0x5923C, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8DC9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x2170, symBinAddr: 0x5925C, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8DCB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x2264, symBinAddr: 0x59350, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8DCC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x25E4, symBinAddr: 0x596D0, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8DCE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x323C, symBinAddr: 0x5A328, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8DD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x326C, symBinAddr: 0x5A358, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8DD1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x3298, symBinAddr: 0x5A384, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8DD31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x32C4, symBinAddr: 0x5A3B0, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8DD45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x32F0, symBinAddr: 0x5A3DC, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8DD59, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x331C, symBinAddr: 0x5A408, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8DD6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x3324, symBinAddr: 0x5A410, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8DD81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x36E4, symBinAddr: 0x5A7D0, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8DD95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3740, symBinAddr: 0x5A82C, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8DDA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x382C, symBinAddr: 0x5A918, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8DDBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x383C, symBinAddr: 0x5A928, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8DDD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x386C, symBinAddr: 0x5A958, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8DDE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x394C, symBinAddr: 0x5AA38, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8DDF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x3C84, symBinAddr: 0x5AD70, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8DE0D, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x44E8, symBinAddr: 0x5B5D4, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8DE21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x44F0, symBinAddr: 0x5B5DC, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8DE35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x4854, symBinAddr: 0x5B940, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8DE49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x48B0, symBinAddr: 0x5B99C, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8DE5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x4994, symBinAddr: 0x5BA80, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8DE71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x49A4, symBinAddr: 0x5BA90, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8DE85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x4A48, symBinAddr: 0x5BB34, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8DE99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x4BD4, symBinAddr: 0x5BCC0, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8DEAD, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4F7C, symBinAddr: 0x5C068, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8DEC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4FC0, symBinAddr: 0x5C0AC, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8DED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x513C, symBinAddr: 0x5C228, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8DEE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x5198, symBinAddr: 0x5C284, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8DEFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x522C, symBinAddr: 0x5C318, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8DF11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x523C, symBinAddr: 0x5C328, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8DF25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x52A4, symBinAddr: 0x5C390, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8DF39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x5380, symBinAddr: 0x5C46C, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8DF4D, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x54EC, symBinAddr: 0x5C5D8, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8DF61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5518, symBinAddr: 0x5C604, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8DF75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x55DC, symBinAddr: 0x5C6C8, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8DF89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x5638, symBinAddr: 0x5C724, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8DF9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x56B4, symBinAddr: 0x5C7A0, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8DFB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x56C4, symBinAddr: 0x5C7B0, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8DFC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x570C, symBinAddr: 0x5C7F8, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8DFD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x57F0, symBinAddr: 0x5C8DC, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8DFED, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5988, symBinAddr: 0x5CA74, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8E001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x59BC, symBinAddr: 0x5CAA8, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8E015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5AB8, symBinAddr: 0x5CBA4, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8E029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x5B14, symBinAddr: 0x5CC00, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8E03D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x5B90, symBinAddr: 0x5CC7C, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8E051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x5BA0, symBinAddr: 0x5CC8C, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8E065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5BC8, symBinAddr: 0x5CCB4, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8E079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x5C04, symBinAddr: 0x5CCF0, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8E08D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x5C7C, symBinAddr: 0x5CD5C, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8E0A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5CC0, symBinAddr: 0x5CDA0, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8E0B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x5D1C, symBinAddr: 0x5CDFC, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8E0C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x5D70, symBinAddr: 0x5CE50, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8E0DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5EC4, symBinAddr: 0x5CFA4, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8E0F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5EC8, symBinAddr: 0x5CFA8, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8E105, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F90, symBinAddr: 0x5CFEC, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8E119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x7428, symBinAddr: 0x5E484, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8E12D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x746C, symBinAddr: 0x5E4C8, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8E141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7EC8, symBinAddr: 0x5E50C, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8E155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x9050, symBinAddr: 0x5F694, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8E169, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x9094, symBinAddr: 0x5F6D8, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8E17D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x90D8, symBinAddr: 0x5F71C, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8E191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x911C, symBinAddr: 0x5F760, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8E1A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x9160, symBinAddr: 0x5F7A4, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8E1B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x91A4, symBinAddr: 0x5F7E8, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8E1CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x91E8, symBinAddr: 0x5F82C, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8E1E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xAA7C, symBinAddr: 0x610C0, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8E1F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xAAC0, symBinAddr: 0x61104, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8E209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xAB04, symBinAddr: 0x61148, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8E21D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xB314, symBinAddr: 0x61958, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8E231, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB358, symBinAddr: 0x6199C, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8E245, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xB39C, symBinAddr: 0x619E0, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8E259, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xB424, symBinAddr: 0x61A68, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8E26D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB468, symBinAddr: 0x61AAC, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E281, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB4BC, symBinAddr: 0x61AF0, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E295, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB54C, symBinAddr: 0x61B80, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E2A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB608, symBinAddr: 0x61C3C, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8E2BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB610, symBinAddr: 0x61C44, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8E2D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB614, symBinAddr: 0x61C48, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8E2E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB620, symBinAddr: 0x61C54, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8E2F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB630, symBinAddr: 0x61C64, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8E30D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB6C0, symBinAddr: 0x61CF4, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8E321, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB77C, symBinAddr: 0x61DB0, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8E335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB780, symBinAddr: 0x61DB4, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8E349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB790, symBinAddr: 0x61DC4, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8E35D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB820, symBinAddr: 0x61E54, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8E371, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB8DC, symBinAddr: 0x61F10, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8E385, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB8E0, symBinAddr: 0x61F14, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8E399, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB8F0, symBinAddr: 0x61F24, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8E3AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB980, symBinAddr: 0x61FB4, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8E3C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBA3C, symBinAddr: 0x62070, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8E3D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBA40, symBinAddr: 0x62074, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8E3E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xBA50, symBinAddr: 0x62084, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8E3FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xBAE0, symBinAddr: 0x62114, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8E411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xBB9C, symBinAddr: 0x621D0, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8E425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBBA4, symBinAddr: 0x621D8, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8E439, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xBBA8, symBinAddr: 0x621DC, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8E44D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBBB0, symBinAddr: 0x621E4, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8E461, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xBBC0, symBinAddr: 0x621F4, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8E475, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xBC50, symBinAddr: 0x62284, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8E489, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBD0C, symBinAddr: 0x62340, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8E49D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBD10, symBinAddr: 0x62344, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8E4B1, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBD20, symBinAddr: 0x62354, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8E4C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xBD44, symBinAddr: 0x62378, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8E4D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xBD64, symBinAddr: 0x62398, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8E4ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xBDA4, symBinAddr: 0x623D8, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8E501, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBDB4, symBinAddr: 0x623E8, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8E515, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBDB8, symBinAddr: 0x623EC, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8E529, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBDFC, symBinAddr: 0x62430, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8E53D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBE00, symBinAddr: 0x62434, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8E551, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBE44, symBinAddr: 0x62478, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8E565, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBE48, symBinAddr: 0x6247C, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8E579, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBE8C, symBinAddr: 0x624C0, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8E58D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBE90, symBinAddr: 0x624C4, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8E5A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBED4, symBinAddr: 0x62508, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8E5B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBED8, symBinAddr: 0x6250C, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8E5C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBF1C, symBinAddr: 0x62550, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8E5DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBF20, symBinAddr: 0x62554, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8E5F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF64, symBinAddr: 0x62598, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8E605, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF68, symBinAddr: 0x6259C, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8E619, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFAC, symBinAddr: 0x625E0, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8E62D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBFB0, symBinAddr: 0x625E4, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8E641, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBFF4, symBinAddr: 0x62628, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8E655, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBFF8, symBinAddr: 0x6262C, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8E669, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC03C, symBinAddr: 0x62670, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8E67D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC040, symBinAddr: 0x62674, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8E691, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC084, symBinAddr: 0x626B8, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8E6A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC088, symBinAddr: 0x626BC, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8E6B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0CC, symBinAddr: 0x62700, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8E6CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC0D0, symBinAddr: 0x62704, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8E6E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC114, symBinAddr: 0x62748, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8E6F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC118, symBinAddr: 0x6274C, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8E709, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC15C, symBinAddr: 0x62790, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8E71D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC160, symBinAddr: 0x62794, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8E731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC1A4, symBinAddr: 0x627D8, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8E745, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC1A8, symBinAddr: 0x627DC, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8E759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC1EC, symBinAddr: 0x62820, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8E76D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC1F0, symBinAddr: 0x62824, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8E781, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC234, symBinAddr: 0x62868, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8E795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC238, symBinAddr: 0x6286C, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8E7A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC27C, symBinAddr: 0x628B0, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8E7BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC280, symBinAddr: 0x628B4, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8E7D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xC2C4, symBinAddr: 0x628F8, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8E7E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xC308, symBinAddr: 0x6293C, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8E7F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xC398, symBinAddr: 0x629CC, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8E80D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xC454, symBinAddr: 0x62A88, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8E821, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xC458, symBinAddr: 0x62A8C, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8E835, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC468, symBinAddr: 0x62A9C, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8E849, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC46C, symBinAddr: 0x62AA0, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8E85D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC4B0, symBinAddr: 0x62AE4, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8E871, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC4B4, symBinAddr: 0x62AE8, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8E885, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC4F8, symBinAddr: 0x62B2C, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8E899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC4FC, symBinAddr: 0x62B30, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8E8C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1044, symBinAddr: 0x58130, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8E8E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x106C, symBinAddr: 0x58158, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8E905, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x121C, symBinAddr: 0x58308, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8E921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1244, symBinAddr: 0x58330, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8E93D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130C, symBinAddr: 0x583F8, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8E9BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1318, symBinAddr: 0x58404, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8EA3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x13BC, symBinAddr: 0x584A8, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8EA7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x143C, symBinAddr: 0x58528, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8EAE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1614, symBinAddr: 0x58700, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8EAFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x163C, symBinAddr: 0x58728, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8EB21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1738, symBinAddr: 0x58824, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8EB3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x5884C, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8EB90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x18C4, symBinAddr: 0x589B0, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8EC32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1964, symBinAddr: 0x58A50, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8EC4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x58A78, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8EC70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B3C, symBinAddr: 0x58C28, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8EC8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B64, symBinAddr: 0x58C50, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8ECD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C64, symBinAddr: 0x58D50, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8EDA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1CEC, symBinAddr: 0x58DD8, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8EE27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D4C, symBinAddr: 0x58E38, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8EE79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D8C, symBinAddr: 0x58E78, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8EEDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E80, symBinAddr: 0x58F6C, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8EEF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1EA8, symBinAddr: 0x58F94, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8EF38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E80, symBinAddr: 0x5CF60, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8F0CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x570EC, symSize: 0x18C } + - { offsetInCU: 0x2A47, offset: 0x8F0FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18C, symBinAddr: 0x57278, symSize: 0x274 } + - { offsetInCU: 0x2A78, offset: 0x8F12C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x400, symBinAddr: 0x574EC, symSize: 0x1A0 } + - { offsetInCU: 0x2AA9, offset: 0x8F15D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x5A0, symBinAddr: 0x5768C, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8F180, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x63C, symBinAddr: 0x57728, symSize: 0x278 } + - { offsetInCU: 0x2AFD, offset: 0x8F1B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B4, symBinAddr: 0x579A0, symSize: 0x128 } + - { offsetInCU: 0x2B2E, offset: 0x8F1E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9DC, symBinAddr: 0x57AC8, symSize: 0x224 } + - { offsetInCU: 0x2B5F, offset: 0x8F213, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC00, symBinAddr: 0x57CEC, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8F249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCB0, symBinAddr: 0x57D9C, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F28B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD60, symBinAddr: 0x57E4C, symSize: 0x254 } + - { offsetInCU: 0x2DE8, offset: 0x8F49C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F78, symBinAddr: 0x59064, symSize: 0x1C8 } + - { offsetInCU: 0x2E34, offset: 0x8F4E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x2140, symBinAddr: 0x5922C, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8F5CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x62BCC, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8F707, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x62C38, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8F71B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x62C8C, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8F72F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x62CD0, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8F810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x62BCC, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8F82A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x62BD4, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8F85C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x62BDC, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8F870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x62BEC, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8F891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x62BF0, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8F8A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x62BF8, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x8F8D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x62C00, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x8F8FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x62C10, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x8F91C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x62C14, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x8F930, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x62C1C, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x8F960, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x62C24, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x8F984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x62C34, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x8F9DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x62CE0, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x8FA2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x62D04, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x8FB31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x62CE0, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x8FB99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x62D24, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x8FBEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x62D48, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x8FCF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x62D24, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x8FD5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x62D68, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x8FDAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x62DC8, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x8FDC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x62DD0, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x8FDD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x62E0C, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x8FEDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x62D68, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x8FF45, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x62E84, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x90099, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x631EC, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x902BF, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x62E84, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x904FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63234, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x9054B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x63258, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90651, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63234, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x90733, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x9C8, symBinAddr: 0x63C00, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x9074F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x63C0C, symSize: 0x4C } + - { offsetInCU: 0xD5, offset: 0x90767, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x63C0C, symSize: 0x4C } + - { offsetInCU: 0xF1, offset: 0x90783, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA20, symBinAddr: 0x63C58, symSize: 0x38 } + - { offsetInCU: 0x180, offset: 0x90812, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xBF4, symBinAddr: 0x63E2C, symSize: 0xC } + - { offsetInCU: 0x19C, offset: 0x9082E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x63E38, symSize: 0x2C } + - { offsetInCU: 0x1B4, offset: 0x90846, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x63E38, symSize: 0x2C } + - { offsetInCU: 0x56B, offset: 0x90BFD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x754, symBinAddr: 0x6398C, symSize: 0xC8 } + - { offsetInCU: 0x5DF, offset: 0x90C71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xC2C, symBinAddr: 0x63E64, symSize: 0x3EC } + - { offsetInCU: 0x808, offset: 0x90E9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1018, symBinAddr: 0x64250, symSize: 0x13C } + - { offsetInCU: 0xA2A, offset: 0x910BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3424, symBinAddr: 0x665BC, symSize: 0x224 } + - { offsetInCU: 0xADB, offset: 0x9116D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x36EC, symBinAddr: 0x66828, symSize: 0x25C } + - { offsetInCU: 0xB40, offset: 0x911D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3948, symBinAddr: 0x66A84, symSize: 0x248 } + - { offsetInCU: 0xC68, offset: 0x912FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3B90, symBinAddr: 0x66CCC, symSize: 0x2BC } + - { offsetInCU: 0xDA7, offset: 0x91439, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3E4C, symBinAddr: 0x66F88, symSize: 0x1A8 } + - { offsetInCU: 0xDED, offset: 0x9147F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3FF4, symBinAddr: 0x67130, symSize: 0x43C } + - { offsetInCU: 0x1124, offset: 0x917B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4430, symBinAddr: 0x6756C, symSize: 0xC4 } + - { offsetInCU: 0x1269, offset: 0x918FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2EB0, symBinAddr: 0x660E8, symSize: 0x4 } + - { offsetInCU: 0x127D, offset: 0x9190F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2EB4, symBinAddr: 0x660EC, symSize: 0x44 } + - { offsetInCU: 0x1291, offset: 0x91923, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2EF8, symBinAddr: 0x66130, symSize: 0x4 } + - { offsetInCU: 0x12A5, offset: 0x91937, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2EFC, symBinAddr: 0x66134, symSize: 0x4C } + - { offsetInCU: 0x12B9, offset: 0x9194B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x2F8C, symBinAddr: 0x66180, symSize: 0x4 } + - { offsetInCU: 0x12CD, offset: 0x9195F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x2F90, symBinAddr: 0x66184, symSize: 0x44 } + - { offsetInCU: 0x12E1, offset: 0x91973, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x2FE4, symBinAddr: 0x661C8, symSize: 0x90 } + - { offsetInCU: 0x12F5, offset: 0x91987, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x3074, symBinAddr: 0x66258, symSize: 0xBC } + - { offsetInCU: 0x1309, offset: 0x9199B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3130, symBinAddr: 0x66314, symSize: 0x8 } + - { offsetInCU: 0x131D, offset: 0x919AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3138, symBinAddr: 0x6631C, symSize: 0x4 } + - { offsetInCU: 0x1331, offset: 0x919C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x313C, symBinAddr: 0x66320, symSize: 0x8 } + - { offsetInCU: 0x1345, offset: 0x919D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x3144, symBinAddr: 0x66328, symSize: 0x10 } + - { offsetInCU: 0x1359, offset: 0x919EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x3154, symBinAddr: 0x66338, symSize: 0x90 } + - { offsetInCU: 0x136D, offset: 0x919FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x31E4, symBinAddr: 0x663C8, symSize: 0xBC } + - { offsetInCU: 0x1381, offset: 0x91A13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x32A0, symBinAddr: 0x66484, symSize: 0x8 } + - { offsetInCU: 0x1395, offset: 0x91A27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x32A8, symBinAddr: 0x6648C, symSize: 0x4 } + - { offsetInCU: 0x13A9, offset: 0x91A3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x32AC, symBinAddr: 0x66490, symSize: 0xC } + - { offsetInCU: 0x13BD, offset: 0x91A4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x32B8, symBinAddr: 0x6649C, symSize: 0x10 } + - { offsetInCU: 0x13D1, offset: 0x91A63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x32C8, symBinAddr: 0x664AC, symSize: 0x20 } + - { offsetInCU: 0x13E5, offset: 0x91A77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x32F0, symBinAddr: 0x664CC, symSize: 0xC } + - { offsetInCU: 0x13F9, offset: 0x91A8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x32FC, symBinAddr: 0x664D8, symSize: 0x4 } + - { offsetInCU: 0x140D, offset: 0x91A9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3300, symBinAddr: 0x664DC, symSize: 0x44 } + - { offsetInCU: 0x1421, offset: 0x91AB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x3344, symBinAddr: 0x66520, symSize: 0xC } + - { offsetInCU: 0x1435, offset: 0x91AC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x3350, symBinAddr: 0x6652C, symSize: 0x4 } + - { offsetInCU: 0x1449, offset: 0x91ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3354, symBinAddr: 0x66530, symSize: 0x44 } + - { offsetInCU: 0x145D, offset: 0x91AEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3398, symBinAddr: 0x66574, symSize: 0xC } + - { offsetInCU: 0x14D1, offset: 0x91B63, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x3648, symBinAddr: 0x667E0, symSize: 0x48 } + - { offsetInCU: 0x1530, offset: 0x91BC2, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x44F4, symBinAddr: 0x67630, symSize: 0x3C } + - { offsetInCU: 0x1544, offset: 0x91BD6, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4530, symBinAddr: 0x6766C, symSize: 0x24 } + - { offsetInCU: 0x1558, offset: 0x91BEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4588, symBinAddr: 0x676B4, symSize: 0x8 } + - { offsetInCU: 0x156C, offset: 0x91BFE, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4590, symBinAddr: 0x676BC, symSize: 0x10 } + - { offsetInCU: 0x1580, offset: 0x91C12, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x45A0, symBinAddr: 0x676CC, symSize: 0x8 } + - { offsetInCU: 0x1594, offset: 0x91C26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4600, symBinAddr: 0x676D4, symSize: 0x8 } + - { offsetInCU: 0x15A8, offset: 0x91C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x46B4, symBinAddr: 0x67788, symSize: 0x10 } + - { offsetInCU: 0x16A6, offset: 0x91D38, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x144, symBinAddr: 0x6337C, symSize: 0x134 } + - { offsetInCU: 0x1767, offset: 0x91DF9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x278, symBinAddr: 0x634B0, symSize: 0xF0 } + - { offsetInCU: 0x1802, offset: 0x91E94, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x368, symBinAddr: 0x635A0, symSize: 0x90 } + - { offsetInCU: 0x19E2, offset: 0x92074, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x63A78, symSize: 0xC } + - { offsetInCU: 0x1A62, offset: 0x920F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x84C, symBinAddr: 0x63A84, symSize: 0x8C } + - { offsetInCU: 0x1B16, offset: 0x921A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D8, symBinAddr: 0x63B10, symSize: 0x68 } + - { offsetInCU: 0x1B86, offset: 0x92218, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x940, symBinAddr: 0x63B78, symSize: 0x88 } + - { offsetInCU: 0x1C1E, offset: 0x922B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xACC, symBinAddr: 0x63D04, symSize: 0xC } + - { offsetInCU: 0x1C9E, offset: 0x92330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xAD8, symBinAddr: 0x63D10, symSize: 0x6C } + - { offsetInCU: 0x1D52, offset: 0x923E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB44, symBinAddr: 0x63D7C, symSize: 0x48 } + - { offsetInCU: 0x1DC4, offset: 0x92456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x63DC4, symSize: 0x68 } + - { offsetInCU: 0x21B1, offset: 0x92843, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x63278, symSize: 0x6C } + - { offsetInCU: 0x21E8, offset: 0x9287A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x632E4, symSize: 0x28 } + - { offsetInCU: 0x2207, offset: 0x92899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x6330C, symSize: 0x48 } + - { offsetInCU: 0x223A, offset: 0x928CC, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x2252, offset: 0x928E4, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x2266, offset: 0x928F8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x227A, offset: 0x9290C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x228E, offset: 0x92920, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x22AE, offset: 0x92940, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x63358, symSize: 0x24 } + - { offsetInCU: 0x2359, offset: 0x929EB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x3F8, symBinAddr: 0x63630, symSize: 0xC4 } + - { offsetInCU: 0x250C, offset: 0x92B9E, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2524, offset: 0x92BB6, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2544, offset: 0x92BD6, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2558, offset: 0x92BEA, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x256C, offset: 0x92BFE, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2580, offset: 0x92C12, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2654, offset: 0x92CE6, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x504, symBinAddr: 0x6373C, symSize: 0x88 } + - { offsetInCU: 0x2711, offset: 0x92DA3, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x58C, symBinAddr: 0x637C4, symSize: 0x80 } + - { offsetInCU: 0x27AC, offset: 0x92E3E, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x60C, symBinAddr: 0x63844, symSize: 0xE4 } + - { offsetInCU: 0x2900, offset: 0x92F92, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x2918, offset: 0x92FAA, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x292C, offset: 0x92FBE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x2940, offset: 0x92FD2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x2954, offset: 0x92FE6, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x29D1, offset: 0x93063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x81C, symBinAddr: 0x63A54, symSize: 0x24 } + - { offsetInCU: 0x2A33, offset: 0x930C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xA58, symBinAddr: 0x63C90, symSize: 0x74 } + - { offsetInCU: 0x2AE2, offset: 0x93174, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1154, symBinAddr: 0x6438C, symSize: 0x9BC } + - { offsetInCU: 0x3090, offset: 0x93722, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B10, symBinAddr: 0x64D48, symSize: 0x694 } + - { offsetInCU: 0x33FF, offset: 0x93A91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x21A4, symBinAddr: 0x653DC, symSize: 0x4B0 } + - { offsetInCU: 0x35C8, offset: 0x93C5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2654, symBinAddr: 0x6588C, symSize: 0x64C } + - { offsetInCU: 0x3ACB, offset: 0x9415D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2CA0, symBinAddr: 0x65ED8, symSize: 0x160 } + - { offsetInCU: 0x3BD7, offset: 0x94269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2E00, symBinAddr: 0x66038, symSize: 0x2C } + - { offsetInCU: 0x3C10, offset: 0x942A2, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2EAC, symBinAddr: 0x660E4, symSize: 0x4 } + - { offsetInCU: 0x3C3D, offset: 0x942CF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x33E8, symBinAddr: 0x66580, symSize: 0x14 } + - { offsetInCU: 0x3C6D, offset: 0x942FF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x33FC, symBinAddr: 0x66594, symSize: 0x14 } + - { offsetInCU: 0x3C9D, offset: 0x9432F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3410, symBinAddr: 0x665A8, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x944C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x677A4, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x944D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x6792C, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x944EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x679D0, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x94500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x67B2C, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x94514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x67D14, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x94528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x67E00, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x9453C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x67F88, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x94550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x68020, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x94564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x680B8, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x94578, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x68140, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x9458C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x68194, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x945A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x682B8, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x945B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x6833C, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x945C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x68430, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x945DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x68590, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x945F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x6866C, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x94604, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x687B4, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x94618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x6884C, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x9462C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x68918, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x946BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17AC, symBinAddr: 0x68F10, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x94715, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17C4, symBinAddr: 0x68F28, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x9478F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17F0, symBinAddr: 0x68F54, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x947C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0x68FC4, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x947F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1884, symBinAddr: 0x68FE8, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x94811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1890, symBinAddr: 0x68FF4, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x9482D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F68, symBinAddr: 0x6A5D0, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x948E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18EC, symBinAddr: 0x69050, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x9490A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1900, symBinAddr: 0x69064, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x9498B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AD8, symBinAddr: 0x6923C, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x949C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x69284, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x949F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B44, symBinAddr: 0x692A8, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x94A0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x692B4, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x94A29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3150, symBinAddr: 0x6A7B8, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x94AD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BAC, symBinAddr: 0x69310, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x94B10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BF8, symBinAddr: 0x6935C, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x94B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x32A4, symBinAddr: 0x6A90C, symSize: 0x2A4 } + - { offsetInCU: 0x716, offset: 0x94B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2438, symBinAddr: 0x69B9C, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x94BCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2440, symBinAddr: 0x69BA4, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x94BFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2464, symBinAddr: 0x69BC8, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x94C19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2470, symBinAddr: 0x69BD4, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x94C35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3548, symBinAddr: 0x6ABB0, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x94D91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x24CC, symBinAddr: 0x69C30, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x94DB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x24E0, symBinAddr: 0x69C44, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x94DD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2518, symBinAddr: 0x69C58, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x94DEC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x257C, symBinAddr: 0x69C9C, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x94E00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2644, symBinAddr: 0x69D1C, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x94E14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x26CC, symBinAddr: 0x69D60, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x94E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x27F8, symBinAddr: 0x69E8C, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x94E3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x284C, symBinAddr: 0x69ED0, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x94E50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x28DC, symBinAddr: 0x69F60, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x94E64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2998, symBinAddr: 0x6A01C, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x94E78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x29A0, symBinAddr: 0x6A024, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x94E8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x29A4, symBinAddr: 0x6A028, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x94EA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x29AC, symBinAddr: 0x6A030, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x94EB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x29BC, symBinAddr: 0x6A040, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x94EC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2A4C, symBinAddr: 0x6A0D0, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x94EDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2B08, symBinAddr: 0x6A18C, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x94EF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2B0C, symBinAddr: 0x6A190, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x94F04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2B1C, symBinAddr: 0x6A1A0, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x94F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2B4C, symBinAddr: 0x6A1D0, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x94F2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2B7C, symBinAddr: 0x6A200, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x94F40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2BD8, symBinAddr: 0x6A25C, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x94F54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2C88, symBinAddr: 0x6A2F0, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x94F68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2CEC, symBinAddr: 0x6A354, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x94F7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2D48, symBinAddr: 0x6A3B0, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x94F90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2DA8, symBinAddr: 0x6A410, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x94FA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2DB8, symBinAddr: 0x6A420, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x94FB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2DBC, symBinAddr: 0x6A424, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x94FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2E00, symBinAddr: 0x6A468, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x94FE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2E04, symBinAddr: 0x6A46C, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x94FF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E48, symBinAddr: 0x6A4B0, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x95008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E4C, symBinAddr: 0x6A4B4, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x9501C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x6A4F8, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x95030, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E94, symBinAddr: 0x6A4FC, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x95044, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED8, symBinAddr: 0x6A540, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x95058, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EDC, symBinAddr: 0x6A544, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x9506C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F20, symBinAddr: 0x6A588, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x95080, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F24, symBinAddr: 0x6A58C, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x9509F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3864, symBinAddr: 0x6AECC, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x950B3, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x38A8, symBinAddr: 0x6AF10, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x950C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x3974, symBinAddr: 0x6AFDC, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x950DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3A04, symBinAddr: 0x6B06C, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x950EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3AC0, symBinAddr: 0x6B128, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x95103, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3AC4, symBinAddr: 0x6B12C, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x95117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3AD4, symBinAddr: 0x6B13C, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x9512B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3AD8, symBinAddr: 0x6B140, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x9513F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3B1C, symBinAddr: 0x6B184, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x95153, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3B20, symBinAddr: 0x6B188, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x95167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3B64, symBinAddr: 0x6B1CC, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x9517B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3B68, symBinAddr: 0x6B1D0, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x951A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x189C, symBinAddr: 0x69000, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x951C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18C4, symBinAddr: 0x69028, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x951E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B5C, symBinAddr: 0x692C0, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x95203, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B84, symBinAddr: 0x692E8, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x95225, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x247C, symBinAddr: 0x69BE0, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x95241, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x24A4, symBinAddr: 0x69C08, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x9534E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x689A0, symSize: 0x210 } + - { offsetInCU: 0xF04, offset: 0x95385, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x144C, symBinAddr: 0x68BB0, symSize: 0x360 } + - { offsetInCU: 0xF7F, offset: 0x95400, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1914, symBinAddr: 0x69078, symSize: 0x1BC } + - { offsetInCU: 0xFCA, offset: 0x9544B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1C38, symBinAddr: 0x6939C, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x9546E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CE0, symBinAddr: 0x69444, symSize: 0x274 } + - { offsetInCU: 0x1024, offset: 0x954A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F54, symBinAddr: 0x696B8, symSize: 0x458 } + - { offsetInCU: 0x27, offset: 0x9552C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6B234, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x9560B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x6B31C, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x9561F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x6B34C, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x95633, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6B374, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x95647, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x6B3B0, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x9565B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x6B41C, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x9566F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x6B460, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x95683, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x6B4A8, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x95697, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x6B4E8, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x957A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6B234, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x957C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x6B260, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x957F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x6B294, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x95809, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x6B2A4, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x9582A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x6B2A8, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x9583E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x6B2D4, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x95873, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x6B308, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x95897, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x6B318, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x958E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6B4F8, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x95949, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x6B790, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x95965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6B798, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x9597D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6B798, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x9599A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x6B680, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x959AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x6B684, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x959E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x6B7B0, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x959F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x6B840, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x95A0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x6B8FC, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x95A1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x6B904, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x95A32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x6B908, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x95A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x6B910, symSize: 0x10 } + - { offsetInCU: 0x1BF, offset: 0x95A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x438, symBinAddr: 0x6B920, symSize: 0x248 } + - { offsetInCU: 0x31A, offset: 0x95BDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x6B65C, symSize: 0x24 } + - { offsetInCU: 0x40E, offset: 0x95CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x6B6C8, symSize: 0x4C } + - { offsetInCU: 0x4E6, offset: 0x95DA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x6B714, symSize: 0x34 } + - { offsetInCU: 0x562, offset: 0x95E24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x6B748, symSize: 0x48 } + - { offsetInCU: 0x6ED, offset: 0x95FAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6B4F8, symSize: 0x14 } + - { offsetInCU: 0x70E, offset: 0x95FD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x6B50C, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x9607A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6BB68, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x960CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x6BB8C, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x961D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6BB68, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x96261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1A40, symBinAddr: 0x885F0, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x967C9, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x6BBE0, symSize: 0x4C } + - { offsetInCU: 0x5CF, offset: 0x967E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x6BC2C, symSize: 0x4C } + - { offsetInCU: 0x72F, offset: 0x96941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1614, symBinAddr: 0x6D154, symSize: 0x8 } + - { offsetInCU: 0x743, offset: 0x96955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x161C, symBinAddr: 0x6D15C, symSize: 0x8 } + - { offsetInCU: 0x757, offset: 0x96969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1624, symBinAddr: 0x6D164, symSize: 0x8 } + - { offsetInCU: 0x76B, offset: 0x9697D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x162C, symBinAddr: 0x6D16C, symSize: 0x8 } + - { offsetInCU: 0x77F, offset: 0x96991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1634, symBinAddr: 0x6D174, symSize: 0x8 } + - { offsetInCU: 0x793, offset: 0x969A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x1698, symBinAddr: 0x6D17C, symSize: 0x20 } + - { offsetInCU: 0x7A7, offset: 0x969B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOb', symObjAddr: 0x16B8, symBinAddr: 0x6D19C, symSize: 0x48 } + - { offsetInCU: 0x7BB, offset: 0x969CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOd', symObjAddr: 0x1700, symBinAddr: 0x6D1E4, symSize: 0x48 } + - { offsetInCU: 0x7CF, offset: 0x969E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1884, symBinAddr: 0x6D358, symSize: 0x8 } + - { offsetInCU: 0x7E3, offset: 0x969F5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x188C, symBinAddr: 0x6D360, symSize: 0x10 } + - { offsetInCU: 0x7F7, offset: 0x96A09, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x189C, symBinAddr: 0x6D370, symSize: 0x8 } + - { offsetInCU: 0x840, offset: 0x96A52, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6D378, symSize: 0x10 } + - { offsetInCU: 0x85C, offset: 0x96A6E, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6D378, symSize: 0x10 } + - { offsetInCU: 0x870, offset: 0x96A82, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6D378, symSize: 0x10 } + - { offsetInCU: 0x8AF, offset: 0x96AC1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x6BBAC, symSize: 0x4 } + - { offsetInCU: 0x8CB, offset: 0x96ADD, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x6BBB0, symSize: 0x4 } + - { offsetInCU: 0x8E7, offset: 0x96AF9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x6BBB4, symSize: 0x4 } + - { offsetInCU: 0x903, offset: 0x96B15, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x6BBB8, symSize: 0x4 } + - { offsetInCU: 0x91F, offset: 0x96B31, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x6BBBC, symSize: 0x4 } + - { offsetInCU: 0x93B, offset: 0x96B4D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x6BBC0, symSize: 0x4 } + - { offsetInCU: 0x957, offset: 0x96B69, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x6BBC4, symSize: 0x4 } + - { offsetInCU: 0x973, offset: 0x96B85, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x6BBC8, symSize: 0xC } + - { offsetInCU: 0x98F, offset: 0x96BA1, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x6BBD4, symSize: 0xC } + - { offsetInCU: 0xBEF, offset: 0x96E01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xCC, symBinAddr: 0x6BC78, symSize: 0x40 } + - { offsetInCU: 0xCB3, offset: 0x96EC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x10C, symBinAddr: 0x6BCB8, symSize: 0x45C } + - { offsetInCU: 0xF32, offset: 0x97144, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x5B8, symBinAddr: 0x6C124, symSize: 0x5C } + - { offsetInCU: 0xF98, offset: 0x971AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x614, symBinAddr: 0x6C180, symSize: 0x5C } + - { offsetInCU: 0xFFE, offset: 0x97210, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x670, symBinAddr: 0x6C1DC, symSize: 0x5C } + - { offsetInCU: 0x1064, offset: 0x97276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x6CC, symBinAddr: 0x6C238, symSize: 0x5C } + - { offsetInCU: 0x10CA, offset: 0x972DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x728, symBinAddr: 0x6C294, symSize: 0x5C } + - { offsetInCU: 0x1195, offset: 0x973A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x784, symBinAddr: 0x6C2F0, symSize: 0x44 } + - { offsetInCU: 0x11FF, offset: 0x97411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7C8, symBinAddr: 0x6C334, symSize: 0x10 } + - { offsetInCU: 0x1231, offset: 0x97443, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7C8, symBinAddr: 0x6C334, symSize: 0x10 } + - { offsetInCU: 0x1260, offset: 0x97472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x7D8, symBinAddr: 0x6C344, symSize: 0x54 } + - { offsetInCU: 0x12D7, offset: 0x974E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x93C, symBinAddr: 0x6C4A8, symSize: 0x34 } + - { offsetInCU: 0x133A, offset: 0x9754C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x970, symBinAddr: 0x6C4DC, symSize: 0x54 } + - { offsetInCU: 0x13B1, offset: 0x975C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0x9C4, symBinAddr: 0x6C530, symSize: 0x4C } + - { offsetInCU: 0x143D, offset: 0x9764F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA10, symBinAddr: 0x6C57C, symSize: 0x84 } + - { offsetInCU: 0x14D8, offset: 0x976EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xA94, symBinAddr: 0x6C600, symSize: 0x74 } + - { offsetInCU: 0x1587, offset: 0x97799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xB08, symBinAddr: 0x6C674, symSize: 0x84 } + - { offsetInCU: 0x1622, offset: 0x97834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xB8C, symBinAddr: 0x6C6F8, symSize: 0x38 } + - { offsetInCU: 0x169F, offset: 0x978B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBC4, symBinAddr: 0x6C730, symSize: 0x38 } + - { offsetInCU: 0x171C, offset: 0x9792E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBFC, symBinAddr: 0x6C768, symSize: 0x38 } + - { offsetInCU: 0x179C, offset: 0x979AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC34, symBinAddr: 0x6C7A0, symSize: 0x38 } + - { offsetInCU: 0x181C, offset: 0x97A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC6C, symBinAddr: 0x6C7D8, symSize: 0x38 } + - { offsetInCU: 0x189C, offset: 0x97AAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCA4, symBinAddr: 0x6C810, symSize: 0x38 } + - { offsetInCU: 0x191C, offset: 0x97B2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCDC, symBinAddr: 0x6C848, symSize: 0x38 } + - { offsetInCU: 0x199C, offset: 0x97BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xD14, symBinAddr: 0x6C880, symSize: 0x38 } + - { offsetInCU: 0x19FC, offset: 0x97C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xD4C, symBinAddr: 0x6C8B8, symSize: 0x44 } + - { offsetInCU: 0x1A93, offset: 0x97CA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xD90, symBinAddr: 0x6C8FC, symSize: 0x13C } + - { offsetInCU: 0x1B64, offset: 0x97D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xECC, symBinAddr: 0x6CA38, symSize: 0xAC } + - { offsetInCU: 0x1C36, offset: 0x97E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0xF78, symBinAddr: 0x6CAE4, symSize: 0x78 } + - { offsetInCU: 0x1CCC, offset: 0x97EDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0xFF0, symBinAddr: 0x6CB5C, symSize: 0x84 } + - { offsetInCU: 0x1CEF, offset: 0x97F01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1074, symBinAddr: 0x6CBE0, symSize: 0x20 } + - { offsetInCU: 0x1D34, offset: 0x97F46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x10C0, symBinAddr: 0x6CC00, symSize: 0x254 } + - { offsetInCU: 0x1E2F, offset: 0x98041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1314, symBinAddr: 0x6CE54, symSize: 0x300 } +... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket new file mode 100644 index 0000000..cb3369f Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml similarity index 65% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml index 3c22fd8..060c7b7 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml @@ -2,684 +2,684 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket' relocations: - - { offsetInCU: 0x34, offset: 0x531A5, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x21278, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x531DA, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x212B0, symSize: 0x0 } - - { offsetInCU: 0x41, offset: 0x53231, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x10AB8, symBinAddr: 0x284F8, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x53251, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x10AC0, symBinAddr: 0x28500, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x53267, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x10AC8, symBinAddr: 0x28508, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x5327D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x10AD0, symBinAddr: 0x28510, symSize: 0x0 } - - { offsetInCU: 0xA3, offset: 0x53293, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x10AD8, symBinAddr: 0x28518, symSize: 0x0 } - - { offsetInCU: 0xB9, offset: 0x532A9, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x10AE0, symBinAddr: 0x28520, symSize: 0x0 } - - { offsetInCU: 0xCF, offset: 0x532BF, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x10AE8, symBinAddr: 0x28528, symSize: 0x0 } - - { offsetInCU: 0xE5, offset: 0x532D5, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x10AF0, symBinAddr: 0x28530, symSize: 0x0 } - - { offsetInCU: 0xFB, offset: 0x532EB, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x10AF8, symBinAddr: 0x28538, symSize: 0x0 } - - { offsetInCU: 0x111, offset: 0x53301, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x10B00, symBinAddr: 0x28540, symSize: 0x0 } - - { offsetInCU: 0x127, offset: 0x53317, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x10B08, symBinAddr: 0x28548, symSize: 0x0 } - - { offsetInCU: 0x13D, offset: 0x5332D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x10B10, symBinAddr: 0x28550, symSize: 0x0 } - - { offsetInCU: 0x153, offset: 0x53343, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x10B18, symBinAddr: 0x28558, symSize: 0x0 } - - { offsetInCU: 0x16B, offset: 0x5335B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xAB30, symBinAddr: 0xEB30, symSize: 0x4F0 } - - { offsetInCU: 0x48C, offset: 0x5367C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xCD48, symBinAddr: 0x10D48, symSize: 0x8C } - - { offsetInCU: 0x4B4, offset: 0x536A4, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x56128, symBinAddr: 0x2E930, symSize: 0x0 } - - { offsetInCU: 0x51C, offset: 0x5370C, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x56140, symBinAddr: 0x2E948, symSize: 0x0 } - - { offsetInCU: 0x537, offset: 0x53727, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x56130, symBinAddr: 0x2E938, symSize: 0x0 } - - { offsetInCU: 0x554, offset: 0x53744, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x56138, symBinAddr: 0x2E940, symSize: 0x0 } - - { offsetInCU: 0xB90, offset: 0x53D80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x18 } - - { offsetInCU: 0xBC7, offset: 0x53DB7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0x18, symBinAddr: 0x4018, symSize: 0x60 } - - { offsetInCU: 0xC0E, offset: 0x53DFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x78, symBinAddr: 0x4078, symSize: 0x4C } - - { offsetInCU: 0xC41, offset: 0x53E31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xC4, symBinAddr: 0x40C4, symSize: 0x60 } - - { offsetInCU: 0xCF9, offset: 0x53EE9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x124, symBinAddr: 0x4124, symSize: 0xC } - - { offsetInCU: 0xD31, offset: 0x53F21, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x130, symBinAddr: 0x4130, symSize: 0x8 } - - { offsetInCU: 0xD69, offset: 0x53F59, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x138, symBinAddr: 0x4138, symSize: 0x34 } - - { offsetInCU: 0xDBF, offset: 0x53FAF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x16C, symBinAddr: 0x416C, symSize: 0x24 } - - { offsetInCU: 0xE00, offset: 0x53FF0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x190, symBinAddr: 0x4190, symSize: 0x14 } - - { offsetInCU: 0xE38, offset: 0x54028, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x1A4, symBinAddr: 0x41A4, symSize: 0x8 } - - { offsetInCU: 0xE70, offset: 0x54060, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x1AC, symBinAddr: 0x41AC, symSize: 0x34 } - - { offsetInCU: 0xEC6, offset: 0x540B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1E0, symBinAddr: 0x41E0, symSize: 0x10 } - - { offsetInCU: 0xF07, offset: 0x540F7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1F0, symBinAddr: 0x41F0, symSize: 0xC } - - { offsetInCU: 0xF39, offset: 0x54129, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x1FC, symBinAddr: 0x41FC, symSize: 0x18 } - - { offsetInCU: 0xF71, offset: 0x54161, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x214, symBinAddr: 0x4214, symSize: 0x144 } - - { offsetInCU: 0x1020, offset: 0x54210, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x358, symBinAddr: 0x4358, symSize: 0x50 } - - { offsetInCU: 0x10B4, offset: 0x542A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x3A8, symBinAddr: 0x43A8, symSize: 0x88 } - - { offsetInCU: 0x118C, offset: 0x5437C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x430, symBinAddr: 0x4430, symSize: 0x2C } - - { offsetInCU: 0x11F1, offset: 0x543E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x45C, symBinAddr: 0x445C, symSize: 0x6C } - - { offsetInCU: 0x12B8, offset: 0x544A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x4C8, symBinAddr: 0x44C8, symSize: 0x234 } - - { offsetInCU: 0x144A, offset: 0x5463A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x6FC, symBinAddr: 0x46FC, symSize: 0xB0 } - - { offsetInCU: 0x1504, offset: 0x546F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7AC, symBinAddr: 0x47AC, symSize: 0x30 } - - { offsetInCU: 0x1538, offset: 0x54728, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7DC, symBinAddr: 0x47DC, symSize: 0x18 } - - { offsetInCU: 0x1570, offset: 0x54760, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x7F4, symBinAddr: 0x47F4, symSize: 0x90 } - - { offsetInCU: 0x15DB, offset: 0x547CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x884, symBinAddr: 0x4884, symSize: 0xC } - - { offsetInCU: 0x160F, offset: 0x547FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x890, symBinAddr: 0x4890, symSize: 0x18 } - - { offsetInCU: 0x1647, offset: 0x54837, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8A8, symBinAddr: 0x48A8, symSize: 0x78 } - - { offsetInCU: 0x1690, offset: 0x54880, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x920, symBinAddr: 0x4920, symSize: 0xC } - - { offsetInCU: 0x16C4, offset: 0x548B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x92C, symBinAddr: 0x492C, symSize: 0x10 } - - { offsetInCU: 0x16FA, offset: 0x548EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x93C, symBinAddr: 0x493C, symSize: 0x10 } - - { offsetInCU: 0x1743, offset: 0x54933, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x94C, symBinAddr: 0x494C, symSize: 0x8 } - - { offsetInCU: 0x1797, offset: 0x54987, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x954, symBinAddr: 0x4954, symSize: 0x1B0 } - - { offsetInCU: 0x189B, offset: 0x54A8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB04, symBinAddr: 0x4B04, symSize: 0xC8 } - - { offsetInCU: 0x1920, offset: 0x54B10, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xBCC, symBinAddr: 0x4BCC, symSize: 0xC } - - { offsetInCU: 0x1962, offset: 0x54B52, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xBD8, symBinAddr: 0x4BD8, symSize: 0x8 } - - { offsetInCU: 0x1989, offset: 0x54B79, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xBE0, symBinAddr: 0x4BE0, symSize: 0x8 } - - { offsetInCU: 0x19A8, offset: 0x54B98, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xBE8, symBinAddr: 0x4BE8, symSize: 0x14 } - - { offsetInCU: 0x1A0F, offset: 0x54BFF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xBFC, symBinAddr: 0x4BFC, symSize: 0xC } - - { offsetInCU: 0x1A83, offset: 0x54C73, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xC08, symBinAddr: 0x4C08, symSize: 0x1C0 } - - { offsetInCU: 0x1B6A, offset: 0x54D5A, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xDC8, symBinAddr: 0x4DC8, symSize: 0x10 } - - { offsetInCU: 0x1B8F, offset: 0x54D7F, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xDD8, symBinAddr: 0x4DD8, symSize: 0x8 } - - { offsetInCU: 0x1BAE, offset: 0x54D9E, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xDE0, symBinAddr: 0x4DE0, symSize: 0x21C } - - { offsetInCU: 0x1D01, offset: 0x54EF1, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0xFFC, symBinAddr: 0x4FFC, symSize: 0x44 } - - { offsetInCU: 0x1D2A, offset: 0x54F1A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1040, symBinAddr: 0x5040, symSize: 0x38 } - - { offsetInCU: 0x1D49, offset: 0x54F39, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x1078, symBinAddr: 0x5078, symSize: 0xD0 } - - { offsetInCU: 0x1DC9, offset: 0x54FB9, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x1148, symBinAddr: 0x5148, symSize: 0x3C } - - { offsetInCU: 0x1E1C, offset: 0x5500C, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x1184, symBinAddr: 0x5184, symSize: 0x34 } - - { offsetInCU: 0x1E45, offset: 0x55035, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x11B8, symBinAddr: 0x51B8, symSize: 0x2C } - - { offsetInCU: 0x1E64, offset: 0x55054, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x11E4, symBinAddr: 0x51E4, symSize: 0xCC } - - { offsetInCU: 0x1F1C, offset: 0x5510C, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x12B0, symBinAddr: 0x52B0, symSize: 0xC } - - { offsetInCU: 0x1F6F, offset: 0x5515F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x12BC, symBinAddr: 0x52BC, symSize: 0x28 } - - { offsetInCU: 0x1F98, offset: 0x55188, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x12E4, symBinAddr: 0x52E4, symSize: 0x28 } - - { offsetInCU: 0x1FB7, offset: 0x551A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x130C, symBinAddr: 0x530C, symSize: 0x8 } - - { offsetInCU: 0x1FF8, offset: 0x551E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x8 } - - { offsetInCU: 0x2039, offset: 0x55229, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x131C, symBinAddr: 0x531C, symSize: 0xD0 } - - { offsetInCU: 0x20B9, offset: 0x552A9, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x13EC, symBinAddr: 0x53EC, symSize: 0x14 } - - { offsetInCU: 0x210C, offset: 0x552FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x1400, symBinAddr: 0x5400, symSize: 0xCC } - - { offsetInCU: 0x21B1, offset: 0x553A1, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x14CC, symBinAddr: 0x54CC, symSize: 0xC } - - { offsetInCU: 0x2204, offset: 0x553F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x14D8, symBinAddr: 0x54D8, symSize: 0x8 } - - { offsetInCU: 0x2245, offset: 0x55435, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x14E0, symBinAddr: 0x54E0, symSize: 0x8 } - - { offsetInCU: 0x2286, offset: 0x55476, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x14E8, symBinAddr: 0x54E8, symSize: 0x138 } - - { offsetInCU: 0x233B, offset: 0x5552B, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x1620, symBinAddr: 0x5620, symSize: 0x54 } - - { offsetInCU: 0x239F, offset: 0x5558F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1674, symBinAddr: 0x5674, symSize: 0x10C } - - { offsetInCU: 0x2455, offset: 0x55645, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1780, symBinAddr: 0x5780, symSize: 0x34 } - - { offsetInCU: 0x24B9, offset: 0x556A9, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x17B4, symBinAddr: 0x57B4, symSize: 0x30 } - - { offsetInCU: 0x24E2, offset: 0x556D2, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x17E4, symBinAddr: 0x57E4, symSize: 0x30 } - - { offsetInCU: 0x2501, offset: 0x556F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x1814, symBinAddr: 0x5814, symSize: 0x8 } - - { offsetInCU: 0x2551, offset: 0x55741, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x181C, symBinAddr: 0x581C, symSize: 0x8 } - - { offsetInCU: 0x25A1, offset: 0x55791, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x1824, symBinAddr: 0x5824, symSize: 0xB0 } - - { offsetInCU: 0x2621, offset: 0x55811, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x18D4, symBinAddr: 0x58D4, symSize: 0x1C } - - { offsetInCU: 0x267C, offset: 0x5586C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x18F0, symBinAddr: 0x58F0, symSize: 0x94 } - - { offsetInCU: 0x2706, offset: 0x558F6, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1984, symBinAddr: 0x5984, symSize: 0x20 } - - { offsetInCU: 0x275B, offset: 0x5594B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x19A4, symBinAddr: 0x59A4, symSize: 0xB0 } - - { offsetInCU: 0x27DB, offset: 0x559CB, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1A54, symBinAddr: 0x5A54, symSize: 0x1C } - - { offsetInCU: 0x2836, offset: 0x55A26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1A70, symBinAddr: 0x5A70, symSize: 0x94 } - - { offsetInCU: 0x28C0, offset: 0x55AB0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1B04, symBinAddr: 0x5B04, symSize: 0x24 } - - { offsetInCU: 0x2915, offset: 0x55B05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1B28, symBinAddr: 0x5B28, symSize: 0xB0 } - - { offsetInCU: 0x2995, offset: 0x55B85, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1BD8, symBinAddr: 0x5BD8, symSize: 0x1C } - - { offsetInCU: 0x29F0, offset: 0x55BE0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1BF4, symBinAddr: 0x5BF4, symSize: 0x94 } - - { offsetInCU: 0x2A7A, offset: 0x55C6A, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1C88, symBinAddr: 0x5C88, symSize: 0x24 } - - { offsetInCU: 0x2ACF, offset: 0x55CBF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1CAC, symBinAddr: 0x5CAC, symSize: 0xDC } - - { offsetInCU: 0x2B65, offset: 0x55D55, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1D88, symBinAddr: 0x5D88, symSize: 0x14 } - - { offsetInCU: 0x2BC0, offset: 0x55DB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1D9C, symBinAddr: 0x5D9C, symSize: 0x94 } - - { offsetInCU: 0x2C4E, offset: 0x55E3E, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1E30, symBinAddr: 0x5E30, symSize: 0x10 } - - { offsetInCU: 0x2CA3, offset: 0x55E93, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1E40, symBinAddr: 0x5E40, symSize: 0xFC } - - { offsetInCU: 0x2D39, offset: 0x55F29, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x1F3C, symBinAddr: 0x5F3C, symSize: 0x14 } - - { offsetInCU: 0x2D8C, offset: 0x55F7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x1F50, symBinAddr: 0x5F50, symSize: 0xBC } - - { offsetInCU: 0x2E1A, offset: 0x5600A, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x200C, symBinAddr: 0x600C, symSize: 0x1C } - - { offsetInCU: 0x2E6D, offset: 0x5605D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x2028, symBinAddr: 0x6028, symSize: 0x10 } - - { offsetInCU: 0x2EC5, offset: 0x560B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x2038, symBinAddr: 0x6038, symSize: 0x210 } - - { offsetInCU: 0x2FC7, offset: 0x561B7, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x2248, symBinAddr: 0x6248, symSize: 0x1E8 } - - { offsetInCU: 0x32A7, offset: 0x56497, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.117', symObjAddr: 0x2430, symBinAddr: 0x6430, symSize: 0x4DC } - - { offsetInCU: 0x367F, offset: 0x5686F, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x290C, symBinAddr: 0x690C, symSize: 0x7C } - - { offsetInCU: 0x3742, offset: 0x56932, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x2988, symBinAddr: 0x6988, symSize: 0x30 } - - { offsetInCU: 0x376B, offset: 0x5695B, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x29B8, symBinAddr: 0x69B8, symSize: 0x28 } - - { offsetInCU: 0x378A, offset: 0x5697A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.132', symObjAddr: 0x29E0, symBinAddr: 0x69E0, symSize: 0x8 } - - { offsetInCU: 0x37D6, offset: 0x569C6, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.134', symObjAddr: 0x29E8, symBinAddr: 0x69E8, symSize: 0x7C } - - { offsetInCU: 0x3886, offset: 0x56A76, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2A64, symBinAddr: 0x6A64, symSize: 0x8 } - - { offsetInCU: 0x38D2, offset: 0x56AC2, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2A6C, symBinAddr: 0x6A6C, symSize: 0x5C } - - { offsetInCU: 0x38FB, offset: 0x56AEB, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2AC8, symBinAddr: 0x6AC8, symSize: 0x48 } - - { offsetInCU: 0x391A, offset: 0x56B0A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2B10, symBinAddr: 0x6B10, symSize: 0x1F0 } - - { offsetInCU: 0x39FA, offset: 0x56BEA, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2D00, symBinAddr: 0x6D00, symSize: 0x1E8 } - - { offsetInCU: 0x3C0B, offset: 0x56DFB, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x2EE8, symBinAddr: 0x6EE8, symSize: 0x360 } - - { offsetInCU: 0x3E17, offset: 0x57007, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x3248, symBinAddr: 0x7248, symSize: 0x78 } - - { offsetInCU: 0x3EC7, offset: 0x570B7, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x32C0, symBinAddr: 0x72C0, symSize: 0x8 } - - { offsetInCU: 0x3F13, offset: 0x57103, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x32C8, symBinAddr: 0x72C8, symSize: 0x254 } - - { offsetInCU: 0x4166, offset: 0x57356, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x351C, symBinAddr: 0x751C, symSize: 0x148 } - - { offsetInCU: 0x423A, offset: 0x5742A, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3664, symBinAddr: 0x7664, symSize: 0x34 } - - { offsetInCU: 0x4289, offset: 0x57479, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x3698, symBinAddr: 0x7698, symSize: 0x1D4 } - - { offsetInCU: 0x43A2, offset: 0x57592, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x386C, symBinAddr: 0x786C, symSize: 0x12C } - - { offsetInCU: 0x4489, offset: 0x57679, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x3998, symBinAddr: 0x7998, symSize: 0x8 } - - { offsetInCU: 0x44EC, offset: 0x576DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x39A0, symBinAddr: 0x79A0, symSize: 0xC } - - { offsetInCU: 0x4561, offset: 0x57751, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x39AC, symBinAddr: 0x79AC, symSize: 0x200 } - - { offsetInCU: 0x4685, offset: 0x57875, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x3BAC, symBinAddr: 0x7BAC, symSize: 0x1C4 } - - { offsetInCU: 0x47E8, offset: 0x579D8, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x3D70, symBinAddr: 0x7D70, symSize: 0x2D4 } - - { offsetInCU: 0x493C, offset: 0x57B2C, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x4044, symBinAddr: 0x8044, symSize: 0x34 } - - { offsetInCU: 0x499C, offset: 0x57B8C, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.153', symObjAddr: 0x4078, symBinAddr: 0x8078, symSize: 0x38 } - - { offsetInCU: 0x4A0D, offset: 0x57BFD, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x40B0, symBinAddr: 0x80B0, symSize: 0x38 } - - { offsetInCU: 0x4A36, offset: 0x57C26, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x40E8, symBinAddr: 0x80E8, symSize: 0x30 } - - { offsetInCU: 0x4A55, offset: 0x57C45, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x4118, symBinAddr: 0x8118, symSize: 0x54 } - - { offsetInCU: 0x4A7E, offset: 0x57C6E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x416C, symBinAddr: 0x816C, symSize: 0x10 } - - { offsetInCU: 0x4AD4, offset: 0x57CC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x417C, symBinAddr: 0x817C, symSize: 0xC } - - { offsetInCU: 0x4B3A, offset: 0x57D2A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x4188, symBinAddr: 0x8188, symSize: 0x208 } - - { offsetInCU: 0x4C4D, offset: 0x57E3D, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4390, symBinAddr: 0x8390, symSize: 0x1C8 } - - { offsetInCU: 0x4DA3, offset: 0x57F93, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x4558, symBinAddr: 0x8558, symSize: 0x194 } - - { offsetInCU: 0x4E83, offset: 0x58073, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x46EC, symBinAddr: 0x86EC, symSize: 0x12C } - - { offsetInCU: 0x4F49, offset: 0x58139, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4818, symBinAddr: 0x8818, symSize: 0x4C } - - { offsetInCU: 0x4F72, offset: 0x58162, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4864, symBinAddr: 0x8864, symSize: 0x40 } - - { offsetInCU: 0x4F91, offset: 0x58181, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x48A4, symBinAddr: 0x88A4, symSize: 0x12C } - - { offsetInCU: 0x503C, offset: 0x5822C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x49D0, symBinAddr: 0x89D0, symSize: 0xF0 } - - { offsetInCU: 0x510A, offset: 0x582FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x4AC0, symBinAddr: 0x8AC0, symSize: 0x58 } - - { offsetInCU: 0x5160, offset: 0x58350, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x4B18, symBinAddr: 0x8B18, symSize: 0xFC } - - { offsetInCU: 0x526B, offset: 0x5845B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x4C14, symBinAddr: 0x8C14, symSize: 0xE4 } - - { offsetInCU: 0x534E, offset: 0x5853E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x4CF8, symBinAddr: 0x8CF8, symSize: 0x114 } - - { offsetInCU: 0x540F, offset: 0x585FF, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x4E0C, symBinAddr: 0x8E0C, symSize: 0xE4 } - - { offsetInCU: 0x5532, offset: 0x58722, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x4EF0, symBinAddr: 0x8EF0, symSize: 0xD4 } - - { offsetInCU: 0x55E9, offset: 0x587D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x4FC4, symBinAddr: 0x8FC4, symSize: 0x7C } - - { offsetInCU: 0x5644, offset: 0x58834, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x5040, symBinAddr: 0x9040, symSize: 0x24 } - - { offsetInCU: 0x5687, offset: 0x58877, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5064, symBinAddr: 0x9064, symSize: 0x1DC } - - { offsetInCU: 0x57BD, offset: 0x589AD, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5240, symBinAddr: 0x9240, symSize: 0x10 } - - { offsetInCU: 0x5832, offset: 0x58A22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5250, symBinAddr: 0x9250, symSize: 0x158 } - - { offsetInCU: 0x59A0, offset: 0x58B90, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x53A8, symBinAddr: 0x93A8, symSize: 0x9C } - - { offsetInCU: 0x5A9C, offset: 0x58C8C, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0xE6E0, symBinAddr: 0x1E34C, symSize: 0xC0 } - - { offsetInCU: 0x5AD5, offset: 0x58CC5, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5444, symBinAddr: 0x9444, symSize: 0x34 } - - { offsetInCU: 0x5B28, offset: 0x58D18, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x5478, symBinAddr: 0x9478, symSize: 0x34 } - - { offsetInCU: 0x5B8C, offset: 0x58D7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x54AC, symBinAddr: 0x94AC, symSize: 0x310 } - - { offsetInCU: 0x5D1C, offset: 0x58F0C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x57BC, symBinAddr: 0x97BC, symSize: 0x84 } - - { offsetInCU: 0x5D5E, offset: 0x58F4E, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x5840, symBinAddr: 0x9840, symSize: 0x90 } - - { offsetInCU: 0x5DB1, offset: 0x58FA1, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x58D0, symBinAddr: 0x98D0, symSize: 0xA0 } - - { offsetInCU: 0x5E54, offset: 0x59044, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x5970, symBinAddr: 0x9970, symSize: 0x34 } - - { offsetInCU: 0x5E9E, offset: 0x5908E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x59A4, symBinAddr: 0x99A4, symSize: 0x10 } - - { offsetInCU: 0x5EC7, offset: 0x590B7, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x59B4, symBinAddr: 0x99B4, symSize: 0x44 } - - { offsetInCU: 0x5EF0, offset: 0x590E0, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x59F8, symBinAddr: 0x99F8, symSize: 0x38 } - - { offsetInCU: 0x5F0F, offset: 0x590FF, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.179', symObjAddr: 0x5A30, symBinAddr: 0x9A30, symSize: 0x9C } - - { offsetInCU: 0x5FA1, offset: 0x59191, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.180', symObjAddr: 0x5ACC, symBinAddr: 0x9ACC, symSize: 0x34 } - - { offsetInCU: 0x5FEB, offset: 0x591DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x5B00, symBinAddr: 0x9B00, symSize: 0x18 } - - { offsetInCU: 0x603D, offset: 0x5922D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x5B18, symBinAddr: 0x9B18, symSize: 0x108 } - - { offsetInCU: 0x6141, offset: 0x59331, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x5C20, symBinAddr: 0x9C20, symSize: 0x48 } - - { offsetInCU: 0x619F, offset: 0x5938F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x5C68, symBinAddr: 0x9C68, symSize: 0xC } - - { offsetInCU: 0x61C8, offset: 0x593B8, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x5C74, symBinAddr: 0x9C74, symSize: 0x8 } - - { offsetInCU: 0x61E7, offset: 0x593D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x5C7C, symBinAddr: 0x9C7C, symSize: 0x68 } - - { offsetInCU: 0x6238, offset: 0x59428, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x5CE4, symBinAddr: 0x9CE4, symSize: 0x44 } - - { offsetInCU: 0x626C, offset: 0x5945C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x5D28, symBinAddr: 0x9D28, symSize: 0x324 } - - { offsetInCU: 0x64C9, offset: 0x596B9, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x604C, symBinAddr: 0xA04C, symSize: 0x34 } - - { offsetInCU: 0x6529, offset: 0x59719, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6080, symBinAddr: 0xA080, symSize: 0x90 } - - { offsetInCU: 0x65A6, offset: 0x59796, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6110, symBinAddr: 0xA110, symSize: 0x3C } - - { offsetInCU: 0x65E8, offset: 0x597D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x614C, symBinAddr: 0xA14C, symSize: 0x58 } - - { offsetInCU: 0x6632, offset: 0x59822, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x61A4, symBinAddr: 0xA1A4, symSize: 0x48 } - - { offsetInCU: 0x6674, offset: 0x59864, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x61EC, symBinAddr: 0xA1EC, symSize: 0x58 } - - { offsetInCU: 0x66BE, offset: 0x598AE, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6244, symBinAddr: 0xA244, symSize: 0x48 } - - { offsetInCU: 0x6700, offset: 0x598F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x628C, symBinAddr: 0xA28C, symSize: 0x58 } - - { offsetInCU: 0x674A, offset: 0x5993A, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x62E4, symBinAddr: 0xA2E4, symSize: 0x48 } - - { offsetInCU: 0x678C, offset: 0x5997C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x632C, symBinAddr: 0xA32C, symSize: 0x70 } - - { offsetInCU: 0x67D1, offset: 0x599C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x639C, symBinAddr: 0xA39C, symSize: 0xD4 } - - { offsetInCU: 0x6827, offset: 0x59A17, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6470, symBinAddr: 0xA470, symSize: 0xD4 } - - { offsetInCU: 0x687D, offset: 0x59A6D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6544, symBinAddr: 0xA544, symSize: 0xF4 } - - { offsetInCU: 0x690E, offset: 0x59AFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x6638, symBinAddr: 0xA638, symSize: 0x118 } - - { offsetInCU: 0x6986, offset: 0x59B76, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x6750, symBinAddr: 0xA750, symSize: 0x100 } - - { offsetInCU: 0x69DC, offset: 0x59BCC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x6850, symBinAddr: 0xA850, symSize: 0xC0 } - - { offsetInCU: 0x6A43, offset: 0x59C33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x6910, symBinAddr: 0xA910, symSize: 0x10C } - - { offsetInCU: 0x6A99, offset: 0x59C89, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x6A1C, symBinAddr: 0xAA1C, symSize: 0x10C } - - { offsetInCU: 0x6AEF, offset: 0x59CDF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x6B28, symBinAddr: 0xAB28, symSize: 0x10C } - - { offsetInCU: 0x6B45, offset: 0x59D35, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x6C34, symBinAddr: 0xAC34, symSize: 0x10C } - - { offsetInCU: 0x6B9B, offset: 0x59D8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x6D40, symBinAddr: 0xAD40, symSize: 0x10C } - - { offsetInCU: 0x6BF1, offset: 0x59DE1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x6E4C, symBinAddr: 0xAE4C, symSize: 0xD4 } - - { offsetInCU: 0x6C47, offset: 0x59E37, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x6F20, symBinAddr: 0xAF20, symSize: 0xD8 } - - { offsetInCU: 0x6CDD, offset: 0x59ECD, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x6FF8, symBinAddr: 0xAFF8, symSize: 0x1C } - - { offsetInCU: 0x6D38, offset: 0x59F28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7014, symBinAddr: 0xB014, symSize: 0xD8 } - - { offsetInCU: 0x6DCE, offset: 0x59FBE, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x70EC, symBinAddr: 0xB0EC, symSize: 0x18 } - - { offsetInCU: 0x6E29, offset: 0x5A019, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7104, symBinAddr: 0xB104, symSize: 0x10C } - - { offsetInCU: 0x6EA9, offset: 0x5A099, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7210, symBinAddr: 0xB210, symSize: 0x78 } - - { offsetInCU: 0x6EFC, offset: 0x5A0EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x7288, symBinAddr: 0xB288, symSize: 0xE4 } - - { offsetInCU: 0x6F7C, offset: 0x5A16C, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x736C, symBinAddr: 0xB36C, symSize: 0x50 } - - { offsetInCU: 0x6FCF, offset: 0x5A1BF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x73BC, symBinAddr: 0xB3BC, symSize: 0xEC } - - { offsetInCU: 0x704F, offset: 0x5A23F, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x74A8, symBinAddr: 0xB4A8, symSize: 0x5C } - - { offsetInCU: 0x70A2, offset: 0x5A292, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7504, symBinAddr: 0xB504, symSize: 0x10C } - - { offsetInCU: 0x7122, offset: 0x5A312, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x7610, symBinAddr: 0xB610, symSize: 0x78 } - - { offsetInCU: 0x7175, offset: 0x5A365, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x7688, symBinAddr: 0xB688, symSize: 0xE4 } - - { offsetInCU: 0x71F5, offset: 0x5A3E5, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x776C, symBinAddr: 0xB76C, symSize: 0x50 } - - { offsetInCU: 0x7248, offset: 0x5A438, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x77BC, symBinAddr: 0xB7BC, symSize: 0x30 } - - { offsetInCU: 0x7280, offset: 0x5A470, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x77EC, symBinAddr: 0xB7EC, symSize: 0x30 } - - { offsetInCU: 0x72B8, offset: 0x5A4A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x781C, symBinAddr: 0xB81C, symSize: 0x18 } - - { offsetInCU: 0x72F0, offset: 0x5A4E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x7834, symBinAddr: 0xB834, symSize: 0x18 } - - { offsetInCU: 0x7328, offset: 0x5A518, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x784C, symBinAddr: 0xB84C, symSize: 0x30 } - - { offsetInCU: 0x7360, offset: 0x5A550, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x787C, symBinAddr: 0xB87C, symSize: 0x30 } - - { offsetInCU: 0x7398, offset: 0x5A588, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x78AC, symBinAddr: 0xB8AC, symSize: 0x18 } - - { offsetInCU: 0x73D0, offset: 0x5A5C0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x78C4, symBinAddr: 0xB8C4, symSize: 0x18 } - - { offsetInCU: 0x7408, offset: 0x5A5F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x78DC, symBinAddr: 0xB8DC, symSize: 0x90 } - - { offsetInCU: 0x7497, offset: 0x5A687, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x796C, symBinAddr: 0xB96C, symSize: 0x64 } - - { offsetInCU: 0x7526, offset: 0x5A716, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x79D0, symBinAddr: 0xB9D0, symSize: 0x88 } - - { offsetInCU: 0x75B5, offset: 0x5A7A5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x7A58, symBinAddr: 0xBA58, symSize: 0x5C } - - { offsetInCU: 0x7644, offset: 0x5A834, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x7AB4, symBinAddr: 0xBAB4, symSize: 0x90 } - - { offsetInCU: 0x76D3, offset: 0x5A8C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x7B44, symBinAddr: 0xBB44, symSize: 0x90 } - - { offsetInCU: 0x7783, offset: 0x5A973, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x7BD4, symBinAddr: 0xBBD4, symSize: 0x64 } - - { offsetInCU: 0x7812, offset: 0x5AA02, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x7C38, symBinAddr: 0xBC38, symSize: 0x88 } - - { offsetInCU: 0x78A1, offset: 0x5AA91, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x7CC0, symBinAddr: 0xBCC0, symSize: 0x5C } - - { offsetInCU: 0x7930, offset: 0x5AB20, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x7D1C, symBinAddr: 0xBD1C, symSize: 0xFC } - - { offsetInCU: 0x79C6, offset: 0x5ABB6, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x7E18, symBinAddr: 0xBE18, symSize: 0x100 } - - { offsetInCU: 0x7AB3, offset: 0x5ACA3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x7F18, symBinAddr: 0xBF18, symSize: 0xFC } - - { offsetInCU: 0x7B49, offset: 0x5AD39, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8014, symBinAddr: 0xC014, symSize: 0x100 } - - { offsetInCU: 0x7C36, offset: 0x5AE26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8114, symBinAddr: 0xC114, symSize: 0xB4 } - - { offsetInCU: 0x7CB6, offset: 0x5AEA6, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x81C8, symBinAddr: 0xC1C8, symSize: 0x1C } - - { offsetInCU: 0x7D11, offset: 0x5AF01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x81E4, symBinAddr: 0xC1E4, symSize: 0xB4 } - - { offsetInCU: 0x7D91, offset: 0x5AF81, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x8298, symBinAddr: 0xC298, symSize: 0x1C } - - { offsetInCU: 0x7DEC, offset: 0x5AFDC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x82B4, symBinAddr: 0xC2B4, symSize: 0xAC } - - { offsetInCU: 0x7E6C, offset: 0x5B05C, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8360, symBinAddr: 0xC360, symSize: 0x18 } - - { offsetInCU: 0x7EC7, offset: 0x5B0B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x8378, symBinAddr: 0xC378, symSize: 0x3FC } - - { offsetInCU: 0x81CE, offset: 0x5B3BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x8774, symBinAddr: 0xC774, symSize: 0xDC } - - { offsetInCU: 0x8245, offset: 0x5B435, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x8850, symBinAddr: 0xC850, symSize: 0x1F0 } - - { offsetInCU: 0x835F, offset: 0x5B54F, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x8A40, symBinAddr: 0xCA40, symSize: 0x64 } - - { offsetInCU: 0x83CB, offset: 0x5B5BB, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x8AA4, symBinAddr: 0xCAA4, symSize: 0x54 } - - { offsetInCU: 0x8429, offset: 0x5B619, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x8AF8, symBinAddr: 0xCAF8, symSize: 0x24 } - - { offsetInCU: 0x8486, offset: 0x5B676, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x8B1C, symBinAddr: 0xCB1C, symSize: 0x10 } - - { offsetInCU: 0x84AF, offset: 0x5B69F, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x8B2C, symBinAddr: 0xCB2C, symSize: 0xC } - - { offsetInCU: 0x84CE, offset: 0x5B6BE, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.216', symObjAddr: 0x8B38, symBinAddr: 0xCB38, symSize: 0x24 } - - { offsetInCU: 0x852B, offset: 0x5B71B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x8B5C, symBinAddr: 0xCB5C, symSize: 0x18 } - - { offsetInCU: 0x8563, offset: 0x5B753, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x8B74, symBinAddr: 0xCB74, symSize: 0x18 } - - { offsetInCU: 0x859B, offset: 0x5B78B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x8B8C, symBinAddr: 0xCB8C, symSize: 0x38 } - - { offsetInCU: 0x85EC, offset: 0x5B7DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x8BC4, symBinAddr: 0xCBC4, symSize: 0x38 } - - { offsetInCU: 0x862E, offset: 0x5B81E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x8BFC, symBinAddr: 0xCBFC, symSize: 0x38 } - - { offsetInCU: 0x8670, offset: 0x5B860, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x8C34, symBinAddr: 0xCC34, symSize: 0x38 } - - { offsetInCU: 0x86B2, offset: 0x5B8A2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x8C6C, symBinAddr: 0xCC6C, symSize: 0x14 } - - { offsetInCU: 0x8705, offset: 0x5B8F5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8C80, symBinAddr: 0xCC80, symSize: 0xC } - - { offsetInCU: 0x8776, offset: 0x5B966, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8C8C, symBinAddr: 0xCC8C, symSize: 0xF0 } - - { offsetInCU: 0x882D, offset: 0x5BA1D, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x8D7C, symBinAddr: 0xCD7C, symSize: 0x54 } - - { offsetInCU: 0x8880, offset: 0x5BA70, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x8DD0, symBinAddr: 0xCDD0, symSize: 0x10 } - - { offsetInCU: 0x88E2, offset: 0x5BAD2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8DE0, symBinAddr: 0xCDE0, symSize: 0xF8 } - - { offsetInCU: 0x8999, offset: 0x5BB89, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x8ED8, symBinAddr: 0xCED8, symSize: 0x54 } - - { offsetInCU: 0x89EC, offset: 0x5BBDC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x8F2C, symBinAddr: 0xCF2C, symSize: 0x14 } - - { offsetInCU: 0x8A4E, offset: 0x5BC3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8F40, symBinAddr: 0xCF40, symSize: 0xC } - - { offsetInCU: 0x8ACE, offset: 0x5BCBE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x8F4C, symBinAddr: 0xCF4C, symSize: 0x14 } - - { offsetInCU: 0x8B41, offset: 0x5BD31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8F60, symBinAddr: 0xCF60, symSize: 0x12C } - - { offsetInCU: 0x8C09, offset: 0x5BDF9, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x908C, symBinAddr: 0xD08C, symSize: 0x54 } - - { offsetInCU: 0x8C5C, offset: 0x5BE4C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x90E0, symBinAddr: 0xD0E0, symSize: 0xE8 } - - { offsetInCU: 0x8D25, offset: 0x5BF15, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x91C8, symBinAddr: 0xD1C8, symSize: 0xD0 } - - { offsetInCU: 0x8DDC, offset: 0x5BFCC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x9298, symBinAddr: 0xD298, symSize: 0x130 } - - { offsetInCU: 0x8E10, offset: 0x5C000, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0x93C8, symBinAddr: 0xD3C8, symSize: 0x194 } - - { offsetInCU: 0x8FC0, offset: 0x5C1B0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0x955C, symBinAddr: 0xD55C, symSize: 0x70 } - - { offsetInCU: 0x9061, offset: 0x5C251, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0x95CC, symBinAddr: 0xD5CC, symSize: 0x944 } - - { offsetInCU: 0x942E, offset: 0x5C61E, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0x9F10, symBinAddr: 0xDF10, symSize: 0x34 } - - { offsetInCU: 0x94A3, offset: 0x5C693, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0x9F44, symBinAddr: 0xDF44, symSize: 0x200 } - - { offsetInCU: 0x95A5, offset: 0x5C795, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xA144, symBinAddr: 0xE144, symSize: 0x30 } - - { offsetInCU: 0x95F8, offset: 0x5C7E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xA174, symBinAddr: 0xE174, symSize: 0x188 } - - { offsetInCU: 0x9716, offset: 0x5C906, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xA2FC, symBinAddr: 0xE2FC, symSize: 0x38 } - - { offsetInCU: 0x978B, offset: 0x5C97B, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xA334, symBinAddr: 0xE334, symSize: 0x38 } - - { offsetInCU: 0x97B4, offset: 0x5C9A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xA36C, symBinAddr: 0xE36C, symSize: 0x3C } - - { offsetInCU: 0x97F6, offset: 0x5C9E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xA3A8, symBinAddr: 0xE3A8, symSize: 0x108 } - - { offsetInCU: 0x98DC, offset: 0x5CACC, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xA4B0, symBinAddr: 0xE4B0, symSize: 0x48 } - - { offsetInCU: 0x993A, offset: 0x5CB2A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xA4F8, symBinAddr: 0xE4F8, symSize: 0xF4 } - - { offsetInCU: 0x99B8, offset: 0x5CBA8, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xA5EC, symBinAddr: 0xE5EC, symSize: 0x90 } - - { offsetInCU: 0x9A52, offset: 0x5CC42, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xA67C, symBinAddr: 0xE67C, symSize: 0x34 } - - { offsetInCU: 0x9AA5, offset: 0x5CC95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xA6B0, symBinAddr: 0xE6B0, symSize: 0xB0 } - - { offsetInCU: 0x9B34, offset: 0x5CD24, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xA760, symBinAddr: 0xE760, symSize: 0xCC } - - { offsetInCU: 0x9BC9, offset: 0x5CDB9, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xA82C, symBinAddr: 0xE82C, symSize: 0x54 } - - { offsetInCU: 0x9C1C, offset: 0x5CE0C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xA880, symBinAddr: 0xE880, symSize: 0xE8 } - - { offsetInCU: 0x9CE5, offset: 0x5CED5, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xA968, symBinAddr: 0xE968, symSize: 0xCC } - - { offsetInCU: 0x9D9C, offset: 0x5CF8C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xAA34, symBinAddr: 0xEA34, symSize: 0xFC } - - { offsetInCU: 0x9E4D, offset: 0x5D03D, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xB020, symBinAddr: 0xF020, symSize: 0x30 } - - { offsetInCU: 0x9E8F, offset: 0x5D07F, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xB050, symBinAddr: 0xF050, symSize: 0x34 } - - { offsetInCU: 0x9F04, offset: 0x5D0F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xB084, symBinAddr: 0xF084, symSize: 0xC0 } - - { offsetInCU: 0x9F86, offset: 0x5D176, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xB144, symBinAddr: 0xF144, symSize: 0x34 } - - { offsetInCU: 0x9FEA, offset: 0x5D1DA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xB178, symBinAddr: 0xF178, symSize: 0x3C } - - { offsetInCU: 0xA02C, offset: 0x5D21C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xB1B4, symBinAddr: 0xF1B4, symSize: 0x108 } - - { offsetInCU: 0xA112, offset: 0x5D302, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xB2BC, symBinAddr: 0xF2BC, symSize: 0x48 } - - { offsetInCU: 0xA170, offset: 0x5D360, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xB304, symBinAddr: 0xF304, symSize: 0xF4 } - - { offsetInCU: 0xA1EE, offset: 0x5D3DE, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xB3F8, symBinAddr: 0xF3F8, symSize: 0x8C } - - { offsetInCU: 0xA288, offset: 0x5D478, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xB484, symBinAddr: 0xF484, symSize: 0x34 } - - { offsetInCU: 0xA2DB, offset: 0x5D4CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xB4B8, symBinAddr: 0xF4B8, symSize: 0xB0 } - - { offsetInCU: 0xA36A, offset: 0x5D55A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xB568, symBinAddr: 0xF568, symSize: 0xC8 } - - { offsetInCU: 0xA3DD, offset: 0x5D5CD, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xB630, symBinAddr: 0xF630, symSize: 0x78 } - - { offsetInCU: 0xA430, offset: 0x5D620, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xB6A8, symBinAddr: 0xF6A8, symSize: 0xFC } - - { offsetInCU: 0xA4BA, offset: 0x5D6AA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xB7A4, symBinAddr: 0xF7A4, symSize: 0x1BC } - - { offsetInCU: 0xA669, offset: 0x5D859, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xB960, symBinAddr: 0xF960, symSize: 0xCC } - - { offsetInCU: 0xA73F, offset: 0x5D92F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xBA2C, symBinAddr: 0xFA2C, symSize: 0x978 } - - { offsetInCU: 0xABE0, offset: 0x5DDD0, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xC3A4, symBinAddr: 0x103A4, symSize: 0xC } - - { offsetInCU: 0xAC3C, offset: 0x5DE2C, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xC3B0, symBinAddr: 0x103B0, symSize: 0xC } - - { offsetInCU: 0xAC98, offset: 0x5DE88, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xC3BC, symBinAddr: 0x103BC, symSize: 0x374 } - - { offsetInCU: 0xAE2B, offset: 0x5E01B, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xC730, symBinAddr: 0x10730, symSize: 0x30 } - - { offsetInCU: 0xAE7E, offset: 0x5E06E, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xC760, symBinAddr: 0x10760, symSize: 0xB0 } - - { offsetInCU: 0xAF19, offset: 0x5E109, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xC810, symBinAddr: 0x10810, symSize: 0x78 } - - { offsetInCU: 0xAFB8, offset: 0x5E1A8, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xC888, symBinAddr: 0x10888, symSize: 0x38 } - - { offsetInCU: 0xAFE1, offset: 0x5E1D1, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xC8C0, symBinAddr: 0x108C0, symSize: 0x2C } - - { offsetInCU: 0xB000, offset: 0x5E1F0, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xC8EC, symBinAddr: 0x108EC, symSize: 0x40 } - - { offsetInCU: 0xB029, offset: 0x5E219, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xC92C, symBinAddr: 0x1092C, symSize: 0x34 } - - { offsetInCU: 0xB048, offset: 0x5E238, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.305', symObjAddr: 0xC960, symBinAddr: 0x10960, symSize: 0x3C } - - { offsetInCU: 0xB0BD, offset: 0x5E2AD, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xC99C, symBinAddr: 0x1099C, symSize: 0x4C } - - { offsetInCU: 0xB0E6, offset: 0x5E2D6, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xC9E8, symBinAddr: 0x109E8, symSize: 0x3C } - - { offsetInCU: 0xB105, offset: 0x5E2F5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xCA24, symBinAddr: 0x10A24, symSize: 0x78 } - - { offsetInCU: 0xB15B, offset: 0x5E34B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xCA9C, symBinAddr: 0x10A9C, symSize: 0xE8 } - - { offsetInCU: 0xB1CC, offset: 0x5E3BC, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xCB84, symBinAddr: 0x10B84, symSize: 0x30 } - - { offsetInCU: 0xB21F, offset: 0x5E40F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xCBB4, symBinAddr: 0x10BB4, symSize: 0x20 } - - { offsetInCU: 0xB260, offset: 0x5E450, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xCBD4, symBinAddr: 0x10BD4, symSize: 0x170 } - - { offsetInCU: 0xB360, offset: 0x5E550, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xCD44, symBinAddr: 0x10D44, symSize: 0x4 } - - { offsetInCU: 0xB3D7, offset: 0x5E5C7, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCDD4, symBinAddr: 0x10DD4, symSize: 0x38 } - - { offsetInCU: 0xB415, offset: 0x5E605, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xCE0C, symBinAddr: 0x10E0C, symSize: 0x78 } - - { offsetInCU: 0xB457, offset: 0x5E647, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xCE84, symBinAddr: 0x10E84, symSize: 0x78 } - - { offsetInCU: 0xB4D5, offset: 0x5E6C5, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCEFC, symBinAddr: 0x10EFC, symSize: 0xB8 } - - { offsetInCU: 0xB517, offset: 0x5E707, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xCFB4, symBinAddr: 0x10FB4, symSize: 0x164 } - - { offsetInCU: 0xB59E, offset: 0x5E78E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xD118, symBinAddr: 0x11118, symSize: 0x68 } - - { offsetInCU: 0xB668, offset: 0x5E858, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xD180, symBinAddr: 0x11180, symSize: 0x68 } - - { offsetInCU: 0xB726, offset: 0x5E916, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xD1E8, symBinAddr: 0x111E8, symSize: 0x104 } - - { offsetInCU: 0xB815, offset: 0x5EA05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xD2EC, symBinAddr: 0x112EC, symSize: 0x8C } - - { offsetInCU: 0xB8AC, offset: 0x5EA9C, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xD378, symBinAddr: 0x11378, symSize: 0x138 } - - { offsetInCU: 0xB975, offset: 0x5EB65, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xD4B0, symBinAddr: 0x114B0, symSize: 0x138 } - - { offsetInCU: 0xBA3E, offset: 0x5EC2E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xD5E8, symBinAddr: 0x115E8, symSize: 0x84 } - - { offsetInCU: 0xBA8C, offset: 0x5EC7C, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xD66C, symBinAddr: 0x1166C, symSize: 0x3C } - - { offsetInCU: 0xBACE, offset: 0x5ECBE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xD6A8, symBinAddr: 0x116A8, symSize: 0x84 } - - { offsetInCU: 0xBB18, offset: 0x5ED08, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xD72C, symBinAddr: 0x1172C, symSize: 0x3C } - - { offsetInCU: 0xBB5A, offset: 0x5ED4A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xD768, symBinAddr: 0x11768, symSize: 0x64 } - - { offsetInCU: 0xBC61, offset: 0x5EE51, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xD7CC, symBinAddr: 0x117CC, symSize: 0xB0 } - - { offsetInCU: 0xBCE1, offset: 0x5EED1, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xD87C, symBinAddr: 0x1187C, symSize: 0x1C } - - { offsetInCU: 0xBD3C, offset: 0x5EF2C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xD898, symBinAddr: 0x11898, symSize: 0x94 } - - { offsetInCU: 0xBDC6, offset: 0x5EFB6, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xD92C, symBinAddr: 0x1192C, symSize: 0x24 } - - { offsetInCU: 0xBE1B, offset: 0x5F00B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xD950, symBinAddr: 0x11950, symSize: 0x18 } - - { offsetInCU: 0xBE96, offset: 0x5F086, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xD968, symBinAddr: 0x11968, symSize: 0x14 } - - { offsetInCU: 0xBEFE, offset: 0x5F0EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xD97C, symBinAddr: 0x1197C, symSize: 0x48 } - - { offsetInCU: 0xBF7B, offset: 0x5F16B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xD9C4, symBinAddr: 0x119C4, symSize: 0x40 } - - { offsetInCU: 0xBFC1, offset: 0x5F1B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xDA04, symBinAddr: 0x11A04, symSize: 0x34 } - - { offsetInCU: 0xC007, offset: 0x5F1F7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xDA38, symBinAddr: 0x11A38, symSize: 0x34 } - - { offsetInCU: 0xC04D, offset: 0x5F23D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xDA6C, symBinAddr: 0x11A6C, symSize: 0x3C } - - { offsetInCU: 0xC093, offset: 0x5F283, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xDAA8, symBinAddr: 0x11AA8, symSize: 0x3C } - - { offsetInCU: 0xC0D9, offset: 0x5F2C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xDAE4, symBinAddr: 0x11AE4, symSize: 0x9C } - - { offsetInCU: 0xC176, offset: 0x5F366, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xDB80, symBinAddr: 0x11B80, symSize: 0x3C } - - { offsetInCU: 0xC1BC, offset: 0x5F3AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xDBBC, symBinAddr: 0x11BBC, symSize: 0x3C } - - { offsetInCU: 0xC202, offset: 0x5F3F2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xDBF8, symBinAddr: 0x11BF8, symSize: 0x2C } - - { offsetInCU: 0xC248, offset: 0x5F438, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xDC24, symBinAddr: 0x11C24, symSize: 0x318 } - - { offsetInCU: 0xC48E, offset: 0x5F67E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xDF3C, symBinAddr: 0x11F3C, symSize: 0x7C } - - { offsetInCU: 0xC505, offset: 0x5F6F5, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xDFB8, symBinAddr: 0x11FB8, symSize: 0x7C } - - { offsetInCU: 0xC57D, offset: 0x5F76D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xE034, symBinAddr: 0x12034, symSize: 0x10 } - - { offsetInCU: 0xC5C0, offset: 0x5F7B0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xE044, symBinAddr: 0x12044, symSize: 0x10 } - - { offsetInCU: 0xC603, offset: 0x5F7F3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xE054, symBinAddr: 0x12054, symSize: 0x5C } - - { offsetInCU: 0xC659, offset: 0x5F849, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xE0B0, symBinAddr: 0x120B0, symSize: 0x6C } - - { offsetInCU: 0xC6B3, offset: 0x5F8A3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xE11C, symBinAddr: 0x1211C, symSize: 0x38 } - - { offsetInCU: 0xC70C, offset: 0x5F8FC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xE154, symBinAddr: 0x12154, symSize: 0x60 } - - { offsetInCU: 0xC771, offset: 0x5F961, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xE1B4, symBinAddr: 0x121B4, symSize: 0x60 } - - { offsetInCU: 0xC7D6, offset: 0x5F9C6, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xE214, symBinAddr: 0x12214, symSize: 0xC } - - { offsetInCU: 0xC83B, offset: 0x5FA2B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xE220, symBinAddr: 0x12220, symSize: 0x184 } - - { offsetInCU: 0xC915, offset: 0x5FB05, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xE3A4, symBinAddr: 0x123A4, symSize: 0x18 } - - { offsetInCU: 0xC949, offset: 0x5FB39, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xE3BC, symBinAddr: 0x123BC, symSize: 0x18 } - - { offsetInCU: 0xC97D, offset: 0x5FB6D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xE3D4, symBinAddr: 0x123D4, symSize: 0x18 } - - { offsetInCU: 0xC9B1, offset: 0x5FBA1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xE3EC, symBinAddr: 0x123EC, symSize: 0x18 } - - { offsetInCU: 0xC9E5, offset: 0x5FBD5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xE404, symBinAddr: 0x12404, symSize: 0x11C } - - { offsetInCU: 0xCA19, offset: 0x5FC09, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xE520, symBinAddr: 0x12520, symSize: 0x7C } - - { offsetInCU: 0xCA76, offset: 0x5FC66, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0xE59C, symBinAddr: 0x1259C, symSize: 0x5C } - - { offsetInCU: 0xCAD6, offset: 0x5FCC6, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xE5F8, symBinAddr: 0x125F8, symSize: 0x7C } - - { offsetInCU: 0xCB46, offset: 0x5FD36, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0xE674, symBinAddr: 0x12674, symSize: 0x5C } - - { offsetInCU: 0x27, offset: 0x6396D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x126D0, symSize: 0x18 } - - { offsetInCU: 0x41, offset: 0x63987, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xD4A8, symBinAddr: 0x28C10, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x639A7, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xD4B0, symBinAddr: 0x28C18, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x639BD, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xD4B8, symBinAddr: 0x28C20, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x639D3, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xD4C0, symBinAddr: 0x28C28, symSize: 0x0 } - - { offsetInCU: 0x97, offset: 0x639DD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xA7F0, symBinAddr: 0x1CBD0, symSize: 0x6C } - - { offsetInCU: 0xBF, offset: 0x63A05, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x40160, symBinAddr: 0x2E950, symSize: 0x0 } - - { offsetInCU: 0x125, offset: 0x63A6B, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x40168, symBinAddr: 0x2E958, symSize: 0x0 } - - { offsetInCU: 0x65E, offset: 0x63FA4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x126D0, symSize: 0x18 } - - { offsetInCU: 0x696, offset: 0x63FDC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0x18, symBinAddr: 0x126E8, symSize: 0x94 } - - { offsetInCU: 0x701, offset: 0x64047, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0xAC, symBinAddr: 0x1277C, symSize: 0x48 } - - { offsetInCU: 0x735, offset: 0x6407B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xF4, symBinAddr: 0x127C4, symSize: 0x34 } - - { offsetInCU: 0x76D, offset: 0x640B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x128, symBinAddr: 0x127F8, symSize: 0x30 } - - { offsetInCU: 0x7A1, offset: 0x640E7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x158, symBinAddr: 0x12828, symSize: 0x10 } - - { offsetInCU: 0x7D7, offset: 0x6411D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x168, symBinAddr: 0x12838, symSize: 0x10 } - - { offsetInCU: 0x820, offset: 0x64166, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x178, symBinAddr: 0x12848, symSize: 0x8 } - - { offsetInCU: 0x874, offset: 0x641BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x180, symBinAddr: 0x12850, symSize: 0x190 } - - { offsetInCU: 0x96E, offset: 0x642B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x310, symBinAddr: 0x129E0, symSize: 0xE4 } - - { offsetInCU: 0x9F3, offset: 0x64339, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x3F4, symBinAddr: 0x12AC4, symSize: 0xC } - - { offsetInCU: 0xA35, offset: 0x6437B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x410, symBinAddr: 0x12AD0, symSize: 0xD0 } - - { offsetInCU: 0xAB5, offset: 0x643FB, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x4E0, symBinAddr: 0x12BA0, symSize: 0x10 } - - { offsetInCU: 0xADA, offset: 0x64420, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x4F0, symBinAddr: 0x12BB0, symSize: 0x8 } - - { offsetInCU: 0xAF9, offset: 0x6443F, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x4F8, symBinAddr: 0x12BB8, symSize: 0x3C } - - { offsetInCU: 0xB4C, offset: 0x64492, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x594, symBinAddr: 0x12BF4, symSize: 0xCC } - - { offsetInCU: 0xC04, offset: 0x6454A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x660, symBinAddr: 0x12CC0, symSize: 0xC } - - { offsetInCU: 0xC57, offset: 0x6459D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x6BC, symBinAddr: 0x12CCC, symSize: 0x8 } - - { offsetInCU: 0xC98, offset: 0x645DE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x6C4, symBinAddr: 0x12CD4, symSize: 0x8 } - - { offsetInCU: 0xCD9, offset: 0x6461F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x6CC, symBinAddr: 0x12CDC, symSize: 0xD0 } - - { offsetInCU: 0xD59, offset: 0x6469F, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x79C, symBinAddr: 0x12DAC, symSize: 0x14 } - - { offsetInCU: 0xDAC, offset: 0x646F2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x7B0, symBinAddr: 0x12DC0, symSize: 0xCC } - - { offsetInCU: 0xE51, offset: 0x64797, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x87C, symBinAddr: 0x12E8C, symSize: 0xC } - - { offsetInCU: 0xEA4, offset: 0x647EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x888, symBinAddr: 0x12E98, symSize: 0x8 } - - { offsetInCU: 0xEE5, offset: 0x6482B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x890, symBinAddr: 0x12EA0, symSize: 0x8 } - - { offsetInCU: 0xF26, offset: 0x6486C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x898, symBinAddr: 0x12EA8, symSize: 0x138 } - - { offsetInCU: 0xFDB, offset: 0x64921, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x9D0, symBinAddr: 0x12FE0, symSize: 0x54 } - - { offsetInCU: 0x103F, offset: 0x64985, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xAA0, symBinAddr: 0x13034, symSize: 0x10C } - - { offsetInCU: 0x10F5, offset: 0x64A3B, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xBAC, symBinAddr: 0x13140, symSize: 0x34 } - - { offsetInCU: 0x1159, offset: 0x64A9F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xC40, symBinAddr: 0x13174, symSize: 0x8 } - - { offsetInCU: 0x11A9, offset: 0x64AEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xC48, symBinAddr: 0x1317C, symSize: 0x8 } - - { offsetInCU: 0x11F9, offset: 0x64B3F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xC50, symBinAddr: 0x13184, symSize: 0xD8 } - - { offsetInCU: 0x128F, offset: 0x64BD5, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xD28, symBinAddr: 0x1325C, symSize: 0x1C } - - { offsetInCU: 0x12EA, offset: 0x64C30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xD44, symBinAddr: 0x13278, symSize: 0x94 } - - { offsetInCU: 0x1374, offset: 0x64CBA, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xDD8, symBinAddr: 0x1330C, symSize: 0x20 } - - { offsetInCU: 0x13C9, offset: 0x64D0F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xDF8, symBinAddr: 0x1332C, symSize: 0xD8 } - - { offsetInCU: 0x145F, offset: 0x64DA5, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xED0, symBinAddr: 0x13404, symSize: 0x1C } - - { offsetInCU: 0x14BA, offset: 0x64E00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xEEC, symBinAddr: 0x13420, symSize: 0x94 } - - { offsetInCU: 0x1544, offset: 0x64E8A, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0xF80, symBinAddr: 0x134B4, symSize: 0x24 } - - { offsetInCU: 0x1599, offset: 0x64EDF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0xFA4, symBinAddr: 0x134D8, symSize: 0xD8 } - - { offsetInCU: 0x162F, offset: 0x64F75, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x107C, symBinAddr: 0x135B0, symSize: 0x18 } - - { offsetInCU: 0x168A, offset: 0x64FD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1094, symBinAddr: 0x135C8, symSize: 0xD8 } - - { offsetInCU: 0x1720, offset: 0x65066, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x116C, symBinAddr: 0x136A0, symSize: 0x18 } - - { offsetInCU: 0x177B, offset: 0x650C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x1184, symBinAddr: 0x136B8, symSize: 0xD8 } - - { offsetInCU: 0x1811, offset: 0x65157, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x125C, symBinAddr: 0x13790, symSize: 0x1C } - - { offsetInCU: 0x186C, offset: 0x651B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1278, symBinAddr: 0x137AC, symSize: 0x90 } - - { offsetInCU: 0x18E9, offset: 0x6522F, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x1308, symBinAddr: 0x1383C, symSize: 0x24 } - - { offsetInCU: 0x192B, offset: 0x65271, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x132C, symBinAddr: 0x13860, symSize: 0x90 } - - { offsetInCU: 0x19A8, offset: 0x652EE, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x13BC, symBinAddr: 0x138F0, symSize: 0x24 } - - { offsetInCU: 0x19EA, offset: 0x65330, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x13E0, symBinAddr: 0x13914, symSize: 0x90 } - - { offsetInCU: 0x1A67, offset: 0x653AD, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1470, symBinAddr: 0x139A4, symSize: 0x24 } - - { offsetInCU: 0x1AA9, offset: 0x653EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1494, symBinAddr: 0x139C8, symSize: 0xD8 } - - { offsetInCU: 0x1B3F, offset: 0x65485, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x156C, symBinAddr: 0x13AA0, symSize: 0x14 } - - { offsetInCU: 0x1B9A, offset: 0x654E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1580, symBinAddr: 0x13AB4, symSize: 0x94 } - - { offsetInCU: 0x1C28, offset: 0x6556E, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x1614, symBinAddr: 0x13B48, symSize: 0x10 } - - { offsetInCU: 0x1C7D, offset: 0x655C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x1624, symBinAddr: 0x13B58, symSize: 0xD8 } - - { offsetInCU: 0x1D13, offset: 0x65659, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x16FC, symBinAddr: 0x13C30, symSize: 0x14 } - - { offsetInCU: 0x1D6E, offset: 0x656B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x1710, symBinAddr: 0x13C44, symSize: 0x94 } - - { offsetInCU: 0x1DFC, offset: 0x65742, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x17A4, symBinAddr: 0x13CD8, symSize: 0x10 } - - { offsetInCU: 0x1E51, offset: 0x65797, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x17B4, symBinAddr: 0x13CE8, symSize: 0x94 } - - { offsetInCU: 0x1EDF, offset: 0x65825, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x1848, symBinAddr: 0x13D7C, symSize: 0x10 } - - { offsetInCU: 0x1F34, offset: 0x6587A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x1858, symBinAddr: 0x13D8C, symSize: 0xD8 } - - { offsetInCU: 0x1FCA, offset: 0x65910, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x1930, symBinAddr: 0x13E64, symSize: 0x14 } - - { offsetInCU: 0x2025, offset: 0x6596B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x1944, symBinAddr: 0x13E78, symSize: 0xFC } - - { offsetInCU: 0x20BB, offset: 0x65A01, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1A40, symBinAddr: 0x13F74, symSize: 0x14 } - - { offsetInCU: 0x210E, offset: 0x65A54, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1A54, symBinAddr: 0x13F88, symSize: 0xBC } - - { offsetInCU: 0x219C, offset: 0x65AE2, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1B10, symBinAddr: 0x14044, symSize: 0x1C } - - { offsetInCU: 0x21EF, offset: 0x65B35, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1B2C, symBinAddr: 0x14060, symSize: 0xF4 } - - { offsetInCU: 0x2282, offset: 0x65BC8, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1C20, symBinAddr: 0x14154, symSize: 0x34 } - - { offsetInCU: 0x22E6, offset: 0x65C2C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1C54, symBinAddr: 0x14188, symSize: 0xD4 } - - { offsetInCU: 0x2359, offset: 0x65C9F, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1D28, symBinAddr: 0x1425C, symSize: 0x34 } - - { offsetInCU: 0x23BD, offset: 0x65D03, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1D5C, symBinAddr: 0x14290, symSize: 0xB4 } - - { offsetInCU: 0x2430, offset: 0x65D76, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1E10, symBinAddr: 0x14344, symSize: 0x34 } - - { offsetInCU: 0x2494, offset: 0x65DDA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1E44, symBinAddr: 0x14378, symSize: 0xE4 } - - { offsetInCU: 0x2518, offset: 0x65E5E, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x1F28, symBinAddr: 0x1445C, symSize: 0x34 } - - { offsetInCU: 0x258D, offset: 0x65ED3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x1F5C, symBinAddr: 0x14490, symSize: 0x134 } - - { offsetInCU: 0x2633, offset: 0x65F79, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2090, symBinAddr: 0x145C4, symSize: 0x38 } - - { offsetInCU: 0x26B9, offset: 0x65FFF, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x20C8, symBinAddr: 0x145FC, symSize: 0x40 } - - { offsetInCU: 0x26E2, offset: 0x66028, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2108, symBinAddr: 0x1463C, symSize: 0x40 } - - { offsetInCU: 0x2701, offset: 0x66047, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x2148, symBinAddr: 0x1467C, symSize: 0xD4 } - - { offsetInCU: 0x2774, offset: 0x660BA, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x221C, symBinAddr: 0x14750, symSize: 0x34 } - - { offsetInCU: 0x27D8, offset: 0x6611E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2250, symBinAddr: 0x14784, symSize: 0xD4 } - - { offsetInCU: 0x282E, offset: 0x66174, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2324, symBinAddr: 0x14858, symSize: 0xD4 } - - { offsetInCU: 0x2884, offset: 0x661CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x23F8, symBinAddr: 0x1492C, symSize: 0xF4 } - - { offsetInCU: 0x2915, offset: 0x6625B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x24EC, symBinAddr: 0x14A20, symSize: 0x14C } - - { offsetInCU: 0x297C, offset: 0x662C2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2638, symBinAddr: 0x14B6C, symSize: 0x8 } - - { offsetInCU: 0x29B2, offset: 0x662F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x2640, symBinAddr: 0x14B74, symSize: 0x10C } - - { offsetInCU: 0x2A08, offset: 0x6634E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x274C, symBinAddr: 0x14C80, symSize: 0x10C } - - { offsetInCU: 0x2A5E, offset: 0x663A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x2858, symBinAddr: 0x14D8C, symSize: 0xD4 } - - { offsetInCU: 0x2AB4, offset: 0x663FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x292C, symBinAddr: 0x14E60, symSize: 0x90 } - - { offsetInCU: 0x2B39, offset: 0x6647F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x29BC, symBinAddr: 0x14EF0, symSize: 0x178 } - - { offsetInCU: 0x2C61, offset: 0x665A7, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2B34, symBinAddr: 0x15068, symSize: 0x38 } - - { offsetInCU: 0x2CC3, offset: 0x66609, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2B6C, symBinAddr: 0x150A0, symSize: 0x34 } - - { offsetInCU: 0x2CEC, offset: 0x66632, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.72', symObjAddr: 0x2BA0, symBinAddr: 0x150D4, symSize: 0x344 } - - { offsetInCU: 0x2F00, offset: 0x66846, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x2EE4, symBinAddr: 0x15418, symSize: 0x38 } - - { offsetInCU: 0x2F6C, offset: 0x668B2, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x2F1C, symBinAddr: 0x15450, symSize: 0x3C } - - { offsetInCU: 0x2F95, offset: 0x668DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x2F58, symBinAddr: 0x1548C, symSize: 0x374 } - - { offsetInCU: 0x31DA, offset: 0x66B20, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x32CC, symBinAddr: 0x15800, symSize: 0x344 } - - { offsetInCU: 0x34D3, offset: 0x66E19, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3610, symBinAddr: 0x15B44, symSize: 0x1C8 } - - { offsetInCU: 0x35E5, offset: 0x66F2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x37D8, symBinAddr: 0x15D0C, symSize: 0x68 } - - { offsetInCU: 0x3650, offset: 0x66F96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3840, symBinAddr: 0x15D74, symSize: 0x70 } - - { offsetInCU: 0x36BB, offset: 0x67001, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x38B0, symBinAddr: 0x15DE4, symSize: 0xC0 } - - { offsetInCU: 0x37A1, offset: 0x670E7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3970, symBinAddr: 0x15EA4, symSize: 0xC8 } - - { offsetInCU: 0x3874, offset: 0x671BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3A38, symBinAddr: 0x15F6C, symSize: 0x184 } - - { offsetInCU: 0x399D, offset: 0x672E3, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x3BBC, symBinAddr: 0x160F0, symSize: 0x60 } - - { offsetInCU: 0x39DF, offset: 0x67325, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x3C1C, symBinAddr: 0x16150, symSize: 0x58 } - - { offsetInCU: 0x3A42, offset: 0x67388, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x3C74, symBinAddr: 0x161A8, symSize: 0x24 } - - { offsetInCU: 0x3AB6, offset: 0x673FC, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.88', symObjAddr: 0x3CB4, symBinAddr: 0x161CC, symSize: 0x24 } - - { offsetInCU: 0x3B13, offset: 0x67459, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x3CD8, symBinAddr: 0x161F0, symSize: 0x184 } - - { offsetInCU: 0x3BF2, offset: 0x67538, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x3E5C, symBinAddr: 0x16374, symSize: 0x60 } - - { offsetInCU: 0x3C34, offset: 0x6757A, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x3EBC, symBinAddr: 0x163D4, symSize: 0x58 } - - { offsetInCU: 0x3C84, offset: 0x675CA, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x3F14, symBinAddr: 0x1642C, symSize: 0x24 } - - { offsetInCU: 0x3CE1, offset: 0x67627, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x3F38, symBinAddr: 0x16450, symSize: 0x24 } - - { offsetInCU: 0x3D3E, offset: 0x67684, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x3F5C, symBinAddr: 0x16474, symSize: 0x10C } - - { offsetInCU: 0x3DFC, offset: 0x67742, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4068, symBinAddr: 0x16580, symSize: 0x1DC } - - { offsetInCU: 0x4026, offset: 0x6796C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x4244, symBinAddr: 0x1675C, symSize: 0x48 } - - { offsetInCU: 0x4089, offset: 0x679CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x428C, symBinAddr: 0x167A4, symSize: 0x3C } - - { offsetInCU: 0x40DA, offset: 0x67A20, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x42C8, symBinAddr: 0x167E0, symSize: 0x3C } - - { offsetInCU: 0x411C, offset: 0x67A62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x4304, symBinAddr: 0x1681C, symSize: 0x3C } - - { offsetInCU: 0x416D, offset: 0x67AB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x4340, symBinAddr: 0x16858, symSize: 0x3C } - - { offsetInCU: 0x41AF, offset: 0x67AF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x437C, symBinAddr: 0x16894, symSize: 0x3C } - - { offsetInCU: 0x41F1, offset: 0x67B37, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x43B8, symBinAddr: 0x168D0, symSize: 0x3C } - - { offsetInCU: 0x4233, offset: 0x67B79, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x43F4, symBinAddr: 0x1690C, symSize: 0x3C } - - { offsetInCU: 0x4275, offset: 0x67BBB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x4430, symBinAddr: 0x16948, symSize: 0x3C } - - { offsetInCU: 0x42B7, offset: 0x67BFD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x446C, symBinAddr: 0x16984, symSize: 0x94 } - - { offsetInCU: 0x4316, offset: 0x67C5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x4500, symBinAddr: 0x16A18, symSize: 0x94 } - - { offsetInCU: 0x4366, offset: 0x67CAC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4594, symBinAddr: 0x16AAC, symSize: 0x34 } - - { offsetInCU: 0x439A, offset: 0x67CE0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x45C8, symBinAddr: 0x16AE0, symSize: 0x1AC } - - { offsetInCU: 0x451E, offset: 0x67E64, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4774, symBinAddr: 0x16C8C, symSize: 0xD4 } - - { offsetInCU: 0x4585, offset: 0x67ECB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4848, symBinAddr: 0x16D60, symSize: 0xD4 } - - { offsetInCU: 0x45EC, offset: 0x67F32, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x491C, symBinAddr: 0x16E34, symSize: 0x140 } - - { offsetInCU: 0x468A, offset: 0x67FD0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4A5C, symBinAddr: 0x16F74, symSize: 0x5C } - - { offsetInCU: 0x46DD, offset: 0x68023, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4AB8, symBinAddr: 0x16FD0, symSize: 0x34 } - - { offsetInCU: 0x4727, offset: 0x6806D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x4AFC, symBinAddr: 0x17004, symSize: 0x140 } - - { offsetInCU: 0x47C5, offset: 0x6810B, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x4C3C, symBinAddr: 0x17144, symSize: 0x5C } - - { offsetInCU: 0x4818, offset: 0x6815E, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x4C98, symBinAddr: 0x171A0, symSize: 0x34 } - - { offsetInCU: 0x4862, offset: 0x681A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x4CCC, symBinAddr: 0x171D4, symSize: 0x11C } - - { offsetInCU: 0x4900, offset: 0x68246, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x4DE8, symBinAddr: 0x172F0, symSize: 0x50 } - - { offsetInCU: 0x4953, offset: 0x68299, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x4E38, symBinAddr: 0x17340, symSize: 0x34 } - - { offsetInCU: 0x499D, offset: 0x682E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x4E6C, symBinAddr: 0x17374, symSize: 0x140 } - - { offsetInCU: 0x4A3B, offset: 0x68381, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x4FAC, symBinAddr: 0x174B4, symSize: 0x34 } - - { offsetInCU: 0x4A8E, offset: 0x683D4, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x4FE0, symBinAddr: 0x174E8, symSize: 0x34 } - - { offsetInCU: 0x4AD8, offset: 0x6841E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x5014, symBinAddr: 0x1751C, symSize: 0x140 } - - { offsetInCU: 0x4B76, offset: 0x684BC, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x5154, symBinAddr: 0x1765C, symSize: 0x34 } - - { offsetInCU: 0x4BC9, offset: 0x6850F, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x5188, symBinAddr: 0x17690, symSize: 0x34 } - - { offsetInCU: 0x4C13, offset: 0x68559, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x51BC, symBinAddr: 0x176C4, symSize: 0x11C } - - { offsetInCU: 0x4CB1, offset: 0x685F7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x52D8, symBinAddr: 0x177E0, symSize: 0x34 } - - { offsetInCU: 0x4D04, offset: 0x6864A, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x530C, symBinAddr: 0x17814, symSize: 0x34 } - - { offsetInCU: 0x4D4E, offset: 0x68694, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5340, symBinAddr: 0x17848, symSize: 0x140 } - - { offsetInCU: 0x4DEC, offset: 0x68732, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x5480, symBinAddr: 0x17988, symSize: 0x34 } - - { offsetInCU: 0x4E3F, offset: 0x68785, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x54B4, symBinAddr: 0x179BC, symSize: 0x34 } - - { offsetInCU: 0x4E89, offset: 0x687CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x54E8, symBinAddr: 0x179F0, symSize: 0x140 } - - { offsetInCU: 0x4F27, offset: 0x6886D, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5628, symBinAddr: 0x17B30, symSize: 0x34 } - - { offsetInCU: 0x4F7A, offset: 0x688C0, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x565C, symBinAddr: 0x17B64, symSize: 0x34 } - - { offsetInCU: 0x4FC4, offset: 0x6890A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5690, symBinAddr: 0x17B98, symSize: 0x11C } - - { offsetInCU: 0x5062, offset: 0x689A8, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x57AC, symBinAddr: 0x17CB4, symSize: 0x34 } - - { offsetInCU: 0x50B5, offset: 0x689FB, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x57E0, symBinAddr: 0x17CE8, symSize: 0x34 } - - { offsetInCU: 0x50FF, offset: 0x68A45, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5814, symBinAddr: 0x17D1C, symSize: 0x1B0 } - - { offsetInCU: 0x522A, offset: 0x68B70, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x59C4, symBinAddr: 0x17ECC, symSize: 0x140 } - - { offsetInCU: 0x52C8, offset: 0x68C0E, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x5B04, symBinAddr: 0x1800C, symSize: 0x34 } - - { offsetInCU: 0x531B, offset: 0x68C61, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x5B38, symBinAddr: 0x18040, symSize: 0x34 } - - { offsetInCU: 0x5365, offset: 0x68CAB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x5B6C, symBinAddr: 0x18074, symSize: 0x140 } - - { offsetInCU: 0x5403, offset: 0x68D49, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x5CAC, symBinAddr: 0x181B4, symSize: 0x34 } - - { offsetInCU: 0x5456, offset: 0x68D9C, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x5CE0, symBinAddr: 0x181E8, symSize: 0x34 } - - { offsetInCU: 0x54A0, offset: 0x68DE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x5D14, symBinAddr: 0x1821C, symSize: 0x11C } - - { offsetInCU: 0x553E, offset: 0x68E84, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x5E30, symBinAddr: 0x18338, symSize: 0x34 } - - { offsetInCU: 0x5591, offset: 0x68ED7, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x5E64, symBinAddr: 0x1836C, symSize: 0x34 } - - { offsetInCU: 0x55DB, offset: 0x68F21, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x5E98, symBinAddr: 0x183A0, symSize: 0xD8 } - - { offsetInCU: 0x5671, offset: 0x68FB7, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x5F70, symBinAddr: 0x18478, symSize: 0x18 } - - { offsetInCU: 0x56CC, offset: 0x69012, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x5F88, symBinAddr: 0x18490, symSize: 0xDC } - - { offsetInCU: 0x5762, offset: 0x690A8, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x6064, symBinAddr: 0x1856C, symSize: 0x1C } - - { offsetInCU: 0x57BD, offset: 0x69103, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6080, symBinAddr: 0x18588, symSize: 0xD8 } - - { offsetInCU: 0x5853, offset: 0x69199, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6158, symBinAddr: 0x18660, symSize: 0x48 } - - { offsetInCU: 0x58A6, offset: 0x691EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x61A0, symBinAddr: 0x186A8, symSize: 0xD8 } - - { offsetInCU: 0x593C, offset: 0x69282, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x6278, symBinAddr: 0x18780, symSize: 0x48 } - - { offsetInCU: 0x598F, offset: 0x692D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x62C0, symBinAddr: 0x187C8, symSize: 0xA4 } - - { offsetInCU: 0x59F2, offset: 0x69338, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6364, symBinAddr: 0x1886C, symSize: 0xC } - - { offsetInCU: 0x5A48, offset: 0x6938E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6370, symBinAddr: 0x18878, symSize: 0x184 } - - { offsetInCU: 0x5B28, offset: 0x6946E, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x64F4, symBinAddr: 0x189FC, symSize: 0x26C } - - { offsetInCU: 0x5D0A, offset: 0x69650, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x67EC, symBinAddr: 0x18C68, symSize: 0x174 } - - { offsetInCU: 0x5DD8, offset: 0x6971E, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6960, symBinAddr: 0x18DDC, symSize: 0x2A4 } - - { offsetInCU: 0x5F85, offset: 0x698CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x6C04, symBinAddr: 0x19080, symSize: 0x90 } - - { offsetInCU: 0x5FE8, offset: 0x6992E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x6C94, symBinAddr: 0x19110, symSize: 0x184 } - - { offsetInCU: 0x60C8, offset: 0x69A0E, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x6E18, symBinAddr: 0x19294, symSize: 0x190 } - - { offsetInCU: 0x618E, offset: 0x69AD4, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x6FA8, symBinAddr: 0x19424, symSize: 0x9C } - - { offsetInCU: 0x6203, offset: 0x69B49, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x7044, symBinAddr: 0x194C0, symSize: 0x174 } - - { offsetInCU: 0x62D1, offset: 0x69C17, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x71B8, symBinAddr: 0x19634, symSize: 0x184 } - - { offsetInCU: 0x63A8, offset: 0x69CEE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x733C, symBinAddr: 0x197B8, symSize: 0x1E4 } - - { offsetInCU: 0x6458, offset: 0x69D9E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7520, symBinAddr: 0x1999C, symSize: 0xC0 } - - { offsetInCU: 0x6508, offset: 0x69E4E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x75E0, symBinAddr: 0x19A5C, symSize: 0xC0 } - - { offsetInCU: 0x6597, offset: 0x69EDD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x76A0, symBinAddr: 0x19B1C, symSize: 0x84 } - - { offsetInCU: 0x65E0, offset: 0x69F26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7724, symBinAddr: 0x19BA0, symSize: 0xC } - - { offsetInCU: 0x6636, offset: 0x69F7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7730, symBinAddr: 0x19BAC, symSize: 0x14 } - - { offsetInCU: 0x669F, offset: 0x69FE5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7744, symBinAddr: 0x19BC0, symSize: 0xC } - - { offsetInCU: 0x66F5, offset: 0x6A03B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7750, symBinAddr: 0x19BCC, symSize: 0x14 } - - { offsetInCU: 0x675E, offset: 0x6A0A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7764, symBinAddr: 0x19BE0, symSize: 0x1C4 } - - { offsetInCU: 0x684F, offset: 0x6A195, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x7928, symBinAddr: 0x19DA4, symSize: 0x270 } - - { offsetInCU: 0x6A5D, offset: 0x6A3A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x7C34, symBinAddr: 0x1A014, symSize: 0x174 } - - { offsetInCU: 0x6B2B, offset: 0x6A471, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x7DA8, symBinAddr: 0x1A188, symSize: 0x18C } - - { offsetInCU: 0x6C52, offset: 0x6A598, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x7F34, symBinAddr: 0x1A314, symSize: 0x174 } - - { offsetInCU: 0x6D20, offset: 0x6A666, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x80A8, symBinAddr: 0x1A488, symSize: 0x184 } - - { offsetInCU: 0x6E38, offset: 0x6A77E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x822C, symBinAddr: 0x1A60C, symSize: 0x150 } - - { offsetInCU: 0x6F02, offset: 0x6A848, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x837C, symBinAddr: 0x1A75C, symSize: 0x150 } - - { offsetInCU: 0x7021, offset: 0x6A967, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x84CC, symBinAddr: 0x1A8AC, symSize: 0x150 } - - { offsetInCU: 0x70EB, offset: 0x6AA31, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x861C, symBinAddr: 0x1A9FC, symSize: 0x114 } - - { offsetInCU: 0x71BD, offset: 0x6AB03, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x8730, symBinAddr: 0x1AB10, symSize: 0x8 } - - { offsetInCU: 0x720D, offset: 0x6AB53, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x8738, symBinAddr: 0x1AB18, symSize: 0xCC } - - { offsetInCU: 0x72A2, offset: 0x6ABE8, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x8804, symBinAddr: 0x1ABE4, symSize: 0x3C } - - { offsetInCU: 0x72F5, offset: 0x6AC3B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x8840, symBinAddr: 0x1AC20, symSize: 0x144 } - - { offsetInCU: 0x73AC, offset: 0x6ACF2, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x8984, symBinAddr: 0x1AD64, symSize: 0x94 } - - { offsetInCU: 0x7421, offset: 0x6AD67, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x8A18, symBinAddr: 0x1ADF8, symSize: 0x3C } - - { offsetInCU: 0x7474, offset: 0x6ADBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x8A54, symBinAddr: 0x1AE34, symSize: 0x118 } - - { offsetInCU: 0x751A, offset: 0x6AE60, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x8B6C, symBinAddr: 0x1AF4C, symSize: 0x3C } - - { offsetInCU: 0x756D, offset: 0x6AEB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x8BA8, symBinAddr: 0x1AF88, symSize: 0x8 } - - { offsetInCU: 0x75BD, offset: 0x6AF03, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x8BB0, symBinAddr: 0x1AF90, symSize: 0x13C } - - { offsetInCU: 0x768B, offset: 0x6AFD1, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x8CEC, symBinAddr: 0x1B0CC, symSize: 0x50 } - - { offsetInCU: 0x7700, offset: 0x6B046, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x8D3C, symBinAddr: 0x1B11C, symSize: 0x144 } - - { offsetInCU: 0x774C, offset: 0x6B092, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x8E80, symBinAddr: 0x1B260, symSize: 0x2CC } - - { offsetInCU: 0x787B, offset: 0x6B1C1, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x914C, symBinAddr: 0x1B52C, symSize: 0xB4 } - - { offsetInCU: 0x7913, offset: 0x6B259, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9200, symBinAddr: 0x1B5E0, symSize: 0x68 } - - { offsetInCU: 0x7977, offset: 0x6B2BD, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.151', symObjAddr: 0x9268, symBinAddr: 0x1B648, symSize: 0x54 } - - { offsetInCU: 0x79D6, offset: 0x6B31C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x92BC, symBinAddr: 0x1B69C, symSize: 0x1A8 } - - { offsetInCU: 0x7B54, offset: 0x6B49A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0x9464, symBinAddr: 0x1B844, symSize: 0x3C } - - { offsetInCU: 0x7B96, offset: 0x6B4DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0x94A0, symBinAddr: 0x1B880, symSize: 0x60 } - - { offsetInCU: 0x7BCA, offset: 0x6B510, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0x9500, symBinAddr: 0x1B8E0, symSize: 0xC8 } - - { offsetInCU: 0x7CC5, offset: 0x6B60B, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0x95C8, symBinAddr: 0x1B9A8, symSize: 0x30 } - - { offsetInCU: 0x7D07, offset: 0x6B64D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0x95F8, symBinAddr: 0x1B9D8, symSize: 0x14C } - - { offsetInCU: 0x7DC4, offset: 0x6B70A, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0x9744, symBinAddr: 0x1BB24, symSize: 0xD4 } - - { offsetInCU: 0x7E5E, offset: 0x6B7A4, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0x9818, symBinAddr: 0x1BBF8, symSize: 0x30 } - - { offsetInCU: 0x7EA0, offset: 0x6B7E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0x9848, symBinAddr: 0x1BC28, symSize: 0x14C } - - { offsetInCU: 0x7F5D, offset: 0x6B8A3, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0x9994, symBinAddr: 0x1BD74, symSize: 0xD4 } - - { offsetInCU: 0x7FF7, offset: 0x6B93D, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0x9A68, symBinAddr: 0x1BE48, symSize: 0x30 } - - { offsetInCU: 0x8039, offset: 0x6B97F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0x9A98, symBinAddr: 0x1BE78, symSize: 0x90 } - - { offsetInCU: 0x80B6, offset: 0x6B9FC, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0x9B28, symBinAddr: 0x1BF08, symSize: 0x64 } - - { offsetInCU: 0x80F8, offset: 0x6BA3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0x9B8C, symBinAddr: 0x1BF6C, symSize: 0x8 } - - { offsetInCU: 0x8148, offset: 0x6BA8E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0x9B94, symBinAddr: 0x1BF74, symSize: 0x13C } - - { offsetInCU: 0x8216, offset: 0x6BB5C, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9CD0, symBinAddr: 0x1C0B0, symSize: 0x50 } - - { offsetInCU: 0x828B, offset: 0x6BBD1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0x9D20, symBinAddr: 0x1C100, symSize: 0x658 } - - { offsetInCU: 0x8506, offset: 0x6BE4C, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xA378, symBinAddr: 0x1C758, symSize: 0xF8 } - - { offsetInCU: 0x85BD, offset: 0x6BF03, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xA470, symBinAddr: 0x1C850, symSize: 0x94 } - - { offsetInCU: 0x8643, offset: 0x6BF89, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.158', symObjAddr: 0xA504, symBinAddr: 0x1C8E4, symSize: 0x80 } - - { offsetInCU: 0x86DD, offset: 0x6C023, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xA584, symBinAddr: 0x1C964, symSize: 0x3C } - - { offsetInCU: 0x8711, offset: 0x6C057, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xA5C0, symBinAddr: 0x1C9A0, symSize: 0x7C } - - { offsetInCU: 0x8763, offset: 0x6C0A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xA63C, symBinAddr: 0x1CA1C, symSize: 0x90 } - - { offsetInCU: 0x87E0, offset: 0x6C126, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xA6CC, symBinAddr: 0x1CAAC, symSize: 0x34 } - - { offsetInCU: 0x8822, offset: 0x6C168, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xA700, symBinAddr: 0x1CAE0, symSize: 0x90 } - - { offsetInCU: 0x889F, offset: 0x6C1E5, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xA790, symBinAddr: 0x1CB70, symSize: 0x5C } - - { offsetInCU: 0x88E1, offset: 0x6C227, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xA7EC, symBinAddr: 0x1CBCC, symSize: 0x4 } - - { offsetInCU: 0x8958, offset: 0x6C29E, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xA85C, symBinAddr: 0x1CC3C, symSize: 0x54 } - - { offsetInCU: 0x899A, offset: 0x6C2E0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xA8B0, symBinAddr: 0x1CC90, symSize: 0xEC } - - { offsetInCU: 0x89DF, offset: 0x6C325, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xA99C, symBinAddr: 0x1CD7C, symSize: 0x90 } - - { offsetInCU: 0x8AD5, offset: 0x6C41B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xAA2C, symBinAddr: 0x1CE0C, symSize: 0x90 } - - { offsetInCU: 0x8BBF, offset: 0x6C505, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xAABC, symBinAddr: 0x1CE9C, symSize: 0x1F8 } - - { offsetInCU: 0x8DEA, offset: 0x6C730, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xACB4, symBinAddr: 0x1D094, symSize: 0x1B0 } - - { offsetInCU: 0x9006, offset: 0x6C94C, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xAE64, symBinAddr: 0x1D244, symSize: 0x10C } - - { offsetInCU: 0x90D3, offset: 0x6CA19, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xAF70, symBinAddr: 0x1D350, symSize: 0x10C } - - { offsetInCU: 0x91A0, offset: 0x6CAE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xB07C, symBinAddr: 0x1D45C, symSize: 0x60 } - - { offsetInCU: 0x91E5, offset: 0x6CB2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xB0DC, symBinAddr: 0x1D4BC, symSize: 0xD0 } - - { offsetInCU: 0x9300, offset: 0x6CC46, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xB1AC, symBinAddr: 0x1D58C, symSize: 0x50 } - - { offsetInCU: 0x9334, offset: 0x6CC7A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xB1FC, symBinAddr: 0x1D5DC, symSize: 0xCC } - - { offsetInCU: 0x945C, offset: 0x6CDA2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xB2C8, symBinAddr: 0x1D6A8, symSize: 0x90 } - - { offsetInCU: 0x94E6, offset: 0x6CE2C, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xB358, symBinAddr: 0x1D738, symSize: 0x38 } - - { offsetInCU: 0x9528, offset: 0x6CE6E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xB390, symBinAddr: 0x1D770, symSize: 0x18 } - - { offsetInCU: 0x95A3, offset: 0x6CEE9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xB3A8, symBinAddr: 0x1D788, symSize: 0x14 } - - { offsetInCU: 0x960B, offset: 0x6CF51, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xB3BC, symBinAddr: 0x1D79C, symSize: 0x48 } - - { offsetInCU: 0x9688, offset: 0x6CFCE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xB404, symBinAddr: 0x1D7E4, symSize: 0x40 } - - { offsetInCU: 0x96CE, offset: 0x6D014, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xB444, symBinAddr: 0x1D824, symSize: 0x34 } - - { offsetInCU: 0x9714, offset: 0x6D05A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xB478, symBinAddr: 0x1D858, symSize: 0x34 } - - { offsetInCU: 0x975A, offset: 0x6D0A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xB4AC, symBinAddr: 0x1D88C, symSize: 0x58 } - - { offsetInCU: 0x97B1, offset: 0x6D0F7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xB504, symBinAddr: 0x1D8E4, symSize: 0x58 } - - { offsetInCU: 0x9808, offset: 0x6D14E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xB55C, symBinAddr: 0x1D93C, symSize: 0x8 } - - { offsetInCU: 0x983C, offset: 0x6D182, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xB564, symBinAddr: 0x1D944, symSize: 0x7C } - - { offsetInCU: 0x98B3, offset: 0x6D1F9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xB5E0, symBinAddr: 0x1D9C0, symSize: 0x7C } - - { offsetInCU: 0x992B, offset: 0x6D271, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xB65C, symBinAddr: 0x1DA3C, symSize: 0x10 } - - { offsetInCU: 0x996E, offset: 0x6D2B4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xB66C, symBinAddr: 0x1DA4C, symSize: 0x10 } - - { offsetInCU: 0x99B1, offset: 0x6D2F7, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xB67C, symBinAddr: 0x1DA5C, symSize: 0x38 } - - { offsetInCU: 0x9A0B, offset: 0x6D351, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xB6B4, symBinAddr: 0x1DA94, symSize: 0x34 } - - { offsetInCU: 0x9A65, offset: 0x6D3AB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xB6E8, symBinAddr: 0x1DAC8, symSize: 0x34 } - - { offsetInCU: 0x9ABF, offset: 0x6D405, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xB71C, symBinAddr: 0x1DAFC, symSize: 0x3C } - - { offsetInCU: 0x9B19, offset: 0x6D45F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xB758, symBinAddr: 0x1DB38, symSize: 0x3C } - - { offsetInCU: 0x9B73, offset: 0x6D4B9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xB794, symBinAddr: 0x1DB74, symSize: 0xC } - - { offsetInCU: 0x9BD8, offset: 0x6D51E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xB7A0, symBinAddr: 0x1DB80, symSize: 0x154 } - - { offsetInCU: 0x9CB0, offset: 0x6D5F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xB8F4, symBinAddr: 0x1DCD4, symSize: 0x110 } - - { offsetInCU: 0x9CE4, offset: 0x6D62A, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xBA04, symBinAddr: 0x1DDE4, symSize: 0x50 } - - { offsetInCU: 0x9D44, offset: 0x6D68A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xBA54, symBinAddr: 0x1DE34, symSize: 0x50 } + - { offsetInCU: 0x34, offset: 0x53B7D, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x21278, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x53BB2, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x212B0, symSize: 0x0 } + - { offsetInCU: 0x41, offset: 0x53C09, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x10AB8, symBinAddr: 0x284F8, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x53C29, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x10AC0, symBinAddr: 0x28500, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x53C3F, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x10AC8, symBinAddr: 0x28508, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x53C55, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x10AD0, symBinAddr: 0x28510, symSize: 0x0 } + - { offsetInCU: 0xA3, offset: 0x53C6B, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x10AD8, symBinAddr: 0x28518, symSize: 0x0 } + - { offsetInCU: 0xB9, offset: 0x53C81, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x10AE0, symBinAddr: 0x28520, symSize: 0x0 } + - { offsetInCU: 0xCF, offset: 0x53C97, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x10AE8, symBinAddr: 0x28528, symSize: 0x0 } + - { offsetInCU: 0xE5, offset: 0x53CAD, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x10AF0, symBinAddr: 0x28530, symSize: 0x0 } + - { offsetInCU: 0xFB, offset: 0x53CC3, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x10AF8, symBinAddr: 0x28538, symSize: 0x0 } + - { offsetInCU: 0x111, offset: 0x53CD9, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x10B00, symBinAddr: 0x28540, symSize: 0x0 } + - { offsetInCU: 0x127, offset: 0x53CEF, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x10B08, symBinAddr: 0x28548, symSize: 0x0 } + - { offsetInCU: 0x13D, offset: 0x53D05, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x10B10, symBinAddr: 0x28550, symSize: 0x0 } + - { offsetInCU: 0x153, offset: 0x53D1B, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x10B18, symBinAddr: 0x28558, symSize: 0x0 } + - { offsetInCU: 0x16B, offset: 0x53D33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xAB30, symBinAddr: 0xEB30, symSize: 0x4F0 } + - { offsetInCU: 0x48C, offset: 0x54054, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xCD48, symBinAddr: 0x10D48, symSize: 0x8C } + - { offsetInCU: 0x4B4, offset: 0x5407C, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x56128, symBinAddr: 0x2E930, symSize: 0x0 } + - { offsetInCU: 0x51C, offset: 0x540E4, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x56140, symBinAddr: 0x2E948, symSize: 0x0 } + - { offsetInCU: 0x537, offset: 0x540FF, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x56130, symBinAddr: 0x2E938, symSize: 0x0 } + - { offsetInCU: 0x554, offset: 0x5411C, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x56138, symBinAddr: 0x2E940, symSize: 0x0 } + - { offsetInCU: 0xB90, offset: 0x54758, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x18 } + - { offsetInCU: 0xBC7, offset: 0x5478F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0x18, symBinAddr: 0x4018, symSize: 0x60 } + - { offsetInCU: 0xC0E, offset: 0x547D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x78, symBinAddr: 0x4078, symSize: 0x4C } + - { offsetInCU: 0xC41, offset: 0x54809, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xC4, symBinAddr: 0x40C4, symSize: 0x60 } + - { offsetInCU: 0xCF9, offset: 0x548C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x124, symBinAddr: 0x4124, symSize: 0xC } + - { offsetInCU: 0xD31, offset: 0x548F9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x130, symBinAddr: 0x4130, symSize: 0x8 } + - { offsetInCU: 0xD69, offset: 0x54931, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x138, symBinAddr: 0x4138, symSize: 0x34 } + - { offsetInCU: 0xDBF, offset: 0x54987, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x16C, symBinAddr: 0x416C, symSize: 0x24 } + - { offsetInCU: 0xE00, offset: 0x549C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x190, symBinAddr: 0x4190, symSize: 0x14 } + - { offsetInCU: 0xE38, offset: 0x54A00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x1A4, symBinAddr: 0x41A4, symSize: 0x8 } + - { offsetInCU: 0xE70, offset: 0x54A38, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x1AC, symBinAddr: 0x41AC, symSize: 0x34 } + - { offsetInCU: 0xEC6, offset: 0x54A8E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1E0, symBinAddr: 0x41E0, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x54ACF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1F0, symBinAddr: 0x41F0, symSize: 0xC } + - { offsetInCU: 0xF39, offset: 0x54B01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x1FC, symBinAddr: 0x41FC, symSize: 0x18 } + - { offsetInCU: 0xF71, offset: 0x54B39, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x214, symBinAddr: 0x4214, symSize: 0x144 } + - { offsetInCU: 0x1020, offset: 0x54BE8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x358, symBinAddr: 0x4358, symSize: 0x50 } + - { offsetInCU: 0x10B4, offset: 0x54C7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x3A8, symBinAddr: 0x43A8, symSize: 0x88 } + - { offsetInCU: 0x118C, offset: 0x54D54, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x430, symBinAddr: 0x4430, symSize: 0x2C } + - { offsetInCU: 0x11F1, offset: 0x54DB9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x45C, symBinAddr: 0x445C, symSize: 0x6C } + - { offsetInCU: 0x12B8, offset: 0x54E80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x4C8, symBinAddr: 0x44C8, symSize: 0x234 } + - { offsetInCU: 0x144A, offset: 0x55012, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x6FC, symBinAddr: 0x46FC, symSize: 0xB0 } + - { offsetInCU: 0x1504, offset: 0x550CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7AC, symBinAddr: 0x47AC, symSize: 0x30 } + - { offsetInCU: 0x1538, offset: 0x55100, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7DC, symBinAddr: 0x47DC, symSize: 0x18 } + - { offsetInCU: 0x1570, offset: 0x55138, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x7F4, symBinAddr: 0x47F4, symSize: 0x90 } + - { offsetInCU: 0x15DB, offset: 0x551A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x884, symBinAddr: 0x4884, symSize: 0xC } + - { offsetInCU: 0x160F, offset: 0x551D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x890, symBinAddr: 0x4890, symSize: 0x18 } + - { offsetInCU: 0x1647, offset: 0x5520F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8A8, symBinAddr: 0x48A8, symSize: 0x78 } + - { offsetInCU: 0x1690, offset: 0x55258, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x920, symBinAddr: 0x4920, symSize: 0xC } + - { offsetInCU: 0x16C4, offset: 0x5528C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x92C, symBinAddr: 0x492C, symSize: 0x10 } + - { offsetInCU: 0x16FA, offset: 0x552C2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x93C, symBinAddr: 0x493C, symSize: 0x10 } + - { offsetInCU: 0x1743, offset: 0x5530B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x94C, symBinAddr: 0x494C, symSize: 0x8 } + - { offsetInCU: 0x1797, offset: 0x5535F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x954, symBinAddr: 0x4954, symSize: 0x1B0 } + - { offsetInCU: 0x189B, offset: 0x55463, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB04, symBinAddr: 0x4B04, symSize: 0xC8 } + - { offsetInCU: 0x1920, offset: 0x554E8, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xBCC, symBinAddr: 0x4BCC, symSize: 0xC } + - { offsetInCU: 0x1962, offset: 0x5552A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xBD8, symBinAddr: 0x4BD8, symSize: 0x8 } + - { offsetInCU: 0x1989, offset: 0x55551, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xBE0, symBinAddr: 0x4BE0, symSize: 0x8 } + - { offsetInCU: 0x19A8, offset: 0x55570, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xBE8, symBinAddr: 0x4BE8, symSize: 0x14 } + - { offsetInCU: 0x1A0F, offset: 0x555D7, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xBFC, symBinAddr: 0x4BFC, symSize: 0xC } + - { offsetInCU: 0x1A83, offset: 0x5564B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xC08, symBinAddr: 0x4C08, symSize: 0x1C0 } + - { offsetInCU: 0x1B6A, offset: 0x55732, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xDC8, symBinAddr: 0x4DC8, symSize: 0x10 } + - { offsetInCU: 0x1B8F, offset: 0x55757, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xDD8, symBinAddr: 0x4DD8, symSize: 0x8 } + - { offsetInCU: 0x1BAE, offset: 0x55776, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xDE0, symBinAddr: 0x4DE0, symSize: 0x21C } + - { offsetInCU: 0x1D01, offset: 0x558C9, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0xFFC, symBinAddr: 0x4FFC, symSize: 0x44 } + - { offsetInCU: 0x1D2A, offset: 0x558F2, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1040, symBinAddr: 0x5040, symSize: 0x38 } + - { offsetInCU: 0x1D49, offset: 0x55911, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x1078, symBinAddr: 0x5078, symSize: 0xD0 } + - { offsetInCU: 0x1DC9, offset: 0x55991, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x1148, symBinAddr: 0x5148, symSize: 0x3C } + - { offsetInCU: 0x1E1C, offset: 0x559E4, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x1184, symBinAddr: 0x5184, symSize: 0x34 } + - { offsetInCU: 0x1E45, offset: 0x55A0D, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x11B8, symBinAddr: 0x51B8, symSize: 0x2C } + - { offsetInCU: 0x1E64, offset: 0x55A2C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x11E4, symBinAddr: 0x51E4, symSize: 0xCC } + - { offsetInCU: 0x1F1C, offset: 0x55AE4, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x12B0, symBinAddr: 0x52B0, symSize: 0xC } + - { offsetInCU: 0x1F6F, offset: 0x55B37, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x12BC, symBinAddr: 0x52BC, symSize: 0x28 } + - { offsetInCU: 0x1F98, offset: 0x55B60, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x12E4, symBinAddr: 0x52E4, symSize: 0x28 } + - { offsetInCU: 0x1FB7, offset: 0x55B7F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x130C, symBinAddr: 0x530C, symSize: 0x8 } + - { offsetInCU: 0x1FF8, offset: 0x55BC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x8 } + - { offsetInCU: 0x2039, offset: 0x55C01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x131C, symBinAddr: 0x531C, symSize: 0xD0 } + - { offsetInCU: 0x20B9, offset: 0x55C81, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x13EC, symBinAddr: 0x53EC, symSize: 0x14 } + - { offsetInCU: 0x210C, offset: 0x55CD4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x1400, symBinAddr: 0x5400, symSize: 0xCC } + - { offsetInCU: 0x21B1, offset: 0x55D79, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x14CC, symBinAddr: 0x54CC, symSize: 0xC } + - { offsetInCU: 0x2204, offset: 0x55DCC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x14D8, symBinAddr: 0x54D8, symSize: 0x8 } + - { offsetInCU: 0x2245, offset: 0x55E0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x14E0, symBinAddr: 0x54E0, symSize: 0x8 } + - { offsetInCU: 0x2286, offset: 0x55E4E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x14E8, symBinAddr: 0x54E8, symSize: 0x138 } + - { offsetInCU: 0x233B, offset: 0x55F03, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x1620, symBinAddr: 0x5620, symSize: 0x54 } + - { offsetInCU: 0x239F, offset: 0x55F67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1674, symBinAddr: 0x5674, symSize: 0x10C } + - { offsetInCU: 0x2455, offset: 0x5601D, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1780, symBinAddr: 0x5780, symSize: 0x34 } + - { offsetInCU: 0x24B9, offset: 0x56081, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x17B4, symBinAddr: 0x57B4, symSize: 0x30 } + - { offsetInCU: 0x24E2, offset: 0x560AA, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x17E4, symBinAddr: 0x57E4, symSize: 0x30 } + - { offsetInCU: 0x2501, offset: 0x560C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x1814, symBinAddr: 0x5814, symSize: 0x8 } + - { offsetInCU: 0x2551, offset: 0x56119, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x181C, symBinAddr: 0x581C, symSize: 0x8 } + - { offsetInCU: 0x25A1, offset: 0x56169, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x1824, symBinAddr: 0x5824, symSize: 0xB0 } + - { offsetInCU: 0x2621, offset: 0x561E9, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x18D4, symBinAddr: 0x58D4, symSize: 0x1C } + - { offsetInCU: 0x267C, offset: 0x56244, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x18F0, symBinAddr: 0x58F0, symSize: 0x94 } + - { offsetInCU: 0x2706, offset: 0x562CE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1984, symBinAddr: 0x5984, symSize: 0x20 } + - { offsetInCU: 0x275B, offset: 0x56323, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x19A4, symBinAddr: 0x59A4, symSize: 0xB0 } + - { offsetInCU: 0x27DB, offset: 0x563A3, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1A54, symBinAddr: 0x5A54, symSize: 0x1C } + - { offsetInCU: 0x2836, offset: 0x563FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1A70, symBinAddr: 0x5A70, symSize: 0x94 } + - { offsetInCU: 0x28C0, offset: 0x56488, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1B04, symBinAddr: 0x5B04, symSize: 0x24 } + - { offsetInCU: 0x2915, offset: 0x564DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1B28, symBinAddr: 0x5B28, symSize: 0xB0 } + - { offsetInCU: 0x2995, offset: 0x5655D, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1BD8, symBinAddr: 0x5BD8, symSize: 0x1C } + - { offsetInCU: 0x29F0, offset: 0x565B8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1BF4, symBinAddr: 0x5BF4, symSize: 0x94 } + - { offsetInCU: 0x2A7A, offset: 0x56642, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1C88, symBinAddr: 0x5C88, symSize: 0x24 } + - { offsetInCU: 0x2ACF, offset: 0x56697, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1CAC, symBinAddr: 0x5CAC, symSize: 0xDC } + - { offsetInCU: 0x2B65, offset: 0x5672D, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1D88, symBinAddr: 0x5D88, symSize: 0x14 } + - { offsetInCU: 0x2BC0, offset: 0x56788, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1D9C, symBinAddr: 0x5D9C, symSize: 0x94 } + - { offsetInCU: 0x2C4E, offset: 0x56816, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1E30, symBinAddr: 0x5E30, symSize: 0x10 } + - { offsetInCU: 0x2CA3, offset: 0x5686B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1E40, symBinAddr: 0x5E40, symSize: 0xFC } + - { offsetInCU: 0x2D39, offset: 0x56901, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x1F3C, symBinAddr: 0x5F3C, symSize: 0x14 } + - { offsetInCU: 0x2D8C, offset: 0x56954, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x1F50, symBinAddr: 0x5F50, symSize: 0xBC } + - { offsetInCU: 0x2E1A, offset: 0x569E2, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x200C, symBinAddr: 0x600C, symSize: 0x1C } + - { offsetInCU: 0x2E6D, offset: 0x56A35, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x2028, symBinAddr: 0x6028, symSize: 0x10 } + - { offsetInCU: 0x2EC5, offset: 0x56A8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x2038, symBinAddr: 0x6038, symSize: 0x210 } + - { offsetInCU: 0x2FC7, offset: 0x56B8F, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x2248, symBinAddr: 0x6248, symSize: 0x1E8 } + - { offsetInCU: 0x32A7, offset: 0x56E6F, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.117', symObjAddr: 0x2430, symBinAddr: 0x6430, symSize: 0x4DC } + - { offsetInCU: 0x367F, offset: 0x57247, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x290C, symBinAddr: 0x690C, symSize: 0x7C } + - { offsetInCU: 0x3742, offset: 0x5730A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x2988, symBinAddr: 0x6988, symSize: 0x30 } + - { offsetInCU: 0x376B, offset: 0x57333, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x29B8, symBinAddr: 0x69B8, symSize: 0x28 } + - { offsetInCU: 0x378A, offset: 0x57352, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.132', symObjAddr: 0x29E0, symBinAddr: 0x69E0, symSize: 0x8 } + - { offsetInCU: 0x37D6, offset: 0x5739E, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.134', symObjAddr: 0x29E8, symBinAddr: 0x69E8, symSize: 0x7C } + - { offsetInCU: 0x3886, offset: 0x5744E, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2A64, symBinAddr: 0x6A64, symSize: 0x8 } + - { offsetInCU: 0x38D2, offset: 0x5749A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2A6C, symBinAddr: 0x6A6C, symSize: 0x5C } + - { offsetInCU: 0x38FB, offset: 0x574C3, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2AC8, symBinAddr: 0x6AC8, symSize: 0x48 } + - { offsetInCU: 0x391A, offset: 0x574E2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2B10, symBinAddr: 0x6B10, symSize: 0x1F0 } + - { offsetInCU: 0x39FA, offset: 0x575C2, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2D00, symBinAddr: 0x6D00, symSize: 0x1E8 } + - { offsetInCU: 0x3C0B, offset: 0x577D3, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x2EE8, symBinAddr: 0x6EE8, symSize: 0x360 } + - { offsetInCU: 0x3E17, offset: 0x579DF, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x3248, symBinAddr: 0x7248, symSize: 0x78 } + - { offsetInCU: 0x3EC7, offset: 0x57A8F, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x32C0, symBinAddr: 0x72C0, symSize: 0x8 } + - { offsetInCU: 0x3F13, offset: 0x57ADB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x32C8, symBinAddr: 0x72C8, symSize: 0x254 } + - { offsetInCU: 0x4166, offset: 0x57D2E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x351C, symBinAddr: 0x751C, symSize: 0x148 } + - { offsetInCU: 0x423A, offset: 0x57E02, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3664, symBinAddr: 0x7664, symSize: 0x34 } + - { offsetInCU: 0x4289, offset: 0x57E51, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x3698, symBinAddr: 0x7698, symSize: 0x1D4 } + - { offsetInCU: 0x43A2, offset: 0x57F6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x386C, symBinAddr: 0x786C, symSize: 0x12C } + - { offsetInCU: 0x4489, offset: 0x58051, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x3998, symBinAddr: 0x7998, symSize: 0x8 } + - { offsetInCU: 0x44EC, offset: 0x580B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x39A0, symBinAddr: 0x79A0, symSize: 0xC } + - { offsetInCU: 0x4561, offset: 0x58129, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x39AC, symBinAddr: 0x79AC, symSize: 0x200 } + - { offsetInCU: 0x4685, offset: 0x5824D, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x3BAC, symBinAddr: 0x7BAC, symSize: 0x1C4 } + - { offsetInCU: 0x47E8, offset: 0x583B0, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x3D70, symBinAddr: 0x7D70, symSize: 0x2D4 } + - { offsetInCU: 0x493C, offset: 0x58504, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x4044, symBinAddr: 0x8044, symSize: 0x34 } + - { offsetInCU: 0x499C, offset: 0x58564, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.153', symObjAddr: 0x4078, symBinAddr: 0x8078, symSize: 0x38 } + - { offsetInCU: 0x4A0D, offset: 0x585D5, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x40B0, symBinAddr: 0x80B0, symSize: 0x38 } + - { offsetInCU: 0x4A36, offset: 0x585FE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x40E8, symBinAddr: 0x80E8, symSize: 0x30 } + - { offsetInCU: 0x4A55, offset: 0x5861D, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x4118, symBinAddr: 0x8118, symSize: 0x54 } + - { offsetInCU: 0x4A7E, offset: 0x58646, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x416C, symBinAddr: 0x816C, symSize: 0x10 } + - { offsetInCU: 0x4AD4, offset: 0x5869C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x417C, symBinAddr: 0x817C, symSize: 0xC } + - { offsetInCU: 0x4B3A, offset: 0x58702, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x4188, symBinAddr: 0x8188, symSize: 0x208 } + - { offsetInCU: 0x4C4D, offset: 0x58815, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4390, symBinAddr: 0x8390, symSize: 0x1C8 } + - { offsetInCU: 0x4DA3, offset: 0x5896B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x4558, symBinAddr: 0x8558, symSize: 0x194 } + - { offsetInCU: 0x4E83, offset: 0x58A4B, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x46EC, symBinAddr: 0x86EC, symSize: 0x12C } + - { offsetInCU: 0x4F49, offset: 0x58B11, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4818, symBinAddr: 0x8818, symSize: 0x4C } + - { offsetInCU: 0x4F72, offset: 0x58B3A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4864, symBinAddr: 0x8864, symSize: 0x40 } + - { offsetInCU: 0x4F91, offset: 0x58B59, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x48A4, symBinAddr: 0x88A4, symSize: 0x12C } + - { offsetInCU: 0x503C, offset: 0x58C04, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x49D0, symBinAddr: 0x89D0, symSize: 0xF0 } + - { offsetInCU: 0x510A, offset: 0x58CD2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x4AC0, symBinAddr: 0x8AC0, symSize: 0x58 } + - { offsetInCU: 0x5160, offset: 0x58D28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x4B18, symBinAddr: 0x8B18, symSize: 0xFC } + - { offsetInCU: 0x526B, offset: 0x58E33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x4C14, symBinAddr: 0x8C14, symSize: 0xE4 } + - { offsetInCU: 0x534E, offset: 0x58F16, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x4CF8, symBinAddr: 0x8CF8, symSize: 0x114 } + - { offsetInCU: 0x540F, offset: 0x58FD7, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x4E0C, symBinAddr: 0x8E0C, symSize: 0xE4 } + - { offsetInCU: 0x5532, offset: 0x590FA, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x4EF0, symBinAddr: 0x8EF0, symSize: 0xD4 } + - { offsetInCU: 0x55E9, offset: 0x591B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x4FC4, symBinAddr: 0x8FC4, symSize: 0x7C } + - { offsetInCU: 0x5644, offset: 0x5920C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x5040, symBinAddr: 0x9040, symSize: 0x24 } + - { offsetInCU: 0x5687, offset: 0x5924F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5064, symBinAddr: 0x9064, symSize: 0x1DC } + - { offsetInCU: 0x57BD, offset: 0x59385, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5240, symBinAddr: 0x9240, symSize: 0x10 } + - { offsetInCU: 0x5832, offset: 0x593FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5250, symBinAddr: 0x9250, symSize: 0x158 } + - { offsetInCU: 0x59A0, offset: 0x59568, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x53A8, symBinAddr: 0x93A8, symSize: 0x9C } + - { offsetInCU: 0x5A9C, offset: 0x59664, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0xE6E0, symBinAddr: 0x1E34C, symSize: 0xC0 } + - { offsetInCU: 0x5AD5, offset: 0x5969D, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5444, symBinAddr: 0x9444, symSize: 0x34 } + - { offsetInCU: 0x5B28, offset: 0x596F0, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x5478, symBinAddr: 0x9478, symSize: 0x34 } + - { offsetInCU: 0x5B8C, offset: 0x59754, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x54AC, symBinAddr: 0x94AC, symSize: 0x310 } + - { offsetInCU: 0x5D1C, offset: 0x598E4, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x57BC, symBinAddr: 0x97BC, symSize: 0x84 } + - { offsetInCU: 0x5D5E, offset: 0x59926, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x5840, symBinAddr: 0x9840, symSize: 0x90 } + - { offsetInCU: 0x5DB1, offset: 0x59979, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x58D0, symBinAddr: 0x98D0, symSize: 0xA0 } + - { offsetInCU: 0x5E54, offset: 0x59A1C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x5970, symBinAddr: 0x9970, symSize: 0x34 } + - { offsetInCU: 0x5E9E, offset: 0x59A66, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x59A4, symBinAddr: 0x99A4, symSize: 0x10 } + - { offsetInCU: 0x5EC7, offset: 0x59A8F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x59B4, symBinAddr: 0x99B4, symSize: 0x44 } + - { offsetInCU: 0x5EF0, offset: 0x59AB8, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x59F8, symBinAddr: 0x99F8, symSize: 0x38 } + - { offsetInCU: 0x5F0F, offset: 0x59AD7, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.179', symObjAddr: 0x5A30, symBinAddr: 0x9A30, symSize: 0x9C } + - { offsetInCU: 0x5FA1, offset: 0x59B69, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.180', symObjAddr: 0x5ACC, symBinAddr: 0x9ACC, symSize: 0x34 } + - { offsetInCU: 0x5FEB, offset: 0x59BB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x5B00, symBinAddr: 0x9B00, symSize: 0x18 } + - { offsetInCU: 0x603D, offset: 0x59C05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x5B18, symBinAddr: 0x9B18, symSize: 0x108 } + - { offsetInCU: 0x6141, offset: 0x59D09, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x5C20, symBinAddr: 0x9C20, symSize: 0x48 } + - { offsetInCU: 0x619F, offset: 0x59D67, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x5C68, symBinAddr: 0x9C68, symSize: 0xC } + - { offsetInCU: 0x61C8, offset: 0x59D90, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x5C74, symBinAddr: 0x9C74, symSize: 0x8 } + - { offsetInCU: 0x61E7, offset: 0x59DAF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x5C7C, symBinAddr: 0x9C7C, symSize: 0x68 } + - { offsetInCU: 0x6238, offset: 0x59E00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x5CE4, symBinAddr: 0x9CE4, symSize: 0x44 } + - { offsetInCU: 0x626C, offset: 0x59E34, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x5D28, symBinAddr: 0x9D28, symSize: 0x324 } + - { offsetInCU: 0x64C9, offset: 0x5A091, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x604C, symBinAddr: 0xA04C, symSize: 0x34 } + - { offsetInCU: 0x6529, offset: 0x5A0F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6080, symBinAddr: 0xA080, symSize: 0x90 } + - { offsetInCU: 0x65A6, offset: 0x5A16E, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6110, symBinAddr: 0xA110, symSize: 0x3C } + - { offsetInCU: 0x65E8, offset: 0x5A1B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x614C, symBinAddr: 0xA14C, symSize: 0x58 } + - { offsetInCU: 0x6632, offset: 0x5A1FA, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x61A4, symBinAddr: 0xA1A4, symSize: 0x48 } + - { offsetInCU: 0x6674, offset: 0x5A23C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x61EC, symBinAddr: 0xA1EC, symSize: 0x58 } + - { offsetInCU: 0x66BE, offset: 0x5A286, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6244, symBinAddr: 0xA244, symSize: 0x48 } + - { offsetInCU: 0x6700, offset: 0x5A2C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x628C, symBinAddr: 0xA28C, symSize: 0x58 } + - { offsetInCU: 0x674A, offset: 0x5A312, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x62E4, symBinAddr: 0xA2E4, symSize: 0x48 } + - { offsetInCU: 0x678C, offset: 0x5A354, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x632C, symBinAddr: 0xA32C, symSize: 0x70 } + - { offsetInCU: 0x67D1, offset: 0x5A399, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x639C, symBinAddr: 0xA39C, symSize: 0xD4 } + - { offsetInCU: 0x6827, offset: 0x5A3EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6470, symBinAddr: 0xA470, symSize: 0xD4 } + - { offsetInCU: 0x687D, offset: 0x5A445, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6544, symBinAddr: 0xA544, symSize: 0xF4 } + - { offsetInCU: 0x690E, offset: 0x5A4D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x6638, symBinAddr: 0xA638, symSize: 0x118 } + - { offsetInCU: 0x6986, offset: 0x5A54E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x6750, symBinAddr: 0xA750, symSize: 0x100 } + - { offsetInCU: 0x69DC, offset: 0x5A5A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x6850, symBinAddr: 0xA850, symSize: 0xC0 } + - { offsetInCU: 0x6A43, offset: 0x5A60B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x6910, symBinAddr: 0xA910, symSize: 0x10C } + - { offsetInCU: 0x6A99, offset: 0x5A661, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x6A1C, symBinAddr: 0xAA1C, symSize: 0x10C } + - { offsetInCU: 0x6AEF, offset: 0x5A6B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x6B28, symBinAddr: 0xAB28, symSize: 0x10C } + - { offsetInCU: 0x6B45, offset: 0x5A70D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x6C34, symBinAddr: 0xAC34, symSize: 0x10C } + - { offsetInCU: 0x6B9B, offset: 0x5A763, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x6D40, symBinAddr: 0xAD40, symSize: 0x10C } + - { offsetInCU: 0x6BF1, offset: 0x5A7B9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x6E4C, symBinAddr: 0xAE4C, symSize: 0xD4 } + - { offsetInCU: 0x6C47, offset: 0x5A80F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x6F20, symBinAddr: 0xAF20, symSize: 0xD8 } + - { offsetInCU: 0x6CDD, offset: 0x5A8A5, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x6FF8, symBinAddr: 0xAFF8, symSize: 0x1C } + - { offsetInCU: 0x6D38, offset: 0x5A900, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7014, symBinAddr: 0xB014, symSize: 0xD8 } + - { offsetInCU: 0x6DCE, offset: 0x5A996, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x70EC, symBinAddr: 0xB0EC, symSize: 0x18 } + - { offsetInCU: 0x6E29, offset: 0x5A9F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7104, symBinAddr: 0xB104, symSize: 0x10C } + - { offsetInCU: 0x6EA9, offset: 0x5AA71, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7210, symBinAddr: 0xB210, symSize: 0x78 } + - { offsetInCU: 0x6EFC, offset: 0x5AAC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x7288, symBinAddr: 0xB288, symSize: 0xE4 } + - { offsetInCU: 0x6F7C, offset: 0x5AB44, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x736C, symBinAddr: 0xB36C, symSize: 0x50 } + - { offsetInCU: 0x6FCF, offset: 0x5AB97, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x73BC, symBinAddr: 0xB3BC, symSize: 0xEC } + - { offsetInCU: 0x704F, offset: 0x5AC17, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x74A8, symBinAddr: 0xB4A8, symSize: 0x5C } + - { offsetInCU: 0x70A2, offset: 0x5AC6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7504, symBinAddr: 0xB504, symSize: 0x10C } + - { offsetInCU: 0x7122, offset: 0x5ACEA, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x7610, symBinAddr: 0xB610, symSize: 0x78 } + - { offsetInCU: 0x7175, offset: 0x5AD3D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x7688, symBinAddr: 0xB688, symSize: 0xE4 } + - { offsetInCU: 0x71F5, offset: 0x5ADBD, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x776C, symBinAddr: 0xB76C, symSize: 0x50 } + - { offsetInCU: 0x7248, offset: 0x5AE10, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x77BC, symBinAddr: 0xB7BC, symSize: 0x30 } + - { offsetInCU: 0x7280, offset: 0x5AE48, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x77EC, symBinAddr: 0xB7EC, symSize: 0x30 } + - { offsetInCU: 0x72B8, offset: 0x5AE80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x781C, symBinAddr: 0xB81C, symSize: 0x18 } + - { offsetInCU: 0x72F0, offset: 0x5AEB8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x7834, symBinAddr: 0xB834, symSize: 0x18 } + - { offsetInCU: 0x7328, offset: 0x5AEF0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x784C, symBinAddr: 0xB84C, symSize: 0x30 } + - { offsetInCU: 0x7360, offset: 0x5AF28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x787C, symBinAddr: 0xB87C, symSize: 0x30 } + - { offsetInCU: 0x7398, offset: 0x5AF60, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x78AC, symBinAddr: 0xB8AC, symSize: 0x18 } + - { offsetInCU: 0x73D0, offset: 0x5AF98, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x78C4, symBinAddr: 0xB8C4, symSize: 0x18 } + - { offsetInCU: 0x7408, offset: 0x5AFD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x78DC, symBinAddr: 0xB8DC, symSize: 0x90 } + - { offsetInCU: 0x7497, offset: 0x5B05F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x796C, symBinAddr: 0xB96C, symSize: 0x64 } + - { offsetInCU: 0x7526, offset: 0x5B0EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x79D0, symBinAddr: 0xB9D0, symSize: 0x88 } + - { offsetInCU: 0x75B5, offset: 0x5B17D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x7A58, symBinAddr: 0xBA58, symSize: 0x5C } + - { offsetInCU: 0x7644, offset: 0x5B20C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x7AB4, symBinAddr: 0xBAB4, symSize: 0x90 } + - { offsetInCU: 0x76D3, offset: 0x5B29B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x7B44, symBinAddr: 0xBB44, symSize: 0x90 } + - { offsetInCU: 0x7783, offset: 0x5B34B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x7BD4, symBinAddr: 0xBBD4, symSize: 0x64 } + - { offsetInCU: 0x7812, offset: 0x5B3DA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x7C38, symBinAddr: 0xBC38, symSize: 0x88 } + - { offsetInCU: 0x78A1, offset: 0x5B469, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x7CC0, symBinAddr: 0xBCC0, symSize: 0x5C } + - { offsetInCU: 0x7930, offset: 0x5B4F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x7D1C, symBinAddr: 0xBD1C, symSize: 0xFC } + - { offsetInCU: 0x79C6, offset: 0x5B58E, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x7E18, symBinAddr: 0xBE18, symSize: 0x100 } + - { offsetInCU: 0x7AB3, offset: 0x5B67B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x7F18, symBinAddr: 0xBF18, symSize: 0xFC } + - { offsetInCU: 0x7B49, offset: 0x5B711, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8014, symBinAddr: 0xC014, symSize: 0x100 } + - { offsetInCU: 0x7C36, offset: 0x5B7FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8114, symBinAddr: 0xC114, symSize: 0xB4 } + - { offsetInCU: 0x7CB6, offset: 0x5B87E, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x81C8, symBinAddr: 0xC1C8, symSize: 0x1C } + - { offsetInCU: 0x7D11, offset: 0x5B8D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x81E4, symBinAddr: 0xC1E4, symSize: 0xB4 } + - { offsetInCU: 0x7D91, offset: 0x5B959, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x8298, symBinAddr: 0xC298, symSize: 0x1C } + - { offsetInCU: 0x7DEC, offset: 0x5B9B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x82B4, symBinAddr: 0xC2B4, symSize: 0xAC } + - { offsetInCU: 0x7E6C, offset: 0x5BA34, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8360, symBinAddr: 0xC360, symSize: 0x18 } + - { offsetInCU: 0x7EC7, offset: 0x5BA8F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x8378, symBinAddr: 0xC378, symSize: 0x3FC } + - { offsetInCU: 0x81CE, offset: 0x5BD96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x8774, symBinAddr: 0xC774, symSize: 0xDC } + - { offsetInCU: 0x8245, offset: 0x5BE0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x8850, symBinAddr: 0xC850, symSize: 0x1F0 } + - { offsetInCU: 0x835F, offset: 0x5BF27, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x8A40, symBinAddr: 0xCA40, symSize: 0x64 } + - { offsetInCU: 0x83CB, offset: 0x5BF93, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x8AA4, symBinAddr: 0xCAA4, symSize: 0x54 } + - { offsetInCU: 0x8429, offset: 0x5BFF1, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x8AF8, symBinAddr: 0xCAF8, symSize: 0x24 } + - { offsetInCU: 0x8486, offset: 0x5C04E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x8B1C, symBinAddr: 0xCB1C, symSize: 0x10 } + - { offsetInCU: 0x84AF, offset: 0x5C077, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x8B2C, symBinAddr: 0xCB2C, symSize: 0xC } + - { offsetInCU: 0x84CE, offset: 0x5C096, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.216', symObjAddr: 0x8B38, symBinAddr: 0xCB38, symSize: 0x24 } + - { offsetInCU: 0x852B, offset: 0x5C0F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x8B5C, symBinAddr: 0xCB5C, symSize: 0x18 } + - { offsetInCU: 0x8563, offset: 0x5C12B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x8B74, symBinAddr: 0xCB74, symSize: 0x18 } + - { offsetInCU: 0x859B, offset: 0x5C163, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x8B8C, symBinAddr: 0xCB8C, symSize: 0x38 } + - { offsetInCU: 0x85EC, offset: 0x5C1B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x8BC4, symBinAddr: 0xCBC4, symSize: 0x38 } + - { offsetInCU: 0x862E, offset: 0x5C1F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x8BFC, symBinAddr: 0xCBFC, symSize: 0x38 } + - { offsetInCU: 0x8670, offset: 0x5C238, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x8C34, symBinAddr: 0xCC34, symSize: 0x38 } + - { offsetInCU: 0x86B2, offset: 0x5C27A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x8C6C, symBinAddr: 0xCC6C, symSize: 0x14 } + - { offsetInCU: 0x8705, offset: 0x5C2CD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8C80, symBinAddr: 0xCC80, symSize: 0xC } + - { offsetInCU: 0x8776, offset: 0x5C33E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8C8C, symBinAddr: 0xCC8C, symSize: 0xF0 } + - { offsetInCU: 0x882D, offset: 0x5C3F5, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x8D7C, symBinAddr: 0xCD7C, symSize: 0x54 } + - { offsetInCU: 0x8880, offset: 0x5C448, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x8DD0, symBinAddr: 0xCDD0, symSize: 0x10 } + - { offsetInCU: 0x88E2, offset: 0x5C4AA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8DE0, symBinAddr: 0xCDE0, symSize: 0xF8 } + - { offsetInCU: 0x8999, offset: 0x5C561, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x8ED8, symBinAddr: 0xCED8, symSize: 0x54 } + - { offsetInCU: 0x89EC, offset: 0x5C5B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x8F2C, symBinAddr: 0xCF2C, symSize: 0x14 } + - { offsetInCU: 0x8A4E, offset: 0x5C616, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8F40, symBinAddr: 0xCF40, symSize: 0xC } + - { offsetInCU: 0x8ACE, offset: 0x5C696, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x8F4C, symBinAddr: 0xCF4C, symSize: 0x14 } + - { offsetInCU: 0x8B41, offset: 0x5C709, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8F60, symBinAddr: 0xCF60, symSize: 0x12C } + - { offsetInCU: 0x8C09, offset: 0x5C7D1, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x908C, symBinAddr: 0xD08C, symSize: 0x54 } + - { offsetInCU: 0x8C5C, offset: 0x5C824, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x90E0, symBinAddr: 0xD0E0, symSize: 0xE8 } + - { offsetInCU: 0x8D25, offset: 0x5C8ED, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x91C8, symBinAddr: 0xD1C8, symSize: 0xD0 } + - { offsetInCU: 0x8DDC, offset: 0x5C9A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x9298, symBinAddr: 0xD298, symSize: 0x130 } + - { offsetInCU: 0x8E10, offset: 0x5C9D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0x93C8, symBinAddr: 0xD3C8, symSize: 0x194 } + - { offsetInCU: 0x8FC0, offset: 0x5CB88, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0x955C, symBinAddr: 0xD55C, symSize: 0x70 } + - { offsetInCU: 0x9061, offset: 0x5CC29, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0x95CC, symBinAddr: 0xD5CC, symSize: 0x944 } + - { offsetInCU: 0x942E, offset: 0x5CFF6, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0x9F10, symBinAddr: 0xDF10, symSize: 0x34 } + - { offsetInCU: 0x94A3, offset: 0x5D06B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0x9F44, symBinAddr: 0xDF44, symSize: 0x200 } + - { offsetInCU: 0x95A5, offset: 0x5D16D, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xA144, symBinAddr: 0xE144, symSize: 0x30 } + - { offsetInCU: 0x95F8, offset: 0x5D1C0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xA174, symBinAddr: 0xE174, symSize: 0x188 } + - { offsetInCU: 0x9716, offset: 0x5D2DE, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xA2FC, symBinAddr: 0xE2FC, symSize: 0x38 } + - { offsetInCU: 0x978B, offset: 0x5D353, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xA334, symBinAddr: 0xE334, symSize: 0x38 } + - { offsetInCU: 0x97B4, offset: 0x5D37C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xA36C, symBinAddr: 0xE36C, symSize: 0x3C } + - { offsetInCU: 0x97F6, offset: 0x5D3BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xA3A8, symBinAddr: 0xE3A8, symSize: 0x108 } + - { offsetInCU: 0x98DC, offset: 0x5D4A4, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xA4B0, symBinAddr: 0xE4B0, symSize: 0x48 } + - { offsetInCU: 0x993A, offset: 0x5D502, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xA4F8, symBinAddr: 0xE4F8, symSize: 0xF4 } + - { offsetInCU: 0x99B8, offset: 0x5D580, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xA5EC, symBinAddr: 0xE5EC, symSize: 0x90 } + - { offsetInCU: 0x9A52, offset: 0x5D61A, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xA67C, symBinAddr: 0xE67C, symSize: 0x34 } + - { offsetInCU: 0x9AA5, offset: 0x5D66D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xA6B0, symBinAddr: 0xE6B0, symSize: 0xB0 } + - { offsetInCU: 0x9B34, offset: 0x5D6FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xA760, symBinAddr: 0xE760, symSize: 0xCC } + - { offsetInCU: 0x9BC9, offset: 0x5D791, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xA82C, symBinAddr: 0xE82C, symSize: 0x54 } + - { offsetInCU: 0x9C1C, offset: 0x5D7E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xA880, symBinAddr: 0xE880, symSize: 0xE8 } + - { offsetInCU: 0x9CE5, offset: 0x5D8AD, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xA968, symBinAddr: 0xE968, symSize: 0xCC } + - { offsetInCU: 0x9D9C, offset: 0x5D964, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xAA34, symBinAddr: 0xEA34, symSize: 0xFC } + - { offsetInCU: 0x9E4D, offset: 0x5DA15, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xB020, symBinAddr: 0xF020, symSize: 0x30 } + - { offsetInCU: 0x9E8F, offset: 0x5DA57, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xB050, symBinAddr: 0xF050, symSize: 0x34 } + - { offsetInCU: 0x9F04, offset: 0x5DACC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xB084, symBinAddr: 0xF084, symSize: 0xC0 } + - { offsetInCU: 0x9F86, offset: 0x5DB4E, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xB144, symBinAddr: 0xF144, symSize: 0x34 } + - { offsetInCU: 0x9FEA, offset: 0x5DBB2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xB178, symBinAddr: 0xF178, symSize: 0x3C } + - { offsetInCU: 0xA02C, offset: 0x5DBF4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xB1B4, symBinAddr: 0xF1B4, symSize: 0x108 } + - { offsetInCU: 0xA112, offset: 0x5DCDA, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xB2BC, symBinAddr: 0xF2BC, symSize: 0x48 } + - { offsetInCU: 0xA170, offset: 0x5DD38, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xB304, symBinAddr: 0xF304, symSize: 0xF4 } + - { offsetInCU: 0xA1EE, offset: 0x5DDB6, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xB3F8, symBinAddr: 0xF3F8, symSize: 0x8C } + - { offsetInCU: 0xA288, offset: 0x5DE50, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xB484, symBinAddr: 0xF484, symSize: 0x34 } + - { offsetInCU: 0xA2DB, offset: 0x5DEA3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xB4B8, symBinAddr: 0xF4B8, symSize: 0xB0 } + - { offsetInCU: 0xA36A, offset: 0x5DF32, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xB568, symBinAddr: 0xF568, symSize: 0xC8 } + - { offsetInCU: 0xA3DD, offset: 0x5DFA5, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xB630, symBinAddr: 0xF630, symSize: 0x78 } + - { offsetInCU: 0xA430, offset: 0x5DFF8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xB6A8, symBinAddr: 0xF6A8, symSize: 0xFC } + - { offsetInCU: 0xA4BA, offset: 0x5E082, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xB7A4, symBinAddr: 0xF7A4, symSize: 0x1BC } + - { offsetInCU: 0xA669, offset: 0x5E231, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xB960, symBinAddr: 0xF960, symSize: 0xCC } + - { offsetInCU: 0xA73F, offset: 0x5E307, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xBA2C, symBinAddr: 0xFA2C, symSize: 0x978 } + - { offsetInCU: 0xABE0, offset: 0x5E7A8, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xC3A4, symBinAddr: 0x103A4, symSize: 0xC } + - { offsetInCU: 0xAC3C, offset: 0x5E804, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xC3B0, symBinAddr: 0x103B0, symSize: 0xC } + - { offsetInCU: 0xAC98, offset: 0x5E860, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xC3BC, symBinAddr: 0x103BC, symSize: 0x374 } + - { offsetInCU: 0xAE2B, offset: 0x5E9F3, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xC730, symBinAddr: 0x10730, symSize: 0x30 } + - { offsetInCU: 0xAE7E, offset: 0x5EA46, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xC760, symBinAddr: 0x10760, symSize: 0xB0 } + - { offsetInCU: 0xAF19, offset: 0x5EAE1, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xC810, symBinAddr: 0x10810, symSize: 0x78 } + - { offsetInCU: 0xAFB8, offset: 0x5EB80, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xC888, symBinAddr: 0x10888, symSize: 0x38 } + - { offsetInCU: 0xAFE1, offset: 0x5EBA9, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xC8C0, symBinAddr: 0x108C0, symSize: 0x2C } + - { offsetInCU: 0xB000, offset: 0x5EBC8, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xC8EC, symBinAddr: 0x108EC, symSize: 0x40 } + - { offsetInCU: 0xB029, offset: 0x5EBF1, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xC92C, symBinAddr: 0x1092C, symSize: 0x34 } + - { offsetInCU: 0xB048, offset: 0x5EC10, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.305', symObjAddr: 0xC960, symBinAddr: 0x10960, symSize: 0x3C } + - { offsetInCU: 0xB0BD, offset: 0x5EC85, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xC99C, symBinAddr: 0x1099C, symSize: 0x4C } + - { offsetInCU: 0xB0E6, offset: 0x5ECAE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xC9E8, symBinAddr: 0x109E8, symSize: 0x3C } + - { offsetInCU: 0xB105, offset: 0x5ECCD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xCA24, symBinAddr: 0x10A24, symSize: 0x78 } + - { offsetInCU: 0xB15B, offset: 0x5ED23, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xCA9C, symBinAddr: 0x10A9C, symSize: 0xE8 } + - { offsetInCU: 0xB1CC, offset: 0x5ED94, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xCB84, symBinAddr: 0x10B84, symSize: 0x30 } + - { offsetInCU: 0xB21F, offset: 0x5EDE7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xCBB4, symBinAddr: 0x10BB4, symSize: 0x20 } + - { offsetInCU: 0xB260, offset: 0x5EE28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xCBD4, symBinAddr: 0x10BD4, symSize: 0x170 } + - { offsetInCU: 0xB360, offset: 0x5EF28, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xCD44, symBinAddr: 0x10D44, symSize: 0x4 } + - { offsetInCU: 0xB3D7, offset: 0x5EF9F, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCDD4, symBinAddr: 0x10DD4, symSize: 0x38 } + - { offsetInCU: 0xB415, offset: 0x5EFDD, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xCE0C, symBinAddr: 0x10E0C, symSize: 0x78 } + - { offsetInCU: 0xB457, offset: 0x5F01F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xCE84, symBinAddr: 0x10E84, symSize: 0x78 } + - { offsetInCU: 0xB4D5, offset: 0x5F09D, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCEFC, symBinAddr: 0x10EFC, symSize: 0xB8 } + - { offsetInCU: 0xB517, offset: 0x5F0DF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xCFB4, symBinAddr: 0x10FB4, symSize: 0x164 } + - { offsetInCU: 0xB59E, offset: 0x5F166, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xD118, symBinAddr: 0x11118, symSize: 0x68 } + - { offsetInCU: 0xB668, offset: 0x5F230, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xD180, symBinAddr: 0x11180, symSize: 0x68 } + - { offsetInCU: 0xB726, offset: 0x5F2EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xD1E8, symBinAddr: 0x111E8, symSize: 0x104 } + - { offsetInCU: 0xB815, offset: 0x5F3DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xD2EC, symBinAddr: 0x112EC, symSize: 0x8C } + - { offsetInCU: 0xB8AC, offset: 0x5F474, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xD378, symBinAddr: 0x11378, symSize: 0x138 } + - { offsetInCU: 0xB975, offset: 0x5F53D, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xD4B0, symBinAddr: 0x114B0, symSize: 0x138 } + - { offsetInCU: 0xBA3E, offset: 0x5F606, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xD5E8, symBinAddr: 0x115E8, symSize: 0x84 } + - { offsetInCU: 0xBA8C, offset: 0x5F654, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xD66C, symBinAddr: 0x1166C, symSize: 0x3C } + - { offsetInCU: 0xBACE, offset: 0x5F696, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xD6A8, symBinAddr: 0x116A8, symSize: 0x84 } + - { offsetInCU: 0xBB18, offset: 0x5F6E0, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xD72C, symBinAddr: 0x1172C, symSize: 0x3C } + - { offsetInCU: 0xBB5A, offset: 0x5F722, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xD768, symBinAddr: 0x11768, symSize: 0x64 } + - { offsetInCU: 0xBC61, offset: 0x5F829, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xD7CC, symBinAddr: 0x117CC, symSize: 0xB0 } + - { offsetInCU: 0xBCE1, offset: 0x5F8A9, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xD87C, symBinAddr: 0x1187C, symSize: 0x1C } + - { offsetInCU: 0xBD3C, offset: 0x5F904, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xD898, symBinAddr: 0x11898, symSize: 0x94 } + - { offsetInCU: 0xBDC6, offset: 0x5F98E, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xD92C, symBinAddr: 0x1192C, symSize: 0x24 } + - { offsetInCU: 0xBE1B, offset: 0x5F9E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xD950, symBinAddr: 0x11950, symSize: 0x18 } + - { offsetInCU: 0xBE96, offset: 0x5FA5E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xD968, symBinAddr: 0x11968, symSize: 0x14 } + - { offsetInCU: 0xBEFE, offset: 0x5FAC6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xD97C, symBinAddr: 0x1197C, symSize: 0x48 } + - { offsetInCU: 0xBF7B, offset: 0x5FB43, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xD9C4, symBinAddr: 0x119C4, symSize: 0x40 } + - { offsetInCU: 0xBFC1, offset: 0x5FB89, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xDA04, symBinAddr: 0x11A04, symSize: 0x34 } + - { offsetInCU: 0xC007, offset: 0x5FBCF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xDA38, symBinAddr: 0x11A38, symSize: 0x34 } + - { offsetInCU: 0xC04D, offset: 0x5FC15, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xDA6C, symBinAddr: 0x11A6C, symSize: 0x3C } + - { offsetInCU: 0xC093, offset: 0x5FC5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xDAA8, symBinAddr: 0x11AA8, symSize: 0x3C } + - { offsetInCU: 0xC0D9, offset: 0x5FCA1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xDAE4, symBinAddr: 0x11AE4, symSize: 0x9C } + - { offsetInCU: 0xC176, offset: 0x5FD3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xDB80, symBinAddr: 0x11B80, symSize: 0x3C } + - { offsetInCU: 0xC1BC, offset: 0x5FD84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xDBBC, symBinAddr: 0x11BBC, symSize: 0x3C } + - { offsetInCU: 0xC202, offset: 0x5FDCA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xDBF8, symBinAddr: 0x11BF8, symSize: 0x2C } + - { offsetInCU: 0xC248, offset: 0x5FE10, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xDC24, symBinAddr: 0x11C24, symSize: 0x318 } + - { offsetInCU: 0xC48E, offset: 0x60056, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xDF3C, symBinAddr: 0x11F3C, symSize: 0x7C } + - { offsetInCU: 0xC505, offset: 0x600CD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xDFB8, symBinAddr: 0x11FB8, symSize: 0x7C } + - { offsetInCU: 0xC57D, offset: 0x60145, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xE034, symBinAddr: 0x12034, symSize: 0x10 } + - { offsetInCU: 0xC5C0, offset: 0x60188, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xE044, symBinAddr: 0x12044, symSize: 0x10 } + - { offsetInCU: 0xC603, offset: 0x601CB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xE054, symBinAddr: 0x12054, symSize: 0x5C } + - { offsetInCU: 0xC659, offset: 0x60221, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xE0B0, symBinAddr: 0x120B0, symSize: 0x6C } + - { offsetInCU: 0xC6B3, offset: 0x6027B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xE11C, symBinAddr: 0x1211C, symSize: 0x38 } + - { offsetInCU: 0xC70C, offset: 0x602D4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xE154, symBinAddr: 0x12154, symSize: 0x60 } + - { offsetInCU: 0xC771, offset: 0x60339, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xE1B4, symBinAddr: 0x121B4, symSize: 0x60 } + - { offsetInCU: 0xC7D6, offset: 0x6039E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xE214, symBinAddr: 0x12214, symSize: 0xC } + - { offsetInCU: 0xC83B, offset: 0x60403, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xE220, symBinAddr: 0x12220, symSize: 0x184 } + - { offsetInCU: 0xC915, offset: 0x604DD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xE3A4, symBinAddr: 0x123A4, symSize: 0x18 } + - { offsetInCU: 0xC949, offset: 0x60511, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xE3BC, symBinAddr: 0x123BC, symSize: 0x18 } + - { offsetInCU: 0xC97D, offset: 0x60545, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xE3D4, symBinAddr: 0x123D4, symSize: 0x18 } + - { offsetInCU: 0xC9B1, offset: 0x60579, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xE3EC, symBinAddr: 0x123EC, symSize: 0x18 } + - { offsetInCU: 0xC9E5, offset: 0x605AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xE404, symBinAddr: 0x12404, symSize: 0x11C } + - { offsetInCU: 0xCA19, offset: 0x605E1, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xE520, symBinAddr: 0x12520, symSize: 0x7C } + - { offsetInCU: 0xCA76, offset: 0x6063E, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0xE59C, symBinAddr: 0x1259C, symSize: 0x5C } + - { offsetInCU: 0xCAD6, offset: 0x6069E, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xE5F8, symBinAddr: 0x125F8, symSize: 0x7C } + - { offsetInCU: 0xCB46, offset: 0x6070E, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0xE674, symBinAddr: 0x12674, symSize: 0x5C } + - { offsetInCU: 0x27, offset: 0x64345, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x126D0, symSize: 0x18 } + - { offsetInCU: 0x41, offset: 0x6435F, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xD4A8, symBinAddr: 0x28C10, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x6437F, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xD4B0, symBinAddr: 0x28C18, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x64395, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xD4B8, symBinAddr: 0x28C20, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x643AB, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xD4C0, symBinAddr: 0x28C28, symSize: 0x0 } + - { offsetInCU: 0x97, offset: 0x643B5, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xA7F0, symBinAddr: 0x1CBD0, symSize: 0x6C } + - { offsetInCU: 0xBF, offset: 0x643DD, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x40160, symBinAddr: 0x2E950, symSize: 0x0 } + - { offsetInCU: 0x125, offset: 0x64443, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x40168, symBinAddr: 0x2E958, symSize: 0x0 } + - { offsetInCU: 0x65E, offset: 0x6497C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x126D0, symSize: 0x18 } + - { offsetInCU: 0x696, offset: 0x649B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0x18, symBinAddr: 0x126E8, symSize: 0x94 } + - { offsetInCU: 0x701, offset: 0x64A1F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0xAC, symBinAddr: 0x1277C, symSize: 0x48 } + - { offsetInCU: 0x735, offset: 0x64A53, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xF4, symBinAddr: 0x127C4, symSize: 0x34 } + - { offsetInCU: 0x76D, offset: 0x64A8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x128, symBinAddr: 0x127F8, symSize: 0x30 } + - { offsetInCU: 0x7A1, offset: 0x64ABF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x158, symBinAddr: 0x12828, symSize: 0x10 } + - { offsetInCU: 0x7D7, offset: 0x64AF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x168, symBinAddr: 0x12838, symSize: 0x10 } + - { offsetInCU: 0x820, offset: 0x64B3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x178, symBinAddr: 0x12848, symSize: 0x8 } + - { offsetInCU: 0x874, offset: 0x64B92, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x180, symBinAddr: 0x12850, symSize: 0x190 } + - { offsetInCU: 0x96E, offset: 0x64C8C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x310, symBinAddr: 0x129E0, symSize: 0xE4 } + - { offsetInCU: 0x9F3, offset: 0x64D11, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x3F4, symBinAddr: 0x12AC4, symSize: 0xC } + - { offsetInCU: 0xA35, offset: 0x64D53, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x410, symBinAddr: 0x12AD0, symSize: 0xD0 } + - { offsetInCU: 0xAB5, offset: 0x64DD3, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x4E0, symBinAddr: 0x12BA0, symSize: 0x10 } + - { offsetInCU: 0xADA, offset: 0x64DF8, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x4F0, symBinAddr: 0x12BB0, symSize: 0x8 } + - { offsetInCU: 0xAF9, offset: 0x64E17, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x4F8, symBinAddr: 0x12BB8, symSize: 0x3C } + - { offsetInCU: 0xB4C, offset: 0x64E6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x594, symBinAddr: 0x12BF4, symSize: 0xCC } + - { offsetInCU: 0xC04, offset: 0x64F22, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x660, symBinAddr: 0x12CC0, symSize: 0xC } + - { offsetInCU: 0xC57, offset: 0x64F75, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x6BC, symBinAddr: 0x12CCC, symSize: 0x8 } + - { offsetInCU: 0xC98, offset: 0x64FB6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x6C4, symBinAddr: 0x12CD4, symSize: 0x8 } + - { offsetInCU: 0xCD9, offset: 0x64FF7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x6CC, symBinAddr: 0x12CDC, symSize: 0xD0 } + - { offsetInCU: 0xD59, offset: 0x65077, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x79C, symBinAddr: 0x12DAC, symSize: 0x14 } + - { offsetInCU: 0xDAC, offset: 0x650CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x7B0, symBinAddr: 0x12DC0, symSize: 0xCC } + - { offsetInCU: 0xE51, offset: 0x6516F, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x87C, symBinAddr: 0x12E8C, symSize: 0xC } + - { offsetInCU: 0xEA4, offset: 0x651C2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x888, symBinAddr: 0x12E98, symSize: 0x8 } + - { offsetInCU: 0xEE5, offset: 0x65203, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x890, symBinAddr: 0x12EA0, symSize: 0x8 } + - { offsetInCU: 0xF26, offset: 0x65244, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x898, symBinAddr: 0x12EA8, symSize: 0x138 } + - { offsetInCU: 0xFDB, offset: 0x652F9, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x9D0, symBinAddr: 0x12FE0, symSize: 0x54 } + - { offsetInCU: 0x103F, offset: 0x6535D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xAA0, symBinAddr: 0x13034, symSize: 0x10C } + - { offsetInCU: 0x10F5, offset: 0x65413, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xBAC, symBinAddr: 0x13140, symSize: 0x34 } + - { offsetInCU: 0x1159, offset: 0x65477, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xC40, symBinAddr: 0x13174, symSize: 0x8 } + - { offsetInCU: 0x11A9, offset: 0x654C7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xC48, symBinAddr: 0x1317C, symSize: 0x8 } + - { offsetInCU: 0x11F9, offset: 0x65517, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xC50, symBinAddr: 0x13184, symSize: 0xD8 } + - { offsetInCU: 0x128F, offset: 0x655AD, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xD28, symBinAddr: 0x1325C, symSize: 0x1C } + - { offsetInCU: 0x12EA, offset: 0x65608, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xD44, symBinAddr: 0x13278, symSize: 0x94 } + - { offsetInCU: 0x1374, offset: 0x65692, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xDD8, symBinAddr: 0x1330C, symSize: 0x20 } + - { offsetInCU: 0x13C9, offset: 0x656E7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xDF8, symBinAddr: 0x1332C, symSize: 0xD8 } + - { offsetInCU: 0x145F, offset: 0x6577D, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xED0, symBinAddr: 0x13404, symSize: 0x1C } + - { offsetInCU: 0x14BA, offset: 0x657D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xEEC, symBinAddr: 0x13420, symSize: 0x94 } + - { offsetInCU: 0x1544, offset: 0x65862, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0xF80, symBinAddr: 0x134B4, symSize: 0x24 } + - { offsetInCU: 0x1599, offset: 0x658B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0xFA4, symBinAddr: 0x134D8, symSize: 0xD8 } + - { offsetInCU: 0x162F, offset: 0x6594D, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x107C, symBinAddr: 0x135B0, symSize: 0x18 } + - { offsetInCU: 0x168A, offset: 0x659A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1094, symBinAddr: 0x135C8, symSize: 0xD8 } + - { offsetInCU: 0x1720, offset: 0x65A3E, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x116C, symBinAddr: 0x136A0, symSize: 0x18 } + - { offsetInCU: 0x177B, offset: 0x65A99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x1184, symBinAddr: 0x136B8, symSize: 0xD8 } + - { offsetInCU: 0x1811, offset: 0x65B2F, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x125C, symBinAddr: 0x13790, symSize: 0x1C } + - { offsetInCU: 0x186C, offset: 0x65B8A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1278, symBinAddr: 0x137AC, symSize: 0x90 } + - { offsetInCU: 0x18E9, offset: 0x65C07, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x1308, symBinAddr: 0x1383C, symSize: 0x24 } + - { offsetInCU: 0x192B, offset: 0x65C49, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x132C, symBinAddr: 0x13860, symSize: 0x90 } + - { offsetInCU: 0x19A8, offset: 0x65CC6, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x13BC, symBinAddr: 0x138F0, symSize: 0x24 } + - { offsetInCU: 0x19EA, offset: 0x65D08, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x13E0, symBinAddr: 0x13914, symSize: 0x90 } + - { offsetInCU: 0x1A67, offset: 0x65D85, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1470, symBinAddr: 0x139A4, symSize: 0x24 } + - { offsetInCU: 0x1AA9, offset: 0x65DC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1494, symBinAddr: 0x139C8, symSize: 0xD8 } + - { offsetInCU: 0x1B3F, offset: 0x65E5D, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x156C, symBinAddr: 0x13AA0, symSize: 0x14 } + - { offsetInCU: 0x1B9A, offset: 0x65EB8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1580, symBinAddr: 0x13AB4, symSize: 0x94 } + - { offsetInCU: 0x1C28, offset: 0x65F46, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x1614, symBinAddr: 0x13B48, symSize: 0x10 } + - { offsetInCU: 0x1C7D, offset: 0x65F9B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x1624, symBinAddr: 0x13B58, symSize: 0xD8 } + - { offsetInCU: 0x1D13, offset: 0x66031, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x16FC, symBinAddr: 0x13C30, symSize: 0x14 } + - { offsetInCU: 0x1D6E, offset: 0x6608C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x1710, symBinAddr: 0x13C44, symSize: 0x94 } + - { offsetInCU: 0x1DFC, offset: 0x6611A, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x17A4, symBinAddr: 0x13CD8, symSize: 0x10 } + - { offsetInCU: 0x1E51, offset: 0x6616F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x17B4, symBinAddr: 0x13CE8, symSize: 0x94 } + - { offsetInCU: 0x1EDF, offset: 0x661FD, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x1848, symBinAddr: 0x13D7C, symSize: 0x10 } + - { offsetInCU: 0x1F34, offset: 0x66252, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x1858, symBinAddr: 0x13D8C, symSize: 0xD8 } + - { offsetInCU: 0x1FCA, offset: 0x662E8, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x1930, symBinAddr: 0x13E64, symSize: 0x14 } + - { offsetInCU: 0x2025, offset: 0x66343, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x1944, symBinAddr: 0x13E78, symSize: 0xFC } + - { offsetInCU: 0x20BB, offset: 0x663D9, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1A40, symBinAddr: 0x13F74, symSize: 0x14 } + - { offsetInCU: 0x210E, offset: 0x6642C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1A54, symBinAddr: 0x13F88, symSize: 0xBC } + - { offsetInCU: 0x219C, offset: 0x664BA, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1B10, symBinAddr: 0x14044, symSize: 0x1C } + - { offsetInCU: 0x21EF, offset: 0x6650D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1B2C, symBinAddr: 0x14060, symSize: 0xF4 } + - { offsetInCU: 0x2282, offset: 0x665A0, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1C20, symBinAddr: 0x14154, symSize: 0x34 } + - { offsetInCU: 0x22E6, offset: 0x66604, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1C54, symBinAddr: 0x14188, symSize: 0xD4 } + - { offsetInCU: 0x2359, offset: 0x66677, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1D28, symBinAddr: 0x1425C, symSize: 0x34 } + - { offsetInCU: 0x23BD, offset: 0x666DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1D5C, symBinAddr: 0x14290, symSize: 0xB4 } + - { offsetInCU: 0x2430, offset: 0x6674E, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1E10, symBinAddr: 0x14344, symSize: 0x34 } + - { offsetInCU: 0x2494, offset: 0x667B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1E44, symBinAddr: 0x14378, symSize: 0xE4 } + - { offsetInCU: 0x2518, offset: 0x66836, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x1F28, symBinAddr: 0x1445C, symSize: 0x34 } + - { offsetInCU: 0x258D, offset: 0x668AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x1F5C, symBinAddr: 0x14490, symSize: 0x134 } + - { offsetInCU: 0x2633, offset: 0x66951, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2090, symBinAddr: 0x145C4, symSize: 0x38 } + - { offsetInCU: 0x26B9, offset: 0x669D7, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x20C8, symBinAddr: 0x145FC, symSize: 0x40 } + - { offsetInCU: 0x26E2, offset: 0x66A00, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2108, symBinAddr: 0x1463C, symSize: 0x40 } + - { offsetInCU: 0x2701, offset: 0x66A1F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x2148, symBinAddr: 0x1467C, symSize: 0xD4 } + - { offsetInCU: 0x2774, offset: 0x66A92, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x221C, symBinAddr: 0x14750, symSize: 0x34 } + - { offsetInCU: 0x27D8, offset: 0x66AF6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2250, symBinAddr: 0x14784, symSize: 0xD4 } + - { offsetInCU: 0x282E, offset: 0x66B4C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2324, symBinAddr: 0x14858, symSize: 0xD4 } + - { offsetInCU: 0x2884, offset: 0x66BA2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x23F8, symBinAddr: 0x1492C, symSize: 0xF4 } + - { offsetInCU: 0x2915, offset: 0x66C33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x24EC, symBinAddr: 0x14A20, symSize: 0x14C } + - { offsetInCU: 0x297C, offset: 0x66C9A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2638, symBinAddr: 0x14B6C, symSize: 0x8 } + - { offsetInCU: 0x29B2, offset: 0x66CD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x2640, symBinAddr: 0x14B74, symSize: 0x10C } + - { offsetInCU: 0x2A08, offset: 0x66D26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x274C, symBinAddr: 0x14C80, symSize: 0x10C } + - { offsetInCU: 0x2A5E, offset: 0x66D7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x2858, symBinAddr: 0x14D8C, symSize: 0xD4 } + - { offsetInCU: 0x2AB4, offset: 0x66DD2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x292C, symBinAddr: 0x14E60, symSize: 0x90 } + - { offsetInCU: 0x2B39, offset: 0x66E57, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x29BC, symBinAddr: 0x14EF0, symSize: 0x178 } + - { offsetInCU: 0x2C61, offset: 0x66F7F, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2B34, symBinAddr: 0x15068, symSize: 0x38 } + - { offsetInCU: 0x2CC3, offset: 0x66FE1, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2B6C, symBinAddr: 0x150A0, symSize: 0x34 } + - { offsetInCU: 0x2CEC, offset: 0x6700A, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.72', symObjAddr: 0x2BA0, symBinAddr: 0x150D4, symSize: 0x344 } + - { offsetInCU: 0x2F00, offset: 0x6721E, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x2EE4, symBinAddr: 0x15418, symSize: 0x38 } + - { offsetInCU: 0x2F6C, offset: 0x6728A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x2F1C, symBinAddr: 0x15450, symSize: 0x3C } + - { offsetInCU: 0x2F95, offset: 0x672B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x2F58, symBinAddr: 0x1548C, symSize: 0x374 } + - { offsetInCU: 0x31DA, offset: 0x674F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x32CC, symBinAddr: 0x15800, symSize: 0x344 } + - { offsetInCU: 0x34D3, offset: 0x677F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3610, symBinAddr: 0x15B44, symSize: 0x1C8 } + - { offsetInCU: 0x35E5, offset: 0x67903, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x37D8, symBinAddr: 0x15D0C, symSize: 0x68 } + - { offsetInCU: 0x3650, offset: 0x6796E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3840, symBinAddr: 0x15D74, symSize: 0x70 } + - { offsetInCU: 0x36BB, offset: 0x679D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x38B0, symBinAddr: 0x15DE4, symSize: 0xC0 } + - { offsetInCU: 0x37A1, offset: 0x67ABF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3970, symBinAddr: 0x15EA4, symSize: 0xC8 } + - { offsetInCU: 0x3874, offset: 0x67B92, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3A38, symBinAddr: 0x15F6C, symSize: 0x184 } + - { offsetInCU: 0x399D, offset: 0x67CBB, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x3BBC, symBinAddr: 0x160F0, symSize: 0x60 } + - { offsetInCU: 0x39DF, offset: 0x67CFD, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x3C1C, symBinAddr: 0x16150, symSize: 0x58 } + - { offsetInCU: 0x3A42, offset: 0x67D60, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x3C74, symBinAddr: 0x161A8, symSize: 0x24 } + - { offsetInCU: 0x3AB6, offset: 0x67DD4, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.88', symObjAddr: 0x3CB4, symBinAddr: 0x161CC, symSize: 0x24 } + - { offsetInCU: 0x3B13, offset: 0x67E31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x3CD8, symBinAddr: 0x161F0, symSize: 0x184 } + - { offsetInCU: 0x3BF2, offset: 0x67F10, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x3E5C, symBinAddr: 0x16374, symSize: 0x60 } + - { offsetInCU: 0x3C34, offset: 0x67F52, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x3EBC, symBinAddr: 0x163D4, symSize: 0x58 } + - { offsetInCU: 0x3C84, offset: 0x67FA2, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x3F14, symBinAddr: 0x1642C, symSize: 0x24 } + - { offsetInCU: 0x3CE1, offset: 0x67FFF, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x3F38, symBinAddr: 0x16450, symSize: 0x24 } + - { offsetInCU: 0x3D3E, offset: 0x6805C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x3F5C, symBinAddr: 0x16474, symSize: 0x10C } + - { offsetInCU: 0x3DFC, offset: 0x6811A, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4068, symBinAddr: 0x16580, symSize: 0x1DC } + - { offsetInCU: 0x4026, offset: 0x68344, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x4244, symBinAddr: 0x1675C, symSize: 0x48 } + - { offsetInCU: 0x4089, offset: 0x683A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x428C, symBinAddr: 0x167A4, symSize: 0x3C } + - { offsetInCU: 0x40DA, offset: 0x683F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x42C8, symBinAddr: 0x167E0, symSize: 0x3C } + - { offsetInCU: 0x411C, offset: 0x6843A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x4304, symBinAddr: 0x1681C, symSize: 0x3C } + - { offsetInCU: 0x416D, offset: 0x6848B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x4340, symBinAddr: 0x16858, symSize: 0x3C } + - { offsetInCU: 0x41AF, offset: 0x684CD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x437C, symBinAddr: 0x16894, symSize: 0x3C } + - { offsetInCU: 0x41F1, offset: 0x6850F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x43B8, symBinAddr: 0x168D0, symSize: 0x3C } + - { offsetInCU: 0x4233, offset: 0x68551, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x43F4, symBinAddr: 0x1690C, symSize: 0x3C } + - { offsetInCU: 0x4275, offset: 0x68593, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x4430, symBinAddr: 0x16948, symSize: 0x3C } + - { offsetInCU: 0x42B7, offset: 0x685D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x446C, symBinAddr: 0x16984, symSize: 0x94 } + - { offsetInCU: 0x4316, offset: 0x68634, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x4500, symBinAddr: 0x16A18, symSize: 0x94 } + - { offsetInCU: 0x4366, offset: 0x68684, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4594, symBinAddr: 0x16AAC, symSize: 0x34 } + - { offsetInCU: 0x439A, offset: 0x686B8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x45C8, symBinAddr: 0x16AE0, symSize: 0x1AC } + - { offsetInCU: 0x451E, offset: 0x6883C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4774, symBinAddr: 0x16C8C, symSize: 0xD4 } + - { offsetInCU: 0x4585, offset: 0x688A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4848, symBinAddr: 0x16D60, symSize: 0xD4 } + - { offsetInCU: 0x45EC, offset: 0x6890A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x491C, symBinAddr: 0x16E34, symSize: 0x140 } + - { offsetInCU: 0x468A, offset: 0x689A8, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4A5C, symBinAddr: 0x16F74, symSize: 0x5C } + - { offsetInCU: 0x46DD, offset: 0x689FB, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4AB8, symBinAddr: 0x16FD0, symSize: 0x34 } + - { offsetInCU: 0x4727, offset: 0x68A45, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x4AFC, symBinAddr: 0x17004, symSize: 0x140 } + - { offsetInCU: 0x47C5, offset: 0x68AE3, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x4C3C, symBinAddr: 0x17144, symSize: 0x5C } + - { offsetInCU: 0x4818, offset: 0x68B36, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x4C98, symBinAddr: 0x171A0, symSize: 0x34 } + - { offsetInCU: 0x4862, offset: 0x68B80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x4CCC, symBinAddr: 0x171D4, symSize: 0x11C } + - { offsetInCU: 0x4900, offset: 0x68C1E, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x4DE8, symBinAddr: 0x172F0, symSize: 0x50 } + - { offsetInCU: 0x4953, offset: 0x68C71, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x4E38, symBinAddr: 0x17340, symSize: 0x34 } + - { offsetInCU: 0x499D, offset: 0x68CBB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x4E6C, symBinAddr: 0x17374, symSize: 0x140 } + - { offsetInCU: 0x4A3B, offset: 0x68D59, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x4FAC, symBinAddr: 0x174B4, symSize: 0x34 } + - { offsetInCU: 0x4A8E, offset: 0x68DAC, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x4FE0, symBinAddr: 0x174E8, symSize: 0x34 } + - { offsetInCU: 0x4AD8, offset: 0x68DF6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x5014, symBinAddr: 0x1751C, symSize: 0x140 } + - { offsetInCU: 0x4B76, offset: 0x68E94, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x5154, symBinAddr: 0x1765C, symSize: 0x34 } + - { offsetInCU: 0x4BC9, offset: 0x68EE7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x5188, symBinAddr: 0x17690, symSize: 0x34 } + - { offsetInCU: 0x4C13, offset: 0x68F31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x51BC, symBinAddr: 0x176C4, symSize: 0x11C } + - { offsetInCU: 0x4CB1, offset: 0x68FCF, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x52D8, symBinAddr: 0x177E0, symSize: 0x34 } + - { offsetInCU: 0x4D04, offset: 0x69022, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x530C, symBinAddr: 0x17814, symSize: 0x34 } + - { offsetInCU: 0x4D4E, offset: 0x6906C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5340, symBinAddr: 0x17848, symSize: 0x140 } + - { offsetInCU: 0x4DEC, offset: 0x6910A, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x5480, symBinAddr: 0x17988, symSize: 0x34 } + - { offsetInCU: 0x4E3F, offset: 0x6915D, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x54B4, symBinAddr: 0x179BC, symSize: 0x34 } + - { offsetInCU: 0x4E89, offset: 0x691A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x54E8, symBinAddr: 0x179F0, symSize: 0x140 } + - { offsetInCU: 0x4F27, offset: 0x69245, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5628, symBinAddr: 0x17B30, symSize: 0x34 } + - { offsetInCU: 0x4F7A, offset: 0x69298, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x565C, symBinAddr: 0x17B64, symSize: 0x34 } + - { offsetInCU: 0x4FC4, offset: 0x692E2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5690, symBinAddr: 0x17B98, symSize: 0x11C } + - { offsetInCU: 0x5062, offset: 0x69380, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x57AC, symBinAddr: 0x17CB4, symSize: 0x34 } + - { offsetInCU: 0x50B5, offset: 0x693D3, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x57E0, symBinAddr: 0x17CE8, symSize: 0x34 } + - { offsetInCU: 0x50FF, offset: 0x6941D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5814, symBinAddr: 0x17D1C, symSize: 0x1B0 } + - { offsetInCU: 0x522A, offset: 0x69548, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x59C4, symBinAddr: 0x17ECC, symSize: 0x140 } + - { offsetInCU: 0x52C8, offset: 0x695E6, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x5B04, symBinAddr: 0x1800C, symSize: 0x34 } + - { offsetInCU: 0x531B, offset: 0x69639, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x5B38, symBinAddr: 0x18040, symSize: 0x34 } + - { offsetInCU: 0x5365, offset: 0x69683, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x5B6C, symBinAddr: 0x18074, symSize: 0x140 } + - { offsetInCU: 0x5403, offset: 0x69721, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x5CAC, symBinAddr: 0x181B4, symSize: 0x34 } + - { offsetInCU: 0x5456, offset: 0x69774, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x5CE0, symBinAddr: 0x181E8, symSize: 0x34 } + - { offsetInCU: 0x54A0, offset: 0x697BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x5D14, symBinAddr: 0x1821C, symSize: 0x11C } + - { offsetInCU: 0x553E, offset: 0x6985C, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x5E30, symBinAddr: 0x18338, symSize: 0x34 } + - { offsetInCU: 0x5591, offset: 0x698AF, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x5E64, symBinAddr: 0x1836C, symSize: 0x34 } + - { offsetInCU: 0x55DB, offset: 0x698F9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x5E98, symBinAddr: 0x183A0, symSize: 0xD8 } + - { offsetInCU: 0x5671, offset: 0x6998F, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x5F70, symBinAddr: 0x18478, symSize: 0x18 } + - { offsetInCU: 0x56CC, offset: 0x699EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x5F88, symBinAddr: 0x18490, symSize: 0xDC } + - { offsetInCU: 0x5762, offset: 0x69A80, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x6064, symBinAddr: 0x1856C, symSize: 0x1C } + - { offsetInCU: 0x57BD, offset: 0x69ADB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6080, symBinAddr: 0x18588, symSize: 0xD8 } + - { offsetInCU: 0x5853, offset: 0x69B71, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6158, symBinAddr: 0x18660, symSize: 0x48 } + - { offsetInCU: 0x58A6, offset: 0x69BC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x61A0, symBinAddr: 0x186A8, symSize: 0xD8 } + - { offsetInCU: 0x593C, offset: 0x69C5A, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x6278, symBinAddr: 0x18780, symSize: 0x48 } + - { offsetInCU: 0x598F, offset: 0x69CAD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x62C0, symBinAddr: 0x187C8, symSize: 0xA4 } + - { offsetInCU: 0x59F2, offset: 0x69D10, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6364, symBinAddr: 0x1886C, symSize: 0xC } + - { offsetInCU: 0x5A48, offset: 0x69D66, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6370, symBinAddr: 0x18878, symSize: 0x184 } + - { offsetInCU: 0x5B28, offset: 0x69E46, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x64F4, symBinAddr: 0x189FC, symSize: 0x26C } + - { offsetInCU: 0x5D0A, offset: 0x6A028, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x67EC, symBinAddr: 0x18C68, symSize: 0x174 } + - { offsetInCU: 0x5DD8, offset: 0x6A0F6, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6960, symBinAddr: 0x18DDC, symSize: 0x2A4 } + - { offsetInCU: 0x5F85, offset: 0x6A2A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x6C04, symBinAddr: 0x19080, symSize: 0x90 } + - { offsetInCU: 0x5FE8, offset: 0x6A306, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x6C94, symBinAddr: 0x19110, symSize: 0x184 } + - { offsetInCU: 0x60C8, offset: 0x6A3E6, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x6E18, symBinAddr: 0x19294, symSize: 0x190 } + - { offsetInCU: 0x618E, offset: 0x6A4AC, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x6FA8, symBinAddr: 0x19424, symSize: 0x9C } + - { offsetInCU: 0x6203, offset: 0x6A521, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x7044, symBinAddr: 0x194C0, symSize: 0x174 } + - { offsetInCU: 0x62D1, offset: 0x6A5EF, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x71B8, symBinAddr: 0x19634, symSize: 0x184 } + - { offsetInCU: 0x63A8, offset: 0x6A6C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x733C, symBinAddr: 0x197B8, symSize: 0x1E4 } + - { offsetInCU: 0x6458, offset: 0x6A776, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7520, symBinAddr: 0x1999C, symSize: 0xC0 } + - { offsetInCU: 0x6508, offset: 0x6A826, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x75E0, symBinAddr: 0x19A5C, symSize: 0xC0 } + - { offsetInCU: 0x6597, offset: 0x6A8B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x76A0, symBinAddr: 0x19B1C, symSize: 0x84 } + - { offsetInCU: 0x65E0, offset: 0x6A8FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7724, symBinAddr: 0x19BA0, symSize: 0xC } + - { offsetInCU: 0x6636, offset: 0x6A954, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7730, symBinAddr: 0x19BAC, symSize: 0x14 } + - { offsetInCU: 0x669F, offset: 0x6A9BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7744, symBinAddr: 0x19BC0, symSize: 0xC } + - { offsetInCU: 0x66F5, offset: 0x6AA13, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7750, symBinAddr: 0x19BCC, symSize: 0x14 } + - { offsetInCU: 0x675E, offset: 0x6AA7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7764, symBinAddr: 0x19BE0, symSize: 0x1C4 } + - { offsetInCU: 0x684F, offset: 0x6AB6D, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x7928, symBinAddr: 0x19DA4, symSize: 0x270 } + - { offsetInCU: 0x6A5D, offset: 0x6AD7B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x7C34, symBinAddr: 0x1A014, symSize: 0x174 } + - { offsetInCU: 0x6B2B, offset: 0x6AE49, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x7DA8, symBinAddr: 0x1A188, symSize: 0x18C } + - { offsetInCU: 0x6C52, offset: 0x6AF70, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x7F34, symBinAddr: 0x1A314, symSize: 0x174 } + - { offsetInCU: 0x6D20, offset: 0x6B03E, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x80A8, symBinAddr: 0x1A488, symSize: 0x184 } + - { offsetInCU: 0x6E38, offset: 0x6B156, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x822C, symBinAddr: 0x1A60C, symSize: 0x150 } + - { offsetInCU: 0x6F02, offset: 0x6B220, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x837C, symBinAddr: 0x1A75C, symSize: 0x150 } + - { offsetInCU: 0x7021, offset: 0x6B33F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x84CC, symBinAddr: 0x1A8AC, symSize: 0x150 } + - { offsetInCU: 0x70EB, offset: 0x6B409, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x861C, symBinAddr: 0x1A9FC, symSize: 0x114 } + - { offsetInCU: 0x71BD, offset: 0x6B4DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x8730, symBinAddr: 0x1AB10, symSize: 0x8 } + - { offsetInCU: 0x720D, offset: 0x6B52B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x8738, symBinAddr: 0x1AB18, symSize: 0xCC } + - { offsetInCU: 0x72A2, offset: 0x6B5C0, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x8804, symBinAddr: 0x1ABE4, symSize: 0x3C } + - { offsetInCU: 0x72F5, offset: 0x6B613, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x8840, symBinAddr: 0x1AC20, symSize: 0x144 } + - { offsetInCU: 0x73AC, offset: 0x6B6CA, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x8984, symBinAddr: 0x1AD64, symSize: 0x94 } + - { offsetInCU: 0x7421, offset: 0x6B73F, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x8A18, symBinAddr: 0x1ADF8, symSize: 0x3C } + - { offsetInCU: 0x7474, offset: 0x6B792, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x8A54, symBinAddr: 0x1AE34, symSize: 0x118 } + - { offsetInCU: 0x751A, offset: 0x6B838, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x8B6C, symBinAddr: 0x1AF4C, symSize: 0x3C } + - { offsetInCU: 0x756D, offset: 0x6B88B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x8BA8, symBinAddr: 0x1AF88, symSize: 0x8 } + - { offsetInCU: 0x75BD, offset: 0x6B8DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x8BB0, symBinAddr: 0x1AF90, symSize: 0x13C } + - { offsetInCU: 0x768B, offset: 0x6B9A9, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x8CEC, symBinAddr: 0x1B0CC, symSize: 0x50 } + - { offsetInCU: 0x7700, offset: 0x6BA1E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x8D3C, symBinAddr: 0x1B11C, symSize: 0x144 } + - { offsetInCU: 0x774C, offset: 0x6BA6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x8E80, symBinAddr: 0x1B260, symSize: 0x2CC } + - { offsetInCU: 0x787B, offset: 0x6BB99, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x914C, symBinAddr: 0x1B52C, symSize: 0xB4 } + - { offsetInCU: 0x7913, offset: 0x6BC31, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9200, symBinAddr: 0x1B5E0, symSize: 0x68 } + - { offsetInCU: 0x7977, offset: 0x6BC95, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.151', symObjAddr: 0x9268, symBinAddr: 0x1B648, symSize: 0x54 } + - { offsetInCU: 0x79D6, offset: 0x6BCF4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x92BC, symBinAddr: 0x1B69C, symSize: 0x1A8 } + - { offsetInCU: 0x7B54, offset: 0x6BE72, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0x9464, symBinAddr: 0x1B844, symSize: 0x3C } + - { offsetInCU: 0x7B96, offset: 0x6BEB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0x94A0, symBinAddr: 0x1B880, symSize: 0x60 } + - { offsetInCU: 0x7BCA, offset: 0x6BEE8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0x9500, symBinAddr: 0x1B8E0, symSize: 0xC8 } + - { offsetInCU: 0x7CC5, offset: 0x6BFE3, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0x95C8, symBinAddr: 0x1B9A8, symSize: 0x30 } + - { offsetInCU: 0x7D07, offset: 0x6C025, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0x95F8, symBinAddr: 0x1B9D8, symSize: 0x14C } + - { offsetInCU: 0x7DC4, offset: 0x6C0E2, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0x9744, symBinAddr: 0x1BB24, symSize: 0xD4 } + - { offsetInCU: 0x7E5E, offset: 0x6C17C, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0x9818, symBinAddr: 0x1BBF8, symSize: 0x30 } + - { offsetInCU: 0x7EA0, offset: 0x6C1BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0x9848, symBinAddr: 0x1BC28, symSize: 0x14C } + - { offsetInCU: 0x7F5D, offset: 0x6C27B, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0x9994, symBinAddr: 0x1BD74, symSize: 0xD4 } + - { offsetInCU: 0x7FF7, offset: 0x6C315, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0x9A68, symBinAddr: 0x1BE48, symSize: 0x30 } + - { offsetInCU: 0x8039, offset: 0x6C357, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0x9A98, symBinAddr: 0x1BE78, symSize: 0x90 } + - { offsetInCU: 0x80B6, offset: 0x6C3D4, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0x9B28, symBinAddr: 0x1BF08, symSize: 0x64 } + - { offsetInCU: 0x80F8, offset: 0x6C416, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0x9B8C, symBinAddr: 0x1BF6C, symSize: 0x8 } + - { offsetInCU: 0x8148, offset: 0x6C466, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0x9B94, symBinAddr: 0x1BF74, symSize: 0x13C } + - { offsetInCU: 0x8216, offset: 0x6C534, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9CD0, symBinAddr: 0x1C0B0, symSize: 0x50 } + - { offsetInCU: 0x828B, offset: 0x6C5A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0x9D20, symBinAddr: 0x1C100, symSize: 0x658 } + - { offsetInCU: 0x8506, offset: 0x6C824, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xA378, symBinAddr: 0x1C758, symSize: 0xF8 } + - { offsetInCU: 0x85BD, offset: 0x6C8DB, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xA470, symBinAddr: 0x1C850, symSize: 0x94 } + - { offsetInCU: 0x8643, offset: 0x6C961, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.158', symObjAddr: 0xA504, symBinAddr: 0x1C8E4, symSize: 0x80 } + - { offsetInCU: 0x86DD, offset: 0x6C9FB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xA584, symBinAddr: 0x1C964, symSize: 0x3C } + - { offsetInCU: 0x8711, offset: 0x6CA2F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xA5C0, symBinAddr: 0x1C9A0, symSize: 0x7C } + - { offsetInCU: 0x8763, offset: 0x6CA81, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xA63C, symBinAddr: 0x1CA1C, symSize: 0x90 } + - { offsetInCU: 0x87E0, offset: 0x6CAFE, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xA6CC, symBinAddr: 0x1CAAC, symSize: 0x34 } + - { offsetInCU: 0x8822, offset: 0x6CB40, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xA700, symBinAddr: 0x1CAE0, symSize: 0x90 } + - { offsetInCU: 0x889F, offset: 0x6CBBD, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xA790, symBinAddr: 0x1CB70, symSize: 0x5C } + - { offsetInCU: 0x88E1, offset: 0x6CBFF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xA7EC, symBinAddr: 0x1CBCC, symSize: 0x4 } + - { offsetInCU: 0x8958, offset: 0x6CC76, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xA85C, symBinAddr: 0x1CC3C, symSize: 0x54 } + - { offsetInCU: 0x899A, offset: 0x6CCB8, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xA8B0, symBinAddr: 0x1CC90, symSize: 0xEC } + - { offsetInCU: 0x89DF, offset: 0x6CCFD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xA99C, symBinAddr: 0x1CD7C, symSize: 0x90 } + - { offsetInCU: 0x8AD5, offset: 0x6CDF3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xAA2C, symBinAddr: 0x1CE0C, symSize: 0x90 } + - { offsetInCU: 0x8BBF, offset: 0x6CEDD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xAABC, symBinAddr: 0x1CE9C, symSize: 0x1F8 } + - { offsetInCU: 0x8DEA, offset: 0x6D108, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xACB4, symBinAddr: 0x1D094, symSize: 0x1B0 } + - { offsetInCU: 0x9006, offset: 0x6D324, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xAE64, symBinAddr: 0x1D244, symSize: 0x10C } + - { offsetInCU: 0x90D3, offset: 0x6D3F1, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xAF70, symBinAddr: 0x1D350, symSize: 0x10C } + - { offsetInCU: 0x91A0, offset: 0x6D4BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xB07C, symBinAddr: 0x1D45C, symSize: 0x60 } + - { offsetInCU: 0x91E5, offset: 0x6D503, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xB0DC, symBinAddr: 0x1D4BC, symSize: 0xD0 } + - { offsetInCU: 0x9300, offset: 0x6D61E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xB1AC, symBinAddr: 0x1D58C, symSize: 0x50 } + - { offsetInCU: 0x9334, offset: 0x6D652, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xB1FC, symBinAddr: 0x1D5DC, symSize: 0xCC } + - { offsetInCU: 0x945C, offset: 0x6D77A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xB2C8, symBinAddr: 0x1D6A8, symSize: 0x90 } + - { offsetInCU: 0x94E6, offset: 0x6D804, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xB358, symBinAddr: 0x1D738, symSize: 0x38 } + - { offsetInCU: 0x9528, offset: 0x6D846, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xB390, symBinAddr: 0x1D770, symSize: 0x18 } + - { offsetInCU: 0x95A3, offset: 0x6D8C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xB3A8, symBinAddr: 0x1D788, symSize: 0x14 } + - { offsetInCU: 0x960B, offset: 0x6D929, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xB3BC, symBinAddr: 0x1D79C, symSize: 0x48 } + - { offsetInCU: 0x9688, offset: 0x6D9A6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xB404, symBinAddr: 0x1D7E4, symSize: 0x40 } + - { offsetInCU: 0x96CE, offset: 0x6D9EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xB444, symBinAddr: 0x1D824, symSize: 0x34 } + - { offsetInCU: 0x9714, offset: 0x6DA32, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xB478, symBinAddr: 0x1D858, symSize: 0x34 } + - { offsetInCU: 0x975A, offset: 0x6DA78, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xB4AC, symBinAddr: 0x1D88C, symSize: 0x58 } + - { offsetInCU: 0x97B1, offset: 0x6DACF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xB504, symBinAddr: 0x1D8E4, symSize: 0x58 } + - { offsetInCU: 0x9808, offset: 0x6DB26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xB55C, symBinAddr: 0x1D93C, symSize: 0x8 } + - { offsetInCU: 0x983C, offset: 0x6DB5A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xB564, symBinAddr: 0x1D944, symSize: 0x7C } + - { offsetInCU: 0x98B3, offset: 0x6DBD1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xB5E0, symBinAddr: 0x1D9C0, symSize: 0x7C } + - { offsetInCU: 0x992B, offset: 0x6DC49, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xB65C, symBinAddr: 0x1DA3C, symSize: 0x10 } + - { offsetInCU: 0x996E, offset: 0x6DC8C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xB66C, symBinAddr: 0x1DA4C, symSize: 0x10 } + - { offsetInCU: 0x99B1, offset: 0x6DCCF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xB67C, symBinAddr: 0x1DA5C, symSize: 0x38 } + - { offsetInCU: 0x9A0B, offset: 0x6DD29, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xB6B4, symBinAddr: 0x1DA94, symSize: 0x34 } + - { offsetInCU: 0x9A65, offset: 0x6DD83, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xB6E8, symBinAddr: 0x1DAC8, symSize: 0x34 } + - { offsetInCU: 0x9ABF, offset: 0x6DDDD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xB71C, symBinAddr: 0x1DAFC, symSize: 0x3C } + - { offsetInCU: 0x9B19, offset: 0x6DE37, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xB758, symBinAddr: 0x1DB38, symSize: 0x3C } + - { offsetInCU: 0x9B73, offset: 0x6DE91, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xB794, symBinAddr: 0x1DB74, symSize: 0xC } + - { offsetInCU: 0x9BD8, offset: 0x6DEF6, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xB7A0, symBinAddr: 0x1DB80, symSize: 0x154 } + - { offsetInCU: 0x9CB0, offset: 0x6DFCE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xB8F4, symBinAddr: 0x1DCD4, symSize: 0x110 } + - { offsetInCU: 0x9CE4, offset: 0x6E002, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xBA04, symBinAddr: 0x1DDE4, symSize: 0x50 } + - { offsetInCU: 0x9D44, offset: 0x6E062, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xBA54, symBinAddr: 0x1DE34, symSize: 0x50 } ... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Info.plist similarity index 91% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Info.plist index 82fa517..d649795 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Info.plist +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Info.plist @@ -5,7 +5,7 @@ ArchiveVersion 2 CreationDate - 2024-03-04T04:29:13Z + 2024-05-22T07:28:35Z Name IoTConnect2_AWS SchemeName diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT new file mode 100755 index 0000000..0a86686 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h similarity index 99% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h index ab36159..46c188d 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef COCOAMQTT_SWIFT_H #define COCOAMQTT_SWIFT_H #pragma clang diagnostic push @@ -711,7 +711,7 @@ typedef SWIFT_ENUM(uint8_t, PayloadFormatIndicator, closed) { #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef COCOAMQTT_SWIFT_H #define COCOAMQTT_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-umbrella.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-umbrella.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-umbrella.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-umbrella.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist similarity index 69% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist index cce6469..4660350 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.abi.json similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.abi.json rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.abi.json diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc index cde0066..c60e776 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule new file mode 100644 index 0000000..e3d27ee Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.abi.json similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.abi.json rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.abi.json diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 61b4ef9..30c9520 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule new file mode 100644 index 0000000..80a82aa Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources similarity index 90% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources index c32df71..3d53f52 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources @@ -6,7 +6,7 @@ Headers/CocoaMQTT-Swift.h - NVO2jRWTSkyH2Jbm/hWnIKfc7Ik= + cFq2sEAptpCTTlwFGJqSP6Yrv0I= Headers/CocoaMQTT-umbrella.h @@ -14,7 +14,7 @@ Info.plist - sgnzhOzaymyyvzvpr7fUQi83fzM= + eqC2pGjj7teLcIxsOneqBnNi8pY= Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -22,11 +22,11 @@ Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc - /VAQom9nhl4rLlXQmtFdCaXbnzo= + 59cx2qKftnzkiHA+mL+IkMSasNY= Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule - Mu4BlgBjiRlIH2oTo9hzOPnfFC0= + KiRTw/Wh9b7hd/ZjrALT3ExsEew= Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -34,11 +34,11 @@ Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - Eqyux7gszWDl3nhF2uReuPsL8LQ= + 4q4PgVdUf7A9mmgjl/r6voU1UrM= Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - +S0c7MOY5LYRtOQ2AH8qicTWmMI= + gZAHkQralvzTf6KhGr7tUJNjWnA= Modules/module.modulemap @@ -51,7 +51,7 @@ hash2 - 2IJGvXSkAxMMejqCF5OeA5595ax7DMKWT8l5YW4sJoU= + dUCfGnepBkZfUS/zWzIZtcSlxqATpP6xdx1f5oLa7H4= Headers/CocoaMQTT-umbrella.h @@ -72,14 +72,14 @@ hash2 - Ue59w2h+PI/waMRPmIJPPwflvk/guTygKGzXbrGOucE= + AXv+7MvIszdHjHuZcAYyh4MXda5dohL4ZeOM7bZw41c= Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - moy4J5VS0aYSy6RWXxon9/xs9HKi2piDGvkqPevC0jg= + Yt5xajQdjrApVWt9tqbOgJvTFdIRvpXT1lBBFBdFLQM= Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -93,14 +93,14 @@ hash2 - hda1a/sNcamez2kgkpgTmOXTXvDCYgfqELYaWgvE/tA= + VtpLElS9T3CDqtSw51i9fp0jcxf6b8VrrBVPKZ4/BH4= Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - NKScyhKoLYizmC6rcIntbf5GmvwX+4Jh6iZCdC9pdQU= + cWvhi26wbWBAP0K1AIig/ywfRdsymkhM/0Li3QJXS70= Modules/module.modulemap diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h similarity index 99% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h index a663dff..7a92f1e 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_AWS_SWIFT_H #define IOTCONNECT2_AWS_SWIFT_H #pragma clang diagnostic push @@ -308,7 +308,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_AWS_SWIFT_H #define IOTCONNECT2_AWS_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist similarity index 72% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist index 4316769..e88acc6 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS new file mode 100755 index 0000000..3b79788 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/LICENSE b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/LICENSE similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/LICENSE rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/LICENSE diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..1f1dc8d --- /dev/null +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,11054 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS12ReachabilityC", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2_AWS.DebugConfig", + "usr": "s:15IoTConnect2_AWS11DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2_AWS.MqttConfig", + "usr": "s:15IoTConnect2_AWS10MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS11DebugConfigV", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS10MqttConfigV", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PREQA", + "printedName": "PREQA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "POC", + "printedName": "POC", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS0A4TCPfO", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS9SSLOptionV", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS11CommandTypeO", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS9SDKClientC", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", + "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 20991, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17309, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19292, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33318, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5543, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 9694, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index f25075a..f5b67c5 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc similarity index 92% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc index cf4dde5..2a14404 100644 Binary files a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface similarity index 98% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface index f25075a..f5b67c5 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule new file mode 100644 index 0000000..deed3bf Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..1f1dc8d --- /dev/null +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,11054 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS12ReachabilityC", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2_AWS.DebugConfig", + "usr": "s:15IoTConnect2_AWS11DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2_AWS.MqttConfig", + "usr": "s:15IoTConnect2_AWS10MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS11DebugConfigV", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS10MqttConfigV", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PREQA", + "printedName": "PREQA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "POC", + "printedName": "POC", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS0A4TCPfO", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS9SSLOptionV", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS11CommandTypeO", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS9SDKClientC", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", + "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 20991, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17309, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19292, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33318, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5543, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 9694, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 370a428..36f82d2 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc similarity index 92% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index e12d362..ea46959 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface similarity index 98% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 370a428..36f82d2 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule new file mode 100644 index 0000000..debe7d0 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/_CodeSignature/CodeResources similarity index 84% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/_CodeSignature/CodeResources index 9d888a6..c9495ae 100644 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/_CodeSignature/CodeResources @@ -6,11 +6,11 @@ Headers/IoTConnect2_AWS-Swift.h - 3eyDqbdxxlXeyfjSKt3xqSpN8+k= + owtt8WnHlwLiJuobs6CHGLzSwtQ= Info.plist - tCgbaVTxmyguhH0Cm2d7MiwuelI= + sPFW9gqfRnasYrM88byg3pa0eGU= LICENSE @@ -18,43 +18,43 @@ Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json - Hfwi7NZMpQ45Rz33T1NDmv5aeuA= + 08exX3R2exNoYoBcQcuxE4QYtFs= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - DpqlJA3OsRMr7X8YZMh7L/Ju0wo= + 491UHYkZGNeGat28w9+WXHq1qZM= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc - yAxdVJzgY+2778ATlWF2zUPpKrg= + A15Q2F4Il1OaO/sX7yxqXwsETPs= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface - DpqlJA3OsRMr7X8YZMh7L/Ju0wo= + 491UHYkZGNeGat28w9+WXHq1qZM= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule - IpkdthVbFT6LRhKqJIXi4anyEgg= + ciOfMO7mEqwNjvkB0fUpp3y9HDE= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json - Hfwi7NZMpQ45Rz33T1NDmv5aeuA= + 08exX3R2exNoYoBcQcuxE4QYtFs= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - vCdFUAOO2LIHztN8Sy9dPQxP0M4= + XK/CNGKDIdZFv6Txy7dNBNFb4CI= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - tjgmZ62Dv3jTM2fEVyPUEqYZk6Q= + suMQPdsqi540q5ZIv7XGC1snFvo= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - vCdFUAOO2LIHztN8Sy9dPQxP0M4= + XK/CNGKDIdZFv6Txy7dNBNFb4CI= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - 7KeC2SSwepBbI3t4HTAmS5VW8pY= + tcl/PqmWbK0H1+5hpb6Ektid5u4= Modules/module.modulemap @@ -67,7 +67,7 @@ hash2 - +BYwxp628zPRcYd6ac7n3Ux7khNdRvZzIRLymUwES60= + vXCcCcv2KqxNgdJFghz4muzYqgd5BxpcJZF61LmDjzc= LICENSE @@ -81,70 +81,70 @@ hash2 - TWoLTzUN0I0niG8boTNHAA/YxYy2xMOP/YQTpsIIV2Q= + RCF/wojVzvY/IQ3hTPSPvjbrOTvGL14YRpIvOeSSwKo= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - c7jrGj139i19AryhJv1iUNDfeHSkxiyMmFEELqYls90= + PVwHjJ2g0WDe6NMVSlW3L1SC1XZ0WRZtF5nRJAmpY+s= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - BMBW6HQei+6QcN9UwDMr6MijnsIlMD47zADoO/I8Hmk= + c0jTbKPRl3nC/NzwSED6x+u4K+rQVOz5GsmzdBEz1+Q= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - c7jrGj139i19AryhJv1iUNDfeHSkxiyMmFEELqYls90= + PVwHjJ2g0WDe6NMVSlW3L1SC1XZ0WRZtF5nRJAmpY+s= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - qijlKq35lirHu6zf2ylgkHvnXuQyYzptczQ1MNnYUac= + 0PsgepD0+EnpfakJWPFYfSGq543Ap+/ia6ehchhyC4o= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - TWoLTzUN0I0niG8boTNHAA/YxYy2xMOP/YQTpsIIV2Q= + RCF/wojVzvY/IQ3hTPSPvjbrOTvGL14YRpIvOeSSwKo= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - UlZiYNE1kxYMASU1fgMCmn3k3gEhQblq9hog+yayK1A= + sIwyRi/ZJTub0Stti2fBqk1g4a1qSwNcqZx1fma2lAs= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - VPxB0niJSyTAM9z4OWH2u7ynJC1kwskhTBQosrUfRxc= + i4F7VtixeQapiYO7KNcYlU99bbiUqHETVYY1qpuLdfk= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - UlZiYNE1kxYMASU1fgMCmn3k3gEhQblq9hog+yayK1A= + sIwyRi/ZJTub0Stti2fBqk1g4a1qSwNcqZx1fma2lAs= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - N3ddGb0yaBpjPGXLvgdJuaF4J4aEAyIWSHw0jrw078A= + 72eXhcIcBjijXUVwOwKg00TAQJTIzL2Mk/yOCJdJfgw= Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncSocket.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncSocket.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncSocket.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncSocket.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncUdpSocket.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncUdpSocket.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncUdpSocket.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MGCDAsyncUdpSocket.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MqttCocoaAsyncSocket-umbrella.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MqttCocoaAsyncSocket-umbrella.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MqttCocoaAsyncSocket-umbrella.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Headers/MqttCocoaAsyncSocket-umbrella.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist similarity index 75% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist index c99f6d7..5aaf18e 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket index c9334d7..5e023d1 100755 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources index ea6e0c7..56c3ea0 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources @@ -18,7 +18,7 @@ Info.plist - vxQKYvJolGPBDXH5bcjjWUxfSrA= + fFYMzSZ+MjRwUqEPwATr8CC5dd0= Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Headers/Pods-IoTConnect2_AWS-umbrella.h b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Headers/Pods-IoTConnect2_AWS-umbrella.h similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Headers/Pods-IoTConnect2_AWS-umbrella.h rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Headers/Pods-IoTConnect2_AWS-umbrella.h diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist similarity index 62% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist index 03fe477..9e1c4b0 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS new file mode 100644 index 0000000..8a3a142 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeDirectory b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeDirectory new file mode 100644 index 0000000..4a336b0 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeDirectory differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements-1 b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 0000000..4d10953 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeResources similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeResources rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeResources index 55db109..294a36a 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeResources @@ -10,7 +10,7 @@ Info.plist - xxErzzdzxgFWRoyL4FwNUHRB/DU= + 3QjEBiMZ+kNG9o3uGCryhTk4ITw= Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeSignature b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeSignature similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeSignature rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeSignature diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT new file mode 100644 index 0000000..172a82d Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml new file mode 100644 index 0000000..b72b18c --- /dev/null +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml @@ -0,0 +1,1705 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT' +relocations: + - { offsetInCU: 0x34, offset: 0x55362, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x46AF0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x55397, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x46B18, symSize: 0x0 } + - { offsetInCU: 0xAB, offset: 0x55458, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x208, symBinAddr: 0x3590, symSize: 0x30 } + - { offsetInCU: 0xDC, offset: 0x55489, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x238, symBinAddr: 0x35C0, symSize: 0xC } + - { offsetInCU: 0xF8, offset: 0x554A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x244, symBinAddr: 0x35CC, symSize: 0x8 } + - { offsetInCU: 0x114, offset: 0x554C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7BF4, symBinAddr: 0xAF68, symSize: 0x14 } + - { offsetInCU: 0x19A, offset: 0x55547, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7C08, symBinAddr: 0xAF7C, symSize: 0x28 } + - { offsetInCU: 0x28C, offset: 0x55639, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x24C, symBinAddr: 0x35D4, symSize: 0x108 } + - { offsetInCU: 0x3BA, offset: 0x55767, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x354, symBinAddr: 0x36DC, symSize: 0x8 } + - { offsetInCU: 0x635, offset: 0x559E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xCE4, symBinAddr: 0x406C, symSize: 0x118 } + - { offsetInCU: 0xB39, offset: 0x55EE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2350, symBinAddr: 0x56D8, symSize: 0x10 } + - { offsetInCU: 0xB51, offset: 0x55EFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x2360, symBinAddr: 0x56E8, symSize: 0x4 } + - { offsetInCU: 0xBA2, offset: 0x55F4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x23C8, symBinAddr: 0x5750, symSize: 0x10 } + - { offsetInCU: 0xBBA, offset: 0x55F67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x23D8, symBinAddr: 0x5760, symSize: 0x4 } + - { offsetInCU: 0xC1A, offset: 0x55FC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2440, symBinAddr: 0x57C8, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x55FDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x2450, symBinAddr: 0x57D8, symSize: 0x4 } + - { offsetInCU: 0xC83, offset: 0x56030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x24B8, symBinAddr: 0x5840, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x5605F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x252C, symBinAddr: 0x58B4, symSize: 0x10 } + - { offsetInCU: 0xCCA, offset: 0x56077, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x253C, symBinAddr: 0x58C4, symSize: 0x4 } + - { offsetInCU: 0xD2A, offset: 0x560D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x25A4, symBinAddr: 0x592C, symSize: 0x10 } + - { offsetInCU: 0xD59, offset: 0x56106, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x2618, symBinAddr: 0x59A0, symSize: 0x10 } + - { offsetInCU: 0xD71, offset: 0x5611E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2628, symBinAddr: 0x59B0, symSize: 0x4 } + - { offsetInCU: 0xDB3, offset: 0x56160, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x2690, symBinAddr: 0x5A18, symSize: 0x10 } + - { offsetInCU: 0xDCB, offset: 0x56178, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x26A0, symBinAddr: 0x5A28, symSize: 0x4 } + - { offsetInCU: 0xE0D, offset: 0x561BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x2708, symBinAddr: 0x5A90, symSize: 0x10 } + - { offsetInCU: 0xE25, offset: 0x561D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x2718, symBinAddr: 0x5AA0, symSize: 0x4 } + - { offsetInCU: 0xE76, offset: 0x56223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x2780, symBinAddr: 0x5B08, symSize: 0x10 } + - { offsetInCU: 0xE8E, offset: 0x5623B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x2790, symBinAddr: 0x5B18, symSize: 0x4 } + - { offsetInCU: 0xEF0, offset: 0x5629D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x27F8, symBinAddr: 0x5B80, symSize: 0x10 } + - { offsetInCU: 0xF1F, offset: 0x562CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x286C, symBinAddr: 0x5BF4, symSize: 0x10 } + - { offsetInCU: 0xFBB, offset: 0x56368, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x30D4, symBinAddr: 0x645C, symSize: 0x24 } + - { offsetInCU: 0x12B8, offset: 0x56665, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4B28, symBinAddr: 0x7EB0, symSize: 0x2C } + - { offsetInCU: 0x131F, offset: 0x566CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4B54, symBinAddr: 0x7EDC, symSize: 0x44 } + - { offsetInCU: 0x141D, offset: 0x567CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x6C88, symBinAddr: 0x9FFC, symSize: 0x24C } + - { offsetInCU: 0x15F1, offset: 0x5699E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x70F0, symBinAddr: 0xA464, symSize: 0x234 } + - { offsetInCU: 0x17C5, offset: 0x56B72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x7324, symBinAddr: 0xA698, symSize: 0x200 } + - { offsetInCU: 0x1999, offset: 0x56D46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x7524, symBinAddr: 0xA898, symSize: 0x22C } + - { offsetInCU: 0x1B6D, offset: 0x56F1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x7750, symBinAddr: 0xAAC4, symSize: 0x270 } + - { offsetInCU: 0x1D41, offset: 0x570EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x79C0, symBinAddr: 0xAD34, symSize: 0x234 } + - { offsetInCU: 0x2006, offset: 0x573B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x4D8, symBinAddr: 0x3860, symSize: 0x14 } + - { offsetInCU: 0x201E, offset: 0x573CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x4EC, symBinAddr: 0x3874, symSize: 0x1C } + - { offsetInCU: 0x2036, offset: 0x573E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x56C, symBinAddr: 0x38F4, symSize: 0x8 } + - { offsetInCU: 0x204E, offset: 0x573FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x6F8, symBinAddr: 0x3A80, symSize: 0xC } + - { offsetInCU: 0x2066, offset: 0x57413, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x760, symBinAddr: 0x3AE8, symSize: 0xC } + - { offsetInCU: 0x207E, offset: 0x5742B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x870, symBinAddr: 0x3BF8, symSize: 0x8 } + - { offsetInCU: 0x2096, offset: 0x57443, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x948, symBinAddr: 0x3CD0, symSize: 0x8 } + - { offsetInCU: 0x2124, offset: 0x574D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xCDC, symBinAddr: 0x4064, symSize: 0x8 } + - { offsetInCU: 0x2285, offset: 0x57632, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x136C, symBinAddr: 0x46F4, symSize: 0x8 } + - { offsetInCU: 0x229D, offset: 0x5764A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1444, symBinAddr: 0x47CC, symSize: 0x8 } + - { offsetInCU: 0x22B5, offset: 0x57662, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x144C, symBinAddr: 0x47D4, symSize: 0x8 } + - { offsetInCU: 0x22CD, offset: 0x5767A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1524, symBinAddr: 0x48AC, symSize: 0x8 } + - { offsetInCU: 0x22E5, offset: 0x57692, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x15FC, symBinAddr: 0x4984, symSize: 0x8 } + - { offsetInCU: 0x22FD, offset: 0x576AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x16D4, symBinAddr: 0x4A5C, symSize: 0x8 } + - { offsetInCU: 0x2315, offset: 0x576C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x16DC, symBinAddr: 0x4A64, symSize: 0x8 } + - { offsetInCU: 0x232D, offset: 0x576DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x16E4, symBinAddr: 0x4A6C, symSize: 0x8 } + - { offsetInCU: 0x240C, offset: 0x577B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x21EC, symBinAddr: 0x5574, symSize: 0xC } + - { offsetInCU: 0x2428, offset: 0x577D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x21EC, symBinAddr: 0x5574, symSize: 0xC } + - { offsetInCU: 0x243B, offset: 0x577E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x22D4, symBinAddr: 0x565C, symSize: 0x24 } + - { offsetInCU: 0x246A, offset: 0x57817, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x22F8, symBinAddr: 0x5680, symSize: 0x24 } + - { offsetInCU: 0x2499, offset: 0x57846, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x231C, symBinAddr: 0x56A4, symSize: 0x24 } + - { offsetInCU: 0x24C8, offset: 0x57875, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x2340, symBinAddr: 0x56C8, symSize: 0x8 } + - { offsetInCU: 0x24E0, offset: 0x5788D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x2348, symBinAddr: 0x56D0, symSize: 0x8 } + - { offsetInCU: 0x2567, offset: 0x57914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x30F8, symBinAddr: 0x6480, symSize: 0x22C } + - { offsetInCU: 0x26EA, offset: 0x57A97, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x3D40, symBinAddr: 0x70C8, symSize: 0x2C } + - { offsetInCU: 0x2A6F, offset: 0x57E1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4B98, symBinAddr: 0x7F20, symSize: 0x8 } + - { offsetInCU: 0x2AEF, offset: 0x57E9C, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x4DEC, symBinAddr: 0x8174, symSize: 0x3C } + - { offsetInCU: 0x2B3D, offset: 0x57EEA, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x4FD4, symBinAddr: 0x835C, symSize: 0x64 } + - { offsetInCU: 0x2CF4, offset: 0x580A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x578C, symBinAddr: 0x8B14, symSize: 0x4 } + - { offsetInCU: 0x2D14, offset: 0x580C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x578C, symBinAddr: 0x8B14, symSize: 0x4 } + - { offsetInCU: 0x2D39, offset: 0x580E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5790, symBinAddr: 0x8B18, symSize: 0x4 } + - { offsetInCU: 0x2D55, offset: 0x58102, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5794, symBinAddr: 0x8B1C, symSize: 0x4 } + - { offsetInCU: 0x2D71, offset: 0x5811E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x5798, symBinAddr: 0x8B20, symSize: 0x4 } + - { offsetInCU: 0x2D8D, offset: 0x5813A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x579C, symBinAddr: 0x8B24, symSize: 0x4 } + - { offsetInCU: 0x2DA9, offset: 0x58156, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x57A0, symBinAddr: 0x8B28, symSize: 0x4 } + - { offsetInCU: 0x2DC5, offset: 0x58172, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x57A4, symBinAddr: 0x8B2C, symSize: 0x204 } + - { offsetInCU: 0x2E55, offset: 0x58202, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x59A8, symBinAddr: 0x8D30, symSize: 0x140 } + - { offsetInCU: 0x2F62, offset: 0x5830F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5AE8, symBinAddr: 0x8E70, symSize: 0x2C } + - { offsetInCU: 0x2FB3, offset: 0x58360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5B14, symBinAddr: 0x8E9C, symSize: 0x8 } + - { offsetInCU: 0x3010, offset: 0x583BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5B1C, symBinAddr: 0x8EA4, symSize: 0x8 } + - { offsetInCU: 0x306D, offset: 0x5841A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5B24, symBinAddr: 0x8EAC, symSize: 0x8 } + - { offsetInCU: 0x30CA, offset: 0x58477, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5B2C, symBinAddr: 0x8EB4, symSize: 0x8 } + - { offsetInCU: 0x3127, offset: 0x584D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5B34, symBinAddr: 0x8EBC, symSize: 0x8 } + - { offsetInCU: 0x3184, offset: 0x58531, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5B3C, symBinAddr: 0x8EC4, symSize: 0x8 } + - { offsetInCU: 0x31E1, offset: 0x5858E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5B44, symBinAddr: 0x8ECC, symSize: 0x8 } + - { offsetInCU: 0x3238, offset: 0x585E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5B4C, symBinAddr: 0x8ED4, symSize: 0x4 } + - { offsetInCU: 0x3258, offset: 0x58605, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5B4C, symBinAddr: 0x8ED4, symSize: 0x4 } + - { offsetInCU: 0x326B, offset: 0x58618, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5B50, symBinAddr: 0x8ED8, symSize: 0x8 } + - { offsetInCU: 0x3283, offset: 0x58630, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5B58, symBinAddr: 0x8EE0, symSize: 0x10 } + - { offsetInCU: 0x329B, offset: 0x58648, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5B68, symBinAddr: 0x8EF0, symSize: 0x1C } + - { offsetInCU: 0x32B3, offset: 0x58660, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5B84, symBinAddr: 0x8F0C, symSize: 0x8 } + - { offsetInCU: 0x32CB, offset: 0x58678, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x5B8C, symBinAddr: 0x8F14, symSize: 0xC } + - { offsetInCU: 0x32E3, offset: 0x58690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x5B98, symBinAddr: 0x8F20, symSize: 0xC } + - { offsetInCU: 0x32FB, offset: 0x586A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x5BA4, symBinAddr: 0x8F2C, symSize: 0x8 } + - { offsetInCU: 0x3313, offset: 0x586C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x5BAC, symBinAddr: 0x8F34, symSize: 0x8 } + - { offsetInCU: 0x332B, offset: 0x586D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x5BB4, symBinAddr: 0x8F3C, symSize: 0x38 } + - { offsetInCU: 0x3343, offset: 0x586F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x5BEC, symBinAddr: 0x8F74, symSize: 0x8 } + - { offsetInCU: 0x335B, offset: 0x58708, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x5C1C, symBinAddr: 0x8FA4, symSize: 0x8 } + - { offsetInCU: 0x3373, offset: 0x58720, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5C24, symBinAddr: 0x8FAC, symSize: 0x8 } + - { offsetInCU: 0x338B, offset: 0x58738, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x5C2C, symBinAddr: 0x8FB4, symSize: 0x8 } + - { offsetInCU: 0x33A3, offset: 0x58750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5C34, symBinAddr: 0x8FBC, symSize: 0x8 } + - { offsetInCU: 0x33BB, offset: 0x58768, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5C3C, symBinAddr: 0x8FC4, symSize: 0x8 } + - { offsetInCU: 0x33D3, offset: 0x58780, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x5C44, symBinAddr: 0x8FCC, symSize: 0x8 } + - { offsetInCU: 0x33EB, offset: 0x58798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x5C4C, symBinAddr: 0x8FD4, symSize: 0x8 } + - { offsetInCU: 0x3403, offset: 0x587B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5C54, symBinAddr: 0x8FDC, symSize: 0x8 } + - { offsetInCU: 0x341B, offset: 0x587C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5C5C, symBinAddr: 0x8FE4, symSize: 0x8 } + - { offsetInCU: 0x3433, offset: 0x587E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x5C64, symBinAddr: 0x8FEC, symSize: 0x8 } + - { offsetInCU: 0x344B, offset: 0x587F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x5E2C, symBinAddr: 0x91B4, symSize: 0x24 } + - { offsetInCU: 0x347A, offset: 0x58827, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5E50, symBinAddr: 0x91D8, symSize: 0x8 } + - { offsetInCU: 0x3492, offset: 0x5883F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x5E58, symBinAddr: 0x91E0, symSize: 0x8 } + - { offsetInCU: 0x34AA, offset: 0x58857, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x5E60, symBinAddr: 0x91E8, symSize: 0x8 } + - { offsetInCU: 0x34C2, offset: 0x5886F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x5E68, symBinAddr: 0x91F0, symSize: 0x8 } + - { offsetInCU: 0x34DA, offset: 0x58887, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x5E70, symBinAddr: 0x91F8, symSize: 0x8 } + - { offsetInCU: 0x34F2, offset: 0x5889F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x5E78, symBinAddr: 0x9200, symSize: 0x8 } + - { offsetInCU: 0x350A, offset: 0x588B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x5E80, symBinAddr: 0x9208, symSize: 0x18 } + - { offsetInCU: 0x3522, offset: 0x588CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x5E98, symBinAddr: 0x9220, symSize: 0x1C } + - { offsetInCU: 0x353A, offset: 0x588E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x5EB4, symBinAddr: 0x923C, symSize: 0xC } + - { offsetInCU: 0x3552, offset: 0x588FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x5EC0, symBinAddr: 0x9248, symSize: 0xC } + - { offsetInCU: 0x356A, offset: 0x58917, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x5ECC, symBinAddr: 0x9254, symSize: 0x8 } + - { offsetInCU: 0x3582, offset: 0x5892F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x5ED4, symBinAddr: 0x925C, symSize: 0x8 } + - { offsetInCU: 0x359A, offset: 0x58947, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x5EDC, symBinAddr: 0x9264, symSize: 0x8 } + - { offsetInCU: 0x35B2, offset: 0x5895F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x5EE4, symBinAddr: 0x926C, symSize: 0x8 } + - { offsetInCU: 0x35CA, offset: 0x58977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x5EEC, symBinAddr: 0x9274, symSize: 0x8 } + - { offsetInCU: 0x35E2, offset: 0x5898F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x5EF4, symBinAddr: 0x927C, symSize: 0x8 } + - { offsetInCU: 0x35FA, offset: 0x589A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x5EFC, symBinAddr: 0x9284, symSize: 0x8 } + - { offsetInCU: 0x3612, offset: 0x589BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x5F04, symBinAddr: 0x928C, symSize: 0x8 } + - { offsetInCU: 0x362A, offset: 0x589D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x5F0C, symBinAddr: 0x9294, symSize: 0x8 } + - { offsetInCU: 0x3642, offset: 0x589EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x5F14, symBinAddr: 0x929C, symSize: 0x8 } + - { offsetInCU: 0x365A, offset: 0x58A07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x5F1C, symBinAddr: 0x92A4, symSize: 0x24 } + - { offsetInCU: 0x369D, offset: 0x58A4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5F40, symBinAddr: 0x92C8, symSize: 0xC } + - { offsetInCU: 0x36B5, offset: 0x58A62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x5F4C, symBinAddr: 0x92D4, symSize: 0xC } + - { offsetInCU: 0x36CD, offset: 0x58A7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x5F58, symBinAddr: 0x92E0, symSize: 0x8 } + - { offsetInCU: 0x36E5, offset: 0x58A92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x5F60, symBinAddr: 0x92E8, symSize: 0xC } + - { offsetInCU: 0x36FD, offset: 0x58AAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x5F6C, symBinAddr: 0x92F4, symSize: 0x8 } + - { offsetInCU: 0x3715, offset: 0x58AC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x5F74, symBinAddr: 0x92FC, symSize: 0x8 } + - { offsetInCU: 0x372D, offset: 0x58ADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x5F7C, symBinAddr: 0x9304, symSize: 0xC } + - { offsetInCU: 0x3745, offset: 0x58AF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x5F88, symBinAddr: 0x9310, symSize: 0x8 } + - { offsetInCU: 0x375D, offset: 0x58B0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x5F90, symBinAddr: 0x9318, symSize: 0xC } + - { offsetInCU: 0x3775, offset: 0x58B22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x5F9C, symBinAddr: 0x9324, symSize: 0x10 } + - { offsetInCU: 0x378D, offset: 0x58B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x5FAC, symBinAddr: 0x9334, symSize: 0x8 } + - { offsetInCU: 0x37A5, offset: 0x58B52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x5FB4, symBinAddr: 0x933C, symSize: 0x1C } + - { offsetInCU: 0x37BD, offset: 0x58B6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x5FD0, symBinAddr: 0x9358, symSize: 0xC } + - { offsetInCU: 0x37D5, offset: 0x58B82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x5FDC, symBinAddr: 0x9364, symSize: 0xC } + - { offsetInCU: 0x37ED, offset: 0x58B9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x5FE8, symBinAddr: 0x9370, symSize: 0x8 } + - { offsetInCU: 0x3805, offset: 0x58BB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x5FF0, symBinAddr: 0x9378, symSize: 0x8 } + - { offsetInCU: 0x381D, offset: 0x58BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x5FF8, symBinAddr: 0x9380, symSize: 0x8 } + - { offsetInCU: 0x3835, offset: 0x58BE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6000, symBinAddr: 0x9388, symSize: 0x8 } + - { offsetInCU: 0x384D, offset: 0x58BFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x6008, symBinAddr: 0x9390, symSize: 0xC } + - { offsetInCU: 0x3865, offset: 0x58C12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x6014, symBinAddr: 0x939C, symSize: 0xC } + - { offsetInCU: 0x387D, offset: 0x58C2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x6020, symBinAddr: 0x93A8, symSize: 0xC } + - { offsetInCU: 0x3895, offset: 0x58C42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x602C, symBinAddr: 0x93B4, symSize: 0xC } + - { offsetInCU: 0x38AD, offset: 0x58C5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x6038, symBinAddr: 0x93C0, symSize: 0x8 } + - { offsetInCU: 0x38C5, offset: 0x58C72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x6040, symBinAddr: 0x93C8, symSize: 0x8 } + - { offsetInCU: 0x38DD, offset: 0x58C8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x6048, symBinAddr: 0x93D0, symSize: 0x8 } + - { offsetInCU: 0x38F5, offset: 0x58CA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6050, symBinAddr: 0x93D8, symSize: 0x10 } + - { offsetInCU: 0x390D, offset: 0x58CBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6060, symBinAddr: 0x93E8, symSize: 0x8 } + - { offsetInCU: 0x3925, offset: 0x58CD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6068, symBinAddr: 0x93F0, symSize: 0xC } + - { offsetInCU: 0x393D, offset: 0x58CEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6074, symBinAddr: 0x93FC, symSize: 0x8 } + - { offsetInCU: 0x3955, offset: 0x58D02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x607C, symBinAddr: 0x9404, symSize: 0x8 } + - { offsetInCU: 0x396D, offset: 0x58D1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x6084, symBinAddr: 0x940C, symSize: 0x8 } + - { offsetInCU: 0x3985, offset: 0x58D32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x608C, symBinAddr: 0x9414, symSize: 0x8 } + - { offsetInCU: 0x399D, offset: 0x58D4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x6094, symBinAddr: 0x941C, symSize: 0x8 } + - { offsetInCU: 0x39B5, offset: 0x58D62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x609C, symBinAddr: 0x9424, symSize: 0xC } + - { offsetInCU: 0x39CD, offset: 0x58D7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x60A8, symBinAddr: 0x9430, symSize: 0x8 } + - { offsetInCU: 0x39E5, offset: 0x58D92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x60B0, symBinAddr: 0x9438, symSize: 0xC } + - { offsetInCU: 0x39FD, offset: 0x58DAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x60BC, symBinAddr: 0x9444, symSize: 0xC } + - { offsetInCU: 0x3A15, offset: 0x58DC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x60C8, symBinAddr: 0x9450, symSize: 0x8 } + - { offsetInCU: 0x3A2D, offset: 0x58DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x60D0, symBinAddr: 0x9458, symSize: 0x8 } + - { offsetInCU: 0x3A45, offset: 0x58DF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x60D8, symBinAddr: 0x9460, symSize: 0x8 } + - { offsetInCU: 0x3A5D, offset: 0x58E0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x60E0, symBinAddr: 0x9468, symSize: 0xC } + - { offsetInCU: 0x3A75, offset: 0x58E22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x60EC, symBinAddr: 0x9474, symSize: 0xC } + - { offsetInCU: 0x3A8D, offset: 0x58E3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x60F8, symBinAddr: 0x9480, symSize: 0x8 } + - { offsetInCU: 0x3AA5, offset: 0x58E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x6100, symBinAddr: 0x9488, symSize: 0x8 } + - { offsetInCU: 0x3ABD, offset: 0x58E6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x6108, symBinAddr: 0x9490, symSize: 0x8 } + - { offsetInCU: 0x3AD5, offset: 0x58E82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x6110, symBinAddr: 0x9498, symSize: 0x8 } + - { offsetInCU: 0x3AED, offset: 0x58E9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x6118, symBinAddr: 0x94A0, symSize: 0x8 } + - { offsetInCU: 0x3B05, offset: 0x58EB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x6120, symBinAddr: 0x94A8, symSize: 0xC } + - { offsetInCU: 0x3B1D, offset: 0x58ECA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x612C, symBinAddr: 0x94B4, symSize: 0x8 } + - { offsetInCU: 0x3B35, offset: 0x58EE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x6134, symBinAddr: 0x94BC, symSize: 0x8 } + - { offsetInCU: 0x3B4D, offset: 0x58EFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x613C, symBinAddr: 0x94C4, symSize: 0x8 } + - { offsetInCU: 0x3B65, offset: 0x58F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x6144, symBinAddr: 0x94CC, symSize: 0x8 } + - { offsetInCU: 0x3B7D, offset: 0x58F2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x614C, symBinAddr: 0x94D4, symSize: 0x8 } + - { offsetInCU: 0x3B95, offset: 0x58F42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6154, symBinAddr: 0x94DC, symSize: 0xC } + - { offsetInCU: 0x3BAD, offset: 0x58F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6160, symBinAddr: 0x94E8, symSize: 0x8 } + - { offsetInCU: 0x3BC5, offset: 0x58F72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x6168, symBinAddr: 0x94F0, symSize: 0x8 } + - { offsetInCU: 0x3BDD, offset: 0x58F8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x6170, symBinAddr: 0x94F8, symSize: 0x8 } + - { offsetInCU: 0x3BF5, offset: 0x58FA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x6178, symBinAddr: 0x9500, symSize: 0x8 } + - { offsetInCU: 0x3C0D, offset: 0x58FBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x6180, symBinAddr: 0x9508, symSize: 0xC } + - { offsetInCU: 0x3C25, offset: 0x58FD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x618C, symBinAddr: 0x9514, symSize: 0x8 } + - { offsetInCU: 0x3C3D, offset: 0x58FEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6194, symBinAddr: 0x951C, symSize: 0xC } + - { offsetInCU: 0x3C55, offset: 0x59002, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x61A0, symBinAddr: 0x9528, symSize: 0x8 } + - { offsetInCU: 0x3C6D, offset: 0x5901A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x61A8, symBinAddr: 0x9530, symSize: 0x8 } + - { offsetInCU: 0x3C85, offset: 0x59032, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x61B0, symBinAddr: 0x9538, symSize: 0x8 } + - { offsetInCU: 0x3C9D, offset: 0x5904A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x61B8, symBinAddr: 0x9540, symSize: 0x8 } + - { offsetInCU: 0x3CB5, offset: 0x59062, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x61C0, symBinAddr: 0x9548, symSize: 0xC } + - { offsetInCU: 0x3CCD, offset: 0x5907A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x61CC, symBinAddr: 0x9554, symSize: 0x8 } + - { offsetInCU: 0x3CE5, offset: 0x59092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x61D4, symBinAddr: 0x955C, symSize: 0xC } + - { offsetInCU: 0x3CFD, offset: 0x590AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x61E0, symBinAddr: 0x9568, symSize: 0x8 } + - { offsetInCU: 0x3D15, offset: 0x590C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x61E8, symBinAddr: 0x9570, symSize: 0xC } + - { offsetInCU: 0x3D2D, offset: 0x590DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x61F4, symBinAddr: 0x957C, symSize: 0xC } + - { offsetInCU: 0x3D45, offset: 0x590F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6200, symBinAddr: 0x9588, symSize: 0x8 } + - { offsetInCU: 0x3D5D, offset: 0x5910A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6208, symBinAddr: 0x9590, symSize: 0x8 } + - { offsetInCU: 0x3D75, offset: 0x59122, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x6210, symBinAddr: 0x9598, symSize: 0xC } + - { offsetInCU: 0x3D8D, offset: 0x5913A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x621C, symBinAddr: 0x95A4, symSize: 0x8 } + - { offsetInCU: 0x3DA5, offset: 0x59152, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x6224, symBinAddr: 0x95AC, symSize: 0x8 } + - { offsetInCU: 0x3DBD, offset: 0x5916A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x622C, symBinAddr: 0x95B4, symSize: 0x8 } + - { offsetInCU: 0x3DD5, offset: 0x59182, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x6234, symBinAddr: 0x95BC, symSize: 0x8 } + - { offsetInCU: 0x429D, offset: 0x5964A, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x6B40, symBinAddr: 0x9EB4, symSize: 0x148 } + - { offsetInCU: 0x435B, offset: 0x59708, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x7C30, symBinAddr: 0xAFA4, symSize: 0x40 } + - { offsetInCU: 0x436F, offset: 0x5971C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x7C94, symBinAddr: 0xB008, symSize: 0x8 } + - { offsetInCU: 0x4383, offset: 0x59730, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x7C9C, symBinAddr: 0xB010, symSize: 0x24 } + - { offsetInCU: 0x4397, offset: 0x59744, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x7CC0, symBinAddr: 0xB034, symSize: 0x20 } + - { offsetInCU: 0x43AB, offset: 0x59758, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x7CE0, symBinAddr: 0xB054, symSize: 0x28 } + - { offsetInCU: 0x4462, offset: 0x5980F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x7EE8, symBinAddr: 0xB25C, symSize: 0x20 } + - { offsetInCU: 0x4476, offset: 0x59823, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOb', symObjAddr: 0x7F08, symBinAddr: 0xB27C, symSize: 0x18 } + - { offsetInCU: 0x448A, offset: 0x59837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x7F58, symBinAddr: 0xB2CC, symSize: 0x8 } + - { offsetInCU: 0x449E, offset: 0x5984B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x7F60, symBinAddr: 0xB2D4, symSize: 0x10 } + - { offsetInCU: 0x44B2, offset: 0x5985F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x7F70, symBinAddr: 0xB2E4, symSize: 0x8 } + - { offsetInCU: 0x44C6, offset: 0x59873, size: 0x8, addend: 0x0, symName: '_$s8Dispatch0A13WorkItemFlagsVACs10SetAlgebraAAWl', symObjAddr: 0x7F78, symBinAddr: 0xB2EC, symSize: 0x48 } + - { offsetInCU: 0x44DA, offset: 0x59887, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGSayxGSTsWl', symObjAddr: 0x7FC0, symBinAddr: 0xB334, symSize: 0x4C } + - { offsetInCU: 0x44EE, offset: 0x5989B, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x800C, symBinAddr: 0xB380, symSize: 0x44 } + - { offsetInCU: 0x4502, offset: 0x598AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8050, symBinAddr: 0xB3C4, symSize: 0x8 } + - { offsetInCU: 0x4516, offset: 0x598C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x8084, symBinAddr: 0xB3F8, symSize: 0x10 } + - { offsetInCU: 0x452A, offset: 0x598D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x8094, symBinAddr: 0xB408, symSize: 0x6C } + - { offsetInCU: 0x453E, offset: 0x598EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x8100, symBinAddr: 0xB474, symSize: 0x6C } + - { offsetInCU: 0x4552, offset: 0x598FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8190, symBinAddr: 0xB504, symSize: 0xC } + - { offsetInCU: 0x4566, offset: 0x59913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x819C, symBinAddr: 0xB510, symSize: 0x8 } + - { offsetInCU: 0x4AA5, offset: 0x59E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xA574, symBinAddr: 0xD8E8, symSize: 0x4 } + - { offsetInCU: 0x4AB9, offset: 0x59E66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xA578, symBinAddr: 0xD8EC, symSize: 0x44 } + - { offsetInCU: 0x4ACD, offset: 0x59E7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xA5BC, symBinAddr: 0xD930, symSize: 0x10 } + - { offsetInCU: 0x4AE1, offset: 0x59E8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xA638, symBinAddr: 0xD9AC, symSize: 0x24 } + - { offsetInCU: 0x4AF5, offset: 0x59EA2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xA660, symBinAddr: 0xD9D4, symSize: 0x44 } + - { offsetInCU: 0x4B09, offset: 0x59EB6, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xA6A4, symBinAddr: 0xDA18, symSize: 0x28 } + - { offsetInCU: 0x4B1D, offset: 0x59ECA, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xA6CC, symBinAddr: 0xDA40, symSize: 0x28 } + - { offsetInCU: 0x4B31, offset: 0x59EDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xA6FC, symBinAddr: 0xDA70, symSize: 0x8 } + - { offsetInCU: 0x4B45, offset: 0x59EF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xA728, symBinAddr: 0xDA9C, symSize: 0x8 } + - { offsetInCU: 0x4B59, offset: 0x59F06, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xA740, symBinAddr: 0xDAB4, symSize: 0x8 } + - { offsetInCU: 0x4B6D, offset: 0x59F1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xA748, symBinAddr: 0xDABC, symSize: 0x8 } + - { offsetInCU: 0x4B81, offset: 0x59F2E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xA8A0, symBinAddr: 0xDC14, symSize: 0x14 } + - { offsetInCU: 0x4B95, offset: 0x59F42, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xA8B4, symBinAddr: 0xDC28, symSize: 0x44 } + - { offsetInCU: 0x4BA9, offset: 0x59F56, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xA8F8, symBinAddr: 0xDC6C, symSize: 0x14 } + - { offsetInCU: 0x4BBD, offset: 0x59F6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xA988, symBinAddr: 0xDCFC, symSize: 0xC0 } + - { offsetInCU: 0x4BD1, offset: 0x59F7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xAAB0, symBinAddr: 0xDE24, symSize: 0x44 } + - { offsetInCU: 0x4BE5, offset: 0x59F92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xAB28, symBinAddr: 0xDE9C, symSize: 0x44 } + - { offsetInCU: 0x4BF9, offset: 0x59FA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xAB98, symBinAddr: 0xDF0C, symSize: 0xC } + - { offsetInCU: 0x4C6C, offset: 0x5A019, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x148, symBinAddr: 0x34D0, symSize: 0x14 } + - { offsetInCU: 0x4D28, offset: 0x5A0D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x15C, symBinAddr: 0x34E4, symSize: 0x44 } + - { offsetInCU: 0x4DB7, offset: 0x5A164, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A0, symBinAddr: 0x3528, symSize: 0x28 } + - { offsetInCU: 0x4E0A, offset: 0x5A1B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C8, symBinAddr: 0x3550, symSize: 0x40 } + - { offsetInCU: 0x538F, offset: 0x5A73C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTgm5Tf4g_n', symObjAddr: 0x7D08, symBinAddr: 0xB07C, symSize: 0xE4 } + - { offsetInCU: 0x54F1, offset: 0x5A89E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x82AC, symBinAddr: 0xB620, symSize: 0xF0 } + - { offsetInCU: 0x5AA8, offset: 0x5AE55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x3388, symSize: 0x4 } + - { offsetInCU: 0x5ABC, offset: 0x5AE69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x4, symBinAddr: 0x338C, symSize: 0x4 } + - { offsetInCU: 0x5ADD, offset: 0x5AE8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x8, symBinAddr: 0x3390, symSize: 0x28 } + - { offsetInCU: 0x5AF8, offset: 0x5AEA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x30, symBinAddr: 0x33B8, symSize: 0x118 } + - { offsetInCU: 0x5BE3, offset: 0x5AF90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x35C, symBinAddr: 0x36E4, symSize: 0x48 } + - { offsetInCU: 0x5C02, offset: 0x5AFAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x3A4, symBinAddr: 0x372C, symSize: 0x58 } + - { offsetInCU: 0x5C37, offset: 0x5AFE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x3FC, symBinAddr: 0x3784, symSize: 0x70 } + - { offsetInCU: 0x5C5C, offset: 0x5B009, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x46C, symBinAddr: 0x37F4, symSize: 0x6C } + - { offsetInCU: 0x5C7D, offset: 0x5B02A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x528, symBinAddr: 0x38B0, symSize: 0x44 } + - { offsetInCU: 0x5CA2, offset: 0x5B04F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvg', symObjAddr: 0x574, symBinAddr: 0x38FC, symSize: 0x44 } + - { offsetInCU: 0x5CC1, offset: 0x5B06E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvs', symObjAddr: 0x5B8, symBinAddr: 0x3940, symSize: 0x48 } + - { offsetInCU: 0x5CF6, offset: 0x5B0A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x600, symBinAddr: 0x3988, symSize: 0x44 } + - { offsetInCU: 0x5D1B, offset: 0x5B0C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x6B4, symBinAddr: 0x3A3C, symSize: 0x44 } + - { offsetInCU: 0x5D40, offset: 0x5B0ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x71C, symBinAddr: 0x3AA4, symSize: 0x44 } + - { offsetInCU: 0x5D65, offset: 0x5B112, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x3BB4, symSize: 0x44 } + - { offsetInCU: 0x5D8A, offset: 0x5B137, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvg', symObjAddr: 0x878, symBinAddr: 0x3C00, symSize: 0x44 } + - { offsetInCU: 0x5DA9, offset: 0x5B156, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvs', symObjAddr: 0x8BC, symBinAddr: 0x3C44, symSize: 0x48 } + - { offsetInCU: 0x5DDA, offset: 0x5B187, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x904, symBinAddr: 0x3C8C, symSize: 0x44 } + - { offsetInCU: 0x5DFF, offset: 0x5B1AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x950, symBinAddr: 0x3CD8, symSize: 0x50 } + - { offsetInCU: 0x5E1E, offset: 0x5B1CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0x9A0, symBinAddr: 0x3D28, symSize: 0x50 } + - { offsetInCU: 0x5E53, offset: 0x5B200, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0x9F0, symBinAddr: 0x3D78, symSize: 0x44 } + - { offsetInCU: 0x5E78, offset: 0x5B225, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0xA34, symBinAddr: 0x3DBC, symSize: 0x4 } + - { offsetInCU: 0x5ECC, offset: 0x5B279, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0xA38, symBinAddr: 0x3DC0, symSize: 0xC0 } + - { offsetInCU: 0x5F3B, offset: 0x5B2E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xB04, symBinAddr: 0x3E8C, symSize: 0xF4 } + - { offsetInCU: 0x5FAD, offset: 0x5B35A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xC04, symBinAddr: 0x3F8C, symSize: 0x44 } + - { offsetInCU: 0x5FCC, offset: 0x5B379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xC48, symBinAddr: 0x3FD0, symSize: 0x50 } + - { offsetInCU: 0x6001, offset: 0x5B3AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC98, symBinAddr: 0x4020, symSize: 0x44 } + - { offsetInCU: 0x608F, offset: 0x5B43C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xDFC, symBinAddr: 0x4184, symSize: 0x214 } + - { offsetInCU: 0x6110, offset: 0x5B4BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4BA0, symBinAddr: 0x7F28, symSize: 0x5C } + - { offsetInCU: 0x614F, offset: 0x5B4FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0x1010, symBinAddr: 0x4398, symSize: 0x44 } + - { offsetInCU: 0x6182, offset: 0x5B52F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x1054, symBinAddr: 0x43DC, symSize: 0x90 } + - { offsetInCU: 0x61CA, offset: 0x5B577, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x10E4, symBinAddr: 0x446C, symSize: 0x48 } + - { offsetInCU: 0x61EF, offset: 0x5B59C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x112C, symBinAddr: 0x44B4, symSize: 0x80 } + - { offsetInCU: 0x6251, offset: 0x5B5FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x11B0, symBinAddr: 0x4538, symSize: 0x20 } + - { offsetInCU: 0x6271, offset: 0x5B61E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x11B0, symBinAddr: 0x4538, symSize: 0x20 } + - { offsetInCU: 0x62CF, offset: 0x5B67C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x11D0, symBinAddr: 0x4558, symSize: 0x20 } + - { offsetInCU: 0x6304, offset: 0x5B6B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x11D0, symBinAddr: 0x4558, symSize: 0x20 } + - { offsetInCU: 0x635A, offset: 0x5B707, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x11F0, symBinAddr: 0x4578, symSize: 0x34 } + - { offsetInCU: 0x63BD, offset: 0x5B76A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1224, symBinAddr: 0x45AC, symSize: 0x20 } + - { offsetInCU: 0x63E1, offset: 0x5B78E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1224, symBinAddr: 0x45AC, symSize: 0x20 } + - { offsetInCU: 0x63F5, offset: 0x5B7A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1224, symBinAddr: 0x45AC, symSize: 0x20 } + - { offsetInCU: 0x641C, offset: 0x5B7C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1244, symBinAddr: 0x45CC, symSize: 0x20 } + - { offsetInCU: 0x643C, offset: 0x5B7E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1244, symBinAddr: 0x45CC, symSize: 0x20 } + - { offsetInCU: 0x649A, offset: 0x5B847, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x1264, symBinAddr: 0x45EC, symSize: 0x20 } + - { offsetInCU: 0x64CE, offset: 0x5B87B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x1264, symBinAddr: 0x45EC, symSize: 0x20 } + - { offsetInCU: 0x6523, offset: 0x5B8D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x1284, symBinAddr: 0x460C, symSize: 0x34 } + - { offsetInCU: 0x6586, offset: 0x5B933, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12B8, symBinAddr: 0x4640, symSize: 0x20 } + - { offsetInCU: 0x65AA, offset: 0x5B957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12B8, symBinAddr: 0x4640, symSize: 0x20 } + - { offsetInCU: 0x65BE, offset: 0x5B96B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12B8, symBinAddr: 0x4640, symSize: 0x20 } + - { offsetInCU: 0x65E5, offset: 0x5B992, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x12D8, symBinAddr: 0x4660, symSize: 0x20 } + - { offsetInCU: 0x6605, offset: 0x5B9B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x12D8, symBinAddr: 0x4660, symSize: 0x20 } + - { offsetInCU: 0x665E, offset: 0x5BA0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x12F8, symBinAddr: 0x4680, symSize: 0x20 } + - { offsetInCU: 0x6692, offset: 0x5BA3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x12F8, symBinAddr: 0x4680, symSize: 0x20 } + - { offsetInCU: 0x66E7, offset: 0x5BA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1318, symBinAddr: 0x46A0, symSize: 0x34 } + - { offsetInCU: 0x674A, offset: 0x5BAF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x134C, symBinAddr: 0x46D4, symSize: 0x20 } + - { offsetInCU: 0x676E, offset: 0x5BB1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x134C, symBinAddr: 0x46D4, symSize: 0x20 } + - { offsetInCU: 0x6782, offset: 0x5BB2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x134C, symBinAddr: 0x46D4, symSize: 0x20 } + - { offsetInCU: 0x6795, offset: 0x5BB42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvg', symObjAddr: 0x1374, symBinAddr: 0x46FC, symSize: 0x44 } + - { offsetInCU: 0x67B4, offset: 0x5BB61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvs', symObjAddr: 0x13B8, symBinAddr: 0x4740, symSize: 0x48 } + - { offsetInCU: 0x67E9, offset: 0x5BB96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x1400, symBinAddr: 0x4788, symSize: 0x44 } + - { offsetInCU: 0x680E, offset: 0x5BBBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvg', symObjAddr: 0x1454, symBinAddr: 0x47DC, symSize: 0x44 } + - { offsetInCU: 0x682D, offset: 0x5BBDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvs', symObjAddr: 0x1498, symBinAddr: 0x4820, symSize: 0x48 } + - { offsetInCU: 0x685E, offset: 0x5BC0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x14E0, symBinAddr: 0x4868, symSize: 0x44 } + - { offsetInCU: 0x6883, offset: 0x5BC30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x152C, symBinAddr: 0x48B4, symSize: 0x44 } + - { offsetInCU: 0x68A2, offset: 0x5BC4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1570, symBinAddr: 0x48F8, symSize: 0x48 } + - { offsetInCU: 0x68D7, offset: 0x5BC84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x15B8, symBinAddr: 0x4940, symSize: 0x44 } + - { offsetInCU: 0x68FC, offset: 0x5BCA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1604, symBinAddr: 0x498C, symSize: 0x44 } + - { offsetInCU: 0x691B, offset: 0x5BCC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1648, symBinAddr: 0x49D0, symSize: 0x48 } + - { offsetInCU: 0x6950, offset: 0x5BCFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1690, symBinAddr: 0x4A18, symSize: 0x44 } + - { offsetInCU: 0x6994, offset: 0x5BD41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x16EC, symBinAddr: 0x4A74, symSize: 0x78 } + - { offsetInCU: 0x69FF, offset: 0x5BDAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x1764, symBinAddr: 0x4AEC, symSize: 0x7C } + - { offsetInCU: 0x6A77, offset: 0x5BE24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x17E0, symBinAddr: 0x4B68, symSize: 0x90 } + - { offsetInCU: 0x6AD0, offset: 0x5BE7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x1870, symBinAddr: 0x4BF8, symSize: 0x24 } + - { offsetInCU: 0x6AF1, offset: 0x5BE9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x1894, symBinAddr: 0x4C1C, symSize: 0x88 } + - { offsetInCU: 0x6B43, offset: 0x5BEF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x191C, symBinAddr: 0x4CA4, symSize: 0x7C } + - { offsetInCU: 0x6BA4, offset: 0x5BF51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x1998, symBinAddr: 0x4D20, symSize: 0xA8 } + - { offsetInCU: 0x6BF8, offset: 0x5BFA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1A40, symBinAddr: 0x4DC8, symSize: 0x80 } + - { offsetInCU: 0x6C57, offset: 0x5C004, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1AC0, symBinAddr: 0x4E48, symSize: 0xC8 } + - { offsetInCU: 0x6CD7, offset: 0x5C084, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1B88, symBinAddr: 0x4F10, symSize: 0xD4 } + - { offsetInCU: 0x6D5A, offset: 0x5C107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1C5C, symBinAddr: 0x4FE4, symSize: 0xFC } + - { offsetInCU: 0x6DEC, offset: 0x5C199, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1D58, symBinAddr: 0x50E0, symSize: 0x130 } + - { offsetInCU: 0x6E8F, offset: 0x5C23C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1E88, symBinAddr: 0x5210, symSize: 0xC0 } + - { offsetInCU: 0x6F01, offset: 0x5C2AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x2014, symBinAddr: 0x539C, symSize: 0xF4 } + - { offsetInCU: 0x6F76, offset: 0x5C323, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x21F8, symBinAddr: 0x5580, symSize: 0x48 } + - { offsetInCU: 0x6F9C, offset: 0x5C349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2240, symBinAddr: 0x55C8, symSize: 0x50 } + - { offsetInCU: 0x6FD3, offset: 0x5C380, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2290, symBinAddr: 0x5618, symSize: 0x44 } + - { offsetInCU: 0x6FF2, offset: 0x5C39F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2384, symBinAddr: 0x570C, symSize: 0x44 } + - { offsetInCU: 0x7018, offset: 0x5C3C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x23FC, symBinAddr: 0x5784, symSize: 0x44 } + - { offsetInCU: 0x703E, offset: 0x5C3EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x2474, symBinAddr: 0x57FC, symSize: 0x44 } + - { offsetInCU: 0x7064, offset: 0x5C411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x24E8, symBinAddr: 0x5870, symSize: 0x44 } + - { offsetInCU: 0x708A, offset: 0x5C437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x2560, symBinAddr: 0x58E8, symSize: 0x44 } + - { offsetInCU: 0x70B0, offset: 0x5C45D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x25D4, symBinAddr: 0x595C, symSize: 0x44 } + - { offsetInCU: 0x70D6, offset: 0x5C483, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x264C, symBinAddr: 0x59D4, symSize: 0x44 } + - { offsetInCU: 0x70FC, offset: 0x5C4A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x26C4, symBinAddr: 0x5A4C, symSize: 0x44 } + - { offsetInCU: 0x7122, offset: 0x5C4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x273C, symBinAddr: 0x5AC4, symSize: 0x44 } + - { offsetInCU: 0x7148, offset: 0x5C4F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x27B4, symBinAddr: 0x5B3C, symSize: 0x44 } + - { offsetInCU: 0x716E, offset: 0x5C51B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2828, symBinAddr: 0x5BB0, symSize: 0x44 } + - { offsetInCU: 0x7194, offset: 0x5C541, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2948, symBinAddr: 0x5CD0, symSize: 0x44 } + - { offsetInCU: 0x71C0, offset: 0x5C56D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x298C, symBinAddr: 0x5D14, symSize: 0x70 } + - { offsetInCU: 0x7206, offset: 0x5C5B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x29FC, symBinAddr: 0x5D84, symSize: 0x560 } + - { offsetInCU: 0x7413, offset: 0x5C7C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x2F5C, symBinAddr: 0x62E4, symSize: 0x178 } + - { offsetInCU: 0x7543, offset: 0x5C8F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x3324, symBinAddr: 0x66AC, symSize: 0x330 } + - { offsetInCU: 0x76E7, offset: 0x5CA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3654, symBinAddr: 0x69DC, symSize: 0x8 } + - { offsetInCU: 0x77E5, offset: 0x5CB92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x365C, symBinAddr: 0x69E4, symSize: 0x624 } + - { offsetInCU: 0x7AD3, offset: 0x5CE80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x3C80, symBinAddr: 0x7008, symSize: 0xC0 } + - { offsetInCU: 0x7BBB, offset: 0x5CF68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x3D6C, symBinAddr: 0x70F4, symSize: 0xC8 } + - { offsetInCU: 0x7C86, offset: 0x5D033, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x3E34, symBinAddr: 0x71BC, symSize: 0x100 } + - { offsetInCU: 0x7D02, offset: 0x5D0AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x3F34, symBinAddr: 0x72BC, symSize: 0xB0 } + - { offsetInCU: 0x7DF1, offset: 0x5D19E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x3FE4, symBinAddr: 0x736C, symSize: 0x148 } + - { offsetInCU: 0x7F9C, offset: 0x5D349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x412C, symBinAddr: 0x74B4, symSize: 0x4E4 } + - { offsetInCU: 0x81D7, offset: 0x5D584, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x4610, symBinAddr: 0x7998, symSize: 0x7C } + - { offsetInCU: 0x8244, offset: 0x5D5F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x468C, symBinAddr: 0x7A14, symSize: 0xBC } + - { offsetInCU: 0x8376, offset: 0x5D723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4748, symBinAddr: 0x7AD0, symSize: 0x78 } + - { offsetInCU: 0x8447, offset: 0x5D7F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x47C0, symBinAddr: 0x7B48, symSize: 0xF8 } + - { offsetInCU: 0x8667, offset: 0x5DA14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x48B8, symBinAddr: 0x7C40, symSize: 0x134 } + - { offsetInCU: 0x8819, offset: 0x5DBC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x49EC, symBinAddr: 0x7D74, symSize: 0xF0 } + - { offsetInCU: 0x894B, offset: 0x5DCF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4ADC, symBinAddr: 0x7E64, symSize: 0x20 } + - { offsetInCU: 0x895F, offset: 0x5DD0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4AFC, symBinAddr: 0x7E84, symSize: 0x2C } + - { offsetInCU: 0x89BF, offset: 0x5DD6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4BFC, symBinAddr: 0x7F84, symSize: 0x4 } + - { offsetInCU: 0x8A33, offset: 0x5DDE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x4C00, symBinAddr: 0x7F88, symSize: 0x1EC } + - { offsetInCU: 0x8B28, offset: 0x5DED5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x4E28, symBinAddr: 0x81B0, symSize: 0x1AC } + - { offsetInCU: 0x8C03, offset: 0x5DFB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5038, symBinAddr: 0x83C0, symSize: 0xC4 } + - { offsetInCU: 0x8C7E, offset: 0x5E02B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x50FC, symBinAddr: 0x8484, symSize: 0x4 } + - { offsetInCU: 0x8D65, offset: 0x5E112, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5100, symBinAddr: 0x8488, symSize: 0x24C } + - { offsetInCU: 0x919C, offset: 0x5E549, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x534C, symBinAddr: 0x86D4, symSize: 0x390 } + - { offsetInCU: 0x93C3, offset: 0x5E770, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x56DC, symBinAddr: 0x8A64, symSize: 0xB0 } + - { offsetInCU: 0x958E, offset: 0x5E93B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5UInt8V_Tg5', symObjAddr: 0x6250, symBinAddr: 0x95C4, symSize: 0xE8 } + - { offsetInCU: 0x96C4, offset: 0x5EA71, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x6338, symBinAddr: 0x96AC, symSize: 0x134 } + - { offsetInCU: 0x97FA, offset: 0x5EBA7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x646C, symBinAddr: 0x97E0, symSize: 0xFC } + - { offsetInCU: 0x9929, offset: 0x5ECD6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x6580, symBinAddr: 0x98F4, symSize: 0x104 } + - { offsetInCU: 0x9A5F, offset: 0x5EE0C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x6774, symBinAddr: 0x9AE8, symSize: 0x118 } + - { offsetInCU: 0x9B72, offset: 0x5EF1F, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x688C, symBinAddr: 0x9C00, symSize: 0xA4 } + - { offsetInCU: 0x9D91, offset: 0x5F13E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x839C, symBinAddr: 0xB710, symSize: 0x330 } + - { offsetInCU: 0x9FE6, offset: 0x5F393, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x86CC, symBinAddr: 0xBA40, symSize: 0x68C } + - { offsetInCU: 0xA56C, offset: 0x5F919, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x8D58, symBinAddr: 0xC0CC, symSize: 0x468 } + - { offsetInCU: 0xA927, offset: 0x5FCD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x91C0, symBinAddr: 0xC534, symSize: 0x224 } + - { offsetInCU: 0xAA8C, offset: 0x5FE39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x93E4, symBinAddr: 0xC758, symSize: 0x190 } + - { offsetInCU: 0xABB3, offset: 0x5FF60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9574, symBinAddr: 0xC8E8, symSize: 0x1A0 } + - { offsetInCU: 0xAD0E, offset: 0x600BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9714, symBinAddr: 0xCA88, symSize: 0x23C } + - { offsetInCU: 0xAF80, offset: 0x6032D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0x9950, symBinAddr: 0xCCC4, symSize: 0x748 } + - { offsetInCU: 0xB644, offset: 0x609F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA098, symBinAddr: 0xD40C, symSize: 0x39C } + - { offsetInCU: 0xB99B, offset: 0x60D48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xA434, symBinAddr: 0xD7A8, symSize: 0x140 } + - { offsetInCU: 0x19A, offset: 0x61054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x31C, symBinAddr: 0xE380, symSize: 0x20 } + - { offsetInCU: 0x1CB, offset: 0x61085, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x33C, symBinAddr: 0xE3A0, symSize: 0xC } + - { offsetInCU: 0x1E7, offset: 0x610A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x348, symBinAddr: 0xE3AC, symSize: 0xA0 } + - { offsetInCU: 0x248, offset: 0x61102, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x3E8, symBinAddr: 0xE44C, symSize: 0x104 } + - { offsetInCU: 0x5BE, offset: 0x61478, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xDC8, symBinAddr: 0xEE2C, symSize: 0x118 } + - { offsetInCU: 0xB1E, offset: 0x619D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x24F4, symBinAddr: 0x10558, symSize: 0x10 } + - { offsetInCU: 0xB36, offset: 0x619F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2504, symBinAddr: 0x10568, symSize: 0x4 } + - { offsetInCU: 0xB96, offset: 0x61A50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x256C, symBinAddr: 0x105D0, symSize: 0x10 } + - { offsetInCU: 0xBAE, offset: 0x61A68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x257C, symBinAddr: 0x105E0, symSize: 0x4 } + - { offsetInCU: 0xC0E, offset: 0x61AC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x25E4, symBinAddr: 0x10648, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x61AE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x25F4, symBinAddr: 0x10658, symSize: 0x4 } + - { offsetInCU: 0xC86, offset: 0x61B40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x265C, symBinAddr: 0x106C0, symSize: 0x10 } + - { offsetInCU: 0xCB5, offset: 0x61B6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x26D0, symBinAddr: 0x10734, symSize: 0x10 } + - { offsetInCU: 0xCCD, offset: 0x61B87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x26E0, symBinAddr: 0x10744, symSize: 0x4 } + - { offsetInCU: 0xD3C, offset: 0x61BF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x2748, symBinAddr: 0x107AC, symSize: 0x10 } + - { offsetInCU: 0xD54, offset: 0x61C0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2758, symBinAddr: 0x107BC, symSize: 0x4 } + - { offsetInCU: 0xDC3, offset: 0x61C7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x27C0, symBinAddr: 0x10824, symSize: 0x10 } + - { offsetInCU: 0xDDB, offset: 0x61C95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x27D0, symBinAddr: 0x10834, symSize: 0x4 } + - { offsetInCU: 0xE3B, offset: 0x61CF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2838, symBinAddr: 0x1089C, symSize: 0x10 } + - { offsetInCU: 0xE53, offset: 0x61D0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2848, symBinAddr: 0x108AC, symSize: 0x4 } + - { offsetInCU: 0xE95, offset: 0x61D4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x28B0, symBinAddr: 0x10914, symSize: 0x10 } + - { offsetInCU: 0xEAD, offset: 0x61D67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x28C0, symBinAddr: 0x10924, symSize: 0x4 } + - { offsetInCU: 0xEEF, offset: 0x61DA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2928, symBinAddr: 0x1098C, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x61DC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2938, symBinAddr: 0x1099C, symSize: 0x4 } + - { offsetInCU: 0xF58, offset: 0x61E12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x29A0, symBinAddr: 0x10A04, symSize: 0x10 } + - { offsetInCU: 0xF87, offset: 0x61E41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2A14, symBinAddr: 0x10A78, symSize: 0x10 } + - { offsetInCU: 0xFB6, offset: 0x61E70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2A88, symBinAddr: 0x10AEC, symSize: 0x10 } + - { offsetInCU: 0xFCE, offset: 0x61E88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x2A98, symBinAddr: 0x10AFC, symSize: 0x4 } + - { offsetInCU: 0x1030, offset: 0x61EEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2B00, symBinAddr: 0x10B64, symSize: 0x10 } + - { offsetInCU: 0x105F, offset: 0x61F19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x2B74, symBinAddr: 0x10BD8, symSize: 0x10 } + - { offsetInCU: 0x1077, offset: 0x61F31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x2B84, symBinAddr: 0x10BE8, symSize: 0x4 } + - { offsetInCU: 0x1135, offset: 0x61FEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x363C, symBinAddr: 0x116A0, symSize: 0x24 } + - { offsetInCU: 0x14D6, offset: 0x62390, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x4FE4, symBinAddr: 0x13048, symSize: 0x2C } + - { offsetInCU: 0x153D, offset: 0x623F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x5010, symBinAddr: 0x13074, symSize: 0x44 } + - { offsetInCU: 0x163B, offset: 0x624F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x69C8, symBinAddr: 0x14980, symSize: 0x234 } + - { offsetInCU: 0x180F, offset: 0x626C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x6E18, symBinAddr: 0x14DD0, symSize: 0x24C } + - { offsetInCU: 0x19E3, offset: 0x6289D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x7064, symBinAddr: 0x1501C, symSize: 0x200 } + - { offsetInCU: 0x1BB7, offset: 0x62A71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x7264, symBinAddr: 0x1521C, symSize: 0x22C } + - { offsetInCU: 0x1D8B, offset: 0x62C45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x7490, symBinAddr: 0x15448, symSize: 0x270 } + - { offsetInCU: 0x1F5F, offset: 0x62E19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x7700, symBinAddr: 0x156B8, symSize: 0x25C } + - { offsetInCU: 0x2133, offset: 0x62FED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x795C, symBinAddr: 0x15914, symSize: 0x234 } + - { offsetInCU: 0x2514, offset: 0x633CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x7B90, symBinAddr: 0x15B48, symSize: 0x308 } + - { offsetInCU: 0x25C7, offset: 0x63481, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x7E98, symBinAddr: 0x15E50, symSize: 0x30C } + - { offsetInCU: 0x267A, offset: 0x63534, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x81A4, symBinAddr: 0x1615C, symSize: 0x30C } + - { offsetInCU: 0x28A5, offset: 0x6375F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x3660, symBinAddr: 0x116C4, symSize: 0x288 } + - { offsetInCU: 0x2CB7, offset: 0x63B71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x5054, symBinAddr: 0x130B8, symSize: 0x8 } + - { offsetInCU: 0x2EE6, offset: 0x63DA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5BA8, symBinAddr: 0x13C0C, symSize: 0x4 } + - { offsetInCU: 0x2F06, offset: 0x63DC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5BA8, symBinAddr: 0x13C0C, symSize: 0x4 } + - { offsetInCU: 0x2F2B, offset: 0x63DE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5BAC, symBinAddr: 0x13C10, symSize: 0x4 } + - { offsetInCU: 0x2F47, offset: 0x63E01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5BB0, symBinAddr: 0x13C14, symSize: 0x4 } + - { offsetInCU: 0x2F63, offset: 0x63E1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5BB4, symBinAddr: 0x13C18, symSize: 0x4 } + - { offsetInCU: 0x2F7F, offset: 0x63E39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5BB8, symBinAddr: 0x13C1C, symSize: 0x4 } + - { offsetInCU: 0x2F9B, offset: 0x63E55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5BBC, symBinAddr: 0x13C20, symSize: 0x4 } + - { offsetInCU: 0x2FB7, offset: 0x63E71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5BC0, symBinAddr: 0x13C24, symSize: 0x204 } + - { offsetInCU: 0x3047, offset: 0x63F01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5DC4, symBinAddr: 0x13E28, symSize: 0x140 } + - { offsetInCU: 0x3154, offset: 0x6400E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5F04, symBinAddr: 0x13F68, symSize: 0x24 } + - { offsetInCU: 0x324B, offset: 0x64105, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x5F28, symBinAddr: 0x13F8C, symSize: 0x8 } + - { offsetInCU: 0x329C, offset: 0x64156, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x5F30, symBinAddr: 0x13F94, symSize: 0x40 } + - { offsetInCU: 0x32ED, offset: 0x641A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x5F70, symBinAddr: 0x13FD4, symSize: 0x40 } + - { offsetInCU: 0x333E, offset: 0x641F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x5FB0, symBinAddr: 0x14014, symSize: 0x8 } + - { offsetInCU: 0x338F, offset: 0x64249, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x5FB8, symBinAddr: 0x1401C, symSize: 0x8 } + - { offsetInCU: 0x33E0, offset: 0x6429A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5FC0, symBinAddr: 0x14024, symSize: 0x8 } + - { offsetInCU: 0x3431, offset: 0x642EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5FC8, symBinAddr: 0x1402C, symSize: 0x8 } + - { offsetInCU: 0x3488, offset: 0x64342, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x5FD0, symBinAddr: 0x14034, symSize: 0x4 } + - { offsetInCU: 0x34A8, offset: 0x64362, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x5FD0, symBinAddr: 0x14034, symSize: 0x4 } + - { offsetInCU: 0x34BB, offset: 0x64375, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x6038, symBinAddr: 0x1405C, symSize: 0x8 } + - { offsetInCU: 0x34EA, offset: 0x643A4, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tgm5', symObjAddr: 0x6430, symBinAddr: 0x143E8, symSize: 0x54 } + - { offsetInCU: 0x35C5, offset: 0x6447F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x84B0, symBinAddr: 0x16468, symSize: 0xAC } + - { offsetInCU: 0x3607, offset: 0x644C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x855C, symBinAddr: 0x16514, symSize: 0x94 } + - { offsetInCU: 0x3649, offset: 0x64503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x85F0, symBinAddr: 0x165A8, symSize: 0x20 } + - { offsetInCU: 0x365D, offset: 0x64517, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8660, symBinAddr: 0x16600, symSize: 0x8 } + - { offsetInCU: 0x3671, offset: 0x6452B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8668, symBinAddr: 0x16608, symSize: 0x10 } + - { offsetInCU: 0x3685, offset: 0x6453F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8678, symBinAddr: 0x16618, symSize: 0x8 } + - { offsetInCU: 0x3699, offset: 0x64553, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8758, symBinAddr: 0x16620, symSize: 0x8 } + - { offsetInCU: 0x36EC, offset: 0x645A6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x8760, symBinAddr: 0x16628, symSize: 0xC4 } + - { offsetInCU: 0x3762, offset: 0x6461C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8824, symBinAddr: 0x166EC, symSize: 0x78 } + - { offsetInCU: 0x378F, offset: 0x64649, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x889C, symBinAddr: 0x16764, symSize: 0x80 } + - { offsetInCU: 0x3823, offset: 0x646DD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x891C, symBinAddr: 0x167E4, symSize: 0x68 } + - { offsetInCU: 0x3CB5, offset: 0x64B6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xB2D0, symBinAddr: 0x19198, symSize: 0x8 } + - { offsetInCU: 0x3CC9, offset: 0x64B83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xB2D8, symBinAddr: 0x191A0, symSize: 0x4 } + - { offsetInCU: 0x3CDD, offset: 0x64B97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xB2DC, symBinAddr: 0x191A4, symSize: 0x44 } + - { offsetInCU: 0x3CF1, offset: 0x64BAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xB320, symBinAddr: 0x191E8, symSize: 0x10 } + - { offsetInCU: 0x3D05, offset: 0x64BBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xB330, symBinAddr: 0x191F8, symSize: 0x24 } + - { offsetInCU: 0x3D19, offset: 0x64BD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xB41C, symBinAddr: 0x192E4, symSize: 0x10 } + - { offsetInCU: 0x3D2D, offset: 0x64BE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xB49C, symBinAddr: 0x19364, symSize: 0x10 } + - { offsetInCU: 0x3D41, offset: 0x64BFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xB52C, symBinAddr: 0x193B0, symSize: 0x8 } + - { offsetInCU: 0x3D55, offset: 0x64C0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xB534, symBinAddr: 0x193B8, symSize: 0x8 } + - { offsetInCU: 0x3D69, offset: 0x64C23, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xB54C, symBinAddr: 0x193D0, symSize: 0x8 } + - { offsetInCU: 0x3D7D, offset: 0x64C37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xB554, symBinAddr: 0x193D8, symSize: 0x8 } + - { offsetInCU: 0x3DC3, offset: 0x64C7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xBC30, symBinAddr: 0x198B0, symSize: 0x10 } + - { offsetInCU: 0x3DD7, offset: 0x64C91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xBCE4, symBinAddr: 0x19920, symSize: 0x10 } + - { offsetInCU: 0x3DEB, offset: 0x64CA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xBD18, symBinAddr: 0x19954, symSize: 0xC } + - { offsetInCU: 0x3DFF, offset: 0x64CB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xBDF0, symBinAddr: 0x199E8, symSize: 0xC } + - { offsetInCU: 0x3F3A, offset: 0x64DF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x25C, symBinAddr: 0xE2C0, symSize: 0x14 } + - { offsetInCU: 0x3FEA, offset: 0x64EA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x270, symBinAddr: 0xE2D4, symSize: 0x44 } + - { offsetInCU: 0x4079, offset: 0x64F33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2B4, symBinAddr: 0xE318, symSize: 0x28 } + - { offsetInCU: 0x40CC, offset: 0x64F86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2DC, symBinAddr: 0xE340, symSize: 0x40 } + - { offsetInCU: 0x4A0B, offset: 0x658C5, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xE064, symSize: 0xE4 } + - { offsetInCU: 0x4ADA, offset: 0x65994, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE4, symBinAddr: 0xE148, symSize: 0xAC } + - { offsetInCU: 0x4B72, offset: 0x65A2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0xE1F4, symSize: 0xA0 } + - { offsetInCU: 0x4B97, offset: 0x65A51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x230, symBinAddr: 0xE294, symSize: 0x28 } + - { offsetInCU: 0x4BB6, offset: 0x65A70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x258, symBinAddr: 0xE2BC, symSize: 0x4 } + - { offsetInCU: 0x4CA4, offset: 0x65B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x4EC, symBinAddr: 0xE550, symSize: 0x48 } + - { offsetInCU: 0x4CC3, offset: 0x65B7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x534, symBinAddr: 0xE598, symSize: 0x58 } + - { offsetInCU: 0x4CF8, offset: 0x65BB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x58C, symBinAddr: 0xE5F0, symSize: 0x70 } + - { offsetInCU: 0x4D1D, offset: 0x65BD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x5FC, symBinAddr: 0xE660, symSize: 0x6C } + - { offsetInCU: 0x4D3E, offset: 0x65BF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x688, symBinAddr: 0xE6EC, symSize: 0x44 } + - { offsetInCU: 0x4D63, offset: 0x65C1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvg', symObjAddr: 0x6CC, symBinAddr: 0xE730, symSize: 0x44 } + - { offsetInCU: 0x4D82, offset: 0x65C3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvs', symObjAddr: 0x710, symBinAddr: 0xE774, symSize: 0x48 } + - { offsetInCU: 0x4DB7, offset: 0x65C71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x758, symBinAddr: 0xE7BC, symSize: 0x44 } + - { offsetInCU: 0x4DDC, offset: 0x65C96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x80C, symBinAddr: 0xE870, symSize: 0x44 } + - { offsetInCU: 0x4E01, offset: 0x65CBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x868, symBinAddr: 0xE8CC, symSize: 0x44 } + - { offsetInCU: 0x4E26, offset: 0x65CE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x96C, symBinAddr: 0xE9D0, symSize: 0x44 } + - { offsetInCU: 0x4E4B, offset: 0x65D05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvg', symObjAddr: 0x9B0, symBinAddr: 0xEA14, symSize: 0x44 } + - { offsetInCU: 0x4E6A, offset: 0x65D24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvs', symObjAddr: 0x9F4, symBinAddr: 0xEA58, symSize: 0x48 } + - { offsetInCU: 0x4E9B, offset: 0x65D55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0xA3C, symBinAddr: 0xEAA0, symSize: 0x44 } + - { offsetInCU: 0x4EC0, offset: 0x65D7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvg', symObjAddr: 0xA80, symBinAddr: 0xEAE4, symSize: 0x50 } + - { offsetInCU: 0x4EDF, offset: 0x65D99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0xADC, symBinAddr: 0xEB40, symSize: 0x44 } + - { offsetInCU: 0x4F04, offset: 0x65DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0xB20, symBinAddr: 0xEB84, symSize: 0x4 } + - { offsetInCU: 0x4F58, offset: 0x65E12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0xB24, symBinAddr: 0xEB88, symSize: 0xC0 } + - { offsetInCU: 0x4FC7, offset: 0x65E81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xBF0, symBinAddr: 0xEC54, symSize: 0xF4 } + - { offsetInCU: 0x5039, offset: 0x65EF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCF0, symBinAddr: 0xED54, symSize: 0x44 } + - { offsetInCU: 0x5058, offset: 0x65F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xD34, symBinAddr: 0xED98, symSize: 0x50 } + - { offsetInCU: 0x508D, offset: 0x65F47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD84, symBinAddr: 0xEDE8, symSize: 0x44 } + - { offsetInCU: 0x511B, offset: 0x65FD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xEE0, symBinAddr: 0xEF44, symSize: 0x214 } + - { offsetInCU: 0x519C, offset: 0x66056, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x505C, symBinAddr: 0x130C0, symSize: 0x5C } + - { offsetInCU: 0x51DB, offset: 0x66095, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0x10F4, symBinAddr: 0xF158, symSize: 0x44 } + - { offsetInCU: 0x520E, offset: 0x660C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1138, symBinAddr: 0xF19C, symSize: 0x90 } + - { offsetInCU: 0x5256, offset: 0x66110, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x11C8, symBinAddr: 0xF22C, symSize: 0x48 } + - { offsetInCU: 0x527B, offset: 0x66135, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x1210, symBinAddr: 0xF274, symSize: 0x80 } + - { offsetInCU: 0x52DD, offset: 0x66197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1290, symBinAddr: 0xF2F4, symSize: 0x20 } + - { offsetInCU: 0x52FD, offset: 0x661B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1290, symBinAddr: 0xF2F4, symSize: 0x20 } + - { offsetInCU: 0x535B, offset: 0x66215, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x12B0, symBinAddr: 0xF314, symSize: 0x20 } + - { offsetInCU: 0x5390, offset: 0x6624A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x12B0, symBinAddr: 0xF314, symSize: 0x20 } + - { offsetInCU: 0x53E6, offset: 0x662A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x12D0, symBinAddr: 0xF334, symSize: 0x34 } + - { offsetInCU: 0x5449, offset: 0x66303, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1304, symBinAddr: 0xF368, symSize: 0x20 } + - { offsetInCU: 0x546D, offset: 0x66327, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1304, symBinAddr: 0xF368, symSize: 0x20 } + - { offsetInCU: 0x5481, offset: 0x6633B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1304, symBinAddr: 0xF368, symSize: 0x20 } + - { offsetInCU: 0x54A8, offset: 0x66362, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1324, symBinAddr: 0xF388, symSize: 0x20 } + - { offsetInCU: 0x54C8, offset: 0x66382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1324, symBinAddr: 0xF388, symSize: 0x20 } + - { offsetInCU: 0x5526, offset: 0x663E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1344, symBinAddr: 0xF3A8, symSize: 0x20 } + - { offsetInCU: 0x555A, offset: 0x66414, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1344, symBinAddr: 0xF3A8, symSize: 0x20 } + - { offsetInCU: 0x55AF, offset: 0x66469, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x1364, symBinAddr: 0xF3C8, symSize: 0x34 } + - { offsetInCU: 0x5612, offset: 0x664CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x1398, symBinAddr: 0xF3FC, symSize: 0x20 } + - { offsetInCU: 0x5636, offset: 0x664F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x1398, symBinAddr: 0xF3FC, symSize: 0x20 } + - { offsetInCU: 0x564A, offset: 0x66504, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x1398, symBinAddr: 0xF3FC, symSize: 0x20 } + - { offsetInCU: 0x5671, offset: 0x6652B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13B8, symBinAddr: 0xF41C, symSize: 0x20 } + - { offsetInCU: 0x5691, offset: 0x6654B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13B8, symBinAddr: 0xF41C, symSize: 0x20 } + - { offsetInCU: 0x56EA, offset: 0x665A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x13D8, symBinAddr: 0xF43C, symSize: 0x20 } + - { offsetInCU: 0x571E, offset: 0x665D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x13D8, symBinAddr: 0xF43C, symSize: 0x20 } + - { offsetInCU: 0x5773, offset: 0x6662D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x13F8, symBinAddr: 0xF45C, symSize: 0x34 } + - { offsetInCU: 0x57D6, offset: 0x66690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x142C, symBinAddr: 0xF490, symSize: 0x20 } + - { offsetInCU: 0x57FA, offset: 0x666B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x142C, symBinAddr: 0xF490, symSize: 0x20 } + - { offsetInCU: 0x580E, offset: 0x666C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x142C, symBinAddr: 0xF490, symSize: 0x20 } + - { offsetInCU: 0x5821, offset: 0x666DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvg', symObjAddr: 0x144C, symBinAddr: 0xF4B0, symSize: 0x44 } + - { offsetInCU: 0x5840, offset: 0x666FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvs', symObjAddr: 0x1490, symBinAddr: 0xF4F4, symSize: 0x48 } + - { offsetInCU: 0x5875, offset: 0x6672F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x14D8, symBinAddr: 0xF53C, symSize: 0x44 } + - { offsetInCU: 0x589A, offset: 0x66754, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvg', symObjAddr: 0x151C, symBinAddr: 0xF580, symSize: 0x44 } + - { offsetInCU: 0x58B9, offset: 0x66773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvs', symObjAddr: 0x1560, symBinAddr: 0xF5C4, symSize: 0x48 } + - { offsetInCU: 0x58EA, offset: 0x667A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x15A8, symBinAddr: 0xF60C, symSize: 0x44 } + - { offsetInCU: 0x590F, offset: 0x667C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x15EC, symBinAddr: 0xF650, symSize: 0x44 } + - { offsetInCU: 0x592E, offset: 0x667E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1630, symBinAddr: 0xF694, symSize: 0x48 } + - { offsetInCU: 0x5963, offset: 0x6681D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1678, symBinAddr: 0xF6DC, symSize: 0x44 } + - { offsetInCU: 0x5988, offset: 0x66842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x16BC, symBinAddr: 0xF720, symSize: 0x44 } + - { offsetInCU: 0x59A7, offset: 0x66861, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1700, symBinAddr: 0xF764, symSize: 0x48 } + - { offsetInCU: 0x59DC, offset: 0x66896, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1748, symBinAddr: 0xF7AC, symSize: 0x44 } + - { offsetInCU: 0x5A01, offset: 0x668BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvg', symObjAddr: 0x178C, symBinAddr: 0xF7F0, symSize: 0x50 } + - { offsetInCU: 0x5A20, offset: 0x668DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x17E8, symBinAddr: 0xF84C, symSize: 0x44 } + - { offsetInCU: 0x5A45, offset: 0x668FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvg', symObjAddr: 0x182C, symBinAddr: 0xF890, symSize: 0x50 } + - { offsetInCU: 0x5A6A, offset: 0x66924, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x18D4, symBinAddr: 0xF938, symSize: 0x44 } + - { offsetInCU: 0x5AAE, offset: 0x66968, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x1918, symBinAddr: 0xF97C, symSize: 0x78 } + - { offsetInCU: 0x5B19, offset: 0x669D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x1990, symBinAddr: 0xF9F4, symSize: 0x7C } + - { offsetInCU: 0x5B91, offset: 0x66A4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1A0C, symBinAddr: 0xFA70, symSize: 0x90 } + - { offsetInCU: 0x5BEA, offset: 0x66AA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x1A9C, symBinAddr: 0xFB00, symSize: 0x24 } + - { offsetInCU: 0x5C0B, offset: 0x66AC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1AC0, symBinAddr: 0xFB24, symSize: 0x88 } + - { offsetInCU: 0x5C5D, offset: 0x66B17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x1B48, symBinAddr: 0xFBAC, symSize: 0x7C } + - { offsetInCU: 0x5CBE, offset: 0x66B78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1BC4, symBinAddr: 0xFC28, symSize: 0xA8 } + - { offsetInCU: 0x5D12, offset: 0x66BCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1C6C, symBinAddr: 0xFCD0, symSize: 0x80 } + - { offsetInCU: 0x5D71, offset: 0x66C2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1CEC, symBinAddr: 0xFD50, symSize: 0xC8 } + - { offsetInCU: 0x5DF3, offset: 0x66CAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1DB4, symBinAddr: 0xFE18, symSize: 0xD4 } + - { offsetInCU: 0x5E79, offset: 0x66D33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1E88, symBinAddr: 0xFEEC, symSize: 0xFC } + - { offsetInCU: 0x5F10, offset: 0x66DCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1F84, symBinAddr: 0xFFE8, symSize: 0x130 } + - { offsetInCU: 0x5FB7, offset: 0x66E71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x20B4, symBinAddr: 0x10118, symSize: 0xC0 } + - { offsetInCU: 0x6029, offset: 0x66EE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x2240, symBinAddr: 0x102A4, symSize: 0xF4 } + - { offsetInCU: 0x609E, offset: 0x66F58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2418, symBinAddr: 0x1047C, symSize: 0x48 } + - { offsetInCU: 0x60BD, offset: 0x66F77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2460, symBinAddr: 0x104C4, symSize: 0x50 } + - { offsetInCU: 0x60F4, offset: 0x66FAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x24B0, symBinAddr: 0x10514, symSize: 0x44 } + - { offsetInCU: 0x611A, offset: 0x66FD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2528, symBinAddr: 0x1058C, symSize: 0x44 } + - { offsetInCU: 0x6140, offset: 0x66FFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x25A0, symBinAddr: 0x10604, symSize: 0x44 } + - { offsetInCU: 0x6166, offset: 0x67020, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2618, symBinAddr: 0x1067C, symSize: 0x44 } + - { offsetInCU: 0x618C, offset: 0x67046, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x268C, symBinAddr: 0x106F0, symSize: 0x44 } + - { offsetInCU: 0x61B2, offset: 0x6706C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x2704, symBinAddr: 0x10768, symSize: 0x44 } + - { offsetInCU: 0x61D8, offset: 0x67092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x277C, symBinAddr: 0x107E0, symSize: 0x44 } + - { offsetInCU: 0x61FE, offset: 0x670B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x27F4, symBinAddr: 0x10858, symSize: 0x44 } + - { offsetInCU: 0x6224, offset: 0x670DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x286C, symBinAddr: 0x108D0, symSize: 0x44 } + - { offsetInCU: 0x624A, offset: 0x67104, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x28E4, symBinAddr: 0x10948, symSize: 0x44 } + - { offsetInCU: 0x6270, offset: 0x6712A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x295C, symBinAddr: 0x109C0, symSize: 0x44 } + - { offsetInCU: 0x6296, offset: 0x67150, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x29D0, symBinAddr: 0x10A34, symSize: 0x44 } + - { offsetInCU: 0x62BC, offset: 0x67176, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2A44, symBinAddr: 0x10AA8, symSize: 0x44 } + - { offsetInCU: 0x62E2, offset: 0x6719C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x2ABC, symBinAddr: 0x10B20, symSize: 0x44 } + - { offsetInCU: 0x6308, offset: 0x671C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2B30, symBinAddr: 0x10B94, symSize: 0x44 } + - { offsetInCU: 0x632E, offset: 0x671E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2C54, symBinAddr: 0x10CB8, symSize: 0x44 } + - { offsetInCU: 0x635A, offset: 0x67214, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2C98, symBinAddr: 0x10CFC, symSize: 0x70 } + - { offsetInCU: 0x640C, offset: 0x672C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2D08, symBinAddr: 0x10D6C, symSize: 0x7BC } + - { offsetInCU: 0x6726, offset: 0x675E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x34C4, symBinAddr: 0x11528, symSize: 0x178 } + - { offsetInCU: 0x686A, offset: 0x67724, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x38E8, symBinAddr: 0x1194C, symSize: 0x388 } + - { offsetInCU: 0x6A2D, offset: 0x678E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3C70, symBinAddr: 0x11CD4, symSize: 0x8 } + - { offsetInCU: 0x6B25, offset: 0x679DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3C78, symBinAddr: 0x11CDC, symSize: 0x624 } + - { offsetInCU: 0x6E13, offset: 0x67CCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x429C, symBinAddr: 0x12300, symSize: 0xC0 } + - { offsetInCU: 0x6EF6, offset: 0x67DB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x435C, symBinAddr: 0x123C0, symSize: 0xC4 } + - { offsetInCU: 0x6FA1, offset: 0x67E5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x4420, symBinAddr: 0x12484, symSize: 0x4 } + - { offsetInCU: 0x6FE3, offset: 0x67E9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x4424, symBinAddr: 0x12488, symSize: 0x100 } + - { offsetInCU: 0x70C9, offset: 0x67F83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x4524, symBinAddr: 0x12588, symSize: 0x100 } + - { offsetInCU: 0x7145, offset: 0x67FFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x4624, symBinAddr: 0x12688, symSize: 0xB0 } + - { offsetInCU: 0x71E6, offset: 0x680A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x46D4, symBinAddr: 0x12738, symSize: 0xC4 } + - { offsetInCU: 0x72DB, offset: 0x68195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4798, symBinAddr: 0x127FC, symSize: 0x8 } + - { offsetInCU: 0x72EF, offset: 0x681A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x47A0, symBinAddr: 0x12804, symSize: 0x6C } + - { offsetInCU: 0x735C, offset: 0x68216, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x480C, symBinAddr: 0x12870, symSize: 0xC4 } + - { offsetInCU: 0x74D1, offset: 0x6838B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x48D0, symBinAddr: 0x12934, symSize: 0x124 } + - { offsetInCU: 0x7656, offset: 0x68510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x49F4, symBinAddr: 0x12A58, symSize: 0xF4 } + - { offsetInCU: 0x77D6, offset: 0x68690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4AE8, symBinAddr: 0x12B4C, symSize: 0x114 } + - { offsetInCU: 0x7A63, offset: 0x6891D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4BFC, symBinAddr: 0x12C60, symSize: 0x1BC } + - { offsetInCU: 0x7C5E, offset: 0x68B18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4DB8, symBinAddr: 0x12E1C, symSize: 0xD4 } + - { offsetInCU: 0x7D82, offset: 0x68C3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x4E8C, symBinAddr: 0x12EF0, symSize: 0x10C } + - { offsetInCU: 0x7E40, offset: 0x68CFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x4F98, symBinAddr: 0x12FFC, symSize: 0x20 } + - { offsetInCU: 0x7E54, offset: 0x68D0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x4FB8, symBinAddr: 0x1301C, symSize: 0x2C } + - { offsetInCU: 0x7EB4, offset: 0x68D6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x50B8, symBinAddr: 0x1311C, symSize: 0x4 } + - { offsetInCU: 0x7F04, offset: 0x68DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x50BC, symBinAddr: 0x13120, symSize: 0x1EC } + - { offsetInCU: 0x7FF9, offset: 0x68EB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x52A8, symBinAddr: 0x1330C, symSize: 0x1AC } + - { offsetInCU: 0x80D4, offset: 0x68F8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5454, symBinAddr: 0x134B8, symSize: 0xC4 } + - { offsetInCU: 0x814F, offset: 0x69009, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x5518, symBinAddr: 0x1357C, symSize: 0x4 } + - { offsetInCU: 0x8230, offset: 0x690EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x551C, symBinAddr: 0x13580, symSize: 0x24C } + - { offsetInCU: 0x8661, offset: 0x6951B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x5768, symBinAddr: 0x137CC, symSize: 0x390 } + - { offsetInCU: 0x8888, offset: 0x69742, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5AF8, symBinAddr: 0x13B5C, symSize: 0xB0 } + - { offsetInCU: 0x8A07, offset: 0x698C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x60AC, symBinAddr: 0x14064, symSize: 0x1B8 } + - { offsetInCU: 0x8A69, offset: 0x69923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6264, symBinAddr: 0x1421C, symSize: 0xC4 } + - { offsetInCU: 0x8AD8, offset: 0x69992, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x6328, symBinAddr: 0x142E0, symSize: 0x108 } + - { offsetInCU: 0x8B79, offset: 0x69A33, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x6498, symBinAddr: 0x14450, symSize: 0x1DC } + - { offsetInCU: 0x8DC8, offset: 0x69C82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x8984, symBinAddr: 0x1684C, symSize: 0x6BC } + - { offsetInCU: 0x939B, offset: 0x6A255, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x9040, symBinAddr: 0x16F08, symSize: 0x3F8 } + - { offsetInCU: 0x96E1, offset: 0x6A59B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9690, symBinAddr: 0x17558, symSize: 0x19C } + - { offsetInCU: 0x984F, offset: 0x6A709, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x982C, symBinAddr: 0x176F4, symSize: 0x270 } + - { offsetInCU: 0x9B31, offset: 0x6A9EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0x9A9C, symBinAddr: 0x17964, symSize: 0x9B4 } + - { offsetInCU: 0xA1D3, offset: 0x6B08D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA450, symBinAddr: 0x18318, symSize: 0x6E0 } + - { offsetInCU: 0xA6EA, offset: 0x6B5A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAB30, symBinAddr: 0x189F8, symSize: 0x140 } + - { offsetInCU: 0xA83F, offset: 0x6B6F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xAC70, symBinAddr: 0x18B38, symSize: 0x660 } + - { offsetInCU: 0xACF6, offset: 0x6BBB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xB55C, symBinAddr: 0x193E0, symSize: 0x29C } + - { offsetInCU: 0x4DE, offset: 0x6C2F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x18C4, symBinAddr: 0x1B3E4, symSize: 0x2C } + - { offsetInCU: 0x7ED, offset: 0x6C604, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1920, symBinAddr: 0x1B440, symSize: 0x84 } + - { offsetInCU: 0x81C, offset: 0x6C633, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x19A4, symBinAddr: 0x1B4C4, symSize: 0x58 } + - { offsetInCU: 0x9EE, offset: 0x6C805, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x1E0C, symBinAddr: 0x1B92C, symSize: 0xB4 } + - { offsetInCU: 0xB28, offset: 0x6C93F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0x1EC0, symBinAddr: 0x1B9E0, symSize: 0x64 } + - { offsetInCU: 0xBE8, offset: 0x6C9FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x2210, symBinAddr: 0x1BCF0, symSize: 0x20 } + - { offsetInCU: 0xC17, offset: 0x6CA2E, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x2394, symBinAddr: 0x1BE30, symSize: 0x8 } + - { offsetInCU: 0xC5D, offset: 0x6CA74, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTgm5', symObjAddr: 0x0, symBinAddr: 0x19B20, symSize: 0xD0 } + - { offsetInCU: 0xEE1, offset: 0x6CCF8, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x1F24, symBinAddr: 0x1BA44, symSize: 0x2AC } + - { offsetInCU: 0x116D, offset: 0x6CF84, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTgm5Tf4g_n', symObjAddr: 0x2230, symBinAddr: 0x1BD10, symSize: 0x110 } + - { offsetInCU: 0x132E, offset: 0x6D145, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0xD0, symBinAddr: 0x19BF0, symSize: 0x70 } + - { offsetInCU: 0x1342, offset: 0x6D159, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x140, symBinAddr: 0x19C60, symSize: 0x60 } + - { offsetInCU: 0x1356, offset: 0x6D16D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x1A0, symBinAddr: 0x19CC0, symSize: 0x44 } + - { offsetInCU: 0x137B, offset: 0x6D192, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x1E4, symBinAddr: 0x19D04, symSize: 0x48 } + - { offsetInCU: 0x13B0, offset: 0x6D1C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x22C, symBinAddr: 0x19D4C, symSize: 0x44 } + - { offsetInCU: 0x13D5, offset: 0x6D1EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x270, symBinAddr: 0x19D90, symSize: 0x54 } + - { offsetInCU: 0x13F4, offset: 0x6D20B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x2C4, symBinAddr: 0x19DE4, symSize: 0x5C } + - { offsetInCU: 0x1429, offset: 0x6D240, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x320, symBinAddr: 0x19E40, symSize: 0x44 } + - { offsetInCU: 0x144E, offset: 0x6D265, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x364, symBinAddr: 0x19E84, symSize: 0x48 } + - { offsetInCU: 0x146D, offset: 0x6D284, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x3AC, symBinAddr: 0x19ECC, symSize: 0x50 } + - { offsetInCU: 0x14A2, offset: 0x6D2B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x3FC, symBinAddr: 0x19F1C, symSize: 0x44 } + - { offsetInCU: 0x14C7, offset: 0x6D2DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvg', symObjAddr: 0x440, symBinAddr: 0x19F60, symSize: 0x44 } + - { offsetInCU: 0x14EC, offset: 0x6D303, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvs', symObjAddr: 0x484, symBinAddr: 0x19FA4, symSize: 0x48 } + - { offsetInCU: 0x151D, offset: 0x6D334, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x4CC, symBinAddr: 0x19FEC, symSize: 0x44 } + - { offsetInCU: 0x1542, offset: 0x6D359, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvg', symObjAddr: 0x510, symBinAddr: 0x1A030, symSize: 0x44 } + - { offsetInCU: 0x1567, offset: 0x6D37E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvs', symObjAddr: 0x554, symBinAddr: 0x1A074, symSize: 0x48 } + - { offsetInCU: 0x1598, offset: 0x6D3AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x59C, symBinAddr: 0x1A0BC, symSize: 0x44 } + - { offsetInCU: 0x15BD, offset: 0x6D3D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x5E0, symBinAddr: 0x1A100, symSize: 0x4 } + - { offsetInCU: 0x15DE, offset: 0x6D3F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvg', symObjAddr: 0x5E4, symBinAddr: 0x1A104, symSize: 0x44 } + - { offsetInCU: 0x15FD, offset: 0x6D414, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvs', symObjAddr: 0x628, symBinAddr: 0x1A148, symSize: 0x48 } + - { offsetInCU: 0x162E, offset: 0x6D445, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x670, symBinAddr: 0x1A190, symSize: 0x44 } + - { offsetInCU: 0x1653, offset: 0x6D46A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x6CC, symBinAddr: 0x1A1EC, symSize: 0x44 } + - { offsetInCU: 0x1678, offset: 0x6D48F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x7C4, symBinAddr: 0x1A2E4, symSize: 0x44 } + - { offsetInCU: 0x169D, offset: 0x6D4B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x820, symBinAddr: 0x1A340, symSize: 0x44 } + - { offsetInCU: 0x16C2, offset: 0x6D4D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x924, symBinAddr: 0x1A444, symSize: 0x44 } + - { offsetInCU: 0x16E7, offset: 0x6D4FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x980, symBinAddr: 0x1A4A0, symSize: 0x44 } + - { offsetInCU: 0x170C, offset: 0x6D523, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0xA6C, symBinAddr: 0x1A58C, symSize: 0x44 } + - { offsetInCU: 0x178F, offset: 0x6D5A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0xAB0, symBinAddr: 0x1A5D0, symSize: 0x110 } + - { offsetInCU: 0x19C9, offset: 0x6D7E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xBC0, symBinAddr: 0x1A6E0, symSize: 0x6AC } + - { offsetInCU: 0x25A6, offset: 0x6E3BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x126C, symBinAddr: 0x1AD8C, symSize: 0x178 } + - { offsetInCU: 0x2646, offset: 0x6E45D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x13E4, symBinAddr: 0x1AF04, symSize: 0x13C } + - { offsetInCU: 0x26A7, offset: 0x6E4BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x1520, symBinAddr: 0x1B040, symSize: 0x70 } + - { offsetInCU: 0x26BB, offset: 0x6E4D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x1590, symBinAddr: 0x1B0B0, symSize: 0x2E8 } + - { offsetInCU: 0x274C, offset: 0x6E563, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x1878, symBinAddr: 0x1B398, symSize: 0x20 } + - { offsetInCU: 0x2760, offset: 0x6E577, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x1898, symBinAddr: 0x1B3B8, symSize: 0x2C } + - { offsetInCU: 0x27B9, offset: 0x6E5D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x18F0, symBinAddr: 0x1B410, symSize: 0x30 } + - { offsetInCU: 0x285A, offset: 0x6E671, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x19FC, symBinAddr: 0x1B51C, symSize: 0x218 } + - { offsetInCU: 0x2A67, offset: 0x6E87E, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1C14, symBinAddr: 0x1B734, symSize: 0xD0 } + - { offsetInCU: 0x2C78, offset: 0x6EA8F, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1CE4, symBinAddr: 0x1B804, symSize: 0x128 } + - { offsetInCU: 0x20B, offset: 0x6EEE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xD44, symBinAddr: 0x1CBA8, symSize: 0x6C0 } + - { offsetInCU: 0x5F2, offset: 0x6F2CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x1404, symBinAddr: 0x1D268, symSize: 0xA4 } + - { offsetInCU: 0x6B0, offset: 0x6F38B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x16F8, symBinAddr: 0x1D55C, symSize: 0x20 } + - { offsetInCU: 0x8B6, offset: 0x6F591, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x658, symBinAddr: 0x1C4BC, symSize: 0x20 } + - { offsetInCU: 0x8CA, offset: 0x6F5A5, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x678, symBinAddr: 0x1C4DC, symSize: 0x20 } + - { offsetInCU: 0xA79, offset: 0x6F754, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x1748, symBinAddr: 0x1D5AC, symSize: 0x78 } + - { offsetInCU: 0xAA8, offset: 0x6F783, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x17C0, symBinAddr: 0x1D624, symSize: 0x20 } + - { offsetInCU: 0xABC, offset: 0x6F797, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x17E0, symBinAddr: 0x1D644, symSize: 0x30 } + - { offsetInCU: 0xAD0, offset: 0x6F7AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1810, symBinAddr: 0x1D674, symSize: 0x4 } + - { offsetInCU: 0xAE4, offset: 0x6F7BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1834, symBinAddr: 0x1D678, symSize: 0x40 } + - { offsetInCU: 0xAF8, offset: 0x6F7D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x1874, symBinAddr: 0x1D6B8, symSize: 0x30 } + - { offsetInCU: 0xB0C, offset: 0x6F7E7, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x18A4, symBinAddr: 0x1D6E8, symSize: 0x168 } + - { offsetInCU: 0xB20, offset: 0x6F7FB, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1A0C, symBinAddr: 0x1D850, symSize: 0x14 } + - { offsetInCU: 0xB34, offset: 0x6F80F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1A20, symBinAddr: 0x1D864, symSize: 0x40 } + - { offsetInCU: 0xB48, offset: 0x6F823, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1A60, symBinAddr: 0x1D8A4, symSize: 0x48 } + - { offsetInCU: 0xB5C, offset: 0x6F837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1AA8, symBinAddr: 0x1D8EC, symSize: 0x4C } + - { offsetInCU: 0xB70, offset: 0x6F84B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1AF4, symBinAddr: 0x1D938, symSize: 0x10 } + - { offsetInCU: 0xDA5, offset: 0x6FA80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x248C, symBinAddr: 0x1E2D0, symSize: 0x840 } + - { offsetInCU: 0x12CA, offset: 0x6FFA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2D00, symBinAddr: 0x1EB44, symSize: 0xC } + - { offsetInCU: 0x12E9, offset: 0x6FFC4, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x2D1C, symBinAddr: 0x1EB60, symSize: 0x20 } + - { offsetInCU: 0x1312, offset: 0x6FFED, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2D3C, symBinAddr: 0x1EB80, symSize: 0x10 } + - { offsetInCU: 0x1326, offset: 0x70001, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2D4C, symBinAddr: 0x1EB90, symSize: 0x8 } + - { offsetInCU: 0x133A, offset: 0x70015, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x2D78, symBinAddr: 0x1EBBC, symSize: 0x18 } + - { offsetInCU: 0x138E, offset: 0x70069, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x2E60, symBinAddr: 0x1EBFC, symSize: 0x78 } + - { offsetInCU: 0x1408, offset: 0x700E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x2ED8, symBinAddr: 0x1EC74, symSize: 0x590 } + - { offsetInCU: 0x15EF, offset: 0x702CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x3468, symBinAddr: 0x1F204, symSize: 0x55C } + - { offsetInCU: 0x17B9, offset: 0x70494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x39C4, symBinAddr: 0x1F760, symSize: 0x44 } + - { offsetInCU: 0x17CD, offset: 0x704A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0x3A08, symBinAddr: 0x1F7A4, symSize: 0x18 } + - { offsetInCU: 0x17E1, offset: 0x704BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3A20, symBinAddr: 0x1F7BC, symSize: 0x8 } + - { offsetInCU: 0x17F5, offset: 0x704D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3A4C, symBinAddr: 0x1F7E8, symSize: 0x20 } + - { offsetInCU: 0x182E, offset: 0x70509, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3A6C, symBinAddr: 0x1F808, symSize: 0x48 } + - { offsetInCU: 0x1857, offset: 0x70532, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3AB4, symBinAddr: 0x1F850, symSize: 0x48 } + - { offsetInCU: 0x1872, offset: 0x7054D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3AFC, symBinAddr: 0x1F898, symSize: 0x24 } + - { offsetInCU: 0x18A2, offset: 0x7057D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3B48, symBinAddr: 0x1F8BC, symSize: 0x38 } + - { offsetInCU: 0x18CB, offset: 0x705A6, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3B80, symBinAddr: 0x1F8F4, symSize: 0x3C } + - { offsetInCU: 0x18DF, offset: 0x705BA, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3BC4, symBinAddr: 0x1F938, symSize: 0x3C } + - { offsetInCU: 0x18F3, offset: 0x705CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3C80, symBinAddr: 0x1F9F4, symSize: 0x24 } + - { offsetInCU: 0x1907, offset: 0x705E2, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3CA4, symBinAddr: 0x1FA18, symSize: 0x178 } + - { offsetInCU: 0x1B0F, offset: 0x707EA, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x3E1C, symBinAddr: 0x1FB90, symSize: 0x40 } + - { offsetInCU: 0x1B23, offset: 0x707FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x3EDC, symBinAddr: 0x1FC50, symSize: 0x44 } + - { offsetInCU: 0x1B37, offset: 0x70812, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x4000, symBinAddr: 0x1FD74, symSize: 0xC } + - { offsetInCU: 0x1B4B, offset: 0x70826, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x4088, symBinAddr: 0x1FD90, symSize: 0x18 } + - { offsetInCU: 0x1FB2, offset: 0x70C8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1BE64, symSize: 0x328 } + - { offsetInCU: 0x2096, offset: 0x70D71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x328, symBinAddr: 0x1C18C, symSize: 0x330 } + - { offsetInCU: 0x256A, offset: 0x71245, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x698, symBinAddr: 0x1C4FC, symSize: 0xA4 } + - { offsetInCU: 0x2710, offset: 0x713EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x73C, symBinAddr: 0x1C5A0, symSize: 0x47C } + - { offsetInCU: 0x290D, offset: 0x715E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xBB8, symBinAddr: 0x1CA1C, symSize: 0x138 } + - { offsetInCU: 0x2BD6, offset: 0x718B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x14A8, symBinAddr: 0x1D30C, symSize: 0x250 } + - { offsetInCU: 0x2C25, offset: 0x71900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1718, symBinAddr: 0x1D57C, symSize: 0x30 } + - { offsetInCU: 0x2C64, offset: 0x7193F, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1B04, symBinAddr: 0x1D948, symSize: 0xA0 } + - { offsetInCU: 0x2DD1, offset: 0x71AAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1BA4, symBinAddr: 0x1D9E8, symSize: 0x264 } + - { offsetInCU: 0x2FD1, offset: 0x71CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x1E08, symBinAddr: 0x1DC4C, symSize: 0x214 } + - { offsetInCU: 0x30DE, offset: 0x71DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x201C, symBinAddr: 0x1DE60, symSize: 0x470 } + - { offsetInCU: 0x34C8, offset: 0x721A3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x2E38, symBinAddr: 0x1EBD4, symSize: 0x14 } + - { offsetInCU: 0x34F8, offset: 0x721D3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x2E4C, symBinAddr: 0x1EBE8, symSize: 0x14 } + - { offsetInCU: 0x27, offset: 0x722A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x1FDDC, symSize: 0x40 } + - { offsetInCU: 0x4B, offset: 0x722CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x4968, symBinAddr: 0x62270, symSize: 0x0 } + - { offsetInCU: 0xF3, offset: 0x72373, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x318, symBinAddr: 0x200F4, symSize: 0x4C } + - { offsetInCU: 0x17D, offset: 0x723FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x1FDDC, symSize: 0x40 } + - { offsetInCU: 0x1CA, offset: 0x7244A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x10C, symBinAddr: 0x1FEE8, symSize: 0x28 } + - { offsetInCU: 0x1FB, offset: 0x7247B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x134, symBinAddr: 0x1FF10, symSize: 0xC } + - { offsetInCU: 0x217, offset: 0x72497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x4E0, symBinAddr: 0x202BC, symSize: 0x10 } + - { offsetInCU: 0x26E, offset: 0x724EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x140, symBinAddr: 0x1FF1C, symSize: 0x2C } + - { offsetInCU: 0x334, offset: 0x725B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x4DC, symBinAddr: 0x202B8, symSize: 0x4 } + - { offsetInCU: 0x35F, offset: 0x725DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x4F0, symBinAddr: 0x202CC, symSize: 0x20 } + - { offsetInCU: 0x373, offset: 0x725F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x550, symBinAddr: 0x202EC, symSize: 0x4 } + - { offsetInCU: 0x387, offset: 0x72607, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x554, symBinAddr: 0x202F0, symSize: 0x44 } + - { offsetInCU: 0x39B, offset: 0x7261B, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x598, symBinAddr: 0x20334, symSize: 0xC } + - { offsetInCU: 0x3AF, offset: 0x7262F, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x5A4, symBinAddr: 0x20340, symSize: 0x4 } + - { offsetInCU: 0x3C3, offset: 0x72643, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x5A8, symBinAddr: 0x20344, symSize: 0x90 } + - { offsetInCU: 0x3D7, offset: 0x72657, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x638, symBinAddr: 0x203D4, symSize: 0xBC } + - { offsetInCU: 0x3EB, offset: 0x7266B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6F4, symBinAddr: 0x20490, symSize: 0x8 } + - { offsetInCU: 0x3FF, offset: 0x7267F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6FC, symBinAddr: 0x20498, symSize: 0x4 } + - { offsetInCU: 0x413, offset: 0x72693, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x700, symBinAddr: 0x2049C, symSize: 0x8 } + - { offsetInCU: 0x427, offset: 0x726A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x708, symBinAddr: 0x204A4, symSize: 0x10 } + - { offsetInCU: 0x464, offset: 0x726E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x4C, symBinAddr: 0x1FE28, symSize: 0x14 } + - { offsetInCU: 0x514, offset: 0x72794, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x60, symBinAddr: 0x1FE3C, symSize: 0x44 } + - { offsetInCU: 0x5C3, offset: 0x72843, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA4, symBinAddr: 0x1FE80, symSize: 0x28 } + - { offsetInCU: 0x616, offset: 0x72896, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xCC, symBinAddr: 0x1FEA8, symSize: 0x40 } + - { offsetInCU: 0x7A4, offset: 0x72A24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x40, symBinAddr: 0x1FE1C, symSize: 0x4 } + - { offsetInCU: 0x7B8, offset: 0x72A38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x44, symBinAddr: 0x1FE20, symSize: 0x8 } + - { offsetInCU: 0x817, offset: 0x72A97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x16C, symBinAddr: 0x1FF48, symSize: 0x20 } + - { offsetInCU: 0x831, offset: 0x72AB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x18C, symBinAddr: 0x1FF68, symSize: 0x68 } + - { offsetInCU: 0x85E, offset: 0x72ADE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1F4, symBinAddr: 0x1FFD0, symSize: 0x74 } + - { offsetInCU: 0x89B, offset: 0x72B1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x268, symBinAddr: 0x20044, symSize: 0x6C } + - { offsetInCU: 0x8C8, offset: 0x72B48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2D4, symBinAddr: 0x200B0, symSize: 0x4 } + - { offsetInCU: 0x8E9, offset: 0x72B69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2D8, symBinAddr: 0x200B4, symSize: 0x40 } + - { offsetInCU: 0x985, offset: 0x72C05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x364, symBinAddr: 0x20140, symSize: 0x148 } + - { offsetInCU: 0xB0E, offset: 0x72D8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x4AC, symBinAddr: 0x20288, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x72DEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x204B4, symSize: 0x120 } + - { offsetInCU: 0x2AE, offset: 0x73073, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0x980, symBinAddr: 0x20E34, symSize: 0x2C } + - { offsetInCU: 0x3BD, offset: 0x73182, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0x9DC, symBinAddr: 0x20E90, symSize: 0x3C } + - { offsetInCU: 0x3EC, offset: 0x731B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xA18, symBinAddr: 0x20ECC, symSize: 0x58 } + - { offsetInCU: 0x473, offset: 0x73238, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xC88, symBinAddr: 0x2113C, symSize: 0x20 } + - { offsetInCU: 0x6C5, offset: 0x7348A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x204B4, symSize: 0x120 } + - { offsetInCU: 0x78C, offset: 0x73551, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x120, symBinAddr: 0x205D4, symSize: 0xF0 } + - { offsetInCU: 0x7D1, offset: 0x73596, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x210, symBinAddr: 0x206C4, symSize: 0x44 } + - { offsetInCU: 0x7F6, offset: 0x735BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x254, symBinAddr: 0x20708, symSize: 0x48 } + - { offsetInCU: 0x82B, offset: 0x735F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x29C, symBinAddr: 0x20750, symSize: 0x44 } + - { offsetInCU: 0x850, offset: 0x73615, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x2E0, symBinAddr: 0x20794, symSize: 0x54 } + - { offsetInCU: 0x86F, offset: 0x73634, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x334, symBinAddr: 0x207E8, symSize: 0x5C } + - { offsetInCU: 0x8A4, offset: 0x73669, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x390, symBinAddr: 0x20844, symSize: 0x44 } + - { offsetInCU: 0x8C9, offset: 0x7368E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x3D4, symBinAddr: 0x20888, symSize: 0x48 } + - { offsetInCU: 0x8E8, offset: 0x736AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x41C, symBinAddr: 0x208D0, symSize: 0x50 } + - { offsetInCU: 0x91D, offset: 0x736E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x46C, symBinAddr: 0x20920, symSize: 0x44 } + - { offsetInCU: 0x942, offset: 0x73707, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvg', symObjAddr: 0x4B0, symBinAddr: 0x20964, symSize: 0x44 } + - { offsetInCU: 0x967, offset: 0x7372C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvs', symObjAddr: 0x4F4, symBinAddr: 0x209A8, symSize: 0x48 } + - { offsetInCU: 0x998, offset: 0x7375D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x53C, symBinAddr: 0x209F0, symSize: 0x44 } + - { offsetInCU: 0x9BD, offset: 0x73782, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvg', symObjAddr: 0x580, symBinAddr: 0x20A34, symSize: 0x44 } + - { offsetInCU: 0x9E2, offset: 0x737A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvs', symObjAddr: 0x5C4, symBinAddr: 0x20A78, symSize: 0x48 } + - { offsetInCU: 0xA13, offset: 0x737D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x60C, symBinAddr: 0x20AC0, symSize: 0x44 } + - { offsetInCU: 0xA38, offset: 0x737FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x650, symBinAddr: 0x20B04, symSize: 0x4 } + - { offsetInCU: 0xAB2, offset: 0x73877, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x654, symBinAddr: 0x20B08, symSize: 0x110 } + - { offsetInCU: 0xBB4, offset: 0x73979, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x764, symBinAddr: 0x20C18, symSize: 0x104 } + - { offsetInCU: 0xC36, offset: 0x739FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x868, symBinAddr: 0x20D1C, symSize: 0xCC } + - { offsetInCU: 0xC79, offset: 0x73A3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x934, symBinAddr: 0x20DE8, symSize: 0x20 } + - { offsetInCU: 0xC8D, offset: 0x73A52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x954, symBinAddr: 0x20E08, symSize: 0x2C } + - { offsetInCU: 0xCE6, offset: 0x73AAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0x9AC, symBinAddr: 0x20E60, symSize: 0x30 } + - { offsetInCU: 0xD82, offset: 0x73B47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xA70, symBinAddr: 0x20F24, symSize: 0x218 } + - { offsetInCU: 0x27, offset: 0x73D52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x2116C, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x73DB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x104, symBinAddr: 0x21270, symSize: 0x28 } + - { offsetInCU: 0xB8, offset: 0x73DE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x12C, symBinAddr: 0x21298, symSize: 0x18 } + - { offsetInCU: 0xE1, offset: 0x73E0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x754, symBinAddr: 0x218C0, symSize: 0x2C } + - { offsetInCU: 0x180, offset: 0x73EAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x248, symBinAddr: 0x213B4, symSize: 0x28 } + - { offsetInCU: 0x1B1, offset: 0x73EDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x213DC, symSize: 0x18 } + - { offsetInCU: 0x1DA, offset: 0x73F05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x780, symBinAddr: 0x218EC, symSize: 0x58 } + - { offsetInCU: 0x305, offset: 0x74030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x288, symBinAddr: 0x213F4, symSize: 0x220 } + - { offsetInCU: 0x5E2, offset: 0x7430D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x4B8, symBinAddr: 0x21624, symSize: 0x11C } + - { offsetInCU: 0x872, offset: 0x7459D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x5D4, symBinAddr: 0x21740, symSize: 0xC0 } + - { offsetInCU: 0x9BA, offset: 0x746E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x694, symBinAddr: 0x21800, symSize: 0xC0 } + - { offsetInCU: 0xAE7, offset: 0x74812, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x7D8, symBinAddr: 0x21944, symSize: 0x4 } + - { offsetInCU: 0xAFB, offset: 0x74826, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x7DC, symBinAddr: 0x21948, symSize: 0x44 } + - { offsetInCU: 0xB0F, offset: 0x7483A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x820, symBinAddr: 0x2198C, symSize: 0x4 } + - { offsetInCU: 0xB23, offset: 0x7484E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x824, symBinAddr: 0x21990, symSize: 0x44 } + - { offsetInCU: 0xB37, offset: 0x74862, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x878, symBinAddr: 0x219D4, symSize: 0x90 } + - { offsetInCU: 0xB4B, offset: 0x74876, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x908, symBinAddr: 0x21A64, symSize: 0xBC } + - { offsetInCU: 0xB5F, offset: 0x7488A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0x9C4, symBinAddr: 0x21B20, symSize: 0x8 } + - { offsetInCU: 0xB73, offset: 0x7489E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0x9CC, symBinAddr: 0x21B28, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x748B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0x9D0, symBinAddr: 0x21B2C, symSize: 0x8 } + - { offsetInCU: 0xB9B, offset: 0x748C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0x9D8, symBinAddr: 0x21B34, symSize: 0x10 } + - { offsetInCU: 0xBAF, offset: 0x748DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0x9E8, symBinAddr: 0x21B44, symSize: 0x90 } + - { offsetInCU: 0xBC3, offset: 0x748EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xA78, symBinAddr: 0x21BD4, symSize: 0xBC } + - { offsetInCU: 0xBD7, offset: 0x74902, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xB34, symBinAddr: 0x21C90, symSize: 0x4 } + - { offsetInCU: 0xBEB, offset: 0x74916, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xB38, symBinAddr: 0x21C94, symSize: 0x10 } + - { offsetInCU: 0xBFF, offset: 0x7492A, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xB88, symBinAddr: 0x21CA4, symSize: 0x4C } + - { offsetInCU: 0xC3C, offset: 0x74967, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x18, symBinAddr: 0x21184, symSize: 0x24 } + - { offsetInCU: 0xD36, offset: 0x74A61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x3C, symBinAddr: 0x211A8, symSize: 0x4C } + - { offsetInCU: 0xE0E, offset: 0x74B39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x211F4, symSize: 0x34 } + - { offsetInCU: 0xE8A, offset: 0x74BB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBC, symBinAddr: 0x21228, symSize: 0x48 } + - { offsetInCU: 0xF45, offset: 0x74C70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C, symBinAddr: 0x212C8, symSize: 0x24 } + - { offsetInCU: 0x1039, offset: 0x74D64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x180, symBinAddr: 0x212EC, symSize: 0x4C } + - { offsetInCU: 0x1111, offset: 0x74E3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CC, symBinAddr: 0x21338, symSize: 0x34 } + - { offsetInCU: 0x118D, offset: 0x74EB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x2136C, symSize: 0x48 } + - { offsetInCU: 0x13AB, offset: 0x750D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x2116C, symSize: 0x14 } + - { offsetInCU: 0x13D0, offset: 0x750FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x14, symBinAddr: 0x21180, symSize: 0x4 } + - { offsetInCU: 0x142A, offset: 0x75155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x144, symBinAddr: 0x212B0, symSize: 0x4 } + - { offsetInCU: 0x143E, offset: 0x75169, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x148, symBinAddr: 0x212B4, symSize: 0x14 } + - { offsetInCU: 0x3C4, offset: 0x75633, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1010, symBinAddr: 0x22D08, symSize: 0x20 } + - { offsetInCU: 0x3D8, offset: 0x75647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1030, symBinAddr: 0x22D28, symSize: 0x44 } + - { offsetInCU: 0x3EC, offset: 0x7565B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x10F8, symBinAddr: 0x22D6C, symSize: 0x34 } + - { offsetInCU: 0x400, offset: 0x7566F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x112C, symBinAddr: 0x22DA0, symSize: 0x50 } + - { offsetInCU: 0x414, offset: 0x75683, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x117C, symBinAddr: 0x22DF0, symSize: 0x34 } + - { offsetInCU: 0x428, offset: 0x75697, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x11B0, symBinAddr: 0x22E24, symSize: 0x5C } + - { offsetInCU: 0x43C, offset: 0x756AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x12C0, symBinAddr: 0x22F34, symSize: 0x50 } + - { offsetInCU: 0x450, offset: 0x756BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1310, symBinAddr: 0x22F84, symSize: 0x80 } + - { offsetInCU: 0x464, offset: 0x756D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x1390, symBinAddr: 0x23004, symSize: 0x24 } + - { offsetInCU: 0x6AB, offset: 0x7591A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x21CF8, symSize: 0x164 } + - { offsetInCU: 0x82A, offset: 0x75A99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x164, symBinAddr: 0x21E5C, symSize: 0x1CC } + - { offsetInCU: 0xAE5, offset: 0x75D54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x340, symBinAddr: 0x22038, symSize: 0xC9C } + - { offsetInCU: 0x10BC, offset: 0x7632B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0xFDC, symBinAddr: 0x22CD4, symSize: 0x34 } + - { offsetInCU: 0x78, offset: 0x76420, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x84, symBinAddr: 0x230AC, symSize: 0x34 } + - { offsetInCU: 0xA9, offset: 0x76451, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xB8, symBinAddr: 0x230E0, symSize: 0xC } + - { offsetInCU: 0x12A, offset: 0x764D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xDC, symBinAddr: 0x23104, symSize: 0x30 } + - { offsetInCU: 0x15B, offset: 0x76503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x23478, symSize: 0x4C } + - { offsetInCU: 0x1C0, offset: 0x76568, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x23174, symSize: 0x30 } + - { offsetInCU: 0x1F1, offset: 0x76599, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x234C8, symSize: 0x4C } + - { offsetInCU: 0x256, offset: 0x765FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x1B4, symBinAddr: 0x231DC, symSize: 0x30 } + - { offsetInCU: 0x303, offset: 0x766AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x248, symBinAddr: 0x23270, symSize: 0x30 } + - { offsetInCU: 0x36E, offset: 0x76716, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x290, symBinAddr: 0x232B8, symSize: 0x30 } + - { offsetInCU: 0x39F, offset: 0x76747, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x538, symBinAddr: 0x23560, symSize: 0x58 } + - { offsetInCU: 0x404, offset: 0x767AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2D8, symBinAddr: 0x23300, symSize: 0x30 } + - { offsetInCU: 0x435, offset: 0x767DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x590, symBinAddr: 0x235B8, symSize: 0x4C } + - { offsetInCU: 0x49A, offset: 0x76842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x33C, symBinAddr: 0x23364, symSize: 0x20 } + - { offsetInCU: 0x505, offset: 0x768AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x420, symBinAddr: 0x23448, symSize: 0x30 } + - { offsetInCU: 0x537, offset: 0x768DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0x5DC, symBinAddr: 0x23604, symSize: 0x4 } + - { offsetInCU: 0x54B, offset: 0x768F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0x5E0, symBinAddr: 0x23608, symSize: 0x44 } + - { offsetInCU: 0x55F, offset: 0x76907, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x624, symBinAddr: 0x2364C, symSize: 0x4 } + - { offsetInCU: 0x573, offset: 0x7691B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x628, symBinAddr: 0x23650, symSize: 0x44 } + - { offsetInCU: 0x587, offset: 0x7692F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x66C, symBinAddr: 0x23694, symSize: 0x4 } + - { offsetInCU: 0x59B, offset: 0x76943, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x23698, symSize: 0x44 } + - { offsetInCU: 0x5AF, offset: 0x76957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x6B4, symBinAddr: 0x236DC, symSize: 0x4 } + - { offsetInCU: 0x5C3, offset: 0x7696B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x6B8, symBinAddr: 0x236E0, symSize: 0x44 } + - { offsetInCU: 0x5D7, offset: 0x7697F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x6FC, symBinAddr: 0x23724, symSize: 0x4 } + - { offsetInCU: 0x5EB, offset: 0x76993, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x700, symBinAddr: 0x23728, symSize: 0x44 } + - { offsetInCU: 0x5FF, offset: 0x769A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x744, symBinAddr: 0x2376C, symSize: 0x4 } + - { offsetInCU: 0x613, offset: 0x769BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x748, symBinAddr: 0x23770, symSize: 0x44 } + - { offsetInCU: 0x627, offset: 0x769CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x78C, symBinAddr: 0x237B4, symSize: 0x4 } + - { offsetInCU: 0x63B, offset: 0x769E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x790, symBinAddr: 0x237B8, symSize: 0x44 } + - { offsetInCU: 0x64F, offset: 0x769F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x7D4, symBinAddr: 0x237FC, symSize: 0x4 } + - { offsetInCU: 0x663, offset: 0x76A0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x7D8, symBinAddr: 0x23800, symSize: 0x44 } + - { offsetInCU: 0x677, offset: 0x76A1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x81C, symBinAddr: 0x23844, symSize: 0x4 } + - { offsetInCU: 0x68B, offset: 0x76A33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x820, symBinAddr: 0x23848, symSize: 0x44 } + - { offsetInCU: 0x69F, offset: 0x76A47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x864, symBinAddr: 0x2388C, symSize: 0x4 } + - { offsetInCU: 0x6B3, offset: 0x76A5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x868, symBinAddr: 0x23890, symSize: 0x44 } + - { offsetInCU: 0x6C7, offset: 0x76A6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x8AC, symBinAddr: 0x238D4, symSize: 0x4 } + - { offsetInCU: 0x6DB, offset: 0x76A83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x8B0, symBinAddr: 0x238D8, symSize: 0x44 } + - { offsetInCU: 0x6EF, offset: 0x76A97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x8F4, symBinAddr: 0x2391C, symSize: 0x10 } + - { offsetInCU: 0x703, offset: 0x76AAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x904, symBinAddr: 0x2392C, symSize: 0x10 } + - { offsetInCU: 0x717, offset: 0x76ABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x914, symBinAddr: 0x2393C, symSize: 0x10 } + - { offsetInCU: 0x72B, offset: 0x76AD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x924, symBinAddr: 0x2394C, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x76AE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x934, symBinAddr: 0x2395C, symSize: 0x10 } + - { offsetInCU: 0x753, offset: 0x76AFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x944, symBinAddr: 0x2396C, symSize: 0x10 } + - { offsetInCU: 0x767, offset: 0x76B0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x954, symBinAddr: 0x2397C, symSize: 0x10 } + - { offsetInCU: 0x77B, offset: 0x76B23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x964, symBinAddr: 0x2398C, symSize: 0x10 } + - { offsetInCU: 0x78F, offset: 0x76B37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x974, symBinAddr: 0x2399C, symSize: 0x10 } + - { offsetInCU: 0x7A3, offset: 0x76B4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x984, symBinAddr: 0x239AC, symSize: 0x10 } + - { offsetInCU: 0x7B7, offset: 0x76B5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x994, symBinAddr: 0x239BC, symSize: 0x10 } + - { offsetInCU: 0x7F4, offset: 0x76B9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x23068, symSize: 0x14 } + - { offsetInCU: 0x859, offset: 0x76C01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x58, symBinAddr: 0x23080, symSize: 0x28 } + - { offsetInCU: 0x96F, offset: 0x76D17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x23028, symSize: 0x3C } + - { offsetInCU: 0x98E, offset: 0x76D36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3C, symBinAddr: 0x23064, symSize: 0x4 } + - { offsetInCU: 0x9DA, offset: 0x76D82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0xD0, symBinAddr: 0x230F8, symSize: 0x4 } + - { offsetInCU: 0xA08, offset: 0x76DB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x140, symBinAddr: 0x23168, symSize: 0x4 } + - { offsetInCU: 0xA36, offset: 0x76DDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1A8, symBinAddr: 0x231D0, symSize: 0x4 } + - { offsetInCU: 0xA64, offset: 0x76E0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1E8, symBinAddr: 0x23210, symSize: 0x4 } + - { offsetInCU: 0xA85, offset: 0x76E2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1F8, symBinAddr: 0x23220, symSize: 0x4 } + - { offsetInCU: 0xAA6, offset: 0x76E4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x23C, symBinAddr: 0x23264, symSize: 0x4 } + - { offsetInCU: 0xADF, offset: 0x76E87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x284, symBinAddr: 0x232AC, symSize: 0x4 } + - { offsetInCU: 0xB0D, offset: 0x76EB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2CC, symBinAddr: 0x232F4, symSize: 0x4 } + - { offsetInCU: 0xB41, offset: 0x76EE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x308, symBinAddr: 0x23330, symSize: 0x28 } + - { offsetInCU: 0xB60, offset: 0x76F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x330, symBinAddr: 0x23358, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x76F41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x35C, symBinAddr: 0x23384, symSize: 0x34 } + - { offsetInCU: 0xBB8, offset: 0x76F60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x390, symBinAddr: 0x233B8, symSize: 0x4 } + - { offsetInCU: 0x1AD, offset: 0x77177, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x460, symBinAddr: 0x23EAC, symSize: 0x20 } + - { offsetInCU: 0x210, offset: 0x771DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x720, symBinAddr: 0x2416C, symSize: 0x48 } + - { offsetInCU: 0x24D, offset: 0x77217, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x768, symBinAddr: 0x241B4, symSize: 0x4C } + - { offsetInCU: 0x28A, offset: 0x77254, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x7B4, symBinAddr: 0x24200, symSize: 0x48 } + - { offsetInCU: 0x2C8, offset: 0x77292, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x440, symBinAddr: 0x23E8C, symSize: 0x20 } + - { offsetInCU: 0x2DC, offset: 0x772A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x4B0, symBinAddr: 0x23EFC, symSize: 0x48 } + - { offsetInCU: 0x3E8, offset: 0x773B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x7FC, symBinAddr: 0x24248, symSize: 0x20 } + - { offsetInCU: 0x404, offset: 0x773CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x81C, symBinAddr: 0x24268, symSize: 0x24 } + - { offsetInCU: 0x457, offset: 0x77421, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x840, symBinAddr: 0x2428C, symSize: 0x20 } + - { offsetInCU: 0x47A, offset: 0x77444, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x860, symBinAddr: 0x242AC, symSize: 0x1C } + - { offsetInCU: 0x4B7, offset: 0x77481, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x87C, symBinAddr: 0x242C8, symSize: 0x24 } + - { offsetInCU: 0x50D, offset: 0x774D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x8A0, symBinAddr: 0x242EC, symSize: 0x68 } + - { offsetInCU: 0x6DE, offset: 0x776A8, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xEE8, symBinAddr: 0x24914, symSize: 0x2C } + - { offsetInCU: 0x6F6, offset: 0x776C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xF14, symBinAddr: 0x24940, symSize: 0x84 } + - { offsetInCU: 0x742, offset: 0x7770C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0x1060, symBinAddr: 0x24A8C, symSize: 0x1C0 } + - { offsetInCU: 0x7D6, offset: 0x777A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1224, symBinAddr: 0x24C50, symSize: 0x4C } + - { offsetInCU: 0x826, offset: 0x777F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x1278, symBinAddr: 0x24CA4, symSize: 0x54 } + - { offsetInCU: 0x87D, offset: 0x77847, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x1388, symBinAddr: 0x24DB4, symSize: 0x158 } + - { offsetInCU: 0x8E5, offset: 0x778AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x14E8, symBinAddr: 0x24F14, symSize: 0x68 } + - { offsetInCU: 0x96B, offset: 0x77935, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x18C4, symBinAddr: 0x252A4, symSize: 0x3C } + - { offsetInCU: 0x97F, offset: 0x77949, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x1924, symBinAddr: 0x25304, symSize: 0x8 } + - { offsetInCU: 0x993, offset: 0x7795D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x192C, symBinAddr: 0x2530C, symSize: 0x10 } + - { offsetInCU: 0x9A7, offset: 0x77971, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x193C, symBinAddr: 0x2531C, symSize: 0x8 } + - { offsetInCU: 0xA25, offset: 0x779EF, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1DA8, symBinAddr: 0x25744, symSize: 0x14 } + - { offsetInCU: 0xA4E, offset: 0x77A18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1DBC, symBinAddr: 0x25758, symSize: 0x24 } + - { offsetInCU: 0xCE0, offset: 0x77CAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x23A4C, symSize: 0x20 } + - { offsetInCU: 0xCF4, offset: 0x77CBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvg', symObjAddr: 0x20, symBinAddr: 0x23A6C, symSize: 0x44 } + - { offsetInCU: 0xD19, offset: 0x77CE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvs', symObjAddr: 0x64, symBinAddr: 0x23AB0, symSize: 0x48 } + - { offsetInCU: 0xD4A, offset: 0x77D14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0xAC, symBinAddr: 0x23AF8, symSize: 0x44 } + - { offsetInCU: 0xD6F, offset: 0x77D39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvg', symObjAddr: 0xF0, symBinAddr: 0x23B3C, symSize: 0x44 } + - { offsetInCU: 0xD8E, offset: 0x77D58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvs', symObjAddr: 0x134, symBinAddr: 0x23B80, symSize: 0x48 } + - { offsetInCU: 0xDB3, offset: 0x77D7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x17C, symBinAddr: 0x23BC8, symSize: 0x44 } + - { offsetInCU: 0xDD2, offset: 0x77D9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1C0, symBinAddr: 0x23C0C, symSize: 0x48 } + - { offsetInCU: 0xDF1, offset: 0x77DBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x208, symBinAddr: 0x23C54, symSize: 0x50 } + - { offsetInCU: 0xE26, offset: 0x77DF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x258, symBinAddr: 0x23CA4, symSize: 0x44 } + - { offsetInCU: 0xE4B, offset: 0x77E15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x29C, symBinAddr: 0x23CE8, symSize: 0x4 } + - { offsetInCU: 0xE6C, offset: 0x77E36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvg', symObjAddr: 0x2A0, symBinAddr: 0x23CEC, symSize: 0x44 } + - { offsetInCU: 0xE8B, offset: 0x77E55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvs', symObjAddr: 0x2E4, symBinAddr: 0x23D30, symSize: 0x48 } + - { offsetInCU: 0xEBC, offset: 0x77E86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x32C, symBinAddr: 0x23D78, symSize: 0x44 } + - { offsetInCU: 0xEEF, offset: 0x77EB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x370, symBinAddr: 0x23DBC, symSize: 0xD0 } + - { offsetInCU: 0xF36, offset: 0x77F00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x480, symBinAddr: 0x23ECC, symSize: 0x30 } + - { offsetInCU: 0xF97, offset: 0x77F61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x4F8, symBinAddr: 0x23F44, symSize: 0x88 } + - { offsetInCU: 0x1022, offset: 0x77FEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x580, symBinAddr: 0x23FCC, symSize: 0x18 } + - { offsetInCU: 0x1053, offset: 0x7801D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x598, symBinAddr: 0x23FE4, symSize: 0xEC } + - { offsetInCU: 0x10A8, offset: 0x78072, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x684, symBinAddr: 0x240D0, symSize: 0x18 } + - { offsetInCU: 0x10C5, offset: 0x7808F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x69C, symBinAddr: 0x240E8, symSize: 0x20 } + - { offsetInCU: 0x10FF, offset: 0x780C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x6BC, symBinAddr: 0x24108, symSize: 0x64 } + - { offsetInCU: 0x1377, offset: 0x78341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x908, symBinAddr: 0x24354, symSize: 0x478 } + - { offsetInCU: 0x164D, offset: 0x78617, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xDA0, symBinAddr: 0x247CC, symSize: 0x148 } + - { offsetInCU: 0x1729, offset: 0x786F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xF98, symBinAddr: 0x249C4, symSize: 0xC8 } + - { offsetInCU: 0x17F3, offset: 0x787BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1220, symBinAddr: 0x24C4C, symSize: 0x4 } + - { offsetInCU: 0x180E, offset: 0x787D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x1270, symBinAddr: 0x24C9C, symSize: 0x8 } + - { offsetInCU: 0x1829, offset: 0x787F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x12CC, symBinAddr: 0x24CF8, symSize: 0xBC } + - { offsetInCU: 0x18B0, offset: 0x7887A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x14E0, symBinAddr: 0x24F0C, symSize: 0x8 } + - { offsetInCU: 0x18E0, offset: 0x788AA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x1550, symBinAddr: 0x24F7C, symSize: 0x4C } + - { offsetInCU: 0x1979, offset: 0x78943, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x1944, symBinAddr: 0x25324, symSize: 0x12C } + - { offsetInCU: 0x1A02, offset: 0x789CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x1A70, symBinAddr: 0x25450, symSize: 0x19C } + - { offsetInCU: 0x1AC9, offset: 0x78A93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1C0C, symBinAddr: 0x255EC, symSize: 0x134 } + - { offsetInCU: 0x960, offset: 0x79494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x584C, symBinAddr: 0x2AFD8, symSize: 0x20 } + - { offsetInCU: 0xD4D, offset: 0x79881, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x5FB4, symBinAddr: 0x2B740, symSize: 0x68 } + - { offsetInCU: 0xE28, offset: 0x7995C, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x601C, symBinAddr: 0x2B7A8, symSize: 0xFC } + - { offsetInCU: 0x1101, offset: 0x79C35, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6118, symBinAddr: 0x2B8A4, symSize: 0x3E8 } + - { offsetInCU: 0x159A, offset: 0x7A0CE, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x6500, symBinAddr: 0x2BC8C, symSize: 0x12C } + - { offsetInCU: 0x17C5, offset: 0x7A2F9, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x662C, symBinAddr: 0x2BDB8, symSize: 0x284 } + - { offsetInCU: 0x1B9C, offset: 0x7A6D0, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x68B0, symBinAddr: 0x2C03C, symSize: 0x14C } + - { offsetInCU: 0x1D96, offset: 0x7A8CA, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x69FC, symBinAddr: 0x2C188, symSize: 0x2FC } + - { offsetInCU: 0x1F52, offset: 0x7AA86, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x6E10, symBinAddr: 0x2C594, symSize: 0x48 } + - { offsetInCU: 0x1F66, offset: 0x7AA9A, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x6E98, symBinAddr: 0x2C5DC, symSize: 0x10 } + - { offsetInCU: 0x2003, offset: 0x7AB37, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x7134, symBinAddr: 0x2C860, symSize: 0x40 } + - { offsetInCU: 0x2694, offset: 0x7B1C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x2578C, symSize: 0xA78 } + - { offsetInCU: 0x3318, offset: 0x7BE4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x14DC, symBinAddr: 0x26C68, symSize: 0x9DC } + - { offsetInCU: 0x3DE8, offset: 0x7C91C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x1EB8, symBinAddr: 0x27644, symSize: 0x970 } + - { offsetInCU: 0x487C, offset: 0x7D3B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2828, symBinAddr: 0x27FB4, symSize: 0xB90 } + - { offsetInCU: 0x56D5, offset: 0x7E209, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x33B8, symBinAddr: 0x28B44, symSize: 0xB54 } + - { offsetInCU: 0x6541, offset: 0x7F075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x3F24, symBinAddr: 0x296B0, symSize: 0xA88 } + - { offsetInCU: 0x7209, offset: 0x7FD3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x49AC, symBinAddr: 0x2A138, symSize: 0xA10 } + - { offsetInCU: 0x7D46, offset: 0x8087A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x53BC, symBinAddr: 0x2AB48, symSize: 0x190 } + - { offsetInCU: 0x7E41, offset: 0x80975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x554C, symBinAddr: 0x2ACD8, symSize: 0x180 } + - { offsetInCU: 0x7F09, offset: 0x80A3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x56CC, symBinAddr: 0x2AE58, symSize: 0x128 } + - { offsetInCU: 0x8064, offset: 0x80B98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x57F4, symBinAddr: 0x2AF80, symSize: 0x58 } + - { offsetInCU: 0x8266, offset: 0x80D9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x586C, symBinAddr: 0x2AFF8, symSize: 0x748 } + - { offsetInCU: 0x8B34, offset: 0x81668, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x6CF8, symBinAddr: 0x2C484, symSize: 0x14 } + - { offsetInCU: 0x8B56, offset: 0x8168A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x6D0C, symBinAddr: 0x2C498, symSize: 0xFC } + - { offsetInCU: 0x8BFC, offset: 0x81730, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x6EA8, symBinAddr: 0x2C5EC, symSize: 0x138 } + - { offsetInCU: 0x8CD0, offset: 0x81804, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x6FE0, symBinAddr: 0x2C724, symSize: 0x14 } + - { offsetInCU: 0x4F, offset: 0x818E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x1140, symBinAddr: 0x5EF10, symSize: 0x0 } + - { offsetInCU: 0x7F, offset: 0x81914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2C8E4, symSize: 0xB4 } + - { offsetInCU: 0x11E, offset: 0x819B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x2D124, symSize: 0x14 } + - { offsetInCU: 0x19C, offset: 0x81A31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x854, symBinAddr: 0x2D138, symSize: 0x44 } + - { offsetInCU: 0x27F, offset: 0x81B14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x898, symBinAddr: 0x2D17C, symSize: 0x28 } + - { offsetInCU: 0x31F, offset: 0x81BB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAB4, symBinAddr: 0x2D398, symSize: 0x4 } + - { offsetInCU: 0x399, offset: 0x81C2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xD6C, symBinAddr: 0x2D5BC, symSize: 0xAC } + - { offsetInCU: 0x464, offset: 0x81CF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE18, symBinAddr: 0x2D668, symSize: 0x110 } + - { offsetInCU: 0x52E, offset: 0x81DC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB4, symBinAddr: 0x2C998, symSize: 0x11C } + - { offsetInCU: 0x58F, offset: 0x81E24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAD8, symBinAddr: 0x2D3BC, symSize: 0x20 } + - { offsetInCU: 0x5A3, offset: 0x81E38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB08, symBinAddr: 0x2D3DC, symSize: 0x90 } + - { offsetInCU: 0x5B7, offset: 0x81E4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xB98, symBinAddr: 0x2D46C, symSize: 0xBC } + - { offsetInCU: 0x5CB, offset: 0x81E60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC54, symBinAddr: 0x2D528, symSize: 0x8 } + - { offsetInCU: 0x5DF, offset: 0x81E74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC5C, symBinAddr: 0x2D530, symSize: 0x4 } + - { offsetInCU: 0x5F3, offset: 0x81E88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC60, symBinAddr: 0x2D534, symSize: 0x8 } + - { offsetInCU: 0x607, offset: 0x81E9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC68, symBinAddr: 0x2D53C, symSize: 0x10 } + - { offsetInCU: 0x61B, offset: 0x81EB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xC78, symBinAddr: 0x2D54C, symSize: 0x4 } + - { offsetInCU: 0x62F, offset: 0x81EC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xC7C, symBinAddr: 0x2D550, symSize: 0x44 } + - { offsetInCU: 0x643, offset: 0x81ED8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCC0, symBinAddr: 0x2D594, symSize: 0x10 } + - { offsetInCU: 0x657, offset: 0x81EEC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xCD0, symBinAddr: 0x2D5A4, symSize: 0x8 } + - { offsetInCU: 0x66B, offset: 0x81F00, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xCD8, symBinAddr: 0x2D5AC, symSize: 0x10 } + - { offsetInCU: 0x67F, offset: 0x81F14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xF78, symBinAddr: 0x2D7C8, symSize: 0xC } + - { offsetInCU: 0x693, offset: 0x81F28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x103C, symBinAddr: 0x2D88C, symSize: 0x8 } + - { offsetInCU: 0x6A7, offset: 0x81F3C, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x1044, symBinAddr: 0x2D894, symSize: 0x10 } + - { offsetInCU: 0x769, offset: 0x81FFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x2D1A4, symSize: 0x40 } + - { offsetInCU: 0x922, offset: 0x821B7, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x794, symBinAddr: 0x2D078, symSize: 0xAC } + - { offsetInCU: 0x979, offset: 0x8220E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1D0, symBinAddr: 0x2CAB4, symSize: 0x5C } + - { offsetInCU: 0x99D, offset: 0x82232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x22C, symBinAddr: 0x2CB10, symSize: 0x4EC } + - { offsetInCU: 0xA91, offset: 0x82326, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x718, symBinAddr: 0x2CFFC, symSize: 0x7C } + - { offsetInCU: 0xB67, offset: 0x823FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x900, symBinAddr: 0x2D1E4, symSize: 0x1B4 } + - { offsetInCU: 0xBC8, offset: 0x8245D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAB8, symBinAddr: 0x2D39C, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x82521, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2D8AC, symSize: 0x5C } + - { offsetInCU: 0x232, offset: 0x82728, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x2DC88, symSize: 0x14 } + - { offsetInCU: 0x274, offset: 0x8276A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x3F0, symBinAddr: 0x2DC9C, symSize: 0x44 } + - { offsetInCU: 0x357, offset: 0x8284D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x434, symBinAddr: 0x2DCE0, symSize: 0x28 } + - { offsetInCU: 0x3EA, offset: 0x828E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x49C, symBinAddr: 0x2DD48, symSize: 0x4 } + - { offsetInCU: 0x3FE, offset: 0x828F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4A0, symBinAddr: 0x2DD4C, symSize: 0x44 } + - { offsetInCU: 0x412, offset: 0x82908, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x504, symBinAddr: 0x2DDA0, symSize: 0x90 } + - { offsetInCU: 0x426, offset: 0x8291C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x594, symBinAddr: 0x2DE30, symSize: 0xBC } + - { offsetInCU: 0x43A, offset: 0x82930, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x650, symBinAddr: 0x2DEEC, symSize: 0x8 } + - { offsetInCU: 0x44E, offset: 0x82944, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x658, symBinAddr: 0x2DEF4, symSize: 0x4 } + - { offsetInCU: 0x462, offset: 0x82958, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x65C, symBinAddr: 0x2DEF8, symSize: 0x8 } + - { offsetInCU: 0x476, offset: 0x8296C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x664, symBinAddr: 0x2DF00, symSize: 0x10 } + - { offsetInCU: 0x48A, offset: 0x82980, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x674, symBinAddr: 0x2DF10, symSize: 0xC } + - { offsetInCU: 0x49E, offset: 0x82994, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x680, symBinAddr: 0x2DF1C, symSize: 0x20 } + - { offsetInCU: 0x4B2, offset: 0x829A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x6A0, symBinAddr: 0x2DF3C, symSize: 0x28 } + - { offsetInCU: 0x4C6, offset: 0x829BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x6C8, symBinAddr: 0x2DF64, symSize: 0x8 } + - { offsetInCU: 0x4DA, offset: 0x829D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x6D0, symBinAddr: 0x2DF6C, symSize: 0x4 } + - { offsetInCU: 0x4EE, offset: 0x829E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x6D4, symBinAddr: 0x2DF70, symSize: 0x4 } + - { offsetInCU: 0x502, offset: 0x829F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x6D8, symBinAddr: 0x2DF74, symSize: 0x10 } + - { offsetInCU: 0x692, offset: 0x82B88, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x954, symBinAddr: 0x2E1A8, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x82C95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x354, symBinAddr: 0x2DC00, symSize: 0x4 } + - { offsetInCU: 0x7BB, offset: 0x82CB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x358, symBinAddr: 0x2DC04, symSize: 0x4 } + - { offsetInCU: 0x7D7, offset: 0x82CCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x35C, symBinAddr: 0x2DC08, symSize: 0x4 } + - { offsetInCU: 0x7F3, offset: 0x82CE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x360, symBinAddr: 0x2DC0C, symSize: 0x4 } + - { offsetInCU: 0x846, offset: 0x82D3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x45C, symBinAddr: 0x2DD08, symSize: 0x40 } + - { offsetInCU: 0x8E2, offset: 0x82DD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x4E4, symBinAddr: 0x2DD90, symSize: 0x4 } + - { offsetInCU: 0x8FE, offset: 0x82DF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x4E8, symBinAddr: 0x2DD94, symSize: 0x4 } + - { offsetInCU: 0x91A, offset: 0x82E10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x4EC, symBinAddr: 0x2DD98, symSize: 0x4 } + - { offsetInCU: 0x936, offset: 0x82E2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x4F0, symBinAddr: 0x2DD9C, symSize: 0x4 } + - { offsetInCU: 0xAE7, offset: 0x82FDD, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2D8AC, symSize: 0x5C } + - { offsetInCU: 0xB67, offset: 0x8305D, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x5C, symBinAddr: 0x2D908, symSize: 0x104 } + - { offsetInCU: 0xBFA, offset: 0x830F0, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x160, symBinAddr: 0x2DA0C, symSize: 0xB4 } + - { offsetInCU: 0xD96, offset: 0x8328C, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x214, symBinAddr: 0x2DAC0, symSize: 0x140 } + - { offsetInCU: 0xF65, offset: 0x8345B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x364, symBinAddr: 0x2DC10, symSize: 0x10 } + - { offsetInCU: 0xFA1, offset: 0x83497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x374, symBinAddr: 0x2DC20, symSize: 0x24 } + - { offsetInCU: 0x1030, offset: 0x83526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x398, symBinAddr: 0x2DC44, symSize: 0x44 } + - { offsetInCU: 0x1184, offset: 0x8367A, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x6E8, symBinAddr: 0x2DF84, symSize: 0x224 } + - { offsetInCU: 0x2B, offset: 0x8394E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2E1EC, symSize: 0x28 } + - { offsetInCU: 0x93, offset: 0x839B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x250, symBinAddr: 0x2E43C, symSize: 0x30 } + - { offsetInCU: 0xC4, offset: 0x839E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x280, symBinAddr: 0x2E46C, symSize: 0xC } + - { offsetInCU: 0xE0, offset: 0x83A03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x28C, symBinAddr: 0x2E478, symSize: 0xA0 } + - { offsetInCU: 0x10A, offset: 0x83A2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4E0, symBinAddr: 0x2E6CC, symSize: 0x34 } + - { offsetInCU: 0x1AF, offset: 0x83AD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x474, symBinAddr: 0x2E660, symSize: 0x28 } + - { offsetInCU: 0x1E0, offset: 0x83B03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x49C, symBinAddr: 0x2E688, symSize: 0x10 } + - { offsetInCU: 0x212, offset: 0x83B35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4AC, symBinAddr: 0x2E698, symSize: 0x34 } + - { offsetInCU: 0x303, offset: 0x83C26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x35C, symBinAddr: 0x2E548, symSize: 0x14 } + - { offsetInCU: 0x346, offset: 0x83C69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x370, symBinAddr: 0x2E55C, symSize: 0x14 } + - { offsetInCU: 0x389, offset: 0x83CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x384, symBinAddr: 0x2E570, symSize: 0x14 } + - { offsetInCU: 0x3CC, offset: 0x83CEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x398, symBinAddr: 0x2E584, symSize: 0x14 } + - { offsetInCU: 0x40F, offset: 0x83D32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x514, symBinAddr: 0x2E700, symSize: 0x4 } + - { offsetInCU: 0x423, offset: 0x83D46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x518, symBinAddr: 0x2E704, symSize: 0x44 } + - { offsetInCU: 0x437, offset: 0x83D5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x55C, symBinAddr: 0x2E748, symSize: 0x4 } + - { offsetInCU: 0x44B, offset: 0x83D6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x560, symBinAddr: 0x2E74C, symSize: 0x10 } + - { offsetInCU: 0x45F, offset: 0x83D82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x580, symBinAddr: 0x2E75C, symSize: 0x90 } + - { offsetInCU: 0x473, offset: 0x83D96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x610, symBinAddr: 0x2E7EC, symSize: 0xBC } + - { offsetInCU: 0x487, offset: 0x83DAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x6CC, symBinAddr: 0x2E8A8, symSize: 0x8 } + - { offsetInCU: 0x49B, offset: 0x83DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x6D4, symBinAddr: 0x2E8B0, symSize: 0x4 } + - { offsetInCU: 0x4AF, offset: 0x83DD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x6D8, symBinAddr: 0x2E8B4, symSize: 0x8 } + - { offsetInCU: 0x4C3, offset: 0x83DE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x6E0, symBinAddr: 0x2E8BC, symSize: 0x10 } + - { offsetInCU: 0x4D7, offset: 0x83DFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x6F0, symBinAddr: 0x2E8CC, symSize: 0x4 } + - { offsetInCU: 0x4EB, offset: 0x83E0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x6F4, symBinAddr: 0x2E8D0, symSize: 0x44 } + - { offsetInCU: 0x52E, offset: 0x83E51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x190, symBinAddr: 0x2E37C, symSize: 0x14 } + - { offsetInCU: 0x5D8, offset: 0x83EFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1A4, symBinAddr: 0x2E390, symSize: 0x44 } + - { offsetInCU: 0x667, offset: 0x83F8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1E8, symBinAddr: 0x2E3D4, symSize: 0x28 } + - { offsetInCU: 0x6BA, offset: 0x83FDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x210, symBinAddr: 0x2E3FC, symSize: 0x40 } + - { offsetInCU: 0x726, offset: 0x84049, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3AC, symBinAddr: 0x2E598, symSize: 0x18 } + - { offsetInCU: 0x7D0, offset: 0x840F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3C4, symBinAddr: 0x2E5B0, symSize: 0x44 } + - { offsetInCU: 0x8B1, offset: 0x841D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x408, symBinAddr: 0x2E5F4, symSize: 0x2C } + - { offsetInCU: 0x936, offset: 0x84259, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x434, symBinAddr: 0x2E620, symSize: 0x40 } + - { offsetInCU: 0xA9A, offset: 0x843BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2E1EC, symSize: 0x28 } + - { offsetInCU: 0xAF8, offset: 0x8441B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x28, symBinAddr: 0x2E214, symSize: 0x4 } + - { offsetInCU: 0xB1F, offset: 0x84442, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x2C, symBinAddr: 0x2E218, symSize: 0x5C } + - { offsetInCU: 0xB6F, offset: 0x84492, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0x88, symBinAddr: 0x2E274, symSize: 0x30 } + - { offsetInCU: 0xBCB, offset: 0x844EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xB8, symBinAddr: 0x2E2A4, symSize: 0x10 } + - { offsetInCU: 0xBF9, offset: 0x8451C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xC8, symBinAddr: 0x2E2B4, symSize: 0xA0 } + - { offsetInCU: 0xC18, offset: 0x8453B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x168, symBinAddr: 0x2E354, symSize: 0x28 } + - { offsetInCU: 0xC68, offset: 0x8458B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x32C, symBinAddr: 0x2E518, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x845B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x33C, symBinAddr: 0x2E528, symSize: 0x10 } + - { offsetInCU: 0xCC4, offset: 0x845E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x34C, symBinAddr: 0x2E538, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8478C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2E914, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x847C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E91C, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x847E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E91C, symSize: 0x8 } + - { offsetInCU: 0x1A2, offset: 0x848E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0xD8, symBinAddr: 0x2E9EC, symSize: 0x8 } + - { offsetInCU: 0x1B6, offset: 0x848F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x120, symBinAddr: 0x2EA34, symSize: 0x50 } + - { offsetInCU: 0x1CA, offset: 0x8490B, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x170, symBinAddr: 0x2EA84, symSize: 0xC } + - { offsetInCU: 0x1DE, offset: 0x8491F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x17C, symBinAddr: 0x2EA90, symSize: 0x40 } + - { offsetInCU: 0x1F2, offset: 0x84933, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x1BC, symBinAddr: 0x2EAD0, symSize: 0x5C } + - { offsetInCU: 0x206, offset: 0x84947, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x218, symBinAddr: 0x2EB2C, symSize: 0x50 } + - { offsetInCU: 0x21A, offset: 0x8495B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x268, symBinAddr: 0x2EB7C, symSize: 0x10 } + - { offsetInCU: 0x3B6, offset: 0x84AF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2E924, symSize: 0xC4 } + - { offsetInCU: 0x4B, offset: 0x84CD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2EB8C, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x84D06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2EB94, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x84D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2EB94, symSize: 0x8 } + - { offsetInCU: 0xC7, offset: 0x84D4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x2EB9C, symSize: 0x1C } + - { offsetInCU: 0x156, offset: 0x84DDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x2C, symBinAddr: 0x2EBB8, symSize: 0xE4 } + - { offsetInCU: 0x2EC, offset: 0x84F72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x110, symBinAddr: 0x2EC9C, symSize: 0x110 } + - { offsetInCU: 0x407, offset: 0x8508D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x264, symBinAddr: 0x2EDB0, symSize: 0x28 } + - { offsetInCU: 0x41B, offset: 0x850A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x2DC, symBinAddr: 0x2EE28, symSize: 0x7C } + - { offsetInCU: 0x42F, offset: 0x850B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x358, symBinAddr: 0x2EEA4, symSize: 0x14 } + - { offsetInCU: 0x443, offset: 0x850C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x36C, symBinAddr: 0x2EEB8, symSize: 0x5C } + - { offsetInCU: 0x457, offset: 0x850DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x3C8, symBinAddr: 0x2EF14, symSize: 0x5C } + - { offsetInCU: 0x46B, offset: 0x850F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x424, symBinAddr: 0x2EF70, symSize: 0x54 } + - { offsetInCU: 0x47F, offset: 0x85105, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x478, symBinAddr: 0x2EFC4, symSize: 0x10 } + - { offsetInCU: 0x4F, offset: 0x8539C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2EFD4, symSize: 0x8 } + - { offsetInCU: 0x84, offset: 0x853D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2EFDC, symSize: 0x8 } + - { offsetInCU: 0xA4, offset: 0x853F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2EFDC, symSize: 0x8 } + - { offsetInCU: 0x36D, offset: 0x856BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xDE0, symBinAddr: 0x2FDB4, symSize: 0x58 } + - { offsetInCU: 0x389, offset: 0x856D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0xEBC, symBinAddr: 0x2FE50, symSize: 0x30 } + - { offsetInCU: 0x39D, offset: 0x856EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0xF30, symBinAddr: 0x2FE80, symSize: 0x78 } + - { offsetInCU: 0x3B1, offset: 0x856FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0xFEC, symBinAddr: 0x2FEF8, symSize: 0x140 } + - { offsetInCU: 0x3C5, offset: 0x85712, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x112C, symBinAddr: 0x30038, symSize: 0x1F0 } + - { offsetInCU: 0x3D9, offset: 0x85726, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x131C, symBinAddr: 0x30228, symSize: 0x34 } + - { offsetInCU: 0x3ED, offset: 0x8573A, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x1350, symBinAddr: 0x3025C, symSize: 0x3C } + - { offsetInCU: 0x401, offset: 0x8574E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x138C, symBinAddr: 0x30298, symSize: 0x138 } + - { offsetInCU: 0x415, offset: 0x85762, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x14C4, symBinAddr: 0x303D0, symSize: 0x48 } + - { offsetInCU: 0x429, offset: 0x85776, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x150C, symBinAddr: 0x30418, symSize: 0x68 } + - { offsetInCU: 0x43D, offset: 0x8578A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x1574, symBinAddr: 0x30480, symSize: 0x10 } + - { offsetInCU: 0x721, offset: 0x85A6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2EFE4, symSize: 0x2E4 } + - { offsetInCU: 0xBA7, offset: 0x85EF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x2F4, symBinAddr: 0x2F2C8, symSize: 0x340 } + - { offsetInCU: 0x10A3, offset: 0x863F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x634, symBinAddr: 0x2F608, symSize: 0x274 } + - { offsetInCU: 0x14EA, offset: 0x86837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x8A8, symBinAddr: 0x2F87C, symSize: 0x27C } + - { offsetInCU: 0x19B2, offset: 0x86CFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xB24, symBinAddr: 0x2FAF8, symSize: 0x2BC } + - { offsetInCU: 0x4B, offset: 0x86FDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30490, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8700F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30498, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8702F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30498, symSize: 0x8 } + - { offsetInCU: 0x204, offset: 0x87193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x370, symBinAddr: 0x30800, symSize: 0x1C } + - { offsetInCU: 0x220, offset: 0x871AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x410, symBinAddr: 0x30860, symSize: 0x30 } + - { offsetInCU: 0x234, offset: 0x871C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x440, symBinAddr: 0x30890, symSize: 0x30 } + - { offsetInCU: 0x248, offset: 0x871D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x470, symBinAddr: 0x308C0, symSize: 0x74 } + - { offsetInCU: 0x25C, offset: 0x871EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x4E4, symBinAddr: 0x30934, symSize: 0xAC } + - { offsetInCU: 0x270, offset: 0x871FF, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x590, symBinAddr: 0x309E0, symSize: 0x1C } + - { offsetInCU: 0x284, offset: 0x87213, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x5AC, symBinAddr: 0x309FC, symSize: 0x74 } + - { offsetInCU: 0x298, offset: 0x87227, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x620, symBinAddr: 0x30A70, symSize: 0x5C } + - { offsetInCU: 0x2AC, offset: 0x8723B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x67C, symBinAddr: 0x30ACC, symSize: 0x60 } + - { offsetInCU: 0x2C0, offset: 0x8724F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x6DC, symBinAddr: 0x30B2C, symSize: 0x10 } + - { offsetInCU: 0x472, offset: 0x87401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x304A0, symSize: 0xD8 } + - { offsetInCU: 0x615, offset: 0x875A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0xE8, symBinAddr: 0x30578, symSize: 0x288 } + - { offsetInCU: 0x27, offset: 0x879E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B3C, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x87A08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B3C, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x87A3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30B44, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x87A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30B44, symSize: 0x8 } + - { offsetInCU: 0xAE, offset: 0x87A70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30B4C, symSize: 0x10 } + - { offsetInCU: 0xCA, offset: 0x87A8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x20, symBinAddr: 0x30B5C, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x87B5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B6C, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x87B7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B6C, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x87BB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30B74, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x87BD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30B74, symSize: 0x8 } + - { offsetInCU: 0xAE, offset: 0x87BE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30B7C, symSize: 0x10 } + - { offsetInCU: 0xCA, offset: 0x87C02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x20, symBinAddr: 0x30B8C, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x87CF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B9C, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x87D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30BA4, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x87D4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30BA4, symSize: 0x8 } + - { offsetInCU: 0x25D, offset: 0x87F0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x260, symBinAddr: 0x30DFC, symSize: 0x88 } + - { offsetInCU: 0x327, offset: 0x87FD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2E8, symBinAddr: 0x30E84, symSize: 0x118 } + - { offsetInCU: 0x487, offset: 0x88135, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x484, symBinAddr: 0x30FE0, symSize: 0x30 } + - { offsetInCU: 0x49B, offset: 0x88149, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x4B4, symBinAddr: 0x31010, symSize: 0x30 } + - { offsetInCU: 0x4AF, offset: 0x8815D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x4E4, symBinAddr: 0x31040, symSize: 0x5C } + - { offsetInCU: 0x4C3, offset: 0x88171, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x540, symBinAddr: 0x3109C, symSize: 0x94 } + - { offsetInCU: 0x4D7, offset: 0x88185, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5D4, symBinAddr: 0x31130, symSize: 0x14 } + - { offsetInCU: 0x4EB, offset: 0x88199, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x5E8, symBinAddr: 0x31144, symSize: 0x64 } + - { offsetInCU: 0x4FF, offset: 0x881AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x64C, symBinAddr: 0x311A8, symSize: 0x5C } + - { offsetInCU: 0x513, offset: 0x881C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x6A8, symBinAddr: 0x31204, symSize: 0x5C } + - { offsetInCU: 0x527, offset: 0x881D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x704, symBinAddr: 0x31260, symSize: 0x10 } + - { offsetInCU: 0x745, offset: 0x883F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x30BAC, symSize: 0x128 } + - { offsetInCU: 0x951, offset: 0x885FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x30CD4, symSize: 0x128 } + - { offsetInCU: 0x4B, offset: 0x8884D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31270, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x88882, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31278, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x888A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31278, symSize: 0x8 } + - { offsetInCU: 0x25D, offset: 0x88A5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x260, symBinAddr: 0x314D0, symSize: 0x88 } + - { offsetInCU: 0x30D, offset: 0x88B0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2E8, symBinAddr: 0x31558, symSize: 0xD4 } + - { offsetInCU: 0x41E, offset: 0x88C20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x440, symBinAddr: 0x31670, symSize: 0x30 } + - { offsetInCU: 0x432, offset: 0x88C34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x470, symBinAddr: 0x316A0, symSize: 0x30 } + - { offsetInCU: 0x446, offset: 0x88C48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x4A0, symBinAddr: 0x316D0, symSize: 0x5C } + - { offsetInCU: 0x45A, offset: 0x88C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x4FC, symBinAddr: 0x3172C, symSize: 0x94 } + - { offsetInCU: 0x46E, offset: 0x88C70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x5A4, symBinAddr: 0x317C0, symSize: 0x64 } + - { offsetInCU: 0x482, offset: 0x88C84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x608, symBinAddr: 0x31824, symSize: 0x5C } + - { offsetInCU: 0x496, offset: 0x88C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x664, symBinAddr: 0x31880, symSize: 0x5C } + - { offsetInCU: 0x4AA, offset: 0x88CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x6C0, symBinAddr: 0x318DC, symSize: 0x10 } + - { offsetInCU: 0x6C8, offset: 0x88ECA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x31280, symSize: 0x128 } + - { offsetInCU: 0x8D4, offset: 0x890D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x313A8, symSize: 0x128 } + - { offsetInCU: 0x27, offset: 0x892EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x318EC, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8930F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x318EC, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x89344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x318F4, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x89364, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x318F4, symSize: 0x8 } + - { offsetInCU: 0x2A4, offset: 0x89568, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3EC, symBinAddr: 0x31CD8, symSize: 0x40 } + - { offsetInCU: 0x453, offset: 0x89717, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x42C, symBinAddr: 0x31D18, symSize: 0x804 } + - { offsetInCU: 0xA69, offset: 0x89D2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xC30, symBinAddr: 0x3251C, symSize: 0x48 } + - { offsetInCU: 0xA7D, offset: 0x89D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xCB8, symBinAddr: 0x32564, symSize: 0x30 } + - { offsetInCU: 0xA91, offset: 0x89D55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xCE8, symBinAddr: 0x32594, symSize: 0x48 } + - { offsetInCU: 0xAA5, offset: 0x89D69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xD30, symBinAddr: 0x325DC, symSize: 0xB4 } + - { offsetInCU: 0xAB9, offset: 0x89D7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xDE4, symBinAddr: 0x32690, symSize: 0x104 } + - { offsetInCU: 0xACD, offset: 0x89D91, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xEE8, symBinAddr: 0x32794, symSize: 0x1C } + - { offsetInCU: 0xAE1, offset: 0x89DA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xF04, symBinAddr: 0x327B0, symSize: 0xB4 } + - { offsetInCU: 0xAF5, offset: 0x89DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0xFB8, symBinAddr: 0x32864, symSize: 0x48 } + - { offsetInCU: 0xB09, offset: 0x89DCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0x1000, symBinAddr: 0x328AC, symSize: 0x58 } + - { offsetInCU: 0xB1D, offset: 0x89DE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0x1058, symBinAddr: 0x32904, symSize: 0x10 } + - { offsetInCU: 0xE84, offset: 0x8A148, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x318FC, symSize: 0x128 } + - { offsetInCU: 0x1119, offset: 0x8A3DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x31A24, symSize: 0x180 } + - { offsetInCU: 0x146E, offset: 0x8A732, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2B8, symBinAddr: 0x31BA4, symSize: 0x134 } + - { offsetInCU: 0x4B, offset: 0x8AA67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32914, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8AA9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3291C, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8AABC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3291C, symSize: 0x8 } + - { offsetInCU: 0x25D, offset: 0x8AC79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x260, symBinAddr: 0x32B74, symSize: 0x88 } + - { offsetInCU: 0x30D, offset: 0x8AD29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2E8, symBinAddr: 0x32BFC, symSize: 0xD4 } + - { offsetInCU: 0x41E, offset: 0x8AE3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x440, symBinAddr: 0x32D14, symSize: 0x30 } + - { offsetInCU: 0x432, offset: 0x8AE4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x470, symBinAddr: 0x32D44, symSize: 0x30 } + - { offsetInCU: 0x446, offset: 0x8AE62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x4A0, symBinAddr: 0x32D74, symSize: 0x5C } + - { offsetInCU: 0x45A, offset: 0x8AE76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x4FC, symBinAddr: 0x32DD0, symSize: 0x94 } + - { offsetInCU: 0x46E, offset: 0x8AE8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x5A4, symBinAddr: 0x32E64, symSize: 0x64 } + - { offsetInCU: 0x482, offset: 0x8AE9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x608, symBinAddr: 0x32EC8, symSize: 0x5C } + - { offsetInCU: 0x496, offset: 0x8AEB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x664, symBinAddr: 0x32F24, symSize: 0x5C } + - { offsetInCU: 0x4AA, offset: 0x8AEC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x6C0, symBinAddr: 0x32F80, symSize: 0x10 } + - { offsetInCU: 0x6C8, offset: 0x8B0E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32924, symSize: 0x128 } + - { offsetInCU: 0x8D4, offset: 0x8B2F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x32A4C, symSize: 0x128 } + - { offsetInCU: 0x4B, offset: 0x8B529, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32F90, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8B55E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32F98, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8B57E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32F98, symSize: 0x8 } + - { offsetInCU: 0x25D, offset: 0x8B73B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x228, symBinAddr: 0x331B8, symSize: 0x88 } + - { offsetInCU: 0x2D1, offset: 0x8B7AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2B0, symBinAddr: 0x33240, symSize: 0xD0 } + - { offsetInCU: 0x3E2, offset: 0x8B8C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x404, symBinAddr: 0x33354, symSize: 0x30 } + - { offsetInCU: 0x3F6, offset: 0x8B8D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x434, symBinAddr: 0x33384, symSize: 0x30 } + - { offsetInCU: 0x40A, offset: 0x8B8E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x464, symBinAddr: 0x333B4, symSize: 0x64 } + - { offsetInCU: 0x41E, offset: 0x8B8FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x4C8, symBinAddr: 0x33418, symSize: 0x94 } + - { offsetInCU: 0x432, offset: 0x8B910, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x570, symBinAddr: 0x334AC, symSize: 0x6C } + - { offsetInCU: 0x446, offset: 0x8B924, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x5DC, symBinAddr: 0x33518, symSize: 0x5C } + - { offsetInCU: 0x45A, offset: 0x8B938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x638, symBinAddr: 0x33574, symSize: 0x5C } + - { offsetInCU: 0x46E, offset: 0x8B94C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x694, symBinAddr: 0x335D0, symSize: 0x10 } + - { offsetInCU: 0x685, offset: 0x8BB63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32FA0, symSize: 0xF0 } + - { offsetInCU: 0x87C, offset: 0x8BD5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x100, symBinAddr: 0x33090, symSize: 0x128 } + - { offsetInCU: 0x27, offset: 0x8BF70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x335E0, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8BF94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x335E0, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8BFC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x335E8, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8BFE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x335E8, symSize: 0x8 } + - { offsetInCU: 0xC9, offset: 0x8C012, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x335F0, symSize: 0x88 } + - { offsetInCU: 0x35A, offset: 0x8C2A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x98, symBinAddr: 0x33678, symSize: 0x4E8 } + - { offsetInCU: 0xAD8, offset: 0x8CA21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x580, symBinAddr: 0x33B60, symSize: 0x30 } + - { offsetInCU: 0xAEC, offset: 0x8CA35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x5B0, symBinAddr: 0x33B90, symSize: 0x40 } + - { offsetInCU: 0xB00, offset: 0x8CA49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x5F0, symBinAddr: 0x33BD0, symSize: 0x7C } + - { offsetInCU: 0xB14, offset: 0x8CA5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x66C, symBinAddr: 0x33C4C, symSize: 0xBC } + - { offsetInCU: 0xB28, offset: 0x8CA71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x744, symBinAddr: 0x33D08, symSize: 0x84 } + - { offsetInCU: 0xB3C, offset: 0x8CA85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x7C8, symBinAddr: 0x33D8C, symSize: 0x48 } + - { offsetInCU: 0xB50, offset: 0x8CA99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x810, symBinAddr: 0x33DD4, symSize: 0x4C } + - { offsetInCU: 0xB64, offset: 0x8CAAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x85C, symBinAddr: 0x33E20, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8CEE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33E30, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8CF15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33E38, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8CF35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33E38, symSize: 0x8 } + - { offsetInCU: 0x551, offset: 0x8D3E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xAA8, symBinAddr: 0x348D8, symSize: 0x38 } + - { offsetInCU: 0x582, offset: 0x8D417, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xD34, symBinAddr: 0x34B24, symSize: 0x28 } + - { offsetInCU: 0x596, offset: 0x8D42B, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xD64, symBinAddr: 0x34B4C, symSize: 0x28 } + - { offsetInCU: 0x5AA, offset: 0x8D43F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xD8C, symBinAddr: 0x34B74, symSize: 0x30 } + - { offsetInCU: 0x5BE, offset: 0x8D453, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xDBC, symBinAddr: 0x34BA4, symSize: 0x30 } + - { offsetInCU: 0x5D2, offset: 0x8D467, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xDEC, symBinAddr: 0x34BD4, symSize: 0x84 } + - { offsetInCU: 0x5E6, offset: 0x8D47B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xE70, symBinAddr: 0x34C58, symSize: 0xAC } + - { offsetInCU: 0x5FA, offset: 0x8D48F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0xF30, symBinAddr: 0x34D04, symSize: 0x8C } + - { offsetInCU: 0x60E, offset: 0x8D4A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0xFBC, symBinAddr: 0x34D90, symSize: 0x5C } + - { offsetInCU: 0x622, offset: 0x8D4B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x1018, symBinAddr: 0x34DEC, symSize: 0x60 } + - { offsetInCU: 0x636, offset: 0x8D4CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x1078, symBinAddr: 0x34E4C, symSize: 0x10 } + - { offsetInCU: 0xAAA, offset: 0x8D93F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x33E40, symSize: 0xAC } + - { offsetInCU: 0xC7F, offset: 0x8DB14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xBC, symBinAddr: 0x33EEC, symSize: 0x294 } + - { offsetInCU: 0x1114, offset: 0x8DFA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x350, symBinAddr: 0x34180, symSize: 0x1B4 } + - { offsetInCU: 0x1583, offset: 0x8E418, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x504, symBinAddr: 0x34334, symSize: 0x5A4 } + - { offsetInCU: 0x1A2B, offset: 0x8E8C0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xB20, symBinAddr: 0x34910, symSize: 0x1D0 } + - { offsetInCU: 0x27, offset: 0x8E962, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34E5C, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8E986, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34E5C, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8E9BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34E64, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8E9DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34E64, symSize: 0x8 } + - { offsetInCU: 0xDE, offset: 0x8EA19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBC, symBinAddr: 0x34F18, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x8EAB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF4, symBinAddr: 0x34F50, symSize: 0xDC } + - { offsetInCU: 0x286, offset: 0x8EBC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x1D0, symBinAddr: 0x3502C, symSize: 0x30 } + - { offsetInCU: 0x29A, offset: 0x8EBD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x200, symBinAddr: 0x3505C, symSize: 0x38 } + - { offsetInCU: 0x2AE, offset: 0x8EBE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x238, symBinAddr: 0x35094, symSize: 0x6C } + - { offsetInCU: 0x2C2, offset: 0x8EBFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x2A4, symBinAddr: 0x35100, symSize: 0xA4 } + - { offsetInCU: 0x2D6, offset: 0x8EC11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x35C, symBinAddr: 0x351A4, symSize: 0x74 } + - { offsetInCU: 0x2EA, offset: 0x8EC25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x3D0, symBinAddr: 0x35218, symSize: 0x48 } + - { offsetInCU: 0x2FE, offset: 0x8EC39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x418, symBinAddr: 0x35260, symSize: 0x4C } + - { offsetInCU: 0x312, offset: 0x8EC4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x464, symBinAddr: 0x352AC, symSize: 0x10 } + - { offsetInCU: 0x44D, offset: 0x8ED88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x34E6C, symSize: 0xAC } + - { offsetInCU: 0x27, offset: 0x8EE75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x352BC, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x8EE94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x352BC, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x8EEC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x352C4, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x8EEE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x352C4, symSize: 0x8 } + - { offsetInCU: 0xC2, offset: 0x8EF10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x352CC, symSize: 0x1C } + - { offsetInCU: 0x2A1, offset: 0x8F0EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x2C, symBinAddr: 0x352E8, symSize: 0x1B0 } + - { offsetInCU: 0x613, offset: 0x8F461, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1DC, symBinAddr: 0x35498, symSize: 0x88 } + - { offsetInCU: 0x7A5, offset: 0x8F5F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x264, symBinAddr: 0x35520, symSize: 0x134 } + - { offsetInCU: 0xB3F, offset: 0x8F98D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x398, symBinAddr: 0x35654, symSize: 0x4F8 } + - { offsetInCU: 0xFD4, offset: 0x8FE22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x8D8, symBinAddr: 0x35B4C, symSize: 0x30 } + - { offsetInCU: 0xFE8, offset: 0x8FE36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0x908, symBinAddr: 0x35B7C, symSize: 0x30 } + - { offsetInCU: 0xFFC, offset: 0x8FE4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0x938, symBinAddr: 0x35BAC, symSize: 0x64 } + - { offsetInCU: 0x1010, offset: 0x8FE5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0x99C, symBinAddr: 0x35C10, symSize: 0x8C } + - { offsetInCU: 0x1024, offset: 0x8FE72, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xA28, symBinAddr: 0x35C9C, symSize: 0xC } + - { offsetInCU: 0x1038, offset: 0x8FE86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xA34, symBinAddr: 0x35CA8, symSize: 0x6C } + - { offsetInCU: 0x104C, offset: 0x8FE9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xAA0, symBinAddr: 0x35D14, symSize: 0x5C } + - { offsetInCU: 0x1060, offset: 0x8FEAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xAFC, symBinAddr: 0x35D70, symSize: 0x54 } + - { offsetInCU: 0x1074, offset: 0x8FEC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xB50, symBinAddr: 0x35DC4, symSize: 0x10 } + - { offsetInCU: 0x153, offset: 0x905FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x5EC, symBinAddr: 0x363C0, symSize: 0x74 } + - { offsetInCU: 0x29F, offset: 0x9074A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x690, symBinAddr: 0x36464, symSize: 0x60 } + - { offsetInCU: 0x2CE, offset: 0x90779, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x6F0, symBinAddr: 0x364C4, symSize: 0x20 } + - { offsetInCU: 0x40D, offset: 0x908B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x18, symBinAddr: 0x35DEC, symSize: 0x44 } + - { offsetInCU: 0x432, offset: 0x908DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x74, symBinAddr: 0x35E48, symSize: 0x44 } + - { offsetInCU: 0x457, offset: 0x90902, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x178, symBinAddr: 0x35F4C, symSize: 0x44 } + - { offsetInCU: 0x47C, offset: 0x90927, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x264, symBinAddr: 0x36038, symSize: 0x44 } + - { offsetInCU: 0x4A1, offset: 0x9094C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x2A8, symBinAddr: 0x3607C, symSize: 0x4 } + - { offsetInCU: 0x560, offset: 0x90A0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x36080, symSize: 0x2B8 } + - { offsetInCU: 0x9CA, offset: 0x90E75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x564, symBinAddr: 0x36338, symSize: 0x20 } + - { offsetInCU: 0x9DE, offset: 0x90E89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x584, symBinAddr: 0x36358, symSize: 0x68 } + - { offsetInCU: 0xA0F, offset: 0x90EBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x660, symBinAddr: 0x36434, symSize: 0x30 } + - { offsetInCU: 0x24A, offset: 0x91131, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xE00, symBinAddr: 0x372F0, symSize: 0x20 } + - { offsetInCU: 0x3E2, offset: 0x912C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xE50, symBinAddr: 0x37340, symSize: 0x4C } + - { offsetInCU: 0x411, offset: 0x912F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0xE9C, symBinAddr: 0x3738C, symSize: 0x20 } + - { offsetInCU: 0x57C, offset: 0x91463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x18, symBinAddr: 0x36508, symSize: 0x44 } + - { offsetInCU: 0x5A1, offset: 0x91488, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x74, symBinAddr: 0x36564, symSize: 0x44 } + - { offsetInCU: 0x5C6, offset: 0x914AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x16C, symBinAddr: 0x3665C, symSize: 0x44 } + - { offsetInCU: 0x5EB, offset: 0x914D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x25C, symBinAddr: 0x3674C, symSize: 0x44 } + - { offsetInCU: 0x610, offset: 0x914F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x2B8, symBinAddr: 0x367A8, symSize: 0x44 } + - { offsetInCU: 0x635, offset: 0x9151C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x3A8, symBinAddr: 0x36898, symSize: 0x44 } + - { offsetInCU: 0x65A, offset: 0x91541, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x404, symBinAddr: 0x368F4, symSize: 0x44 } + - { offsetInCU: 0x67F, offset: 0x91566, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x448, symBinAddr: 0x36938, symSize: 0x4 } + - { offsetInCU: 0x6A0, offset: 0x91587, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x44C, symBinAddr: 0x3693C, symSize: 0x54 } + - { offsetInCU: 0x6BF, offset: 0x915A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x4A0, symBinAddr: 0x36990, symSize: 0x5C } + - { offsetInCU: 0x6F4, offset: 0x915DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x4FC, symBinAddr: 0x369EC, symSize: 0x44 } + - { offsetInCU: 0x719, offset: 0x91600, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x5E8, symBinAddr: 0x36AD8, symSize: 0x44 } + - { offsetInCU: 0x889, offset: 0x91770, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x62C, symBinAddr: 0x36B1C, symSize: 0x6EC } + - { offsetInCU: 0x1637, offset: 0x9251E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xD18, symBinAddr: 0x37208, symSize: 0x20 } + - { offsetInCU: 0x164B, offset: 0x92532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xD38, symBinAddr: 0x37228, symSize: 0xC8 } + - { offsetInCU: 0x166E, offset: 0x92555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xE20, symBinAddr: 0x37310, symSize: 0x30 } + - { offsetInCU: 0x4CA, offset: 0x92A56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1860, symBinAddr: 0x38C2C, symSize: 0x20 } + - { offsetInCU: 0x716, offset: 0x92CA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x18B0, symBinAddr: 0x38C7C, symSize: 0x9C } + - { offsetInCU: 0x973, offset: 0x92EFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x33FC, symBinAddr: 0x3A7C8, symSize: 0x20 } + - { offsetInCU: 0xC47, offset: 0x931D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x373CC, symSize: 0x20 } + - { offsetInCU: 0xC5B, offset: 0x931E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x373EC, symSize: 0x48 } + - { offsetInCU: 0xC80, offset: 0x9320C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x37434, symSize: 0x5C } + - { offsetInCU: 0xCA9, offset: 0x93235, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x37490, symSize: 0x44 } + - { offsetInCU: 0xCCE, offset: 0x9325A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x120, symBinAddr: 0x374EC, symSize: 0x44 } + - { offsetInCU: 0xCF3, offset: 0x9327F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x17C, symBinAddr: 0x37548, symSize: 0x44 } + - { offsetInCU: 0xD18, offset: 0x932A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1C0, symBinAddr: 0x3758C, symSize: 0x4C } + - { offsetInCU: 0xD3D, offset: 0x932C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x20C, symBinAddr: 0x375D8, symSize: 0x50 } + - { offsetInCU: 0xD62, offset: 0x932EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x25C, symBinAddr: 0x37628, symSize: 0x44 } + - { offsetInCU: 0xD87, offset: 0x93313, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x3766C, symSize: 0x4 } + - { offsetInCU: 0xDA8, offset: 0x93334, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2A4, symBinAddr: 0x37670, symSize: 0x44 } + - { offsetInCU: 0xDCD, offset: 0x93359, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvs', symObjAddr: 0x2E8, symBinAddr: 0x376B4, symSize: 0x48 } + - { offsetInCU: 0xDF6, offset: 0x93382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x330, symBinAddr: 0x376FC, symSize: 0x44 } + - { offsetInCU: 0xE1B, offset: 0x933A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x428, symBinAddr: 0x377F4, symSize: 0x44 } + - { offsetInCU: 0xE40, offset: 0x933CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x484, symBinAddr: 0x37850, symSize: 0x44 } + - { offsetInCU: 0xE65, offset: 0x933F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x4E0, symBinAddr: 0x378AC, symSize: 0x44 } + - { offsetInCU: 0xE8A, offset: 0x93416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x53C, symBinAddr: 0x37908, symSize: 0x44 } + - { offsetInCU: 0xEAF, offset: 0x9343B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x580, symBinAddr: 0x3794C, symSize: 0x48 } + - { offsetInCU: 0xED4, offset: 0x93460, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x5C8, symBinAddr: 0x37994, symSize: 0x50 } + - { offsetInCU: 0xF09, offset: 0x93495, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x618, symBinAddr: 0x379E4, symSize: 0x44 } + - { offsetInCU: 0xF28, offset: 0x934B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x65C, symBinAddr: 0x37A28, symSize: 0x44 } + - { offsetInCU: 0xF4D, offset: 0x934D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvs', symObjAddr: 0x6A0, symBinAddr: 0x37A6C, symSize: 0x48 } + - { offsetInCU: 0xF76, offset: 0x93502, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x6E8, symBinAddr: 0x37AB4, symSize: 0x44 } + - { offsetInCU: 0xF9B, offset: 0x93527, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x72C, symBinAddr: 0x37AF8, symSize: 0x44 } + - { offsetInCU: 0xFC0, offset: 0x9354C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvs', symObjAddr: 0x770, symBinAddr: 0x37B3C, symSize: 0x48 } + - { offsetInCU: 0xFE9, offset: 0x93575, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x7B8, symBinAddr: 0x37B84, symSize: 0x44 } + - { offsetInCU: 0x100E, offset: 0x9359A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x7FC, symBinAddr: 0x37BC8, symSize: 0x44 } + - { offsetInCU: 0x1033, offset: 0x935BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvs', symObjAddr: 0x840, symBinAddr: 0x37C0C, symSize: 0x48 } + - { offsetInCU: 0x105C, offset: 0x935E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x888, symBinAddr: 0x37C54, symSize: 0x44 } + - { offsetInCU: 0x1081, offset: 0x9360D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x978, symBinAddr: 0x37D44, symSize: 0x44 } + - { offsetInCU: 0x10A6, offset: 0x93632, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0x9D4, symBinAddr: 0x37DA0, symSize: 0x44 } + - { offsetInCU: 0x10CB, offset: 0x93657, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0xA30, symBinAddr: 0x37DFC, symSize: 0x44 } + - { offsetInCU: 0x10F0, offset: 0x9367C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xB34, symBinAddr: 0x37F00, symSize: 0x44 } + - { offsetInCU: 0x1115, offset: 0x936A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xB78, symBinAddr: 0x37F44, symSize: 0x48 } + - { offsetInCU: 0x113A, offset: 0x936C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xBC0, symBinAddr: 0x37F8C, symSize: 0x50 } + - { offsetInCU: 0x1163, offset: 0x936EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xC10, symBinAddr: 0x37FDC, symSize: 0x44 } + - { offsetInCU: 0x14F1, offset: 0x93A7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xC54, symBinAddr: 0x38020, symSize: 0xA3C } + - { offsetInCU: 0x216A, offset: 0x946F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x1700, symBinAddr: 0x38ACC, symSize: 0x160 } + - { offsetInCU: 0x218D, offset: 0x94719, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1880, symBinAddr: 0x38C4C, symSize: 0x30 } + - { offsetInCU: 0x21B7, offset: 0x94743, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x194C, symBinAddr: 0x38D18, symSize: 0x64 } + - { offsetInCU: 0x21FC, offset: 0x94788, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x19B0, symBinAddr: 0x38D7C, symSize: 0x34 } + - { offsetInCU: 0x223A, offset: 0x947C6, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19E4, symBinAddr: 0x38DB0, symSize: 0xE0 } + - { offsetInCU: 0x22AE, offset: 0x9483A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1AC4, symBinAddr: 0x38E90, symSize: 0xA0 } + - { offsetInCU: 0x22DE, offset: 0x9486A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1B88, symBinAddr: 0x38F54, symSize: 0x1C8 } + - { offsetInCU: 0x238C, offset: 0x94918, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1D50, symBinAddr: 0x3911C, symSize: 0x1B8 } + - { offsetInCU: 0x245C, offset: 0x949E8, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x2278, symBinAddr: 0x39644, symSize: 0x1C4 } + - { offsetInCU: 0x2511, offset: 0x94A9D, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2460, symBinAddr: 0x3982C, symSize: 0x354 } + - { offsetInCU: 0x25F4, offset: 0x94B80, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x27B4, symBinAddr: 0x39B80, symSize: 0x338 } + - { offsetInCU: 0x26D7, offset: 0x94C63, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x30BC, symBinAddr: 0x3A488, symSize: 0x340 } + - { offsetInCU: 0x27, offset: 0x94D92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A82C, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x94F32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3AC64, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x94FFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x488, symBinAddr: 0x3ACB4, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x95217, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xA78, symBinAddr: 0x3B2A4, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x9543B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A82C, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x9544F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3A84C, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x9547A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3A898, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x9549F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3A8E8, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x954C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3A92C, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x954E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3A930, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x9550A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3A974, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x95533, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3A9BC, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x95558, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3AA00, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9557D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3AA54, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x955A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3AAB0, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x955CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3AAF4, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x955F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3AB3C, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x95625, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3AB8C, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x95644, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3ABD0, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x95658, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3ABD8, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x9567B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x458, symBinAddr: 0x3AC84, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x958B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3ACF0, symSize: 0x5B4 } + - { offsetInCU: 0x27, offset: 0x95F8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3B2D0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9612A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3B708, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x961F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x488, symBinAddr: 0x3B758, symSize: 0x3C } + - { offsetInCU: 0x4CD, offset: 0x96430, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xAB4, symBinAddr: 0x3BD84, symSize: 0x20 } + - { offsetInCU: 0x6F1, offset: 0x96654, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3B2D0, symSize: 0x20 } + - { offsetInCU: 0x705, offset: 0x96668, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3B2F0, symSize: 0x4C } + - { offsetInCU: 0x730, offset: 0x96693, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3B33C, symSize: 0x50 } + - { offsetInCU: 0x755, offset: 0x966B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3B38C, symSize: 0x44 } + - { offsetInCU: 0x77A, offset: 0x966DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3B3D0, symSize: 0x4 } + - { offsetInCU: 0x79B, offset: 0x966FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3B3D4, symSize: 0x44 } + - { offsetInCU: 0x7C0, offset: 0x96723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3B418, symSize: 0x48 } + - { offsetInCU: 0x7E9, offset: 0x9674C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3B460, symSize: 0x44 } + - { offsetInCU: 0x80E, offset: 0x96771, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3B4A4, symSize: 0x54 } + - { offsetInCU: 0x833, offset: 0x96796, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3B4F8, symSize: 0x5C } + - { offsetInCU: 0x85C, offset: 0x967BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3B554, symSize: 0x44 } + - { offsetInCU: 0x881, offset: 0x967E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3B598, symSize: 0x48 } + - { offsetInCU: 0x8A6, offset: 0x96809, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3B5E0, symSize: 0x50 } + - { offsetInCU: 0x8DB, offset: 0x9683E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3B630, symSize: 0x44 } + - { offsetInCU: 0x8FA, offset: 0x9685D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3B674, symSize: 0x8 } + - { offsetInCU: 0x90E, offset: 0x96871, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3B67C, symSize: 0x8C } + - { offsetInCU: 0x931, offset: 0x96894, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x458, symBinAddr: 0x3B728, symSize: 0x30 } + - { offsetInCU: 0xB6F, offset: 0x96AD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3B794, symSize: 0x5F0 } + - { offsetInCU: 0x393, offset: 0x97549, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x15F0, symBinAddr: 0x3D3A0, symSize: 0x20 } + - { offsetInCU: 0x761, offset: 0x97917, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x1640, symBinAddr: 0x3D3F0, symSize: 0x74 } + - { offsetInCU: 0x790, offset: 0x97946, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x16B4, symBinAddr: 0x3D464, symSize: 0x20 } + - { offsetInCU: 0xA9A, offset: 0x97C50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x3BDB0, symSize: 0x20 } + - { offsetInCU: 0xAAE, offset: 0x97C64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3BDD0, symSize: 0x48 } + - { offsetInCU: 0xAD3, offset: 0x97C89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3BE18, symSize: 0x5C } + - { offsetInCU: 0xAFC, offset: 0x97CB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3BE74, symSize: 0x44 } + - { offsetInCU: 0xB21, offset: 0x97CD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0x108, symBinAddr: 0x3BEB8, symSize: 0x4C } + - { offsetInCU: 0xB46, offset: 0x97CFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x154, symBinAddr: 0x3BF04, symSize: 0x50 } + - { offsetInCU: 0xB6B, offset: 0x97D21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x1A4, symBinAddr: 0x3BF54, symSize: 0x44 } + - { offsetInCU: 0xB90, offset: 0x97D46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1E8, symBinAddr: 0x3BF98, symSize: 0x54 } + - { offsetInCU: 0xBB5, offset: 0x97D6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x23C, symBinAddr: 0x3BFEC, symSize: 0x50 } + - { offsetInCU: 0xBDA, offset: 0x97D90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x28C, symBinAddr: 0x3C03C, symSize: 0x44 } + - { offsetInCU: 0xBFF, offset: 0x97DB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2E8, symBinAddr: 0x3C098, symSize: 0x44 } + - { offsetInCU: 0xC24, offset: 0x97DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x32C, symBinAddr: 0x3C0DC, symSize: 0x4 } + - { offsetInCU: 0xC45, offset: 0x97DFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x348, symBinAddr: 0x3C0F8, symSize: 0x44 } + - { offsetInCU: 0xC6A, offset: 0x97E20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3A4, symBinAddr: 0x3C154, symSize: 0x44 } + - { offsetInCU: 0xC8F, offset: 0x97E45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x490, symBinAddr: 0x3C240, symSize: 0x44 } + - { offsetInCU: 0xCAE, offset: 0x97E64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivg', symObjAddr: 0x4D4, symBinAddr: 0x3C284, symSize: 0x44 } + - { offsetInCU: 0xCD3, offset: 0x97E89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivs', symObjAddr: 0x518, symBinAddr: 0x3C2C8, symSize: 0x48 } + - { offsetInCU: 0xCFC, offset: 0x97EB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x560, symBinAddr: 0x3C310, symSize: 0x44 } + - { offsetInCU: 0xD21, offset: 0x97ED7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x3C414, symSize: 0x44 } + - { offsetInCU: 0xD46, offset: 0x97EFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x6A8, symBinAddr: 0x3C458, symSize: 0x54 } + - { offsetInCU: 0xD65, offset: 0x97F1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x6FC, symBinAddr: 0x3C4AC, symSize: 0x5C } + - { offsetInCU: 0xD8E, offset: 0x97F44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x758, symBinAddr: 0x3C508, symSize: 0x44 } + - { offsetInCU: 0xDB3, offset: 0x97F69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x848, symBinAddr: 0x3C5F8, symSize: 0x44 } + - { offsetInCU: 0xDD8, offset: 0x97F8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivg', symObjAddr: 0x88C, symBinAddr: 0x3C63C, symSize: 0x44 } + - { offsetInCU: 0xDFD, offset: 0x97FB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivs', symObjAddr: 0x8D0, symBinAddr: 0x3C680, symSize: 0x48 } + - { offsetInCU: 0xE26, offset: 0x97FDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x918, symBinAddr: 0x3C6C8, symSize: 0x44 } + - { offsetInCU: 0x11CC, offset: 0x98382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x95C, symBinAddr: 0x3C70C, symSize: 0xB2C } + - { offsetInCU: 0x1E95, offset: 0x9904B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x14F8, symBinAddr: 0x3D2A8, symSize: 0xF8 } + - { offsetInCU: 0x1EB8, offset: 0x9906E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1610, symBinAddr: 0x3D3C0, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x990D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D4B0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x99278, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3D8E8, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x99343, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x488, symBinAddr: 0x3D938, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x9955D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xA78, symBinAddr: 0x3DF28, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x99781, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D4B0, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x99795, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3D4D0, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x997C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3D51C, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x997E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3D56C, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x9980A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3D5B0, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x9982B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3D5B4, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x99850, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3D5F8, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x99879, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3D640, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x9989E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3D684, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x998C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3D6D8, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x998EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3D734, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x99911, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3D778, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x99936, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3D7C0, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x9996B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3D810, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x9998A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3D854, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x9999E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3D85C, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x999C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x458, symBinAddr: 0x3D908, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x99BF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3D974, symSize: 0x5B4 } + - { offsetInCU: 0x27, offset: 0x9A2D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DF54, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9A470, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3E38C, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x9A53B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x488, symBinAddr: 0x3E3DC, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x9A755, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xAB4, symBinAddr: 0x3EA08, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x9A979, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DF54, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x9A98D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3DF74, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x9A9B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3DFC0, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x9A9DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3E010, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x9AA02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3E054, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x9AA23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3E058, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x9AA48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3E09C, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x9AA71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3E0E4, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x9AA96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3E128, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9AABB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3E17C, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x9AAE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3E1D8, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x9AB09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3E21C, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x9AB2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3E264, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x9AB63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3E2B4, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x9AB82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3E2F8, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x9AB96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3E300, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x9ABB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x458, symBinAddr: 0x3E3AC, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x9ADF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3E418, symSize: 0x5F0 } + - { offsetInCU: 0x27, offset: 0x9B4FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3EA34, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9B69C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3EE6C, symSize: 0x9C } + - { offsetInCU: 0x2C7, offset: 0x9B79C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x504, symBinAddr: 0x3EF38, symSize: 0x4C } + - { offsetInCU: 0x5A4, offset: 0x9BA79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xC64, symBinAddr: 0x3F698, symSize: 0x20 } + - { offsetInCU: 0x807, offset: 0x9BCDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3EA34, symSize: 0x20 } + - { offsetInCU: 0x81B, offset: 0x9BCF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x3EA54, symSize: 0x48 } + - { offsetInCU: 0x846, offset: 0x9BD1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x3EA9C, symSize: 0x50 } + - { offsetInCU: 0x87B, offset: 0x9BD50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x3EAEC, symSize: 0x44 } + - { offsetInCU: 0x89A, offset: 0x9BD6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x3EB30, symSize: 0x4 } + - { offsetInCU: 0x8BB, offset: 0x9BD90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3EB34, symSize: 0x44 } + - { offsetInCU: 0x8E0, offset: 0x9BDB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x3EB78, symSize: 0x48 } + - { offsetInCU: 0x909, offset: 0x9BDDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x3EBC0, symSize: 0x44 } + - { offsetInCU: 0x92E, offset: 0x9BE03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x3EC04, symSize: 0x54 } + - { offsetInCU: 0x953, offset: 0x9BE28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x3EC58, symSize: 0x5C } + - { offsetInCU: 0x97C, offset: 0x9BE51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x3ECB4, symSize: 0x44 } + - { offsetInCU: 0x9A1, offset: 0x9BE76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x3ECF8, symSize: 0x48 } + - { offsetInCU: 0x9C6, offset: 0x9BE9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x3ED40, symSize: 0x50 } + - { offsetInCU: 0x9FB, offset: 0x9BED0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x3ED90, symSize: 0x44 } + - { offsetInCU: 0xA1A, offset: 0x9BEEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x3EDD4, symSize: 0x8 } + - { offsetInCU: 0xA2E, offset: 0x9BF03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x3EDDC, symSize: 0x90 } + - { offsetInCU: 0xA64, offset: 0x9BF39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x4D4, symBinAddr: 0x3EF08, symSize: 0x30 } + - { offsetInCU: 0xCEE, offset: 0x9C1C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x550, symBinAddr: 0x3EF84, symSize: 0x6A4 } + - { offsetInCU: 0x27, offset: 0x9CA3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F6C4, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9CBDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3FAFC, symSize: 0x9C } + - { offsetInCU: 0x2C7, offset: 0x9CCDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x504, symBinAddr: 0x3FBC8, symSize: 0x4C } + - { offsetInCU: 0x5A4, offset: 0x9CFBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xC64, symBinAddr: 0x40328, symSize: 0x20 } + - { offsetInCU: 0x807, offset: 0x9D21D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F6C4, symSize: 0x20 } + - { offsetInCU: 0x81B, offset: 0x9D231, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x3F6E4, symSize: 0x48 } + - { offsetInCU: 0x846, offset: 0x9D25C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x3F72C, symSize: 0x50 } + - { offsetInCU: 0x87B, offset: 0x9D291, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x3F77C, symSize: 0x44 } + - { offsetInCU: 0x89A, offset: 0x9D2B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x3F7C0, symSize: 0x4 } + - { offsetInCU: 0x8BB, offset: 0x9D2D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3F7C4, symSize: 0x44 } + - { offsetInCU: 0x8E0, offset: 0x9D2F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x3F808, symSize: 0x48 } + - { offsetInCU: 0x909, offset: 0x9D31F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x3F850, symSize: 0x44 } + - { offsetInCU: 0x92E, offset: 0x9D344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x3F894, symSize: 0x54 } + - { offsetInCU: 0x953, offset: 0x9D369, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x3F8E8, symSize: 0x5C } + - { offsetInCU: 0x97C, offset: 0x9D392, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x3F944, symSize: 0x44 } + - { offsetInCU: 0x9A1, offset: 0x9D3B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x3F988, symSize: 0x48 } + - { offsetInCU: 0x9C6, offset: 0x9D3DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x3F9D0, symSize: 0x50 } + - { offsetInCU: 0x9FB, offset: 0x9D411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x3FA20, symSize: 0x44 } + - { offsetInCU: 0xA1A, offset: 0x9D430, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x3FA64, symSize: 0x8 } + - { offsetInCU: 0xA2E, offset: 0x9D444, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x3FA6C, symSize: 0x90 } + - { offsetInCU: 0xA64, offset: 0x9D47A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x4D4, symBinAddr: 0x3FB98, symSize: 0x30 } + - { offsetInCU: 0xCEE, offset: 0x9D704, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x550, symBinAddr: 0x3FC14, symSize: 0x6A4 } + - { offsetInCU: 0x306, offset: 0x9E25D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x1218, symBinAddr: 0x4156C, symSize: 0x2C } + - { offsetInCU: 0x384, offset: 0x9E2DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0xA34, symBinAddr: 0x40D88, symSize: 0x20 } + - { offsetInCU: 0x62F, offset: 0x9E586, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1274, symBinAddr: 0x415C8, symSize: 0x60 } + - { offsetInCU: 0x678, offset: 0x9E5CF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS_Tgm5', symObjAddr: 0x12D4, symBinAddr: 0x41628, symSize: 0x78 } + - { offsetInCU: 0x6DC, offset: 0x9E633, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x134C, symBinAddr: 0x416A0, symSize: 0x84 } + - { offsetInCU: 0x85A, offset: 0x9E7B1, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x177C, symBinAddr: 0x41AC8, symSize: 0x3C } + - { offsetInCU: 0xB49, offset: 0x9EAA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x40354, symSize: 0x48 } + - { offsetInCU: 0xB74, offset: 0x9EACB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x48, symBinAddr: 0x4039C, symSize: 0x5C } + - { offsetInCU: 0xBA9, offset: 0x9EB00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0xA4, symBinAddr: 0x403F8, symSize: 0x44 } + - { offsetInCU: 0xBCE, offset: 0x9EB25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xE8, symBinAddr: 0x4043C, symSize: 0x4C } + - { offsetInCU: 0xBED, offset: 0x9EB44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x134, symBinAddr: 0x40488, symSize: 0x50 } + - { offsetInCU: 0xC1E, offset: 0x9EB75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x184, symBinAddr: 0x404D8, symSize: 0x44 } + - { offsetInCU: 0xC43, offset: 0x9EB9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x40534, symSize: 0x44 } + - { offsetInCU: 0xC68, offset: 0x9EBBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x224, symBinAddr: 0x40578, symSize: 0x4C } + - { offsetInCU: 0xC87, offset: 0x9EBDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x270, symBinAddr: 0x405C4, symSize: 0x50 } + - { offsetInCU: 0xCB8, offset: 0x9EC0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2C0, symBinAddr: 0x40614, symSize: 0x44 } + - { offsetInCU: 0xCDD, offset: 0x9EC34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x40658, symSize: 0x4 } + - { offsetInCU: 0xCFE, offset: 0x9EC55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x320, symBinAddr: 0x40674, symSize: 0x44 } + - { offsetInCU: 0xD23, offset: 0x9EC7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x37C, symBinAddr: 0x406D0, symSize: 0x44 } + - { offsetInCU: 0xD48, offset: 0x9EC9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x468, symBinAddr: 0x407BC, symSize: 0x44 } + - { offsetInCU: 0xD6D, offset: 0x9ECC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x408B4, symSize: 0x44 } + - { offsetInCU: 0xD92, offset: 0x9ECE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x409B8, symSize: 0x44 } + - { offsetInCU: 0xDBD, offset: 0x9ED14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x6A8, symBinAddr: 0x409FC, symSize: 0xBC } + - { offsetInCU: 0xDD1, offset: 0x9ED28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x764, symBinAddr: 0x40AB8, symSize: 0x2D0 } + - { offsetInCU: 0x100F, offset: 0x9EF66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0xA54, symBinAddr: 0x40DA8, symSize: 0x778 } + - { offsetInCU: 0x1E33, offset: 0x9FD8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0x11CC, symBinAddr: 0x41520, symSize: 0x20 } + - { offsetInCU: 0x1E47, offset: 0x9FD9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0x11EC, symBinAddr: 0x41540, symSize: 0x2C } + - { offsetInCU: 0x1EA0, offset: 0x9FDF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x1244, symBinAddr: 0x41598, symSize: 0x30 } + - { offsetInCU: 0x1F02, offset: 0x9FE59, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x13D0, symBinAddr: 0x41724, symSize: 0x1C8 } + - { offsetInCU: 0x2001, offset: 0x9FF58, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x15A0, symBinAddr: 0x418EC, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0xA00F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x41B24, symSize: 0xC8 } + - { offsetInCU: 0x390, offset: 0xA0459, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0x998, symBinAddr: 0x424BC, symSize: 0x20 } + - { offsetInCU: 0x4EC, offset: 0xA05B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x41B24, symSize: 0xC8 } + - { offsetInCU: 0x549, offset: 0xA0612, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xC8, symBinAddr: 0x41BEC, symSize: 0xC4 } + - { offsetInCU: 0x586, offset: 0xA064F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x18C, symBinAddr: 0x41CB0, symSize: 0x48 } + - { offsetInCU: 0x5A0, offset: 0xA0669, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x1D4, symBinAddr: 0x41CF8, symSize: 0x50 } + - { offsetInCU: 0x5B4, offset: 0xA067D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x224, symBinAddr: 0x41D48, symSize: 0x3C } + - { offsetInCU: 0x5C8, offset: 0xA0691, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x260, symBinAddr: 0x41D84, symSize: 0x30 } + - { offsetInCU: 0x5DC, offset: 0xA06A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x290, symBinAddr: 0x41DB4, symSize: 0x3C } + - { offsetInCU: 0x5F0, offset: 0xA06B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x2CC, symBinAddr: 0x41DF0, symSize: 0x3C } + - { offsetInCU: 0x604, offset: 0xA06CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x308, symBinAddr: 0x41E2C, symSize: 0x30 } + - { offsetInCU: 0x618, offset: 0xA06E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x338, symBinAddr: 0x41E5C, symSize: 0x3C } + - { offsetInCU: 0x62C, offset: 0xA06F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x374, symBinAddr: 0x41E98, symSize: 0x3C } + - { offsetInCU: 0x640, offset: 0xA0709, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x3B0, symBinAddr: 0x41ED4, symSize: 0x30 } + - { offsetInCU: 0x654, offset: 0xA071D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x3E0, symBinAddr: 0x41F04, symSize: 0x3C } + - { offsetInCU: 0x668, offset: 0xA0731, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x41C, symBinAddr: 0x41F40, symSize: 0x3C } + - { offsetInCU: 0x67C, offset: 0xA0745, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x458, symBinAddr: 0x41F7C, symSize: 0x30 } + - { offsetInCU: 0x690, offset: 0xA0759, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x488, symBinAddr: 0x41FAC, symSize: 0x3C } + - { offsetInCU: 0x6A4, offset: 0xA076D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x4C4, symBinAddr: 0x41FE8, symSize: 0x3C } + - { offsetInCU: 0x6B8, offset: 0xA0781, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x500, symBinAddr: 0x42024, symSize: 0x4 } + - { offsetInCU: 0x6CC, offset: 0xA0795, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x504, symBinAddr: 0x42028, symSize: 0x30 } + - { offsetInCU: 0x6E0, offset: 0xA07A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x534, symBinAddr: 0x42058, symSize: 0x3C } + - { offsetInCU: 0x6F4, offset: 0xA07BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x570, symBinAddr: 0x42094, symSize: 0x3C } + - { offsetInCU: 0x708, offset: 0xA07D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x5AC, symBinAddr: 0x420D0, symSize: 0xA0 } + - { offsetInCU: 0x731, offset: 0xA07FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x64C, symBinAddr: 0x42170, symSize: 0xA4 } + - { offsetInCU: 0x7E3, offset: 0xA08AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x6F0, symBinAddr: 0x42214, symSize: 0x268 } + - { offsetInCU: 0x994, offset: 0xA0A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0x958, symBinAddr: 0x4247C, symSize: 0x1C } + - { offsetInCU: 0x9C5, offset: 0xA0A8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0x974, symBinAddr: 0x42498, symSize: 0x24 } + - { offsetInCU: 0x18D, offset: 0xA0C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xE8C, symBinAddr: 0x43340, symSize: 0xE4 } + - { offsetInCU: 0x1A9, offset: 0xA0C78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xF70, symBinAddr: 0x43424, symSize: 0x54 } + - { offsetInCU: 0x1FB, offset: 0xA0CCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x133C, symBinAddr: 0x437F0, symSize: 0x3C } + - { offsetInCU: 0x24E, offset: 0xA0D1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x290, symBinAddr: 0x42780, symSize: 0x20 } + - { offsetInCU: 0x262, offset: 0xA0D31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x2B0, symBinAddr: 0x427A0, symSize: 0x20 } + - { offsetInCU: 0x276, offset: 0xA0D45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x440, symBinAddr: 0x428F4, symSize: 0x20 } + - { offsetInCU: 0x28A, offset: 0xA0D59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x19D0, symBinAddr: 0x43E84, symSize: 0x18 } + - { offsetInCU: 0x29E, offset: 0xA0D6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x19E8, symBinAddr: 0x43E9C, symSize: 0x20 } + - { offsetInCU: 0x2B2, offset: 0xA0D81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1A08, symBinAddr: 0x43EBC, symSize: 0x18 } + - { offsetInCU: 0x2C6, offset: 0xA0D95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x1A68, symBinAddr: 0x43F1C, symSize: 0xC } + - { offsetInCU: 0x2DA, offset: 0xA0DA9, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1A74, symBinAddr: 0x43F28, symSize: 0x10 } + - { offsetInCU: 0x2EE, offset: 0xA0DBD, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1A84, symBinAddr: 0x43F38, symSize: 0x8 } + - { offsetInCU: 0x302, offset: 0xA0DD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1A8C, symBinAddr: 0x43F40, symSize: 0x10 } + - { offsetInCU: 0x316, offset: 0xA0DE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1A9C, symBinAddr: 0x43F50, symSize: 0x10 } + - { offsetInCU: 0x32A, offset: 0xA0DF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1AAC, symBinAddr: 0x43F60, symSize: 0x10 } + - { offsetInCU: 0x33E, offset: 0xA0E0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1ABC, symBinAddr: 0x43F70, symSize: 0x10 } + - { offsetInCU: 0x352, offset: 0xA0E21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1ACC, symBinAddr: 0x43F80, symSize: 0x10 } + - { offsetInCU: 0x366, offset: 0xA0E35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1ADC, symBinAddr: 0x43F90, symSize: 0x4 } + - { offsetInCU: 0x37A, offset: 0xA0E49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1AE0, symBinAddr: 0x43F94, symSize: 0x50 } + - { offsetInCU: 0x38E, offset: 0xA0E5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B30, symBinAddr: 0x43FE4, symSize: 0xC } + - { offsetInCU: 0x3A2, offset: 0xA0E71, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B3C, symBinAddr: 0x43FF0, symSize: 0xC } + - { offsetInCU: 0x3B6, offset: 0xA0E85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1D8C, symBinAddr: 0x44240, symSize: 0x7C } + - { offsetInCU: 0x3CA, offset: 0xA0E99, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E08, symBinAddr: 0x442BC, symSize: 0x2C } + - { offsetInCU: 0x40A, offset: 0xA0ED9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0x109C, symBinAddr: 0x43550, symSize: 0x50 } + - { offsetInCU: 0x426, offset: 0xA0EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0x10EC, symBinAddr: 0x435A0, symSize: 0x40 } + - { offsetInCU: 0x442, offset: 0xA0F11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0x112C, symBinAddr: 0x435E0, symSize: 0x4 } + - { offsetInCU: 0x45E, offset: 0xA0F2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0x1130, symBinAddr: 0x435E4, symSize: 0x4 } + - { offsetInCU: 0x499, offset: 0xA0F68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1134, symBinAddr: 0x435E8, symSize: 0x10 } + - { offsetInCU: 0x4B9, offset: 0xA0F88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1134, symBinAddr: 0x435E8, symSize: 0x10 } + - { offsetInCU: 0x4CA, offset: 0xA0F99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0x1144, symBinAddr: 0x435F8, symSize: 0x60 } + - { offsetInCU: 0x4E6, offset: 0xA0FB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x11A4, symBinAddr: 0x43658, symSize: 0x64 } + - { offsetInCU: 0x502, offset: 0xA0FD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1208, symBinAddr: 0x436BC, symSize: 0x50 } + - { offsetInCU: 0x542, offset: 0xA1011, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x12EC, symBinAddr: 0x437A0, symSize: 0x50 } + - { offsetInCU: 0x58C, offset: 0xA105B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x1378, symBinAddr: 0x4382C, symSize: 0x78 } + - { offsetInCU: 0x5E4, offset: 0xA10B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x13F0, symBinAddr: 0x438A4, symSize: 0x60 } + - { offsetInCU: 0x622, offset: 0xA10F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x1450, symBinAddr: 0x43904, symSize: 0x34 } + - { offsetInCU: 0x63E, offset: 0xA110D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1484, symBinAddr: 0x43938, symSize: 0x8 } + - { offsetInCU: 0x674, offset: 0xA1143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x148C, symBinAddr: 0x43940, symSize: 0x5C } + - { offsetInCU: 0x6A5, offset: 0xA1174, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x14E8, symBinAddr: 0x4399C, symSize: 0x5C } + - { offsetInCU: 0x6C1, offset: 0xA1190, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x1544, symBinAddr: 0x439F8, symSize: 0x70 } + - { offsetInCU: 0x6E4, offset: 0xA11B3, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x1758, symBinAddr: 0x43C0C, symSize: 0x4 } + - { offsetInCU: 0x70D, offset: 0xA11DC, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B48, symBinAddr: 0x43FFC, symSize: 0x178 } + - { offsetInCU: 0x894, offset: 0xA1363, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x424F0, symSize: 0x54 } + - { offsetInCU: 0x8A8, offset: 0xA1377, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x170, symBinAddr: 0x42660, symSize: 0x120 } + - { offsetInCU: 0x917, offset: 0xA13E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x30C, symBinAddr: 0x427C0, symSize: 0x78 } + - { offsetInCU: 0x967, offset: 0xA1436, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x384, symBinAddr: 0x42838, symSize: 0xBC } + - { offsetInCU: 0x9D1, offset: 0xA14A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x460, symBinAddr: 0x42914, symSize: 0x60 } + - { offsetInCU: 0x9F9, offset: 0xA14C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x4C0, symBinAddr: 0x42974, symSize: 0x140 } + - { offsetInCU: 0xA61, offset: 0xA1530, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x600, symBinAddr: 0x42AB4, symSize: 0x64 } + - { offsetInCU: 0xAA3, offset: 0xA1572, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x664, symBinAddr: 0x42B18, symSize: 0x90 } + - { offsetInCU: 0xB01, offset: 0xA15D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x6F4, symBinAddr: 0x42BA8, symSize: 0xC4 } + - { offsetInCU: 0xB53, offset: 0xA1622, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x7B8, symBinAddr: 0x42C6C, symSize: 0xDC } + - { offsetInCU: 0xB96, offset: 0xA1665, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x894, symBinAddr: 0x42D48, symSize: 0x104 } + - { offsetInCU: 0xBE6, offset: 0xA16B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x998, symBinAddr: 0x42E4C, symSize: 0xD8 } + - { offsetInCU: 0xC44, offset: 0xA1713, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0xA70, symBinAddr: 0x42F24, symSize: 0xBC } + - { offsetInCU: 0xC86, offset: 0xA1755, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0xB2C, symBinAddr: 0x42FE0, symSize: 0x88 } + - { offsetInCU: 0xCE4, offset: 0xA17B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xBB4, symBinAddr: 0x43068, symSize: 0x190 } + - { offsetInCU: 0xD31, offset: 0xA1800, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xD44, symBinAddr: 0x431F8, symSize: 0xB0 } + - { offsetInCU: 0xD7F, offset: 0xA184E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xDF4, symBinAddr: 0x432A8, symSize: 0x24 } + - { offsetInCU: 0xDB5, offset: 0xA1884, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xE18, symBinAddr: 0x432CC, symSize: 0x2C } + - { offsetInCU: 0xDF5, offset: 0xA18C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xFC4, symBinAddr: 0x43478, symSize: 0xA8 } + - { offsetInCU: 0xE44, offset: 0xA1913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0x106C, symBinAddr: 0x43520, symSize: 0x30 } + - { offsetInCU: 0xEB2, offset: 0xA1981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x175C, symBinAddr: 0x43C10, symSize: 0x274 } +... diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml new file mode 100644 index 0000000..636892d --- /dev/null +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml @@ -0,0 +1,1666 @@ +--- +triple: 'x86_64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT' +relocations: + - { offsetInCU: 0x34, offset: 0x569F9, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x4B7D0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x56A2E, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x4B7F8, symSize: 0x0 } + - { offsetInCU: 0xAB, offset: 0x56AEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x240, symBinAddr: 0x1AB0, symSize: 0x30 } + - { offsetInCU: 0xD4, offset: 0x56B18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x1AE0, symSize: 0x10 } + - { offsetInCU: 0xF0, offset: 0x56B34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x280, symBinAddr: 0x1AF0, symSize: 0x10 } + - { offsetInCU: 0x10C, offset: 0x56B50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x82A0, symBinAddr: 0x9AF0, symSize: 0x20 } + - { offsetInCU: 0x190, offset: 0x56BD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x82C0, symBinAddr: 0x9B10, symSize: 0x80 } + - { offsetInCU: 0x280, offset: 0x56CC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x290, symBinAddr: 0x1B00, symSize: 0x130 } + - { offsetInCU: 0x3AE, offset: 0x56DF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x3C0, symBinAddr: 0x1C30, symSize: 0x10 } + - { offsetInCU: 0x629, offset: 0x5706D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xD90, symBinAddr: 0x2600, symSize: 0x100 } + - { offsetInCU: 0xB2D, offset: 0x57571, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x23E0, symBinAddr: 0x3C50, symSize: 0x10 } + - { offsetInCU: 0xB45, offset: 0x57589, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x23F0, symBinAddr: 0x3C60, symSize: 0x10 } + - { offsetInCU: 0xB96, offset: 0x575DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2480, symBinAddr: 0x3CF0, symSize: 0x10 } + - { offsetInCU: 0xBAE, offset: 0x575F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x2490, symBinAddr: 0x3D00, symSize: 0x10 } + - { offsetInCU: 0xC0E, offset: 0x57652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2520, symBinAddr: 0x3D90, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x5766A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x2530, symBinAddr: 0x3DA0, symSize: 0x10 } + - { offsetInCU: 0xC77, offset: 0x576BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x25C0, symBinAddr: 0x3E30, symSize: 0x10 } + - { offsetInCU: 0xCA6, offset: 0x576EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x2650, symBinAddr: 0x3EC0, symSize: 0x10 } + - { offsetInCU: 0xCBE, offset: 0x57702, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x2660, symBinAddr: 0x3ED0, symSize: 0x10 } + - { offsetInCU: 0xD1E, offset: 0x57762, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x26F0, symBinAddr: 0x3F60, symSize: 0x10 } + - { offsetInCU: 0xD4D, offset: 0x57791, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x2780, symBinAddr: 0x3FF0, symSize: 0x10 } + - { offsetInCU: 0xD65, offset: 0x577A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2790, symBinAddr: 0x4000, symSize: 0x10 } + - { offsetInCU: 0xDA7, offset: 0x577EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x2820, symBinAddr: 0x4090, symSize: 0x10 } + - { offsetInCU: 0xDBF, offset: 0x57803, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x2830, symBinAddr: 0x40A0, symSize: 0x10 } + - { offsetInCU: 0xE01, offset: 0x57845, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x28C0, symBinAddr: 0x4130, symSize: 0x10 } + - { offsetInCU: 0xE19, offset: 0x5785D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x28D0, symBinAddr: 0x4140, symSize: 0x10 } + - { offsetInCU: 0xE6A, offset: 0x578AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x2960, symBinAddr: 0x41D0, symSize: 0x10 } + - { offsetInCU: 0xE82, offset: 0x578C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x2970, symBinAddr: 0x41E0, symSize: 0x10 } + - { offsetInCU: 0xEE4, offset: 0x57928, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2A00, symBinAddr: 0x4270, symSize: 0x10 } + - { offsetInCU: 0xF13, offset: 0x57957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2A90, symBinAddr: 0x4300, symSize: 0x10 } + - { offsetInCU: 0xFAF, offset: 0x579F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x3370, symBinAddr: 0x4BE0, symSize: 0x20 } + - { offsetInCU: 0x12AC, offset: 0x57CF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4F20, symBinAddr: 0x6790, symSize: 0x30 } + - { offsetInCU: 0x1313, offset: 0x57D57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4F50, symBinAddr: 0x67C0, symSize: 0x40 } + - { offsetInCU: 0x140F, offset: 0x57E53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x72A0, symBinAddr: 0x8AF0, symSize: 0x240 } + - { offsetInCU: 0x15AF, offset: 0x57FF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x7710, symBinAddr: 0x8F60, symSize: 0x250 } + - { offsetInCU: 0x174F, offset: 0x58193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x7960, symBinAddr: 0x91B0, symSize: 0x200 } + - { offsetInCU: 0x18EF, offset: 0x58333, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x7B60, symBinAddr: 0x93B0, symSize: 0x240 } + - { offsetInCU: 0x1A8F, offset: 0x584D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x7DA0, symBinAddr: 0x95F0, symSize: 0x2A0 } + - { offsetInCU: 0x1C31, offset: 0x58675, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x8040, symBinAddr: 0x9890, symSize: 0x260 } + - { offsetInCU: 0x1EC2, offset: 0x58906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x530, symBinAddr: 0x1DA0, symSize: 0x20 } + - { offsetInCU: 0x1EDA, offset: 0x5891E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x550, symBinAddr: 0x1DC0, symSize: 0x20 } + - { offsetInCU: 0x1EF2, offset: 0x58936, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x5F0, symBinAddr: 0x1E60, symSize: 0x10 } + - { offsetInCU: 0x1F0A, offset: 0x5894E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x770, symBinAddr: 0x1FE0, symSize: 0x10 } + - { offsetInCU: 0x1F22, offset: 0x58966, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x800, symBinAddr: 0x2070, symSize: 0x10 } + - { offsetInCU: 0x1F3A, offset: 0x5897E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x920, symBinAddr: 0x2190, symSize: 0x10 } + - { offsetInCU: 0x1F52, offset: 0x58996, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x9E0, symBinAddr: 0x2250, symSize: 0x10 } + - { offsetInCU: 0x1FE0, offset: 0x58A24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xD80, symBinAddr: 0x25F0, symSize: 0x10 } + - { offsetInCU: 0x2141, offset: 0x58B85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x1480, symBinAddr: 0x2CF0, symSize: 0x10 } + - { offsetInCU: 0x2159, offset: 0x58B9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1540, symBinAddr: 0x2DB0, symSize: 0x10 } + - { offsetInCU: 0x2171, offset: 0x58BB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1550, symBinAddr: 0x2DC0, symSize: 0x10 } + - { offsetInCU: 0x2189, offset: 0x58BCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1610, symBinAddr: 0x2E80, symSize: 0x10 } + - { offsetInCU: 0x21A1, offset: 0x58BE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x16D0, symBinAddr: 0x2F40, symSize: 0x10 } + - { offsetInCU: 0x21B9, offset: 0x58BFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x1790, symBinAddr: 0x3000, symSize: 0x10 } + - { offsetInCU: 0x21D1, offset: 0x58C15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x17A0, symBinAddr: 0x3010, symSize: 0x10 } + - { offsetInCU: 0x21E9, offset: 0x58C2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x17B0, symBinAddr: 0x3020, symSize: 0x10 } + - { offsetInCU: 0x22C8, offset: 0x58D0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x2250, symBinAddr: 0x3AC0, symSize: 0x40 } + - { offsetInCU: 0x22F7, offset: 0x58D3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x2360, symBinAddr: 0x3BD0, symSize: 0x20 } + - { offsetInCU: 0x2326, offset: 0x58D6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x2380, symBinAddr: 0x3BF0, symSize: 0x20 } + - { offsetInCU: 0x2355, offset: 0x58D99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x23A0, symBinAddr: 0x3C10, symSize: 0x20 } + - { offsetInCU: 0x2384, offset: 0x58DC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x23C0, symBinAddr: 0x3C30, symSize: 0x10 } + - { offsetInCU: 0x239C, offset: 0x58DE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x23D0, symBinAddr: 0x3C40, symSize: 0x10 } + - { offsetInCU: 0x2455, offset: 0x58E99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x3390, symBinAddr: 0x4C00, symSize: 0x1F0 } + - { offsetInCU: 0x25D8, offset: 0x5901C, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x40D0, symBinAddr: 0x5940, symSize: 0x30 } + - { offsetInCU: 0x29EE, offset: 0x59432, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4F90, symBinAddr: 0x6800, symSize: 0x10 } + - { offsetInCU: 0x2A6E, offset: 0x594B2, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x51D0, symBinAddr: 0x6A40, symSize: 0x40 } + - { offsetInCU: 0x2ABC, offset: 0x59500, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x53A0, symBinAddr: 0x6C10, symSize: 0x60 } + - { offsetInCU: 0x2C73, offset: 0x596B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5B40, symBinAddr: 0x73B0, symSize: 0x10 } + - { offsetInCU: 0x2CB8, offset: 0x596FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5B50, symBinAddr: 0x73C0, symSize: 0x10 } + - { offsetInCU: 0x2CD4, offset: 0x59718, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5B60, symBinAddr: 0x73D0, symSize: 0x10 } + - { offsetInCU: 0x2CF0, offset: 0x59734, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x5B70, symBinAddr: 0x73E0, symSize: 0x10 } + - { offsetInCU: 0x2D0C, offset: 0x59750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5B80, symBinAddr: 0x73F0, symSize: 0x10 } + - { offsetInCU: 0x2D28, offset: 0x5976C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x5B90, symBinAddr: 0x7400, symSize: 0x10 } + - { offsetInCU: 0x2D44, offset: 0x59788, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5BA0, symBinAddr: 0x7410, symSize: 0x220 } + - { offsetInCU: 0x2DCC, offset: 0x59810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5DC0, symBinAddr: 0x7630, symSize: 0x130 } + - { offsetInCU: 0x2F04, offset: 0x59948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5EF0, symBinAddr: 0x7760, symSize: 0x30 } + - { offsetInCU: 0x2F55, offset: 0x59999, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5F20, symBinAddr: 0x7790, symSize: 0x10 } + - { offsetInCU: 0x2FB2, offset: 0x599F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5F30, symBinAddr: 0x77A0, symSize: 0x10 } + - { offsetInCU: 0x300F, offset: 0x59A53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5F40, symBinAddr: 0x77B0, symSize: 0x10 } + - { offsetInCU: 0x306C, offset: 0x59AB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5F50, symBinAddr: 0x77C0, symSize: 0x10 } + - { offsetInCU: 0x30C9, offset: 0x59B0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5F60, symBinAddr: 0x77D0, symSize: 0x10 } + - { offsetInCU: 0x3126, offset: 0x59B6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5F70, symBinAddr: 0x77E0, symSize: 0x10 } + - { offsetInCU: 0x3183, offset: 0x59BC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5F80, symBinAddr: 0x77F0, symSize: 0x10 } + - { offsetInCU: 0x31DA, offset: 0x59C1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5F90, symBinAddr: 0x7800, symSize: 0x10 } + - { offsetInCU: 0x320D, offset: 0x59C51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5FA0, symBinAddr: 0x7810, symSize: 0x10 } + - { offsetInCU: 0x3225, offset: 0x59C69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5FB0, symBinAddr: 0x7820, symSize: 0x20 } + - { offsetInCU: 0x323D, offset: 0x59C81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5FD0, symBinAddr: 0x7840, symSize: 0x20 } + - { offsetInCU: 0x3255, offset: 0x59C99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5FF0, symBinAddr: 0x7860, symSize: 0x10 } + - { offsetInCU: 0x326D, offset: 0x59CB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x6000, symBinAddr: 0x7870, symSize: 0x10 } + - { offsetInCU: 0x3285, offset: 0x59CC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x6010, symBinAddr: 0x7880, symSize: 0x10 } + - { offsetInCU: 0x329D, offset: 0x59CE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x6020, symBinAddr: 0x7890, symSize: 0x10 } + - { offsetInCU: 0x32B5, offset: 0x59CF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x6030, symBinAddr: 0x78A0, symSize: 0x10 } + - { offsetInCU: 0x32CD, offset: 0x59D11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x6040, symBinAddr: 0x78B0, symSize: 0x30 } + - { offsetInCU: 0x32E5, offset: 0x59D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x6070, symBinAddr: 0x78E0, symSize: 0x10 } + - { offsetInCU: 0x32FD, offset: 0x59D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x60C0, symBinAddr: 0x7930, symSize: 0x10 } + - { offsetInCU: 0x3315, offset: 0x59D59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x60D0, symBinAddr: 0x7940, symSize: 0x10 } + - { offsetInCU: 0x332D, offset: 0x59D71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x60E0, symBinAddr: 0x7950, symSize: 0x10 } + - { offsetInCU: 0x3345, offset: 0x59D89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x60F0, symBinAddr: 0x7960, symSize: 0x10 } + - { offsetInCU: 0x335D, offset: 0x59DA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x6100, symBinAddr: 0x7970, symSize: 0x10 } + - { offsetInCU: 0x3375, offset: 0x59DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x6110, symBinAddr: 0x7980, symSize: 0x10 } + - { offsetInCU: 0x338D, offset: 0x59DD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x6120, symBinAddr: 0x7990, symSize: 0x10 } + - { offsetInCU: 0x33A5, offset: 0x59DE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6130, symBinAddr: 0x79A0, symSize: 0x10 } + - { offsetInCU: 0x33BD, offset: 0x59E01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x6140, symBinAddr: 0x79B0, symSize: 0x10 } + - { offsetInCU: 0x33D5, offset: 0x59E19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x6150, symBinAddr: 0x79C0, symSize: 0x10 } + - { offsetInCU: 0x33ED, offset: 0x59E31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x6320, symBinAddr: 0x7B90, symSize: 0x20 } + - { offsetInCU: 0x341C, offset: 0x59E60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6340, symBinAddr: 0x7BB0, symSize: 0x10 } + - { offsetInCU: 0x3434, offset: 0x59E78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x6350, symBinAddr: 0x7BC0, symSize: 0x10 } + - { offsetInCU: 0x344C, offset: 0x59E90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6360, symBinAddr: 0x7BD0, symSize: 0x10 } + - { offsetInCU: 0x3464, offset: 0x59EA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x6370, symBinAddr: 0x7BE0, symSize: 0x10 } + - { offsetInCU: 0x347C, offset: 0x59EC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x6380, symBinAddr: 0x7BF0, symSize: 0x10 } + - { offsetInCU: 0x3494, offset: 0x59ED8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x6390, symBinAddr: 0x7C00, symSize: 0x10 } + - { offsetInCU: 0x34AC, offset: 0x59EF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x63A0, symBinAddr: 0x7C10, symSize: 0x10 } + - { offsetInCU: 0x34C4, offset: 0x59F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x63B0, symBinAddr: 0x7C20, symSize: 0x10 } + - { offsetInCU: 0x34DC, offset: 0x59F20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x63C0, symBinAddr: 0x7C30, symSize: 0x10 } + - { offsetInCU: 0x34F4, offset: 0x59F38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x63D0, symBinAddr: 0x7C40, symSize: 0x10 } + - { offsetInCU: 0x350C, offset: 0x59F50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x63E0, symBinAddr: 0x7C50, symSize: 0x10 } + - { offsetInCU: 0x3524, offset: 0x59F68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x63F0, symBinAddr: 0x7C60, symSize: 0x10 } + - { offsetInCU: 0x353C, offset: 0x59F80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x6400, symBinAddr: 0x7C70, symSize: 0x10 } + - { offsetInCU: 0x3554, offset: 0x59F98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6410, symBinAddr: 0x7C80, symSize: 0x10 } + - { offsetInCU: 0x356C, offset: 0x59FB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x6420, symBinAddr: 0x7C90, symSize: 0x10 } + - { offsetInCU: 0x3584, offset: 0x59FC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x6430, symBinAddr: 0x7CA0, symSize: 0x10 } + - { offsetInCU: 0x359C, offset: 0x59FE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x6440, symBinAddr: 0x7CB0, symSize: 0x10 } + - { offsetInCU: 0x35B4, offset: 0x59FF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x6450, symBinAddr: 0x7CC0, symSize: 0x10 } + - { offsetInCU: 0x35CC, offset: 0x5A010, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x6460, symBinAddr: 0x7CD0, symSize: 0x10 } + - { offsetInCU: 0x35E4, offset: 0x5A028, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x6470, symBinAddr: 0x7CE0, symSize: 0x10 } + - { offsetInCU: 0x35FC, offset: 0x5A040, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x6480, symBinAddr: 0x7CF0, symSize: 0x20 } + - { offsetInCU: 0x363F, offset: 0x5A083, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x64A0, symBinAddr: 0x7D10, symSize: 0x10 } + - { offsetInCU: 0x3657, offset: 0x5A09B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x64B0, symBinAddr: 0x7D20, symSize: 0x10 } + - { offsetInCU: 0x366F, offset: 0x5A0B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x64C0, symBinAddr: 0x7D30, symSize: 0x10 } + - { offsetInCU: 0x3687, offset: 0x5A0CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x64D0, symBinAddr: 0x7D40, symSize: 0x10 } + - { offsetInCU: 0x369F, offset: 0x5A0E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x64E0, symBinAddr: 0x7D50, symSize: 0x10 } + - { offsetInCU: 0x36B7, offset: 0x5A0FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x64F0, symBinAddr: 0x7D60, symSize: 0x10 } + - { offsetInCU: 0x36CF, offset: 0x5A113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6500, symBinAddr: 0x7D70, symSize: 0x10 } + - { offsetInCU: 0x36E7, offset: 0x5A12B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6510, symBinAddr: 0x7D80, symSize: 0x10 } + - { offsetInCU: 0x36FF, offset: 0x5A143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x6520, symBinAddr: 0x7D90, symSize: 0x10 } + - { offsetInCU: 0x3717, offset: 0x5A15B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x6530, symBinAddr: 0x7DA0, symSize: 0x10 } + - { offsetInCU: 0x372F, offset: 0x5A173, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x6540, symBinAddr: 0x7DB0, symSize: 0x10 } + - { offsetInCU: 0x3747, offset: 0x5A18B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x6550, symBinAddr: 0x7DC0, symSize: 0x10 } + - { offsetInCU: 0x375F, offset: 0x5A1A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x6560, symBinAddr: 0x7DD0, symSize: 0x10 } + - { offsetInCU: 0x3777, offset: 0x5A1BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x6570, symBinAddr: 0x7DE0, symSize: 0x10 } + - { offsetInCU: 0x378F, offset: 0x5A1D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6580, symBinAddr: 0x7DF0, symSize: 0x10 } + - { offsetInCU: 0x37A7, offset: 0x5A1EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6590, symBinAddr: 0x7E00, symSize: 0x10 } + - { offsetInCU: 0x37BF, offset: 0x5A203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x65A0, symBinAddr: 0x7E10, symSize: 0x10 } + - { offsetInCU: 0x37D7, offset: 0x5A21B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x65B0, symBinAddr: 0x7E20, symSize: 0x10 } + - { offsetInCU: 0x37EF, offset: 0x5A233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x65C0, symBinAddr: 0x7E30, symSize: 0x10 } + - { offsetInCU: 0x3807, offset: 0x5A24B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x65D0, symBinAddr: 0x7E40, symSize: 0x10 } + - { offsetInCU: 0x381F, offset: 0x5A263, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x65E0, symBinAddr: 0x7E50, symSize: 0x10 } + - { offsetInCU: 0x3837, offset: 0x5A27B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x65F0, symBinAddr: 0x7E60, symSize: 0x20 } + - { offsetInCU: 0x384F, offset: 0x5A293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x6610, symBinAddr: 0x7E80, symSize: 0x10 } + - { offsetInCU: 0x3867, offset: 0x5A2AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x6620, symBinAddr: 0x7E90, symSize: 0x10 } + - { offsetInCU: 0x387F, offset: 0x5A2C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x6630, symBinAddr: 0x7EA0, symSize: 0x10 } + - { offsetInCU: 0x3897, offset: 0x5A2DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6640, symBinAddr: 0x7EB0, symSize: 0x10 } + - { offsetInCU: 0x38AF, offset: 0x5A2F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6650, symBinAddr: 0x7EC0, symSize: 0x10 } + - { offsetInCU: 0x38C7, offset: 0x5A30B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6660, symBinAddr: 0x7ED0, symSize: 0x10 } + - { offsetInCU: 0x38DF, offset: 0x5A323, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6670, symBinAddr: 0x7EE0, symSize: 0x10 } + - { offsetInCU: 0x38F7, offset: 0x5A33B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x6680, symBinAddr: 0x7EF0, symSize: 0x10 } + - { offsetInCU: 0x390F, offset: 0x5A353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x6690, symBinAddr: 0x7F00, symSize: 0x10 } + - { offsetInCU: 0x3927, offset: 0x5A36B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x66A0, symBinAddr: 0x7F10, symSize: 0x10 } + - { offsetInCU: 0x393F, offset: 0x5A383, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x66B0, symBinAddr: 0x7F20, symSize: 0x10 } + - { offsetInCU: 0x3957, offset: 0x5A39B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x66C0, symBinAddr: 0x7F30, symSize: 0x10 } + - { offsetInCU: 0x396F, offset: 0x5A3B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x66D0, symBinAddr: 0x7F40, symSize: 0x10 } + - { offsetInCU: 0x3987, offset: 0x5A3CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x66E0, symBinAddr: 0x7F50, symSize: 0x10 } + - { offsetInCU: 0x399F, offset: 0x5A3E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x66F0, symBinAddr: 0x7F60, symSize: 0x10 } + - { offsetInCU: 0x39B7, offset: 0x5A3FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6700, symBinAddr: 0x7F70, symSize: 0x10 } + - { offsetInCU: 0x39CF, offset: 0x5A413, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6710, symBinAddr: 0x7F80, symSize: 0x10 } + - { offsetInCU: 0x39E7, offset: 0x5A42B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x6720, symBinAddr: 0x7F90, symSize: 0x10 } + - { offsetInCU: 0x39FF, offset: 0x5A443, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x6730, symBinAddr: 0x7FA0, symSize: 0x10 } + - { offsetInCU: 0x3A17, offset: 0x5A45B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x6740, symBinAddr: 0x7FB0, symSize: 0x20 } + - { offsetInCU: 0x3A2F, offset: 0x5A473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x6760, symBinAddr: 0x7FD0, symSize: 0x10 } + - { offsetInCU: 0x3A47, offset: 0x5A48B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x6770, symBinAddr: 0x7FE0, symSize: 0x10 } + - { offsetInCU: 0x3A5F, offset: 0x5A4A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x6780, symBinAddr: 0x7FF0, symSize: 0x10 } + - { offsetInCU: 0x3A77, offset: 0x5A4BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x6790, symBinAddr: 0x8000, symSize: 0x10 } + - { offsetInCU: 0x3A8F, offset: 0x5A4D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x67A0, symBinAddr: 0x8010, symSize: 0x10 } + - { offsetInCU: 0x3AA7, offset: 0x5A4EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x67B0, symBinAddr: 0x8020, symSize: 0x10 } + - { offsetInCU: 0x3ABF, offset: 0x5A503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x67C0, symBinAddr: 0x8030, symSize: 0x10 } + - { offsetInCU: 0x3AD7, offset: 0x5A51B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x67D0, symBinAddr: 0x8040, symSize: 0x10 } + - { offsetInCU: 0x3AEF, offset: 0x5A533, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x67E0, symBinAddr: 0x8050, symSize: 0x10 } + - { offsetInCU: 0x3B07, offset: 0x5A54B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x67F0, symBinAddr: 0x8060, symSize: 0x10 } + - { offsetInCU: 0x3B1F, offset: 0x5A563, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x6800, symBinAddr: 0x8070, symSize: 0x10 } + - { offsetInCU: 0x3B37, offset: 0x5A57B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6810, symBinAddr: 0x8080, symSize: 0x10 } + - { offsetInCU: 0x3B4F, offset: 0x5A593, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6820, symBinAddr: 0x8090, symSize: 0x10 } + - { offsetInCU: 0x3B67, offset: 0x5A5AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x6830, symBinAddr: 0x80A0, symSize: 0x10 } + - { offsetInCU: 0x3B7F, offset: 0x5A5C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x6840, symBinAddr: 0x80B0, symSize: 0x10 } + - { offsetInCU: 0x3B97, offset: 0x5A5DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x6850, symBinAddr: 0x80C0, symSize: 0x10 } + - { offsetInCU: 0x3BAF, offset: 0x5A5F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x6860, symBinAddr: 0x80D0, symSize: 0x20 } + - { offsetInCU: 0x3BC7, offset: 0x5A60B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6880, symBinAddr: 0x80F0, symSize: 0x10 } + - { offsetInCU: 0x3BDF, offset: 0x5A623, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6890, symBinAddr: 0x8100, symSize: 0x10 } + - { offsetInCU: 0x3BF7, offset: 0x5A63B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x68A0, symBinAddr: 0x8110, symSize: 0x10 } + - { offsetInCU: 0x3C0F, offset: 0x5A653, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x68B0, symBinAddr: 0x8120, symSize: 0x10 } + - { offsetInCU: 0x3C27, offset: 0x5A66B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x68C0, symBinAddr: 0x8130, symSize: 0x10 } + - { offsetInCU: 0x3C3F, offset: 0x5A683, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x68D0, symBinAddr: 0x8140, symSize: 0x10 } + - { offsetInCU: 0x3C57, offset: 0x5A69B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x68E0, symBinAddr: 0x8150, symSize: 0x20 } + - { offsetInCU: 0x3C6F, offset: 0x5A6B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6900, symBinAddr: 0x8170, symSize: 0x10 } + - { offsetInCU: 0x3C87, offset: 0x5A6CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6910, symBinAddr: 0x8180, symSize: 0x10 } + - { offsetInCU: 0x3C9F, offset: 0x5A6E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6920, symBinAddr: 0x8190, symSize: 0x10 } + - { offsetInCU: 0x3CB7, offset: 0x5A6FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x6930, symBinAddr: 0x81A0, symSize: 0x10 } + - { offsetInCU: 0x3CCF, offset: 0x5A713, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x6940, symBinAddr: 0x81B0, symSize: 0x10 } + - { offsetInCU: 0x3CE7, offset: 0x5A72B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6950, symBinAddr: 0x81C0, symSize: 0x10 } + - { offsetInCU: 0x3CFF, offset: 0x5A743, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6960, symBinAddr: 0x81D0, symSize: 0x10 } + - { offsetInCU: 0x3D17, offset: 0x5A75B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x6970, symBinAddr: 0x81E0, symSize: 0x10 } + - { offsetInCU: 0x3D2F, offset: 0x5A773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6980, symBinAddr: 0x81F0, symSize: 0x10 } + - { offsetInCU: 0x3D47, offset: 0x5A78B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x6990, symBinAddr: 0x8200, symSize: 0x10 } + - { offsetInCU: 0x3D5F, offset: 0x5A7A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x69A0, symBinAddr: 0x8210, symSize: 0x10 } + - { offsetInCU: 0x3D77, offset: 0x5A7BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x69B0, symBinAddr: 0x8220, symSize: 0x10 } + - { offsetInCU: 0x41AB, offset: 0x5ABEF, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x7130, symBinAddr: 0x8980, symSize: 0x170 } + - { offsetInCU: 0x425D, offset: 0x5ACA1, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x8340, symBinAddr: 0x9B90, symSize: 0x40 } + - { offsetInCU: 0x4271, offset: 0x5ACB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x83B0, symBinAddr: 0x9C00, symSize: 0x10 } + - { offsetInCU: 0x4285, offset: 0x5ACC9, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x83C0, symBinAddr: 0x9C10, symSize: 0x30 } + - { offsetInCU: 0x4299, offset: 0x5ACDD, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x83F0, symBinAddr: 0x9C40, symSize: 0x30 } + - { offsetInCU: 0x42AD, offset: 0x5ACF1, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x8420, symBinAddr: 0x9C70, symSize: 0x30 } + - { offsetInCU: 0x4364, offset: 0x5ADA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x8650, symBinAddr: 0x9EA0, symSize: 0x20 } + - { offsetInCU: 0x4378, offset: 0x5ADBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOb', symObjAddr: 0x8670, symBinAddr: 0x9EC0, symSize: 0x20 } + - { offsetInCU: 0x438C, offset: 0x5ADD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x86C0, symBinAddr: 0x9F10, symSize: 0x10 } + - { offsetInCU: 0x43A0, offset: 0x5ADE4, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x86D0, symBinAddr: 0x9F20, symSize: 0x20 } + - { offsetInCU: 0x43B4, offset: 0x5ADF8, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x86F0, symBinAddr: 0x9F40, symSize: 0x10 } + - { offsetInCU: 0x43C8, offset: 0x5AE0C, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x8730, symBinAddr: 0x9F80, symSize: 0x50 } + - { offsetInCU: 0x43DC, offset: 0x5AE20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8780, symBinAddr: 0x9FD0, symSize: 0x10 } + - { offsetInCU: 0x43F0, offset: 0x5AE34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x87D0, symBinAddr: 0xA020, symSize: 0x20 } + - { offsetInCU: 0x4404, offset: 0x5AE48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x87F0, symBinAddr: 0xA040, symSize: 0x80 } + - { offsetInCU: 0x4418, offset: 0x5AE5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x8870, symBinAddr: 0xA0C0, symSize: 0x70 } + - { offsetInCU: 0x442C, offset: 0x5AE70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8910, symBinAddr: 0xA160, symSize: 0x20 } + - { offsetInCU: 0x4440, offset: 0x5AE84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x8930, symBinAddr: 0xA180, symSize: 0x10 } + - { offsetInCU: 0x494F, offset: 0x5B393, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xAFA0, symBinAddr: 0xC7F0, symSize: 0x10 } + - { offsetInCU: 0x4963, offset: 0x5B3A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xAFB0, symBinAddr: 0xC800, symSize: 0x30 } + - { offsetInCU: 0x4977, offset: 0x5B3BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xAFE0, symBinAddr: 0xC830, symSize: 0x10 } + - { offsetInCU: 0x498B, offset: 0x5B3CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xB060, symBinAddr: 0xC8B0, symSize: 0x20 } + - { offsetInCU: 0x499F, offset: 0x5B3E3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xB090, symBinAddr: 0xC8E0, symSize: 0x40 } + - { offsetInCU: 0x49B3, offset: 0x5B3F7, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xB0D0, symBinAddr: 0xC920, symSize: 0x20 } + - { offsetInCU: 0x49C7, offset: 0x5B40B, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xB0F0, symBinAddr: 0xC940, symSize: 0x20 } + - { offsetInCU: 0x49DB, offset: 0x5B41F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xB130, symBinAddr: 0xC980, symSize: 0x10 } + - { offsetInCU: 0x49EF, offset: 0x5B433, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xB160, symBinAddr: 0xC9B0, symSize: 0x10 } + - { offsetInCU: 0x4A03, offset: 0x5B447, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xB190, symBinAddr: 0xC9E0, symSize: 0x20 } + - { offsetInCU: 0x4A17, offset: 0x5B45B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xB1B0, symBinAddr: 0xCA00, symSize: 0x10 } + - { offsetInCU: 0x4A2B, offset: 0x5B46F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xB320, symBinAddr: 0xCB70, symSize: 0x20 } + - { offsetInCU: 0x4A3F, offset: 0x5B483, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xB340, symBinAddr: 0xCB90, symSize: 0x40 } + - { offsetInCU: 0x4A53, offset: 0x5B497, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xB380, symBinAddr: 0xCBD0, symSize: 0x20 } + - { offsetInCU: 0x4A67, offset: 0x5B4AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xB440, symBinAddr: 0xCC90, symSize: 0xE0 } + - { offsetInCU: 0x4A7B, offset: 0x5B4BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xB5A0, symBinAddr: 0xCDF0, symSize: 0x40 } + - { offsetInCU: 0x4A8F, offset: 0x5B4D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xB620, symBinAddr: 0xCE70, symSize: 0x40 } + - { offsetInCU: 0x4AA3, offset: 0x5B4E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xB690, symBinAddr: 0xCEE0, symSize: 0x20 } + - { offsetInCU: 0x4B16, offset: 0x5B55A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x190, symBinAddr: 0x1A00, symSize: 0x10 } + - { offsetInCU: 0x4BD2, offset: 0x5B616, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x1A0, symBinAddr: 0x1A10, symSize: 0x40 } + - { offsetInCU: 0x4C61, offset: 0x5B6A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1E0, symBinAddr: 0x1A50, symSize: 0x20 } + - { offsetInCU: 0x4CB4, offset: 0x5B6F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x1A70, symSize: 0x40 } + - { offsetInCU: 0x525D, offset: 0x5BCA1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTgm5Tf4g_n', symObjAddr: 0x8450, symBinAddr: 0x9CA0, symSize: 0xF0 } + - { offsetInCU: 0x53B7, offset: 0x5BDFB, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x8A70, symBinAddr: 0xA2C0, symSize: 0xF0 } + - { offsetInCU: 0x5950, offset: 0x5C394, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x1870, symSize: 0x10 } + - { offsetInCU: 0x5964, offset: 0x5C3A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x10, symBinAddr: 0x1880, symSize: 0x10 } + - { offsetInCU: 0x5985, offset: 0x5C3C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x20, symBinAddr: 0x1890, symSize: 0x30 } + - { offsetInCU: 0x59A0, offset: 0x5C3E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x50, symBinAddr: 0x18C0, symSize: 0x140 } + - { offsetInCU: 0x5A8B, offset: 0x5C4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x3D0, symBinAddr: 0x1C40, symSize: 0x40 } + - { offsetInCU: 0x5AAA, offset: 0x5C4EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x410, symBinAddr: 0x1C80, symSize: 0x50 } + - { offsetInCU: 0x5ADF, offset: 0x5C523, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x460, symBinAddr: 0x1CD0, symSize: 0x70 } + - { offsetInCU: 0x5B02, offset: 0x5C546, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x4D0, symBinAddr: 0x1D40, symSize: 0x60 } + - { offsetInCU: 0x5B23, offset: 0x5C567, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x5B0, symBinAddr: 0x1E20, symSize: 0x40 } + - { offsetInCU: 0x5B48, offset: 0x5C58C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvg', symObjAddr: 0x600, symBinAddr: 0x1E70, symSize: 0x30 } + - { offsetInCU: 0x5B65, offset: 0x5C5A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvs', symObjAddr: 0x630, symBinAddr: 0x1EA0, symSize: 0x40 } + - { offsetInCU: 0x5B98, offset: 0x5C5DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x670, symBinAddr: 0x1EE0, symSize: 0x40 } + - { offsetInCU: 0x5BBD, offset: 0x5C601, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x730, symBinAddr: 0x1FA0, symSize: 0x40 } + - { offsetInCU: 0x5BE2, offset: 0x5C626, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x7C0, symBinAddr: 0x2030, symSize: 0x40 } + - { offsetInCU: 0x5C07, offset: 0x5C64B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x8E0, symBinAddr: 0x2150, symSize: 0x40 } + - { offsetInCU: 0x5C2C, offset: 0x5C670, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvg', symObjAddr: 0x930, symBinAddr: 0x21A0, symSize: 0x30 } + - { offsetInCU: 0x5C49, offset: 0x5C68D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvs', symObjAddr: 0x960, symBinAddr: 0x21D0, symSize: 0x40 } + - { offsetInCU: 0x5C7C, offset: 0x5C6C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x9A0, symBinAddr: 0x2210, symSize: 0x40 } + - { offsetInCU: 0x5CA1, offset: 0x5C6E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x9F0, symBinAddr: 0x2260, symSize: 0x40 } + - { offsetInCU: 0x5CBE, offset: 0x5C702, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0xA30, symBinAddr: 0x22A0, symSize: 0x50 } + - { offsetInCU: 0x5CF1, offset: 0x5C735, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0xA80, symBinAddr: 0x22F0, symSize: 0x40 } + - { offsetInCU: 0x5D16, offset: 0x5C75A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0xAC0, symBinAddr: 0x2330, symSize: 0x10 } + - { offsetInCU: 0x5D6A, offset: 0x5C7AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0xAD0, symBinAddr: 0x2340, symSize: 0xB0 } + - { offsetInCU: 0x5DDB, offset: 0x5C81F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xBA0, symBinAddr: 0x2410, symSize: 0xF0 } + - { offsetInCU: 0x5E4F, offset: 0x5C893, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCB0, symBinAddr: 0x2520, symSize: 0x40 } + - { offsetInCU: 0x5E6C, offset: 0x5C8B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xCF0, symBinAddr: 0x2560, symSize: 0x50 } + - { offsetInCU: 0x5E9F, offset: 0x5C8E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD40, symBinAddr: 0x25B0, symSize: 0x40 } + - { offsetInCU: 0x5F2D, offset: 0x5C971, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xE90, symBinAddr: 0x2700, symSize: 0x240 } + - { offsetInCU: 0x5FA6, offset: 0x5C9EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4FA0, symBinAddr: 0x6810, symSize: 0x50 } + - { offsetInCU: 0x5FE5, offset: 0x5CA29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0x10D0, symBinAddr: 0x2940, symSize: 0x30 } + - { offsetInCU: 0x6016, offset: 0x5CA5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x1100, symBinAddr: 0x2970, symSize: 0x80 } + - { offsetInCU: 0x605E, offset: 0x5CAA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x1180, symBinAddr: 0x29F0, symSize: 0x40 } + - { offsetInCU: 0x6083, offset: 0x5CAC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x11C0, symBinAddr: 0x2A30, symSize: 0x80 } + - { offsetInCU: 0x60E5, offset: 0x5CB29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x1250, symBinAddr: 0x2AC0, symSize: 0x30 } + - { offsetInCU: 0x6163, offset: 0x5CBA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x1280, symBinAddr: 0x2AF0, symSize: 0x30 } + - { offsetInCU: 0x61EC, offset: 0x5CC30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x12B0, symBinAddr: 0x2B20, symSize: 0x40 } + - { offsetInCU: 0x6268, offset: 0x5CCAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x12F0, symBinAddr: 0x2B60, symSize: 0x30 } + - { offsetInCU: 0x62C7, offset: 0x5CD0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1320, symBinAddr: 0x2B90, symSize: 0x20 } + - { offsetInCU: 0x6345, offset: 0x5CD89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x1340, symBinAddr: 0x2BB0, symSize: 0x20 } + - { offsetInCU: 0x63CE, offset: 0x5CE12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x1360, symBinAddr: 0x2BD0, symSize: 0x40 } + - { offsetInCU: 0x644A, offset: 0x5CE8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13A0, symBinAddr: 0x2C10, symSize: 0x30 } + - { offsetInCU: 0x6499, offset: 0x5CEDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x13D0, symBinAddr: 0x2C40, symSize: 0x20 } + - { offsetInCU: 0x6512, offset: 0x5CF56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x13F0, symBinAddr: 0x2C60, symSize: 0x20 } + - { offsetInCU: 0x659B, offset: 0x5CFDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1410, symBinAddr: 0x2C80, symSize: 0x40 } + - { offsetInCU: 0x6617, offset: 0x5D05B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1450, symBinAddr: 0x2CC0, symSize: 0x30 } + - { offsetInCU: 0x6652, offset: 0x5D096, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvg', symObjAddr: 0x1490, symBinAddr: 0x2D00, symSize: 0x30 } + - { offsetInCU: 0x666F, offset: 0x5D0B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvs', symObjAddr: 0x14C0, symBinAddr: 0x2D30, symSize: 0x40 } + - { offsetInCU: 0x66A2, offset: 0x5D0E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x1500, symBinAddr: 0x2D70, symSize: 0x40 } + - { offsetInCU: 0x66C7, offset: 0x5D10B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvg', symObjAddr: 0x1560, symBinAddr: 0x2DD0, symSize: 0x30 } + - { offsetInCU: 0x66E4, offset: 0x5D128, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvs', symObjAddr: 0x1590, symBinAddr: 0x2E00, symSize: 0x40 } + - { offsetInCU: 0x6717, offset: 0x5D15B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x15D0, symBinAddr: 0x2E40, symSize: 0x40 } + - { offsetInCU: 0x673C, offset: 0x5D180, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1620, symBinAddr: 0x2E90, symSize: 0x30 } + - { offsetInCU: 0x6759, offset: 0x5D19D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1650, symBinAddr: 0x2EC0, symSize: 0x40 } + - { offsetInCU: 0x678C, offset: 0x5D1D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1690, symBinAddr: 0x2F00, symSize: 0x40 } + - { offsetInCU: 0x67B1, offset: 0x5D1F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x16E0, symBinAddr: 0x2F50, symSize: 0x30 } + - { offsetInCU: 0x67CE, offset: 0x5D212, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1710, symBinAddr: 0x2F80, symSize: 0x40 } + - { offsetInCU: 0x6801, offset: 0x5D245, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1750, symBinAddr: 0x2FC0, symSize: 0x40 } + - { offsetInCU: 0x6845, offset: 0x5D289, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x17C0, symBinAddr: 0x3030, symSize: 0x60 } + - { offsetInCU: 0x68B0, offset: 0x5D2F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x1820, symBinAddr: 0x3090, symSize: 0x60 } + - { offsetInCU: 0x6928, offset: 0x5D36C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x1880, symBinAddr: 0x30F0, symSize: 0x70 } + - { offsetInCU: 0x6981, offset: 0x5D3C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x18F0, symBinAddr: 0x3160, symSize: 0x30 } + - { offsetInCU: 0x69A2, offset: 0x5D3E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x1920, symBinAddr: 0x3190, symSize: 0x70 } + - { offsetInCU: 0x69F6, offset: 0x5D43A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x1990, symBinAddr: 0x3200, symSize: 0x70 } + - { offsetInCU: 0x6A57, offset: 0x5D49B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x1A00, symBinAddr: 0x3270, symSize: 0xA0 } + - { offsetInCU: 0x6AB9, offset: 0x5D4FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1AA0, symBinAddr: 0x3310, symSize: 0x80 } + - { offsetInCU: 0x6B18, offset: 0x5D55C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1B20, symBinAddr: 0x3390, symSize: 0xB0 } + - { offsetInCU: 0x6B9A, offset: 0x5D5DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1BD0, symBinAddr: 0x3440, symSize: 0xC0 } + - { offsetInCU: 0x6C1D, offset: 0x5D661, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1C90, symBinAddr: 0x3500, symSize: 0x100 } + - { offsetInCU: 0x6CB1, offset: 0x5D6F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1D90, symBinAddr: 0x3600, symSize: 0x140 } + - { offsetInCU: 0x6D54, offset: 0x5D798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1ED0, symBinAddr: 0x3740, symSize: 0xB0 } + - { offsetInCU: 0x6DC8, offset: 0x5D80C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x2050, symBinAddr: 0x38C0, symSize: 0xF0 } + - { offsetInCU: 0x6E3F, offset: 0x5D883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2290, symBinAddr: 0x3B00, symSize: 0x40 } + - { offsetInCU: 0x6E63, offset: 0x5D8A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x22D0, symBinAddr: 0x3B40, symSize: 0x50 } + - { offsetInCU: 0x6E98, offset: 0x5D8DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2320, symBinAddr: 0x3B90, symSize: 0x40 } + - { offsetInCU: 0x6EB7, offset: 0x5D8FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2440, symBinAddr: 0x3CB0, symSize: 0x40 } + - { offsetInCU: 0x6EDD, offset: 0x5D921, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x24E0, symBinAddr: 0x3D50, symSize: 0x40 } + - { offsetInCU: 0x6F03, offset: 0x5D947, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x2580, symBinAddr: 0x3DF0, symSize: 0x40 } + - { offsetInCU: 0x6F29, offset: 0x5D96D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2610, symBinAddr: 0x3E80, symSize: 0x40 } + - { offsetInCU: 0x6F4F, offset: 0x5D993, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x26B0, symBinAddr: 0x3F20, symSize: 0x40 } + - { offsetInCU: 0x6F75, offset: 0x5D9B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x2740, symBinAddr: 0x3FB0, symSize: 0x40 } + - { offsetInCU: 0x6F9B, offset: 0x5D9DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x27E0, symBinAddr: 0x4050, symSize: 0x40 } + - { offsetInCU: 0x6FC1, offset: 0x5DA05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2880, symBinAddr: 0x40F0, symSize: 0x40 } + - { offsetInCU: 0x6FE7, offset: 0x5DA2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x2920, symBinAddr: 0x4190, symSize: 0x40 } + - { offsetInCU: 0x700D, offset: 0x5DA51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x29C0, symBinAddr: 0x4230, symSize: 0x40 } + - { offsetInCU: 0x7033, offset: 0x5DA77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2A50, symBinAddr: 0x42C0, symSize: 0x40 } + - { offsetInCU: 0x7059, offset: 0x5DA9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2B70, symBinAddr: 0x43E0, symSize: 0x40 } + - { offsetInCU: 0x7085, offset: 0x5DAC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2BB0, symBinAddr: 0x4420, symSize: 0x60 } + - { offsetInCU: 0x70CB, offset: 0x5DB0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2C10, symBinAddr: 0x4480, symSize: 0x5E0 } + - { offsetInCU: 0x72F3, offset: 0x5DD37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x31F0, symBinAddr: 0x4A60, symSize: 0x180 } + - { offsetInCU: 0x744D, offset: 0x5DE91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x3580, symBinAddr: 0x4DF0, symSize: 0x400 } + - { offsetInCU: 0x75F1, offset: 0x5E035, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3980, symBinAddr: 0x51F0, symSize: 0x20 } + - { offsetInCU: 0x76EF, offset: 0x5E133, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x39A0, symBinAddr: 0x5210, symSize: 0x680 } + - { offsetInCU: 0x79EE, offset: 0x5E432, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4020, symBinAddr: 0x5890, symSize: 0xB0 } + - { offsetInCU: 0x7AD6, offset: 0x5E51A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x4100, symBinAddr: 0x5970, symSize: 0xC0 } + - { offsetInCU: 0x7BA3, offset: 0x5E5E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x41C0, symBinAddr: 0x5A30, symSize: 0xF0 } + - { offsetInCU: 0x7C1F, offset: 0x5E663, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x42B0, symBinAddr: 0x5B20, symSize: 0xA0 } + - { offsetInCU: 0x7D0E, offset: 0x5E752, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x4350, symBinAddr: 0x5BC0, symSize: 0x150 } + - { offsetInCU: 0x7F02, offset: 0x5E946, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x44A0, symBinAddr: 0x5D10, symSize: 0x5A0 } + - { offsetInCU: 0x81CC, offset: 0x5EC10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x4A40, symBinAddr: 0x62B0, symSize: 0x70 } + - { offsetInCU: 0x8239, offset: 0x5EC7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x4AB0, symBinAddr: 0x6320, symSize: 0xC0 } + - { offsetInCU: 0x836B, offset: 0x5EDAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4B70, symBinAddr: 0x63E0, symSize: 0x70 } + - { offsetInCU: 0x843A, offset: 0x5EE7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x4BE0, symBinAddr: 0x6450, symSize: 0xF0 } + - { offsetInCU: 0x865D, offset: 0x5F0A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x4CD0, symBinAddr: 0x6540, symSize: 0x120 } + - { offsetInCU: 0x8809, offset: 0x5F24D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x4DF0, symBinAddr: 0x6660, symSize: 0xE0 } + - { offsetInCU: 0x8933, offset: 0x5F377, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4ED0, symBinAddr: 0x6740, symSize: 0x20 } + - { offsetInCU: 0x8947, offset: 0x5F38B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4EF0, symBinAddr: 0x6760, symSize: 0x30 } + - { offsetInCU: 0x89A7, offset: 0x5F3EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4FF0, symBinAddr: 0x6860, symSize: 0x10 } + - { offsetInCU: 0x8A1B, offset: 0x5F45F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5000, symBinAddr: 0x6870, symSize: 0x1D0 } + - { offsetInCU: 0x8B10, offset: 0x5F554, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5210, symBinAddr: 0x6A80, symSize: 0x190 } + - { offsetInCU: 0x8BEB, offset: 0x5F62F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5400, symBinAddr: 0x6C70, symSize: 0xB0 } + - { offsetInCU: 0x8C66, offset: 0x5F6AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x54B0, symBinAddr: 0x6D20, symSize: 0x10 } + - { offsetInCU: 0x8D4D, offset: 0x5F791, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x54C0, symBinAddr: 0x6D30, symSize: 0x260 } + - { offsetInCU: 0x9184, offset: 0x5FBC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5720, symBinAddr: 0x6F90, symSize: 0x380 } + - { offsetInCU: 0x93CB, offset: 0x5FE0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x5AA0, symBinAddr: 0x7310, symSize: 0xA0 } + - { offsetInCU: 0x958F, offset: 0x5FFD3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5UInt8V_Tg5', symObjAddr: 0x69E0, symBinAddr: 0x8230, symSize: 0xA0 } + - { offsetInCU: 0x9678, offset: 0x600BC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x6A80, symBinAddr: 0x82D0, symSize: 0xE0 } + - { offsetInCU: 0x9761, offset: 0x601A5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x6B60, symBinAddr: 0x83B0, symSize: 0xB0 } + - { offsetInCU: 0x9832, offset: 0x60276, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x6C50, symBinAddr: 0x84A0, symSize: 0xB0 } + - { offsetInCU: 0x991B, offset: 0x6035F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x6DC0, symBinAddr: 0x8610, symSize: 0xC0 } + - { offsetInCU: 0x99E8, offset: 0x6042C, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x6E80, symBinAddr: 0x86D0, symSize: 0xA0 } + - { offsetInCU: 0x9BED, offset: 0x60631, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x8B60, symBinAddr: 0xA3B0, symSize: 0x3A0 } + - { offsetInCU: 0x9E47, offset: 0x6088B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x8F00, symBinAddr: 0xA750, symSize: 0x700 } + - { offsetInCU: 0xA3D2, offset: 0x60E16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x9600, symBinAddr: 0xAE50, symSize: 0x490 } + - { offsetInCU: 0xA79F, offset: 0x611E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9A90, symBinAddr: 0xB2E0, symSize: 0x210 } + - { offsetInCU: 0xA90F, offset: 0x61353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9CA0, symBinAddr: 0xB4F0, symSize: 0x190 } + - { offsetInCU: 0xAA42, offset: 0x61486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9E30, symBinAddr: 0xB680, symSize: 0x190 } + - { offsetInCU: 0xABA9, offset: 0x615ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9FC0, symBinAddr: 0xB810, symSize: 0x230 } + - { offsetInCU: 0xAE0C, offset: 0x61850, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA1F0, symBinAddr: 0xBA40, symSize: 0x890 } + - { offsetInCU: 0xB4F2, offset: 0x61F36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xAA80, symBinAddr: 0xC2D0, symSize: 0x400 } + - { offsetInCU: 0xB861, offset: 0x622A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAE80, symBinAddr: 0xC6D0, symSize: 0x120 } + - { offsetInCU: 0x19A, offset: 0x6255D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2E0, symBinAddr: 0xD6E0, symSize: 0x20 } + - { offsetInCU: 0x1CB, offset: 0x6258E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x300, symBinAddr: 0xD700, symSize: 0x10 } + - { offsetInCU: 0x1E7, offset: 0x625AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0xD710, symSize: 0x80 } + - { offsetInCU: 0x248, offset: 0x6260B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x390, symBinAddr: 0xD790, symSize: 0x120 } + - { offsetInCU: 0x5BE, offset: 0x62981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xDA0, symBinAddr: 0xE1A0, symSize: 0x100 } + - { offsetInCU: 0xB1E, offset: 0x62EE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x2420, symBinAddr: 0xF820, symSize: 0x10 } + - { offsetInCU: 0xB36, offset: 0x62EF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2430, symBinAddr: 0xF830, symSize: 0x10 } + - { offsetInCU: 0xB96, offset: 0x62F59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x24C0, symBinAddr: 0xF8C0, symSize: 0x10 } + - { offsetInCU: 0xBAE, offset: 0x62F71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x24D0, symBinAddr: 0xF8D0, symSize: 0x10 } + - { offsetInCU: 0xC0E, offset: 0x62FD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2560, symBinAddr: 0xF960, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x62FE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2570, symBinAddr: 0xF970, symSize: 0x10 } + - { offsetInCU: 0xC86, offset: 0x63049, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2600, symBinAddr: 0xFA00, symSize: 0x10 } + - { offsetInCU: 0xCB5, offset: 0x63078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x2690, symBinAddr: 0xFA90, symSize: 0x10 } + - { offsetInCU: 0xCCD, offset: 0x63090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x26A0, symBinAddr: 0xFAA0, symSize: 0x10 } + - { offsetInCU: 0xD3C, offset: 0x630FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x2730, symBinAddr: 0xFB30, symSize: 0x10 } + - { offsetInCU: 0xD54, offset: 0x63117, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2740, symBinAddr: 0xFB40, symSize: 0x10 } + - { offsetInCU: 0xDC3, offset: 0x63186, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x27D0, symBinAddr: 0xFBD0, symSize: 0x10 } + - { offsetInCU: 0xDDB, offset: 0x6319E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x27E0, symBinAddr: 0xFBE0, symSize: 0x10 } + - { offsetInCU: 0xE3B, offset: 0x631FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2870, symBinAddr: 0xFC70, symSize: 0x10 } + - { offsetInCU: 0xE53, offset: 0x63216, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2880, symBinAddr: 0xFC80, symSize: 0x10 } + - { offsetInCU: 0xE95, offset: 0x63258, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x2910, symBinAddr: 0xFD10, symSize: 0x10 } + - { offsetInCU: 0xEAD, offset: 0x63270, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x2920, symBinAddr: 0xFD20, symSize: 0x10 } + - { offsetInCU: 0xEEF, offset: 0x632B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x29B0, symBinAddr: 0xFDB0, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x632CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x29C0, symBinAddr: 0xFDC0, symSize: 0x10 } + - { offsetInCU: 0xF58, offset: 0x6331B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x2A50, symBinAddr: 0xFE50, symSize: 0x10 } + - { offsetInCU: 0xF87, offset: 0x6334A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2AE0, symBinAddr: 0xFEE0, symSize: 0x10 } + - { offsetInCU: 0xFB6, offset: 0x63379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2B70, symBinAddr: 0xFF70, symSize: 0x10 } + - { offsetInCU: 0xFCE, offset: 0x63391, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x2B80, symBinAddr: 0xFF80, symSize: 0x10 } + - { offsetInCU: 0x1030, offset: 0x633F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2C10, symBinAddr: 0x10010, symSize: 0x10 } + - { offsetInCU: 0x105F, offset: 0x63422, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x2CA0, symBinAddr: 0x100A0, symSize: 0x10 } + - { offsetInCU: 0x1077, offset: 0x6343A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x2CB0, symBinAddr: 0x100B0, symSize: 0x10 } + - { offsetInCU: 0x1135, offset: 0x634F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x3830, symBinAddr: 0x10C30, symSize: 0x20 } + - { offsetInCU: 0x14D6, offset: 0x63899, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x5240, symBinAddr: 0x12640, symSize: 0x30 } + - { offsetInCU: 0x153D, offset: 0x63900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x5270, symBinAddr: 0x12670, symSize: 0x40 } + - { offsetInCU: 0x1639, offset: 0x639FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x6D20, symBinAddr: 0x14050, symSize: 0x250 } + - { offsetInCU: 0x17D9, offset: 0x63B9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x71A0, symBinAddr: 0x144D0, symSize: 0x240 } + - { offsetInCU: 0x1979, offset: 0x63D3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x73E0, symBinAddr: 0x14710, symSize: 0x200 } + - { offsetInCU: 0x1B19, offset: 0x63EDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x75E0, symBinAddr: 0x14910, symSize: 0x240 } + - { offsetInCU: 0x1CB9, offset: 0x6407C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x7820, symBinAddr: 0x14B50, symSize: 0x2A0 } + - { offsetInCU: 0x1E5B, offset: 0x6421E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x7AC0, symBinAddr: 0x14DF0, symSize: 0x290 } + - { offsetInCU: 0x1FFB, offset: 0x643BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x7D50, symBinAddr: 0x15080, symSize: 0x260 } + - { offsetInCU: 0x23A8, offset: 0x6476B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x7FB0, symBinAddr: 0x152E0, symSize: 0x3A0 } + - { offsetInCU: 0x2457, offset: 0x6481A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x8350, symBinAddr: 0x15680, symSize: 0x3B0 } + - { offsetInCU: 0x2506, offset: 0x648C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x8700, symBinAddr: 0x15A30, symSize: 0x3B0 } + - { offsetInCU: 0x272D, offset: 0x64AF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x3850, symBinAddr: 0x10C50, symSize: 0x240 } + - { offsetInCU: 0x2B2F, offset: 0x64EF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x52B0, symBinAddr: 0x126B0, symSize: 0x10 } + - { offsetInCU: 0x2D5E, offset: 0x65121, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5DC0, symBinAddr: 0x131C0, symSize: 0x10 } + - { offsetInCU: 0x2DA3, offset: 0x65166, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5DD0, symBinAddr: 0x131D0, symSize: 0x10 } + - { offsetInCU: 0x2DBF, offset: 0x65182, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5DE0, symBinAddr: 0x131E0, symSize: 0x10 } + - { offsetInCU: 0x2DDB, offset: 0x6519E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5DF0, symBinAddr: 0x131F0, symSize: 0x10 } + - { offsetInCU: 0x2DF7, offset: 0x651BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5E00, symBinAddr: 0x13200, symSize: 0x10 } + - { offsetInCU: 0x2E13, offset: 0x651D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5E10, symBinAddr: 0x13210, symSize: 0x10 } + - { offsetInCU: 0x2E2F, offset: 0x651F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5E20, symBinAddr: 0x13220, symSize: 0x220 } + - { offsetInCU: 0x2EB7, offset: 0x6527A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x6040, symBinAddr: 0x13440, symSize: 0x130 } + - { offsetInCU: 0x2FEF, offset: 0x653B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x6170, symBinAddr: 0x13570, symSize: 0x20 } + - { offsetInCU: 0x30E6, offset: 0x654A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x6190, symBinAddr: 0x13590, symSize: 0x10 } + - { offsetInCU: 0x3137, offset: 0x654FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x61A0, symBinAddr: 0x135A0, symSize: 0x30 } + - { offsetInCU: 0x3188, offset: 0x6554B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x61D0, symBinAddr: 0x135D0, symSize: 0x30 } + - { offsetInCU: 0x31D9, offset: 0x6559C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6200, symBinAddr: 0x13600, symSize: 0x10 } + - { offsetInCU: 0x322A, offset: 0x655ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x6210, symBinAddr: 0x13610, symSize: 0x10 } + - { offsetInCU: 0x327B, offset: 0x6563E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6220, symBinAddr: 0x13620, symSize: 0x10 } + - { offsetInCU: 0x32CC, offset: 0x6568F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x6230, symBinAddr: 0x13630, symSize: 0x10 } + - { offsetInCU: 0x3323, offset: 0x656E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6240, symBinAddr: 0x13640, symSize: 0x10 } + - { offsetInCU: 0x3356, offset: 0x65719, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x62C0, symBinAddr: 0x13680, symSize: 0x10 } + - { offsetInCU: 0x3395, offset: 0x65758, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tgm5', symObjAddr: 0x66C0, symBinAddr: 0x139F0, symSize: 0x50 } + - { offsetInCU: 0x3440, offset: 0x65803, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x8AB0, symBinAddr: 0x15DE0, symSize: 0xB0 } + - { offsetInCU: 0x3482, offset: 0x65845, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x8B60, symBinAddr: 0x15E90, symSize: 0x90 } + - { offsetInCU: 0x34CA, offset: 0x6588D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x8BF0, symBinAddr: 0x15F20, symSize: 0x20 } + - { offsetInCU: 0x34DE, offset: 0x658A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8C60, symBinAddr: 0x15F70, symSize: 0x10 } + - { offsetInCU: 0x34F2, offset: 0x658B5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8C70, symBinAddr: 0x15F80, symSize: 0x20 } + - { offsetInCU: 0x3506, offset: 0x658C9, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8C90, symBinAddr: 0x15FA0, symSize: 0x10 } + - { offsetInCU: 0x351A, offset: 0x658DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8D20, symBinAddr: 0x15FE0, symSize: 0x10 } + - { offsetInCU: 0x356D, offset: 0x65930, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x8D30, symBinAddr: 0x15FF0, symSize: 0xC0 } + - { offsetInCU: 0x35E3, offset: 0x659A6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8DF0, symBinAddr: 0x160B0, symSize: 0x80 } + - { offsetInCU: 0x3610, offset: 0x659D3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8E70, symBinAddr: 0x16130, symSize: 0x80 } + - { offsetInCU: 0x36A4, offset: 0x65A67, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x8EF0, symBinAddr: 0x161B0, symSize: 0x70 } + - { offsetInCU: 0x3B2C, offset: 0x65EEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xBC60, symBinAddr: 0x18F20, symSize: 0x10 } + - { offsetInCU: 0x3B40, offset: 0x65F03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xBC70, symBinAddr: 0x18F30, symSize: 0x10 } + - { offsetInCU: 0x3B54, offset: 0x65F17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xBC80, symBinAddr: 0x18F40, symSize: 0x30 } + - { offsetInCU: 0x3B68, offset: 0x65F2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xBCB0, symBinAddr: 0x18F70, symSize: 0x10 } + - { offsetInCU: 0x3B7C, offset: 0x65F3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xBCC0, symBinAddr: 0x18F80, symSize: 0x20 } + - { offsetInCU: 0x3B90, offset: 0x65F53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xBDB0, symBinAddr: 0x19070, symSize: 0x20 } + - { offsetInCU: 0x3BA4, offset: 0x65F67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xBE40, symBinAddr: 0x19100, symSize: 0x20 } + - { offsetInCU: 0x3BB8, offset: 0x65F7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xBF10, symBinAddr: 0x19190, symSize: 0x10 } + - { offsetInCU: 0x3BCC, offset: 0x65F8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xBF20, symBinAddr: 0x191A0, symSize: 0x10 } + - { offsetInCU: 0x3BE0, offset: 0x65FA3, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xBF50, symBinAddr: 0x191D0, symSize: 0x20 } + - { offsetInCU: 0x3BF4, offset: 0x65FB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xBF70, symBinAddr: 0x191F0, symSize: 0x10 } + - { offsetInCU: 0x3C3A, offset: 0x65FFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xC750, symBinAddr: 0x19780, symSize: 0x20 } + - { offsetInCU: 0x3C4E, offset: 0x66011, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xC830, symBinAddr: 0x19820, symSize: 0x20 } + - { offsetInCU: 0x3C62, offset: 0x66025, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xC880, symBinAddr: 0x19870, symSize: 0x20 } + - { offsetInCU: 0x3C76, offset: 0x66039, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xC980, symBinAddr: 0x19930, symSize: 0x20 } + - { offsetInCU: 0x3DB1, offset: 0x66174, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x230, symBinAddr: 0xD630, symSize: 0x10 } + - { offsetInCU: 0x3E61, offset: 0x66224, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x240, symBinAddr: 0xD640, symSize: 0x40 } + - { offsetInCU: 0x3EF0, offset: 0x662B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x280, symBinAddr: 0xD680, symSize: 0x20 } + - { offsetInCU: 0x3F43, offset: 0x66306, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2A0, symBinAddr: 0xD6A0, symSize: 0x40 } + - { offsetInCU: 0x488A, offset: 0x66C4D, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xD400, symSize: 0xE0 } + - { offsetInCU: 0x4959, offset: 0x66D1C, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE0, symBinAddr: 0xD4E0, symSize: 0xA0 } + - { offsetInCU: 0x49F1, offset: 0x66DB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x180, symBinAddr: 0xD580, symSize: 0x80 } + - { offsetInCU: 0x4A16, offset: 0x66DD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x200, symBinAddr: 0xD600, symSize: 0x20 } + - { offsetInCU: 0x4A33, offset: 0x66DF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x220, symBinAddr: 0xD620, symSize: 0x10 } + - { offsetInCU: 0x4B21, offset: 0x66EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x4B0, symBinAddr: 0xD8B0, symSize: 0x40 } + - { offsetInCU: 0x4B40, offset: 0x66F03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x4F0, symBinAddr: 0xD8F0, symSize: 0x50 } + - { offsetInCU: 0x4B75, offset: 0x66F38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x540, symBinAddr: 0xD940, symSize: 0x70 } + - { offsetInCU: 0x4B98, offset: 0x66F5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x5B0, symBinAddr: 0xD9B0, symSize: 0x60 } + - { offsetInCU: 0x4BB9, offset: 0x66F7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x650, symBinAddr: 0xDA50, symSize: 0x40 } + - { offsetInCU: 0x4BDE, offset: 0x66FA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvg', symObjAddr: 0x690, symBinAddr: 0xDA90, symSize: 0x30 } + - { offsetInCU: 0x4BFB, offset: 0x66FBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvs', symObjAddr: 0x6C0, symBinAddr: 0xDAC0, symSize: 0x40 } + - { offsetInCU: 0x4C2E, offset: 0x66FF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x700, symBinAddr: 0xDB00, symSize: 0x40 } + - { offsetInCU: 0x4C53, offset: 0x67016, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x7C0, symBinAddr: 0xDBC0, symSize: 0x40 } + - { offsetInCU: 0x4C78, offset: 0x6703B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x840, symBinAddr: 0xDC40, symSize: 0x40 } + - { offsetInCU: 0x4C9D, offset: 0x67060, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x950, symBinAddr: 0xDD50, symSize: 0x40 } + - { offsetInCU: 0x4CC2, offset: 0x67085, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvg', symObjAddr: 0x990, symBinAddr: 0xDD90, symSize: 0x30 } + - { offsetInCU: 0x4CDF, offset: 0x670A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvs', symObjAddr: 0x9C0, symBinAddr: 0xDDC0, symSize: 0x40 } + - { offsetInCU: 0x4D12, offset: 0x670D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0xA00, symBinAddr: 0xDE00, symSize: 0x40 } + - { offsetInCU: 0x4D37, offset: 0x670FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvg', symObjAddr: 0xA40, symBinAddr: 0xDE40, symSize: 0x40 } + - { offsetInCU: 0x4D54, offset: 0x67117, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0xAA0, symBinAddr: 0xDEA0, symSize: 0x40 } + - { offsetInCU: 0x4D79, offset: 0x6713C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0xAE0, symBinAddr: 0xDEE0, symSize: 0x10 } + - { offsetInCU: 0x4DCD, offset: 0x67190, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0xAF0, symBinAddr: 0xDEF0, symSize: 0xB0 } + - { offsetInCU: 0x4E3E, offset: 0x67201, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xBC0, symBinAddr: 0xDFC0, symSize: 0xF0 } + - { offsetInCU: 0x4EB2, offset: 0x67275, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCD0, symBinAddr: 0xE0D0, symSize: 0x40 } + - { offsetInCU: 0x4ECF, offset: 0x67292, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xD10, symBinAddr: 0xE110, symSize: 0x50 } + - { offsetInCU: 0x4F02, offset: 0x672C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD60, symBinAddr: 0xE160, symSize: 0x40 } + - { offsetInCU: 0x4F90, offset: 0x67353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xEA0, symBinAddr: 0xE2A0, symSize: 0x240 } + - { offsetInCU: 0x5009, offset: 0x673CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x52C0, symBinAddr: 0x126C0, symSize: 0x50 } + - { offsetInCU: 0x5048, offset: 0x6740B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0x10E0, symBinAddr: 0xE4E0, symSize: 0x30 } + - { offsetInCU: 0x5079, offset: 0x6743C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1110, symBinAddr: 0xE510, symSize: 0x80 } + - { offsetInCU: 0x50C1, offset: 0x67484, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1190, symBinAddr: 0xE590, symSize: 0x40 } + - { offsetInCU: 0x50E6, offset: 0x674A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x11D0, symBinAddr: 0xE5D0, symSize: 0x80 } + - { offsetInCU: 0x5148, offset: 0x6750B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1250, symBinAddr: 0xE650, symSize: 0x30 } + - { offsetInCU: 0x51C6, offset: 0x67589, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x1280, symBinAddr: 0xE680, symSize: 0x30 } + - { offsetInCU: 0x524F, offset: 0x67612, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x12B0, symBinAddr: 0xE6B0, symSize: 0x40 } + - { offsetInCU: 0x52CB, offset: 0x6768E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x12F0, symBinAddr: 0xE6F0, symSize: 0x30 } + - { offsetInCU: 0x532A, offset: 0x676ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1320, symBinAddr: 0xE720, symSize: 0x20 } + - { offsetInCU: 0x53A8, offset: 0x6776B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1340, symBinAddr: 0xE740, symSize: 0x20 } + - { offsetInCU: 0x5431, offset: 0x677F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x1360, symBinAddr: 0xE760, symSize: 0x40 } + - { offsetInCU: 0x54AD, offset: 0x67870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13A0, symBinAddr: 0xE7A0, symSize: 0x30 } + - { offsetInCU: 0x54FC, offset: 0x678BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13D0, symBinAddr: 0xE7D0, symSize: 0x20 } + - { offsetInCU: 0x5575, offset: 0x67938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x13F0, symBinAddr: 0xE7F0, symSize: 0x20 } + - { offsetInCU: 0x55FE, offset: 0x679C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x1410, symBinAddr: 0xE810, symSize: 0x40 } + - { offsetInCU: 0x567A, offset: 0x67A3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1450, symBinAddr: 0xE850, symSize: 0x30 } + - { offsetInCU: 0x56B5, offset: 0x67A78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvg', symObjAddr: 0x1480, symBinAddr: 0xE880, symSize: 0x30 } + - { offsetInCU: 0x56D2, offset: 0x67A95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvs', symObjAddr: 0x14B0, symBinAddr: 0xE8B0, symSize: 0x40 } + - { offsetInCU: 0x5705, offset: 0x67AC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x14F0, symBinAddr: 0xE8F0, symSize: 0x40 } + - { offsetInCU: 0x572A, offset: 0x67AED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvg', symObjAddr: 0x1530, symBinAddr: 0xE930, symSize: 0x30 } + - { offsetInCU: 0x5747, offset: 0x67B0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvs', symObjAddr: 0x1560, symBinAddr: 0xE960, symSize: 0x40 } + - { offsetInCU: 0x577A, offset: 0x67B3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x15A0, symBinAddr: 0xE9A0, symSize: 0x40 } + - { offsetInCU: 0x579F, offset: 0x67B62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x15E0, symBinAddr: 0xE9E0, symSize: 0x30 } + - { offsetInCU: 0x57BC, offset: 0x67B7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1610, symBinAddr: 0xEA10, symSize: 0x40 } + - { offsetInCU: 0x57EF, offset: 0x67BB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1650, symBinAddr: 0xEA50, symSize: 0x40 } + - { offsetInCU: 0x5814, offset: 0x67BD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1690, symBinAddr: 0xEA90, symSize: 0x30 } + - { offsetInCU: 0x5831, offset: 0x67BF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x16C0, symBinAddr: 0xEAC0, symSize: 0x40 } + - { offsetInCU: 0x5864, offset: 0x67C27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1700, symBinAddr: 0xEB00, symSize: 0x40 } + - { offsetInCU: 0x5889, offset: 0x67C4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvg', symObjAddr: 0x1740, symBinAddr: 0xEB40, symSize: 0x40 } + - { offsetInCU: 0x58A6, offset: 0x67C69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x17A0, symBinAddr: 0xEBA0, symSize: 0x40 } + - { offsetInCU: 0x58CB, offset: 0x67C8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvg', symObjAddr: 0x17E0, symBinAddr: 0xEBE0, symSize: 0x40 } + - { offsetInCU: 0x58EE, offset: 0x67CB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x1880, symBinAddr: 0xEC80, symSize: 0x40 } + - { offsetInCU: 0x5932, offset: 0x67CF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x18C0, symBinAddr: 0xECC0, symSize: 0x60 } + - { offsetInCU: 0x599D, offset: 0x67D60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x1920, symBinAddr: 0xED20, symSize: 0x60 } + - { offsetInCU: 0x5A15, offset: 0x67DD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1980, symBinAddr: 0xED80, symSize: 0x70 } + - { offsetInCU: 0x5A6E, offset: 0x67E31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x19F0, symBinAddr: 0xEDF0, symSize: 0x30 } + - { offsetInCU: 0x5A8F, offset: 0x67E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1A20, symBinAddr: 0xEE20, symSize: 0x70 } + - { offsetInCU: 0x5AE3, offset: 0x67EA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x1A90, symBinAddr: 0xEE90, symSize: 0x70 } + - { offsetInCU: 0x5B44, offset: 0x67F07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1B00, symBinAddr: 0xEF00, symSize: 0xA0 } + - { offsetInCU: 0x5BA6, offset: 0x67F69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1BA0, symBinAddr: 0xEFA0, symSize: 0x80 } + - { offsetInCU: 0x5C05, offset: 0x67FC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1C20, symBinAddr: 0xF020, symSize: 0xB0 } + - { offsetInCU: 0x5C89, offset: 0x6804C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1CD0, symBinAddr: 0xF0D0, symSize: 0xC0 } + - { offsetInCU: 0x5D0F, offset: 0x680D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1D90, symBinAddr: 0xF190, symSize: 0x100 } + - { offsetInCU: 0x5DA8, offset: 0x6816B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1E90, symBinAddr: 0xF290, symSize: 0x140 } + - { offsetInCU: 0x5E4F, offset: 0x68212, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x1FD0, symBinAddr: 0xF3D0, symSize: 0xB0 } + - { offsetInCU: 0x5EC3, offset: 0x68286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x2150, symBinAddr: 0xF550, symSize: 0xF0 } + - { offsetInCU: 0x5F3A, offset: 0x682FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2350, symBinAddr: 0xF750, symSize: 0x40 } + - { offsetInCU: 0x5F57, offset: 0x6831A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2390, symBinAddr: 0xF790, symSize: 0x50 } + - { offsetInCU: 0x5F8C, offset: 0x6834F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x23E0, symBinAddr: 0xF7E0, symSize: 0x40 } + - { offsetInCU: 0x5FB2, offset: 0x68375, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2480, symBinAddr: 0xF880, symSize: 0x40 } + - { offsetInCU: 0x5FD8, offset: 0x6839B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x2520, symBinAddr: 0xF920, symSize: 0x40 } + - { offsetInCU: 0x5FFE, offset: 0x683C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x25C0, symBinAddr: 0xF9C0, symSize: 0x40 } + - { offsetInCU: 0x6024, offset: 0x683E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2650, symBinAddr: 0xFA50, symSize: 0x40 } + - { offsetInCU: 0x604A, offset: 0x6840D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x26F0, symBinAddr: 0xFAF0, symSize: 0x40 } + - { offsetInCU: 0x6070, offset: 0x68433, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x2790, symBinAddr: 0xFB90, symSize: 0x40 } + - { offsetInCU: 0x6096, offset: 0x68459, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x2830, symBinAddr: 0xFC30, symSize: 0x40 } + - { offsetInCU: 0x60BC, offset: 0x6847F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x28D0, symBinAddr: 0xFCD0, symSize: 0x40 } + - { offsetInCU: 0x60E2, offset: 0x684A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2970, symBinAddr: 0xFD70, symSize: 0x40 } + - { offsetInCU: 0x6108, offset: 0x684CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x2A10, symBinAddr: 0xFE10, symSize: 0x40 } + - { offsetInCU: 0x612E, offset: 0x684F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x2AA0, symBinAddr: 0xFEA0, symSize: 0x40 } + - { offsetInCU: 0x6154, offset: 0x68517, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2B30, symBinAddr: 0xFF30, symSize: 0x40 } + - { offsetInCU: 0x617A, offset: 0x6853D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x2BD0, symBinAddr: 0xFFD0, symSize: 0x40 } + - { offsetInCU: 0x61A0, offset: 0x68563, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2C60, symBinAddr: 0x10060, symSize: 0x40 } + - { offsetInCU: 0x61C6, offset: 0x68589, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2D90, symBinAddr: 0x10190, symSize: 0x40 } + - { offsetInCU: 0x61F2, offset: 0x685B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2DD0, symBinAddr: 0x101D0, symSize: 0x60 } + - { offsetInCU: 0x62A4, offset: 0x68667, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2E30, symBinAddr: 0x10230, symSize: 0x880 } + - { offsetInCU: 0x659B, offset: 0x6895E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x36B0, symBinAddr: 0x10AB0, symSize: 0x180 } + - { offsetInCU: 0x6709, offset: 0x68ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3A90, symBinAddr: 0x10E90, symSize: 0x450 } + - { offsetInCU: 0x68CC, offset: 0x68C8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3EE0, symBinAddr: 0x112E0, symSize: 0x20 } + - { offsetInCU: 0x69C4, offset: 0x68D87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3F00, symBinAddr: 0x11300, symSize: 0x680 } + - { offsetInCU: 0x6CC3, offset: 0x69086, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4580, symBinAddr: 0x11980, symSize: 0xB0 } + - { offsetInCU: 0x6DA6, offset: 0x69169, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x4630, symBinAddr: 0x11A30, symSize: 0xC0 } + - { offsetInCU: 0x6E53, offset: 0x69216, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x46F0, symBinAddr: 0x11AF0, symSize: 0x10 } + - { offsetInCU: 0x6E95, offset: 0x69258, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x4700, symBinAddr: 0x11B00, symSize: 0x100 } + - { offsetInCU: 0x6F7B, offset: 0x6933E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x4800, symBinAddr: 0x11C00, symSize: 0xF0 } + - { offsetInCU: 0x6FF7, offset: 0x693BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x48F0, symBinAddr: 0x11CF0, symSize: 0xA0 } + - { offsetInCU: 0x7098, offset: 0x6945B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4990, symBinAddr: 0x11D90, symSize: 0xB0 } + - { offsetInCU: 0x7188, offset: 0x6954B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4A40, symBinAddr: 0x11E40, symSize: 0x10 } + - { offsetInCU: 0x719C, offset: 0x6955F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x4A50, symBinAddr: 0x11E50, symSize: 0x60 } + - { offsetInCU: 0x7209, offset: 0x695CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x4AB0, symBinAddr: 0x11EB0, symSize: 0xC0 } + - { offsetInCU: 0x737E, offset: 0x69741, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4B70, symBinAddr: 0x11F70, symSize: 0x120 } + - { offsetInCU: 0x750C, offset: 0x698CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4C90, symBinAddr: 0x12090, symSize: 0x100 } + - { offsetInCU: 0x7688, offset: 0x69A4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4D90, symBinAddr: 0x12190, symSize: 0x110 } + - { offsetInCU: 0x7901, offset: 0x69CC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4EA0, symBinAddr: 0x122A0, symSize: 0x1A0 } + - { offsetInCU: 0x7AF9, offset: 0x69EBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x5040, symBinAddr: 0x12440, symSize: 0xC0 } + - { offsetInCU: 0x7C15, offset: 0x69FD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x5100, symBinAddr: 0x12500, symSize: 0xF0 } + - { offsetInCU: 0x7CD3, offset: 0x6A096, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x51F0, symBinAddr: 0x125F0, symSize: 0x20 } + - { offsetInCU: 0x7CE7, offset: 0x6A0AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x5210, symBinAddr: 0x12610, symSize: 0x30 } + - { offsetInCU: 0x7D47, offset: 0x6A10A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5310, symBinAddr: 0x12710, symSize: 0x10 } + - { offsetInCU: 0x7D97, offset: 0x6A15A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5320, symBinAddr: 0x12720, symSize: 0x1D0 } + - { offsetInCU: 0x7E8C, offset: 0x6A24F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x54F0, symBinAddr: 0x128F0, symSize: 0x190 } + - { offsetInCU: 0x7F67, offset: 0x6A32A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5680, symBinAddr: 0x12A80, symSize: 0xB0 } + - { offsetInCU: 0x7FE2, offset: 0x6A3A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x5730, symBinAddr: 0x12B30, symSize: 0x10 } + - { offsetInCU: 0x80C3, offset: 0x6A486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5740, symBinAddr: 0x12B40, symSize: 0x260 } + - { offsetInCU: 0x84F4, offset: 0x6A8B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x59A0, symBinAddr: 0x12DA0, symSize: 0x380 } + - { offsetInCU: 0x873B, offset: 0x6AAFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5D20, symBinAddr: 0x13120, symSize: 0xA0 } + - { offsetInCU: 0x88BA, offset: 0x6AC7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6360, symBinAddr: 0x13690, symSize: 0x1B0 } + - { offsetInCU: 0x891C, offset: 0x6ACDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6510, symBinAddr: 0x13840, symSize: 0xB0 } + - { offsetInCU: 0x898B, offset: 0x6AD4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x65C0, symBinAddr: 0x138F0, symSize: 0x100 } + - { offsetInCU: 0x8A34, offset: 0x6ADF7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x6750, symBinAddr: 0x13A80, symSize: 0x220 } + - { offsetInCU: 0x8C66, offset: 0x6B029, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x8F60, symBinAddr: 0x16220, symSize: 0x750 } + - { offsetInCU: 0x926A, offset: 0x6B62D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x96B0, symBinAddr: 0x16970, symSize: 0x430 } + - { offsetInCU: 0x95D4, offset: 0x6B997, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9D30, symBinAddr: 0x16FF0, symSize: 0x190 } + - { offsetInCU: 0x974E, offset: 0x6BB11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9EC0, symBinAddr: 0x17180, symSize: 0x260 } + - { offsetInCU: 0x9A28, offset: 0x6BDEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA120, symBinAddr: 0x173E0, symSize: 0xA90 } + - { offsetInCU: 0xA0FC, offset: 0x6C4BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xABB0, symBinAddr: 0x17E70, symSize: 0x810 } + - { offsetInCU: 0xA60E, offset: 0x6C9D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xB3C0, symBinAddr: 0x18680, symSize: 0x120 } + - { offsetInCU: 0xA763, offset: 0x6CB26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xB4E0, symBinAddr: 0x187A0, symSize: 0x780 } + - { offsetInCU: 0xAC3D, offset: 0x6D000, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xBF80, symBinAddr: 0x19200, symSize: 0x300 } + - { offsetInCU: 0x4EE, offset: 0x6D757, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x19A0, symBinAddr: 0x1B7A0, symSize: 0x30 } + - { offsetInCU: 0x7C7, offset: 0x6DA30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1A00, symBinAddr: 0x1B800, symSize: 0x80 } + - { offsetInCU: 0x7F6, offset: 0x6DA5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x1A80, symBinAddr: 0x1B880, symSize: 0x50 } + - { offsetInCU: 0x992, offset: 0x6DBFB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfC9CocoaMQTT5Frame_p_Tgm5', symObjAddr: 0x1EF0, symBinAddr: 0x1BCF0, symSize: 0x90 } + - { offsetInCU: 0xA87, offset: 0x6DCF0, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x21C0, symBinAddr: 0x1BFC0, symSize: 0xC0 } + - { offsetInCU: 0xBFA, offset: 0x6DE63, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0x2280, symBinAddr: 0x1C080, symSize: 0x70 } + - { offsetInCU: 0xCCA, offset: 0x6DF33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x2660, symBinAddr: 0x1C420, symSize: 0x20 } + - { offsetInCU: 0xD5B, offset: 0x6DFC4, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x2880, symBinAddr: 0x1C600, symSize: 0x20 } + - { offsetInCU: 0xDA1, offset: 0x6E00A, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTgm5', symObjAddr: 0x0, symBinAddr: 0x19E00, symSize: 0xE0 } + - { offsetInCU: 0x1050, offset: 0x6E2B9, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x22F0, symBinAddr: 0x1C0F0, symSize: 0x330 } + - { offsetInCU: 0x1319, offset: 0x6E582, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS_SD6ValuesVyS2S_GTgm5Tf4g_n', symObjAddr: 0x2680, symBinAddr: 0x1C440, symSize: 0xC0 } + - { offsetInCU: 0x13EB, offset: 0x6E654, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTgm5Tf4g_n', symObjAddr: 0x2740, symBinAddr: 0x1C500, symSize: 0x100 } + - { offsetInCU: 0x15CD, offset: 0x6E836, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0xE0, symBinAddr: 0x19EE0, symSize: 0x60 } + - { offsetInCU: 0x15E1, offset: 0x6E84A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x140, symBinAddr: 0x19F40, symSize: 0x50 } + - { offsetInCU: 0x15F5, offset: 0x6E85E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x190, symBinAddr: 0x19F90, symSize: 0x30 } + - { offsetInCU: 0x1618, offset: 0x6E881, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x1C0, symBinAddr: 0x19FC0, symSize: 0x40 } + - { offsetInCU: 0x164B, offset: 0x6E8B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x200, symBinAddr: 0x1A000, symSize: 0x40 } + - { offsetInCU: 0x1670, offset: 0x6E8D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x240, symBinAddr: 0x1A040, symSize: 0x50 } + - { offsetInCU: 0x168D, offset: 0x6E8F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x290, symBinAddr: 0x1A090, symSize: 0x50 } + - { offsetInCU: 0x16C0, offset: 0x6E929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x2E0, symBinAddr: 0x1A0E0, symSize: 0x40 } + - { offsetInCU: 0x16E5, offset: 0x6E94E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x320, symBinAddr: 0x1A120, symSize: 0x40 } + - { offsetInCU: 0x1702, offset: 0x6E96B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x360, symBinAddr: 0x1A160, symSize: 0x50 } + - { offsetInCU: 0x1735, offset: 0x6E99E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x3B0, symBinAddr: 0x1A1B0, symSize: 0x40 } + - { offsetInCU: 0x175A, offset: 0x6E9C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvg', symObjAddr: 0x3F0, symBinAddr: 0x1A1F0, symSize: 0x30 } + - { offsetInCU: 0x177D, offset: 0x6E9E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvs', symObjAddr: 0x420, symBinAddr: 0x1A220, symSize: 0x40 } + - { offsetInCU: 0x17B0, offset: 0x6EA19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x460, symBinAddr: 0x1A260, symSize: 0x40 } + - { offsetInCU: 0x17D5, offset: 0x6EA3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvg', symObjAddr: 0x4A0, symBinAddr: 0x1A2A0, symSize: 0x30 } + - { offsetInCU: 0x17F8, offset: 0x6EA61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvs', symObjAddr: 0x4D0, symBinAddr: 0x1A2D0, symSize: 0x40 } + - { offsetInCU: 0x182B, offset: 0x6EA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x510, symBinAddr: 0x1A310, symSize: 0x40 } + - { offsetInCU: 0x1850, offset: 0x6EAB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x550, symBinAddr: 0x1A350, symSize: 0x10 } + - { offsetInCU: 0x1871, offset: 0x6EADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvg', symObjAddr: 0x560, symBinAddr: 0x1A360, symSize: 0x30 } + - { offsetInCU: 0x188E, offset: 0x6EAF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvs', symObjAddr: 0x590, symBinAddr: 0x1A390, symSize: 0x40 } + - { offsetInCU: 0x18C1, offset: 0x6EB2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x5D0, symBinAddr: 0x1A3D0, symSize: 0x40 } + - { offsetInCU: 0x18E6, offset: 0x6EB4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x650, symBinAddr: 0x1A450, symSize: 0x40 } + - { offsetInCU: 0x190B, offset: 0x6EB74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x760, symBinAddr: 0x1A560, symSize: 0x40 } + - { offsetInCU: 0x1930, offset: 0x6EB99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x7E0, symBinAddr: 0x1A5E0, symSize: 0x40 } + - { offsetInCU: 0x1955, offset: 0x6EBBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x8F0, symBinAddr: 0x1A6F0, symSize: 0x40 } + - { offsetInCU: 0x197A, offset: 0x6EBE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x970, symBinAddr: 0x1A770, symSize: 0x40 } + - { offsetInCU: 0x199F, offset: 0x6EC08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0xA70, symBinAddr: 0x1A870, symSize: 0x40 } + - { offsetInCU: 0x1A22, offset: 0x6EC8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0xAB0, symBinAddr: 0x1A8B0, symSize: 0xF0 } + - { offsetInCU: 0x1C38, offset: 0x6EEA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xBA0, symBinAddr: 0x1A9A0, symSize: 0x750 } + - { offsetInCU: 0x273D, offset: 0x6F9A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x12F0, symBinAddr: 0x1B0F0, symSize: 0x180 } + - { offsetInCU: 0x27DF, offset: 0x6FA48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1470, symBinAddr: 0x1B270, symSize: 0x140 } + - { offsetInCU: 0x2842, offset: 0x6FAAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x15B0, symBinAddr: 0x1B3B0, symSize: 0x60 } + - { offsetInCU: 0x2856, offset: 0x6FABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x1610, symBinAddr: 0x1B410, symSize: 0x340 } + - { offsetInCU: 0x28E7, offset: 0x6FB50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x1950, symBinAddr: 0x1B750, symSize: 0x20 } + - { offsetInCU: 0x28FB, offset: 0x6FB64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x1970, symBinAddr: 0x1B770, symSize: 0x30 } + - { offsetInCU: 0x2954, offset: 0x6FBBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x19D0, symBinAddr: 0x1B7D0, symSize: 0x30 } + - { offsetInCU: 0x29F5, offset: 0x6FC5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1AD0, symBinAddr: 0x1B8D0, symSize: 0x1F0 } + - { offsetInCU: 0x2C19, offset: 0x6FE82, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1CC0, symBinAddr: 0x1BAC0, symSize: 0xC0 } + - { offsetInCU: 0x2E47, offset: 0x700B0, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1D80, symBinAddr: 0x1BB80, symSize: 0x130 } + - { offsetInCU: 0x20B, offset: 0x70515, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xE60, symBinAddr: 0x1D530, symSize: 0x820 } + - { offsetInCU: 0x608, offset: 0x70912, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x1680, symBinAddr: 0x1DD50, symSize: 0xB0 } + - { offsetInCU: 0x6C6, offset: 0x709D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x1970, symBinAddr: 0x1E040, symSize: 0x20 } + - { offsetInCU: 0x8DC, offset: 0x70BE6, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x710, symBinAddr: 0x1CDE0, symSize: 0x20 } + - { offsetInCU: 0x8F0, offset: 0x70BFA, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x730, symBinAddr: 0x1CE00, symSize: 0x20 } + - { offsetInCU: 0xA7F, offset: 0x70D89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x19C0, symBinAddr: 0x1E090, symSize: 0x70 } + - { offsetInCU: 0xAAE, offset: 0x70DB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x1A30, symBinAddr: 0x1E100, symSize: 0x20 } + - { offsetInCU: 0xAC2, offset: 0x70DCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x1A50, symBinAddr: 0x1E120, symSize: 0x30 } + - { offsetInCU: 0xAD6, offset: 0x70DE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1A80, symBinAddr: 0x1E150, symSize: 0x10 } + - { offsetInCU: 0xAEA, offset: 0x70DF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1AC0, symBinAddr: 0x1E160, symSize: 0x40 } + - { offsetInCU: 0xAFE, offset: 0x70E08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x1B00, symBinAddr: 0x1E1A0, symSize: 0x30 } + - { offsetInCU: 0xB12, offset: 0x70E1C, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x1B30, symBinAddr: 0x1E1D0, symSize: 0x130 } + - { offsetInCU: 0xB26, offset: 0x70E30, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1C60, symBinAddr: 0x1E300, symSize: 0x20 } + - { offsetInCU: 0xB3A, offset: 0x70E44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1C80, symBinAddr: 0x1E320, symSize: 0x40 } + - { offsetInCU: 0xB4E, offset: 0x70E58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1CC0, symBinAddr: 0x1E360, symSize: 0x40 } + - { offsetInCU: 0xB62, offset: 0x70E6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1D00, symBinAddr: 0x1E3A0, symSize: 0x50 } + - { offsetInCU: 0xB76, offset: 0x70E80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1D50, symBinAddr: 0x1E3F0, symSize: 0x10 } + - { offsetInCU: 0xDA6, offset: 0x710B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x26D0, symBinAddr: 0x1ED70, symSize: 0x8B0 } + - { offsetInCU: 0x1298, offset: 0x715A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2FC0, symBinAddr: 0x1F660, symSize: 0x20 } + - { offsetInCU: 0x12B7, offset: 0x715C1, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x3000, symBinAddr: 0x1F6A0, symSize: 0x20 } + - { offsetInCU: 0x12E0, offset: 0x715EA, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x3020, symBinAddr: 0x1F6C0, symSize: 0x20 } + - { offsetInCU: 0x12F4, offset: 0x715FE, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x3040, symBinAddr: 0x1F6E0, symSize: 0x10 } + - { offsetInCU: 0x1308, offset: 0x71612, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x3070, symBinAddr: 0x1F710, symSize: 0x10 } + - { offsetInCU: 0x135C, offset: 0x71666, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x3170, symBinAddr: 0x1F7A0, symSize: 0x70 } + - { offsetInCU: 0x13AD, offset: 0x716B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x31E0, symBinAddr: 0x1F810, symSize: 0x5C0 } + - { offsetInCU: 0x159A, offset: 0x718A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x37A0, symBinAddr: 0x1FDD0, symSize: 0x580 } + - { offsetInCU: 0x1795, offset: 0x71A9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3D20, symBinAddr: 0x20350, symSize: 0x30 } + - { offsetInCU: 0x17A9, offset: 0x71AB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0x3D50, symBinAddr: 0x20380, symSize: 0x20 } + - { offsetInCU: 0x17BD, offset: 0x71AC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3D70, symBinAddr: 0x203A0, symSize: 0x10 } + - { offsetInCU: 0x17D1, offset: 0x71ADB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3DB0, symBinAddr: 0x203E0, symSize: 0x20 } + - { offsetInCU: 0x180A, offset: 0x71B14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3DD0, symBinAddr: 0x20400, symSize: 0x40 } + - { offsetInCU: 0x1833, offset: 0x71B3D, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3E10, symBinAddr: 0x20440, symSize: 0x40 } + - { offsetInCU: 0x184E, offset: 0x71B58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3E50, symBinAddr: 0x20480, symSize: 0x20 } + - { offsetInCU: 0x187E, offset: 0x71B88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3EA0, symBinAddr: 0x204A0, symSize: 0x30 } + - { offsetInCU: 0x18A7, offset: 0x71BB1, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3ED0, symBinAddr: 0x204D0, symSize: 0x30 } + - { offsetInCU: 0x18BB, offset: 0x71BC5, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3F20, symBinAddr: 0x20520, symSize: 0x30 } + - { offsetInCU: 0x18CF, offset: 0x71BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3FC0, symBinAddr: 0x205C0, symSize: 0x20 } + - { offsetInCU: 0x18E3, offset: 0x71BED, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3FE0, symBinAddr: 0x205E0, symSize: 0x1C0 } + - { offsetInCU: 0x1AD6, offset: 0x71DE0, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x41A0, symBinAddr: 0x207A0, symSize: 0x30 } + - { offsetInCU: 0x1AEA, offset: 0x71DF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x4270, symBinAddr: 0x20870, symSize: 0x40 } + - { offsetInCU: 0x1AFE, offset: 0x71E08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x43C0, symBinAddr: 0x209C0, symSize: 0x20 } + - { offsetInCU: 0x1B12, offset: 0x71E1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x4480, symBinAddr: 0x20A00, symSize: 0x10 } + - { offsetInCU: 0x1F88, offset: 0x72292, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1C6D0, symSize: 0x370 } + - { offsetInCU: 0x2069, offset: 0x72373, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x370, symBinAddr: 0x1CA40, symSize: 0x3A0 } + - { offsetInCU: 0x2553, offset: 0x7285D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x750, symBinAddr: 0x1CE20, symSize: 0x90 } + - { offsetInCU: 0x26BF, offset: 0x729C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x7E0, symBinAddr: 0x1CEB0, symSize: 0x4D0 } + - { offsetInCU: 0x28BE, offset: 0x72BC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xCB0, symBinAddr: 0x1D380, symSize: 0x160 } + - { offsetInCU: 0x2B64, offset: 0x72E6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x1730, symBinAddr: 0x1DE00, symSize: 0x240 } + - { offsetInCU: 0x2BAB, offset: 0x72EB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1990, symBinAddr: 0x1E060, symSize: 0x30 } + - { offsetInCU: 0x2BEA, offset: 0x72EF4, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1D60, symBinAddr: 0x1E400, symSize: 0x90 } + - { offsetInCU: 0x2D27, offset: 0x73031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1DF0, symBinAddr: 0x1E490, symSize: 0x280 } + - { offsetInCU: 0x2F43, offset: 0x7324D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x2070, symBinAddr: 0x1E710, symSize: 0x210 } + - { offsetInCU: 0x3048, offset: 0x73352, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x2280, symBinAddr: 0x1E920, symSize: 0x450 } + - { offsetInCU: 0x33D7, offset: 0x736E1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x3130, symBinAddr: 0x1F760, symSize: 0x20 } + - { offsetInCU: 0x3407, offset: 0x73711, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x3150, symBinAddr: 0x1F780, symSize: 0x20 } + - { offsetInCU: 0x27, offset: 0x737E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x20AE0, symSize: 0x30 } + - { offsetInCU: 0x4B, offset: 0x73809, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x4D70, symBinAddr: 0x66AE8, symSize: 0x0 } + - { offsetInCU: 0xF3, offset: 0x738B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x2E0, symBinAddr: 0x20DC0, symSize: 0x40 } + - { offsetInCU: 0x17D, offset: 0x7393B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x20AE0, symSize: 0x30 } + - { offsetInCU: 0x1CA, offset: 0x73988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x20BE0, symSize: 0x20 } + - { offsetInCU: 0x1FB, offset: 0x739B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x120, symBinAddr: 0x20C00, symSize: 0x10 } + - { offsetInCU: 0x217, offset: 0x739D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x20F80, symSize: 0x20 } + - { offsetInCU: 0x26C, offset: 0x73A2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x130, symBinAddr: 0x20C10, symSize: 0x30 } + - { offsetInCU: 0x332, offset: 0x73AF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x490, symBinAddr: 0x20F70, symSize: 0x10 } + - { offsetInCU: 0x35D, offset: 0x73B1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x4C0, symBinAddr: 0x20FA0, symSize: 0x20 } + - { offsetInCU: 0x371, offset: 0x73B2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x520, symBinAddr: 0x20FC0, symSize: 0x10 } + - { offsetInCU: 0x385, offset: 0x73B43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x530, symBinAddr: 0x20FD0, symSize: 0x30 } + - { offsetInCU: 0x399, offset: 0x73B57, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x560, symBinAddr: 0x21000, symSize: 0x10 } + - { offsetInCU: 0x3AD, offset: 0x73B6B, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x570, symBinAddr: 0x21010, symSize: 0x10 } + - { offsetInCU: 0x3C1, offset: 0x73B7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x580, symBinAddr: 0x21020, symSize: 0x80 } + - { offsetInCU: 0x3D5, offset: 0x73B93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x600, symBinAddr: 0x210A0, symSize: 0xD0 } + - { offsetInCU: 0x3E9, offset: 0x73BA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6D0, symBinAddr: 0x21170, symSize: 0x10 } + - { offsetInCU: 0x3FD, offset: 0x73BBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6E0, symBinAddr: 0x21180, symSize: 0x10 } + - { offsetInCU: 0x411, offset: 0x73BCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x6F0, symBinAddr: 0x21190, symSize: 0x10 } + - { offsetInCU: 0x425, offset: 0x73BE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x700, symBinAddr: 0x211A0, symSize: 0xA } + - { offsetInCU: 0x462, offset: 0x73C20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x20B30, symSize: 0x10 } + - { offsetInCU: 0x512, offset: 0x73CD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x60, symBinAddr: 0x20B40, symSize: 0x40 } + - { offsetInCU: 0x5C1, offset: 0x73D7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA0, symBinAddr: 0x20B80, symSize: 0x20 } + - { offsetInCU: 0x614, offset: 0x73DD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC0, symBinAddr: 0x20BA0, symSize: 0x40 } + - { offsetInCU: 0x7A2, offset: 0x73F60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x30, symBinAddr: 0x20B10, symSize: 0x10 } + - { offsetInCU: 0x7B6, offset: 0x73F74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x40, symBinAddr: 0x20B20, symSize: 0x10 } + - { offsetInCU: 0x813, offset: 0x73FD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x160, symBinAddr: 0x20C40, symSize: 0x20 } + - { offsetInCU: 0x82D, offset: 0x73FEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x180, symBinAddr: 0x20C60, symSize: 0x50 } + - { offsetInCU: 0x85A, offset: 0x74018, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1D0, symBinAddr: 0x20CB0, symSize: 0x60 } + - { offsetInCU: 0x897, offset: 0x74055, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x230, symBinAddr: 0x20D10, symSize: 0x60 } + - { offsetInCU: 0x8C4, offset: 0x74082, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x290, symBinAddr: 0x20D70, symSize: 0x10 } + - { offsetInCU: 0x8E5, offset: 0x740A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2A0, symBinAddr: 0x20D80, symSize: 0x40 } + - { offsetInCU: 0x981, offset: 0x7413F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x320, symBinAddr: 0x20E00, symSize: 0x140 } + - { offsetInCU: 0xB0A, offset: 0x742C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x460, symBinAddr: 0x20F40, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x74326, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x211B0, symSize: 0x120 } + - { offsetInCU: 0x2AE, offset: 0x745AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0x900, symBinAddr: 0x21AB0, symSize: 0x30 } + - { offsetInCU: 0x3BD, offset: 0x746BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0x960, symBinAddr: 0x21B10, symSize: 0x30 } + - { offsetInCU: 0x3EC, offset: 0x746EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0x990, symBinAddr: 0x21B40, symSize: 0x50 } + - { offsetInCU: 0x473, offset: 0x74772, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xBD0, symBinAddr: 0x21D80, symSize: 0x20 } + - { offsetInCU: 0x6C5, offset: 0x749C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x211B0, symSize: 0x120 } + - { offsetInCU: 0x79F, offset: 0x74A9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x120, symBinAddr: 0x212D0, symSize: 0xF0 } + - { offsetInCU: 0x7F8, offset: 0x74AF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x210, symBinAddr: 0x213C0, symSize: 0x30 } + - { offsetInCU: 0x81B, offset: 0x74B1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x240, symBinAddr: 0x213F0, symSize: 0x40 } + - { offsetInCU: 0x84E, offset: 0x74B4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x280, symBinAddr: 0x21430, symSize: 0x40 } + - { offsetInCU: 0x873, offset: 0x74B72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x2C0, symBinAddr: 0x21470, symSize: 0x50 } + - { offsetInCU: 0x890, offset: 0x74B8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x310, symBinAddr: 0x214C0, symSize: 0x50 } + - { offsetInCU: 0x8C3, offset: 0x74BC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x360, symBinAddr: 0x21510, symSize: 0x40 } + - { offsetInCU: 0x8E8, offset: 0x74BE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x3A0, symBinAddr: 0x21550, symSize: 0x40 } + - { offsetInCU: 0x905, offset: 0x74C04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x3E0, symBinAddr: 0x21590, symSize: 0x50 } + - { offsetInCU: 0x938, offset: 0x74C37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x430, symBinAddr: 0x215E0, symSize: 0x40 } + - { offsetInCU: 0x95D, offset: 0x74C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvg', symObjAddr: 0x470, symBinAddr: 0x21620, symSize: 0x30 } + - { offsetInCU: 0x980, offset: 0x74C7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvs', symObjAddr: 0x4A0, symBinAddr: 0x21650, symSize: 0x40 } + - { offsetInCU: 0x9B3, offset: 0x74CB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x4E0, symBinAddr: 0x21690, symSize: 0x40 } + - { offsetInCU: 0x9D8, offset: 0x74CD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvg', symObjAddr: 0x520, symBinAddr: 0x216D0, symSize: 0x30 } + - { offsetInCU: 0x9FB, offset: 0x74CFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvs', symObjAddr: 0x550, symBinAddr: 0x21700, symSize: 0x40 } + - { offsetInCU: 0xA2E, offset: 0x74D2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x590, symBinAddr: 0x21740, symSize: 0x40 } + - { offsetInCU: 0xA53, offset: 0x74D52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x5D0, symBinAddr: 0x21780, symSize: 0x10 } + - { offsetInCU: 0xACD, offset: 0x74DCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x5E0, symBinAddr: 0x21790, symSize: 0xF0 } + - { offsetInCU: 0xBCD, offset: 0x74ECC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x6D0, symBinAddr: 0x21880, symSize: 0x110 } + - { offsetInCU: 0xC51, offset: 0x74F50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x7E0, symBinAddr: 0x21990, symSize: 0xD0 } + - { offsetInCU: 0xC96, offset: 0x74F95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x8B0, symBinAddr: 0x21A60, symSize: 0x20 } + - { offsetInCU: 0xCAA, offset: 0x74FA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x8D0, symBinAddr: 0x21A80, symSize: 0x30 } + - { offsetInCU: 0xD03, offset: 0x75002, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0x930, symBinAddr: 0x21AE0, symSize: 0x30 } + - { offsetInCU: 0xD9F, offset: 0x7509E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0x9E0, symBinAddr: 0x21B90, symSize: 0x1F0 } + - { offsetInCU: 0x27, offset: 0x752B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x21DE0, symSize: 0x20 } + - { offsetInCU: 0x87, offset: 0x75312, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x21EE0, symSize: 0x20 } + - { offsetInCU: 0xB8, offset: 0x75343, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x120, symBinAddr: 0x21F00, symSize: 0x20 } + - { offsetInCU: 0xE1, offset: 0x7536C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7B0, symBinAddr: 0x22590, symSize: 0x20 } + - { offsetInCU: 0x180, offset: 0x7540B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x240, symBinAddr: 0x22020, symSize: 0x20 } + - { offsetInCU: 0x1B1, offset: 0x7543C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x260, symBinAddr: 0x22040, symSize: 0x20 } + - { offsetInCU: 0x1DA, offset: 0x75465, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x7D0, symBinAddr: 0x225B0, symSize: 0x90 } + - { offsetInCU: 0x31B, offset: 0x755A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x280, symBinAddr: 0x22060, symSize: 0x250 } + - { offsetInCU: 0x5FC, offset: 0x75887, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x4D0, symBinAddr: 0x222B0, symSize: 0x150 } + - { offsetInCU: 0x898, offset: 0x75B23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x620, symBinAddr: 0x22400, symSize: 0xC0 } + - { offsetInCU: 0x9DD, offset: 0x75C68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x6E0, symBinAddr: 0x224C0, symSize: 0xD0 } + - { offsetInCU: 0xB09, offset: 0x75D94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x860, symBinAddr: 0x22640, symSize: 0x10 } + - { offsetInCU: 0xB1D, offset: 0x75DA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x870, symBinAddr: 0x22650, symSize: 0x30 } + - { offsetInCU: 0xB31, offset: 0x75DBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x8A0, symBinAddr: 0x22680, symSize: 0x10 } + - { offsetInCU: 0xB45, offset: 0x75DD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x8B0, symBinAddr: 0x22690, symSize: 0x30 } + - { offsetInCU: 0xB59, offset: 0x75DE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x900, symBinAddr: 0x226C0, symSize: 0x80 } + - { offsetInCU: 0xB6D, offset: 0x75DF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x980, symBinAddr: 0x22740, symSize: 0xD0 } + - { offsetInCU: 0xB81, offset: 0x75E0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0xA50, symBinAddr: 0x22810, symSize: 0x10 } + - { offsetInCU: 0xB95, offset: 0x75E20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0xA60, symBinAddr: 0x22820, symSize: 0x10 } + - { offsetInCU: 0xBA9, offset: 0x75E34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0xA70, symBinAddr: 0x22830, symSize: 0x10 } + - { offsetInCU: 0xBBD, offset: 0x75E48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0xA80, symBinAddr: 0x22840, symSize: 0x10 } + - { offsetInCU: 0xBD1, offset: 0x75E5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0xA90, symBinAddr: 0x22850, symSize: 0x80 } + - { offsetInCU: 0xBE5, offset: 0x75E70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xB10, symBinAddr: 0x228D0, symSize: 0xD0 } + - { offsetInCU: 0xBF9, offset: 0x75E84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xBE0, symBinAddr: 0x229A0, symSize: 0x10 } + - { offsetInCU: 0xC0D, offset: 0x75E98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xBF0, symBinAddr: 0x229B0, symSize: 0x10 } + - { offsetInCU: 0xC21, offset: 0x75EAC, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xC40, symBinAddr: 0x229C0, symSize: 0x40 } + - { offsetInCU: 0xC35, offset: 0x75EC0, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGMa', symObjAddr: 0xC80, symBinAddr: 0x22A00, symSize: 0x30 } + - { offsetInCU: 0xC72, offset: 0x75EFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x30, symBinAddr: 0x21E10, symSize: 0x20 } + - { offsetInCU: 0xD4B, offset: 0x75FD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x50, symBinAddr: 0x21E30, symSize: 0x40 } + - { offsetInCU: 0xE23, offset: 0x760AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x90, symBinAddr: 0x21E70, symSize: 0x30 } + - { offsetInCU: 0xE9F, offset: 0x7612A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC0, symBinAddr: 0x21EA0, symSize: 0x40 } + - { offsetInCU: 0xF5A, offset: 0x761E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x170, symBinAddr: 0x21F50, symSize: 0x20 } + - { offsetInCU: 0x102D, offset: 0x762B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x190, symBinAddr: 0x21F70, symSize: 0x40 } + - { offsetInCU: 0x1105, offset: 0x76390, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D0, symBinAddr: 0x21FB0, symSize: 0x30 } + - { offsetInCU: 0x1181, offset: 0x7640C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x21FE0, symSize: 0x40 } + - { offsetInCU: 0x1399, offset: 0x76624, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x21DE0, symSize: 0x20 } + - { offsetInCU: 0x13BC, offset: 0x76647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x20, symBinAddr: 0x21E00, symSize: 0x10 } + - { offsetInCU: 0x1416, offset: 0x766A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x140, symBinAddr: 0x21F20, symSize: 0x10 } + - { offsetInCU: 0x142A, offset: 0x766B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x150, symBinAddr: 0x21F30, symSize: 0x20 } + - { offsetInCU: 0x3AF, offset: 0x76B61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1370, symBinAddr: 0x23DC0, symSize: 0x20 } + - { offsetInCU: 0x3C3, offset: 0x76B75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1390, symBinAddr: 0x23DE0, symSize: 0x30 } + - { offsetInCU: 0x3D7, offset: 0x76B89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x1460, symBinAddr: 0x23E10, symSize: 0x30 } + - { offsetInCU: 0x3EB, offset: 0x76B9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x1490, symBinAddr: 0x23E40, symSize: 0x50 } + - { offsetInCU: 0x3FF, offset: 0x76BB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x14E0, symBinAddr: 0x23E90, symSize: 0x40 } + - { offsetInCU: 0x413, offset: 0x76BC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x1520, symBinAddr: 0x23ED0, symSize: 0x60 } + - { offsetInCU: 0x427, offset: 0x76BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x1620, symBinAddr: 0x23FD0, symSize: 0x50 } + - { offsetInCU: 0x43B, offset: 0x76BED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1670, symBinAddr: 0x24020, symSize: 0x80 } + - { offsetInCU: 0x44F, offset: 0x76C01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x16F0, symBinAddr: 0x240A0, symSize: 0x18 } + - { offsetInCU: 0x4CB, offset: 0x76C7D, size: 0x8, addend: 0x0, symName: '_$sSa9repeating5countSayxGx_SitcfCs5UInt8V_Tgm5', symObjAddr: 0x300, symBinAddr: 0x22D50, symSize: 0x70 } + - { offsetInCU: 0x714, offset: 0x76EC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x22A50, symSize: 0x170 } + - { offsetInCU: 0x893, offset: 0x77045, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x170, symBinAddr: 0x22BC0, symSize: 0x190 } + - { offsetInCU: 0xAD9, offset: 0x7728B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x370, symBinAddr: 0x22DC0, symSize: 0xFC0 } + - { offsetInCU: 0x1159, offset: 0x7790B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0x1330, symBinAddr: 0x23D80, symSize: 0x40 } + - { offsetInCU: 0x78, offset: 0x77A00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA0, symBinAddr: 0x24160, symSize: 0x30 } + - { offsetInCU: 0xA9, offset: 0x77A31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xD0, symBinAddr: 0x24190, symSize: 0x10 } + - { offsetInCU: 0x12A, offset: 0x77AB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x130, symBinAddr: 0x241F0, symSize: 0x30 } + - { offsetInCU: 0x153, offset: 0x77ADB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x650, symBinAddr: 0x24710, symSize: 0x340 } + - { offsetInCU: 0x1B6, offset: 0x77B3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x1D0, symBinAddr: 0x24290, symSize: 0x30 } + - { offsetInCU: 0x1DF, offset: 0x77B67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x9A0, symBinAddr: 0x24A60, symSize: 0x380 } + - { offsetInCU: 0x242, offset: 0x77BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x270, symBinAddr: 0x24330, symSize: 0x30 } + - { offsetInCU: 0x2E7, offset: 0x77C6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x3A0, symBinAddr: 0x24460, symSize: 0x30 } + - { offsetInCU: 0x352, offset: 0x77CDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x420, symBinAddr: 0x244E0, symSize: 0x30 } + - { offsetInCU: 0x37B, offset: 0x77D03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0xE00, symBinAddr: 0x24EC0, symSize: 0x120 } + - { offsetInCU: 0x3DE, offset: 0x77D66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x4A0, symBinAddr: 0x24560, symSize: 0x30 } + - { offsetInCU: 0x407, offset: 0x77D8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0xF20, symBinAddr: 0x24FE0, symSize: 0xB0 } + - { offsetInCU: 0x46A, offset: 0x77DF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x520, symBinAddr: 0x245E0, symSize: 0x20 } + - { offsetInCU: 0x4D5, offset: 0x77E5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x620, symBinAddr: 0x246E0, symSize: 0x30 } + - { offsetInCU: 0x507, offset: 0x77E8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0xFD0, symBinAddr: 0x25090, symSize: 0x10 } + - { offsetInCU: 0x51B, offset: 0x77EA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0xFE0, symBinAddr: 0x250A0, symSize: 0x30 } + - { offsetInCU: 0x52F, offset: 0x77EB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x1010, symBinAddr: 0x250D0, symSize: 0x10 } + - { offsetInCU: 0x543, offset: 0x77ECB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x1020, symBinAddr: 0x250E0, symSize: 0x30 } + - { offsetInCU: 0x557, offset: 0x77EDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x1050, symBinAddr: 0x25110, symSize: 0x10 } + - { offsetInCU: 0x56B, offset: 0x77EF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x1060, symBinAddr: 0x25120, symSize: 0x30 } + - { offsetInCU: 0x57F, offset: 0x77F07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x1090, symBinAddr: 0x25150, symSize: 0x10 } + - { offsetInCU: 0x593, offset: 0x77F1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x10A0, symBinAddr: 0x25160, symSize: 0x30 } + - { offsetInCU: 0x5A7, offset: 0x77F2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x10D0, symBinAddr: 0x25190, symSize: 0x10 } + - { offsetInCU: 0x5BB, offset: 0x77F43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x10E0, symBinAddr: 0x251A0, symSize: 0x30 } + - { offsetInCU: 0x5CF, offset: 0x77F57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x1110, symBinAddr: 0x251D0, symSize: 0x10 } + - { offsetInCU: 0x5E3, offset: 0x77F6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x1120, symBinAddr: 0x251E0, symSize: 0x30 } + - { offsetInCU: 0x5F7, offset: 0x77F7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x1150, symBinAddr: 0x25210, symSize: 0x10 } + - { offsetInCU: 0x60B, offset: 0x77F93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x1160, symBinAddr: 0x25220, symSize: 0x30 } + - { offsetInCU: 0x61F, offset: 0x77FA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x1190, symBinAddr: 0x25250, symSize: 0x10 } + - { offsetInCU: 0x633, offset: 0x77FBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x11A0, symBinAddr: 0x25260, symSize: 0x30 } + - { offsetInCU: 0x647, offset: 0x77FCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x11D0, symBinAddr: 0x25290, symSize: 0x10 } + - { offsetInCU: 0x65B, offset: 0x77FE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x11E0, symBinAddr: 0x252A0, symSize: 0x30 } + - { offsetInCU: 0x66F, offset: 0x77FF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x1210, symBinAddr: 0x252D0, symSize: 0x10 } + - { offsetInCU: 0x683, offset: 0x7800B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x1220, symBinAddr: 0x252E0, symSize: 0x30 } + - { offsetInCU: 0x697, offset: 0x7801F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x1250, symBinAddr: 0x25310, symSize: 0x10 } + - { offsetInCU: 0x6AB, offset: 0x78033, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x1260, symBinAddr: 0x25320, symSize: 0x30 } + - { offsetInCU: 0x6BF, offset: 0x78047, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x1290, symBinAddr: 0x25350, symSize: 0x10 } + - { offsetInCU: 0x6D3, offset: 0x7805B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x12A0, symBinAddr: 0x25360, symSize: 0x10 } + - { offsetInCU: 0x6E7, offset: 0x7806F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x12B0, symBinAddr: 0x25370, symSize: 0x10 } + - { offsetInCU: 0x6FB, offset: 0x78083, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x12C0, symBinAddr: 0x25380, symSize: 0x10 } + - { offsetInCU: 0x70F, offset: 0x78097, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x12D0, symBinAddr: 0x25390, symSize: 0x10 } + - { offsetInCU: 0x723, offset: 0x780AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x12E0, symBinAddr: 0x253A0, symSize: 0x10 } + - { offsetInCU: 0x737, offset: 0x780BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x12F0, symBinAddr: 0x253B0, symSize: 0x10 } + - { offsetInCU: 0x74B, offset: 0x780D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x1300, symBinAddr: 0x253C0, symSize: 0x10 } + - { offsetInCU: 0x75F, offset: 0x780E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x1310, symBinAddr: 0x253D0, symSize: 0x10 } + - { offsetInCU: 0x773, offset: 0x780FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x1320, symBinAddr: 0x253E0, symSize: 0x10 } + - { offsetInCU: 0x787, offset: 0x7810F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x1330, symBinAddr: 0x253F0, symSize: 0x10 } + - { offsetInCU: 0x7C4, offset: 0x7814C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x24110, symSize: 0x10 } + - { offsetInCU: 0x829, offset: 0x781B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x70, symBinAddr: 0x24130, symSize: 0x20 } + - { offsetInCU: 0x93F, offset: 0x782C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x240C0, symSize: 0x40 } + - { offsetInCU: 0x95C, offset: 0x782E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x40, symBinAddr: 0x24100, symSize: 0x10 } + - { offsetInCU: 0x9A8, offset: 0x78330, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x100, symBinAddr: 0x241C0, symSize: 0x10 } + - { offsetInCU: 0x9D6, offset: 0x7835E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1A0, symBinAddr: 0x24260, symSize: 0x10 } + - { offsetInCU: 0xA04, offset: 0x7838C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x240, symBinAddr: 0x24300, symSize: 0x10 } + - { offsetInCU: 0xA32, offset: 0x783BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2B0, symBinAddr: 0x24370, symSize: 0x10 } + - { offsetInCU: 0xA53, offset: 0x783DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2F0, symBinAddr: 0x243B0, symSize: 0x10 } + - { offsetInCU: 0xA74, offset: 0x783FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x370, symBinAddr: 0x24430, symSize: 0x10 } + - { offsetInCU: 0xAAD, offset: 0x78435, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3F0, symBinAddr: 0x244B0, symSize: 0x10 } + - { offsetInCU: 0xADB, offset: 0x78463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x470, symBinAddr: 0x24530, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x78497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x4D0, symBinAddr: 0x24590, symSize: 0x20 } + - { offsetInCU: 0xB2C, offset: 0x784B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x4F0, symBinAddr: 0x245B0, symSize: 0x10 } + - { offsetInCU: 0xB65, offset: 0x784ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x540, symBinAddr: 0x24600, symSize: 0x30 } + - { offsetInCU: 0xB82, offset: 0x7850A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x570, symBinAddr: 0x24630, symSize: 0x10 } + - { offsetInCU: 0x1AD, offset: 0x78721, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x400, symBinAddr: 0x25A00, symSize: 0x20 } + - { offsetInCU: 0x210, offset: 0x78784, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x6C0, symBinAddr: 0x25CC0, symSize: 0x40 } + - { offsetInCU: 0x24B, offset: 0x787BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x700, symBinAddr: 0x25D00, symSize: 0x40 } + - { offsetInCU: 0x290, offset: 0x78804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x740, symBinAddr: 0x25D40, symSize: 0x40 } + - { offsetInCU: 0x2CE, offset: 0x78842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x3E0, symBinAddr: 0x259E0, symSize: 0x20 } + - { offsetInCU: 0x2E2, offset: 0x78856, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x450, symBinAddr: 0x25A50, symSize: 0x40 } + - { offsetInCU: 0x3EE, offset: 0x78962, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x780, symBinAddr: 0x25D80, symSize: 0x20 } + - { offsetInCU: 0x40A, offset: 0x7897E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x7A0, symBinAddr: 0x25DA0, symSize: 0x20 } + - { offsetInCU: 0x45D, offset: 0x789D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x7C0, symBinAddr: 0x25DC0, symSize: 0x20 } + - { offsetInCU: 0x480, offset: 0x789F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x7E0, symBinAddr: 0x25DE0, symSize: 0x20 } + - { offsetInCU: 0x4BB, offset: 0x78A2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x800, symBinAddr: 0x25E00, symSize: 0x30 } + - { offsetInCU: 0x512, offset: 0x78A86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x830, symBinAddr: 0x25E30, symSize: 0x60 } + - { offsetInCU: 0x6E6, offset: 0x78C5A, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xE60, symBinAddr: 0x26430, symSize: 0x30 } + - { offsetInCU: 0x6FE, offset: 0x78C72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xE90, symBinAddr: 0x26460, symSize: 0x80 } + - { offsetInCU: 0x74A, offset: 0x78CBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0xFD0, symBinAddr: 0x265A0, symSize: 0x1A0 } + - { offsetInCU: 0x7DE, offset: 0x78D52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1180, symBinAddr: 0x26750, symSize: 0x50 } + - { offsetInCU: 0x82E, offset: 0x78DA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x11E0, symBinAddr: 0x267B0, symSize: 0x60 } + - { offsetInCU: 0x885, offset: 0x78DF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x12F0, symBinAddr: 0x268C0, symSize: 0x140 } + - { offsetInCU: 0x8ED, offset: 0x78E61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x1440, symBinAddr: 0x26A10, symSize: 0x70 } + - { offsetInCU: 0x973, offset: 0x78EE7, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x1840, symBinAddr: 0x26DC0, symSize: 0x30 } + - { offsetInCU: 0x987, offset: 0x78EFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x18A0, symBinAddr: 0x26E20, symSize: 0x10 } + - { offsetInCU: 0x99B, offset: 0x78F0F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x18B0, symBinAddr: 0x26E30, symSize: 0x20 } + - { offsetInCU: 0x9AF, offset: 0x78F23, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18D0, symBinAddr: 0x26E50, symSize: 0x10 } + - { offsetInCU: 0xA2D, offset: 0x78FA1, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1D30, symBinAddr: 0x27270, symSize: 0x20 } + - { offsetInCU: 0xA56, offset: 0x78FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1D50, symBinAddr: 0x27290, symSize: 0x20 } + - { offsetInCU: 0xCE8, offset: 0x7925C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x25600, symSize: 0x20 } + - { offsetInCU: 0xCFC, offset: 0x79270, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvg', symObjAddr: 0x20, symBinAddr: 0x25620, symSize: 0x30 } + - { offsetInCU: 0xD1F, offset: 0x79293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvs', symObjAddr: 0x50, symBinAddr: 0x25650, symSize: 0x40 } + - { offsetInCU: 0xD52, offset: 0x792C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0x90, symBinAddr: 0x25690, symSize: 0x40 } + - { offsetInCU: 0xD77, offset: 0x792EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvg', symObjAddr: 0xD0, symBinAddr: 0x256D0, symSize: 0x30 } + - { offsetInCU: 0xD94, offset: 0x79308, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvs', symObjAddr: 0x100, symBinAddr: 0x25700, symSize: 0x40 } + - { offsetInCU: 0xDBB, offset: 0x7932F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x140, symBinAddr: 0x25740, symSize: 0x40 } + - { offsetInCU: 0xDDA, offset: 0x7934E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x180, symBinAddr: 0x25780, symSize: 0x40 } + - { offsetInCU: 0xDF7, offset: 0x7936B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1C0, symBinAddr: 0x257C0, symSize: 0x50 } + - { offsetInCU: 0xE2A, offset: 0x7939E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x210, symBinAddr: 0x25810, symSize: 0x40 } + - { offsetInCU: 0xE4F, offset: 0x793C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x250, symBinAddr: 0x25850, symSize: 0x10 } + - { offsetInCU: 0xE70, offset: 0x793E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvg', symObjAddr: 0x260, symBinAddr: 0x25860, symSize: 0x30 } + - { offsetInCU: 0xE8D, offset: 0x79401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvs', symObjAddr: 0x290, symBinAddr: 0x25890, symSize: 0x40 } + - { offsetInCU: 0xEC0, offset: 0x79434, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x2D0, symBinAddr: 0x258D0, symSize: 0x40 } + - { offsetInCU: 0xEF3, offset: 0x79467, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x310, symBinAddr: 0x25910, symSize: 0xD0 } + - { offsetInCU: 0xF3A, offset: 0x794AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x420, symBinAddr: 0x25A20, symSize: 0x30 } + - { offsetInCU: 0xF9B, offset: 0x7950F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x490, symBinAddr: 0x25A90, symSize: 0x90 } + - { offsetInCU: 0x1024, offset: 0x79598, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x520, symBinAddr: 0x25B20, symSize: 0x20 } + - { offsetInCU: 0x1055, offset: 0x795C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x540, symBinAddr: 0x25B40, symSize: 0xD0 } + - { offsetInCU: 0x10AA, offset: 0x7961E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x610, symBinAddr: 0x25C10, symSize: 0x20 } + - { offsetInCU: 0x10C7, offset: 0x7963B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x630, symBinAddr: 0x25C30, symSize: 0x30 } + - { offsetInCU: 0x1100, offset: 0x79674, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x660, symBinAddr: 0x25C60, symSize: 0x60 } + - { offsetInCU: 0x1376, offset: 0x798EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x890, symBinAddr: 0x25E90, symSize: 0x470 } + - { offsetInCU: 0x165E, offset: 0x79BD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xD30, symBinAddr: 0x26300, symSize: 0x130 } + - { offsetInCU: 0x1744, offset: 0x79CB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xF10, symBinAddr: 0x264E0, symSize: 0xC0 } + - { offsetInCU: 0x180E, offset: 0x79D82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1170, symBinAddr: 0x26740, symSize: 0x10 } + - { offsetInCU: 0x1829, offset: 0x79D9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x11D0, symBinAddr: 0x267A0, symSize: 0x10 } + - { offsetInCU: 0x1844, offset: 0x79DB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x1240, symBinAddr: 0x26810, symSize: 0xB0 } + - { offsetInCU: 0x18CB, offset: 0x79E3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x1430, symBinAddr: 0x26A00, symSize: 0x10 } + - { offsetInCU: 0x18FB, offset: 0x79E6F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x14B0, symBinAddr: 0x26A80, symSize: 0x50 } + - { offsetInCU: 0x1994, offset: 0x79F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x18E0, symBinAddr: 0x26E60, symSize: 0x120 } + - { offsetInCU: 0x1A1D, offset: 0x79F91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x1A00, symBinAddr: 0x26F80, symSize: 0x1B0 } + - { offsetInCU: 0x1AEE, offset: 0x7A062, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1BB0, symBinAddr: 0x27130, symSize: 0x120 } + - { offsetInCU: 0x986, offset: 0x7AA89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x6250, symBinAddr: 0x2D540, symSize: 0x20 } + - { offsetInCU: 0xD18, offset: 0x7AE1B, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6A90, symBinAddr: 0x2DD80, symSize: 0x60 } + - { offsetInCU: 0xE03, offset: 0x7AF06, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6AF0, symBinAddr: 0x2DDE0, symSize: 0xF0 } + - { offsetInCU: 0x10B6, offset: 0x7B1B9, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6BE0, symBinAddr: 0x2DED0, symSize: 0x590 } + - { offsetInCU: 0x15BC, offset: 0x7B6BF, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x7170, symBinAddr: 0x2E460, symSize: 0x190 } + - { offsetInCU: 0x1810, offset: 0x7B913, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x7300, symBinAddr: 0x2E5F0, symSize: 0x2E0 } + - { offsetInCU: 0x1BD2, offset: 0x7BCD5, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x75E0, symBinAddr: 0x2E8D0, symSize: 0x180 } + - { offsetInCU: 0x1DCD, offset: 0x7BED0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x7760, symBinAddr: 0x2EA50, symSize: 0x3C0 } + - { offsetInCU: 0x1F83, offset: 0x7C086, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSnySiG_Tgmq5', symObjAddr: 0x7BF0, symBinAddr: 0x2EEE0, symSize: 0x80 } + - { offsetInCU: 0x2183, offset: 0x7C286, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayVyAByxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x82B0, symBinAddr: 0x2F5A0, symSize: 0xC0 } + - { offsetInCU: 0x2251, offset: 0x7C354, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x8370, symBinAddr: 0x2F660, symSize: 0x40 } + - { offsetInCU: 0x2265, offset: 0x7C368, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x83F0, symBinAddr: 0x2F6A0, symSize: 0x20 } + - { offsetInCU: 0x2279, offset: 0x7C37C, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x84F0, symBinAddr: 0x2F760, symSize: 0x30 } + - { offsetInCU: 0x228D, offset: 0x7C390, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x8520, symBinAddr: 0x2F790, symSize: 0x30 } + - { offsetInCU: 0x22A1, offset: 0x7C3A4, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOr', symObjAddr: 0x8580, symBinAddr: 0x2F7F0, symSize: 0x20 } + - { offsetInCU: 0x22B5, offset: 0x7C3B8, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOs', symObjAddr: 0x85A0, symBinAddr: 0x2F810, symSize: 0x1B } + - { offsetInCU: 0x298F, offset: 0x7CA92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x272F0, symSize: 0xBA0 } + - { offsetInCU: 0x356A, offset: 0x7D66D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x1750, symBinAddr: 0x28A40, symSize: 0xB10 } + - { offsetInCU: 0x3FFA, offset: 0x7E0FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x2260, symBinAddr: 0x29550, symSize: 0xA70 } + - { offsetInCU: 0x4A73, offset: 0x7EB76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2CD0, symBinAddr: 0x29FC0, symSize: 0xD20 } + - { offsetInCU: 0x588B, offset: 0x7F98E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x39F0, symBinAddr: 0x2ACE0, symSize: 0xCB0 } + - { offsetInCU: 0x66C0, offset: 0x807C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x46C0, symBinAddr: 0x2B9B0, symSize: 0xB90 } + - { offsetInCU: 0x72E4, offset: 0x813E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x5250, symBinAddr: 0x2C540, symSize: 0xB50 } + - { offsetInCU: 0x7DD1, offset: 0x81ED4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x5DA0, symBinAddr: 0x2D090, symSize: 0x190 } + - { offsetInCU: 0x7EE4, offset: 0x81FE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x5F30, symBinAddr: 0x2D220, symSize: 0x180 } + - { offsetInCU: 0x7FB7, offset: 0x820BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x60B0, symBinAddr: 0x2D3A0, symSize: 0x140 } + - { offsetInCU: 0x8112, offset: 0x82215, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x61F0, symBinAddr: 0x2D4E0, symSize: 0x60 } + - { offsetInCU: 0x82E9, offset: 0x823EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x6270, symBinAddr: 0x2D560, symSize: 0x820 } + - { offsetInCU: 0x8AA9, offset: 0x82BAC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x7B20, symBinAddr: 0x2EE10, symSize: 0x20 } + - { offsetInCU: 0x8ACB, offset: 0x82BCE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x7B40, symBinAddr: 0x2EE30, symSize: 0xB0 } + - { offsetInCU: 0x8B44, offset: 0x82C47, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x7C70, symBinAddr: 0x2EF60, symSize: 0x230 } + - { offsetInCU: 0x8C36, offset: 0x82D39, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x7EA0, symBinAddr: 0x2F190, symSize: 0x260 } + - { offsetInCU: 0x8D46, offset: 0x82E49, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x8100, symBinAddr: 0x2F3F0, symSize: 0xE0 } + - { offsetInCU: 0x8DD4, offset: 0x82ED7, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x81E0, symBinAddr: 0x2F4D0, symSize: 0x20 } + - { offsetInCU: 0x4F, offset: 0x82FCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x10F8, symBinAddr: 0x63540, symSize: 0x0 } + - { offsetInCU: 0x99, offset: 0x83016, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x30070, symSize: 0x10 } + - { offsetInCU: 0x10F, offset: 0x8308C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x850, symBinAddr: 0x30080, symSize: 0x40 } + - { offsetInCU: 0x1F3, offset: 0x83170, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x890, symBinAddr: 0x300C0, symSize: 0x20 } + - { offsetInCU: 0x27D, offset: 0x831FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2F830, symSize: 0xB0 } + - { offsetInCU: 0x32D, offset: 0x832AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAA0, symBinAddr: 0x302D0, symSize: 0x10 } + - { offsetInCU: 0x3A7, offset: 0x83324, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xDB0, symBinAddr: 0x30580, symSize: 0xC0 } + - { offsetInCU: 0x475, offset: 0x833F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE70, symBinAddr: 0x30640, symSize: 0x120 } + - { offsetInCU: 0x554, offset: 0x834D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB0, symBinAddr: 0x2F8E0, symSize: 0x100 } + - { offsetInCU: 0x5B5, offset: 0x83532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAD0, symBinAddr: 0x30300, symSize: 0x20 } + - { offsetInCU: 0x5C9, offset: 0x83546, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB10, symBinAddr: 0x30320, symSize: 0x80 } + - { offsetInCU: 0x5DD, offset: 0x8355A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xB90, symBinAddr: 0x303A0, symSize: 0xD0 } + - { offsetInCU: 0x5F1, offset: 0x8356E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC60, symBinAddr: 0x30470, symSize: 0x10 } + - { offsetInCU: 0x605, offset: 0x83582, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC70, symBinAddr: 0x30480, symSize: 0x10 } + - { offsetInCU: 0x619, offset: 0x83596, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC80, symBinAddr: 0x30490, symSize: 0x10 } + - { offsetInCU: 0x62D, offset: 0x835AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC90, symBinAddr: 0x304A0, symSize: 0x10 } + - { offsetInCU: 0x641, offset: 0x835BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xCA0, symBinAddr: 0x304B0, symSize: 0x10 } + - { offsetInCU: 0x655, offset: 0x835D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x304C0, symSize: 0x30 } + - { offsetInCU: 0x669, offset: 0x835E6, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCE0, symBinAddr: 0x304F0, symSize: 0x20 } + - { offsetInCU: 0x67D, offset: 0x835FA, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xD00, symBinAddr: 0x30510, symSize: 0x10 } + - { offsetInCU: 0x691, offset: 0x8360E, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xD10, symBinAddr: 0x30520, symSize: 0x20 } + - { offsetInCU: 0x6A5, offset: 0x83622, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xFE0, symBinAddr: 0x307B0, symSize: 0x20 } + - { offsetInCU: 0x6B9, offset: 0x83636, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x10A0, symBinAddr: 0x30870, symSize: 0x10 } + - { offsetInCU: 0x6CD, offset: 0x8364A, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x10B0, symBinAddr: 0x30880, symSize: 0x20 } + - { offsetInCU: 0x78F, offset: 0x8370C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8B0, symBinAddr: 0x300E0, symSize: 0x40 } + - { offsetInCU: 0x949, offset: 0x838C6, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x7A0, symBinAddr: 0x2FFD0, symSize: 0xA0 } + - { offsetInCU: 0x9C7, offset: 0x83944, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1B0, symBinAddr: 0x2F9E0, symSize: 0x50 } + - { offsetInCU: 0x9E9, offset: 0x83966, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x200, symBinAddr: 0x2FA30, symSize: 0x530 } + - { offsetInCU: 0xAD7, offset: 0x83A54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x730, symBinAddr: 0x2FF60, symSize: 0x70 } + - { offsetInCU: 0xB86, offset: 0x83B03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x8F0, symBinAddr: 0x30120, symSize: 0x1B0 } + - { offsetInCU: 0xBFC, offset: 0x83B79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAB0, symBinAddr: 0x302E0, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x83C3D, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x308C0, symSize: 0x60 } + - { offsetInCU: 0x207, offset: 0x83E19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x430, symBinAddr: 0x30CF0, symSize: 0x10 } + - { offsetInCU: 0x241, offset: 0x83E53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x440, symBinAddr: 0x30D00, symSize: 0x40 } + - { offsetInCU: 0x325, offset: 0x83F37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x480, symBinAddr: 0x30D40, symSize: 0x20 } + - { offsetInCU: 0x3B8, offset: 0x83FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x4E0, symBinAddr: 0x30DA0, symSize: 0x10 } + - { offsetInCU: 0x3CC, offset: 0x83FDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4F0, symBinAddr: 0x30DB0, symSize: 0x30 } + - { offsetInCU: 0x3E0, offset: 0x83FF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x580, symBinAddr: 0x30E20, symSize: 0x80 } + - { offsetInCU: 0x3F4, offset: 0x84006, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x600, symBinAddr: 0x30EA0, symSize: 0xD0 } + - { offsetInCU: 0x408, offset: 0x8401A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x6D0, symBinAddr: 0x30F70, symSize: 0x10 } + - { offsetInCU: 0x41C, offset: 0x8402E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x6E0, symBinAddr: 0x30F80, symSize: 0x10 } + - { offsetInCU: 0x430, offset: 0x84042, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x6F0, symBinAddr: 0x30F90, symSize: 0x10 } + - { offsetInCU: 0x444, offset: 0x84056, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x700, symBinAddr: 0x30FA0, symSize: 0x10 } + - { offsetInCU: 0x458, offset: 0x8406A, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x710, symBinAddr: 0x30FB0, symSize: 0x10 } + - { offsetInCU: 0x46C, offset: 0x8407E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x720, symBinAddr: 0x30FC0, symSize: 0x20 } + - { offsetInCU: 0x480, offset: 0x84092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x740, symBinAddr: 0x30FE0, symSize: 0x20 } + - { offsetInCU: 0x494, offset: 0x840A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x760, symBinAddr: 0x31000, symSize: 0x10 } + - { offsetInCU: 0x4A8, offset: 0x840BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x770, symBinAddr: 0x31010, symSize: 0x10 } + - { offsetInCU: 0x4BC, offset: 0x840CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x780, symBinAddr: 0x31020, symSize: 0x10 } + - { offsetInCU: 0x4D0, offset: 0x840E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x790, symBinAddr: 0x31030, symSize: 0x10 } + - { offsetInCU: 0x660, offset: 0x84272, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAA0, symBinAddr: 0x312E0, symSize: 0x30 } + - { offsetInCU: 0x744, offset: 0x84356, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x380, symBinAddr: 0x30C40, symSize: 0x10 } + - { offsetInCU: 0x760, offset: 0x84372, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x390, symBinAddr: 0x30C50, symSize: 0x10 } + - { offsetInCU: 0x77C, offset: 0x8438E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x3A0, symBinAddr: 0x30C60, symSize: 0x10 } + - { offsetInCU: 0x798, offset: 0x843AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x3B0, symBinAddr: 0x30C70, symSize: 0x10 } + - { offsetInCU: 0x7EB, offset: 0x843FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4A0, symBinAddr: 0x30D60, symSize: 0x40 } + - { offsetInCU: 0x888, offset: 0x8449A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x520, symBinAddr: 0x30DE0, symSize: 0x10 } + - { offsetInCU: 0x8A4, offset: 0x844B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x530, symBinAddr: 0x30DF0, symSize: 0x10 } + - { offsetInCU: 0x8C0, offset: 0x844D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x540, symBinAddr: 0x30E00, symSize: 0x10 } + - { offsetInCU: 0x8DC, offset: 0x844EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x550, symBinAddr: 0x30E10, symSize: 0x10 } + - { offsetInCU: 0xA93, offset: 0x846A5, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x308C0, symSize: 0x60 } + - { offsetInCU: 0xB13, offset: 0x84725, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x60, symBinAddr: 0x30920, symSize: 0xF0 } + - { offsetInCU: 0xB92, offset: 0x847A4, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x150, symBinAddr: 0x30A10, symSize: 0xD0 } + - { offsetInCU: 0xD01, offset: 0x84913, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x220, symBinAddr: 0x30AE0, symSize: 0x160 } + - { offsetInCU: 0xE92, offset: 0x84AA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x3C0, symBinAddr: 0x30C80, symSize: 0x10 } + - { offsetInCU: 0xECC, offset: 0x84ADE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x3D0, symBinAddr: 0x30C90, symSize: 0x20 } + - { offsetInCU: 0xF5B, offset: 0x84B6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x3F0, symBinAddr: 0x30CB0, symSize: 0x40 } + - { offsetInCU: 0x10B7, offset: 0x84CC9, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x7A0, symBinAddr: 0x31040, symSize: 0x2A0 } + - { offsetInCU: 0x2B, offset: 0x84F8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x31310, symSize: 0x20 } + - { offsetInCU: 0x93, offset: 0x84FF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x210, symBinAddr: 0x31520, symSize: 0x30 } + - { offsetInCU: 0xBC, offset: 0x8501F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x240, symBinAddr: 0x31550, symSize: 0x10 } + - { offsetInCU: 0xD8, offset: 0x8503B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x250, symBinAddr: 0x31560, symSize: 0x80 } + - { offsetInCU: 0x10D, offset: 0x85070, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x460, symBinAddr: 0x31770, symSize: 0x50 } + - { offsetInCU: 0x1B0, offset: 0x85113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x400, symBinAddr: 0x31710, symSize: 0x20 } + - { offsetInCU: 0x1E1, offset: 0x85144, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x420, symBinAddr: 0x31730, symSize: 0x10 } + - { offsetInCU: 0x213, offset: 0x85176, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x430, symBinAddr: 0x31740, symSize: 0x30 } + - { offsetInCU: 0x304, offset: 0x85267, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x300, symBinAddr: 0x31610, symSize: 0x10 } + - { offsetInCU: 0x33F, offset: 0x852A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x310, symBinAddr: 0x31620, symSize: 0x10 } + - { offsetInCU: 0x37A, offset: 0x852DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x320, symBinAddr: 0x31630, symSize: 0x10 } + - { offsetInCU: 0x3B5, offset: 0x85318, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x330, symBinAddr: 0x31640, symSize: 0x10 } + - { offsetInCU: 0x3F0, offset: 0x85353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x4B0, symBinAddr: 0x317C0, symSize: 0x10 } + - { offsetInCU: 0x404, offset: 0x85367, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x4C0, symBinAddr: 0x317D0, symSize: 0x30 } + - { offsetInCU: 0x418, offset: 0x8537B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x4F0, symBinAddr: 0x31800, symSize: 0x10 } + - { offsetInCU: 0x42C, offset: 0x8538F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x500, symBinAddr: 0x31810, symSize: 0x10 } + - { offsetInCU: 0x440, offset: 0x853A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x530, symBinAddr: 0x31820, symSize: 0x80 } + - { offsetInCU: 0x454, offset: 0x853B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x5B0, symBinAddr: 0x318A0, symSize: 0xD0 } + - { offsetInCU: 0x468, offset: 0x853CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x680, symBinAddr: 0x31970, symSize: 0x10 } + - { offsetInCU: 0x47C, offset: 0x853DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x690, symBinAddr: 0x31980, symSize: 0x10 } + - { offsetInCU: 0x490, offset: 0x853F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x6A0, symBinAddr: 0x31990, symSize: 0x10 } + - { offsetInCU: 0x4A4, offset: 0x85407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x6B0, symBinAddr: 0x319A0, symSize: 0x10 } + - { offsetInCU: 0x4B8, offset: 0x8541B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x6C0, symBinAddr: 0x319B0, symSize: 0x10 } + - { offsetInCU: 0x4CC, offset: 0x8542F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x6D0, symBinAddr: 0x319C0, symSize: 0x2E } + - { offsetInCU: 0x50F, offset: 0x85472, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x160, symBinAddr: 0x31470, symSize: 0x10 } + - { offsetInCU: 0x5B9, offset: 0x8551C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x170, symBinAddr: 0x31480, symSize: 0x40 } + - { offsetInCU: 0x648, offset: 0x855AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1B0, symBinAddr: 0x314C0, symSize: 0x20 } + - { offsetInCU: 0x69B, offset: 0x855FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D0, symBinAddr: 0x314E0, symSize: 0x40 } + - { offsetInCU: 0x707, offset: 0x8566A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x340, symBinAddr: 0x31650, symSize: 0x10 } + - { offsetInCU: 0x7B1, offset: 0x85714, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x350, symBinAddr: 0x31660, symSize: 0x40 } + - { offsetInCU: 0x892, offset: 0x857F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x390, symBinAddr: 0x316A0, symSize: 0x30 } + - { offsetInCU: 0x917, offset: 0x8587A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x3C0, symBinAddr: 0x316D0, symSize: 0x40 } + - { offsetInCU: 0xA7B, offset: 0x859DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x31310, symSize: 0x20 } + - { offsetInCU: 0xAD9, offset: 0x85A3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x20, symBinAddr: 0x31330, symSize: 0x10 } + - { offsetInCU: 0xB00, offset: 0x85A63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x30, symBinAddr: 0x31340, symSize: 0x50 } + - { offsetInCU: 0xB4F, offset: 0x85AB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0x80, symBinAddr: 0x31390, symSize: 0x20 } + - { offsetInCU: 0xBAB, offset: 0x85B0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xA0, symBinAddr: 0x313B0, symSize: 0x10 } + - { offsetInCU: 0xBD7, offset: 0x85B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xB0, symBinAddr: 0x313C0, symSize: 0x80 } + - { offsetInCU: 0xBF6, offset: 0x85B59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x130, symBinAddr: 0x31440, symSize: 0x30 } + - { offsetInCU: 0xC46, offset: 0x85BA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x2D0, symBinAddr: 0x315E0, symSize: 0x10 } + - { offsetInCU: 0xC72, offset: 0x85BD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x2E0, symBinAddr: 0x315F0, symSize: 0x10 } + - { offsetInCU: 0xC9E, offset: 0x85C01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x2F0, symBinAddr: 0x31600, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x85D80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x319F0, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x85DA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x319F0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x85DD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x31A00, symSize: 0x10 } + - { offsetInCU: 0x1A8, offset: 0x85F01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwCP', symObjAddr: 0x100, symBinAddr: 0x31AF0, symSize: 0x30 } + - { offsetInCU: 0x1BC, offset: 0x85F15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0x130, symBinAddr: 0x31B20, symSize: 0x10 } + - { offsetInCU: 0x1D0, offset: 0x85F29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x140, symBinAddr: 0x31B30, symSize: 0x50 } + - { offsetInCU: 0x1E4, offset: 0x85F3D, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x190, symBinAddr: 0x31B80, symSize: 0x10 } + - { offsetInCU: 0x1F8, offset: 0x85F51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x1A0, symBinAddr: 0x31B90, symSize: 0x30 } + - { offsetInCU: 0x20C, offset: 0x85F65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x1D0, symBinAddr: 0x31BC0, symSize: 0x50 } + - { offsetInCU: 0x220, offset: 0x85F79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x220, symBinAddr: 0x31C10, symSize: 0x50 } + - { offsetInCU: 0x234, offset: 0x85F8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x270, symBinAddr: 0x31C60, symSize: 0x10 } + - { offsetInCU: 0x3DE, offset: 0x86137, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x31A10, symSize: 0xE0 } + - { offsetInCU: 0x4B, offset: 0x8633B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31C80, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x86370, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x31C90, symSize: 0x10 } + - { offsetInCU: 0xC7, offset: 0x863B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x31CA0, symSize: 0x20 } + - { offsetInCU: 0x136, offset: 0x86426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x40, symBinAddr: 0x31CC0, symSize: 0xE0 } + - { offsetInCU: 0x295, offset: 0x86585, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x120, symBinAddr: 0x31DA0, symSize: 0x120 } + - { offsetInCU: 0x3B0, offset: 0x866A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x290, symBinAddr: 0x31ED0, symSize: 0x30 } + - { offsetInCU: 0x3C4, offset: 0x866B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x320, symBinAddr: 0x31F60, symSize: 0x70 } + - { offsetInCU: 0x3D8, offset: 0x866C8, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x390, symBinAddr: 0x31FD0, symSize: 0x20 } + - { offsetInCU: 0x3EC, offset: 0x866DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x3B0, symBinAddr: 0x31FF0, symSize: 0x50 } + - { offsetInCU: 0x400, offset: 0x866F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x400, symBinAddr: 0x32040, symSize: 0x50 } + - { offsetInCU: 0x414, offset: 0x86704, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x450, symBinAddr: 0x32090, symSize: 0x50 } + - { offsetInCU: 0x428, offset: 0x86718, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x4A0, symBinAddr: 0x320E0, symSize: 0xA } + - { offsetInCU: 0x4F, offset: 0x86980, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x320F0, symSize: 0x10 } + - { offsetInCU: 0x84, offset: 0x869B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x32100, symSize: 0x10 } + - { offsetInCU: 0x34D, offset: 0x86C7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xF60, symBinAddr: 0x33050, symSize: 0x40 } + - { offsetInCU: 0x369, offset: 0x86C9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0x1010, symBinAddr: 0x330C0, symSize: 0x30 } + - { offsetInCU: 0x37D, offset: 0x86CAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0x1080, symBinAddr: 0x330F0, symSize: 0x90 } + - { offsetInCU: 0x391, offset: 0x86CC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x1150, symBinAddr: 0x33180, symSize: 0x1A0 } + - { offsetInCU: 0x3A5, offset: 0x86CD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x12F0, symBinAddr: 0x33320, symSize: 0x230 } + - { offsetInCU: 0x3B9, offset: 0x86CEA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x1520, symBinAddr: 0x33550, symSize: 0x30 } + - { offsetInCU: 0x3CD, offset: 0x86CFE, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x1550, symBinAddr: 0x33580, symSize: 0x10 } + - { offsetInCU: 0x3E1, offset: 0x86D12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x1560, symBinAddr: 0x33590, symSize: 0x1A0 } + - { offsetInCU: 0x3F5, offset: 0x86D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x1700, symBinAddr: 0x33730, symSize: 0x40 } + - { offsetInCU: 0x409, offset: 0x86D3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x1740, symBinAddr: 0x33770, symSize: 0x70 } + - { offsetInCU: 0x41D, offset: 0x86D4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x17B0, symBinAddr: 0x337E0, symSize: 0xA } + - { offsetInCU: 0x6DE, offset: 0x8700F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x32110, symSize: 0x320 } + - { offsetInCU: 0xAAF, offset: 0x873E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x340, symBinAddr: 0x32430, symSize: 0x3A0 } + - { offsetInCU: 0xF4B, offset: 0x8787C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x6E0, symBinAddr: 0x327D0, symSize: 0x2C0 } + - { offsetInCU: 0x1320, offset: 0x87C51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x9A0, symBinAddr: 0x32A90, symSize: 0x2D0 } + - { offsetInCU: 0x1788, offset: 0x880B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xC70, symBinAddr: 0x32D60, symSize: 0x2F0 } + - { offsetInCU: 0x4B, offset: 0x8837C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x337F0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x883B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x33800, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x88525, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3E0, symBinAddr: 0x33BD0, symSize: 0x20 } + - { offsetInCU: 0x210, offset: 0x88541, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x470, symBinAddr: 0x33C20, symSize: 0x30 } + - { offsetInCU: 0x224, offset: 0x88555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x4A0, symBinAddr: 0x33C50, symSize: 0x30 } + - { offsetInCU: 0x238, offset: 0x88569, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x4D0, symBinAddr: 0x33C80, symSize: 0x70 } + - { offsetInCU: 0x24C, offset: 0x8857D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x540, symBinAddr: 0x33CF0, symSize: 0xA0 } + - { offsetInCU: 0x260, offset: 0x88591, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x5E0, symBinAddr: 0x33D90, symSize: 0x30 } + - { offsetInCU: 0x274, offset: 0x885A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x610, symBinAddr: 0x33DC0, symSize: 0x70 } + - { offsetInCU: 0x288, offset: 0x885B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x680, symBinAddr: 0x33E30, symSize: 0x50 } + - { offsetInCU: 0x29C, offset: 0x885CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x6D0, symBinAddr: 0x33E80, symSize: 0x50 } + - { offsetInCU: 0x2B0, offset: 0x885E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x720, symBinAddr: 0x33ED0, symSize: 0xA } + - { offsetInCU: 0x455, offset: 0x88786, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x33810, symSize: 0xF0 } + - { offsetInCU: 0x5E3, offset: 0x88914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0x110, symBinAddr: 0x33900, symSize: 0x2D0 } + - { offsetInCU: 0x27, offset: 0x88D15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33EE0, symSize: 0x10 } + - { offsetInCU: 0x46, offset: 0x88D34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33EE0, symSize: 0x10 } + - { offsetInCU: 0x7B, offset: 0x88D69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x33EF0, symSize: 0x10 } + - { offsetInCU: 0xAE, offset: 0x88D9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x33F00, symSize: 0x20 } + - { offsetInCU: 0xCA, offset: 0x88DB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x40, symBinAddr: 0x33F20, symSize: 0xA } + - { offsetInCU: 0x27, offset: 0x88E8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33F30, symSize: 0x10 } + - { offsetInCU: 0x46, offset: 0x88EAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33F30, symSize: 0x10 } + - { offsetInCU: 0x7B, offset: 0x88EDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x33F40, symSize: 0x10 } + - { offsetInCU: 0xAE, offset: 0x88F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x33F50, symSize: 0x20 } + - { offsetInCU: 0xCA, offset: 0x88F2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x40, symBinAddr: 0x33F70, symSize: 0xA } + - { offsetInCU: 0x4B, offset: 0x89025, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33F80, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8905A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x33F90, symSize: 0x10 } + - { offsetInCU: 0x237, offset: 0x89211, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2B0, symBinAddr: 0x34230, symSize: 0x90 } + - { offsetInCU: 0x301, offset: 0x892DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x340, symBinAddr: 0x342C0, symSize: 0x130 } + - { offsetInCU: 0x461, offset: 0x8943B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x4E0, symBinAddr: 0x34420, symSize: 0x30 } + - { offsetInCU: 0x475, offset: 0x8944F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x510, symBinAddr: 0x34450, symSize: 0x30 } + - { offsetInCU: 0x489, offset: 0x89463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x540, symBinAddr: 0x34480, symSize: 0x60 } + - { offsetInCU: 0x49D, offset: 0x89477, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x5A0, symBinAddr: 0x344E0, symSize: 0x90 } + - { offsetInCU: 0x4B1, offset: 0x8948B, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x630, symBinAddr: 0x34570, symSize: 0x20 } + - { offsetInCU: 0x4C5, offset: 0x8949F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x650, symBinAddr: 0x34590, symSize: 0x60 } + - { offsetInCU: 0x4D9, offset: 0x894B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x6B0, symBinAddr: 0x345F0, symSize: 0x50 } + - { offsetInCU: 0x4ED, offset: 0x894C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x700, symBinAddr: 0x34640, symSize: 0x50 } + - { offsetInCU: 0x501, offset: 0x894DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x750, symBinAddr: 0x34690, symSize: 0xA } + - { offsetInCU: 0x704, offset: 0x896DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x33FA0, symSize: 0x130 } + - { offsetInCU: 0x8DE, offset: 0x898B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x340D0, symSize: 0x160 } + - { offsetInCU: 0x4B, offset: 0x89AE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x346A0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x89B1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x346B0, symSize: 0x10 } + - { offsetInCU: 0x237, offset: 0x89CD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2B0, symBinAddr: 0x34950, symSize: 0x90 } + - { offsetInCU: 0x2E7, offset: 0x89D85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x340, symBinAddr: 0x349E0, symSize: 0xE0 } + - { offsetInCU: 0x3B9, offset: 0x89E57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x490, symBinAddr: 0x34AF0, symSize: 0x30 } + - { offsetInCU: 0x3CD, offset: 0x89E6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x4C0, symBinAddr: 0x34B20, symSize: 0x30 } + - { offsetInCU: 0x3E1, offset: 0x89E7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x4F0, symBinAddr: 0x34B50, symSize: 0x60 } + - { offsetInCU: 0x3F5, offset: 0x89E93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x550, symBinAddr: 0x34BB0, symSize: 0x90 } + - { offsetInCU: 0x409, offset: 0x89EA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x600, symBinAddr: 0x34C40, symSize: 0x60 } + - { offsetInCU: 0x41D, offset: 0x89EBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x660, symBinAddr: 0x34CA0, symSize: 0x50 } + - { offsetInCU: 0x431, offset: 0x89ECF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x6B0, symBinAddr: 0x34CF0, symSize: 0x50 } + - { offsetInCU: 0x445, offset: 0x89EE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x700, symBinAddr: 0x34D40, symSize: 0xA } + - { offsetInCU: 0x648, offset: 0x8A0E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x346C0, symSize: 0x130 } + - { offsetInCU: 0x822, offset: 0x8A2C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x347F0, symSize: 0x160 } + - { offsetInCU: 0x27, offset: 0x8A4B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34D50, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8A4DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34D50, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8A511, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x34D60, symSize: 0x10 } + - { offsetInCU: 0x26E, offset: 0x8A6FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x430, symBinAddr: 0x35180, symSize: 0x60 } + - { offsetInCU: 0x41D, offset: 0x8A8AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x490, symBinAddr: 0x351E0, symSize: 0x890 } + - { offsetInCU: 0xA3D, offset: 0x8AECE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xD20, symBinAddr: 0x35A70, symSize: 0x40 } + - { offsetInCU: 0xA51, offset: 0x8AEE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xDA0, symBinAddr: 0x35AB0, symSize: 0x30 } + - { offsetInCU: 0xA65, offset: 0x8AEF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xDD0, symBinAddr: 0x35AE0, symSize: 0x50 } + - { offsetInCU: 0xA79, offset: 0x8AF0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xE20, symBinAddr: 0x35B30, symSize: 0xD0 } + - { offsetInCU: 0xA8D, offset: 0x8AF1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xEF0, symBinAddr: 0x35C00, symSize: 0x110 } + - { offsetInCU: 0xAA1, offset: 0x8AF32, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0x1000, symBinAddr: 0x35D10, symSize: 0x40 } + - { offsetInCU: 0xAB5, offset: 0x8AF46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0x1040, symBinAddr: 0x35D50, symSize: 0xC0 } + - { offsetInCU: 0xAC9, offset: 0x8AF5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0x1100, symBinAddr: 0x35E10, symSize: 0x40 } + - { offsetInCU: 0xADD, offset: 0x8AF6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0x1140, symBinAddr: 0x35E50, symSize: 0x60 } + - { offsetInCU: 0xAF1, offset: 0x8AF82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0x11A0, symBinAddr: 0x35EB0, symSize: 0xA } + - { offsetInCU: 0xE2C, offset: 0x8B2BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x34D70, symSize: 0x120 } + - { offsetInCU: 0x1050, offset: 0x8B4E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x140, symBinAddr: 0x34E90, symSize: 0x1B0 } + - { offsetInCU: 0x1367, offset: 0x8B7F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2F0, symBinAddr: 0x35040, symSize: 0x140 } + - { offsetInCU: 0x4B, offset: 0x8BB32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35EC0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8BB67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x35ED0, symSize: 0x10 } + - { offsetInCU: 0x237, offset: 0x8BD1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2B0, symBinAddr: 0x36170, symSize: 0x90 } + - { offsetInCU: 0x2E7, offset: 0x8BDCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x340, symBinAddr: 0x36200, symSize: 0xE0 } + - { offsetInCU: 0x3B9, offset: 0x8BEA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x490, symBinAddr: 0x36310, symSize: 0x30 } + - { offsetInCU: 0x3CD, offset: 0x8BEB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x4C0, symBinAddr: 0x36340, symSize: 0x30 } + - { offsetInCU: 0x3E1, offset: 0x8BEC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x4F0, symBinAddr: 0x36370, symSize: 0x60 } + - { offsetInCU: 0x3F5, offset: 0x8BEDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x550, symBinAddr: 0x363D0, symSize: 0x90 } + - { offsetInCU: 0x409, offset: 0x8BEF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x600, symBinAddr: 0x36460, symSize: 0x60 } + - { offsetInCU: 0x41D, offset: 0x8BF04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x660, symBinAddr: 0x364C0, symSize: 0x50 } + - { offsetInCU: 0x431, offset: 0x8BF18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x6B0, symBinAddr: 0x36510, symSize: 0x50 } + - { offsetInCU: 0x445, offset: 0x8BF2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x700, symBinAddr: 0x36560, symSize: 0xA } + - { offsetInCU: 0x648, offset: 0x8C12F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x35EE0, symSize: 0x130 } + - { offsetInCU: 0x822, offset: 0x8C309, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x36010, symSize: 0x160 } + - { offsetInCU: 0x4B, offset: 0x8C525, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36570, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8C55A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36580, symSize: 0x10 } + - { offsetInCU: 0x237, offset: 0x8C711, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x280, symBinAddr: 0x367F0, symSize: 0x90 } + - { offsetInCU: 0x2AB, offset: 0x8C785, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x310, symBinAddr: 0x36880, symSize: 0xE0 } + - { offsetInCU: 0x37D, offset: 0x8C857, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x460, symBinAddr: 0x36990, symSize: 0x30 } + - { offsetInCU: 0x391, offset: 0x8C86B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x490, symBinAddr: 0x369C0, symSize: 0x30 } + - { offsetInCU: 0x3A5, offset: 0x8C87F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x4C0, symBinAddr: 0x369F0, symSize: 0x70 } + - { offsetInCU: 0x3B9, offset: 0x8C893, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x530, symBinAddr: 0x36A60, symSize: 0x90 } + - { offsetInCU: 0x3CD, offset: 0x8C8A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x5E0, symBinAddr: 0x36AF0, symSize: 0x60 } + - { offsetInCU: 0x3E1, offset: 0x8C8BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x640, symBinAddr: 0x36B50, symSize: 0x50 } + - { offsetInCU: 0x3F5, offset: 0x8C8CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x690, symBinAddr: 0x36BA0, symSize: 0x50 } + - { offsetInCU: 0x409, offset: 0x8C8E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x6E0, symBinAddr: 0x36BF0, symSize: 0xA } + - { offsetInCU: 0x605, offset: 0x8CADF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x36590, symSize: 0x100 } + - { offsetInCU: 0x7CA, offset: 0x8CCA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x120, symBinAddr: 0x36690, symSize: 0x160 } + - { offsetInCU: 0x27, offset: 0x8CE9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36C00, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8CEC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36C00, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8CEF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36C10, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x8CF3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x36C20, symSize: 0x90 } + - { offsetInCU: 0x345, offset: 0x8D1BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xB0, symBinAddr: 0x36CB0, symSize: 0x570 } + - { offsetInCU: 0xAC2, offset: 0x8D938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x620, symBinAddr: 0x37220, symSize: 0x30 } + - { offsetInCU: 0xAD6, offset: 0x8D94C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x650, symBinAddr: 0x37250, symSize: 0x40 } + - { offsetInCU: 0xAEA, offset: 0x8D960, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x690, symBinAddr: 0x37290, symSize: 0x90 } + - { offsetInCU: 0xAFE, offset: 0x8D974, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x720, symBinAddr: 0x37320, symSize: 0xC0 } + - { offsetInCU: 0xB12, offset: 0x8D988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x810, symBinAddr: 0x373E0, symSize: 0x80 } + - { offsetInCU: 0xB26, offset: 0x8D99C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x890, symBinAddr: 0x37460, symSize: 0x40 } + - { offsetInCU: 0xB3A, offset: 0x8D9B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x8D0, symBinAddr: 0x374A0, symSize: 0x50 } + - { offsetInCU: 0xB4E, offset: 0x8D9C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x920, symBinAddr: 0x374F0, symSize: 0xA } + - { offsetInCU: 0x4B, offset: 0x8DDDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37500, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8DE12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x37510, symSize: 0x10 } + - { offsetInCU: 0x4FA, offset: 0x8E28C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBB0, symBinAddr: 0x380B0, symSize: 0x40 } + - { offsetInCU: 0x52B, offset: 0x8E2BD, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xE40, symBinAddr: 0x38300, symSize: 0x20 } + - { offsetInCU: 0x53F, offset: 0x8E2D1, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xE60, symBinAddr: 0x38320, symSize: 0x20 } + - { offsetInCU: 0x553, offset: 0x8E2E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xE80, symBinAddr: 0x38340, symSize: 0x30 } + - { offsetInCU: 0x567, offset: 0x8E2F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xEB0, symBinAddr: 0x38370, symSize: 0x30 } + - { offsetInCU: 0x57B, offset: 0x8E30D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xEE0, symBinAddr: 0x383A0, symSize: 0x80 } + - { offsetInCU: 0x58F, offset: 0x8E321, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xF60, symBinAddr: 0x38420, symSize: 0xA0 } + - { offsetInCU: 0x5A3, offset: 0x8E335, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0x1020, symBinAddr: 0x384C0, symSize: 0x80 } + - { offsetInCU: 0x5B7, offset: 0x8E349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0x10A0, symBinAddr: 0x38540, symSize: 0x50 } + - { offsetInCU: 0x5CB, offset: 0x8E35D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x10F0, symBinAddr: 0x38590, symSize: 0x50 } + - { offsetInCU: 0x5DF, offset: 0x8E371, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x1140, symBinAddr: 0x385E0, symSize: 0xA } + - { offsetInCU: 0xA0A, offset: 0x8E79C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x37520, symSize: 0xB0 } + - { offsetInCU: 0xB90, offset: 0x8E922, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xD0, symBinAddr: 0x375D0, symSize: 0x270 } + - { offsetInCU: 0xFA1, offset: 0x8ED33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x340, symBinAddr: 0x37840, symSize: 0x210 } + - { offsetInCU: 0x13ED, offset: 0x8F17F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x550, symBinAddr: 0x37A50, symSize: 0x660 } + - { offsetInCU: 0x18A2, offset: 0x8F634, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xC30, symBinAddr: 0x380F0, symSize: 0x1E0 } + - { offsetInCU: 0x27, offset: 0x8F6EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x385F0, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8F713, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x385F0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8F748, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x38600, symSize: 0x10 } + - { offsetInCU: 0xDE, offset: 0x8F7A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xE0, symBinAddr: 0x386D0, symSize: 0x40 } + - { offsetInCU: 0x155, offset: 0x8F81D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x120, symBinAddr: 0x38710, symSize: 0x110 } + - { offsetInCU: 0x21F, offset: 0x8F8E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x230, symBinAddr: 0x38820, symSize: 0x30 } + - { offsetInCU: 0x233, offset: 0x8F8FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x260, symBinAddr: 0x38850, symSize: 0x40 } + - { offsetInCU: 0x247, offset: 0x8F90F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x2A0, symBinAddr: 0x38890, symSize: 0x70 } + - { offsetInCU: 0x25B, offset: 0x8F923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x310, symBinAddr: 0x38900, symSize: 0xA0 } + - { offsetInCU: 0x26F, offset: 0x8F937, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x3D0, symBinAddr: 0x389A0, symSize: 0x70 } + - { offsetInCU: 0x283, offset: 0x8F94B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x440, symBinAddr: 0x38A10, symSize: 0x40 } + - { offsetInCU: 0x297, offset: 0x8F95F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x480, symBinAddr: 0x38A50, symSize: 0x50 } + - { offsetInCU: 0x2AB, offset: 0x8F973, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x4D0, symBinAddr: 0x38AA0, symSize: 0xA } + - { offsetInCU: 0x3CC, offset: 0x8FA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x20, symBinAddr: 0x38610, symSize: 0xC0 } + - { offsetInCU: 0x27, offset: 0x8FB6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38AB0, symSize: 0x10 } + - { offsetInCU: 0x46, offset: 0x8FB8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38AB0, symSize: 0x10 } + - { offsetInCU: 0x7B, offset: 0x8FBC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x38AC0, symSize: 0x10 } + - { offsetInCU: 0xC2, offset: 0x8FC07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x38AD0, symSize: 0x30 } + - { offsetInCU: 0x245, offset: 0x8FD8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x50, symBinAddr: 0x38B00, symSize: 0x180 } + - { offsetInCU: 0x53B, offset: 0x90080, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1D0, symBinAddr: 0x38C80, symSize: 0x90 } + - { offsetInCU: 0x6A0, offset: 0x901E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x260, symBinAddr: 0x38D10, symSize: 0x160 } + - { offsetInCU: 0xA21, offset: 0x90566, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x3C0, symBinAddr: 0x38E70, symSize: 0x610 } + - { offsetInCU: 0xEC3, offset: 0x90A08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0xA10, symBinAddr: 0x39480, symSize: 0x30 } + - { offsetInCU: 0xED7, offset: 0x90A1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0xA40, symBinAddr: 0x394B0, symSize: 0x30 } + - { offsetInCU: 0xEEB, offset: 0x90A30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0xA70, symBinAddr: 0x394E0, symSize: 0x60 } + - { offsetInCU: 0xEFF, offset: 0x90A44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0xAD0, symBinAddr: 0x39540, symSize: 0x80 } + - { offsetInCU: 0xF13, offset: 0x90A58, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xB50, symBinAddr: 0x395C0, symSize: 0x20 } + - { offsetInCU: 0xF27, offset: 0x90A6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xB70, symBinAddr: 0x395E0, symSize: 0x60 } + - { offsetInCU: 0xF3B, offset: 0x90A80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xBD0, symBinAddr: 0x39640, symSize: 0x50 } + - { offsetInCU: 0xF4F, offset: 0x90A94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xC20, symBinAddr: 0x39690, symSize: 0x50 } + - { offsetInCU: 0xF63, offset: 0x90AA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xC70, symBinAddr: 0x396E0, symSize: 0xA } + - { offsetInCU: 0x153, offset: 0x9116C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x6A0, symBinAddr: 0x39D90, symSize: 0x70 } + - { offsetInCU: 0x291, offset: 0x912AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x740, symBinAddr: 0x39E30, symSize: 0x60 } + - { offsetInCU: 0x2C0, offset: 0x912D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x7A0, symBinAddr: 0x39E90, symSize: 0x20 } + - { offsetInCU: 0x3F9, offset: 0x91412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x40, symBinAddr: 0x39730, symSize: 0x40 } + - { offsetInCU: 0x41E, offset: 0x91437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0xC0, symBinAddr: 0x397B0, symSize: 0x40 } + - { offsetInCU: 0x443, offset: 0x9145C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x1D0, symBinAddr: 0x398C0, symSize: 0x40 } + - { offsetInCU: 0x468, offset: 0x91481, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x2D0, symBinAddr: 0x399C0, symSize: 0x40 } + - { offsetInCU: 0x48D, offset: 0x914A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x39A00, symSize: 0x10 } + - { offsetInCU: 0x545, offset: 0x9155E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x320, symBinAddr: 0x39A10, symSize: 0x2F0 } + - { offsetInCU: 0x971, offset: 0x9198A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x610, symBinAddr: 0x39D00, symSize: 0x20 } + - { offsetInCU: 0x985, offset: 0x9199E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x630, symBinAddr: 0x39D20, symSize: 0x70 } + - { offsetInCU: 0x9B6, offset: 0x919CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x710, symBinAddr: 0x39E00, symSize: 0x30 } + - { offsetInCU: 0x24A, offset: 0x91C46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xFA0, symBinAddr: 0x3AE80, symSize: 0x20 } + - { offsetInCU: 0x396, offset: 0x91D92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xFF0, symBinAddr: 0x3AED0, symSize: 0x40 } + - { offsetInCU: 0x3C5, offset: 0x91DC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0x1030, symBinAddr: 0x3AF10, symSize: 0x20 } + - { offsetInCU: 0x539, offset: 0x91F35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x40, symBinAddr: 0x39F20, symSize: 0x40 } + - { offsetInCU: 0x55E, offset: 0x91F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0xC0, symBinAddr: 0x39FA0, symSize: 0x40 } + - { offsetInCU: 0x583, offset: 0x91F7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x1D0, symBinAddr: 0x3A0B0, symSize: 0x40 } + - { offsetInCU: 0x5A8, offset: 0x91FA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x2E0, symBinAddr: 0x3A1C0, symSize: 0x40 } + - { offsetInCU: 0x5CD, offset: 0x91FC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x360, symBinAddr: 0x3A240, symSize: 0x40 } + - { offsetInCU: 0x5F2, offset: 0x91FEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x470, symBinAddr: 0x3A350, symSize: 0x40 } + - { offsetInCU: 0x617, offset: 0x92013, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x4F0, symBinAddr: 0x3A3D0, symSize: 0x40 } + - { offsetInCU: 0x63C, offset: 0x92038, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x530, symBinAddr: 0x3A410, symSize: 0x10 } + - { offsetInCU: 0x65D, offset: 0x92059, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x540, symBinAddr: 0x3A420, symSize: 0x50 } + - { offsetInCU: 0x67A, offset: 0x92076, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x590, symBinAddr: 0x3A470, symSize: 0x50 } + - { offsetInCU: 0x6AD, offset: 0x920A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x5E0, symBinAddr: 0x3A4C0, symSize: 0x40 } + - { offsetInCU: 0x6D2, offset: 0x920CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x6E0, symBinAddr: 0x3A5C0, symSize: 0x40 } + - { offsetInCU: 0x807, offset: 0x92203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x720, symBinAddr: 0x3A600, symSize: 0x790 } + - { offsetInCU: 0x140B, offset: 0x92E07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xEB0, symBinAddr: 0x3AD90, symSize: 0x20 } + - { offsetInCU: 0x141F, offset: 0x92E1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xED0, symBinAddr: 0x3ADB0, symSize: 0xD0 } + - { offsetInCU: 0x1442, offset: 0x92E3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xFC0, symBinAddr: 0x3AEA0, symSize: 0x30 } + - { offsetInCU: 0x4CA, offset: 0x93344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1A00, symBinAddr: 0x3C9B0, symSize: 0x20 } + - { offsetInCU: 0x710, offset: 0x9358A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x1A50, symBinAddr: 0x3CA00, symSize: 0x90 } + - { offsetInCU: 0x96D, offset: 0x937E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x3A70, symBinAddr: 0x3EA20, symSize: 0x20 } + - { offsetInCU: 0xC41, offset: 0x93ABB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3AFB0, symSize: 0x20 } + - { offsetInCU: 0xC55, offset: 0x93ACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3AFD0, symSize: 0x40 } + - { offsetInCU: 0xC7E, offset: 0x93AF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x60, symBinAddr: 0x3B010, symSize: 0x50 } + - { offsetInCU: 0xCA5, offset: 0x93B1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xB0, symBinAddr: 0x3B060, symSize: 0x40 } + - { offsetInCU: 0xCCA, offset: 0x93B44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x130, symBinAddr: 0x3B0E0, symSize: 0x40 } + - { offsetInCU: 0xCEF, offset: 0x93B69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x1B0, symBinAddr: 0x3B160, symSize: 0x40 } + - { offsetInCU: 0xD14, offset: 0x93B8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1F0, symBinAddr: 0x3B1A0, symSize: 0x40 } + - { offsetInCU: 0xD37, offset: 0x93BB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x230, symBinAddr: 0x3B1E0, symSize: 0x50 } + - { offsetInCU: 0xD5E, offset: 0x93BD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x280, symBinAddr: 0x3B230, symSize: 0x40 } + - { offsetInCU: 0xD83, offset: 0x93BFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2C0, symBinAddr: 0x3B270, symSize: 0x10 } + - { offsetInCU: 0xDA4, offset: 0x93C1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2D0, symBinAddr: 0x3B280, symSize: 0x30 } + - { offsetInCU: 0xDC7, offset: 0x93C41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvs', symObjAddr: 0x300, symBinAddr: 0x3B2B0, symSize: 0x40 } + - { offsetInCU: 0xDEE, offset: 0x93C68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x340, symBinAddr: 0x3B2F0, symSize: 0x40 } + - { offsetInCU: 0xE13, offset: 0x93C8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x450, symBinAddr: 0x3B400, symSize: 0x40 } + - { offsetInCU: 0xE38, offset: 0x93CB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x4D0, symBinAddr: 0x3B480, symSize: 0x40 } + - { offsetInCU: 0xE5D, offset: 0x93CD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x550, symBinAddr: 0x3B500, symSize: 0x40 } + - { offsetInCU: 0xE82, offset: 0x93CFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x5D0, symBinAddr: 0x3B580, symSize: 0x40 } + - { offsetInCU: 0xEA7, offset: 0x93D21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x610, symBinAddr: 0x3B5C0, symSize: 0x40 } + - { offsetInCU: 0xECA, offset: 0x93D44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x650, symBinAddr: 0x3B600, symSize: 0x50 } + - { offsetInCU: 0xEFD, offset: 0x93D77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x6A0, symBinAddr: 0x3B650, symSize: 0x40 } + - { offsetInCU: 0xF1C, offset: 0x93D96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x6E0, symBinAddr: 0x3B690, symSize: 0x30 } + - { offsetInCU: 0xF3F, offset: 0x93DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvs', symObjAddr: 0x710, symBinAddr: 0x3B6C0, symSize: 0x40 } + - { offsetInCU: 0xF66, offset: 0x93DE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x750, symBinAddr: 0x3B700, symSize: 0x40 } + - { offsetInCU: 0xF8B, offset: 0x93E05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x790, symBinAddr: 0x3B740, symSize: 0x30 } + - { offsetInCU: 0xFAE, offset: 0x93E28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvs', symObjAddr: 0x7C0, symBinAddr: 0x3B770, symSize: 0x40 } + - { offsetInCU: 0xFD5, offset: 0x93E4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x800, symBinAddr: 0x3B7B0, symSize: 0x40 } + - { offsetInCU: 0xFFA, offset: 0x93E74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x840, symBinAddr: 0x3B7F0, symSize: 0x30 } + - { offsetInCU: 0x101D, offset: 0x93E97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvs', symObjAddr: 0x870, symBinAddr: 0x3B820, symSize: 0x40 } + - { offsetInCU: 0x1044, offset: 0x93EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x8B0, symBinAddr: 0x3B860, symSize: 0x40 } + - { offsetInCU: 0x1069, offset: 0x93EE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x9C0, symBinAddr: 0x3B970, symSize: 0x40 } + - { offsetInCU: 0x108E, offset: 0x93F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0xA40, symBinAddr: 0x3B9F0, symSize: 0x40 } + - { offsetInCU: 0x10B3, offset: 0x93F2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0xAC0, symBinAddr: 0x3BA70, symSize: 0x40 } + - { offsetInCU: 0x10D8, offset: 0x93F52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xBD0, symBinAddr: 0x3BB80, symSize: 0x40 } + - { offsetInCU: 0x10FD, offset: 0x93F77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xC10, symBinAddr: 0x3BBC0, symSize: 0x40 } + - { offsetInCU: 0x1120, offset: 0x93F9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xC50, symBinAddr: 0x3BC00, symSize: 0x50 } + - { offsetInCU: 0x1147, offset: 0x93FC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xCA0, symBinAddr: 0x3BC50, symSize: 0x40 } + - { offsetInCU: 0x14C1, offset: 0x9433B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xCE0, symBinAddr: 0x3BC90, symSize: 0xBB0 } + - { offsetInCU: 0x2000, offset: 0x94E7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x1890, symBinAddr: 0x3C840, symSize: 0x170 } + - { offsetInCU: 0x2023, offset: 0x94E9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1A20, symBinAddr: 0x3C9D0, symSize: 0x30 } + - { offsetInCU: 0x204D, offset: 0x94EC7, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1AE0, symBinAddr: 0x3CA90, symSize: 0x60 } + - { offsetInCU: 0x2092, offset: 0x94F0C, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1B40, symBinAddr: 0x3CAF0, symSize: 0x30 } + - { offsetInCU: 0x20D0, offset: 0x94F4A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1B70, symBinAddr: 0x3CB20, symSize: 0xE0 } + - { offsetInCU: 0x2134, offset: 0x94FAE, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1C50, symBinAddr: 0x3CC00, symSize: 0x90 } + - { offsetInCU: 0x215C, offset: 0x94FD6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1D40, symBinAddr: 0x3CCF0, symSize: 0x220 } + - { offsetInCU: 0x221E, offset: 0x95098, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1F60, symBinAddr: 0x3CF10, symSize: 0x210 } + - { offsetInCU: 0x2302, offset: 0x9517C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x2590, symBinAddr: 0x3D540, symSize: 0x220 } + - { offsetInCU: 0x23CB, offset: 0x95245, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2810, symBinAddr: 0x3D7C0, symSize: 0x3D0 } + - { offsetInCU: 0x24AE, offset: 0x95328, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x2BE0, symBinAddr: 0x3DB90, symSize: 0x3C0 } + - { offsetInCU: 0x2591, offset: 0x9540B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x36A0, symBinAddr: 0x3E650, symSize: 0x3D0 } + - { offsetInCU: 0x27, offset: 0x9553A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3EB50, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x956DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x3EF60, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9578F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x460, symBinAddr: 0x3EFB0, symSize: 0x30 } + - { offsetInCU: 0x482, offset: 0x95995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xB00, symBinAddr: 0x3F650, symSize: 0x20 } + - { offsetInCU: 0x6A6, offset: 0x95BB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3EB50, symSize: 0x20 } + - { offsetInCU: 0x6BA, offset: 0x95BCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3EB70, symSize: 0x40 } + - { offsetInCU: 0x6E3, offset: 0x95BF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x3EBB0, symSize: 0x50 } + - { offsetInCU: 0x70A, offset: 0x95C1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x3EC00, symSize: 0x40 } + - { offsetInCU: 0x72F, offset: 0x95C42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x3EC40, symSize: 0x10 } + - { offsetInCU: 0x750, offset: 0x95C63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3EC50, symSize: 0x30 } + - { offsetInCU: 0x773, offset: 0x95C86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x3EC80, symSize: 0x40 } + - { offsetInCU: 0x79A, offset: 0x95CAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x3ECC0, symSize: 0x40 } + - { offsetInCU: 0x7BF, offset: 0x95CD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x3ED00, symSize: 0x50 } + - { offsetInCU: 0x7E2, offset: 0x95CF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x3ED50, symSize: 0x50 } + - { offsetInCU: 0x809, offset: 0x95D1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x3EDA0, symSize: 0x40 } + - { offsetInCU: 0x82E, offset: 0x95D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x3EDE0, symSize: 0x40 } + - { offsetInCU: 0x851, offset: 0x95D64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x3EE20, symSize: 0x50 } + - { offsetInCU: 0x884, offset: 0x95D97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x3EE70, symSize: 0x40 } + - { offsetInCU: 0x8A3, offset: 0x95DB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x3EEB0, symSize: 0x10 } + - { offsetInCU: 0x8B7, offset: 0x95DCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x3EEC0, symSize: 0xA0 } + - { offsetInCU: 0x8DA, offset: 0x95DED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x430, symBinAddr: 0x3EF80, symSize: 0x30 } + - { offsetInCU: 0xAF7, offset: 0x9600A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x3EFE0, symSize: 0x670 } + - { offsetInCU: 0x27, offset: 0x966F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F6A0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x96897, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x3FAB0, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9694C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x460, symBinAddr: 0x3FB00, symSize: 0x30 } + - { offsetInCU: 0x4C2, offset: 0x96B92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xB10, symBinAddr: 0x401B0, symSize: 0x20 } + - { offsetInCU: 0x6E6, offset: 0x96DB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F6A0, symSize: 0x20 } + - { offsetInCU: 0x6FA, offset: 0x96DCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3F6C0, symSize: 0x40 } + - { offsetInCU: 0x723, offset: 0x96DF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x3F700, symSize: 0x50 } + - { offsetInCU: 0x74A, offset: 0x96E1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x3F750, symSize: 0x40 } + - { offsetInCU: 0x76F, offset: 0x96E3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x3F790, symSize: 0x10 } + - { offsetInCU: 0x790, offset: 0x96E60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3F7A0, symSize: 0x30 } + - { offsetInCU: 0x7B3, offset: 0x96E83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x3F7D0, symSize: 0x40 } + - { offsetInCU: 0x7DA, offset: 0x96EAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x3F810, symSize: 0x40 } + - { offsetInCU: 0x7FF, offset: 0x96ECF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x3F850, symSize: 0x50 } + - { offsetInCU: 0x822, offset: 0x96EF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x3F8A0, symSize: 0x50 } + - { offsetInCU: 0x849, offset: 0x96F19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x3F8F0, symSize: 0x40 } + - { offsetInCU: 0x86E, offset: 0x96F3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x3F930, symSize: 0x40 } + - { offsetInCU: 0x891, offset: 0x96F61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x3F970, symSize: 0x50 } + - { offsetInCU: 0x8C4, offset: 0x96F94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x3F9C0, symSize: 0x40 } + - { offsetInCU: 0x8E3, offset: 0x96FB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x3FA00, symSize: 0x10 } + - { offsetInCU: 0x8F7, offset: 0x96FC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x370, symBinAddr: 0x3FA10, symSize: 0xA0 } + - { offsetInCU: 0x91A, offset: 0x96FEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x430, symBinAddr: 0x3FAD0, symSize: 0x30 } + - { offsetInCU: 0xB44, offset: 0x97214, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x3FB30, symSize: 0x680 } + - { offsetInCU: 0x393, offset: 0x97CA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x1760, symBinAddr: 0x41960, symSize: 0x20 } + - { offsetInCU: 0x761, offset: 0x98075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x17B0, symBinAddr: 0x419B0, symSize: 0x70 } + - { offsetInCU: 0x790, offset: 0x980A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x1820, symBinAddr: 0x41A20, symSize: 0x20 } + - { offsetInCU: 0xA94, offset: 0x983A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x40200, symSize: 0x20 } + - { offsetInCU: 0xAA8, offset: 0x983BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x40220, symSize: 0x40 } + - { offsetInCU: 0xAD1, offset: 0x983E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x60, symBinAddr: 0x40260, symSize: 0x50 } + - { offsetInCU: 0xAF8, offset: 0x9840C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xB0, symBinAddr: 0x402B0, symSize: 0x40 } + - { offsetInCU: 0xB1D, offset: 0x98431, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xF0, symBinAddr: 0x402F0, symSize: 0x40 } + - { offsetInCU: 0xB40, offset: 0x98454, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x130, symBinAddr: 0x40330, symSize: 0x50 } + - { offsetInCU: 0xB67, offset: 0x9847B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x180, symBinAddr: 0x40380, symSize: 0x40 } + - { offsetInCU: 0xB8C, offset: 0x984A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1C0, symBinAddr: 0x403C0, symSize: 0x40 } + - { offsetInCU: 0xBAF, offset: 0x984C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x200, symBinAddr: 0x40400, symSize: 0x50 } + - { offsetInCU: 0xBD6, offset: 0x984EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x250, symBinAddr: 0x40450, symSize: 0x40 } + - { offsetInCU: 0xBFB, offset: 0x9850F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2D0, symBinAddr: 0x404D0, symSize: 0x40 } + - { offsetInCU: 0xC20, offset: 0x98534, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x40510, symSize: 0x10 } + - { offsetInCU: 0xC41, offset: 0x98555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x360, symBinAddr: 0x40560, symSize: 0x40 } + - { offsetInCU: 0xC66, offset: 0x9857A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3E0, symBinAddr: 0x405E0, symSize: 0x40 } + - { offsetInCU: 0xC8B, offset: 0x9859F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x4E0, symBinAddr: 0x406E0, symSize: 0x40 } + - { offsetInCU: 0xCAA, offset: 0x985BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivg', symObjAddr: 0x520, symBinAddr: 0x40720, symSize: 0x30 } + - { offsetInCU: 0xCCD, offset: 0x985E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivs', symObjAddr: 0x550, symBinAddr: 0x40750, symSize: 0x40 } + - { offsetInCU: 0xCF4, offset: 0x98608, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x590, symBinAddr: 0x40790, symSize: 0x40 } + - { offsetInCU: 0xD19, offset: 0x9862D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x6A0, symBinAddr: 0x408A0, symSize: 0x40 } + - { offsetInCU: 0xD3E, offset: 0x98652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x6E0, symBinAddr: 0x408E0, symSize: 0x50 } + - { offsetInCU: 0xD5B, offset: 0x9866F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x730, symBinAddr: 0x40930, symSize: 0x50 } + - { offsetInCU: 0xD82, offset: 0x98696, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x780, symBinAddr: 0x40980, symSize: 0x40 } + - { offsetInCU: 0xDA7, offset: 0x986BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x890, symBinAddr: 0x40A90, symSize: 0x40 } + - { offsetInCU: 0xDCC, offset: 0x986E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivg', symObjAddr: 0x8D0, symBinAddr: 0x40AD0, symSize: 0x30 } + - { offsetInCU: 0xDEF, offset: 0x98703, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivs', symObjAddr: 0x900, symBinAddr: 0x40B00, symSize: 0x40 } + - { offsetInCU: 0xE16, offset: 0x9872A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x940, symBinAddr: 0x40B40, symSize: 0x40 } + - { offsetInCU: 0x11A1, offset: 0x98AB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x980, symBinAddr: 0x40B80, symSize: 0xCD0 } + - { offsetInCU: 0x1D9A, offset: 0x996AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x1650, symBinAddr: 0x41850, symSize: 0x110 } + - { offsetInCU: 0x1DBD, offset: 0x996D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1780, symBinAddr: 0x41980, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x9973B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x41AF0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x998DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x41F00, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x99990, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x460, symBinAddr: 0x41F50, symSize: 0x30 } + - { offsetInCU: 0x482, offset: 0x99B96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xB00, symBinAddr: 0x425F0, symSize: 0x20 } + - { offsetInCU: 0x6A6, offset: 0x99DBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x41AF0, symSize: 0x20 } + - { offsetInCU: 0x6BA, offset: 0x99DCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x41B10, symSize: 0x40 } + - { offsetInCU: 0x6E3, offset: 0x99DF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x41B50, symSize: 0x50 } + - { offsetInCU: 0x70A, offset: 0x99E1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x41BA0, symSize: 0x40 } + - { offsetInCU: 0x72F, offset: 0x99E43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x41BE0, symSize: 0x10 } + - { offsetInCU: 0x750, offset: 0x99E64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x41BF0, symSize: 0x30 } + - { offsetInCU: 0x773, offset: 0x99E87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x41C20, symSize: 0x40 } + - { offsetInCU: 0x79A, offset: 0x99EAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x41C60, symSize: 0x40 } + - { offsetInCU: 0x7BF, offset: 0x99ED3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x41CA0, symSize: 0x50 } + - { offsetInCU: 0x7E2, offset: 0x99EF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x41CF0, symSize: 0x50 } + - { offsetInCU: 0x809, offset: 0x99F1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x41D40, symSize: 0x40 } + - { offsetInCU: 0x82E, offset: 0x99F42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x41D80, symSize: 0x40 } + - { offsetInCU: 0x851, offset: 0x99F65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x41DC0, symSize: 0x50 } + - { offsetInCU: 0x884, offset: 0x99F98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x41E10, symSize: 0x40 } + - { offsetInCU: 0x8A3, offset: 0x99FB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x41E50, symSize: 0x10 } + - { offsetInCU: 0x8B7, offset: 0x99FCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x370, symBinAddr: 0x41E60, symSize: 0xA0 } + - { offsetInCU: 0x8DA, offset: 0x99FEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x430, symBinAddr: 0x41F20, symSize: 0x30 } + - { offsetInCU: 0xAF7, offset: 0x9A20B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x41F80, symSize: 0x670 } + - { offsetInCU: 0x27, offset: 0x9A8F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x42640, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9AA98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x42A50, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9AB4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x460, symBinAddr: 0x42AA0, symSize: 0x30 } + - { offsetInCU: 0x4A1, offset: 0x9AD72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xB10, symBinAddr: 0x43150, symSize: 0x20 } + - { offsetInCU: 0x6C5, offset: 0x9AF96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x42640, symSize: 0x20 } + - { offsetInCU: 0x6D9, offset: 0x9AFAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x42660, symSize: 0x40 } + - { offsetInCU: 0x702, offset: 0x9AFD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x426A0, symSize: 0x50 } + - { offsetInCU: 0x729, offset: 0x9AFFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x426F0, symSize: 0x40 } + - { offsetInCU: 0x74E, offset: 0x9B01F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x42730, symSize: 0x10 } + - { offsetInCU: 0x76F, offset: 0x9B040, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x42740, symSize: 0x30 } + - { offsetInCU: 0x792, offset: 0x9B063, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x42770, symSize: 0x40 } + - { offsetInCU: 0x7B9, offset: 0x9B08A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x427B0, symSize: 0x40 } + - { offsetInCU: 0x7DE, offset: 0x9B0AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x427F0, symSize: 0x50 } + - { offsetInCU: 0x801, offset: 0x9B0D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x42840, symSize: 0x50 } + - { offsetInCU: 0x828, offset: 0x9B0F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x42890, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x9B11E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x428D0, symSize: 0x40 } + - { offsetInCU: 0x870, offset: 0x9B141, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x42910, symSize: 0x50 } + - { offsetInCU: 0x8A3, offset: 0x9B174, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x42960, symSize: 0x40 } + - { offsetInCU: 0x8C2, offset: 0x9B193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x429A0, symSize: 0x10 } + - { offsetInCU: 0x8D6, offset: 0x9B1A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x370, symBinAddr: 0x429B0, symSize: 0xA0 } + - { offsetInCU: 0x8F9, offset: 0x9B1CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x430, symBinAddr: 0x42A70, symSize: 0x30 } + - { offsetInCU: 0xB1D, offset: 0x9B3EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x42AD0, symSize: 0x680 } + - { offsetInCU: 0x27, offset: 0x9BB15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x431A0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9BCB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x420, symBinAddr: 0x435C0, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9BD6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x470, symBinAddr: 0x43610, symSize: 0x40 } + - { offsetInCU: 0x554, offset: 0x9C042, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xC60, symBinAddr: 0x43E00, symSize: 0x20 } + - { offsetInCU: 0x7B1, offset: 0x9C29F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x431A0, symSize: 0x20 } + - { offsetInCU: 0x7C5, offset: 0x9C2B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x431C0, symSize: 0x40 } + - { offsetInCU: 0x7EE, offset: 0x9C2DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x60, symBinAddr: 0x43200, symSize: 0x50 } + - { offsetInCU: 0x821, offset: 0x9C30F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB0, symBinAddr: 0x43250, symSize: 0x40 } + - { offsetInCU: 0x840, offset: 0x9C32E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x43290, symSize: 0x10 } + - { offsetInCU: 0x861, offset: 0x9C34F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x432A0, symSize: 0x30 } + - { offsetInCU: 0x884, offset: 0x9C372, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x432D0, symSize: 0x40 } + - { offsetInCU: 0x8AB, offset: 0x9C399, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x43310, symSize: 0x40 } + - { offsetInCU: 0x8D0, offset: 0x9C3BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x43350, symSize: 0x50 } + - { offsetInCU: 0x8F3, offset: 0x9C3E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x433A0, symSize: 0x50 } + - { offsetInCU: 0x91A, offset: 0x9C408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x433F0, symSize: 0x40 } + - { offsetInCU: 0x93F, offset: 0x9C42D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x43430, symSize: 0x40 } + - { offsetInCU: 0x962, offset: 0x9C450, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x43470, symSize: 0x50 } + - { offsetInCU: 0x995, offset: 0x9C483, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x434C0, symSize: 0x40 } + - { offsetInCU: 0x9B4, offset: 0x9C4A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x43500, symSize: 0x10 } + - { offsetInCU: 0x9C8, offset: 0x9C4B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x43510, symSize: 0xB0 } + - { offsetInCU: 0x9EB, offset: 0x9C4D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x440, symBinAddr: 0x435E0, symSize: 0x30 } + - { offsetInCU: 0xC4B, offset: 0x9C739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4B0, symBinAddr: 0x43650, symSize: 0x7B0 } + - { offsetInCU: 0x27, offset: 0x9CF80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x43E50, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9D120, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x420, symBinAddr: 0x44270, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9D1D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x470, symBinAddr: 0x442C0, symSize: 0x40 } + - { offsetInCU: 0x554, offset: 0x9D4AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xC50, symBinAddr: 0x44AA0, symSize: 0x20 } + - { offsetInCU: 0x7B1, offset: 0x9D70A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x43E50, symSize: 0x20 } + - { offsetInCU: 0x7C5, offset: 0x9D71E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x43E70, symSize: 0x40 } + - { offsetInCU: 0x7EE, offset: 0x9D747, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x60, symBinAddr: 0x43EB0, symSize: 0x50 } + - { offsetInCU: 0x821, offset: 0x9D77A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB0, symBinAddr: 0x43F00, symSize: 0x40 } + - { offsetInCU: 0x840, offset: 0x9D799, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x43F40, symSize: 0x10 } + - { offsetInCU: 0x861, offset: 0x9D7BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x43F50, symSize: 0x30 } + - { offsetInCU: 0x884, offset: 0x9D7DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x43F80, symSize: 0x40 } + - { offsetInCU: 0x8AB, offset: 0x9D804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x43FC0, symSize: 0x40 } + - { offsetInCU: 0x8D0, offset: 0x9D829, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x44000, symSize: 0x50 } + - { offsetInCU: 0x8F3, offset: 0x9D84C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x44050, symSize: 0x50 } + - { offsetInCU: 0x91A, offset: 0x9D873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x440A0, symSize: 0x40 } + - { offsetInCU: 0x93F, offset: 0x9D898, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x440E0, symSize: 0x40 } + - { offsetInCU: 0x962, offset: 0x9D8BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x44120, symSize: 0x50 } + - { offsetInCU: 0x995, offset: 0x9D8EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x44170, symSize: 0x40 } + - { offsetInCU: 0x9B4, offset: 0x9D90D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x441B0, symSize: 0x10 } + - { offsetInCU: 0x9C8, offset: 0x9D921, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x441C0, symSize: 0xB0 } + - { offsetInCU: 0x9EB, offset: 0x9D944, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x440, symBinAddr: 0x44290, symSize: 0x30 } + - { offsetInCU: 0xC4B, offset: 0x9DBA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4B0, symBinAddr: 0x44300, symSize: 0x7A0 } + - { offsetInCU: 0x306, offset: 0x9E6C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x13B0, symBinAddr: 0x45EA0, symSize: 0x30 } + - { offsetInCU: 0x384, offset: 0x9E740, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0xB60, symBinAddr: 0x45650, symSize: 0x20 } + - { offsetInCU: 0x597, offset: 0x9E953, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1410, symBinAddr: 0x45F00, symSize: 0x60 } + - { offsetInCU: 0x836, offset: 0x9EBF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x44AF0, symSize: 0x40 } + - { offsetInCU: 0x85F, offset: 0x9EC1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x40, symBinAddr: 0x44B30, symSize: 0x50 } + - { offsetInCU: 0x892, offset: 0x9EC4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0x90, symBinAddr: 0x44B80, symSize: 0x40 } + - { offsetInCU: 0x8B7, offset: 0x9EC73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xD0, symBinAddr: 0x44BC0, symSize: 0x40 } + - { offsetInCU: 0x8D4, offset: 0x9EC90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x110, symBinAddr: 0x44C00, symSize: 0x50 } + - { offsetInCU: 0x907, offset: 0x9ECC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x160, symBinAddr: 0x44C50, symSize: 0x40 } + - { offsetInCU: 0x92C, offset: 0x9ECE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x44CD0, symSize: 0x40 } + - { offsetInCU: 0x951, offset: 0x9ED0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x220, symBinAddr: 0x44D10, symSize: 0x40 } + - { offsetInCU: 0x96E, offset: 0x9ED2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x260, symBinAddr: 0x44D50, symSize: 0x50 } + - { offsetInCU: 0x9A1, offset: 0x9ED5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2B0, symBinAddr: 0x44DA0, symSize: 0x40 } + - { offsetInCU: 0x9C6, offset: 0x9ED82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x2F0, symBinAddr: 0x44DE0, symSize: 0x10 } + - { offsetInCU: 0x9E7, offset: 0x9EDA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x340, symBinAddr: 0x44E30, symSize: 0x40 } + - { offsetInCU: 0xA0C, offset: 0x9EDC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3C0, symBinAddr: 0x44EB0, symSize: 0x40 } + - { offsetInCU: 0xA31, offset: 0x9EDED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x4C0, symBinAddr: 0x44FB0, symSize: 0x40 } + - { offsetInCU: 0xA56, offset: 0x9EE12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x5D0, symBinAddr: 0x450C0, symSize: 0x40 } + - { offsetInCU: 0xA7B, offset: 0x9EE37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x6E0, symBinAddr: 0x451D0, symSize: 0x40 } + - { offsetInCU: 0xAA6, offset: 0x9EE62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x720, symBinAddr: 0x45210, symSize: 0xD0 } + - { offsetInCU: 0xABA, offset: 0x9EE76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x7F0, symBinAddr: 0x452E0, symSize: 0x370 } + - { offsetInCU: 0xCA0, offset: 0x9F05C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0xB80, symBinAddr: 0x45670, symSize: 0x7E0 } + - { offsetInCU: 0x1948, offset: 0x9FD04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0x1360, symBinAddr: 0x45E50, symSize: 0x20 } + - { offsetInCU: 0x195C, offset: 0x9FD18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0x1380, symBinAddr: 0x45E70, symSize: 0x30 } + - { offsetInCU: 0x19B5, offset: 0x9FD71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x13E0, symBinAddr: 0x45ED0, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x9FDF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x45FE0, symSize: 0xB0 } + - { offsetInCU: 0x380, offset: 0xA014B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0x8A0, symBinAddr: 0x46880, symSize: 0x20 } + - { offsetInCU: 0x4D6, offset: 0xA02A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x45FE0, symSize: 0xB0 } + - { offsetInCU: 0x53C, offset: 0xA0307, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xB0, symBinAddr: 0x46090, symSize: 0xB0 } + - { offsetInCU: 0x579, offset: 0xA0344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x160, symBinAddr: 0x46140, symSize: 0x40 } + - { offsetInCU: 0x593, offset: 0xA035E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x1A0, symBinAddr: 0x46180, symSize: 0x40 } + - { offsetInCU: 0x5A7, offset: 0xA0372, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x1E0, symBinAddr: 0x461C0, symSize: 0x30 } + - { offsetInCU: 0x5BB, offset: 0xA0386, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x210, symBinAddr: 0x461F0, symSize: 0x30 } + - { offsetInCU: 0x5CF, offset: 0xA039A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x240, symBinAddr: 0x46220, symSize: 0x30 } + - { offsetInCU: 0x5E3, offset: 0xA03AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x270, symBinAddr: 0x46250, symSize: 0x30 } + - { offsetInCU: 0x5F7, offset: 0xA03C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x2A0, symBinAddr: 0x46280, symSize: 0x30 } + - { offsetInCU: 0x60B, offset: 0xA03D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x2D0, symBinAddr: 0x462B0, symSize: 0x30 } + - { offsetInCU: 0x61F, offset: 0xA03EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x300, symBinAddr: 0x462E0, symSize: 0x30 } + - { offsetInCU: 0x633, offset: 0xA03FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x330, symBinAddr: 0x46310, symSize: 0x30 } + - { offsetInCU: 0x647, offset: 0xA0412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x360, symBinAddr: 0x46340, symSize: 0x30 } + - { offsetInCU: 0x65B, offset: 0xA0426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x390, symBinAddr: 0x46370, symSize: 0x30 } + - { offsetInCU: 0x66F, offset: 0xA043A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x3C0, symBinAddr: 0x463A0, symSize: 0x30 } + - { offsetInCU: 0x683, offset: 0xA044E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x3F0, symBinAddr: 0x463D0, symSize: 0x30 } + - { offsetInCU: 0x697, offset: 0xA0462, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x420, symBinAddr: 0x46400, symSize: 0x30 } + - { offsetInCU: 0x6AB, offset: 0xA0476, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x450, symBinAddr: 0x46430, symSize: 0x10 } + - { offsetInCU: 0x6BF, offset: 0xA048A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x460, symBinAddr: 0x46440, symSize: 0x30 } + - { offsetInCU: 0x6D3, offset: 0xA049E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x490, symBinAddr: 0x46470, symSize: 0x30 } + - { offsetInCU: 0x6E7, offset: 0xA04B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x4C0, symBinAddr: 0x464A0, symSize: 0x30 } + - { offsetInCU: 0x6FB, offset: 0xA04C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x4F0, symBinAddr: 0x464D0, symSize: 0x90 } + - { offsetInCU: 0x722, offset: 0xA04ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x580, symBinAddr: 0x46560, symSize: 0x90 } + - { offsetInCU: 0x7CB, offset: 0xA0596, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x610, symBinAddr: 0x465F0, symSize: 0x250 } + - { offsetInCU: 0x967, offset: 0xA0732, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0x860, symBinAddr: 0x46840, symSize: 0x20 } + - { offsetInCU: 0x998, offset: 0xA0763, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0x880, symBinAddr: 0x46860, symSize: 0x20 } + - { offsetInCU: 0x18D, offset: 0xA0931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xDD0, symBinAddr: 0x47690, symSize: 0xD0 } + - { offsetInCU: 0x1A9, offset: 0xA094D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xEA0, symBinAddr: 0x47760, symSize: 0x50 } + - { offsetInCU: 0x1FB, offset: 0xA099F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x1270, symBinAddr: 0x47B30, symSize: 0x40 } + - { offsetInCU: 0x24E, offset: 0xA09F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x280, symBinAddr: 0x46B70, symSize: 0x20 } + - { offsetInCU: 0x262, offset: 0xA0A06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x2A0, symBinAddr: 0x46B90, symSize: 0x20 } + - { offsetInCU: 0x276, offset: 0xA0A1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x410, symBinAddr: 0x46CD0, symSize: 0x20 } + - { offsetInCU: 0x28A, offset: 0xA0A2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x1900, symBinAddr: 0x481C0, symSize: 0x20 } + - { offsetInCU: 0x29E, offset: 0xA0A42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x1920, symBinAddr: 0x481E0, symSize: 0x20 } + - { offsetInCU: 0x2B2, offset: 0xA0A56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1940, symBinAddr: 0x48200, symSize: 0x20 } + - { offsetInCU: 0x2C6, offset: 0xA0A6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x19A0, symBinAddr: 0x48260, symSize: 0x20 } + - { offsetInCU: 0x2DA, offset: 0xA0A7E, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x19C0, symBinAddr: 0x48280, symSize: 0x20 } + - { offsetInCU: 0x2EE, offset: 0xA0A92, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x19E0, symBinAddr: 0x482A0, symSize: 0x10 } + - { offsetInCU: 0x302, offset: 0xA0AA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x19F0, symBinAddr: 0x482B0, symSize: 0x20 } + - { offsetInCU: 0x316, offset: 0xA0ABA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1A10, symBinAddr: 0x482D0, symSize: 0x20 } + - { offsetInCU: 0x32A, offset: 0xA0ACE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1A30, symBinAddr: 0x482F0, symSize: 0x20 } + - { offsetInCU: 0x33E, offset: 0xA0AE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1A50, symBinAddr: 0x48310, symSize: 0x20 } + - { offsetInCU: 0x352, offset: 0xA0AF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1A70, symBinAddr: 0x48330, symSize: 0x20 } + - { offsetInCU: 0x366, offset: 0xA0B0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1A90, symBinAddr: 0x48350, symSize: 0x10 } + - { offsetInCU: 0x37A, offset: 0xA0B1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1AA0, symBinAddr: 0x48360, symSize: 0x50 } + - { offsetInCU: 0x38E, offset: 0xA0B32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1AF0, symBinAddr: 0x483B0, symSize: 0x10 } + - { offsetInCU: 0x3A2, offset: 0xA0B46, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B00, symBinAddr: 0x483C0, symSize: 0x20 } + - { offsetInCU: 0x3B6, offset: 0xA0B5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1D40, symBinAddr: 0x48600, symSize: 0x80 } + - { offsetInCU: 0x3CA, offset: 0xA0B6E, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1DC0, symBinAddr: 0x48680, symSize: 0x30 } + - { offsetInCU: 0x40A, offset: 0xA0BAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0xFC0, symBinAddr: 0x47880, symSize: 0x50 } + - { offsetInCU: 0x426, offset: 0xA0BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0x1010, symBinAddr: 0x478D0, symSize: 0x40 } + - { offsetInCU: 0x442, offset: 0xA0BE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0x1050, symBinAddr: 0x47910, symSize: 0x10 } + - { offsetInCU: 0x45E, offset: 0xA0C02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0x1060, symBinAddr: 0x47920, symSize: 0x10 } + - { offsetInCU: 0x499, offset: 0xA0C3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1070, symBinAddr: 0x47930, symSize: 0x10 } + - { offsetInCU: 0x4CA, offset: 0xA0C6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0x1080, symBinAddr: 0x47940, symSize: 0x50 } + - { offsetInCU: 0x4E6, offset: 0xA0C8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x10D0, symBinAddr: 0x47990, symSize: 0x60 } + - { offsetInCU: 0x502, offset: 0xA0CA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1130, symBinAddr: 0x479F0, symSize: 0x50 } + - { offsetInCU: 0x542, offset: 0xA0CE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x1220, symBinAddr: 0x47AE0, symSize: 0x50 } + - { offsetInCU: 0x58C, offset: 0xA0D30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x12B0, symBinAddr: 0x47B70, symSize: 0x80 } + - { offsetInCU: 0x5DC, offset: 0xA0D80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x1330, symBinAddr: 0x47BF0, symSize: 0x60 } + - { offsetInCU: 0x61A, offset: 0xA0DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x1390, symBinAddr: 0x47C50, symSize: 0x30 } + - { offsetInCU: 0x636, offset: 0xA0DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x13C0, symBinAddr: 0x47C80, symSize: 0x10 } + - { offsetInCU: 0x66C, offset: 0xA0E10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x13D0, symBinAddr: 0x47C90, symSize: 0x50 } + - { offsetInCU: 0x69D, offset: 0xA0E41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x1420, symBinAddr: 0x47CE0, symSize: 0x50 } + - { offsetInCU: 0x6B9, offset: 0xA0E5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x1470, symBinAddr: 0x47D30, symSize: 0x60 } + - { offsetInCU: 0x6DC, offset: 0xA0E80, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x1630, symBinAddr: 0x47EF0, symSize: 0x10 } + - { offsetInCU: 0x705, offset: 0xA0EA9, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B20, symBinAddr: 0x483E0, symSize: 0x150 } + - { offsetInCU: 0x88C, offset: 0xA1030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x468F0, symSize: 0x50 } + - { offsetInCU: 0x8A0, offset: 0xA1044, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x190, symBinAddr: 0x46A80, symSize: 0xF0 } + - { offsetInCU: 0x90F, offset: 0xA10B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x2F0, symBinAddr: 0x46BB0, symSize: 0x70 } + - { offsetInCU: 0x95F, offset: 0xA1103, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x360, symBinAddr: 0x46C20, symSize: 0xB0 } + - { offsetInCU: 0x9C9, offset: 0xA116D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x430, symBinAddr: 0x46CF0, symSize: 0x50 } + - { offsetInCU: 0x9F1, offset: 0xA1195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x480, symBinAddr: 0x46D40, symSize: 0x120 } + - { offsetInCU: 0xA59, offset: 0xA11FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x5A0, symBinAddr: 0x46E60, symSize: 0x60 } + - { offsetInCU: 0xA9B, offset: 0xA123F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x600, symBinAddr: 0x46EC0, symSize: 0x80 } + - { offsetInCU: 0xAF9, offset: 0xA129D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x680, symBinAddr: 0x46F40, symSize: 0xC0 } + - { offsetInCU: 0xB4B, offset: 0xA12EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x740, symBinAddr: 0x47000, symSize: 0xF0 } + - { offsetInCU: 0xB8E, offset: 0xA1332, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x830, symBinAddr: 0x470F0, symSize: 0xE0 } + - { offsetInCU: 0xBDE, offset: 0xA1382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x910, symBinAddr: 0x471D0, symSize: 0xC0 } + - { offsetInCU: 0xC3C, offset: 0xA13E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0x9D0, symBinAddr: 0x47290, symSize: 0xB0 } + - { offsetInCU: 0xC7E, offset: 0xA1422, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0xA80, symBinAddr: 0x47340, symSize: 0x70 } + - { offsetInCU: 0xCDC, offset: 0xA1480, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xAF0, symBinAddr: 0x473B0, symSize: 0x180 } + - { offsetInCU: 0xD2D, offset: 0xA14D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xC70, symBinAddr: 0x47530, symSize: 0xA0 } + - { offsetInCU: 0xD7B, offset: 0xA151F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xD10, symBinAddr: 0x475D0, symSize: 0x20 } + - { offsetInCU: 0xDB1, offset: 0xA1555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xD30, symBinAddr: 0x475F0, symSize: 0x30 } + - { offsetInCU: 0xDF1, offset: 0xA1595, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xEF0, symBinAddr: 0x477B0, symSize: 0xA0 } + - { offsetInCU: 0xE3E, offset: 0xA15E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0xF90, symBinAddr: 0x47850, symSize: 0x30 } + - { offsetInCU: 0xEAC, offset: 0xA1650, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x1640, symBinAddr: 0x47F00, symSize: 0x2C0 } +... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS new file mode 100644 index 0000000..ffe7614 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml new file mode 100644 index 0000000..10b94c2 --- /dev/null +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml @@ -0,0 +1,1660 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' +relocations: + - { offsetInCU: 0x34, offset: 0x58E66, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6C1E0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x58E9B, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6C218, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x39C38, symBinAddr: 0x85460, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x591A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9370, symBinAddr: 0xE190, symSize: 0x1558 } + - { offsetInCU: 0x1C16, offset: 0x5AAC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4E88, symSize: 0x3C } + - { offsetInCU: 0x1DD2, offset: 0x5AC83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1B5C, symBinAddr: 0x69A4, symSize: 0x8 } + - { offsetInCU: 0x1DE6, offset: 0x5AC97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1B64, symBinAddr: 0x69AC, symSize: 0x3C } + - { offsetInCU: 0x1DFA, offset: 0x5ACAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1BA0, symBinAddr: 0x69E8, symSize: 0x168 } + - { offsetInCU: 0x2260, offset: 0x5B111, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8154, symBinAddr: 0xCF8C, symSize: 0xC } + - { offsetInCU: 0x2274, offset: 0x5B125, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8160, symBinAddr: 0xCF98, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x5B139, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8164, symBinAddr: 0xCF9C, symSize: 0x20 } + - { offsetInCU: 0x229C, offset: 0x5B14D, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x8184, symBinAddr: 0xCFBC, symSize: 0x28 } + - { offsetInCU: 0x24C1, offset: 0x5B372, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x87C4, symBinAddr: 0xD5E4, symSize: 0x2C } + - { offsetInCU: 0x24D5, offset: 0x5B386, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x87F0, symBinAddr: 0xD610, symSize: 0x2C } + - { offsetInCU: 0x24E9, offset: 0x5B39A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x885C, symBinAddr: 0xD67C, symSize: 0x2C } + - { offsetInCU: 0x24FD, offset: 0x5B3AE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8888, symBinAddr: 0xD6A8, symSize: 0x2C } + - { offsetInCU: 0x2566, offset: 0x5B417, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x8C98, symBinAddr: 0xDAB8, symSize: 0x68 } + - { offsetInCU: 0x2B9B, offset: 0x5BA4C, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xA938, symBinAddr: 0xF758, symSize: 0x48 } + - { offsetInCU: 0x2BAF, offset: 0x5BA60, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xA980, symBinAddr: 0xF7A0, symSize: 0x40 } + - { offsetInCU: 0x2BC3, offset: 0x5BA74, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xA9C0, symBinAddr: 0xF7E0, symSize: 0x20 } + - { offsetInCU: 0x2BD7, offset: 0x5BA88, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xA9E0, symBinAddr: 0xF800, symSize: 0x10 } + - { offsetInCU: 0x2BEB, offset: 0x5BA9C, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xA9F0, symBinAddr: 0xF810, symSize: 0x3C } + - { offsetInCU: 0x2BFF, offset: 0x5BAB0, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAA8C, symBinAddr: 0xF8AC, symSize: 0x44 } + - { offsetInCU: 0x2C13, offset: 0x5BAC4, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xAC58, symBinAddr: 0xFA78, symSize: 0x8 } + - { offsetInCU: 0x2C27, offset: 0x5BAD8, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xAC60, symBinAddr: 0xFA80, symSize: 0x10 } + - { offsetInCU: 0x2C3B, offset: 0x5BAEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xAC70, symBinAddr: 0xFA90, symSize: 0x5C } + - { offsetInCU: 0x2C4F, offset: 0x5BB00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xACCC, symBinAddr: 0xFAEC, symSize: 0x30C } + - { offsetInCU: 0x2C63, offset: 0x5BB14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xAFD8, symBinAddr: 0xFDF8, symSize: 0x240 } + - { offsetInCU: 0x2C77, offset: 0x5BB28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xB218, symBinAddr: 0x10038, symSize: 0x70 } + - { offsetInCU: 0x2C8B, offset: 0x5BB3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xB288, symBinAddr: 0x100A8, symSize: 0x34 } + - { offsetInCU: 0x2C9F, offset: 0x5BB50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xB2BC, symBinAddr: 0x100DC, symSize: 0x174 } + - { offsetInCU: 0x2CB3, offset: 0x5BB64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xB430, symBinAddr: 0x10250, symSize: 0xB4 } + - { offsetInCU: 0x2CC7, offset: 0x5BB78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xB4E4, symBinAddr: 0x10304, symSize: 0x10 } + - { offsetInCU: 0x2CDB, offset: 0x5BB8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xB4F4, symBinAddr: 0x10314, symSize: 0x34 } + - { offsetInCU: 0x2CEF, offset: 0x5BBA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xB564, symBinAddr: 0x10384, symSize: 0x5C } + - { offsetInCU: 0x2D03, offset: 0x5BBB4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xB664, symBinAddr: 0x10484, symSize: 0x2C } + - { offsetInCU: 0x2D17, offset: 0x5BBC8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xB690, symBinAddr: 0x104B0, symSize: 0x2C } + - { offsetInCU: 0x2D2B, offset: 0x5BBDC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xB6BC, symBinAddr: 0x104DC, symSize: 0x2C } + - { offsetInCU: 0x2D3F, offset: 0x5BBF0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xB6E8, symBinAddr: 0x10508, symSize: 0x2C } + - { offsetInCU: 0x2D53, offset: 0x5BC04, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xB714, symBinAddr: 0x10534, symSize: 0x2C } + - { offsetInCU: 0x2D67, offset: 0x5BC18, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xB740, symBinAddr: 0x10560, symSize: 0x2C } + - { offsetInCU: 0x2D7B, offset: 0x5BC2C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xB76C, symBinAddr: 0x1058C, symSize: 0x2C } + - { offsetInCU: 0x30D9, offset: 0x5BF8A, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6A70, symBinAddr: 0xB8B8, symSize: 0x6C } + - { offsetInCU: 0x31ED, offset: 0x5C09E, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x81C0, symBinAddr: 0xCFF8, symSize: 0x80 } + - { offsetInCU: 0x327E, offset: 0x5C12F, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8240, symBinAddr: 0xD078, symSize: 0x90 } + - { offsetInCU: 0x331E, offset: 0x5C1CF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x82D0, symBinAddr: 0xD108, symSize: 0x14 } + - { offsetInCU: 0x335C, offset: 0x5C20D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x82F0, symBinAddr: 0xD128, symSize: 0x8 } + - { offsetInCU: 0x33BF, offset: 0x5C270, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x82F8, symBinAddr: 0xD130, symSize: 0x14 } + - { offsetInCU: 0x3470, offset: 0x5C321, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x830C, symBinAddr: 0xD144, symSize: 0x14 } + - { offsetInCU: 0x3519, offset: 0x5C3CA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8320, symBinAddr: 0xD158, symSize: 0x14 } + - { offsetInCU: 0x35C0, offset: 0x5C471, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8334, symBinAddr: 0xD16C, symSize: 0x30 } + - { offsetInCU: 0x374C, offset: 0x5C5FD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8364, symBinAddr: 0xD19C, symSize: 0x2C } + - { offsetInCU: 0x38E3, offset: 0x5C794, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8390, symBinAddr: 0xD1C8, symSize: 0x24 } + - { offsetInCU: 0x39CF, offset: 0x5C880, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x83B4, symBinAddr: 0xD1EC, symSize: 0x14 } + - { offsetInCU: 0x3A35, offset: 0x5C8E6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x83C8, symBinAddr: 0xD200, symSize: 0x14 } + - { offsetInCU: 0x3A9B, offset: 0x5C94C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x83DC, symBinAddr: 0xD214, symSize: 0x14 } + - { offsetInCU: 0x3B1A, offset: 0x5C9CB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x83F0, symBinAddr: 0xD228, symSize: 0x14 } + - { offsetInCU: 0x3BCD, offset: 0x5CA7E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8404, symBinAddr: 0xD23C, symSize: 0x14 } + - { offsetInCU: 0x3C4E, offset: 0x5CAFF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8418, symBinAddr: 0xD250, symSize: 0x14 } + - { offsetInCU: 0x3D10, offset: 0x5CBC1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x842C, symBinAddr: 0xD264, symSize: 0x14 } + - { offsetInCU: 0x3DAA, offset: 0x5CC5B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8440, symBinAddr: 0xD278, symSize: 0x10 } + - { offsetInCU: 0x3E12, offset: 0x5CCC3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8450, symBinAddr: 0xD288, symSize: 0x18 } + - { offsetInCU: 0x3E2E, offset: 0x5CCDF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8468, symBinAddr: 0xD2A0, symSize: 0x14 } + - { offsetInCU: 0x3EAA, offset: 0x5CD5B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8498, symBinAddr: 0xD2D0, symSize: 0x8 } + - { offsetInCU: 0x3EC6, offset: 0x5CD77, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x84A0, symBinAddr: 0xD2D8, symSize: 0x14 } + - { offsetInCU: 0x3EF7, offset: 0x5CDA8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x84B4, symBinAddr: 0xD2EC, symSize: 0x14 } + - { offsetInCU: 0x3F28, offset: 0x5CDD9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x84C8, symBinAddr: 0xD300, symSize: 0x14 } + - { offsetInCU: 0x3F59, offset: 0x5CE0A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x84DC, symBinAddr: 0xD314, symSize: 0x30 } + - { offsetInCU: 0x3F88, offset: 0x5CE39, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x850C, symBinAddr: 0xD344, symSize: 0x2C } + - { offsetInCU: 0x3FB9, offset: 0x5CE6A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8538, symBinAddr: 0xD370, symSize: 0x24 } + - { offsetInCU: 0x3FEA, offset: 0x5CE9B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x855C, symBinAddr: 0xD394, symSize: 0x14 } + - { offsetInCU: 0x401B, offset: 0x5CECC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8570, symBinAddr: 0xD3A8, symSize: 0x14 } + - { offsetInCU: 0x404C, offset: 0x5CEFD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8584, symBinAddr: 0xD3BC, symSize: 0x14 } + - { offsetInCU: 0x407D, offset: 0x5CF2E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8598, symBinAddr: 0xD3D0, symSize: 0x14 } + - { offsetInCU: 0x40AE, offset: 0x5CF5F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x85AC, symBinAddr: 0xD3E4, symSize: 0x14 } + - { offsetInCU: 0x40DF, offset: 0x5CF90, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x85C0, symBinAddr: 0xD3F8, symSize: 0x14 } + - { offsetInCU: 0x4110, offset: 0x5CFC1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x85D4, symBinAddr: 0xD40C, symSize: 0x14 } + - { offsetInCU: 0x4141, offset: 0x5CFF2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x85E8, symBinAddr: 0xD420, symSize: 0x10 } + - { offsetInCU: 0x4172, offset: 0x5D023, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x85F8, symBinAddr: 0xD430, symSize: 0x18 } + - { offsetInCU: 0x418E, offset: 0x5D03F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8610, symBinAddr: 0xD448, symSize: 0x14 } + - { offsetInCU: 0x41DE, offset: 0x5D08F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8630, symBinAddr: 0xD468, symSize: 0x40 } + - { offsetInCU: 0x4266, offset: 0x5D117, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8670, symBinAddr: 0xD4A8, symSize: 0x70 } + - { offsetInCU: 0x42EA, offset: 0x5D19B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8728, symBinAddr: 0xD560, symSize: 0x4 } + - { offsetInCU: 0x4306, offset: 0x5D1B7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x872C, symBinAddr: 0xD564, symSize: 0x4 } + - { offsetInCU: 0x4331, offset: 0x5D1E2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8730, symBinAddr: 0xD568, symSize: 0x40 } + - { offsetInCU: 0x43BF, offset: 0x5D270, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8788, symBinAddr: 0xD5A8, symSize: 0x3C } + - { offsetInCU: 0x43F0, offset: 0x5D2A1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x88B4, symBinAddr: 0xD6D4, symSize: 0x14 } + - { offsetInCU: 0x4427, offset: 0x5D2D8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x88C8, symBinAddr: 0xD6E8, symSize: 0x3C } + - { offsetInCU: 0x4467, offset: 0x5D318, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8904, symBinAddr: 0xD724, symSize: 0x88 } + - { offsetInCU: 0x4511, offset: 0x5D3C2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8A20, symBinAddr: 0xD840, symSize: 0x84 } + - { offsetInCU: 0x4545, offset: 0x5D3F6, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9038, symBinAddr: 0xDE58, symSize: 0xB8 } + - { offsetInCU: 0x461D, offset: 0x5D4CE, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x90F0, symBinAddr: 0xDF10, symSize: 0x164 } + - { offsetInCU: 0x489B, offset: 0x5D74C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x48BB, offset: 0x5D76C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x48CF, offset: 0x5D780, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x48EF, offset: 0x5D7A0, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x4903, offset: 0x5D7B4, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x4917, offset: 0x5D7C8, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x492B, offset: 0x5D7DC, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x4A28, offset: 0x5D8D9, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4A48, offset: 0x5D8F9, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4A5C, offset: 0x5D90D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4A7C, offset: 0x5D92D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4A90, offset: 0x5D941, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4AA4, offset: 0x5D955, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4AB8, offset: 0x5D969, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4CE5, offset: 0x5DB96, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x89B4, symBinAddr: 0xD7D4, symSize: 0x44 } + - { offsetInCU: 0x4D0E, offset: 0x5DBBF, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x89F8, symBinAddr: 0xD818, symSize: 0x28 } + - { offsetInCU: 0x4D49, offset: 0x5DBFA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x8998, symBinAddr: 0xD7B8, symSize: 0x10 } + - { offsetInCU: 0x4D65, offset: 0x5DC16, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x89A8, symBinAddr: 0xD7C8, symSize: 0xC } + - { offsetInCU: 0x4D93, offset: 0x5DC44, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x898C, symBinAddr: 0xD7AC, symSize: 0xC } + - { offsetInCU: 0x4E6B, offset: 0x5DD1C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x82E4, symBinAddr: 0xD11C, symSize: 0xC } + - { offsetInCU: 0x4E9D, offset: 0x5DD4E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x847C, symBinAddr: 0xD2B4, symSize: 0x10 } + - { offsetInCU: 0x4EB9, offset: 0x5DD6A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x848C, symBinAddr: 0xD2C4, symSize: 0xC } + - { offsetInCU: 0x4F17, offset: 0x5DDC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x4EC4, symSize: 0x44 } + - { offsetInCU: 0x4F2B, offset: 0x5DDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x4F08, symSize: 0x4 } + - { offsetInCU: 0x4F53, offset: 0x5DE04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x4F0C, symSize: 0x2BC } + - { offsetInCU: 0x5084, offset: 0x5DF35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x51C8, symSize: 0x1434 } + - { offsetInCU: 0x5385, offset: 0x5E236, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x17B4, symBinAddr: 0x65FC, symSize: 0x384 } + - { offsetInCU: 0x53DE, offset: 0x5E28F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1B38, symBinAddr: 0x6980, symSize: 0x24 } + - { offsetInCU: 0x5416, offset: 0x5E2C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D08, symBinAddr: 0x6B50, symSize: 0x298 } + - { offsetInCU: 0x5587, offset: 0x5E438, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1FA0, symBinAddr: 0x6DE8, symSize: 0x3D4 } + - { offsetInCU: 0x5832, offset: 0x5E6E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2374, symBinAddr: 0x71BC, symSize: 0x794 } + - { offsetInCU: 0x5E83, offset: 0x5ED34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2B08, symBinAddr: 0x7950, symSize: 0x524 } + - { offsetInCU: 0x6278, offset: 0x5F129, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x302C, symBinAddr: 0x7E74, symSize: 0x3A44 } + - { offsetInCU: 0x7251, offset: 0x60102, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6AEC, symBinAddr: 0xB924, symSize: 0x150 } + - { offsetInCU: 0x7330, offset: 0x601E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6C3C, symBinAddr: 0xBA74, symSize: 0x300 } + - { offsetInCU: 0x7593, offset: 0x60444, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x6F3C, symBinAddr: 0xBD74, symSize: 0x3C8 } + - { offsetInCU: 0x78F1, offset: 0x607A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7304, symBinAddr: 0xC13C, symSize: 0x2B0 } + - { offsetInCU: 0x7A98, offset: 0x60949, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7804, symBinAddr: 0xC63C, symSize: 0x31C } + - { offsetInCU: 0x7BF3, offset: 0x60AA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x7B20, symBinAddr: 0xC958, symSize: 0x438 } + - { offsetInCU: 0x7E5D, offset: 0x60D0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x7F58, symBinAddr: 0xCD90, symSize: 0x188 } + - { offsetInCU: 0x8119, offset: 0x60FCA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8AA4, symBinAddr: 0xD8C4, symSize: 0x1F4 } + - { offsetInCU: 0x819E, offset: 0x6104F, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x8E5C, symBinAddr: 0xDC7C, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x6134D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x105C4, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x61388, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x105D4, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x6146F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x105C4, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x614DC, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x10600, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x614F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x10614, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0x106F4, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x615BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0x1070C, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x61637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0x10738, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x6166C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x10740, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x6169D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0x10764, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x616B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0x10770, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x616D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x22F8, symBinAddr: 0x128EC, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61895, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1348, symBinAddr: 0x1193C, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x618CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1398, symBinAddr: 0x1198C, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x618EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2714, symBinAddr: 0x12D08, symSize: 0x144C } + - { offsetInCU: 0x4B4, offset: 0x6194D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x13E8, symBinAddr: 0x119DC, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x619A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x13F0, symBinAddr: 0x119E4, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x61A88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1430, symBinAddr: 0x11A24, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x61AF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1490, symBinAddr: 0x11A84, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x61B48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x149C, symBinAddr: 0x11A90, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x61BA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1518, symBinAddr: 0x11B0C, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x61BBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1524, symBinAddr: 0x11B18, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x61BFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0x11B74, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61C32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0x11BC4, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3B60, symBinAddr: 0x14154, symSize: 0x248 } + - { offsetInCU: 0x857, offset: 0x61CF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1628, symBinAddr: 0x11C1C, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61D25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1684, symBinAddr: 0x11C78, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61D56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16A8, symBinAddr: 0x11C9C, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61D72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16B4, symBinAddr: 0x11CA8, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61D8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x1629C, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x61E67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1710, symBinAddr: 0x11D04, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x61E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1760, symBinAddr: 0x11D54, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x61EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5E9C, symBinAddr: 0x1644C, symSize: 0x310 } + - { offsetInCU: 0xA97, offset: 0x61F30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17A8, symBinAddr: 0x11D9C, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61F65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F8, symBinAddr: 0x11DEC, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x181C, symBinAddr: 0x11E10, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61FB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1828, symBinAddr: 0x11E1C, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61FCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x61AC, symBinAddr: 0x1675C, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x6207E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1884, symBinAddr: 0x11E78, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x620B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C4, symBinAddr: 0x11EB8, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x620D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6314, symBinAddr: 0x168C4, symSize: 0x2C8 } + - { offsetInCU: 0xCA2, offset: 0x6213B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0x11EF8, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x62170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1950, symBinAddr: 0x11F44, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x621A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1974, symBinAddr: 0x11F68, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x621BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1980, symBinAddr: 0x11F74, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x621D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x65DC, symBinAddr: 0x16B8C, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x62299, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19DC, symBinAddr: 0x11FD0, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x622D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A4C, symBinAddr: 0x12040, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x622F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x673C, symBinAddr: 0x16CEC, symSize: 0x4D8 } + - { offsetInCU: 0xEC9, offset: 0x62362, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AAC, symBinAddr: 0x120A0, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x62397, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B34, symBinAddr: 0x12128, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x623C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B58, symBinAddr: 0x1214C, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x623E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B64, symBinAddr: 0x12158, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x62400, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x17290, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x62514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BC0, symBinAddr: 0x121B4, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x6254B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C24, symBinAddr: 0x12218, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x6256E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6F74, symBinAddr: 0x17524, symSize: 0x57C } + - { offsetInCU: 0x1162, offset: 0x625FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C74, symBinAddr: 0x12268, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6267B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1C8C, symBinAddr: 0x12280, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x6275E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CD0, symBinAddr: 0x122C4, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x627E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D38, symBinAddr: 0x1232C, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x62839, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D54, symBinAddr: 0x12348, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x6286A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D78, symBinAddr: 0x1236C, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x62886, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D84, symBinAddr: 0x12378, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x628A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7534, symBinAddr: 0x17AE4, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62930, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0x123D4, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x62967, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E0C, symBinAddr: 0x12400, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x6298A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x75F4, symBinAddr: 0x17BA4, symSize: 0x1A0 } + - { offsetInCU: 0x156C, offset: 0x62A05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0x12424, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x62A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1EA0, symBinAddr: 0x12494, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x62A6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1EC4, symBinAddr: 0x124B8, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x62A87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0x124C4, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x62AA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x77D8, symBinAddr: 0x17D88, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x62BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1F2C, symBinAddr: 0x12520, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x62BE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F84, symBinAddr: 0x12578, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x62C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7A1C, symBinAddr: 0x17FCC, symSize: 0x360 } + - { offsetInCU: 0x17D2, offset: 0x62C6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FD4, symBinAddr: 0x125C8, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x62CA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2038, symBinAddr: 0x1262C, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x62CD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x205C, symBinAddr: 0x12650, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x62CED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2068, symBinAddr: 0x1265C, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x62D09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7D7C, symBinAddr: 0x1832C, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x62DEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x20C4, symBinAddr: 0x126B8, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x210C, symBinAddr: 0x12700, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62E45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7F70, symBinAddr: 0x18520, symSize: 0x380 } + - { offsetInCU: 0x1A2F, offset: 0x62EC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x21D8, symBinAddr: 0x127CC, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62F12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x21F0, symBinAddr: 0x127E4, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62F43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2214, symBinAddr: 0x12808, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62F5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2220, symBinAddr: 0x12814, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62F7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8378, symBinAddr: 0x18928, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x63022, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x227C, symBinAddr: 0x12870, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x63059, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x22C0, symBinAddr: 0x128B4, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x6307C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8484, symBinAddr: 0x18A34, symSize: 0x1CC } + - { offsetInCU: 0x1C20, offset: 0x630B9, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3DE8, symBinAddr: 0x1439C, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x630CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3E0C, symBinAddr: 0x143C0, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x630E1, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3E50, symBinAddr: 0x14404, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x630F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3E70, symBinAddr: 0x14424, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x63109, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3EB4, symBinAddr: 0x14468, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x6311D, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3EF8, symBinAddr: 0x144AC, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x63131, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3F00, symBinAddr: 0x144B0, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x63145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x3F50, symBinAddr: 0x14500, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x63159, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x3FDC, symBinAddr: 0x1458C, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x6316D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x3FE4, symBinAddr: 0x14594, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x63181, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x3FE8, symBinAddr: 0x14598, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x63195, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x3FEC, symBinAddr: 0x1459C, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x631A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x3FFC, symBinAddr: 0x145AC, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x631BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x48AC, symBinAddr: 0x14E5C, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x631D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x48BC, symBinAddr: 0x14E6C, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x631E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x48C0, symBinAddr: 0x14E70, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x631F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4904, symBinAddr: 0x14EB4, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x6320D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4908, symBinAddr: 0x14EB8, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x63221, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x494C, symBinAddr: 0x14EFC, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x63235, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4950, symBinAddr: 0x14F00, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x63249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x4994, symBinAddr: 0x14F44, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x6325D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x49D8, symBinAddr: 0x14F88, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x63271, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x14FCC, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x63285, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4A60, symBinAddr: 0x15010, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x63299, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x15054, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x632AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x15098, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x632C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x4B2C, symBinAddr: 0x150DC, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x632D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x4B70, symBinAddr: 0x15120, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x632E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x4BB4, symBinAddr: 0x15164, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x632FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x4BF8, symBinAddr: 0x151A8, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x63311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x4C3C, symBinAddr: 0x151EC, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x63325, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4C80, symBinAddr: 0x15230, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x63339, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4CC4, symBinAddr: 0x15274, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x6334D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4CD0, symBinAddr: 0x15280, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x63361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4D60, symBinAddr: 0x15310, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x63375, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4E1C, symBinAddr: 0x153CC, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x63389, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4E24, symBinAddr: 0x153D4, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x6339D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4E28, symBinAddr: 0x153D8, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x633B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4E30, symBinAddr: 0x153E0, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x633C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4E40, symBinAddr: 0x153F0, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x633D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4E68, symBinAddr: 0x15418, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x633ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4EAC, symBinAddr: 0x1545C, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x63401, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4F20, symBinAddr: 0x154D0, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x63415, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4F34, symBinAddr: 0x154E4, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x63429, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x4F80, symBinAddr: 0x15530, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x6343D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x4FC8, symBinAddr: 0x15578, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x63451, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x5010, symBinAddr: 0x155C0, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x63465, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x5020, symBinAddr: 0x155D0, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x63479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5058, symBinAddr: 0x15608, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x6348D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x50CC, symBinAddr: 0x1567C, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x634A1, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5188, symBinAddr: 0x15738, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x634B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x51A4, symBinAddr: 0x15754, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x634C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5220, symBinAddr: 0x157D0, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x634DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5268, symBinAddr: 0x15818, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x634F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x52BC, symBinAddr: 0x1586C, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x63505, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x52CC, symBinAddr: 0x1587C, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x63519, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x52F4, symBinAddr: 0x158A4, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x6352D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5330, symBinAddr: 0x158E0, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x63541, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x539C, symBinAddr: 0x1594C, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x63555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x53A8, symBinAddr: 0x15958, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x63569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x53EC, symBinAddr: 0x1599C, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x6357D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x5434, symBinAddr: 0x159E4, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63591, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5474, symBinAddr: 0x15A24, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x635A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x5484, symBinAddr: 0x15A34, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x635B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x54D4, symBinAddr: 0x15A84, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x635CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5580, symBinAddr: 0x15B30, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x635E1, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5694, symBinAddr: 0x15C44, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x635F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x56C0, symBinAddr: 0x15C70, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x63609, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x575C, symBinAddr: 0x15D0C, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x6361D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x57A4, symBinAddr: 0x15D54, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x63631, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x5800, symBinAddr: 0x15DB0, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x63645, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x5810, symBinAddr: 0x15DC0, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x63659, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5868, symBinAddr: 0x15E18, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x6366D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x592C, symBinAddr: 0x15EDC, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63681, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5A70, symBinAddr: 0x16020, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63695, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x5AA4, symBinAddr: 0x16054, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x636A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x5B58, symBinAddr: 0x16108, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x636BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5BA0, symBinAddr: 0x16150, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x636D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x5C04, symBinAddr: 0x161B4, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x636E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5C14, symBinAddr: 0x161C4, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x636F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x5C18, symBinAddr: 0x161C8, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x6370D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5C5C, symBinAddr: 0x1620C, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x63721, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5C60, symBinAddr: 0x16210, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x63735, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5CA4, symBinAddr: 0x16254, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x63749, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5CA8, symBinAddr: 0x16258, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x6375D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x6C14, symBinAddr: 0x171C4, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63771, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x6C58, symBinAddr: 0x17208, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63785, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6C9C, symBinAddr: 0x1724C, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x63799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x74F0, symBinAddr: 0x17AA0, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x637AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7794, symBinAddr: 0x17D44, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x637C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x82F0, symBinAddr: 0x188A0, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x637D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8334, symBinAddr: 0x188E4, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x637E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8650, symBinAddr: 0x18C00, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x637FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8694, symBinAddr: 0x18C44, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x86D8, symBinAddr: 0x18C88, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63825, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x8780, symBinAddr: 0x18D30, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x63839, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x87C4, symBinAddr: 0x18D74, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x6384D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8854, symBinAddr: 0x18E04, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63861, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8910, symBinAddr: 0x18EC0, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63875, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8914, symBinAddr: 0x18EC4, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x63889, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8924, symBinAddr: 0x18ED4, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x6389D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x89B4, symBinAddr: 0x18F64, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x638B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A70, symBinAddr: 0x19020, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x638C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A74, symBinAddr: 0x19024, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x638D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8A84, symBinAddr: 0x19034, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x638ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8B14, symBinAddr: 0x190C4, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x8BD0, symBinAddr: 0x19180, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63915, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8BD8, symBinAddr: 0x19188, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x63929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x8BDC, symBinAddr: 0x1918C, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x6393D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8BE8, symBinAddr: 0x19198, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63951, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8BF8, symBinAddr: 0x191A8, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8C88, symBinAddr: 0x19238, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x63979, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8D44, symBinAddr: 0x192F4, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x6398D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8D48, symBinAddr: 0x192F8, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x639A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8D60, symBinAddr: 0x19310, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x639B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8D64, symBinAddr: 0x19314, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x639C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8D74, symBinAddr: 0x19324, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x639DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8DAC, symBinAddr: 0x1935C, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x639F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8E20, symBinAddr: 0x193D0, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63A05, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8EE4, symBinAddr: 0x19494, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x63A19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x8F08, symBinAddr: 0x194B8, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63A2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x8F7C, symBinAddr: 0x1952C, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63A41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x8FC4, symBinAddr: 0x19574, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63A55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x9018, symBinAddr: 0x195C8, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x63A69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x9028, symBinAddr: 0x195D8, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63A7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x9060, symBinAddr: 0x19610, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63A91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x90C4, symBinAddr: 0x19674, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x63AA5, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9170, symBinAddr: 0x19720, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x63AB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x9184, symBinAddr: 0x19734, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x63ACD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x91E8, symBinAddr: 0x19798, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x63AE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9230, symBinAddr: 0x197E0, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x63AF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x9280, symBinAddr: 0x19830, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x63B09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x9290, symBinAddr: 0x19840, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63B1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x92C8, symBinAddr: 0x19878, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63B31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9334, symBinAddr: 0x198E4, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63B45, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x93E8, symBinAddr: 0x19998, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x63B59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x940C, symBinAddr: 0x199BC, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63B6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9478, symBinAddr: 0x19A28, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63B81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x94C0, symBinAddr: 0x19A70, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63B95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9510, symBinAddr: 0x19AC0, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x63BA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9520, symBinAddr: 0x19AD0, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x63BBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9524, symBinAddr: 0x19AD4, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x63BD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9568, symBinAddr: 0x19B18, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x63BE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x956C, symBinAddr: 0x19B1C, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x63BF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x95B0, symBinAddr: 0x19B60, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63C0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x95B4, symBinAddr: 0x19B64, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63C21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x95F8, symBinAddr: 0x19BA8, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63C35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x95FC, symBinAddr: 0x19BAC, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x63C49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9640, symBinAddr: 0x19BF0, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63C5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9644, symBinAddr: 0x19BF4, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63C71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9688, symBinAddr: 0x19C38, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63C85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x968C, symBinAddr: 0x19C3C, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x63C99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96D0, symBinAddr: 0x19C80, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x63CAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96D4, symBinAddr: 0x19C84, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x63CC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9718, symBinAddr: 0x19CC8, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x63CD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x971C, symBinAddr: 0x19CCC, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x63CE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9760, symBinAddr: 0x19D10, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63CFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9764, symBinAddr: 0x19D14, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63D11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97A8, symBinAddr: 0x19D58, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63D25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97AC, symBinAddr: 0x19D5C, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x63D39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x97F0, symBinAddr: 0x19DA0, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63D4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x97F4, symBinAddr: 0x19DA4, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63D61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9838, symBinAddr: 0x19DE8, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63D75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x983C, symBinAddr: 0x19DEC, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x63D89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9880, symBinAddr: 0x19E30, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x63D9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9884, symBinAddr: 0x19E34, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x63DB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98C8, symBinAddr: 0x19E78, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x63DC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98CC, symBinAddr: 0x19E7C, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x63DD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9910, symBinAddr: 0x19EC0, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x63DED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9914, symBinAddr: 0x19EC4, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63E01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9958, symBinAddr: 0x19F08, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63E15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x999C, symBinAddr: 0x19F4C, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x63E29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x99E0, symBinAddr: 0x19F90, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63E3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9A24, symBinAddr: 0x19FD4, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63E51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9AB4, symBinAddr: 0x1A064, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63E65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9B70, symBinAddr: 0x1A120, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x63E79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9B74, symBinAddr: 0x1A124, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63E8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9CD8, symBinAddr: 0x1A288, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x63EA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9CDC, symBinAddr: 0x1A28C, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x63EB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9CEC, symBinAddr: 0x1A29C, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x63EC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9D7C, symBinAddr: 0x1A32C, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x63EDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9E38, symBinAddr: 0x1A3E8, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x63EF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9E3C, symBinAddr: 0x1A3EC, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63F05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9E4C, symBinAddr: 0x1A3FC, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63F19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9E50, symBinAddr: 0x1A400, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63F2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9E94, symBinAddr: 0x1A444, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9E98, symBinAddr: 0x1A448, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63F55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9EDC, symBinAddr: 0x1A48C, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63F69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9EE0, symBinAddr: 0x1A490, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63F7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9F24, symBinAddr: 0x1A4D4, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63F91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9F28, symBinAddr: 0x1A4D8, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63FA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9F6C, symBinAddr: 0x1A51C, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63FB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9F70, symBinAddr: 0x1A520, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63FCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9FB4, symBinAddr: 0x1A564, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63FE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9FB8, symBinAddr: 0x1A568, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63FF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9FFC, symBinAddr: 0x1A5AC, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x64009, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA000, symBinAddr: 0x1A5B0, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x6401D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA044, symBinAddr: 0x1A5F4, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x64031, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA048, symBinAddr: 0x1A5F8, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x64045, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA08C, symBinAddr: 0x1A63C, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x64059, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x1A640, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x640B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0x1077C, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x640CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0x107A4, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x6413A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1454, symBinAddr: 0x11A48, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x641FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1530, symBinAddr: 0x11B24, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x64216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1558, symBinAddr: 0x11B4C, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x64238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16C0, symBinAddr: 0x11CB4, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x64254, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0x11CDC, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x64276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1834, symBinAddr: 0x11E28, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x64292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0x11E50, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x642B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x11F80, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x642D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19B4, symBinAddr: 0x11FA8, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x642F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B70, symBinAddr: 0x12164, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x6430E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0x1218C, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x64361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1CF8, symBinAddr: 0x122EC, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x64403, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D90, symBinAddr: 0x12384, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x6441F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DB8, symBinAddr: 0x123AC, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x64441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EDC, symBinAddr: 0x124D0, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x6445D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1F04, symBinAddr: 0x124F8, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x6447F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x12668, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x6449B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x209C, symBinAddr: 0x12690, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x644BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x222C, symBinAddr: 0x12820, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x644D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2254, symBinAddr: 0x12848, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x645C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x10624, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x64643, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0x107CC, symSize: 0x40C } + - { offsetInCU: 0x31DB, offset: 0x64674, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5E4, symBinAddr: 0x10BD8, symSize: 0x100 } + - { offsetInCU: 0x320C, offset: 0x646A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6E4, symBinAddr: 0x10CD8, symSize: 0x17C } + - { offsetInCU: 0x323D, offset: 0x646D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x860, symBinAddr: 0x10E54, symSize: 0x154 } + - { offsetInCU: 0x326E, offset: 0x64707, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9B4, symBinAddr: 0x10FA8, symSize: 0x1A4 } + - { offsetInCU: 0x329F, offset: 0x64738, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB58, symBinAddr: 0x1114C, symSize: 0x1F4 } + - { offsetInCU: 0x32D0, offset: 0x64769, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD4C, symBinAddr: 0x11340, symSize: 0x118 } + - { offsetInCU: 0x3301, offset: 0x6479A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE64, symBinAddr: 0x11458, symSize: 0x1CC } + - { offsetInCU: 0x3332, offset: 0x647CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1030, symBinAddr: 0x11624, symSize: 0x1EC } + - { offsetInCU: 0x3363, offset: 0x647FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x121C, symBinAddr: 0x11810, symSize: 0x12C } + - { offsetInCU: 0x27, offset: 0x64A38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A718, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64DFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x1AA2C, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64E12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x1AA5C, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x64E26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x1AA9C, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x64E3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x1AB40, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64E4E, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1AC44, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x1AC70, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x64E76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x1AD0C, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x64E8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1AD54, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x64E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1ADB4, symSize: 0x10 } + - { offsetInCU: 0x60E, offset: 0x6501F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A718, symSize: 0x38 } + - { offsetInCU: 0x626, offset: 0x65037, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A718, symSize: 0x38 } + - { offsetInCU: 0x64D, offset: 0x6505E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x1A750, symSize: 0x3C } + - { offsetInCU: 0x667, offset: 0x65078, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x1A78C, symSize: 0x54 } + - { offsetInCU: 0x69C, offset: 0x650AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x1A7E0, symSize: 0x10 } + - { offsetInCU: 0x6B0, offset: 0x650C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x1A7F0, symSize: 0x4 } + - { offsetInCU: 0x6D1, offset: 0x650E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0xDC, symBinAddr: 0x1A7F4, symSize: 0x14 } + - { offsetInCU: 0x6E5, offset: 0x650F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0xF0, symBinAddr: 0x1A808, symSize: 0x14 } + - { offsetInCU: 0x715, offset: 0x65126, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x104, symBinAddr: 0x1A81C, symSize: 0x10 } + - { offsetInCU: 0x739, offset: 0x6514A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x1A82C, symSize: 0x4 } + - { offsetInCU: 0x75A, offset: 0x6516B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x1A830, symSize: 0x2C } + - { offsetInCU: 0x76E, offset: 0x6517F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x1A85C, symSize: 0x34 } + - { offsetInCU: 0x7A3, offset: 0x651B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1A890, symSize: 0x10 } + - { offsetInCU: 0x7C7, offset: 0x651D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1A8A0, symSize: 0x4 } + - { offsetInCU: 0x7E8, offset: 0x651F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1A8A4, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x6520D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x1A8AC, symSize: 0x8 } + - { offsetInCU: 0x82C, offset: 0x6523D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1A8B4, symSize: 0x10 } + - { offsetInCU: 0x850, offset: 0x65261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1A8C4, symSize: 0x4 } + - { offsetInCU: 0x871, offset: 0x65282, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x1A8C8, symSize: 0x8 } + - { offsetInCU: 0x885, offset: 0x65296, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1A8D0, symSize: 0x8 } + - { offsetInCU: 0x8B5, offset: 0x652C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x1A8D8, symSize: 0x10 } + - { offsetInCU: 0x8D9, offset: 0x652EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x1A8E8, symSize: 0x4 } + - { offsetInCU: 0x8FA, offset: 0x6530B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x1A8EC, symSize: 0x2C } + - { offsetInCU: 0x90E, offset: 0x6531F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x1A918, symSize: 0x34 } + - { offsetInCU: 0x943, offset: 0x65354, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x1A94C, symSize: 0x10 } + - { offsetInCU: 0x967, offset: 0x65378, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x1A95C, symSize: 0x4 } + - { offsetInCU: 0x988, offset: 0x65399, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x1A960, symSize: 0x2C } + - { offsetInCU: 0x99C, offset: 0x653AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x1A98C, symSize: 0x34 } + - { offsetInCU: 0x9D1, offset: 0x653E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1A9C0, symSize: 0x10 } + - { offsetInCU: 0x9F5, offset: 0x65406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1A9D0, symSize: 0x4 } + - { offsetInCU: 0xA16, offset: 0x65427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1A9D4, symSize: 0xC } + - { offsetInCU: 0xA2A, offset: 0x6543B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1A9E0, symSize: 0xC } + - { offsetInCU: 0xA5E, offset: 0x6546F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x1A9EC, symSize: 0x10 } + - { offsetInCU: 0xA82, offset: 0x65493, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x1A9FC, symSize: 0x4 } + - { offsetInCU: 0xAA3, offset: 0x654B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1AA00, symSize: 0xC } + - { offsetInCU: 0xAB7, offset: 0x654C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x1AA0C, symSize: 0xC } + - { offsetInCU: 0xAEB, offset: 0x654FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x1AA18, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x65520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x1AA28, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x655E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x598, symBinAddr: 0x1B35C, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x65614, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5C4, symBinAddr: 0x1B388, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x65630, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x1B5C4, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x656A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x7AC, symBinAddr: 0x1B570, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x656DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7D8, symBinAddr: 0x1B59C, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x656F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x864, symBinAddr: 0x1B628, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x65736, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C8, symBinAddr: 0x1B68C, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x65766, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9DC, symBinAddr: 0x1B790, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x6577A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA6C, symBinAddr: 0x1B820, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x6578E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB28, symBinAddr: 0x1B8DC, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x657A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB2C, symBinAddr: 0x1B8E0, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x657B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB3C, symBinAddr: 0x1B8F0, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x657CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBCC, symBinAddr: 0x1B980, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x657DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC88, symBinAddr: 0x1BA3C, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x657F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC90, symBinAddr: 0x1BA44, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x65806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC94, symBinAddr: 0x1BA48, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x6581A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC9C, symBinAddr: 0x1BA50, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x6582E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCAC, symBinAddr: 0x1BA60, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x65842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x1BA64, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x65856, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF4, symBinAddr: 0x1BAA8, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x6586A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF8, symBinAddr: 0x1BAAC, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x65974, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1ADC4, symSize: 0x2AC } + - { offsetInCU: 0x433, offset: 0x65997, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1B070, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x65AC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x1BC2C, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x65B05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x1BC4C, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x65B59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x1BCD8, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65B80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x1BCDC, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x65BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1BCE0, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x65BCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1BD54, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x65C0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x1BD58, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x1BDD8, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x65CCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x1BE3C, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65D1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x1BECC, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x65D7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x1BF4C, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x65DAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1BFB0, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x65DC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x1BFB4, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x65EB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1C708, symSize: 0x374 } + - { offsetInCU: 0x7D5, offset: 0x661C3, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1050, symBinAddr: 0x1CB48, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x661D7, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1060, symBinAddr: 0x1CB58, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x661EB, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10F4, symBinAddr: 0x1CB68, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x661FF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x113C, symBinAddr: 0x1CBB0, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x66213, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1150, symBinAddr: 0x1CBC4, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x66227, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1194, symBinAddr: 0x1CC08, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x6623B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11D4, symBinAddr: 0x1CC48, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x6624F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1398, symBinAddr: 0x1CE0C, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x66263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13C8, symBinAddr: 0x1CE3C, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x66277, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1584, symBinAddr: 0x1CFF8, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x66481, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1BAF8, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x664AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1BC0C, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x665DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x1BFB8, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x666B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1C694, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x6674A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF84, symBinAddr: 0x1CA7C, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x667BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFEC, symBinAddr: 0x1CAE4, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x6686A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2BF0, symBinAddr: 0x83C00, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x66884, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2BF8, symBinAddr: 0x83C08, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x66892, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1D038, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x668CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1D06C, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x66904, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1D0AC, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x66974, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1D18C, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x66994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1D18C, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x66A0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1D2F4, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x66A2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1D2F4, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x66A52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x1D350, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x66ACC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1D3BC, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x66AEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1D3BC, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x66E07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1D28, symBinAddr: 0x1ED50, symSize: 0x190 } + - { offsetInCU: 0x6B4, offset: 0x66ECF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x1D440, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66F05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x1D4C8, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x1D5C0, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x1D620, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x1D670, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66FA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x1D6F8, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66FE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x1D92C, symSize: 0x5C } + - { offsetInCU: 0x98E, offset: 0x671A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x17CC, symBinAddr: 0x1E7F4, symSize: 0x140 } + - { offsetInCU: 0xA8A, offset: 0x672A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x190C, symBinAddr: 0x1E934, symSize: 0x18 } + - { offsetInCU: 0xA9E, offset: 0x672B9, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A60, symBinAddr: 0x1EA88, symSize: 0x2C } + - { offsetInCU: 0xAB6, offset: 0x672D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1CC4, symBinAddr: 0x1ECEC, symSize: 0x44 } + - { offsetInCU: 0xACA, offset: 0x672E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1D08, symBinAddr: 0x1ED30, symSize: 0x20 } + - { offsetInCU: 0xADE, offset: 0x672F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1EB8, symBinAddr: 0x1EEE0, symSize: 0x20 } + - { offsetInCU: 0xAF2, offset: 0x6730D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1ED8, symBinAddr: 0x1EF00, symSize: 0x4 } + - { offsetInCU: 0xB06, offset: 0x67321, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1EDC, symBinAddr: 0x1EF04, symSize: 0x44 } + - { offsetInCU: 0xB1A, offset: 0x67335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1F20, symBinAddr: 0x1EF48, symSize: 0x4 } + - { offsetInCU: 0xB2E, offset: 0x67349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1F24, symBinAddr: 0x1EF4C, symSize: 0x44 } + - { offsetInCU: 0xB42, offset: 0x6735D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x2048, symBinAddr: 0x1F070, symSize: 0x18 } + - { offsetInCU: 0xB56, offset: 0x67371, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x2060, symBinAddr: 0x1F088, symSize: 0x14 } + - { offsetInCU: 0xB6A, offset: 0x67385, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x2074, symBinAddr: 0x1F09C, symSize: 0x18 } + - { offsetInCU: 0xB7E, offset: 0x67399, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x20EC, symBinAddr: 0x1F114, symSize: 0x6C } + - { offsetInCU: 0xB92, offset: 0x673AD, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2158, symBinAddr: 0x1F180, symSize: 0x14 } + - { offsetInCU: 0xBA6, offset: 0x673C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x216C, symBinAddr: 0x1F194, symSize: 0x50 } + - { offsetInCU: 0xBBA, offset: 0x673D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x21BC, symBinAddr: 0x1F1E4, symSize: 0x48 } + - { offsetInCU: 0xBCE, offset: 0x673E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x2204, symBinAddr: 0x1F22C, symSize: 0x48 } + - { offsetInCU: 0xBE2, offset: 0x673FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x224C, symBinAddr: 0x1F274, symSize: 0x8 } + - { offsetInCU: 0xBF6, offset: 0x67411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2254, symBinAddr: 0x1F27C, symSize: 0x4 } + - { offsetInCU: 0xC0A, offset: 0x67425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2258, symBinAddr: 0x1F280, symSize: 0x8 } + - { offsetInCU: 0xC1E, offset: 0x67439, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x1F288, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x6744D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2348, symBinAddr: 0x1F360, symSize: 0x90 } + - { offsetInCU: 0xC46, offset: 0x67461, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23D8, symBinAddr: 0x1F3F0, symSize: 0xBC } + - { offsetInCU: 0xC5A, offset: 0x67475, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2494, symBinAddr: 0x1F4AC, symSize: 0x4 } + - { offsetInCU: 0xC6E, offset: 0x67489, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2498, symBinAddr: 0x1F4B0, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x6749D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x24A8, symBinAddr: 0x1F4C0, symSize: 0x90 } + - { offsetInCU: 0xC96, offset: 0x674B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2538, symBinAddr: 0x1F550, symSize: 0xBC } + - { offsetInCU: 0xCAA, offset: 0x674C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x25F4, symBinAddr: 0x1F60C, symSize: 0x8 } + - { offsetInCU: 0xCBE, offset: 0x674D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x25FC, symBinAddr: 0x1F614, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x674ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2600, symBinAddr: 0x1F618, symSize: 0x8 } + - { offsetInCU: 0xCE6, offset: 0x67501, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2608, symBinAddr: 0x1F620, symSize: 0x10 } + - { offsetInCU: 0xD05, offset: 0x67520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2640, symBinAddr: 0x1F658, symSize: 0x24 } + - { offsetInCU: 0xD2E, offset: 0x67549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x274C, symBinAddr: 0x1F764, symSize: 0x8 } + - { offsetInCU: 0xD42, offset: 0x6755D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2754, symBinAddr: 0x1F76C, symSize: 0x10 } + - { offsetInCU: 0xD56, offset: 0x67571, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2764, symBinAddr: 0x1F77C, symSize: 0x8 } + - { offsetInCU: 0xD6A, offset: 0x67585, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x27F0, symBinAddr: 0x1F784, symSize: 0x3C } + - { offsetInCU: 0xDEC, offset: 0x67607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1D028, symSize: 0x4 } + - { offsetInCU: 0xE08, offset: 0x67623, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1D02C, symSize: 0x4 } + - { offsetInCU: 0xE24, offset: 0x6763F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1D030, symSize: 0x4 } + - { offsetInCU: 0xE40, offset: 0x6765B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1D034, symSize: 0x4 } + - { offsetInCU: 0x10B2, offset: 0x678CD, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1D0E0, symSize: 0x40 } + - { offsetInCU: 0x10E0, offset: 0x678FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1D120, symSize: 0x60 } + - { offsetInCU: 0x1118, offset: 0x67933, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x1D1EC, symSize: 0x84 } + - { offsetInCU: 0x113F, offset: 0x6795A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x1D270, symSize: 0x14 } + - { offsetInCU: 0x1186, offset: 0x679A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x1D284, symSize: 0x28 } + - { offsetInCU: 0x128D, offset: 0x67AA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x1D574, symSize: 0x4C } + - { offsetInCU: 0x12AC, offset: 0x67AC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x1D5D0, symSize: 0x50 } + - { offsetInCU: 0x12D5, offset: 0x67AF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x1D630, symSize: 0x3C } + - { offsetInCU: 0x12FA, offset: 0x67B15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x1D66C, symSize: 0x4 } + - { offsetInCU: 0x134F, offset: 0x67B6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x1D7A4, symSize: 0x4C } + - { offsetInCU: 0x136E, offset: 0x67B89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x1D7F0, symSize: 0x50 } + - { offsetInCU: 0x1397, offset: 0x67BB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x1D840, symSize: 0x3C } + - { offsetInCU: 0x13BC, offset: 0x67BD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x1D87C, symSize: 0x8 } + - { offsetInCU: 0x13DD, offset: 0x67BF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x1D884, symSize: 0x30 } + - { offsetInCU: 0x13FA, offset: 0x67C15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x1D8B4, symSize: 0x3C } + - { offsetInCU: 0x141F, offset: 0x67C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x1D8F0, symSize: 0x3C } + - { offsetInCU: 0x1469, offset: 0x67C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x960, symBinAddr: 0x1D988, symSize: 0x30 } + - { offsetInCU: 0x1486, offset: 0x67CA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x990, symBinAddr: 0x1D9B8, symSize: 0x44 } + - { offsetInCU: 0x14AF, offset: 0x67CCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x9D4, symBinAddr: 0x1D9FC, symSize: 0x3C } + - { offsetInCU: 0x14DB, offset: 0x67CF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x1DA38, symSize: 0xC8 } + - { offsetInCU: 0x1552, offset: 0x67D6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x1DB00, symSize: 0xC0 } + - { offsetInCU: 0x15E1, offset: 0x67DFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB98, symBinAddr: 0x1DBC0, symSize: 0xC0 } + - { offsetInCU: 0x16BA, offset: 0x67ED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xC58, symBinAddr: 0x1DC80, symSize: 0x204 } + - { offsetInCU: 0x1723, offset: 0x67F3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1924, symBinAddr: 0x1E94C, symSize: 0x13C } + - { offsetInCU: 0x17D1, offset: 0x67FEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xE5C, symBinAddr: 0x1DE84, symSize: 0x70 } + - { offsetInCU: 0x17FB, offset: 0x68016, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xECC, symBinAddr: 0x1DEF4, symSize: 0x30 } + - { offsetInCU: 0x181D, offset: 0x68038, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xEFC, symBinAddr: 0x1DF24, symSize: 0x178 } + - { offsetInCU: 0x18C2, offset: 0x680DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0x1074, symBinAddr: 0x1E09C, symSize: 0x14 } + - { offsetInCU: 0x190F, offset: 0x6812A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0x10F8, symBinAddr: 0x1E120, symSize: 0x3C } + - { offsetInCU: 0x1995, offset: 0x681B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0x1088, symBinAddr: 0x1E0B0, symSize: 0x70 } + - { offsetInCU: 0x1A29, offset: 0x68244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0x1134, symBinAddr: 0x1E15C, symSize: 0x78 } + - { offsetInCU: 0x1B0D, offset: 0x68328, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0x11AC, symBinAddr: 0x1E1D4, symSize: 0x224 } + - { offsetInCU: 0x1CF9, offset: 0x68514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x13D0, symBinAddr: 0x1E3F8, symSize: 0xC } + - { offsetInCU: 0x1D50, offset: 0x6856B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1E404, symSize: 0x4 } + - { offsetInCU: 0x1D6C, offset: 0x68587, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1E404, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x685A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1E404, symSize: 0x4 } + - { offsetInCU: 0x1D9E, offset: 0x685B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13E0, symBinAddr: 0x1E408, symSize: 0x4 } + - { offsetInCU: 0x1DB6, offset: 0x685D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13E4, symBinAddr: 0x1E40C, symSize: 0xB8 } + - { offsetInCU: 0x1E56, offset: 0x68671, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14DC, symBinAddr: 0x1E504, symSize: 0x4 } + - { offsetInCU: 0x1E6E, offset: 0x68689, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26AC, symBinAddr: 0x1F6C4, symSize: 0x7C } + - { offsetInCU: 0x1F45, offset: 0x68760, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x149C, symBinAddr: 0x1E4C4, symSize: 0x40 } + - { offsetInCU: 0x1F7A, offset: 0x68795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14EC, symBinAddr: 0x1E514, symSize: 0x98 } + - { offsetInCU: 0x2021, offset: 0x6883C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x1634, symBinAddr: 0x1E65C, symSize: 0x198 } + - { offsetInCU: 0x251E, offset: 0x68D39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x1A8C, symBinAddr: 0x1EAB4, symSize: 0x24 } + - { offsetInCU: 0x2561, offset: 0x68D7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1AB0, symBinAddr: 0x1EAD8, symSize: 0x214 } + - { offsetInCU: 0x43, offset: 0x68F34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1F8D8, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68F48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F914, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68F5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F998, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68F77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1FAC0, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68FA0, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1FAF0, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68FB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1FB0C, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68FC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1FBA8, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68FDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1FC0C, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68FF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1FC68, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x69004, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1FC78, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x69018, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1FCA8, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x6902C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1FCD0, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x69040, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1FD2C, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x69054, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1FDB0, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x69068, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1FE14, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x6907C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1FE70, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x69090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1FED0, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x690DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x202F8, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x69134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA28, symBinAddr: 0x20300, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x69217, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA68, symBinAddr: 0x20340, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x69288, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAC8, symBinAddr: 0x203A0, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x692D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD4, symBinAddr: 0x203AC, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x69331, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB50, symBinAddr: 0x20428, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x6934D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB5C, symBinAddr: 0x20434, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x6938A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBB8, symBinAddr: 0x20490, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x693C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC04, symBinAddr: 0x204DC, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x693E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC8, symBinAddr: 0x208A0, symSize: 0x144 } + - { offsetInCU: 0x580, offset: 0x69471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC44, symBinAddr: 0x2051C, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x694CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC5C, symBinAddr: 0x20534, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x69546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC88, symBinAddr: 0x20560, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x6957B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x205A8, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x695AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF4, symBinAddr: 0x205CC, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x695C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x205D8, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x695E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x125C, symBinAddr: 0x20AB0, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x696A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD5C, symBinAddr: 0x20634, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x696DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDA8, symBinAddr: 0x20680, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x696FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13B0, symBinAddr: 0x20C04, symSize: 0x254 } + - { offsetInCU: 0x87C, offset: 0x6976D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE74, symBinAddr: 0x2074C, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x697A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEC4, symBinAddr: 0x2079C, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x697D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xEE8, symBinAddr: 0x207C0, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x697EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x207CC, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x6980B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x21524, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x698BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF50, symBinAddr: 0x20828, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x698F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF90, symBinAddr: 0x20868, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x69915, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EA4, symBinAddr: 0x2168C, symSize: 0x2A8 } + - { offsetInCU: 0xA81, offset: 0x69972, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1170, symBinAddr: 0x209E4, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x69986, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x11D4, symBinAddr: 0x20A28, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x6999A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1218, symBinAddr: 0x20A6C, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x699AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x20E58, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x699C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x20E9C, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x699D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x20F8C, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x699EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x20FD8, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x699FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x20FE0, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x69A12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x20FE4, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x69A26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x20FEC, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x69A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x20FFC, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x69A4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x2104C, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69A62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x210D8, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x69A76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x210E0, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69A8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x210E4, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x69A9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x210E8, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69AB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x210F8, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x69AC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x21130, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69ADA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x21194, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x69AEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x21240, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x69B02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x212A4, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x69B16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x21300, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x69B2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x21364, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x69B3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x21374, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69B52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x21378, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x69B66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x213BC, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69B7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x213C0, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x69B8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x21404, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69BA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x21408, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x69BB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x2144C, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69BCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x21450, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69BDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x21494, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x69BF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x21498, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x69C06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x214DC, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x69C1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x214E0, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x69C2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x21934, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x69C42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x21ACC, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69C56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x21AD0, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69C6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x21AE0, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69C7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x21AE4, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69C92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x21B28, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69CA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x21B2C, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69CBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x21B70, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69CCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x21B74, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x69D2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA8C, symBinAddr: 0x20364, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x69DED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB68, symBinAddr: 0x20440, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x69E09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB90, symBinAddr: 0x20468, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x69E2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD0C, symBinAddr: 0x205E4, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x69E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD34, symBinAddr: 0x2060C, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69E69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF00, symBinAddr: 0x207D8, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69E85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF28, symBinAddr: 0x20800, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1FEE0, symSize: 0x10C } + - { offsetInCU: 0x10B4, offset: 0x69FA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x714, symBinAddr: 0x1FFEC, symSize: 0x1B8 } + - { offsetInCU: 0x10E5, offset: 0x69FD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8CC, symBinAddr: 0x201A4, symSize: 0x154 } + - { offsetInCU: 0xA6, offset: 0x6A191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x21E5C, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x6A1B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x21E5C, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x6A1D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x2D4, symBinAddr: 0x21E74, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x6A2BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x318, symBinAddr: 0x21EB8, symSize: 0x28 } + - { offsetInCU: 0x4BB, offset: 0x6A5A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x380, symBinAddr: 0x21F20, symSize: 0x4 } + - { offsetInCU: 0x4CF, offset: 0x6A5BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x384, symBinAddr: 0x21F24, symSize: 0x44 } + - { offsetInCU: 0x4E3, offset: 0x6A5CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x3C8, symBinAddr: 0x21F68, symSize: 0x30 } + - { offsetInCU: 0x4F7, offset: 0x6A5E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x3F8, symBinAddr: 0x21F98, symSize: 0x7C } + - { offsetInCU: 0x50B, offset: 0x6A5F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x474, symBinAddr: 0x22014, symSize: 0x184 } + - { offsetInCU: 0x51F, offset: 0x6A60A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0x5F8, symBinAddr: 0x22198, symSize: 0x394 } + - { offsetInCU: 0x53A, offset: 0x6A625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0x98C, symBinAddr: 0x2252C, symSize: 0x30 } + - { offsetInCU: 0x563, offset: 0x6A64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0x9BC, symBinAddr: 0x2255C, symSize: 0x2C } + - { offsetInCU: 0x577, offset: 0x6A662, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0x9E8, symBinAddr: 0x22588, symSize: 0x34 } + - { offsetInCU: 0x58B, offset: 0x6A676, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xA1C, symBinAddr: 0x225BC, symSize: 0x44 } + - { offsetInCU: 0x59F, offset: 0x6A68A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xA60, symBinAddr: 0x22600, symSize: 0x1B4 } + - { offsetInCU: 0x5B3, offset: 0x6A69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0xC14, symBinAddr: 0x227B4, symSize: 0x48 } + - { offsetInCU: 0x5C7, offset: 0x6A6B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0xC5C, symBinAddr: 0x227FC, symSize: 0x78 } + - { offsetInCU: 0x5DB, offset: 0x6A6C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0xCD4, symBinAddr: 0x22874, symSize: 0x10 } + - { offsetInCU: 0x5EF, offset: 0x6A6DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0xCE8, symBinAddr: 0x22888, symSize: 0x8 } + - { offsetInCU: 0x603, offset: 0x6A6EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0xD28, symBinAddr: 0x228C8, symSize: 0x54 } + - { offsetInCU: 0x617, offset: 0x6A702, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xD7C, symBinAddr: 0x2291C, symSize: 0x14 } + - { offsetInCU: 0x62B, offset: 0x6A716, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0xD90, symBinAddr: 0x22930, symSize: 0x3C } + - { offsetInCU: 0x63F, offset: 0x6A72A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0xDCC, symBinAddr: 0x2296C, symSize: 0x48 } + - { offsetInCU: 0x653, offset: 0x6A73E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0xE14, symBinAddr: 0x229B4, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x6A752, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0xE54, symBinAddr: 0x229F4, symSize: 0x10 } + - { offsetInCU: 0x67B, offset: 0x6A766, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0xE64, symBinAddr: 0x22A04, symSize: 0x38 } + - { offsetInCU: 0x68F, offset: 0x6A77A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0xE9C, symBinAddr: 0x22A3C, symSize: 0x6C } + - { offsetInCU: 0x6A3, offset: 0x6A78E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x22AA8, symSize: 0xDC } + - { offsetInCU: 0x6B7, offset: 0x6A7A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0xFE4, symBinAddr: 0x22B84, symSize: 0x1C } + - { offsetInCU: 0x6CB, offset: 0x6A7B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1000, symBinAddr: 0x22BA0, symSize: 0x74 } + - { offsetInCU: 0x6DF, offset: 0x6A7CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1074, symBinAddr: 0x22C14, symSize: 0x5C } + - { offsetInCU: 0x6F3, offset: 0x6A7DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x10D0, symBinAddr: 0x22C70, symSize: 0x64 } + - { offsetInCU: 0x707, offset: 0x6A7F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1134, symBinAddr: 0x22CD4, symSize: 0x10 } + - { offsetInCU: 0x71B, offset: 0x6A806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1144, symBinAddr: 0x22CE4, symSize: 0x28 } + - { offsetInCU: 0x72F, offset: 0x6A81A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x116C, symBinAddr: 0x22D0C, symSize: 0x3C } + - { offsetInCU: 0x743, offset: 0x6A82E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x11A8, symBinAddr: 0x22D48, symSize: 0x6C } + - { offsetInCU: 0x757, offset: 0x6A842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1220, symBinAddr: 0x22DB4, symSize: 0x44 } + - { offsetInCU: 0x76B, offset: 0x6A856, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1264, symBinAddr: 0x22DF8, symSize: 0x48 } + - { offsetInCU: 0x77F, offset: 0x6A86A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x12AC, symBinAddr: 0x22E40, symSize: 0x40 } + - { offsetInCU: 0x793, offset: 0x6A87E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x12EC, symBinAddr: 0x22E80, symSize: 0x10 } + - { offsetInCU: 0x7A7, offset: 0x6A892, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1300, symBinAddr: 0x22E90, symSize: 0x54 } + - { offsetInCU: 0x7BB, offset: 0x6A8A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1354, symBinAddr: 0x22EE4, symSize: 0x44 } + - { offsetInCU: 0x7CF, offset: 0x6A8BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1398, symBinAddr: 0x22F28, symSize: 0x10 } + - { offsetInCU: 0x7E3, offset: 0x6A8CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x13B4, symBinAddr: 0x22F38, symSize: 0x90 } + - { offsetInCU: 0x7F7, offset: 0x6A8E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1444, symBinAddr: 0x22FC8, symSize: 0xBC } + - { offsetInCU: 0x80B, offset: 0x6A8F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1500, symBinAddr: 0x23084, symSize: 0x8 } + - { offsetInCU: 0x81F, offset: 0x6A90A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1508, symBinAddr: 0x2308C, symSize: 0x4 } + - { offsetInCU: 0x833, offset: 0x6A91E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x150C, symBinAddr: 0x23090, symSize: 0xC } + - { offsetInCU: 0x847, offset: 0x6A932, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1518, symBinAddr: 0x2309C, symSize: 0x10 } + - { offsetInCU: 0x8BE, offset: 0x6A9A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x340, symBinAddr: 0x21EE0, symSize: 0x40 } + - { offsetInCU: 0xA61, offset: 0x6AB4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x21BD0, symSize: 0x18 } + - { offsetInCU: 0xA9A, offset: 0x6AB85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x21BE8, symSize: 0x94 } + - { offsetInCU: 0xAFB, offset: 0x6ABE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xAC, symBinAddr: 0x21C7C, symSize: 0x2C } + - { offsetInCU: 0xB15, offset: 0x6AC00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0xD8, symBinAddr: 0x21CA8, symSize: 0x34 } + - { offsetInCU: 0xB4A, offset: 0x6AC35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x10C, symBinAddr: 0x21CDC, symSize: 0x10 } + - { offsetInCU: 0xB5E, offset: 0x6AC49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x11C, symBinAddr: 0x21CEC, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x6AC6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x120, symBinAddr: 0x21CF0, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x6AC7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x128, symBinAddr: 0x21CF8, symSize: 0x8 } + - { offsetInCU: 0xBC3, offset: 0x6ACAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x130, symBinAddr: 0x21D00, symSize: 0x10 } + - { offsetInCU: 0xBE7, offset: 0x6ACD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x21D10, symSize: 0x4 } + - { offsetInCU: 0xC08, offset: 0x6ACF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x144, symBinAddr: 0x21D14, symSize: 0x14 } + - { offsetInCU: 0xC1C, offset: 0x6AD07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x188, symBinAddr: 0x21D28, symSize: 0x14 } + - { offsetInCU: 0xC30, offset: 0x6AD1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x19C, symBinAddr: 0x21D3C, symSize: 0x2C } + - { offsetInCU: 0xC44, offset: 0x6AD2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x1C8, symBinAddr: 0x21D68, symSize: 0x2C } + - { offsetInCU: 0xC58, offset: 0x6AD43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x1F4, symBinAddr: 0x21D94, symSize: 0x8 } + - { offsetInCU: 0xC6C, offset: 0x6AD57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x1FC, symBinAddr: 0x21D9C, symSize: 0x8 } + - { offsetInCU: 0xC9E, offset: 0x6AD89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x204, symBinAddr: 0x21DA4, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x6AD9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x214, symBinAddr: 0x21DB4, symSize: 0x4 } + - { offsetInCU: 0xCD3, offset: 0x6ADBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x218, symBinAddr: 0x21DB8, symSize: 0x8 } + - { offsetInCU: 0xCE7, offset: 0x6ADD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x220, symBinAddr: 0x21DC0, symSize: 0x8 } + - { offsetInCU: 0xD19, offset: 0x6AE04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x228, symBinAddr: 0x21DC8, symSize: 0x10 } + - { offsetInCU: 0xD3D, offset: 0x6AE28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x238, symBinAddr: 0x21DD8, symSize: 0x4 } + - { offsetInCU: 0xD5E, offset: 0x6AE49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x23C, symBinAddr: 0x21DDC, symSize: 0x10 } + - { offsetInCU: 0xD82, offset: 0x6AE6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x24C, symBinAddr: 0x21DEC, symSize: 0x4 } + - { offsetInCU: 0xDB1, offset: 0x6AE9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x250, symBinAddr: 0x21DF0, symSize: 0x28 } + - { offsetInCU: 0xE3C, offset: 0x6AF27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x278, symBinAddr: 0x21E18, symSize: 0x44 } + - { offsetInCU: 0x943, offset: 0x6B991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x7234, symBinAddr: 0x2A2F0, symSize: 0x28 } + - { offsetInCU: 0x18F2, offset: 0x6C940, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14448, symBinAddr: 0x37504, symSize: 0x90 } + - { offsetInCU: 0x198A, offset: 0x6C9D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x153AC, symBinAddr: 0x38468, symSize: 0x44 } + - { offsetInCU: 0x19A6, offset: 0x6C9F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x153F0, symBinAddr: 0x384AC, symSize: 0x150 } + - { offsetInCU: 0x1ABF, offset: 0x6CB0D, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x15540, symBinAddr: 0x385FC, symSize: 0x54 } + - { offsetInCU: 0x1B3D, offset: 0x6CB8B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x155E8, symBinAddr: 0x38650, symSize: 0x4C } + - { offsetInCU: 0x1BCB, offset: 0x6CC19, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x15634, symBinAddr: 0x3869C, symSize: 0x50 } + - { offsetInCU: 0x1C39, offset: 0x6CC87, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x15684, symBinAddr: 0x386EC, symSize: 0x64 } + - { offsetInCU: 0x22CF, offset: 0x6D31D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x164FC, symBinAddr: 0x39564, symSize: 0x84 } + - { offsetInCU: 0x2333, offset: 0x6D381, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x16580, symBinAddr: 0x395E8, symSize: 0x80 } + - { offsetInCU: 0x2400, offset: 0x6D44E, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1671C, symBinAddr: 0x39784, symSize: 0x40 } + - { offsetInCU: 0x25AE, offset: 0x6D5FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1718C, symBinAddr: 0x3A178, symSize: 0x1A0 } + - { offsetInCU: 0x2703, offset: 0x6D751, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1732C, symBinAddr: 0x3A318, symSize: 0x360 } + - { offsetInCU: 0x2E25, offset: 0x6DE73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x184BC, symBinAddr: 0x3B4A8, symSize: 0xBB8 } + - { offsetInCU: 0x3E91, offset: 0x6EEDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19074, symBinAddr: 0x3C060, symSize: 0x1C0 } + - { offsetInCU: 0x4012, offset: 0x6F060, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19234, symBinAddr: 0x3C220, symSize: 0x1A0 } + - { offsetInCU: 0x441A, offset: 0x6F468, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x19E30, symBinAddr: 0x3CE1C, symSize: 0x8 } + - { offsetInCU: 0x442E, offset: 0x6F47C, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x19F00, symBinAddr: 0x3CEEC, symSize: 0x10 } + - { offsetInCU: 0x4442, offset: 0x6F490, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x19F10, symBinAddr: 0x3CEFC, symSize: 0x14 } + - { offsetInCU: 0x4456, offset: 0x6F4A4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x19F24, symBinAddr: 0x3CF10, symSize: 0x44 } + - { offsetInCU: 0x446A, offset: 0x6F4B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x19F78, symBinAddr: 0x3CF54, symSize: 0x44 } + - { offsetInCU: 0x447E, offset: 0x6F4CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x19FBC, symBinAddr: 0x3CF98, symSize: 0x30C } + - { offsetInCU: 0x4492, offset: 0x6F4E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1A2C8, symBinAddr: 0x3D2A4, symSize: 0x240 } + - { offsetInCU: 0x44A6, offset: 0x6F4F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1A508, symBinAddr: 0x3D4E4, symSize: 0x70 } + - { offsetInCU: 0x44BA, offset: 0x6F508, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1A578, symBinAddr: 0x3D554, symSize: 0x34 } + - { offsetInCU: 0x44CE, offset: 0x6F51C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1A5AC, symBinAddr: 0x3D588, symSize: 0x174 } + - { offsetInCU: 0x44E2, offset: 0x6F530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1A720, symBinAddr: 0x3D6FC, symSize: 0xB4 } + - { offsetInCU: 0x4535, offset: 0x6F583, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1AFEC, symBinAddr: 0x3D7B0, symSize: 0xC4 } + - { offsetInCU: 0x45AB, offset: 0x6F5F9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B0B0, symBinAddr: 0x3D874, symSize: 0x78 } + - { offsetInCU: 0x45D8, offset: 0x6F626, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B128, symBinAddr: 0x3D8EC, symSize: 0x80 } + - { offsetInCU: 0x466C, offset: 0x6F6BA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B1A8, symBinAddr: 0x3D96C, symSize: 0x68 } + - { offsetInCU: 0x47D3, offset: 0x6F821, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B210, symBinAddr: 0x3D9D4, symSize: 0x640 } + - { offsetInCU: 0x4C97, offset: 0x6FCE5, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1B860, symBinAddr: 0x3E024, symSize: 0x4C } + - { offsetInCU: 0x4CAB, offset: 0x6FCF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1B954, symBinAddr: 0x3E090, symSize: 0x8 } + - { offsetInCU: 0x4CBF, offset: 0x6FD0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1B95C, symBinAddr: 0x3E098, symSize: 0x44 } + - { offsetInCU: 0x4CD3, offset: 0x6FD21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1B9A0, symBinAddr: 0x3E0DC, symSize: 0x44 } + - { offsetInCU: 0x4CE7, offset: 0x6FD35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BA4C, symBinAddr: 0x3E144, symSize: 0x8 } + - { offsetInCU: 0x4CFB, offset: 0x6FD49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1BADC, symBinAddr: 0x3E1CC, symSize: 0x44 } + - { offsetInCU: 0x4D30, offset: 0x6FD7E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BBE4, symBinAddr: 0x3E2D4, symSize: 0x48 } + - { offsetInCU: 0x4D44, offset: 0x6FD92, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BC50, symBinAddr: 0x3E340, symSize: 0x3C } + - { offsetInCU: 0x4D58, offset: 0x6FDA6, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BC8C, symBinAddr: 0x3E37C, symSize: 0x34 } + - { offsetInCU: 0x4D6C, offset: 0x6FDBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1BCE4, symBinAddr: 0x3E3D4, symSize: 0x40 } + - { offsetInCU: 0x4D80, offset: 0x6FDCE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1BD24, symBinAddr: 0x3E414, symSize: 0x48 } + - { offsetInCU: 0x4D94, offset: 0x6FDE2, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1BE30, symBinAddr: 0x3E520, symSize: 0x18 } + - { offsetInCU: 0x4DA8, offset: 0x6FDF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1BE48, symBinAddr: 0x3E538, symSize: 0x10 } + - { offsetInCU: 0x4DBC, offset: 0x6FE0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1BE58, symBinAddr: 0x3E548, symSize: 0x34 } + - { offsetInCU: 0x4DD0, offset: 0x6FE1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1BEC8, symBinAddr: 0x3E5B8, symSize: 0x30 } + - { offsetInCU: 0x5441, offset: 0x7048F, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9A68, symBinAddr: 0x2CB24, symSize: 0x400 } + - { offsetInCU: 0x55A4, offset: 0x705F2, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xACE4, symBinAddr: 0x2DDA0, symSize: 0x390 } + - { offsetInCU: 0x5868, offset: 0x708B6, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xB074, symBinAddr: 0x2E130, symSize: 0x3B8 } + - { offsetInCU: 0x5CC6, offset: 0x70D14, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF464, symBinAddr: 0x32520, symSize: 0x18C } + - { offsetInCU: 0x609C, offset: 0x710EA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x16BAC, symBinAddr: 0x39C14, symSize: 0x110 } + - { offsetInCU: 0x61F8, offset: 0x71246, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x16CFC, symBinAddr: 0x39D24, symSize: 0xFC } + - { offsetInCU: 0x6315, offset: 0x71363, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x16FE4, symBinAddr: 0x39FD0, symSize: 0x1A8 } + - { offsetInCU: 0x6425, offset: 0x71473, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1768C, symBinAddr: 0x3A678, symSize: 0x188 } + - { offsetInCU: 0x6772, offset: 0x717C0, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1959C, symBinAddr: 0x3C588, symSize: 0x1C8 } + - { offsetInCU: 0x68A1, offset: 0x718EF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x19764, symBinAddr: 0x3C750, symSize: 0x11C } + - { offsetInCU: 0x6A03, offset: 0x71A51, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x19880, symBinAddr: 0x3C86C, symSize: 0xFC } + - { offsetInCU: 0x6B65, offset: 0x71BB3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x1997C, symBinAddr: 0x3C968, symSize: 0xE4 } + - { offsetInCU: 0x6CBB, offset: 0x71D09, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19A60, symBinAddr: 0x3CA4C, symSize: 0x114 } + - { offsetInCU: 0x6E11, offset: 0x71E5F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19B74, symBinAddr: 0x3CB60, symSize: 0xF0 } + - { offsetInCU: 0x6F73, offset: 0x71FC1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x19D4C, symBinAddr: 0x3CD38, symSize: 0xE4 } + - { offsetInCU: 0x70EA, offset: 0x72138, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BB20, symBinAddr: 0x3E210, symSize: 0xC4 } + - { offsetInCU: 0x7651, offset: 0x7269F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x230BC, symSize: 0x190 } + - { offsetInCU: 0x7794, offset: 0x727E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x190, symBinAddr: 0x2324C, symSize: 0x5D8 } + - { offsetInCU: 0x7AA9, offset: 0x72AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x27D4, symBinAddr: 0x25890, symSize: 0x6C0 } + - { offsetInCU: 0x7D74, offset: 0x72DC2, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x768, symBinAddr: 0x23824, symSize: 0x88 } + - { offsetInCU: 0x7ECC, offset: 0x72F1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x7F0, symBinAddr: 0x238AC, symSize: 0x1D04 } + - { offsetInCU: 0x9069, offset: 0x740B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB42C, symBinAddr: 0x2E4E8, symSize: 0x37E0 } + - { offsetInCU: 0xA390, offset: 0x753DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xEC0C, symBinAddr: 0x31CC8, symSize: 0x578 } + - { offsetInCU: 0xA7E2, offset: 0x75830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10730, symBinAddr: 0x337EC, symSize: 0x2568 } + - { offsetInCU: 0xBE70, offset: 0x76EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13BE0, symBinAddr: 0x36C9C, symSize: 0x3DC } + - { offsetInCU: 0xC00B, offset: 0x77059, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x24F4, symBinAddr: 0x255B0, symSize: 0x2E0 } + - { offsetInCU: 0xC447, offset: 0x77495, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x2E94, symBinAddr: 0x25F50, symSize: 0x3B8 } + - { offsetInCU: 0xC6D3, offset: 0x77721, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x324C, symBinAddr: 0x26308, symSize: 0x3914 } + - { offsetInCU: 0xE279, offset: 0x792C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6B60, symBinAddr: 0x29C1C, symSize: 0x278 } + - { offsetInCU: 0xE385, offset: 0x793D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x725C, symBinAddr: 0x2A318, symSize: 0x1848 } + - { offsetInCU: 0xEE0C, offset: 0x79E5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x6DD8, symBinAddr: 0x29E94, symSize: 0x118 } + - { offsetInCU: 0xEE85, offset: 0x79ED3, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6EF0, symBinAddr: 0x29FAC, symSize: 0x15C } + - { offsetInCU: 0xEEA0, offset: 0x79EEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x704C, symBinAddr: 0x2A108, symSize: 0x1E8 } + - { offsetInCU: 0xF17F, offset: 0x7A1CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x8AF8, symBinAddr: 0x2BBB4, symSize: 0x3F8 } + - { offsetInCU: 0xF3A0, offset: 0x7A3EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9E68, symBinAddr: 0x2CF24, symSize: 0xE7C } + - { offsetInCU: 0xFCA5, offset: 0x7ACF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8EF0, symBinAddr: 0x2BFAC, symSize: 0xB78 } + - { offsetInCU: 0x10675, offset: 0x7B6C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF5F0, symBinAddr: 0x326AC, symSize: 0x1140 } + - { offsetInCU: 0x1182A, offset: 0x7C878, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x17814, symBinAddr: 0x3A800, symSize: 0xB10 } + - { offsetInCU: 0x122BA, offset: 0x7D308, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x12C98, symBinAddr: 0x35D54, symSize: 0xF48 } + - { offsetInCU: 0x12D9E, offset: 0x7DDEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x13FBC, symBinAddr: 0x37078, symSize: 0x1E8 } + - { offsetInCU: 0x12E22, offset: 0x7DE70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x141A4, symBinAddr: 0x37260, symSize: 0x294 } + - { offsetInCU: 0x12F32, offset: 0x7DF80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x144D8, symBinAddr: 0x37594, symSize: 0xED4 } + - { offsetInCU: 0x1395D, offset: 0x7E9AB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x156E8, symBinAddr: 0x38750, symSize: 0x64 } + - { offsetInCU: 0x1399B, offset: 0x7E9E9, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1574C, symBinAddr: 0x387B4, symSize: 0x30 } + - { offsetInCU: 0x139E2, offset: 0x7EA30, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1577C, symBinAddr: 0x387E4, symSize: 0x80 } + - { offsetInCU: 0x13A7C, offset: 0x7EACA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x157FC, symBinAddr: 0x38864, symSize: 0x6C } + - { offsetInCU: 0x13B2C, offset: 0x7EB7A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15868, symBinAddr: 0x388D0, symSize: 0x4C } + - { offsetInCU: 0x13BA5, offset: 0x7EBF3, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x158E0, symBinAddr: 0x38948, symSize: 0xE0 } + - { offsetInCU: 0x13C19, offset: 0x7EC67, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x159C0, symBinAddr: 0x38A28, symSize: 0xC4 } + - { offsetInCU: 0x13C42, offset: 0x7EC90, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15A84, symBinAddr: 0x38AEC, symSize: 0x174 } + - { offsetInCU: 0x13D1B, offset: 0x7ED69, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x15BF8, symBinAddr: 0x38C60, symSize: 0x104 } + - { offsetInCU: 0x13E4A, offset: 0x7EE98, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x15CFC, symBinAddr: 0x38D64, symSize: 0x124 } + - { offsetInCU: 0x13F6B, offset: 0x7EFB9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x15E20, symBinAddr: 0x38E88, symSize: 0x170 } + - { offsetInCU: 0x140EC, offset: 0x7F13A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x15F90, symBinAddr: 0x38FF8, symSize: 0x174 } + - { offsetInCU: 0x1423A, offset: 0x7F288, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16104, symBinAddr: 0x3916C, symSize: 0xFC } + - { offsetInCU: 0x14370, offset: 0x7F3BE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x16200, symBinAddr: 0x39268, symSize: 0xFC } + - { offsetInCU: 0x144A6, offset: 0x7F4F4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x16400, symBinAddr: 0x39468, symSize: 0xFC } + - { offsetInCU: 0x145DC, offset: 0x7F62A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x16600, symBinAddr: 0x39668, symSize: 0x11C } + - { offsetInCU: 0x146C7, offset: 0x7F715, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x169C0, symBinAddr: 0x39A28, symSize: 0x138 } + - { offsetInCU: 0x14796, offset: 0x7F7E4, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16AF8, symBinAddr: 0x39B60, symSize: 0xB4 } + - { offsetInCU: 0x1482E, offset: 0x7F87C, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x16DF8, symBinAddr: 0x39E20, symSize: 0x18C } + - { offsetInCU: 0x14A30, offset: 0x7FA7E, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18324, symBinAddr: 0x3B310, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x801B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3E620, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x801C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3E620, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x801DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3E650, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x801F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3E73C, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x80205, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x3E9A4, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x80219, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x3EDC0, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x8022D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x3EDC8, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x80241, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x3F004, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x80255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x3F04C, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x80269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x3F108, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x80863, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8BF0, symBinAddr: 0x47D08, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x80921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8E10, symBinAddr: 0x47F28, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x809EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD408, symBinAddr: 0x4C520, symSize: 0x774 } + - { offsetInCU: 0x9DA, offset: 0x80D24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xDB7C, symBinAddr: 0x4CC94, symSize: 0x9CC } + - { offsetInCU: 0xCB4, offset: 0x80FFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE548, symBinAddr: 0x4D660, symSize: 0x2AC } + - { offsetInCU: 0xDF6, offset: 0x81140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xEEAC, symBinAddr: 0x4DFC4, symSize: 0x810 } + - { offsetInCU: 0x10EC, offset: 0x81436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF6BC, symBinAddr: 0x4E7D4, symSize: 0xBB4 } + - { offsetInCU: 0x13C6, offset: 0x81710, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x10270, symBinAddr: 0x4F388, symSize: 0x314 } + - { offsetInCU: 0x1508, offset: 0x81852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x10584, symBinAddr: 0x4F69C, symSize: 0x208 } + - { offsetInCU: 0x1989, offset: 0x81CD3, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1E38, symBinAddr: 0x40F50, symSize: 0x2C } + - { offsetInCU: 0x1E8E, offset: 0x821D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x90D4, symBinAddr: 0x481EC, symSize: 0x20 } + - { offsetInCU: 0x1ED3, offset: 0x8221D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x90F4, symBinAddr: 0x4820C, symSize: 0x8C } + - { offsetInCU: 0x1F8F, offset: 0x822D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xA230, symBinAddr: 0x49348, symSize: 0x54 } + - { offsetInCU: 0x1FC9, offset: 0x82313, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xA284, symBinAddr: 0x4939C, symSize: 0x50 } + - { offsetInCU: 0x201F, offset: 0x82369, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA2D4, symBinAddr: 0x493EC, symSize: 0x64 } + - { offsetInCU: 0x2052, offset: 0x8239C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA338, symBinAddr: 0x49450, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x823DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA33C, symBinAddr: 0x49454, symSize: 0x78 } + - { offsetInCU: 0x20E7, offset: 0x82431, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA3B4, symBinAddr: 0x494CC, symSize: 0x88 } + - { offsetInCU: 0x2158, offset: 0x824A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA43C, symBinAddr: 0x49554, symSize: 0xDC } + - { offsetInCU: 0x21DA, offset: 0x82524, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA518, symBinAddr: 0x49630, symSize: 0x4 } + - { offsetInCU: 0x21F6, offset: 0x82540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA51C, symBinAddr: 0x49634, symSize: 0x4 } + - { offsetInCU: 0x2230, offset: 0x8257A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA520, symBinAddr: 0x49638, symSize: 0x64 } + - { offsetInCU: 0x259D, offset: 0x828E7, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB7C8, symBinAddr: 0x4A8E0, symSize: 0xE4 } + - { offsetInCU: 0x2681, offset: 0x829CB, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xB990, symBinAddr: 0x4AAA8, symSize: 0x280 } + - { offsetInCU: 0x281D, offset: 0x82B67, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xC1C0, symBinAddr: 0x4B2D8, symSize: 0x64 } + - { offsetInCU: 0x2DFE, offset: 0x83148, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xC9C4, symBinAddr: 0x4BADC, symSize: 0x374 } + - { offsetInCU: 0x35A0, offset: 0x838EA, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCD38, symBinAddr: 0x4BE50, symSize: 0x280 } + - { offsetInCU: 0x3977, offset: 0x83CC1, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCFB8, symBinAddr: 0x4C0D0, symSize: 0x148 } + - { offsetInCU: 0x3B71, offset: 0x83EBB, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xD100, symBinAddr: 0x4C218, symSize: 0x1F8 } + - { offsetInCU: 0x3D30, offset: 0x8407A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10F3C, symBinAddr: 0x50054, symSize: 0x104 } + - { offsetInCU: 0x3E7A, offset: 0x841C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x139F4, symBinAddr: 0x52B0C, symSize: 0x120 } + - { offsetInCU: 0x3F92, offset: 0x842DC, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x13FFC, symBinAddr: 0x530B4, symSize: 0x10 } + - { offsetInCU: 0x3FA6, offset: 0x842F0, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x1400C, symBinAddr: 0x530C4, symSize: 0x10 } + - { offsetInCU: 0x3FBA, offset: 0x84304, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x140A0, symBinAddr: 0x530D4, symSize: 0x48 } + - { offsetInCU: 0x3FCE, offset: 0x84318, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x1418C, symBinAddr: 0x5311C, symSize: 0x3C } + - { offsetInCU: 0x3FE2, offset: 0x8432C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x141C8, symBinAddr: 0x53158, symSize: 0x44 } + - { offsetInCU: 0x3FF6, offset: 0x84340, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOd', symObjAddr: 0x1420C, symBinAddr: 0x5319C, symSize: 0x48 } + - { offsetInCU: 0x400A, offset: 0x84354, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x14254, symBinAddr: 0x531E4, symSize: 0x8 } + - { offsetInCU: 0x401E, offset: 0x84368, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1425C, symBinAddr: 0x531EC, symSize: 0x10 } + - { offsetInCU: 0x4032, offset: 0x8437C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1426C, symBinAddr: 0x531FC, symSize: 0x8 } + - { offsetInCU: 0x4046, offset: 0x84390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x142F4, symBinAddr: 0x53240, symSize: 0x30 } + - { offsetInCU: 0x409E, offset: 0x843E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x143B4, symBinAddr: 0x53300, symSize: 0x24 } + - { offsetInCU: 0x40DA, offset: 0x84424, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x1441C, symBinAddr: 0x53368, symSize: 0x44 } + - { offsetInCU: 0x4BF8, offset: 0x84F42, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x3F118, symSize: 0x80 } + - { offsetInCU: 0x4C60, offset: 0x84FAA, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x80, symBinAddr: 0x3F198, symSize: 0xA0 } + - { offsetInCU: 0x4DC3, offset: 0x8510D, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x120, symBinAddr: 0x3F238, symSize: 0x9C } + - { offsetInCU: 0x4EEE, offset: 0x85238, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1BC, symBinAddr: 0x3F2D4, symSize: 0x74 } + - { offsetInCU: 0x4F73, offset: 0x852BD, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x230, symBinAddr: 0x3F348, symSize: 0x4 } + - { offsetInCU: 0x4F8E, offset: 0x852D8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x234, symBinAddr: 0x3F34C, symSize: 0x134 } + - { offsetInCU: 0x4FF9, offset: 0x85343, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x3F480, symSize: 0xE8 } + - { offsetInCU: 0x50DB, offset: 0x85425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x3F568, symSize: 0x204 } + - { offsetInCU: 0x525A, offset: 0x855A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x3F76C, symSize: 0xAF8 } + - { offsetInCU: 0x56EC, offset: 0x85A36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x114C, symBinAddr: 0x40264, symSize: 0x3CC } + - { offsetInCU: 0x5903, offset: 0x85C4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1518, symBinAddr: 0x40630, symSize: 0x920 } + - { offsetInCU: 0x5C7A, offset: 0x85FC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x1E64, symBinAddr: 0x40F7C, symSize: 0x21E4 } + - { offsetInCU: 0x7197, offset: 0x874E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE7F4, symBinAddr: 0x4D90C, symSize: 0x6B8 } + - { offsetInCU: 0x75A2, offset: 0x878EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4048, symBinAddr: 0x43160, symSize: 0x158C } + - { offsetInCU: 0x845D, offset: 0x887A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x55D4, symBinAddr: 0x446EC, symSize: 0xFD4 } + - { offsetInCU: 0x8E64, offset: 0x891AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x65A8, symBinAddr: 0x456C0, symSize: 0x3B0 } + - { offsetInCU: 0x8FCD, offset: 0x89317, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x71DC, symBinAddr: 0x462F4, symSize: 0x1E8 } + - { offsetInCU: 0x921F, offset: 0x89569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x73C4, symBinAddr: 0x464DC, symSize: 0x92C } + - { offsetInCU: 0x9A1F, offset: 0x89D69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7CF0, symBinAddr: 0x46E08, symSize: 0x2A8 } + - { offsetInCU: 0x9B71, offset: 0x89EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7F98, symBinAddr: 0x470B0, symSize: 0x614 } + - { offsetInCU: 0x9F3E, offset: 0x8A288, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x85AC, symBinAddr: 0x476C4, symSize: 0x644 } + - { offsetInCU: 0xA1E0, offset: 0x8A52A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x9034, symBinAddr: 0x4814C, symSize: 0x80 } + - { offsetInCU: 0xA203, offset: 0x8A54D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x90B4, symBinAddr: 0x481CC, symSize: 0x20 } + - { offsetInCU: 0xA28E, offset: 0x8A5D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x9180, symBinAddr: 0x48298, symSize: 0x1070 } + - { offsetInCU: 0xA8F6, offset: 0x8AC40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xA1F0, symBinAddr: 0x49308, symSize: 0x40 } + - { offsetInCU: 0xA969, offset: 0x8ACB3, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA584, symBinAddr: 0x4969C, symSize: 0x4 } + - { offsetInCU: 0xA984, offset: 0x8ACCE, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA588, symBinAddr: 0x496A0, symSize: 0x8 } + - { offsetInCU: 0xA99C, offset: 0x8ACE6, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA588, symBinAddr: 0x496A0, symSize: 0x8 } + - { offsetInCU: 0xA9AD, offset: 0x8ACF7, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA590, symBinAddr: 0x496A8, symSize: 0xC8 } + - { offsetInCU: 0xAA35, offset: 0x8AD7F, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA658, symBinAddr: 0x49770, symSize: 0xCC } + - { offsetInCU: 0xAAD5, offset: 0x8AE1F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA820, symBinAddr: 0x49938, symSize: 0x1F4 } + - { offsetInCU: 0xAB75, offset: 0x8AEBF, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xAA14, symBinAddr: 0x49B2C, symSize: 0x1C4 } + - { offsetInCU: 0xAC31, offset: 0x8AF7B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xABD8, symBinAddr: 0x49CF0, symSize: 0x340 } + - { offsetInCU: 0xAD28, offset: 0x8B072, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAF18, symBinAddr: 0x4A030, symSize: 0x340 } + - { offsetInCU: 0xAE12, offset: 0x8B15C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB258, symBinAddr: 0x4A370, symSize: 0x1DC } + - { offsetInCU: 0xAEB7, offset: 0x8B201, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB434, symBinAddr: 0x4A54C, symSize: 0x204 } + - { offsetInCU: 0xAF55, offset: 0x8B29F, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB638, symBinAddr: 0x4A750, symSize: 0x4C } + - { offsetInCU: 0xB001, offset: 0x8B34B, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB684, symBinAddr: 0x4A79C, symSize: 0x90 } + - { offsetInCU: 0xB08D, offset: 0x8B3D7, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB714, symBinAddr: 0x4A82C, symSize: 0x40 } + - { offsetInCU: 0xB0CA, offset: 0x8B414, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB754, symBinAddr: 0x4A86C, symSize: 0x18 } + - { offsetInCU: 0xB11C, offset: 0x8B466, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB76C, symBinAddr: 0x4A884, symSize: 0x3C } + - { offsetInCU: 0xB145, offset: 0x8B48F, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB7A8, symBinAddr: 0x4A8C0, symSize: 0x1C } + - { offsetInCU: 0xB186, offset: 0x8B4D0, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBE94, symBinAddr: 0x4AFAC, symSize: 0x8C } + - { offsetInCU: 0xB19A, offset: 0x8B4E4, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBF20, symBinAddr: 0x4B038, symSize: 0x4C } + - { offsetInCU: 0xB1CA, offset: 0x8B514, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBF6C, symBinAddr: 0x4B084, symSize: 0x164 } + - { offsetInCU: 0xB227, offset: 0x8B571, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC0D0, symBinAddr: 0x4B1E8, symSize: 0xF0 } + - { offsetInCU: 0xB24E, offset: 0x8B598, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC224, symBinAddr: 0x4B33C, symSize: 0x214 } + - { offsetInCU: 0xB283, offset: 0x8B5CD, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC438, symBinAddr: 0x4B550, symSize: 0x78 } + - { offsetInCU: 0xB297, offset: 0x8B5E1, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC4B0, symBinAddr: 0x4B5C8, symSize: 0x1C } + - { offsetInCU: 0xB2AB, offset: 0x8B5F5, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC4CC, symBinAddr: 0x4B5E4, symSize: 0x1C } + - { offsetInCU: 0xB2BF, offset: 0x8B609, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC4E8, symBinAddr: 0x4B600, symSize: 0x1C } + - { offsetInCU: 0xB2F6, offset: 0x8B640, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC504, symBinAddr: 0x4B61C, symSize: 0x104 } + - { offsetInCU: 0xB3F4, offset: 0x8B73E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC608, symBinAddr: 0x4B720, symSize: 0x174 } + - { offsetInCU: 0xB50A, offset: 0x8B854, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC77C, symBinAddr: 0x4B894, symSize: 0x124 } + - { offsetInCU: 0xB5DE, offset: 0x8B928, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC8A0, symBinAddr: 0x4B9B8, symSize: 0x124 } + - { offsetInCU: 0xB71D, offset: 0x8BA67, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD2F8, symBinAddr: 0x4C410, symSize: 0x14 } + - { offsetInCU: 0xB73F, offset: 0x8BA89, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD30C, symBinAddr: 0x4C424, symSize: 0xFC } + - { offsetInCU: 0xB819, offset: 0x8BB63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x1078C, symBinAddr: 0x4F8A4, symSize: 0x7B0 } + - { offsetInCU: 0xBCA0, offset: 0x8BFEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x11040, symBinAddr: 0x50158, symSize: 0x29B4 } + - { offsetInCU: 0xC434, offset: 0x8C77E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x13B14, symBinAddr: 0x52C2C, symSize: 0x488 } + - { offsetInCU: 0x95, offset: 0x8CB9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x543B4, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8CBF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xF98, symBinAddr: 0x54400, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8CC22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xFBC, symBinAddr: 0x54424, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8CC3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xFC8, symBinAddr: 0x54430, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8CC5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5F38, symBinAddr: 0x59310, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8CCF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1024, symBinAddr: 0x5448C, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8CD28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1074, symBinAddr: 0x544DC, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8CD4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x606C, symBinAddr: 0x59444, symSize: 0x132C } + - { offsetInCU: 0x2D0, offset: 0x8CDD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x10C4, symBinAddr: 0x5452C, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8CE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x10DC, symBinAddr: 0x54544, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8CEAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1108, symBinAddr: 0x54570, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8CEE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1170, symBinAddr: 0x545D8, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8CF14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1194, symBinAddr: 0x545FC, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8CF30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11A0, symBinAddr: 0x54608, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8CF4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E7C, symBinAddr: 0x5A83C, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8D03E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11FC, symBinAddr: 0x54664, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8D075, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x124C, symBinAddr: 0x546B4, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8D098, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8078, symBinAddr: 0x5AA38, symSize: 0xF38 } + - { offsetInCU: 0x611, offset: 0x8D11A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x146C, symBinAddr: 0x548D4, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8D14B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1498, symBinAddr: 0x54900, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8D167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1508, symBinAddr: 0x54970, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8D19C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1568, symBinAddr: 0x549D0, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8D1EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x158C, symBinAddr: 0x549F4, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8D208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1598, symBinAddr: 0x54A00, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8D224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x918C, symBinAddr: 0x5BB4C, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8D283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15F4, symBinAddr: 0x54A5C, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8D2BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x163C, symBinAddr: 0x54AA4, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8D2DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x91E8, symBinAddr: 0x5BBA8, symSize: 0x220 } + - { offsetInCU: 0x838, offset: 0x8D341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1684, symBinAddr: 0x54AEC, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8D376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x168C, symBinAddr: 0x54AF4, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8D3A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16B0, symBinAddr: 0x54B18, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8D3C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16BC, symBinAddr: 0x54B24, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8D3DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9408, symBinAddr: 0x5BDC8, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8D53B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1718, symBinAddr: 0x54B80, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8D572, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1778, symBinAddr: 0x54BE0, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8D595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x96F4, symBinAddr: 0x5C0B4, symSize: 0x538 } + - { offsetInCU: 0xB19, offset: 0x8D622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x54C38, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8D6A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x17E8, symBinAddr: 0x54C50, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8D785, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x182C, symBinAddr: 0x54C94, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8D80B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1894, symBinAddr: 0x54CFC, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8D860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18B8, symBinAddr: 0x54D20, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8D891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18DC, symBinAddr: 0x54D44, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8D8AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18E8, symBinAddr: 0x54D50, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8D8C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9C2C, symBinAddr: 0x5C5EC, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8D957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1944, symBinAddr: 0x54DAC, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8D98E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1970, symBinAddr: 0x54DD8, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8D9B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9CE8, symBinAddr: 0x5C6A8, symSize: 0x1A0 } + - { offsetInCU: 0xF18, offset: 0x8DA21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A18, symBinAddr: 0x54E80, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8DA56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x54EF8, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8DA87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x54F1C, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8DAA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x54F28, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8DABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9E88, symBinAddr: 0x5C848, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8DBBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B1C, symBinAddr: 0x54F84, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8DBF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B8C, symBinAddr: 0x54FF4, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8DC14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA0D4, symBinAddr: 0x5CA94, symSize: 0x8C8 } + - { offsetInCU: 0x11A5, offset: 0x8DCAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1D78, symBinAddr: 0x551E0, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8DCDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1DA4, symBinAddr: 0x5520C, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8DCF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1DCC, symBinAddr: 0x55234, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8DD28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DD4, symBinAddr: 0x5523C, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8DD78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1DF8, symBinAddr: 0x55260, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8DD94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E04, symBinAddr: 0x5526C, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8DDB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAA68, symBinAddr: 0x5D428, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8DE2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x552C8, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8DE65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EB8, symBinAddr: 0x55320, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8DE88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAAC4, symBinAddr: 0x5D484, symSize: 0x760 } + - { offsetInCU: 0x1457, offset: 0x8DF60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D00, symBinAddr: 0x5915C, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8DFB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5D54, symBinAddr: 0x591B0, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8E00C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5DD4, symBinAddr: 0x59230, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8E041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5DDC, symBinAddr: 0x59238, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8E0C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5E3C, symBinAddr: 0x59298, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8E0DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x20D0, symBinAddr: 0x55538, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8E0F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x20F0, symBinAddr: 0x55558, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8E106, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x21E4, symBinAddr: 0x5564C, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8E11A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x2564, symBinAddr: 0x559CC, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8E135, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x31BC, symBinAddr: 0x56624, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8E15E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x31EC, symBinAddr: 0x56654, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8E172, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x3218, symBinAddr: 0x56680, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8E186, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x3244, symBinAddr: 0x566AC, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8E19A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x3270, symBinAddr: 0x566D8, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8E1AE, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x329C, symBinAddr: 0x56704, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8E1C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x32A4, symBinAddr: 0x5670C, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8E1D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x3664, symBinAddr: 0x56ACC, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8E1EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x36C0, symBinAddr: 0x56B28, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8E1FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x37AC, symBinAddr: 0x56C14, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8E212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x37BC, symBinAddr: 0x56C24, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8E226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x37EC, symBinAddr: 0x56C54, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8E23A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x38CC, symBinAddr: 0x56D34, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8E24E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x3C04, symBinAddr: 0x5706C, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8E262, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4468, symBinAddr: 0x578D0, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8E276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4470, symBinAddr: 0x578D8, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8E28A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x47D4, symBinAddr: 0x57C3C, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8E29E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x4830, symBinAddr: 0x57C98, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8E2B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x4914, symBinAddr: 0x57D7C, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8E2C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x4924, symBinAddr: 0x57D8C, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8E2DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x49C8, symBinAddr: 0x57E30, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8E2EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x4B54, symBinAddr: 0x57FBC, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8E302, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4EFC, symBinAddr: 0x58364, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8E316, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4F40, symBinAddr: 0x583A8, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8E32A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x50BC, symBinAddr: 0x58524, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8E33E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x5118, symBinAddr: 0x58580, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8E352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x51AC, symBinAddr: 0x58614, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8E366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x51BC, symBinAddr: 0x58624, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8E37A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x5224, symBinAddr: 0x5868C, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8E38E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x5300, symBinAddr: 0x58768, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8E3A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x546C, symBinAddr: 0x588D4, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8E3B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5498, symBinAddr: 0x58900, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8E3CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x555C, symBinAddr: 0x589C4, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8E3DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x55B8, symBinAddr: 0x58A20, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8E3F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x5634, symBinAddr: 0x58A9C, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8E406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x5644, symBinAddr: 0x58AAC, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8E41A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x568C, symBinAddr: 0x58AF4, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8E42E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x5770, symBinAddr: 0x58BD8, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8E442, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5908, symBinAddr: 0x58D70, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8E456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x593C, symBinAddr: 0x58DA4, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8E46A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5A38, symBinAddr: 0x58EA0, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8E47E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x5A94, symBinAddr: 0x58EFC, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8E492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x5B10, symBinAddr: 0x58F78, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8E4A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x5B20, symBinAddr: 0x58F88, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8E4BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5B48, symBinAddr: 0x58FB0, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8E4CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x5B84, symBinAddr: 0x58FEC, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8E4E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x5BFC, symBinAddr: 0x59058, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8E4F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5C40, symBinAddr: 0x5909C, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8E50A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x5C9C, symBinAddr: 0x590F8, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8E51E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x5CF0, symBinAddr: 0x5914C, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8E532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5E44, symBinAddr: 0x592A0, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8E546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5E48, symBinAddr: 0x592A4, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8E55A, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F10, symBinAddr: 0x592E8, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8E56E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x7398, symBinAddr: 0x5A770, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8E582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x73DC, symBinAddr: 0x5A7B4, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8E596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7E38, symBinAddr: 0x5A7F8, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8E5AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x8FB0, symBinAddr: 0x5B970, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8E5BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x8FF4, symBinAddr: 0x5B9B4, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8E5D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x9038, symBinAddr: 0x5B9F8, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8E5E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x907C, symBinAddr: 0x5BA3C, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8E5FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x90C0, symBinAddr: 0x5BA80, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8E60E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x9104, symBinAddr: 0x5BAC4, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8E622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x9148, symBinAddr: 0x5BB08, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8E636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA99C, symBinAddr: 0x5D35C, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8E64A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xA9E0, symBinAddr: 0x5D3A0, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8E65E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xAA24, symBinAddr: 0x5D3E4, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8E672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xB224, symBinAddr: 0x5DBE4, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8E686, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB268, symBinAddr: 0x5DC28, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8E69A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xB2AC, symBinAddr: 0x5DC6C, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8E6AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xB334, symBinAddr: 0x5DCF4, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8E6C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB378, symBinAddr: 0x5DD38, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E6D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB3CC, symBinAddr: 0x5DD7C, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E6EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB45C, symBinAddr: 0x5DE0C, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E6FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB518, symBinAddr: 0x5DEC8, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8E712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB520, symBinAddr: 0x5DED0, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8E726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB524, symBinAddr: 0x5DED4, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8E73A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB530, symBinAddr: 0x5DEE0, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8E74E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB540, symBinAddr: 0x5DEF0, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8E762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB5D0, symBinAddr: 0x5DF80, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8E776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB68C, symBinAddr: 0x5E03C, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8E78A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB690, symBinAddr: 0x5E040, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8E79E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB6A0, symBinAddr: 0x5E050, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8E7B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB730, symBinAddr: 0x5E0E0, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8E7C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB7EC, symBinAddr: 0x5E19C, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8E7DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB7F0, symBinAddr: 0x5E1A0, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8E7EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB800, symBinAddr: 0x5E1B0, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8E802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB890, symBinAddr: 0x5E240, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8E816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB94C, symBinAddr: 0x5E2FC, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8E82A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB950, symBinAddr: 0x5E300, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8E83E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB960, symBinAddr: 0x5E310, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8E852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB9F0, symBinAddr: 0x5E3A0, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8E866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xBAAC, symBinAddr: 0x5E45C, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8E87A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBAB4, symBinAddr: 0x5E464, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8E88E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xBAB8, symBinAddr: 0x5E468, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8E8A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBAC0, symBinAddr: 0x5E470, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8E8B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xBAD0, symBinAddr: 0x5E480, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8E8CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xBB60, symBinAddr: 0x5E510, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8E8DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBC1C, symBinAddr: 0x5E5CC, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8E8F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBC20, symBinAddr: 0x5E5D0, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8E906, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBC30, symBinAddr: 0x5E5E0, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8E91A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xBC54, symBinAddr: 0x5E604, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8E92E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xBC74, symBinAddr: 0x5E624, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8E942, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xBCB4, symBinAddr: 0x5E664, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8E956, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBCC4, symBinAddr: 0x5E674, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8E96A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBCC8, symBinAddr: 0x5E678, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8E97E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBD0C, symBinAddr: 0x5E6BC, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8E992, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBD10, symBinAddr: 0x5E6C0, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8E9A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBD54, symBinAddr: 0x5E704, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8E9BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBD58, symBinAddr: 0x5E708, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8E9CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBD9C, symBinAddr: 0x5E74C, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8E9E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBDA0, symBinAddr: 0x5E750, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8E9F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBDE4, symBinAddr: 0x5E794, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8EA0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBDE8, symBinAddr: 0x5E798, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8EA1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBE2C, symBinAddr: 0x5E7DC, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8EA32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBE30, symBinAddr: 0x5E7E0, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8EA46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBE74, symBinAddr: 0x5E824, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8EA5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBE78, symBinAddr: 0x5E828, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8EA6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBEBC, symBinAddr: 0x5E86C, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8EA82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBEC0, symBinAddr: 0x5E870, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8EA96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF04, symBinAddr: 0x5E8B4, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8EAAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF08, symBinAddr: 0x5E8B8, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8EABE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF4C, symBinAddr: 0x5E8FC, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8EAD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBF50, symBinAddr: 0x5E900, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8EAE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF94, symBinAddr: 0x5E944, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8EAFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF98, symBinAddr: 0x5E948, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8EB0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFDC, symBinAddr: 0x5E98C, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8EB22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBFE0, symBinAddr: 0x5E990, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8EB36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC024, symBinAddr: 0x5E9D4, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8EB4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC028, symBinAddr: 0x5E9D8, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8EB5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC06C, symBinAddr: 0x5EA1C, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8EB72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC070, symBinAddr: 0x5EA20, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8EB86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC0B4, symBinAddr: 0x5EA64, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8EB9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC0B8, symBinAddr: 0x5EA68, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8EBAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0FC, symBinAddr: 0x5EAAC, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8EBC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC100, symBinAddr: 0x5EAB0, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8EBD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC144, symBinAddr: 0x5EAF4, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8EBEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC148, symBinAddr: 0x5EAF8, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8EBFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC18C, symBinAddr: 0x5EB3C, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8EC12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC190, symBinAddr: 0x5EB40, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8EC26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xC1D4, symBinAddr: 0x5EB84, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8EC3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xC218, symBinAddr: 0x5EBC8, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8EC4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xC2A8, symBinAddr: 0x5EC58, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8EC62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xC364, symBinAddr: 0x5ED14, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8EC76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xC368, symBinAddr: 0x5ED18, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8EC8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC378, symBinAddr: 0x5ED28, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8EC9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC37C, symBinAddr: 0x5ED2C, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8ECB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC3C0, symBinAddr: 0x5ED70, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8ECC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC3C4, symBinAddr: 0x5ED74, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8ECDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC408, symBinAddr: 0x5EDB8, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8ECEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC40C, symBinAddr: 0x5EDBC, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8ED1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xFD4, symBinAddr: 0x5443C, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8ED38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xFFC, symBinAddr: 0x54464, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8ED5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11AC, symBinAddr: 0x54614, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8ED76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11D4, symBinAddr: 0x5463C, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8ED92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x129C, symBinAddr: 0x54704, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8EE12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12A8, symBinAddr: 0x54710, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8EE94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x134C, symBinAddr: 0x547B4, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8EED2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x13CC, symBinAddr: 0x54834, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8EF38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x15A4, symBinAddr: 0x54A0C, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8EF54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x15CC, symBinAddr: 0x54A34, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8EF76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x54B30, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8EF92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x16F0, symBinAddr: 0x54B58, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8EFE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1854, symBinAddr: 0x54CBC, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8F087, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x18F4, symBinAddr: 0x54D5C, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8F0A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x191C, symBinAddr: 0x54D84, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8F0C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1ACC, symBinAddr: 0x54F34, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8F0E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x54F5C, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8F12A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1BF4, symBinAddr: 0x5505C, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8F1FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1C7C, symBinAddr: 0x550E4, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8F27C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CDC, symBinAddr: 0x55144, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8F2CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D1C, symBinAddr: 0x55184, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8F330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E10, symBinAddr: 0x55278, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8F34C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1E38, symBinAddr: 0x552A0, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8F38D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E00, symBinAddr: 0x5925C, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8F51F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x53468, symSize: 0x17C } + - { offsetInCU: 0x2A47, offset: 0x8F550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x17C, symBinAddr: 0x535E4, symSize: 0x264 } + - { offsetInCU: 0x2A78, offset: 0x8F581, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x3E0, symBinAddr: 0x53848, symSize: 0x190 } + - { offsetInCU: 0x2AA9, offset: 0x8F5B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x570, symBinAddr: 0x539D8, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8F5D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x60C, symBinAddr: 0x53A74, symSize: 0x268 } + - { offsetInCU: 0x2AFD, offset: 0x8F606, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x874, symBinAddr: 0x53CDC, symSize: 0x118 } + - { offsetInCU: 0x2B2E, offset: 0x8F637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x98C, symBinAddr: 0x53DF4, symSize: 0x214 } + - { offsetInCU: 0x2B5F, offset: 0x8F668, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBA0, symBinAddr: 0x54008, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8F69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC50, symBinAddr: 0x540B8, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F6E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x54168, symSize: 0x244 } + - { offsetInCU: 0x2DE8, offset: 0x8F8F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F08, symBinAddr: 0x55370, symSize: 0x1B8 } + - { offsetInCU: 0x2E34, offset: 0x8F93D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x20C0, symBinAddr: 0x55528, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8FA20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5EE58, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8FB5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5EEC4, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8FB70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5EF18, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8FB84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5EF5C, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8FC65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5EE58, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8FC7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5EE60, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8FCB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5EE68, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8FCC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5EE78, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8FCE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5EE7C, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8FCFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5EE84, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x8FD2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5EE8C, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x8FD50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5EE9C, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x8FD71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5EEA0, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x8FD85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5EEA8, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x8FDB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5EEB0, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x8FDD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5EEC0, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x8FE2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EF6C, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x8FE80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5EF90, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x8FF86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EF6C, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x8FFEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5EFB0, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x9003F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5EFD4, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5EFB0, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x901B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EFF4, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x90202, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5F054, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x90216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5F05C, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x9022A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5F098, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x90330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EFF4, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x9039A, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5F110, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x904EE, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5F478, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x90714, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5F110, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x9094F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5F4C0, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x909A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5F4E4, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5F4C0, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x90B88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x9C8, symBinAddr: 0x5FE8C, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x90BA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x5FE98, symSize: 0x4C } + - { offsetInCU: 0xD5, offset: 0x90BBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x5FE98, symSize: 0x4C } + - { offsetInCU: 0xF1, offset: 0x90BD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA20, symBinAddr: 0x5FEE4, symSize: 0x38 } + - { offsetInCU: 0x180, offset: 0x90C67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xBF4, symBinAddr: 0x600B8, symSize: 0xC } + - { offsetInCU: 0x19C, offset: 0x90C83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x600C4, symSize: 0x2C } + - { offsetInCU: 0x1B4, offset: 0x90C9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x600C4, symSize: 0x2C } + - { offsetInCU: 0x56B, offset: 0x91052, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x754, symBinAddr: 0x5FC18, symSize: 0xC8 } + - { offsetInCU: 0x5DF, offset: 0x910C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xC2C, symBinAddr: 0x600F0, symSize: 0x3EC } + - { offsetInCU: 0x808, offset: 0x912EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1018, symBinAddr: 0x604DC, symSize: 0x13C } + - { offsetInCU: 0xA2A, offset: 0x91511, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x32C0, symBinAddr: 0x626E4, symSize: 0x204 } + - { offsetInCU: 0xADB, offset: 0x915C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3568, symBinAddr: 0x62930, symSize: 0x23C } + - { offsetInCU: 0xB40, offset: 0x91627, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x37A4, symBinAddr: 0x62B6C, symSize: 0x238 } + - { offsetInCU: 0xC68, offset: 0x9174F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39DC, symBinAddr: 0x62DA4, symSize: 0x29C } + - { offsetInCU: 0xDA7, offset: 0x9188E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3C78, symBinAddr: 0x63040, symSize: 0x188 } + - { offsetInCU: 0xDED, offset: 0x918D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E00, symBinAddr: 0x631C8, symSize: 0x43C } + - { offsetInCU: 0x1124, offset: 0x91C0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x423C, symBinAddr: 0x63604, symSize: 0xC4 } + - { offsetInCU: 0x1269, offset: 0x91D50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2D4C, symBinAddr: 0x62210, symSize: 0x4 } + - { offsetInCU: 0x127D, offset: 0x91D64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2D50, symBinAddr: 0x62214, symSize: 0x44 } + - { offsetInCU: 0x1291, offset: 0x91D78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2D94, symBinAddr: 0x62258, symSize: 0x4 } + - { offsetInCU: 0x12A5, offset: 0x91D8C, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2D98, symBinAddr: 0x6225C, symSize: 0x4C } + - { offsetInCU: 0x12B9, offset: 0x91DA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x2E28, symBinAddr: 0x622A8, symSize: 0x4 } + - { offsetInCU: 0x12CD, offset: 0x91DB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x2E2C, symBinAddr: 0x622AC, symSize: 0x44 } + - { offsetInCU: 0x12E1, offset: 0x91DC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x2E80, symBinAddr: 0x622F0, symSize: 0x90 } + - { offsetInCU: 0x12F5, offset: 0x91DDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x2F10, symBinAddr: 0x62380, symSize: 0xBC } + - { offsetInCU: 0x1309, offset: 0x91DF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x2FCC, symBinAddr: 0x6243C, symSize: 0x8 } + - { offsetInCU: 0x131D, offset: 0x91E04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x2FD4, symBinAddr: 0x62444, symSize: 0x4 } + - { offsetInCU: 0x1331, offset: 0x91E18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x2FD8, symBinAddr: 0x62448, symSize: 0x8 } + - { offsetInCU: 0x1345, offset: 0x91E2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x2FE0, symBinAddr: 0x62450, symSize: 0x10 } + - { offsetInCU: 0x1359, offset: 0x91E40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x2FF0, symBinAddr: 0x62460, symSize: 0x90 } + - { offsetInCU: 0x136D, offset: 0x91E54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x3080, symBinAddr: 0x624F0, symSize: 0xBC } + - { offsetInCU: 0x1381, offset: 0x91E68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x313C, symBinAddr: 0x625AC, symSize: 0x8 } + - { offsetInCU: 0x1395, offset: 0x91E7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3144, symBinAddr: 0x625B4, symSize: 0x4 } + - { offsetInCU: 0x13A9, offset: 0x91E90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x3148, symBinAddr: 0x625B8, symSize: 0xC } + - { offsetInCU: 0x13BD, offset: 0x91EA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3154, symBinAddr: 0x625C4, symSize: 0x10 } + - { offsetInCU: 0x13D1, offset: 0x91EB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3164, symBinAddr: 0x625D4, symSize: 0x20 } + - { offsetInCU: 0x13E5, offset: 0x91ECC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x318C, symBinAddr: 0x625F4, symSize: 0xC } + - { offsetInCU: 0x13F9, offset: 0x91EE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3198, symBinAddr: 0x62600, symSize: 0x4 } + - { offsetInCU: 0x140D, offset: 0x91EF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x319C, symBinAddr: 0x62604, symSize: 0x44 } + - { offsetInCU: 0x1421, offset: 0x91F08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x31E0, symBinAddr: 0x62648, symSize: 0xC } + - { offsetInCU: 0x1435, offset: 0x91F1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x31EC, symBinAddr: 0x62654, symSize: 0x4 } + - { offsetInCU: 0x1449, offset: 0x91F30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x31F0, symBinAddr: 0x62658, symSize: 0x44 } + - { offsetInCU: 0x145D, offset: 0x91F44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3234, symBinAddr: 0x6269C, symSize: 0xC } + - { offsetInCU: 0x14D1, offset: 0x91FB8, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x34C4, symBinAddr: 0x628E8, symSize: 0x48 } + - { offsetInCU: 0x1530, offset: 0x92017, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4300, symBinAddr: 0x636C8, symSize: 0x3C } + - { offsetInCU: 0x1544, offset: 0x9202B, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x433C, symBinAddr: 0x63704, symSize: 0x24 } + - { offsetInCU: 0x1558, offset: 0x9203F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4394, symBinAddr: 0x6374C, symSize: 0x8 } + - { offsetInCU: 0x156C, offset: 0x92053, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x439C, symBinAddr: 0x63754, symSize: 0x10 } + - { offsetInCU: 0x1580, offset: 0x92067, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x43AC, symBinAddr: 0x63764, symSize: 0x8 } + - { offsetInCU: 0x1594, offset: 0x9207B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x440C, symBinAddr: 0x6376C, symSize: 0x8 } + - { offsetInCU: 0x15A8, offset: 0x9208F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x44C0, symBinAddr: 0x63820, symSize: 0x10 } + - { offsetInCU: 0x16A6, offset: 0x9218D, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x144, symBinAddr: 0x5F608, symSize: 0x134 } + - { offsetInCU: 0x1767, offset: 0x9224E, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x278, symBinAddr: 0x5F73C, symSize: 0xF0 } + - { offsetInCU: 0x1802, offset: 0x922E9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x368, symBinAddr: 0x5F82C, symSize: 0x90 } + - { offsetInCU: 0x19E2, offset: 0x924C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x5FD04, symSize: 0xC } + - { offsetInCU: 0x1A62, offset: 0x92549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x84C, symBinAddr: 0x5FD10, symSize: 0x8C } + - { offsetInCU: 0x1B16, offset: 0x925FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D8, symBinAddr: 0x5FD9C, symSize: 0x68 } + - { offsetInCU: 0x1B86, offset: 0x9266D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x940, symBinAddr: 0x5FE04, symSize: 0x88 } + - { offsetInCU: 0x1C1E, offset: 0x92705, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xACC, symBinAddr: 0x5FF90, symSize: 0xC } + - { offsetInCU: 0x1C9E, offset: 0x92785, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xAD8, symBinAddr: 0x5FF9C, symSize: 0x6C } + - { offsetInCU: 0x1D52, offset: 0x92839, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB44, symBinAddr: 0x60008, symSize: 0x48 } + - { offsetInCU: 0x1DC4, offset: 0x928AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x60050, symSize: 0x68 } + - { offsetInCU: 0x21B1, offset: 0x92C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5F504, symSize: 0x6C } + - { offsetInCU: 0x21E8, offset: 0x92CCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5F570, symSize: 0x28 } + - { offsetInCU: 0x2207, offset: 0x92CEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5F598, symSize: 0x48 } + - { offsetInCU: 0x223A, offset: 0x92D21, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x2252, offset: 0x92D39, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x2266, offset: 0x92D4D, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x227A, offset: 0x92D61, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x228E, offset: 0x92D75, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x22AE, offset: 0x92D95, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x5F5E4, symSize: 0x24 } + - { offsetInCU: 0x2359, offset: 0x92E40, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x3F8, symBinAddr: 0x5F8BC, symSize: 0xC4 } + - { offsetInCU: 0x250C, offset: 0x92FF3, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2524, offset: 0x9300B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2544, offset: 0x9302B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2558, offset: 0x9303F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x256C, offset: 0x93053, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2580, offset: 0x93067, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2654, offset: 0x9313B, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x504, symBinAddr: 0x5F9C8, symSize: 0x88 } + - { offsetInCU: 0x2711, offset: 0x931F8, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x58C, symBinAddr: 0x5FA50, symSize: 0x80 } + - { offsetInCU: 0x27AC, offset: 0x93293, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x60C, symBinAddr: 0x5FAD0, symSize: 0xE4 } + - { offsetInCU: 0x2900, offset: 0x933E7, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x2918, offset: 0x933FF, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x292C, offset: 0x93413, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x2940, offset: 0x93427, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x2954, offset: 0x9343B, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x29D1, offset: 0x934B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x81C, symBinAddr: 0x5FCE0, symSize: 0x24 } + - { offsetInCU: 0x2A33, offset: 0x9351A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xA58, symBinAddr: 0x5FF1C, symSize: 0x74 } + - { offsetInCU: 0x2AE2, offset: 0x935C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1154, symBinAddr: 0x60618, symSize: 0x938 } + - { offsetInCU: 0x3090, offset: 0x93B77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1A8C, symBinAddr: 0x60F50, symSize: 0x654 } + - { offsetInCU: 0x33FF, offset: 0x93EE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x20E0, symBinAddr: 0x615A4, symSize: 0x470 } + - { offsetInCU: 0x35C8, offset: 0x940AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2550, symBinAddr: 0x61A14, symSize: 0x5FC } + - { offsetInCU: 0x3ACB, offset: 0x945B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2B4C, symBinAddr: 0x62010, symSize: 0x150 } + - { offsetInCU: 0x3BD7, offset: 0x946BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2C9C, symBinAddr: 0x62160, symSize: 0x2C } + - { offsetInCU: 0x3C10, offset: 0x946F7, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2D48, symBinAddr: 0x6220C, symSize: 0x4 } + - { offsetInCU: 0x3C3D, offset: 0x94724, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3284, symBinAddr: 0x626A8, symSize: 0x14 } + - { offsetInCU: 0x3C6D, offset: 0x94754, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3298, symBinAddr: 0x626BC, symSize: 0x14 } + - { offsetInCU: 0x3C9D, offset: 0x94784, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x32AC, symBinAddr: 0x626D0, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x94919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6383C, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x9492D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x639C4, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x94941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x63A68, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x94955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x63BC4, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x94969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x63DAC, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x9497D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x63E98, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x94991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x64020, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x949A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x640B8, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x949B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x64150, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x949CD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x641D8, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x949E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x6422C, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x949F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x64350, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x94A09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x643D4, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x94A1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x644C8, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x94A31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x64628, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x94A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x64704, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x94A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x6484C, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x94A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x648E4, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x94A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x649B0, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x94B0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x176C, symBinAddr: 0x64F68, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x94B6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1784, symBinAddr: 0x64F80, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x94BE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x64FAC, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x94C19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x6501C, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x94C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1844, symBinAddr: 0x65040, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x94C66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x6504C, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x94C82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2ED4, symBinAddr: 0x665D4, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x94D3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18AC, symBinAddr: 0x650A8, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x94D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x650BC, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x94DE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x65284, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x94E15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AD0, symBinAddr: 0x652CC, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x94E46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x652F0, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x94E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x652FC, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x94E7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30BC, symBinAddr: 0x667BC, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x94F2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B5C, symBinAddr: 0x65358, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x94F65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BA8, symBinAddr: 0x653A4, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x94F88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3210, symBinAddr: 0x66910, symSize: 0x294 } + - { offsetInCU: 0x716, offset: 0x94FEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23A4, symBinAddr: 0x65BA0, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x95021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23AC, symBinAddr: 0x65BA8, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x95052, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23D0, symBinAddr: 0x65BCC, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x9506E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23DC, symBinAddr: 0x65BD8, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x9508A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x34A4, symBinAddr: 0x66BA4, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x951E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2438, symBinAddr: 0x65C34, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x95209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x244C, symBinAddr: 0x65C48, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x9522D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2484, symBinAddr: 0x65C5C, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x95241, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24E8, symBinAddr: 0x65CA0, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x95255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x25B0, symBinAddr: 0x65D20, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x95269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2638, symBinAddr: 0x65D64, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x9527D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x2764, symBinAddr: 0x65E90, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x95291, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x27B8, symBinAddr: 0x65ED4, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x952A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2848, symBinAddr: 0x65F64, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x952B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2904, symBinAddr: 0x66020, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x952CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x290C, symBinAddr: 0x66028, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x952E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x2910, symBinAddr: 0x6602C, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x952F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2918, symBinAddr: 0x66034, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x95309, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2928, symBinAddr: 0x66044, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x9531D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x29B8, symBinAddr: 0x660D4, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x95331, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2A74, symBinAddr: 0x66190, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x95345, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2A78, symBinAddr: 0x66194, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x95359, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2A88, symBinAddr: 0x661A4, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x9536D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2AB8, symBinAddr: 0x661D4, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x95381, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2AE8, symBinAddr: 0x66204, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x95395, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2B44, symBinAddr: 0x66260, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x953A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2BF4, symBinAddr: 0x662F4, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x953BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2C58, symBinAddr: 0x66358, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x953D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2CB4, symBinAddr: 0x663B4, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x953E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2D14, symBinAddr: 0x66414, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x953F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D24, symBinAddr: 0x66424, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x9540D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D28, symBinAddr: 0x66428, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x95421, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D6C, symBinAddr: 0x6646C, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x95435, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D70, symBinAddr: 0x66470, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x95449, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DB4, symBinAddr: 0x664B4, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x9545D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DB8, symBinAddr: 0x664B8, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x95471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DFC, symBinAddr: 0x664FC, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x95485, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E00, symBinAddr: 0x66500, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x95499, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E44, symBinAddr: 0x66544, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x954AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E48, symBinAddr: 0x66548, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x954C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E8C, symBinAddr: 0x6658C, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x954D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E90, symBinAddr: 0x66590, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x954F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x37C0, symBinAddr: 0x66EC0, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x95508, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3804, symBinAddr: 0x66F04, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x9551C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x38D0, symBinAddr: 0x66FD0, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x95530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3960, symBinAddr: 0x67060, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x95544, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3A1C, symBinAddr: 0x6711C, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x95558, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3A20, symBinAddr: 0x67120, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x9556C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3A30, symBinAddr: 0x67130, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x95580, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3A34, symBinAddr: 0x67134, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x95594, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3A78, symBinAddr: 0x67178, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x955A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3A7C, symBinAddr: 0x6717C, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x955BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3AC0, symBinAddr: 0x671C0, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x955D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3AC4, symBinAddr: 0x671C4, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x955FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0x65058, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x9561A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1884, symBinAddr: 0x65080, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x9563C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B0C, symBinAddr: 0x65308, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x95658, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B34, symBinAddr: 0x65330, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x9567A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23E8, symBinAddr: 0x65BE4, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x95696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x65C0C, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x957A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x64A38, symSize: 0x200 } + - { offsetInCU: 0xF04, offset: 0x957DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x143C, symBinAddr: 0x64C38, symSize: 0x330 } + - { offsetInCU: 0xF7F, offset: 0x95855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18D4, symBinAddr: 0x650D0, symSize: 0x1AC } + - { offsetInCU: 0xFCA, offset: 0x958A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1BE8, symBinAddr: 0x653E4, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x958C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1C90, symBinAddr: 0x6548C, symSize: 0x264 } + - { offsetInCU: 0x1024, offset: 0x958FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1EF4, symBinAddr: 0x656F0, symSize: 0x424 } + - { offsetInCU: 0x27, offset: 0x95981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x67228, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x95A60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x67310, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x95A74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x67340, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x95A88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x67368, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x95A9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x673A4, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x95AB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x67410, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x95AC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x67454, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x95AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x6749C, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x95AEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x674DC, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x95BFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x67228, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x95C15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x67254, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x95C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x67288, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x95C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x67298, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x95C7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x6729C, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x95C93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x672C8, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x95CC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x672FC, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x95CEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x6730C, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x95D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x674EC, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x95D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x67784, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x95DBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6778C, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x95DD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6778C, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x95DEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x67674, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x95E03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x67678, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x95E37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x677A4, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x95E4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x67834, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x95E5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x678F0, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x95E73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x678F8, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x95E87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x678FC, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x95E9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x67904, symSize: 0x10 } + - { offsetInCU: 0x1BF, offset: 0x95ED6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x438, symBinAddr: 0x67914, symSize: 0x248 } + - { offsetInCU: 0x31A, offset: 0x96031, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x67650, symSize: 0x24 } + - { offsetInCU: 0x40E, offset: 0x96125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x676BC, symSize: 0x4C } + - { offsetInCU: 0x4E6, offset: 0x961FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x67708, symSize: 0x34 } + - { offsetInCU: 0x562, offset: 0x96279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x6773C, symSize: 0x48 } + - { offsetInCU: 0x6ED, offset: 0x96404, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x674EC, symSize: 0x14 } + - { offsetInCU: 0x70E, offset: 0x96425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x67500, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x964CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67B5C, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x96520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x67B80, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x96626, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67B5C, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x966B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1A40, symBinAddr: 0x84ED8, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x96C1E, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x67BD4, symSize: 0x4C } + - { offsetInCU: 0x5CF, offset: 0x96C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x67C20, symSize: 0x4C } + - { offsetInCU: 0x72F, offset: 0x96D96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1614, symBinAddr: 0x69148, symSize: 0x8 } + - { offsetInCU: 0x743, offset: 0x96DAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x161C, symBinAddr: 0x69150, symSize: 0x8 } + - { offsetInCU: 0x757, offset: 0x96DBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1624, symBinAddr: 0x69158, symSize: 0x8 } + - { offsetInCU: 0x76B, offset: 0x96DD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x162C, symBinAddr: 0x69160, symSize: 0x8 } + - { offsetInCU: 0x77F, offset: 0x96DE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1634, symBinAddr: 0x69168, symSize: 0x8 } + - { offsetInCU: 0x793, offset: 0x96DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x1698, symBinAddr: 0x69170, symSize: 0x20 } + - { offsetInCU: 0x7A7, offset: 0x96E0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOb', symObjAddr: 0x16B8, symBinAddr: 0x69190, symSize: 0x48 } + - { offsetInCU: 0x7BB, offset: 0x96E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOd', symObjAddr: 0x1700, symBinAddr: 0x691D8, symSize: 0x48 } + - { offsetInCU: 0x7CF, offset: 0x96E36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1884, symBinAddr: 0x6934C, symSize: 0x8 } + - { offsetInCU: 0x7E3, offset: 0x96E4A, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x188C, symBinAddr: 0x69354, symSize: 0x10 } + - { offsetInCU: 0x7F7, offset: 0x96E5E, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x189C, symBinAddr: 0x69364, symSize: 0x8 } + - { offsetInCU: 0x840, offset: 0x96EA7, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6936C, symSize: 0x10 } + - { offsetInCU: 0x85C, offset: 0x96EC3, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6936C, symSize: 0x10 } + - { offsetInCU: 0x870, offset: 0x96ED7, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6936C, symSize: 0x10 } + - { offsetInCU: 0x8AF, offset: 0x96F16, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x67BA0, symSize: 0x4 } + - { offsetInCU: 0x8CB, offset: 0x96F32, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x67BA4, symSize: 0x4 } + - { offsetInCU: 0x8E7, offset: 0x96F4E, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x67BA8, symSize: 0x4 } + - { offsetInCU: 0x903, offset: 0x96F6A, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x67BAC, symSize: 0x4 } + - { offsetInCU: 0x91F, offset: 0x96F86, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x67BB0, symSize: 0x4 } + - { offsetInCU: 0x93B, offset: 0x96FA2, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x67BB4, symSize: 0x4 } + - { offsetInCU: 0x957, offset: 0x96FBE, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x67BB8, symSize: 0x4 } + - { offsetInCU: 0x973, offset: 0x96FDA, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x67BBC, symSize: 0xC } + - { offsetInCU: 0x98F, offset: 0x96FF6, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x67BC8, symSize: 0xC } + - { offsetInCU: 0xBEF, offset: 0x97256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xCC, symBinAddr: 0x67C6C, symSize: 0x40 } + - { offsetInCU: 0xCB3, offset: 0x9731A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x10C, symBinAddr: 0x67CAC, symSize: 0x45C } + - { offsetInCU: 0xF32, offset: 0x97599, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x5B8, symBinAddr: 0x68118, symSize: 0x5C } + - { offsetInCU: 0xF98, offset: 0x975FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x614, symBinAddr: 0x68174, symSize: 0x5C } + - { offsetInCU: 0xFFE, offset: 0x97665, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x670, symBinAddr: 0x681D0, symSize: 0x5C } + - { offsetInCU: 0x1064, offset: 0x976CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x6CC, symBinAddr: 0x6822C, symSize: 0x5C } + - { offsetInCU: 0x10CA, offset: 0x97731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x728, symBinAddr: 0x68288, symSize: 0x5C } + - { offsetInCU: 0x1195, offset: 0x977FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x784, symBinAddr: 0x682E4, symSize: 0x44 } + - { offsetInCU: 0x11FF, offset: 0x97866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7C8, symBinAddr: 0x68328, symSize: 0x10 } + - { offsetInCU: 0x1231, offset: 0x97898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7C8, symBinAddr: 0x68328, symSize: 0x10 } + - { offsetInCU: 0x1260, offset: 0x978C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x7D8, symBinAddr: 0x68338, symSize: 0x54 } + - { offsetInCU: 0x12D7, offset: 0x9793E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x93C, symBinAddr: 0x6849C, symSize: 0x34 } + - { offsetInCU: 0x133A, offset: 0x979A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x970, symBinAddr: 0x684D0, symSize: 0x54 } + - { offsetInCU: 0x13B1, offset: 0x97A18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0x9C4, symBinAddr: 0x68524, symSize: 0x4C } + - { offsetInCU: 0x143D, offset: 0x97AA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA10, symBinAddr: 0x68570, symSize: 0x84 } + - { offsetInCU: 0x14D8, offset: 0x97B3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xA94, symBinAddr: 0x685F4, symSize: 0x74 } + - { offsetInCU: 0x1587, offset: 0x97BEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xB08, symBinAddr: 0x68668, symSize: 0x84 } + - { offsetInCU: 0x1622, offset: 0x97C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xB8C, symBinAddr: 0x686EC, symSize: 0x38 } + - { offsetInCU: 0x169F, offset: 0x97D06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBC4, symBinAddr: 0x68724, symSize: 0x38 } + - { offsetInCU: 0x171C, offset: 0x97D83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBFC, symBinAddr: 0x6875C, symSize: 0x38 } + - { offsetInCU: 0x179C, offset: 0x97E03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC34, symBinAddr: 0x68794, symSize: 0x38 } + - { offsetInCU: 0x181C, offset: 0x97E83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC6C, symBinAddr: 0x687CC, symSize: 0x38 } + - { offsetInCU: 0x189C, offset: 0x97F03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCA4, symBinAddr: 0x68804, symSize: 0x38 } + - { offsetInCU: 0x191C, offset: 0x97F83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCDC, symBinAddr: 0x6883C, symSize: 0x38 } + - { offsetInCU: 0x199C, offset: 0x98003, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xD14, symBinAddr: 0x68874, symSize: 0x38 } + - { offsetInCU: 0x19FC, offset: 0x98063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xD4C, symBinAddr: 0x688AC, symSize: 0x44 } + - { offsetInCU: 0x1A93, offset: 0x980FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xD90, symBinAddr: 0x688F0, symSize: 0x13C } + - { offsetInCU: 0x1B64, offset: 0x981CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xECC, symBinAddr: 0x68A2C, symSize: 0xAC } + - { offsetInCU: 0x1C36, offset: 0x9829D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0xF78, symBinAddr: 0x68AD8, symSize: 0x78 } + - { offsetInCU: 0x1CCC, offset: 0x98333, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0xFF0, symBinAddr: 0x68B50, symSize: 0x84 } + - { offsetInCU: 0x1CEF, offset: 0x98356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1074, symBinAddr: 0x68BD4, symSize: 0x20 } + - { offsetInCU: 0x1D34, offset: 0x9839B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x10C0, symBinAddr: 0x68BF4, symSize: 0x254 } + - { offsetInCU: 0x1E2F, offset: 0x98496, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1314, symBinAddr: 0x68E48, symSize: 0x300 } +... diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml new file mode 100644 index 0000000..d1ef89a --- /dev/null +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml @@ -0,0 +1,1621 @@ +--- +triple: 'x86_64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' +relocations: + - { offsetInCU: 0x34, offset: 0x5A510, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x76800, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5A545, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x76838, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x5A5AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x40970, symBinAddr: 0x8D458, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x5A84A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB0F0, symBinAddr: 0xD540, symSize: 0x1BD0 } + - { offsetInCU: 0x1CEF, offset: 0x5C24A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x2510, symSize: 0x40 } + - { offsetInCU: 0x1EAB, offset: 0x5C406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1E50, symBinAddr: 0x42E0, symSize: 0x10 } + - { offsetInCU: 0x1EBF, offset: 0x5C41A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1E60, symBinAddr: 0x42F0, symSize: 0x30 } + - { offsetInCU: 0x1ED3, offset: 0x5C42E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1E90, symBinAddr: 0x4320, symSize: 0x220 } + - { offsetInCU: 0x2374, offset: 0x5C8CF, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x9E00, symBinAddr: 0xC280, symSize: 0x10 } + - { offsetInCU: 0x2388, offset: 0x5C8E3, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x9E10, symBinAddr: 0xC290, symSize: 0x10 } + - { offsetInCU: 0x239C, offset: 0x5C8F7, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x9E20, symBinAddr: 0xC2A0, symSize: 0x20 } + - { offsetInCU: 0x23B0, offset: 0x5C90B, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x9E40, symBinAddr: 0xC2C0, symSize: 0x30 } + - { offsetInCU: 0x25D5, offset: 0x5CB30, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xA4E0, symBinAddr: 0xC930, symSize: 0x20 } + - { offsetInCU: 0x25E9, offset: 0x5CB44, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xA500, symBinAddr: 0xC950, symSize: 0x20 } + - { offsetInCU: 0x25FD, offset: 0x5CB58, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xA550, symBinAddr: 0xC9A0, symSize: 0x20 } + - { offsetInCU: 0x2611, offset: 0x5CB6C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xA570, symBinAddr: 0xC9C0, symSize: 0x20 } + - { offsetInCU: 0x267A, offset: 0x5CBD5, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xA970, symBinAddr: 0xCDC0, symSize: 0x50 } + - { offsetInCU: 0x2CEF, offset: 0x5D24A, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xCE60, symBinAddr: 0xF2B0, symSize: 0x40 } + - { offsetInCU: 0x2D03, offset: 0x5D25E, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xCEA0, symBinAddr: 0xF2F0, symSize: 0x40 } + - { offsetInCU: 0x2D17, offset: 0x5D272, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xCEE0, symBinAddr: 0xF330, symSize: 0x30 } + - { offsetInCU: 0x2D2B, offset: 0x5D286, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xCF10, symBinAddr: 0xF360, symSize: 0x20 } + - { offsetInCU: 0x2D3F, offset: 0x5D29A, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xCF30, symBinAddr: 0xF380, symSize: 0x30 } + - { offsetInCU: 0x2D53, offset: 0x5D2AE, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xCFB0, symBinAddr: 0xF400, symSize: 0x30 } + - { offsetInCU: 0x2D67, offset: 0x5D2C2, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD170, symBinAddr: 0xF5C0, symSize: 0x20 } + - { offsetInCU: 0x2D7B, offset: 0x5D2D6, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD190, symBinAddr: 0xF5E0, symSize: 0x20 } + - { offsetInCU: 0x2D8F, offset: 0x5D2EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xD1B0, symBinAddr: 0xF600, symSize: 0x50 } + - { offsetInCU: 0x2DA3, offset: 0x5D2FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xD200, symBinAddr: 0xF650, symSize: 0x180 } + - { offsetInCU: 0x2DB7, offset: 0x5D312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xD380, symBinAddr: 0xF7D0, symSize: 0x2D0 } + - { offsetInCU: 0x2DCB, offset: 0x5D326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xD650, symBinAddr: 0xFAA0, symSize: 0x70 } + - { offsetInCU: 0x2DDF, offset: 0x5D33A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xD6C0, symBinAddr: 0xFB10, symSize: 0x30 } + - { offsetInCU: 0x2DF3, offset: 0x5D34E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xD6F0, symBinAddr: 0xFB40, symSize: 0xD0 } + - { offsetInCU: 0x2E07, offset: 0x5D362, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xD7C0, symBinAddr: 0xFC10, symSize: 0xB0 } + - { offsetInCU: 0x2E1B, offset: 0x5D376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xD870, symBinAddr: 0xFCC0, symSize: 0x20 } + - { offsetInCU: 0x2E2F, offset: 0x5D38A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xD890, symBinAddr: 0xFCE0, symSize: 0x30 } + - { offsetInCU: 0x2E43, offset: 0x5D39E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xD8F0, symBinAddr: 0xFD40, symSize: 0x50 } + - { offsetInCU: 0x2E57, offset: 0x5D3B2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xD9E0, symBinAddr: 0xFE30, symSize: 0x20 } + - { offsetInCU: 0x2E6B, offset: 0x5D3C6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xDA00, symBinAddr: 0xFE50, symSize: 0x20 } + - { offsetInCU: 0x2E7F, offset: 0x5D3DA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xDA20, symBinAddr: 0xFE70, symSize: 0x20 } + - { offsetInCU: 0x2E93, offset: 0x5D3EE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xDA40, symBinAddr: 0xFE90, symSize: 0x20 } + - { offsetInCU: 0x2EA7, offset: 0x5D402, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xDA60, symBinAddr: 0xFEB0, symSize: 0x20 } + - { offsetInCU: 0x2EBB, offset: 0x5D416, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xDA80, symBinAddr: 0xFED0, symSize: 0x20 } + - { offsetInCU: 0x2ECF, offset: 0x5D42A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xDAA0, symBinAddr: 0xFEF0, symSize: 0x20 } + - { offsetInCU: 0x3219, offset: 0x5D774, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x82B0, symBinAddr: 0xA740, symSize: 0x70 } + - { offsetInCU: 0x332D, offset: 0x5D888, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x9E90, symBinAddr: 0xC310, symSize: 0x80 } + - { offsetInCU: 0x33BE, offset: 0x5D919, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x9F10, symBinAddr: 0xC390, symSize: 0x80 } + - { offsetInCU: 0x345E, offset: 0x5D9B9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9F90, symBinAddr: 0xC410, symSize: 0x10 } + - { offsetInCU: 0x349C, offset: 0x5D9F7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x9FB0, symBinAddr: 0xC430, symSize: 0x10 } + - { offsetInCU: 0x34FF, offset: 0x5DA5A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x9FC0, symBinAddr: 0xC440, symSize: 0x10 } + - { offsetInCU: 0x35B0, offset: 0x5DB0B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x9FD0, symBinAddr: 0xC450, symSize: 0x10 } + - { offsetInCU: 0x3659, offset: 0x5DBB4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x9FE0, symBinAddr: 0xC460, symSize: 0x10 } + - { offsetInCU: 0x3700, offset: 0x5DC5B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x9FF0, symBinAddr: 0xC470, symSize: 0x30 } + - { offsetInCU: 0x3874, offset: 0x5DDCF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA020, symBinAddr: 0xC4A0, symSize: 0x30 } + - { offsetInCU: 0x397B, offset: 0x5DED6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA050, symBinAddr: 0xC4D0, symSize: 0x20 } + - { offsetInCU: 0x3A67, offset: 0x5DFC2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA070, symBinAddr: 0xC4F0, symSize: 0x10 } + - { offsetInCU: 0x3AA5, offset: 0x5E000, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA080, symBinAddr: 0xC500, symSize: 0x10 } + - { offsetInCU: 0x3AE3, offset: 0x5E03E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA090, symBinAddr: 0xC510, symSize: 0x10 } + - { offsetInCU: 0x3B3A, offset: 0x5E095, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA0A0, symBinAddr: 0xC520, symSize: 0x10 } + - { offsetInCU: 0x3BED, offset: 0x5E148, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA0B0, symBinAddr: 0xC530, symSize: 0x20 } + - { offsetInCU: 0x3C6E, offset: 0x5E1C9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA0D0, symBinAddr: 0xC550, symSize: 0x10 } + - { offsetInCU: 0x3D30, offset: 0x5E28B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA0E0, symBinAddr: 0xC560, symSize: 0x20 } + - { offsetInCU: 0x3DCA, offset: 0x5E325, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA100, symBinAddr: 0xC580, symSize: 0x10 } + - { offsetInCU: 0x3E32, offset: 0x5E38D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA110, symBinAddr: 0xC590, symSize: 0x20 } + - { offsetInCU: 0x3E4E, offset: 0x5E3A9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA130, symBinAddr: 0xC5B0, symSize: 0x10 } + - { offsetInCU: 0x3ECA, offset: 0x5E425, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA160, symBinAddr: 0xC5E0, symSize: 0x10 } + - { offsetInCU: 0x3EE6, offset: 0x5E441, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA170, symBinAddr: 0xC5F0, symSize: 0x10 } + - { offsetInCU: 0x3F17, offset: 0x5E472, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA180, symBinAddr: 0xC600, symSize: 0x10 } + - { offsetInCU: 0x3F48, offset: 0x5E4A3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA190, symBinAddr: 0xC610, symSize: 0x10 } + - { offsetInCU: 0x3F79, offset: 0x5E4D4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA1A0, symBinAddr: 0xC620, symSize: 0x30 } + - { offsetInCU: 0x3FA8, offset: 0x5E503, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA1D0, symBinAddr: 0xC650, symSize: 0x30 } + - { offsetInCU: 0x3FD9, offset: 0x5E534, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA200, symBinAddr: 0xC680, symSize: 0x30 } + - { offsetInCU: 0x400A, offset: 0x5E565, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA230, symBinAddr: 0xC6B0, symSize: 0x10 } + - { offsetInCU: 0x403B, offset: 0x5E596, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA240, symBinAddr: 0xC6C0, symSize: 0x10 } + - { offsetInCU: 0x406C, offset: 0x5E5C7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA250, symBinAddr: 0xC6D0, symSize: 0x10 } + - { offsetInCU: 0x409D, offset: 0x5E5F8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA260, symBinAddr: 0xC6E0, symSize: 0x20 } + - { offsetInCU: 0x40CE, offset: 0x5E629, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA280, symBinAddr: 0xC700, symSize: 0x20 } + - { offsetInCU: 0x40FF, offset: 0x5E65A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA2A0, symBinAddr: 0xC720, symSize: 0x10 } + - { offsetInCU: 0x4130, offset: 0x5E68B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA2B0, symBinAddr: 0xC730, symSize: 0x20 } + - { offsetInCU: 0x4161, offset: 0x5E6BC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA2D0, symBinAddr: 0xC750, symSize: 0x10 } + - { offsetInCU: 0x4192, offset: 0x5E6ED, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA2E0, symBinAddr: 0xC760, symSize: 0x20 } + - { offsetInCU: 0x41AE, offset: 0x5E709, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA300, symBinAddr: 0xC780, symSize: 0x10 } + - { offsetInCU: 0x41FE, offset: 0x5E759, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA330, symBinAddr: 0xC7B0, symSize: 0x30 } + - { offsetInCU: 0x4286, offset: 0x5E7E1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA360, symBinAddr: 0xC7E0, symSize: 0x60 } + - { offsetInCU: 0x430A, offset: 0x5E865, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA420, symBinAddr: 0xC8A0, symSize: 0x10 } + - { offsetInCU: 0x4326, offset: 0x5E881, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA430, symBinAddr: 0xC8B0, symSize: 0x10 } + - { offsetInCU: 0x4351, offset: 0x5E8AC, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xA440, symBinAddr: 0xC8C0, symSize: 0x40 } + - { offsetInCU: 0x43DF, offset: 0x5E93A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xA4B0, symBinAddr: 0xC900, symSize: 0x30 } + - { offsetInCU: 0x4410, offset: 0x5E96B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA590, symBinAddr: 0xC9E0, symSize: 0x10 } + - { offsetInCU: 0x4447, offset: 0x5E9A2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xA5A0, symBinAddr: 0xC9F0, symSize: 0x30 } + - { offsetInCU: 0x4487, offset: 0x5E9E2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA5D0, symBinAddr: 0xCA20, symSize: 0x80 } + - { offsetInCU: 0x4549, offset: 0x5EAA4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xA6E0, symBinAddr: 0xCB30, symSize: 0x70 } + - { offsetInCU: 0x4591, offset: 0x5EAEC, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0xAD70, symBinAddr: 0xD1C0, symSize: 0xB0 } + - { offsetInCU: 0x4669, offset: 0x5EBC4, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xAE20, symBinAddr: 0xD270, symSize: 0x190 } + - { offsetInCU: 0x4906, offset: 0x5EE61, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xCCC0, symBinAddr: 0xF110, symSize: 0xD0 } + - { offsetInCU: 0x4A68, offset: 0x5EFC3, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xCD90, symBinAddr: 0xF1E0, symSize: 0xD0 } + - { offsetInCU: 0x4D21, offset: 0x5F27C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA680, symBinAddr: 0xCAD0, symSize: 0x40 } + - { offsetInCU: 0x4D4A, offset: 0x5F2A5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA6C0, symBinAddr: 0xCB10, symSize: 0x20 } + - { offsetInCU: 0x4D85, offset: 0x5F2E0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xA660, symBinAddr: 0xCAB0, symSize: 0x10 } + - { offsetInCU: 0x4DA1, offset: 0x5F2FC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xA670, symBinAddr: 0xCAC0, symSize: 0x10 } + - { offsetInCU: 0x4DCF, offset: 0x5F32A, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xA650, symBinAddr: 0xCAA0, symSize: 0x10 } + - { offsetInCU: 0x4EA7, offset: 0x5F402, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x9FA0, symBinAddr: 0xC420, symSize: 0x10 } + - { offsetInCU: 0x4ECA, offset: 0x5F425, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA140, symBinAddr: 0xC5C0, symSize: 0x10 } + - { offsetInCU: 0x4EE6, offset: 0x5F441, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA150, symBinAddr: 0xC5D0, symSize: 0x10 } + - { offsetInCU: 0x4F4C, offset: 0x5F4A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xC0, symBinAddr: 0x2550, symSize: 0x40 } + - { offsetInCU: 0x4F60, offset: 0x5F4BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x2590, symSize: 0x10 } + - { offsetInCU: 0x4F88, offset: 0x5F4E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x110, symBinAddr: 0x25A0, symSize: 0x320 } + - { offsetInCU: 0x50B7, offset: 0x5F612, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x430, symBinAddr: 0x28C0, symSize: 0x13A0 } + - { offsetInCU: 0x53B8, offset: 0x5F913, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x17D0, symBinAddr: 0x3C60, symSize: 0x660 } + - { offsetInCU: 0x542F, offset: 0x5F98A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1E30, symBinAddr: 0x42C0, symSize: 0x20 } + - { offsetInCU: 0x5459, offset: 0x5F9B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x20B0, symBinAddr: 0x4540, symSize: 0x310 } + - { offsetInCU: 0x558B, offset: 0x5FAE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x23C0, symBinAddr: 0x4850, symSize: 0x480 } + - { offsetInCU: 0x5834, offset: 0x5FD8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2840, symBinAddr: 0x4CD0, symSize: 0x8E0 } + - { offsetInCU: 0x5DF5, offset: 0x60350, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3120, symBinAddr: 0x55B0, symSize: 0x620 } + - { offsetInCU: 0x61D8, offset: 0x60733, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3740, symBinAddr: 0x5BD0, symSize: 0x4B70 } + - { offsetInCU: 0x7228, offset: 0x61783, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8330, symBinAddr: 0xA7B0, symSize: 0x190 } + - { offsetInCU: 0x72F1, offset: 0x6184C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x84C0, symBinAddr: 0xA940, symSize: 0x3B0 } + - { offsetInCU: 0x7555, offset: 0x61AB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8870, symBinAddr: 0xACF0, symSize: 0x480 } + - { offsetInCU: 0x78D9, offset: 0x61E34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8CF0, symBinAddr: 0xB170, symSize: 0x330 } + - { offsetInCU: 0x7A7E, offset: 0x61FD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x92E0, symBinAddr: 0xB760, symSize: 0x380 } + - { offsetInCU: 0x7BA1, offset: 0x620FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x9660, symBinAddr: 0xBAE0, symSize: 0x560 } + - { offsetInCU: 0x7E14, offset: 0x6236F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x9BC0, symBinAddr: 0xC040, symSize: 0x1C0 } + - { offsetInCU: 0x8118, offset: 0x62673, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xA750, symBinAddr: 0xCBA0, symSize: 0x220 } + - { offsetInCU: 0x81B1, offset: 0x6270C, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xAB10, symBinAddr: 0xCF60, symSize: 0x260 } + - { offsetInCU: 0x27, offset: 0x62A1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xFF40, symSize: 0x20 } + - { offsetInCU: 0x62, offset: 0x62A5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0xFF60, symSize: 0x14 } + - { offsetInCU: 0x149, offset: 0x62B41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xFF40, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x62BAC, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0xFFB0, symSize: 0x10 } + - { offsetInCU: 0x57, offset: 0x62BC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0xFFF0, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x62C32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x150, symBinAddr: 0x100D0, symSize: 0x10 } + - { offsetInCU: 0x11C, offset: 0x62C85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x170, symBinAddr: 0x100F0, symSize: 0x20 } + - { offsetInCU: 0x196, offset: 0x62CFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0x10120, symSize: 0x10 } + - { offsetInCU: 0x1CB, offset: 0x62D34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B0, symBinAddr: 0x10130, symSize: 0x20 } + - { offsetInCU: 0x1FC, offset: 0x62D65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D0, symBinAddr: 0x10150, symSize: 0x10 } + - { offsetInCU: 0x218, offset: 0x62D81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E0, symBinAddr: 0x10160, symSize: 0x10 } + - { offsetInCU: 0x234, offset: 0x62D9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x25B0, symBinAddr: 0x12530, symSize: 0x370 } + - { offsetInCU: 0x3E4, offset: 0x62F4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1520, symBinAddr: 0x114A0, symSize: 0x50 } + - { offsetInCU: 0x41B, offset: 0x62F84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1570, symBinAddr: 0x114F0, symSize: 0x50 } + - { offsetInCU: 0x43E, offset: 0x62FA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2920, symBinAddr: 0x128A0, symSize: 0x14F0 } + - { offsetInCU: 0x49C, offset: 0x63005, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C0, symBinAddr: 0x11540, symSize: 0x10 } + - { offsetInCU: 0x4F4, offset: 0x6305D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x15D0, symBinAddr: 0x11550, symSize: 0x30 } + - { offsetInCU: 0x5D8, offset: 0x63141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1600, symBinAddr: 0x11580, symSize: 0x20 } + - { offsetInCU: 0x64A, offset: 0x631B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1650, symBinAddr: 0x115D0, symSize: 0x20 } + - { offsetInCU: 0x699, offset: 0x63202, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1670, symBinAddr: 0x115F0, symSize: 0x70 } + - { offsetInCU: 0x6F3, offset: 0x6325C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x11660, symSize: 0x10 } + - { offsetInCU: 0x70F, offset: 0x63278, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x11670, symSize: 0x10 } + - { offsetInCU: 0x74C, offset: 0x632B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x116C0, symSize: 0x50 } + - { offsetInCU: 0x783, offset: 0x632EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x11710, symSize: 0x50 } + - { offsetInCU: 0x7A6, offset: 0x6330F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3E10, symBinAddr: 0x13D90, symSize: 0x3A0 } + - { offsetInCU: 0x841, offset: 0x633AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x11780, symSize: 0x70 } + - { offsetInCU: 0x876, offset: 0x633DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1870, symBinAddr: 0x117F0, symSize: 0x20 } + - { offsetInCU: 0x8A7, offset: 0x63410, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1890, symBinAddr: 0x11810, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x6342C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18A0, symBinAddr: 0x11820, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x63448, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6630, symBinAddr: 0x16560, symSize: 0x170 } + - { offsetInCU: 0x9A8, offset: 0x63511, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x11870, symSize: 0x50 } + - { offsetInCU: 0x9DF, offset: 0x63548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1940, symBinAddr: 0x118C0, symSize: 0x50 } + - { offsetInCU: 0xA02, offset: 0x6356B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x67A0, symBinAddr: 0x166D0, symSize: 0x320 } + - { offsetInCU: 0xA71, offset: 0x635DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x19B0, symBinAddr: 0x11930, symSize: 0x70 } + - { offsetInCU: 0xAA6, offset: 0x6360F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x119A0, symSize: 0x20 } + - { offsetInCU: 0xAD7, offset: 0x63640, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x119C0, symSize: 0x10 } + - { offsetInCU: 0xAF3, offset: 0x6365C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x119D0, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x63678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6AC0, symBinAddr: 0x169F0, symSize: 0x130 } + - { offsetInCU: 0xBBF, offset: 0x63728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x11A20, symSize: 0x40 } + - { offsetInCU: 0xBF6, offset: 0x6375F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AE0, symBinAddr: 0x11A60, symSize: 0x40 } + - { offsetInCU: 0xC19, offset: 0x63782, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6BF0, symBinAddr: 0x16B20, symSize: 0x310 } + - { offsetInCU: 0xC7C, offset: 0x637E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B40, symBinAddr: 0x11AC0, symSize: 0x60 } + - { offsetInCU: 0xCB1, offset: 0x6381A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x11B20, symSize: 0x20 } + - { offsetInCU: 0xCE2, offset: 0x6384B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC0, symBinAddr: 0x11B40, symSize: 0x10 } + - { offsetInCU: 0xCFE, offset: 0x63867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x11B50, symSize: 0x10 } + - { offsetInCU: 0xD1A, offset: 0x63883, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6F00, symBinAddr: 0x16E30, symSize: 0x130 } + - { offsetInCU: 0xDCA, offset: 0x63933, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C20, symBinAddr: 0x11BA0, symSize: 0x50 } + - { offsetInCU: 0xE01, offset: 0x6396A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C70, symBinAddr: 0x11BF0, symSize: 0x50 } + - { offsetInCU: 0xE24, offset: 0x6398D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7030, symBinAddr: 0x16F60, symSize: 0x580 } + - { offsetInCU: 0xE93, offset: 0x639FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0x11C60, symSize: 0x90 } + - { offsetInCU: 0xEC8, offset: 0x63A31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D70, symBinAddr: 0x11CF0, symSize: 0x20 } + - { offsetInCU: 0xEF9, offset: 0x63A62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D90, symBinAddr: 0x11D10, symSize: 0x10 } + - { offsetInCU: 0xF15, offset: 0x63A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DA0, symBinAddr: 0x11D20, symSize: 0x10 } + - { offsetInCU: 0xF31, offset: 0x63A9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7640, symBinAddr: 0x17570, symSize: 0x220 } + - { offsetInCU: 0x1045, offset: 0x63BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DF0, symBinAddr: 0x11D70, symSize: 0x60 } + - { offsetInCU: 0x107C, offset: 0x63BE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E50, symBinAddr: 0x11DD0, symSize: 0x70 } + - { offsetInCU: 0x109F, offset: 0x63C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7860, symBinAddr: 0x17790, symSize: 0x660 } + - { offsetInCU: 0x112C, offset: 0x63C95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1EC0, symBinAddr: 0x11E40, symSize: 0x10 } + - { offsetInCU: 0x11A4, offset: 0x63D0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1ED0, symBinAddr: 0x11E50, symSize: 0x40 } + - { offsetInCU: 0x1288, offset: 0x63DF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1F10, symBinAddr: 0x11E90, symSize: 0x20 } + - { offsetInCU: 0x130E, offset: 0x63E77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F70, symBinAddr: 0x11EF0, symSize: 0x30 } + - { offsetInCU: 0x1358, offset: 0x63EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FA0, symBinAddr: 0x11F20, symSize: 0x20 } + - { offsetInCU: 0x1389, offset: 0x63EF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FC0, symBinAddr: 0x11F40, symSize: 0x10 } + - { offsetInCU: 0x13A5, offset: 0x63F0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FD0, symBinAddr: 0x11F50, symSize: 0x10 } + - { offsetInCU: 0x13C1, offset: 0x63F2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7EF0, symBinAddr: 0x17E20, symSize: 0xB0 } + - { offsetInCU: 0x143F, offset: 0x63FA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2020, symBinAddr: 0x11FA0, symSize: 0x30 } + - { offsetInCU: 0x1476, offset: 0x63FDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2050, symBinAddr: 0x11FD0, symSize: 0x20 } + - { offsetInCU: 0x1499, offset: 0x64002, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x17ED0, symSize: 0x180 } + - { offsetInCU: 0x1514, offset: 0x6407D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x2090, symBinAddr: 0x12010, symSize: 0x80 } + - { offsetInCU: 0x1549, offset: 0x640B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2110, symBinAddr: 0x12090, symSize: 0x20 } + - { offsetInCU: 0x157A, offset: 0x640E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x2130, symBinAddr: 0x120B0, symSize: 0x10 } + - { offsetInCU: 0x1596, offset: 0x640FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x120C0, symSize: 0x10 } + - { offsetInCU: 0x15B2, offset: 0x6411B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x8150, symBinAddr: 0x18080, symSize: 0x1F0 } + - { offsetInCU: 0x16AD, offset: 0x64216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2190, symBinAddr: 0x12110, symSize: 0x50 } + - { offsetInCU: 0x16E4, offset: 0x6424D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21E0, symBinAddr: 0x12160, symSize: 0x50 } + - { offsetInCU: 0x1707, offset: 0x64270, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x18270, symSize: 0x3A0 } + - { offsetInCU: 0x176A, offset: 0x642D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2250, symBinAddr: 0x121D0, symSize: 0x80 } + - { offsetInCU: 0x179F, offset: 0x64308, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x22D0, symBinAddr: 0x12250, symSize: 0x20 } + - { offsetInCU: 0x17D0, offset: 0x64339, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22F0, symBinAddr: 0x12270, symSize: 0x10 } + - { offsetInCU: 0x17EC, offset: 0x64355, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2300, symBinAddr: 0x12280, symSize: 0x10 } + - { offsetInCU: 0x1808, offset: 0x64371, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x86E0, symBinAddr: 0x18610, symSize: 0x1A0 } + - { offsetInCU: 0x18EA, offset: 0x64453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2350, symBinAddr: 0x122D0, symSize: 0x50 } + - { offsetInCU: 0x1921, offset: 0x6448A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A0, symBinAddr: 0x12320, symSize: 0x50 } + - { offsetInCU: 0x1944, offset: 0x644AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8880, symBinAddr: 0x187B0, symSize: 0x3D0 } + - { offsetInCU: 0x19C7, offset: 0x64530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x12410, symSize: 0x20 } + - { offsetInCU: 0x1A11, offset: 0x6457A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24B0, symBinAddr: 0x12430, symSize: 0x20 } + - { offsetInCU: 0x1A42, offset: 0x645AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24D0, symBinAddr: 0x12450, symSize: 0x10 } + - { offsetInCU: 0x1A5E, offset: 0x645C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24E0, symBinAddr: 0x12460, symSize: 0x10 } + - { offsetInCU: 0x1A7A, offset: 0x645E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8CB0, symBinAddr: 0x18BE0, symSize: 0xF0 } + - { offsetInCU: 0x1B11, offset: 0x6467A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2530, symBinAddr: 0x124B0, symSize: 0x40 } + - { offsetInCU: 0x1B48, offset: 0x646B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2570, symBinAddr: 0x124F0, symSize: 0x40 } + - { offsetInCU: 0x1B6B, offset: 0x646D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DA0, symBinAddr: 0x18CD0, symSize: 0x1C0 } + - { offsetInCU: 0x1BA8, offset: 0x64711, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x41F0, symBinAddr: 0x14130, symSize: 0x30 } + - { offsetInCU: 0x1BBC, offset: 0x64725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x4220, symBinAddr: 0x14160, symSize: 0x30 } + - { offsetInCU: 0x1BD0, offset: 0x64739, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x4250, symBinAddr: 0x14190, symSize: 0x30 } + - { offsetInCU: 0x1BE4, offset: 0x6474D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x4280, symBinAddr: 0x141C0, symSize: 0x30 } + - { offsetInCU: 0x1BF8, offset: 0x64761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x42B0, symBinAddr: 0x141F0, symSize: 0x30 } + - { offsetInCU: 0x1C0C, offset: 0x64775, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x42E0, symBinAddr: 0x14220, symSize: 0x10 } + - { offsetInCU: 0x1C20, offset: 0x64789, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4300, symBinAddr: 0x14230, symSize: 0x50 } + - { offsetInCU: 0x1C34, offset: 0x6479D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4350, symBinAddr: 0x14280, symSize: 0xA0 } + - { offsetInCU: 0x1C48, offset: 0x647B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x43F0, symBinAddr: 0x14320, symSize: 0x10 } + - { offsetInCU: 0x1C5C, offset: 0x647C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4400, symBinAddr: 0x14330, symSize: 0x10 } + - { offsetInCU: 0x1C70, offset: 0x647D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4410, symBinAddr: 0x14340, symSize: 0x10 } + - { offsetInCU: 0x1C84, offset: 0x647ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4420, symBinAddr: 0x14350, symSize: 0x10 } + - { offsetInCU: 0x1C98, offset: 0x64801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x4430, symBinAddr: 0x14360, symSize: 0x30 } + - { offsetInCU: 0x1CAC, offset: 0x64815, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x5180, symBinAddr: 0x150B0, symSize: 0x10 } + - { offsetInCU: 0x1CC0, offset: 0x64829, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5190, symBinAddr: 0x150C0, symSize: 0x10 } + - { offsetInCU: 0x1CD4, offset: 0x6483D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x51A0, symBinAddr: 0x150D0, symSize: 0x30 } + - { offsetInCU: 0x1CE8, offset: 0x64851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x51D0, symBinAddr: 0x15100, symSize: 0x10 } + - { offsetInCU: 0x1CFC, offset: 0x64865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x51E0, symBinAddr: 0x15110, symSize: 0x30 } + - { offsetInCU: 0x1D10, offset: 0x64879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5210, symBinAddr: 0x15140, symSize: 0x10 } + - { offsetInCU: 0x1D24, offset: 0x6488D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x5220, symBinAddr: 0x15150, symSize: 0x30 } + - { offsetInCU: 0x1D38, offset: 0x648A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x5250, symBinAddr: 0x15180, symSize: 0x30 } + - { offsetInCU: 0x1D4C, offset: 0x648B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x5280, symBinAddr: 0x151B0, symSize: 0x30 } + - { offsetInCU: 0x1D60, offset: 0x648C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x52B0, symBinAddr: 0x151E0, symSize: 0x30 } + - { offsetInCU: 0x1D74, offset: 0x648DD, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x52E0, symBinAddr: 0x15210, symSize: 0x40 } + - { offsetInCU: 0x1D88, offset: 0x648F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x5320, symBinAddr: 0x15250, symSize: 0x30 } + - { offsetInCU: 0x1D9C, offset: 0x64905, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x5350, symBinAddr: 0x15280, symSize: 0x30 } + - { offsetInCU: 0x1DB0, offset: 0x64919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x5380, symBinAddr: 0x152B0, symSize: 0x30 } + - { offsetInCU: 0x1DC4, offset: 0x6492D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x53B0, symBinAddr: 0x152E0, symSize: 0x30 } + - { offsetInCU: 0x1DD8, offset: 0x64941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x53E0, symBinAddr: 0x15310, symSize: 0x30 } + - { offsetInCU: 0x1DEC, offset: 0x64955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x5410, symBinAddr: 0x15340, symSize: 0x30 } + - { offsetInCU: 0x1E00, offset: 0x64969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x5440, symBinAddr: 0x15370, symSize: 0x30 } + - { offsetInCU: 0x1E14, offset: 0x6497D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x5470, symBinAddr: 0x153A0, symSize: 0x30 } + - { offsetInCU: 0x1E28, offset: 0x64991, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x54A0, symBinAddr: 0x153D0, symSize: 0x10 } + - { offsetInCU: 0x1E3C, offset: 0x649A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x54B0, symBinAddr: 0x153E0, symSize: 0x80 } + - { offsetInCU: 0x1E50, offset: 0x649B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x5530, symBinAddr: 0x15460, symSize: 0xD0 } + - { offsetInCU: 0x1E64, offset: 0x649CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x5600, symBinAddr: 0x15530, symSize: 0x10 } + - { offsetInCU: 0x1E78, offset: 0x649E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x5610, symBinAddr: 0x15540, symSize: 0x10 } + - { offsetInCU: 0x1E8C, offset: 0x649F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x5620, symBinAddr: 0x15550, symSize: 0x10 } + - { offsetInCU: 0x1EA0, offset: 0x64A09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x5630, symBinAddr: 0x15560, symSize: 0x10 } + - { offsetInCU: 0x1EB4, offset: 0x64A1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x5640, symBinAddr: 0x15570, symSize: 0x30 } + - { offsetInCU: 0x1EC8, offset: 0x64A31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x5670, symBinAddr: 0x155A0, symSize: 0x40 } + - { offsetInCU: 0x1EDC, offset: 0x64A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x56B0, symBinAddr: 0x155E0, symSize: 0x70 } + - { offsetInCU: 0x1EF0, offset: 0x64A59, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5720, symBinAddr: 0x15650, symSize: 0x20 } + - { offsetInCU: 0x1F04, offset: 0x64A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x5740, symBinAddr: 0x15670, symSize: 0x50 } + - { offsetInCU: 0x1F18, offset: 0x64A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x5790, symBinAddr: 0x156C0, symSize: 0x40 } + - { offsetInCU: 0x1F2C, offset: 0x64A95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x57D0, symBinAddr: 0x15700, symSize: 0x40 } + - { offsetInCU: 0x1F40, offset: 0x64AA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x5810, symBinAddr: 0x15740, symSize: 0x10 } + - { offsetInCU: 0x1F54, offset: 0x64ABD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x5820, symBinAddr: 0x15750, symSize: 0x40 } + - { offsetInCU: 0x1F68, offset: 0x64AD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5860, symBinAddr: 0x15790, symSize: 0x80 } + - { offsetInCU: 0x1F7C, offset: 0x64AE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x58E0, symBinAddr: 0x15810, symSize: 0xB0 } + - { offsetInCU: 0x1F90, offset: 0x64AF9, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5990, symBinAddr: 0x158C0, symSize: 0x30 } + - { offsetInCU: 0x1FA4, offset: 0x64B0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x59C0, symBinAddr: 0x158F0, symSize: 0x80 } + - { offsetInCU: 0x1FB8, offset: 0x64B21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5A40, symBinAddr: 0x15970, symSize: 0x40 } + - { offsetInCU: 0x1FCC, offset: 0x64B35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5A80, symBinAddr: 0x159B0, symSize: 0x50 } + - { offsetInCU: 0x1FE0, offset: 0x64B49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x5AD0, symBinAddr: 0x15A00, symSize: 0x10 } + - { offsetInCU: 0x1FF4, offset: 0x64B5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x5AE0, symBinAddr: 0x15A10, symSize: 0x30 } + - { offsetInCU: 0x2008, offset: 0x64B71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x5B10, symBinAddr: 0x15A40, symSize: 0x40 } + - { offsetInCU: 0x201C, offset: 0x64B85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5B50, symBinAddr: 0x15A80, symSize: 0x60 } + - { offsetInCU: 0x2030, offset: 0x64B99, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5BB0, symBinAddr: 0x15AE0, symSize: 0x20 } + - { offsetInCU: 0x2044, offset: 0x64BAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5BD0, symBinAddr: 0x15B00, symSize: 0x50 } + - { offsetInCU: 0x2058, offset: 0x64BC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5C20, symBinAddr: 0x15B50, symSize: 0x40 } + - { offsetInCU: 0x206C, offset: 0x64BD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x5C60, symBinAddr: 0x15B90, symSize: 0x50 } + - { offsetInCU: 0x2080, offset: 0x64BE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5CB0, symBinAddr: 0x15BE0, symSize: 0x10 } + - { offsetInCU: 0x2094, offset: 0x64BFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x5CC0, symBinAddr: 0x15BF0, symSize: 0x50 } + - { offsetInCU: 0x20A8, offset: 0x64C11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x5D10, symBinAddr: 0x15C40, symSize: 0xE0 } + - { offsetInCU: 0x20BC, offset: 0x64C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5DF0, symBinAddr: 0x15D20, symSize: 0x110 } + - { offsetInCU: 0x20D0, offset: 0x64C39, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5F00, symBinAddr: 0x15E30, symSize: 0x50 } + - { offsetInCU: 0x20E4, offset: 0x64C4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5F50, symBinAddr: 0x15E80, symSize: 0xD0 } + - { offsetInCU: 0x20F8, offset: 0x64C61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x6020, symBinAddr: 0x15F50, symSize: 0x40 } + - { offsetInCU: 0x210C, offset: 0x64C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x6060, symBinAddr: 0x15F90, symSize: 0x60 } + - { offsetInCU: 0x2120, offset: 0x64C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x60C0, symBinAddr: 0x15FF0, symSize: 0x10 } + - { offsetInCU: 0x2134, offset: 0x64C9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x60D0, symBinAddr: 0x16000, symSize: 0x60 } + - { offsetInCU: 0x2148, offset: 0x64CB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x6130, symBinAddr: 0x16060, symSize: 0x110 } + - { offsetInCU: 0x215C, offset: 0x64CC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x6240, symBinAddr: 0x16170, symSize: 0x160 } + - { offsetInCU: 0x2170, offset: 0x64CD9, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x63A0, symBinAddr: 0x162D0, symSize: 0x10 } + - { offsetInCU: 0x2184, offset: 0x64CED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x63B0, symBinAddr: 0x162E0, symSize: 0x100 } + - { offsetInCU: 0x2198, offset: 0x64D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x64B0, symBinAddr: 0x163E0, symSize: 0x40 } + - { offsetInCU: 0x21AC, offset: 0x64D15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x64F0, symBinAddr: 0x16420, symSize: 0x70 } + - { offsetInCU: 0x21C0, offset: 0x64D29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x6560, symBinAddr: 0x16490, symSize: 0x10 } + - { offsetInCU: 0x21D4, offset: 0x64D3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x6570, symBinAddr: 0x164A0, symSize: 0x10 } + - { offsetInCU: 0x21E8, offset: 0x64D51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x6580, symBinAddr: 0x164B0, symSize: 0x30 } + - { offsetInCU: 0x21FC, offset: 0x64D65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x65B0, symBinAddr: 0x164E0, symSize: 0x10 } + - { offsetInCU: 0x2210, offset: 0x64D79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x65C0, symBinAddr: 0x164F0, symSize: 0x30 } + - { offsetInCU: 0x2224, offset: 0x64D8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x65F0, symBinAddr: 0x16520, symSize: 0x10 } + - { offsetInCU: 0x2238, offset: 0x64DA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x6600, symBinAddr: 0x16530, symSize: 0x30 } + - { offsetInCU: 0x224C, offset: 0x64DB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x75B0, symBinAddr: 0x174E0, symSize: 0x30 } + - { offsetInCU: 0x2260, offset: 0x64DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x75E0, symBinAddr: 0x17510, symSize: 0x30 } + - { offsetInCU: 0x2274, offset: 0x64DDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x7610, symBinAddr: 0x17540, symSize: 0x30 } + - { offsetInCU: 0x2288, offset: 0x64DF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7EC0, symBinAddr: 0x17DF0, symSize: 0x30 } + - { offsetInCU: 0x229C, offset: 0x64E05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8120, symBinAddr: 0x18050, symSize: 0x30 } + - { offsetInCU: 0x22B0, offset: 0x64E19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8C50, symBinAddr: 0x18B80, symSize: 0x30 } + - { offsetInCU: 0x22C4, offset: 0x64E2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8C80, symBinAddr: 0x18BB0, symSize: 0x30 } + - { offsetInCU: 0x22D8, offset: 0x64E41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8F60, symBinAddr: 0x18E90, symSize: 0x30 } + - { offsetInCU: 0x22EC, offset: 0x64E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8F90, symBinAddr: 0x18EC0, symSize: 0x30 } + - { offsetInCU: 0x2300, offset: 0x64E69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x8FC0, symBinAddr: 0x18EF0, symSize: 0x30 } + - { offsetInCU: 0x2314, offset: 0x64E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x9050, symBinAddr: 0x18F80, symSize: 0x30 } + - { offsetInCU: 0x2328, offset: 0x64E91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9080, symBinAddr: 0x18FB0, symSize: 0x80 } + - { offsetInCU: 0x233C, offset: 0x64EA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9100, symBinAddr: 0x19030, symSize: 0xD0 } + - { offsetInCU: 0x2350, offset: 0x64EB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x91D0, symBinAddr: 0x19100, symSize: 0x10 } + - { offsetInCU: 0x2364, offset: 0x64ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x91E0, symBinAddr: 0x19110, symSize: 0x10 } + - { offsetInCU: 0x2378, offset: 0x64EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x91F0, symBinAddr: 0x19120, symSize: 0x80 } + - { offsetInCU: 0x238C, offset: 0x64EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9270, symBinAddr: 0x191A0, symSize: 0xD0 } + - { offsetInCU: 0x23A0, offset: 0x64F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9340, symBinAddr: 0x19270, symSize: 0x10 } + - { offsetInCU: 0x23B4, offset: 0x64F1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9350, symBinAddr: 0x19280, symSize: 0x10 } + - { offsetInCU: 0x23C8, offset: 0x64F31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9360, symBinAddr: 0x19290, symSize: 0x80 } + - { offsetInCU: 0x23DC, offset: 0x64F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x93E0, symBinAddr: 0x19310, symSize: 0xD0 } + - { offsetInCU: 0x23F0, offset: 0x64F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x94B0, symBinAddr: 0x193E0, symSize: 0x10 } + - { offsetInCU: 0x2404, offset: 0x64F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x94C0, symBinAddr: 0x193F0, symSize: 0x10 } + - { offsetInCU: 0x2418, offset: 0x64F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x94D0, symBinAddr: 0x19400, symSize: 0x10 } + - { offsetInCU: 0x242C, offset: 0x64F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x94E0, symBinAddr: 0x19410, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x64FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x94F0, symBinAddr: 0x19420, symSize: 0x80 } + - { offsetInCU: 0x2454, offset: 0x64FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9570, symBinAddr: 0x194A0, symSize: 0xD0 } + - { offsetInCU: 0x2468, offset: 0x64FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9640, symBinAddr: 0x19570, symSize: 0x10 } + - { offsetInCU: 0x247C, offset: 0x64FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9650, symBinAddr: 0x19580, symSize: 0x10 } + - { offsetInCU: 0x2490, offset: 0x64FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9680, symBinAddr: 0x195B0, symSize: 0x10 } + - { offsetInCU: 0x24A4, offset: 0x6500D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9690, symBinAddr: 0x195C0, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x65021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x96A0, symBinAddr: 0x195D0, symSize: 0x40 } + - { offsetInCU: 0x24CC, offset: 0x65035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x96E0, symBinAddr: 0x19610, symSize: 0x80 } + - { offsetInCU: 0x24E0, offset: 0x65049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x9760, symBinAddr: 0x19690, symSize: 0xC0 } + - { offsetInCU: 0x24F4, offset: 0x6505D, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9820, symBinAddr: 0x19750, symSize: 0x40 } + - { offsetInCU: 0x2508, offset: 0x65071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x9860, symBinAddr: 0x19790, symSize: 0x90 } + - { offsetInCU: 0x251C, offset: 0x65085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x98F0, symBinAddr: 0x19820, symSize: 0x40 } + - { offsetInCU: 0x2530, offset: 0x65099, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x9930, symBinAddr: 0x19860, symSize: 0x50 } + - { offsetInCU: 0x2544, offset: 0x650AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x9980, symBinAddr: 0x198B0, symSize: 0x10 } + - { offsetInCU: 0x2558, offset: 0x650C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x9990, symBinAddr: 0x198C0, symSize: 0x40 } + - { offsetInCU: 0x256C, offset: 0x650D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x99D0, symBinAddr: 0x19900, symSize: 0x80 } + - { offsetInCU: 0x2580, offset: 0x650E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x9A50, symBinAddr: 0x19980, symSize: 0xA0 } + - { offsetInCU: 0x2594, offset: 0x650FD, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9AF0, symBinAddr: 0x19A20, symSize: 0x30 } + - { offsetInCU: 0x25A8, offset: 0x65111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x9B20, symBinAddr: 0x19A50, symSize: 0x80 } + - { offsetInCU: 0x25BC, offset: 0x65125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x9BA0, symBinAddr: 0x19AD0, symSize: 0x40 } + - { offsetInCU: 0x25D0, offset: 0x65139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9BE0, symBinAddr: 0x19B10, symSize: 0x50 } + - { offsetInCU: 0x25E4, offset: 0x6514D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x9C30, symBinAddr: 0x19B60, symSize: 0x10 } + - { offsetInCU: 0x25F8, offset: 0x65161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x9C40, symBinAddr: 0x19B70, symSize: 0x40 } + - { offsetInCU: 0x260C, offset: 0x65175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x9C80, symBinAddr: 0x19BB0, symSize: 0x80 } + - { offsetInCU: 0x2620, offset: 0x65189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9D00, symBinAddr: 0x19C30, symSize: 0xB0 } + - { offsetInCU: 0x2634, offset: 0x6519D, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9DB0, symBinAddr: 0x19CE0, symSize: 0x30 } + - { offsetInCU: 0x2648, offset: 0x651B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x9DE0, symBinAddr: 0x19D10, symSize: 0x80 } + - { offsetInCU: 0x265C, offset: 0x651C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9E60, symBinAddr: 0x19D90, symSize: 0x40 } + - { offsetInCU: 0x2670, offset: 0x651D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x9EA0, symBinAddr: 0x19DD0, symSize: 0x50 } + - { offsetInCU: 0x2684, offset: 0x651ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9EF0, symBinAddr: 0x19E20, symSize: 0x10 } + - { offsetInCU: 0x2698, offset: 0x65201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F00, symBinAddr: 0x19E30, symSize: 0x10 } + - { offsetInCU: 0x26AC, offset: 0x65215, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9F10, symBinAddr: 0x19E40, symSize: 0x30 } + - { offsetInCU: 0x26C0, offset: 0x65229, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F40, symBinAddr: 0x19E70, symSize: 0x10 } + - { offsetInCU: 0x26D4, offset: 0x6523D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9F50, symBinAddr: 0x19E80, symSize: 0x30 } + - { offsetInCU: 0x26E8, offset: 0x65251, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F80, symBinAddr: 0x19EB0, symSize: 0x10 } + - { offsetInCU: 0x26FC, offset: 0x65265, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x19EC0, symSize: 0x30 } + - { offsetInCU: 0x2710, offset: 0x65279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9FC0, symBinAddr: 0x19EF0, symSize: 0x10 } + - { offsetInCU: 0x2724, offset: 0x6528D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9FD0, symBinAddr: 0x19F00, symSize: 0x30 } + - { offsetInCU: 0x2738, offset: 0x652A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA000, symBinAddr: 0x19F30, symSize: 0x10 } + - { offsetInCU: 0x274C, offset: 0x652B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0xA010, symBinAddr: 0x19F40, symSize: 0x30 } + - { offsetInCU: 0x2760, offset: 0x652C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA040, symBinAddr: 0x19F70, symSize: 0x10 } + - { offsetInCU: 0x2774, offset: 0x652DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA050, symBinAddr: 0x19F80, symSize: 0x30 } + - { offsetInCU: 0x2788, offset: 0x652F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA080, symBinAddr: 0x19FB0, symSize: 0x10 } + - { offsetInCU: 0x279C, offset: 0x65305, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x19FC0, symSize: 0x30 } + - { offsetInCU: 0x27B0, offset: 0x65319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0C0, symBinAddr: 0x19FF0, symSize: 0x10 } + - { offsetInCU: 0x27C4, offset: 0x6532D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0D0, symBinAddr: 0x1A000, symSize: 0x30 } + - { offsetInCU: 0x27D8, offset: 0x65341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA100, symBinAddr: 0x1A030, symSize: 0x10 } + - { offsetInCU: 0x27EC, offset: 0x65355, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA110, symBinAddr: 0x1A040, symSize: 0x30 } + - { offsetInCU: 0x2800, offset: 0x65369, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA140, symBinAddr: 0x1A070, symSize: 0x10 } + - { offsetInCU: 0x2814, offset: 0x6537D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA150, symBinAddr: 0x1A080, symSize: 0x30 } + - { offsetInCU: 0x2828, offset: 0x65391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA180, symBinAddr: 0x1A0B0, symSize: 0x10 } + - { offsetInCU: 0x283C, offset: 0x653A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA190, symBinAddr: 0x1A0C0, symSize: 0x30 } + - { offsetInCU: 0x2850, offset: 0x653B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA1C0, symBinAddr: 0x1A0F0, symSize: 0x10 } + - { offsetInCU: 0x2864, offset: 0x653CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x1A100, symSize: 0x30 } + - { offsetInCU: 0x2878, offset: 0x653E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA200, symBinAddr: 0x1A130, symSize: 0x10 } + - { offsetInCU: 0x288C, offset: 0x653F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA210, symBinAddr: 0x1A140, symSize: 0x30 } + - { offsetInCU: 0x28A0, offset: 0x65409, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA240, symBinAddr: 0x1A170, symSize: 0x10 } + - { offsetInCU: 0x28B4, offset: 0x6541D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA250, symBinAddr: 0x1A180, symSize: 0x30 } + - { offsetInCU: 0x28C8, offset: 0x65431, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA280, symBinAddr: 0x1A1B0, symSize: 0x10 } + - { offsetInCU: 0x28DC, offset: 0x65445, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA290, symBinAddr: 0x1A1C0, symSize: 0x30 } + - { offsetInCU: 0x28F0, offset: 0x65459, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0xA2C0, symBinAddr: 0x1A1F0, symSize: 0x30 } + - { offsetInCU: 0x2904, offset: 0x6546D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0xA2F0, symBinAddr: 0x1A220, symSize: 0x30 } + - { offsetInCU: 0x2918, offset: 0x65481, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0xA320, symBinAddr: 0x1A250, symSize: 0x30 } + - { offsetInCU: 0x292C, offset: 0x65495, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0xA350, symBinAddr: 0x1A280, symSize: 0x80 } + - { offsetInCU: 0x2940, offset: 0x654A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA3D0, symBinAddr: 0x1A300, symSize: 0xD0 } + - { offsetInCU: 0x2954, offset: 0x654BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA4A0, symBinAddr: 0x1A3D0, symSize: 0x10 } + - { offsetInCU: 0x2968, offset: 0x654D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA4B0, symBinAddr: 0x1A3E0, symSize: 0x10 } + - { offsetInCU: 0x297C, offset: 0x654E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA630, symBinAddr: 0x1A560, symSize: 0x10 } + - { offsetInCU: 0x2990, offset: 0x654F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA640, symBinAddr: 0x1A570, symSize: 0x10 } + - { offsetInCU: 0x29A4, offset: 0x6550D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0xA650, symBinAddr: 0x1A580, symSize: 0x80 } + - { offsetInCU: 0x29B8, offset: 0x65521, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA6D0, symBinAddr: 0x1A600, symSize: 0xD0 } + - { offsetInCU: 0x29CC, offset: 0x65535, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA7A0, symBinAddr: 0x1A6D0, symSize: 0x10 } + - { offsetInCU: 0x29E0, offset: 0x65549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA7B0, symBinAddr: 0x1A6E0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x6555D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA7C0, symBinAddr: 0x1A6F0, symSize: 0x10 } + - { offsetInCU: 0x2A08, offset: 0x65571, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA7D0, symBinAddr: 0x1A700, symSize: 0x30 } + - { offsetInCU: 0x2A1C, offset: 0x65585, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA800, symBinAddr: 0x1A730, symSize: 0x10 } + - { offsetInCU: 0x2A30, offset: 0x65599, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA810, symBinAddr: 0x1A740, symSize: 0x30 } + - { offsetInCU: 0x2A44, offset: 0x655AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA840, symBinAddr: 0x1A770, symSize: 0x10 } + - { offsetInCU: 0x2A58, offset: 0x655C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA850, symBinAddr: 0x1A780, symSize: 0x30 } + - { offsetInCU: 0x2A6C, offset: 0x655D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA880, symBinAddr: 0x1A7B0, symSize: 0x10 } + - { offsetInCU: 0x2A80, offset: 0x655E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA890, symBinAddr: 0x1A7C0, symSize: 0x30 } + - { offsetInCU: 0x2A94, offset: 0x655FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA8C0, symBinAddr: 0x1A7F0, symSize: 0x10 } + - { offsetInCU: 0x2AA8, offset: 0x65611, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA8D0, symBinAddr: 0x1A800, symSize: 0x30 } + - { offsetInCU: 0x2ABC, offset: 0x65625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA900, symBinAddr: 0x1A830, symSize: 0x10 } + - { offsetInCU: 0x2AD0, offset: 0x65639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA910, symBinAddr: 0x1A840, symSize: 0x30 } + - { offsetInCU: 0x2AE4, offset: 0x6564D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA940, symBinAddr: 0x1A870, symSize: 0x10 } + - { offsetInCU: 0x2AF8, offset: 0x65661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA950, symBinAddr: 0x1A880, symSize: 0x30 } + - { offsetInCU: 0x2B0C, offset: 0x65675, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA980, symBinAddr: 0x1A8B0, symSize: 0x10 } + - { offsetInCU: 0x2B20, offset: 0x65689, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA990, symBinAddr: 0x1A8C0, symSize: 0x30 } + - { offsetInCU: 0x2B34, offset: 0x6569D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA9C0, symBinAddr: 0x1A8F0, symSize: 0x10 } + - { offsetInCU: 0x2B48, offset: 0x656B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA9D0, symBinAddr: 0x1A900, symSize: 0x30 } + - { offsetInCU: 0x2BA2, offset: 0x6570B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F0, symBinAddr: 0x10170, symSize: 0x20 } + - { offsetInCU: 0x2BBE, offset: 0x65727, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x210, symBinAddr: 0x10190, symSize: 0x20 } + - { offsetInCU: 0x2C29, offset: 0x65792, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1620, symBinAddr: 0x115A0, symSize: 0x30 } + - { offsetInCU: 0x2CEA, offset: 0x65853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x11680, symSize: 0x20 } + - { offsetInCU: 0x2D06, offset: 0x6586F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x116A0, symSize: 0x20 } + - { offsetInCU: 0x2D28, offset: 0x65891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x11830, symSize: 0x20 } + - { offsetInCU: 0x2D44, offset: 0x658AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18D0, symBinAddr: 0x11850, symSize: 0x20 } + - { offsetInCU: 0x2D66, offset: 0x658CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x119E0, symSize: 0x20 } + - { offsetInCU: 0x2D82, offset: 0x658EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x11A00, symSize: 0x20 } + - { offsetInCU: 0x2DA4, offset: 0x6590D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BE0, symBinAddr: 0x11B60, symSize: 0x20 } + - { offsetInCU: 0x2DC0, offset: 0x65929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C00, symBinAddr: 0x11B80, symSize: 0x20 } + - { offsetInCU: 0x2DE2, offset: 0x6594B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DB0, symBinAddr: 0x11D30, symSize: 0x20 } + - { offsetInCU: 0x2DFE, offset: 0x65967, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DD0, symBinAddr: 0x11D50, symSize: 0x20 } + - { offsetInCU: 0x2E51, offset: 0x659BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1F30, symBinAddr: 0x11EB0, symSize: 0x40 } + - { offsetInCU: 0x2EF4, offset: 0x65A5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FE0, symBinAddr: 0x11F60, symSize: 0x20 } + - { offsetInCU: 0x2F10, offset: 0x65A79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2000, symBinAddr: 0x11F80, symSize: 0x20 } + - { offsetInCU: 0x2F32, offset: 0x65A9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x2150, symBinAddr: 0x120D0, symSize: 0x20 } + - { offsetInCU: 0x2F4E, offset: 0x65AB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x2170, symBinAddr: 0x120F0, symSize: 0x20 } + - { offsetInCU: 0x2F70, offset: 0x65AD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2310, symBinAddr: 0x12290, symSize: 0x20 } + - { offsetInCU: 0x2F8C, offset: 0x65AF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2330, symBinAddr: 0x122B0, symSize: 0x20 } + - { offsetInCU: 0x2FAE, offset: 0x65B17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24F0, symBinAddr: 0x12470, symSize: 0x20 } + - { offsetInCU: 0x2FCA, offset: 0x65B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2510, symBinAddr: 0x12490, symSize: 0x20 } + - { offsetInCU: 0x30B3, offset: 0x65C1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0x10000, symSize: 0xD0 } + - { offsetInCU: 0x3132, offset: 0x65C9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x230, symBinAddr: 0x101B0, symSize: 0x4C0 } + - { offsetInCU: 0x3163, offset: 0x65CCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6F0, symBinAddr: 0x10670, symSize: 0xE0 } + - { offsetInCU: 0x3194, offset: 0x65CFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7D0, symBinAddr: 0x10750, symSize: 0x1A0 } + - { offsetInCU: 0x31C5, offset: 0x65D2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x970, symBinAddr: 0x108F0, symSize: 0x170 } + - { offsetInCU: 0x31F6, offset: 0x65D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xAE0, symBinAddr: 0x10A60, symSize: 0x1D0 } + - { offsetInCU: 0x3227, offset: 0x65D90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xCB0, symBinAddr: 0x10C30, symSize: 0x230 } + - { offsetInCU: 0x3258, offset: 0x65DC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x10E60, symSize: 0x110 } + - { offsetInCU: 0x3289, offset: 0x65DF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xFF0, symBinAddr: 0x10F70, symSize: 0x1F0 } + - { offsetInCU: 0x32BA, offset: 0x65E23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x11E0, symBinAddr: 0x11160, symSize: 0x210 } + - { offsetInCU: 0x32EB, offset: 0x65E54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x13F0, symBinAddr: 0x11370, symSize: 0x130 } + - { offsetInCU: 0x27, offset: 0x66090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AB80, symSize: 0x60 } + - { offsetInCU: 0x3ED, offset: 0x66456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x470, symBinAddr: 0x1AFF0, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x6646A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x4A0, symBinAddr: 0x1B020, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x6647E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x4E0, symBinAddr: 0x1B060, symSize: 0xD0 } + - { offsetInCU: 0x429, offset: 0x66492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x5B0, symBinAddr: 0x1B130, symSize: 0x100 } + - { offsetInCU: 0x43D, offset: 0x664A6, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6B0, symBinAddr: 0x1B230, symSize: 0x50 } + - { offsetInCU: 0x451, offset: 0x664BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x700, symBinAddr: 0x1B280, symSize: 0xD0 } + - { offsetInCU: 0x465, offset: 0x664CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x7D0, symBinAddr: 0x1B350, symSize: 0x40 } + - { offsetInCU: 0x479, offset: 0x664E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x810, symBinAddr: 0x1B390, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x664F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x870, symBinAddr: 0x1B3F0, symSize: 0xA } + - { offsetInCU: 0x60E, offset: 0x66677, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AB80, symSize: 0x60 } + - { offsetInCU: 0x64D, offset: 0x666B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x60, symBinAddr: 0x1ABE0, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x666D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xA0, symBinAddr: 0x1AC20, symSize: 0x50 } + - { offsetInCU: 0x697, offset: 0x66700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xF0, symBinAddr: 0x1AC70, symSize: 0x10 } + - { offsetInCU: 0x6AB, offset: 0x66714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x1AC80, symSize: 0x10 } + - { offsetInCU: 0x6CC, offset: 0x66735, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x110, symBinAddr: 0x1AC90, symSize: 0x20 } + - { offsetInCU: 0x6E0, offset: 0x66749, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x130, symBinAddr: 0x1ACB0, symSize: 0x20 } + - { offsetInCU: 0x710, offset: 0x66779, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x150, symBinAddr: 0x1ACD0, symSize: 0x20 } + - { offsetInCU: 0x734, offset: 0x6679D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x170, symBinAddr: 0x1ACF0, symSize: 0x10 } + - { offsetInCU: 0x755, offset: 0x667BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x180, symBinAddr: 0x1AD00, symSize: 0x30 } + - { offsetInCU: 0x769, offset: 0x667D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1B0, symBinAddr: 0x1AD30, symSize: 0x30 } + - { offsetInCU: 0x79D, offset: 0x66806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1E0, symBinAddr: 0x1AD60, symSize: 0x20 } + - { offsetInCU: 0x7C1, offset: 0x6682A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x200, symBinAddr: 0x1AD80, symSize: 0x10 } + - { offsetInCU: 0x7E2, offset: 0x6684B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x210, symBinAddr: 0x1AD90, symSize: 0x10 } + - { offsetInCU: 0x7F6, offset: 0x6685F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x220, symBinAddr: 0x1ADA0, symSize: 0x10 } + - { offsetInCU: 0x82A, offset: 0x66893, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x230, symBinAddr: 0x1ADB0, symSize: 0x20 } + - { offsetInCU: 0x84E, offset: 0x668B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x250, symBinAddr: 0x1ADD0, symSize: 0x10 } + - { offsetInCU: 0x86F, offset: 0x668D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x260, symBinAddr: 0x1ADE0, symSize: 0x10 } + - { offsetInCU: 0x883, offset: 0x668EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x270, symBinAddr: 0x1ADF0, symSize: 0x10 } + - { offsetInCU: 0x8B7, offset: 0x66920, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x280, symBinAddr: 0x1AE00, symSize: 0x20 } + - { offsetInCU: 0x8DB, offset: 0x66944, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x1AE20, symSize: 0x10 } + - { offsetInCU: 0x8FC, offset: 0x66965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2B0, symBinAddr: 0x1AE30, symSize: 0x30 } + - { offsetInCU: 0x910, offset: 0x66979, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x2E0, symBinAddr: 0x1AE60, symSize: 0x30 } + - { offsetInCU: 0x944, offset: 0x669AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x310, symBinAddr: 0x1AE90, symSize: 0x20 } + - { offsetInCU: 0x968, offset: 0x669D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1AEB0, symSize: 0x10 } + - { offsetInCU: 0x989, offset: 0x669F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x340, symBinAddr: 0x1AEC0, symSize: 0x30 } + - { offsetInCU: 0x99D, offset: 0x66A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x370, symBinAddr: 0x1AEF0, symSize: 0x30 } + - { offsetInCU: 0x9D1, offset: 0x66A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3A0, symBinAddr: 0x1AF20, symSize: 0x20 } + - { offsetInCU: 0x9F5, offset: 0x66A5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x3C0, symBinAddr: 0x1AF40, symSize: 0x10 } + - { offsetInCU: 0xA16, offset: 0x66A7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x3D0, symBinAddr: 0x1AF50, symSize: 0x10 } + - { offsetInCU: 0xA2A, offset: 0x66A93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x3E0, symBinAddr: 0x1AF60, symSize: 0x10 } + - { offsetInCU: 0xA5E, offset: 0x66AC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x3F0, symBinAddr: 0x1AF70, symSize: 0x20 } + - { offsetInCU: 0xA82, offset: 0x66AEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x410, symBinAddr: 0x1AF90, symSize: 0x10 } + - { offsetInCU: 0xAA3, offset: 0x66B0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x420, symBinAddr: 0x1AFA0, symSize: 0x10 } + - { offsetInCU: 0xAB7, offset: 0x66B20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x430, symBinAddr: 0x1AFB0, symSize: 0x10 } + - { offsetInCU: 0xAEB, offset: 0x66B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x440, symBinAddr: 0x1AFC0, symSize: 0x20 } + - { offsetInCU: 0xB0F, offset: 0x66B78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x460, symBinAddr: 0x1AFE0, symSize: 0x10 } + - { offsetInCU: 0x7F, offset: 0x66C3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x6E0, symBinAddr: 0x1BAE0, symSize: 0x30 } + - { offsetInCU: 0xB0, offset: 0x66C6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x710, symBinAddr: 0x1BB10, symSize: 0x30 } + - { offsetInCU: 0xCC, offset: 0x66C88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x970, symBinAddr: 0x1BD70, symSize: 0x60 } + - { offsetInCU: 0x145, offset: 0x66D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x910, symBinAddr: 0x1BD10, symSize: 0x30 } + - { offsetInCU: 0x176, offset: 0x66D32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x940, symBinAddr: 0x1BD40, symSize: 0x30 } + - { offsetInCU: 0x192, offset: 0x66D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x9D0, symBinAddr: 0x1BDD0, symSize: 0x60 } + - { offsetInCU: 0x1D2, offset: 0x66D8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1BE30, symSize: 0x120 } + - { offsetInCU: 0x202, offset: 0x66DBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1BF50, symSize: 0x80 } + - { offsetInCU: 0x216, offset: 0x66DD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1BFD0, symSize: 0xD0 } + - { offsetInCU: 0x22A, offset: 0x66DE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1C0A0, symSize: 0x10 } + - { offsetInCU: 0x23E, offset: 0x66DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1C0B0, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x66E0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1C0C0, symSize: 0x80 } + - { offsetInCU: 0x266, offset: 0x66E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1C140, symSize: 0xD0 } + - { offsetInCU: 0x27A, offset: 0x66E36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1C210, symSize: 0x10 } + - { offsetInCU: 0x28E, offset: 0x66E4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1C220, symSize: 0x10 } + - { offsetInCU: 0x2A2, offset: 0x66E5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1C230, symSize: 0x10 } + - { offsetInCU: 0x2B6, offset: 0x66E72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1C240, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x66E86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1C250, symSize: 0x10 } + - { offsetInCU: 0x2DE, offset: 0x66E9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1C260, symSize: 0x30 } + - { offsetInCU: 0x2F2, offset: 0x66EAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1C290, symSize: 0x10 } + - { offsetInCU: 0x306, offset: 0x66EC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1C2A0, symSize: 0x30 } + - { offsetInCU: 0x410, offset: 0x66FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1B400, symSize: 0x350 } + - { offsetInCU: 0x433, offset: 0x66FEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1B750, symSize: 0x310 } + - { offsetInCU: 0xD3, offset: 0x67119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1C5C0, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x6715D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1C5E0, symSize: 0x90 } + - { offsetInCU: 0x16B, offset: 0x671B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1C670, symSize: 0x10 } + - { offsetInCU: 0x194, offset: 0x671DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1C680, symSize: 0x10 } + - { offsetInCU: 0x1BD, offset: 0x67203, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1C690, symSize: 0x10 } + - { offsetInCU: 0x1E6, offset: 0x6722C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1C730, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x67268, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1C740, symSize: 0x80 } + - { offsetInCU: 0x28E, offset: 0x672D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1C7C0, symSize: 0x60 } + - { offsetInCU: 0x2E3, offset: 0x67329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1C820, symSize: 0x90 } + - { offsetInCU: 0x335, offset: 0x6737B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1C8B0, symSize: 0x80 } + - { offsetInCU: 0x392, offset: 0x673D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1C930, symSize: 0x60 } + - { offsetInCU: 0x3C4, offset: 0x6740A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6A0, symBinAddr: 0x1C990, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x67426, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1C9A0, symSize: 0x10 } + - { offsetInCU: 0x4D3, offset: 0x67519, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1020, symBinAddr: 0x1D310, symSize: 0x3E0 } + - { offsetInCU: 0x7C6, offset: 0x6780C, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x14C0, symBinAddr: 0x1D7B0, symSize: 0x20 } + - { offsetInCU: 0x7DA, offset: 0x67820, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x14E0, symBinAddr: 0x1D7D0, symSize: 0x20 } + - { offsetInCU: 0x7EE, offset: 0x67834, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1570, symBinAddr: 0x1D7F0, symSize: 0x40 } + - { offsetInCU: 0x802, offset: 0x67848, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x15B0, symBinAddr: 0x1D830, symSize: 0x20 } + - { offsetInCU: 0x816, offset: 0x6785C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x15D0, symBinAddr: 0x1D850, symSize: 0x40 } + - { offsetInCU: 0x82A, offset: 0x67870, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1610, symBinAddr: 0x1D890, symSize: 0x30 } + - { offsetInCU: 0x83E, offset: 0x67884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x1640, symBinAddr: 0x1D8C0, symSize: 0x260 } + - { offsetInCU: 0x852, offset: 0x67898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x18A0, symBinAddr: 0x1DB20, symSize: 0x30 } + - { offsetInCU: 0x866, offset: 0x678AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x18D0, symBinAddr: 0x1DB50, symSize: 0x260 } + - { offsetInCU: 0x87A, offset: 0x678C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1B30, symBinAddr: 0x1DDB0, symSize: 0x25 } + - { offsetInCU: 0xA79, offset: 0x67ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1C2F0, symSize: 0x2B0 } + - { offsetInCU: 0xAA2, offset: 0x67AE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1C5A0, symSize: 0x20 } + - { offsetInCU: 0xBD2, offset: 0x67C18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x6C0, symBinAddr: 0x1C9B0, symSize: 0x8F0 } + - { offsetInCU: 0xCD9, offset: 0x67D1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xFB0, symBinAddr: 0x1D2A0, symSize: 0x70 } + - { offsetInCU: 0xD57, offset: 0x67D9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x1400, symBinAddr: 0x1D6F0, symSize: 0x60 } + - { offsetInCU: 0xD8C, offset: 0x67DD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0x1460, symBinAddr: 0x1D750, symSize: 0x60 } + - { offsetInCU: 0x4F, offset: 0x67E7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2B20, symBinAddr: 0x8BBF8, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x67E98, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2B28, symBinAddr: 0x8BC00, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x67EA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1DE20, symSize: 0x30 } + - { offsetInCU: 0xB3, offset: 0x67EE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1DE50, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x67F18, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1DE90, symSize: 0x30 } + - { offsetInCU: 0x159, offset: 0x67F88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0x1DF80, symSize: 0x50 } + - { offsetInCU: 0x1E6, offset: 0x68015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2F0, symBinAddr: 0x1E0D0, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x68051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x350, symBinAddr: 0x1E130, symSize: 0x20 } + - { offsetInCU: 0x29C, offset: 0x680CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x3C0, symBinAddr: 0x1E1A0, symSize: 0x80 } + - { offsetInCU: 0x5C1, offset: 0x683F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1CC0, symBinAddr: 0x1FAA0, symSize: 0x170 } + - { offsetInCU: 0x688, offset: 0x684B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x440, symBinAddr: 0x1E220, symSize: 0x80 } + - { offsetInCU: 0x6C0, offset: 0x684EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4C0, symBinAddr: 0x1E2A0, symSize: 0xB0 } + - { offsetInCU: 0x700, offset: 0x6852F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x5B0, symBinAddr: 0x1E390, symSize: 0x20 } + - { offsetInCU: 0x714, offset: 0x68543, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x620, symBinAddr: 0x1E400, symSize: 0x20 } + - { offsetInCU: 0x728, offset: 0x68557, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x680, symBinAddr: 0x1E460, symSize: 0x80 } + - { offsetInCU: 0x760, offset: 0x6858F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x700, symBinAddr: 0x1E4E0, symSize: 0xB0 } + - { offsetInCU: 0x7A0, offset: 0x685CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x910, symBinAddr: 0x1E6F0, symSize: 0x50 } + - { offsetInCU: 0x9AA, offset: 0x687D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x17C0, symBinAddr: 0x1F5A0, symSize: 0x130 } + - { offsetInCU: 0xAA6, offset: 0x688D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x18F0, symBinAddr: 0x1F6D0, symSize: 0x10 } + - { offsetInCU: 0xABA, offset: 0x688E9, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A20, symBinAddr: 0x1F800, symSize: 0x30 } + - { offsetInCU: 0xAD2, offset: 0x68901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1C70, symBinAddr: 0x1FA50, symSize: 0x30 } + - { offsetInCU: 0xAE6, offset: 0x68915, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1CA0, symBinAddr: 0x1FA80, symSize: 0x20 } + - { offsetInCU: 0xAFA, offset: 0x68929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1E30, symBinAddr: 0x1FC10, symSize: 0x20 } + - { offsetInCU: 0xB0E, offset: 0x6893D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E50, symBinAddr: 0x1FC30, symSize: 0x10 } + - { offsetInCU: 0xB22, offset: 0x68951, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E60, symBinAddr: 0x1FC40, symSize: 0x30 } + - { offsetInCU: 0xB36, offset: 0x68965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E90, symBinAddr: 0x1FC70, symSize: 0x10 } + - { offsetInCU: 0xB4A, offset: 0x68979, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1EA0, symBinAddr: 0x1FC80, symSize: 0x30 } + - { offsetInCU: 0xB5E, offset: 0x6898D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1FF0, symBinAddr: 0x1FDD0, symSize: 0x20 } + - { offsetInCU: 0xB72, offset: 0x689A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x2010, symBinAddr: 0x1FDF0, symSize: 0x20 } + - { offsetInCU: 0xB86, offset: 0x689B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x2030, symBinAddr: 0x1FE10, symSize: 0x20 } + - { offsetInCU: 0xB9A, offset: 0x689C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x20C0, symBinAddr: 0x1FEA0, symSize: 0x70 } + - { offsetInCU: 0xBAE, offset: 0x689DD, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2130, symBinAddr: 0x1FF10, symSize: 0x20 } + - { offsetInCU: 0xBC2, offset: 0x689F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x2150, symBinAddr: 0x1FF30, symSize: 0x40 } + - { offsetInCU: 0xBD6, offset: 0x68A05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x2190, symBinAddr: 0x1FF70, symSize: 0x50 } + - { offsetInCU: 0xBEA, offset: 0x68A19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x21E0, symBinAddr: 0x1FFC0, symSize: 0x50 } + - { offsetInCU: 0xBFE, offset: 0x68A2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x2230, symBinAddr: 0x20010, symSize: 0x10 } + - { offsetInCU: 0xC12, offset: 0x68A41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2240, symBinAddr: 0x20020, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x68A55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2250, symBinAddr: 0x20030, symSize: 0x10 } + - { offsetInCU: 0xC3A, offset: 0x68A69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x20040, symSize: 0x10 } + - { offsetInCU: 0xC4E, offset: 0x68A7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2450, symBinAddr: 0x20210, symSize: 0x80 } + - { offsetInCU: 0xC62, offset: 0x68A91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x24D0, symBinAddr: 0x20290, symSize: 0xD0 } + - { offsetInCU: 0xC76, offset: 0x68AA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x25A0, symBinAddr: 0x20360, symSize: 0x10 } + - { offsetInCU: 0xC8A, offset: 0x68AB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x25B0, symBinAddr: 0x20370, symSize: 0x10 } + - { offsetInCU: 0xC9E, offset: 0x68ACD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x25C0, symBinAddr: 0x20380, symSize: 0x80 } + - { offsetInCU: 0xCB2, offset: 0x68AE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2640, symBinAddr: 0x20400, symSize: 0xD0 } + - { offsetInCU: 0xCC6, offset: 0x68AF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x2710, symBinAddr: 0x204D0, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x68B09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x2720, symBinAddr: 0x204E0, symSize: 0x10 } + - { offsetInCU: 0xCEE, offset: 0x68B1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2730, symBinAddr: 0x204F0, symSize: 0x10 } + - { offsetInCU: 0xD02, offset: 0x68B31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2740, symBinAddr: 0x20500, symSize: 0x10 } + - { offsetInCU: 0xD21, offset: 0x68B50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2780, symBinAddr: 0x20540, symSize: 0x20 } + - { offsetInCU: 0xD4A, offset: 0x68B79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x2880, symBinAddr: 0x20640, symSize: 0x10 } + - { offsetInCU: 0xD5E, offset: 0x68B8D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2890, symBinAddr: 0x20650, symSize: 0x20 } + - { offsetInCU: 0xD72, offset: 0x68BA1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x28B0, symBinAddr: 0x20670, symSize: 0x10 } + - { offsetInCU: 0xD86, offset: 0x68BB5, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2940, symBinAddr: 0x20680, symSize: 0x30 } + - { offsetInCU: 0xE08, offset: 0x68C37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1DDE0, symSize: 0x10 } + - { offsetInCU: 0xE24, offset: 0x68C53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1DDF0, symSize: 0x10 } + - { offsetInCU: 0xE40, offset: 0x68C6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1DE00, symSize: 0x10 } + - { offsetInCU: 0xE5C, offset: 0x68C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1DE10, symSize: 0x10 } + - { offsetInCU: 0x11AB, offset: 0x68FDA, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1DEC0, symSize: 0x40 } + - { offsetInCU: 0x11D9, offset: 0x69008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1DF00, symSize: 0x50 } + - { offsetInCU: 0x120D, offset: 0x6903C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1F0, symBinAddr: 0x1DFD0, symSize: 0x80 } + - { offsetInCU: 0x1234, offset: 0x69063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x270, symBinAddr: 0x1E050, symSize: 0x10 } + - { offsetInCU: 0x1277, offset: 0x690A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x280, symBinAddr: 0x1E060, symSize: 0x20 } + - { offsetInCU: 0x137E, offset: 0x691AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x570, symBinAddr: 0x1E350, symSize: 0x40 } + - { offsetInCU: 0x139B, offset: 0x691CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5D0, symBinAddr: 0x1E3B0, symSize: 0x50 } + - { offsetInCU: 0x13C2, offset: 0x691F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x640, symBinAddr: 0x1E420, symSize: 0x30 } + - { offsetInCU: 0x13E5, offset: 0x69214, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x670, symBinAddr: 0x1E450, symSize: 0x10 } + - { offsetInCU: 0x143A, offset: 0x69269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x7B0, symBinAddr: 0x1E590, symSize: 0x40 } + - { offsetInCU: 0x1457, offset: 0x69286, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7F0, symBinAddr: 0x1E5D0, symSize: 0x50 } + - { offsetInCU: 0x147E, offset: 0x692AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x840, symBinAddr: 0x1E620, symSize: 0x30 } + - { offsetInCU: 0x14A1, offset: 0x692D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x870, symBinAddr: 0x1E650, symSize: 0x10 } + - { offsetInCU: 0x14C2, offset: 0x692F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x880, symBinAddr: 0x1E660, symSize: 0x30 } + - { offsetInCU: 0x14DF, offset: 0x6930E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x8B0, symBinAddr: 0x1E690, symSize: 0x30 } + - { offsetInCU: 0x1506, offset: 0x69335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8E0, symBinAddr: 0x1E6C0, symSize: 0x30 } + - { offsetInCU: 0x154E, offset: 0x6937D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x960, symBinAddr: 0x1E740, symSize: 0x30 } + - { offsetInCU: 0x156B, offset: 0x6939A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x990, symBinAddr: 0x1E770, symSize: 0x40 } + - { offsetInCU: 0x1592, offset: 0x693C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x9D0, symBinAddr: 0x1E7B0, symSize: 0x30 } + - { offsetInCU: 0x15BC, offset: 0x693EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0xA00, symBinAddr: 0x1E7E0, symSize: 0xD0 } + - { offsetInCU: 0x1633, offset: 0x69462, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0xAD0, symBinAddr: 0x1E8B0, symSize: 0xA0 } + - { offsetInCU: 0x16A6, offset: 0x694D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB70, symBinAddr: 0x1E950, symSize: 0xA0 } + - { offsetInCU: 0x1763, offset: 0x69592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xC10, symBinAddr: 0x1E9F0, symSize: 0x1F0 } + - { offsetInCU: 0x17CC, offset: 0x695FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1900, symBinAddr: 0x1F6E0, symSize: 0x120 } + - { offsetInCU: 0x1890, offset: 0x696BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xE00, symBinAddr: 0x1EBE0, symSize: 0x60 } + - { offsetInCU: 0x18BA, offset: 0x696E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xE60, symBinAddr: 0x1EC40, symSize: 0x30 } + - { offsetInCU: 0x18DC, offset: 0x6970B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1EC70, symSize: 0x160 } + - { offsetInCU: 0x1981, offset: 0x697B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xFF0, symBinAddr: 0x1EDD0, symSize: 0x10 } + - { offsetInCU: 0x19CE, offset: 0x697FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0x1070, symBinAddr: 0x1EE50, symSize: 0x30 } + - { offsetInCU: 0x1A52, offset: 0x69881, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0x1000, symBinAddr: 0x1EDE0, symSize: 0x70 } + - { offsetInCU: 0x1AE4, offset: 0x69913, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0x10A0, symBinAddr: 0x1EE80, symSize: 0x80 } + - { offsetInCU: 0x1BB2, offset: 0x699E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0x1120, symBinAddr: 0x1EF00, symSize: 0x230 } + - { offsetInCU: 0x1D80, offset: 0x69BAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x1350, symBinAddr: 0x1F130, symSize: 0x10 } + - { offsetInCU: 0x1DD7, offset: 0x69C06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x1360, symBinAddr: 0x1F140, symSize: 0x10 } + - { offsetInCU: 0x1E25, offset: 0x69C54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1370, symBinAddr: 0x1F150, symSize: 0x10 } + - { offsetInCU: 0x1E3D, offset: 0x69C6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1380, symBinAddr: 0x1F160, symSize: 0xB0 } + - { offsetInCU: 0x1EE3, offset: 0x69D12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1470, symBinAddr: 0x1F250, symSize: 0x10 } + - { offsetInCU: 0x1EFB, offset: 0x69D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x27F0, symBinAddr: 0x205B0, symSize: 0x70 } + - { offsetInCU: 0x1FD2, offset: 0x69E01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x1430, symBinAddr: 0x1F210, symSize: 0x40 } + - { offsetInCU: 0x200D, offset: 0x69E3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14A0, symBinAddr: 0x1F280, symSize: 0x90 } + - { offsetInCU: 0x20EA, offset: 0x69F19, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x15F0, symBinAddr: 0x1F3D0, symSize: 0x1D0 } + - { offsetInCU: 0x27E1, offset: 0x6A610, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x1A50, symBinAddr: 0x1F830, symSize: 0x20 } + - { offsetInCU: 0x2824, offset: 0x6A653, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1A70, symBinAddr: 0x1F850, symSize: 0x200 } + - { offsetInCU: 0x43, offset: 0x6A806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x20840, symSize: 0x30 } + - { offsetInCU: 0x57, offset: 0x6A81A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x20870, symSize: 0x80 } + - { offsetInCU: 0x6B, offset: 0x6A82E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x208F0, symSize: 0x130 } + - { offsetInCU: 0x86, offset: 0x6A849, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x20A20, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x6A872, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x20A50, symSize: 0x30 } + - { offsetInCU: 0xC3, offset: 0x6A886, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x20A80, symSize: 0xC0 } + - { offsetInCU: 0xD7, offset: 0x6A89A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x20B40, symSize: 0x50 } + - { offsetInCU: 0xEB, offset: 0x6A8AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x20B90, symSize: 0x50 } + - { offsetInCU: 0xFF, offset: 0x6A8C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x20BE0, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x6A8D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x20BF0, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x6A8EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x20C20, symSize: 0x30 } + - { offsetInCU: 0x13B, offset: 0x6A8FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x20C50, symSize: 0x60 } + - { offsetInCU: 0x14F, offset: 0x6A912, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x20CB0, symSize: 0x80 } + - { offsetInCU: 0x163, offset: 0x6A926, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x20D30, symSize: 0x60 } + - { offsetInCU: 0x177, offset: 0x6A93A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x20D90, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x6A94E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x20DE0, symSize: 0x50 } + - { offsetInCU: 0x19F, offset: 0x6A962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x20E30, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x6A9AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x21260, symSize: 0x10 } + - { offsetInCU: 0x243, offset: 0x6AA06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA30, symBinAddr: 0x21270, symSize: 0x30 } + - { offsetInCU: 0x327, offset: 0x6AAEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x212A0, symSize: 0x20 } + - { offsetInCU: 0x399, offset: 0x6AB5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAB0, symBinAddr: 0x212F0, symSize: 0x20 } + - { offsetInCU: 0x3E8, offset: 0x6ABAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD0, symBinAddr: 0x21310, symSize: 0x70 } + - { offsetInCU: 0x442, offset: 0x6AC05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB40, symBinAddr: 0x21380, symSize: 0x10 } + - { offsetInCU: 0x45E, offset: 0x6AC21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB50, symBinAddr: 0x21390, symSize: 0x10 } + - { offsetInCU: 0x49B, offset: 0x6AC5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBA0, symBinAddr: 0x213E0, symSize: 0x40 } + - { offsetInCU: 0x4D2, offset: 0x6AC95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE0, symBinAddr: 0x21420, symSize: 0x40 } + - { offsetInCU: 0x4F5, offset: 0x6ACB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFE0, symBinAddr: 0x21820, symSize: 0x140 } + - { offsetInCU: 0x582, offset: 0x6AD45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC20, symBinAddr: 0x21460, symSize: 0x10 } + - { offsetInCU: 0x5D5, offset: 0x6AD98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x21480, symSize: 0x20 } + - { offsetInCU: 0x64F, offset: 0x6AE12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC70, symBinAddr: 0x214B0, symSize: 0x60 } + - { offsetInCU: 0x684, offset: 0x6AE47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x21510, symSize: 0x20 } + - { offsetInCU: 0x6B5, offset: 0x6AE78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF0, symBinAddr: 0x21530, symSize: 0x10 } + - { offsetInCU: 0x6D1, offset: 0x6AE94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x21540, symSize: 0x10 } + - { offsetInCU: 0x6ED, offset: 0x6AEB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1250, symBinAddr: 0x219F0, symSize: 0x120 } + - { offsetInCU: 0x79D, offset: 0x6AF60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD50, symBinAddr: 0x21590, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x6AF97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD90, symBinAddr: 0x215D0, symSize: 0x40 } + - { offsetInCU: 0x7F7, offset: 0x6AFBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1370, symBinAddr: 0x21B10, symSize: 0x250 } + - { offsetInCU: 0x866, offset: 0x6B029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x216B0, symSize: 0x70 } + - { offsetInCU: 0x89B, offset: 0x6B05E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE0, symBinAddr: 0x21720, symSize: 0x20 } + - { offsetInCU: 0x8CC, offset: 0x6B08F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF00, symBinAddr: 0x21740, symSize: 0x10 } + - { offsetInCU: 0x8E8, offset: 0x6B0AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF10, symBinAddr: 0x21750, symSize: 0x10 } + - { offsetInCU: 0x904, offset: 0x6B0C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D30, symBinAddr: 0x22430, symSize: 0x130 } + - { offsetInCU: 0x9B4, offset: 0x6B177, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF60, symBinAddr: 0x217A0, symSize: 0x40 } + - { offsetInCU: 0x9EB, offset: 0x6B1AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFA0, symBinAddr: 0x217E0, symSize: 0x40 } + - { offsetInCU: 0xA0E, offset: 0x6B1D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E60, symBinAddr: 0x22560, symSize: 0x2F0 } + - { offsetInCU: 0xA6B, offset: 0x6B22E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1190, symBinAddr: 0x21960, symSize: 0x30 } + - { offsetInCU: 0xA7F, offset: 0x6B242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x11F0, symBinAddr: 0x21990, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x6B256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x219C0, symSize: 0x30 } + - { offsetInCU: 0xAA7, offset: 0x6B26A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x15C0, symBinAddr: 0x21D60, symSize: 0x30 } + - { offsetInCU: 0xABB, offset: 0x6B27E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x1630, symBinAddr: 0x21D90, symSize: 0x30 } + - { offsetInCU: 0xACF, offset: 0x6B292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x16F0, symBinAddr: 0x21E50, symSize: 0x30 } + - { offsetInCU: 0xAE3, offset: 0x6B2A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1760, symBinAddr: 0x21EA0, symSize: 0x10 } + - { offsetInCU: 0xAF7, offset: 0x6B2BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1770, symBinAddr: 0x21EB0, symSize: 0x10 } + - { offsetInCU: 0xB0B, offset: 0x6B2CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1780, symBinAddr: 0x21EC0, symSize: 0x10 } + - { offsetInCU: 0xB1F, offset: 0x6B2E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x1790, symBinAddr: 0x21ED0, symSize: 0x10 } + - { offsetInCU: 0xB33, offset: 0x6B2F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x21EE0, symSize: 0x50 } + - { offsetInCU: 0xB47, offset: 0x6B30A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x21F30, symSize: 0xA0 } + - { offsetInCU: 0xB5B, offset: 0x6B31E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x18A0, symBinAddr: 0x21FD0, symSize: 0x10 } + - { offsetInCU: 0xB6F, offset: 0x6B332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x18B0, symBinAddr: 0x21FE0, symSize: 0x10 } + - { offsetInCU: 0xB83, offset: 0x6B346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x18C0, symBinAddr: 0x21FF0, symSize: 0x10 } + - { offsetInCU: 0xB97, offset: 0x6B35A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x18D0, symBinAddr: 0x22000, symSize: 0x10 } + - { offsetInCU: 0xBAB, offset: 0x6B36E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18E0, symBinAddr: 0x22010, symSize: 0x40 } + - { offsetInCU: 0xBBF, offset: 0x6B382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1920, symBinAddr: 0x22050, symSize: 0x80 } + - { offsetInCU: 0xBD3, offset: 0x6B396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x19A0, symBinAddr: 0x220D0, symSize: 0xA0 } + - { offsetInCU: 0xBE7, offset: 0x6B3AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A70, symBinAddr: 0x22170, symSize: 0x80 } + - { offsetInCU: 0xBFB, offset: 0x6B3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1AF0, symBinAddr: 0x221F0, symSize: 0x50 } + - { offsetInCU: 0xC0F, offset: 0x6B3D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B40, symBinAddr: 0x22240, symSize: 0x60 } + - { offsetInCU: 0xC23, offset: 0x6B3E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1BA0, symBinAddr: 0x222A0, symSize: 0x10 } + - { offsetInCU: 0xC37, offset: 0x6B3FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BB0, symBinAddr: 0x222B0, symSize: 0x10 } + - { offsetInCU: 0xC4B, offset: 0x6B40E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BC0, symBinAddr: 0x222C0, symSize: 0x30 } + - { offsetInCU: 0xC5F, offset: 0x6B422, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BF0, symBinAddr: 0x222F0, symSize: 0x10 } + - { offsetInCU: 0xC73, offset: 0x6B436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1C00, symBinAddr: 0x22300, symSize: 0x30 } + - { offsetInCU: 0xC87, offset: 0x6B44A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C30, symBinAddr: 0x22330, symSize: 0x10 } + - { offsetInCU: 0xC9B, offset: 0x6B45E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C40, symBinAddr: 0x22340, symSize: 0x30 } + - { offsetInCU: 0xCAF, offset: 0x6B472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C70, symBinAddr: 0x22370, symSize: 0x10 } + - { offsetInCU: 0xCC3, offset: 0x6B486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C80, symBinAddr: 0x22380, symSize: 0x30 } + - { offsetInCU: 0xCD7, offset: 0x6B49A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CB0, symBinAddr: 0x223B0, symSize: 0x10 } + - { offsetInCU: 0xCEB, offset: 0x6B4AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CC0, symBinAddr: 0x223C0, symSize: 0x30 } + - { offsetInCU: 0xCFF, offset: 0x6B4C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF0, symBinAddr: 0x223F0, symSize: 0x10 } + - { offsetInCU: 0xD13, offset: 0x6B4D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x22400, symSize: 0x30 } + - { offsetInCU: 0xD27, offset: 0x6B4EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x2150, symBinAddr: 0x22850, symSize: 0x30 } + - { offsetInCU: 0xD3B, offset: 0x6B4FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x22F0, symBinAddr: 0x229F0, symSize: 0x10 } + - { offsetInCU: 0xD4F, offset: 0x6B512, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2300, symBinAddr: 0x22A00, symSize: 0x10 } + - { offsetInCU: 0xD63, offset: 0x6B526, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2310, symBinAddr: 0x22A10, symSize: 0x10 } + - { offsetInCU: 0xD77, offset: 0x6B53A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x2320, symBinAddr: 0x22A20, symSize: 0x30 } + - { offsetInCU: 0xD8B, offset: 0x6B54E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2350, symBinAddr: 0x22A50, symSize: 0x10 } + - { offsetInCU: 0xD9F, offset: 0x6B562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2360, symBinAddr: 0x22A60, symSize: 0x30 } + - { offsetInCU: 0xDB3, offset: 0x6B576, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2390, symBinAddr: 0x22A90, symSize: 0x10 } + - { offsetInCU: 0xDC7, offset: 0x6B58A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23A0, symBinAddr: 0x22AA0, symSize: 0x30 } + - { offsetInCU: 0xE26, offset: 0x6B5E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA80, symBinAddr: 0x212C0, symSize: 0x30 } + - { offsetInCU: 0xEE7, offset: 0x6B6AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x213A0, symSize: 0x20 } + - { offsetInCU: 0xF03, offset: 0x6B6C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB80, symBinAddr: 0x213C0, symSize: 0x20 } + - { offsetInCU: 0xF25, offset: 0x6B6E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD10, symBinAddr: 0x21550, symSize: 0x20 } + - { offsetInCU: 0xF41, offset: 0x6B704, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD30, symBinAddr: 0x21570, symSize: 0x20 } + - { offsetInCU: 0xF63, offset: 0x6B726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF20, symBinAddr: 0x21760, symSize: 0x20 } + - { offsetInCU: 0xF7F, offset: 0x6B742, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF40, symBinAddr: 0x21780, symSize: 0x20 } + - { offsetInCU: 0x106E, offset: 0x6B831, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x20E40, symSize: 0x100 } + - { offsetInCU: 0x109F, offset: 0x6B862, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x700, symBinAddr: 0x20F40, symSize: 0x1B0 } + - { offsetInCU: 0x10D0, offset: 0x6B893, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B0, symBinAddr: 0x210F0, symSize: 0x170 } + - { offsetInCU: 0xA6, offset: 0x6BA4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3B0, symBinAddr: 0x22EB0, symSize: 0x10 } + - { offsetInCU: 0xE2, offset: 0x6BA8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3C0, symBinAddr: 0x22EC0, symSize: 0x40 } + - { offsetInCU: 0x1C6, offset: 0x6BB6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x400, symBinAddr: 0x22F00, symSize: 0x20 } + - { offsetInCU: 0x4B2, offset: 0x6BE5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x460, symBinAddr: 0x22F60, symSize: 0x10 } + - { offsetInCU: 0x4C6, offset: 0x6BE6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x470, symBinAddr: 0x22F70, symSize: 0x30 } + - { offsetInCU: 0x4DA, offset: 0x6BE82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x4A0, symBinAddr: 0x22FA0, symSize: 0x30 } + - { offsetInCU: 0x4EE, offset: 0x6BE96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x4D0, symBinAddr: 0x22FD0, symSize: 0x80 } + - { offsetInCU: 0x502, offset: 0x6BEAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x550, symBinAddr: 0x23050, symSize: 0x250 } + - { offsetInCU: 0x516, offset: 0x6BEBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0x7A0, symBinAddr: 0x232A0, symSize: 0x4F0 } + - { offsetInCU: 0x531, offset: 0x6BED9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xC90, symBinAddr: 0x23790, symSize: 0x30 } + - { offsetInCU: 0x55A, offset: 0x6BF02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xCC0, symBinAddr: 0x237C0, symSize: 0x20 } + - { offsetInCU: 0x56E, offset: 0x6BF16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xCE0, symBinAddr: 0x237E0, symSize: 0x30 } + - { offsetInCU: 0x582, offset: 0x6BF2A, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xD10, symBinAddr: 0x23810, symSize: 0x10 } + - { offsetInCU: 0x596, offset: 0x6BF3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xD20, symBinAddr: 0x23820, symSize: 0x340 } + - { offsetInCU: 0x5AA, offset: 0x6BF52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x1060, symBinAddr: 0x23B60, symSize: 0x40 } + - { offsetInCU: 0x5BE, offset: 0x6BF66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x10A0, symBinAddr: 0x23BA0, symSize: 0x90 } + - { offsetInCU: 0x5D2, offset: 0x6BF7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x1130, symBinAddr: 0x23C30, symSize: 0x10 } + - { offsetInCU: 0x5E6, offset: 0x6BF8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1150, symBinAddr: 0x23C50, symSize: 0x10 } + - { offsetInCU: 0x5FA, offset: 0x6BFA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x11A0, symBinAddr: 0x23CA0, symSize: 0x50 } + - { offsetInCU: 0x60E, offset: 0x6BFB6, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11F0, symBinAddr: 0x23CF0, symSize: 0x20 } + - { offsetInCU: 0x622, offset: 0x6BFCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x1210, symBinAddr: 0x23D10, symSize: 0x40 } + - { offsetInCU: 0x636, offset: 0x6BFDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1250, symBinAddr: 0x23D50, symSize: 0x40 } + - { offsetInCU: 0x64A, offset: 0x6BFF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1290, symBinAddr: 0x23D90, symSize: 0x50 } + - { offsetInCU: 0x65E, offset: 0x6C006, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x12E0, symBinAddr: 0x23DE0, symSize: 0x10 } + - { offsetInCU: 0x672, offset: 0x6C01A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x12F0, symBinAddr: 0x23DF0, symSize: 0x30 } + - { offsetInCU: 0x686, offset: 0x6C02E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x1320, symBinAddr: 0x23E20, symSize: 0x80 } + - { offsetInCU: 0x69A, offset: 0x6C042, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x13A0, symBinAddr: 0x23EA0, symSize: 0xE0 } + - { offsetInCU: 0x6AE, offset: 0x6C056, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1480, symBinAddr: 0x23F80, symSize: 0x30 } + - { offsetInCU: 0x6C2, offset: 0x6C06A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x14B0, symBinAddr: 0x23FB0, symSize: 0x90 } + - { offsetInCU: 0x6D6, offset: 0x6C07E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1540, symBinAddr: 0x24040, symSize: 0x50 } + - { offsetInCU: 0x6EA, offset: 0x6C092, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1590, symBinAddr: 0x24090, symSize: 0x60 } + - { offsetInCU: 0x6FE, offset: 0x6C0A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x240F0, symSize: 0x10 } + - { offsetInCU: 0x712, offset: 0x6C0BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1600, symBinAddr: 0x24100, symSize: 0x30 } + - { offsetInCU: 0x726, offset: 0x6C0CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x1630, symBinAddr: 0x24130, symSize: 0x40 } + - { offsetInCU: 0x73A, offset: 0x6C0E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x24170, symSize: 0x60 } + - { offsetInCU: 0x74E, offset: 0x6C0F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x16F0, symBinAddr: 0x241D0, symSize: 0x50 } + - { offsetInCU: 0x762, offset: 0x6C10A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1740, symBinAddr: 0x24220, symSize: 0x40 } + - { offsetInCU: 0x776, offset: 0x6C11E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x1780, symBinAddr: 0x24260, symSize: 0x50 } + - { offsetInCU: 0x78A, offset: 0x6C132, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x17D0, symBinAddr: 0x242B0, symSize: 0x10 } + - { offsetInCU: 0x79E, offset: 0x6C146, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x17F0, symBinAddr: 0x242C0, symSize: 0x40 } + - { offsetInCU: 0x7B2, offset: 0x6C15A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1830, symBinAddr: 0x24300, symSize: 0x50 } + - { offsetInCU: 0x7C6, offset: 0x6C16E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1880, symBinAddr: 0x24350, symSize: 0x10 } + - { offsetInCU: 0x7DA, offset: 0x6C182, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x18A0, symBinAddr: 0x24360, symSize: 0x80 } + - { offsetInCU: 0x7EE, offset: 0x6C196, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1920, symBinAddr: 0x243E0, symSize: 0xD0 } + - { offsetInCU: 0x802, offset: 0x6C1AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x19F0, symBinAddr: 0x244B0, symSize: 0x10 } + - { offsetInCU: 0x816, offset: 0x6C1BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1A00, symBinAddr: 0x244C0, symSize: 0x10 } + - { offsetInCU: 0x82A, offset: 0x6C1D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1A10, symBinAddr: 0x244D0, symSize: 0x10 } + - { offsetInCU: 0x83E, offset: 0x6C1E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1A20, symBinAddr: 0x244E0, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x6C25D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x420, symBinAddr: 0x22F20, symSize: 0x40 } + - { offsetInCU: 0xA59, offset: 0x6C401, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22B30, symSize: 0x10 } + - { offsetInCU: 0xA8E, offset: 0x6C436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x22B40, symSize: 0xD0 } + - { offsetInCU: 0xAEB, offset: 0x6C493, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xE0, symBinAddr: 0x22C10, symSize: 0x30 } + - { offsetInCU: 0xB05, offset: 0x6C4AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x110, symBinAddr: 0x22C40, symSize: 0x30 } + - { offsetInCU: 0xB39, offset: 0x6C4E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x140, symBinAddr: 0x22C70, symSize: 0x10 } + - { offsetInCU: 0xB4D, offset: 0x6C4F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x150, symBinAddr: 0x22C80, symSize: 0x10 } + - { offsetInCU: 0xB6E, offset: 0x6C516, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x160, symBinAddr: 0x22C90, symSize: 0x10 } + - { offsetInCU: 0xB82, offset: 0x6C52A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x170, symBinAddr: 0x22CA0, symSize: 0x10 } + - { offsetInCU: 0xBB6, offset: 0x6C55E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x180, symBinAddr: 0x22CB0, symSize: 0x20 } + - { offsetInCU: 0xBDA, offset: 0x6C582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x1A0, symBinAddr: 0x22CD0, symSize: 0x10 } + - { offsetInCU: 0xBFB, offset: 0x6C5A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x1B0, symBinAddr: 0x22CE0, symSize: 0x30 } + - { offsetInCU: 0xC0F, offset: 0x6C5B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x210, symBinAddr: 0x22D10, symSize: 0x20 } + - { offsetInCU: 0xC23, offset: 0x6C5CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x230, symBinAddr: 0x22D30, symSize: 0x30 } + - { offsetInCU: 0xC37, offset: 0x6C5DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x260, symBinAddr: 0x22D60, symSize: 0x30 } + - { offsetInCU: 0xC4B, offset: 0x6C5F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x290, symBinAddr: 0x22D90, symSize: 0x10 } + - { offsetInCU: 0xC5F, offset: 0x6C607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x2A0, symBinAddr: 0x22DA0, symSize: 0x10 } + - { offsetInCU: 0xC91, offset: 0x6C639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x2B0, symBinAddr: 0x22DB0, symSize: 0x10 } + - { offsetInCU: 0xCA5, offset: 0x6C64D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x2C0, symBinAddr: 0x22DC0, symSize: 0x10 } + - { offsetInCU: 0xCC6, offset: 0x6C66E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x2D0, symBinAddr: 0x22DD0, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x6C682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x2E0, symBinAddr: 0x22DE0, symSize: 0x10 } + - { offsetInCU: 0xD0C, offset: 0x6C6B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x2F0, symBinAddr: 0x22DF0, symSize: 0x20 } + - { offsetInCU: 0xD30, offset: 0x6C6D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x310, symBinAddr: 0x22E10, symSize: 0x10 } + - { offsetInCU: 0xD51, offset: 0x6C6F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x320, symBinAddr: 0x22E20, symSize: 0x20 } + - { offsetInCU: 0xD75, offset: 0x6C71D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x340, symBinAddr: 0x22E40, symSize: 0x10 } + - { offsetInCU: 0xDA4, offset: 0x6C74C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x350, symBinAddr: 0x22E50, symSize: 0x20 } + - { offsetInCU: 0xE2F, offset: 0x6C7D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x370, symBinAddr: 0x22E70, symSize: 0x40 } + - { offsetInCU: 0x95E, offset: 0x6D25D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x8C20, symBinAddr: 0x2D150, symSize: 0x30 } + - { offsetInCU: 0x1908, offset: 0x6E207, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x17E80, symBinAddr: 0x3C3B0, symSize: 0x80 } + - { offsetInCU: 0x198A, offset: 0x6E289, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x19070, symBinAddr: 0x3D5A0, symSize: 0x40 } + - { offsetInCU: 0x19A6, offset: 0x6E2A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x190B0, symBinAddr: 0x3D5E0, symSize: 0x160 } + - { offsetInCU: 0x1AAF, offset: 0x6E3AE, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x19210, symBinAddr: 0x3D740, symSize: 0x50 } + - { offsetInCU: 0x1B2D, offset: 0x6E42C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x192B0, symBinAddr: 0x3D790, symSize: 0x40 } + - { offsetInCU: 0x1BBB, offset: 0x6E4BA, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x192F0, symBinAddr: 0x3D7D0, symSize: 0x40 } + - { offsetInCU: 0x1C29, offset: 0x6E528, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x19330, symBinAddr: 0x3D810, symSize: 0x60 } + - { offsetInCU: 0x22F5, offset: 0x6EBF4, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x1A280, symBinAddr: 0x3E760, symSize: 0x90 } + - { offsetInCU: 0x2359, offset: 0x6EC58, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x1A310, symBinAddr: 0x3E7F0, symSize: 0x80 } + - { offsetInCU: 0x2426, offset: 0x6ED25, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1A4B0, symBinAddr: 0x3E990, symSize: 0x40 } + - { offsetInCU: 0x25D4, offset: 0x6EED3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1B000, symBinAddr: 0x3F470, symSize: 0x1B0 } + - { offsetInCU: 0x26D9, offset: 0x6EFD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1B1B0, symBinAddr: 0x3F620, symSize: 0x3E0 } + - { offsetInCU: 0x2E52, offset: 0x6F751, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1C610, symBinAddr: 0x40A80, symSize: 0xD90 } + - { offsetInCU: 0x3F5C, offset: 0x7085B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D3A0, symBinAddr: 0x41810, symSize: 0x1E0 } + - { offsetInCU: 0x40CD, offset: 0x709CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D580, symBinAddr: 0x419F0, symSize: 0x1B0 } + - { offsetInCU: 0x44C5, offset: 0x70DC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1E1D0, symBinAddr: 0x42640, symSize: 0x10 } + - { offsetInCU: 0x44D9, offset: 0x70DD8, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1E290, symBinAddr: 0x42700, symSize: 0x20 } + - { offsetInCU: 0x44ED, offset: 0x70DEC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1E2B0, symBinAddr: 0x42720, symSize: 0x20 } + - { offsetInCU: 0x4501, offset: 0x70E00, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1E2D0, symBinAddr: 0x42740, symSize: 0x40 } + - { offsetInCU: 0x4515, offset: 0x70E14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1E330, symBinAddr: 0x42780, symSize: 0x30 } + - { offsetInCU: 0x4529, offset: 0x70E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1E360, symBinAddr: 0x427B0, symSize: 0x180 } + - { offsetInCU: 0x453D, offset: 0x70E3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1E4E0, symBinAddr: 0x42930, symSize: 0x2D0 } + - { offsetInCU: 0x4551, offset: 0x70E50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1E7B0, symBinAddr: 0x42C00, symSize: 0x70 } + - { offsetInCU: 0x4565, offset: 0x70E64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1E820, symBinAddr: 0x42C70, symSize: 0x30 } + - { offsetInCU: 0x4579, offset: 0x70E78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1E850, symBinAddr: 0x42CA0, symSize: 0xD0 } + - { offsetInCU: 0x458D, offset: 0x70E8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1E920, symBinAddr: 0x42D70, symSize: 0xB0 } + - { offsetInCU: 0x45E0, offset: 0x70EDF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1F040, symBinAddr: 0x42E20, symSize: 0xC0 } + - { offsetInCU: 0x4656, offset: 0x70F55, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F100, symBinAddr: 0x42EE0, symSize: 0x80 } + - { offsetInCU: 0x4683, offset: 0x70F82, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F180, symBinAddr: 0x42F60, symSize: 0x80 } + - { offsetInCU: 0x4717, offset: 0x71016, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1F200, symBinAddr: 0x42FE0, symSize: 0x70 } + - { offsetInCU: 0x486E, offset: 0x7116D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1F270, symBinAddr: 0x43050, symSize: 0x780 } + - { offsetInCU: 0x4D47, offset: 0x71646, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1F9F0, symBinAddr: 0x437D0, symSize: 0x40 } + - { offsetInCU: 0x4D5B, offset: 0x7165A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1FAE0, symBinAddr: 0x43840, symSize: 0x10 } + - { offsetInCU: 0x4D6F, offset: 0x7166E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1FAF0, symBinAddr: 0x43850, symSize: 0x30 } + - { offsetInCU: 0x4D83, offset: 0x71682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1FB20, symBinAddr: 0x43880, symSize: 0x30 } + - { offsetInCU: 0x4D97, offset: 0x71696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1FBC0, symBinAddr: 0x438D0, symSize: 0x20 } + - { offsetInCU: 0x4DAB, offset: 0x716AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1FC60, symBinAddr: 0x43950, symSize: 0x30 } + - { offsetInCU: 0x4DE0, offset: 0x716DF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1FD60, symBinAddr: 0x43A50, symSize: 0x40 } + - { offsetInCU: 0x4DF4, offset: 0x716F3, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1FDD0, symBinAddr: 0x43AC0, symSize: 0x30 } + - { offsetInCU: 0x4E08, offset: 0x71707, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1FE00, symBinAddr: 0x43AF0, symSize: 0x30 } + - { offsetInCU: 0x4E1C, offset: 0x7171B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1FE50, symBinAddr: 0x43B40, symSize: 0x50 } + - { offsetInCU: 0x4E30, offset: 0x7172F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1FEA0, symBinAddr: 0x43B90, symSize: 0x40 } + - { offsetInCU: 0x4E44, offset: 0x71743, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1FF70, symBinAddr: 0x43C60, symSize: 0x10 } + - { offsetInCU: 0x4E58, offset: 0x71757, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1FF80, symBinAddr: 0x43C70, symSize: 0x20 } + - { offsetInCU: 0x4E6C, offset: 0x7176B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1FFA0, symBinAddr: 0x43C90, symSize: 0x30 } + - { offsetInCU: 0x4E80, offset: 0x7177F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x20010, symBinAddr: 0x43D00, symSize: 0x40 } + - { offsetInCU: 0x54F1, offset: 0x71DF0, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xBA80, symBinAddr: 0x2FFB0, symSize: 0x4B0 } + - { offsetInCU: 0x5640, offset: 0x71F3F, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xD130, symBinAddr: 0x31660, symSize: 0x3C0 } + - { offsetInCU: 0x5944, offset: 0x72243, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xD4F0, symBinAddr: 0x31A20, symSize: 0x390 } + - { offsetInCU: 0x5DBC, offset: 0x726BB, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x11F00, symBinAddr: 0x36430, symSize: 0x1B0 } + - { offsetInCU: 0x61A6, offset: 0x72AA5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x1AA10, symBinAddr: 0x3EEF0, symSize: 0xE0 } + - { offsetInCU: 0x62EE, offset: 0x72BED, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x1AB30, symBinAddr: 0x3EFD0, symSize: 0xF0 } + - { offsetInCU: 0x640B, offset: 0x72D0A, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1ADE0, symBinAddr: 0x3F250, symSize: 0x220 } + - { offsetInCU: 0x651B, offset: 0x72E1A, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1B590, symBinAddr: 0x3FA00, symSize: 0x1A0 } + - { offsetInCU: 0x6861, offset: 0x73160, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1D940, symBinAddr: 0x41DB0, symSize: 0x240 } + - { offsetInCU: 0x6990, offset: 0x7328F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x1DB80, symBinAddr: 0x41FF0, symSize: 0xF0 } + - { offsetInCU: 0x6ADE, offset: 0x733DD, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x1DC70, symBinAddr: 0x420E0, symSize: 0xF0 } + - { offsetInCU: 0x6C40, offset: 0x7353F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x1DD60, symBinAddr: 0x421D0, symSize: 0xE0 } + - { offsetInCU: 0x6D96, offset: 0x73695, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x1DE40, symBinAddr: 0x422B0, symSize: 0xF0 } + - { offsetInCU: 0x6ED8, offset: 0x737D7, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x1DF30, symBinAddr: 0x423A0, symSize: 0xE0 } + - { offsetInCU: 0x703A, offset: 0x73939, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1E0F0, symBinAddr: 0x42560, symSize: 0xE0 } + - { offsetInCU: 0x71B1, offset: 0x73AB0, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1FC90, symBinAddr: 0x43980, symSize: 0xD0 } + - { offsetInCU: 0x7718, offset: 0x74017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x24530, symSize: 0x170 } + - { offsetInCU: 0x785B, offset: 0x7415A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x170, symBinAddr: 0x246A0, symSize: 0x680 } + - { offsetInCU: 0x7B67, offset: 0x74466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2CF0, symBinAddr: 0x27220, symSize: 0x780 } + - { offsetInCU: 0x7E35, offset: 0x74734, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x7F0, symBinAddr: 0x24D20, symSize: 0x80 } + - { offsetInCU: 0x7F71, offset: 0x74870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x870, symBinAddr: 0x24DA0, symSize: 0x2140 } + - { offsetInCU: 0x8F2C, offset: 0x7582B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xD880, symBinAddr: 0x31DB0, symSize: 0x3D60 } + - { offsetInCU: 0xA376, offset: 0x76C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x115E0, symBinAddr: 0x35B10, symSize: 0x640 } + - { offsetInCU: 0xA792, offset: 0x77091, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x13740, symBinAddr: 0x37C70, symSize: 0x2E30 } + - { offsetInCU: 0xBCE9, offset: 0x785E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x175A0, symBinAddr: 0x3BAD0, symSize: 0x450 } + - { offsetInCU: 0xBE7A, offset: 0x78779, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x29B0, symBinAddr: 0x26EE0, symSize: 0x340 } + - { offsetInCU: 0xC262, offset: 0x78B61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x3470, symBinAddr: 0x279A0, symSize: 0x460 } + - { offsetInCU: 0xC4EE, offset: 0x78DED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x38D0, symBinAddr: 0x27E00, symSize: 0x4C20 } + - { offsetInCU: 0xE149, offset: 0x7AA48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x84F0, symBinAddr: 0x2CA20, symSize: 0x2E0 } + - { offsetInCU: 0xE240, offset: 0x7AB3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x8C50, symBinAddr: 0x2D180, symSize: 0x1CB0 } + - { offsetInCU: 0xEC49, offset: 0x7B548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x87D0, symBinAddr: 0x2CD00, symSize: 0x120 } + - { offsetInCU: 0xECC2, offset: 0x7B5C1, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x88F0, symBinAddr: 0x2CE20, symSize: 0x120 } + - { offsetInCU: 0xECDD, offset: 0x7B5DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x8A10, symBinAddr: 0x2CF40, symSize: 0x210 } + - { offsetInCU: 0xEFE3, offset: 0x7B8E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0xA900, symBinAddr: 0x2EE30, symSize: 0x4C0 } + - { offsetInCU: 0xF240, offset: 0x7BB3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xBF30, symBinAddr: 0x30460, symSize: 0x1200 } + - { offsetInCU: 0xFB4E, offset: 0x7C44D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xADC0, symBinAddr: 0x2F2F0, symSize: 0xCC0 } + - { offsetInCU: 0x10564, offset: 0x7CE63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x120B0, symBinAddr: 0x365E0, symSize: 0x1690 } + - { offsetInCU: 0x1167C, offset: 0x7DF7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1B730, symBinAddr: 0x3FBA0, symSize: 0xD70 } + - { offsetInCU: 0x12036, offset: 0x7E935, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x16570, symBinAddr: 0x3AAA0, symSize: 0x1030 } + - { offsetInCU: 0x12B2D, offset: 0x7F42C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x179F0, symBinAddr: 0x3BF20, symSize: 0x1C0 } + - { offsetInCU: 0x12BB1, offset: 0x7F4B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x17BB0, symBinAddr: 0x3C0E0, symSize: 0x2D0 } + - { offsetInCU: 0x12CD6, offset: 0x7F5D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x17F00, symBinAddr: 0x3C430, symSize: 0x1170 } + - { offsetInCU: 0x1369E, offset: 0x7FF9D, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x19390, symBinAddr: 0x3D870, symSize: 0x60 } + - { offsetInCU: 0x136DC, offset: 0x7FFDB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x193F0, symBinAddr: 0x3D8D0, symSize: 0x30 } + - { offsetInCU: 0x13723, offset: 0x80022, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19420, symBinAddr: 0x3D900, symSize: 0x80 } + - { offsetInCU: 0x137BD, offset: 0x800BC, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x194A0, symBinAddr: 0x3D980, symSize: 0x60 } + - { offsetInCU: 0x13859, offset: 0x80158, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x19500, symBinAddr: 0x3D9E0, symSize: 0x50 } + - { offsetInCU: 0x138D2, offset: 0x801D1, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x195A0, symBinAddr: 0x3DA80, symSize: 0xE0 } + - { offsetInCU: 0x13936, offset: 0x80235, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19680, symBinAddr: 0x3DB60, symSize: 0xC0 } + - { offsetInCU: 0x1395F, offset: 0x8025E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19740, symBinAddr: 0x3DC20, symSize: 0x180 } + - { offsetInCU: 0x13A48, offset: 0x80347, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x198C0, symBinAddr: 0x3DDA0, symSize: 0x110 } + - { offsetInCU: 0x13B77, offset: 0x80476, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x199D0, symBinAddr: 0x3DEB0, symSize: 0x130 } + - { offsetInCU: 0x13CA6, offset: 0x805A5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x19B00, symBinAddr: 0x3DFE0, symSize: 0x180 } + - { offsetInCU: 0x13E17, offset: 0x80716, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x19C80, symBinAddr: 0x3E160, symSize: 0x1A0 } + - { offsetInCU: 0x13F8F, offset: 0x8088E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x19E20, symBinAddr: 0x3E300, symSize: 0x110 } + - { offsetInCU: 0x140C5, offset: 0x809C4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x19F30, symBinAddr: 0x3E410, symSize: 0x110 } + - { offsetInCU: 0x141FB, offset: 0x80AFA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1A170, symBinAddr: 0x3E650, symSize: 0x110 } + - { offsetInCU: 0x14319, offset: 0x80C18, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x1A390, symBinAddr: 0x3E870, symSize: 0x120 } + - { offsetInCU: 0x14404, offset: 0x80D03, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1A7C0, symBinAddr: 0x3ECA0, symSize: 0x180 } + - { offsetInCU: 0x144D3, offset: 0x80DD2, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1A940, symBinAddr: 0x3EE20, symSize: 0xD0 } + - { offsetInCU: 0x1456B, offset: 0x80E6A, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1AC20, symBinAddr: 0x3F0C0, symSize: 0x170 } + - { offsetInCU: 0x1476D, offset: 0x8106C, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1C4A0, symBinAddr: 0x40910, symSize: 0x170 } + - { offsetInCU: 0x27, offset: 0x81791, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43D70, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x817A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43D70, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x817BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x43DA0, symSize: 0x140 } + - { offsetInCU: 0x67, offset: 0x817D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x43EE0, symSize: 0x440 } + - { offsetInCU: 0x7B, offset: 0x817E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x44320, symSize: 0x590 } + - { offsetInCU: 0x8F, offset: 0x817F9, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x448B0, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x8180D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x448C0, symSize: 0x440 } + - { offsetInCU: 0xB7, offset: 0x81821, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x44D00, symSize: 0x40 } + - { offsetInCU: 0xCB, offset: 0x81835, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x44D40, symSize: 0x110 } + - { offsetInCU: 0xDF, offset: 0x81849, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x44E50, symSize: 0xA } + - { offsetInCU: 0x4F9, offset: 0x81E23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA480, symBinAddr: 0x4F2E0, symSize: 0x250 } + - { offsetInCU: 0x5CD, offset: 0x81EF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA6D0, symBinAddr: 0x4F530, symSize: 0x260 } + - { offsetInCU: 0x6B0, offset: 0x81FDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xF620, symBinAddr: 0x54480, symSize: 0x8E0 } + - { offsetInCU: 0x9E6, offset: 0x82310, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xFF00, symBinAddr: 0x54D60, symSize: 0xA50 } + - { offsetInCU: 0xCC0, offset: 0x825EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0x10950, symBinAddr: 0x557B0, symSize: 0x300 } + - { offsetInCU: 0xDD8, offset: 0x82702, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x11440, symBinAddr: 0x562A0, symSize: 0x950 } + - { offsetInCU: 0x10CE, offset: 0x829F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11D90, symBinAddr: 0x56BF0, symSize: 0xBD0 } + - { offsetInCU: 0x13A8, offset: 0x82CD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x12960, symBinAddr: 0x577C0, symSize: 0x370 } + - { offsetInCU: 0x14C0, offset: 0x82DEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x12CD0, symBinAddr: 0x57B30, symSize: 0x210 } + - { offsetInCU: 0x190C, offset: 0x83236, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2480, symBinAddr: 0x472E0, symSize: 0x30 } + - { offsetInCU: 0x1E10, offset: 0x8373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0xAA10, symBinAddr: 0x4F870, symSize: 0x20 } + - { offsetInCU: 0x1E55, offset: 0x8377F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xAA30, symBinAddr: 0x4F890, symSize: 0x90 } + - { offsetInCU: 0x1F1C, offset: 0x83846, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xBEC0, symBinAddr: 0x50D20, symSize: 0x50 } + - { offsetInCU: 0x1F56, offset: 0x83880, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xBF10, symBinAddr: 0x50D70, symSize: 0x50 } + - { offsetInCU: 0x1FAC, offset: 0x838D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBF60, symBinAddr: 0x50DC0, symSize: 0x60 } + - { offsetInCU: 0x1FDF, offset: 0x83909, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xBFC0, symBinAddr: 0x50E20, symSize: 0x10 } + - { offsetInCU: 0x201E, offset: 0x83948, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBFD0, symBinAddr: 0x50E30, symSize: 0x70 } + - { offsetInCU: 0x2074, offset: 0x8399E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xC040, symBinAddr: 0x50EA0, symSize: 0x90 } + - { offsetInCU: 0x20E5, offset: 0x83A0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xC0D0, symBinAddr: 0x50F30, symSize: 0xE0 } + - { offsetInCU: 0x2167, offset: 0x83A91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xC1B0, symBinAddr: 0x51010, symSize: 0x10 } + - { offsetInCU: 0x2183, offset: 0x83AAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xC1C0, symBinAddr: 0x51020, symSize: 0x10 } + - { offsetInCU: 0x21BD, offset: 0x83AE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xC1D0, symBinAddr: 0x51030, symSize: 0x60 } + - { offsetInCU: 0x24DE, offset: 0x83E08, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xD6A0, symBinAddr: 0x52500, symSize: 0x120 } + - { offsetInCU: 0x2544, offset: 0x83E6E, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xD8E0, symBinAddr: 0x52740, symSize: 0x2A0 } + - { offsetInCU: 0x26C8, offset: 0x83FF2, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xE170, symBinAddr: 0x52FD0, symSize: 0x70 } + - { offsetInCU: 0x2CC4, offset: 0x845EE, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xEA90, symBinAddr: 0x538F0, symSize: 0x450 } + - { offsetInCU: 0x34EB, offset: 0x84E15, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xEEE0, symBinAddr: 0x53D40, symSize: 0x2D0 } + - { offsetInCU: 0x38AD, offset: 0x851D7, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xF1B0, symBinAddr: 0x54010, symSize: 0x160 } + - { offsetInCU: 0x3AA8, offset: 0x853D2, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xF310, symBinAddr: 0x54170, symSize: 0x1E0 } + - { offsetInCU: 0x3CF1, offset: 0x8561B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x137D0, symBinAddr: 0x58630, symSize: 0x130 } + - { offsetInCU: 0x3E3B, offset: 0x85765, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x167D0, symBinAddr: 0x5B630, symSize: 0x130 } + - { offsetInCU: 0x3F53, offset: 0x8587D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x16F50, symBinAddr: 0x5BD40, symSize: 0x20 } + - { offsetInCU: 0x3F67, offset: 0x85891, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x16F70, symBinAddr: 0x5BD60, symSize: 0x20 } + - { offsetInCU: 0x3F7B, offset: 0x858A5, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x16FF0, symBinAddr: 0x5BD80, symSize: 0x40 } + - { offsetInCU: 0x3F8F, offset: 0x858B9, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x170E0, symBinAddr: 0x5BDC0, symSize: 0x30 } + - { offsetInCU: 0x3FA3, offset: 0x858CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x17110, symBinAddr: 0x5BDF0, symSize: 0x30 } + - { offsetInCU: 0x3FB7, offset: 0x858E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOd', symObjAddr: 0x17140, symBinAddr: 0x5BE20, symSize: 0x40 } + - { offsetInCU: 0x3FCB, offset: 0x858F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x17180, symBinAddr: 0x5BE60, symSize: 0x10 } + - { offsetInCU: 0x3FDF, offset: 0x85909, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x17190, symBinAddr: 0x5BE70, symSize: 0x20 } + - { offsetInCU: 0x3FF3, offset: 0x8591D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x171B0, symBinAddr: 0x5BE90, symSize: 0x10 } + - { offsetInCU: 0x4007, offset: 0x85931, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x17240, symBinAddr: 0x5BEE0, symSize: 0x40 } + - { offsetInCU: 0x405F, offset: 0x85989, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x17300, symBinAddr: 0x5BFA0, symSize: 0x20 } + - { offsetInCU: 0x409B, offset: 0x859C5, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x17350, symBinAddr: 0x5BFF0, symSize: 0x30 } + - { offsetInCU: 0x4BAE, offset: 0x864D8, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x44E60, symSize: 0x70 } + - { offsetInCU: 0x4C0F, offset: 0x86539, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x70, symBinAddr: 0x44ED0, symSize: 0xA0 } + - { offsetInCU: 0x4D56, offset: 0x86680, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x110, symBinAddr: 0x44F70, symSize: 0x90 } + - { offsetInCU: 0x4E6C, offset: 0x86796, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x45000, symSize: 0x60 } + - { offsetInCU: 0x4EC8, offset: 0x867F2, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x200, symBinAddr: 0x45060, symSize: 0x10 } + - { offsetInCU: 0x4EE3, offset: 0x8680D, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x210, symBinAddr: 0x45070, symSize: 0x140 } + - { offsetInCU: 0x4F4E, offset: 0x86878, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x350, symBinAddr: 0x451B0, symSize: 0xE0 } + - { offsetInCU: 0x5030, offset: 0x8695A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x430, symBinAddr: 0x45290, symSize: 0x2D0 } + - { offsetInCU: 0x51AE, offset: 0x86AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x700, symBinAddr: 0x45560, symSize: 0xD90 } + - { offsetInCU: 0x561D, offset: 0x86F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x1490, symBinAddr: 0x462F0, symSize: 0x4F0 } + - { offsetInCU: 0x589C, offset: 0x871C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1980, symBinAddr: 0x467E0, symSize: 0xB00 } + - { offsetInCU: 0x5C0F, offset: 0x87539, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x24B0, symBinAddr: 0x47310, symSize: 0x2870 } + - { offsetInCU: 0x7052, offset: 0x8897C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x10C50, symBinAddr: 0x55AB0, symSize: 0x7F0 } + - { offsetInCU: 0x7410, offset: 0x88D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4D20, symBinAddr: 0x49B80, symSize: 0x19B0 } + - { offsetInCU: 0x8255, offset: 0x89B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x66D0, symBinAddr: 0x4B530, symSize: 0x1200 } + - { offsetInCU: 0x8C0F, offset: 0x8A539, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x78D0, symBinAddr: 0x4C730, symSize: 0x400 } + - { offsetInCU: 0x8D78, offset: 0x8A6A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x86F0, symBinAddr: 0x4D550, symSize: 0x210 } + - { offsetInCU: 0x9003, offset: 0x8A92D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8900, symBinAddr: 0x4D760, symSize: 0xA60 } + - { offsetInCU: 0x97BC, offset: 0x8B0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x9360, symBinAddr: 0x4E1C0, symSize: 0x2F0 } + - { offsetInCU: 0x990E, offset: 0x8B238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9650, symBinAddr: 0x4E4B0, symSize: 0x6F0 } + - { offsetInCU: 0x9CDD, offset: 0x8B607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x9D40, symBinAddr: 0x4EBA0, symSize: 0x740 } + - { offsetInCU: 0x9F97, offset: 0x8B8C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0xA930, symBinAddr: 0x4F790, symSize: 0xC0 } + - { offsetInCU: 0x9FBA, offset: 0x8B8E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0xA9F0, symBinAddr: 0x4F850, symSize: 0x20 } + - { offsetInCU: 0xA045, offset: 0x8B96F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0xAAC0, symBinAddr: 0x4F920, symSize: 0x13C0 } + - { offsetInCU: 0xA644, offset: 0x8BF6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xBE80, symBinAddr: 0x50CE0, symSize: 0x40 } + - { offsetInCU: 0xA6B7, offset: 0x8BFE1, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xC230, symBinAddr: 0x51090, symSize: 0x10 } + - { offsetInCU: 0xA6D2, offset: 0x8BFFC, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xC240, symBinAddr: 0x510A0, symSize: 0x10 } + - { offsetInCU: 0xA6FB, offset: 0x8C025, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xC250, symBinAddr: 0x510B0, symSize: 0xC0 } + - { offsetInCU: 0xA76E, offset: 0x8C098, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xC310, symBinAddr: 0x51170, symSize: 0xC0 } + - { offsetInCU: 0xA81A, offset: 0x8C144, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xC4A0, symBinAddr: 0x51300, symSize: 0x260 } + - { offsetInCU: 0xA8A6, offset: 0x8C1D0, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xC700, symBinAddr: 0x51560, symSize: 0x220 } + - { offsetInCU: 0xA976, offset: 0x8C2A0, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xC920, symBinAddr: 0x51780, symSize: 0x3C0 } + - { offsetInCU: 0xAA59, offset: 0x8C383, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xCCE0, symBinAddr: 0x51B40, symSize: 0x3D0 } + - { offsetInCU: 0xAB4A, offset: 0x8C474, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xD0B0, symBinAddr: 0x51F10, symSize: 0x220 } + - { offsetInCU: 0xABE7, offset: 0x8C511, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xD2D0, symBinAddr: 0x52130, symSize: 0x230 } + - { offsetInCU: 0xAC7D, offset: 0x8C5A7, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xD500, symBinAddr: 0x52360, symSize: 0x40 } + - { offsetInCU: 0xAD30, offset: 0x8C65A, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xD540, symBinAddr: 0x523A0, symSize: 0xA0 } + - { offsetInCU: 0xADE5, offset: 0x8C70F, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xD5E0, symBinAddr: 0x52440, symSize: 0x40 } + - { offsetInCU: 0xAE22, offset: 0x8C74C, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xD620, symBinAddr: 0x52480, symSize: 0x20 } + - { offsetInCU: 0xAE4B, offset: 0x8C775, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xD640, symBinAddr: 0x524A0, symSize: 0x30 } + - { offsetInCU: 0xAE74, offset: 0x8C79E, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xD670, symBinAddr: 0x524D0, symSize: 0x20 } + - { offsetInCU: 0xAEB5, offset: 0x8C7DF, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xDE10, symBinAddr: 0x52C70, symSize: 0x80 } + - { offsetInCU: 0xAEC9, offset: 0x8C7F3, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xDE90, symBinAddr: 0x52CF0, symSize: 0x60 } + - { offsetInCU: 0xAEF9, offset: 0x8C823, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xDEF0, symBinAddr: 0x52D50, symSize: 0x180 } + - { offsetInCU: 0xAF56, offset: 0x8C880, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xE070, symBinAddr: 0x52ED0, symSize: 0x100 } + - { offsetInCU: 0xAF7D, offset: 0x8C8A7, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xE1E0, symBinAddr: 0x53040, symSize: 0x2D0 } + - { offsetInCU: 0xAFB2, offset: 0x8C8DC, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xE4B0, symBinAddr: 0x53310, symSize: 0xA0 } + - { offsetInCU: 0xAFC6, offset: 0x8C8F0, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xE550, symBinAddr: 0x533B0, symSize: 0x20 } + - { offsetInCU: 0xAFDA, offset: 0x8C904, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE570, symBinAddr: 0x533D0, symSize: 0x20 } + - { offsetInCU: 0xAFEE, offset: 0x8C918, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE590, symBinAddr: 0x533F0, symSize: 0x20 } + - { offsetInCU: 0xB025, offset: 0x8C94F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xE5B0, symBinAddr: 0x53410, symSize: 0x110 } + - { offsetInCU: 0xB123, offset: 0x8CA4D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE6C0, symBinAddr: 0x53520, symSize: 0x1A0 } + - { offsetInCU: 0xB263, offset: 0x8CB8D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE860, symBinAddr: 0x536C0, symSize: 0x130 } + - { offsetInCU: 0xB337, offset: 0x8CC61, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xE990, symBinAddr: 0x537F0, symSize: 0x100 } + - { offsetInCU: 0xB47D, offset: 0x8CDA7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xF4F0, symBinAddr: 0x54350, symSize: 0x20 } + - { offsetInCU: 0xB49F, offset: 0x8CDC9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xF510, symBinAddr: 0x54370, symSize: 0x110 } + - { offsetInCU: 0xB571, offset: 0x8CE9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x12EE0, symBinAddr: 0x57D40, symSize: 0x8F0 } + - { offsetInCU: 0xBA7E, offset: 0x8D3A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13900, symBinAddr: 0x58760, symSize: 0x2ED0 } + - { offsetInCU: 0xC1F0, offset: 0x8DB1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x16900, symBinAddr: 0x5B760, symSize: 0x5E0 } + - { offsetInCU: 0x95, offset: 0x8DFA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x10E0, symBinAddr: 0x5D1F0, symSize: 0x50 } + - { offsetInCU: 0xDF, offset: 0x8DFEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1130, symBinAddr: 0x5D240, symSize: 0x20 } + - { offsetInCU: 0x110, offset: 0x8E01D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1150, symBinAddr: 0x5D260, symSize: 0x10 } + - { offsetInCU: 0x12C, offset: 0x8E039, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1160, symBinAddr: 0x5D270, symSize: 0x10 } + - { offsetInCU: 0x148, offset: 0x8E055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6FD0, symBinAddr: 0x63020, symSize: 0xF0 } + - { offsetInCU: 0x1DF, offset: 0x8E0EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x5D2C0, symSize: 0x50 } + - { offsetInCU: 0x216, offset: 0x8E123, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1200, symBinAddr: 0x5D310, symSize: 0x50 } + - { offsetInCU: 0x239, offset: 0x8E146, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x70C0, symBinAddr: 0x63110, symSize: 0x13C0 } + - { offsetInCU: 0x2C7, offset: 0x8E1D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1250, symBinAddr: 0x5D360, symSize: 0x10 } + - { offsetInCU: 0x31A, offset: 0x8E227, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1270, symBinAddr: 0x5D380, symSize: 0x20 } + - { offsetInCU: 0x394, offset: 0x8E2A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x12A0, symBinAddr: 0x5D3B0, symSize: 0x90 } + - { offsetInCU: 0x3C9, offset: 0x8E2D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1330, symBinAddr: 0x5D440, symSize: 0x20 } + - { offsetInCU: 0x3FA, offset: 0x8E307, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1350, symBinAddr: 0x5D460, symSize: 0x10 } + - { offsetInCU: 0x416, offset: 0x8E323, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1360, symBinAddr: 0x5D470, symSize: 0x10 } + - { offsetInCU: 0x432, offset: 0x8E33F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8EF0, symBinAddr: 0x64560, symSize: 0x1B0 } + - { offsetInCU: 0x514, offset: 0x8E421, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13B0, symBinAddr: 0x5D4C0, symSize: 0x50 } + - { offsetInCU: 0x54B, offset: 0x8E458, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1400, symBinAddr: 0x5D510, symSize: 0x50 } + - { offsetInCU: 0x56E, offset: 0x8E47B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x90A0, symBinAddr: 0x64710, symSize: 0x1180 } + - { offsetInCU: 0x5F0, offset: 0x8E4FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1650, symBinAddr: 0x5D760, symSize: 0x30 } + - { offsetInCU: 0x621, offset: 0x8E52E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1680, symBinAddr: 0x5D790, symSize: 0x80 } + - { offsetInCU: 0x63D, offset: 0x8E54A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x5D810, symSize: 0x70 } + - { offsetInCU: 0x672, offset: 0x8E57F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5D880, symSize: 0x20 } + - { offsetInCU: 0x6C2, offset: 0x8E5CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1790, symBinAddr: 0x5D8A0, symSize: 0x10 } + - { offsetInCU: 0x6DE, offset: 0x8E5EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x5D8B0, symSize: 0x10 } + - { offsetInCU: 0x6FA, offset: 0x8E607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xA370, symBinAddr: 0x659E0, symSize: 0x60 } + - { offsetInCU: 0x759, offset: 0x8E666, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x5D900, symSize: 0x50 } + - { offsetInCU: 0x790, offset: 0x8E69D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1840, symBinAddr: 0x5D950, symSize: 0x50 } + - { offsetInCU: 0x7B3, offset: 0x8E6C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA3D0, symBinAddr: 0x65A40, symSize: 0x210 } + - { offsetInCU: 0x817, offset: 0x8E724, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5D9C0, symSize: 0x10 } + - { offsetInCU: 0x84C, offset: 0x8E759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18C0, symBinAddr: 0x5D9D0, symSize: 0x20 } + - { offsetInCU: 0x87D, offset: 0x8E78A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18E0, symBinAddr: 0x5D9F0, symSize: 0x10 } + - { offsetInCU: 0x899, offset: 0x8E7A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x5DA00, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x8E7C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA5E0, symBinAddr: 0x65C50, symSize: 0x270 } + - { offsetInCU: 0xA01, offset: 0x8E90E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1940, symBinAddr: 0x5DA50, symSize: 0x50 } + - { offsetInCU: 0xA38, offset: 0x8E945, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1990, symBinAddr: 0x5DAA0, symSize: 0x50 } + - { offsetInCU: 0xA5B, offset: 0x8E968, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA850, symBinAddr: 0x65EC0, symSize: 0x5E0 } + - { offsetInCU: 0xAE8, offset: 0x8E9F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x19E0, symBinAddr: 0x5DAF0, symSize: 0x10 } + - { offsetInCU: 0xB60, offset: 0x8EA6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5DB00, symSize: 0x40 } + - { offsetInCU: 0xC44, offset: 0x8EB51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A30, symBinAddr: 0x5DB40, symSize: 0x20 } + - { offsetInCU: 0xCCA, offset: 0x8EBD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A90, symBinAddr: 0x5DBA0, symSize: 0x30 } + - { offsetInCU: 0xD14, offset: 0x8EC21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5DBD0, symSize: 0x20 } + - { offsetInCU: 0xD45, offset: 0x8EC52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x5DBF0, symSize: 0x10 } + - { offsetInCU: 0xD61, offset: 0x8EC6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AF0, symBinAddr: 0x5DC00, symSize: 0x10 } + - { offsetInCU: 0xD7D, offset: 0x8EC8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAE30, symBinAddr: 0x664A0, symSize: 0xA0 } + - { offsetInCU: 0xDFB, offset: 0x8ED08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5DC50, symSize: 0x30 } + - { offsetInCU: 0xE32, offset: 0x8ED3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B70, symBinAddr: 0x5DC80, symSize: 0x20 } + - { offsetInCU: 0xE55, offset: 0x8ED62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAED0, symBinAddr: 0x66540, symSize: 0x180 } + - { offsetInCU: 0xEC5, offset: 0x8EDD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C30, symBinAddr: 0x5DD40, symSize: 0xA0 } + - { offsetInCU: 0xEFA, offset: 0x8EE07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1CD0, symBinAddr: 0x5DDE0, symSize: 0x20 } + - { offsetInCU: 0xF2B, offset: 0x8EE38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1CF0, symBinAddr: 0x5DE00, symSize: 0x10 } + - { offsetInCU: 0xF47, offset: 0x8EE54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D00, symBinAddr: 0x5DE10, symSize: 0x10 } + - { offsetInCU: 0xF63, offset: 0x8EE70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xB050, symBinAddr: 0x666C0, symSize: 0x1F0 } + - { offsetInCU: 0x105E, offset: 0x8EF6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D50, symBinAddr: 0x5DE60, symSize: 0x50 } + - { offsetInCU: 0x1095, offset: 0x8EFA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1DA0, symBinAddr: 0x5DEB0, symSize: 0x50 } + - { offsetInCU: 0x10B8, offset: 0x8EFC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB240, symBinAddr: 0x668B0, symSize: 0x840 } + - { offsetInCU: 0x1152, offset: 0x8F05F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x5E050, symSize: 0x30 } + - { offsetInCU: 0x1183, offset: 0x8F090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1F70, symBinAddr: 0x5E080, symSize: 0x30 } + - { offsetInCU: 0x1197, offset: 0x8F0A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1FA0, symBinAddr: 0x5E0B0, symSize: 0x10 } + - { offsetInCU: 0x11CC, offset: 0x8F0D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FB0, symBinAddr: 0x5E0C0, symSize: 0x20 } + - { offsetInCU: 0x121C, offset: 0x8F129, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x5E0E0, symSize: 0x10 } + - { offsetInCU: 0x1238, offset: 0x8F145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FE0, symBinAddr: 0x5E0F0, symSize: 0x10 } + - { offsetInCU: 0x1254, offset: 0x8F161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xBB10, symBinAddr: 0x67180, symSize: 0x60 } + - { offsetInCU: 0x12D2, offset: 0x8F1DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2030, symBinAddr: 0x5E140, symSize: 0x50 } + - { offsetInCU: 0x1309, offset: 0x8F216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2080, symBinAddr: 0x5E190, symSize: 0x50 } + - { offsetInCU: 0x132C, offset: 0x8F239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xBB70, symBinAddr: 0x671E0, symSize: 0x950 } + - { offsetInCU: 0x1404, offset: 0x8F311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6D80, symBinAddr: 0x62E70, symSize: 0x50 } + - { offsetInCU: 0x145D, offset: 0x8F36A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6DD0, symBinAddr: 0x62EC0, symSize: 0x80 } + - { offsetInCU: 0x14B1, offset: 0x8F3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6E50, symBinAddr: 0x62F40, symSize: 0x10 } + - { offsetInCU: 0x14E6, offset: 0x8F3F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E60, symBinAddr: 0x62F50, symSize: 0x20 } + - { offsetInCU: 0x1567, offset: 0x8F474, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6EB0, symBinAddr: 0x62FA0, symSize: 0x10 } + - { offsetInCU: 0x1584, offset: 0x8F491, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x22C0, symBinAddr: 0x5E3D0, symSize: 0x20 } + - { offsetInCU: 0x1598, offset: 0x8F4A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x22E0, symBinAddr: 0x5E3F0, symSize: 0x140 } + - { offsetInCU: 0x15AC, offset: 0x8F4B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x2420, symBinAddr: 0x5E530, symSize: 0x4F0 } + - { offsetInCU: 0x15C0, offset: 0x8F4CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x2910, symBinAddr: 0x5EA20, symSize: 0xED0 } + - { offsetInCU: 0x15DB, offset: 0x8F4E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x37E0, symBinAddr: 0x5F8F0, symSize: 0x30 } + - { offsetInCU: 0x1604, offset: 0x8F511, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x3810, symBinAddr: 0x5F920, symSize: 0x20 } + - { offsetInCU: 0x1618, offset: 0x8F525, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x3830, symBinAddr: 0x5F940, symSize: 0x20 } + - { offsetInCU: 0x162C, offset: 0x8F539, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x3850, symBinAddr: 0x5F960, symSize: 0x20 } + - { offsetInCU: 0x1640, offset: 0x8F54D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x3870, symBinAddr: 0x5F980, symSize: 0x20 } + - { offsetInCU: 0x1654, offset: 0x8F561, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3890, symBinAddr: 0x5F9A0, symSize: 0x10 } + - { offsetInCU: 0x1668, offset: 0x8F575, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x38A0, symBinAddr: 0x5F9B0, symSize: 0x580 } + - { offsetInCU: 0x167C, offset: 0x8F589, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x3E20, symBinAddr: 0x5FF30, symSize: 0x50 } + - { offsetInCU: 0x1690, offset: 0x8F59D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3E70, symBinAddr: 0x5FF80, symSize: 0x140 } + - { offsetInCU: 0x16A4, offset: 0x8F5B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x3FB0, symBinAddr: 0x600C0, symSize: 0x10 } + - { offsetInCU: 0x16B8, offset: 0x8F5C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3FC0, symBinAddr: 0x600D0, symSize: 0x30 } + - { offsetInCU: 0x16CC, offset: 0x8F5D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x3FF0, symBinAddr: 0x60100, symSize: 0x120 } + - { offsetInCU: 0x16E0, offset: 0x8F5ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x4110, symBinAddr: 0x60220, symSize: 0x480 } + - { offsetInCU: 0x16F4, offset: 0x8F601, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x4590, symBinAddr: 0x606A0, symSize: 0x9D0 } + - { offsetInCU: 0x1708, offset: 0x8F615, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4F60, symBinAddr: 0x61070, symSize: 0x10 } + - { offsetInCU: 0x171C, offset: 0x8F629, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4F70, symBinAddr: 0x61080, symSize: 0x500 } + - { offsetInCU: 0x1730, offset: 0x8F63D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x5470, symBinAddr: 0x61580, symSize: 0x50 } + - { offsetInCU: 0x1744, offset: 0x8F651, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x54C0, symBinAddr: 0x615D0, symSize: 0x130 } + - { offsetInCU: 0x1758, offset: 0x8F665, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x55F0, symBinAddr: 0x61700, symSize: 0x10 } + - { offsetInCU: 0x176C, offset: 0x8F679, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x5600, symBinAddr: 0x61710, symSize: 0xC0 } + - { offsetInCU: 0x1780, offset: 0x8F68D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x56C0, symBinAddr: 0x617D0, symSize: 0x240 } + - { offsetInCU: 0x1794, offset: 0x8F6A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x5900, symBinAddr: 0x61A10, symSize: 0x450 } + - { offsetInCU: 0x17A8, offset: 0x8F6B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5D50, symBinAddr: 0x61E60, symSize: 0x10 } + - { offsetInCU: 0x17BC, offset: 0x8F6C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x5D60, symBinAddr: 0x61E70, symSize: 0x250 } + - { offsetInCU: 0x17D0, offset: 0x8F6DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x5FB0, symBinAddr: 0x620C0, symSize: 0x50 } + - { offsetInCU: 0x17E4, offset: 0x8F6F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x6000, symBinAddr: 0x62110, symSize: 0xA0 } + - { offsetInCU: 0x17F8, offset: 0x8F705, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x60A0, symBinAddr: 0x621B0, symSize: 0x10 } + - { offsetInCU: 0x180C, offset: 0x8F719, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x60B0, symBinAddr: 0x621C0, symSize: 0x70 } + - { offsetInCU: 0x1820, offset: 0x8F72D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x6120, symBinAddr: 0x62230, symSize: 0x150 } + - { offsetInCU: 0x1834, offset: 0x8F741, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x6270, symBinAddr: 0x62380, symSize: 0x190 } + - { offsetInCU: 0x1848, offset: 0x8F755, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x6400, symBinAddr: 0x62510, symSize: 0x10 } + - { offsetInCU: 0x185C, offset: 0x8F769, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x6410, symBinAddr: 0x62520, symSize: 0x130 } + - { offsetInCU: 0x1870, offset: 0x8F77D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x6540, symBinAddr: 0x62650, symSize: 0x50 } + - { offsetInCU: 0x1884, offset: 0x8F791, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x6590, symBinAddr: 0x626A0, symSize: 0x80 } + - { offsetInCU: 0x1898, offset: 0x8F7A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x6610, symBinAddr: 0x62720, symSize: 0x10 } + - { offsetInCU: 0x18AC, offset: 0x8F7B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x6620, symBinAddr: 0x62730, symSize: 0x50 } + - { offsetInCU: 0x18C0, offset: 0x8F7CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x6670, symBinAddr: 0x62780, symSize: 0x120 } + - { offsetInCU: 0x18D4, offset: 0x8F7E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x6790, symBinAddr: 0x628A0, symSize: 0x1C0 } + - { offsetInCU: 0x18E8, offset: 0x8F7F5, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6950, symBinAddr: 0x62A60, symSize: 0x10 } + - { offsetInCU: 0x18FC, offset: 0x8F809, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x6960, symBinAddr: 0x62A70, symSize: 0x150 } + - { offsetInCU: 0x1910, offset: 0x8F81D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x6AB0, symBinAddr: 0x62BC0, symSize: 0x50 } + - { offsetInCU: 0x1924, offset: 0x8F831, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x6B00, symBinAddr: 0x62C10, symSize: 0x80 } + - { offsetInCU: 0x1938, offset: 0x8F845, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x6B80, symBinAddr: 0x62C90, symSize: 0x10 } + - { offsetInCU: 0x194C, offset: 0x8F859, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x6B90, symBinAddr: 0x62CA0, symSize: 0x30 } + - { offsetInCU: 0x1960, offset: 0x8F86D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x6BC0, symBinAddr: 0x62CD0, symSize: 0x40 } + - { offsetInCU: 0x1974, offset: 0x8F881, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x6C00, symBinAddr: 0x62D10, symSize: 0x60 } + - { offsetInCU: 0x1988, offset: 0x8F895, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x6C80, symBinAddr: 0x62D70, symSize: 0x50 } + - { offsetInCU: 0x199C, offset: 0x8F8A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x6CD0, symBinAddr: 0x62DC0, symSize: 0x50 } + - { offsetInCU: 0x19B0, offset: 0x8F8BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x6D20, symBinAddr: 0x62E10, symSize: 0x50 } + - { offsetInCU: 0x19C4, offset: 0x8F8D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x6D70, symBinAddr: 0x62E60, symSize: 0x10 } + - { offsetInCU: 0x19D8, offset: 0x8F8E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x6EC0, symBinAddr: 0x62FB0, symSize: 0x10 } + - { offsetInCU: 0x19EC, offset: 0x8F8F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x6ED0, symBinAddr: 0x62FC0, symSize: 0x30 } + - { offsetInCU: 0x1A00, offset: 0x8F90D, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6FA0, symBinAddr: 0x62FF0, symSize: 0x30 } + - { offsetInCU: 0x1A14, offset: 0x8F921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x8480, symBinAddr: 0x644D0, symSize: 0x30 } + - { offsetInCU: 0x1A28, offset: 0x8F935, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x84B0, symBinAddr: 0x64500, symSize: 0x30 } + - { offsetInCU: 0x1A3C, offset: 0x8F949, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x8EC0, symBinAddr: 0x64530, symSize: 0x30 } + - { offsetInCU: 0x1A50, offset: 0x8F95D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA220, symBinAddr: 0x65890, symSize: 0x30 } + - { offsetInCU: 0x1A64, offset: 0x8F971, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0xA250, symBinAddr: 0x658C0, symSize: 0x30 } + - { offsetInCU: 0x1A78, offset: 0x8F985, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0xA280, symBinAddr: 0x658F0, symSize: 0x30 } + - { offsetInCU: 0x1A8C, offset: 0x8F999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0xA2B0, symBinAddr: 0x65920, symSize: 0x30 } + - { offsetInCU: 0x1AA0, offset: 0x8F9AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0xA2E0, symBinAddr: 0x65950, symSize: 0x30 } + - { offsetInCU: 0x1AB4, offset: 0x8F9C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0xA310, symBinAddr: 0x65980, symSize: 0x30 } + - { offsetInCU: 0x1AC8, offset: 0x8F9D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0xA340, symBinAddr: 0x659B0, symSize: 0x30 } + - { offsetInCU: 0x1ADC, offset: 0x8F9E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xBA80, symBinAddr: 0x670F0, symSize: 0x30 } + - { offsetInCU: 0x1AF0, offset: 0x8F9FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xBAB0, symBinAddr: 0x67120, symSize: 0x30 } + - { offsetInCU: 0x1B04, offset: 0x8FA11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xBAE0, symBinAddr: 0x67150, symSize: 0x30 } + - { offsetInCU: 0x1B18, offset: 0x8FA25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xC4C0, symBinAddr: 0x67B30, symSize: 0x30 } + - { offsetInCU: 0x1B2C, offset: 0x8FA39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xC4F0, symBinAddr: 0x67B60, symSize: 0x30 } + - { offsetInCU: 0x1B40, offset: 0x8FA4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xC520, symBinAddr: 0x67B90, symSize: 0x30 } + - { offsetInCU: 0x1B54, offset: 0x8FA61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xC580, symBinAddr: 0x67BF0, symSize: 0x30 } + - { offsetInCU: 0x1B68, offset: 0x8FA75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xC5B0, symBinAddr: 0x67C20, symSize: 0x30 } + - { offsetInCU: 0x1B7C, offset: 0x8FA89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC600, symBinAddr: 0x67C50, symSize: 0x80 } + - { offsetInCU: 0x1B90, offset: 0x8FA9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC680, symBinAddr: 0x67CD0, symSize: 0xD0 } + - { offsetInCU: 0x1BA4, offset: 0x8FAB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xC750, symBinAddr: 0x67DA0, symSize: 0x10 } + - { offsetInCU: 0x1BB8, offset: 0x8FAC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC760, symBinAddr: 0x67DB0, symSize: 0x10 } + - { offsetInCU: 0x1BCC, offset: 0x8FAD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xC770, symBinAddr: 0x67DC0, symSize: 0x10 } + - { offsetInCU: 0x1BE0, offset: 0x8FAED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC780, symBinAddr: 0x67DD0, symSize: 0x10 } + - { offsetInCU: 0x1BF4, offset: 0x8FB01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC790, symBinAddr: 0x67DE0, symSize: 0x80 } + - { offsetInCU: 0x1C08, offset: 0x8FB15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC810, symBinAddr: 0x67E60, symSize: 0xD0 } + - { offsetInCU: 0x1C1C, offset: 0x8FB29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC8E0, symBinAddr: 0x67F30, symSize: 0x10 } + - { offsetInCU: 0x1C30, offset: 0x8FB3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC8F0, symBinAddr: 0x67F40, symSize: 0x10 } + - { offsetInCU: 0x1C44, offset: 0x8FB51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xC900, symBinAddr: 0x67F50, symSize: 0x80 } + - { offsetInCU: 0x1C58, offset: 0x8FB65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xC980, symBinAddr: 0x67FD0, symSize: 0xD0 } + - { offsetInCU: 0x1C6C, offset: 0x8FB79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xCA50, symBinAddr: 0x680A0, symSize: 0x10 } + - { offsetInCU: 0x1C80, offset: 0x8FB8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xCA60, symBinAddr: 0x680B0, symSize: 0x10 } + - { offsetInCU: 0x1C94, offset: 0x8FBA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xCA70, symBinAddr: 0x680C0, symSize: 0x80 } + - { offsetInCU: 0x1CA8, offset: 0x8FBB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xCAF0, symBinAddr: 0x68140, symSize: 0xD0 } + - { offsetInCU: 0x1CBC, offset: 0x8FBC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xCBC0, symBinAddr: 0x68210, symSize: 0x10 } + - { offsetInCU: 0x1CD0, offset: 0x8FBDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xCBD0, symBinAddr: 0x68220, symSize: 0x10 } + - { offsetInCU: 0x1CE4, offset: 0x8FBF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xCBE0, symBinAddr: 0x68230, symSize: 0x80 } + - { offsetInCU: 0x1CF8, offset: 0x8FC05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xCC60, symBinAddr: 0x682B0, symSize: 0xD0 } + - { offsetInCU: 0x1D0C, offset: 0x8FC19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xCD30, symBinAddr: 0x68380, symSize: 0x10 } + - { offsetInCU: 0x1D20, offset: 0x8FC2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xCD40, symBinAddr: 0x68390, symSize: 0x10 } + - { offsetInCU: 0x1D34, offset: 0x8FC41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xCD50, symBinAddr: 0x683A0, symSize: 0x10 } + - { offsetInCU: 0x1D48, offset: 0x8FC55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xCD60, symBinAddr: 0x683B0, symSize: 0x10 } + - { offsetInCU: 0x1D5C, offset: 0x8FC69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xCD70, symBinAddr: 0x683C0, symSize: 0x80 } + - { offsetInCU: 0x1D70, offset: 0x8FC7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xCDF0, symBinAddr: 0x68440, symSize: 0xD0 } + - { offsetInCU: 0x1D84, offset: 0x8FC91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xCEC0, symBinAddr: 0x68510, symSize: 0x10 } + - { offsetInCU: 0x1D98, offset: 0x8FCA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xCED0, symBinAddr: 0x68520, symSize: 0x10 } + - { offsetInCU: 0x1DAC, offset: 0x8FCB9, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xCEE0, symBinAddr: 0x68530, symSize: 0x30 } + - { offsetInCU: 0x1DC0, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xCF10, symBinAddr: 0x68560, symSize: 0x20 } + - { offsetInCU: 0x1DD4, offset: 0x8FCE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xCF30, symBinAddr: 0x68580, symSize: 0x40 } + - { offsetInCU: 0x1DE8, offset: 0x8FCF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xCF70, symBinAddr: 0x685C0, symSize: 0x10 } + - { offsetInCU: 0x1DFC, offset: 0x8FD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCF80, symBinAddr: 0x685D0, symSize: 0x10 } + - { offsetInCU: 0x1E10, offset: 0x8FD1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCF90, symBinAddr: 0x685E0, symSize: 0x30 } + - { offsetInCU: 0x1E24, offset: 0x8FD31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCFC0, symBinAddr: 0x68610, symSize: 0x10 } + - { offsetInCU: 0x1E38, offset: 0x8FD45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCFD0, symBinAddr: 0x68620, symSize: 0x30 } + - { offsetInCU: 0x1E4C, offset: 0x8FD59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xD000, symBinAddr: 0x68650, symSize: 0x10 } + - { offsetInCU: 0x1E60, offset: 0x8FD6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xD010, symBinAddr: 0x68660, symSize: 0x30 } + - { offsetInCU: 0x1E74, offset: 0x8FD81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xD040, symBinAddr: 0x68690, symSize: 0x10 } + - { offsetInCU: 0x1E88, offset: 0x8FD95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xD050, symBinAddr: 0x686A0, symSize: 0x30 } + - { offsetInCU: 0x1E9C, offset: 0x8FDA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xD080, symBinAddr: 0x686D0, symSize: 0x10 } + - { offsetInCU: 0x1EB0, offset: 0x8FDBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xD090, symBinAddr: 0x686E0, symSize: 0x30 } + - { offsetInCU: 0x1EC4, offset: 0x8FDD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xD0C0, symBinAddr: 0x68710, symSize: 0x10 } + - { offsetInCU: 0x1ED8, offset: 0x8FDE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xD0D0, symBinAddr: 0x68720, symSize: 0x30 } + - { offsetInCU: 0x1EEC, offset: 0x8FDF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD100, symBinAddr: 0x68750, symSize: 0x10 } + - { offsetInCU: 0x1F00, offset: 0x8FE0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD110, symBinAddr: 0x68760, symSize: 0x30 } + - { offsetInCU: 0x1F14, offset: 0x8FE21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD140, symBinAddr: 0x68790, symSize: 0x10 } + - { offsetInCU: 0x1F28, offset: 0x8FE35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD150, symBinAddr: 0x687A0, symSize: 0x30 } + - { offsetInCU: 0x1F3C, offset: 0x8FE49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD180, symBinAddr: 0x687D0, symSize: 0x10 } + - { offsetInCU: 0x1F50, offset: 0x8FE5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD190, symBinAddr: 0x687E0, symSize: 0x30 } + - { offsetInCU: 0x1F64, offset: 0x8FE71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD1C0, symBinAddr: 0x68810, symSize: 0x10 } + - { offsetInCU: 0x1F78, offset: 0x8FE85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD1D0, symBinAddr: 0x68820, symSize: 0x30 } + - { offsetInCU: 0x1F8C, offset: 0x8FE99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD200, symBinAddr: 0x68850, symSize: 0x10 } + - { offsetInCU: 0x1FA0, offset: 0x8FEAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD210, symBinAddr: 0x68860, symSize: 0x30 } + - { offsetInCU: 0x1FB4, offset: 0x8FEC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD240, symBinAddr: 0x68890, symSize: 0x10 } + - { offsetInCU: 0x1FC8, offset: 0x8FED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD250, symBinAddr: 0x688A0, symSize: 0x30 } + - { offsetInCU: 0x1FDC, offset: 0x8FEE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD280, symBinAddr: 0x688D0, symSize: 0x10 } + - { offsetInCU: 0x1FF0, offset: 0x8FEFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD290, symBinAddr: 0x688E0, symSize: 0x30 } + - { offsetInCU: 0x2004, offset: 0x8FF11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD2C0, symBinAddr: 0x68910, symSize: 0x10 } + - { offsetInCU: 0x2018, offset: 0x8FF25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD2D0, symBinAddr: 0x68920, symSize: 0x30 } + - { offsetInCU: 0x202C, offset: 0x8FF39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD300, symBinAddr: 0x68950, symSize: 0x10 } + - { offsetInCU: 0x2040, offset: 0x8FF4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD310, symBinAddr: 0x68960, symSize: 0x30 } + - { offsetInCU: 0x2054, offset: 0x8FF61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD340, symBinAddr: 0x68990, symSize: 0x10 } + - { offsetInCU: 0x2068, offset: 0x8FF75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD350, symBinAddr: 0x689A0, symSize: 0x30 } + - { offsetInCU: 0x207C, offset: 0x8FF89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD380, symBinAddr: 0x689D0, symSize: 0x10 } + - { offsetInCU: 0x2090, offset: 0x8FF9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD390, symBinAddr: 0x689E0, symSize: 0x30 } + - { offsetInCU: 0x20A4, offset: 0x8FFB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD3C0, symBinAddr: 0x68A10, symSize: 0x10 } + - { offsetInCU: 0x20B8, offset: 0x8FFC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD3D0, symBinAddr: 0x68A20, symSize: 0x30 } + - { offsetInCU: 0x20CC, offset: 0x8FFD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xD400, symBinAddr: 0x68A50, symSize: 0x30 } + - { offsetInCU: 0x20E0, offset: 0x8FFED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xD430, symBinAddr: 0x68A80, symSize: 0x80 } + - { offsetInCU: 0x20F4, offset: 0x90001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xD4B0, symBinAddr: 0x68B00, symSize: 0xD0 } + - { offsetInCU: 0x2108, offset: 0x90015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xD580, symBinAddr: 0x68BD0, symSize: 0x10 } + - { offsetInCU: 0x211C, offset: 0x90029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xD590, symBinAddr: 0x68BE0, symSize: 0x10 } + - { offsetInCU: 0x2130, offset: 0x9003D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD5A0, symBinAddr: 0x68BF0, symSize: 0x10 } + - { offsetInCU: 0x2144, offset: 0x90051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD5B0, symBinAddr: 0x68C00, symSize: 0x30 } + - { offsetInCU: 0x2158, offset: 0x90065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD5E0, symBinAddr: 0x68C30, symSize: 0x10 } + - { offsetInCU: 0x216C, offset: 0x90079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD5F0, symBinAddr: 0x68C40, symSize: 0x30 } + - { offsetInCU: 0x2180, offset: 0x9008D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD620, symBinAddr: 0x68C70, symSize: 0x10 } + - { offsetInCU: 0x2194, offset: 0x900A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD630, symBinAddr: 0x68C80, symSize: 0x30 } + - { offsetInCU: 0x21C2, offset: 0x900CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1170, symBinAddr: 0x5D280, symSize: 0x20 } + - { offsetInCU: 0x21DE, offset: 0x900EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1190, symBinAddr: 0x5D2A0, symSize: 0x20 } + - { offsetInCU: 0x2200, offset: 0x9010D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x5D480, symSize: 0x20 } + - { offsetInCU: 0x221C, offset: 0x90129, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5D4A0, symSize: 0x20 } + - { offsetInCU: 0x2238, offset: 0x90145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1450, symBinAddr: 0x5D560, symSize: 0x10 } + - { offsetInCU: 0x22B8, offset: 0x901C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1460, symBinAddr: 0x5D570, symSize: 0xB0 } + - { offsetInCU: 0x233A, offset: 0x90247, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x5D620, symSize: 0x90 } + - { offsetInCU: 0x2378, offset: 0x90285, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x15A0, symBinAddr: 0x5D6B0, symSize: 0xB0 } + - { offsetInCU: 0x23DE, offset: 0x902EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x5D8C0, symSize: 0x20 } + - { offsetInCU: 0x23FA, offset: 0x90307, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x5D8E0, symSize: 0x20 } + - { offsetInCU: 0x241C, offset: 0x90329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1900, symBinAddr: 0x5DA10, symSize: 0x20 } + - { offsetInCU: 0x2438, offset: 0x90345, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1920, symBinAddr: 0x5DA30, symSize: 0x20 } + - { offsetInCU: 0x248B, offset: 0x90398, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A50, symBinAddr: 0x5DB60, symSize: 0x40 } + - { offsetInCU: 0x252E, offset: 0x9043B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5DC10, symSize: 0x20 } + - { offsetInCU: 0x254A, offset: 0x90457, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x5DC30, symSize: 0x20 } + - { offsetInCU: 0x256C, offset: 0x90479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D10, symBinAddr: 0x5DE20, symSize: 0x20 } + - { offsetInCU: 0x2588, offset: 0x90495, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1D30, symBinAddr: 0x5DE40, symSize: 0x20 } + - { offsetInCU: 0x25D1, offset: 0x904DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1DF0, symBinAddr: 0x5DF00, symSize: 0x80 } + - { offsetInCU: 0x26BD, offset: 0x905CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1E70, symBinAddr: 0x5DF80, symSize: 0x50 } + - { offsetInCU: 0x273B, offset: 0x90648, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1EC0, symBinAddr: 0x5DFD0, symSize: 0x30 } + - { offsetInCU: 0x278D, offset: 0x9069A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1EF0, symBinAddr: 0x5E000, symSize: 0x50 } + - { offsetInCU: 0x27EF, offset: 0x906FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x5E100, symSize: 0x20 } + - { offsetInCU: 0x280B, offset: 0x90718, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x2010, symBinAddr: 0x5E120, symSize: 0x20 } + - { offsetInCU: 0x284C, offset: 0x90759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6E80, symBinAddr: 0x62F70, symSize: 0x30 } + - { offsetInCU: 0x29DF, offset: 0x908EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x5C110, symSize: 0x190 } + - { offsetInCU: 0x2A10, offset: 0x9091D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x190, symBinAddr: 0x5C2A0, symSize: 0x2B0 } + - { offsetInCU: 0x2A41, offset: 0x9094E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x440, symBinAddr: 0x5C550, symSize: 0x190 } + - { offsetInCU: 0x2A72, offset: 0x9097F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x5D0, symBinAddr: 0x5C6E0, symSize: 0xB0 } + - { offsetInCU: 0x2A93, offset: 0x909A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x680, symBinAddr: 0x5C790, symSize: 0x2A0 } + - { offsetInCU: 0x2AC4, offset: 0x909D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x920, symBinAddr: 0x5CA30, symSize: 0x110 } + - { offsetInCU: 0x2AF5, offset: 0x90A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA30, symBinAddr: 0x5CB40, symSize: 0x250 } + - { offsetInCU: 0x2B26, offset: 0x90A33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC80, symBinAddr: 0x5CD90, symSize: 0xB0 } + - { offsetInCU: 0x2B5A, offset: 0x90A67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xD30, symBinAddr: 0x5CE40, symSize: 0xB0 } + - { offsetInCU: 0x2B9A, offset: 0x90AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDE0, symBinAddr: 0x5CEF0, symSize: 0x2E0 } + - { offsetInCU: 0x2DAB, offset: 0x90CB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x20D0, symBinAddr: 0x5E1E0, symSize: 0x1D0 } + - { offsetInCU: 0x2DF7, offset: 0x90D04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x22A0, symBinAddr: 0x5E3B0, symSize: 0x20 } + - { offsetInCU: 0x27, offset: 0x90DE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x68E10, symSize: 0x10 } + - { offsetInCU: 0x163, offset: 0x90F21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x68EF0, symSize: 0x40 } + - { offsetInCU: 0x177, offset: 0x90F35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x68F30, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x90F49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x68F80, symSize: 0xA } + - { offsetInCU: 0x26C, offset: 0x9102A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x68E10, symSize: 0x10 } + - { offsetInCU: 0x286, offset: 0x91044, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x68E20, symSize: 0x10 } + - { offsetInCU: 0x2B8, offset: 0x91076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x68E30, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x9108A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x68E40, symSize: 0x10 } + - { offsetInCU: 0x2ED, offset: 0x910AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x68E50, symSize: 0x10 } + - { offsetInCU: 0x301, offset: 0x910BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x68E60, symSize: 0x10 } + - { offsetInCU: 0x333, offset: 0x910F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x68E70, symSize: 0x20 } + - { offsetInCU: 0x357, offset: 0x91115, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x68E90, symSize: 0x10 } + - { offsetInCU: 0x378, offset: 0x91136, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x68EA0, symSize: 0x10 } + - { offsetInCU: 0x38C, offset: 0x9114A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x68EB0, symSize: 0x10 } + - { offsetInCU: 0x3C0, offset: 0x9117E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x68EC0, symSize: 0x20 } + - { offsetInCU: 0x3E4, offset: 0x911A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x68EE0, symSize: 0x10 } + - { offsetInCU: 0x2B, offset: 0x911F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68F90, symSize: 0x30 } + - { offsetInCU: 0x7C, offset: 0x91249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x68FC0, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x9134F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68F90, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x913B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68FE0, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x91408, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x69000, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x9150E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68FE0, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x9157A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x69020, symSize: 0x50 } + - { offsetInCU: 0x7C, offset: 0x915CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x69070, symSize: 0x10 } + - { offsetInCU: 0x90, offset: 0x915DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x69080, symSize: 0x30 } + - { offsetInCU: 0xA4, offset: 0x915F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x690B0, symSize: 0x69 } + - { offsetInCU: 0x1AA, offset: 0x916F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x69020, symSize: 0x50 } + - { offsetInCU: 0x27, offset: 0x91761, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x69120, symSize: 0x430 } + - { offsetInCU: 0x16B, offset: 0x918A5, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x69550, symSize: 0x40 } + - { offsetInCU: 0x38A, offset: 0x91AC4, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x69120, symSize: 0x430 } + - { offsetInCU: 0x27, offset: 0x91CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69590, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x91D14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x695B0, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x91E1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69590, symSize: 0x20 } + - { offsetInCU: 0xA1, offset: 0x91EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x9E0, symBinAddr: 0x69F70, symSize: 0x20 } + - { offsetInCU: 0xBD, offset: 0x91F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA00, symBinAddr: 0x69F90, symSize: 0x60 } + - { offsetInCU: 0xE6, offset: 0x91F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA60, symBinAddr: 0x69FF0, symSize: 0x30 } + - { offsetInCU: 0x175, offset: 0x91FD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xC10, symBinAddr: 0x6A1A0, symSize: 0x20 } + - { offsetInCU: 0x191, offset: 0x91FEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC30, symBinAddr: 0x6A1C0, symSize: 0x30 } + - { offsetInCU: 0x497, offset: 0x922F2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x760, symBinAddr: 0x69CF0, symSize: 0xF0 } + - { offsetInCU: 0x50B, offset: 0x92366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xC60, symBinAddr: 0x6A1F0, symSize: 0x480 } + - { offsetInCU: 0x738, offset: 0x92593, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x10E0, symBinAddr: 0x6A670, symSize: 0x150 } + - { offsetInCU: 0x95A, offset: 0x927B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x36C0, symBinAddr: 0x6CBB0, symSize: 0x1F0 } + - { offsetInCU: 0xA0B, offset: 0x92866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3950, symBinAddr: 0x6CDE0, symSize: 0x220 } + - { offsetInCU: 0xA70, offset: 0x928CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3B70, symBinAddr: 0x6D000, symSize: 0x240 } + - { offsetInCU: 0xB98, offset: 0x929F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3DB0, symBinAddr: 0x6D240, symSize: 0x290 } + - { offsetInCU: 0xCD7, offset: 0x92B32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x4040, symBinAddr: 0x6D4D0, symSize: 0x170 } + - { offsetInCU: 0xD1D, offset: 0x92B78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x41B0, symBinAddr: 0x6D640, symSize: 0x520 } + - { offsetInCU: 0x104C, offset: 0x92EA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x46D0, symBinAddr: 0x6DB60, symSize: 0xD0 } + - { offsetInCU: 0x1171, offset: 0x92FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3100, symBinAddr: 0x6C690, symSize: 0x10 } + - { offsetInCU: 0x1185, offset: 0x92FE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x3110, symBinAddr: 0x6C6A0, symSize: 0x30 } + - { offsetInCU: 0x1199, offset: 0x92FF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x3140, symBinAddr: 0x6C6D0, symSize: 0x10 } + - { offsetInCU: 0x11AD, offset: 0x93008, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x3150, symBinAddr: 0x6C6E0, symSize: 0x40 } + - { offsetInCU: 0x11C1, offset: 0x9301C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x31D0, symBinAddr: 0x6C720, symSize: 0x10 } + - { offsetInCU: 0x11D5, offset: 0x93030, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x31E0, symBinAddr: 0x6C730, symSize: 0x30 } + - { offsetInCU: 0x11E9, offset: 0x93044, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x3230, symBinAddr: 0x6C760, symSize: 0x80 } + - { offsetInCU: 0x11FD, offset: 0x93058, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x32B0, symBinAddr: 0x6C7E0, symSize: 0xD0 } + - { offsetInCU: 0x1211, offset: 0x9306C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3380, symBinAddr: 0x6C8B0, symSize: 0x10 } + - { offsetInCU: 0x1225, offset: 0x93080, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3390, symBinAddr: 0x6C8C0, symSize: 0x10 } + - { offsetInCU: 0x1239, offset: 0x93094, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x33A0, symBinAddr: 0x6C8D0, symSize: 0x10 } + - { offsetInCU: 0x124D, offset: 0x930A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x33B0, symBinAddr: 0x6C8E0, symSize: 0x10 } + - { offsetInCU: 0x1261, offset: 0x930BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x33C0, symBinAddr: 0x6C8F0, symSize: 0x80 } + - { offsetInCU: 0x1275, offset: 0x930D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x3440, symBinAddr: 0x6C970, symSize: 0xD0 } + - { offsetInCU: 0x1289, offset: 0x930E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x3510, symBinAddr: 0x6CA40, symSize: 0x10 } + - { offsetInCU: 0x129D, offset: 0x930F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3520, symBinAddr: 0x6CA50, symSize: 0x10 } + - { offsetInCU: 0x12B1, offset: 0x9310C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x3530, symBinAddr: 0x6CA60, symSize: 0x10 } + - { offsetInCU: 0x12C5, offset: 0x93120, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3540, symBinAddr: 0x6CA70, symSize: 0x10 } + - { offsetInCU: 0x12D9, offset: 0x93134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3550, symBinAddr: 0x6CA80, symSize: 0x20 } + - { offsetInCU: 0x12ED, offset: 0x93148, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3580, symBinAddr: 0x6CAA0, symSize: 0x10 } + - { offsetInCU: 0x1301, offset: 0x9315C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3590, symBinAddr: 0x6CAB0, symSize: 0x10 } + - { offsetInCU: 0x1315, offset: 0x93170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x35A0, symBinAddr: 0x6CAC0, symSize: 0x30 } + - { offsetInCU: 0x1329, offset: 0x93184, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x35D0, symBinAddr: 0x6CAF0, symSize: 0x10 } + - { offsetInCU: 0x133D, offset: 0x93198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x35E0, symBinAddr: 0x6CB00, symSize: 0x10 } + - { offsetInCU: 0x1351, offset: 0x931AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x35F0, symBinAddr: 0x6CB10, symSize: 0x30 } + - { offsetInCU: 0x1365, offset: 0x931C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3620, symBinAddr: 0x6CB40, symSize: 0x10 } + - { offsetInCU: 0x13D9, offset: 0x93234, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x38B0, symBinAddr: 0x6CDA0, symSize: 0x40 } + - { offsetInCU: 0x1438, offset: 0x93293, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x47A0, symBinAddr: 0x6DC30, symSize: 0x30 } + - { offsetInCU: 0x144C, offset: 0x932A7, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x47D0, symBinAddr: 0x6DC60, symSize: 0x30 } + - { offsetInCU: 0x1460, offset: 0x932BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4840, symBinAddr: 0x6DCB0, symSize: 0x20 } + - { offsetInCU: 0x1474, offset: 0x932CF, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4860, symBinAddr: 0x6DCD0, symSize: 0x20 } + - { offsetInCU: 0x1488, offset: 0x932E3, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4880, symBinAddr: 0x6DCF0, symSize: 0x10 } + - { offsetInCU: 0x149C, offset: 0x932F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x48F0, symBinAddr: 0x6DD00, symSize: 0x20 } + - { offsetInCU: 0x14B0, offset: 0x9330B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x49A0, symBinAddr: 0x6DDB0, symSize: 0x10 } + - { offsetInCU: 0x15AE, offset: 0x93409, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x170, symBinAddr: 0x69700, symSize: 0x160 } + - { offsetInCU: 0x1671, offset: 0x934CC, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x2D0, symBinAddr: 0x69860, symSize: 0xE0 } + - { offsetInCU: 0x1734, offset: 0x9358F, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x3B0, symBinAddr: 0x69940, symSize: 0x90 } + - { offsetInCU: 0x18D6, offset: 0x93731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x870, symBinAddr: 0x69E00, symSize: 0x10 } + - { offsetInCU: 0x1956, offset: 0x937B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x880, symBinAddr: 0x69E10, symSize: 0x80 } + - { offsetInCU: 0x1A01, offset: 0x9385C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x900, symBinAddr: 0x69E90, symSize: 0x60 } + - { offsetInCU: 0x1A68, offset: 0x938C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x960, symBinAddr: 0x69EF0, symSize: 0x80 } + - { offsetInCU: 0x1AF7, offset: 0x93952, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB00, symBinAddr: 0x6A090, symSize: 0x10 } + - { offsetInCU: 0x1B77, offset: 0x939D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB10, symBinAddr: 0x6A0A0, symSize: 0x60 } + - { offsetInCU: 0x1C22, offset: 0x93A7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB70, symBinAddr: 0x6A100, symSize: 0x40 } + - { offsetInCU: 0x1C89, offset: 0x93AE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBB0, symBinAddr: 0x6A140, symSize: 0x60 } + - { offsetInCU: 0x2073, offset: 0x93ECE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x695D0, symSize: 0x70 } + - { offsetInCU: 0x20AA, offset: 0x93F05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x69640, symSize: 0x30 } + - { offsetInCU: 0x20C5, offset: 0x93F20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x69670, symSize: 0x50 } + - { offsetInCU: 0x20F4, offset: 0x93F4F, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x130, symBinAddr: 0x696C0, symSize: 0x10 } + - { offsetInCU: 0x2168, offset: 0x93FC3, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x140, symBinAddr: 0x696D0, symSize: 0x30 } + - { offsetInCU: 0x2213, offset: 0x9406E, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x440, symBinAddr: 0x699D0, symSize: 0xB0 } + - { offsetInCU: 0x23C5, offset: 0x94220, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F0, symBinAddr: 0x69A80, symSize: 0x50 } + - { offsetInCU: 0x24AC, offset: 0x94307, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x540, symBinAddr: 0x69AD0, symSize: 0x90 } + - { offsetInCU: 0x253A, offset: 0x94395, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x5D0, symBinAddr: 0x69B60, symSize: 0x80 } + - { offsetInCU: 0x25AC, offset: 0x94407, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x650, symBinAddr: 0x69BE0, symSize: 0xD0 } + - { offsetInCU: 0x26DB, offset: 0x94536, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x720, symBinAddr: 0x69CB0, symSize: 0x40 } + - { offsetInCU: 0x2769, offset: 0x945C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x850, symBinAddr: 0x69DE0, symSize: 0x20 } + - { offsetInCU: 0x27CB, offset: 0x94626, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xA90, symBinAddr: 0x6A020, symSize: 0x70 } + - { offsetInCU: 0x287A, offset: 0x946D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1230, symBinAddr: 0x6A7C0, symSize: 0x960 } + - { offsetInCU: 0x2E20, offset: 0x94C7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B90, symBinAddr: 0x6B120, symSize: 0x7A0 } + - { offsetInCU: 0x318F, offset: 0x94FEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2330, symBinAddr: 0x6B8C0, symSize: 0x540 } + - { offsetInCU: 0x334A, offset: 0x951A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2870, symBinAddr: 0x6BE00, symSize: 0x670 } + - { offsetInCU: 0x3823, offset: 0x9567E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2EE0, symBinAddr: 0x6C470, symSize: 0x130 } + - { offsetInCU: 0x3905, offset: 0x95760, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x3010, symBinAddr: 0x6C5A0, symSize: 0x30 } + - { offsetInCU: 0x393E, offset: 0x95799, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x30F0, symBinAddr: 0x6C680, symSize: 0x10 } + - { offsetInCU: 0x396B, offset: 0x957C6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3660, symBinAddr: 0x6CB50, symSize: 0x20 } + - { offsetInCU: 0x399B, offset: 0x957F6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3680, symBinAddr: 0x6CB70, symSize: 0x20 } + - { offsetInCU: 0x39CB, offset: 0x95826, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x36A0, symBinAddr: 0x6CB90, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x959BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6DDF0, symSize: 0x1A0 } + - { offsetInCU: 0x57, offset: 0x959CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6DF90, symSize: 0x90 } + - { offsetInCU: 0x6B, offset: 0x959E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6E020, symSize: 0x170 } + - { offsetInCU: 0x7F, offset: 0x959F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6E190, symSize: 0x1F0 } + - { offsetInCU: 0x93, offset: 0x95A0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6E380, symSize: 0xE0 } + - { offsetInCU: 0xA7, offset: 0x95A1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x6E460, symSize: 0x1C0 } + - { offsetInCU: 0xBB, offset: 0x95A33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x6E620, symSize: 0x20 } + - { offsetInCU: 0xCF, offset: 0x95A47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x6E6B0, symSize: 0x20 } + - { offsetInCU: 0xE3, offset: 0x95A5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x6E750, symSize: 0x90 } + - { offsetInCU: 0xF7, offset: 0x95A6F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x6E7E0, symSize: 0x50 } + - { offsetInCU: 0x10B, offset: 0x95A83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x6E830, symSize: 0x120 } + - { offsetInCU: 0x11F, offset: 0x95A97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x6E950, symSize: 0x70 } + - { offsetInCU: 0x133, offset: 0x95AAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x6E9C0, symSize: 0xF0 } + - { offsetInCU: 0x147, offset: 0x95ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x6EAB0, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x95AD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x6EC10, symSize: 0xC0 } + - { offsetInCU: 0x16F, offset: 0x95AE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x6ECD0, symSize: 0x150 } + - { offsetInCU: 0x183, offset: 0x95AFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x6EE20, symSize: 0x20 } + - { offsetInCU: 0x197, offset: 0x95B0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x6EEB0, symSize: 0x20 } + - { offsetInCU: 0x1AB, offset: 0x95B23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x6EF70, symSize: 0x80 } + - { offsetInCU: 0x239, offset: 0x95BB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1780, symBinAddr: 0x6F530, symSize: 0x10 } + - { offsetInCU: 0x28C, offset: 0x95C04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A0, symBinAddr: 0x6F550, symSize: 0x20 } + - { offsetInCU: 0x306, offset: 0x95C7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x6F580, symSize: 0x80 } + - { offsetInCU: 0x33B, offset: 0x95CB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x6F600, symSize: 0x20 } + - { offsetInCU: 0x36C, offset: 0x95CE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x6F620, symSize: 0x10 } + - { offsetInCU: 0x388, offset: 0x95D00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x6F630, symSize: 0x10 } + - { offsetInCU: 0x3A4, offset: 0x95D1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F50, symBinAddr: 0x70BD0, symSize: 0x170 } + - { offsetInCU: 0x44E, offset: 0x95DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x6F680, symSize: 0x10 } + - { offsetInCU: 0x471, offset: 0x95DE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18E0, symBinAddr: 0x6F690, symSize: 0x10 } + - { offsetInCU: 0x4F2, offset: 0x95E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AC0, symBinAddr: 0x6F870, symSize: 0x60 } + - { offsetInCU: 0x527, offset: 0x95E9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x6F8D0, symSize: 0x20 } + - { offsetInCU: 0x558, offset: 0x95ED0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B40, symBinAddr: 0x6F8F0, symSize: 0x10 } + - { offsetInCU: 0x574, offset: 0x95EEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x6F900, symSize: 0x10 } + - { offsetInCU: 0x590, offset: 0x95F08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30C0, symBinAddr: 0x70D40, symSize: 0x120 } + - { offsetInCU: 0x640, offset: 0x95FB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x6F950, symSize: 0x40 } + - { offsetInCU: 0x677, offset: 0x95FEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BE0, symBinAddr: 0x6F990, symSize: 0x40 } + - { offsetInCU: 0x69A, offset: 0x96012, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31E0, symBinAddr: 0x70E60, symSize: 0x2B0 } + - { offsetInCU: 0x6FE, offset: 0x96076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x70240, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x960AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24A0, symBinAddr: 0x70250, symSize: 0x20 } + - { offsetInCU: 0x764, offset: 0x960DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24C0, symBinAddr: 0x70270, symSize: 0x10 } + - { offsetInCU: 0x780, offset: 0x960F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24D0, symBinAddr: 0x70280, symSize: 0x10 } + - { offsetInCU: 0x79C, offset: 0x96114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3490, symBinAddr: 0x71110, symSize: 0x270 } + - { offsetInCU: 0x8E8, offset: 0x96260, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2520, symBinAddr: 0x702D0, symSize: 0x10 } + - { offsetInCU: 0x90B, offset: 0x96283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2530, symBinAddr: 0x702E0, symSize: 0x10 } + - { offsetInCU: 0x92F, offset: 0x962A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2570, symBinAddr: 0x702F0, symSize: 0x30 } + - { offsetInCU: 0x943, offset: 0x962BB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x25D0, symBinAddr: 0x70320, symSize: 0x30 } + - { offsetInCU: 0x957, offset: 0x962CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2670, symBinAddr: 0x70380, symSize: 0x30 } + - { offsetInCU: 0x96B, offset: 0x962E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x26E0, symBinAddr: 0x703B0, symSize: 0x30 } + - { offsetInCU: 0x97F, offset: 0x962F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x27D0, symBinAddr: 0x704A0, symSize: 0x30 } + - { offsetInCU: 0x993, offset: 0x9630B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2820, symBinAddr: 0x704D0, symSize: 0x80 } + - { offsetInCU: 0x9A7, offset: 0x9631F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x28A0, symBinAddr: 0x70550, symSize: 0xD0 } + - { offsetInCU: 0x9BB, offset: 0x96333, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2970, symBinAddr: 0x70620, symSize: 0x10 } + - { offsetInCU: 0x9CF, offset: 0x96347, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2980, symBinAddr: 0x70630, symSize: 0x10 } + - { offsetInCU: 0x9E3, offset: 0x9635B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x2990, symBinAddr: 0x70640, symSize: 0x10 } + - { offsetInCU: 0x9F7, offset: 0x9636F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x29A0, symBinAddr: 0x70650, symSize: 0x10 } + - { offsetInCU: 0xA0B, offset: 0x96383, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x29B0, symBinAddr: 0x70660, symSize: 0x80 } + - { offsetInCU: 0xA1F, offset: 0x96397, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2A30, symBinAddr: 0x706E0, symSize: 0xD0 } + - { offsetInCU: 0xA33, offset: 0x963AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2B00, symBinAddr: 0x707B0, symSize: 0x10 } + - { offsetInCU: 0xA47, offset: 0x963BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2B10, symBinAddr: 0x707C0, symSize: 0x10 } + - { offsetInCU: 0xA5B, offset: 0x963D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2B20, symBinAddr: 0x707D0, symSize: 0x30 } + - { offsetInCU: 0xA6F, offset: 0x963E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2B50, symBinAddr: 0x70800, symSize: 0x30 } + - { offsetInCU: 0xA83, offset: 0x963FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2B80, symBinAddr: 0x70830, symSize: 0x70 } + - { offsetInCU: 0xA97, offset: 0x9640F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2BF0, symBinAddr: 0x708A0, symSize: 0x90 } + - { offsetInCU: 0xAAB, offset: 0x96423, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2CB0, symBinAddr: 0x70930, symSize: 0x70 } + - { offsetInCU: 0xABF, offset: 0x96437, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2D20, symBinAddr: 0x709A0, symSize: 0x50 } + - { offsetInCU: 0xAD3, offset: 0x9644B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2D70, symBinAddr: 0x709F0, symSize: 0x50 } + - { offsetInCU: 0xAE7, offset: 0x9645F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2DC0, symBinAddr: 0x70A40, symSize: 0x10 } + - { offsetInCU: 0xAFB, offset: 0x96473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2DD0, symBinAddr: 0x70A50, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x96487, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2DE0, symBinAddr: 0x70A60, symSize: 0x30 } + - { offsetInCU: 0xB23, offset: 0x9649B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2E10, symBinAddr: 0x70A90, symSize: 0x10 } + - { offsetInCU: 0xB37, offset: 0x964AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2E20, symBinAddr: 0x70AA0, symSize: 0x30 } + - { offsetInCU: 0xB4B, offset: 0x964C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E50, symBinAddr: 0x70AD0, symSize: 0x10 } + - { offsetInCU: 0xB5F, offset: 0x964D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E60, symBinAddr: 0x70AE0, symSize: 0x30 } + - { offsetInCU: 0xB73, offset: 0x964EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x70B10, symSize: 0x10 } + - { offsetInCU: 0xB87, offset: 0x964FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2EA0, symBinAddr: 0x70B20, symSize: 0x30 } + - { offsetInCU: 0xB9B, offset: 0x96513, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED0, symBinAddr: 0x70B50, symSize: 0x10 } + - { offsetInCU: 0xBAF, offset: 0x96527, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EE0, symBinAddr: 0x70B60, symSize: 0x30 } + - { offsetInCU: 0xBC3, offset: 0x9653B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F10, symBinAddr: 0x70B90, symSize: 0x10 } + - { offsetInCU: 0xBD7, offset: 0x9654F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F20, symBinAddr: 0x70BA0, symSize: 0x30 } + - { offsetInCU: 0xBF6, offset: 0x9656E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3700, symBinAddr: 0x71380, symSize: 0x30 } + - { offsetInCU: 0xC0A, offset: 0x96582, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3730, symBinAddr: 0x713B0, symSize: 0x40 } + - { offsetInCU: 0xC1E, offset: 0x96596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x37E0, symBinAddr: 0x71460, symSize: 0x80 } + - { offsetInCU: 0xC32, offset: 0x965AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3860, symBinAddr: 0x714E0, symSize: 0xD0 } + - { offsetInCU: 0xC46, offset: 0x965BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3930, symBinAddr: 0x715B0, symSize: 0x10 } + - { offsetInCU: 0xC5A, offset: 0x965D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3940, symBinAddr: 0x715C0, symSize: 0x10 } + - { offsetInCU: 0xC6E, offset: 0x965E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3950, symBinAddr: 0x715D0, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x965FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3960, symBinAddr: 0x715E0, symSize: 0x30 } + - { offsetInCU: 0xC96, offset: 0x9660E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3990, symBinAddr: 0x71610, symSize: 0x10 } + - { offsetInCU: 0xCAA, offset: 0x96622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39A0, symBinAddr: 0x71620, symSize: 0x30 } + - { offsetInCU: 0xCBE, offset: 0x96636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39D0, symBinAddr: 0x71650, symSize: 0x10 } + - { offsetInCU: 0xCD2, offset: 0x9664A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39E0, symBinAddr: 0x71660, symSize: 0x30 } + - { offsetInCU: 0xD00, offset: 0x96678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x6F640, symSize: 0x20 } + - { offsetInCU: 0xD1C, offset: 0x96694, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x6F660, symSize: 0x20 } + - { offsetInCU: 0xD3E, offset: 0x966B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x6F910, symSize: 0x20 } + - { offsetInCU: 0xD5A, offset: 0x966D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B80, symBinAddr: 0x6F930, symSize: 0x20 } + - { offsetInCU: 0xD7C, offset: 0x966F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24E0, symBinAddr: 0x70290, symSize: 0x20 } + - { offsetInCU: 0xD98, offset: 0x96710, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2500, symBinAddr: 0x702B0, symSize: 0x20 } + - { offsetInCU: 0xEA5, offset: 0x9681D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1240, symBinAddr: 0x6EFF0, symSize: 0x1F0 } + - { offsetInCU: 0xEDC, offset: 0x96854, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1430, symBinAddr: 0x6F1E0, symSize: 0x350 } + - { offsetInCU: 0xF57, offset: 0x968CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x6F6A0, symSize: 0x1B0 } + - { offsetInCU: 0xFA2, offset: 0x9691A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1C20, symBinAddr: 0x6F9D0, symSize: 0xB0 } + - { offsetInCU: 0xFC3, offset: 0x9693B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CD0, symBinAddr: 0x6FA80, symSize: 0x2B0 } + - { offsetInCU: 0xFFA, offset: 0x96972, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F80, symBinAddr: 0x6FD30, symSize: 0x470 } + - { offsetInCU: 0x27, offset: 0x969F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x71710, symSize: 0x30 } + - { offsetInCU: 0x106, offset: 0x96AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x71820, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x96AEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x71850, symSize: 0x30 } + - { offsetInCU: 0x12E, offset: 0x96B00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x71880, symSize: 0x40 } + - { offsetInCU: 0x142, offset: 0x96B14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x718C0, symSize: 0x60 } + - { offsetInCU: 0x156, offset: 0x96B28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x71920, symSize: 0x50 } + - { offsetInCU: 0x16A, offset: 0x96B3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x71970, symSize: 0x40 } + - { offsetInCU: 0x17E, offset: 0x96B50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x719B0, symSize: 0x50 } + - { offsetInCU: 0x192, offset: 0x96B64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x71A00, symSize: 0xA } + - { offsetInCU: 0x2A1, offset: 0x96C73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x71710, symSize: 0x30 } + - { offsetInCU: 0x2BB, offset: 0x96C8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x71740, symSize: 0x30 } + - { offsetInCU: 0x2EF, offset: 0x96CC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x71770, symSize: 0x10 } + - { offsetInCU: 0x303, offset: 0x96CD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x71780, symSize: 0x10 } + - { offsetInCU: 0x324, offset: 0x96CF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x71790, symSize: 0x30 } + - { offsetInCU: 0x338, offset: 0x96D0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x717C0, symSize: 0x30 } + - { offsetInCU: 0x36C, offset: 0x96D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x717F0, symSize: 0x20 } + - { offsetInCU: 0x390, offset: 0x96D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x71810, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x96DB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x71A10, symSize: 0x20 } + - { offsetInCU: 0x87, offset: 0x96E14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x540, symBinAddr: 0x71F50, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x96E30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x550, symBinAddr: 0x71F60, symSize: 0x20 } + - { offsetInCU: 0xD8, offset: 0x96E65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x450, symBinAddr: 0x71E60, symSize: 0x10 } + - { offsetInCU: 0xEC, offset: 0x96E79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x460, symBinAddr: 0x71E70, symSize: 0x30 } + - { offsetInCU: 0x120, offset: 0x96EAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x590, symBinAddr: 0x71F80, symSize: 0x80 } + - { offsetInCU: 0x134, offset: 0x96EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x610, symBinAddr: 0x72000, symSize: 0xD0 } + - { offsetInCU: 0x148, offset: 0x96ED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x6E0, symBinAddr: 0x720D0, symSize: 0x10 } + - { offsetInCU: 0x15C, offset: 0x96EE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x6F0, symBinAddr: 0x720E0, symSize: 0x10 } + - { offsetInCU: 0x170, offset: 0x96EFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x700, symBinAddr: 0x720F0, symSize: 0x10 } + - { offsetInCU: 0x184, offset: 0x96F11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x710, symBinAddr: 0x72100, symSize: 0x10 } + - { offsetInCU: 0x1FF, offset: 0x96F8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x720, symBinAddr: 0x72110, symSize: 0x27B } + - { offsetInCU: 0x456, offset: 0x971E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x430, symBinAddr: 0x71E40, symSize: 0x20 } + - { offsetInCU: 0x529, offset: 0x972B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x490, symBinAddr: 0x71EA0, symSize: 0x40 } + - { offsetInCU: 0x601, offset: 0x9738E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4D0, symBinAddr: 0x71EE0, symSize: 0x30 } + - { offsetInCU: 0x67D, offset: 0x9740A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x500, symBinAddr: 0x71F10, symSize: 0x40 } + - { offsetInCU: 0x860, offset: 0x975ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x71A10, symSize: 0x20 } + - { offsetInCU: 0x881, offset: 0x9760E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x20, symBinAddr: 0x71A30, symSize: 0x410 } + - { offsetInCU: 0x2B, offset: 0x976DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x72390, symSize: 0x20 } + - { offsetInCU: 0x7C, offset: 0x9772D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x723B0, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x97833, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x72390, symSize: 0x20 } + - { offsetInCU: 0x4F, offset: 0x978C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x2000, symBinAddr: 0x8CED0, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x97E2B, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xB0, symBinAddr: 0x72480, symSize: 0x50 } + - { offsetInCU: 0x5CF, offset: 0x97E43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x100, symBinAddr: 0x724D0, symSize: 0x80 } + - { offsetInCU: 0x71F, offset: 0x97F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1A50, symBinAddr: 0x73D70, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x97FA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x1A60, symBinAddr: 0x73D80, symSize: 0x10 } + - { offsetInCU: 0x747, offset: 0x97FBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1A70, symBinAddr: 0x73D90, symSize: 0x10 } + - { offsetInCU: 0x75B, offset: 0x97FCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x1A80, symBinAddr: 0x73DA0, symSize: 0x10 } + - { offsetInCU: 0x76F, offset: 0x97FE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1A90, symBinAddr: 0x73DB0, symSize: 0x10 } + - { offsetInCU: 0x783, offset: 0x97FF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x1AF0, symBinAddr: 0x73DC0, symSize: 0x20 } + - { offsetInCU: 0x797, offset: 0x9800B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOb', symObjAddr: 0x1B10, symBinAddr: 0x73DE0, symSize: 0x40 } + - { offsetInCU: 0x7AB, offset: 0x9801F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOd', symObjAddr: 0x1B50, symBinAddr: 0x73E20, symSize: 0x40 } + - { offsetInCU: 0x7BF, offset: 0x98033, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1EC0, symBinAddr: 0x74170, symSize: 0x10 } + - { offsetInCU: 0x7D3, offset: 0x98047, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1ED0, symBinAddr: 0x74180, symSize: 0x20 } + - { offsetInCU: 0x7E7, offset: 0x9805B, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1EF0, symBinAddr: 0x741A0, symSize: 0x10 } + - { offsetInCU: 0x830, offset: 0x980A4, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1F00, symBinAddr: 0x741B0, symSize: 0x20 } + - { offsetInCU: 0x89F, offset: 0x98113, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x723D0, symSize: 0x10 } + - { offsetInCU: 0x8BB, offset: 0x9812F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x10, symBinAddr: 0x723E0, symSize: 0x10 } + - { offsetInCU: 0x8D7, offset: 0x9814B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x20, symBinAddr: 0x723F0, symSize: 0x10 } + - { offsetInCU: 0x8F3, offset: 0x98167, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x30, symBinAddr: 0x72400, symSize: 0x10 } + - { offsetInCU: 0x90F, offset: 0x98183, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x40, symBinAddr: 0x72410, symSize: 0x10 } + - { offsetInCU: 0x92B, offset: 0x9819F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x72420, symSize: 0x10 } + - { offsetInCU: 0x947, offset: 0x981BB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x60, symBinAddr: 0x72430, symSize: 0x10 } + - { offsetInCU: 0x963, offset: 0x981D7, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x70, symBinAddr: 0x72440, symSize: 0x20 } + - { offsetInCU: 0x97F, offset: 0x981F3, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x90, symBinAddr: 0x72460, symSize: 0x20 } + - { offsetInCU: 0xBD3, offset: 0x98447, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0x180, symBinAddr: 0x72550, symSize: 0x30 } + - { offsetInCU: 0xC97, offset: 0x9850B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1B0, symBinAddr: 0x72580, symSize: 0x630 } + - { offsetInCU: 0xF14, offset: 0x98788, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x820, symBinAddr: 0x72BB0, symSize: 0x50 } + - { offsetInCU: 0xF83, offset: 0x987F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x870, symBinAddr: 0x72C00, symSize: 0x50 } + - { offsetInCU: 0xFF2, offset: 0x98866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x8C0, symBinAddr: 0x72C50, symSize: 0x50 } + - { offsetInCU: 0x1061, offset: 0x988D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x910, symBinAddr: 0x72CA0, symSize: 0x50 } + - { offsetInCU: 0x10D0, offset: 0x98944, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x960, symBinAddr: 0x72CF0, symSize: 0x50 } + - { offsetInCU: 0x11A4, offset: 0x98A18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x9B0, symBinAddr: 0x72D40, symSize: 0x40 } + - { offsetInCU: 0x120E, offset: 0x98A82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x9F0, symBinAddr: 0x72D80, symSize: 0x10 } + - { offsetInCU: 0x1251, offset: 0x98AC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA00, symBinAddr: 0x72D90, symSize: 0x50 } + - { offsetInCU: 0x12C8, offset: 0x98B3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0xB70, symBinAddr: 0x72F00, symSize: 0x30 } + - { offsetInCU: 0x132B, offset: 0x98B9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xBA0, symBinAddr: 0x72F30, symSize: 0x50 } + - { offsetInCU: 0x13A2, offset: 0x98C16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xBF0, symBinAddr: 0x72F80, symSize: 0x40 } + - { offsetInCU: 0x142E, offset: 0x98CA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xC30, symBinAddr: 0x72FC0, symSize: 0x80 } + - { offsetInCU: 0x14C9, offset: 0x98D3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xCB0, symBinAddr: 0x73040, symSize: 0x70 } + - { offsetInCU: 0x1578, offset: 0x98DEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xD20, symBinAddr: 0x730B0, symSize: 0x80 } + - { offsetInCU: 0x1613, offset: 0x98E87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xDA0, symBinAddr: 0x73130, symSize: 0x30 } + - { offsetInCU: 0x168E, offset: 0x98F02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xDD0, symBinAddr: 0x73160, symSize: 0x30 } + - { offsetInCU: 0x1709, offset: 0x98F7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE00, symBinAddr: 0x73190, symSize: 0x40 } + - { offsetInCU: 0x1787, offset: 0x98FFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE40, symBinAddr: 0x731D0, symSize: 0x40 } + - { offsetInCU: 0x1805, offset: 0x99079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE80, symBinAddr: 0x73210, symSize: 0x40 } + - { offsetInCU: 0x1883, offset: 0x990F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xEC0, symBinAddr: 0x73250, symSize: 0x40 } + - { offsetInCU: 0x1901, offset: 0x99175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF00, symBinAddr: 0x73290, symSize: 0x40 } + - { offsetInCU: 0x197F, offset: 0x991F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xF40, symBinAddr: 0x732D0, symSize: 0x30 } + - { offsetInCU: 0x19DD, offset: 0x99251, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xF70, symBinAddr: 0x73300, symSize: 0x40 } + - { offsetInCU: 0x1A74, offset: 0x992E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xFB0, symBinAddr: 0x73340, symSize: 0x130 } + - { offsetInCU: 0x1B46, offset: 0x993BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0x10E0, symBinAddr: 0x73470, symSize: 0xB0 } + - { offsetInCU: 0x1C18, offset: 0x9948C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1190, symBinAddr: 0x73520, symSize: 0x90 } + - { offsetInCU: 0x1CAE, offset: 0x99522, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x1220, symBinAddr: 0x735B0, symSize: 0xF0 } + - { offsetInCU: 0x1CD1, offset: 0x99545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1310, symBinAddr: 0x736A0, symSize: 0x20 } + - { offsetInCU: 0x1D0F, offset: 0x99583, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x13A0, symBinAddr: 0x736C0, symSize: 0x310 } + - { offsetInCU: 0x1DE0, offset: 0x99654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x16B0, symBinAddr: 0x739D0, symSize: 0x3A0 } +... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket new file mode 100644 index 0000000..f82fbf0 Binary files /dev/null and b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml similarity index 65% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml index a4f31b7..5f48c3e 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml @@ -2,684 +2,684 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket' relocations: - - { offsetInCU: 0x34, offset: 0x536A1, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x22338, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x536D6, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x22370, symSize: 0x0 } - - { offsetInCU: 0x41, offset: 0x5372D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x10AC0, symBinAddr: 0x28108, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x5374D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x10AC8, symBinAddr: 0x28110, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x53763, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x10AD0, symBinAddr: 0x28118, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x53779, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x10AD8, symBinAddr: 0x28120, symSize: 0x0 } - - { offsetInCU: 0xA3, offset: 0x5378F, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x10AE0, symBinAddr: 0x28128, symSize: 0x0 } - - { offsetInCU: 0xB9, offset: 0x537A5, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x10AE8, symBinAddr: 0x28130, symSize: 0x0 } - - { offsetInCU: 0xCF, offset: 0x537BB, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x10AF0, symBinAddr: 0x28138, symSize: 0x0 } - - { offsetInCU: 0xE5, offset: 0x537D1, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x10AF8, symBinAddr: 0x28140, symSize: 0x0 } - - { offsetInCU: 0xFB, offset: 0x537E7, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x10B00, symBinAddr: 0x28148, symSize: 0x0 } - - { offsetInCU: 0x111, offset: 0x537FD, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x10B08, symBinAddr: 0x28150, symSize: 0x0 } - - { offsetInCU: 0x127, offset: 0x53813, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x10B10, symBinAddr: 0x28158, symSize: 0x0 } - - { offsetInCU: 0x13D, offset: 0x53829, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x10B18, symBinAddr: 0x28160, symSize: 0x0 } - - { offsetInCU: 0x153, offset: 0x5383F, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x10B20, symBinAddr: 0x28168, symSize: 0x0 } - - { offsetInCU: 0x16B, offset: 0x53857, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xAB34, symBinAddr: 0xE888, symSize: 0x4F0 } - - { offsetInCU: 0x48C, offset: 0x53B78, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xCD4C, symBinAddr: 0x10AA0, symSize: 0x8C } - - { offsetInCU: 0x4B4, offset: 0x53BA0, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x56258, symBinAddr: 0x2EAB8, symSize: 0x0 } - - { offsetInCU: 0x51C, offset: 0x53C08, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x56270, symBinAddr: 0x2EAD0, symSize: 0x0 } - - { offsetInCU: 0x537, offset: 0x53C23, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x56260, symBinAddr: 0x2EAC0, symSize: 0x0 } - - { offsetInCU: 0x554, offset: 0x53C40, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x56268, symBinAddr: 0x2EAC8, symSize: 0x0 } - - { offsetInCU: 0xB90, offset: 0x5427C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0x3D54, symSize: 0x18 } - - { offsetInCU: 0xBC7, offset: 0x542B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0x18, symBinAddr: 0x3D6C, symSize: 0x60 } - - { offsetInCU: 0xC0E, offset: 0x542FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x78, symBinAddr: 0x3DCC, symSize: 0x4C } - - { offsetInCU: 0xC41, offset: 0x5432D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xC4, symBinAddr: 0x3E18, symSize: 0x64 } - - { offsetInCU: 0xCF9, offset: 0x543E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x128, symBinAddr: 0x3E7C, symSize: 0xC } - - { offsetInCU: 0xD31, offset: 0x5441D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x134, symBinAddr: 0x3E88, symSize: 0x8 } - - { offsetInCU: 0xD69, offset: 0x54455, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x13C, symBinAddr: 0x3E90, symSize: 0x34 } - - { offsetInCU: 0xDBF, offset: 0x544AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x170, symBinAddr: 0x3EC4, symSize: 0x24 } - - { offsetInCU: 0xE00, offset: 0x544EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x194, symBinAddr: 0x3EE8, symSize: 0x14 } - - { offsetInCU: 0xE38, offset: 0x54524, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x1A8, symBinAddr: 0x3EFC, symSize: 0x8 } - - { offsetInCU: 0xE70, offset: 0x5455C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x1B0, symBinAddr: 0x3F04, symSize: 0x34 } - - { offsetInCU: 0xEC6, offset: 0x545B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1E4, symBinAddr: 0x3F38, symSize: 0x10 } - - { offsetInCU: 0xF07, offset: 0x545F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1F4, symBinAddr: 0x3F48, symSize: 0xC } - - { offsetInCU: 0xF39, offset: 0x54625, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x200, symBinAddr: 0x3F54, symSize: 0x18 } - - { offsetInCU: 0xF71, offset: 0x5465D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x218, symBinAddr: 0x3F6C, symSize: 0x144 } - - { offsetInCU: 0x1020, offset: 0x5470C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x35C, symBinAddr: 0x40B0, symSize: 0x50 } - - { offsetInCU: 0x10B4, offset: 0x547A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x3AC, symBinAddr: 0x4100, symSize: 0x88 } - - { offsetInCU: 0x118C, offset: 0x54878, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x434, symBinAddr: 0x4188, symSize: 0x2C } - - { offsetInCU: 0x11F1, offset: 0x548DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x460, symBinAddr: 0x41B4, symSize: 0x6C } - - { offsetInCU: 0x12B8, offset: 0x549A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x4CC, symBinAddr: 0x4220, symSize: 0x234 } - - { offsetInCU: 0x144A, offset: 0x54B36, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x700, symBinAddr: 0x4454, symSize: 0xB0 } - - { offsetInCU: 0x1504, offset: 0x54BF0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7B0, symBinAddr: 0x4504, symSize: 0x30 } - - { offsetInCU: 0x1538, offset: 0x54C24, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7E0, symBinAddr: 0x4534, symSize: 0x18 } - - { offsetInCU: 0x1570, offset: 0x54C5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x7F8, symBinAddr: 0x454C, symSize: 0x90 } - - { offsetInCU: 0x15DB, offset: 0x54CC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x888, symBinAddr: 0x45DC, symSize: 0xC } - - { offsetInCU: 0x160F, offset: 0x54CFB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x894, symBinAddr: 0x45E8, symSize: 0x18 } - - { offsetInCU: 0x1647, offset: 0x54D33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8AC, symBinAddr: 0x4600, symSize: 0x78 } - - { offsetInCU: 0x1690, offset: 0x54D7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x924, symBinAddr: 0x4678, symSize: 0xC } - - { offsetInCU: 0x16C4, offset: 0x54DB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x930, symBinAddr: 0x4684, symSize: 0x10 } - - { offsetInCU: 0x16FA, offset: 0x54DE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x940, symBinAddr: 0x4694, symSize: 0x10 } - - { offsetInCU: 0x1743, offset: 0x54E2F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x950, symBinAddr: 0x46A4, symSize: 0x8 } - - { offsetInCU: 0x1797, offset: 0x54E83, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x958, symBinAddr: 0x46AC, symSize: 0x1B0 } - - { offsetInCU: 0x189B, offset: 0x54F87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB08, symBinAddr: 0x485C, symSize: 0xC8 } - - { offsetInCU: 0x1920, offset: 0x5500C, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xBD0, symBinAddr: 0x4924, symSize: 0xC } - - { offsetInCU: 0x1962, offset: 0x5504E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xBDC, symBinAddr: 0x4930, symSize: 0x8 } - - { offsetInCU: 0x1989, offset: 0x55075, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xBE4, symBinAddr: 0x4938, symSize: 0x8 } - - { offsetInCU: 0x19A8, offset: 0x55094, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xBEC, symBinAddr: 0x4940, symSize: 0x14 } - - { offsetInCU: 0x1A0F, offset: 0x550FB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xC00, symBinAddr: 0x4954, symSize: 0xC } - - { offsetInCU: 0x1A83, offset: 0x5516F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xC0C, symBinAddr: 0x4960, symSize: 0x1C0 } - - { offsetInCU: 0x1B6A, offset: 0x55256, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xDCC, symBinAddr: 0x4B20, symSize: 0x10 } - - { offsetInCU: 0x1B8F, offset: 0x5527B, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xDDC, symBinAddr: 0x4B30, symSize: 0x8 } - - { offsetInCU: 0x1BAE, offset: 0x5529A, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xDE4, symBinAddr: 0x4B38, symSize: 0x21C } - - { offsetInCU: 0x1D01, offset: 0x553ED, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0x1000, symBinAddr: 0x4D54, symSize: 0x44 } - - { offsetInCU: 0x1D2A, offset: 0x55416, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1044, symBinAddr: 0x4D98, symSize: 0x38 } - - { offsetInCU: 0x1D49, offset: 0x55435, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x107C, symBinAddr: 0x4DD0, symSize: 0xD0 } - - { offsetInCU: 0x1DC9, offset: 0x554B5, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x114C, symBinAddr: 0x4EA0, symSize: 0x3C } - - { offsetInCU: 0x1E1C, offset: 0x55508, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x1188, symBinAddr: 0x4EDC, symSize: 0x34 } - - { offsetInCU: 0x1E45, offset: 0x55531, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x11BC, symBinAddr: 0x4F10, symSize: 0x2C } - - { offsetInCU: 0x1E64, offset: 0x55550, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x11E8, symBinAddr: 0x4F3C, symSize: 0xCC } - - { offsetInCU: 0x1F1C, offset: 0x55608, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x12B4, symBinAddr: 0x5008, symSize: 0xC } - - { offsetInCU: 0x1F6F, offset: 0x5565B, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x12C0, symBinAddr: 0x5014, symSize: 0x28 } - - { offsetInCU: 0x1F98, offset: 0x55684, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x12E8, symBinAddr: 0x503C, symSize: 0x28 } - - { offsetInCU: 0x1FB7, offset: 0x556A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x1310, symBinAddr: 0x5064, symSize: 0x8 } - - { offsetInCU: 0x1FF8, offset: 0x556E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x1318, symBinAddr: 0x506C, symSize: 0x8 } - - { offsetInCU: 0x2039, offset: 0x55725, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x1320, symBinAddr: 0x5074, symSize: 0xD0 } - - { offsetInCU: 0x20B9, offset: 0x557A5, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x13F0, symBinAddr: 0x5144, symSize: 0x14 } - - { offsetInCU: 0x210C, offset: 0x557F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x1404, symBinAddr: 0x5158, symSize: 0xCC } - - { offsetInCU: 0x21B1, offset: 0x5589D, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x14D0, symBinAddr: 0x5224, symSize: 0xC } - - { offsetInCU: 0x2204, offset: 0x558F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x14DC, symBinAddr: 0x5230, symSize: 0x8 } - - { offsetInCU: 0x2245, offset: 0x55931, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x14E4, symBinAddr: 0x5238, symSize: 0x8 } - - { offsetInCU: 0x2286, offset: 0x55972, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x14EC, symBinAddr: 0x5240, symSize: 0x138 } - - { offsetInCU: 0x233B, offset: 0x55A27, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x1624, symBinAddr: 0x5378, symSize: 0x54 } - - { offsetInCU: 0x239F, offset: 0x55A8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1678, symBinAddr: 0x53CC, symSize: 0x10C } - - { offsetInCU: 0x2455, offset: 0x55B41, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1784, symBinAddr: 0x54D8, symSize: 0x34 } - - { offsetInCU: 0x24B9, offset: 0x55BA5, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x17B8, symBinAddr: 0x550C, symSize: 0x30 } - - { offsetInCU: 0x24E2, offset: 0x55BCE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x17E8, symBinAddr: 0x553C, symSize: 0x30 } - - { offsetInCU: 0x2501, offset: 0x55BED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x1818, symBinAddr: 0x556C, symSize: 0x8 } - - { offsetInCU: 0x2551, offset: 0x55C3D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x1820, symBinAddr: 0x5574, symSize: 0x8 } - - { offsetInCU: 0x25A1, offset: 0x55C8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x1828, symBinAddr: 0x557C, symSize: 0xB0 } - - { offsetInCU: 0x2621, offset: 0x55D0D, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x18D8, symBinAddr: 0x562C, symSize: 0x1C } - - { offsetInCU: 0x267C, offset: 0x55D68, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x18F4, symBinAddr: 0x5648, symSize: 0x94 } - - { offsetInCU: 0x2706, offset: 0x55DF2, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1988, symBinAddr: 0x56DC, symSize: 0x20 } - - { offsetInCU: 0x275B, offset: 0x55E47, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x19A8, symBinAddr: 0x56FC, symSize: 0xB0 } - - { offsetInCU: 0x27DB, offset: 0x55EC7, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1A58, symBinAddr: 0x57AC, symSize: 0x1C } - - { offsetInCU: 0x2836, offset: 0x55F22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1A74, symBinAddr: 0x57C8, symSize: 0x94 } - - { offsetInCU: 0x28C0, offset: 0x55FAC, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1B08, symBinAddr: 0x585C, symSize: 0x24 } - - { offsetInCU: 0x2915, offset: 0x56001, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1B2C, symBinAddr: 0x5880, symSize: 0xB0 } - - { offsetInCU: 0x2995, offset: 0x56081, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1BDC, symBinAddr: 0x5930, symSize: 0x1C } - - { offsetInCU: 0x29F0, offset: 0x560DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1BF8, symBinAddr: 0x594C, symSize: 0x94 } - - { offsetInCU: 0x2A7A, offset: 0x56166, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1C8C, symBinAddr: 0x59E0, symSize: 0x24 } - - { offsetInCU: 0x2ACF, offset: 0x561BB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1CB0, symBinAddr: 0x5A04, symSize: 0xDC } - - { offsetInCU: 0x2B65, offset: 0x56251, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1D8C, symBinAddr: 0x5AE0, symSize: 0x14 } - - { offsetInCU: 0x2BC0, offset: 0x562AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1DA0, symBinAddr: 0x5AF4, symSize: 0x94 } - - { offsetInCU: 0x2C4E, offset: 0x5633A, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1E34, symBinAddr: 0x5B88, symSize: 0x10 } - - { offsetInCU: 0x2CA3, offset: 0x5638F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1E44, symBinAddr: 0x5B98, symSize: 0xFC } - - { offsetInCU: 0x2D39, offset: 0x56425, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x1F40, symBinAddr: 0x5C94, symSize: 0x14 } - - { offsetInCU: 0x2D8C, offset: 0x56478, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x1F54, symBinAddr: 0x5CA8, symSize: 0xBC } - - { offsetInCU: 0x2E1A, offset: 0x56506, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x2010, symBinAddr: 0x5D64, symSize: 0x1C } - - { offsetInCU: 0x2E6D, offset: 0x56559, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x202C, symBinAddr: 0x5D80, symSize: 0x10 } - - { offsetInCU: 0x2EC5, offset: 0x565B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x203C, symBinAddr: 0x5D90, symSize: 0x210 } - - { offsetInCU: 0x2FC7, offset: 0x566B3, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x224C, symBinAddr: 0x5FA0, symSize: 0x1E8 } - - { offsetInCU: 0x32A7, offset: 0x56993, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.117', symObjAddr: 0x2434, symBinAddr: 0x6188, symSize: 0x4DC } - - { offsetInCU: 0x367F, offset: 0x56D6B, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x2910, symBinAddr: 0x6664, symSize: 0x7C } - - { offsetInCU: 0x3742, offset: 0x56E2E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x298C, symBinAddr: 0x66E0, symSize: 0x30 } - - { offsetInCU: 0x376B, offset: 0x56E57, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x29BC, symBinAddr: 0x6710, symSize: 0x28 } - - { offsetInCU: 0x378A, offset: 0x56E76, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.132', symObjAddr: 0x29E4, symBinAddr: 0x6738, symSize: 0x8 } - - { offsetInCU: 0x37D6, offset: 0x56EC2, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.134', symObjAddr: 0x29EC, symBinAddr: 0x6740, symSize: 0x7C } - - { offsetInCU: 0x3886, offset: 0x56F72, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2A68, symBinAddr: 0x67BC, symSize: 0x8 } - - { offsetInCU: 0x38D2, offset: 0x56FBE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2A70, symBinAddr: 0x67C4, symSize: 0x5C } - - { offsetInCU: 0x38FB, offset: 0x56FE7, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2ACC, symBinAddr: 0x6820, symSize: 0x48 } - - { offsetInCU: 0x391A, offset: 0x57006, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2B14, symBinAddr: 0x6868, symSize: 0x1F0 } - - { offsetInCU: 0x39FA, offset: 0x570E6, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2D04, symBinAddr: 0x6A58, symSize: 0x1E8 } - - { offsetInCU: 0x3C0B, offset: 0x572F7, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x2EEC, symBinAddr: 0x6C40, symSize: 0x360 } - - { offsetInCU: 0x3E17, offset: 0x57503, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x324C, symBinAddr: 0x6FA0, symSize: 0x78 } - - { offsetInCU: 0x3EC7, offset: 0x575B3, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x32C4, symBinAddr: 0x7018, symSize: 0x8 } - - { offsetInCU: 0x3F13, offset: 0x575FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x32CC, symBinAddr: 0x7020, symSize: 0x254 } - - { offsetInCU: 0x4166, offset: 0x57852, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x3520, symBinAddr: 0x7274, symSize: 0x148 } - - { offsetInCU: 0x423A, offset: 0x57926, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3668, symBinAddr: 0x73BC, symSize: 0x34 } - - { offsetInCU: 0x4289, offset: 0x57975, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x369C, symBinAddr: 0x73F0, symSize: 0x1D4 } - - { offsetInCU: 0x43A2, offset: 0x57A8E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x3870, symBinAddr: 0x75C4, symSize: 0x12C } - - { offsetInCU: 0x4489, offset: 0x57B75, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x399C, symBinAddr: 0x76F0, symSize: 0x8 } - - { offsetInCU: 0x44EC, offset: 0x57BD8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x39A4, symBinAddr: 0x76F8, symSize: 0xC } - - { offsetInCU: 0x4561, offset: 0x57C4D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x39B0, symBinAddr: 0x7704, symSize: 0x200 } - - { offsetInCU: 0x4685, offset: 0x57D71, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x3BB0, symBinAddr: 0x7904, symSize: 0x1C4 } - - { offsetInCU: 0x47E8, offset: 0x57ED4, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x3D74, symBinAddr: 0x7AC8, symSize: 0x2D4 } - - { offsetInCU: 0x493C, offset: 0x58028, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x4048, symBinAddr: 0x7D9C, symSize: 0x34 } - - { offsetInCU: 0x499C, offset: 0x58088, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.153', symObjAddr: 0x407C, symBinAddr: 0x7DD0, symSize: 0x38 } - - { offsetInCU: 0x4A0D, offset: 0x580F9, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x40B4, symBinAddr: 0x7E08, symSize: 0x38 } - - { offsetInCU: 0x4A36, offset: 0x58122, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x40EC, symBinAddr: 0x7E40, symSize: 0x30 } - - { offsetInCU: 0x4A55, offset: 0x58141, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x411C, symBinAddr: 0x7E70, symSize: 0x54 } - - { offsetInCU: 0x4A7E, offset: 0x5816A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x4170, symBinAddr: 0x7EC4, symSize: 0x10 } - - { offsetInCU: 0x4AD4, offset: 0x581C0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x4180, symBinAddr: 0x7ED4, symSize: 0xC } - - { offsetInCU: 0x4B3A, offset: 0x58226, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x418C, symBinAddr: 0x7EE0, symSize: 0x208 } - - { offsetInCU: 0x4C4D, offset: 0x58339, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4394, symBinAddr: 0x80E8, symSize: 0x1C8 } - - { offsetInCU: 0x4DA3, offset: 0x5848F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x455C, symBinAddr: 0x82B0, symSize: 0x194 } - - { offsetInCU: 0x4E83, offset: 0x5856F, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x46F0, symBinAddr: 0x8444, symSize: 0x12C } - - { offsetInCU: 0x4F49, offset: 0x58635, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x481C, symBinAddr: 0x8570, symSize: 0x4C } - - { offsetInCU: 0x4F72, offset: 0x5865E, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4868, symBinAddr: 0x85BC, symSize: 0x40 } - - { offsetInCU: 0x4F91, offset: 0x5867D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x48A8, symBinAddr: 0x85FC, symSize: 0x12C } - - { offsetInCU: 0x503C, offset: 0x58728, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x49D4, symBinAddr: 0x8728, symSize: 0xF0 } - - { offsetInCU: 0x510A, offset: 0x587F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x4AC4, symBinAddr: 0x8818, symSize: 0x58 } - - { offsetInCU: 0x5160, offset: 0x5884C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x4B1C, symBinAddr: 0x8870, symSize: 0xFC } - - { offsetInCU: 0x526B, offset: 0x58957, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x4C18, symBinAddr: 0x896C, symSize: 0xE4 } - - { offsetInCU: 0x534E, offset: 0x58A3A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x4CFC, symBinAddr: 0x8A50, symSize: 0x114 } - - { offsetInCU: 0x540F, offset: 0x58AFB, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x4E10, symBinAddr: 0x8B64, symSize: 0xE4 } - - { offsetInCU: 0x5532, offset: 0x58C1E, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x4EF4, symBinAddr: 0x8C48, symSize: 0xD4 } - - { offsetInCU: 0x55E9, offset: 0x58CD5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x4FC8, symBinAddr: 0x8D1C, symSize: 0x7C } - - { offsetInCU: 0x5644, offset: 0x58D30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x5044, symBinAddr: 0x8D98, symSize: 0x24 } - - { offsetInCU: 0x5687, offset: 0x58D73, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5068, symBinAddr: 0x8DBC, symSize: 0x1DC } - - { offsetInCU: 0x57BD, offset: 0x58EA9, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5244, symBinAddr: 0x8F98, symSize: 0x10 } - - { offsetInCU: 0x5832, offset: 0x58F1E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5254, symBinAddr: 0x8FA8, symSize: 0x158 } - - { offsetInCU: 0x59A0, offset: 0x5908C, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x53AC, symBinAddr: 0x9100, symSize: 0x9C } - - { offsetInCU: 0x5A9C, offset: 0x59188, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0xE6E4, symBinAddr: 0x1E0F8, symSize: 0xC0 } - - { offsetInCU: 0x5AD5, offset: 0x591C1, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5448, symBinAddr: 0x919C, symSize: 0x34 } - - { offsetInCU: 0x5B28, offset: 0x59214, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x547C, symBinAddr: 0x91D0, symSize: 0x34 } - - { offsetInCU: 0x5B8C, offset: 0x59278, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x54B0, symBinAddr: 0x9204, symSize: 0x310 } - - { offsetInCU: 0x5D1C, offset: 0x59408, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x57C0, symBinAddr: 0x9514, symSize: 0x84 } - - { offsetInCU: 0x5D5E, offset: 0x5944A, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x5844, symBinAddr: 0x9598, symSize: 0x90 } - - { offsetInCU: 0x5DB1, offset: 0x5949D, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x58D4, symBinAddr: 0x9628, symSize: 0xA0 } - - { offsetInCU: 0x5E54, offset: 0x59540, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x5974, symBinAddr: 0x96C8, symSize: 0x34 } - - { offsetInCU: 0x5E9E, offset: 0x5958A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x59A8, symBinAddr: 0x96FC, symSize: 0x10 } - - { offsetInCU: 0x5EC7, offset: 0x595B3, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x59B8, symBinAddr: 0x970C, symSize: 0x44 } - - { offsetInCU: 0x5EF0, offset: 0x595DC, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x59FC, symBinAddr: 0x9750, symSize: 0x38 } - - { offsetInCU: 0x5F0F, offset: 0x595FB, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.179', symObjAddr: 0x5A34, symBinAddr: 0x9788, symSize: 0x9C } - - { offsetInCU: 0x5FA1, offset: 0x5968D, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.180', symObjAddr: 0x5AD0, symBinAddr: 0x9824, symSize: 0x34 } - - { offsetInCU: 0x5FEB, offset: 0x596D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x5B04, symBinAddr: 0x9858, symSize: 0x18 } - - { offsetInCU: 0x603D, offset: 0x59729, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x5B1C, symBinAddr: 0x9870, symSize: 0x108 } - - { offsetInCU: 0x6141, offset: 0x5982D, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x5C24, symBinAddr: 0x9978, symSize: 0x48 } - - { offsetInCU: 0x619F, offset: 0x5988B, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x5C6C, symBinAddr: 0x99C0, symSize: 0xC } - - { offsetInCU: 0x61C8, offset: 0x598B4, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x5C78, symBinAddr: 0x99CC, symSize: 0x8 } - - { offsetInCU: 0x61E7, offset: 0x598D3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x5C80, symBinAddr: 0x99D4, symSize: 0x68 } - - { offsetInCU: 0x6238, offset: 0x59924, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x5CE8, symBinAddr: 0x9A3C, symSize: 0x44 } - - { offsetInCU: 0x626C, offset: 0x59958, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x5D2C, symBinAddr: 0x9A80, symSize: 0x324 } - - { offsetInCU: 0x64C9, offset: 0x59BB5, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x6050, symBinAddr: 0x9DA4, symSize: 0x34 } - - { offsetInCU: 0x6529, offset: 0x59C15, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6084, symBinAddr: 0x9DD8, symSize: 0x90 } - - { offsetInCU: 0x65A6, offset: 0x59C92, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6114, symBinAddr: 0x9E68, symSize: 0x3C } - - { offsetInCU: 0x65E8, offset: 0x59CD4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x6150, symBinAddr: 0x9EA4, symSize: 0x58 } - - { offsetInCU: 0x6632, offset: 0x59D1E, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x61A8, symBinAddr: 0x9EFC, symSize: 0x48 } - - { offsetInCU: 0x6674, offset: 0x59D60, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x61F0, symBinAddr: 0x9F44, symSize: 0x58 } - - { offsetInCU: 0x66BE, offset: 0x59DAA, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6248, symBinAddr: 0x9F9C, symSize: 0x48 } - - { offsetInCU: 0x6700, offset: 0x59DEC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x6290, symBinAddr: 0x9FE4, symSize: 0x58 } - - { offsetInCU: 0x674A, offset: 0x59E36, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x62E8, symBinAddr: 0xA03C, symSize: 0x48 } - - { offsetInCU: 0x678C, offset: 0x59E78, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x6330, symBinAddr: 0xA084, symSize: 0x70 } - - { offsetInCU: 0x67D1, offset: 0x59EBD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x63A0, symBinAddr: 0xA0F4, symSize: 0xD4 } - - { offsetInCU: 0x6827, offset: 0x59F13, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6474, symBinAddr: 0xA1C8, symSize: 0xD4 } - - { offsetInCU: 0x687D, offset: 0x59F69, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6548, symBinAddr: 0xA29C, symSize: 0xF4 } - - { offsetInCU: 0x690E, offset: 0x59FFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x663C, symBinAddr: 0xA390, symSize: 0x118 } - - { offsetInCU: 0x6986, offset: 0x5A072, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x6754, symBinAddr: 0xA4A8, symSize: 0x100 } - - { offsetInCU: 0x69DC, offset: 0x5A0C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x6854, symBinAddr: 0xA5A8, symSize: 0xC0 } - - { offsetInCU: 0x6A43, offset: 0x5A12F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x6914, symBinAddr: 0xA668, symSize: 0x10C } - - { offsetInCU: 0x6A99, offset: 0x5A185, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x6A20, symBinAddr: 0xA774, symSize: 0x10C } - - { offsetInCU: 0x6AEF, offset: 0x5A1DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x6B2C, symBinAddr: 0xA880, symSize: 0x10C } - - { offsetInCU: 0x6B45, offset: 0x5A231, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x6C38, symBinAddr: 0xA98C, symSize: 0x10C } - - { offsetInCU: 0x6B9B, offset: 0x5A287, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x6D44, symBinAddr: 0xAA98, symSize: 0x10C } - - { offsetInCU: 0x6BF1, offset: 0x5A2DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x6E50, symBinAddr: 0xABA4, symSize: 0xD4 } - - { offsetInCU: 0x6C47, offset: 0x5A333, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x6F24, symBinAddr: 0xAC78, symSize: 0xD8 } - - { offsetInCU: 0x6CDD, offset: 0x5A3C9, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x6FFC, symBinAddr: 0xAD50, symSize: 0x1C } - - { offsetInCU: 0x6D38, offset: 0x5A424, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7018, symBinAddr: 0xAD6C, symSize: 0xD8 } - - { offsetInCU: 0x6DCE, offset: 0x5A4BA, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x70F0, symBinAddr: 0xAE44, symSize: 0x18 } - - { offsetInCU: 0x6E29, offset: 0x5A515, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7108, symBinAddr: 0xAE5C, symSize: 0x10C } - - { offsetInCU: 0x6EA9, offset: 0x5A595, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7214, symBinAddr: 0xAF68, symSize: 0x78 } - - { offsetInCU: 0x6EFC, offset: 0x5A5E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x728C, symBinAddr: 0xAFE0, symSize: 0xE4 } - - { offsetInCU: 0x6F7C, offset: 0x5A668, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x7370, symBinAddr: 0xB0C4, symSize: 0x50 } - - { offsetInCU: 0x6FCF, offset: 0x5A6BB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x73C0, symBinAddr: 0xB114, symSize: 0xEC } - - { offsetInCU: 0x704F, offset: 0x5A73B, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x74AC, symBinAddr: 0xB200, symSize: 0x5C } - - { offsetInCU: 0x70A2, offset: 0x5A78E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7508, symBinAddr: 0xB25C, symSize: 0x10C } - - { offsetInCU: 0x7122, offset: 0x5A80E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x7614, symBinAddr: 0xB368, symSize: 0x78 } - - { offsetInCU: 0x7175, offset: 0x5A861, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x768C, symBinAddr: 0xB3E0, symSize: 0xE4 } - - { offsetInCU: 0x71F5, offset: 0x5A8E1, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x7770, symBinAddr: 0xB4C4, symSize: 0x50 } - - { offsetInCU: 0x7248, offset: 0x5A934, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x77C0, symBinAddr: 0xB514, symSize: 0x30 } - - { offsetInCU: 0x7280, offset: 0x5A96C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x77F0, symBinAddr: 0xB544, symSize: 0x30 } - - { offsetInCU: 0x72B8, offset: 0x5A9A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x7820, symBinAddr: 0xB574, symSize: 0x18 } - - { offsetInCU: 0x72F0, offset: 0x5A9DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x7838, symBinAddr: 0xB58C, symSize: 0x18 } - - { offsetInCU: 0x7328, offset: 0x5AA14, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x7850, symBinAddr: 0xB5A4, symSize: 0x30 } - - { offsetInCU: 0x7360, offset: 0x5AA4C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x7880, symBinAddr: 0xB5D4, symSize: 0x30 } - - { offsetInCU: 0x7398, offset: 0x5AA84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x78B0, symBinAddr: 0xB604, symSize: 0x18 } - - { offsetInCU: 0x73D0, offset: 0x5AABC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x78C8, symBinAddr: 0xB61C, symSize: 0x18 } - - { offsetInCU: 0x7408, offset: 0x5AAF4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x78E0, symBinAddr: 0xB634, symSize: 0x90 } - - { offsetInCU: 0x7497, offset: 0x5AB83, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x7970, symBinAddr: 0xB6C4, symSize: 0x64 } - - { offsetInCU: 0x7526, offset: 0x5AC12, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x79D4, symBinAddr: 0xB728, symSize: 0x88 } - - { offsetInCU: 0x75B5, offset: 0x5ACA1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x7A5C, symBinAddr: 0xB7B0, symSize: 0x5C } - - { offsetInCU: 0x7644, offset: 0x5AD30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x7AB8, symBinAddr: 0xB80C, symSize: 0x90 } - - { offsetInCU: 0x76D3, offset: 0x5ADBF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x7B48, symBinAddr: 0xB89C, symSize: 0x90 } - - { offsetInCU: 0x7783, offset: 0x5AE6F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x7BD8, symBinAddr: 0xB92C, symSize: 0x64 } - - { offsetInCU: 0x7812, offset: 0x5AEFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x7C3C, symBinAddr: 0xB990, symSize: 0x88 } - - { offsetInCU: 0x78A1, offset: 0x5AF8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x7CC4, symBinAddr: 0xBA18, symSize: 0x5C } - - { offsetInCU: 0x7930, offset: 0x5B01C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x7D20, symBinAddr: 0xBA74, symSize: 0xFC } - - { offsetInCU: 0x79C6, offset: 0x5B0B2, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x7E1C, symBinAddr: 0xBB70, symSize: 0x100 } - - { offsetInCU: 0x7AB3, offset: 0x5B19F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x7F1C, symBinAddr: 0xBC70, symSize: 0xFC } - - { offsetInCU: 0x7B49, offset: 0x5B235, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8018, symBinAddr: 0xBD6C, symSize: 0x100 } - - { offsetInCU: 0x7C36, offset: 0x5B322, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8118, symBinAddr: 0xBE6C, symSize: 0xB4 } - - { offsetInCU: 0x7CB6, offset: 0x5B3A2, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x81CC, symBinAddr: 0xBF20, symSize: 0x1C } - - { offsetInCU: 0x7D11, offset: 0x5B3FD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x81E8, symBinAddr: 0xBF3C, symSize: 0xB4 } - - { offsetInCU: 0x7D91, offset: 0x5B47D, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x829C, symBinAddr: 0xBFF0, symSize: 0x1C } - - { offsetInCU: 0x7DEC, offset: 0x5B4D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x82B8, symBinAddr: 0xC00C, symSize: 0xAC } - - { offsetInCU: 0x7E6C, offset: 0x5B558, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8364, symBinAddr: 0xC0B8, symSize: 0x18 } - - { offsetInCU: 0x7EC7, offset: 0x5B5B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x837C, symBinAddr: 0xC0D0, symSize: 0x3FC } - - { offsetInCU: 0x81CE, offset: 0x5B8BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x8778, symBinAddr: 0xC4CC, symSize: 0xDC } - - { offsetInCU: 0x8245, offset: 0x5B931, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x8854, symBinAddr: 0xC5A8, symSize: 0x1F0 } - - { offsetInCU: 0x835F, offset: 0x5BA4B, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x8A44, symBinAddr: 0xC798, symSize: 0x64 } - - { offsetInCU: 0x83CB, offset: 0x5BAB7, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x8AA8, symBinAddr: 0xC7FC, symSize: 0x54 } - - { offsetInCU: 0x8429, offset: 0x5BB15, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x8AFC, symBinAddr: 0xC850, symSize: 0x24 } - - { offsetInCU: 0x8486, offset: 0x5BB72, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x8B20, symBinAddr: 0xC874, symSize: 0x10 } - - { offsetInCU: 0x84AF, offset: 0x5BB9B, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x8B30, symBinAddr: 0xC884, symSize: 0xC } - - { offsetInCU: 0x84CE, offset: 0x5BBBA, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.216', symObjAddr: 0x8B3C, symBinAddr: 0xC890, symSize: 0x24 } - - { offsetInCU: 0x852B, offset: 0x5BC17, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x8B60, symBinAddr: 0xC8B4, symSize: 0x18 } - - { offsetInCU: 0x8563, offset: 0x5BC4F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x8B78, symBinAddr: 0xC8CC, symSize: 0x18 } - - { offsetInCU: 0x859B, offset: 0x5BC87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x8B90, symBinAddr: 0xC8E4, symSize: 0x38 } - - { offsetInCU: 0x85EC, offset: 0x5BCD8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x8BC8, symBinAddr: 0xC91C, symSize: 0x38 } - - { offsetInCU: 0x862E, offset: 0x5BD1A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x8C00, symBinAddr: 0xC954, symSize: 0x38 } - - { offsetInCU: 0x8670, offset: 0x5BD5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x8C38, symBinAddr: 0xC98C, symSize: 0x38 } - - { offsetInCU: 0x86B2, offset: 0x5BD9E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x8C70, symBinAddr: 0xC9C4, symSize: 0x14 } - - { offsetInCU: 0x8705, offset: 0x5BDF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8C84, symBinAddr: 0xC9D8, symSize: 0xC } - - { offsetInCU: 0x8776, offset: 0x5BE62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8C90, symBinAddr: 0xC9E4, symSize: 0xF0 } - - { offsetInCU: 0x882D, offset: 0x5BF19, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x8D80, symBinAddr: 0xCAD4, symSize: 0x54 } - - { offsetInCU: 0x8880, offset: 0x5BF6C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x8DD4, symBinAddr: 0xCB28, symSize: 0x10 } - - { offsetInCU: 0x88E2, offset: 0x5BFCE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8DE4, symBinAddr: 0xCB38, symSize: 0xF8 } - - { offsetInCU: 0x8999, offset: 0x5C085, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x8EDC, symBinAddr: 0xCC30, symSize: 0x54 } - - { offsetInCU: 0x89EC, offset: 0x5C0D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x8F30, symBinAddr: 0xCC84, symSize: 0x14 } - - { offsetInCU: 0x8A4E, offset: 0x5C13A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8F44, symBinAddr: 0xCC98, symSize: 0xC } - - { offsetInCU: 0x8ACE, offset: 0x5C1BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x8F50, symBinAddr: 0xCCA4, symSize: 0x14 } - - { offsetInCU: 0x8B41, offset: 0x5C22D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8F64, symBinAddr: 0xCCB8, symSize: 0x12C } - - { offsetInCU: 0x8C09, offset: 0x5C2F5, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x9090, symBinAddr: 0xCDE4, symSize: 0x54 } - - { offsetInCU: 0x8C5C, offset: 0x5C348, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x90E4, symBinAddr: 0xCE38, symSize: 0xE8 } - - { offsetInCU: 0x8D25, offset: 0x5C411, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x91CC, symBinAddr: 0xCF20, symSize: 0xD0 } - - { offsetInCU: 0x8DDC, offset: 0x5C4C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x929C, symBinAddr: 0xCFF0, symSize: 0x130 } - - { offsetInCU: 0x8E10, offset: 0x5C4FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0x93CC, symBinAddr: 0xD120, symSize: 0x194 } - - { offsetInCU: 0x8FC0, offset: 0x5C6AC, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0x9560, symBinAddr: 0xD2B4, symSize: 0x70 } - - { offsetInCU: 0x9061, offset: 0x5C74D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0x95D0, symBinAddr: 0xD324, symSize: 0x944 } - - { offsetInCU: 0x942E, offset: 0x5CB1A, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0x9F14, symBinAddr: 0xDC68, symSize: 0x34 } - - { offsetInCU: 0x94A3, offset: 0x5CB8F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0x9F48, symBinAddr: 0xDC9C, symSize: 0x200 } - - { offsetInCU: 0x95A5, offset: 0x5CC91, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xA148, symBinAddr: 0xDE9C, symSize: 0x30 } - - { offsetInCU: 0x95F8, offset: 0x5CCE4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xA178, symBinAddr: 0xDECC, symSize: 0x188 } - - { offsetInCU: 0x9716, offset: 0x5CE02, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xA300, symBinAddr: 0xE054, symSize: 0x38 } - - { offsetInCU: 0x978B, offset: 0x5CE77, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xA338, symBinAddr: 0xE08C, symSize: 0x38 } - - { offsetInCU: 0x97B4, offset: 0x5CEA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xA370, symBinAddr: 0xE0C4, symSize: 0x3C } - - { offsetInCU: 0x97F6, offset: 0x5CEE2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xA3AC, symBinAddr: 0xE100, symSize: 0x108 } - - { offsetInCU: 0x98DC, offset: 0x5CFC8, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xA4B4, symBinAddr: 0xE208, symSize: 0x48 } - - { offsetInCU: 0x993A, offset: 0x5D026, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xA4FC, symBinAddr: 0xE250, symSize: 0xF4 } - - { offsetInCU: 0x99B8, offset: 0x5D0A4, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xA5F0, symBinAddr: 0xE344, symSize: 0x90 } - - { offsetInCU: 0x9A52, offset: 0x5D13E, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xA680, symBinAddr: 0xE3D4, symSize: 0x34 } - - { offsetInCU: 0x9AA5, offset: 0x5D191, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xA6B4, symBinAddr: 0xE408, symSize: 0xB0 } - - { offsetInCU: 0x9B34, offset: 0x5D220, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xA764, symBinAddr: 0xE4B8, symSize: 0xCC } - - { offsetInCU: 0x9BC9, offset: 0x5D2B5, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xA830, symBinAddr: 0xE584, symSize: 0x54 } - - { offsetInCU: 0x9C1C, offset: 0x5D308, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xA884, symBinAddr: 0xE5D8, symSize: 0xE8 } - - { offsetInCU: 0x9CE5, offset: 0x5D3D1, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xA96C, symBinAddr: 0xE6C0, symSize: 0xCC } - - { offsetInCU: 0x9D9C, offset: 0x5D488, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xAA38, symBinAddr: 0xE78C, symSize: 0xFC } - - { offsetInCU: 0x9E4D, offset: 0x5D539, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xB024, symBinAddr: 0xED78, symSize: 0x30 } - - { offsetInCU: 0x9E8F, offset: 0x5D57B, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xB054, symBinAddr: 0xEDA8, symSize: 0x34 } - - { offsetInCU: 0x9F04, offset: 0x5D5F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xB088, symBinAddr: 0xEDDC, symSize: 0xC0 } - - { offsetInCU: 0x9F86, offset: 0x5D672, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xB148, symBinAddr: 0xEE9C, symSize: 0x34 } - - { offsetInCU: 0x9FEA, offset: 0x5D6D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xB17C, symBinAddr: 0xEED0, symSize: 0x3C } - - { offsetInCU: 0xA02C, offset: 0x5D718, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xB1B8, symBinAddr: 0xEF0C, symSize: 0x108 } - - { offsetInCU: 0xA112, offset: 0x5D7FE, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xB2C0, symBinAddr: 0xF014, symSize: 0x48 } - - { offsetInCU: 0xA170, offset: 0x5D85C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xB308, symBinAddr: 0xF05C, symSize: 0xF4 } - - { offsetInCU: 0xA1EE, offset: 0x5D8DA, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xB3FC, symBinAddr: 0xF150, symSize: 0x8C } - - { offsetInCU: 0xA288, offset: 0x5D974, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xB488, symBinAddr: 0xF1DC, symSize: 0x34 } - - { offsetInCU: 0xA2DB, offset: 0x5D9C7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xB4BC, symBinAddr: 0xF210, symSize: 0xB0 } - - { offsetInCU: 0xA36A, offset: 0x5DA56, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xB56C, symBinAddr: 0xF2C0, symSize: 0xC8 } - - { offsetInCU: 0xA3DD, offset: 0x5DAC9, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xB634, symBinAddr: 0xF388, symSize: 0x78 } - - { offsetInCU: 0xA430, offset: 0x5DB1C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xB6AC, symBinAddr: 0xF400, symSize: 0xFC } - - { offsetInCU: 0xA4BA, offset: 0x5DBA6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xB7A8, symBinAddr: 0xF4FC, symSize: 0x1BC } - - { offsetInCU: 0xA669, offset: 0x5DD55, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xB964, symBinAddr: 0xF6B8, symSize: 0xCC } - - { offsetInCU: 0xA73F, offset: 0x5DE2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xBA30, symBinAddr: 0xF784, symSize: 0x978 } - - { offsetInCU: 0xABE0, offset: 0x5E2CC, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xC3A8, symBinAddr: 0x100FC, symSize: 0xC } - - { offsetInCU: 0xAC3C, offset: 0x5E328, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xC3B4, symBinAddr: 0x10108, symSize: 0xC } - - { offsetInCU: 0xAC98, offset: 0x5E384, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xC3C0, symBinAddr: 0x10114, symSize: 0x374 } - - { offsetInCU: 0xAE2B, offset: 0x5E517, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xC734, symBinAddr: 0x10488, symSize: 0x30 } - - { offsetInCU: 0xAE7E, offset: 0x5E56A, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xC764, symBinAddr: 0x104B8, symSize: 0xB0 } - - { offsetInCU: 0xAF19, offset: 0x5E605, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xC814, symBinAddr: 0x10568, symSize: 0x78 } - - { offsetInCU: 0xAFB8, offset: 0x5E6A4, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xC88C, symBinAddr: 0x105E0, symSize: 0x38 } - - { offsetInCU: 0xAFE1, offset: 0x5E6CD, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xC8C4, symBinAddr: 0x10618, symSize: 0x2C } - - { offsetInCU: 0xB000, offset: 0x5E6EC, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xC8F0, symBinAddr: 0x10644, symSize: 0x40 } - - { offsetInCU: 0xB029, offset: 0x5E715, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xC930, symBinAddr: 0x10684, symSize: 0x34 } - - { offsetInCU: 0xB048, offset: 0x5E734, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.305', symObjAddr: 0xC964, symBinAddr: 0x106B8, symSize: 0x3C } - - { offsetInCU: 0xB0BD, offset: 0x5E7A9, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xC9A0, symBinAddr: 0x106F4, symSize: 0x4C } - - { offsetInCU: 0xB0E6, offset: 0x5E7D2, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xC9EC, symBinAddr: 0x10740, symSize: 0x3C } - - { offsetInCU: 0xB105, offset: 0x5E7F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xCA28, symBinAddr: 0x1077C, symSize: 0x78 } - - { offsetInCU: 0xB15B, offset: 0x5E847, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xCAA0, symBinAddr: 0x107F4, symSize: 0xE8 } - - { offsetInCU: 0xB1CC, offset: 0x5E8B8, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xCB88, symBinAddr: 0x108DC, symSize: 0x30 } - - { offsetInCU: 0xB21F, offset: 0x5E90B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xCBB8, symBinAddr: 0x1090C, symSize: 0x20 } - - { offsetInCU: 0xB260, offset: 0x5E94C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xCBD8, symBinAddr: 0x1092C, symSize: 0x170 } - - { offsetInCU: 0xB360, offset: 0x5EA4C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xCD48, symBinAddr: 0x10A9C, symSize: 0x4 } - - { offsetInCU: 0xB3D7, offset: 0x5EAC3, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCDD8, symBinAddr: 0x10B2C, symSize: 0x38 } - - { offsetInCU: 0xB415, offset: 0x5EB01, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xCE10, symBinAddr: 0x10B64, symSize: 0x78 } - - { offsetInCU: 0xB457, offset: 0x5EB43, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xCE88, symBinAddr: 0x10BDC, symSize: 0x78 } - - { offsetInCU: 0xB4D5, offset: 0x5EBC1, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCF00, symBinAddr: 0x10C54, symSize: 0xB8 } - - { offsetInCU: 0xB517, offset: 0x5EC03, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xCFB8, symBinAddr: 0x10D0C, symSize: 0x164 } - - { offsetInCU: 0xB59E, offset: 0x5EC8A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xD11C, symBinAddr: 0x10E70, symSize: 0x68 } - - { offsetInCU: 0xB668, offset: 0x5ED54, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xD184, symBinAddr: 0x10ED8, symSize: 0x68 } - - { offsetInCU: 0xB726, offset: 0x5EE12, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xD1EC, symBinAddr: 0x10F40, symSize: 0x104 } - - { offsetInCU: 0xB815, offset: 0x5EF01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xD2F0, symBinAddr: 0x11044, symSize: 0x8C } - - { offsetInCU: 0xB8AC, offset: 0x5EF98, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xD37C, symBinAddr: 0x110D0, symSize: 0x138 } - - { offsetInCU: 0xB975, offset: 0x5F061, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xD4B4, symBinAddr: 0x11208, symSize: 0x138 } - - { offsetInCU: 0xBA3E, offset: 0x5F12A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xD5EC, symBinAddr: 0x11340, symSize: 0x84 } - - { offsetInCU: 0xBA8C, offset: 0x5F178, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xD670, symBinAddr: 0x113C4, symSize: 0x3C } - - { offsetInCU: 0xBACE, offset: 0x5F1BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xD6AC, symBinAddr: 0x11400, symSize: 0x84 } - - { offsetInCU: 0xBB18, offset: 0x5F204, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xD730, symBinAddr: 0x11484, symSize: 0x3C } - - { offsetInCU: 0xBB5A, offset: 0x5F246, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xD76C, symBinAddr: 0x114C0, symSize: 0x64 } - - { offsetInCU: 0xBC61, offset: 0x5F34D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xD7D0, symBinAddr: 0x11524, symSize: 0xB0 } - - { offsetInCU: 0xBCE1, offset: 0x5F3CD, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xD880, symBinAddr: 0x115D4, symSize: 0x1C } - - { offsetInCU: 0xBD3C, offset: 0x5F428, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xD89C, symBinAddr: 0x115F0, symSize: 0x94 } - - { offsetInCU: 0xBDC6, offset: 0x5F4B2, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xD930, symBinAddr: 0x11684, symSize: 0x24 } - - { offsetInCU: 0xBE1B, offset: 0x5F507, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xD954, symBinAddr: 0x116A8, symSize: 0x18 } - - { offsetInCU: 0xBE96, offset: 0x5F582, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xD96C, symBinAddr: 0x116C0, symSize: 0x14 } - - { offsetInCU: 0xBEFE, offset: 0x5F5EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xD980, symBinAddr: 0x116D4, symSize: 0x48 } - - { offsetInCU: 0xBF7B, offset: 0x5F667, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xD9C8, symBinAddr: 0x1171C, symSize: 0x40 } - - { offsetInCU: 0xBFC1, offset: 0x5F6AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xDA08, symBinAddr: 0x1175C, symSize: 0x34 } - - { offsetInCU: 0xC007, offset: 0x5F6F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xDA3C, symBinAddr: 0x11790, symSize: 0x34 } - - { offsetInCU: 0xC04D, offset: 0x5F739, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xDA70, symBinAddr: 0x117C4, symSize: 0x3C } - - { offsetInCU: 0xC093, offset: 0x5F77F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xDAAC, symBinAddr: 0x11800, symSize: 0x3C } - - { offsetInCU: 0xC0D9, offset: 0x5F7C5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xDAE8, symBinAddr: 0x1183C, symSize: 0x9C } - - { offsetInCU: 0xC176, offset: 0x5F862, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xDB84, symBinAddr: 0x118D8, symSize: 0x3C } - - { offsetInCU: 0xC1BC, offset: 0x5F8A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xDBC0, symBinAddr: 0x11914, symSize: 0x3C } - - { offsetInCU: 0xC202, offset: 0x5F8EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xDBFC, symBinAddr: 0x11950, symSize: 0x2C } - - { offsetInCU: 0xC248, offset: 0x5F934, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xDC28, symBinAddr: 0x1197C, symSize: 0x318 } - - { offsetInCU: 0xC48E, offset: 0x5FB7A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xDF40, symBinAddr: 0x11C94, symSize: 0x7C } - - { offsetInCU: 0xC505, offset: 0x5FBF1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xDFBC, symBinAddr: 0x11D10, symSize: 0x7C } - - { offsetInCU: 0xC57D, offset: 0x5FC69, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xE038, symBinAddr: 0x11D8C, symSize: 0x10 } - - { offsetInCU: 0xC5C0, offset: 0x5FCAC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xE048, symBinAddr: 0x11D9C, symSize: 0x10 } - - { offsetInCU: 0xC603, offset: 0x5FCEF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xE058, symBinAddr: 0x11DAC, symSize: 0x5C } - - { offsetInCU: 0xC659, offset: 0x5FD45, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xE0B4, symBinAddr: 0x11E08, symSize: 0x6C } - - { offsetInCU: 0xC6B3, offset: 0x5FD9F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xE120, symBinAddr: 0x11E74, symSize: 0x38 } - - { offsetInCU: 0xC70C, offset: 0x5FDF8, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xE158, symBinAddr: 0x11EAC, symSize: 0x60 } - - { offsetInCU: 0xC771, offset: 0x5FE5D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xE1B8, symBinAddr: 0x11F0C, symSize: 0x60 } - - { offsetInCU: 0xC7D6, offset: 0x5FEC2, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xE218, symBinAddr: 0x11F6C, symSize: 0xC } - - { offsetInCU: 0xC83B, offset: 0x5FF27, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xE224, symBinAddr: 0x11F78, symSize: 0x184 } - - { offsetInCU: 0xC915, offset: 0x60001, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xE3A8, symBinAddr: 0x120FC, symSize: 0x18 } - - { offsetInCU: 0xC949, offset: 0x60035, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xE3C0, symBinAddr: 0x12114, symSize: 0x18 } - - { offsetInCU: 0xC97D, offset: 0x60069, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xE3D8, symBinAddr: 0x1212C, symSize: 0x18 } - - { offsetInCU: 0xC9B1, offset: 0x6009D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xE3F0, symBinAddr: 0x12144, symSize: 0x18 } - - { offsetInCU: 0xC9E5, offset: 0x600D1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xE408, symBinAddr: 0x1215C, symSize: 0x11C } - - { offsetInCU: 0xCA19, offset: 0x60105, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xE524, symBinAddr: 0x12278, symSize: 0x7C } - - { offsetInCU: 0xCA76, offset: 0x60162, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0xE5A0, symBinAddr: 0x122F4, symSize: 0x5C } - - { offsetInCU: 0xCAD6, offset: 0x601C2, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xE5FC, symBinAddr: 0x12350, symSize: 0x7C } - - { offsetInCU: 0xCB46, offset: 0x60232, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0xE678, symBinAddr: 0x123CC, symSize: 0x5C } - - { offsetInCU: 0x27, offset: 0x63E69, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x12428, symSize: 0x18 } - - { offsetInCU: 0x41, offset: 0x63E83, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xD4A8, symBinAddr: 0x28820, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x63EA3, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xD4B0, symBinAddr: 0x28828, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x63EB9, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xD4B8, symBinAddr: 0x28830, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x63ECF, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xD4C0, symBinAddr: 0x28838, symSize: 0x0 } - - { offsetInCU: 0x97, offset: 0x63ED9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xA7F0, symBinAddr: 0x1C928, symSize: 0x6C } - - { offsetInCU: 0xBF, offset: 0x63F01, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x40270, symBinAddr: 0x2EAD8, symSize: 0x0 } - - { offsetInCU: 0x125, offset: 0x63F67, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x40278, symBinAddr: 0x2EAE0, symSize: 0x0 } - - { offsetInCU: 0x65E, offset: 0x644A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x12428, symSize: 0x18 } - - { offsetInCU: 0x696, offset: 0x644D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0x18, symBinAddr: 0x12440, symSize: 0x94 } - - { offsetInCU: 0x701, offset: 0x64543, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0xAC, symBinAddr: 0x124D4, symSize: 0x48 } - - { offsetInCU: 0x735, offset: 0x64577, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xF4, symBinAddr: 0x1251C, symSize: 0x34 } - - { offsetInCU: 0x76D, offset: 0x645AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x128, symBinAddr: 0x12550, symSize: 0x30 } - - { offsetInCU: 0x7A1, offset: 0x645E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x158, symBinAddr: 0x12580, symSize: 0x10 } - - { offsetInCU: 0x7D7, offset: 0x64619, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x168, symBinAddr: 0x12590, symSize: 0x10 } - - { offsetInCU: 0x820, offset: 0x64662, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x178, symBinAddr: 0x125A0, symSize: 0x8 } - - { offsetInCU: 0x874, offset: 0x646B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x180, symBinAddr: 0x125A8, symSize: 0x190 } - - { offsetInCU: 0x96E, offset: 0x647B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x310, symBinAddr: 0x12738, symSize: 0xE4 } - - { offsetInCU: 0x9F3, offset: 0x64835, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x3F4, symBinAddr: 0x1281C, symSize: 0xC } - - { offsetInCU: 0xA35, offset: 0x64877, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x410, symBinAddr: 0x12828, symSize: 0xD0 } - - { offsetInCU: 0xAB5, offset: 0x648F7, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x4E0, symBinAddr: 0x128F8, symSize: 0x10 } - - { offsetInCU: 0xADA, offset: 0x6491C, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x4F0, symBinAddr: 0x12908, symSize: 0x8 } - - { offsetInCU: 0xAF9, offset: 0x6493B, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x4F8, symBinAddr: 0x12910, symSize: 0x3C } - - { offsetInCU: 0xB4C, offset: 0x6498E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x594, symBinAddr: 0x1294C, symSize: 0xCC } - - { offsetInCU: 0xC04, offset: 0x64A46, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x660, symBinAddr: 0x12A18, symSize: 0xC } - - { offsetInCU: 0xC57, offset: 0x64A99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x6BC, symBinAddr: 0x12A24, symSize: 0x8 } - - { offsetInCU: 0xC98, offset: 0x64ADA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x6C4, symBinAddr: 0x12A2C, symSize: 0x8 } - - { offsetInCU: 0xCD9, offset: 0x64B1B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x6CC, symBinAddr: 0x12A34, symSize: 0xD0 } - - { offsetInCU: 0xD59, offset: 0x64B9B, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x79C, symBinAddr: 0x12B04, symSize: 0x14 } - - { offsetInCU: 0xDAC, offset: 0x64BEE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x7B0, symBinAddr: 0x12B18, symSize: 0xCC } - - { offsetInCU: 0xE51, offset: 0x64C93, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x87C, symBinAddr: 0x12BE4, symSize: 0xC } - - { offsetInCU: 0xEA4, offset: 0x64CE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x888, symBinAddr: 0x12BF0, symSize: 0x8 } - - { offsetInCU: 0xEE5, offset: 0x64D27, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x890, symBinAddr: 0x12BF8, symSize: 0x8 } - - { offsetInCU: 0xF26, offset: 0x64D68, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x898, symBinAddr: 0x12C00, symSize: 0x138 } - - { offsetInCU: 0xFDB, offset: 0x64E1D, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x9D0, symBinAddr: 0x12D38, symSize: 0x54 } - - { offsetInCU: 0x103F, offset: 0x64E81, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xAA0, symBinAddr: 0x12D8C, symSize: 0x10C } - - { offsetInCU: 0x10F5, offset: 0x64F37, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xBAC, symBinAddr: 0x12E98, symSize: 0x34 } - - { offsetInCU: 0x1159, offset: 0x64F9B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xC40, symBinAddr: 0x12ECC, symSize: 0x8 } - - { offsetInCU: 0x11A9, offset: 0x64FEB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xC48, symBinAddr: 0x12ED4, symSize: 0x8 } - - { offsetInCU: 0x11F9, offset: 0x6503B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xC50, symBinAddr: 0x12EDC, symSize: 0xD8 } - - { offsetInCU: 0x128F, offset: 0x650D1, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xD28, symBinAddr: 0x12FB4, symSize: 0x1C } - - { offsetInCU: 0x12EA, offset: 0x6512C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xD44, symBinAddr: 0x12FD0, symSize: 0x94 } - - { offsetInCU: 0x1374, offset: 0x651B6, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xDD8, symBinAddr: 0x13064, symSize: 0x20 } - - { offsetInCU: 0x13C9, offset: 0x6520B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xDF8, symBinAddr: 0x13084, symSize: 0xD8 } - - { offsetInCU: 0x145F, offset: 0x652A1, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xED0, symBinAddr: 0x1315C, symSize: 0x1C } - - { offsetInCU: 0x14BA, offset: 0x652FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xEEC, symBinAddr: 0x13178, symSize: 0x94 } - - { offsetInCU: 0x1544, offset: 0x65386, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0xF80, symBinAddr: 0x1320C, symSize: 0x24 } - - { offsetInCU: 0x1599, offset: 0x653DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0xFA4, symBinAddr: 0x13230, symSize: 0xD8 } - - { offsetInCU: 0x162F, offset: 0x65471, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x107C, symBinAddr: 0x13308, symSize: 0x18 } - - { offsetInCU: 0x168A, offset: 0x654CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1094, symBinAddr: 0x13320, symSize: 0xD8 } - - { offsetInCU: 0x1720, offset: 0x65562, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x116C, symBinAddr: 0x133F8, symSize: 0x18 } - - { offsetInCU: 0x177B, offset: 0x655BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x1184, symBinAddr: 0x13410, symSize: 0xD8 } - - { offsetInCU: 0x1811, offset: 0x65653, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x125C, symBinAddr: 0x134E8, symSize: 0x1C } - - { offsetInCU: 0x186C, offset: 0x656AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1278, symBinAddr: 0x13504, symSize: 0x90 } - - { offsetInCU: 0x18E9, offset: 0x6572B, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x1308, symBinAddr: 0x13594, symSize: 0x24 } - - { offsetInCU: 0x192B, offset: 0x6576D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x132C, symBinAddr: 0x135B8, symSize: 0x90 } - - { offsetInCU: 0x19A8, offset: 0x657EA, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x13BC, symBinAddr: 0x13648, symSize: 0x24 } - - { offsetInCU: 0x19EA, offset: 0x6582C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x13E0, symBinAddr: 0x1366C, symSize: 0x90 } - - { offsetInCU: 0x1A67, offset: 0x658A9, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1470, symBinAddr: 0x136FC, symSize: 0x24 } - - { offsetInCU: 0x1AA9, offset: 0x658EB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1494, symBinAddr: 0x13720, symSize: 0xD8 } - - { offsetInCU: 0x1B3F, offset: 0x65981, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x156C, symBinAddr: 0x137F8, symSize: 0x14 } - - { offsetInCU: 0x1B9A, offset: 0x659DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1580, symBinAddr: 0x1380C, symSize: 0x94 } - - { offsetInCU: 0x1C28, offset: 0x65A6A, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x1614, symBinAddr: 0x138A0, symSize: 0x10 } - - { offsetInCU: 0x1C7D, offset: 0x65ABF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x1624, symBinAddr: 0x138B0, symSize: 0xD8 } - - { offsetInCU: 0x1D13, offset: 0x65B55, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x16FC, symBinAddr: 0x13988, symSize: 0x14 } - - { offsetInCU: 0x1D6E, offset: 0x65BB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x1710, symBinAddr: 0x1399C, symSize: 0x94 } - - { offsetInCU: 0x1DFC, offset: 0x65C3E, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x17A4, symBinAddr: 0x13A30, symSize: 0x10 } - - { offsetInCU: 0x1E51, offset: 0x65C93, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x17B4, symBinAddr: 0x13A40, symSize: 0x94 } - - { offsetInCU: 0x1EDF, offset: 0x65D21, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x1848, symBinAddr: 0x13AD4, symSize: 0x10 } - - { offsetInCU: 0x1F34, offset: 0x65D76, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x1858, symBinAddr: 0x13AE4, symSize: 0xD8 } - - { offsetInCU: 0x1FCA, offset: 0x65E0C, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x1930, symBinAddr: 0x13BBC, symSize: 0x14 } - - { offsetInCU: 0x2025, offset: 0x65E67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x1944, symBinAddr: 0x13BD0, symSize: 0xFC } - - { offsetInCU: 0x20BB, offset: 0x65EFD, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1A40, symBinAddr: 0x13CCC, symSize: 0x14 } - - { offsetInCU: 0x210E, offset: 0x65F50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1A54, symBinAddr: 0x13CE0, symSize: 0xBC } - - { offsetInCU: 0x219C, offset: 0x65FDE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1B10, symBinAddr: 0x13D9C, symSize: 0x1C } - - { offsetInCU: 0x21EF, offset: 0x66031, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1B2C, symBinAddr: 0x13DB8, symSize: 0xF4 } - - { offsetInCU: 0x2282, offset: 0x660C4, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1C20, symBinAddr: 0x13EAC, symSize: 0x34 } - - { offsetInCU: 0x22E6, offset: 0x66128, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1C54, symBinAddr: 0x13EE0, symSize: 0xD4 } - - { offsetInCU: 0x2359, offset: 0x6619B, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1D28, symBinAddr: 0x13FB4, symSize: 0x34 } - - { offsetInCU: 0x23BD, offset: 0x661FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1D5C, symBinAddr: 0x13FE8, symSize: 0xB4 } - - { offsetInCU: 0x2430, offset: 0x66272, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1E10, symBinAddr: 0x1409C, symSize: 0x34 } - - { offsetInCU: 0x2494, offset: 0x662D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1E44, symBinAddr: 0x140D0, symSize: 0xE4 } - - { offsetInCU: 0x2518, offset: 0x6635A, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x1F28, symBinAddr: 0x141B4, symSize: 0x34 } - - { offsetInCU: 0x258D, offset: 0x663CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x1F5C, symBinAddr: 0x141E8, symSize: 0x134 } - - { offsetInCU: 0x2633, offset: 0x66475, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2090, symBinAddr: 0x1431C, symSize: 0x38 } - - { offsetInCU: 0x26B9, offset: 0x664FB, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x20C8, symBinAddr: 0x14354, symSize: 0x40 } - - { offsetInCU: 0x26E2, offset: 0x66524, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2108, symBinAddr: 0x14394, symSize: 0x40 } - - { offsetInCU: 0x2701, offset: 0x66543, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x2148, symBinAddr: 0x143D4, symSize: 0xD4 } - - { offsetInCU: 0x2774, offset: 0x665B6, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x221C, symBinAddr: 0x144A8, symSize: 0x34 } - - { offsetInCU: 0x27D8, offset: 0x6661A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2250, symBinAddr: 0x144DC, symSize: 0xD4 } - - { offsetInCU: 0x282E, offset: 0x66670, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2324, symBinAddr: 0x145B0, symSize: 0xD4 } - - { offsetInCU: 0x2884, offset: 0x666C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x23F8, symBinAddr: 0x14684, symSize: 0xF4 } - - { offsetInCU: 0x2915, offset: 0x66757, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x24EC, symBinAddr: 0x14778, symSize: 0x14C } - - { offsetInCU: 0x297C, offset: 0x667BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2638, symBinAddr: 0x148C4, symSize: 0x8 } - - { offsetInCU: 0x29B2, offset: 0x667F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x2640, symBinAddr: 0x148CC, symSize: 0x10C } - - { offsetInCU: 0x2A08, offset: 0x6684A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x274C, symBinAddr: 0x149D8, symSize: 0x10C } - - { offsetInCU: 0x2A5E, offset: 0x668A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x2858, symBinAddr: 0x14AE4, symSize: 0xD4 } - - { offsetInCU: 0x2AB4, offset: 0x668F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x292C, symBinAddr: 0x14BB8, symSize: 0x90 } - - { offsetInCU: 0x2B39, offset: 0x6697B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x29BC, symBinAddr: 0x14C48, symSize: 0x178 } - - { offsetInCU: 0x2C61, offset: 0x66AA3, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2B34, symBinAddr: 0x14DC0, symSize: 0x38 } - - { offsetInCU: 0x2CC3, offset: 0x66B05, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2B6C, symBinAddr: 0x14DF8, symSize: 0x34 } - - { offsetInCU: 0x2CEC, offset: 0x66B2E, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.72', symObjAddr: 0x2BA0, symBinAddr: 0x14E2C, symSize: 0x344 } - - { offsetInCU: 0x2F00, offset: 0x66D42, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x2EE4, symBinAddr: 0x15170, symSize: 0x38 } - - { offsetInCU: 0x2F6C, offset: 0x66DAE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x2F1C, symBinAddr: 0x151A8, symSize: 0x3C } - - { offsetInCU: 0x2F95, offset: 0x66DD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x2F58, symBinAddr: 0x151E4, symSize: 0x374 } - - { offsetInCU: 0x31DA, offset: 0x6701C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x32CC, symBinAddr: 0x15558, symSize: 0x344 } - - { offsetInCU: 0x34D3, offset: 0x67315, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3610, symBinAddr: 0x1589C, symSize: 0x1C8 } - - { offsetInCU: 0x35E5, offset: 0x67427, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x37D8, symBinAddr: 0x15A64, symSize: 0x68 } - - { offsetInCU: 0x3650, offset: 0x67492, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3840, symBinAddr: 0x15ACC, symSize: 0x70 } - - { offsetInCU: 0x36BB, offset: 0x674FD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x38B0, symBinAddr: 0x15B3C, symSize: 0xC0 } - - { offsetInCU: 0x37A1, offset: 0x675E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3970, symBinAddr: 0x15BFC, symSize: 0xC8 } - - { offsetInCU: 0x3874, offset: 0x676B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3A38, symBinAddr: 0x15CC4, symSize: 0x184 } - - { offsetInCU: 0x399D, offset: 0x677DF, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x3BBC, symBinAddr: 0x15E48, symSize: 0x60 } - - { offsetInCU: 0x39DF, offset: 0x67821, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x3C1C, symBinAddr: 0x15EA8, symSize: 0x58 } - - { offsetInCU: 0x3A42, offset: 0x67884, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x3C74, symBinAddr: 0x15F00, symSize: 0x24 } - - { offsetInCU: 0x3AB6, offset: 0x678F8, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.88', symObjAddr: 0x3CB4, symBinAddr: 0x15F24, symSize: 0x24 } - - { offsetInCU: 0x3B13, offset: 0x67955, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x3CD8, symBinAddr: 0x15F48, symSize: 0x184 } - - { offsetInCU: 0x3BF2, offset: 0x67A34, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x3E5C, symBinAddr: 0x160CC, symSize: 0x60 } - - { offsetInCU: 0x3C34, offset: 0x67A76, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x3EBC, symBinAddr: 0x1612C, symSize: 0x58 } - - { offsetInCU: 0x3C84, offset: 0x67AC6, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x3F14, symBinAddr: 0x16184, symSize: 0x24 } - - { offsetInCU: 0x3CE1, offset: 0x67B23, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x3F38, symBinAddr: 0x161A8, symSize: 0x24 } - - { offsetInCU: 0x3D3E, offset: 0x67B80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x3F5C, symBinAddr: 0x161CC, symSize: 0x10C } - - { offsetInCU: 0x3DFC, offset: 0x67C3E, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4068, symBinAddr: 0x162D8, symSize: 0x1DC } - - { offsetInCU: 0x4026, offset: 0x67E68, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x4244, symBinAddr: 0x164B4, symSize: 0x48 } - - { offsetInCU: 0x4089, offset: 0x67ECB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x428C, symBinAddr: 0x164FC, symSize: 0x3C } - - { offsetInCU: 0x40DA, offset: 0x67F1C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x42C8, symBinAddr: 0x16538, symSize: 0x3C } - - { offsetInCU: 0x411C, offset: 0x67F5E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x4304, symBinAddr: 0x16574, symSize: 0x3C } - - { offsetInCU: 0x416D, offset: 0x67FAF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x4340, symBinAddr: 0x165B0, symSize: 0x3C } - - { offsetInCU: 0x41AF, offset: 0x67FF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x437C, symBinAddr: 0x165EC, symSize: 0x3C } - - { offsetInCU: 0x41F1, offset: 0x68033, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x43B8, symBinAddr: 0x16628, symSize: 0x3C } - - { offsetInCU: 0x4233, offset: 0x68075, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x43F4, symBinAddr: 0x16664, symSize: 0x3C } - - { offsetInCU: 0x4275, offset: 0x680B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x4430, symBinAddr: 0x166A0, symSize: 0x3C } - - { offsetInCU: 0x42B7, offset: 0x680F9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x446C, symBinAddr: 0x166DC, symSize: 0x94 } - - { offsetInCU: 0x4316, offset: 0x68158, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x4500, symBinAddr: 0x16770, symSize: 0x94 } - - { offsetInCU: 0x4366, offset: 0x681A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4594, symBinAddr: 0x16804, symSize: 0x34 } - - { offsetInCU: 0x439A, offset: 0x681DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x45C8, symBinAddr: 0x16838, symSize: 0x1AC } - - { offsetInCU: 0x451E, offset: 0x68360, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4774, symBinAddr: 0x169E4, symSize: 0xD4 } - - { offsetInCU: 0x4585, offset: 0x683C7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4848, symBinAddr: 0x16AB8, symSize: 0xD4 } - - { offsetInCU: 0x45EC, offset: 0x6842E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x491C, symBinAddr: 0x16B8C, symSize: 0x140 } - - { offsetInCU: 0x468A, offset: 0x684CC, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4A5C, symBinAddr: 0x16CCC, symSize: 0x5C } - - { offsetInCU: 0x46DD, offset: 0x6851F, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4AB8, symBinAddr: 0x16D28, symSize: 0x34 } - - { offsetInCU: 0x4727, offset: 0x68569, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x4AFC, symBinAddr: 0x16D5C, symSize: 0x140 } - - { offsetInCU: 0x47C5, offset: 0x68607, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x4C3C, symBinAddr: 0x16E9C, symSize: 0x5C } - - { offsetInCU: 0x4818, offset: 0x6865A, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x4C98, symBinAddr: 0x16EF8, symSize: 0x34 } - - { offsetInCU: 0x4862, offset: 0x686A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x4CCC, symBinAddr: 0x16F2C, symSize: 0x11C } - - { offsetInCU: 0x4900, offset: 0x68742, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x4DE8, symBinAddr: 0x17048, symSize: 0x50 } - - { offsetInCU: 0x4953, offset: 0x68795, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x4E38, symBinAddr: 0x17098, symSize: 0x34 } - - { offsetInCU: 0x499D, offset: 0x687DF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x4E6C, symBinAddr: 0x170CC, symSize: 0x140 } - - { offsetInCU: 0x4A3B, offset: 0x6887D, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x4FAC, symBinAddr: 0x1720C, symSize: 0x34 } - - { offsetInCU: 0x4A8E, offset: 0x688D0, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x4FE0, symBinAddr: 0x17240, symSize: 0x34 } - - { offsetInCU: 0x4AD8, offset: 0x6891A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x5014, symBinAddr: 0x17274, symSize: 0x140 } - - { offsetInCU: 0x4B76, offset: 0x689B8, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x5154, symBinAddr: 0x173B4, symSize: 0x34 } - - { offsetInCU: 0x4BC9, offset: 0x68A0B, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x5188, symBinAddr: 0x173E8, symSize: 0x34 } - - { offsetInCU: 0x4C13, offset: 0x68A55, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x51BC, symBinAddr: 0x1741C, symSize: 0x11C } - - { offsetInCU: 0x4CB1, offset: 0x68AF3, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x52D8, symBinAddr: 0x17538, symSize: 0x34 } - - { offsetInCU: 0x4D04, offset: 0x68B46, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x530C, symBinAddr: 0x1756C, symSize: 0x34 } - - { offsetInCU: 0x4D4E, offset: 0x68B90, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5340, symBinAddr: 0x175A0, symSize: 0x140 } - - { offsetInCU: 0x4DEC, offset: 0x68C2E, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x5480, symBinAddr: 0x176E0, symSize: 0x34 } - - { offsetInCU: 0x4E3F, offset: 0x68C81, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x54B4, symBinAddr: 0x17714, symSize: 0x34 } - - { offsetInCU: 0x4E89, offset: 0x68CCB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x54E8, symBinAddr: 0x17748, symSize: 0x140 } - - { offsetInCU: 0x4F27, offset: 0x68D69, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5628, symBinAddr: 0x17888, symSize: 0x34 } - - { offsetInCU: 0x4F7A, offset: 0x68DBC, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x565C, symBinAddr: 0x178BC, symSize: 0x34 } - - { offsetInCU: 0x4FC4, offset: 0x68E06, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5690, symBinAddr: 0x178F0, symSize: 0x11C } - - { offsetInCU: 0x5062, offset: 0x68EA4, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x57AC, symBinAddr: 0x17A0C, symSize: 0x34 } - - { offsetInCU: 0x50B5, offset: 0x68EF7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x57E0, symBinAddr: 0x17A40, symSize: 0x34 } - - { offsetInCU: 0x50FF, offset: 0x68F41, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5814, symBinAddr: 0x17A74, symSize: 0x1B0 } - - { offsetInCU: 0x522A, offset: 0x6906C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x59C4, symBinAddr: 0x17C24, symSize: 0x140 } - - { offsetInCU: 0x52C8, offset: 0x6910A, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x5B04, symBinAddr: 0x17D64, symSize: 0x34 } - - { offsetInCU: 0x531B, offset: 0x6915D, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x5B38, symBinAddr: 0x17D98, symSize: 0x34 } - - { offsetInCU: 0x5365, offset: 0x691A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x5B6C, symBinAddr: 0x17DCC, symSize: 0x140 } - - { offsetInCU: 0x5403, offset: 0x69245, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x5CAC, symBinAddr: 0x17F0C, symSize: 0x34 } - - { offsetInCU: 0x5456, offset: 0x69298, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x5CE0, symBinAddr: 0x17F40, symSize: 0x34 } - - { offsetInCU: 0x54A0, offset: 0x692E2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x5D14, symBinAddr: 0x17F74, symSize: 0x11C } - - { offsetInCU: 0x553E, offset: 0x69380, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x5E30, symBinAddr: 0x18090, symSize: 0x34 } - - { offsetInCU: 0x5591, offset: 0x693D3, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x5E64, symBinAddr: 0x180C4, symSize: 0x34 } - - { offsetInCU: 0x55DB, offset: 0x6941D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x5E98, symBinAddr: 0x180F8, symSize: 0xD8 } - - { offsetInCU: 0x5671, offset: 0x694B3, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x5F70, symBinAddr: 0x181D0, symSize: 0x18 } - - { offsetInCU: 0x56CC, offset: 0x6950E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x5F88, symBinAddr: 0x181E8, symSize: 0xDC } - - { offsetInCU: 0x5762, offset: 0x695A4, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x6064, symBinAddr: 0x182C4, symSize: 0x1C } - - { offsetInCU: 0x57BD, offset: 0x695FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6080, symBinAddr: 0x182E0, symSize: 0xD8 } - - { offsetInCU: 0x5853, offset: 0x69695, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6158, symBinAddr: 0x183B8, symSize: 0x48 } - - { offsetInCU: 0x58A6, offset: 0x696E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x61A0, symBinAddr: 0x18400, symSize: 0xD8 } - - { offsetInCU: 0x593C, offset: 0x6977E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x6278, symBinAddr: 0x184D8, symSize: 0x48 } - - { offsetInCU: 0x598F, offset: 0x697D1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x62C0, symBinAddr: 0x18520, symSize: 0xA4 } - - { offsetInCU: 0x59F2, offset: 0x69834, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6364, symBinAddr: 0x185C4, symSize: 0xC } - - { offsetInCU: 0x5A48, offset: 0x6988A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6370, symBinAddr: 0x185D0, symSize: 0x184 } - - { offsetInCU: 0x5B28, offset: 0x6996A, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x64F4, symBinAddr: 0x18754, symSize: 0x26C } - - { offsetInCU: 0x5D0A, offset: 0x69B4C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x67EC, symBinAddr: 0x189C0, symSize: 0x174 } - - { offsetInCU: 0x5DD8, offset: 0x69C1A, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6960, symBinAddr: 0x18B34, symSize: 0x2A4 } - - { offsetInCU: 0x5F85, offset: 0x69DC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x6C04, symBinAddr: 0x18DD8, symSize: 0x90 } - - { offsetInCU: 0x5FE8, offset: 0x69E2A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x6C94, symBinAddr: 0x18E68, symSize: 0x184 } - - { offsetInCU: 0x60C8, offset: 0x69F0A, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x6E18, symBinAddr: 0x18FEC, symSize: 0x190 } - - { offsetInCU: 0x618E, offset: 0x69FD0, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x6FA8, symBinAddr: 0x1917C, symSize: 0x9C } - - { offsetInCU: 0x6203, offset: 0x6A045, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x7044, symBinAddr: 0x19218, symSize: 0x174 } - - { offsetInCU: 0x62D1, offset: 0x6A113, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x71B8, symBinAddr: 0x1938C, symSize: 0x184 } - - { offsetInCU: 0x63A8, offset: 0x6A1EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x733C, symBinAddr: 0x19510, symSize: 0x1E4 } - - { offsetInCU: 0x6458, offset: 0x6A29A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7520, symBinAddr: 0x196F4, symSize: 0xC0 } - - { offsetInCU: 0x6508, offset: 0x6A34A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x75E0, symBinAddr: 0x197B4, symSize: 0xC0 } - - { offsetInCU: 0x6597, offset: 0x6A3D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x76A0, symBinAddr: 0x19874, symSize: 0x84 } - - { offsetInCU: 0x65E0, offset: 0x6A422, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7724, symBinAddr: 0x198F8, symSize: 0xC } - - { offsetInCU: 0x6636, offset: 0x6A478, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7730, symBinAddr: 0x19904, symSize: 0x14 } - - { offsetInCU: 0x669F, offset: 0x6A4E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7744, symBinAddr: 0x19918, symSize: 0xC } - - { offsetInCU: 0x66F5, offset: 0x6A537, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7750, symBinAddr: 0x19924, symSize: 0x14 } - - { offsetInCU: 0x675E, offset: 0x6A5A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7764, symBinAddr: 0x19938, symSize: 0x1C4 } - - { offsetInCU: 0x684F, offset: 0x6A691, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x7928, symBinAddr: 0x19AFC, symSize: 0x270 } - - { offsetInCU: 0x6A5D, offset: 0x6A89F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x7C34, symBinAddr: 0x19D6C, symSize: 0x174 } - - { offsetInCU: 0x6B2B, offset: 0x6A96D, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x7DA8, symBinAddr: 0x19EE0, symSize: 0x18C } - - { offsetInCU: 0x6C52, offset: 0x6AA94, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x7F34, symBinAddr: 0x1A06C, symSize: 0x174 } - - { offsetInCU: 0x6D20, offset: 0x6AB62, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x80A8, symBinAddr: 0x1A1E0, symSize: 0x184 } - - { offsetInCU: 0x6E38, offset: 0x6AC7A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x822C, symBinAddr: 0x1A364, symSize: 0x150 } - - { offsetInCU: 0x6F02, offset: 0x6AD44, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x837C, symBinAddr: 0x1A4B4, symSize: 0x150 } - - { offsetInCU: 0x7021, offset: 0x6AE63, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x84CC, symBinAddr: 0x1A604, symSize: 0x150 } - - { offsetInCU: 0x70EB, offset: 0x6AF2D, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x861C, symBinAddr: 0x1A754, symSize: 0x114 } - - { offsetInCU: 0x71BD, offset: 0x6AFFF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x8730, symBinAddr: 0x1A868, symSize: 0x8 } - - { offsetInCU: 0x720D, offset: 0x6B04F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x8738, symBinAddr: 0x1A870, symSize: 0xCC } - - { offsetInCU: 0x72A2, offset: 0x6B0E4, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x8804, symBinAddr: 0x1A93C, symSize: 0x3C } - - { offsetInCU: 0x72F5, offset: 0x6B137, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x8840, symBinAddr: 0x1A978, symSize: 0x144 } - - { offsetInCU: 0x73AC, offset: 0x6B1EE, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x8984, symBinAddr: 0x1AABC, symSize: 0x94 } - - { offsetInCU: 0x7421, offset: 0x6B263, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x8A18, symBinAddr: 0x1AB50, symSize: 0x3C } - - { offsetInCU: 0x7474, offset: 0x6B2B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x8A54, symBinAddr: 0x1AB8C, symSize: 0x118 } - - { offsetInCU: 0x751A, offset: 0x6B35C, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x8B6C, symBinAddr: 0x1ACA4, symSize: 0x3C } - - { offsetInCU: 0x756D, offset: 0x6B3AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x8BA8, symBinAddr: 0x1ACE0, symSize: 0x8 } - - { offsetInCU: 0x75BD, offset: 0x6B3FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x8BB0, symBinAddr: 0x1ACE8, symSize: 0x13C } - - { offsetInCU: 0x768B, offset: 0x6B4CD, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x8CEC, symBinAddr: 0x1AE24, symSize: 0x50 } - - { offsetInCU: 0x7700, offset: 0x6B542, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x8D3C, symBinAddr: 0x1AE74, symSize: 0x144 } - - { offsetInCU: 0x774C, offset: 0x6B58E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x8E80, symBinAddr: 0x1AFB8, symSize: 0x2CC } - - { offsetInCU: 0x787B, offset: 0x6B6BD, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x914C, symBinAddr: 0x1B284, symSize: 0xB4 } - - { offsetInCU: 0x7913, offset: 0x6B755, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9200, symBinAddr: 0x1B338, symSize: 0x68 } - - { offsetInCU: 0x7977, offset: 0x6B7B9, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.151', symObjAddr: 0x9268, symBinAddr: 0x1B3A0, symSize: 0x54 } - - { offsetInCU: 0x79D6, offset: 0x6B818, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x92BC, symBinAddr: 0x1B3F4, symSize: 0x1A8 } - - { offsetInCU: 0x7B54, offset: 0x6B996, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0x9464, symBinAddr: 0x1B59C, symSize: 0x3C } - - { offsetInCU: 0x7B96, offset: 0x6B9D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0x94A0, symBinAddr: 0x1B5D8, symSize: 0x60 } - - { offsetInCU: 0x7BCA, offset: 0x6BA0C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0x9500, symBinAddr: 0x1B638, symSize: 0xC8 } - - { offsetInCU: 0x7CC5, offset: 0x6BB07, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0x95C8, symBinAddr: 0x1B700, symSize: 0x30 } - - { offsetInCU: 0x7D07, offset: 0x6BB49, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0x95F8, symBinAddr: 0x1B730, symSize: 0x14C } - - { offsetInCU: 0x7DC4, offset: 0x6BC06, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0x9744, symBinAddr: 0x1B87C, symSize: 0xD4 } - - { offsetInCU: 0x7E5E, offset: 0x6BCA0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0x9818, symBinAddr: 0x1B950, symSize: 0x30 } - - { offsetInCU: 0x7EA0, offset: 0x6BCE2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0x9848, symBinAddr: 0x1B980, symSize: 0x14C } - - { offsetInCU: 0x7F5D, offset: 0x6BD9F, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0x9994, symBinAddr: 0x1BACC, symSize: 0xD4 } - - { offsetInCU: 0x7FF7, offset: 0x6BE39, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0x9A68, symBinAddr: 0x1BBA0, symSize: 0x30 } - - { offsetInCU: 0x8039, offset: 0x6BE7B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0x9A98, symBinAddr: 0x1BBD0, symSize: 0x90 } - - { offsetInCU: 0x80B6, offset: 0x6BEF8, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0x9B28, symBinAddr: 0x1BC60, symSize: 0x64 } - - { offsetInCU: 0x80F8, offset: 0x6BF3A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0x9B8C, symBinAddr: 0x1BCC4, symSize: 0x8 } - - { offsetInCU: 0x8148, offset: 0x6BF8A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0x9B94, symBinAddr: 0x1BCCC, symSize: 0x13C } - - { offsetInCU: 0x8216, offset: 0x6C058, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9CD0, symBinAddr: 0x1BE08, symSize: 0x50 } - - { offsetInCU: 0x828B, offset: 0x6C0CD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0x9D20, symBinAddr: 0x1BE58, symSize: 0x658 } - - { offsetInCU: 0x8506, offset: 0x6C348, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xA378, symBinAddr: 0x1C4B0, symSize: 0xF8 } - - { offsetInCU: 0x85BD, offset: 0x6C3FF, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xA470, symBinAddr: 0x1C5A8, symSize: 0x94 } - - { offsetInCU: 0x8643, offset: 0x6C485, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.158', symObjAddr: 0xA504, symBinAddr: 0x1C63C, symSize: 0x80 } - - { offsetInCU: 0x86DD, offset: 0x6C51F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xA584, symBinAddr: 0x1C6BC, symSize: 0x3C } - - { offsetInCU: 0x8711, offset: 0x6C553, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xA5C0, symBinAddr: 0x1C6F8, symSize: 0x7C } - - { offsetInCU: 0x8763, offset: 0x6C5A5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xA63C, symBinAddr: 0x1C774, symSize: 0x90 } - - { offsetInCU: 0x87E0, offset: 0x6C622, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xA6CC, symBinAddr: 0x1C804, symSize: 0x34 } - - { offsetInCU: 0x8822, offset: 0x6C664, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xA700, symBinAddr: 0x1C838, symSize: 0x90 } - - { offsetInCU: 0x889F, offset: 0x6C6E1, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xA790, symBinAddr: 0x1C8C8, symSize: 0x5C } - - { offsetInCU: 0x88E1, offset: 0x6C723, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xA7EC, symBinAddr: 0x1C924, symSize: 0x4 } - - { offsetInCU: 0x8958, offset: 0x6C79A, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xA85C, symBinAddr: 0x1C994, symSize: 0x54 } - - { offsetInCU: 0x899A, offset: 0x6C7DC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xA8B0, symBinAddr: 0x1C9E8, symSize: 0xEC } - - { offsetInCU: 0x89DF, offset: 0x6C821, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xA99C, symBinAddr: 0x1CAD4, symSize: 0x90 } - - { offsetInCU: 0x8AD5, offset: 0x6C917, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xAA2C, symBinAddr: 0x1CB64, symSize: 0x90 } - - { offsetInCU: 0x8BBF, offset: 0x6CA01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xAABC, symBinAddr: 0x1CBF4, symSize: 0x1F8 } - - { offsetInCU: 0x8DEA, offset: 0x6CC2C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xACB4, symBinAddr: 0x1CDEC, symSize: 0x1B0 } - - { offsetInCU: 0x9006, offset: 0x6CE48, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xAE64, symBinAddr: 0x1CF9C, symSize: 0x10C } - - { offsetInCU: 0x90D3, offset: 0x6CF15, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xAF70, symBinAddr: 0x1D0A8, symSize: 0x10C } - - { offsetInCU: 0x91A0, offset: 0x6CFE2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xB07C, symBinAddr: 0x1D1B4, symSize: 0x60 } - - { offsetInCU: 0x91E5, offset: 0x6D027, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xB0DC, symBinAddr: 0x1D214, symSize: 0xD0 } - - { offsetInCU: 0x9300, offset: 0x6D142, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xB1AC, symBinAddr: 0x1D2E4, symSize: 0x50 } - - { offsetInCU: 0x9334, offset: 0x6D176, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xB1FC, symBinAddr: 0x1D334, symSize: 0xCC } - - { offsetInCU: 0x945C, offset: 0x6D29E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xB2C8, symBinAddr: 0x1D400, symSize: 0x90 } - - { offsetInCU: 0x94E6, offset: 0x6D328, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xB358, symBinAddr: 0x1D490, symSize: 0x38 } - - { offsetInCU: 0x9528, offset: 0x6D36A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xB390, symBinAddr: 0x1D4C8, symSize: 0x18 } - - { offsetInCU: 0x95A3, offset: 0x6D3E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xB3A8, symBinAddr: 0x1D4E0, symSize: 0x14 } - - { offsetInCU: 0x960B, offset: 0x6D44D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xB3BC, symBinAddr: 0x1D4F4, symSize: 0x48 } - - { offsetInCU: 0x9688, offset: 0x6D4CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xB404, symBinAddr: 0x1D53C, symSize: 0x40 } - - { offsetInCU: 0x96CE, offset: 0x6D510, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xB444, symBinAddr: 0x1D57C, symSize: 0x34 } - - { offsetInCU: 0x9714, offset: 0x6D556, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xB478, symBinAddr: 0x1D5B0, symSize: 0x34 } - - { offsetInCU: 0x975A, offset: 0x6D59C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xB4AC, symBinAddr: 0x1D5E4, symSize: 0x58 } - - { offsetInCU: 0x97B1, offset: 0x6D5F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xB504, symBinAddr: 0x1D63C, symSize: 0x58 } - - { offsetInCU: 0x9808, offset: 0x6D64A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xB55C, symBinAddr: 0x1D694, symSize: 0x8 } - - { offsetInCU: 0x983C, offset: 0x6D67E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xB564, symBinAddr: 0x1D69C, symSize: 0x7C } - - { offsetInCU: 0x98B3, offset: 0x6D6F5, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xB5E0, symBinAddr: 0x1D718, symSize: 0x7C } - - { offsetInCU: 0x992B, offset: 0x6D76D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xB65C, symBinAddr: 0x1D794, symSize: 0x10 } - - { offsetInCU: 0x996E, offset: 0x6D7B0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xB66C, symBinAddr: 0x1D7A4, symSize: 0x10 } - - { offsetInCU: 0x99B1, offset: 0x6D7F3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xB67C, symBinAddr: 0x1D7B4, symSize: 0x38 } - - { offsetInCU: 0x9A0B, offset: 0x6D84D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xB6B4, symBinAddr: 0x1D7EC, symSize: 0x34 } - - { offsetInCU: 0x9A65, offset: 0x6D8A7, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xB6E8, symBinAddr: 0x1D820, symSize: 0x34 } - - { offsetInCU: 0x9ABF, offset: 0x6D901, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xB71C, symBinAddr: 0x1D854, symSize: 0x3C } - - { offsetInCU: 0x9B19, offset: 0x6D95B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xB758, symBinAddr: 0x1D890, symSize: 0x3C } - - { offsetInCU: 0x9B73, offset: 0x6D9B5, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xB794, symBinAddr: 0x1D8CC, symSize: 0xC } - - { offsetInCU: 0x9BD8, offset: 0x6DA1A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xB7A0, symBinAddr: 0x1D8D8, symSize: 0x154 } - - { offsetInCU: 0x9CB0, offset: 0x6DAF2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xB8F4, symBinAddr: 0x1DA2C, symSize: 0x110 } - - { offsetInCU: 0x9CE4, offset: 0x6DB26, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xBA04, symBinAddr: 0x1DB3C, symSize: 0x50 } - - { offsetInCU: 0x9D44, offset: 0x6DB86, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xBA54, symBinAddr: 0x1DB8C, symSize: 0x50 } + - { offsetInCU: 0x34, offset: 0x54079, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x22338, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x540AE, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x22370, symSize: 0x0 } + - { offsetInCU: 0x41, offset: 0x54105, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x10AC0, symBinAddr: 0x28108, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x54125, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x10AC8, symBinAddr: 0x28110, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x5413B, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x10AD0, symBinAddr: 0x28118, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x54151, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x10AD8, symBinAddr: 0x28120, symSize: 0x0 } + - { offsetInCU: 0xA3, offset: 0x54167, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x10AE0, symBinAddr: 0x28128, symSize: 0x0 } + - { offsetInCU: 0xB9, offset: 0x5417D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x10AE8, symBinAddr: 0x28130, symSize: 0x0 } + - { offsetInCU: 0xCF, offset: 0x54193, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x10AF0, symBinAddr: 0x28138, symSize: 0x0 } + - { offsetInCU: 0xE5, offset: 0x541A9, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x10AF8, symBinAddr: 0x28140, symSize: 0x0 } + - { offsetInCU: 0xFB, offset: 0x541BF, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x10B00, symBinAddr: 0x28148, symSize: 0x0 } + - { offsetInCU: 0x111, offset: 0x541D5, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x10B08, symBinAddr: 0x28150, symSize: 0x0 } + - { offsetInCU: 0x127, offset: 0x541EB, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x10B10, symBinAddr: 0x28158, symSize: 0x0 } + - { offsetInCU: 0x13D, offset: 0x54201, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x10B18, symBinAddr: 0x28160, symSize: 0x0 } + - { offsetInCU: 0x153, offset: 0x54217, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x10B20, symBinAddr: 0x28168, symSize: 0x0 } + - { offsetInCU: 0x16B, offset: 0x5422F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xAB34, symBinAddr: 0xE888, symSize: 0x4F0 } + - { offsetInCU: 0x48C, offset: 0x54550, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xCD4C, symBinAddr: 0x10AA0, symSize: 0x8C } + - { offsetInCU: 0x4B4, offset: 0x54578, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x56258, symBinAddr: 0x2EAB8, symSize: 0x0 } + - { offsetInCU: 0x51C, offset: 0x545E0, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x56270, symBinAddr: 0x2EAD0, symSize: 0x0 } + - { offsetInCU: 0x537, offset: 0x545FB, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x56260, symBinAddr: 0x2EAC0, symSize: 0x0 } + - { offsetInCU: 0x554, offset: 0x54618, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x56268, symBinAddr: 0x2EAC8, symSize: 0x0 } + - { offsetInCU: 0xB90, offset: 0x54C54, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0x3D54, symSize: 0x18 } + - { offsetInCU: 0xBC7, offset: 0x54C8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0x18, symBinAddr: 0x3D6C, symSize: 0x60 } + - { offsetInCU: 0xC0E, offset: 0x54CD2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x78, symBinAddr: 0x3DCC, symSize: 0x4C } + - { offsetInCU: 0xC41, offset: 0x54D05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xC4, symBinAddr: 0x3E18, symSize: 0x64 } + - { offsetInCU: 0xCF9, offset: 0x54DBD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x128, symBinAddr: 0x3E7C, symSize: 0xC } + - { offsetInCU: 0xD31, offset: 0x54DF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x134, symBinAddr: 0x3E88, symSize: 0x8 } + - { offsetInCU: 0xD69, offset: 0x54E2D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x13C, symBinAddr: 0x3E90, symSize: 0x34 } + - { offsetInCU: 0xDBF, offset: 0x54E83, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x170, symBinAddr: 0x3EC4, symSize: 0x24 } + - { offsetInCU: 0xE00, offset: 0x54EC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x194, symBinAddr: 0x3EE8, symSize: 0x14 } + - { offsetInCU: 0xE38, offset: 0x54EFC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x1A8, symBinAddr: 0x3EFC, symSize: 0x8 } + - { offsetInCU: 0xE70, offset: 0x54F34, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x1B0, symBinAddr: 0x3F04, symSize: 0x34 } + - { offsetInCU: 0xEC6, offset: 0x54F8A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1E4, symBinAddr: 0x3F38, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x54FCB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1F4, symBinAddr: 0x3F48, symSize: 0xC } + - { offsetInCU: 0xF39, offset: 0x54FFD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x200, symBinAddr: 0x3F54, symSize: 0x18 } + - { offsetInCU: 0xF71, offset: 0x55035, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x218, symBinAddr: 0x3F6C, symSize: 0x144 } + - { offsetInCU: 0x1020, offset: 0x550E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x35C, symBinAddr: 0x40B0, symSize: 0x50 } + - { offsetInCU: 0x10B4, offset: 0x55178, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x3AC, symBinAddr: 0x4100, symSize: 0x88 } + - { offsetInCU: 0x118C, offset: 0x55250, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x434, symBinAddr: 0x4188, symSize: 0x2C } + - { offsetInCU: 0x11F1, offset: 0x552B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x460, symBinAddr: 0x41B4, symSize: 0x6C } + - { offsetInCU: 0x12B8, offset: 0x5537C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x4CC, symBinAddr: 0x4220, symSize: 0x234 } + - { offsetInCU: 0x144A, offset: 0x5550E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x700, symBinAddr: 0x4454, symSize: 0xB0 } + - { offsetInCU: 0x1504, offset: 0x555C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7B0, symBinAddr: 0x4504, symSize: 0x30 } + - { offsetInCU: 0x1538, offset: 0x555FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7E0, symBinAddr: 0x4534, symSize: 0x18 } + - { offsetInCU: 0x1570, offset: 0x55634, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x7F8, symBinAddr: 0x454C, symSize: 0x90 } + - { offsetInCU: 0x15DB, offset: 0x5569F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x888, symBinAddr: 0x45DC, symSize: 0xC } + - { offsetInCU: 0x160F, offset: 0x556D3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x894, symBinAddr: 0x45E8, symSize: 0x18 } + - { offsetInCU: 0x1647, offset: 0x5570B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8AC, symBinAddr: 0x4600, symSize: 0x78 } + - { offsetInCU: 0x1690, offset: 0x55754, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x924, symBinAddr: 0x4678, symSize: 0xC } + - { offsetInCU: 0x16C4, offset: 0x55788, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x930, symBinAddr: 0x4684, symSize: 0x10 } + - { offsetInCU: 0x16FA, offset: 0x557BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x940, symBinAddr: 0x4694, symSize: 0x10 } + - { offsetInCU: 0x1743, offset: 0x55807, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x950, symBinAddr: 0x46A4, symSize: 0x8 } + - { offsetInCU: 0x1797, offset: 0x5585B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x958, symBinAddr: 0x46AC, symSize: 0x1B0 } + - { offsetInCU: 0x189B, offset: 0x5595F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB08, symBinAddr: 0x485C, symSize: 0xC8 } + - { offsetInCU: 0x1920, offset: 0x559E4, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xBD0, symBinAddr: 0x4924, symSize: 0xC } + - { offsetInCU: 0x1962, offset: 0x55A26, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xBDC, symBinAddr: 0x4930, symSize: 0x8 } + - { offsetInCU: 0x1989, offset: 0x55A4D, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xBE4, symBinAddr: 0x4938, symSize: 0x8 } + - { offsetInCU: 0x19A8, offset: 0x55A6C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xBEC, symBinAddr: 0x4940, symSize: 0x14 } + - { offsetInCU: 0x1A0F, offset: 0x55AD3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xC00, symBinAddr: 0x4954, symSize: 0xC } + - { offsetInCU: 0x1A83, offset: 0x55B47, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xC0C, symBinAddr: 0x4960, symSize: 0x1C0 } + - { offsetInCU: 0x1B6A, offset: 0x55C2E, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xDCC, symBinAddr: 0x4B20, symSize: 0x10 } + - { offsetInCU: 0x1B8F, offset: 0x55C53, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xDDC, symBinAddr: 0x4B30, symSize: 0x8 } + - { offsetInCU: 0x1BAE, offset: 0x55C72, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xDE4, symBinAddr: 0x4B38, symSize: 0x21C } + - { offsetInCU: 0x1D01, offset: 0x55DC5, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0x1000, symBinAddr: 0x4D54, symSize: 0x44 } + - { offsetInCU: 0x1D2A, offset: 0x55DEE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1044, symBinAddr: 0x4D98, symSize: 0x38 } + - { offsetInCU: 0x1D49, offset: 0x55E0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x107C, symBinAddr: 0x4DD0, symSize: 0xD0 } + - { offsetInCU: 0x1DC9, offset: 0x55E8D, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x114C, symBinAddr: 0x4EA0, symSize: 0x3C } + - { offsetInCU: 0x1E1C, offset: 0x55EE0, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x1188, symBinAddr: 0x4EDC, symSize: 0x34 } + - { offsetInCU: 0x1E45, offset: 0x55F09, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x11BC, symBinAddr: 0x4F10, symSize: 0x2C } + - { offsetInCU: 0x1E64, offset: 0x55F28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x11E8, symBinAddr: 0x4F3C, symSize: 0xCC } + - { offsetInCU: 0x1F1C, offset: 0x55FE0, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x12B4, symBinAddr: 0x5008, symSize: 0xC } + - { offsetInCU: 0x1F6F, offset: 0x56033, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x12C0, symBinAddr: 0x5014, symSize: 0x28 } + - { offsetInCU: 0x1F98, offset: 0x5605C, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x12E8, symBinAddr: 0x503C, symSize: 0x28 } + - { offsetInCU: 0x1FB7, offset: 0x5607B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x1310, symBinAddr: 0x5064, symSize: 0x8 } + - { offsetInCU: 0x1FF8, offset: 0x560BC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x1318, symBinAddr: 0x506C, symSize: 0x8 } + - { offsetInCU: 0x2039, offset: 0x560FD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x1320, symBinAddr: 0x5074, symSize: 0xD0 } + - { offsetInCU: 0x20B9, offset: 0x5617D, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x13F0, symBinAddr: 0x5144, symSize: 0x14 } + - { offsetInCU: 0x210C, offset: 0x561D0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x1404, symBinAddr: 0x5158, symSize: 0xCC } + - { offsetInCU: 0x21B1, offset: 0x56275, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x14D0, symBinAddr: 0x5224, symSize: 0xC } + - { offsetInCU: 0x2204, offset: 0x562C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x14DC, symBinAddr: 0x5230, symSize: 0x8 } + - { offsetInCU: 0x2245, offset: 0x56309, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x14E4, symBinAddr: 0x5238, symSize: 0x8 } + - { offsetInCU: 0x2286, offset: 0x5634A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x14EC, symBinAddr: 0x5240, symSize: 0x138 } + - { offsetInCU: 0x233B, offset: 0x563FF, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x1624, symBinAddr: 0x5378, symSize: 0x54 } + - { offsetInCU: 0x239F, offset: 0x56463, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1678, symBinAddr: 0x53CC, symSize: 0x10C } + - { offsetInCU: 0x2455, offset: 0x56519, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1784, symBinAddr: 0x54D8, symSize: 0x34 } + - { offsetInCU: 0x24B9, offset: 0x5657D, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x17B8, symBinAddr: 0x550C, symSize: 0x30 } + - { offsetInCU: 0x24E2, offset: 0x565A6, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x17E8, symBinAddr: 0x553C, symSize: 0x30 } + - { offsetInCU: 0x2501, offset: 0x565C5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x1818, symBinAddr: 0x556C, symSize: 0x8 } + - { offsetInCU: 0x2551, offset: 0x56615, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x1820, symBinAddr: 0x5574, symSize: 0x8 } + - { offsetInCU: 0x25A1, offset: 0x56665, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x1828, symBinAddr: 0x557C, symSize: 0xB0 } + - { offsetInCU: 0x2621, offset: 0x566E5, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x18D8, symBinAddr: 0x562C, symSize: 0x1C } + - { offsetInCU: 0x267C, offset: 0x56740, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x18F4, symBinAddr: 0x5648, symSize: 0x94 } + - { offsetInCU: 0x2706, offset: 0x567CA, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1988, symBinAddr: 0x56DC, symSize: 0x20 } + - { offsetInCU: 0x275B, offset: 0x5681F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x19A8, symBinAddr: 0x56FC, symSize: 0xB0 } + - { offsetInCU: 0x27DB, offset: 0x5689F, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1A58, symBinAddr: 0x57AC, symSize: 0x1C } + - { offsetInCU: 0x2836, offset: 0x568FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1A74, symBinAddr: 0x57C8, symSize: 0x94 } + - { offsetInCU: 0x28C0, offset: 0x56984, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1B08, symBinAddr: 0x585C, symSize: 0x24 } + - { offsetInCU: 0x2915, offset: 0x569D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1B2C, symBinAddr: 0x5880, symSize: 0xB0 } + - { offsetInCU: 0x2995, offset: 0x56A59, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1BDC, symBinAddr: 0x5930, symSize: 0x1C } + - { offsetInCU: 0x29F0, offset: 0x56AB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1BF8, symBinAddr: 0x594C, symSize: 0x94 } + - { offsetInCU: 0x2A7A, offset: 0x56B3E, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1C8C, symBinAddr: 0x59E0, symSize: 0x24 } + - { offsetInCU: 0x2ACF, offset: 0x56B93, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1CB0, symBinAddr: 0x5A04, symSize: 0xDC } + - { offsetInCU: 0x2B65, offset: 0x56C29, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1D8C, symBinAddr: 0x5AE0, symSize: 0x14 } + - { offsetInCU: 0x2BC0, offset: 0x56C84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1DA0, symBinAddr: 0x5AF4, symSize: 0x94 } + - { offsetInCU: 0x2C4E, offset: 0x56D12, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1E34, symBinAddr: 0x5B88, symSize: 0x10 } + - { offsetInCU: 0x2CA3, offset: 0x56D67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1E44, symBinAddr: 0x5B98, symSize: 0xFC } + - { offsetInCU: 0x2D39, offset: 0x56DFD, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x1F40, symBinAddr: 0x5C94, symSize: 0x14 } + - { offsetInCU: 0x2D8C, offset: 0x56E50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x1F54, symBinAddr: 0x5CA8, symSize: 0xBC } + - { offsetInCU: 0x2E1A, offset: 0x56EDE, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x2010, symBinAddr: 0x5D64, symSize: 0x1C } + - { offsetInCU: 0x2E6D, offset: 0x56F31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x202C, symBinAddr: 0x5D80, symSize: 0x10 } + - { offsetInCU: 0x2EC5, offset: 0x56F89, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x203C, symBinAddr: 0x5D90, symSize: 0x210 } + - { offsetInCU: 0x2FC7, offset: 0x5708B, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x224C, symBinAddr: 0x5FA0, symSize: 0x1E8 } + - { offsetInCU: 0x32A7, offset: 0x5736B, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.117', symObjAddr: 0x2434, symBinAddr: 0x6188, symSize: 0x4DC } + - { offsetInCU: 0x367F, offset: 0x57743, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x2910, symBinAddr: 0x6664, symSize: 0x7C } + - { offsetInCU: 0x3742, offset: 0x57806, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x298C, symBinAddr: 0x66E0, symSize: 0x30 } + - { offsetInCU: 0x376B, offset: 0x5782F, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x29BC, symBinAddr: 0x6710, symSize: 0x28 } + - { offsetInCU: 0x378A, offset: 0x5784E, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.132', symObjAddr: 0x29E4, symBinAddr: 0x6738, symSize: 0x8 } + - { offsetInCU: 0x37D6, offset: 0x5789A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.134', symObjAddr: 0x29EC, symBinAddr: 0x6740, symSize: 0x7C } + - { offsetInCU: 0x3886, offset: 0x5794A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2A68, symBinAddr: 0x67BC, symSize: 0x8 } + - { offsetInCU: 0x38D2, offset: 0x57996, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2A70, symBinAddr: 0x67C4, symSize: 0x5C } + - { offsetInCU: 0x38FB, offset: 0x579BF, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2ACC, symBinAddr: 0x6820, symSize: 0x48 } + - { offsetInCU: 0x391A, offset: 0x579DE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2B14, symBinAddr: 0x6868, symSize: 0x1F0 } + - { offsetInCU: 0x39FA, offset: 0x57ABE, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2D04, symBinAddr: 0x6A58, symSize: 0x1E8 } + - { offsetInCU: 0x3C0B, offset: 0x57CCF, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x2EEC, symBinAddr: 0x6C40, symSize: 0x360 } + - { offsetInCU: 0x3E17, offset: 0x57EDB, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x324C, symBinAddr: 0x6FA0, symSize: 0x78 } + - { offsetInCU: 0x3EC7, offset: 0x57F8B, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x32C4, symBinAddr: 0x7018, symSize: 0x8 } + - { offsetInCU: 0x3F13, offset: 0x57FD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x32CC, symBinAddr: 0x7020, symSize: 0x254 } + - { offsetInCU: 0x4166, offset: 0x5822A, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x3520, symBinAddr: 0x7274, symSize: 0x148 } + - { offsetInCU: 0x423A, offset: 0x582FE, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3668, symBinAddr: 0x73BC, symSize: 0x34 } + - { offsetInCU: 0x4289, offset: 0x5834D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x369C, symBinAddr: 0x73F0, symSize: 0x1D4 } + - { offsetInCU: 0x43A2, offset: 0x58466, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x3870, symBinAddr: 0x75C4, symSize: 0x12C } + - { offsetInCU: 0x4489, offset: 0x5854D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x399C, symBinAddr: 0x76F0, symSize: 0x8 } + - { offsetInCU: 0x44EC, offset: 0x585B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x39A4, symBinAddr: 0x76F8, symSize: 0xC } + - { offsetInCU: 0x4561, offset: 0x58625, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x39B0, symBinAddr: 0x7704, symSize: 0x200 } + - { offsetInCU: 0x4685, offset: 0x58749, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x3BB0, symBinAddr: 0x7904, symSize: 0x1C4 } + - { offsetInCU: 0x47E8, offset: 0x588AC, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x3D74, symBinAddr: 0x7AC8, symSize: 0x2D4 } + - { offsetInCU: 0x493C, offset: 0x58A00, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x4048, symBinAddr: 0x7D9C, symSize: 0x34 } + - { offsetInCU: 0x499C, offset: 0x58A60, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.153', symObjAddr: 0x407C, symBinAddr: 0x7DD0, symSize: 0x38 } + - { offsetInCU: 0x4A0D, offset: 0x58AD1, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x40B4, symBinAddr: 0x7E08, symSize: 0x38 } + - { offsetInCU: 0x4A36, offset: 0x58AFA, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x40EC, symBinAddr: 0x7E40, symSize: 0x30 } + - { offsetInCU: 0x4A55, offset: 0x58B19, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x411C, symBinAddr: 0x7E70, symSize: 0x54 } + - { offsetInCU: 0x4A7E, offset: 0x58B42, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x4170, symBinAddr: 0x7EC4, symSize: 0x10 } + - { offsetInCU: 0x4AD4, offset: 0x58B98, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x4180, symBinAddr: 0x7ED4, symSize: 0xC } + - { offsetInCU: 0x4B3A, offset: 0x58BFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x418C, symBinAddr: 0x7EE0, symSize: 0x208 } + - { offsetInCU: 0x4C4D, offset: 0x58D11, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4394, symBinAddr: 0x80E8, symSize: 0x1C8 } + - { offsetInCU: 0x4DA3, offset: 0x58E67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x455C, symBinAddr: 0x82B0, symSize: 0x194 } + - { offsetInCU: 0x4E83, offset: 0x58F47, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x46F0, symBinAddr: 0x8444, symSize: 0x12C } + - { offsetInCU: 0x4F49, offset: 0x5900D, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x481C, symBinAddr: 0x8570, symSize: 0x4C } + - { offsetInCU: 0x4F72, offset: 0x59036, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4868, symBinAddr: 0x85BC, symSize: 0x40 } + - { offsetInCU: 0x4F91, offset: 0x59055, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x48A8, symBinAddr: 0x85FC, symSize: 0x12C } + - { offsetInCU: 0x503C, offset: 0x59100, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x49D4, symBinAddr: 0x8728, symSize: 0xF0 } + - { offsetInCU: 0x510A, offset: 0x591CE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x4AC4, symBinAddr: 0x8818, symSize: 0x58 } + - { offsetInCU: 0x5160, offset: 0x59224, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x4B1C, symBinAddr: 0x8870, symSize: 0xFC } + - { offsetInCU: 0x526B, offset: 0x5932F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x4C18, symBinAddr: 0x896C, symSize: 0xE4 } + - { offsetInCU: 0x534E, offset: 0x59412, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x4CFC, symBinAddr: 0x8A50, symSize: 0x114 } + - { offsetInCU: 0x540F, offset: 0x594D3, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x4E10, symBinAddr: 0x8B64, symSize: 0xE4 } + - { offsetInCU: 0x5532, offset: 0x595F6, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x4EF4, symBinAddr: 0x8C48, symSize: 0xD4 } + - { offsetInCU: 0x55E9, offset: 0x596AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x4FC8, symBinAddr: 0x8D1C, symSize: 0x7C } + - { offsetInCU: 0x5644, offset: 0x59708, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x5044, symBinAddr: 0x8D98, symSize: 0x24 } + - { offsetInCU: 0x5687, offset: 0x5974B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5068, symBinAddr: 0x8DBC, symSize: 0x1DC } + - { offsetInCU: 0x57BD, offset: 0x59881, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5244, symBinAddr: 0x8F98, symSize: 0x10 } + - { offsetInCU: 0x5832, offset: 0x598F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5254, symBinAddr: 0x8FA8, symSize: 0x158 } + - { offsetInCU: 0x59A0, offset: 0x59A64, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x53AC, symBinAddr: 0x9100, symSize: 0x9C } + - { offsetInCU: 0x5A9C, offset: 0x59B60, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0xE6E4, symBinAddr: 0x1E0F8, symSize: 0xC0 } + - { offsetInCU: 0x5AD5, offset: 0x59B99, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5448, symBinAddr: 0x919C, symSize: 0x34 } + - { offsetInCU: 0x5B28, offset: 0x59BEC, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x547C, symBinAddr: 0x91D0, symSize: 0x34 } + - { offsetInCU: 0x5B8C, offset: 0x59C50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x54B0, symBinAddr: 0x9204, symSize: 0x310 } + - { offsetInCU: 0x5D1C, offset: 0x59DE0, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x57C0, symBinAddr: 0x9514, symSize: 0x84 } + - { offsetInCU: 0x5D5E, offset: 0x59E22, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x5844, symBinAddr: 0x9598, symSize: 0x90 } + - { offsetInCU: 0x5DB1, offset: 0x59E75, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x58D4, symBinAddr: 0x9628, symSize: 0xA0 } + - { offsetInCU: 0x5E54, offset: 0x59F18, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x5974, symBinAddr: 0x96C8, symSize: 0x34 } + - { offsetInCU: 0x5E9E, offset: 0x59F62, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x59A8, symBinAddr: 0x96FC, symSize: 0x10 } + - { offsetInCU: 0x5EC7, offset: 0x59F8B, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x59B8, symBinAddr: 0x970C, symSize: 0x44 } + - { offsetInCU: 0x5EF0, offset: 0x59FB4, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x59FC, symBinAddr: 0x9750, symSize: 0x38 } + - { offsetInCU: 0x5F0F, offset: 0x59FD3, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.179', symObjAddr: 0x5A34, symBinAddr: 0x9788, symSize: 0x9C } + - { offsetInCU: 0x5FA1, offset: 0x5A065, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.180', symObjAddr: 0x5AD0, symBinAddr: 0x9824, symSize: 0x34 } + - { offsetInCU: 0x5FEB, offset: 0x5A0AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x5B04, symBinAddr: 0x9858, symSize: 0x18 } + - { offsetInCU: 0x603D, offset: 0x5A101, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x5B1C, symBinAddr: 0x9870, symSize: 0x108 } + - { offsetInCU: 0x6141, offset: 0x5A205, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x5C24, symBinAddr: 0x9978, symSize: 0x48 } + - { offsetInCU: 0x619F, offset: 0x5A263, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x5C6C, symBinAddr: 0x99C0, symSize: 0xC } + - { offsetInCU: 0x61C8, offset: 0x5A28C, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x5C78, symBinAddr: 0x99CC, symSize: 0x8 } + - { offsetInCU: 0x61E7, offset: 0x5A2AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x5C80, symBinAddr: 0x99D4, symSize: 0x68 } + - { offsetInCU: 0x6238, offset: 0x5A2FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x5CE8, symBinAddr: 0x9A3C, symSize: 0x44 } + - { offsetInCU: 0x626C, offset: 0x5A330, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x5D2C, symBinAddr: 0x9A80, symSize: 0x324 } + - { offsetInCU: 0x64C9, offset: 0x5A58D, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x6050, symBinAddr: 0x9DA4, symSize: 0x34 } + - { offsetInCU: 0x6529, offset: 0x5A5ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6084, symBinAddr: 0x9DD8, symSize: 0x90 } + - { offsetInCU: 0x65A6, offset: 0x5A66A, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6114, symBinAddr: 0x9E68, symSize: 0x3C } + - { offsetInCU: 0x65E8, offset: 0x5A6AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x6150, symBinAddr: 0x9EA4, symSize: 0x58 } + - { offsetInCU: 0x6632, offset: 0x5A6F6, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x61A8, symBinAddr: 0x9EFC, symSize: 0x48 } + - { offsetInCU: 0x6674, offset: 0x5A738, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x61F0, symBinAddr: 0x9F44, symSize: 0x58 } + - { offsetInCU: 0x66BE, offset: 0x5A782, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6248, symBinAddr: 0x9F9C, symSize: 0x48 } + - { offsetInCU: 0x6700, offset: 0x5A7C4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x6290, symBinAddr: 0x9FE4, symSize: 0x58 } + - { offsetInCU: 0x674A, offset: 0x5A80E, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x62E8, symBinAddr: 0xA03C, symSize: 0x48 } + - { offsetInCU: 0x678C, offset: 0x5A850, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x6330, symBinAddr: 0xA084, symSize: 0x70 } + - { offsetInCU: 0x67D1, offset: 0x5A895, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x63A0, symBinAddr: 0xA0F4, symSize: 0xD4 } + - { offsetInCU: 0x6827, offset: 0x5A8EB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6474, symBinAddr: 0xA1C8, symSize: 0xD4 } + - { offsetInCU: 0x687D, offset: 0x5A941, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6548, symBinAddr: 0xA29C, symSize: 0xF4 } + - { offsetInCU: 0x690E, offset: 0x5A9D2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x663C, symBinAddr: 0xA390, symSize: 0x118 } + - { offsetInCU: 0x6986, offset: 0x5AA4A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x6754, symBinAddr: 0xA4A8, symSize: 0x100 } + - { offsetInCU: 0x69DC, offset: 0x5AAA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x6854, symBinAddr: 0xA5A8, symSize: 0xC0 } + - { offsetInCU: 0x6A43, offset: 0x5AB07, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x6914, symBinAddr: 0xA668, symSize: 0x10C } + - { offsetInCU: 0x6A99, offset: 0x5AB5D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x6A20, symBinAddr: 0xA774, symSize: 0x10C } + - { offsetInCU: 0x6AEF, offset: 0x5ABB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x6B2C, symBinAddr: 0xA880, symSize: 0x10C } + - { offsetInCU: 0x6B45, offset: 0x5AC09, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x6C38, symBinAddr: 0xA98C, symSize: 0x10C } + - { offsetInCU: 0x6B9B, offset: 0x5AC5F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x6D44, symBinAddr: 0xAA98, symSize: 0x10C } + - { offsetInCU: 0x6BF1, offset: 0x5ACB5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x6E50, symBinAddr: 0xABA4, symSize: 0xD4 } + - { offsetInCU: 0x6C47, offset: 0x5AD0B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x6F24, symBinAddr: 0xAC78, symSize: 0xD8 } + - { offsetInCU: 0x6CDD, offset: 0x5ADA1, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x6FFC, symBinAddr: 0xAD50, symSize: 0x1C } + - { offsetInCU: 0x6D38, offset: 0x5ADFC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7018, symBinAddr: 0xAD6C, symSize: 0xD8 } + - { offsetInCU: 0x6DCE, offset: 0x5AE92, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x70F0, symBinAddr: 0xAE44, symSize: 0x18 } + - { offsetInCU: 0x6E29, offset: 0x5AEED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7108, symBinAddr: 0xAE5C, symSize: 0x10C } + - { offsetInCU: 0x6EA9, offset: 0x5AF6D, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7214, symBinAddr: 0xAF68, symSize: 0x78 } + - { offsetInCU: 0x6EFC, offset: 0x5AFC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x728C, symBinAddr: 0xAFE0, symSize: 0xE4 } + - { offsetInCU: 0x6F7C, offset: 0x5B040, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x7370, symBinAddr: 0xB0C4, symSize: 0x50 } + - { offsetInCU: 0x6FCF, offset: 0x5B093, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x73C0, symBinAddr: 0xB114, symSize: 0xEC } + - { offsetInCU: 0x704F, offset: 0x5B113, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x74AC, symBinAddr: 0xB200, symSize: 0x5C } + - { offsetInCU: 0x70A2, offset: 0x5B166, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7508, symBinAddr: 0xB25C, symSize: 0x10C } + - { offsetInCU: 0x7122, offset: 0x5B1E6, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x7614, symBinAddr: 0xB368, symSize: 0x78 } + - { offsetInCU: 0x7175, offset: 0x5B239, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x768C, symBinAddr: 0xB3E0, symSize: 0xE4 } + - { offsetInCU: 0x71F5, offset: 0x5B2B9, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x7770, symBinAddr: 0xB4C4, symSize: 0x50 } + - { offsetInCU: 0x7248, offset: 0x5B30C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x77C0, symBinAddr: 0xB514, symSize: 0x30 } + - { offsetInCU: 0x7280, offset: 0x5B344, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x77F0, symBinAddr: 0xB544, symSize: 0x30 } + - { offsetInCU: 0x72B8, offset: 0x5B37C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x7820, symBinAddr: 0xB574, symSize: 0x18 } + - { offsetInCU: 0x72F0, offset: 0x5B3B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x7838, symBinAddr: 0xB58C, symSize: 0x18 } + - { offsetInCU: 0x7328, offset: 0x5B3EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x7850, symBinAddr: 0xB5A4, symSize: 0x30 } + - { offsetInCU: 0x7360, offset: 0x5B424, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x7880, symBinAddr: 0xB5D4, symSize: 0x30 } + - { offsetInCU: 0x7398, offset: 0x5B45C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x78B0, symBinAddr: 0xB604, symSize: 0x18 } + - { offsetInCU: 0x73D0, offset: 0x5B494, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x78C8, symBinAddr: 0xB61C, symSize: 0x18 } + - { offsetInCU: 0x7408, offset: 0x5B4CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x78E0, symBinAddr: 0xB634, symSize: 0x90 } + - { offsetInCU: 0x7497, offset: 0x5B55B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x7970, symBinAddr: 0xB6C4, symSize: 0x64 } + - { offsetInCU: 0x7526, offset: 0x5B5EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x79D4, symBinAddr: 0xB728, symSize: 0x88 } + - { offsetInCU: 0x75B5, offset: 0x5B679, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x7A5C, symBinAddr: 0xB7B0, symSize: 0x5C } + - { offsetInCU: 0x7644, offset: 0x5B708, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x7AB8, symBinAddr: 0xB80C, symSize: 0x90 } + - { offsetInCU: 0x76D3, offset: 0x5B797, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x7B48, symBinAddr: 0xB89C, symSize: 0x90 } + - { offsetInCU: 0x7783, offset: 0x5B847, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x7BD8, symBinAddr: 0xB92C, symSize: 0x64 } + - { offsetInCU: 0x7812, offset: 0x5B8D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x7C3C, symBinAddr: 0xB990, symSize: 0x88 } + - { offsetInCU: 0x78A1, offset: 0x5B965, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x7CC4, symBinAddr: 0xBA18, symSize: 0x5C } + - { offsetInCU: 0x7930, offset: 0x5B9F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x7D20, symBinAddr: 0xBA74, symSize: 0xFC } + - { offsetInCU: 0x79C6, offset: 0x5BA8A, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x7E1C, symBinAddr: 0xBB70, symSize: 0x100 } + - { offsetInCU: 0x7AB3, offset: 0x5BB77, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x7F1C, symBinAddr: 0xBC70, symSize: 0xFC } + - { offsetInCU: 0x7B49, offset: 0x5BC0D, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8018, symBinAddr: 0xBD6C, symSize: 0x100 } + - { offsetInCU: 0x7C36, offset: 0x5BCFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8118, symBinAddr: 0xBE6C, symSize: 0xB4 } + - { offsetInCU: 0x7CB6, offset: 0x5BD7A, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x81CC, symBinAddr: 0xBF20, symSize: 0x1C } + - { offsetInCU: 0x7D11, offset: 0x5BDD5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x81E8, symBinAddr: 0xBF3C, symSize: 0xB4 } + - { offsetInCU: 0x7D91, offset: 0x5BE55, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x829C, symBinAddr: 0xBFF0, symSize: 0x1C } + - { offsetInCU: 0x7DEC, offset: 0x5BEB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x82B8, symBinAddr: 0xC00C, symSize: 0xAC } + - { offsetInCU: 0x7E6C, offset: 0x5BF30, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8364, symBinAddr: 0xC0B8, symSize: 0x18 } + - { offsetInCU: 0x7EC7, offset: 0x5BF8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x837C, symBinAddr: 0xC0D0, symSize: 0x3FC } + - { offsetInCU: 0x81CE, offset: 0x5C292, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x8778, symBinAddr: 0xC4CC, symSize: 0xDC } + - { offsetInCU: 0x8245, offset: 0x5C309, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x8854, symBinAddr: 0xC5A8, symSize: 0x1F0 } + - { offsetInCU: 0x835F, offset: 0x5C423, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x8A44, symBinAddr: 0xC798, symSize: 0x64 } + - { offsetInCU: 0x83CB, offset: 0x5C48F, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x8AA8, symBinAddr: 0xC7FC, symSize: 0x54 } + - { offsetInCU: 0x8429, offset: 0x5C4ED, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x8AFC, symBinAddr: 0xC850, symSize: 0x24 } + - { offsetInCU: 0x8486, offset: 0x5C54A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x8B20, symBinAddr: 0xC874, symSize: 0x10 } + - { offsetInCU: 0x84AF, offset: 0x5C573, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x8B30, symBinAddr: 0xC884, symSize: 0xC } + - { offsetInCU: 0x84CE, offset: 0x5C592, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.216', symObjAddr: 0x8B3C, symBinAddr: 0xC890, symSize: 0x24 } + - { offsetInCU: 0x852B, offset: 0x5C5EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x8B60, symBinAddr: 0xC8B4, symSize: 0x18 } + - { offsetInCU: 0x8563, offset: 0x5C627, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x8B78, symBinAddr: 0xC8CC, symSize: 0x18 } + - { offsetInCU: 0x859B, offset: 0x5C65F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x8B90, symBinAddr: 0xC8E4, symSize: 0x38 } + - { offsetInCU: 0x85EC, offset: 0x5C6B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x8BC8, symBinAddr: 0xC91C, symSize: 0x38 } + - { offsetInCU: 0x862E, offset: 0x5C6F2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x8C00, symBinAddr: 0xC954, symSize: 0x38 } + - { offsetInCU: 0x8670, offset: 0x5C734, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x8C38, symBinAddr: 0xC98C, symSize: 0x38 } + - { offsetInCU: 0x86B2, offset: 0x5C776, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x8C70, symBinAddr: 0xC9C4, symSize: 0x14 } + - { offsetInCU: 0x8705, offset: 0x5C7C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8C84, symBinAddr: 0xC9D8, symSize: 0xC } + - { offsetInCU: 0x8776, offset: 0x5C83A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8C90, symBinAddr: 0xC9E4, symSize: 0xF0 } + - { offsetInCU: 0x882D, offset: 0x5C8F1, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x8D80, symBinAddr: 0xCAD4, symSize: 0x54 } + - { offsetInCU: 0x8880, offset: 0x5C944, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x8DD4, symBinAddr: 0xCB28, symSize: 0x10 } + - { offsetInCU: 0x88E2, offset: 0x5C9A6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8DE4, symBinAddr: 0xCB38, symSize: 0xF8 } + - { offsetInCU: 0x8999, offset: 0x5CA5D, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x8EDC, symBinAddr: 0xCC30, symSize: 0x54 } + - { offsetInCU: 0x89EC, offset: 0x5CAB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x8F30, symBinAddr: 0xCC84, symSize: 0x14 } + - { offsetInCU: 0x8A4E, offset: 0x5CB12, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8F44, symBinAddr: 0xCC98, symSize: 0xC } + - { offsetInCU: 0x8ACE, offset: 0x5CB92, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x8F50, symBinAddr: 0xCCA4, symSize: 0x14 } + - { offsetInCU: 0x8B41, offset: 0x5CC05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8F64, symBinAddr: 0xCCB8, symSize: 0x12C } + - { offsetInCU: 0x8C09, offset: 0x5CCCD, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x9090, symBinAddr: 0xCDE4, symSize: 0x54 } + - { offsetInCU: 0x8C5C, offset: 0x5CD20, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x90E4, symBinAddr: 0xCE38, symSize: 0xE8 } + - { offsetInCU: 0x8D25, offset: 0x5CDE9, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x91CC, symBinAddr: 0xCF20, symSize: 0xD0 } + - { offsetInCU: 0x8DDC, offset: 0x5CEA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x929C, symBinAddr: 0xCFF0, symSize: 0x130 } + - { offsetInCU: 0x8E10, offset: 0x5CED4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0x93CC, symBinAddr: 0xD120, symSize: 0x194 } + - { offsetInCU: 0x8FC0, offset: 0x5D084, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0x9560, symBinAddr: 0xD2B4, symSize: 0x70 } + - { offsetInCU: 0x9061, offset: 0x5D125, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0x95D0, symBinAddr: 0xD324, symSize: 0x944 } + - { offsetInCU: 0x942E, offset: 0x5D4F2, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0x9F14, symBinAddr: 0xDC68, symSize: 0x34 } + - { offsetInCU: 0x94A3, offset: 0x5D567, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0x9F48, symBinAddr: 0xDC9C, symSize: 0x200 } + - { offsetInCU: 0x95A5, offset: 0x5D669, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xA148, symBinAddr: 0xDE9C, symSize: 0x30 } + - { offsetInCU: 0x95F8, offset: 0x5D6BC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xA178, symBinAddr: 0xDECC, symSize: 0x188 } + - { offsetInCU: 0x9716, offset: 0x5D7DA, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xA300, symBinAddr: 0xE054, symSize: 0x38 } + - { offsetInCU: 0x978B, offset: 0x5D84F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xA338, symBinAddr: 0xE08C, symSize: 0x38 } + - { offsetInCU: 0x97B4, offset: 0x5D878, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xA370, symBinAddr: 0xE0C4, symSize: 0x3C } + - { offsetInCU: 0x97F6, offset: 0x5D8BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xA3AC, symBinAddr: 0xE100, symSize: 0x108 } + - { offsetInCU: 0x98DC, offset: 0x5D9A0, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xA4B4, symBinAddr: 0xE208, symSize: 0x48 } + - { offsetInCU: 0x993A, offset: 0x5D9FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xA4FC, symBinAddr: 0xE250, symSize: 0xF4 } + - { offsetInCU: 0x99B8, offset: 0x5DA7C, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xA5F0, symBinAddr: 0xE344, symSize: 0x90 } + - { offsetInCU: 0x9A52, offset: 0x5DB16, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xA680, symBinAddr: 0xE3D4, symSize: 0x34 } + - { offsetInCU: 0x9AA5, offset: 0x5DB69, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xA6B4, symBinAddr: 0xE408, symSize: 0xB0 } + - { offsetInCU: 0x9B34, offset: 0x5DBF8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xA764, symBinAddr: 0xE4B8, symSize: 0xCC } + - { offsetInCU: 0x9BC9, offset: 0x5DC8D, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xA830, symBinAddr: 0xE584, symSize: 0x54 } + - { offsetInCU: 0x9C1C, offset: 0x5DCE0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xA884, symBinAddr: 0xE5D8, symSize: 0xE8 } + - { offsetInCU: 0x9CE5, offset: 0x5DDA9, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xA96C, symBinAddr: 0xE6C0, symSize: 0xCC } + - { offsetInCU: 0x9D9C, offset: 0x5DE60, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xAA38, symBinAddr: 0xE78C, symSize: 0xFC } + - { offsetInCU: 0x9E4D, offset: 0x5DF11, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xB024, symBinAddr: 0xED78, symSize: 0x30 } + - { offsetInCU: 0x9E8F, offset: 0x5DF53, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xB054, symBinAddr: 0xEDA8, symSize: 0x34 } + - { offsetInCU: 0x9F04, offset: 0x5DFC8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xB088, symBinAddr: 0xEDDC, symSize: 0xC0 } + - { offsetInCU: 0x9F86, offset: 0x5E04A, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xB148, symBinAddr: 0xEE9C, symSize: 0x34 } + - { offsetInCU: 0x9FEA, offset: 0x5E0AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xB17C, symBinAddr: 0xEED0, symSize: 0x3C } + - { offsetInCU: 0xA02C, offset: 0x5E0F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xB1B8, symBinAddr: 0xEF0C, symSize: 0x108 } + - { offsetInCU: 0xA112, offset: 0x5E1D6, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xB2C0, symBinAddr: 0xF014, symSize: 0x48 } + - { offsetInCU: 0xA170, offset: 0x5E234, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xB308, symBinAddr: 0xF05C, symSize: 0xF4 } + - { offsetInCU: 0xA1EE, offset: 0x5E2B2, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xB3FC, symBinAddr: 0xF150, symSize: 0x8C } + - { offsetInCU: 0xA288, offset: 0x5E34C, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xB488, symBinAddr: 0xF1DC, symSize: 0x34 } + - { offsetInCU: 0xA2DB, offset: 0x5E39F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xB4BC, symBinAddr: 0xF210, symSize: 0xB0 } + - { offsetInCU: 0xA36A, offset: 0x5E42E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xB56C, symBinAddr: 0xF2C0, symSize: 0xC8 } + - { offsetInCU: 0xA3DD, offset: 0x5E4A1, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xB634, symBinAddr: 0xF388, symSize: 0x78 } + - { offsetInCU: 0xA430, offset: 0x5E4F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xB6AC, symBinAddr: 0xF400, symSize: 0xFC } + - { offsetInCU: 0xA4BA, offset: 0x5E57E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xB7A8, symBinAddr: 0xF4FC, symSize: 0x1BC } + - { offsetInCU: 0xA669, offset: 0x5E72D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xB964, symBinAddr: 0xF6B8, symSize: 0xCC } + - { offsetInCU: 0xA73F, offset: 0x5E803, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xBA30, symBinAddr: 0xF784, symSize: 0x978 } + - { offsetInCU: 0xABE0, offset: 0x5ECA4, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xC3A8, symBinAddr: 0x100FC, symSize: 0xC } + - { offsetInCU: 0xAC3C, offset: 0x5ED00, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xC3B4, symBinAddr: 0x10108, symSize: 0xC } + - { offsetInCU: 0xAC98, offset: 0x5ED5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xC3C0, symBinAddr: 0x10114, symSize: 0x374 } + - { offsetInCU: 0xAE2B, offset: 0x5EEEF, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xC734, symBinAddr: 0x10488, symSize: 0x30 } + - { offsetInCU: 0xAE7E, offset: 0x5EF42, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xC764, symBinAddr: 0x104B8, symSize: 0xB0 } + - { offsetInCU: 0xAF19, offset: 0x5EFDD, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xC814, symBinAddr: 0x10568, symSize: 0x78 } + - { offsetInCU: 0xAFB8, offset: 0x5F07C, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xC88C, symBinAddr: 0x105E0, symSize: 0x38 } + - { offsetInCU: 0xAFE1, offset: 0x5F0A5, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xC8C4, symBinAddr: 0x10618, symSize: 0x2C } + - { offsetInCU: 0xB000, offset: 0x5F0C4, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xC8F0, symBinAddr: 0x10644, symSize: 0x40 } + - { offsetInCU: 0xB029, offset: 0x5F0ED, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xC930, symBinAddr: 0x10684, symSize: 0x34 } + - { offsetInCU: 0xB048, offset: 0x5F10C, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.305', symObjAddr: 0xC964, symBinAddr: 0x106B8, symSize: 0x3C } + - { offsetInCU: 0xB0BD, offset: 0x5F181, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xC9A0, symBinAddr: 0x106F4, symSize: 0x4C } + - { offsetInCU: 0xB0E6, offset: 0x5F1AA, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xC9EC, symBinAddr: 0x10740, symSize: 0x3C } + - { offsetInCU: 0xB105, offset: 0x5F1C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xCA28, symBinAddr: 0x1077C, symSize: 0x78 } + - { offsetInCU: 0xB15B, offset: 0x5F21F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xCAA0, symBinAddr: 0x107F4, symSize: 0xE8 } + - { offsetInCU: 0xB1CC, offset: 0x5F290, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xCB88, symBinAddr: 0x108DC, symSize: 0x30 } + - { offsetInCU: 0xB21F, offset: 0x5F2E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xCBB8, symBinAddr: 0x1090C, symSize: 0x20 } + - { offsetInCU: 0xB260, offset: 0x5F324, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xCBD8, symBinAddr: 0x1092C, symSize: 0x170 } + - { offsetInCU: 0xB360, offset: 0x5F424, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xCD48, symBinAddr: 0x10A9C, symSize: 0x4 } + - { offsetInCU: 0xB3D7, offset: 0x5F49B, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCDD8, symBinAddr: 0x10B2C, symSize: 0x38 } + - { offsetInCU: 0xB415, offset: 0x5F4D9, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xCE10, symBinAddr: 0x10B64, symSize: 0x78 } + - { offsetInCU: 0xB457, offset: 0x5F51B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xCE88, symBinAddr: 0x10BDC, symSize: 0x78 } + - { offsetInCU: 0xB4D5, offset: 0x5F599, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCF00, symBinAddr: 0x10C54, symSize: 0xB8 } + - { offsetInCU: 0xB517, offset: 0x5F5DB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xCFB8, symBinAddr: 0x10D0C, symSize: 0x164 } + - { offsetInCU: 0xB59E, offset: 0x5F662, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xD11C, symBinAddr: 0x10E70, symSize: 0x68 } + - { offsetInCU: 0xB668, offset: 0x5F72C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xD184, symBinAddr: 0x10ED8, symSize: 0x68 } + - { offsetInCU: 0xB726, offset: 0x5F7EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xD1EC, symBinAddr: 0x10F40, symSize: 0x104 } + - { offsetInCU: 0xB815, offset: 0x5F8D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xD2F0, symBinAddr: 0x11044, symSize: 0x8C } + - { offsetInCU: 0xB8AC, offset: 0x5F970, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xD37C, symBinAddr: 0x110D0, symSize: 0x138 } + - { offsetInCU: 0xB975, offset: 0x5FA39, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xD4B4, symBinAddr: 0x11208, symSize: 0x138 } + - { offsetInCU: 0xBA3E, offset: 0x5FB02, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xD5EC, symBinAddr: 0x11340, symSize: 0x84 } + - { offsetInCU: 0xBA8C, offset: 0x5FB50, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xD670, symBinAddr: 0x113C4, symSize: 0x3C } + - { offsetInCU: 0xBACE, offset: 0x5FB92, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xD6AC, symBinAddr: 0x11400, symSize: 0x84 } + - { offsetInCU: 0xBB18, offset: 0x5FBDC, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xD730, symBinAddr: 0x11484, symSize: 0x3C } + - { offsetInCU: 0xBB5A, offset: 0x5FC1E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xD76C, symBinAddr: 0x114C0, symSize: 0x64 } + - { offsetInCU: 0xBC61, offset: 0x5FD25, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xD7D0, symBinAddr: 0x11524, symSize: 0xB0 } + - { offsetInCU: 0xBCE1, offset: 0x5FDA5, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xD880, symBinAddr: 0x115D4, symSize: 0x1C } + - { offsetInCU: 0xBD3C, offset: 0x5FE00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xD89C, symBinAddr: 0x115F0, symSize: 0x94 } + - { offsetInCU: 0xBDC6, offset: 0x5FE8A, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xD930, symBinAddr: 0x11684, symSize: 0x24 } + - { offsetInCU: 0xBE1B, offset: 0x5FEDF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xD954, symBinAddr: 0x116A8, symSize: 0x18 } + - { offsetInCU: 0xBE96, offset: 0x5FF5A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xD96C, symBinAddr: 0x116C0, symSize: 0x14 } + - { offsetInCU: 0xBEFE, offset: 0x5FFC2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xD980, symBinAddr: 0x116D4, symSize: 0x48 } + - { offsetInCU: 0xBF7B, offset: 0x6003F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xD9C8, symBinAddr: 0x1171C, symSize: 0x40 } + - { offsetInCU: 0xBFC1, offset: 0x60085, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xDA08, symBinAddr: 0x1175C, symSize: 0x34 } + - { offsetInCU: 0xC007, offset: 0x600CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xDA3C, symBinAddr: 0x11790, symSize: 0x34 } + - { offsetInCU: 0xC04D, offset: 0x60111, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xDA70, symBinAddr: 0x117C4, symSize: 0x3C } + - { offsetInCU: 0xC093, offset: 0x60157, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xDAAC, symBinAddr: 0x11800, symSize: 0x3C } + - { offsetInCU: 0xC0D9, offset: 0x6019D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xDAE8, symBinAddr: 0x1183C, symSize: 0x9C } + - { offsetInCU: 0xC176, offset: 0x6023A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xDB84, symBinAddr: 0x118D8, symSize: 0x3C } + - { offsetInCU: 0xC1BC, offset: 0x60280, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xDBC0, symBinAddr: 0x11914, symSize: 0x3C } + - { offsetInCU: 0xC202, offset: 0x602C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xDBFC, symBinAddr: 0x11950, symSize: 0x2C } + - { offsetInCU: 0xC248, offset: 0x6030C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xDC28, symBinAddr: 0x1197C, symSize: 0x318 } + - { offsetInCU: 0xC48E, offset: 0x60552, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xDF40, symBinAddr: 0x11C94, symSize: 0x7C } + - { offsetInCU: 0xC505, offset: 0x605C9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xDFBC, symBinAddr: 0x11D10, symSize: 0x7C } + - { offsetInCU: 0xC57D, offset: 0x60641, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xE038, symBinAddr: 0x11D8C, symSize: 0x10 } + - { offsetInCU: 0xC5C0, offset: 0x60684, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xE048, symBinAddr: 0x11D9C, symSize: 0x10 } + - { offsetInCU: 0xC603, offset: 0x606C7, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xE058, symBinAddr: 0x11DAC, symSize: 0x5C } + - { offsetInCU: 0xC659, offset: 0x6071D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xE0B4, symBinAddr: 0x11E08, symSize: 0x6C } + - { offsetInCU: 0xC6B3, offset: 0x60777, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xE120, symBinAddr: 0x11E74, symSize: 0x38 } + - { offsetInCU: 0xC70C, offset: 0x607D0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xE158, symBinAddr: 0x11EAC, symSize: 0x60 } + - { offsetInCU: 0xC771, offset: 0x60835, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xE1B8, symBinAddr: 0x11F0C, symSize: 0x60 } + - { offsetInCU: 0xC7D6, offset: 0x6089A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xE218, symBinAddr: 0x11F6C, symSize: 0xC } + - { offsetInCU: 0xC83B, offset: 0x608FF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xE224, symBinAddr: 0x11F78, symSize: 0x184 } + - { offsetInCU: 0xC915, offset: 0x609D9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xE3A8, symBinAddr: 0x120FC, symSize: 0x18 } + - { offsetInCU: 0xC949, offset: 0x60A0D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xE3C0, symBinAddr: 0x12114, symSize: 0x18 } + - { offsetInCU: 0xC97D, offset: 0x60A41, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xE3D8, symBinAddr: 0x1212C, symSize: 0x18 } + - { offsetInCU: 0xC9B1, offset: 0x60A75, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xE3F0, symBinAddr: 0x12144, symSize: 0x18 } + - { offsetInCU: 0xC9E5, offset: 0x60AA9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xE408, symBinAddr: 0x1215C, symSize: 0x11C } + - { offsetInCU: 0xCA19, offset: 0x60ADD, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xE524, symBinAddr: 0x12278, symSize: 0x7C } + - { offsetInCU: 0xCA76, offset: 0x60B3A, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0xE5A0, symBinAddr: 0x122F4, symSize: 0x5C } + - { offsetInCU: 0xCAD6, offset: 0x60B9A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xE5FC, symBinAddr: 0x12350, symSize: 0x7C } + - { offsetInCU: 0xCB46, offset: 0x60C0A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0xE678, symBinAddr: 0x123CC, symSize: 0x5C } + - { offsetInCU: 0x27, offset: 0x64841, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x12428, symSize: 0x18 } + - { offsetInCU: 0x41, offset: 0x6485B, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xD4A8, symBinAddr: 0x28820, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x6487B, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xD4B0, symBinAddr: 0x28828, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x64891, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xD4B8, symBinAddr: 0x28830, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x648A7, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xD4C0, symBinAddr: 0x28838, symSize: 0x0 } + - { offsetInCU: 0x97, offset: 0x648B1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xA7F0, symBinAddr: 0x1C928, symSize: 0x6C } + - { offsetInCU: 0xBF, offset: 0x648D9, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x40270, symBinAddr: 0x2EAD8, symSize: 0x0 } + - { offsetInCU: 0x125, offset: 0x6493F, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x40278, symBinAddr: 0x2EAE0, symSize: 0x0 } + - { offsetInCU: 0x65E, offset: 0x64E78, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x12428, symSize: 0x18 } + - { offsetInCU: 0x696, offset: 0x64EB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0x18, symBinAddr: 0x12440, symSize: 0x94 } + - { offsetInCU: 0x701, offset: 0x64F1B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0xAC, symBinAddr: 0x124D4, symSize: 0x48 } + - { offsetInCU: 0x735, offset: 0x64F4F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xF4, symBinAddr: 0x1251C, symSize: 0x34 } + - { offsetInCU: 0x76D, offset: 0x64F87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x128, symBinAddr: 0x12550, symSize: 0x30 } + - { offsetInCU: 0x7A1, offset: 0x64FBB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x158, symBinAddr: 0x12580, symSize: 0x10 } + - { offsetInCU: 0x7D7, offset: 0x64FF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x168, symBinAddr: 0x12590, symSize: 0x10 } + - { offsetInCU: 0x820, offset: 0x6503A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x178, symBinAddr: 0x125A0, symSize: 0x8 } + - { offsetInCU: 0x874, offset: 0x6508E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x180, symBinAddr: 0x125A8, symSize: 0x190 } + - { offsetInCU: 0x96E, offset: 0x65188, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x310, symBinAddr: 0x12738, symSize: 0xE4 } + - { offsetInCU: 0x9F3, offset: 0x6520D, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x3F4, symBinAddr: 0x1281C, symSize: 0xC } + - { offsetInCU: 0xA35, offset: 0x6524F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x410, symBinAddr: 0x12828, symSize: 0xD0 } + - { offsetInCU: 0xAB5, offset: 0x652CF, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x4E0, symBinAddr: 0x128F8, symSize: 0x10 } + - { offsetInCU: 0xADA, offset: 0x652F4, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x4F0, symBinAddr: 0x12908, symSize: 0x8 } + - { offsetInCU: 0xAF9, offset: 0x65313, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x4F8, symBinAddr: 0x12910, symSize: 0x3C } + - { offsetInCU: 0xB4C, offset: 0x65366, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x594, symBinAddr: 0x1294C, symSize: 0xCC } + - { offsetInCU: 0xC04, offset: 0x6541E, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x660, symBinAddr: 0x12A18, symSize: 0xC } + - { offsetInCU: 0xC57, offset: 0x65471, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x6BC, symBinAddr: 0x12A24, symSize: 0x8 } + - { offsetInCU: 0xC98, offset: 0x654B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x6C4, symBinAddr: 0x12A2C, symSize: 0x8 } + - { offsetInCU: 0xCD9, offset: 0x654F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x6CC, symBinAddr: 0x12A34, symSize: 0xD0 } + - { offsetInCU: 0xD59, offset: 0x65573, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x79C, symBinAddr: 0x12B04, symSize: 0x14 } + - { offsetInCU: 0xDAC, offset: 0x655C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x7B0, symBinAddr: 0x12B18, symSize: 0xCC } + - { offsetInCU: 0xE51, offset: 0x6566B, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x87C, symBinAddr: 0x12BE4, symSize: 0xC } + - { offsetInCU: 0xEA4, offset: 0x656BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x888, symBinAddr: 0x12BF0, symSize: 0x8 } + - { offsetInCU: 0xEE5, offset: 0x656FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x890, symBinAddr: 0x12BF8, symSize: 0x8 } + - { offsetInCU: 0xF26, offset: 0x65740, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x898, symBinAddr: 0x12C00, symSize: 0x138 } + - { offsetInCU: 0xFDB, offset: 0x657F5, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x9D0, symBinAddr: 0x12D38, symSize: 0x54 } + - { offsetInCU: 0x103F, offset: 0x65859, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xAA0, symBinAddr: 0x12D8C, symSize: 0x10C } + - { offsetInCU: 0x10F5, offset: 0x6590F, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xBAC, symBinAddr: 0x12E98, symSize: 0x34 } + - { offsetInCU: 0x1159, offset: 0x65973, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xC40, symBinAddr: 0x12ECC, symSize: 0x8 } + - { offsetInCU: 0x11A9, offset: 0x659C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xC48, symBinAddr: 0x12ED4, symSize: 0x8 } + - { offsetInCU: 0x11F9, offset: 0x65A13, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xC50, symBinAddr: 0x12EDC, symSize: 0xD8 } + - { offsetInCU: 0x128F, offset: 0x65AA9, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xD28, symBinAddr: 0x12FB4, symSize: 0x1C } + - { offsetInCU: 0x12EA, offset: 0x65B04, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xD44, symBinAddr: 0x12FD0, symSize: 0x94 } + - { offsetInCU: 0x1374, offset: 0x65B8E, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xDD8, symBinAddr: 0x13064, symSize: 0x20 } + - { offsetInCU: 0x13C9, offset: 0x65BE3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xDF8, symBinAddr: 0x13084, symSize: 0xD8 } + - { offsetInCU: 0x145F, offset: 0x65C79, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xED0, symBinAddr: 0x1315C, symSize: 0x1C } + - { offsetInCU: 0x14BA, offset: 0x65CD4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xEEC, symBinAddr: 0x13178, symSize: 0x94 } + - { offsetInCU: 0x1544, offset: 0x65D5E, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0xF80, symBinAddr: 0x1320C, symSize: 0x24 } + - { offsetInCU: 0x1599, offset: 0x65DB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0xFA4, symBinAddr: 0x13230, symSize: 0xD8 } + - { offsetInCU: 0x162F, offset: 0x65E49, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x107C, symBinAddr: 0x13308, symSize: 0x18 } + - { offsetInCU: 0x168A, offset: 0x65EA4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1094, symBinAddr: 0x13320, symSize: 0xD8 } + - { offsetInCU: 0x1720, offset: 0x65F3A, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x116C, symBinAddr: 0x133F8, symSize: 0x18 } + - { offsetInCU: 0x177B, offset: 0x65F95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x1184, symBinAddr: 0x13410, symSize: 0xD8 } + - { offsetInCU: 0x1811, offset: 0x6602B, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x125C, symBinAddr: 0x134E8, symSize: 0x1C } + - { offsetInCU: 0x186C, offset: 0x66086, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1278, symBinAddr: 0x13504, symSize: 0x90 } + - { offsetInCU: 0x18E9, offset: 0x66103, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x1308, symBinAddr: 0x13594, symSize: 0x24 } + - { offsetInCU: 0x192B, offset: 0x66145, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x132C, symBinAddr: 0x135B8, symSize: 0x90 } + - { offsetInCU: 0x19A8, offset: 0x661C2, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x13BC, symBinAddr: 0x13648, symSize: 0x24 } + - { offsetInCU: 0x19EA, offset: 0x66204, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x13E0, symBinAddr: 0x1366C, symSize: 0x90 } + - { offsetInCU: 0x1A67, offset: 0x66281, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1470, symBinAddr: 0x136FC, symSize: 0x24 } + - { offsetInCU: 0x1AA9, offset: 0x662C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1494, symBinAddr: 0x13720, symSize: 0xD8 } + - { offsetInCU: 0x1B3F, offset: 0x66359, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x156C, symBinAddr: 0x137F8, symSize: 0x14 } + - { offsetInCU: 0x1B9A, offset: 0x663B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1580, symBinAddr: 0x1380C, symSize: 0x94 } + - { offsetInCU: 0x1C28, offset: 0x66442, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x1614, symBinAddr: 0x138A0, symSize: 0x10 } + - { offsetInCU: 0x1C7D, offset: 0x66497, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x1624, symBinAddr: 0x138B0, symSize: 0xD8 } + - { offsetInCU: 0x1D13, offset: 0x6652D, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x16FC, symBinAddr: 0x13988, symSize: 0x14 } + - { offsetInCU: 0x1D6E, offset: 0x66588, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x1710, symBinAddr: 0x1399C, symSize: 0x94 } + - { offsetInCU: 0x1DFC, offset: 0x66616, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x17A4, symBinAddr: 0x13A30, symSize: 0x10 } + - { offsetInCU: 0x1E51, offset: 0x6666B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x17B4, symBinAddr: 0x13A40, symSize: 0x94 } + - { offsetInCU: 0x1EDF, offset: 0x666F9, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x1848, symBinAddr: 0x13AD4, symSize: 0x10 } + - { offsetInCU: 0x1F34, offset: 0x6674E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x1858, symBinAddr: 0x13AE4, symSize: 0xD8 } + - { offsetInCU: 0x1FCA, offset: 0x667E4, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x1930, symBinAddr: 0x13BBC, symSize: 0x14 } + - { offsetInCU: 0x2025, offset: 0x6683F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x1944, symBinAddr: 0x13BD0, symSize: 0xFC } + - { offsetInCU: 0x20BB, offset: 0x668D5, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1A40, symBinAddr: 0x13CCC, symSize: 0x14 } + - { offsetInCU: 0x210E, offset: 0x66928, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1A54, symBinAddr: 0x13CE0, symSize: 0xBC } + - { offsetInCU: 0x219C, offset: 0x669B6, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1B10, symBinAddr: 0x13D9C, symSize: 0x1C } + - { offsetInCU: 0x21EF, offset: 0x66A09, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1B2C, symBinAddr: 0x13DB8, symSize: 0xF4 } + - { offsetInCU: 0x2282, offset: 0x66A9C, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1C20, symBinAddr: 0x13EAC, symSize: 0x34 } + - { offsetInCU: 0x22E6, offset: 0x66B00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1C54, symBinAddr: 0x13EE0, symSize: 0xD4 } + - { offsetInCU: 0x2359, offset: 0x66B73, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1D28, symBinAddr: 0x13FB4, symSize: 0x34 } + - { offsetInCU: 0x23BD, offset: 0x66BD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1D5C, symBinAddr: 0x13FE8, symSize: 0xB4 } + - { offsetInCU: 0x2430, offset: 0x66C4A, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1E10, symBinAddr: 0x1409C, symSize: 0x34 } + - { offsetInCU: 0x2494, offset: 0x66CAE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1E44, symBinAddr: 0x140D0, symSize: 0xE4 } + - { offsetInCU: 0x2518, offset: 0x66D32, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x1F28, symBinAddr: 0x141B4, symSize: 0x34 } + - { offsetInCU: 0x258D, offset: 0x66DA7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x1F5C, symBinAddr: 0x141E8, symSize: 0x134 } + - { offsetInCU: 0x2633, offset: 0x66E4D, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2090, symBinAddr: 0x1431C, symSize: 0x38 } + - { offsetInCU: 0x26B9, offset: 0x66ED3, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x20C8, symBinAddr: 0x14354, symSize: 0x40 } + - { offsetInCU: 0x26E2, offset: 0x66EFC, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2108, symBinAddr: 0x14394, symSize: 0x40 } + - { offsetInCU: 0x2701, offset: 0x66F1B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x2148, symBinAddr: 0x143D4, symSize: 0xD4 } + - { offsetInCU: 0x2774, offset: 0x66F8E, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x221C, symBinAddr: 0x144A8, symSize: 0x34 } + - { offsetInCU: 0x27D8, offset: 0x66FF2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2250, symBinAddr: 0x144DC, symSize: 0xD4 } + - { offsetInCU: 0x282E, offset: 0x67048, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2324, symBinAddr: 0x145B0, symSize: 0xD4 } + - { offsetInCU: 0x2884, offset: 0x6709E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x23F8, symBinAddr: 0x14684, symSize: 0xF4 } + - { offsetInCU: 0x2915, offset: 0x6712F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x24EC, symBinAddr: 0x14778, symSize: 0x14C } + - { offsetInCU: 0x297C, offset: 0x67196, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2638, symBinAddr: 0x148C4, symSize: 0x8 } + - { offsetInCU: 0x29B2, offset: 0x671CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x2640, symBinAddr: 0x148CC, symSize: 0x10C } + - { offsetInCU: 0x2A08, offset: 0x67222, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x274C, symBinAddr: 0x149D8, symSize: 0x10C } + - { offsetInCU: 0x2A5E, offset: 0x67278, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x2858, symBinAddr: 0x14AE4, symSize: 0xD4 } + - { offsetInCU: 0x2AB4, offset: 0x672CE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x292C, symBinAddr: 0x14BB8, symSize: 0x90 } + - { offsetInCU: 0x2B39, offset: 0x67353, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x29BC, symBinAddr: 0x14C48, symSize: 0x178 } + - { offsetInCU: 0x2C61, offset: 0x6747B, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2B34, symBinAddr: 0x14DC0, symSize: 0x38 } + - { offsetInCU: 0x2CC3, offset: 0x674DD, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2B6C, symBinAddr: 0x14DF8, symSize: 0x34 } + - { offsetInCU: 0x2CEC, offset: 0x67506, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.72', symObjAddr: 0x2BA0, symBinAddr: 0x14E2C, symSize: 0x344 } + - { offsetInCU: 0x2F00, offset: 0x6771A, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x2EE4, symBinAddr: 0x15170, symSize: 0x38 } + - { offsetInCU: 0x2F6C, offset: 0x67786, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x2F1C, symBinAddr: 0x151A8, symSize: 0x3C } + - { offsetInCU: 0x2F95, offset: 0x677AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x2F58, symBinAddr: 0x151E4, symSize: 0x374 } + - { offsetInCU: 0x31DA, offset: 0x679F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x32CC, symBinAddr: 0x15558, symSize: 0x344 } + - { offsetInCU: 0x34D3, offset: 0x67CED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3610, symBinAddr: 0x1589C, symSize: 0x1C8 } + - { offsetInCU: 0x35E5, offset: 0x67DFF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x37D8, symBinAddr: 0x15A64, symSize: 0x68 } + - { offsetInCU: 0x3650, offset: 0x67E6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3840, symBinAddr: 0x15ACC, symSize: 0x70 } + - { offsetInCU: 0x36BB, offset: 0x67ED5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x38B0, symBinAddr: 0x15B3C, symSize: 0xC0 } + - { offsetInCU: 0x37A1, offset: 0x67FBB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3970, symBinAddr: 0x15BFC, symSize: 0xC8 } + - { offsetInCU: 0x3874, offset: 0x6808E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3A38, symBinAddr: 0x15CC4, symSize: 0x184 } + - { offsetInCU: 0x399D, offset: 0x681B7, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x3BBC, symBinAddr: 0x15E48, symSize: 0x60 } + - { offsetInCU: 0x39DF, offset: 0x681F9, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x3C1C, symBinAddr: 0x15EA8, symSize: 0x58 } + - { offsetInCU: 0x3A42, offset: 0x6825C, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x3C74, symBinAddr: 0x15F00, symSize: 0x24 } + - { offsetInCU: 0x3AB6, offset: 0x682D0, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.88', symObjAddr: 0x3CB4, symBinAddr: 0x15F24, symSize: 0x24 } + - { offsetInCU: 0x3B13, offset: 0x6832D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x3CD8, symBinAddr: 0x15F48, symSize: 0x184 } + - { offsetInCU: 0x3BF2, offset: 0x6840C, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x3E5C, symBinAddr: 0x160CC, symSize: 0x60 } + - { offsetInCU: 0x3C34, offset: 0x6844E, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x3EBC, symBinAddr: 0x1612C, symSize: 0x58 } + - { offsetInCU: 0x3C84, offset: 0x6849E, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x3F14, symBinAddr: 0x16184, symSize: 0x24 } + - { offsetInCU: 0x3CE1, offset: 0x684FB, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x3F38, symBinAddr: 0x161A8, symSize: 0x24 } + - { offsetInCU: 0x3D3E, offset: 0x68558, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x3F5C, symBinAddr: 0x161CC, symSize: 0x10C } + - { offsetInCU: 0x3DFC, offset: 0x68616, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4068, symBinAddr: 0x162D8, symSize: 0x1DC } + - { offsetInCU: 0x4026, offset: 0x68840, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x4244, symBinAddr: 0x164B4, symSize: 0x48 } + - { offsetInCU: 0x4089, offset: 0x688A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x428C, symBinAddr: 0x164FC, symSize: 0x3C } + - { offsetInCU: 0x40DA, offset: 0x688F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x42C8, symBinAddr: 0x16538, symSize: 0x3C } + - { offsetInCU: 0x411C, offset: 0x68936, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x4304, symBinAddr: 0x16574, symSize: 0x3C } + - { offsetInCU: 0x416D, offset: 0x68987, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x4340, symBinAddr: 0x165B0, symSize: 0x3C } + - { offsetInCU: 0x41AF, offset: 0x689C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x437C, symBinAddr: 0x165EC, symSize: 0x3C } + - { offsetInCU: 0x41F1, offset: 0x68A0B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x43B8, symBinAddr: 0x16628, symSize: 0x3C } + - { offsetInCU: 0x4233, offset: 0x68A4D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x43F4, symBinAddr: 0x16664, symSize: 0x3C } + - { offsetInCU: 0x4275, offset: 0x68A8F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x4430, symBinAddr: 0x166A0, symSize: 0x3C } + - { offsetInCU: 0x42B7, offset: 0x68AD1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x446C, symBinAddr: 0x166DC, symSize: 0x94 } + - { offsetInCU: 0x4316, offset: 0x68B30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x4500, symBinAddr: 0x16770, symSize: 0x94 } + - { offsetInCU: 0x4366, offset: 0x68B80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4594, symBinAddr: 0x16804, symSize: 0x34 } + - { offsetInCU: 0x439A, offset: 0x68BB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x45C8, symBinAddr: 0x16838, symSize: 0x1AC } + - { offsetInCU: 0x451E, offset: 0x68D38, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4774, symBinAddr: 0x169E4, symSize: 0xD4 } + - { offsetInCU: 0x4585, offset: 0x68D9F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4848, symBinAddr: 0x16AB8, symSize: 0xD4 } + - { offsetInCU: 0x45EC, offset: 0x68E06, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x491C, symBinAddr: 0x16B8C, symSize: 0x140 } + - { offsetInCU: 0x468A, offset: 0x68EA4, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4A5C, symBinAddr: 0x16CCC, symSize: 0x5C } + - { offsetInCU: 0x46DD, offset: 0x68EF7, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4AB8, symBinAddr: 0x16D28, symSize: 0x34 } + - { offsetInCU: 0x4727, offset: 0x68F41, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x4AFC, symBinAddr: 0x16D5C, symSize: 0x140 } + - { offsetInCU: 0x47C5, offset: 0x68FDF, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x4C3C, symBinAddr: 0x16E9C, symSize: 0x5C } + - { offsetInCU: 0x4818, offset: 0x69032, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x4C98, symBinAddr: 0x16EF8, symSize: 0x34 } + - { offsetInCU: 0x4862, offset: 0x6907C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x4CCC, symBinAddr: 0x16F2C, symSize: 0x11C } + - { offsetInCU: 0x4900, offset: 0x6911A, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x4DE8, symBinAddr: 0x17048, symSize: 0x50 } + - { offsetInCU: 0x4953, offset: 0x6916D, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x4E38, symBinAddr: 0x17098, symSize: 0x34 } + - { offsetInCU: 0x499D, offset: 0x691B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x4E6C, symBinAddr: 0x170CC, symSize: 0x140 } + - { offsetInCU: 0x4A3B, offset: 0x69255, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x4FAC, symBinAddr: 0x1720C, symSize: 0x34 } + - { offsetInCU: 0x4A8E, offset: 0x692A8, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x4FE0, symBinAddr: 0x17240, symSize: 0x34 } + - { offsetInCU: 0x4AD8, offset: 0x692F2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x5014, symBinAddr: 0x17274, symSize: 0x140 } + - { offsetInCU: 0x4B76, offset: 0x69390, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x5154, symBinAddr: 0x173B4, symSize: 0x34 } + - { offsetInCU: 0x4BC9, offset: 0x693E3, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x5188, symBinAddr: 0x173E8, symSize: 0x34 } + - { offsetInCU: 0x4C13, offset: 0x6942D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x51BC, symBinAddr: 0x1741C, symSize: 0x11C } + - { offsetInCU: 0x4CB1, offset: 0x694CB, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x52D8, symBinAddr: 0x17538, symSize: 0x34 } + - { offsetInCU: 0x4D04, offset: 0x6951E, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x530C, symBinAddr: 0x1756C, symSize: 0x34 } + - { offsetInCU: 0x4D4E, offset: 0x69568, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5340, symBinAddr: 0x175A0, symSize: 0x140 } + - { offsetInCU: 0x4DEC, offset: 0x69606, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x5480, symBinAddr: 0x176E0, symSize: 0x34 } + - { offsetInCU: 0x4E3F, offset: 0x69659, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x54B4, symBinAddr: 0x17714, symSize: 0x34 } + - { offsetInCU: 0x4E89, offset: 0x696A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x54E8, symBinAddr: 0x17748, symSize: 0x140 } + - { offsetInCU: 0x4F27, offset: 0x69741, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5628, symBinAddr: 0x17888, symSize: 0x34 } + - { offsetInCU: 0x4F7A, offset: 0x69794, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x565C, symBinAddr: 0x178BC, symSize: 0x34 } + - { offsetInCU: 0x4FC4, offset: 0x697DE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5690, symBinAddr: 0x178F0, symSize: 0x11C } + - { offsetInCU: 0x5062, offset: 0x6987C, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x57AC, symBinAddr: 0x17A0C, symSize: 0x34 } + - { offsetInCU: 0x50B5, offset: 0x698CF, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x57E0, symBinAddr: 0x17A40, symSize: 0x34 } + - { offsetInCU: 0x50FF, offset: 0x69919, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5814, symBinAddr: 0x17A74, symSize: 0x1B0 } + - { offsetInCU: 0x522A, offset: 0x69A44, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x59C4, symBinAddr: 0x17C24, symSize: 0x140 } + - { offsetInCU: 0x52C8, offset: 0x69AE2, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x5B04, symBinAddr: 0x17D64, symSize: 0x34 } + - { offsetInCU: 0x531B, offset: 0x69B35, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x5B38, symBinAddr: 0x17D98, symSize: 0x34 } + - { offsetInCU: 0x5365, offset: 0x69B7F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x5B6C, symBinAddr: 0x17DCC, symSize: 0x140 } + - { offsetInCU: 0x5403, offset: 0x69C1D, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x5CAC, symBinAddr: 0x17F0C, symSize: 0x34 } + - { offsetInCU: 0x5456, offset: 0x69C70, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x5CE0, symBinAddr: 0x17F40, symSize: 0x34 } + - { offsetInCU: 0x54A0, offset: 0x69CBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x5D14, symBinAddr: 0x17F74, symSize: 0x11C } + - { offsetInCU: 0x553E, offset: 0x69D58, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x5E30, symBinAddr: 0x18090, symSize: 0x34 } + - { offsetInCU: 0x5591, offset: 0x69DAB, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x5E64, symBinAddr: 0x180C4, symSize: 0x34 } + - { offsetInCU: 0x55DB, offset: 0x69DF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x5E98, symBinAddr: 0x180F8, symSize: 0xD8 } + - { offsetInCU: 0x5671, offset: 0x69E8B, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x5F70, symBinAddr: 0x181D0, symSize: 0x18 } + - { offsetInCU: 0x56CC, offset: 0x69EE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x5F88, symBinAddr: 0x181E8, symSize: 0xDC } + - { offsetInCU: 0x5762, offset: 0x69F7C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x6064, symBinAddr: 0x182C4, symSize: 0x1C } + - { offsetInCU: 0x57BD, offset: 0x69FD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6080, symBinAddr: 0x182E0, symSize: 0xD8 } + - { offsetInCU: 0x5853, offset: 0x6A06D, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6158, symBinAddr: 0x183B8, symSize: 0x48 } + - { offsetInCU: 0x58A6, offset: 0x6A0C0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x61A0, symBinAddr: 0x18400, symSize: 0xD8 } + - { offsetInCU: 0x593C, offset: 0x6A156, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x6278, symBinAddr: 0x184D8, symSize: 0x48 } + - { offsetInCU: 0x598F, offset: 0x6A1A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x62C0, symBinAddr: 0x18520, symSize: 0xA4 } + - { offsetInCU: 0x59F2, offset: 0x6A20C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6364, symBinAddr: 0x185C4, symSize: 0xC } + - { offsetInCU: 0x5A48, offset: 0x6A262, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6370, symBinAddr: 0x185D0, symSize: 0x184 } + - { offsetInCU: 0x5B28, offset: 0x6A342, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x64F4, symBinAddr: 0x18754, symSize: 0x26C } + - { offsetInCU: 0x5D0A, offset: 0x6A524, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x67EC, symBinAddr: 0x189C0, symSize: 0x174 } + - { offsetInCU: 0x5DD8, offset: 0x6A5F2, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6960, symBinAddr: 0x18B34, symSize: 0x2A4 } + - { offsetInCU: 0x5F85, offset: 0x6A79F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x6C04, symBinAddr: 0x18DD8, symSize: 0x90 } + - { offsetInCU: 0x5FE8, offset: 0x6A802, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x6C94, symBinAddr: 0x18E68, symSize: 0x184 } + - { offsetInCU: 0x60C8, offset: 0x6A8E2, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x6E18, symBinAddr: 0x18FEC, symSize: 0x190 } + - { offsetInCU: 0x618E, offset: 0x6A9A8, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x6FA8, symBinAddr: 0x1917C, symSize: 0x9C } + - { offsetInCU: 0x6203, offset: 0x6AA1D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x7044, symBinAddr: 0x19218, symSize: 0x174 } + - { offsetInCU: 0x62D1, offset: 0x6AAEB, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x71B8, symBinAddr: 0x1938C, symSize: 0x184 } + - { offsetInCU: 0x63A8, offset: 0x6ABC2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x733C, symBinAddr: 0x19510, symSize: 0x1E4 } + - { offsetInCU: 0x6458, offset: 0x6AC72, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7520, symBinAddr: 0x196F4, symSize: 0xC0 } + - { offsetInCU: 0x6508, offset: 0x6AD22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x75E0, symBinAddr: 0x197B4, symSize: 0xC0 } + - { offsetInCU: 0x6597, offset: 0x6ADB1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x76A0, symBinAddr: 0x19874, symSize: 0x84 } + - { offsetInCU: 0x65E0, offset: 0x6ADFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7724, symBinAddr: 0x198F8, symSize: 0xC } + - { offsetInCU: 0x6636, offset: 0x6AE50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7730, symBinAddr: 0x19904, symSize: 0x14 } + - { offsetInCU: 0x669F, offset: 0x6AEB9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7744, symBinAddr: 0x19918, symSize: 0xC } + - { offsetInCU: 0x66F5, offset: 0x6AF0F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7750, symBinAddr: 0x19924, symSize: 0x14 } + - { offsetInCU: 0x675E, offset: 0x6AF78, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7764, symBinAddr: 0x19938, symSize: 0x1C4 } + - { offsetInCU: 0x684F, offset: 0x6B069, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x7928, symBinAddr: 0x19AFC, symSize: 0x270 } + - { offsetInCU: 0x6A5D, offset: 0x6B277, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x7C34, symBinAddr: 0x19D6C, symSize: 0x174 } + - { offsetInCU: 0x6B2B, offset: 0x6B345, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x7DA8, symBinAddr: 0x19EE0, symSize: 0x18C } + - { offsetInCU: 0x6C52, offset: 0x6B46C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x7F34, symBinAddr: 0x1A06C, symSize: 0x174 } + - { offsetInCU: 0x6D20, offset: 0x6B53A, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x80A8, symBinAddr: 0x1A1E0, symSize: 0x184 } + - { offsetInCU: 0x6E38, offset: 0x6B652, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x822C, symBinAddr: 0x1A364, symSize: 0x150 } + - { offsetInCU: 0x6F02, offset: 0x6B71C, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x837C, symBinAddr: 0x1A4B4, symSize: 0x150 } + - { offsetInCU: 0x7021, offset: 0x6B83B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x84CC, symBinAddr: 0x1A604, symSize: 0x150 } + - { offsetInCU: 0x70EB, offset: 0x6B905, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x861C, symBinAddr: 0x1A754, symSize: 0x114 } + - { offsetInCU: 0x71BD, offset: 0x6B9D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x8730, symBinAddr: 0x1A868, symSize: 0x8 } + - { offsetInCU: 0x720D, offset: 0x6BA27, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x8738, symBinAddr: 0x1A870, symSize: 0xCC } + - { offsetInCU: 0x72A2, offset: 0x6BABC, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x8804, symBinAddr: 0x1A93C, symSize: 0x3C } + - { offsetInCU: 0x72F5, offset: 0x6BB0F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x8840, symBinAddr: 0x1A978, symSize: 0x144 } + - { offsetInCU: 0x73AC, offset: 0x6BBC6, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x8984, symBinAddr: 0x1AABC, symSize: 0x94 } + - { offsetInCU: 0x7421, offset: 0x6BC3B, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x8A18, symBinAddr: 0x1AB50, symSize: 0x3C } + - { offsetInCU: 0x7474, offset: 0x6BC8E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x8A54, symBinAddr: 0x1AB8C, symSize: 0x118 } + - { offsetInCU: 0x751A, offset: 0x6BD34, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x8B6C, symBinAddr: 0x1ACA4, symSize: 0x3C } + - { offsetInCU: 0x756D, offset: 0x6BD87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x8BA8, symBinAddr: 0x1ACE0, symSize: 0x8 } + - { offsetInCU: 0x75BD, offset: 0x6BDD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x8BB0, symBinAddr: 0x1ACE8, symSize: 0x13C } + - { offsetInCU: 0x768B, offset: 0x6BEA5, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x8CEC, symBinAddr: 0x1AE24, symSize: 0x50 } + - { offsetInCU: 0x7700, offset: 0x6BF1A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x8D3C, symBinAddr: 0x1AE74, symSize: 0x144 } + - { offsetInCU: 0x774C, offset: 0x6BF66, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x8E80, symBinAddr: 0x1AFB8, symSize: 0x2CC } + - { offsetInCU: 0x787B, offset: 0x6C095, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x914C, symBinAddr: 0x1B284, symSize: 0xB4 } + - { offsetInCU: 0x7913, offset: 0x6C12D, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9200, symBinAddr: 0x1B338, symSize: 0x68 } + - { offsetInCU: 0x7977, offset: 0x6C191, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.151', symObjAddr: 0x9268, symBinAddr: 0x1B3A0, symSize: 0x54 } + - { offsetInCU: 0x79D6, offset: 0x6C1F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x92BC, symBinAddr: 0x1B3F4, symSize: 0x1A8 } + - { offsetInCU: 0x7B54, offset: 0x6C36E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0x9464, symBinAddr: 0x1B59C, symSize: 0x3C } + - { offsetInCU: 0x7B96, offset: 0x6C3B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0x94A0, symBinAddr: 0x1B5D8, symSize: 0x60 } + - { offsetInCU: 0x7BCA, offset: 0x6C3E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0x9500, symBinAddr: 0x1B638, symSize: 0xC8 } + - { offsetInCU: 0x7CC5, offset: 0x6C4DF, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0x95C8, symBinAddr: 0x1B700, symSize: 0x30 } + - { offsetInCU: 0x7D07, offset: 0x6C521, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0x95F8, symBinAddr: 0x1B730, symSize: 0x14C } + - { offsetInCU: 0x7DC4, offset: 0x6C5DE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0x9744, symBinAddr: 0x1B87C, symSize: 0xD4 } + - { offsetInCU: 0x7E5E, offset: 0x6C678, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0x9818, symBinAddr: 0x1B950, symSize: 0x30 } + - { offsetInCU: 0x7EA0, offset: 0x6C6BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0x9848, symBinAddr: 0x1B980, symSize: 0x14C } + - { offsetInCU: 0x7F5D, offset: 0x6C777, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0x9994, symBinAddr: 0x1BACC, symSize: 0xD4 } + - { offsetInCU: 0x7FF7, offset: 0x6C811, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0x9A68, symBinAddr: 0x1BBA0, symSize: 0x30 } + - { offsetInCU: 0x8039, offset: 0x6C853, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0x9A98, symBinAddr: 0x1BBD0, symSize: 0x90 } + - { offsetInCU: 0x80B6, offset: 0x6C8D0, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0x9B28, symBinAddr: 0x1BC60, symSize: 0x64 } + - { offsetInCU: 0x80F8, offset: 0x6C912, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0x9B8C, symBinAddr: 0x1BCC4, symSize: 0x8 } + - { offsetInCU: 0x8148, offset: 0x6C962, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0x9B94, symBinAddr: 0x1BCCC, symSize: 0x13C } + - { offsetInCU: 0x8216, offset: 0x6CA30, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9CD0, symBinAddr: 0x1BE08, symSize: 0x50 } + - { offsetInCU: 0x828B, offset: 0x6CAA5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0x9D20, symBinAddr: 0x1BE58, symSize: 0x658 } + - { offsetInCU: 0x8506, offset: 0x6CD20, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xA378, symBinAddr: 0x1C4B0, symSize: 0xF8 } + - { offsetInCU: 0x85BD, offset: 0x6CDD7, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xA470, symBinAddr: 0x1C5A8, symSize: 0x94 } + - { offsetInCU: 0x8643, offset: 0x6CE5D, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.158', symObjAddr: 0xA504, symBinAddr: 0x1C63C, symSize: 0x80 } + - { offsetInCU: 0x86DD, offset: 0x6CEF7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xA584, symBinAddr: 0x1C6BC, symSize: 0x3C } + - { offsetInCU: 0x8711, offset: 0x6CF2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xA5C0, symBinAddr: 0x1C6F8, symSize: 0x7C } + - { offsetInCU: 0x8763, offset: 0x6CF7D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xA63C, symBinAddr: 0x1C774, symSize: 0x90 } + - { offsetInCU: 0x87E0, offset: 0x6CFFA, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xA6CC, symBinAddr: 0x1C804, symSize: 0x34 } + - { offsetInCU: 0x8822, offset: 0x6D03C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xA700, symBinAddr: 0x1C838, symSize: 0x90 } + - { offsetInCU: 0x889F, offset: 0x6D0B9, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xA790, symBinAddr: 0x1C8C8, symSize: 0x5C } + - { offsetInCU: 0x88E1, offset: 0x6D0FB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xA7EC, symBinAddr: 0x1C924, symSize: 0x4 } + - { offsetInCU: 0x8958, offset: 0x6D172, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xA85C, symBinAddr: 0x1C994, symSize: 0x54 } + - { offsetInCU: 0x899A, offset: 0x6D1B4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xA8B0, symBinAddr: 0x1C9E8, symSize: 0xEC } + - { offsetInCU: 0x89DF, offset: 0x6D1F9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xA99C, symBinAddr: 0x1CAD4, symSize: 0x90 } + - { offsetInCU: 0x8AD5, offset: 0x6D2EF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xAA2C, symBinAddr: 0x1CB64, symSize: 0x90 } + - { offsetInCU: 0x8BBF, offset: 0x6D3D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xAABC, symBinAddr: 0x1CBF4, symSize: 0x1F8 } + - { offsetInCU: 0x8DEA, offset: 0x6D604, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xACB4, symBinAddr: 0x1CDEC, symSize: 0x1B0 } + - { offsetInCU: 0x9006, offset: 0x6D820, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xAE64, symBinAddr: 0x1CF9C, symSize: 0x10C } + - { offsetInCU: 0x90D3, offset: 0x6D8ED, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xAF70, symBinAddr: 0x1D0A8, symSize: 0x10C } + - { offsetInCU: 0x91A0, offset: 0x6D9BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xB07C, symBinAddr: 0x1D1B4, symSize: 0x60 } + - { offsetInCU: 0x91E5, offset: 0x6D9FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xB0DC, symBinAddr: 0x1D214, symSize: 0xD0 } + - { offsetInCU: 0x9300, offset: 0x6DB1A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xB1AC, symBinAddr: 0x1D2E4, symSize: 0x50 } + - { offsetInCU: 0x9334, offset: 0x6DB4E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xB1FC, symBinAddr: 0x1D334, symSize: 0xCC } + - { offsetInCU: 0x945C, offset: 0x6DC76, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xB2C8, symBinAddr: 0x1D400, symSize: 0x90 } + - { offsetInCU: 0x94E6, offset: 0x6DD00, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xB358, symBinAddr: 0x1D490, symSize: 0x38 } + - { offsetInCU: 0x9528, offset: 0x6DD42, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xB390, symBinAddr: 0x1D4C8, symSize: 0x18 } + - { offsetInCU: 0x95A3, offset: 0x6DDBD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xB3A8, symBinAddr: 0x1D4E0, symSize: 0x14 } + - { offsetInCU: 0x960B, offset: 0x6DE25, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xB3BC, symBinAddr: 0x1D4F4, symSize: 0x48 } + - { offsetInCU: 0x9688, offset: 0x6DEA2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xB404, symBinAddr: 0x1D53C, symSize: 0x40 } + - { offsetInCU: 0x96CE, offset: 0x6DEE8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xB444, symBinAddr: 0x1D57C, symSize: 0x34 } + - { offsetInCU: 0x9714, offset: 0x6DF2E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xB478, symBinAddr: 0x1D5B0, symSize: 0x34 } + - { offsetInCU: 0x975A, offset: 0x6DF74, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xB4AC, symBinAddr: 0x1D5E4, symSize: 0x58 } + - { offsetInCU: 0x97B1, offset: 0x6DFCB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xB504, symBinAddr: 0x1D63C, symSize: 0x58 } + - { offsetInCU: 0x9808, offset: 0x6E022, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xB55C, symBinAddr: 0x1D694, symSize: 0x8 } + - { offsetInCU: 0x983C, offset: 0x6E056, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xB564, symBinAddr: 0x1D69C, symSize: 0x7C } + - { offsetInCU: 0x98B3, offset: 0x6E0CD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xB5E0, symBinAddr: 0x1D718, symSize: 0x7C } + - { offsetInCU: 0x992B, offset: 0x6E145, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xB65C, symBinAddr: 0x1D794, symSize: 0x10 } + - { offsetInCU: 0x996E, offset: 0x6E188, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xB66C, symBinAddr: 0x1D7A4, symSize: 0x10 } + - { offsetInCU: 0x99B1, offset: 0x6E1CB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xB67C, symBinAddr: 0x1D7B4, symSize: 0x38 } + - { offsetInCU: 0x9A0B, offset: 0x6E225, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xB6B4, symBinAddr: 0x1D7EC, symSize: 0x34 } + - { offsetInCU: 0x9A65, offset: 0x6E27F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xB6E8, symBinAddr: 0x1D820, symSize: 0x34 } + - { offsetInCU: 0x9ABF, offset: 0x6E2D9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xB71C, symBinAddr: 0x1D854, symSize: 0x3C } + - { offsetInCU: 0x9B19, offset: 0x6E333, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xB758, symBinAddr: 0x1D890, symSize: 0x3C } + - { offsetInCU: 0x9B73, offset: 0x6E38D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xB794, symBinAddr: 0x1D8CC, symSize: 0xC } + - { offsetInCU: 0x9BD8, offset: 0x6E3F2, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xB7A0, symBinAddr: 0x1D8D8, symSize: 0x154 } + - { offsetInCU: 0x9CB0, offset: 0x6E4CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xB8F4, symBinAddr: 0x1DA2C, symSize: 0x110 } + - { offsetInCU: 0x9CE4, offset: 0x6E4FE, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xBA04, symBinAddr: 0x1DB3C, symSize: 0x50 } + - { offsetInCU: 0x9D44, offset: 0x6E55E, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xBA54, symBinAddr: 0x1DB8C, symSize: 0x50 } ... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml similarity index 65% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml rename to IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml index 4949fc9..4a8acb3 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml +++ b/IoTConnect2/framework_AWS/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml @@ -2,684 +2,684 @@ triple: 'x86_64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket' relocations: - - { offsetInCU: 0x34, offset: 0x54D02, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x1E2E0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x54D37, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x1E318, symSize: 0x0 } - - { offsetInCU: 0x41, offset: 0x54D8E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x121B8, symBinAddr: 0x24508, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x54DAE, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x121C0, symBinAddr: 0x24510, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x54DC4, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x121C8, symBinAddr: 0x24518, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x54DDA, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x121D0, symBinAddr: 0x24520, symSize: 0x0 } - - { offsetInCU: 0xA3, offset: 0x54DF0, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x121D8, symBinAddr: 0x24528, symSize: 0x0 } - - { offsetInCU: 0xB9, offset: 0x54E06, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x121E0, symBinAddr: 0x24530, symSize: 0x0 } - - { offsetInCU: 0xCF, offset: 0x54E1C, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x121E8, symBinAddr: 0x24538, symSize: 0x0 } - - { offsetInCU: 0xE5, offset: 0x54E32, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x121F0, symBinAddr: 0x24540, symSize: 0x0 } - - { offsetInCU: 0xFB, offset: 0x54E48, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x121F8, symBinAddr: 0x24548, symSize: 0x0 } - - { offsetInCU: 0x111, offset: 0x54E5E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x12200, symBinAddr: 0x24550, symSize: 0x0 } - - { offsetInCU: 0x127, offset: 0x54E74, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x12208, symBinAddr: 0x24558, symSize: 0x0 } - - { offsetInCU: 0x13D, offset: 0x54E8A, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x12210, symBinAddr: 0x24560, symSize: 0x0 } - - { offsetInCU: 0x153, offset: 0x54EA0, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x12218, symBinAddr: 0x24568, symSize: 0x0 } - - { offsetInCU: 0x16B, offset: 0x54EB8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xBCE8, symBinAddr: 0xCA08, symSize: 0x616 } - - { offsetInCU: 0x69C, offset: 0x553E9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xE6AD, symBinAddr: 0xF3CD, symSize: 0x6F } - - { offsetInCU: 0x6C4, offset: 0x55411, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x62A48, symBinAddr: 0x2AB00, symSize: 0x0 } - - { offsetInCU: 0x72C, offset: 0x55479, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x62A60, symBinAddr: 0x2AB18, symSize: 0x0 } - - { offsetInCU: 0x747, offset: 0x55494, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x62A50, symBinAddr: 0x2AB08, symSize: 0x0 } - - { offsetInCU: 0x764, offset: 0x554B1, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x62A58, symBinAddr: 0x2AB10, symSize: 0x0 } - - { offsetInCU: 0xDA0, offset: 0x55AED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0xD20, symSize: 0xE } - - { offsetInCU: 0xDEC, offset: 0x55B39, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0xE, symBinAddr: 0xD2E, symSize: 0x5B } - - { offsetInCU: 0xE33, offset: 0x55B80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x69, symBinAddr: 0xD89, symSize: 0x3F } - - { offsetInCU: 0xE66, offset: 0x55BB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xA8, symBinAddr: 0xDC8, symSize: 0x5F } - - { offsetInCU: 0xF33, offset: 0x55C80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x107, symBinAddr: 0xE27, symSize: 0xE } - - { offsetInCU: 0xF69, offset: 0x55CB6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x115, symBinAddr: 0xE35, symSize: 0xA } - - { offsetInCU: 0xF9F, offset: 0x55CEC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x11F, symBinAddr: 0xE3F, symSize: 0x31 } - - { offsetInCU: 0x1001, offset: 0x55D4E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x150, symBinAddr: 0xE70, symSize: 0x20 } - - { offsetInCU: 0x1044, offset: 0x55D91, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x170, symBinAddr: 0xE90, symSize: 0x12 } - - { offsetInCU: 0x107A, offset: 0x55DC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x182, symBinAddr: 0xEA2, symSize: 0xA } - - { offsetInCU: 0x10B0, offset: 0x55DFD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x18C, symBinAddr: 0xEAC, symSize: 0x31 } - - { offsetInCU: 0x1112, offset: 0x55E5F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1BD, symBinAddr: 0xEDD, symSize: 0xA } - - { offsetInCU: 0x1153, offset: 0x55EA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1C7, symBinAddr: 0xEE7, symSize: 0x12 } - - { offsetInCU: 0x1185, offset: 0x55ED2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x1D9, symBinAddr: 0xEF9, symSize: 0xE } - - { offsetInCU: 0x11D2, offset: 0x55F1F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x1E7, symBinAddr: 0xF07, symSize: 0x163 } - - { offsetInCU: 0x131C, offset: 0x56069, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x34A, symBinAddr: 0x106A, symSize: 0x4E } - - { offsetInCU: 0x13D0, offset: 0x5611D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x398, symBinAddr: 0x10B8, symSize: 0x77 } - - { offsetInCU: 0x14B4, offset: 0x56201, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x40F, symBinAddr: 0x112F, symSize: 0x28 } - - { offsetInCU: 0x1517, offset: 0x56264, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x437, symBinAddr: 0x1157, symSize: 0x5D } - - { offsetInCU: 0x15EA, offset: 0x56337, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x494, symBinAddr: 0x11B4, symSize: 0x27F } - - { offsetInCU: 0x1805, offset: 0x56552, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x713, symBinAddr: 0x1433, symSize: 0xC0 } - - { offsetInCU: 0x18E3, offset: 0x56630, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7D3, symBinAddr: 0x14F3, symSize: 0x28 } - - { offsetInCU: 0x1917, offset: 0x56664, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7FB, symBinAddr: 0x151B, symSize: 0xE } - - { offsetInCU: 0x1964, offset: 0x566B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x809, symBinAddr: 0x1529, symSize: 0x91 } - - { offsetInCU: 0x19F8, offset: 0x56745, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x89A, symBinAddr: 0x15BA, symSize: 0x10 } - - { offsetInCU: 0x1A2C, offset: 0x56779, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x8AA, symBinAddr: 0x15CA, symSize: 0xE } - - { offsetInCU: 0x1A79, offset: 0x567C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8B8, symBinAddr: 0x15D8, symSize: 0x73 } - - { offsetInCU: 0x1B0B, offset: 0x56858, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x92B, symBinAddr: 0x164B, symSize: 0x10 } - - { offsetInCU: 0x1B3F, offset: 0x5688C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x93B, symBinAddr: 0x165B, symSize: 0x19 } - - { offsetInCU: 0x1B9B, offset: 0x568E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x954, symBinAddr: 0x1674, symSize: 0x19 } - - { offsetInCU: 0x1C0D, offset: 0x5695A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x96D, symBinAddr: 0x168D, symSize: 0x15 } - - { offsetInCU: 0x1C8B, offset: 0x569D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x982, symBinAddr: 0x16A2, symSize: 0x20F } - - { offsetInCU: 0x1EC6, offset: 0x56C13, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB91, symBinAddr: 0x18B1, symSize: 0xC7 } - - { offsetInCU: 0x1F7E, offset: 0x56CCB, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xC58, symBinAddr: 0x1978, symSize: 0x18 } - - { offsetInCU: 0x1FD3, offset: 0x56D20, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xC70, symBinAddr: 0x1990, symSize: 0xF } - - { offsetInCU: 0x2006, offset: 0x56D53, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xC7F, symBinAddr: 0x199F, symSize: 0xF } - - { offsetInCU: 0x2031, offset: 0x56D7E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xC8E, symBinAddr: 0x19AE, symSize: 0x27 } - - { offsetInCU: 0x20CD, offset: 0x56E1A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xCB5, symBinAddr: 0x19D5, symSize: 0x22 } - - { offsetInCU: 0x217C, offset: 0x56EC9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xCD7, symBinAddr: 0x19F7, symSize: 0x20D } - - { offsetInCU: 0x235D, offset: 0x570AA, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xEE4, symBinAddr: 0x1C04, symSize: 0x16 } - - { offsetInCU: 0x2382, offset: 0x570CF, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xEFA, symBinAddr: 0x1C1A, symSize: 0xF } - - { offsetInCU: 0x23AD, offset: 0x570FA, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xF09, symBinAddr: 0x1C29, symSize: 0x227 } - - { offsetInCU: 0x25A9, offset: 0x572F6, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0x1130, symBinAddr: 0x1E50, symSize: 0x42 } - - { offsetInCU: 0x25DE, offset: 0x5732B, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1172, symBinAddr: 0x1E92, symSize: 0x35 } - - { offsetInCU: 0x2609, offset: 0x57356, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x11A7, symBinAddr: 0x1EC7, symSize: 0xDE } - - { offsetInCU: 0x26A2, offset: 0x573EF, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x1285, symBinAddr: 0x1FA5, symSize: 0x32 } - - { offsetInCU: 0x2701, offset: 0x5744E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x12B7, symBinAddr: 0x1FD7, symSize: 0x30 } - - { offsetInCU: 0x2736, offset: 0x57483, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x12E7, symBinAddr: 0x2007, symSize: 0x27 } - - { offsetInCU: 0x2761, offset: 0x574AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x130E, symBinAddr: 0x202E, symSize: 0xC9 } - - { offsetInCU: 0x286E, offset: 0x575BB, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x13D7, symBinAddr: 0x20F7, symSize: 0x19 } - - { offsetInCU: 0x28C1, offset: 0x5760E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x13F0, symBinAddr: 0x2110, symSize: 0x25 } - - { offsetInCU: 0x2902, offset: 0x5764F, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x1415, symBinAddr: 0x2135, symSize: 0x25 } - - { offsetInCU: 0x2939, offset: 0x57686, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x143A, symBinAddr: 0x215A, symSize: 0x14 } - - { offsetInCU: 0x299D, offset: 0x576EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x144E, symBinAddr: 0x216E, symSize: 0x17 } - - { offsetInCU: 0x2A01, offset: 0x5774E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x1465, symBinAddr: 0x2185, symSize: 0xDC } - - { offsetInCU: 0x2AA6, offset: 0x577F3, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x1541, symBinAddr: 0x2261, symSize: 0x1E } - - { offsetInCU: 0x2AF9, offset: 0x57846, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x155F, symBinAddr: 0x227F, symSize: 0xC9 } - - { offsetInCU: 0x2BF3, offset: 0x57940, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1628, symBinAddr: 0x2348, symSize: 0x19 } - - { offsetInCU: 0x2C46, offset: 0x57993, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x1641, symBinAddr: 0x2361, symSize: 0x14 } - - { offsetInCU: 0x2CAA, offset: 0x579F7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x1655, symBinAddr: 0x2375, symSize: 0x17 } - - { offsetInCU: 0x2D0E, offset: 0x57A5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x166C, symBinAddr: 0x238C, symSize: 0x161 } - - { offsetInCU: 0x2DDC, offset: 0x57B29, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x17CD, symBinAddr: 0x24ED, symSize: 0x4B } - - { offsetInCU: 0x2E4C, offset: 0x57B99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1818, symBinAddr: 0x2538, symSize: 0xFF } - - { offsetInCU: 0x2FA7, offset: 0x57CF4, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1917, symBinAddr: 0x2637, symSize: 0x31 } - - { offsetInCU: 0x300B, offset: 0x57D58, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x1948, symBinAddr: 0x2668, symSize: 0x2C } - - { offsetInCU: 0x3058, offset: 0x57DA5, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x1974, symBinAddr: 0x2694, symSize: 0x2C } - - { offsetInCU: 0x309B, offset: 0x57DE8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x19A0, symBinAddr: 0x26C0, symSize: 0x15 } - - { offsetInCU: 0x3116, offset: 0x57E63, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x19B5, symBinAddr: 0x26D5, symSize: 0x18 } - - { offsetInCU: 0x3191, offset: 0x57EDE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x19CD, symBinAddr: 0x26ED, symSize: 0xA6 } - - { offsetInCU: 0x3212, offset: 0x57F5F, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x1A73, symBinAddr: 0x2793, symSize: 0x1C } - - { offsetInCU: 0x326D, offset: 0x57FBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x1A8F, symBinAddr: 0x27AF, symSize: 0x82 } - - { offsetInCU: 0x330F, offset: 0x5805C, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1B11, symBinAddr: 0x2831, symSize: 0x1E } - - { offsetInCU: 0x3364, offset: 0x580B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x1B2F, symBinAddr: 0x284F, symSize: 0xA6 } - - { offsetInCU: 0x33E5, offset: 0x58132, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1BD5, symBinAddr: 0x28F5, symSize: 0x1A } - - { offsetInCU: 0x3440, offset: 0x5818D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1BEF, symBinAddr: 0x290F, symSize: 0x82 } - - { offsetInCU: 0x34E2, offset: 0x5822F, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1C71, symBinAddr: 0x2991, symSize: 0x21 } - - { offsetInCU: 0x3537, offset: 0x58284, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1C92, symBinAddr: 0x29B2, symSize: 0xA6 } - - { offsetInCU: 0x35B8, offset: 0x58305, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1D38, symBinAddr: 0x2A58, symSize: 0x1A } - - { offsetInCU: 0x3613, offset: 0x58360, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1D52, symBinAddr: 0x2A72, symSize: 0x82 } - - { offsetInCU: 0x36B5, offset: 0x58402, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1DD4, symBinAddr: 0x2AF4, symSize: 0x21 } - - { offsetInCU: 0x370A, offset: 0x58457, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1DF5, symBinAddr: 0x2B15, symSize: 0xDD } - - { offsetInCU: 0x37B4, offset: 0x58501, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1ED2, symBinAddr: 0x2BF2, symSize: 0x1F } - - { offsetInCU: 0x380F, offset: 0x5855C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1EF1, symBinAddr: 0x2C11, symSize: 0x84 } - - { offsetInCU: 0x38B1, offset: 0x585FE, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1F75, symBinAddr: 0x2C95, symSize: 0x17 } - - { offsetInCU: 0x3906, offset: 0x58653, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1F8C, symBinAddr: 0x2CAC, symSize: 0x10D } - - { offsetInCU: 0x39C9, offset: 0x58716, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x2099, symBinAddr: 0x2DB9, symSize: 0x21 } - - { offsetInCU: 0x3A1C, offset: 0x58769, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x20BA, symBinAddr: 0x2DDA, symSize: 0xAF } - - { offsetInCU: 0x3AFF, offset: 0x5884C, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x2169, symBinAddr: 0x2E89, symSize: 0x27 } - - { offsetInCU: 0x3B52, offset: 0x5889F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x2190, symBinAddr: 0x2EB0, symSize: 0x19 } - - { offsetInCU: 0x3BD5, offset: 0x58922, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x21A9, symBinAddr: 0x2EC9, symSize: 0x23C } - - { offsetInCU: 0x3D9B, offset: 0x58AE8, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x23E5, symBinAddr: 0x3105, symSize: 0x20F } - - { offsetInCU: 0x4102, offset: 0x58E4F, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.163', symObjAddr: 0x25F4, symBinAddr: 0x3314, symSize: 0x5CA } - - { offsetInCU: 0x466C, offset: 0x593B9, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x2BBE, symBinAddr: 0x38DE, symSize: 0x84 } - - { offsetInCU: 0x474F, offset: 0x5949C, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x2C42, symBinAddr: 0x3962, symSize: 0x2E } - - { offsetInCU: 0x4784, offset: 0x594D1, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x2C70, symBinAddr: 0x3990, symSize: 0x22 } - - { offsetInCU: 0x47AF, offset: 0x594FC, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.192', symObjAddr: 0x2C92, symBinAddr: 0x39B2, symSize: 0xD } - - { offsetInCU: 0x47FB, offset: 0x59548, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.194', symObjAddr: 0x2C9F, symBinAddr: 0x39BF, symSize: 0x84 } - - { offsetInCU: 0x48CB, offset: 0x59618, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2D23, symBinAddr: 0x3A43, symSize: 0xD } - - { offsetInCU: 0x4917, offset: 0x59664, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2D30, symBinAddr: 0x3A50, symSize: 0x68 } - - { offsetInCU: 0x4958, offset: 0x596A5, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2D98, symBinAddr: 0x3AB8, symSize: 0x48 } - - { offsetInCU: 0x499B, offset: 0x596E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2DE0, symBinAddr: 0x3B00, symSize: 0x217 } - - { offsetInCU: 0x4B1C, offset: 0x59869, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2FF7, symBinAddr: 0x3D17, symSize: 0x20F } - - { offsetInCU: 0x4DB4, offset: 0x59B01, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x3206, symBinAddr: 0x3F26, symSize: 0x3F7 } - - { offsetInCU: 0x513C, offset: 0x59E89, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x35FD, symBinAddr: 0x431D, symSize: 0x7F } - - { offsetInCU: 0x520C, offset: 0x59F59, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x367C, symBinAddr: 0x439C, symSize: 0xD } - - { offsetInCU: 0x5258, offset: 0x59FA5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x3689, symBinAddr: 0x43A9, symSize: 0x291 } - - { offsetInCU: 0x5543, offset: 0x5A290, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x391A, symBinAddr: 0x463A, symSize: 0x173 } - - { offsetInCU: 0x56CE, offset: 0x5A41B, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3A8D, symBinAddr: 0x47AD, symSize: 0x32 } - - { offsetInCU: 0x5729, offset: 0x5A476, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x3ABF, symBinAddr: 0x47DF, symSize: 0x23A } - - { offsetInCU: 0x5984, offset: 0x5A6D1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x3CF9, symBinAddr: 0x4A19, symSize: 0x179 } - - { offsetInCU: 0x5B10, offset: 0x5A85D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x3E72, symBinAddr: 0x4B92, symSize: 0x1A } - - { offsetInCU: 0x5BA0, offset: 0x5A8ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x3E8C, symBinAddr: 0x4BAC, symSize: 0x1B } - - { offsetInCU: 0x5C4F, offset: 0x5A99C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x3EA7, symBinAddr: 0x4BC7, symSize: 0x238 } - - { offsetInCU: 0x5E8D, offset: 0x5ABDA, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x40DF, symBinAddr: 0x4DFF, symSize: 0x1E5 } - - { offsetInCU: 0x6074, offset: 0x5ADC1, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x42C4, symBinAddr: 0x4FE4, symSize: 0x3DD } - - { offsetInCU: 0x6391, offset: 0x5B0DE, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x46A1, symBinAddr: 0x53C1, symSize: 0x36 } - - { offsetInCU: 0x63FD, offset: 0x5B14A, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.247', symObjAddr: 0x46D7, symBinAddr: 0x53F7, symSize: 0x3A } - - { offsetInCU: 0x647A, offset: 0x5B1C7, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x4711, symBinAddr: 0x5431, symSize: 0x42 } - - { offsetInCU: 0x64BB, offset: 0x5B208, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x4753, symBinAddr: 0x5473, symSize: 0x2E } - - { offsetInCU: 0x64F2, offset: 0x5B23F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x4781, symBinAddr: 0x54A1, symSize: 0x5D } - - { offsetInCU: 0x653F, offset: 0x5B28C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x47DE, symBinAddr: 0x54FE, symSize: 0x1F } - - { offsetInCU: 0x65C0, offset: 0x5B30D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x47FD, symBinAddr: 0x551D, symSize: 0x17 } - - { offsetInCU: 0x6658, offset: 0x5B3A5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x4814, symBinAddr: 0x5534, symSize: 0x231 } - - { offsetInCU: 0x6881, offset: 0x5B5CE, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4A45, symBinAddr: 0x5765, symSize: 0x205 } - - { offsetInCU: 0x6AAD, offset: 0x5B7FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x4C4A, symBinAddr: 0x596A, symSize: 0x1C6 } - - { offsetInCU: 0x6BEE, offset: 0x5B93B, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x4E10, symBinAddr: 0x5B30, symSize: 0x168 } - - { offsetInCU: 0x6D4C, offset: 0x5BA99, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4F78, symBinAddr: 0x5C98, symSize: 0x56 } - - { offsetInCU: 0x6D8D, offset: 0x5BADA, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4FCE, symBinAddr: 0x5CEE, symSize: 0x41 } - - { offsetInCU: 0x6DC4, offset: 0x5BB11, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x500F, symBinAddr: 0x5D2F, symSize: 0x172 } - - { offsetInCU: 0x6EE1, offset: 0x5BC2E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x5181, symBinAddr: 0x5EA1, symSize: 0x111 } - - { offsetInCU: 0x7084, offset: 0x5BDD1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x5292, symBinAddr: 0x5FB2, symSize: 0x60 } - - { offsetInCU: 0x7130, offset: 0x5BE7D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x52F2, symBinAddr: 0x6012, symSize: 0x11D } - - { offsetInCU: 0x72B8, offset: 0x5C005, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x540F, symBinAddr: 0x612F, symSize: 0xEB } - - { offsetInCU: 0x740D, offset: 0x5C15A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x54FA, symBinAddr: 0x621A, symSize: 0x11B } - - { offsetInCU: 0x7549, offset: 0x5C296, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x5615, symBinAddr: 0x6335, symSize: 0xFE } - - { offsetInCU: 0x76BA, offset: 0x5C407, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x5713, symBinAddr: 0x6433, symSize: 0x115 } - - { offsetInCU: 0x77ED, offset: 0x5C53A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x5828, symBinAddr: 0x6548, symSize: 0x45 } - - { offsetInCU: 0x7848, offset: 0x5C595, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x586D, symBinAddr: 0x658D, symSize: 0x24 } - - { offsetInCU: 0x7897, offset: 0x5C5E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5891, symBinAddr: 0x65B1, symSize: 0x1E0 } - - { offsetInCU: 0x7AFB, offset: 0x5C848, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5A71, symBinAddr: 0x6791, symSize: 0x24 } - - { offsetInCU: 0x7B7C, offset: 0x5C8C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5A95, symBinAddr: 0x67B5, symSize: 0x169 } - - { offsetInCU: 0x7D44, offset: 0x5CA91, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x5BFE, symBinAddr: 0x691E, symSize: 0x90 } - - { offsetInCU: 0x7E4C, offset: 0x5CB99, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0x101CA, symBinAddr: 0x1DA2A, symSize: 0xBA } - - { offsetInCU: 0x7E64, offset: 0x5CBB1, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5C8E, symBinAddr: 0x69AE, symSize: 0x32 } - - { offsetInCU: 0x7EC3, offset: 0x5CC10, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x5CC0, symBinAddr: 0x69E0, symSize: 0x36 } - - { offsetInCU: 0x7F33, offset: 0x5CC80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x5CF6, symBinAddr: 0x6A16, symSize: 0x369 } - - { offsetInCU: 0x8283, offset: 0x5CFD0, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x605F, symBinAddr: 0x6D7F, symSize: 0xA4 } - - { offsetInCU: 0x831F, offset: 0x5D06C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x6103, symBinAddr: 0x6E23, symSize: 0xAA } - - { offsetInCU: 0x83C6, offset: 0x5D113, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x61AD, symBinAddr: 0x6ECD, symSize: 0xAB } - - { offsetInCU: 0x848D, offset: 0x5D1DA, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x6258, symBinAddr: 0x6F78, symSize: 0x25 } - - { offsetInCU: 0x84D7, offset: 0x5D224, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x627D, symBinAddr: 0x6F9D, symSize: 0x17 } - - { offsetInCU: 0x8500, offset: 0x5D24D, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x6294, symBinAddr: 0x6FB4, symSize: 0x4B } - - { offsetInCU: 0x854D, offset: 0x5D29A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x62DF, symBinAddr: 0x6FFF, symSize: 0x33 } - - { offsetInCU: 0x859C, offset: 0x5D2E9, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.325', symObjAddr: 0x6312, symBinAddr: 0x7032, symSize: 0xA6 } - - { offsetInCU: 0x8652, offset: 0x5D39F, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.326', symObjAddr: 0x63B8, symBinAddr: 0x70D8, symSize: 0x25 } - - { offsetInCU: 0x869C, offset: 0x5D3E9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x63DD, symBinAddr: 0x70FD, symSize: 0x1C } - - { offsetInCU: 0x86FA, offset: 0x5D447, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x63F9, symBinAddr: 0x7119, symSize: 0xF3 } - - { offsetInCU: 0x8812, offset: 0x5D55F, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x64EC, symBinAddr: 0x720C, symSize: 0x4B } - - { offsetInCU: 0x8898, offset: 0x5D5E5, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x6537, symBinAddr: 0x7257, symSize: 0x12 } - - { offsetInCU: 0x88C1, offset: 0x5D60E, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x6549, symBinAddr: 0x7269, symSize: 0xE } - - { offsetInCU: 0x88E0, offset: 0x5D62D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x6557, symBinAddr: 0x7277, symSize: 0x67 } - - { offsetInCU: 0x8955, offset: 0x5D6A2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x65BE, symBinAddr: 0x72DE, symSize: 0x59 } - - { offsetInCU: 0x89D2, offset: 0x5D71F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x6617, symBinAddr: 0x7337, symSize: 0x445 } - - { offsetInCU: 0x8E32, offset: 0x5DB7F, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x6A5C, symBinAddr: 0x777C, symSize: 0x37 } - - { offsetInCU: 0x8E9E, offset: 0x5DBEB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6A93, symBinAddr: 0x77B3, symSize: 0x7F } - - { offsetInCU: 0x8F2F, offset: 0x5DC7C, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6B12, symBinAddr: 0x7832, symSize: 0x37 } - - { offsetInCU: 0x8F84, offset: 0x5DCD1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x6B49, symBinAddr: 0x7869, symSize: 0x4B } - - { offsetInCU: 0x8FCE, offset: 0x5DD1B, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x6B94, symBinAddr: 0x78B4, symSize: 0x41 } - - { offsetInCU: 0x901C, offset: 0x5DD69, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x6BD5, symBinAddr: 0x78F5, symSize: 0x4B } - - { offsetInCU: 0x9066, offset: 0x5DDB3, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6C20, symBinAddr: 0x7940, symSize: 0x41 } - - { offsetInCU: 0x90B4, offset: 0x5DE01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x6C61, symBinAddr: 0x7981, symSize: 0x4B } - - { offsetInCU: 0x90FE, offset: 0x5DE4B, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x6CAC, symBinAddr: 0x79CC, symSize: 0x41 } - - { offsetInCU: 0x914C, offset: 0x5DE99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x6CED, symBinAddr: 0x7A0D, symSize: 0x8D } - - { offsetInCU: 0x91CB, offset: 0x5DF18, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x6D7A, symBinAddr: 0x7A9A, symSize: 0xDE } - - { offsetInCU: 0x9272, offset: 0x5DFBF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6E58, symBinAddr: 0x7B78, symSize: 0xDE } - - { offsetInCU: 0x9319, offset: 0x5E066, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6F36, symBinAddr: 0x7C56, symSize: 0xF3 } - - { offsetInCU: 0x93EE, offset: 0x5E13B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x7029, symBinAddr: 0x7D49, symSize: 0x11B } - - { offsetInCU: 0x94D3, offset: 0x5E220, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x7144, symBinAddr: 0x7E64, symSize: 0x103 } - - { offsetInCU: 0x956D, offset: 0x5E2BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x7247, symBinAddr: 0x7F67, symSize: 0xBE } - - { offsetInCU: 0x95FC, offset: 0x5E349, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x7305, symBinAddr: 0x8025, symSize: 0x118 } - - { offsetInCU: 0x96B6, offset: 0x5E403, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x741D, symBinAddr: 0x813D, symSize: 0x118 } - - { offsetInCU: 0x9770, offset: 0x5E4BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x7535, symBinAddr: 0x8255, symSize: 0x118 } - - { offsetInCU: 0x982A, offset: 0x5E577, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x764D, symBinAddr: 0x836D, symSize: 0x118 } - - { offsetInCU: 0x98E4, offset: 0x5E631, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x7765, symBinAddr: 0x8485, symSize: 0x118 } - - { offsetInCU: 0x999E, offset: 0x5E6EB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x787D, symBinAddr: 0x859D, symSize: 0xDE } - - { offsetInCU: 0x9A45, offset: 0x5E792, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x795B, symBinAddr: 0x867B, symSize: 0xDD } - - { offsetInCU: 0x9AEF, offset: 0x5E83C, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x7A38, symBinAddr: 0x8758, symSize: 0x1C } - - { offsetInCU: 0x9B4A, offset: 0x5E897, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7A54, symBinAddr: 0x8774, symSize: 0xDD } - - { offsetInCU: 0x9BF4, offset: 0x5E941, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x7B31, symBinAddr: 0x8851, symSize: 0x1C } - - { offsetInCU: 0x9C4F, offset: 0x5E99C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7B4D, symBinAddr: 0x886D, symSize: 0x10B } - - { offsetInCU: 0x9CF4, offset: 0x5EA41, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7C58, symBinAddr: 0x8978, symSize: 0x66 } - - { offsetInCU: 0x9D5F, offset: 0x5EAAC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x7CBE, symBinAddr: 0x89DE, symSize: 0xDE } - - { offsetInCU: 0x9DF4, offset: 0x5EB41, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x7D9C, symBinAddr: 0x8ABC, symSize: 0x49 } - - { offsetInCU: 0x9E53, offset: 0x5EBA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x7DE5, symBinAddr: 0x8B05, symSize: 0xFC } - - { offsetInCU: 0x9EF8, offset: 0x5EC45, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x7EE1, symBinAddr: 0x8C01, symSize: 0x55 } - - { offsetInCU: 0x9F63, offset: 0x5ECB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7F36, symBinAddr: 0x8C56, symSize: 0x10B } - - { offsetInCU: 0xA008, offset: 0x5ED55, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x8041, symBinAddr: 0x8D61, symSize: 0x66 } - - { offsetInCU: 0xA073, offset: 0x5EDC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x80A7, symBinAddr: 0x8DC7, symSize: 0xDE } - - { offsetInCU: 0xA108, offset: 0x5EE55, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x8185, symBinAddr: 0x8EA5, symSize: 0x49 } - - { offsetInCU: 0xA167, offset: 0x5EEB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x81CE, symBinAddr: 0x8EEE, symSize: 0x2E } - - { offsetInCU: 0xA1AB, offset: 0x5EEF8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x81FC, symBinAddr: 0x8F1C, symSize: 0x2E } - - { offsetInCU: 0xA1EF, offset: 0x5EF3C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x822A, symBinAddr: 0x8F4A, symSize: 0x1E } - - { offsetInCU: 0xA231, offset: 0x5EF7E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x8248, symBinAddr: 0x8F68, symSize: 0x1E } - - { offsetInCU: 0xA273, offset: 0x5EFC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x8266, symBinAddr: 0x8F86, symSize: 0x2E } - - { offsetInCU: 0xA2B7, offset: 0x5F004, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x8294, symBinAddr: 0x8FB4, symSize: 0x2E } - - { offsetInCU: 0xA2FB, offset: 0x5F048, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x82C2, symBinAddr: 0x8FE2, symSize: 0x1E } - - { offsetInCU: 0xA33D, offset: 0x5F08A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x82E0, symBinAddr: 0x9000, symSize: 0x1E } - - { offsetInCU: 0xA37F, offset: 0x5F0CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x82FE, symBinAddr: 0x901E, symSize: 0x8D } - - { offsetInCU: 0xA42E, offset: 0x5F17B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x838B, symBinAddr: 0x90AB, symSize: 0x6A } - - { offsetInCU: 0xA4DD, offset: 0x5F22A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x83F5, symBinAddr: 0x9115, symSize: 0x81 } - - { offsetInCU: 0xA594, offset: 0x5F2E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x8476, symBinAddr: 0x9196, symSize: 0x5E } - - { offsetInCU: 0xA64B, offset: 0x5F398, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x84D4, symBinAddr: 0x91F4, symSize: 0x9C } - - { offsetInCU: 0xA6FD, offset: 0x5F44A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x8570, symBinAddr: 0x9290, symSize: 0x8D } - - { offsetInCU: 0xA7CD, offset: 0x5F51A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x85FD, symBinAddr: 0x931D, symSize: 0x6A } - - { offsetInCU: 0xA87C, offset: 0x5F5C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x8667, symBinAddr: 0x9387, symSize: 0x81 } - - { offsetInCU: 0xA933, offset: 0x5F680, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x86E8, symBinAddr: 0x9408, symSize: 0x5E } - - { offsetInCU: 0xA9EA, offset: 0x5F737, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x8746, symBinAddr: 0x9466, symSize: 0x10D } - - { offsetInCU: 0xAAAD, offset: 0x5F7FA, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x8853, symBinAddr: 0x9573, symSize: 0xEE } - - { offsetInCU: 0xABDA, offset: 0x5F927, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x8941, symBinAddr: 0x9661, symSize: 0x10D } - - { offsetInCU: 0xAC9D, offset: 0x5F9EA, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8A4E, symBinAddr: 0x976E, symSize: 0xEE } - - { offsetInCU: 0xADCA, offset: 0x5FB17, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8B3C, symBinAddr: 0x985C, symSize: 0xAB } - - { offsetInCU: 0xAE4B, offset: 0x5FB98, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x8BE7, symBinAddr: 0x9907, symSize: 0x1A } - - { offsetInCU: 0xAEA6, offset: 0x5FBF3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x8C01, symBinAddr: 0x9921, symSize: 0xAB } - - { offsetInCU: 0xAF27, offset: 0x5FC74, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x8CAC, symBinAddr: 0x99CC, symSize: 0x1A } - - { offsetInCU: 0xAF82, offset: 0x5FCCF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x8CC6, symBinAddr: 0x99E6, symSize: 0xA8 } - - { offsetInCU: 0xB003, offset: 0x5FD50, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8D6E, symBinAddr: 0x9A8E, symSize: 0x1D } - - { offsetInCU: 0xB05E, offset: 0x5FDAB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x8D8B, symBinAddr: 0x9AAB, symSize: 0x4AC } - - { offsetInCU: 0xB4F4, offset: 0x60241, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x9237, symBinAddr: 0x9F57, symSize: 0xED } - - { offsetInCU: 0xB5A8, offset: 0x602F5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x9324, symBinAddr: 0xA044, symSize: 0x211 } - - { offsetInCU: 0xB6DC, offset: 0x60429, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x9535, symBinAddr: 0xA255, symSize: 0x6F } - - { offsetInCU: 0xB770, offset: 0x604BD, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x95A4, symBinAddr: 0xA2C4, symSize: 0x50 } - - { offsetInCU: 0xB7F6, offset: 0x60543, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x95F4, symBinAddr: 0xA314, symSize: 0x1C } - - { offsetInCU: 0xB853, offset: 0x605A0, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x9610, symBinAddr: 0xA330, symSize: 0x17 } - - { offsetInCU: 0xB87C, offset: 0x605C9, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x9627, symBinAddr: 0xA347, symSize: 0x13 } - - { offsetInCU: 0xB89B, offset: 0x605E8, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.433', symObjAddr: 0x963A, symBinAddr: 0xA35A, symSize: 0x1C } - - { offsetInCU: 0xB8F8, offset: 0x60645, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x9656, symBinAddr: 0xA376, symSize: 0x13 } - - { offsetInCU: 0xB92E, offset: 0x6067B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x9669, symBinAddr: 0xA389, symSize: 0x13 } - - { offsetInCU: 0xB964, offset: 0x606B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x967C, symBinAddr: 0xA39C, symSize: 0x26 } - - { offsetInCU: 0xB9B5, offset: 0x60702, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x96A2, symBinAddr: 0xA3C2, symSize: 0x26 } - - { offsetInCU: 0xB9F7, offset: 0x60744, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x96C8, symBinAddr: 0xA3E8, symSize: 0x26 } - - { offsetInCU: 0xBA39, offset: 0x60786, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x96EE, symBinAddr: 0xA40E, symSize: 0x26 } - - { offsetInCU: 0xBA7B, offset: 0x607C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x9714, symBinAddr: 0xA434, symSize: 0x1F } - - { offsetInCU: 0xBB04, offset: 0x60851, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x9733, symBinAddr: 0xA453, symSize: 0x1B } - - { offsetInCU: 0xBBAF, offset: 0x608FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x974E, symBinAddr: 0xA46E, symSize: 0xFF } - - { offsetInCU: 0xBCF8, offset: 0x60A45, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x984D, symBinAddr: 0xA56D, symSize: 0x60 } - - { offsetInCU: 0xBD63, offset: 0x60AB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x98AD, symBinAddr: 0xA5CD, symSize: 0x1D } - - { offsetInCU: 0xBDFD, offset: 0x60B4A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x98CA, symBinAddr: 0xA5EA, symSize: 0x108 } - - { offsetInCU: 0xBF4E, offset: 0x60C9B, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x99D2, symBinAddr: 0xA6F2, symSize: 0x60 } - - { offsetInCU: 0xBFB9, offset: 0x60D06, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x9A32, symBinAddr: 0xA752, symSize: 0x27 } - - { offsetInCU: 0xC057, offset: 0x60DA4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x9A59, symBinAddr: 0xA779, symSize: 0x22 } - - { offsetInCU: 0xC11B, offset: 0x60E68, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x9A7B, symBinAddr: 0xA79B, symSize: 0x27 } - - { offsetInCU: 0xC1CC, offset: 0x60F19, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x9AA2, symBinAddr: 0xA7C2, symSize: 0x150 } - - { offsetInCU: 0xC392, offset: 0x610DF, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x9BF2, symBinAddr: 0xA912, symSize: 0x60 } - - { offsetInCU: 0xC3FD, offset: 0x6114A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x9C52, symBinAddr: 0xA972, symSize: 0xF0 } - - { offsetInCU: 0xC4DA, offset: 0x61227, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x9D42, symBinAddr: 0xAA62, symSize: 0x12B } - - { offsetInCU: 0xC5A9, offset: 0x612F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x9E6D, symBinAddr: 0xAB8D, symSize: 0x1C1 } - - { offsetInCU: 0xC6DA, offset: 0x61427, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0xA02E, symBinAddr: 0xAD4E, symSize: 0x216 } - - { offsetInCU: 0xC904, offset: 0x61651, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0xA244, symBinAddr: 0xAF64, symSize: 0x72 } - - { offsetInCU: 0xC9B1, offset: 0x616FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0xA2B6, symBinAddr: 0xAFD6, symSize: 0xC0F } - - { offsetInCU: 0xD1DA, offset: 0x61F27, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0xAEC5, symBinAddr: 0xBBE5, symSize: 0x3B } - - { offsetInCU: 0xD25B, offset: 0x61FA8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0xAF00, symBinAddr: 0xBC20, symSize: 0x25C } - - { offsetInCU: 0xD468, offset: 0x621B5, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xB15C, symBinAddr: 0xBE7C, symSize: 0x33 } - - { offsetInCU: 0xD4C7, offset: 0x62214, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xB18F, symBinAddr: 0xBEAF, symSize: 0x1E7 } - - { offsetInCU: 0xD703, offset: 0x62450, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xB376, symBinAddr: 0xC096, symSize: 0x3F } - - { offsetInCU: 0xD784, offset: 0x624D1, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xB3B5, symBinAddr: 0xC0D5, symSize: 0x33 } - - { offsetInCU: 0xD7DD, offset: 0x6252A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xB3E8, symBinAddr: 0xC108, symSize: 0x50 } - - { offsetInCU: 0xD837, offset: 0x62584, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xB438, symBinAddr: 0xC158, symSize: 0x102 } - - { offsetInCU: 0xD931, offset: 0x6267E, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xB53A, symBinAddr: 0xC25A, symSize: 0x4B } - - { offsetInCU: 0xD9B7, offset: 0x62704, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xB585, symBinAddr: 0xC2A5, symSize: 0x103 } - - { offsetInCU: 0xDAD1, offset: 0x6281E, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xB688, symBinAddr: 0xC3A8, symSize: 0x90 } - - { offsetInCU: 0xDB77, offset: 0x628C4, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xB718, symBinAddr: 0xC438, symSize: 0x34 } - - { offsetInCU: 0xDBD6, offset: 0x62923, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xB74C, symBinAddr: 0xC46C, symSize: 0xC8 } - - { offsetInCU: 0xDCB4, offset: 0x62A01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xB814, symBinAddr: 0xC534, symSize: 0xE7 } - - { offsetInCU: 0xDDCE, offset: 0x62B1B, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xB8FB, symBinAddr: 0xC61B, symSize: 0x60 } - - { offsetInCU: 0xDE39, offset: 0x62B86, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xB95B, symBinAddr: 0xC67B, symSize: 0xF0 } - - { offsetInCU: 0xDF16, offset: 0x62C63, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xBA4B, symBinAddr: 0xC76B, symSize: 0x139 } - - { offsetInCU: 0xDFF1, offset: 0x62D3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xBB84, symBinAddr: 0xC8A4, symSize: 0x164 } - - { offsetInCU: 0xE16B, offset: 0x62EB8, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xC2FE, symBinAddr: 0xD01E, symSize: 0x2F } - - { offsetInCU: 0xE1B9, offset: 0x62F06, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xC32D, symBinAddr: 0xD04D, symSize: 0x3B } - - { offsetInCU: 0xE23A, offset: 0x62F87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xC368, symBinAddr: 0xD088, symSize: 0xDC } - - { offsetInCU: 0xE318, offset: 0x63065, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xC444, symBinAddr: 0xD164, symSize: 0x37 } - - { offsetInCU: 0xE388, offset: 0x630D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xC47B, symBinAddr: 0xD19B, symSize: 0x50 } - - { offsetInCU: 0xE3E2, offset: 0x6312F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xC4CB, symBinAddr: 0xD1EB, symSize: 0x102 } - - { offsetInCU: 0xE4DC, offset: 0x63229, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xC5CD, symBinAddr: 0xD2ED, symSize: 0x4B } - - { offsetInCU: 0xE562, offset: 0x632AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xC618, symBinAddr: 0xD338, symSize: 0x103 } - - { offsetInCU: 0xE67C, offset: 0x633C9, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xC71B, symBinAddr: 0xD43B, symSize: 0x90 } - - { offsetInCU: 0xE722, offset: 0x6346F, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xC7AB, symBinAddr: 0xD4CB, symSize: 0x34 } - - { offsetInCU: 0xE781, offset: 0x634CE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xC7DF, symBinAddr: 0xD4FF, symSize: 0xC8 } - - { offsetInCU: 0xE85F, offset: 0x635AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xC8A7, symBinAddr: 0xD5C7, symSize: 0xDF } - - { offsetInCU: 0xE947, offset: 0x63694, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xC986, symBinAddr: 0xD6A6, symSize: 0x92 } - - { offsetInCU: 0xE9DA, offset: 0x63727, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xCA18, symBinAddr: 0xD738, symSize: 0x111 } - - { offsetInCU: 0xEB28, offset: 0x63875, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xCB29, symBinAddr: 0xD849, symSize: 0x273 } - - { offsetInCU: 0xED83, offset: 0x63AD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xCD9C, symBinAddr: 0xDABC, symSize: 0xB0 } - - { offsetInCU: 0xEE6D, offset: 0x63BBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xCE4C, symBinAddr: 0xDB6C, symSize: 0xD4D } - - { offsetInCU: 0xFA31, offset: 0x6477E, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xDB99, symBinAddr: 0xE8B9, symSize: 0x18 } - - { offsetInCU: 0xFAB2, offset: 0x647FF, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xDBB1, symBinAddr: 0xE8D1, symSize: 0x18 } - - { offsetInCU: 0xFB33, offset: 0x64880, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xDBC9, symBinAddr: 0xE8E9, symSize: 0x406 } - - { offsetInCU: 0xFE9B, offset: 0x64BE8, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xDFCF, symBinAddr: 0xECEF, symSize: 0x33 } - - { offsetInCU: 0xFEFA, offset: 0x64C47, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xE002, symBinAddr: 0xED22, symSize: 0x9C } - - { offsetInCU: 0xFF9A, offset: 0x64CE7, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xE09E, symBinAddr: 0xEDBE, symSize: 0x80 } - - { offsetInCU: 0x10061, offset: 0x64DAE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xE11E, symBinAddr: 0xEE3E, symSize: 0x36 } - - { offsetInCU: 0x1008A, offset: 0x64DD7, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xE154, symBinAddr: 0xEE74, symSize: 0x26 } - - { offsetInCU: 0x100A9, offset: 0x64DF6, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xE17A, symBinAddr: 0xEE9A, symSize: 0x40 } - - { offsetInCU: 0x100DE, offset: 0x64E2B, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xE1BA, symBinAddr: 0xEEDA, symSize: 0x30 } - - { offsetInCU: 0x10109, offset: 0x64E56, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.607', symObjAddr: 0xE1EA, symBinAddr: 0xEF0A, symSize: 0x43 } - - { offsetInCU: 0x1018A, offset: 0x64ED7, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xE22D, symBinAddr: 0xEF4D, symSize: 0x56 } - - { offsetInCU: 0x101CB, offset: 0x64F18, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xE283, symBinAddr: 0xEFA3, symSize: 0x3A } - - { offsetInCU: 0x1020E, offset: 0x64F5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xE2BD, symBinAddr: 0xEFDD, symSize: 0x87 } - - { offsetInCU: 0x102AC, offset: 0x64FF9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xE344, symBinAddr: 0xF064, symSize: 0x10F } - - { offsetInCU: 0x103B5, offset: 0x65102, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xE453, symBinAddr: 0xF173, symSize: 0x33 } - - { offsetInCU: 0x10414, offset: 0x65161, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xE486, symBinAddr: 0xF1A6, symSize: 0x2B } - - { offsetInCU: 0x10461, offset: 0x651AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xE4B1, symBinAddr: 0xF1D1, symSize: 0x1F6 } - - { offsetInCU: 0x1067F, offset: 0x653CC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xE6A7, symBinAddr: 0xF3C7, symSize: 0x6 } - - { offsetInCU: 0x106F6, offset: 0x65443, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xE71C, symBinAddr: 0xF43C, symSize: 0x32 } - - { offsetInCU: 0x10740, offset: 0x6548D, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xE74E, symBinAddr: 0xF46E, symSize: 0x88 } - - { offsetInCU: 0x107AD, offset: 0x654FA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xE7D6, symBinAddr: 0xF4F6, symSize: 0x64 } - - { offsetInCU: 0x10836, offset: 0x65583, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xE83A, symBinAddr: 0xF55A, symSize: 0xDA } - - { offsetInCU: 0x108DD, offset: 0x6562A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xE914, symBinAddr: 0xF634, symSize: 0x1B6 } - - { offsetInCU: 0x10A8C, offset: 0x657D9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xEACA, symBinAddr: 0xF7EA, symSize: 0x64 } - - { offsetInCU: 0x10B7F, offset: 0x658CC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xEB2E, symBinAddr: 0xF84E, symSize: 0x64 } - - { offsetInCU: 0x10C66, offset: 0x659B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xEB92, symBinAddr: 0xF8B2, symSize: 0x114 } - - { offsetInCU: 0x10D69, offset: 0x65AB6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xECA6, symBinAddr: 0xF9C6, symSize: 0x92 } - - { offsetInCU: 0x10E00, offset: 0x65B4D, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xED38, symBinAddr: 0xFA58, symSize: 0x15D } - - { offsetInCU: 0x10F67, offset: 0x65CB4, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xEE95, symBinAddr: 0xFBB5, symSize: 0x15D } - - { offsetInCU: 0x110CE, offset: 0x65E1B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xEFF2, symBinAddr: 0xFD12, symSize: 0x7E } - - { offsetInCU: 0x11134, offset: 0x65E81, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xF070, symBinAddr: 0xFD90, symSize: 0x4A } - - { offsetInCU: 0x11195, offset: 0x65EE2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xF0BA, symBinAddr: 0xFDDA, symSize: 0x7F } - - { offsetInCU: 0x111FF, offset: 0x65F4C, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xF139, symBinAddr: 0xFE59, symSize: 0x4A } - - { offsetInCU: 0x11260, offset: 0x65FAD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xF183, symBinAddr: 0xFEA3, symSize: 0x5F } - - { offsetInCU: 0x1136F, offset: 0x660BC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xF1E2, symBinAddr: 0xFF02, symSize: 0xA6 } - - { offsetInCU: 0x113F0, offset: 0x6613D, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xF288, symBinAddr: 0xFFA8, symSize: 0x1A } - - { offsetInCU: 0x1144B, offset: 0x66198, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xF2A2, symBinAddr: 0xFFC2, symSize: 0x82 } - - { offsetInCU: 0x114ED, offset: 0x6623A, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xF324, symBinAddr: 0x10044, symSize: 0x21 } - - { offsetInCU: 0x11542, offset: 0x6628F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xF345, symBinAddr: 0x10065, symSize: 0x1C } - - { offsetInCU: 0x115BD, offset: 0x6630A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xF361, symBinAddr: 0x10081, symSize: 0x18 } - - { offsetInCU: 0x11625, offset: 0x66372, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xF379, symBinAddr: 0x10099, symSize: 0x38 } - - { offsetInCU: 0x116A2, offset: 0x663EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xF3B1, symBinAddr: 0x100D1, symSize: 0x33 } - - { offsetInCU: 0x116E8, offset: 0x66435, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xF3E4, symBinAddr: 0x10104, symSize: 0x2B } - - { offsetInCU: 0x1172E, offset: 0x6647B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xF40F, symBinAddr: 0x1012F, symSize: 0x2B } - - { offsetInCU: 0x11774, offset: 0x664C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xF43A, symBinAddr: 0x1015A, symSize: 0x48 } - - { offsetInCU: 0x117CE, offset: 0x6651B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xF482, symBinAddr: 0x101A2, symSize: 0x48 } - - { offsetInCU: 0x11828, offset: 0x66575, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xF4CA, symBinAddr: 0x101EA, symSize: 0x9B } - - { offsetInCU: 0x118EE, offset: 0x6663B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xF565, symBinAddr: 0x10285, symSize: 0x3B } - - { offsetInCU: 0x1194E, offset: 0x6669B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xF5A0, symBinAddr: 0x102C0, symSize: 0x3E } - - { offsetInCU: 0x119AE, offset: 0x666FB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xF5DE, symBinAddr: 0x102FE, symSize: 0x2C } - - { offsetInCU: 0x119F4, offset: 0x66741, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xF60A, symBinAddr: 0x1032A, symSize: 0x390 } - - { offsetInCU: 0x11DA6, offset: 0x66AF3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xF99A, symBinAddr: 0x106BA, symSize: 0x7D } - - { offsetInCU: 0x11E29, offset: 0x66B76, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xFA17, symBinAddr: 0x10737, symSize: 0x7D } - - { offsetInCU: 0x11EAD, offset: 0x66BFA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xFA94, symBinAddr: 0x107B4, symSize: 0x11 } - - { offsetInCU: 0x11EF0, offset: 0x66C3D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xFAA5, symBinAddr: 0x107C5, symSize: 0x11 } - - { offsetInCU: 0x11F33, offset: 0x66C80, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xFAB6, symBinAddr: 0x107D6, symSize: 0x62 } - - { offsetInCU: 0x11FB1, offset: 0x66CFE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xFB18, symBinAddr: 0x10838, symSize: 0x67 } - - { offsetInCU: 0x12069, offset: 0x66DB6, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xFB7F, symBinAddr: 0x1089F, symSize: 0x30 } - - { offsetInCU: 0x120ED, offset: 0x66E3A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xFBAF, symBinAddr: 0x108CF, symSize: 0x5E } - - { offsetInCU: 0x12193, offset: 0x66EE0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xFC0D, symBinAddr: 0x1092D, symSize: 0x5E } - - { offsetInCU: 0x12239, offset: 0x66F86, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xFC6B, symBinAddr: 0x1098B, symSize: 0x18 } - - { offsetInCU: 0x122D1, offset: 0x6701E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xFC83, symBinAddr: 0x109A3, symSize: 0x1D5 } - - { offsetInCU: 0x1247C, offset: 0x671C9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xFE58, symBinAddr: 0x10B78, symSize: 0x25 } - - { offsetInCU: 0x124C3, offset: 0x67210, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xFE7D, symBinAddr: 0x10B9D, symSize: 0x25 } - - { offsetInCU: 0x1250A, offset: 0x67257, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xFEA2, symBinAddr: 0x10BC2, symSize: 0x25 } - - { offsetInCU: 0x12551, offset: 0x6729E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xFEC7, symBinAddr: 0x10BE7, symSize: 0x25 } - - { offsetInCU: 0x12598, offset: 0x672E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xFEEC, symBinAddr: 0x10C0C, symSize: 0x123 } - - { offsetInCU: 0x125CC, offset: 0x67319, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0x1000F, symBinAddr: 0x10D2F, symSize: 0x7B } - - { offsetInCU: 0x12635, offset: 0x67382, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0x1008A, symBinAddr: 0x10DAA, symSize: 0x58 } - - { offsetInCU: 0x126A1, offset: 0x673EE, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0x100E2, symBinAddr: 0x10E02, symSize: 0x7B } - - { offsetInCU: 0x1271D, offset: 0x6746A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0x1015D, symBinAddr: 0x10E7D, symSize: 0x63 } - - { offsetInCU: 0x27, offset: 0x6B0AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0xE } - - { offsetInCU: 0x41, offset: 0x6B0C7, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xDF08, symBinAddr: 0x24C20, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x6B0E7, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xDF10, symBinAddr: 0x24C28, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x6B0FD, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xDF18, symBinAddr: 0x24C30, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x6B113, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xDF20, symBinAddr: 0x24C38, symSize: 0x0 } - - { offsetInCU: 0x97, offset: 0x6B11D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xB5D6, symBinAddr: 0x1C1AB, symSize: 0x58 } - - { offsetInCU: 0xBF, offset: 0x6B145, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x49200, symBinAddr: 0x2AB20, symSize: 0x0 } - - { offsetInCU: 0x125, offset: 0x6B1AB, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x49208, symBinAddr: 0x2AB28, symSize: 0x0 } - - { offsetInCU: 0x65E, offset: 0x6B6E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0xE } - - { offsetInCU: 0x6AB, offset: 0x6B731, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0xE, symBinAddr: 0x10EEE, symSize: 0x8E } - - { offsetInCU: 0x73F, offset: 0x6B7C5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0x9C, symBinAddr: 0x10F7C, symSize: 0x3E } - - { offsetInCU: 0x773, offset: 0x6B7F9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xDA, symBinAddr: 0x10FBA, symSize: 0x2F } - - { offsetInCU: 0x7AB, offset: 0x6B831, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x109, symBinAddr: 0x10FE9, symSize: 0x28 } - - { offsetInCU: 0x7DF, offset: 0x6B865, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x131, symBinAddr: 0x11011, symSize: 0x19 } - - { offsetInCU: 0x83B, offset: 0x6B8C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x14A, symBinAddr: 0x1102A, symSize: 0x19 } - - { offsetInCU: 0x8AD, offset: 0x6B933, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x163, symBinAddr: 0x11043, symSize: 0x15 } - - { offsetInCU: 0x92B, offset: 0x6B9B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x178, symBinAddr: 0x11058, symSize: 0x1D5 } - - { offsetInCU: 0xB2E, offset: 0x6BBB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x34D, symBinAddr: 0x1122D, symSize: 0xFF } - - { offsetInCU: 0xC1A, offset: 0x6BCA0, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x44C, symBinAddr: 0x1132C, symSize: 0x18 } - - { offsetInCU: 0xC6F, offset: 0x6BCF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x482, symBinAddr: 0x11344, symSize: 0xDE } - - { offsetInCU: 0xD08, offset: 0x6BD8E, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x560, symBinAddr: 0x11422, symSize: 0x16 } - - { offsetInCU: 0xD2D, offset: 0x6BDB3, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x576, symBinAddr: 0x11438, symSize: 0xF } - - { offsetInCU: 0xD58, offset: 0x6BDDE, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x585, symBinAddr: 0x11447, symSize: 0x32 } - - { offsetInCU: 0xDB7, offset: 0x6BE3D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x60E, symBinAddr: 0x11479, symSize: 0xC9 } - - { offsetInCU: 0xEC4, offset: 0x6BF4A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x6D7, symBinAddr: 0x11542, symSize: 0x19 } - - { offsetInCU: 0xF17, offset: 0x6BF9D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x73A, symBinAddr: 0x1155B, symSize: 0x14 } - - { offsetInCU: 0xF7B, offset: 0x6C001, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x74E, symBinAddr: 0x1156F, symSize: 0x17 } - - { offsetInCU: 0xFDF, offset: 0x6C065, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x765, symBinAddr: 0x11586, symSize: 0xDC } - - { offsetInCU: 0x1084, offset: 0x6C10A, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x841, symBinAddr: 0x11662, symSize: 0x1E } - - { offsetInCU: 0x10D7, offset: 0x6C15D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x85F, symBinAddr: 0x11680, symSize: 0xC9 } - - { offsetInCU: 0x11D1, offset: 0x6C257, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x928, symBinAddr: 0x11749, symSize: 0x19 } - - { offsetInCU: 0x1224, offset: 0x6C2AA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x941, symBinAddr: 0x11762, symSize: 0x14 } - - { offsetInCU: 0x1288, offset: 0x6C30E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x955, symBinAddr: 0x11776, symSize: 0x17 } - - { offsetInCU: 0x12EC, offset: 0x6C372, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x96C, symBinAddr: 0x1178D, symSize: 0x161 } - - { offsetInCU: 0x13BA, offset: 0x6C440, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0xACD, symBinAddr: 0x118EE, symSize: 0x4B } - - { offsetInCU: 0x142A, offset: 0x6C4B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xB8F, symBinAddr: 0x11939, symSize: 0xFF } - - { offsetInCU: 0x1585, offset: 0x6C60B, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xC8E, symBinAddr: 0x11A38, symSize: 0x31 } - - { offsetInCU: 0x15E9, offset: 0x6C66F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xD17, symBinAddr: 0x11A69, symSize: 0x15 } - - { offsetInCU: 0x1664, offset: 0x6C6EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xD2C, symBinAddr: 0x11A7E, symSize: 0x18 } - - { offsetInCU: 0x16DF, offset: 0x6C765, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xD44, symBinAddr: 0x11A96, symSize: 0xDD } - - { offsetInCU: 0x1789, offset: 0x6C80F, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xE21, symBinAddr: 0x11B73, symSize: 0x1C } - - { offsetInCU: 0x17E4, offset: 0x6C86A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xE3D, symBinAddr: 0x11B8F, symSize: 0x82 } - - { offsetInCU: 0x1886, offset: 0x6C90C, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xEBF, symBinAddr: 0x11C11, symSize: 0x1E } - - { offsetInCU: 0x18DB, offset: 0x6C961, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xEDD, symBinAddr: 0x11C2F, symSize: 0xDD } - - { offsetInCU: 0x1985, offset: 0x6CA0B, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xFBA, symBinAddr: 0x11D0C, symSize: 0x1A } - - { offsetInCU: 0x19E0, offset: 0x6CA66, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xFD4, symBinAddr: 0x11D26, symSize: 0x82 } - - { offsetInCU: 0x1A82, offset: 0x6CB08, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1056, symBinAddr: 0x11DA8, symSize: 0x21 } - - { offsetInCU: 0x1AD7, offset: 0x6CB5D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0x1077, symBinAddr: 0x11DC9, symSize: 0xDD } - - { offsetInCU: 0x1B81, offset: 0x6CC07, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x1154, symBinAddr: 0x11EA6, symSize: 0x1D } - - { offsetInCU: 0x1BDC, offset: 0x6CC62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1171, symBinAddr: 0x11EC3, symSize: 0xDD } - - { offsetInCU: 0x1C86, offset: 0x6CD0C, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x124E, symBinAddr: 0x11FA0, symSize: 0x1D } - - { offsetInCU: 0x1CE1, offset: 0x6CD67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x126B, symBinAddr: 0x11FBD, symSize: 0xDD } - - { offsetInCU: 0x1D8B, offset: 0x6CE11, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x1348, symBinAddr: 0x1209A, symSize: 0x1C } - - { offsetInCU: 0x1DE6, offset: 0x6CE6C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1364, symBinAddr: 0x120B6, symSize: 0x7F } - - { offsetInCU: 0x1E77, offset: 0x6CEFD, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x13E3, symBinAddr: 0x12135, symSize: 0x18 } - - { offsetInCU: 0x1EB9, offset: 0x6CF3F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x13FB, symBinAddr: 0x1214D, symSize: 0x7F } - - { offsetInCU: 0x1F4A, offset: 0x6CFD0, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x147A, symBinAddr: 0x121CC, symSize: 0x18 } - - { offsetInCU: 0x1F8C, offset: 0x6D012, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x1492, symBinAddr: 0x121E4, symSize: 0x7F } - - { offsetInCU: 0x201D, offset: 0x6D0A3, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1511, symBinAddr: 0x12263, symSize: 0x18 } - - { offsetInCU: 0x205F, offset: 0x6D0E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1529, symBinAddr: 0x1227B, symSize: 0xE0 } - - { offsetInCU: 0x2109, offset: 0x6D18F, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x1609, symBinAddr: 0x1235B, symSize: 0x1A } - - { offsetInCU: 0x2164, offset: 0x6D1EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1623, symBinAddr: 0x12375, symSize: 0x83 } - - { offsetInCU: 0x2206, offset: 0x6D28C, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x16A6, symBinAddr: 0x123F8, symSize: 0x12 } - - { offsetInCU: 0x225B, offset: 0x6D2E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x16B8, symBinAddr: 0x1240A, symSize: 0xE0 } - - { offsetInCU: 0x2305, offset: 0x6D38B, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x1798, symBinAddr: 0x124EA, symSize: 0x18 } - - { offsetInCU: 0x2360, offset: 0x6D3E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x17B0, symBinAddr: 0x12502, symSize: 0x82 } - - { offsetInCU: 0x2402, offset: 0x6D488, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x1832, symBinAddr: 0x12584, symSize: 0x10 } - - { offsetInCU: 0x2457, offset: 0x6D4DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x1842, symBinAddr: 0x12594, symSize: 0x83 } - - { offsetInCU: 0x24F9, offset: 0x6D57F, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x18C5, symBinAddr: 0x12617, symSize: 0x12 } - - { offsetInCU: 0x254E, offset: 0x6D5D4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x18D7, symBinAddr: 0x12629, symSize: 0xE0 } - - { offsetInCU: 0x25F8, offset: 0x6D67E, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x19B7, symBinAddr: 0x12709, symSize: 0x1A } - - { offsetInCU: 0x2653, offset: 0x6D6D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x19D1, symBinAddr: 0x12723, symSize: 0x10D } - - { offsetInCU: 0x2716, offset: 0x6D79C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1ADE, symBinAddr: 0x12830, symSize: 0x21 } - - { offsetInCU: 0x2769, offset: 0x6D7EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1AFF, symBinAddr: 0x12851, symSize: 0xAF } - - { offsetInCU: 0x284C, offset: 0x6D8D2, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1BAE, symBinAddr: 0x12900, symSize: 0x27 } - - { offsetInCU: 0x289F, offset: 0x6D925, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1BD5, symBinAddr: 0x12927, symSize: 0x111 } - - { offsetInCU: 0x29ED, offset: 0x6DA73, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1CE6, symBinAddr: 0x12A38, symSize: 0x37 } - - { offsetInCU: 0x2A5D, offset: 0x6DAE3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1D1D, symBinAddr: 0x12A6F, symSize: 0xF2 } - - { offsetInCU: 0x2B63, offset: 0x6DBE9, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1E0F, symBinAddr: 0x12B61, symSize: 0x37 } - - { offsetInCU: 0x2BD3, offset: 0x6DC59, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1E46, symBinAddr: 0x12B98, symSize: 0xB9 } - - { offsetInCU: 0x2C8E, offset: 0x6DD14, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1EFF, symBinAddr: 0x12C51, symSize: 0x37 } - - { offsetInCU: 0x2CFE, offset: 0x6DD84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1F36, symBinAddr: 0x12C88, symSize: 0xF3 } - - { offsetInCU: 0x2E15, offset: 0x6DE9B, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x2029, symBinAddr: 0x12D7B, symSize: 0x3B } - - { offsetInCU: 0x2E96, offset: 0x6DF1C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x2064, symBinAddr: 0x12DB6, symSize: 0x135 } - - { offsetInCU: 0x3067, offset: 0x6E0ED, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2199, symBinAddr: 0x12EEB, symSize: 0x3F } - - { offsetInCU: 0x30F9, offset: 0x6E17F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x21D8, symBinAddr: 0x12F2A, symSize: 0x3A } - - { offsetInCU: 0x315E, offset: 0x6E1E4, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2212, symBinAddr: 0x12F64, symSize: 0x3A } - - { offsetInCU: 0x31B9, offset: 0x6E23F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x224C, symBinAddr: 0x12F9E, symSize: 0xF2 } - - { offsetInCU: 0x32BF, offset: 0x6E345, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x233E, symBinAddr: 0x13090, symSize: 0x37 } - - { offsetInCU: 0x332F, offset: 0x6E3B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2375, symBinAddr: 0x130C7, symSize: 0xDE } - - { offsetInCU: 0x33D6, offset: 0x6E45C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2453, symBinAddr: 0x131A5, symSize: 0xDE } - - { offsetInCU: 0x347D, offset: 0x6E503, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x2531, symBinAddr: 0x13283, symSize: 0xF3 } - - { offsetInCU: 0x3552, offset: 0x6E5D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x2624, symBinAddr: 0x13376, symSize: 0x152 } - - { offsetInCU: 0x362A, offset: 0x6E6B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2776, symBinAddr: 0x134C8, symSize: 0x14 } - - { offsetInCU: 0x367B, offset: 0x6E701, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x278A, symBinAddr: 0x134DC, symSize: 0x118 } - - { offsetInCU: 0x3735, offset: 0x6E7BB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x28A2, symBinAddr: 0x135F4, symSize: 0x118 } - - { offsetInCU: 0x37EF, offset: 0x6E875, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x29BA, symBinAddr: 0x1370C, symSize: 0xDE } - - { offsetInCU: 0x3896, offset: 0x6E91C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x2A98, symBinAddr: 0x137EA, symSize: 0x84 } - - { offsetInCU: 0x3933, offset: 0x6E9B9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x2B1C, symBinAddr: 0x1386E, symSize: 0x194 } - - { offsetInCU: 0x3B2A, offset: 0x6EBB0, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2CB0, symBinAddr: 0x13A02, symSize: 0x2B } - - { offsetInCU: 0x3B8C, offset: 0x6EC12, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2CDB, symBinAddr: 0x13A2D, symSize: 0x30 } - - { offsetInCU: 0x3BC1, offset: 0x6EC47, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.114', symObjAddr: 0x2D0B, symBinAddr: 0x13A5D, symSize: 0x3EC } - - { offsetInCU: 0x3F78, offset: 0x6EFFE, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x30F7, symBinAddr: 0x13E49, symSize: 0x2D } - - { offsetInCU: 0x3FE4, offset: 0x6F06A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x3124, symBinAddr: 0x13E76, symSize: 0x44 } - - { offsetInCU: 0x4025, offset: 0x6F0AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x3168, symBinAddr: 0x13EBA, symSize: 0x55E } - - { offsetInCU: 0x4427, offset: 0x6F4AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x36C6, symBinAddr: 0x14418, symSize: 0x3EA } - - { offsetInCU: 0x47EF, offset: 0x6F875, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3AB0, symBinAddr: 0x14802, symSize: 0x1E4 } - - { offsetInCU: 0x49BB, offset: 0x6FA41, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x3C94, symBinAddr: 0x149E6, symSize: 0x68 } - - { offsetInCU: 0x4A4E, offset: 0x6FAD4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3CFC, symBinAddr: 0x14A4E, symSize: 0x78 } - - { offsetInCU: 0x4AE1, offset: 0x6FB67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x3D74, symBinAddr: 0x14AC6, symSize: 0xBF } - - { offsetInCU: 0x4C10, offset: 0x6FC96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3E33, symBinAddr: 0x14B85, symSize: 0xD5 } - - { offsetInCU: 0x4D2C, offset: 0x6FDB2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3F08, symBinAddr: 0x14C5A, symSize: 0x186 } - - { offsetInCU: 0x4E6F, offset: 0x6FEF5, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x408E, symBinAddr: 0x14DE0, symSize: 0x65 } - - { offsetInCU: 0x4EBD, offset: 0x6FF43, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x40F3, symBinAddr: 0x14E45, symSize: 0x62 } - - { offsetInCU: 0x4F2C, offset: 0x6FFB2, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x4155, symBinAddr: 0x14EA7, symSize: 0x1C } - - { offsetInCU: 0x4FA0, offset: 0x70026, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.164', symObjAddr: 0x419B, symBinAddr: 0x14EC3, symSize: 0x1C } - - { offsetInCU: 0x4FFD, offset: 0x70083, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x41B7, symBinAddr: 0x14EDF, symSize: 0x192 } - - { offsetInCU: 0x50F6, offset: 0x7017C, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x4349, symBinAddr: 0x15071, symSize: 0x65 } - - { offsetInCU: 0x5144, offset: 0x701CA, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x43AE, symBinAddr: 0x150D6, symSize: 0x65 } - - { offsetInCU: 0x51A0, offset: 0x70226, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x4413, symBinAddr: 0x1513B, symSize: 0x1C } - - { offsetInCU: 0x51FD, offset: 0x70283, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x442F, symBinAddr: 0x15157, symSize: 0x1C } - - { offsetInCU: 0x525A, offset: 0x702E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x444B, symBinAddr: 0x15173, symSize: 0xED } - - { offsetInCU: 0x5354, offset: 0x703DA, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4538, symBinAddr: 0x15260, symSize: 0x217 } - - { offsetInCU: 0x55A8, offset: 0x7062E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x474F, symBinAddr: 0x15477, symSize: 0x53 } - - { offsetInCU: 0x564F, offset: 0x706D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x47A2, symBinAddr: 0x154CA, symSize: 0x28 } - - { offsetInCU: 0x56A0, offset: 0x70726, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x47CA, symBinAddr: 0x154F2, symSize: 0x28 } - - { offsetInCU: 0x56E2, offset: 0x70768, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x47F2, symBinAddr: 0x1551A, symSize: 0x28 } - - { offsetInCU: 0x5733, offset: 0x707B9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x481A, symBinAddr: 0x15542, symSize: 0x28 } - - { offsetInCU: 0x5775, offset: 0x707FB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x4842, symBinAddr: 0x1556A, symSize: 0x28 } - - { offsetInCU: 0x57B7, offset: 0x7083D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x486A, symBinAddr: 0x15592, symSize: 0x2B } - - { offsetInCU: 0x57F9, offset: 0x7087F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x4895, symBinAddr: 0x155BD, symSize: 0x28 } - - { offsetInCU: 0x583B, offset: 0x708C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x48BD, symBinAddr: 0x155E5, symSize: 0x2B } - - { offsetInCU: 0x587D, offset: 0x70903, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x48E8, symBinAddr: 0x15610, symSize: 0xB2 } - - { offsetInCU: 0x5934, offset: 0x709BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x499A, symBinAddr: 0x156C2, symSize: 0xBB } - - { offsetInCU: 0x59DC, offset: 0x70A62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4A55, symBinAddr: 0x1577D, symSize: 0x31 } - - { offsetInCU: 0x5A39, offset: 0x70ABF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x4A86, symBinAddr: 0x157AE, symSize: 0x1D5 } - - { offsetInCU: 0x5C87, offset: 0x70D0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4C5B, symBinAddr: 0x15983, symSize: 0xE5 } - - { offsetInCU: 0x5D69, offset: 0x70DEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4D40, symBinAddr: 0x15A68, symSize: 0xE5 } - - { offsetInCU: 0x5E4B, offset: 0x70ED1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x4E25, symBinAddr: 0x15B4D, symSize: 0x155 } - - { offsetInCU: 0x5F35, offset: 0x70FBB, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4F7A, symBinAddr: 0x15CA2, symSize: 0x6B } - - { offsetInCU: 0x5FB8, offset: 0x7103E, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4FE5, symBinAddr: 0x15D0D, symSize: 0x25 } - - { offsetInCU: 0x6002, offset: 0x71088, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x5021, symBinAddr: 0x15D32, symSize: 0x155 } - - { offsetInCU: 0x60EC, offset: 0x71172, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x5176, symBinAddr: 0x15E87, symSize: 0x6B } - - { offsetInCU: 0x616F, offset: 0x711F5, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x51E1, symBinAddr: 0x15EF2, symSize: 0x25 } - - { offsetInCU: 0x61B9, offset: 0x7123F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x5206, symBinAddr: 0x15F17, symSize: 0x126 } - - { offsetInCU: 0x628B, offset: 0x71311, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x532C, symBinAddr: 0x1603D, symSize: 0x56 } - - { offsetInCU: 0x62EA, offset: 0x71370, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x5382, symBinAddr: 0x16093, symSize: 0x25 } - - { offsetInCU: 0x6334, offset: 0x713BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x53A7, symBinAddr: 0x160B8, symSize: 0x155 } - - { offsetInCU: 0x641E, offset: 0x714A4, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x54FC, symBinAddr: 0x1620D, symSize: 0x3C } - - { offsetInCU: 0x647D, offset: 0x71503, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x5538, symBinAddr: 0x16249, symSize: 0x25 } - - { offsetInCU: 0x64C7, offset: 0x7154D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x555D, symBinAddr: 0x1626E, symSize: 0x155 } - - { offsetInCU: 0x65B1, offset: 0x71637, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x56B2, symBinAddr: 0x163C3, symSize: 0x3C } - - { offsetInCU: 0x6610, offset: 0x71696, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x56EE, symBinAddr: 0x163FF, symSize: 0x25 } - - { offsetInCU: 0x665A, offset: 0x716E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x5713, symBinAddr: 0x16424, symSize: 0x126 } - - { offsetInCU: 0x672C, offset: 0x717B2, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x5839, symBinAddr: 0x1654A, symSize: 0x38 } - - { offsetInCU: 0x678B, offset: 0x71811, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x5871, symBinAddr: 0x16582, symSize: 0x25 } - - { offsetInCU: 0x67D5, offset: 0x7185B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5896, symBinAddr: 0x165A7, symSize: 0x155 } - - { offsetInCU: 0x68BF, offset: 0x71945, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x59EB, symBinAddr: 0x166FC, symSize: 0x3C } - - { offsetInCU: 0x691E, offset: 0x719A4, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x5A27, symBinAddr: 0x16738, symSize: 0x25 } - - { offsetInCU: 0x6968, offset: 0x719EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x5A4C, symBinAddr: 0x1675D, symSize: 0x155 } - - { offsetInCU: 0x6A52, offset: 0x71AD8, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5BA1, symBinAddr: 0x168B2, symSize: 0x3C } - - { offsetInCU: 0x6AB1, offset: 0x71B37, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x5BDD, symBinAddr: 0x168EE, symSize: 0x25 } - - { offsetInCU: 0x6AFB, offset: 0x71B81, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5C02, symBinAddr: 0x16913, symSize: 0x126 } - - { offsetInCU: 0x6BCD, offset: 0x71C53, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x5D28, symBinAddr: 0x16A39, symSize: 0x38 } - - { offsetInCU: 0x6C2C, offset: 0x71CB2, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x5D60, symBinAddr: 0x16A71, symSize: 0x25 } - - { offsetInCU: 0x6C76, offset: 0x71CFC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5D85, symBinAddr: 0x16A96, symSize: 0x211 } - - { offsetInCU: 0x6EB3, offset: 0x71F39, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x5F96, symBinAddr: 0x16CA7, symSize: 0x155 } - - { offsetInCU: 0x6F9D, offset: 0x72023, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x60EB, symBinAddr: 0x16DFC, symSize: 0x3C } - - { offsetInCU: 0x6FFC, offset: 0x72082, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x6127, symBinAddr: 0x16E38, symSize: 0x25 } - - { offsetInCU: 0x7046, offset: 0x720CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x614C, symBinAddr: 0x16E5D, symSize: 0x155 } - - { offsetInCU: 0x7130, offset: 0x721B6, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x62A1, symBinAddr: 0x16FB2, symSize: 0x3C } - - { offsetInCU: 0x718F, offset: 0x72215, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x62DD, symBinAddr: 0x16FEE, symSize: 0x25 } - - { offsetInCU: 0x71D9, offset: 0x7225F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x6302, symBinAddr: 0x17013, symSize: 0x126 } - - { offsetInCU: 0x72AB, offset: 0x72331, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x6428, symBinAddr: 0x17139, symSize: 0x38 } - - { offsetInCU: 0x730A, offset: 0x72390, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x6460, symBinAddr: 0x17171, symSize: 0x25 } - - { offsetInCU: 0x7354, offset: 0x723DA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x6485, symBinAddr: 0x17196, symSize: 0xDD } - - { offsetInCU: 0x73FE, offset: 0x72484, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x6562, symBinAddr: 0x17273, symSize: 0x1D } - - { offsetInCU: 0x7459, offset: 0x724DF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x657F, symBinAddr: 0x17290, symSize: 0xDD } - - { offsetInCU: 0x7503, offset: 0x72589, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x665C, symBinAddr: 0x1736D, symSize: 0x1C } - - { offsetInCU: 0x755E, offset: 0x725E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6678, symBinAddr: 0x17389, symSize: 0xDD } - - { offsetInCU: 0x7608, offset: 0x7268E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6755, symBinAddr: 0x17466, symSize: 0x3B } - - { offsetInCU: 0x7667, offset: 0x726ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x6790, symBinAddr: 0x174A1, symSize: 0xDD } - - { offsetInCU: 0x7711, offset: 0x72797, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x686D, symBinAddr: 0x1757E, symSize: 0x3B } - - { offsetInCU: 0x7770, offset: 0x727F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x68A8, symBinAddr: 0x175B9, symSize: 0x8A } - - { offsetInCU: 0x77FC, offset: 0x72882, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6932, symBinAddr: 0x17643, symSize: 0x17 } - - { offsetInCU: 0x787D, offset: 0x72903, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6949, symBinAddr: 0x1765A, symSize: 0x1A0 } - - { offsetInCU: 0x79BE, offset: 0x72A44, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x6AE9, symBinAddr: 0x177FA, symSize: 0x2E1 } - - { offsetInCU: 0x7CA4, offset: 0x72D2A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x6E61, symBinAddr: 0x17ADB, symSize: 0x19C } - - { offsetInCU: 0x7DD4, offset: 0x72E5A, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6FFD, symBinAddr: 0x17C77, symSize: 0x315 } - - { offsetInCU: 0x808E, offset: 0x73114, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x7312, symBinAddr: 0x17F8C, symSize: 0x77 } - - { offsetInCU: 0x811A, offset: 0x731A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x7389, symBinAddr: 0x18003, symSize: 0x1A0 } - - { offsetInCU: 0x825B, offset: 0x732E1, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x7529, symBinAddr: 0x181A3, symSize: 0x1E0 } - - { offsetInCU: 0x83D6, offset: 0x7345C, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x7709, symBinAddr: 0x18383, symSize: 0xA6 } - - { offsetInCU: 0x84FA, offset: 0x73580, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x77AF, symBinAddr: 0x18429, symSize: 0x19C } - - { offsetInCU: 0x862A, offset: 0x736B0, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x794B, symBinAddr: 0x185C5, symSize: 0x1D3 } - - { offsetInCU: 0x87D3, offset: 0x73859, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x7B1E, symBinAddr: 0x18798, symSize: 0x230 } - - { offsetInCU: 0x8A2B, offset: 0x73AB1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7D4E, symBinAddr: 0x189C8, symSize: 0xD1 } - - { offsetInCU: 0x8B43, offset: 0x73BC9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x7E1F, symBinAddr: 0x18A99, symSize: 0xD1 } - - { offsetInCU: 0x8C3A, offset: 0x73CC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x7EF0, symBinAddr: 0x18B6A, symSize: 0x72 } - - { offsetInCU: 0x8CAC, offset: 0x73D32, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7F62, symBinAddr: 0x18BDC, symSize: 0x17 } - - { offsetInCU: 0x8D2D, offset: 0x73DB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7F79, symBinAddr: 0x18BF3, symSize: 0x20 } - - { offsetInCU: 0x8DC9, offset: 0x73E4F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7F99, symBinAddr: 0x18C13, symSize: 0x17 } - - { offsetInCU: 0x8E4A, offset: 0x73ED0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7FB0, symBinAddr: 0x18C2A, symSize: 0x20 } - - { offsetInCU: 0x8EE6, offset: 0x73F6C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7FD0, symBinAddr: 0x18C4A, symSize: 0x1DE } - - { offsetInCU: 0x908D, offset: 0x74113, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x81AE, symBinAddr: 0x18E28, symSize: 0x34E } - - { offsetInCU: 0x941A, offset: 0x744A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x85A1, symBinAddr: 0x19176, symSize: 0x19C } - - { offsetInCU: 0x954A, offset: 0x745D0, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x873D, symBinAddr: 0x19312, symSize: 0x1C1 } - - { offsetInCU: 0x971A, offset: 0x747A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x88FE, symBinAddr: 0x194D3, symSize: 0x19C } - - { offsetInCU: 0x984A, offset: 0x748D0, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x8A9A, symBinAddr: 0x1966F, symSize: 0x1B9 } - - { offsetInCU: 0x9A13, offset: 0x74A99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x8C53, symBinAddr: 0x19828, symSize: 0x164 } - - { offsetInCU: 0x9B01, offset: 0x74B87, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x8DB7, symBinAddr: 0x1998C, symSize: 0x16D } - - { offsetInCU: 0x9C60, offset: 0x74CE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x8F24, symBinAddr: 0x19AF9, symSize: 0x164 } - - { offsetInCU: 0x9D4E, offset: 0x74DD4, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x9088, symBinAddr: 0x19C5D, symSize: 0x131 } - - { offsetInCU: 0x9E60, offset: 0x74EE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x91B9, symBinAddr: 0x19D8E, symSize: 0x1A } - - { offsetInCU: 0x9ED5, offset: 0x74F5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x91D3, symBinAddr: 0x19DA8, symSize: 0xE7 } - - { offsetInCU: 0x9FEF, offset: 0x75075, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x92BA, symBinAddr: 0x19E8F, symSize: 0x55 } - - { offsetInCU: 0xA05A, offset: 0x750E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x930F, symBinAddr: 0x19EE4, symSize: 0x171 } - - { offsetInCU: 0xA20D, offset: 0x75293, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x9480, symBinAddr: 0x1A055, symSize: 0x99 } - - { offsetInCU: 0xA2DF, offset: 0x75365, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x9519, symBinAddr: 0x1A0EE, symSize: 0x55 } - - { offsetInCU: 0xA34A, offset: 0x753D0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x956E, symBinAddr: 0x1A143, symSize: 0x12F } - - { offsetInCU: 0xA4C5, offset: 0x7554B, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x969D, symBinAddr: 0x1A272, symSize: 0x55 } - - { offsetInCU: 0xA530, offset: 0x755B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x96F2, symBinAddr: 0x1A2C7, symSize: 0x18 } - - { offsetInCU: 0xA5AB, offset: 0x75631, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x970A, symBinAddr: 0x1A2DF, symSize: 0x12D } - - { offsetInCU: 0xA775, offset: 0x757FB, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9837, symBinAddr: 0x1A40C, symSize: 0x46 } - - { offsetInCU: 0xA7F6, offset: 0x7587C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x987D, symBinAddr: 0x1A452, symSize: 0x1F0 } - - { offsetInCU: 0xA994, offset: 0x75A1A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x9A6D, symBinAddr: 0x1A642, symSize: 0x384 } - - { offsetInCU: 0xAC59, offset: 0x75CDF, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x9DF1, symBinAddr: 0x1A9C6, symSize: 0xB6 } - - { offsetInCU: 0xAD0D, offset: 0x75D93, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9EA7, symBinAddr: 0x1AA7C, symSize: 0x87 } - - { offsetInCU: 0xADA1, offset: 0x75E27, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.334', symObjAddr: 0x9F2E, symBinAddr: 0x1AB03, symSize: 0x47 } - - { offsetInCU: 0xAE00, offset: 0x75E86, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x9F75, symBinAddr: 0x1AB4A, symSize: 0x20D } - - { offsetInCU: 0xB06E, offset: 0x760F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0xA182, symBinAddr: 0x1AD57, symSize: 0x50 } - - { offsetInCU: 0xB0C8, offset: 0x7614E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0xA1D2, symBinAddr: 0x1ADA7, symSize: 0x75 } - - { offsetInCU: 0xB15F, offset: 0x761E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0xA247, symBinAddr: 0x1AE1C, symSize: 0xBA } - - { offsetInCU: 0xB26D, offset: 0x762F3, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0xA301, symBinAddr: 0x1AED6, symSize: 0x2F } - - { offsetInCU: 0xB2BB, offset: 0x76341, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0xA330, symBinAddr: 0x1AF05, symSize: 0x161 } - - { offsetInCU: 0xB398, offset: 0x7641E, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0xA491, symBinAddr: 0x1B066, symSize: 0xB6 } - - { offsetInCU: 0xB44A, offset: 0x764D0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0xA547, symBinAddr: 0x1B11C, symSize: 0x2F } - - { offsetInCU: 0xB498, offset: 0x7651E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0xA576, symBinAddr: 0x1B14B, symSize: 0x161 } - - { offsetInCU: 0xB575, offset: 0x765FB, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0xA6D7, symBinAddr: 0x1B2AC, symSize: 0xB6 } - - { offsetInCU: 0xB627, offset: 0x766AD, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0xA78D, symBinAddr: 0x1B362, symSize: 0x2F } - - { offsetInCU: 0xB675, offset: 0x766FB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0xA7BC, symBinAddr: 0x1B391, symSize: 0x7F } - - { offsetInCU: 0xB706, offset: 0x7678C, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0xA83B, symBinAddr: 0x1B410, symSize: 0x5C } - - { offsetInCU: 0xB760, offset: 0x767E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0xA897, symBinAddr: 0x1B46C, symSize: 0x18 } - - { offsetInCU: 0xB7DB, offset: 0x76861, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0xA8AF, symBinAddr: 0x1B484, symSize: 0x12D } - - { offsetInCU: 0xB9A5, offset: 0x76A2B, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0xA9DC, symBinAddr: 0x1B5B1, symSize: 0x46 } - - { offsetInCU: 0xBA26, offset: 0x76AAC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0xAA22, symBinAddr: 0x1B5F7, symSize: 0x71A } - - { offsetInCU: 0xBED9, offset: 0x76F5F, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xB13C, symBinAddr: 0x1BD11, symSize: 0x102 } - - { offsetInCU: 0xBFC0, offset: 0x77046, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xB23E, symBinAddr: 0x1BE13, symSize: 0x92 } - - { offsetInCU: 0xC05E, offset: 0x770E4, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.361', symObjAddr: 0xB2D0, symBinAddr: 0x1BEA5, symSize: 0x79 } - - { offsetInCU: 0xC0F8, offset: 0x7717E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xB349, symBinAddr: 0x1BF1E, symSize: 0x4C } - - { offsetInCU: 0xC160, offset: 0x771E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xB395, symBinAddr: 0x1BF6A, symSize: 0xA9 } - - { offsetInCU: 0xC252, offset: 0x772D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xB43E, symBinAddr: 0x1C013, symSize: 0x7F } - - { offsetInCU: 0xC2E3, offset: 0x77369, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xB4BD, symBinAddr: 0x1C092, symSize: 0x31 } - - { offsetInCU: 0xC338, offset: 0x773BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xB4EE, symBinAddr: 0x1C0C3, symSize: 0x7F } - - { offsetInCU: 0xC3C9, offset: 0x7744F, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xB56D, symBinAddr: 0x1C142, symSize: 0x63 } - - { offsetInCU: 0xC42A, offset: 0x774B0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xB5D0, symBinAddr: 0x1C1A5, symSize: 0x6 } - - { offsetInCU: 0xC4A1, offset: 0x77527, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xB62E, symBinAddr: 0x1C203, symSize: 0x63 } - - { offsetInCU: 0xC50E, offset: 0x77594, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xB691, symBinAddr: 0x1C266, symSize: 0x114 } - - { offsetInCU: 0xC60E, offset: 0x77694, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xB7A5, symBinAddr: 0x1C37A, symSize: 0xA0 } - - { offsetInCU: 0xC72D, offset: 0x777B3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xB845, symBinAddr: 0x1C41A, symSize: 0xA0 } - - { offsetInCU: 0xC840, offset: 0x778C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xB8E5, symBinAddr: 0x1C4BA, symSize: 0x238 } - - { offsetInCU: 0xCA84, offset: 0x77B0A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xBB1D, symBinAddr: 0x1C6F2, symSize: 0x1C2 } - - { offsetInCU: 0xCCC0, offset: 0x77D46, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xBCDF, symBinAddr: 0x1C8B4, symSize: 0x10E } - - { offsetInCU: 0xCE15, offset: 0x77E9B, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xBDED, symBinAddr: 0x1C9C2, symSize: 0x10E } - - { offsetInCU: 0xCF6A, offset: 0x77FF0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xBEFB, symBinAddr: 0x1CAD0, symSize: 0x72 } - - { offsetInCU: 0xD004, offset: 0x7808A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xBF6D, symBinAddr: 0x1CB42, symSize: 0xBB } - - { offsetInCU: 0xD137, offset: 0x781BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xC028, symBinAddr: 0x1CBFD, symSize: 0x4E } - - { offsetInCU: 0xD191, offset: 0x78217, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xC076, symBinAddr: 0x1CC4B, symSize: 0xF8 } - - { offsetInCU: 0xD2B9, offset: 0x7833F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xC16E, symBinAddr: 0x1CD43, symSize: 0x7F } - - { offsetInCU: 0xD357, offset: 0x783DD, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xC1ED, symBinAddr: 0x1CDC2, symSize: 0x4A } - - { offsetInCU: 0xD3B1, offset: 0x78437, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xC237, symBinAddr: 0x1CE0C, symSize: 0x1C } - - { offsetInCU: 0xD42C, offset: 0x784B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xC253, symBinAddr: 0x1CE28, symSize: 0x18 } - - { offsetInCU: 0xD494, offset: 0x7851A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xC26B, symBinAddr: 0x1CE40, symSize: 0x38 } - - { offsetInCU: 0xD511, offset: 0x78597, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xC2A3, symBinAddr: 0x1CE78, symSize: 0x33 } - - { offsetInCU: 0xD557, offset: 0x785DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xC2D6, symBinAddr: 0x1CEAB, symSize: 0x2B } - - { offsetInCU: 0xD59D, offset: 0x78623, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xC301, symBinAddr: 0x1CED6, symSize: 0x2B } - - { offsetInCU: 0xD5E3, offset: 0x78669, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xC32C, symBinAddr: 0x1CF01, symSize: 0x57 } - - { offsetInCU: 0xD655, offset: 0x786DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xC383, symBinAddr: 0x1CF58, symSize: 0x57 } - - { offsetInCU: 0xD6C7, offset: 0x7874D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xC3DA, symBinAddr: 0x1CFAF, symSize: 0x8 } - - { offsetInCU: 0xD6FB, offset: 0x78781, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xC3E2, symBinAddr: 0x1CFB7, symSize: 0x7D } - - { offsetInCU: 0xD77E, offset: 0x78804, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xC45F, symBinAddr: 0x1D034, symSize: 0x7D } - - { offsetInCU: 0xD802, offset: 0x78888, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xC4DC, symBinAddr: 0x1D0B1, symSize: 0x11 } - - { offsetInCU: 0xD845, offset: 0x788CB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xC4ED, symBinAddr: 0x1D0C2, symSize: 0x11 } - - { offsetInCU: 0xD888, offset: 0x7890E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xC4FE, symBinAddr: 0x1D0D3, symSize: 0x40 } - - { offsetInCU: 0xD91E, offset: 0x789A4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xC53E, symBinAddr: 0x1D113, symSize: 0x31 } - - { offsetInCU: 0xD9A8, offset: 0x78A2E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xC56F, symBinAddr: 0x1D144, symSize: 0x30 } - - { offsetInCU: 0xDA32, offset: 0x78AB8, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xC59F, symBinAddr: 0x1D174, symSize: 0x34 } - - { offsetInCU: 0xDABC, offset: 0x78B42, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xC5D3, symBinAddr: 0x1D1A8, symSize: 0x34 } - - { offsetInCU: 0xDB46, offset: 0x78BCC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xC607, symBinAddr: 0x1D1DC, symSize: 0x18 } - - { offsetInCU: 0xDBDE, offset: 0x78C64, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xC61F, symBinAddr: 0x1D1F4, symSize: 0x19C } - - { offsetInCU: 0xDD87, offset: 0x78E0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xC7BB, symBinAddr: 0x1D390, symSize: 0x118 } - - { offsetInCU: 0xDDBB, offset: 0x78E41, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xC8D3, symBinAddr: 0x1D4A8, symSize: 0x49 } - - { offsetInCU: 0xDE27, offset: 0x78EAD, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xC91C, symBinAddr: 0x1D4F1, symSize: 0x49 } + - { offsetInCU: 0x34, offset: 0x556B2, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x1E2E0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x556E7, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x1E318, symSize: 0x0 } + - { offsetInCU: 0x41, offset: 0x5573E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x121B8, symBinAddr: 0x24508, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x5575E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x121C0, symBinAddr: 0x24510, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x55774, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x121C8, symBinAddr: 0x24518, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x5578A, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x121D0, symBinAddr: 0x24520, symSize: 0x0 } + - { offsetInCU: 0xA3, offset: 0x557A0, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x121D8, symBinAddr: 0x24528, symSize: 0x0 } + - { offsetInCU: 0xB9, offset: 0x557B6, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x121E0, symBinAddr: 0x24530, symSize: 0x0 } + - { offsetInCU: 0xCF, offset: 0x557CC, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x121E8, symBinAddr: 0x24538, symSize: 0x0 } + - { offsetInCU: 0xE5, offset: 0x557E2, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x121F0, symBinAddr: 0x24540, symSize: 0x0 } + - { offsetInCU: 0xFB, offset: 0x557F8, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x121F8, symBinAddr: 0x24548, symSize: 0x0 } + - { offsetInCU: 0x111, offset: 0x5580E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x12200, symBinAddr: 0x24550, symSize: 0x0 } + - { offsetInCU: 0x127, offset: 0x55824, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x12208, symBinAddr: 0x24558, symSize: 0x0 } + - { offsetInCU: 0x13D, offset: 0x5583A, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x12210, symBinAddr: 0x24560, symSize: 0x0 } + - { offsetInCU: 0x153, offset: 0x55850, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x12218, symBinAddr: 0x24568, symSize: 0x0 } + - { offsetInCU: 0x16B, offset: 0x55868, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xBCE8, symBinAddr: 0xCA08, symSize: 0x616 } + - { offsetInCU: 0x69C, offset: 0x55D99, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xE6AD, symBinAddr: 0xF3CD, symSize: 0x6F } + - { offsetInCU: 0x6C4, offset: 0x55DC1, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x62A48, symBinAddr: 0x2AB00, symSize: 0x0 } + - { offsetInCU: 0x72C, offset: 0x55E29, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x62A60, symBinAddr: 0x2AB18, symSize: 0x0 } + - { offsetInCU: 0x747, offset: 0x55E44, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x62A50, symBinAddr: 0x2AB08, symSize: 0x0 } + - { offsetInCU: 0x764, offset: 0x55E61, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x62A58, symBinAddr: 0x2AB10, symSize: 0x0 } + - { offsetInCU: 0xDA0, offset: 0x5649D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0xD20, symSize: 0xE } + - { offsetInCU: 0xDEC, offset: 0x564E9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0xE, symBinAddr: 0xD2E, symSize: 0x5B } + - { offsetInCU: 0xE33, offset: 0x56530, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x69, symBinAddr: 0xD89, symSize: 0x3F } + - { offsetInCU: 0xE66, offset: 0x56563, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xA8, symBinAddr: 0xDC8, symSize: 0x5F } + - { offsetInCU: 0xF33, offset: 0x56630, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x107, symBinAddr: 0xE27, symSize: 0xE } + - { offsetInCU: 0xF69, offset: 0x56666, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x115, symBinAddr: 0xE35, symSize: 0xA } + - { offsetInCU: 0xF9F, offset: 0x5669C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x11F, symBinAddr: 0xE3F, symSize: 0x31 } + - { offsetInCU: 0x1001, offset: 0x566FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x150, symBinAddr: 0xE70, symSize: 0x20 } + - { offsetInCU: 0x1044, offset: 0x56741, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x170, symBinAddr: 0xE90, symSize: 0x12 } + - { offsetInCU: 0x107A, offset: 0x56777, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x182, symBinAddr: 0xEA2, symSize: 0xA } + - { offsetInCU: 0x10B0, offset: 0x567AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x18C, symBinAddr: 0xEAC, symSize: 0x31 } + - { offsetInCU: 0x1112, offset: 0x5680F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1BD, symBinAddr: 0xEDD, symSize: 0xA } + - { offsetInCU: 0x1153, offset: 0x56850, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1C7, symBinAddr: 0xEE7, symSize: 0x12 } + - { offsetInCU: 0x1185, offset: 0x56882, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x1D9, symBinAddr: 0xEF9, symSize: 0xE } + - { offsetInCU: 0x11D2, offset: 0x568CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x1E7, symBinAddr: 0xF07, symSize: 0x163 } + - { offsetInCU: 0x131C, offset: 0x56A19, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x34A, symBinAddr: 0x106A, symSize: 0x4E } + - { offsetInCU: 0x13D0, offset: 0x56ACD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x398, symBinAddr: 0x10B8, symSize: 0x77 } + - { offsetInCU: 0x14B4, offset: 0x56BB1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x40F, symBinAddr: 0x112F, symSize: 0x28 } + - { offsetInCU: 0x1517, offset: 0x56C14, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x437, symBinAddr: 0x1157, symSize: 0x5D } + - { offsetInCU: 0x15EA, offset: 0x56CE7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x494, symBinAddr: 0x11B4, symSize: 0x27F } + - { offsetInCU: 0x1805, offset: 0x56F02, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x713, symBinAddr: 0x1433, symSize: 0xC0 } + - { offsetInCU: 0x18E3, offset: 0x56FE0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7D3, symBinAddr: 0x14F3, symSize: 0x28 } + - { offsetInCU: 0x1917, offset: 0x57014, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7FB, symBinAddr: 0x151B, symSize: 0xE } + - { offsetInCU: 0x1964, offset: 0x57061, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x809, symBinAddr: 0x1529, symSize: 0x91 } + - { offsetInCU: 0x19F8, offset: 0x570F5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x89A, symBinAddr: 0x15BA, symSize: 0x10 } + - { offsetInCU: 0x1A2C, offset: 0x57129, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x8AA, symBinAddr: 0x15CA, symSize: 0xE } + - { offsetInCU: 0x1A79, offset: 0x57176, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8B8, symBinAddr: 0x15D8, symSize: 0x73 } + - { offsetInCU: 0x1B0B, offset: 0x57208, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x92B, symBinAddr: 0x164B, symSize: 0x10 } + - { offsetInCU: 0x1B3F, offset: 0x5723C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x93B, symBinAddr: 0x165B, symSize: 0x19 } + - { offsetInCU: 0x1B9B, offset: 0x57298, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x954, symBinAddr: 0x1674, symSize: 0x19 } + - { offsetInCU: 0x1C0D, offset: 0x5730A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x96D, symBinAddr: 0x168D, symSize: 0x15 } + - { offsetInCU: 0x1C8B, offset: 0x57388, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x982, symBinAddr: 0x16A2, symSize: 0x20F } + - { offsetInCU: 0x1EC6, offset: 0x575C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB91, symBinAddr: 0x18B1, symSize: 0xC7 } + - { offsetInCU: 0x1F7E, offset: 0x5767B, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xC58, symBinAddr: 0x1978, symSize: 0x18 } + - { offsetInCU: 0x1FD3, offset: 0x576D0, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xC70, symBinAddr: 0x1990, symSize: 0xF } + - { offsetInCU: 0x2006, offset: 0x57703, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xC7F, symBinAddr: 0x199F, symSize: 0xF } + - { offsetInCU: 0x2031, offset: 0x5772E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xC8E, symBinAddr: 0x19AE, symSize: 0x27 } + - { offsetInCU: 0x20CD, offset: 0x577CA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xCB5, symBinAddr: 0x19D5, symSize: 0x22 } + - { offsetInCU: 0x217C, offset: 0x57879, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xCD7, symBinAddr: 0x19F7, symSize: 0x20D } + - { offsetInCU: 0x235D, offset: 0x57A5A, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xEE4, symBinAddr: 0x1C04, symSize: 0x16 } + - { offsetInCU: 0x2382, offset: 0x57A7F, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xEFA, symBinAddr: 0x1C1A, symSize: 0xF } + - { offsetInCU: 0x23AD, offset: 0x57AAA, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xF09, symBinAddr: 0x1C29, symSize: 0x227 } + - { offsetInCU: 0x25A9, offset: 0x57CA6, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0x1130, symBinAddr: 0x1E50, symSize: 0x42 } + - { offsetInCU: 0x25DE, offset: 0x57CDB, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1172, symBinAddr: 0x1E92, symSize: 0x35 } + - { offsetInCU: 0x2609, offset: 0x57D06, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x11A7, symBinAddr: 0x1EC7, symSize: 0xDE } + - { offsetInCU: 0x26A2, offset: 0x57D9F, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x1285, symBinAddr: 0x1FA5, symSize: 0x32 } + - { offsetInCU: 0x2701, offset: 0x57DFE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x12B7, symBinAddr: 0x1FD7, symSize: 0x30 } + - { offsetInCU: 0x2736, offset: 0x57E33, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x12E7, symBinAddr: 0x2007, symSize: 0x27 } + - { offsetInCU: 0x2761, offset: 0x57E5E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x130E, symBinAddr: 0x202E, symSize: 0xC9 } + - { offsetInCU: 0x286E, offset: 0x57F6B, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x13D7, symBinAddr: 0x20F7, symSize: 0x19 } + - { offsetInCU: 0x28C1, offset: 0x57FBE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x13F0, symBinAddr: 0x2110, symSize: 0x25 } + - { offsetInCU: 0x2902, offset: 0x57FFF, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x1415, symBinAddr: 0x2135, symSize: 0x25 } + - { offsetInCU: 0x2939, offset: 0x58036, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x143A, symBinAddr: 0x215A, symSize: 0x14 } + - { offsetInCU: 0x299D, offset: 0x5809A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x144E, symBinAddr: 0x216E, symSize: 0x17 } + - { offsetInCU: 0x2A01, offset: 0x580FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x1465, symBinAddr: 0x2185, symSize: 0xDC } + - { offsetInCU: 0x2AA6, offset: 0x581A3, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x1541, symBinAddr: 0x2261, symSize: 0x1E } + - { offsetInCU: 0x2AF9, offset: 0x581F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x155F, symBinAddr: 0x227F, symSize: 0xC9 } + - { offsetInCU: 0x2BF3, offset: 0x582F0, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1628, symBinAddr: 0x2348, symSize: 0x19 } + - { offsetInCU: 0x2C46, offset: 0x58343, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x1641, symBinAddr: 0x2361, symSize: 0x14 } + - { offsetInCU: 0x2CAA, offset: 0x583A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x1655, symBinAddr: 0x2375, symSize: 0x17 } + - { offsetInCU: 0x2D0E, offset: 0x5840B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x166C, symBinAddr: 0x238C, symSize: 0x161 } + - { offsetInCU: 0x2DDC, offset: 0x584D9, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x17CD, symBinAddr: 0x24ED, symSize: 0x4B } + - { offsetInCU: 0x2E4C, offset: 0x58549, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1818, symBinAddr: 0x2538, symSize: 0xFF } + - { offsetInCU: 0x2FA7, offset: 0x586A4, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1917, symBinAddr: 0x2637, symSize: 0x31 } + - { offsetInCU: 0x300B, offset: 0x58708, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x1948, symBinAddr: 0x2668, symSize: 0x2C } + - { offsetInCU: 0x3058, offset: 0x58755, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x1974, symBinAddr: 0x2694, symSize: 0x2C } + - { offsetInCU: 0x309B, offset: 0x58798, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x19A0, symBinAddr: 0x26C0, symSize: 0x15 } + - { offsetInCU: 0x3116, offset: 0x58813, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x19B5, symBinAddr: 0x26D5, symSize: 0x18 } + - { offsetInCU: 0x3191, offset: 0x5888E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x19CD, symBinAddr: 0x26ED, symSize: 0xA6 } + - { offsetInCU: 0x3212, offset: 0x5890F, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x1A73, symBinAddr: 0x2793, symSize: 0x1C } + - { offsetInCU: 0x326D, offset: 0x5896A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x1A8F, symBinAddr: 0x27AF, symSize: 0x82 } + - { offsetInCU: 0x330F, offset: 0x58A0C, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1B11, symBinAddr: 0x2831, symSize: 0x1E } + - { offsetInCU: 0x3364, offset: 0x58A61, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x1B2F, symBinAddr: 0x284F, symSize: 0xA6 } + - { offsetInCU: 0x33E5, offset: 0x58AE2, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1BD5, symBinAddr: 0x28F5, symSize: 0x1A } + - { offsetInCU: 0x3440, offset: 0x58B3D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1BEF, symBinAddr: 0x290F, symSize: 0x82 } + - { offsetInCU: 0x34E2, offset: 0x58BDF, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1C71, symBinAddr: 0x2991, symSize: 0x21 } + - { offsetInCU: 0x3537, offset: 0x58C34, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1C92, symBinAddr: 0x29B2, symSize: 0xA6 } + - { offsetInCU: 0x35B8, offset: 0x58CB5, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1D38, symBinAddr: 0x2A58, symSize: 0x1A } + - { offsetInCU: 0x3613, offset: 0x58D10, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1D52, symBinAddr: 0x2A72, symSize: 0x82 } + - { offsetInCU: 0x36B5, offset: 0x58DB2, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1DD4, symBinAddr: 0x2AF4, symSize: 0x21 } + - { offsetInCU: 0x370A, offset: 0x58E07, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1DF5, symBinAddr: 0x2B15, symSize: 0xDD } + - { offsetInCU: 0x37B4, offset: 0x58EB1, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1ED2, symBinAddr: 0x2BF2, symSize: 0x1F } + - { offsetInCU: 0x380F, offset: 0x58F0C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1EF1, symBinAddr: 0x2C11, symSize: 0x84 } + - { offsetInCU: 0x38B1, offset: 0x58FAE, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1F75, symBinAddr: 0x2C95, symSize: 0x17 } + - { offsetInCU: 0x3906, offset: 0x59003, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1F8C, symBinAddr: 0x2CAC, symSize: 0x10D } + - { offsetInCU: 0x39C9, offset: 0x590C6, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x2099, symBinAddr: 0x2DB9, symSize: 0x21 } + - { offsetInCU: 0x3A1C, offset: 0x59119, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x20BA, symBinAddr: 0x2DDA, symSize: 0xAF } + - { offsetInCU: 0x3AFF, offset: 0x591FC, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x2169, symBinAddr: 0x2E89, symSize: 0x27 } + - { offsetInCU: 0x3B52, offset: 0x5924F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x2190, symBinAddr: 0x2EB0, symSize: 0x19 } + - { offsetInCU: 0x3BD5, offset: 0x592D2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x21A9, symBinAddr: 0x2EC9, symSize: 0x23C } + - { offsetInCU: 0x3D9B, offset: 0x59498, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x23E5, symBinAddr: 0x3105, symSize: 0x20F } + - { offsetInCU: 0x4102, offset: 0x597FF, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.163', symObjAddr: 0x25F4, symBinAddr: 0x3314, symSize: 0x5CA } + - { offsetInCU: 0x466C, offset: 0x59D69, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x2BBE, symBinAddr: 0x38DE, symSize: 0x84 } + - { offsetInCU: 0x474F, offset: 0x59E4C, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x2C42, symBinAddr: 0x3962, symSize: 0x2E } + - { offsetInCU: 0x4784, offset: 0x59E81, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x2C70, symBinAddr: 0x3990, symSize: 0x22 } + - { offsetInCU: 0x47AF, offset: 0x59EAC, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.192', symObjAddr: 0x2C92, symBinAddr: 0x39B2, symSize: 0xD } + - { offsetInCU: 0x47FB, offset: 0x59EF8, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.194', symObjAddr: 0x2C9F, symBinAddr: 0x39BF, symSize: 0x84 } + - { offsetInCU: 0x48CB, offset: 0x59FC8, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2D23, symBinAddr: 0x3A43, symSize: 0xD } + - { offsetInCU: 0x4917, offset: 0x5A014, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2D30, symBinAddr: 0x3A50, symSize: 0x68 } + - { offsetInCU: 0x4958, offset: 0x5A055, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2D98, symBinAddr: 0x3AB8, symSize: 0x48 } + - { offsetInCU: 0x499B, offset: 0x5A098, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2DE0, symBinAddr: 0x3B00, symSize: 0x217 } + - { offsetInCU: 0x4B1C, offset: 0x5A219, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2FF7, symBinAddr: 0x3D17, symSize: 0x20F } + - { offsetInCU: 0x4DB4, offset: 0x5A4B1, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x3206, symBinAddr: 0x3F26, symSize: 0x3F7 } + - { offsetInCU: 0x513C, offset: 0x5A839, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x35FD, symBinAddr: 0x431D, symSize: 0x7F } + - { offsetInCU: 0x520C, offset: 0x5A909, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x367C, symBinAddr: 0x439C, symSize: 0xD } + - { offsetInCU: 0x5258, offset: 0x5A955, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x3689, symBinAddr: 0x43A9, symSize: 0x291 } + - { offsetInCU: 0x5543, offset: 0x5AC40, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x391A, symBinAddr: 0x463A, symSize: 0x173 } + - { offsetInCU: 0x56CE, offset: 0x5ADCB, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3A8D, symBinAddr: 0x47AD, symSize: 0x32 } + - { offsetInCU: 0x5729, offset: 0x5AE26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x3ABF, symBinAddr: 0x47DF, symSize: 0x23A } + - { offsetInCU: 0x5984, offset: 0x5B081, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x3CF9, symBinAddr: 0x4A19, symSize: 0x179 } + - { offsetInCU: 0x5B10, offset: 0x5B20D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x3E72, symBinAddr: 0x4B92, symSize: 0x1A } + - { offsetInCU: 0x5BA0, offset: 0x5B29D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x3E8C, symBinAddr: 0x4BAC, symSize: 0x1B } + - { offsetInCU: 0x5C4F, offset: 0x5B34C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x3EA7, symBinAddr: 0x4BC7, symSize: 0x238 } + - { offsetInCU: 0x5E8D, offset: 0x5B58A, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x40DF, symBinAddr: 0x4DFF, symSize: 0x1E5 } + - { offsetInCU: 0x6074, offset: 0x5B771, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x42C4, symBinAddr: 0x4FE4, symSize: 0x3DD } + - { offsetInCU: 0x6391, offset: 0x5BA8E, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x46A1, symBinAddr: 0x53C1, symSize: 0x36 } + - { offsetInCU: 0x63FD, offset: 0x5BAFA, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.247', symObjAddr: 0x46D7, symBinAddr: 0x53F7, symSize: 0x3A } + - { offsetInCU: 0x647A, offset: 0x5BB77, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x4711, symBinAddr: 0x5431, symSize: 0x42 } + - { offsetInCU: 0x64BB, offset: 0x5BBB8, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x4753, symBinAddr: 0x5473, symSize: 0x2E } + - { offsetInCU: 0x64F2, offset: 0x5BBEF, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x4781, symBinAddr: 0x54A1, symSize: 0x5D } + - { offsetInCU: 0x653F, offset: 0x5BC3C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x47DE, symBinAddr: 0x54FE, symSize: 0x1F } + - { offsetInCU: 0x65C0, offset: 0x5BCBD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x47FD, symBinAddr: 0x551D, symSize: 0x17 } + - { offsetInCU: 0x6658, offset: 0x5BD55, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x4814, symBinAddr: 0x5534, symSize: 0x231 } + - { offsetInCU: 0x6881, offset: 0x5BF7E, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4A45, symBinAddr: 0x5765, symSize: 0x205 } + - { offsetInCU: 0x6AAD, offset: 0x5C1AA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x4C4A, symBinAddr: 0x596A, symSize: 0x1C6 } + - { offsetInCU: 0x6BEE, offset: 0x5C2EB, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x4E10, symBinAddr: 0x5B30, symSize: 0x168 } + - { offsetInCU: 0x6D4C, offset: 0x5C449, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4F78, symBinAddr: 0x5C98, symSize: 0x56 } + - { offsetInCU: 0x6D8D, offset: 0x5C48A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4FCE, symBinAddr: 0x5CEE, symSize: 0x41 } + - { offsetInCU: 0x6DC4, offset: 0x5C4C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x500F, symBinAddr: 0x5D2F, symSize: 0x172 } + - { offsetInCU: 0x6EE1, offset: 0x5C5DE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x5181, symBinAddr: 0x5EA1, symSize: 0x111 } + - { offsetInCU: 0x7084, offset: 0x5C781, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x5292, symBinAddr: 0x5FB2, symSize: 0x60 } + - { offsetInCU: 0x7130, offset: 0x5C82D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x52F2, symBinAddr: 0x6012, symSize: 0x11D } + - { offsetInCU: 0x72B8, offset: 0x5C9B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x540F, symBinAddr: 0x612F, symSize: 0xEB } + - { offsetInCU: 0x740D, offset: 0x5CB0A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x54FA, symBinAddr: 0x621A, symSize: 0x11B } + - { offsetInCU: 0x7549, offset: 0x5CC46, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x5615, symBinAddr: 0x6335, symSize: 0xFE } + - { offsetInCU: 0x76BA, offset: 0x5CDB7, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x5713, symBinAddr: 0x6433, symSize: 0x115 } + - { offsetInCU: 0x77ED, offset: 0x5CEEA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x5828, symBinAddr: 0x6548, symSize: 0x45 } + - { offsetInCU: 0x7848, offset: 0x5CF45, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x586D, symBinAddr: 0x658D, symSize: 0x24 } + - { offsetInCU: 0x7897, offset: 0x5CF94, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5891, symBinAddr: 0x65B1, symSize: 0x1E0 } + - { offsetInCU: 0x7AFB, offset: 0x5D1F8, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5A71, symBinAddr: 0x6791, symSize: 0x24 } + - { offsetInCU: 0x7B7C, offset: 0x5D279, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5A95, symBinAddr: 0x67B5, symSize: 0x169 } + - { offsetInCU: 0x7D44, offset: 0x5D441, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x5BFE, symBinAddr: 0x691E, symSize: 0x90 } + - { offsetInCU: 0x7E4C, offset: 0x5D549, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0x101CA, symBinAddr: 0x1DA2A, symSize: 0xBA } + - { offsetInCU: 0x7E64, offset: 0x5D561, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5C8E, symBinAddr: 0x69AE, symSize: 0x32 } + - { offsetInCU: 0x7EC3, offset: 0x5D5C0, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x5CC0, symBinAddr: 0x69E0, symSize: 0x36 } + - { offsetInCU: 0x7F33, offset: 0x5D630, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x5CF6, symBinAddr: 0x6A16, symSize: 0x369 } + - { offsetInCU: 0x8283, offset: 0x5D980, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x605F, symBinAddr: 0x6D7F, symSize: 0xA4 } + - { offsetInCU: 0x831F, offset: 0x5DA1C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x6103, symBinAddr: 0x6E23, symSize: 0xAA } + - { offsetInCU: 0x83C6, offset: 0x5DAC3, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x61AD, symBinAddr: 0x6ECD, symSize: 0xAB } + - { offsetInCU: 0x848D, offset: 0x5DB8A, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x6258, symBinAddr: 0x6F78, symSize: 0x25 } + - { offsetInCU: 0x84D7, offset: 0x5DBD4, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x627D, symBinAddr: 0x6F9D, symSize: 0x17 } + - { offsetInCU: 0x8500, offset: 0x5DBFD, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x6294, symBinAddr: 0x6FB4, symSize: 0x4B } + - { offsetInCU: 0x854D, offset: 0x5DC4A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x62DF, symBinAddr: 0x6FFF, symSize: 0x33 } + - { offsetInCU: 0x859C, offset: 0x5DC99, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.325', symObjAddr: 0x6312, symBinAddr: 0x7032, symSize: 0xA6 } + - { offsetInCU: 0x8652, offset: 0x5DD4F, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.326', symObjAddr: 0x63B8, symBinAddr: 0x70D8, symSize: 0x25 } + - { offsetInCU: 0x869C, offset: 0x5DD99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x63DD, symBinAddr: 0x70FD, symSize: 0x1C } + - { offsetInCU: 0x86FA, offset: 0x5DDF7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x63F9, symBinAddr: 0x7119, symSize: 0xF3 } + - { offsetInCU: 0x8812, offset: 0x5DF0F, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x64EC, symBinAddr: 0x720C, symSize: 0x4B } + - { offsetInCU: 0x8898, offset: 0x5DF95, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x6537, symBinAddr: 0x7257, symSize: 0x12 } + - { offsetInCU: 0x88C1, offset: 0x5DFBE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x6549, symBinAddr: 0x7269, symSize: 0xE } + - { offsetInCU: 0x88E0, offset: 0x5DFDD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x6557, symBinAddr: 0x7277, symSize: 0x67 } + - { offsetInCU: 0x8955, offset: 0x5E052, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x65BE, symBinAddr: 0x72DE, symSize: 0x59 } + - { offsetInCU: 0x89D2, offset: 0x5E0CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x6617, symBinAddr: 0x7337, symSize: 0x445 } + - { offsetInCU: 0x8E32, offset: 0x5E52F, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x6A5C, symBinAddr: 0x777C, symSize: 0x37 } + - { offsetInCU: 0x8E9E, offset: 0x5E59B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6A93, symBinAddr: 0x77B3, symSize: 0x7F } + - { offsetInCU: 0x8F2F, offset: 0x5E62C, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6B12, symBinAddr: 0x7832, symSize: 0x37 } + - { offsetInCU: 0x8F84, offset: 0x5E681, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x6B49, symBinAddr: 0x7869, symSize: 0x4B } + - { offsetInCU: 0x8FCE, offset: 0x5E6CB, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x6B94, symBinAddr: 0x78B4, symSize: 0x41 } + - { offsetInCU: 0x901C, offset: 0x5E719, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x6BD5, symBinAddr: 0x78F5, symSize: 0x4B } + - { offsetInCU: 0x9066, offset: 0x5E763, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6C20, symBinAddr: 0x7940, symSize: 0x41 } + - { offsetInCU: 0x90B4, offset: 0x5E7B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x6C61, symBinAddr: 0x7981, symSize: 0x4B } + - { offsetInCU: 0x90FE, offset: 0x5E7FB, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x6CAC, symBinAddr: 0x79CC, symSize: 0x41 } + - { offsetInCU: 0x914C, offset: 0x5E849, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x6CED, symBinAddr: 0x7A0D, symSize: 0x8D } + - { offsetInCU: 0x91CB, offset: 0x5E8C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x6D7A, symBinAddr: 0x7A9A, symSize: 0xDE } + - { offsetInCU: 0x9272, offset: 0x5E96F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6E58, symBinAddr: 0x7B78, symSize: 0xDE } + - { offsetInCU: 0x9319, offset: 0x5EA16, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6F36, symBinAddr: 0x7C56, symSize: 0xF3 } + - { offsetInCU: 0x93EE, offset: 0x5EAEB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x7029, symBinAddr: 0x7D49, symSize: 0x11B } + - { offsetInCU: 0x94D3, offset: 0x5EBD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x7144, symBinAddr: 0x7E64, symSize: 0x103 } + - { offsetInCU: 0x956D, offset: 0x5EC6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x7247, symBinAddr: 0x7F67, symSize: 0xBE } + - { offsetInCU: 0x95FC, offset: 0x5ECF9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x7305, symBinAddr: 0x8025, symSize: 0x118 } + - { offsetInCU: 0x96B6, offset: 0x5EDB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x741D, symBinAddr: 0x813D, symSize: 0x118 } + - { offsetInCU: 0x9770, offset: 0x5EE6D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x7535, symBinAddr: 0x8255, symSize: 0x118 } + - { offsetInCU: 0x982A, offset: 0x5EF27, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x764D, symBinAddr: 0x836D, symSize: 0x118 } + - { offsetInCU: 0x98E4, offset: 0x5EFE1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x7765, symBinAddr: 0x8485, symSize: 0x118 } + - { offsetInCU: 0x999E, offset: 0x5F09B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x787D, symBinAddr: 0x859D, symSize: 0xDE } + - { offsetInCU: 0x9A45, offset: 0x5F142, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x795B, symBinAddr: 0x867B, symSize: 0xDD } + - { offsetInCU: 0x9AEF, offset: 0x5F1EC, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x7A38, symBinAddr: 0x8758, symSize: 0x1C } + - { offsetInCU: 0x9B4A, offset: 0x5F247, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7A54, symBinAddr: 0x8774, symSize: 0xDD } + - { offsetInCU: 0x9BF4, offset: 0x5F2F1, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x7B31, symBinAddr: 0x8851, symSize: 0x1C } + - { offsetInCU: 0x9C4F, offset: 0x5F34C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7B4D, symBinAddr: 0x886D, symSize: 0x10B } + - { offsetInCU: 0x9CF4, offset: 0x5F3F1, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7C58, symBinAddr: 0x8978, symSize: 0x66 } + - { offsetInCU: 0x9D5F, offset: 0x5F45C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x7CBE, symBinAddr: 0x89DE, symSize: 0xDE } + - { offsetInCU: 0x9DF4, offset: 0x5F4F1, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x7D9C, symBinAddr: 0x8ABC, symSize: 0x49 } + - { offsetInCU: 0x9E53, offset: 0x5F550, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x7DE5, symBinAddr: 0x8B05, symSize: 0xFC } + - { offsetInCU: 0x9EF8, offset: 0x5F5F5, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x7EE1, symBinAddr: 0x8C01, symSize: 0x55 } + - { offsetInCU: 0x9F63, offset: 0x5F660, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7F36, symBinAddr: 0x8C56, symSize: 0x10B } + - { offsetInCU: 0xA008, offset: 0x5F705, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x8041, symBinAddr: 0x8D61, symSize: 0x66 } + - { offsetInCU: 0xA073, offset: 0x5F770, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x80A7, symBinAddr: 0x8DC7, symSize: 0xDE } + - { offsetInCU: 0xA108, offset: 0x5F805, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x8185, symBinAddr: 0x8EA5, symSize: 0x49 } + - { offsetInCU: 0xA167, offset: 0x5F864, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x81CE, symBinAddr: 0x8EEE, symSize: 0x2E } + - { offsetInCU: 0xA1AB, offset: 0x5F8A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x81FC, symBinAddr: 0x8F1C, symSize: 0x2E } + - { offsetInCU: 0xA1EF, offset: 0x5F8EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x822A, symBinAddr: 0x8F4A, symSize: 0x1E } + - { offsetInCU: 0xA231, offset: 0x5F92E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x8248, symBinAddr: 0x8F68, symSize: 0x1E } + - { offsetInCU: 0xA273, offset: 0x5F970, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x8266, symBinAddr: 0x8F86, symSize: 0x2E } + - { offsetInCU: 0xA2B7, offset: 0x5F9B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x8294, symBinAddr: 0x8FB4, symSize: 0x2E } + - { offsetInCU: 0xA2FB, offset: 0x5F9F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x82C2, symBinAddr: 0x8FE2, symSize: 0x1E } + - { offsetInCU: 0xA33D, offset: 0x5FA3A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x82E0, symBinAddr: 0x9000, symSize: 0x1E } + - { offsetInCU: 0xA37F, offset: 0x5FA7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x82FE, symBinAddr: 0x901E, symSize: 0x8D } + - { offsetInCU: 0xA42E, offset: 0x5FB2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x838B, symBinAddr: 0x90AB, symSize: 0x6A } + - { offsetInCU: 0xA4DD, offset: 0x5FBDA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x83F5, symBinAddr: 0x9115, symSize: 0x81 } + - { offsetInCU: 0xA594, offset: 0x5FC91, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x8476, symBinAddr: 0x9196, symSize: 0x5E } + - { offsetInCU: 0xA64B, offset: 0x5FD48, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x84D4, symBinAddr: 0x91F4, symSize: 0x9C } + - { offsetInCU: 0xA6FD, offset: 0x5FDFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x8570, symBinAddr: 0x9290, symSize: 0x8D } + - { offsetInCU: 0xA7CD, offset: 0x5FECA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x85FD, symBinAddr: 0x931D, symSize: 0x6A } + - { offsetInCU: 0xA87C, offset: 0x5FF79, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x8667, symBinAddr: 0x9387, symSize: 0x81 } + - { offsetInCU: 0xA933, offset: 0x60030, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x86E8, symBinAddr: 0x9408, symSize: 0x5E } + - { offsetInCU: 0xA9EA, offset: 0x600E7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x8746, symBinAddr: 0x9466, symSize: 0x10D } + - { offsetInCU: 0xAAAD, offset: 0x601AA, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x8853, symBinAddr: 0x9573, symSize: 0xEE } + - { offsetInCU: 0xABDA, offset: 0x602D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x8941, symBinAddr: 0x9661, symSize: 0x10D } + - { offsetInCU: 0xAC9D, offset: 0x6039A, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8A4E, symBinAddr: 0x976E, symSize: 0xEE } + - { offsetInCU: 0xADCA, offset: 0x604C7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8B3C, symBinAddr: 0x985C, symSize: 0xAB } + - { offsetInCU: 0xAE4B, offset: 0x60548, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x8BE7, symBinAddr: 0x9907, symSize: 0x1A } + - { offsetInCU: 0xAEA6, offset: 0x605A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x8C01, symBinAddr: 0x9921, symSize: 0xAB } + - { offsetInCU: 0xAF27, offset: 0x60624, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x8CAC, symBinAddr: 0x99CC, symSize: 0x1A } + - { offsetInCU: 0xAF82, offset: 0x6067F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x8CC6, symBinAddr: 0x99E6, symSize: 0xA8 } + - { offsetInCU: 0xB003, offset: 0x60700, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8D6E, symBinAddr: 0x9A8E, symSize: 0x1D } + - { offsetInCU: 0xB05E, offset: 0x6075B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x8D8B, symBinAddr: 0x9AAB, symSize: 0x4AC } + - { offsetInCU: 0xB4F4, offset: 0x60BF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x9237, symBinAddr: 0x9F57, symSize: 0xED } + - { offsetInCU: 0xB5A8, offset: 0x60CA5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x9324, symBinAddr: 0xA044, symSize: 0x211 } + - { offsetInCU: 0xB6DC, offset: 0x60DD9, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x9535, symBinAddr: 0xA255, symSize: 0x6F } + - { offsetInCU: 0xB770, offset: 0x60E6D, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x95A4, symBinAddr: 0xA2C4, symSize: 0x50 } + - { offsetInCU: 0xB7F6, offset: 0x60EF3, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x95F4, symBinAddr: 0xA314, symSize: 0x1C } + - { offsetInCU: 0xB853, offset: 0x60F50, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x9610, symBinAddr: 0xA330, symSize: 0x17 } + - { offsetInCU: 0xB87C, offset: 0x60F79, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x9627, symBinAddr: 0xA347, symSize: 0x13 } + - { offsetInCU: 0xB89B, offset: 0x60F98, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.433', symObjAddr: 0x963A, symBinAddr: 0xA35A, symSize: 0x1C } + - { offsetInCU: 0xB8F8, offset: 0x60FF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x9656, symBinAddr: 0xA376, symSize: 0x13 } + - { offsetInCU: 0xB92E, offset: 0x6102B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x9669, symBinAddr: 0xA389, symSize: 0x13 } + - { offsetInCU: 0xB964, offset: 0x61061, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x967C, symBinAddr: 0xA39C, symSize: 0x26 } + - { offsetInCU: 0xB9B5, offset: 0x610B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x96A2, symBinAddr: 0xA3C2, symSize: 0x26 } + - { offsetInCU: 0xB9F7, offset: 0x610F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x96C8, symBinAddr: 0xA3E8, symSize: 0x26 } + - { offsetInCU: 0xBA39, offset: 0x61136, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x96EE, symBinAddr: 0xA40E, symSize: 0x26 } + - { offsetInCU: 0xBA7B, offset: 0x61178, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x9714, symBinAddr: 0xA434, symSize: 0x1F } + - { offsetInCU: 0xBB04, offset: 0x61201, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x9733, symBinAddr: 0xA453, symSize: 0x1B } + - { offsetInCU: 0xBBAF, offset: 0x612AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x974E, symBinAddr: 0xA46E, symSize: 0xFF } + - { offsetInCU: 0xBCF8, offset: 0x613F5, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x984D, symBinAddr: 0xA56D, symSize: 0x60 } + - { offsetInCU: 0xBD63, offset: 0x61460, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x98AD, symBinAddr: 0xA5CD, symSize: 0x1D } + - { offsetInCU: 0xBDFD, offset: 0x614FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x98CA, symBinAddr: 0xA5EA, symSize: 0x108 } + - { offsetInCU: 0xBF4E, offset: 0x6164B, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x99D2, symBinAddr: 0xA6F2, symSize: 0x60 } + - { offsetInCU: 0xBFB9, offset: 0x616B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x9A32, symBinAddr: 0xA752, symSize: 0x27 } + - { offsetInCU: 0xC057, offset: 0x61754, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x9A59, symBinAddr: 0xA779, symSize: 0x22 } + - { offsetInCU: 0xC11B, offset: 0x61818, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x9A7B, symBinAddr: 0xA79B, symSize: 0x27 } + - { offsetInCU: 0xC1CC, offset: 0x618C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x9AA2, symBinAddr: 0xA7C2, symSize: 0x150 } + - { offsetInCU: 0xC392, offset: 0x61A8F, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x9BF2, symBinAddr: 0xA912, symSize: 0x60 } + - { offsetInCU: 0xC3FD, offset: 0x61AFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x9C52, symBinAddr: 0xA972, symSize: 0xF0 } + - { offsetInCU: 0xC4DA, offset: 0x61BD7, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x9D42, symBinAddr: 0xAA62, symSize: 0x12B } + - { offsetInCU: 0xC5A9, offset: 0x61CA6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x9E6D, symBinAddr: 0xAB8D, symSize: 0x1C1 } + - { offsetInCU: 0xC6DA, offset: 0x61DD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0xA02E, symBinAddr: 0xAD4E, symSize: 0x216 } + - { offsetInCU: 0xC904, offset: 0x62001, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0xA244, symBinAddr: 0xAF64, symSize: 0x72 } + - { offsetInCU: 0xC9B1, offset: 0x620AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0xA2B6, symBinAddr: 0xAFD6, symSize: 0xC0F } + - { offsetInCU: 0xD1DA, offset: 0x628D7, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0xAEC5, symBinAddr: 0xBBE5, symSize: 0x3B } + - { offsetInCU: 0xD25B, offset: 0x62958, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0xAF00, symBinAddr: 0xBC20, symSize: 0x25C } + - { offsetInCU: 0xD468, offset: 0x62B65, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xB15C, symBinAddr: 0xBE7C, symSize: 0x33 } + - { offsetInCU: 0xD4C7, offset: 0x62BC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xB18F, symBinAddr: 0xBEAF, symSize: 0x1E7 } + - { offsetInCU: 0xD703, offset: 0x62E00, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xB376, symBinAddr: 0xC096, symSize: 0x3F } + - { offsetInCU: 0xD784, offset: 0x62E81, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xB3B5, symBinAddr: 0xC0D5, symSize: 0x33 } + - { offsetInCU: 0xD7DD, offset: 0x62EDA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xB3E8, symBinAddr: 0xC108, symSize: 0x50 } + - { offsetInCU: 0xD837, offset: 0x62F34, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xB438, symBinAddr: 0xC158, symSize: 0x102 } + - { offsetInCU: 0xD931, offset: 0x6302E, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xB53A, symBinAddr: 0xC25A, symSize: 0x4B } + - { offsetInCU: 0xD9B7, offset: 0x630B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xB585, symBinAddr: 0xC2A5, symSize: 0x103 } + - { offsetInCU: 0xDAD1, offset: 0x631CE, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xB688, symBinAddr: 0xC3A8, symSize: 0x90 } + - { offsetInCU: 0xDB77, offset: 0x63274, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xB718, symBinAddr: 0xC438, symSize: 0x34 } + - { offsetInCU: 0xDBD6, offset: 0x632D3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xB74C, symBinAddr: 0xC46C, symSize: 0xC8 } + - { offsetInCU: 0xDCB4, offset: 0x633B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xB814, symBinAddr: 0xC534, symSize: 0xE7 } + - { offsetInCU: 0xDDCE, offset: 0x634CB, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xB8FB, symBinAddr: 0xC61B, symSize: 0x60 } + - { offsetInCU: 0xDE39, offset: 0x63536, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xB95B, symBinAddr: 0xC67B, symSize: 0xF0 } + - { offsetInCU: 0xDF16, offset: 0x63613, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xBA4B, symBinAddr: 0xC76B, symSize: 0x139 } + - { offsetInCU: 0xDFF1, offset: 0x636EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xBB84, symBinAddr: 0xC8A4, symSize: 0x164 } + - { offsetInCU: 0xE16B, offset: 0x63868, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xC2FE, symBinAddr: 0xD01E, symSize: 0x2F } + - { offsetInCU: 0xE1B9, offset: 0x638B6, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xC32D, symBinAddr: 0xD04D, symSize: 0x3B } + - { offsetInCU: 0xE23A, offset: 0x63937, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xC368, symBinAddr: 0xD088, symSize: 0xDC } + - { offsetInCU: 0xE318, offset: 0x63A15, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xC444, symBinAddr: 0xD164, symSize: 0x37 } + - { offsetInCU: 0xE388, offset: 0x63A85, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xC47B, symBinAddr: 0xD19B, symSize: 0x50 } + - { offsetInCU: 0xE3E2, offset: 0x63ADF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xC4CB, symBinAddr: 0xD1EB, symSize: 0x102 } + - { offsetInCU: 0xE4DC, offset: 0x63BD9, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xC5CD, symBinAddr: 0xD2ED, symSize: 0x4B } + - { offsetInCU: 0xE562, offset: 0x63C5F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xC618, symBinAddr: 0xD338, symSize: 0x103 } + - { offsetInCU: 0xE67C, offset: 0x63D79, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xC71B, symBinAddr: 0xD43B, symSize: 0x90 } + - { offsetInCU: 0xE722, offset: 0x63E1F, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xC7AB, symBinAddr: 0xD4CB, symSize: 0x34 } + - { offsetInCU: 0xE781, offset: 0x63E7E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xC7DF, symBinAddr: 0xD4FF, symSize: 0xC8 } + - { offsetInCU: 0xE85F, offset: 0x63F5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xC8A7, symBinAddr: 0xD5C7, symSize: 0xDF } + - { offsetInCU: 0xE947, offset: 0x64044, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xC986, symBinAddr: 0xD6A6, symSize: 0x92 } + - { offsetInCU: 0xE9DA, offset: 0x640D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xCA18, symBinAddr: 0xD738, symSize: 0x111 } + - { offsetInCU: 0xEB28, offset: 0x64225, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xCB29, symBinAddr: 0xD849, symSize: 0x273 } + - { offsetInCU: 0xED83, offset: 0x64480, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xCD9C, symBinAddr: 0xDABC, symSize: 0xB0 } + - { offsetInCU: 0xEE6D, offset: 0x6456A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xCE4C, symBinAddr: 0xDB6C, symSize: 0xD4D } + - { offsetInCU: 0xFA31, offset: 0x6512E, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xDB99, symBinAddr: 0xE8B9, symSize: 0x18 } + - { offsetInCU: 0xFAB2, offset: 0x651AF, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xDBB1, symBinAddr: 0xE8D1, symSize: 0x18 } + - { offsetInCU: 0xFB33, offset: 0x65230, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xDBC9, symBinAddr: 0xE8E9, symSize: 0x406 } + - { offsetInCU: 0xFE9B, offset: 0x65598, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xDFCF, symBinAddr: 0xECEF, symSize: 0x33 } + - { offsetInCU: 0xFEFA, offset: 0x655F7, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xE002, symBinAddr: 0xED22, symSize: 0x9C } + - { offsetInCU: 0xFF9A, offset: 0x65697, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xE09E, symBinAddr: 0xEDBE, symSize: 0x80 } + - { offsetInCU: 0x10061, offset: 0x6575E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xE11E, symBinAddr: 0xEE3E, symSize: 0x36 } + - { offsetInCU: 0x1008A, offset: 0x65787, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xE154, symBinAddr: 0xEE74, symSize: 0x26 } + - { offsetInCU: 0x100A9, offset: 0x657A6, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xE17A, symBinAddr: 0xEE9A, symSize: 0x40 } + - { offsetInCU: 0x100DE, offset: 0x657DB, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xE1BA, symBinAddr: 0xEEDA, symSize: 0x30 } + - { offsetInCU: 0x10109, offset: 0x65806, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.607', symObjAddr: 0xE1EA, symBinAddr: 0xEF0A, symSize: 0x43 } + - { offsetInCU: 0x1018A, offset: 0x65887, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xE22D, symBinAddr: 0xEF4D, symSize: 0x56 } + - { offsetInCU: 0x101CB, offset: 0x658C8, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xE283, symBinAddr: 0xEFA3, symSize: 0x3A } + - { offsetInCU: 0x1020E, offset: 0x6590B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xE2BD, symBinAddr: 0xEFDD, symSize: 0x87 } + - { offsetInCU: 0x102AC, offset: 0x659A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xE344, symBinAddr: 0xF064, symSize: 0x10F } + - { offsetInCU: 0x103B5, offset: 0x65AB2, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xE453, symBinAddr: 0xF173, symSize: 0x33 } + - { offsetInCU: 0x10414, offset: 0x65B11, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xE486, symBinAddr: 0xF1A6, symSize: 0x2B } + - { offsetInCU: 0x10461, offset: 0x65B5E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xE4B1, symBinAddr: 0xF1D1, symSize: 0x1F6 } + - { offsetInCU: 0x1067F, offset: 0x65D7C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xE6A7, symBinAddr: 0xF3C7, symSize: 0x6 } + - { offsetInCU: 0x106F6, offset: 0x65DF3, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xE71C, symBinAddr: 0xF43C, symSize: 0x32 } + - { offsetInCU: 0x10740, offset: 0x65E3D, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xE74E, symBinAddr: 0xF46E, symSize: 0x88 } + - { offsetInCU: 0x107AD, offset: 0x65EAA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xE7D6, symBinAddr: 0xF4F6, symSize: 0x64 } + - { offsetInCU: 0x10836, offset: 0x65F33, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xE83A, symBinAddr: 0xF55A, symSize: 0xDA } + - { offsetInCU: 0x108DD, offset: 0x65FDA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xE914, symBinAddr: 0xF634, symSize: 0x1B6 } + - { offsetInCU: 0x10A8C, offset: 0x66189, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xEACA, symBinAddr: 0xF7EA, symSize: 0x64 } + - { offsetInCU: 0x10B7F, offset: 0x6627C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xEB2E, symBinAddr: 0xF84E, symSize: 0x64 } + - { offsetInCU: 0x10C66, offset: 0x66363, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xEB92, symBinAddr: 0xF8B2, symSize: 0x114 } + - { offsetInCU: 0x10D69, offset: 0x66466, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xECA6, symBinAddr: 0xF9C6, symSize: 0x92 } + - { offsetInCU: 0x10E00, offset: 0x664FD, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xED38, symBinAddr: 0xFA58, symSize: 0x15D } + - { offsetInCU: 0x10F67, offset: 0x66664, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xEE95, symBinAddr: 0xFBB5, symSize: 0x15D } + - { offsetInCU: 0x110CE, offset: 0x667CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xEFF2, symBinAddr: 0xFD12, symSize: 0x7E } + - { offsetInCU: 0x11134, offset: 0x66831, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xF070, symBinAddr: 0xFD90, symSize: 0x4A } + - { offsetInCU: 0x11195, offset: 0x66892, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xF0BA, symBinAddr: 0xFDDA, symSize: 0x7F } + - { offsetInCU: 0x111FF, offset: 0x668FC, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xF139, symBinAddr: 0xFE59, symSize: 0x4A } + - { offsetInCU: 0x11260, offset: 0x6695D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xF183, symBinAddr: 0xFEA3, symSize: 0x5F } + - { offsetInCU: 0x1136F, offset: 0x66A6C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xF1E2, symBinAddr: 0xFF02, symSize: 0xA6 } + - { offsetInCU: 0x113F0, offset: 0x66AED, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xF288, symBinAddr: 0xFFA8, symSize: 0x1A } + - { offsetInCU: 0x1144B, offset: 0x66B48, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xF2A2, symBinAddr: 0xFFC2, symSize: 0x82 } + - { offsetInCU: 0x114ED, offset: 0x66BEA, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xF324, symBinAddr: 0x10044, symSize: 0x21 } + - { offsetInCU: 0x11542, offset: 0x66C3F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xF345, symBinAddr: 0x10065, symSize: 0x1C } + - { offsetInCU: 0x115BD, offset: 0x66CBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xF361, symBinAddr: 0x10081, symSize: 0x18 } + - { offsetInCU: 0x11625, offset: 0x66D22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xF379, symBinAddr: 0x10099, symSize: 0x38 } + - { offsetInCU: 0x116A2, offset: 0x66D9F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xF3B1, symBinAddr: 0x100D1, symSize: 0x33 } + - { offsetInCU: 0x116E8, offset: 0x66DE5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xF3E4, symBinAddr: 0x10104, symSize: 0x2B } + - { offsetInCU: 0x1172E, offset: 0x66E2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xF40F, symBinAddr: 0x1012F, symSize: 0x2B } + - { offsetInCU: 0x11774, offset: 0x66E71, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xF43A, symBinAddr: 0x1015A, symSize: 0x48 } + - { offsetInCU: 0x117CE, offset: 0x66ECB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xF482, symBinAddr: 0x101A2, symSize: 0x48 } + - { offsetInCU: 0x11828, offset: 0x66F25, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xF4CA, symBinAddr: 0x101EA, symSize: 0x9B } + - { offsetInCU: 0x118EE, offset: 0x66FEB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xF565, symBinAddr: 0x10285, symSize: 0x3B } + - { offsetInCU: 0x1194E, offset: 0x6704B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xF5A0, symBinAddr: 0x102C0, symSize: 0x3E } + - { offsetInCU: 0x119AE, offset: 0x670AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xF5DE, symBinAddr: 0x102FE, symSize: 0x2C } + - { offsetInCU: 0x119F4, offset: 0x670F1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xF60A, symBinAddr: 0x1032A, symSize: 0x390 } + - { offsetInCU: 0x11DA6, offset: 0x674A3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xF99A, symBinAddr: 0x106BA, symSize: 0x7D } + - { offsetInCU: 0x11E29, offset: 0x67526, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xFA17, symBinAddr: 0x10737, symSize: 0x7D } + - { offsetInCU: 0x11EAD, offset: 0x675AA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xFA94, symBinAddr: 0x107B4, symSize: 0x11 } + - { offsetInCU: 0x11EF0, offset: 0x675ED, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xFAA5, symBinAddr: 0x107C5, symSize: 0x11 } + - { offsetInCU: 0x11F33, offset: 0x67630, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xFAB6, symBinAddr: 0x107D6, symSize: 0x62 } + - { offsetInCU: 0x11FB1, offset: 0x676AE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xFB18, symBinAddr: 0x10838, symSize: 0x67 } + - { offsetInCU: 0x12069, offset: 0x67766, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xFB7F, symBinAddr: 0x1089F, symSize: 0x30 } + - { offsetInCU: 0x120ED, offset: 0x677EA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xFBAF, symBinAddr: 0x108CF, symSize: 0x5E } + - { offsetInCU: 0x12193, offset: 0x67890, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xFC0D, symBinAddr: 0x1092D, symSize: 0x5E } + - { offsetInCU: 0x12239, offset: 0x67936, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xFC6B, symBinAddr: 0x1098B, symSize: 0x18 } + - { offsetInCU: 0x122D1, offset: 0x679CE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xFC83, symBinAddr: 0x109A3, symSize: 0x1D5 } + - { offsetInCU: 0x1247C, offset: 0x67B79, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xFE58, symBinAddr: 0x10B78, symSize: 0x25 } + - { offsetInCU: 0x124C3, offset: 0x67BC0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xFE7D, symBinAddr: 0x10B9D, symSize: 0x25 } + - { offsetInCU: 0x1250A, offset: 0x67C07, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xFEA2, symBinAddr: 0x10BC2, symSize: 0x25 } + - { offsetInCU: 0x12551, offset: 0x67C4E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xFEC7, symBinAddr: 0x10BE7, symSize: 0x25 } + - { offsetInCU: 0x12598, offset: 0x67C95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xFEEC, symBinAddr: 0x10C0C, symSize: 0x123 } + - { offsetInCU: 0x125CC, offset: 0x67CC9, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0x1000F, symBinAddr: 0x10D2F, symSize: 0x7B } + - { offsetInCU: 0x12635, offset: 0x67D32, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0x1008A, symBinAddr: 0x10DAA, symSize: 0x58 } + - { offsetInCU: 0x126A1, offset: 0x67D9E, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0x100E2, symBinAddr: 0x10E02, symSize: 0x7B } + - { offsetInCU: 0x1271D, offset: 0x67E1A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0x1015D, symBinAddr: 0x10E7D, symSize: 0x63 } + - { offsetInCU: 0x27, offset: 0x6BA5D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0xE } + - { offsetInCU: 0x41, offset: 0x6BA77, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xDF08, symBinAddr: 0x24C20, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x6BA97, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xDF10, symBinAddr: 0x24C28, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x6BAAD, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xDF18, symBinAddr: 0x24C30, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x6BAC3, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xDF20, symBinAddr: 0x24C38, symSize: 0x0 } + - { offsetInCU: 0x97, offset: 0x6BACD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xB5D6, symBinAddr: 0x1C1AB, symSize: 0x58 } + - { offsetInCU: 0xBF, offset: 0x6BAF5, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x491F8, symBinAddr: 0x2AB20, symSize: 0x0 } + - { offsetInCU: 0x125, offset: 0x6BB5B, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x49200, symBinAddr: 0x2AB28, symSize: 0x0 } + - { offsetInCU: 0x65E, offset: 0x6C094, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0xE } + - { offsetInCU: 0x6AB, offset: 0x6C0E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0xE, symBinAddr: 0x10EEE, symSize: 0x8E } + - { offsetInCU: 0x73F, offset: 0x6C175, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0x9C, symBinAddr: 0x10F7C, symSize: 0x3E } + - { offsetInCU: 0x773, offset: 0x6C1A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xDA, symBinAddr: 0x10FBA, symSize: 0x2F } + - { offsetInCU: 0x7AB, offset: 0x6C1E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x109, symBinAddr: 0x10FE9, symSize: 0x28 } + - { offsetInCU: 0x7DF, offset: 0x6C215, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x131, symBinAddr: 0x11011, symSize: 0x19 } + - { offsetInCU: 0x83B, offset: 0x6C271, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x14A, symBinAddr: 0x1102A, symSize: 0x19 } + - { offsetInCU: 0x8AD, offset: 0x6C2E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x163, symBinAddr: 0x11043, symSize: 0x15 } + - { offsetInCU: 0x92B, offset: 0x6C361, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x178, symBinAddr: 0x11058, symSize: 0x1D5 } + - { offsetInCU: 0xB2E, offset: 0x6C564, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x34D, symBinAddr: 0x1122D, symSize: 0xFF } + - { offsetInCU: 0xC1A, offset: 0x6C650, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x44C, symBinAddr: 0x1132C, symSize: 0x18 } + - { offsetInCU: 0xC6F, offset: 0x6C6A5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x482, symBinAddr: 0x11344, symSize: 0xDE } + - { offsetInCU: 0xD08, offset: 0x6C73E, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x560, symBinAddr: 0x11422, symSize: 0x16 } + - { offsetInCU: 0xD2D, offset: 0x6C763, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x576, symBinAddr: 0x11438, symSize: 0xF } + - { offsetInCU: 0xD58, offset: 0x6C78E, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x585, symBinAddr: 0x11447, symSize: 0x32 } + - { offsetInCU: 0xDB7, offset: 0x6C7ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x60E, symBinAddr: 0x11479, symSize: 0xC9 } + - { offsetInCU: 0xEC4, offset: 0x6C8FA, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x6D7, symBinAddr: 0x11542, symSize: 0x19 } + - { offsetInCU: 0xF17, offset: 0x6C94D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x73A, symBinAddr: 0x1155B, symSize: 0x14 } + - { offsetInCU: 0xF7B, offset: 0x6C9B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x74E, symBinAddr: 0x1156F, symSize: 0x17 } + - { offsetInCU: 0xFDF, offset: 0x6CA15, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x765, symBinAddr: 0x11586, symSize: 0xDC } + - { offsetInCU: 0x1084, offset: 0x6CABA, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x841, symBinAddr: 0x11662, symSize: 0x1E } + - { offsetInCU: 0x10D7, offset: 0x6CB0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x85F, symBinAddr: 0x11680, symSize: 0xC9 } + - { offsetInCU: 0x11D1, offset: 0x6CC07, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x928, symBinAddr: 0x11749, symSize: 0x19 } + - { offsetInCU: 0x1224, offset: 0x6CC5A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x941, symBinAddr: 0x11762, symSize: 0x14 } + - { offsetInCU: 0x1288, offset: 0x6CCBE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x955, symBinAddr: 0x11776, symSize: 0x17 } + - { offsetInCU: 0x12EC, offset: 0x6CD22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x96C, symBinAddr: 0x1178D, symSize: 0x161 } + - { offsetInCU: 0x13BA, offset: 0x6CDF0, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0xACD, symBinAddr: 0x118EE, symSize: 0x4B } + - { offsetInCU: 0x142A, offset: 0x6CE60, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xB8F, symBinAddr: 0x11939, symSize: 0xFF } + - { offsetInCU: 0x1585, offset: 0x6CFBB, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xC8E, symBinAddr: 0x11A38, symSize: 0x31 } + - { offsetInCU: 0x15E9, offset: 0x6D01F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xD17, symBinAddr: 0x11A69, symSize: 0x15 } + - { offsetInCU: 0x1664, offset: 0x6D09A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xD2C, symBinAddr: 0x11A7E, symSize: 0x18 } + - { offsetInCU: 0x16DF, offset: 0x6D115, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xD44, symBinAddr: 0x11A96, symSize: 0xDD } + - { offsetInCU: 0x1789, offset: 0x6D1BF, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xE21, symBinAddr: 0x11B73, symSize: 0x1C } + - { offsetInCU: 0x17E4, offset: 0x6D21A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xE3D, symBinAddr: 0x11B8F, symSize: 0x82 } + - { offsetInCU: 0x1886, offset: 0x6D2BC, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xEBF, symBinAddr: 0x11C11, symSize: 0x1E } + - { offsetInCU: 0x18DB, offset: 0x6D311, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xEDD, symBinAddr: 0x11C2F, symSize: 0xDD } + - { offsetInCU: 0x1985, offset: 0x6D3BB, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xFBA, symBinAddr: 0x11D0C, symSize: 0x1A } + - { offsetInCU: 0x19E0, offset: 0x6D416, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xFD4, symBinAddr: 0x11D26, symSize: 0x82 } + - { offsetInCU: 0x1A82, offset: 0x6D4B8, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1056, symBinAddr: 0x11DA8, symSize: 0x21 } + - { offsetInCU: 0x1AD7, offset: 0x6D50D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0x1077, symBinAddr: 0x11DC9, symSize: 0xDD } + - { offsetInCU: 0x1B81, offset: 0x6D5B7, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x1154, symBinAddr: 0x11EA6, symSize: 0x1D } + - { offsetInCU: 0x1BDC, offset: 0x6D612, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1171, symBinAddr: 0x11EC3, symSize: 0xDD } + - { offsetInCU: 0x1C86, offset: 0x6D6BC, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x124E, symBinAddr: 0x11FA0, symSize: 0x1D } + - { offsetInCU: 0x1CE1, offset: 0x6D717, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x126B, symBinAddr: 0x11FBD, symSize: 0xDD } + - { offsetInCU: 0x1D8B, offset: 0x6D7C1, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x1348, symBinAddr: 0x1209A, symSize: 0x1C } + - { offsetInCU: 0x1DE6, offset: 0x6D81C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1364, symBinAddr: 0x120B6, symSize: 0x7F } + - { offsetInCU: 0x1E77, offset: 0x6D8AD, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x13E3, symBinAddr: 0x12135, symSize: 0x18 } + - { offsetInCU: 0x1EB9, offset: 0x6D8EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x13FB, symBinAddr: 0x1214D, symSize: 0x7F } + - { offsetInCU: 0x1F4A, offset: 0x6D980, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x147A, symBinAddr: 0x121CC, symSize: 0x18 } + - { offsetInCU: 0x1F8C, offset: 0x6D9C2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x1492, symBinAddr: 0x121E4, symSize: 0x7F } + - { offsetInCU: 0x201D, offset: 0x6DA53, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1511, symBinAddr: 0x12263, symSize: 0x18 } + - { offsetInCU: 0x205F, offset: 0x6DA95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1529, symBinAddr: 0x1227B, symSize: 0xE0 } + - { offsetInCU: 0x2109, offset: 0x6DB3F, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x1609, symBinAddr: 0x1235B, symSize: 0x1A } + - { offsetInCU: 0x2164, offset: 0x6DB9A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1623, symBinAddr: 0x12375, symSize: 0x83 } + - { offsetInCU: 0x2206, offset: 0x6DC3C, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x16A6, symBinAddr: 0x123F8, symSize: 0x12 } + - { offsetInCU: 0x225B, offset: 0x6DC91, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x16B8, symBinAddr: 0x1240A, symSize: 0xE0 } + - { offsetInCU: 0x2305, offset: 0x6DD3B, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x1798, symBinAddr: 0x124EA, symSize: 0x18 } + - { offsetInCU: 0x2360, offset: 0x6DD96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x17B0, symBinAddr: 0x12502, symSize: 0x82 } + - { offsetInCU: 0x2402, offset: 0x6DE38, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x1832, symBinAddr: 0x12584, symSize: 0x10 } + - { offsetInCU: 0x2457, offset: 0x6DE8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x1842, symBinAddr: 0x12594, symSize: 0x83 } + - { offsetInCU: 0x24F9, offset: 0x6DF2F, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x18C5, symBinAddr: 0x12617, symSize: 0x12 } + - { offsetInCU: 0x254E, offset: 0x6DF84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x18D7, symBinAddr: 0x12629, symSize: 0xE0 } + - { offsetInCU: 0x25F8, offset: 0x6E02E, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x19B7, symBinAddr: 0x12709, symSize: 0x1A } + - { offsetInCU: 0x2653, offset: 0x6E089, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x19D1, symBinAddr: 0x12723, symSize: 0x10D } + - { offsetInCU: 0x2716, offset: 0x6E14C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1ADE, symBinAddr: 0x12830, symSize: 0x21 } + - { offsetInCU: 0x2769, offset: 0x6E19F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1AFF, symBinAddr: 0x12851, symSize: 0xAF } + - { offsetInCU: 0x284C, offset: 0x6E282, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1BAE, symBinAddr: 0x12900, symSize: 0x27 } + - { offsetInCU: 0x289F, offset: 0x6E2D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1BD5, symBinAddr: 0x12927, symSize: 0x111 } + - { offsetInCU: 0x29ED, offset: 0x6E423, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1CE6, symBinAddr: 0x12A38, symSize: 0x37 } + - { offsetInCU: 0x2A5D, offset: 0x6E493, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1D1D, symBinAddr: 0x12A6F, symSize: 0xF2 } + - { offsetInCU: 0x2B63, offset: 0x6E599, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1E0F, symBinAddr: 0x12B61, symSize: 0x37 } + - { offsetInCU: 0x2BD3, offset: 0x6E609, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1E46, symBinAddr: 0x12B98, symSize: 0xB9 } + - { offsetInCU: 0x2C8E, offset: 0x6E6C4, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1EFF, symBinAddr: 0x12C51, symSize: 0x37 } + - { offsetInCU: 0x2CFE, offset: 0x6E734, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1F36, symBinAddr: 0x12C88, symSize: 0xF3 } + - { offsetInCU: 0x2E15, offset: 0x6E84B, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x2029, symBinAddr: 0x12D7B, symSize: 0x3B } + - { offsetInCU: 0x2E96, offset: 0x6E8CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x2064, symBinAddr: 0x12DB6, symSize: 0x135 } + - { offsetInCU: 0x3067, offset: 0x6EA9D, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2199, symBinAddr: 0x12EEB, symSize: 0x3F } + - { offsetInCU: 0x30F9, offset: 0x6EB2F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x21D8, symBinAddr: 0x12F2A, symSize: 0x3A } + - { offsetInCU: 0x315E, offset: 0x6EB94, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2212, symBinAddr: 0x12F64, symSize: 0x3A } + - { offsetInCU: 0x31B9, offset: 0x6EBEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x224C, symBinAddr: 0x12F9E, symSize: 0xF2 } + - { offsetInCU: 0x32BF, offset: 0x6ECF5, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x233E, symBinAddr: 0x13090, symSize: 0x37 } + - { offsetInCU: 0x332F, offset: 0x6ED65, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2375, symBinAddr: 0x130C7, symSize: 0xDE } + - { offsetInCU: 0x33D6, offset: 0x6EE0C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2453, symBinAddr: 0x131A5, symSize: 0xDE } + - { offsetInCU: 0x347D, offset: 0x6EEB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x2531, symBinAddr: 0x13283, symSize: 0xF3 } + - { offsetInCU: 0x3552, offset: 0x6EF88, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x2624, symBinAddr: 0x13376, symSize: 0x152 } + - { offsetInCU: 0x362A, offset: 0x6F060, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2776, symBinAddr: 0x134C8, symSize: 0x14 } + - { offsetInCU: 0x367B, offset: 0x6F0B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x278A, symBinAddr: 0x134DC, symSize: 0x118 } + - { offsetInCU: 0x3735, offset: 0x6F16B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x28A2, symBinAddr: 0x135F4, symSize: 0x118 } + - { offsetInCU: 0x37EF, offset: 0x6F225, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x29BA, symBinAddr: 0x1370C, symSize: 0xDE } + - { offsetInCU: 0x3896, offset: 0x6F2CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x2A98, symBinAddr: 0x137EA, symSize: 0x84 } + - { offsetInCU: 0x3933, offset: 0x6F369, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x2B1C, symBinAddr: 0x1386E, symSize: 0x194 } + - { offsetInCU: 0x3B2A, offset: 0x6F560, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2CB0, symBinAddr: 0x13A02, symSize: 0x2B } + - { offsetInCU: 0x3B8C, offset: 0x6F5C2, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2CDB, symBinAddr: 0x13A2D, symSize: 0x30 } + - { offsetInCU: 0x3BC1, offset: 0x6F5F7, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.114', symObjAddr: 0x2D0B, symBinAddr: 0x13A5D, symSize: 0x3EC } + - { offsetInCU: 0x3F78, offset: 0x6F9AE, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x30F7, symBinAddr: 0x13E49, symSize: 0x2D } + - { offsetInCU: 0x3FE4, offset: 0x6FA1A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x3124, symBinAddr: 0x13E76, symSize: 0x44 } + - { offsetInCU: 0x4025, offset: 0x6FA5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x3168, symBinAddr: 0x13EBA, symSize: 0x55E } + - { offsetInCU: 0x4427, offset: 0x6FE5D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x36C6, symBinAddr: 0x14418, symSize: 0x3EA } + - { offsetInCU: 0x47EF, offset: 0x70225, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3AB0, symBinAddr: 0x14802, symSize: 0x1E4 } + - { offsetInCU: 0x49BB, offset: 0x703F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x3C94, symBinAddr: 0x149E6, symSize: 0x68 } + - { offsetInCU: 0x4A4E, offset: 0x70484, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3CFC, symBinAddr: 0x14A4E, symSize: 0x78 } + - { offsetInCU: 0x4AE1, offset: 0x70517, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x3D74, symBinAddr: 0x14AC6, symSize: 0xBF } + - { offsetInCU: 0x4C10, offset: 0x70646, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3E33, symBinAddr: 0x14B85, symSize: 0xD5 } + - { offsetInCU: 0x4D2C, offset: 0x70762, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3F08, symBinAddr: 0x14C5A, symSize: 0x186 } + - { offsetInCU: 0x4E6F, offset: 0x708A5, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x408E, symBinAddr: 0x14DE0, symSize: 0x65 } + - { offsetInCU: 0x4EBD, offset: 0x708F3, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x40F3, symBinAddr: 0x14E45, symSize: 0x62 } + - { offsetInCU: 0x4F2C, offset: 0x70962, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x4155, symBinAddr: 0x14EA7, symSize: 0x1C } + - { offsetInCU: 0x4FA0, offset: 0x709D6, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.164', symObjAddr: 0x419B, symBinAddr: 0x14EC3, symSize: 0x1C } + - { offsetInCU: 0x4FFD, offset: 0x70A33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x41B7, symBinAddr: 0x14EDF, symSize: 0x192 } + - { offsetInCU: 0x50F6, offset: 0x70B2C, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x4349, symBinAddr: 0x15071, symSize: 0x65 } + - { offsetInCU: 0x5144, offset: 0x70B7A, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x43AE, symBinAddr: 0x150D6, symSize: 0x65 } + - { offsetInCU: 0x51A0, offset: 0x70BD6, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x4413, symBinAddr: 0x1513B, symSize: 0x1C } + - { offsetInCU: 0x51FD, offset: 0x70C33, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x442F, symBinAddr: 0x15157, symSize: 0x1C } + - { offsetInCU: 0x525A, offset: 0x70C90, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x444B, symBinAddr: 0x15173, symSize: 0xED } + - { offsetInCU: 0x5354, offset: 0x70D8A, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4538, symBinAddr: 0x15260, symSize: 0x217 } + - { offsetInCU: 0x55A8, offset: 0x70FDE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x474F, symBinAddr: 0x15477, symSize: 0x53 } + - { offsetInCU: 0x564F, offset: 0x71085, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x47A2, symBinAddr: 0x154CA, symSize: 0x28 } + - { offsetInCU: 0x56A0, offset: 0x710D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x47CA, symBinAddr: 0x154F2, symSize: 0x28 } + - { offsetInCU: 0x56E2, offset: 0x71118, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x47F2, symBinAddr: 0x1551A, symSize: 0x28 } + - { offsetInCU: 0x5733, offset: 0x71169, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x481A, symBinAddr: 0x15542, symSize: 0x28 } + - { offsetInCU: 0x5775, offset: 0x711AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x4842, symBinAddr: 0x1556A, symSize: 0x28 } + - { offsetInCU: 0x57B7, offset: 0x711ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x486A, symBinAddr: 0x15592, symSize: 0x2B } + - { offsetInCU: 0x57F9, offset: 0x7122F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x4895, symBinAddr: 0x155BD, symSize: 0x28 } + - { offsetInCU: 0x583B, offset: 0x71271, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x48BD, symBinAddr: 0x155E5, symSize: 0x2B } + - { offsetInCU: 0x587D, offset: 0x712B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x48E8, symBinAddr: 0x15610, symSize: 0xB2 } + - { offsetInCU: 0x5934, offset: 0x7136A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x499A, symBinAddr: 0x156C2, symSize: 0xBB } + - { offsetInCU: 0x59DC, offset: 0x71412, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4A55, symBinAddr: 0x1577D, symSize: 0x31 } + - { offsetInCU: 0x5A39, offset: 0x7146F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x4A86, symBinAddr: 0x157AE, symSize: 0x1D5 } + - { offsetInCU: 0x5C87, offset: 0x716BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4C5B, symBinAddr: 0x15983, symSize: 0xE5 } + - { offsetInCU: 0x5D69, offset: 0x7179F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4D40, symBinAddr: 0x15A68, symSize: 0xE5 } + - { offsetInCU: 0x5E4B, offset: 0x71881, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x4E25, symBinAddr: 0x15B4D, symSize: 0x155 } + - { offsetInCU: 0x5F35, offset: 0x7196B, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4F7A, symBinAddr: 0x15CA2, symSize: 0x6B } + - { offsetInCU: 0x5FB8, offset: 0x719EE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4FE5, symBinAddr: 0x15D0D, symSize: 0x25 } + - { offsetInCU: 0x6002, offset: 0x71A38, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x5021, symBinAddr: 0x15D32, symSize: 0x155 } + - { offsetInCU: 0x60EC, offset: 0x71B22, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x5176, symBinAddr: 0x15E87, symSize: 0x6B } + - { offsetInCU: 0x616F, offset: 0x71BA5, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x51E1, symBinAddr: 0x15EF2, symSize: 0x25 } + - { offsetInCU: 0x61B9, offset: 0x71BEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x5206, symBinAddr: 0x15F17, symSize: 0x126 } + - { offsetInCU: 0x628B, offset: 0x71CC1, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x532C, symBinAddr: 0x1603D, symSize: 0x56 } + - { offsetInCU: 0x62EA, offset: 0x71D20, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x5382, symBinAddr: 0x16093, symSize: 0x25 } + - { offsetInCU: 0x6334, offset: 0x71D6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x53A7, symBinAddr: 0x160B8, symSize: 0x155 } + - { offsetInCU: 0x641E, offset: 0x71E54, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x54FC, symBinAddr: 0x1620D, symSize: 0x3C } + - { offsetInCU: 0x647D, offset: 0x71EB3, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x5538, symBinAddr: 0x16249, symSize: 0x25 } + - { offsetInCU: 0x64C7, offset: 0x71EFD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x555D, symBinAddr: 0x1626E, symSize: 0x155 } + - { offsetInCU: 0x65B1, offset: 0x71FE7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x56B2, symBinAddr: 0x163C3, symSize: 0x3C } + - { offsetInCU: 0x6610, offset: 0x72046, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x56EE, symBinAddr: 0x163FF, symSize: 0x25 } + - { offsetInCU: 0x665A, offset: 0x72090, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x5713, symBinAddr: 0x16424, symSize: 0x126 } + - { offsetInCU: 0x672C, offset: 0x72162, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x5839, symBinAddr: 0x1654A, symSize: 0x38 } + - { offsetInCU: 0x678B, offset: 0x721C1, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x5871, symBinAddr: 0x16582, symSize: 0x25 } + - { offsetInCU: 0x67D5, offset: 0x7220B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5896, symBinAddr: 0x165A7, symSize: 0x155 } + - { offsetInCU: 0x68BF, offset: 0x722F5, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x59EB, symBinAddr: 0x166FC, symSize: 0x3C } + - { offsetInCU: 0x691E, offset: 0x72354, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x5A27, symBinAddr: 0x16738, symSize: 0x25 } + - { offsetInCU: 0x6968, offset: 0x7239E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x5A4C, symBinAddr: 0x1675D, symSize: 0x155 } + - { offsetInCU: 0x6A52, offset: 0x72488, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5BA1, symBinAddr: 0x168B2, symSize: 0x3C } + - { offsetInCU: 0x6AB1, offset: 0x724E7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x5BDD, symBinAddr: 0x168EE, symSize: 0x25 } + - { offsetInCU: 0x6AFB, offset: 0x72531, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5C02, symBinAddr: 0x16913, symSize: 0x126 } + - { offsetInCU: 0x6BCD, offset: 0x72603, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x5D28, symBinAddr: 0x16A39, symSize: 0x38 } + - { offsetInCU: 0x6C2C, offset: 0x72662, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x5D60, symBinAddr: 0x16A71, symSize: 0x25 } + - { offsetInCU: 0x6C76, offset: 0x726AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5D85, symBinAddr: 0x16A96, symSize: 0x211 } + - { offsetInCU: 0x6EB3, offset: 0x728E9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x5F96, symBinAddr: 0x16CA7, symSize: 0x155 } + - { offsetInCU: 0x6F9D, offset: 0x729D3, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x60EB, symBinAddr: 0x16DFC, symSize: 0x3C } + - { offsetInCU: 0x6FFC, offset: 0x72A32, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x6127, symBinAddr: 0x16E38, symSize: 0x25 } + - { offsetInCU: 0x7046, offset: 0x72A7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x614C, symBinAddr: 0x16E5D, symSize: 0x155 } + - { offsetInCU: 0x7130, offset: 0x72B66, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x62A1, symBinAddr: 0x16FB2, symSize: 0x3C } + - { offsetInCU: 0x718F, offset: 0x72BC5, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x62DD, symBinAddr: 0x16FEE, symSize: 0x25 } + - { offsetInCU: 0x71D9, offset: 0x72C0F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x6302, symBinAddr: 0x17013, symSize: 0x126 } + - { offsetInCU: 0x72AB, offset: 0x72CE1, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x6428, symBinAddr: 0x17139, symSize: 0x38 } + - { offsetInCU: 0x730A, offset: 0x72D40, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x6460, symBinAddr: 0x17171, symSize: 0x25 } + - { offsetInCU: 0x7354, offset: 0x72D8A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x6485, symBinAddr: 0x17196, symSize: 0xDD } + - { offsetInCU: 0x73FE, offset: 0x72E34, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x6562, symBinAddr: 0x17273, symSize: 0x1D } + - { offsetInCU: 0x7459, offset: 0x72E8F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x657F, symBinAddr: 0x17290, symSize: 0xDD } + - { offsetInCU: 0x7503, offset: 0x72F39, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x665C, symBinAddr: 0x1736D, symSize: 0x1C } + - { offsetInCU: 0x755E, offset: 0x72F94, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6678, symBinAddr: 0x17389, symSize: 0xDD } + - { offsetInCU: 0x7608, offset: 0x7303E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6755, symBinAddr: 0x17466, symSize: 0x3B } + - { offsetInCU: 0x7667, offset: 0x7309D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x6790, symBinAddr: 0x174A1, symSize: 0xDD } + - { offsetInCU: 0x7711, offset: 0x73147, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x686D, symBinAddr: 0x1757E, symSize: 0x3B } + - { offsetInCU: 0x7770, offset: 0x731A6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x68A8, symBinAddr: 0x175B9, symSize: 0x8A } + - { offsetInCU: 0x77FC, offset: 0x73232, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6932, symBinAddr: 0x17643, symSize: 0x17 } + - { offsetInCU: 0x787D, offset: 0x732B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6949, symBinAddr: 0x1765A, symSize: 0x1A0 } + - { offsetInCU: 0x79BE, offset: 0x733F4, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x6AE9, symBinAddr: 0x177FA, symSize: 0x2E1 } + - { offsetInCU: 0x7CA4, offset: 0x736DA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x6E61, symBinAddr: 0x17ADB, symSize: 0x19C } + - { offsetInCU: 0x7DD4, offset: 0x7380A, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6FFD, symBinAddr: 0x17C77, symSize: 0x315 } + - { offsetInCU: 0x808E, offset: 0x73AC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x7312, symBinAddr: 0x17F8C, symSize: 0x77 } + - { offsetInCU: 0x811A, offset: 0x73B50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x7389, symBinAddr: 0x18003, symSize: 0x1A0 } + - { offsetInCU: 0x825B, offset: 0x73C91, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x7529, symBinAddr: 0x181A3, symSize: 0x1E0 } + - { offsetInCU: 0x83D6, offset: 0x73E0C, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x7709, symBinAddr: 0x18383, symSize: 0xA6 } + - { offsetInCU: 0x84FA, offset: 0x73F30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x77AF, symBinAddr: 0x18429, symSize: 0x19C } + - { offsetInCU: 0x862A, offset: 0x74060, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x794B, symBinAddr: 0x185C5, symSize: 0x1D3 } + - { offsetInCU: 0x87D3, offset: 0x74209, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x7B1E, symBinAddr: 0x18798, symSize: 0x230 } + - { offsetInCU: 0x8A2B, offset: 0x74461, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7D4E, symBinAddr: 0x189C8, symSize: 0xD1 } + - { offsetInCU: 0x8B43, offset: 0x74579, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x7E1F, symBinAddr: 0x18A99, symSize: 0xD1 } + - { offsetInCU: 0x8C3A, offset: 0x74670, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x7EF0, symBinAddr: 0x18B6A, symSize: 0x72 } + - { offsetInCU: 0x8CAC, offset: 0x746E2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7F62, symBinAddr: 0x18BDC, symSize: 0x17 } + - { offsetInCU: 0x8D2D, offset: 0x74763, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7F79, symBinAddr: 0x18BF3, symSize: 0x20 } + - { offsetInCU: 0x8DC9, offset: 0x747FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7F99, symBinAddr: 0x18C13, symSize: 0x17 } + - { offsetInCU: 0x8E4A, offset: 0x74880, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7FB0, symBinAddr: 0x18C2A, symSize: 0x20 } + - { offsetInCU: 0x8EE6, offset: 0x7491C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7FD0, symBinAddr: 0x18C4A, symSize: 0x1DE } + - { offsetInCU: 0x908D, offset: 0x74AC3, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x81AE, symBinAddr: 0x18E28, symSize: 0x34E } + - { offsetInCU: 0x941A, offset: 0x74E50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x85A1, symBinAddr: 0x19176, symSize: 0x19C } + - { offsetInCU: 0x954A, offset: 0x74F80, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x873D, symBinAddr: 0x19312, symSize: 0x1C1 } + - { offsetInCU: 0x971A, offset: 0x75150, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x88FE, symBinAddr: 0x194D3, symSize: 0x19C } + - { offsetInCU: 0x984A, offset: 0x75280, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x8A9A, symBinAddr: 0x1966F, symSize: 0x1B9 } + - { offsetInCU: 0x9A13, offset: 0x75449, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x8C53, symBinAddr: 0x19828, symSize: 0x164 } + - { offsetInCU: 0x9B01, offset: 0x75537, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x8DB7, symBinAddr: 0x1998C, symSize: 0x16D } + - { offsetInCU: 0x9C60, offset: 0x75696, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x8F24, symBinAddr: 0x19AF9, symSize: 0x164 } + - { offsetInCU: 0x9D4E, offset: 0x75784, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x9088, symBinAddr: 0x19C5D, symSize: 0x131 } + - { offsetInCU: 0x9E60, offset: 0x75896, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x91B9, symBinAddr: 0x19D8E, symSize: 0x1A } + - { offsetInCU: 0x9ED5, offset: 0x7590B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x91D3, symBinAddr: 0x19DA8, symSize: 0xE7 } + - { offsetInCU: 0x9FEF, offset: 0x75A25, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x92BA, symBinAddr: 0x19E8F, symSize: 0x55 } + - { offsetInCU: 0xA05A, offset: 0x75A90, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x930F, symBinAddr: 0x19EE4, symSize: 0x171 } + - { offsetInCU: 0xA20D, offset: 0x75C43, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x9480, symBinAddr: 0x1A055, symSize: 0x99 } + - { offsetInCU: 0xA2DF, offset: 0x75D15, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x9519, symBinAddr: 0x1A0EE, symSize: 0x55 } + - { offsetInCU: 0xA34A, offset: 0x75D80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x956E, symBinAddr: 0x1A143, symSize: 0x12F } + - { offsetInCU: 0xA4C5, offset: 0x75EFB, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x969D, symBinAddr: 0x1A272, symSize: 0x55 } + - { offsetInCU: 0xA530, offset: 0x75F66, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x96F2, symBinAddr: 0x1A2C7, symSize: 0x18 } + - { offsetInCU: 0xA5AB, offset: 0x75FE1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x970A, symBinAddr: 0x1A2DF, symSize: 0x12D } + - { offsetInCU: 0xA775, offset: 0x761AB, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9837, symBinAddr: 0x1A40C, symSize: 0x46 } + - { offsetInCU: 0xA7F6, offset: 0x7622C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x987D, symBinAddr: 0x1A452, symSize: 0x1F0 } + - { offsetInCU: 0xA994, offset: 0x763CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x9A6D, symBinAddr: 0x1A642, symSize: 0x384 } + - { offsetInCU: 0xAC59, offset: 0x7668F, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x9DF1, symBinAddr: 0x1A9C6, symSize: 0xB6 } + - { offsetInCU: 0xAD0D, offset: 0x76743, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9EA7, symBinAddr: 0x1AA7C, symSize: 0x87 } + - { offsetInCU: 0xADA1, offset: 0x767D7, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.334', symObjAddr: 0x9F2E, symBinAddr: 0x1AB03, symSize: 0x47 } + - { offsetInCU: 0xAE00, offset: 0x76836, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x9F75, symBinAddr: 0x1AB4A, symSize: 0x20D } + - { offsetInCU: 0xB06E, offset: 0x76AA4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0xA182, symBinAddr: 0x1AD57, symSize: 0x50 } + - { offsetInCU: 0xB0C8, offset: 0x76AFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0xA1D2, symBinAddr: 0x1ADA7, symSize: 0x75 } + - { offsetInCU: 0xB15F, offset: 0x76B95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0xA247, symBinAddr: 0x1AE1C, symSize: 0xBA } + - { offsetInCU: 0xB26D, offset: 0x76CA3, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0xA301, symBinAddr: 0x1AED6, symSize: 0x2F } + - { offsetInCU: 0xB2BB, offset: 0x76CF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0xA330, symBinAddr: 0x1AF05, symSize: 0x161 } + - { offsetInCU: 0xB398, offset: 0x76DCE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0xA491, symBinAddr: 0x1B066, symSize: 0xB6 } + - { offsetInCU: 0xB44A, offset: 0x76E80, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0xA547, symBinAddr: 0x1B11C, symSize: 0x2F } + - { offsetInCU: 0xB498, offset: 0x76ECE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0xA576, symBinAddr: 0x1B14B, symSize: 0x161 } + - { offsetInCU: 0xB575, offset: 0x76FAB, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0xA6D7, symBinAddr: 0x1B2AC, symSize: 0xB6 } + - { offsetInCU: 0xB627, offset: 0x7705D, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0xA78D, symBinAddr: 0x1B362, symSize: 0x2F } + - { offsetInCU: 0xB675, offset: 0x770AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0xA7BC, symBinAddr: 0x1B391, symSize: 0x7F } + - { offsetInCU: 0xB706, offset: 0x7713C, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0xA83B, symBinAddr: 0x1B410, symSize: 0x5C } + - { offsetInCU: 0xB760, offset: 0x77196, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0xA897, symBinAddr: 0x1B46C, symSize: 0x18 } + - { offsetInCU: 0xB7DB, offset: 0x77211, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0xA8AF, symBinAddr: 0x1B484, symSize: 0x12D } + - { offsetInCU: 0xB9A5, offset: 0x773DB, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0xA9DC, symBinAddr: 0x1B5B1, symSize: 0x46 } + - { offsetInCU: 0xBA26, offset: 0x7745C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0xAA22, symBinAddr: 0x1B5F7, symSize: 0x71A } + - { offsetInCU: 0xBED9, offset: 0x7790F, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xB13C, symBinAddr: 0x1BD11, symSize: 0x102 } + - { offsetInCU: 0xBFC0, offset: 0x779F6, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xB23E, symBinAddr: 0x1BE13, symSize: 0x92 } + - { offsetInCU: 0xC05E, offset: 0x77A94, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.361', symObjAddr: 0xB2D0, symBinAddr: 0x1BEA5, symSize: 0x79 } + - { offsetInCU: 0xC0F8, offset: 0x77B2E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xB349, symBinAddr: 0x1BF1E, symSize: 0x4C } + - { offsetInCU: 0xC160, offset: 0x77B96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xB395, symBinAddr: 0x1BF6A, symSize: 0xA9 } + - { offsetInCU: 0xC252, offset: 0x77C88, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xB43E, symBinAddr: 0x1C013, symSize: 0x7F } + - { offsetInCU: 0xC2E3, offset: 0x77D19, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xB4BD, symBinAddr: 0x1C092, symSize: 0x31 } + - { offsetInCU: 0xC338, offset: 0x77D6E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xB4EE, symBinAddr: 0x1C0C3, symSize: 0x7F } + - { offsetInCU: 0xC3C9, offset: 0x77DFF, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xB56D, symBinAddr: 0x1C142, symSize: 0x63 } + - { offsetInCU: 0xC42A, offset: 0x77E60, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xB5D0, symBinAddr: 0x1C1A5, symSize: 0x6 } + - { offsetInCU: 0xC4A1, offset: 0x77ED7, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xB62E, symBinAddr: 0x1C203, symSize: 0x63 } + - { offsetInCU: 0xC50E, offset: 0x77F44, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xB691, symBinAddr: 0x1C266, symSize: 0x114 } + - { offsetInCU: 0xC60E, offset: 0x78044, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xB7A5, symBinAddr: 0x1C37A, symSize: 0xA0 } + - { offsetInCU: 0xC72D, offset: 0x78163, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xB845, symBinAddr: 0x1C41A, symSize: 0xA0 } + - { offsetInCU: 0xC840, offset: 0x78276, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xB8E5, symBinAddr: 0x1C4BA, symSize: 0x238 } + - { offsetInCU: 0xCA84, offset: 0x784BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xBB1D, symBinAddr: 0x1C6F2, symSize: 0x1C2 } + - { offsetInCU: 0xCCC0, offset: 0x786F6, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xBCDF, symBinAddr: 0x1C8B4, symSize: 0x10E } + - { offsetInCU: 0xCE15, offset: 0x7884B, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xBDED, symBinAddr: 0x1C9C2, symSize: 0x10E } + - { offsetInCU: 0xCF6A, offset: 0x789A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xBEFB, symBinAddr: 0x1CAD0, symSize: 0x72 } + - { offsetInCU: 0xD004, offset: 0x78A3A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xBF6D, symBinAddr: 0x1CB42, symSize: 0xBB } + - { offsetInCU: 0xD137, offset: 0x78B6D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xC028, symBinAddr: 0x1CBFD, symSize: 0x4E } + - { offsetInCU: 0xD191, offset: 0x78BC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xC076, symBinAddr: 0x1CC4B, symSize: 0xF8 } + - { offsetInCU: 0xD2B9, offset: 0x78CEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xC16E, symBinAddr: 0x1CD43, symSize: 0x7F } + - { offsetInCU: 0xD357, offset: 0x78D8D, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xC1ED, symBinAddr: 0x1CDC2, symSize: 0x4A } + - { offsetInCU: 0xD3B1, offset: 0x78DE7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xC237, symBinAddr: 0x1CE0C, symSize: 0x1C } + - { offsetInCU: 0xD42C, offset: 0x78E62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xC253, symBinAddr: 0x1CE28, symSize: 0x18 } + - { offsetInCU: 0xD494, offset: 0x78ECA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xC26B, symBinAddr: 0x1CE40, symSize: 0x38 } + - { offsetInCU: 0xD511, offset: 0x78F47, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xC2A3, symBinAddr: 0x1CE78, symSize: 0x33 } + - { offsetInCU: 0xD557, offset: 0x78F8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xC2D6, symBinAddr: 0x1CEAB, symSize: 0x2B } + - { offsetInCU: 0xD59D, offset: 0x78FD3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xC301, symBinAddr: 0x1CED6, symSize: 0x2B } + - { offsetInCU: 0xD5E3, offset: 0x79019, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xC32C, symBinAddr: 0x1CF01, symSize: 0x57 } + - { offsetInCU: 0xD655, offset: 0x7908B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xC383, symBinAddr: 0x1CF58, symSize: 0x57 } + - { offsetInCU: 0xD6C7, offset: 0x790FD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xC3DA, symBinAddr: 0x1CFAF, symSize: 0x8 } + - { offsetInCU: 0xD6FB, offset: 0x79131, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xC3E2, symBinAddr: 0x1CFB7, symSize: 0x7D } + - { offsetInCU: 0xD77E, offset: 0x791B4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xC45F, symBinAddr: 0x1D034, symSize: 0x7D } + - { offsetInCU: 0xD802, offset: 0x79238, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xC4DC, symBinAddr: 0x1D0B1, symSize: 0x11 } + - { offsetInCU: 0xD845, offset: 0x7927B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xC4ED, symBinAddr: 0x1D0C2, symSize: 0x11 } + - { offsetInCU: 0xD888, offset: 0x792BE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xC4FE, symBinAddr: 0x1D0D3, symSize: 0x40 } + - { offsetInCU: 0xD91E, offset: 0x79354, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xC53E, symBinAddr: 0x1D113, symSize: 0x31 } + - { offsetInCU: 0xD9A8, offset: 0x793DE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xC56F, symBinAddr: 0x1D144, symSize: 0x30 } + - { offsetInCU: 0xDA32, offset: 0x79468, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xC59F, symBinAddr: 0x1D174, symSize: 0x34 } + - { offsetInCU: 0xDABC, offset: 0x794F2, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xC5D3, symBinAddr: 0x1D1A8, symSize: 0x34 } + - { offsetInCU: 0xDB46, offset: 0x7957C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xC607, symBinAddr: 0x1D1DC, symSize: 0x18 } + - { offsetInCU: 0xDBDE, offset: 0x79614, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xC61F, symBinAddr: 0x1D1F4, symSize: 0x19C } + - { offsetInCU: 0xDD87, offset: 0x797BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xC7BB, symBinAddr: 0x1D390, symSize: 0x118 } + - { offsetInCU: 0xDDBB, offset: 0x797F1, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xC8D3, symBinAddr: 0x1D4A8, symSize: 0x49 } + - { offsetInCU: 0xDE27, offset: 0x7985D, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xC91C, symBinAddr: 0x1D4F1, symSize: 0x49 } ... diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/Info.plist b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/Info.plist similarity index 100% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/Info.plist rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/Info.plist index 00bebb0..d169d51 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/Info.plist +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/Info.plist @@ -10,15 +10,18 @@ DebugSymbolsPath dSYMs LibraryIdentifier - ios-arm64 + ios-arm64_x86_64-simulator LibraryPath IoTConnect2_AWS.framework SupportedArchitectures arm64 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator BinaryPath @@ -26,18 +29,15 @@ DebugSymbolsPath dSYMs LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64 LibraryPath IoTConnect2_AWS.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - simulator CFBundlePackageType diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h similarity index 99% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h index a76ebf6..7afd2d9 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_AWS_SWIFT_H #define IOTCONNECT2_AWS_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist similarity index 70% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist index 708cd18..d35d017 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist and b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS new file mode 100755 index 0000000..274c387 Binary files /dev/null and b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/LICENSE b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/LICENSE similarity index 100% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/LICENSE rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/LICENSE diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..bb45398 --- /dev/null +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,11054 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS12ReachabilityC", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2_AWS.DebugConfig", + "usr": "s:15IoTConnect2_AWS11DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2_AWS.MqttConfig", + "usr": "s:15IoTConnect2_AWS10MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS11DebugConfigV", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS10MqttConfigV", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PREQA", + "printedName": "PREQA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "POC", + "printedName": "POC", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS0A4TCPfO", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS9SSLOptionV", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS11CommandTypeO", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS9SDKClientC", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", + "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 20991, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4310, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17309, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19292, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33318, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5543, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 9694, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface similarity index 98% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface index 42f9806..5df7d57 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc similarity index 92% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc index cf4dde5..738a047 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc and b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface similarity index 98% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface index 42f9806..5df7d57 100644 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS new file mode 100644 index 0000000..be84b06 Binary files /dev/null and b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml new file mode 100644 index 0000000..881a1ec --- /dev/null +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml @@ -0,0 +1,1662 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' +relocations: + - { offsetInCU: 0x34, offset: 0x58969, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6F4D0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5899E, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6F508, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58A03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x39BC8, symBinAddr: 0x88B78, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x58CA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x93A0, symBinAddr: 0x11338, symSize: 0x15FC } + - { offsetInCU: 0x1C16, offset: 0x5A5CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x8000, symSize: 0x3C } + - { offsetInCU: 0x1DD2, offset: 0x5A786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1B6C, symBinAddr: 0x9B2C, symSize: 0x8 } + - { offsetInCU: 0x1DE6, offset: 0x5A79A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1B74, symBinAddr: 0x9B34, symSize: 0x3C } + - { offsetInCU: 0x1DFA, offset: 0x5A7AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1BB0, symBinAddr: 0x9B70, symSize: 0x168 } + - { offsetInCU: 0x2260, offset: 0x5AC14, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8184, symBinAddr: 0x10134, symSize: 0xC } + - { offsetInCU: 0x2274, offset: 0x5AC28, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8190, symBinAddr: 0x10140, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x5AC3C, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8194, symBinAddr: 0x10144, symSize: 0x20 } + - { offsetInCU: 0x229C, offset: 0x5AC50, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x81B4, symBinAddr: 0x10164, symSize: 0x28 } + - { offsetInCU: 0x24C1, offset: 0x5AE75, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x87F4, symBinAddr: 0x1078C, symSize: 0x2C } + - { offsetInCU: 0x24D5, offset: 0x5AE89, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8820, symBinAddr: 0x107B8, symSize: 0x2C } + - { offsetInCU: 0x24E9, offset: 0x5AE9D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x888C, symBinAddr: 0x10824, symSize: 0x2C } + - { offsetInCU: 0x24FD, offset: 0x5AEB1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x88B8, symBinAddr: 0x10850, symSize: 0x2C } + - { offsetInCU: 0x2566, offset: 0x5AF1A, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x8CC8, symBinAddr: 0x10C60, symSize: 0x68 } + - { offsetInCU: 0x2B9B, offset: 0x5B54F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xAA0C, symBinAddr: 0x129A4, symSize: 0x48 } + - { offsetInCU: 0x2BAF, offset: 0x5B563, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xAA54, symBinAddr: 0x129EC, symSize: 0x40 } + - { offsetInCU: 0x2BC3, offset: 0x5B577, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xAA94, symBinAddr: 0x12A2C, symSize: 0x20 } + - { offsetInCU: 0x2BD7, offset: 0x5B58B, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xAAB4, symBinAddr: 0x12A4C, symSize: 0x10 } + - { offsetInCU: 0x2BEB, offset: 0x5B59F, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xAAC4, symBinAddr: 0x12A5C, symSize: 0x3C } + - { offsetInCU: 0x2BFF, offset: 0x5B5B3, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAB60, symBinAddr: 0x12AF8, symSize: 0x44 } + - { offsetInCU: 0x2C13, offset: 0x5B5C7, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xAD2C, symBinAddr: 0x12CC4, symSize: 0x8 } + - { offsetInCU: 0x2C27, offset: 0x5B5DB, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xAD34, symBinAddr: 0x12CCC, symSize: 0x10 } + - { offsetInCU: 0x2C3B, offset: 0x5B5EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xAD44, symBinAddr: 0x12CDC, symSize: 0x5C } + - { offsetInCU: 0x2C4F, offset: 0x5B603, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xADA0, symBinAddr: 0x12D38, symSize: 0x30C } + - { offsetInCU: 0x2C63, offset: 0x5B617, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB0AC, symBinAddr: 0x13044, symSize: 0x240 } + - { offsetInCU: 0x2C77, offset: 0x5B62B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xB2EC, symBinAddr: 0x13284, symSize: 0x70 } + - { offsetInCU: 0x2C8B, offset: 0x5B63F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xB35C, symBinAddr: 0x132F4, symSize: 0x34 } + - { offsetInCU: 0x2C9F, offset: 0x5B653, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xB390, symBinAddr: 0x13328, symSize: 0x174 } + - { offsetInCU: 0x2CB3, offset: 0x5B667, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xB504, symBinAddr: 0x1349C, symSize: 0xB4 } + - { offsetInCU: 0x2CC7, offset: 0x5B67B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xB5B8, symBinAddr: 0x13550, symSize: 0x10 } + - { offsetInCU: 0x2CDB, offset: 0x5B68F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xB5C8, symBinAddr: 0x13560, symSize: 0x34 } + - { offsetInCU: 0x2CEF, offset: 0x5B6A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xB638, symBinAddr: 0x135D0, symSize: 0x5C } + - { offsetInCU: 0x2D03, offset: 0x5B6B7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xB738, symBinAddr: 0x136D0, symSize: 0x2C } + - { offsetInCU: 0x2D17, offset: 0x5B6CB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xB764, symBinAddr: 0x136FC, symSize: 0x2C } + - { offsetInCU: 0x2D2B, offset: 0x5B6DF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xB790, symBinAddr: 0x13728, symSize: 0x2C } + - { offsetInCU: 0x2D3F, offset: 0x5B6F3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xB7BC, symBinAddr: 0x13754, symSize: 0x2C } + - { offsetInCU: 0x2D53, offset: 0x5B707, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xB7E8, symBinAddr: 0x13780, symSize: 0x2C } + - { offsetInCU: 0x2D67, offset: 0x5B71B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xB814, symBinAddr: 0x137AC, symSize: 0x2C } + - { offsetInCU: 0x2D7B, offset: 0x5B72F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xB840, symBinAddr: 0x137D8, symSize: 0x2C } + - { offsetInCU: 0x30D9, offset: 0x5BA8D, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6AA0, symBinAddr: 0xEA60, symSize: 0x6C } + - { offsetInCU: 0x31ED, offset: 0x5BBA1, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x81F0, symBinAddr: 0x101A0, symSize: 0x80 } + - { offsetInCU: 0x327E, offset: 0x5BC32, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8270, symBinAddr: 0x10220, symSize: 0x90 } + - { offsetInCU: 0x331E, offset: 0x5BCD2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8300, symBinAddr: 0x102B0, symSize: 0x14 } + - { offsetInCU: 0x335C, offset: 0x5BD10, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8320, symBinAddr: 0x102D0, symSize: 0x8 } + - { offsetInCU: 0x33BF, offset: 0x5BD73, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8328, symBinAddr: 0x102D8, symSize: 0x14 } + - { offsetInCU: 0x3470, offset: 0x5BE24, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x833C, symBinAddr: 0x102EC, symSize: 0x14 } + - { offsetInCU: 0x3519, offset: 0x5BECD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8350, symBinAddr: 0x10300, symSize: 0x14 } + - { offsetInCU: 0x35C0, offset: 0x5BF74, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8364, symBinAddr: 0x10314, symSize: 0x30 } + - { offsetInCU: 0x374C, offset: 0x5C100, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8394, symBinAddr: 0x10344, symSize: 0x2C } + - { offsetInCU: 0x38E3, offset: 0x5C297, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x83C0, symBinAddr: 0x10370, symSize: 0x24 } + - { offsetInCU: 0x39CF, offset: 0x5C383, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x83E4, symBinAddr: 0x10394, symSize: 0x14 } + - { offsetInCU: 0x3A35, offset: 0x5C3E9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x83F8, symBinAddr: 0x103A8, symSize: 0x14 } + - { offsetInCU: 0x3A9B, offset: 0x5C44F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x840C, symBinAddr: 0x103BC, symSize: 0x14 } + - { offsetInCU: 0x3B1A, offset: 0x5C4CE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8420, symBinAddr: 0x103D0, symSize: 0x14 } + - { offsetInCU: 0x3BCD, offset: 0x5C581, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8434, symBinAddr: 0x103E4, symSize: 0x14 } + - { offsetInCU: 0x3C4E, offset: 0x5C602, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8448, symBinAddr: 0x103F8, symSize: 0x14 } + - { offsetInCU: 0x3D10, offset: 0x5C6C4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x845C, symBinAddr: 0x1040C, symSize: 0x14 } + - { offsetInCU: 0x3DAA, offset: 0x5C75E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8470, symBinAddr: 0x10420, symSize: 0x10 } + - { offsetInCU: 0x3E12, offset: 0x5C7C6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8480, symBinAddr: 0x10430, symSize: 0x18 } + - { offsetInCU: 0x3E2E, offset: 0x5C7E2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8498, symBinAddr: 0x10448, symSize: 0x14 } + - { offsetInCU: 0x3EAA, offset: 0x5C85E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x84C8, symBinAddr: 0x10478, symSize: 0x8 } + - { offsetInCU: 0x3EC6, offset: 0x5C87A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x84D0, symBinAddr: 0x10480, symSize: 0x14 } + - { offsetInCU: 0x3EF7, offset: 0x5C8AB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x84E4, symBinAddr: 0x10494, symSize: 0x14 } + - { offsetInCU: 0x3F28, offset: 0x5C8DC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x84F8, symBinAddr: 0x104A8, symSize: 0x14 } + - { offsetInCU: 0x3F59, offset: 0x5C90D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x850C, symBinAddr: 0x104BC, symSize: 0x30 } + - { offsetInCU: 0x3F88, offset: 0x5C93C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x853C, symBinAddr: 0x104EC, symSize: 0x2C } + - { offsetInCU: 0x3FB9, offset: 0x5C96D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8568, symBinAddr: 0x10518, symSize: 0x24 } + - { offsetInCU: 0x3FEA, offset: 0x5C99E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x858C, symBinAddr: 0x1053C, symSize: 0x14 } + - { offsetInCU: 0x401B, offset: 0x5C9CF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x85A0, symBinAddr: 0x10550, symSize: 0x14 } + - { offsetInCU: 0x404C, offset: 0x5CA00, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x85B4, symBinAddr: 0x10564, symSize: 0x14 } + - { offsetInCU: 0x407D, offset: 0x5CA31, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x85C8, symBinAddr: 0x10578, symSize: 0x14 } + - { offsetInCU: 0x40AE, offset: 0x5CA62, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x85DC, symBinAddr: 0x1058C, symSize: 0x14 } + - { offsetInCU: 0x40DF, offset: 0x5CA93, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x85F0, symBinAddr: 0x105A0, symSize: 0x14 } + - { offsetInCU: 0x4110, offset: 0x5CAC4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8604, symBinAddr: 0x105B4, symSize: 0x14 } + - { offsetInCU: 0x4141, offset: 0x5CAF5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8618, symBinAddr: 0x105C8, symSize: 0x10 } + - { offsetInCU: 0x4172, offset: 0x5CB26, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8628, symBinAddr: 0x105D8, symSize: 0x18 } + - { offsetInCU: 0x418E, offset: 0x5CB42, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8640, symBinAddr: 0x105F0, symSize: 0x14 } + - { offsetInCU: 0x41DE, offset: 0x5CB92, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8660, symBinAddr: 0x10610, symSize: 0x40 } + - { offsetInCU: 0x4266, offset: 0x5CC1A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x86A0, symBinAddr: 0x10650, symSize: 0x70 } + - { offsetInCU: 0x42EA, offset: 0x5CC9E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8758, symBinAddr: 0x10708, symSize: 0x4 } + - { offsetInCU: 0x4306, offset: 0x5CCBA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x875C, symBinAddr: 0x1070C, symSize: 0x4 } + - { offsetInCU: 0x4331, offset: 0x5CCE5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8760, symBinAddr: 0x10710, symSize: 0x40 } + - { offsetInCU: 0x43BF, offset: 0x5CD73, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x87B8, symBinAddr: 0x10750, symSize: 0x3C } + - { offsetInCU: 0x43F0, offset: 0x5CDA4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x88E4, symBinAddr: 0x1087C, symSize: 0x14 } + - { offsetInCU: 0x4427, offset: 0x5CDDB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x88F8, symBinAddr: 0x10890, symSize: 0x3C } + - { offsetInCU: 0x4467, offset: 0x5CE1B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8934, symBinAddr: 0x108CC, symSize: 0x88 } + - { offsetInCU: 0x4511, offset: 0x5CEC5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8A50, symBinAddr: 0x109E8, symSize: 0x84 } + - { offsetInCU: 0x4545, offset: 0x5CEF9, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9068, symBinAddr: 0x11000, symSize: 0xB8 } + - { offsetInCU: 0x461D, offset: 0x5CFD1, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9120, symBinAddr: 0x110B8, symSize: 0x164 } + - { offsetInCU: 0x489B, offset: 0x5D24F, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x48BB, offset: 0x5D26F, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x48CF, offset: 0x5D283, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x48EF, offset: 0x5D2A3, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x4903, offset: 0x5D2B7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x4917, offset: 0x5D2CB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x492B, offset: 0x5D2DF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA99C, symBinAddr: 0x12934, symSize: 0x38 } + - { offsetInCU: 0x4A28, offset: 0x5D3DC, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4A48, offset: 0x5D3FC, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4A5C, offset: 0x5D410, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4A7C, offset: 0x5D430, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4A90, offset: 0x5D444, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4AA4, offset: 0x5D458, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4AB8, offset: 0x5D46C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9D4, symBinAddr: 0x1296C, symSize: 0x38 } + - { offsetInCU: 0x4CE5, offset: 0x5D699, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x89E4, symBinAddr: 0x1097C, symSize: 0x44 } + - { offsetInCU: 0x4D0E, offset: 0x5D6C2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8A28, symBinAddr: 0x109C0, symSize: 0x28 } + - { offsetInCU: 0x4D49, offset: 0x5D6FD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x89C8, symBinAddr: 0x10960, symSize: 0x10 } + - { offsetInCU: 0x4D65, offset: 0x5D719, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x89D8, symBinAddr: 0x10970, symSize: 0xC } + - { offsetInCU: 0x4D93, offset: 0x5D747, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x89BC, symBinAddr: 0x10954, symSize: 0xC } + - { offsetInCU: 0x4E6B, offset: 0x5D81F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8314, symBinAddr: 0x102C4, symSize: 0xC } + - { offsetInCU: 0x4E9D, offset: 0x5D851, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x84AC, symBinAddr: 0x1045C, symSize: 0x10 } + - { offsetInCU: 0x4EB9, offset: 0x5D86D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x84BC, symBinAddr: 0x1046C, symSize: 0xC } + - { offsetInCU: 0x4F17, offset: 0x5D8CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x803C, symSize: 0x44 } + - { offsetInCU: 0x4F2B, offset: 0x5D8DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x8080, symSize: 0x4 } + - { offsetInCU: 0x4F53, offset: 0x5D907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x8084, symSize: 0x2BC } + - { offsetInCU: 0x5084, offset: 0x5DA38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x8340, symSize: 0x1444 } + - { offsetInCU: 0x5385, offset: 0x5DD39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x17C4, symBinAddr: 0x9784, symSize: 0x384 } + - { offsetInCU: 0x53DE, offset: 0x5DD92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1B48, symBinAddr: 0x9B08, symSize: 0x24 } + - { offsetInCU: 0x5416, offset: 0x5DDCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D18, symBinAddr: 0x9CD8, symSize: 0x298 } + - { offsetInCU: 0x5587, offset: 0x5DF3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1FB0, symBinAddr: 0x9F70, symSize: 0x3E4 } + - { offsetInCU: 0x5832, offset: 0x5E1E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2394, symBinAddr: 0xA354, symSize: 0x794 } + - { offsetInCU: 0x5E83, offset: 0x5E837, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2B28, symBinAddr: 0xAAE8, symSize: 0x534 } + - { offsetInCU: 0x6278, offset: 0x5EC2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x305C, symBinAddr: 0xB01C, symSize: 0x3A44 } + - { offsetInCU: 0x7251, offset: 0x5FC05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6B1C, symBinAddr: 0xEACC, symSize: 0x150 } + - { offsetInCU: 0x7330, offset: 0x5FCE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6C6C, symBinAddr: 0xEC1C, symSize: 0x300 } + - { offsetInCU: 0x7593, offset: 0x5FF47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x6F6C, symBinAddr: 0xEF1C, symSize: 0x3C8 } + - { offsetInCU: 0x78F1, offset: 0x602A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7334, symBinAddr: 0xF2E4, symSize: 0x2B0 } + - { offsetInCU: 0x7A98, offset: 0x6044C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7834, symBinAddr: 0xF7E4, symSize: 0x31C } + - { offsetInCU: 0x7BF3, offset: 0x605A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x7B50, symBinAddr: 0xFB00, symSize: 0x438 } + - { offsetInCU: 0x7E5D, offset: 0x60811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x7F88, symBinAddr: 0xFF38, symSize: 0x188 } + - { offsetInCU: 0x8119, offset: 0x60ACD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8AD4, symBinAddr: 0x10A6C, symSize: 0x1F4 } + - { offsetInCU: 0x819E, offset: 0x60B52, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x8E8C, symBinAddr: 0x10E24, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x60E50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13810, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x60E8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x13820, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x60F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13810, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x60FDF, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x1384C, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x60FF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x13860, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0x13940, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x610C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0x13958, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x6113A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0x13984, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x6116F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x1398C, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x611A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0x139B0, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x611BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0x139BC, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x611D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2398, symBinAddr: 0x15BD8, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61398, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13E8, symBinAddr: 0x14C28, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x613CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1438, symBinAddr: 0x14C78, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x613F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x27B4, symBinAddr: 0x15FF4, symSize: 0x145C } + - { offsetInCU: 0x4B4, offset: 0x61450, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1488, symBinAddr: 0x14CC8, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x614A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x14CD0, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x6158B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D0, symBinAddr: 0x14D10, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x615FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1530, symBinAddr: 0x14D70, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x6164B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x153C, symBinAddr: 0x14D7C, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x616A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15B8, symBinAddr: 0x14DF8, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x616C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15C4, symBinAddr: 0x14E04, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x616FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1620, symBinAddr: 0x14E60, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61735, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1670, symBinAddr: 0x14EB0, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61758, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3C10, symBinAddr: 0x17450, symSize: 0x258 } + - { offsetInCU: 0x857, offset: 0x617F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x14F08, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61828, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1724, symBinAddr: 0x14F64, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61859, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1748, symBinAddr: 0x14F88, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61875, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1754, symBinAddr: 0x14F94, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5DAC, symBinAddr: 0x195A8, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x6196A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0x14FF0, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x619A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1800, symBinAddr: 0x15040, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x619C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5F5C, symBinAddr: 0x19758, symSize: 0x320 } + - { offsetInCU: 0xA97, offset: 0x61A33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1848, symBinAddr: 0x15088, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61A68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1898, symBinAddr: 0x150D8, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61A99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x18BC, symBinAddr: 0x150FC, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61AB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18C8, symBinAddr: 0x15108, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61AD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x627C, symBinAddr: 0x19A78, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x61B81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1924, symBinAddr: 0x15164, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x61BB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1964, symBinAddr: 0x151A4, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x61BDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x63E4, symBinAddr: 0x19BE0, symSize: 0x2D8 } + - { offsetInCU: 0xCA2, offset: 0x61C3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x19A4, symBinAddr: 0x151E4, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x61C73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x19F0, symBinAddr: 0x15230, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x61CA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A14, symBinAddr: 0x15254, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x61CC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x15260, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x61CDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x66BC, symBinAddr: 0x19EB8, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x61D9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A7C, symBinAddr: 0x152BC, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x61DD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AEC, symBinAddr: 0x1532C, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x61DF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x681C, symBinAddr: 0x1A018, symSize: 0x4E8 } + - { offsetInCU: 0xEC9, offset: 0x61E65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B4C, symBinAddr: 0x1538C, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x61E9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BD4, symBinAddr: 0x15414, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x61ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BF8, symBinAddr: 0x15438, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x61EE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C04, symBinAddr: 0x15444, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x61F03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6DD0, symBinAddr: 0x1A5CC, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x62017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C60, symBinAddr: 0x154A0, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x6204E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CC4, symBinAddr: 0x15504, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x62071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7064, symBinAddr: 0x1A860, symSize: 0x58C } + - { offsetInCU: 0x1162, offset: 0x620FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D14, symBinAddr: 0x15554, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6217E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1D2C, symBinAddr: 0x1556C, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x62261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D70, symBinAddr: 0x155B0, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x622E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DD8, symBinAddr: 0x15618, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x6233C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DF4, symBinAddr: 0x15634, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x6236D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E18, symBinAddr: 0x15658, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x62389, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E24, symBinAddr: 0x15664, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x623A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7634, symBinAddr: 0x1AE30, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62433, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x156C0, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x6246A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EAC, symBinAddr: 0x156EC, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x6248D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x76F4, symBinAddr: 0x1AEF0, symSize: 0x1B0 } + - { offsetInCU: 0x156C, offset: 0x62508, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1ED0, symBinAddr: 0x15710, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x6253D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x15780, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x6256E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1F64, symBinAddr: 0x157A4, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x6258A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F70, symBinAddr: 0x157B0, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x625A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x78E8, symBinAddr: 0x1B0E4, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x626B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FCC, symBinAddr: 0x1580C, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x626E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2024, symBinAddr: 0x15864, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x6270B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7B2C, symBinAddr: 0x1B328, symSize: 0x370 } + - { offsetInCU: 0x17D2, offset: 0x6276E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x158B4, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x627A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x20D8, symBinAddr: 0x15918, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x627D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x20FC, symBinAddr: 0x1593C, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x627F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2108, symBinAddr: 0x15948, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x6280C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E9C, symBinAddr: 0x1B698, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x628EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2164, symBinAddr: 0x159A4, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62925, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21AC, symBinAddr: 0x159EC, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62948, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8090, symBinAddr: 0x1B88C, symSize: 0x390 } + - { offsetInCU: 0x1A2F, offset: 0x629CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2278, symBinAddr: 0x15AB8, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62A15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2290, symBinAddr: 0x15AD0, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22B4, symBinAddr: 0x15AF4, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62A62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x22C0, symBinAddr: 0x15B00, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x84A8, symBinAddr: 0x1BCA4, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x62B25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x231C, symBinAddr: 0x15B5C, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x62B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2360, symBinAddr: 0x15BA0, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x62B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x85B4, symBinAddr: 0x1BDB0, symSize: 0x1DC } + - { offsetInCU: 0x1C20, offset: 0x62BBC, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3EA8, symBinAddr: 0x176A8, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x62BD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3ECC, symBinAddr: 0x176CC, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x62BE4, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F10, symBinAddr: 0x17710, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x62BF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3F30, symBinAddr: 0x17730, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x62C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3F74, symBinAddr: 0x17774, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x62C20, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FB8, symBinAddr: 0x177B8, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x62C34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3FC0, symBinAddr: 0x177BC, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x62C48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4010, symBinAddr: 0x1780C, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x62C5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x409C, symBinAddr: 0x17898, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x62C70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x40A4, symBinAddr: 0x178A0, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x62C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x40A8, symBinAddr: 0x178A4, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x62C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x40AC, symBinAddr: 0x178A8, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x62CAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x40BC, symBinAddr: 0x178B8, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x62CC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x496C, symBinAddr: 0x18168, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x62CD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x497C, symBinAddr: 0x18178, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x62CE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4980, symBinAddr: 0x1817C, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x62CFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x49C4, symBinAddr: 0x181C0, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x62D10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x49C8, symBinAddr: 0x181C4, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x62D24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4A0C, symBinAddr: 0x18208, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x62D38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4A10, symBinAddr: 0x1820C, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x62D4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x4A54, symBinAddr: 0x18250, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x62D60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4A98, symBinAddr: 0x18294, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x62D74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4ADC, symBinAddr: 0x182D8, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x62D88, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4B20, symBinAddr: 0x1831C, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x62D9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x4B64, symBinAddr: 0x18360, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x62DB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4BA8, symBinAddr: 0x183A4, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x62DC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x4BEC, symBinAddr: 0x183E8, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x62DD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x4C30, symBinAddr: 0x1842C, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x62DEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x4C74, symBinAddr: 0x18470, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x62E00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x4CB8, symBinAddr: 0x184B4, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x62E14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x4CFC, symBinAddr: 0x184F8, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x62E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4D40, symBinAddr: 0x1853C, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x62E3C, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4D84, symBinAddr: 0x18580, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x62E50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4D90, symBinAddr: 0x1858C, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x62E64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4E20, symBinAddr: 0x1861C, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x62E78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4EDC, symBinAddr: 0x186D8, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x62E8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4EE4, symBinAddr: 0x186E0, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x62EA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4EE8, symBinAddr: 0x186E4, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x62EB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4EF0, symBinAddr: 0x186EC, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x62EC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4F00, symBinAddr: 0x186FC, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x62EDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4F28, symBinAddr: 0x18724, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x62EF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4F6C, symBinAddr: 0x18768, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x62F04, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4FE0, symBinAddr: 0x187DC, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x62F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4FF4, symBinAddr: 0x187F0, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x62F2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x5040, symBinAddr: 0x1883C, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x62F40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x5088, symBinAddr: 0x18884, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x62F54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x50D0, symBinAddr: 0x188CC, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x62F68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x50E0, symBinAddr: 0x188DC, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x62F7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5118, symBinAddr: 0x18914, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x62F90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x518C, symBinAddr: 0x18988, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x62FA4, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5248, symBinAddr: 0x18A44, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x62FB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x5264, symBinAddr: 0x18A60, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x62FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x52E0, symBinAddr: 0x18ADC, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x62FE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5328, symBinAddr: 0x18B24, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x62FF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x537C, symBinAddr: 0x18B78, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x63008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x538C, symBinAddr: 0x18B88, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x6301C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x53B4, symBinAddr: 0x18BB0, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x63030, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x53F0, symBinAddr: 0x18BEC, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x63044, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x545C, symBinAddr: 0x18C58, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x63058, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5468, symBinAddr: 0x18C64, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x6306C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x54AC, symBinAddr: 0x18CA8, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x63080, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x54F4, symBinAddr: 0x18CF0, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63094, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5534, symBinAddr: 0x18D30, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x630A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x5544, symBinAddr: 0x18D40, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x630BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x5594, symBinAddr: 0x18D90, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x630D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5640, symBinAddr: 0x18E3C, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x630E4, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5754, symBinAddr: 0x18F50, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x630F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5780, symBinAddr: 0x18F7C, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x6310C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x581C, symBinAddr: 0x19018, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x63120, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x5864, symBinAddr: 0x19060, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x63134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x58C0, symBinAddr: 0x190BC, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x63148, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x58D0, symBinAddr: 0x190CC, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x6315C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5928, symBinAddr: 0x19124, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x63170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x59EC, symBinAddr: 0x191E8, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63184, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5B30, symBinAddr: 0x1932C, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x5B64, symBinAddr: 0x19360, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x631AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x5C18, symBinAddr: 0x19414, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x631C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5C60, symBinAddr: 0x1945C, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x631D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x5CC4, symBinAddr: 0x194C0, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x631E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5CD4, symBinAddr: 0x194D0, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x631FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x5CD8, symBinAddr: 0x194D4, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x63210, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5D1C, symBinAddr: 0x19518, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x63224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5D20, symBinAddr: 0x1951C, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x63238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5D64, symBinAddr: 0x19560, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x6324C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5D68, symBinAddr: 0x19564, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x63260, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x6D04, symBinAddr: 0x1A500, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63274, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x6D48, symBinAddr: 0x1A544, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63288, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6D8C, symBinAddr: 0x1A588, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x6329C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x75F0, symBinAddr: 0x1ADEC, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x632B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x78A4, symBinAddr: 0x1B0A0, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x632C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8420, symBinAddr: 0x1BC1C, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x632D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8464, symBinAddr: 0x1BC60, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x632EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8790, symBinAddr: 0x1BF8C, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x63300, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x87D4, symBinAddr: 0x1BFD0, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63314, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x8818, symBinAddr: 0x1C014, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63328, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x88C0, symBinAddr: 0x1C0BC, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x6333C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8904, symBinAddr: 0x1C100, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x63350, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8994, symBinAddr: 0x1C190, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63364, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A50, symBinAddr: 0x1C24C, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63378, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A54, symBinAddr: 0x1C250, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x6338C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8A64, symBinAddr: 0x1C260, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x633A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8AF4, symBinAddr: 0x1C2F0, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x633B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8BB0, symBinAddr: 0x1C3AC, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x633C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8BB4, symBinAddr: 0x1C3B0, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x633DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8BC4, symBinAddr: 0x1C3C0, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x633F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8C54, symBinAddr: 0x1C450, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63404, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x8D10, symBinAddr: 0x1C50C, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63418, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8D18, symBinAddr: 0x1C514, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x6342C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x8D1C, symBinAddr: 0x1C518, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x63440, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8D28, symBinAddr: 0x1C524, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63454, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8D38, symBinAddr: 0x1C534, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63468, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8DC8, symBinAddr: 0x1C5C4, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x6347C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8E84, symBinAddr: 0x1C680, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x63490, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8E88, symBinAddr: 0x1C684, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x634A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8EA0, symBinAddr: 0x1C69C, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x634B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8EA4, symBinAddr: 0x1C6A0, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x634CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8EB4, symBinAddr: 0x1C6B0, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x634E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8EEC, symBinAddr: 0x1C6E8, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x634F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8F60, symBinAddr: 0x1C75C, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63508, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9024, symBinAddr: 0x1C820, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x6351C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x9048, symBinAddr: 0x1C844, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x90BC, symBinAddr: 0x1C8B8, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63544, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x9104, symBinAddr: 0x1C900, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63558, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x9158, symBinAddr: 0x1C954, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x6356C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x9168, symBinAddr: 0x1C964, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63580, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x91A0, symBinAddr: 0x1C99C, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63594, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x9204, symBinAddr: 0x1CA00, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x635A8, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x92B0, symBinAddr: 0x1CAAC, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x635BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x92C4, symBinAddr: 0x1CAC0, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x635D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x9328, symBinAddr: 0x1CB24, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x635E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9370, symBinAddr: 0x1CB6C, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x635F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x93C0, symBinAddr: 0x1CBBC, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x6360C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x93D0, symBinAddr: 0x1CBCC, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63620, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x9408, symBinAddr: 0x1CC04, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63634, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9474, symBinAddr: 0x1CC70, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63648, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9528, symBinAddr: 0x1CD24, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x6365C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x954C, symBinAddr: 0x1CD48, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63670, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x95B8, symBinAddr: 0x1CDB4, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63684, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x9600, symBinAddr: 0x1CDFC, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63698, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9650, symBinAddr: 0x1CE4C, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x636AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9660, symBinAddr: 0x1CE5C, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x636C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9664, symBinAddr: 0x1CE60, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x636D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x96A8, symBinAddr: 0x1CEA4, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x636E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x96AC, symBinAddr: 0x1CEA8, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x636FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x96F0, symBinAddr: 0x1CEEC, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63710, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x96F4, symBinAddr: 0x1CEF0, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63724, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9738, symBinAddr: 0x1CF34, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63738, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x973C, symBinAddr: 0x1CF38, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x6374C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9780, symBinAddr: 0x1CF7C, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63760, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9784, symBinAddr: 0x1CF80, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63774, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97C8, symBinAddr: 0x1CFC4, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63788, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97CC, symBinAddr: 0x1CFC8, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x6379C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9810, symBinAddr: 0x1D00C, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x637B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9814, symBinAddr: 0x1D010, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x637C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9858, symBinAddr: 0x1D054, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x637D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x985C, symBinAddr: 0x1D058, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x637EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x98A0, symBinAddr: 0x1D09C, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63800, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x98A4, symBinAddr: 0x1D0A0, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63814, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98E8, symBinAddr: 0x1D0E4, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63828, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98EC, symBinAddr: 0x1D0E8, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x6383C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9930, symBinAddr: 0x1D12C, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63850, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9934, symBinAddr: 0x1D130, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63864, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9978, symBinAddr: 0x1D174, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63878, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x997C, symBinAddr: 0x1D178, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x6388C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x99C0, symBinAddr: 0x1D1BC, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x638A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x99C4, symBinAddr: 0x1D1C0, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x638B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9A08, symBinAddr: 0x1D204, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x638C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9A0C, symBinAddr: 0x1D208, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x638DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9A50, symBinAddr: 0x1D24C, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x638F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9A54, symBinAddr: 0x1D250, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63904, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9A98, symBinAddr: 0x1D294, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63918, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9ADC, symBinAddr: 0x1D2D8, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x6392C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9B20, symBinAddr: 0x1D31C, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63940, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9B64, symBinAddr: 0x1D360, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63954, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9BF4, symBinAddr: 0x1D3F0, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63968, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9CB0, symBinAddr: 0x1D4AC, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x6397C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9CB4, symBinAddr: 0x1D4B0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63990, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9E18, symBinAddr: 0x1D614, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x639A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9E1C, symBinAddr: 0x1D618, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x639B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9E2C, symBinAddr: 0x1D628, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x639CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9EBC, symBinAddr: 0x1D6B8, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x639E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9F78, symBinAddr: 0x1D774, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x639F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9F7C, symBinAddr: 0x1D778, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63A08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F8C, symBinAddr: 0x1D788, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63A1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x1D78C, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63A30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9FD4, symBinAddr: 0x1D7D0, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63A44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9FD8, symBinAddr: 0x1D7D4, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63A58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA01C, symBinAddr: 0x1D818, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63A6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA020, symBinAddr: 0x1D81C, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63A80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA064, symBinAddr: 0x1D860, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63A94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA068, symBinAddr: 0x1D864, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63AA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA0AC, symBinAddr: 0x1D8A8, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63ABC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA0B0, symBinAddr: 0x1D8AC, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63AD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0F4, symBinAddr: 0x1D8F0, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63AE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0F8, symBinAddr: 0x1D8F4, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63AF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA13C, symBinAddr: 0x1D938, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x63B0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA140, symBinAddr: 0x1D93C, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x63B20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA184, symBinAddr: 0x1D980, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x63B34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA188, symBinAddr: 0x1D984, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x63B48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA1CC, symBinAddr: 0x1D9C8, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x63B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x1D9CC, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x63BB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0x139C8, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0x139F0, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x63C3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14F4, symBinAddr: 0x14D34, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x63CFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15D0, symBinAddr: 0x14E10, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x63D19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15F8, symBinAddr: 0x14E38, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x63D3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x14FA0, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x63D57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0x14FC8, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x63D79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18D4, symBinAddr: 0x15114, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x63D95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18FC, symBinAddr: 0x1513C, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x63DB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x1526C, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x63DD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x15294, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x63DF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C10, symBinAddr: 0x15450, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x63E11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x15478, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x63E64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D98, symBinAddr: 0x155D8, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x63F06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0x15670, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x63F22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E58, symBinAddr: 0x15698, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x63F44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F7C, symBinAddr: 0x157BC, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x63F60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1FA4, symBinAddr: 0x157E4, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x63F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2114, symBinAddr: 0x15954, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x63F9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x213C, symBinAddr: 0x1597C, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x63FC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x22CC, symBinAddr: 0x15B0C, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x63FDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x22F4, symBinAddr: 0x15B34, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x640C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x13870, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x64146, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0x13A18, symSize: 0x41C } + - { offsetInCU: 0x31DB, offset: 0x64177, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5F4, symBinAddr: 0x13E34, symSize: 0x110 } + - { offsetInCU: 0x320C, offset: 0x641A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x704, symBinAddr: 0x13F44, symSize: 0x18C } + - { offsetInCU: 0x323D, offset: 0x641D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x890, symBinAddr: 0x140D0, symSize: 0x164 } + - { offsetInCU: 0x326E, offset: 0x6420A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9F4, symBinAddr: 0x14234, symSize: 0x1B4 } + - { offsetInCU: 0x329F, offset: 0x6423B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xBA8, symBinAddr: 0x143E8, symSize: 0x204 } + - { offsetInCU: 0x32D0, offset: 0x6426C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDAC, symBinAddr: 0x145EC, symSize: 0x128 } + - { offsetInCU: 0x3301, offset: 0x6429D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xED4, symBinAddr: 0x14714, symSize: 0x1DC } + - { offsetInCU: 0x3332, offset: 0x642CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10B0, symBinAddr: 0x148F0, symSize: 0x1FC } + - { offsetInCU: 0x3363, offset: 0x642FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12AC, symBinAddr: 0x14AEC, symSize: 0x13C } + - { offsetInCU: 0x27, offset: 0x6453B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAA4, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x1DDB8, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64915, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x1DDE8, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x64929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x1DE28, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x6493D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x1DECC, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64951, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1DFD0, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x1DFFC, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x64979, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x1E098, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x6498D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1E0E0, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x649A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1E140, symSize: 0x10 } + - { offsetInCU: 0x60E, offset: 0x64B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAA4, symSize: 0x38 } + - { offsetInCU: 0x626, offset: 0x64B3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAA4, symSize: 0x38 } + - { offsetInCU: 0x64D, offset: 0x64B61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x1DADC, symSize: 0x3C } + - { offsetInCU: 0x667, offset: 0x64B7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x1DB18, symSize: 0x54 } + - { offsetInCU: 0x69C, offset: 0x64BB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x1DB6C, symSize: 0x10 } + - { offsetInCU: 0x6B0, offset: 0x64BC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x1DB7C, symSize: 0x4 } + - { offsetInCU: 0x6D1, offset: 0x64BE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0xDC, symBinAddr: 0x1DB80, symSize: 0x14 } + - { offsetInCU: 0x6E5, offset: 0x64BF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0xF0, symBinAddr: 0x1DB94, symSize: 0x14 } + - { offsetInCU: 0x715, offset: 0x64C29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x104, symBinAddr: 0x1DBA8, symSize: 0x10 } + - { offsetInCU: 0x739, offset: 0x64C4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x1DBB8, symSize: 0x4 } + - { offsetInCU: 0x75A, offset: 0x64C6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x1DBBC, symSize: 0x2C } + - { offsetInCU: 0x76E, offset: 0x64C82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x1DBE8, symSize: 0x34 } + - { offsetInCU: 0x7A3, offset: 0x64CB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1DC1C, symSize: 0x10 } + - { offsetInCU: 0x7C7, offset: 0x64CDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1DC2C, symSize: 0x4 } + - { offsetInCU: 0x7E8, offset: 0x64CFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1DC30, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x64D10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x1DC38, symSize: 0x8 } + - { offsetInCU: 0x82C, offset: 0x64D40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1DC40, symSize: 0x10 } + - { offsetInCU: 0x850, offset: 0x64D64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1DC50, symSize: 0x4 } + - { offsetInCU: 0x871, offset: 0x64D85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x1DC54, symSize: 0x8 } + - { offsetInCU: 0x885, offset: 0x64D99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1DC5C, symSize: 0x8 } + - { offsetInCU: 0x8B5, offset: 0x64DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x1DC64, symSize: 0x10 } + - { offsetInCU: 0x8D9, offset: 0x64DED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x1DC74, symSize: 0x4 } + - { offsetInCU: 0x8FA, offset: 0x64E0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x1DC78, symSize: 0x2C } + - { offsetInCU: 0x90E, offset: 0x64E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x1DCA4, symSize: 0x34 } + - { offsetInCU: 0x943, offset: 0x64E57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x1DCD8, symSize: 0x10 } + - { offsetInCU: 0x967, offset: 0x64E7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x1DCE8, symSize: 0x4 } + - { offsetInCU: 0x988, offset: 0x64E9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x1DCEC, symSize: 0x2C } + - { offsetInCU: 0x99C, offset: 0x64EB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x1DD18, symSize: 0x34 } + - { offsetInCU: 0x9D1, offset: 0x64EE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1DD4C, symSize: 0x10 } + - { offsetInCU: 0x9F5, offset: 0x64F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1DD5C, symSize: 0x4 } + - { offsetInCU: 0xA16, offset: 0x64F2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1DD60, symSize: 0xC } + - { offsetInCU: 0xA2A, offset: 0x64F3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1DD6C, symSize: 0xC } + - { offsetInCU: 0xA5E, offset: 0x64F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x1DD78, symSize: 0x10 } + - { offsetInCU: 0xA82, offset: 0x64F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x1DD88, symSize: 0x4 } + - { offsetInCU: 0xAA3, offset: 0x64FB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1DD8C, symSize: 0xC } + - { offsetInCU: 0xAB7, offset: 0x64FCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x1DD98, symSize: 0xC } + - { offsetInCU: 0xAEB, offset: 0x64FFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x1DDA4, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x65023, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x1DDB4, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x650E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x598, symBinAddr: 0x1E6E8, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x65117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5C4, symBinAddr: 0x1E714, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x65133, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x1E950, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x651AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x7AC, symBinAddr: 0x1E8FC, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x651DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7D8, symBinAddr: 0x1E928, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x651F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x864, symBinAddr: 0x1E9B4, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x65239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C8, symBinAddr: 0x1EA18, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x65269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9DC, symBinAddr: 0x1EB1C, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x6527D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA6C, symBinAddr: 0x1EBAC, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65291, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB28, symBinAddr: 0x1EC68, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x652A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB2C, symBinAddr: 0x1EC6C, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x652B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB3C, symBinAddr: 0x1EC7C, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x652CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBCC, symBinAddr: 0x1ED0C, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x652E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC88, symBinAddr: 0x1EDC8, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x652F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC90, symBinAddr: 0x1EDD0, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x65309, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC94, symBinAddr: 0x1EDD4, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x6531D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC9C, symBinAddr: 0x1EDDC, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x65331, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCAC, symBinAddr: 0x1EDEC, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x65345, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x1EDF0, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x65359, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF4, symBinAddr: 0x1EE34, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x6536D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF8, symBinAddr: 0x1EE38, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x65477, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1E150, symSize: 0x2AC } + - { offsetInCU: 0x433, offset: 0x6549A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1E3FC, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x655C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x1EFB8, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x65608, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x1EFD8, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x6565C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x1F064, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65683, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x1F068, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x656AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1F06C, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x656D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1F0E0, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x6570D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x1F0E4, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65779, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x1F164, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x657CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x1F1C8, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x1F258, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x6587D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x1F2D8, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x658AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1F33C, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x658CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x1F340, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x659B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1FA94, symSize: 0x384 } + - { offsetInCU: 0x7D5, offset: 0x65CC6, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1060, symBinAddr: 0x1FEE4, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x65CDA, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1070, symBinAddr: 0x1FEF4, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x65CEE, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1104, symBinAddr: 0x1FF04, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x65D02, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x114C, symBinAddr: 0x1FF4C, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x65D16, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1160, symBinAddr: 0x1FF60, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x65D2A, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x11A4, symBinAddr: 0x1FFA4, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x65D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11E4, symBinAddr: 0x1FFE4, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x65D52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x13A8, symBinAddr: 0x201A8, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x65D66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13D8, symBinAddr: 0x201D8, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x65D7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1594, symBinAddr: 0x20394, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x65F84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1EE84, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x65FAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1EF98, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x660DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x1F344, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x661BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1FA20, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x6624D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF94, symBinAddr: 0x1FE18, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x662C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFFC, symBinAddr: 0x1FE80, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x6636D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AF0, symBinAddr: 0x87318, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x66387, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2AF8, symBinAddr: 0x87320, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x66395, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x203D4, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x663D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x20408, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x66407, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x20448, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x66477, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20528, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x66497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20528, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x6650F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x20690, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x6652F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x20690, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x66555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x206EC, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x665CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20758, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x665EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20758, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x6690A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1C70, symBinAddr: 0x22034, symSize: 0x1A0 } + - { offsetInCU: 0x6B4, offset: 0x669D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x207DC, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66A08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x20864, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66A48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x2095C, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66A5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x209BC, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66A70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x20A0C, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x20A94, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66AE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x20CC8, symSize: 0x5C } + - { offsetInCU: 0x9D1, offset: 0x66CEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x16E4, symBinAddr: 0x21AA8, symSize: 0x140 } + - { offsetInCU: 0xACD, offset: 0x66DEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1824, symBinAddr: 0x21BE8, symSize: 0x18 } + - { offsetInCU: 0xAE1, offset: 0x66DFF, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1978, symBinAddr: 0x21D3C, symSize: 0x2C } + - { offsetInCU: 0xAF9, offset: 0x66E17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1C0C, symBinAddr: 0x21FD0, symSize: 0x44 } + - { offsetInCU: 0xB0D, offset: 0x66E2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1C50, symBinAddr: 0x22014, symSize: 0x20 } + - { offsetInCU: 0xB21, offset: 0x66E3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1E10, symBinAddr: 0x221D4, symSize: 0x20 } + - { offsetInCU: 0xB35, offset: 0x66E53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E30, symBinAddr: 0x221F4, symSize: 0x4 } + - { offsetInCU: 0xB49, offset: 0x66E67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E34, symBinAddr: 0x221F8, symSize: 0x44 } + - { offsetInCU: 0xB5D, offset: 0x66E7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E78, symBinAddr: 0x2223C, symSize: 0x4 } + - { offsetInCU: 0xB71, offset: 0x66E8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1E7C, symBinAddr: 0x22240, symSize: 0x44 } + - { offsetInCU: 0xB85, offset: 0x66EA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1FA0, symBinAddr: 0x22364, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x66EB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1FB8, symBinAddr: 0x2237C, symSize: 0x14 } + - { offsetInCU: 0xBAD, offset: 0x66ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1FCC, symBinAddr: 0x22390, symSize: 0x18 } + - { offsetInCU: 0xBC1, offset: 0x66EDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x2044, symBinAddr: 0x22408, symSize: 0x6C } + - { offsetInCU: 0xBD5, offset: 0x66EF3, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x20B0, symBinAddr: 0x22474, symSize: 0x14 } + - { offsetInCU: 0xBE9, offset: 0x66F07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x20C4, symBinAddr: 0x22488, symSize: 0x50 } + - { offsetInCU: 0xBFD, offset: 0x66F1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x2114, symBinAddr: 0x224D8, symSize: 0x48 } + - { offsetInCU: 0xC11, offset: 0x66F2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x215C, symBinAddr: 0x22520, symSize: 0x48 } + - { offsetInCU: 0xC25, offset: 0x66F43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x21A4, symBinAddr: 0x22568, symSize: 0x8 } + - { offsetInCU: 0xC39, offset: 0x66F57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x21AC, symBinAddr: 0x22570, symSize: 0x4 } + - { offsetInCU: 0xC4D, offset: 0x66F6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x21B0, symBinAddr: 0x22574, symSize: 0x8 } + - { offsetInCU: 0xC61, offset: 0x66F7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x21B8, symBinAddr: 0x2257C, symSize: 0x10 } + - { offsetInCU: 0xC75, offset: 0x66F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x22A0, symBinAddr: 0x22654, symSize: 0x90 } + - { offsetInCU: 0xC89, offset: 0x66FA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2330, symBinAddr: 0x226E4, symSize: 0xBC } + - { offsetInCU: 0xC9D, offset: 0x66FBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x23EC, symBinAddr: 0x227A0, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x66FCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x23F0, symBinAddr: 0x227A4, symSize: 0x10 } + - { offsetInCU: 0xCC5, offset: 0x66FE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x2400, symBinAddr: 0x227B4, symSize: 0x90 } + - { offsetInCU: 0xCD9, offset: 0x66FF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2490, symBinAddr: 0x22844, symSize: 0xBC } + - { offsetInCU: 0xCED, offset: 0x6700B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x254C, symBinAddr: 0x22900, symSize: 0x8 } + - { offsetInCU: 0xD01, offset: 0x6701F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x2554, symBinAddr: 0x22908, symSize: 0x4 } + - { offsetInCU: 0xD15, offset: 0x67033, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2558, symBinAddr: 0x2290C, symSize: 0x8 } + - { offsetInCU: 0xD29, offset: 0x67047, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2560, symBinAddr: 0x22914, symSize: 0x10 } + - { offsetInCU: 0xD48, offset: 0x67066, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2598, symBinAddr: 0x2294C, symSize: 0x24 } + - { offsetInCU: 0xD71, offset: 0x6708F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x26A4, symBinAddr: 0x22A58, symSize: 0x8 } + - { offsetInCU: 0xD85, offset: 0x670A3, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x26AC, symBinAddr: 0x22A60, symSize: 0x10 } + - { offsetInCU: 0xD99, offset: 0x670B7, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x26BC, symBinAddr: 0x22A70, symSize: 0x8 } + - { offsetInCU: 0xDAD, offset: 0x670CB, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2748, symBinAddr: 0x22A78, symSize: 0x3C } + - { offsetInCU: 0xE2F, offset: 0x6714D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x203C4, symSize: 0x4 } + - { offsetInCU: 0xE4B, offset: 0x67169, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x203C8, symSize: 0x4 } + - { offsetInCU: 0xE67, offset: 0x67185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x203CC, symSize: 0x4 } + - { offsetInCU: 0xE83, offset: 0x671A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x203D0, symSize: 0x4 } + - { offsetInCU: 0x10F5, offset: 0x67413, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x2047C, symSize: 0x40 } + - { offsetInCU: 0x1123, offset: 0x67441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x204BC, symSize: 0x60 } + - { offsetInCU: 0x115B, offset: 0x67479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x20588, symSize: 0x84 } + - { offsetInCU: 0x1182, offset: 0x674A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x2060C, symSize: 0x14 } + - { offsetInCU: 0x11C9, offset: 0x674E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x20620, symSize: 0x28 } + - { offsetInCU: 0x12D0, offset: 0x675EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x20910, symSize: 0x4C } + - { offsetInCU: 0x12EF, offset: 0x6760D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x2096C, symSize: 0x50 } + - { offsetInCU: 0x1318, offset: 0x67636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x209CC, symSize: 0x3C } + - { offsetInCU: 0x133D, offset: 0x6765B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x20A08, symSize: 0x4 } + - { offsetInCU: 0x1392, offset: 0x676B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x20B40, symSize: 0x4C } + - { offsetInCU: 0x13B1, offset: 0x676CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x20B8C, symSize: 0x50 } + - { offsetInCU: 0x13DA, offset: 0x676F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x20BDC, symSize: 0x3C } + - { offsetInCU: 0x13FF, offset: 0x6771D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x20C18, symSize: 0x8 } + - { offsetInCU: 0x1420, offset: 0x6773E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x20C20, symSize: 0x30 } + - { offsetInCU: 0x143D, offset: 0x6775B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x20C50, symSize: 0x3C } + - { offsetInCU: 0x1462, offset: 0x67780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x20C8C, symSize: 0x3C } + - { offsetInCU: 0x14AC, offset: 0x677CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x960, symBinAddr: 0x20D24, symSize: 0x30 } + - { offsetInCU: 0x14C9, offset: 0x677E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x990, symBinAddr: 0x20D54, symSize: 0x44 } + - { offsetInCU: 0x14F2, offset: 0x67810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x9D4, symBinAddr: 0x20D98, symSize: 0x3C } + - { offsetInCU: 0x151E, offset: 0x6783C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x20DD4, symSize: 0xC8 } + - { offsetInCU: 0x1558, offset: 0x67876, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x20E9C, symSize: 0x4 } + - { offsetInCU: 0x15FC, offset: 0x6791A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xADC, symBinAddr: 0x20EA0, symSize: 0x128 } + - { offsetInCU: 0x172D, offset: 0x67A4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xC04, symBinAddr: 0x20FC8, symSize: 0x224 } + - { offsetInCU: 0x1796, offset: 0x67AB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x183C, symBinAddr: 0x21C00, symSize: 0x13C } + - { offsetInCU: 0x1844, offset: 0x67B62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xE28, symBinAddr: 0x211EC, symSize: 0x70 } + - { offsetInCU: 0x186E, offset: 0x67B8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xE98, symBinAddr: 0x2125C, symSize: 0x30 } + - { offsetInCU: 0x1890, offset: 0x67BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xEC8, symBinAddr: 0x2128C, symSize: 0x188 } + - { offsetInCU: 0x1935, offset: 0x67C53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0x1050, symBinAddr: 0x21414, symSize: 0x14 } + - { offsetInCU: 0x1982, offset: 0x67CA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0x10D4, symBinAddr: 0x21498, symSize: 0x3C } + - { offsetInCU: 0x1A08, offset: 0x67D26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0x1064, symBinAddr: 0x21428, symSize: 0x70 } + - { offsetInCU: 0x1A9C, offset: 0x67DBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0x1110, symBinAddr: 0x214D4, symSize: 0x78 } + - { offsetInCU: 0x1B80, offset: 0x67E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0x1188, symBinAddr: 0x2154C, symSize: 0x230 } + - { offsetInCU: 0x1D6C, offset: 0x6808A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x13B8, symBinAddr: 0x2177C, symSize: 0xC } + - { offsetInCU: 0x1DC3, offset: 0x680E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21788, symSize: 0x4 } + - { offsetInCU: 0x1DDF, offset: 0x680FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21788, symSize: 0x4 } + - { offsetInCU: 0x1DF8, offset: 0x68116, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21788, symSize: 0x4 } + - { offsetInCU: 0x1E11, offset: 0x6812F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13C8, symBinAddr: 0x2178C, symSize: 0x4 } + - { offsetInCU: 0x1E29, offset: 0x68147, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13CC, symBinAddr: 0x21790, symSize: 0xB8 } + - { offsetInCU: 0x1EC9, offset: 0x681E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14C4, symBinAddr: 0x21888, symSize: 0x4 } + - { offsetInCU: 0x1EE1, offset: 0x681FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2604, symBinAddr: 0x229B8, symSize: 0x7C } + - { offsetInCU: 0x1FB8, offset: 0x682D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x1484, symBinAddr: 0x21848, symSize: 0x40 } + - { offsetInCU: 0x1FED, offset: 0x6830B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg', symObjAddr: 0x14C8, symBinAddr: 0x2188C, symSize: 0x2C } + - { offsetInCU: 0x202E, offset: 0x6834C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14F4, symBinAddr: 0x218B8, symSize: 0x2C } + - { offsetInCU: 0x206F, offset: 0x6838D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1520, symBinAddr: 0x218E4, symSize: 0x2C } + - { offsetInCU: 0x20E6, offset: 0x68404, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x154C, symBinAddr: 0x21910, symSize: 0x198 } + - { offsetInCU: 0x25E3, offset: 0x68901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x19A4, symBinAddr: 0x21D68, symSize: 0x24 } + - { offsetInCU: 0x2626, offset: 0x68944, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x19C8, symBinAddr: 0x21D8C, symSize: 0x244 } + - { offsetInCU: 0x43, offset: 0x68AE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x22B7C, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x22BB8, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68B0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x22C3C, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68B26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x22D64, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68B4F, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x22D94, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68B63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x22DB0, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68B77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x22E4C, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68B8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x22EB0, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68B9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x22F0C, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x68BB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x22F1C, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x68BC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x22F4C, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x68BDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x22F74, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x68BEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x22FD0, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x68C03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x23054, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x68C17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x230B8, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x68C2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x23114, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x68C3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x23174, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x68C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x235CC, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x68CE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x235D4, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x68DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA98, symBinAddr: 0x23614, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x68E37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF8, symBinAddr: 0x23674, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x68E86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB04, symBinAddr: 0x23680, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x68EE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB80, symBinAddr: 0x236FC, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x68EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB8C, symBinAddr: 0x23708, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x68F39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBE8, symBinAddr: 0x23764, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x68F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC34, symBinAddr: 0x237B0, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x68F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFF8, symBinAddr: 0x23B74, symSize: 0x154 } + - { offsetInCU: 0x580, offset: 0x69020, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC74, symBinAddr: 0x237F0, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x6907B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC8C, symBinAddr: 0x23808, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x690F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xCB8, symBinAddr: 0x23834, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x6912A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x2387C, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x6915B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xD24, symBinAddr: 0x238A0, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x69177, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD30, symBinAddr: 0x238AC, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x69193, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x129C, symBinAddr: 0x23D94, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x69253, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD8C, symBinAddr: 0x23908, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x6928A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDD8, symBinAddr: 0x23954, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x692AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13F0, symBinAddr: 0x23EE8, symSize: 0x264 } + - { offsetInCU: 0x87C, offset: 0x6931C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEA4, symBinAddr: 0x23A20, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x69351, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x23A70, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x69382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF18, symBinAddr: 0x23A94, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x6939E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF24, symBinAddr: 0x23AA0, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x693BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D8C, symBinAddr: 0x24818, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x6946A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF80, symBinAddr: 0x23AFC, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x694A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC0, symBinAddr: 0x23B3C, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x694C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EF4, symBinAddr: 0x24980, symSize: 0x2B8 } + - { offsetInCU: 0xA81, offset: 0x69521, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x11B0, symBinAddr: 0x23CC8, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x69535, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x1214, symBinAddr: 0x23D0C, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x69549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1258, symBinAddr: 0x23D50, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x6955D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1654, symBinAddr: 0x2414C, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x69571, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x16DC, symBinAddr: 0x24190, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x69585, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x17CC, symBinAddr: 0x24280, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x69599, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1828, symBinAddr: 0x242CC, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x695AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1830, symBinAddr: 0x242D4, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x695C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1834, symBinAddr: 0x242D8, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x695D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x183C, symBinAddr: 0x242E0, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x695E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1850, symBinAddr: 0x242F0, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x695FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x18A0, symBinAddr: 0x24340, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69611, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x192C, symBinAddr: 0x243CC, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x69625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1934, symBinAddr: 0x243D4, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1938, symBinAddr: 0x243D8, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x6964D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x193C, symBinAddr: 0x243DC, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x194C, symBinAddr: 0x243EC, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x69675, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1984, symBinAddr: 0x24424, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69689, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x19E8, symBinAddr: 0x24488, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x6969D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1AA8, symBinAddr: 0x24534, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x696B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1B0C, symBinAddr: 0x24598, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x696C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B68, symBinAddr: 0x245F4, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x696D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1BCC, symBinAddr: 0x24658, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x696ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BDC, symBinAddr: 0x24668, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69701, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BE0, symBinAddr: 0x2466C, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x69715, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1C24, symBinAddr: 0x246B0, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69729, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1C28, symBinAddr: 0x246B4, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x6973D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C6C, symBinAddr: 0x246F8, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69751, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C70, symBinAddr: 0x246FC, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x69765, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CB4, symBinAddr: 0x24740, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69779, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CB8, symBinAddr: 0x24744, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x6978D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CFC, symBinAddr: 0x24788, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x697A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x2478C, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x697B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1D44, symBinAddr: 0x247D0, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x697C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D48, symBinAddr: 0x247D4, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x697DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x21AC, symBinAddr: 0x24C38, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x697F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x2344, symBinAddr: 0x24DD0, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2348, symBinAddr: 0x24DD4, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69819, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2358, symBinAddr: 0x24DE4, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x6982D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x235C, symBinAddr: 0x24DE8, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69841, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x23A0, symBinAddr: 0x24E2C, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x23A4, symBinAddr: 0x24E30, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x23E8, symBinAddr: 0x24E74, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x6987D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23EC, symBinAddr: 0x24E78, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x698DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xABC, symBinAddr: 0x23638, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x6999C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB98, symBinAddr: 0x23714, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x699B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBC0, symBinAddr: 0x2373C, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x699DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD3C, symBinAddr: 0x238B8, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x699F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD64, symBinAddr: 0x238E0, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69A18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF30, symBinAddr: 0x23AAC, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69A34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF58, symBinAddr: 0x23AD4, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69B23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x23184, symSize: 0x11C } + - { offsetInCU: 0x10B4, offset: 0x69B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x724, symBinAddr: 0x232A0, symSize: 0x1C8 } + - { offsetInCU: 0x10E5, offset: 0x69B85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8EC, symBinAddr: 0x23468, symSize: 0x164 } + - { offsetInCU: 0xA6, offset: 0x69D40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x25160, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x69D60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x25160, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x69D86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x2D4, symBinAddr: 0x25178, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x69E69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x318, symBinAddr: 0x251BC, symSize: 0x28 } + - { offsetInCU: 0x4BB, offset: 0x6A155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x380, symBinAddr: 0x25224, symSize: 0x4 } + - { offsetInCU: 0x4CF, offset: 0x6A169, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x384, symBinAddr: 0x25228, symSize: 0x44 } + - { offsetInCU: 0x4E3, offset: 0x6A17D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x3C8, symBinAddr: 0x2526C, symSize: 0x30 } + - { offsetInCU: 0x4F7, offset: 0x6A191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x3F8, symBinAddr: 0x2529C, symSize: 0x7C } + - { offsetInCU: 0x50B, offset: 0x6A1A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x474, symBinAddr: 0x25318, symSize: 0x184 } + - { offsetInCU: 0x51F, offset: 0x6A1B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0x5F8, symBinAddr: 0x2549C, symSize: 0x394 } + - { offsetInCU: 0x53A, offset: 0x6A1D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0x98C, symBinAddr: 0x25830, symSize: 0x30 } + - { offsetInCU: 0x563, offset: 0x6A1FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0x9BC, symBinAddr: 0x25860, symSize: 0x2C } + - { offsetInCU: 0x577, offset: 0x6A211, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0x9E8, symBinAddr: 0x2588C, symSize: 0x34 } + - { offsetInCU: 0x58B, offset: 0x6A225, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xA1C, symBinAddr: 0x258C0, symSize: 0x44 } + - { offsetInCU: 0x59F, offset: 0x6A239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xA60, symBinAddr: 0x25904, symSize: 0x1B4 } + - { offsetInCU: 0x5B3, offset: 0x6A24D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0xC14, symBinAddr: 0x25AB8, symSize: 0x48 } + - { offsetInCU: 0x5C7, offset: 0x6A261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0xC5C, symBinAddr: 0x25B00, symSize: 0x78 } + - { offsetInCU: 0x5DB, offset: 0x6A275, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0xCD4, symBinAddr: 0x25B78, symSize: 0x10 } + - { offsetInCU: 0x5EF, offset: 0x6A289, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0xCE8, symBinAddr: 0x25B8C, symSize: 0x8 } + - { offsetInCU: 0x603, offset: 0x6A29D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0xD28, symBinAddr: 0x25BCC, symSize: 0x54 } + - { offsetInCU: 0x617, offset: 0x6A2B1, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xD7C, symBinAddr: 0x25C20, symSize: 0x14 } + - { offsetInCU: 0x62B, offset: 0x6A2C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0xD90, symBinAddr: 0x25C34, symSize: 0x3C } + - { offsetInCU: 0x63F, offset: 0x6A2D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0xDCC, symBinAddr: 0x25C70, symSize: 0x48 } + - { offsetInCU: 0x653, offset: 0x6A2ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0xE14, symBinAddr: 0x25CB8, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x6A301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0xE54, symBinAddr: 0x25CF8, symSize: 0x10 } + - { offsetInCU: 0x67B, offset: 0x6A315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0xE64, symBinAddr: 0x25D08, symSize: 0x38 } + - { offsetInCU: 0x68F, offset: 0x6A329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0xE9C, symBinAddr: 0x25D40, symSize: 0x6C } + - { offsetInCU: 0x6A3, offset: 0x6A33D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x25DAC, symSize: 0xDC } + - { offsetInCU: 0x6B7, offset: 0x6A351, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0xFE4, symBinAddr: 0x25E88, symSize: 0x1C } + - { offsetInCU: 0x6CB, offset: 0x6A365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1000, symBinAddr: 0x25EA4, symSize: 0x74 } + - { offsetInCU: 0x6DF, offset: 0x6A379, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1074, symBinAddr: 0x25F18, symSize: 0x5C } + - { offsetInCU: 0x6F3, offset: 0x6A38D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x10D0, symBinAddr: 0x25F74, symSize: 0x64 } + - { offsetInCU: 0x707, offset: 0x6A3A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1134, symBinAddr: 0x25FD8, symSize: 0x10 } + - { offsetInCU: 0x71B, offset: 0x6A3B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1144, symBinAddr: 0x25FE8, symSize: 0x28 } + - { offsetInCU: 0x72F, offset: 0x6A3C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x116C, symBinAddr: 0x26010, symSize: 0x3C } + - { offsetInCU: 0x743, offset: 0x6A3DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x11A8, symBinAddr: 0x2604C, symSize: 0x6C } + - { offsetInCU: 0x757, offset: 0x6A3F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1220, symBinAddr: 0x260B8, symSize: 0x44 } + - { offsetInCU: 0x76B, offset: 0x6A405, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1264, symBinAddr: 0x260FC, symSize: 0x48 } + - { offsetInCU: 0x77F, offset: 0x6A419, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x12AC, symBinAddr: 0x26144, symSize: 0x40 } + - { offsetInCU: 0x793, offset: 0x6A42D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x12EC, symBinAddr: 0x26184, symSize: 0x10 } + - { offsetInCU: 0x7A7, offset: 0x6A441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1300, symBinAddr: 0x26194, symSize: 0x54 } + - { offsetInCU: 0x7BB, offset: 0x6A455, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1354, symBinAddr: 0x261E8, symSize: 0x44 } + - { offsetInCU: 0x7CF, offset: 0x6A469, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1398, symBinAddr: 0x2622C, symSize: 0x10 } + - { offsetInCU: 0x7E3, offset: 0x6A47D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x13B4, symBinAddr: 0x2623C, symSize: 0x90 } + - { offsetInCU: 0x7F7, offset: 0x6A491, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1444, symBinAddr: 0x262CC, symSize: 0xBC } + - { offsetInCU: 0x80B, offset: 0x6A4A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1500, symBinAddr: 0x26388, symSize: 0x8 } + - { offsetInCU: 0x81F, offset: 0x6A4B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1508, symBinAddr: 0x26390, symSize: 0x4 } + - { offsetInCU: 0x833, offset: 0x6A4CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x150C, symBinAddr: 0x26394, symSize: 0xC } + - { offsetInCU: 0x847, offset: 0x6A4E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1518, symBinAddr: 0x263A0, symSize: 0x10 } + - { offsetInCU: 0x8BE, offset: 0x6A558, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x340, symBinAddr: 0x251E4, symSize: 0x40 } + - { offsetInCU: 0xA61, offset: 0x6A6FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x24ED4, symSize: 0x18 } + - { offsetInCU: 0xA9A, offset: 0x6A734, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x24EEC, symSize: 0x94 } + - { offsetInCU: 0xAFB, offset: 0x6A795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xAC, symBinAddr: 0x24F80, symSize: 0x2C } + - { offsetInCU: 0xB15, offset: 0x6A7AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0xD8, symBinAddr: 0x24FAC, symSize: 0x34 } + - { offsetInCU: 0xB4A, offset: 0x6A7E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x10C, symBinAddr: 0x24FE0, symSize: 0x10 } + - { offsetInCU: 0xB5E, offset: 0x6A7F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x11C, symBinAddr: 0x24FF0, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x6A819, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x120, symBinAddr: 0x24FF4, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x6A82D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x128, symBinAddr: 0x24FFC, symSize: 0x8 } + - { offsetInCU: 0xBC3, offset: 0x6A85D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x130, symBinAddr: 0x25004, symSize: 0x10 } + - { offsetInCU: 0xBE7, offset: 0x6A881, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x25014, symSize: 0x4 } + - { offsetInCU: 0xC08, offset: 0x6A8A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x144, symBinAddr: 0x25018, symSize: 0x14 } + - { offsetInCU: 0xC1C, offset: 0x6A8B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x188, symBinAddr: 0x2502C, symSize: 0x14 } + - { offsetInCU: 0xC30, offset: 0x6A8CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x19C, symBinAddr: 0x25040, symSize: 0x2C } + - { offsetInCU: 0xC44, offset: 0x6A8DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x1C8, symBinAddr: 0x2506C, symSize: 0x2C } + - { offsetInCU: 0xC58, offset: 0x6A8F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x1F4, symBinAddr: 0x25098, symSize: 0x8 } + - { offsetInCU: 0xC6C, offset: 0x6A906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x1FC, symBinAddr: 0x250A0, symSize: 0x8 } + - { offsetInCU: 0xC9E, offset: 0x6A938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x204, symBinAddr: 0x250A8, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x6A94C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x214, symBinAddr: 0x250B8, symSize: 0x4 } + - { offsetInCU: 0xCD3, offset: 0x6A96D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x218, symBinAddr: 0x250BC, symSize: 0x8 } + - { offsetInCU: 0xCE7, offset: 0x6A981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x220, symBinAddr: 0x250C4, symSize: 0x8 } + - { offsetInCU: 0xD19, offset: 0x6A9B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x228, symBinAddr: 0x250CC, symSize: 0x10 } + - { offsetInCU: 0xD3D, offset: 0x6A9D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x238, symBinAddr: 0x250DC, symSize: 0x4 } + - { offsetInCU: 0xD5E, offset: 0x6A9F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x23C, symBinAddr: 0x250E0, symSize: 0x10 } + - { offsetInCU: 0xD82, offset: 0x6AA1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x24C, symBinAddr: 0x250F0, symSize: 0x4 } + - { offsetInCU: 0xDB1, offset: 0x6AA4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x250, symBinAddr: 0x250F4, symSize: 0x28 } + - { offsetInCU: 0xE3C, offset: 0x6AAD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x278, symBinAddr: 0x2511C, symSize: 0x44 } + - { offsetInCU: 0x943, offset: 0x6B540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x72B4, symBinAddr: 0x2D674, symSize: 0x28 } + - { offsetInCU: 0x18F2, offset: 0x6C4EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x146E8, symBinAddr: 0x3AAA8, symSize: 0xA0 } + - { offsetInCU: 0x198A, offset: 0x6C587, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x1567C, symBinAddr: 0x3BA3C, symSize: 0x44 } + - { offsetInCU: 0x19A6, offset: 0x6C5A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x156C0, symBinAddr: 0x3BA80, symSize: 0x150 } + - { offsetInCU: 0x1ABF, offset: 0x6C6BC, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x15810, symBinAddr: 0x3BBD0, symSize: 0x54 } + - { offsetInCU: 0x1B3D, offset: 0x6C73A, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x158B8, symBinAddr: 0x3BC24, symSize: 0x4C } + - { offsetInCU: 0x1BCB, offset: 0x6C7C8, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x15904, symBinAddr: 0x3BC70, symSize: 0x50 } + - { offsetInCU: 0x1C39, offset: 0x6C836, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x15954, symBinAddr: 0x3BCC0, symSize: 0x64 } + - { offsetInCU: 0x22CF, offset: 0x6CECC, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x167CC, symBinAddr: 0x3CB38, symSize: 0x84 } + - { offsetInCU: 0x2333, offset: 0x6CF30, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x16850, symBinAddr: 0x3CBBC, symSize: 0x80 } + - { offsetInCU: 0x2400, offset: 0x6CFFD, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x169EC, symBinAddr: 0x3CD58, symSize: 0x40 } + - { offsetInCU: 0x25AE, offset: 0x6D1AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1745C, symBinAddr: 0x3D74C, symSize: 0x1A0 } + - { offsetInCU: 0x2703, offset: 0x6D300, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x175FC, symBinAddr: 0x3D8EC, symSize: 0x360 } + - { offsetInCU: 0x2E25, offset: 0x6DA22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1878C, symBinAddr: 0x3EA7C, symSize: 0xBCC } + - { offsetInCU: 0x3E91, offset: 0x6EA8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19358, symBinAddr: 0x3F648, symSize: 0x1C0 } + - { offsetInCU: 0x4012, offset: 0x6EC0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19518, symBinAddr: 0x3F808, symSize: 0x1A0 } + - { offsetInCU: 0x441A, offset: 0x6F017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1A134, symBinAddr: 0x40424, symSize: 0x8 } + - { offsetInCU: 0x442E, offset: 0x6F02B, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1A204, symBinAddr: 0x404F4, symSize: 0x10 } + - { offsetInCU: 0x4442, offset: 0x6F03F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1A214, symBinAddr: 0x40504, symSize: 0x14 } + - { offsetInCU: 0x4456, offset: 0x6F053, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1A228, symBinAddr: 0x40518, symSize: 0x44 } + - { offsetInCU: 0x446A, offset: 0x6F067, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1A27C, symBinAddr: 0x4055C, symSize: 0x44 } + - { offsetInCU: 0x447E, offset: 0x6F07B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1A2C0, symBinAddr: 0x405A0, symSize: 0x30C } + - { offsetInCU: 0x4492, offset: 0x6F08F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1A5CC, symBinAddr: 0x408AC, symSize: 0x240 } + - { offsetInCU: 0x44A6, offset: 0x6F0A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1A80C, symBinAddr: 0x40AEC, symSize: 0x70 } + - { offsetInCU: 0x44BA, offset: 0x6F0B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1A87C, symBinAddr: 0x40B5C, symSize: 0x34 } + - { offsetInCU: 0x44CE, offset: 0x6F0CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1A8B0, symBinAddr: 0x40B90, symSize: 0x174 } + - { offsetInCU: 0x44E2, offset: 0x6F0DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1AA24, symBinAddr: 0x40D04, symSize: 0xB4 } + - { offsetInCU: 0x4535, offset: 0x6F132, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1B2F0, symBinAddr: 0x40DB8, symSize: 0xC4 } + - { offsetInCU: 0x45AB, offset: 0x6F1A8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B3B4, symBinAddr: 0x40E7C, symSize: 0x78 } + - { offsetInCU: 0x45D8, offset: 0x6F1D5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B42C, symBinAddr: 0x40EF4, symSize: 0x80 } + - { offsetInCU: 0x466C, offset: 0x6F269, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B4AC, symBinAddr: 0x40F74, symSize: 0x68 } + - { offsetInCU: 0x47D3, offset: 0x6F3D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B514, symBinAddr: 0x40FDC, symSize: 0x660 } + - { offsetInCU: 0x4C97, offset: 0x6F894, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1BB84, symBinAddr: 0x4164C, symSize: 0x4C } + - { offsetInCU: 0x4CAB, offset: 0x6F8A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1BC78, symBinAddr: 0x416B8, symSize: 0x8 } + - { offsetInCU: 0x4CBF, offset: 0x6F8BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1BC80, symBinAddr: 0x416C0, symSize: 0x44 } + - { offsetInCU: 0x4CD3, offset: 0x6F8D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1BCC4, symBinAddr: 0x41704, symSize: 0x44 } + - { offsetInCU: 0x4CE7, offset: 0x6F8E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BD70, symBinAddr: 0x4176C, symSize: 0x8 } + - { offsetInCU: 0x4CFB, offset: 0x6F8F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1BE00, symBinAddr: 0x417F4, symSize: 0x44 } + - { offsetInCU: 0x4D30, offset: 0x6F92D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BF08, symBinAddr: 0x418FC, symSize: 0x48 } + - { offsetInCU: 0x4D44, offset: 0x6F941, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BF74, symBinAddr: 0x41968, symSize: 0x3C } + - { offsetInCU: 0x4D58, offset: 0x6F955, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BFB0, symBinAddr: 0x419A4, symSize: 0x34 } + - { offsetInCU: 0x4D6C, offset: 0x6F969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1C008, symBinAddr: 0x419FC, symSize: 0x40 } + - { offsetInCU: 0x4D80, offset: 0x6F97D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1C048, symBinAddr: 0x41A3C, symSize: 0x48 } + - { offsetInCU: 0x4D94, offset: 0x6F991, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1C154, symBinAddr: 0x41B48, symSize: 0x18 } + - { offsetInCU: 0x4DA8, offset: 0x6F9A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1C16C, symBinAddr: 0x41B60, symSize: 0x10 } + - { offsetInCU: 0x4DBC, offset: 0x6F9B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1C17C, symBinAddr: 0x41B70, symSize: 0x34 } + - { offsetInCU: 0x4DD0, offset: 0x6F9CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1C1EC, symBinAddr: 0x41BE0, symSize: 0x30 } + - { offsetInCU: 0x5441, offset: 0x7003E, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9B68, symBinAddr: 0x2FF28, symSize: 0x400 } + - { offsetInCU: 0x55A4, offset: 0x701A1, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xADF4, symBinAddr: 0x311B4, symSize: 0x390 } + - { offsetInCU: 0x5868, offset: 0x70465, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xB184, symBinAddr: 0x31544, symSize: 0x3B8 } + - { offsetInCU: 0x5CC6, offset: 0x708C3, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF5A4, symBinAddr: 0x35964, symSize: 0x18C } + - { offsetInCU: 0x609C, offset: 0x70C99, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x16E7C, symBinAddr: 0x3D1E8, symSize: 0x110 } + - { offsetInCU: 0x61F8, offset: 0x70DF5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x16FCC, symBinAddr: 0x3D2F8, symSize: 0xFC } + - { offsetInCU: 0x6315, offset: 0x70F12, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x172B4, symBinAddr: 0x3D5A4, symSize: 0x1A8 } + - { offsetInCU: 0x6425, offset: 0x71022, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1795C, symBinAddr: 0x3DC4C, symSize: 0x188 } + - { offsetInCU: 0x6772, offset: 0x7136F, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x198A0, symBinAddr: 0x3FB90, symSize: 0x1C8 } + - { offsetInCU: 0x68A1, offset: 0x7149E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x19A68, symBinAddr: 0x3FD58, symSize: 0x11C } + - { offsetInCU: 0x6A03, offset: 0x71600, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x19B84, symBinAddr: 0x3FE74, symSize: 0xFC } + - { offsetInCU: 0x6B65, offset: 0x71762, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x19C80, symBinAddr: 0x3FF70, symSize: 0xE4 } + - { offsetInCU: 0x6CBB, offset: 0x718B8, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19D64, symBinAddr: 0x40054, symSize: 0x114 } + - { offsetInCU: 0x6E11, offset: 0x71A0E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19E78, symBinAddr: 0x40168, symSize: 0xF0 } + - { offsetInCU: 0x6F73, offset: 0x71B70, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1A050, symBinAddr: 0x40340, symSize: 0xE4 } + - { offsetInCU: 0x70EA, offset: 0x71CE7, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BE44, symBinAddr: 0x41838, symSize: 0xC4 } + - { offsetInCU: 0x7651, offset: 0x7224E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x263C0, symSize: 0x1A0 } + - { offsetInCU: 0x7794, offset: 0x72391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x1A0, symBinAddr: 0x26560, symSize: 0x5D8 } + - { offsetInCU: 0x7AA9, offset: 0x726A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2824, symBinAddr: 0x28BE4, symSize: 0x6D0 } + - { offsetInCU: 0x7D74, offset: 0x72971, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x778, symBinAddr: 0x26B38, symSize: 0x88 } + - { offsetInCU: 0x7ECC, offset: 0x72AC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x800, symBinAddr: 0x26BC0, symSize: 0x1D44 } + - { offsetInCU: 0x9069, offset: 0x73C66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB53C, symBinAddr: 0x318FC, symSize: 0x3810 } + - { offsetInCU: 0xA390, offset: 0x74F8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xED4C, symBinAddr: 0x3510C, symSize: 0x578 } + - { offsetInCU: 0xA7E2, offset: 0x753DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10880, symBinAddr: 0x36C40, symSize: 0x25C0 } + - { offsetInCU: 0xBE70, offset: 0x76A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13E60, symBinAddr: 0x3A220, symSize: 0x3DC } + - { offsetInCU: 0xC00B, offset: 0x76C08, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2544, symBinAddr: 0x28904, symSize: 0x2E0 } + - { offsetInCU: 0xC447, offset: 0x77044, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x2EF4, symBinAddr: 0x292B4, symSize: 0x3B8 } + - { offsetInCU: 0xC6D3, offset: 0x772D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x32AC, symBinAddr: 0x2966C, symSize: 0x3924 } + - { offsetInCU: 0xE279, offset: 0x78E76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6BD0, symBinAddr: 0x2CF90, symSize: 0x278 } + - { offsetInCU: 0xE385, offset: 0x78F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x72DC, symBinAddr: 0x2D69C, symSize: 0x1848 } + - { offsetInCU: 0xEE0C, offset: 0x79A09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x6E48, symBinAddr: 0x2D208, symSize: 0x118 } + - { offsetInCU: 0xEE85, offset: 0x79A82, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6F60, symBinAddr: 0x2D320, symSize: 0x16C } + - { offsetInCU: 0xEEA0, offset: 0x79A9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x70CC, symBinAddr: 0x2D48C, symSize: 0x1E8 } + - { offsetInCU: 0xF17F, offset: 0x79D7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x8B78, symBinAddr: 0x2EF38, symSize: 0x3F8 } + - { offsetInCU: 0xF3A0, offset: 0x79F9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9F68, symBinAddr: 0x30328, symSize: 0xE8C } + - { offsetInCU: 0xFCA5, offset: 0x7A8A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8F70, symBinAddr: 0x2F330, symSize: 0xBF8 } + - { offsetInCU: 0x10675, offset: 0x7B272, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF730, symBinAddr: 0x35AF0, symSize: 0x1150 } + - { offsetInCU: 0x1182A, offset: 0x7C427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x17AE4, symBinAddr: 0x3DDD4, symSize: 0xB10 } + - { offsetInCU: 0x122BA, offset: 0x7CEB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x12E40, symBinAddr: 0x39200, symSize: 0x1020 } + - { offsetInCU: 0x12D9E, offset: 0x7D99B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x1423C, symBinAddr: 0x3A5FC, symSize: 0x208 } + - { offsetInCU: 0x12E22, offset: 0x7DA1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14444, symBinAddr: 0x3A804, symSize: 0x294 } + - { offsetInCU: 0x12F32, offset: 0x7DB2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x14788, symBinAddr: 0x3AB48, symSize: 0xEF4 } + - { offsetInCU: 0x1395D, offset: 0x7E55A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x159B8, symBinAddr: 0x3BD24, symSize: 0x64 } + - { offsetInCU: 0x1399B, offset: 0x7E598, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15A1C, symBinAddr: 0x3BD88, symSize: 0x30 } + - { offsetInCU: 0x139E2, offset: 0x7E5DF, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15A4C, symBinAddr: 0x3BDB8, symSize: 0x80 } + - { offsetInCU: 0x13A7C, offset: 0x7E679, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x15ACC, symBinAddr: 0x3BE38, symSize: 0x6C } + - { offsetInCU: 0x13B2C, offset: 0x7E729, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15B38, symBinAddr: 0x3BEA4, symSize: 0x4C } + - { offsetInCU: 0x13BA5, offset: 0x7E7A2, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x15BB0, symBinAddr: 0x3BF1C, symSize: 0xE0 } + - { offsetInCU: 0x13C19, offset: 0x7E816, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15C90, symBinAddr: 0x3BFFC, symSize: 0xC4 } + - { offsetInCU: 0x13C42, offset: 0x7E83F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15D54, symBinAddr: 0x3C0C0, symSize: 0x174 } + - { offsetInCU: 0x13D1B, offset: 0x7E918, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x15EC8, symBinAddr: 0x3C234, symSize: 0x104 } + - { offsetInCU: 0x13E4A, offset: 0x7EA47, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x15FCC, symBinAddr: 0x3C338, symSize: 0x124 } + - { offsetInCU: 0x13F6B, offset: 0x7EB68, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x160F0, symBinAddr: 0x3C45C, symSize: 0x170 } + - { offsetInCU: 0x140EC, offset: 0x7ECE9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x16260, symBinAddr: 0x3C5CC, symSize: 0x174 } + - { offsetInCU: 0x1423A, offset: 0x7EE37, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x163D4, symBinAddr: 0x3C740, symSize: 0xFC } + - { offsetInCU: 0x14370, offset: 0x7EF6D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x164D0, symBinAddr: 0x3C83C, symSize: 0xFC } + - { offsetInCU: 0x144A6, offset: 0x7F0A3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x166D0, symBinAddr: 0x3CA3C, symSize: 0xFC } + - { offsetInCU: 0x145DC, offset: 0x7F1D9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x168D0, symBinAddr: 0x3CC3C, symSize: 0x11C } + - { offsetInCU: 0x146C7, offset: 0x7F2C4, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x16C90, symBinAddr: 0x3CFFC, symSize: 0x138 } + - { offsetInCU: 0x14796, offset: 0x7F393, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16DC8, symBinAddr: 0x3D134, symSize: 0xB4 } + - { offsetInCU: 0x1482E, offset: 0x7F42B, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x170C8, symBinAddr: 0x3D3F4, symSize: 0x18C } + - { offsetInCU: 0x14A30, offset: 0x7F62D, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x185F4, symBinAddr: 0x3E8E4, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x7FD60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x41C48, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x7FD78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x41C48, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x7FD8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x41C78, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x7FDA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x41D64, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x7FDB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x41FCC, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x7FDC8, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x423E8, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x7FDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x423F0, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x7FDF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x4262C, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x7FE04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x42674, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x7FE18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x42730, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x80412, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8FF8, symBinAddr: 0x4B738, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x804D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x9218, symBinAddr: 0x4B958, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x8059D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD868, symBinAddr: 0x4FFA8, symSize: 0x7C0 } + - { offsetInCU: 0x9D6, offset: 0x808CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xE028, symBinAddr: 0x50768, symSize: 0xA34 } + - { offsetInCU: 0xCB0, offset: 0x80BA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xEA5C, symBinAddr: 0x5119C, symSize: 0x2AC } + - { offsetInCU: 0xDF2, offset: 0x80CEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xF400, symBinAddr: 0x51B40, symSize: 0x860 } + - { offsetInCU: 0x10E8, offset: 0x80FE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xFC60, symBinAddr: 0x523A0, symSize: 0xC2C } + - { offsetInCU: 0x13C2, offset: 0x812BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x1088C, symBinAddr: 0x52FCC, symSize: 0x314 } + - { offsetInCU: 0x1504, offset: 0x813FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x10BA0, symBinAddr: 0x532E0, symSize: 0x208 } + - { offsetInCU: 0x1985, offset: 0x8187E, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1EC8, symBinAddr: 0x44608, symSize: 0x2C } + - { offsetInCU: 0x1E8A, offset: 0x81D83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x94DC, symBinAddr: 0x4BC1C, symSize: 0x20 } + - { offsetInCU: 0x1ECF, offset: 0x81DC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x94FC, symBinAddr: 0x4BC3C, symSize: 0x8C } + - { offsetInCU: 0x1F8B, offset: 0x81E84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xA690, symBinAddr: 0x4CDD0, symSize: 0x54 } + - { offsetInCU: 0x1FC5, offset: 0x81EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xA6E4, symBinAddr: 0x4CE24, symSize: 0x50 } + - { offsetInCU: 0x201B, offset: 0x81F14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA734, symBinAddr: 0x4CE74, symSize: 0x64 } + - { offsetInCU: 0x204E, offset: 0x81F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA798, symBinAddr: 0x4CED8, symSize: 0x4 } + - { offsetInCU: 0x208D, offset: 0x81F86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA79C, symBinAddr: 0x4CEDC, symSize: 0x78 } + - { offsetInCU: 0x20E3, offset: 0x81FDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA814, symBinAddr: 0x4CF54, symSize: 0x88 } + - { offsetInCU: 0x2154, offset: 0x8204D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA89C, symBinAddr: 0x4CFDC, symSize: 0xDC } + - { offsetInCU: 0x21D6, offset: 0x820CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA978, symBinAddr: 0x4D0B8, symSize: 0x4 } + - { offsetInCU: 0x21F2, offset: 0x820EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA97C, symBinAddr: 0x4D0BC, symSize: 0x4 } + - { offsetInCU: 0x222C, offset: 0x82125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA980, symBinAddr: 0x4D0C0, symSize: 0x64 } + - { offsetInCU: 0x2599, offset: 0x82492, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xBC28, symBinAddr: 0x4E368, symSize: 0xE4 } + - { offsetInCU: 0x267D, offset: 0x82576, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xBDF0, symBinAddr: 0x4E530, symSize: 0x280 } + - { offsetInCU: 0x2819, offset: 0x82712, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xC620, symBinAddr: 0x4ED60, symSize: 0x64 } + - { offsetInCU: 0x2DFA, offset: 0x82CF3, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xCE24, symBinAddr: 0x4F564, symSize: 0x374 } + - { offsetInCU: 0x359C, offset: 0x83495, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xD198, symBinAddr: 0x4F8D8, symSize: 0x280 } + - { offsetInCU: 0x3973, offset: 0x8386C, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xD418, symBinAddr: 0x4FB58, symSize: 0x148 } + - { offsetInCU: 0x3B6D, offset: 0x83A66, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xD560, symBinAddr: 0x4FCA0, symSize: 0x1F8 } + - { offsetInCU: 0x3D2C, offset: 0x83C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x11558, symBinAddr: 0x53C98, symSize: 0x104 } + - { offsetInCU: 0x3E76, offset: 0x83D6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x14050, symBinAddr: 0x56790, symSize: 0x120 } + - { offsetInCU: 0x3F8E, offset: 0x83E87, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x14658, symBinAddr: 0x56D38, symSize: 0x10 } + - { offsetInCU: 0x3FA2, offset: 0x83E9B, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14668, symBinAddr: 0x56D48, symSize: 0x10 } + - { offsetInCU: 0x3FB6, offset: 0x83EAF, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x146FC, symBinAddr: 0x56D58, symSize: 0x48 } + - { offsetInCU: 0x3FCA, offset: 0x83EC3, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x147E8, symBinAddr: 0x56DA0, symSize: 0x3C } + - { offsetInCU: 0x3FDE, offset: 0x83ED7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x14824, symBinAddr: 0x56DDC, symSize: 0x44 } + - { offsetInCU: 0x3FF2, offset: 0x83EEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOd', symObjAddr: 0x14868, symBinAddr: 0x56E20, symSize: 0x48 } + - { offsetInCU: 0x4006, offset: 0x83EFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x148B0, symBinAddr: 0x56E68, symSize: 0x8 } + - { offsetInCU: 0x401A, offset: 0x83F13, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x148B8, symBinAddr: 0x56E70, symSize: 0x10 } + - { offsetInCU: 0x402E, offset: 0x83F27, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x148C8, symBinAddr: 0x56E80, symSize: 0x8 } + - { offsetInCU: 0x4042, offset: 0x83F3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14950, symBinAddr: 0x56EC4, symSize: 0x30 } + - { offsetInCU: 0x409A, offset: 0x83F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x14A10, symBinAddr: 0x56F84, symSize: 0x24 } + - { offsetInCU: 0x40D6, offset: 0x83FCF, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14A78, symBinAddr: 0x56FEC, symSize: 0x44 } + - { offsetInCU: 0x4BF4, offset: 0x84AED, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x42740, symSize: 0x80 } + - { offsetInCU: 0x4C5C, offset: 0x84B55, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x80, symBinAddr: 0x427C0, symSize: 0xA0 } + - { offsetInCU: 0x4DBF, offset: 0x84CB8, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x120, symBinAddr: 0x42860, symSize: 0x9C } + - { offsetInCU: 0x4EEA, offset: 0x84DE3, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1BC, symBinAddr: 0x428FC, symSize: 0x74 } + - { offsetInCU: 0x4F6F, offset: 0x84E68, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x230, symBinAddr: 0x42970, symSize: 0x4 } + - { offsetInCU: 0x4F8A, offset: 0x84E83, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x234, symBinAddr: 0x42974, symSize: 0x134 } + - { offsetInCU: 0x4FF5, offset: 0x84EEE, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x42AA8, symSize: 0xE8 } + - { offsetInCU: 0x50D7, offset: 0x84FD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x42B90, symSize: 0x204 } + - { offsetInCU: 0x5256, offset: 0x8514F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x42D94, symSize: 0xAF8 } + - { offsetInCU: 0x56E8, offset: 0x855E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x114C, symBinAddr: 0x4388C, symSize: 0x3CC } + - { offsetInCU: 0x58FF, offset: 0x857F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1518, symBinAddr: 0x43C58, symSize: 0x9B0 } + - { offsetInCU: 0x5C76, offset: 0x85B6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x1EF4, symBinAddr: 0x44634, symSize: 0x229C } + - { offsetInCU: 0x7193, offset: 0x8708C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xED08, symBinAddr: 0x51448, symSize: 0x6F8 } + - { offsetInCU: 0x759E, offset: 0x87497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4190, symBinAddr: 0x468D0, symSize: 0x1660 } + - { offsetInCU: 0x8459, offset: 0x88352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x57F0, symBinAddr: 0x47F30, symSize: 0x1038 } + - { offsetInCU: 0x8E60, offset: 0x88D59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x6828, symBinAddr: 0x48F68, symSize: 0x3F0 } + - { offsetInCU: 0x8FC9, offset: 0x88EC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7510, symBinAddr: 0x49C50, symSize: 0x208 } + - { offsetInCU: 0x921B, offset: 0x89114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7718, symBinAddr: 0x49E58, symSize: 0x93C } + - { offsetInCU: 0x9A1B, offset: 0x89914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8054, symBinAddr: 0x4A794, symSize: 0x2E8 } + - { offsetInCU: 0x9B6D, offset: 0x89A66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x833C, symBinAddr: 0x4AA7C, symSize: 0x648 } + - { offsetInCU: 0x9F3A, offset: 0x89E33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x8984, symBinAddr: 0x4B0C4, symSize: 0x674 } + - { offsetInCU: 0xA1DC, offset: 0x8A0D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x943C, symBinAddr: 0x4BB7C, symSize: 0x80 } + - { offsetInCU: 0xA1FF, offset: 0x8A0F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x94BC, symBinAddr: 0x4BBFC, symSize: 0x20 } + - { offsetInCU: 0xA28A, offset: 0x8A183, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x9588, symBinAddr: 0x4BCC8, symSize: 0x10C8 } + - { offsetInCU: 0xA8F2, offset: 0x8A7EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xA650, symBinAddr: 0x4CD90, symSize: 0x40 } + - { offsetInCU: 0xA965, offset: 0x8A85E, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA9E4, symBinAddr: 0x4D124, symSize: 0x4 } + - { offsetInCU: 0xA980, offset: 0x8A879, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA9E8, symBinAddr: 0x4D128, symSize: 0x8 } + - { offsetInCU: 0xA998, offset: 0x8A891, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA9E8, symBinAddr: 0x4D128, symSize: 0x8 } + - { offsetInCU: 0xA9A9, offset: 0x8A8A2, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA9F0, symBinAddr: 0x4D130, symSize: 0xC8 } + - { offsetInCU: 0xAA31, offset: 0x8A92A, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xAAB8, symBinAddr: 0x4D1F8, symSize: 0xCC } + - { offsetInCU: 0xAAD1, offset: 0x8A9CA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xAC80, symBinAddr: 0x4D3C0, symSize: 0x1F4 } + - { offsetInCU: 0xAB71, offset: 0x8AA6A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xAE74, symBinAddr: 0x4D5B4, symSize: 0x1C4 } + - { offsetInCU: 0xAC2D, offset: 0x8AB26, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xB038, symBinAddr: 0x4D778, symSize: 0x340 } + - { offsetInCU: 0xAD24, offset: 0x8AC1D, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xB378, symBinAddr: 0x4DAB8, symSize: 0x340 } + - { offsetInCU: 0xAE0E, offset: 0x8AD07, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB6B8, symBinAddr: 0x4DDF8, symSize: 0x1DC } + - { offsetInCU: 0xAEB3, offset: 0x8ADAC, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB894, symBinAddr: 0x4DFD4, symSize: 0x204 } + - { offsetInCU: 0xAF51, offset: 0x8AE4A, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xBA98, symBinAddr: 0x4E1D8, symSize: 0x4C } + - { offsetInCU: 0xAFFD, offset: 0x8AEF6, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xBAE4, symBinAddr: 0x4E224, symSize: 0x90 } + - { offsetInCU: 0xB089, offset: 0x8AF82, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xBB74, symBinAddr: 0x4E2B4, symSize: 0x40 } + - { offsetInCU: 0xB0C6, offset: 0x8AFBF, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xBBB4, symBinAddr: 0x4E2F4, symSize: 0x18 } + - { offsetInCU: 0xB118, offset: 0x8B011, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xBBCC, symBinAddr: 0x4E30C, symSize: 0x3C } + - { offsetInCU: 0xB141, offset: 0x8B03A, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xBC08, symBinAddr: 0x4E348, symSize: 0x1C } + - { offsetInCU: 0xB182, offset: 0x8B07B, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xC2F4, symBinAddr: 0x4EA34, symSize: 0x8C } + - { offsetInCU: 0xB196, offset: 0x8B08F, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xC380, symBinAddr: 0x4EAC0, symSize: 0x4C } + - { offsetInCU: 0xB1C6, offset: 0x8B0BF, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xC3CC, symBinAddr: 0x4EB0C, symSize: 0x164 } + - { offsetInCU: 0xB223, offset: 0x8B11C, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC530, symBinAddr: 0x4EC70, symSize: 0xF0 } + - { offsetInCU: 0xB24A, offset: 0x8B143, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC684, symBinAddr: 0x4EDC4, symSize: 0x214 } + - { offsetInCU: 0xB27F, offset: 0x8B178, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC898, symBinAddr: 0x4EFD8, symSize: 0x78 } + - { offsetInCU: 0xB293, offset: 0x8B18C, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC910, symBinAddr: 0x4F050, symSize: 0x1C } + - { offsetInCU: 0xB2A7, offset: 0x8B1A0, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC92C, symBinAddr: 0x4F06C, symSize: 0x1C } + - { offsetInCU: 0xB2BB, offset: 0x8B1B4, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC948, symBinAddr: 0x4F088, symSize: 0x1C } + - { offsetInCU: 0xB2F2, offset: 0x8B1EB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC964, symBinAddr: 0x4F0A4, symSize: 0x104 } + - { offsetInCU: 0xB3F0, offset: 0x8B2E9, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xCA68, symBinAddr: 0x4F1A8, symSize: 0x174 } + - { offsetInCU: 0xB506, offset: 0x8B3FF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xCBDC, symBinAddr: 0x4F31C, symSize: 0x124 } + - { offsetInCU: 0xB5DA, offset: 0x8B4D3, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xCD00, symBinAddr: 0x4F440, symSize: 0x124 } + - { offsetInCU: 0xB719, offset: 0x8B612, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD758, symBinAddr: 0x4FE98, symSize: 0x14 } + - { offsetInCU: 0xB73B, offset: 0x8B634, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD76C, symBinAddr: 0x4FEAC, symSize: 0xFC } + - { offsetInCU: 0xB815, offset: 0x8B70E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x10DA8, symBinAddr: 0x534E8, symSize: 0x7B0 } + - { offsetInCU: 0xBC9C, offset: 0x8BB95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x1165C, symBinAddr: 0x53D9C, symSize: 0x29F4 } + - { offsetInCU: 0xC430, offset: 0x8C329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x14170, symBinAddr: 0x568B0, symSize: 0x488 } + - { offsetInCU: 0x95, offset: 0x8C749, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFBC, symBinAddr: 0x580A8, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8C79C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1008, symBinAddr: 0x580F4, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8C7CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x102C, symBinAddr: 0x58118, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8C7E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1038, symBinAddr: 0x58124, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8C805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5FB8, symBinAddr: 0x5D014, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8C89C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1094, symBinAddr: 0x58180, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8C8D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E4, symBinAddr: 0x581D0, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8C8F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x60EC, symBinAddr: 0x5D148, symSize: 0x133C } + - { offsetInCU: 0x2D0, offset: 0x8C984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1134, symBinAddr: 0x58220, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8C9DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x114C, symBinAddr: 0x58238, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8CA59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1178, symBinAddr: 0x58264, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8CA8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11E0, symBinAddr: 0x582CC, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8CABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1204, symBinAddr: 0x582F0, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8CADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1210, symBinAddr: 0x582FC, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8CAF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7F0C, symBinAddr: 0x5E550, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8CBE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x126C, symBinAddr: 0x58358, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8CC20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12BC, symBinAddr: 0x583A8, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8CC43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8108, symBinAddr: 0x5E74C, symSize: 0xF48 } + - { offsetInCU: 0x611, offset: 0x8CCC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x14DC, symBinAddr: 0x585C8, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8CCF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1508, symBinAddr: 0x585F4, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8CD12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1578, symBinAddr: 0x58664, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8CD47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15D8, symBinAddr: 0x586C4, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8CD97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x15FC, symBinAddr: 0x586E8, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8CDB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1608, symBinAddr: 0x586F4, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8CDCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x922C, symBinAddr: 0x5F870, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8CE2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1664, symBinAddr: 0x58750, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8CE65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16AC, symBinAddr: 0x58798, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8CE88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9288, symBinAddr: 0x5F8CC, symSize: 0x230 } + - { offsetInCU: 0x838, offset: 0x8CEEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16F4, symBinAddr: 0x587E0, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8CF21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16FC, symBinAddr: 0x587E8, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8CF52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1720, symBinAddr: 0x5880C, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8CF6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x172C, symBinAddr: 0x58818, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8CF8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x94B8, symBinAddr: 0x5FAFC, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8D0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1788, symBinAddr: 0x58874, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8D11D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17E8, symBinAddr: 0x588D4, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8D140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x97A4, symBinAddr: 0x5FDE8, symSize: 0x548 } + - { offsetInCU: 0xB19, offset: 0x8D1CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1840, symBinAddr: 0x5892C, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8D24D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1858, symBinAddr: 0x58944, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8D330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x189C, symBinAddr: 0x58988, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8D3B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0x589F0, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8D40B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1928, symBinAddr: 0x58A14, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8D43C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x194C, symBinAddr: 0x58A38, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8D458, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1958, symBinAddr: 0x58A44, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8D474, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9CEC, symBinAddr: 0x60330, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8D502, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19B4, symBinAddr: 0x58AA0, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8D539, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19E0, symBinAddr: 0x58ACC, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8D55C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9DA8, symBinAddr: 0x603EC, symSize: 0x1B0 } + - { offsetInCU: 0xF18, offset: 0x8D5CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x58B74, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8D601, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x58BEC, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8D632, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B24, symBinAddr: 0x58C10, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8D64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B30, symBinAddr: 0x58C1C, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8D66A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9F58, symBinAddr: 0x6059C, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8D765, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B8C, symBinAddr: 0x58C78, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8D79C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BFC, symBinAddr: 0x58CE8, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8D7BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA1A4, symBinAddr: 0x607E8, symSize: 0x8D8 } + - { offsetInCU: 0x11A5, offset: 0x8D859, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1DE8, symBinAddr: 0x58ED4, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8D88A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1E14, symBinAddr: 0x58F00, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8D89E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1E3C, symBinAddr: 0x58F28, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8D8D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E44, symBinAddr: 0x58F30, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8D923, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1E68, symBinAddr: 0x58F54, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8D93F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E74, symBinAddr: 0x58F60, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8D95B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAB48, symBinAddr: 0x6118C, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8D9D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0x58FBC, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8DA10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F28, symBinAddr: 0x59014, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8DA33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xABA4, symBinAddr: 0x611E8, symSize: 0x770 } + - { offsetInCU: 0x1457, offset: 0x8DB0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D80, symBinAddr: 0x5CE60, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8DB64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5DD4, symBinAddr: 0x5CEB4, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8DBB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5E54, symBinAddr: 0x5CF34, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8DBEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E5C, symBinAddr: 0x5CF3C, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8DC6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5EBC, symBinAddr: 0x5CF9C, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8DC89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x2150, symBinAddr: 0x5923C, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8DC9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x2170, symBinAddr: 0x5925C, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8DCB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x2264, symBinAddr: 0x59350, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8DCC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x25E4, symBinAddr: 0x596D0, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8DCE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x323C, symBinAddr: 0x5A328, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8DD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x326C, symBinAddr: 0x5A358, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8DD1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x3298, symBinAddr: 0x5A384, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8DD31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x32C4, symBinAddr: 0x5A3B0, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8DD45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x32F0, symBinAddr: 0x5A3DC, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8DD59, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x331C, symBinAddr: 0x5A408, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8DD6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x3324, symBinAddr: 0x5A410, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8DD81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x36E4, symBinAddr: 0x5A7D0, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8DD95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3740, symBinAddr: 0x5A82C, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8DDA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x382C, symBinAddr: 0x5A918, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8DDBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x383C, symBinAddr: 0x5A928, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8DDD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x386C, symBinAddr: 0x5A958, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8DDE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x394C, symBinAddr: 0x5AA38, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8DDF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x3C84, symBinAddr: 0x5AD70, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8DE0D, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x44E8, symBinAddr: 0x5B5D4, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8DE21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x44F0, symBinAddr: 0x5B5DC, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8DE35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x4854, symBinAddr: 0x5B940, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8DE49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x48B0, symBinAddr: 0x5B99C, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8DE5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x4994, symBinAddr: 0x5BA80, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8DE71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x49A4, symBinAddr: 0x5BA90, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8DE85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x4A48, symBinAddr: 0x5BB34, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8DE99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x4BD4, symBinAddr: 0x5BCC0, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8DEAD, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4F7C, symBinAddr: 0x5C068, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8DEC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4FC0, symBinAddr: 0x5C0AC, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8DED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x513C, symBinAddr: 0x5C228, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8DEE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x5198, symBinAddr: 0x5C284, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8DEFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x522C, symBinAddr: 0x5C318, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8DF11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x523C, symBinAddr: 0x5C328, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8DF25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x52A4, symBinAddr: 0x5C390, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8DF39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x5380, symBinAddr: 0x5C46C, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8DF4D, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x54EC, symBinAddr: 0x5C5D8, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8DF61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5518, symBinAddr: 0x5C604, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8DF75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x55DC, symBinAddr: 0x5C6C8, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8DF89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x5638, symBinAddr: 0x5C724, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8DF9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x56B4, symBinAddr: 0x5C7A0, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8DFB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x56C4, symBinAddr: 0x5C7B0, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8DFC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x570C, symBinAddr: 0x5C7F8, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8DFD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x57F0, symBinAddr: 0x5C8DC, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8DFED, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5988, symBinAddr: 0x5CA74, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8E001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x59BC, symBinAddr: 0x5CAA8, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8E015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5AB8, symBinAddr: 0x5CBA4, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8E029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x5B14, symBinAddr: 0x5CC00, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8E03D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x5B90, symBinAddr: 0x5CC7C, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8E051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x5BA0, symBinAddr: 0x5CC8C, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8E065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5BC8, symBinAddr: 0x5CCB4, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8E079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x5C04, symBinAddr: 0x5CCF0, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8E08D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x5C7C, symBinAddr: 0x5CD5C, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8E0A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5CC0, symBinAddr: 0x5CDA0, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8E0B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x5D1C, symBinAddr: 0x5CDFC, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8E0C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x5D70, symBinAddr: 0x5CE50, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8E0DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5EC4, symBinAddr: 0x5CFA4, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8E0F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5EC8, symBinAddr: 0x5CFA8, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8E105, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F90, symBinAddr: 0x5CFEC, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8E119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x7428, symBinAddr: 0x5E484, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8E12D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x746C, symBinAddr: 0x5E4C8, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8E141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7EC8, symBinAddr: 0x5E50C, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8E155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x9050, symBinAddr: 0x5F694, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8E169, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x9094, symBinAddr: 0x5F6D8, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8E17D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x90D8, symBinAddr: 0x5F71C, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8E191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x911C, symBinAddr: 0x5F760, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8E1A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x9160, symBinAddr: 0x5F7A4, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8E1B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x91A4, symBinAddr: 0x5F7E8, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8E1CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x91E8, symBinAddr: 0x5F82C, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8E1E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xAA7C, symBinAddr: 0x610C0, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8E1F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xAAC0, symBinAddr: 0x61104, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8E209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xAB04, symBinAddr: 0x61148, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8E21D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xB314, symBinAddr: 0x61958, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8E231, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB358, symBinAddr: 0x6199C, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8E245, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xB39C, symBinAddr: 0x619E0, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8E259, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xB424, symBinAddr: 0x61A68, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8E26D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB468, symBinAddr: 0x61AAC, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E281, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB4BC, symBinAddr: 0x61AF0, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E295, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB54C, symBinAddr: 0x61B80, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E2A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB608, symBinAddr: 0x61C3C, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8E2BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB610, symBinAddr: 0x61C44, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8E2D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB614, symBinAddr: 0x61C48, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8E2E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB620, symBinAddr: 0x61C54, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8E2F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB630, symBinAddr: 0x61C64, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8E30D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB6C0, symBinAddr: 0x61CF4, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8E321, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB77C, symBinAddr: 0x61DB0, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8E335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB780, symBinAddr: 0x61DB4, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8E349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB790, symBinAddr: 0x61DC4, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8E35D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB820, symBinAddr: 0x61E54, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8E371, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB8DC, symBinAddr: 0x61F10, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8E385, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB8E0, symBinAddr: 0x61F14, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8E399, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB8F0, symBinAddr: 0x61F24, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8E3AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB980, symBinAddr: 0x61FB4, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8E3C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBA3C, symBinAddr: 0x62070, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8E3D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBA40, symBinAddr: 0x62074, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8E3E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xBA50, symBinAddr: 0x62084, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8E3FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xBAE0, symBinAddr: 0x62114, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8E411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xBB9C, symBinAddr: 0x621D0, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8E425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBBA4, symBinAddr: 0x621D8, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8E439, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xBBA8, symBinAddr: 0x621DC, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8E44D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBBB0, symBinAddr: 0x621E4, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8E461, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xBBC0, symBinAddr: 0x621F4, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8E475, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xBC50, symBinAddr: 0x62284, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8E489, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBD0C, symBinAddr: 0x62340, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8E49D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBD10, symBinAddr: 0x62344, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8E4B1, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBD20, symBinAddr: 0x62354, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8E4C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xBD44, symBinAddr: 0x62378, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8E4D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xBD64, symBinAddr: 0x62398, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8E4ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xBDA4, symBinAddr: 0x623D8, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8E501, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBDB4, symBinAddr: 0x623E8, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8E515, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBDB8, symBinAddr: 0x623EC, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8E529, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBDFC, symBinAddr: 0x62430, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8E53D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBE00, symBinAddr: 0x62434, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8E551, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBE44, symBinAddr: 0x62478, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8E565, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBE48, symBinAddr: 0x6247C, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8E579, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBE8C, symBinAddr: 0x624C0, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8E58D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBE90, symBinAddr: 0x624C4, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8E5A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBED4, symBinAddr: 0x62508, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8E5B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBED8, symBinAddr: 0x6250C, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8E5C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBF1C, symBinAddr: 0x62550, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8E5DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBF20, symBinAddr: 0x62554, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8E5F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF64, symBinAddr: 0x62598, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8E605, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF68, symBinAddr: 0x6259C, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8E619, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFAC, symBinAddr: 0x625E0, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8E62D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBFB0, symBinAddr: 0x625E4, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8E641, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBFF4, symBinAddr: 0x62628, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8E655, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBFF8, symBinAddr: 0x6262C, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8E669, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC03C, symBinAddr: 0x62670, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8E67D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC040, symBinAddr: 0x62674, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8E691, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC084, symBinAddr: 0x626B8, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8E6A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC088, symBinAddr: 0x626BC, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8E6B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0CC, symBinAddr: 0x62700, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8E6CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC0D0, symBinAddr: 0x62704, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8E6E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC114, symBinAddr: 0x62748, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8E6F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC118, symBinAddr: 0x6274C, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8E709, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC15C, symBinAddr: 0x62790, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8E71D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC160, symBinAddr: 0x62794, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8E731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC1A4, symBinAddr: 0x627D8, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8E745, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC1A8, symBinAddr: 0x627DC, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8E759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC1EC, symBinAddr: 0x62820, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8E76D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC1F0, symBinAddr: 0x62824, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8E781, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC234, symBinAddr: 0x62868, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8E795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC238, symBinAddr: 0x6286C, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8E7A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC27C, symBinAddr: 0x628B0, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8E7BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC280, symBinAddr: 0x628B4, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8E7D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xC2C4, symBinAddr: 0x628F8, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8E7E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xC308, symBinAddr: 0x6293C, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8E7F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xC398, symBinAddr: 0x629CC, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8E80D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xC454, symBinAddr: 0x62A88, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8E821, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xC458, symBinAddr: 0x62A8C, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8E835, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC468, symBinAddr: 0x62A9C, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8E849, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC46C, symBinAddr: 0x62AA0, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8E85D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC4B0, symBinAddr: 0x62AE4, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8E871, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC4B4, symBinAddr: 0x62AE8, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8E885, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC4F8, symBinAddr: 0x62B2C, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8E899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC4FC, symBinAddr: 0x62B30, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8E8C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1044, symBinAddr: 0x58130, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8E8E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x106C, symBinAddr: 0x58158, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8E905, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x121C, symBinAddr: 0x58308, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8E921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1244, symBinAddr: 0x58330, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8E93D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130C, symBinAddr: 0x583F8, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8E9BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1318, symBinAddr: 0x58404, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8EA3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x13BC, symBinAddr: 0x584A8, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8EA7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x143C, symBinAddr: 0x58528, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8EAE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1614, symBinAddr: 0x58700, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8EAFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x163C, symBinAddr: 0x58728, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8EB21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1738, symBinAddr: 0x58824, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8EB3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x5884C, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8EB90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x18C4, symBinAddr: 0x589B0, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8EC32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1964, symBinAddr: 0x58A50, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8EC4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x58A78, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8EC70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B3C, symBinAddr: 0x58C28, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8EC8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B64, symBinAddr: 0x58C50, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8ECD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C64, symBinAddr: 0x58D50, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8EDA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1CEC, symBinAddr: 0x58DD8, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8EE27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D4C, symBinAddr: 0x58E38, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8EE79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D8C, symBinAddr: 0x58E78, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8EEDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E80, symBinAddr: 0x58F6C, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8EEF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1EA8, symBinAddr: 0x58F94, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8EF38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E80, symBinAddr: 0x5CF60, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8F0CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x570EC, symSize: 0x18C } + - { offsetInCU: 0x2A47, offset: 0x8F0FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18C, symBinAddr: 0x57278, symSize: 0x274 } + - { offsetInCU: 0x2A78, offset: 0x8F12C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x400, symBinAddr: 0x574EC, symSize: 0x1A0 } + - { offsetInCU: 0x2AA9, offset: 0x8F15D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x5A0, symBinAddr: 0x5768C, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8F180, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x63C, symBinAddr: 0x57728, symSize: 0x278 } + - { offsetInCU: 0x2AFD, offset: 0x8F1B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B4, symBinAddr: 0x579A0, symSize: 0x128 } + - { offsetInCU: 0x2B2E, offset: 0x8F1E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9DC, symBinAddr: 0x57AC8, symSize: 0x224 } + - { offsetInCU: 0x2B5F, offset: 0x8F213, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC00, symBinAddr: 0x57CEC, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8F249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCB0, symBinAddr: 0x57D9C, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F28B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD60, symBinAddr: 0x57E4C, symSize: 0x254 } + - { offsetInCU: 0x2DE8, offset: 0x8F49C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F78, symBinAddr: 0x59064, symSize: 0x1C8 } + - { offsetInCU: 0x2E34, offset: 0x8F4E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x2140, symBinAddr: 0x5922C, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8F5CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x62BCC, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8F707, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x62C38, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8F71B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x62C8C, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8F72F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x62CD0, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8F810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x62BCC, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8F82A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x62BD4, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8F85C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x62BDC, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8F870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x62BEC, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8F891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x62BF0, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8F8A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x62BF8, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x8F8D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x62C00, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x8F8FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x62C10, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x8F91C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x62C14, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x8F930, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x62C1C, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x8F960, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x62C24, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x8F984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x62C34, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x8F9DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x62CE0, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x8FA2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x62D04, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x8FB31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x62CE0, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x8FB99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x62D24, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x8FBEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x62D48, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x8FCF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x62D24, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x8FD5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x62D68, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x8FDAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x62DC8, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x8FDC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x62DD0, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x8FDD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x62E0C, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x8FEDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x62D68, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x8FF45, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x62E84, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x90099, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x631EC, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x902BF, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x62E84, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x904FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63234, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x9054B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x63258, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90651, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63234, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x90733, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x9C8, symBinAddr: 0x63C00, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x9074F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x63C0C, symSize: 0x4C } + - { offsetInCU: 0xD5, offset: 0x90767, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x63C0C, symSize: 0x4C } + - { offsetInCU: 0xF1, offset: 0x90783, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA20, symBinAddr: 0x63C58, symSize: 0x38 } + - { offsetInCU: 0x180, offset: 0x90812, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xBF4, symBinAddr: 0x63E2C, symSize: 0xC } + - { offsetInCU: 0x19C, offset: 0x9082E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x63E38, symSize: 0x2C } + - { offsetInCU: 0x1B4, offset: 0x90846, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x63E38, symSize: 0x2C } + - { offsetInCU: 0x56B, offset: 0x90BFD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x754, symBinAddr: 0x6398C, symSize: 0xC8 } + - { offsetInCU: 0x5DF, offset: 0x90C71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xC2C, symBinAddr: 0x63E64, symSize: 0x3EC } + - { offsetInCU: 0x808, offset: 0x90E9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1018, symBinAddr: 0x64250, symSize: 0x13C } + - { offsetInCU: 0xA2A, offset: 0x910BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3424, symBinAddr: 0x665BC, symSize: 0x224 } + - { offsetInCU: 0xADB, offset: 0x9116D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x36EC, symBinAddr: 0x66828, symSize: 0x25C } + - { offsetInCU: 0xB40, offset: 0x911D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3948, symBinAddr: 0x66A84, symSize: 0x248 } + - { offsetInCU: 0xC68, offset: 0x912FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3B90, symBinAddr: 0x66CCC, symSize: 0x2BC } + - { offsetInCU: 0xDA7, offset: 0x91439, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3E4C, symBinAddr: 0x66F88, symSize: 0x1A8 } + - { offsetInCU: 0xDED, offset: 0x9147F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3FF4, symBinAddr: 0x67130, symSize: 0x43C } + - { offsetInCU: 0x1124, offset: 0x917B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4430, symBinAddr: 0x6756C, symSize: 0xC4 } + - { offsetInCU: 0x1269, offset: 0x918FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2EB0, symBinAddr: 0x660E8, symSize: 0x4 } + - { offsetInCU: 0x127D, offset: 0x9190F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2EB4, symBinAddr: 0x660EC, symSize: 0x44 } + - { offsetInCU: 0x1291, offset: 0x91923, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2EF8, symBinAddr: 0x66130, symSize: 0x4 } + - { offsetInCU: 0x12A5, offset: 0x91937, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2EFC, symBinAddr: 0x66134, symSize: 0x4C } + - { offsetInCU: 0x12B9, offset: 0x9194B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x2F8C, symBinAddr: 0x66180, symSize: 0x4 } + - { offsetInCU: 0x12CD, offset: 0x9195F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x2F90, symBinAddr: 0x66184, symSize: 0x44 } + - { offsetInCU: 0x12E1, offset: 0x91973, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x2FE4, symBinAddr: 0x661C8, symSize: 0x90 } + - { offsetInCU: 0x12F5, offset: 0x91987, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x3074, symBinAddr: 0x66258, symSize: 0xBC } + - { offsetInCU: 0x1309, offset: 0x9199B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3130, symBinAddr: 0x66314, symSize: 0x8 } + - { offsetInCU: 0x131D, offset: 0x919AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3138, symBinAddr: 0x6631C, symSize: 0x4 } + - { offsetInCU: 0x1331, offset: 0x919C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x313C, symBinAddr: 0x66320, symSize: 0x8 } + - { offsetInCU: 0x1345, offset: 0x919D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x3144, symBinAddr: 0x66328, symSize: 0x10 } + - { offsetInCU: 0x1359, offset: 0x919EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x3154, symBinAddr: 0x66338, symSize: 0x90 } + - { offsetInCU: 0x136D, offset: 0x919FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x31E4, symBinAddr: 0x663C8, symSize: 0xBC } + - { offsetInCU: 0x1381, offset: 0x91A13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x32A0, symBinAddr: 0x66484, symSize: 0x8 } + - { offsetInCU: 0x1395, offset: 0x91A27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x32A8, symBinAddr: 0x6648C, symSize: 0x4 } + - { offsetInCU: 0x13A9, offset: 0x91A3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x32AC, symBinAddr: 0x66490, symSize: 0xC } + - { offsetInCU: 0x13BD, offset: 0x91A4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x32B8, symBinAddr: 0x6649C, symSize: 0x10 } + - { offsetInCU: 0x13D1, offset: 0x91A63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x32C8, symBinAddr: 0x664AC, symSize: 0x20 } + - { offsetInCU: 0x13E5, offset: 0x91A77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x32F0, symBinAddr: 0x664CC, symSize: 0xC } + - { offsetInCU: 0x13F9, offset: 0x91A8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x32FC, symBinAddr: 0x664D8, symSize: 0x4 } + - { offsetInCU: 0x140D, offset: 0x91A9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3300, symBinAddr: 0x664DC, symSize: 0x44 } + - { offsetInCU: 0x1421, offset: 0x91AB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x3344, symBinAddr: 0x66520, symSize: 0xC } + - { offsetInCU: 0x1435, offset: 0x91AC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x3350, symBinAddr: 0x6652C, symSize: 0x4 } + - { offsetInCU: 0x1449, offset: 0x91ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3354, symBinAddr: 0x66530, symSize: 0x44 } + - { offsetInCU: 0x145D, offset: 0x91AEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3398, symBinAddr: 0x66574, symSize: 0xC } + - { offsetInCU: 0x14D1, offset: 0x91B63, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x3648, symBinAddr: 0x667E0, symSize: 0x48 } + - { offsetInCU: 0x1530, offset: 0x91BC2, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x44F4, symBinAddr: 0x67630, symSize: 0x3C } + - { offsetInCU: 0x1544, offset: 0x91BD6, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4530, symBinAddr: 0x6766C, symSize: 0x24 } + - { offsetInCU: 0x1558, offset: 0x91BEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4588, symBinAddr: 0x676B4, symSize: 0x8 } + - { offsetInCU: 0x156C, offset: 0x91BFE, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4590, symBinAddr: 0x676BC, symSize: 0x10 } + - { offsetInCU: 0x1580, offset: 0x91C12, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x45A0, symBinAddr: 0x676CC, symSize: 0x8 } + - { offsetInCU: 0x1594, offset: 0x91C26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4600, symBinAddr: 0x676D4, symSize: 0x8 } + - { offsetInCU: 0x15A8, offset: 0x91C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x46B4, symBinAddr: 0x67788, symSize: 0x10 } + - { offsetInCU: 0x16A6, offset: 0x91D38, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x144, symBinAddr: 0x6337C, symSize: 0x134 } + - { offsetInCU: 0x1767, offset: 0x91DF9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x278, symBinAddr: 0x634B0, symSize: 0xF0 } + - { offsetInCU: 0x1802, offset: 0x91E94, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x368, symBinAddr: 0x635A0, symSize: 0x90 } + - { offsetInCU: 0x19E2, offset: 0x92074, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x63A78, symSize: 0xC } + - { offsetInCU: 0x1A62, offset: 0x920F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x84C, symBinAddr: 0x63A84, symSize: 0x8C } + - { offsetInCU: 0x1B16, offset: 0x921A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D8, symBinAddr: 0x63B10, symSize: 0x68 } + - { offsetInCU: 0x1B86, offset: 0x92218, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x940, symBinAddr: 0x63B78, symSize: 0x88 } + - { offsetInCU: 0x1C1E, offset: 0x922B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xACC, symBinAddr: 0x63D04, symSize: 0xC } + - { offsetInCU: 0x1C9E, offset: 0x92330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xAD8, symBinAddr: 0x63D10, symSize: 0x6C } + - { offsetInCU: 0x1D52, offset: 0x923E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB44, symBinAddr: 0x63D7C, symSize: 0x48 } + - { offsetInCU: 0x1DC4, offset: 0x92456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x63DC4, symSize: 0x68 } + - { offsetInCU: 0x21B1, offset: 0x92843, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x63278, symSize: 0x6C } + - { offsetInCU: 0x21E8, offset: 0x9287A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x632E4, symSize: 0x28 } + - { offsetInCU: 0x2207, offset: 0x92899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x6330C, symSize: 0x48 } + - { offsetInCU: 0x223A, offset: 0x928CC, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x2252, offset: 0x928E4, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x2266, offset: 0x928F8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x227A, offset: 0x9290C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x228E, offset: 0x92920, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0x22AE, offset: 0x92940, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x63358, symSize: 0x24 } + - { offsetInCU: 0x2359, offset: 0x929EB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x3F8, symBinAddr: 0x63630, symSize: 0xC4 } + - { offsetInCU: 0x250C, offset: 0x92B9E, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2524, offset: 0x92BB6, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2544, offset: 0x92BD6, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2558, offset: 0x92BEA, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x256C, offset: 0x92BFE, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2580, offset: 0x92C12, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x636F4, symSize: 0x48 } + - { offsetInCU: 0x2654, offset: 0x92CE6, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x504, symBinAddr: 0x6373C, symSize: 0x88 } + - { offsetInCU: 0x2711, offset: 0x92DA3, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x58C, symBinAddr: 0x637C4, symSize: 0x80 } + - { offsetInCU: 0x27AC, offset: 0x92E3E, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x60C, symBinAddr: 0x63844, symSize: 0xE4 } + - { offsetInCU: 0x2900, offset: 0x92F92, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x2918, offset: 0x92FAA, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x292C, offset: 0x92FBE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x2940, offset: 0x92FD2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x2954, offset: 0x92FE6, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x63928, symSize: 0x64 } + - { offsetInCU: 0x29D1, offset: 0x93063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x81C, symBinAddr: 0x63A54, symSize: 0x24 } + - { offsetInCU: 0x2A33, offset: 0x930C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xA58, symBinAddr: 0x63C90, symSize: 0x74 } + - { offsetInCU: 0x2AE2, offset: 0x93174, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1154, symBinAddr: 0x6438C, symSize: 0x9BC } + - { offsetInCU: 0x3090, offset: 0x93722, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B10, symBinAddr: 0x64D48, symSize: 0x694 } + - { offsetInCU: 0x33FF, offset: 0x93A91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x21A4, symBinAddr: 0x653DC, symSize: 0x4B0 } + - { offsetInCU: 0x35C8, offset: 0x93C5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2654, symBinAddr: 0x6588C, symSize: 0x64C } + - { offsetInCU: 0x3ACB, offset: 0x9415D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2CA0, symBinAddr: 0x65ED8, symSize: 0x160 } + - { offsetInCU: 0x3BD7, offset: 0x94269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2E00, symBinAddr: 0x66038, symSize: 0x2C } + - { offsetInCU: 0x3C10, offset: 0x942A2, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2EAC, symBinAddr: 0x660E4, symSize: 0x4 } + - { offsetInCU: 0x3C3D, offset: 0x942CF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x33E8, symBinAddr: 0x66580, symSize: 0x14 } + - { offsetInCU: 0x3C6D, offset: 0x942FF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x33FC, symBinAddr: 0x66594, symSize: 0x14 } + - { offsetInCU: 0x3C9D, offset: 0x9432F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3410, symBinAddr: 0x665A8, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x944C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x677A4, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x944D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x6792C, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x944EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x679D0, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x94500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x67B2C, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x94514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x67D14, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x94528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x67E00, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x9453C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x67F88, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x94550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x68020, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x94564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x680B8, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x94578, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x68140, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x9458C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x68194, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x945A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x682B8, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x945B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x6833C, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x945C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x68430, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x945DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x68590, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x945F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x6866C, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x94604, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x687B4, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x94618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x6884C, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x9462C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x68918, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x946BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17AC, symBinAddr: 0x68F10, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x94715, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17C4, symBinAddr: 0x68F28, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x9478F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17F0, symBinAddr: 0x68F54, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x947C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0x68FC4, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x947F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1884, symBinAddr: 0x68FE8, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x94811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1890, symBinAddr: 0x68FF4, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x9482D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F68, symBinAddr: 0x6A5D0, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x948E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18EC, symBinAddr: 0x69050, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x9490A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1900, symBinAddr: 0x69064, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x9498B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AD8, symBinAddr: 0x6923C, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x949C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x69284, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x949F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B44, symBinAddr: 0x692A8, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x94A0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x692B4, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x94A29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3150, symBinAddr: 0x6A7B8, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x94AD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BAC, symBinAddr: 0x69310, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x94B10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BF8, symBinAddr: 0x6935C, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x94B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x32A4, symBinAddr: 0x6A90C, symSize: 0x2A4 } + - { offsetInCU: 0x716, offset: 0x94B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2438, symBinAddr: 0x69B9C, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x94BCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2440, symBinAddr: 0x69BA4, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x94BFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2464, symBinAddr: 0x69BC8, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x94C19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2470, symBinAddr: 0x69BD4, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x94C35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3548, symBinAddr: 0x6ABB0, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x94D91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x24CC, symBinAddr: 0x69C30, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x94DB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x24E0, symBinAddr: 0x69C44, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x94DD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2518, symBinAddr: 0x69C58, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x94DEC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x257C, symBinAddr: 0x69C9C, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x94E00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2644, symBinAddr: 0x69D1C, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x94E14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x26CC, symBinAddr: 0x69D60, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x94E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x27F8, symBinAddr: 0x69E8C, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x94E3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x284C, symBinAddr: 0x69ED0, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x94E50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x28DC, symBinAddr: 0x69F60, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x94E64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2998, symBinAddr: 0x6A01C, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x94E78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x29A0, symBinAddr: 0x6A024, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x94E8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x29A4, symBinAddr: 0x6A028, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x94EA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x29AC, symBinAddr: 0x6A030, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x94EB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x29BC, symBinAddr: 0x6A040, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x94EC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2A4C, symBinAddr: 0x6A0D0, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x94EDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2B08, symBinAddr: 0x6A18C, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x94EF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2B0C, symBinAddr: 0x6A190, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x94F04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2B1C, symBinAddr: 0x6A1A0, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x94F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2B4C, symBinAddr: 0x6A1D0, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x94F2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2B7C, symBinAddr: 0x6A200, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x94F40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2BD8, symBinAddr: 0x6A25C, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x94F54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2C88, symBinAddr: 0x6A2F0, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x94F68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2CEC, symBinAddr: 0x6A354, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x94F7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2D48, symBinAddr: 0x6A3B0, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x94F90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2DA8, symBinAddr: 0x6A410, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x94FA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2DB8, symBinAddr: 0x6A420, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x94FB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2DBC, symBinAddr: 0x6A424, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x94FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2E00, symBinAddr: 0x6A468, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x94FE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2E04, symBinAddr: 0x6A46C, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x94FF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E48, symBinAddr: 0x6A4B0, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x95008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E4C, symBinAddr: 0x6A4B4, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x9501C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x6A4F8, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x95030, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E94, symBinAddr: 0x6A4FC, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x95044, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED8, symBinAddr: 0x6A540, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x95058, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EDC, symBinAddr: 0x6A544, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x9506C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F20, symBinAddr: 0x6A588, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x95080, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F24, symBinAddr: 0x6A58C, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x9509F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3864, symBinAddr: 0x6AECC, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x950B3, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x38A8, symBinAddr: 0x6AF10, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x950C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x3974, symBinAddr: 0x6AFDC, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x950DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3A04, symBinAddr: 0x6B06C, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x950EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3AC0, symBinAddr: 0x6B128, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x95103, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3AC4, symBinAddr: 0x6B12C, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x95117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3AD4, symBinAddr: 0x6B13C, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x9512B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3AD8, symBinAddr: 0x6B140, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x9513F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3B1C, symBinAddr: 0x6B184, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x95153, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3B20, symBinAddr: 0x6B188, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x95167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3B64, symBinAddr: 0x6B1CC, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x9517B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3B68, symBinAddr: 0x6B1D0, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x951A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x189C, symBinAddr: 0x69000, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x951C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18C4, symBinAddr: 0x69028, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x951E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B5C, symBinAddr: 0x692C0, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x95203, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B84, symBinAddr: 0x692E8, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x95225, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x247C, symBinAddr: 0x69BE0, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x95241, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x24A4, symBinAddr: 0x69C08, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x9534E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x689A0, symSize: 0x210 } + - { offsetInCU: 0xF04, offset: 0x95385, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x144C, symBinAddr: 0x68BB0, symSize: 0x360 } + - { offsetInCU: 0xF7F, offset: 0x95400, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1914, symBinAddr: 0x69078, symSize: 0x1BC } + - { offsetInCU: 0xFCA, offset: 0x9544B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1C38, symBinAddr: 0x6939C, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x9546E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CE0, symBinAddr: 0x69444, symSize: 0x274 } + - { offsetInCU: 0x1024, offset: 0x954A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F54, symBinAddr: 0x696B8, symSize: 0x458 } + - { offsetInCU: 0x27, offset: 0x9552C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6B234, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x9560B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x6B31C, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x9561F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x6B34C, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x95633, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6B374, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x95647, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x6B3B0, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x9565B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x6B41C, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x9566F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x6B460, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x95683, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x6B4A8, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x95697, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x6B4E8, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x957A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6B234, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x957C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x6B260, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x957F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x6B294, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x95809, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x6B2A4, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x9582A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x6B2A8, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x9583E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x6B2D4, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x95873, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x6B308, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x95897, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x6B318, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x958E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6B4F8, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x95949, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x6B790, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x95965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6B798, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x9597D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6B798, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x9599A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x6B680, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x959AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x6B684, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x959E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x6B7B0, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x959F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x6B840, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x95A0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x6B8FC, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x95A1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x6B904, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x95A32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x6B908, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x95A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x6B910, symSize: 0x10 } + - { offsetInCU: 0x1BF, offset: 0x95A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x438, symBinAddr: 0x6B920, symSize: 0x248 } + - { offsetInCU: 0x31A, offset: 0x95BDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x6B65C, symSize: 0x24 } + - { offsetInCU: 0x40E, offset: 0x95CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x6B6C8, symSize: 0x4C } + - { offsetInCU: 0x4E6, offset: 0x95DA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x6B714, symSize: 0x34 } + - { offsetInCU: 0x562, offset: 0x95E24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x6B748, symSize: 0x48 } + - { offsetInCU: 0x6ED, offset: 0x95FAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6B4F8, symSize: 0x14 } + - { offsetInCU: 0x70E, offset: 0x95FD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x6B50C, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x9607A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6BB68, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x960CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x6BB8C, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x961D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6BB68, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x96261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1A40, symBinAddr: 0x885F0, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x967C9, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x6BBE0, symSize: 0x4C } + - { offsetInCU: 0x5CF, offset: 0x967E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x6BC2C, symSize: 0x4C } + - { offsetInCU: 0x72F, offset: 0x96941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1614, symBinAddr: 0x6D154, symSize: 0x8 } + - { offsetInCU: 0x743, offset: 0x96955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x161C, symBinAddr: 0x6D15C, symSize: 0x8 } + - { offsetInCU: 0x757, offset: 0x96969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1624, symBinAddr: 0x6D164, symSize: 0x8 } + - { offsetInCU: 0x76B, offset: 0x9697D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x162C, symBinAddr: 0x6D16C, symSize: 0x8 } + - { offsetInCU: 0x77F, offset: 0x96991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1634, symBinAddr: 0x6D174, symSize: 0x8 } + - { offsetInCU: 0x793, offset: 0x969A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x1698, symBinAddr: 0x6D17C, symSize: 0x20 } + - { offsetInCU: 0x7A7, offset: 0x969B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOb', symObjAddr: 0x16B8, symBinAddr: 0x6D19C, symSize: 0x48 } + - { offsetInCU: 0x7BB, offset: 0x969CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOd', symObjAddr: 0x1700, symBinAddr: 0x6D1E4, symSize: 0x48 } + - { offsetInCU: 0x7CF, offset: 0x969E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1884, symBinAddr: 0x6D358, symSize: 0x8 } + - { offsetInCU: 0x7E3, offset: 0x969F5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x188C, symBinAddr: 0x6D360, symSize: 0x10 } + - { offsetInCU: 0x7F7, offset: 0x96A09, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x189C, symBinAddr: 0x6D370, symSize: 0x8 } + - { offsetInCU: 0x840, offset: 0x96A52, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6D378, symSize: 0x10 } + - { offsetInCU: 0x85C, offset: 0x96A6E, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6D378, symSize: 0x10 } + - { offsetInCU: 0x870, offset: 0x96A82, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6D378, symSize: 0x10 } + - { offsetInCU: 0x8AF, offset: 0x96AC1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x6BBAC, symSize: 0x4 } + - { offsetInCU: 0x8CB, offset: 0x96ADD, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x6BBB0, symSize: 0x4 } + - { offsetInCU: 0x8E7, offset: 0x96AF9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x6BBB4, symSize: 0x4 } + - { offsetInCU: 0x903, offset: 0x96B15, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x6BBB8, symSize: 0x4 } + - { offsetInCU: 0x91F, offset: 0x96B31, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x6BBBC, symSize: 0x4 } + - { offsetInCU: 0x93B, offset: 0x96B4D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x6BBC0, symSize: 0x4 } + - { offsetInCU: 0x957, offset: 0x96B69, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x6BBC4, symSize: 0x4 } + - { offsetInCU: 0x973, offset: 0x96B85, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x6BBC8, symSize: 0xC } + - { offsetInCU: 0x98F, offset: 0x96BA1, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x6BBD4, symSize: 0xC } + - { offsetInCU: 0xBEF, offset: 0x96E01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xCC, symBinAddr: 0x6BC78, symSize: 0x40 } + - { offsetInCU: 0xCB3, offset: 0x96EC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x10C, symBinAddr: 0x6BCB8, symSize: 0x45C } + - { offsetInCU: 0xF32, offset: 0x97144, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x5B8, symBinAddr: 0x6C124, symSize: 0x5C } + - { offsetInCU: 0xF98, offset: 0x971AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x614, symBinAddr: 0x6C180, symSize: 0x5C } + - { offsetInCU: 0xFFE, offset: 0x97210, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x670, symBinAddr: 0x6C1DC, symSize: 0x5C } + - { offsetInCU: 0x1064, offset: 0x97276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x6CC, symBinAddr: 0x6C238, symSize: 0x5C } + - { offsetInCU: 0x10CA, offset: 0x972DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x728, symBinAddr: 0x6C294, symSize: 0x5C } + - { offsetInCU: 0x1195, offset: 0x973A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x784, symBinAddr: 0x6C2F0, symSize: 0x44 } + - { offsetInCU: 0x11FF, offset: 0x97411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7C8, symBinAddr: 0x6C334, symSize: 0x10 } + - { offsetInCU: 0x1231, offset: 0x97443, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7C8, symBinAddr: 0x6C334, symSize: 0x10 } + - { offsetInCU: 0x1260, offset: 0x97472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x7D8, symBinAddr: 0x6C344, symSize: 0x54 } + - { offsetInCU: 0x12D7, offset: 0x974E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x93C, symBinAddr: 0x6C4A8, symSize: 0x34 } + - { offsetInCU: 0x133A, offset: 0x9754C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x970, symBinAddr: 0x6C4DC, symSize: 0x54 } + - { offsetInCU: 0x13B1, offset: 0x975C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0x9C4, symBinAddr: 0x6C530, symSize: 0x4C } + - { offsetInCU: 0x143D, offset: 0x9764F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA10, symBinAddr: 0x6C57C, symSize: 0x84 } + - { offsetInCU: 0x14D8, offset: 0x976EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xA94, symBinAddr: 0x6C600, symSize: 0x74 } + - { offsetInCU: 0x1587, offset: 0x97799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xB08, symBinAddr: 0x6C674, symSize: 0x84 } + - { offsetInCU: 0x1622, offset: 0x97834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xB8C, symBinAddr: 0x6C6F8, symSize: 0x38 } + - { offsetInCU: 0x169F, offset: 0x978B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBC4, symBinAddr: 0x6C730, symSize: 0x38 } + - { offsetInCU: 0x171C, offset: 0x9792E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBFC, symBinAddr: 0x6C768, symSize: 0x38 } + - { offsetInCU: 0x179C, offset: 0x979AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC34, symBinAddr: 0x6C7A0, symSize: 0x38 } + - { offsetInCU: 0x181C, offset: 0x97A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC6C, symBinAddr: 0x6C7D8, symSize: 0x38 } + - { offsetInCU: 0x189C, offset: 0x97AAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCA4, symBinAddr: 0x6C810, symSize: 0x38 } + - { offsetInCU: 0x191C, offset: 0x97B2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCDC, symBinAddr: 0x6C848, symSize: 0x38 } + - { offsetInCU: 0x199C, offset: 0x97BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xD14, symBinAddr: 0x6C880, symSize: 0x38 } + - { offsetInCU: 0x19FC, offset: 0x97C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xD4C, symBinAddr: 0x6C8B8, symSize: 0x44 } + - { offsetInCU: 0x1A93, offset: 0x97CA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xD90, symBinAddr: 0x6C8FC, symSize: 0x13C } + - { offsetInCU: 0x1B64, offset: 0x97D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xECC, symBinAddr: 0x6CA38, symSize: 0xAC } + - { offsetInCU: 0x1C36, offset: 0x97E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0xF78, symBinAddr: 0x6CAE4, symSize: 0x78 } + - { offsetInCU: 0x1CCC, offset: 0x97EDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0xFF0, symBinAddr: 0x6CB5C, symSize: 0x84 } + - { offsetInCU: 0x1CEF, offset: 0x97F01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1074, symBinAddr: 0x6CBE0, symSize: 0x20 } + - { offsetInCU: 0x1D34, offset: 0x97F46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x10C0, symBinAddr: 0x6CC00, symSize: 0x254 } + - { offsetInCU: 0x1E2F, offset: 0x98041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1314, symBinAddr: 0x6CE54, symSize: 0x300 } +... diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h similarity index 99% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h index a663dff..7a92f1e 100644 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_AWS_SWIFT_H #define IOTCONNECT2_AWS_SWIFT_H #pragma clang diagnostic push @@ -308,7 +308,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_AWS_SWIFT_H #define IOTCONNECT2_AWS_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist similarity index 72% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist index 4316769..e88acc6 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist and b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist differ diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS new file mode 100755 index 0000000..3b79788 Binary files /dev/null and b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/LICENSE b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/LICENSE similarity index 100% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/LICENSE rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/LICENSE diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..1f1dc8d --- /dev/null +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,11054 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS12ReachabilityC", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2_AWS.DebugConfig", + "usr": "s:15IoTConnect2_AWS11DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2_AWS.MqttConfig", + "usr": "s:15IoTConnect2_AWS10MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS11DebugConfigV", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS10MqttConfigV", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PREQA", + "printedName": "PREQA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "POC", + "printedName": "POC", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS0A4TCPfO", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS9SSLOptionV", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS11CommandTypeO", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS9SDKClientC", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", + "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 20991, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17309, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19292, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33318, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5543, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 9694, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface similarity index 98% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index f25075a..f5b67c5 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc similarity index 92% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 4c111b1..2a14404 100644 Binary files a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface index f25075a..f5b67c5 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..1f1dc8d --- /dev/null +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,11054 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS12ReachabilityC", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2_AWS.DebugConfig", + "usr": "s:15IoTConnect2_AWS11DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2_AWS.MqttConfig", + "usr": "s:15IoTConnect2_AWS10MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS11DebugConfigV", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS10MqttConfigV", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PREQA", + "printedName": "PREQA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "POC", + "printedName": "POC", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS0A4TCPfO", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS9SSLOptionV", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS11CommandTypeO", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS9SDKClientC", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", + "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 20991, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17309, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19292, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33318, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5543, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 9694, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface similarity index 98% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 370a428..36f82d2 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..ea46959 Binary files /dev/null and b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 370a428..36f82d2 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/module.modulemap b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/module.modulemap rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/module.modulemap diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources similarity index 84% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources index 9d888a6..c9495ae 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources @@ -6,11 +6,11 @@ Headers/IoTConnect2_AWS-Swift.h - 3eyDqbdxxlXeyfjSKt3xqSpN8+k= + owtt8WnHlwLiJuobs6CHGLzSwtQ= Info.plist - tCgbaVTxmyguhH0Cm2d7MiwuelI= + sPFW9gqfRnasYrM88byg3pa0eGU= LICENSE @@ -18,43 +18,43 @@ Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json - Hfwi7NZMpQ45Rz33T1NDmv5aeuA= + 08exX3R2exNoYoBcQcuxE4QYtFs= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - DpqlJA3OsRMr7X8YZMh7L/Ju0wo= + 491UHYkZGNeGat28w9+WXHq1qZM= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc - yAxdVJzgY+2778ATlWF2zUPpKrg= + A15Q2F4Il1OaO/sX7yxqXwsETPs= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface - DpqlJA3OsRMr7X8YZMh7L/Ju0wo= + 491UHYkZGNeGat28w9+WXHq1qZM= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule - IpkdthVbFT6LRhKqJIXi4anyEgg= + ciOfMO7mEqwNjvkB0fUpp3y9HDE= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json - Hfwi7NZMpQ45Rz33T1NDmv5aeuA= + 08exX3R2exNoYoBcQcuxE4QYtFs= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - vCdFUAOO2LIHztN8Sy9dPQxP0M4= + XK/CNGKDIdZFv6Txy7dNBNFb4CI= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - tjgmZ62Dv3jTM2fEVyPUEqYZk6Q= + suMQPdsqi540q5ZIv7XGC1snFvo= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - vCdFUAOO2LIHztN8Sy9dPQxP0M4= + XK/CNGKDIdZFv6Txy7dNBNFb4CI= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - 7KeC2SSwepBbI3t4HTAmS5VW8pY= + tcl/PqmWbK0H1+5hpb6Ektid5u4= Modules/module.modulemap @@ -67,7 +67,7 @@ hash2 - +BYwxp628zPRcYd6ac7n3Ux7khNdRvZzIRLymUwES60= + vXCcCcv2KqxNgdJFghz4muzYqgd5BxpcJZF61LmDjzc= LICENSE @@ -81,70 +81,70 @@ hash2 - TWoLTzUN0I0niG8boTNHAA/YxYy2xMOP/YQTpsIIV2Q= + RCF/wojVzvY/IQ3hTPSPvjbrOTvGL14YRpIvOeSSwKo= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - c7jrGj139i19AryhJv1iUNDfeHSkxiyMmFEELqYls90= + PVwHjJ2g0WDe6NMVSlW3L1SC1XZ0WRZtF5nRJAmpY+s= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - BMBW6HQei+6QcN9UwDMr6MijnsIlMD47zADoO/I8Hmk= + c0jTbKPRl3nC/NzwSED6x+u4K+rQVOz5GsmzdBEz1+Q= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - c7jrGj139i19AryhJv1iUNDfeHSkxiyMmFEELqYls90= + PVwHjJ2g0WDe6NMVSlW3L1SC1XZ0WRZtF5nRJAmpY+s= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - qijlKq35lirHu6zf2ylgkHvnXuQyYzptczQ1MNnYUac= + 0PsgepD0+EnpfakJWPFYfSGq543Ap+/ia6ehchhyC4o= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - TWoLTzUN0I0niG8boTNHAA/YxYy2xMOP/YQTpsIIV2Q= + RCF/wojVzvY/IQ3hTPSPvjbrOTvGL14YRpIvOeSSwKo= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - UlZiYNE1kxYMASU1fgMCmn3k3gEhQblq9hog+yayK1A= + sIwyRi/ZJTub0Stti2fBqk1g4a1qSwNcqZx1fma2lAs= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - VPxB0niJSyTAM9z4OWH2u7ynJC1kwskhTBQosrUfRxc= + i4F7VtixeQapiYO7KNcYlU99bbiUqHETVYY1qpuLdfk= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - UlZiYNE1kxYMASU1fgMCmn3k3gEhQblq9hog+yayK1A= + sIwyRi/ZJTub0Stti2fBqk1g4a1qSwNcqZx1fma2lAs= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - N3ddGb0yaBpjPGXLvgdJuaF4J4aEAyIWSHw0jrw078A= + 72eXhcIcBjijXUVwOwKg00TAQJTIzL2Mk/yOCJdJfgw= Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS new file mode 100644 index 0000000..ffe7614 Binary files /dev/null and b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS differ diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml new file mode 100644 index 0000000..10b94c2 --- /dev/null +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml @@ -0,0 +1,1660 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' +relocations: + - { offsetInCU: 0x34, offset: 0x58E66, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6C1E0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x58E9B, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6C218, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x39C38, symBinAddr: 0x85460, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x591A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9370, symBinAddr: 0xE190, symSize: 0x1558 } + - { offsetInCU: 0x1C16, offset: 0x5AAC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4E88, symSize: 0x3C } + - { offsetInCU: 0x1DD2, offset: 0x5AC83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1B5C, symBinAddr: 0x69A4, symSize: 0x8 } + - { offsetInCU: 0x1DE6, offset: 0x5AC97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1B64, symBinAddr: 0x69AC, symSize: 0x3C } + - { offsetInCU: 0x1DFA, offset: 0x5ACAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1BA0, symBinAddr: 0x69E8, symSize: 0x168 } + - { offsetInCU: 0x2260, offset: 0x5B111, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8154, symBinAddr: 0xCF8C, symSize: 0xC } + - { offsetInCU: 0x2274, offset: 0x5B125, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8160, symBinAddr: 0xCF98, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x5B139, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8164, symBinAddr: 0xCF9C, symSize: 0x20 } + - { offsetInCU: 0x229C, offset: 0x5B14D, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x8184, symBinAddr: 0xCFBC, symSize: 0x28 } + - { offsetInCU: 0x24C1, offset: 0x5B372, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x87C4, symBinAddr: 0xD5E4, symSize: 0x2C } + - { offsetInCU: 0x24D5, offset: 0x5B386, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x87F0, symBinAddr: 0xD610, symSize: 0x2C } + - { offsetInCU: 0x24E9, offset: 0x5B39A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x885C, symBinAddr: 0xD67C, symSize: 0x2C } + - { offsetInCU: 0x24FD, offset: 0x5B3AE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8888, symBinAddr: 0xD6A8, symSize: 0x2C } + - { offsetInCU: 0x2566, offset: 0x5B417, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x8C98, symBinAddr: 0xDAB8, symSize: 0x68 } + - { offsetInCU: 0x2B9B, offset: 0x5BA4C, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xA938, symBinAddr: 0xF758, symSize: 0x48 } + - { offsetInCU: 0x2BAF, offset: 0x5BA60, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xA980, symBinAddr: 0xF7A0, symSize: 0x40 } + - { offsetInCU: 0x2BC3, offset: 0x5BA74, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xA9C0, symBinAddr: 0xF7E0, symSize: 0x20 } + - { offsetInCU: 0x2BD7, offset: 0x5BA88, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xA9E0, symBinAddr: 0xF800, symSize: 0x10 } + - { offsetInCU: 0x2BEB, offset: 0x5BA9C, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xA9F0, symBinAddr: 0xF810, symSize: 0x3C } + - { offsetInCU: 0x2BFF, offset: 0x5BAB0, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAA8C, symBinAddr: 0xF8AC, symSize: 0x44 } + - { offsetInCU: 0x2C13, offset: 0x5BAC4, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xAC58, symBinAddr: 0xFA78, symSize: 0x8 } + - { offsetInCU: 0x2C27, offset: 0x5BAD8, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xAC60, symBinAddr: 0xFA80, symSize: 0x10 } + - { offsetInCU: 0x2C3B, offset: 0x5BAEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xAC70, symBinAddr: 0xFA90, symSize: 0x5C } + - { offsetInCU: 0x2C4F, offset: 0x5BB00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xACCC, symBinAddr: 0xFAEC, symSize: 0x30C } + - { offsetInCU: 0x2C63, offset: 0x5BB14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xAFD8, symBinAddr: 0xFDF8, symSize: 0x240 } + - { offsetInCU: 0x2C77, offset: 0x5BB28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xB218, symBinAddr: 0x10038, symSize: 0x70 } + - { offsetInCU: 0x2C8B, offset: 0x5BB3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xB288, symBinAddr: 0x100A8, symSize: 0x34 } + - { offsetInCU: 0x2C9F, offset: 0x5BB50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xB2BC, symBinAddr: 0x100DC, symSize: 0x174 } + - { offsetInCU: 0x2CB3, offset: 0x5BB64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xB430, symBinAddr: 0x10250, symSize: 0xB4 } + - { offsetInCU: 0x2CC7, offset: 0x5BB78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xB4E4, symBinAddr: 0x10304, symSize: 0x10 } + - { offsetInCU: 0x2CDB, offset: 0x5BB8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xB4F4, symBinAddr: 0x10314, symSize: 0x34 } + - { offsetInCU: 0x2CEF, offset: 0x5BBA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xB564, symBinAddr: 0x10384, symSize: 0x5C } + - { offsetInCU: 0x2D03, offset: 0x5BBB4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xB664, symBinAddr: 0x10484, symSize: 0x2C } + - { offsetInCU: 0x2D17, offset: 0x5BBC8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xB690, symBinAddr: 0x104B0, symSize: 0x2C } + - { offsetInCU: 0x2D2B, offset: 0x5BBDC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xB6BC, symBinAddr: 0x104DC, symSize: 0x2C } + - { offsetInCU: 0x2D3F, offset: 0x5BBF0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xB6E8, symBinAddr: 0x10508, symSize: 0x2C } + - { offsetInCU: 0x2D53, offset: 0x5BC04, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xB714, symBinAddr: 0x10534, symSize: 0x2C } + - { offsetInCU: 0x2D67, offset: 0x5BC18, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xB740, symBinAddr: 0x10560, symSize: 0x2C } + - { offsetInCU: 0x2D7B, offset: 0x5BC2C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xB76C, symBinAddr: 0x1058C, symSize: 0x2C } + - { offsetInCU: 0x30D9, offset: 0x5BF8A, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6A70, symBinAddr: 0xB8B8, symSize: 0x6C } + - { offsetInCU: 0x31ED, offset: 0x5C09E, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x81C0, symBinAddr: 0xCFF8, symSize: 0x80 } + - { offsetInCU: 0x327E, offset: 0x5C12F, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8240, symBinAddr: 0xD078, symSize: 0x90 } + - { offsetInCU: 0x331E, offset: 0x5C1CF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x82D0, symBinAddr: 0xD108, symSize: 0x14 } + - { offsetInCU: 0x335C, offset: 0x5C20D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x82F0, symBinAddr: 0xD128, symSize: 0x8 } + - { offsetInCU: 0x33BF, offset: 0x5C270, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x82F8, symBinAddr: 0xD130, symSize: 0x14 } + - { offsetInCU: 0x3470, offset: 0x5C321, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x830C, symBinAddr: 0xD144, symSize: 0x14 } + - { offsetInCU: 0x3519, offset: 0x5C3CA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8320, symBinAddr: 0xD158, symSize: 0x14 } + - { offsetInCU: 0x35C0, offset: 0x5C471, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8334, symBinAddr: 0xD16C, symSize: 0x30 } + - { offsetInCU: 0x374C, offset: 0x5C5FD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8364, symBinAddr: 0xD19C, symSize: 0x2C } + - { offsetInCU: 0x38E3, offset: 0x5C794, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8390, symBinAddr: 0xD1C8, symSize: 0x24 } + - { offsetInCU: 0x39CF, offset: 0x5C880, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x83B4, symBinAddr: 0xD1EC, symSize: 0x14 } + - { offsetInCU: 0x3A35, offset: 0x5C8E6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x83C8, symBinAddr: 0xD200, symSize: 0x14 } + - { offsetInCU: 0x3A9B, offset: 0x5C94C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x83DC, symBinAddr: 0xD214, symSize: 0x14 } + - { offsetInCU: 0x3B1A, offset: 0x5C9CB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x83F0, symBinAddr: 0xD228, symSize: 0x14 } + - { offsetInCU: 0x3BCD, offset: 0x5CA7E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8404, symBinAddr: 0xD23C, symSize: 0x14 } + - { offsetInCU: 0x3C4E, offset: 0x5CAFF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8418, symBinAddr: 0xD250, symSize: 0x14 } + - { offsetInCU: 0x3D10, offset: 0x5CBC1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x842C, symBinAddr: 0xD264, symSize: 0x14 } + - { offsetInCU: 0x3DAA, offset: 0x5CC5B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8440, symBinAddr: 0xD278, symSize: 0x10 } + - { offsetInCU: 0x3E12, offset: 0x5CCC3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8450, symBinAddr: 0xD288, symSize: 0x18 } + - { offsetInCU: 0x3E2E, offset: 0x5CCDF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8468, symBinAddr: 0xD2A0, symSize: 0x14 } + - { offsetInCU: 0x3EAA, offset: 0x5CD5B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8498, symBinAddr: 0xD2D0, symSize: 0x8 } + - { offsetInCU: 0x3EC6, offset: 0x5CD77, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x84A0, symBinAddr: 0xD2D8, symSize: 0x14 } + - { offsetInCU: 0x3EF7, offset: 0x5CDA8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x84B4, symBinAddr: 0xD2EC, symSize: 0x14 } + - { offsetInCU: 0x3F28, offset: 0x5CDD9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x84C8, symBinAddr: 0xD300, symSize: 0x14 } + - { offsetInCU: 0x3F59, offset: 0x5CE0A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x84DC, symBinAddr: 0xD314, symSize: 0x30 } + - { offsetInCU: 0x3F88, offset: 0x5CE39, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x850C, symBinAddr: 0xD344, symSize: 0x2C } + - { offsetInCU: 0x3FB9, offset: 0x5CE6A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8538, symBinAddr: 0xD370, symSize: 0x24 } + - { offsetInCU: 0x3FEA, offset: 0x5CE9B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x855C, symBinAddr: 0xD394, symSize: 0x14 } + - { offsetInCU: 0x401B, offset: 0x5CECC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8570, symBinAddr: 0xD3A8, symSize: 0x14 } + - { offsetInCU: 0x404C, offset: 0x5CEFD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8584, symBinAddr: 0xD3BC, symSize: 0x14 } + - { offsetInCU: 0x407D, offset: 0x5CF2E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8598, symBinAddr: 0xD3D0, symSize: 0x14 } + - { offsetInCU: 0x40AE, offset: 0x5CF5F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x85AC, symBinAddr: 0xD3E4, symSize: 0x14 } + - { offsetInCU: 0x40DF, offset: 0x5CF90, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x85C0, symBinAddr: 0xD3F8, symSize: 0x14 } + - { offsetInCU: 0x4110, offset: 0x5CFC1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x85D4, symBinAddr: 0xD40C, symSize: 0x14 } + - { offsetInCU: 0x4141, offset: 0x5CFF2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x85E8, symBinAddr: 0xD420, symSize: 0x10 } + - { offsetInCU: 0x4172, offset: 0x5D023, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x85F8, symBinAddr: 0xD430, symSize: 0x18 } + - { offsetInCU: 0x418E, offset: 0x5D03F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8610, symBinAddr: 0xD448, symSize: 0x14 } + - { offsetInCU: 0x41DE, offset: 0x5D08F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8630, symBinAddr: 0xD468, symSize: 0x40 } + - { offsetInCU: 0x4266, offset: 0x5D117, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8670, symBinAddr: 0xD4A8, symSize: 0x70 } + - { offsetInCU: 0x42EA, offset: 0x5D19B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8728, symBinAddr: 0xD560, symSize: 0x4 } + - { offsetInCU: 0x4306, offset: 0x5D1B7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x872C, symBinAddr: 0xD564, symSize: 0x4 } + - { offsetInCU: 0x4331, offset: 0x5D1E2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8730, symBinAddr: 0xD568, symSize: 0x40 } + - { offsetInCU: 0x43BF, offset: 0x5D270, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8788, symBinAddr: 0xD5A8, symSize: 0x3C } + - { offsetInCU: 0x43F0, offset: 0x5D2A1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x88B4, symBinAddr: 0xD6D4, symSize: 0x14 } + - { offsetInCU: 0x4427, offset: 0x5D2D8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x88C8, symBinAddr: 0xD6E8, symSize: 0x3C } + - { offsetInCU: 0x4467, offset: 0x5D318, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8904, symBinAddr: 0xD724, symSize: 0x88 } + - { offsetInCU: 0x4511, offset: 0x5D3C2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8A20, symBinAddr: 0xD840, symSize: 0x84 } + - { offsetInCU: 0x4545, offset: 0x5D3F6, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9038, symBinAddr: 0xDE58, symSize: 0xB8 } + - { offsetInCU: 0x461D, offset: 0x5D4CE, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x90F0, symBinAddr: 0xDF10, symSize: 0x164 } + - { offsetInCU: 0x489B, offset: 0x5D74C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x48BB, offset: 0x5D76C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x48CF, offset: 0x5D780, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x48EF, offset: 0x5D7A0, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x4903, offset: 0x5D7B4, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x4917, offset: 0x5D7C8, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x492B, offset: 0x5D7DC, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8C8, symBinAddr: 0xF6E8, symSize: 0x38 } + - { offsetInCU: 0x4A28, offset: 0x5D8D9, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4A48, offset: 0x5D8F9, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4A5C, offset: 0x5D90D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4A7C, offset: 0x5D92D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4A90, offset: 0x5D941, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4AA4, offset: 0x5D955, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4AB8, offset: 0x5D969, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA900, symBinAddr: 0xF720, symSize: 0x38 } + - { offsetInCU: 0x4CE5, offset: 0x5DB96, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x89B4, symBinAddr: 0xD7D4, symSize: 0x44 } + - { offsetInCU: 0x4D0E, offset: 0x5DBBF, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x89F8, symBinAddr: 0xD818, symSize: 0x28 } + - { offsetInCU: 0x4D49, offset: 0x5DBFA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x8998, symBinAddr: 0xD7B8, symSize: 0x10 } + - { offsetInCU: 0x4D65, offset: 0x5DC16, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x89A8, symBinAddr: 0xD7C8, symSize: 0xC } + - { offsetInCU: 0x4D93, offset: 0x5DC44, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x898C, symBinAddr: 0xD7AC, symSize: 0xC } + - { offsetInCU: 0x4E6B, offset: 0x5DD1C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x82E4, symBinAddr: 0xD11C, symSize: 0xC } + - { offsetInCU: 0x4E9D, offset: 0x5DD4E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x847C, symBinAddr: 0xD2B4, symSize: 0x10 } + - { offsetInCU: 0x4EB9, offset: 0x5DD6A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x848C, symBinAddr: 0xD2C4, symSize: 0xC } + - { offsetInCU: 0x4F17, offset: 0x5DDC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x4EC4, symSize: 0x44 } + - { offsetInCU: 0x4F2B, offset: 0x5DDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x4F08, symSize: 0x4 } + - { offsetInCU: 0x4F53, offset: 0x5DE04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x4F0C, symSize: 0x2BC } + - { offsetInCU: 0x5084, offset: 0x5DF35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x51C8, symSize: 0x1434 } + - { offsetInCU: 0x5385, offset: 0x5E236, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x17B4, symBinAddr: 0x65FC, symSize: 0x384 } + - { offsetInCU: 0x53DE, offset: 0x5E28F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1B38, symBinAddr: 0x6980, symSize: 0x24 } + - { offsetInCU: 0x5416, offset: 0x5E2C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D08, symBinAddr: 0x6B50, symSize: 0x298 } + - { offsetInCU: 0x5587, offset: 0x5E438, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1FA0, symBinAddr: 0x6DE8, symSize: 0x3D4 } + - { offsetInCU: 0x5832, offset: 0x5E6E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2374, symBinAddr: 0x71BC, symSize: 0x794 } + - { offsetInCU: 0x5E83, offset: 0x5ED34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2B08, symBinAddr: 0x7950, symSize: 0x524 } + - { offsetInCU: 0x6278, offset: 0x5F129, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x302C, symBinAddr: 0x7E74, symSize: 0x3A44 } + - { offsetInCU: 0x7251, offset: 0x60102, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6AEC, symBinAddr: 0xB924, symSize: 0x150 } + - { offsetInCU: 0x7330, offset: 0x601E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6C3C, symBinAddr: 0xBA74, symSize: 0x300 } + - { offsetInCU: 0x7593, offset: 0x60444, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x6F3C, symBinAddr: 0xBD74, symSize: 0x3C8 } + - { offsetInCU: 0x78F1, offset: 0x607A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7304, symBinAddr: 0xC13C, symSize: 0x2B0 } + - { offsetInCU: 0x7A98, offset: 0x60949, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7804, symBinAddr: 0xC63C, symSize: 0x31C } + - { offsetInCU: 0x7BF3, offset: 0x60AA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x7B20, symBinAddr: 0xC958, symSize: 0x438 } + - { offsetInCU: 0x7E5D, offset: 0x60D0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x7F58, symBinAddr: 0xCD90, symSize: 0x188 } + - { offsetInCU: 0x8119, offset: 0x60FCA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8AA4, symBinAddr: 0xD8C4, symSize: 0x1F4 } + - { offsetInCU: 0x819E, offset: 0x6104F, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x8E5C, symBinAddr: 0xDC7C, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x6134D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x105C4, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x61388, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x105D4, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x6146F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x105C4, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x614DC, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x10600, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x614F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x10614, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0x106F4, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x615BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0x1070C, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x61637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0x10738, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x6166C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x10740, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x6169D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0x10764, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x616B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0x10770, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x616D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x22F8, symBinAddr: 0x128EC, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61895, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1348, symBinAddr: 0x1193C, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x618CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1398, symBinAddr: 0x1198C, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x618EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2714, symBinAddr: 0x12D08, symSize: 0x144C } + - { offsetInCU: 0x4B4, offset: 0x6194D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x13E8, symBinAddr: 0x119DC, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x619A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x13F0, symBinAddr: 0x119E4, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x61A88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1430, symBinAddr: 0x11A24, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x61AF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1490, symBinAddr: 0x11A84, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x61B48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x149C, symBinAddr: 0x11A90, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x61BA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1518, symBinAddr: 0x11B0C, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x61BBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1524, symBinAddr: 0x11B18, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x61BFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0x11B74, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61C32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0x11BC4, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3B60, symBinAddr: 0x14154, symSize: 0x248 } + - { offsetInCU: 0x857, offset: 0x61CF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1628, symBinAddr: 0x11C1C, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61D25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1684, symBinAddr: 0x11C78, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61D56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16A8, symBinAddr: 0x11C9C, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61D72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16B4, symBinAddr: 0x11CA8, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61D8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x1629C, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x61E67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1710, symBinAddr: 0x11D04, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x61E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1760, symBinAddr: 0x11D54, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x61EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5E9C, symBinAddr: 0x1644C, symSize: 0x310 } + - { offsetInCU: 0xA97, offset: 0x61F30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17A8, symBinAddr: 0x11D9C, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61F65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F8, symBinAddr: 0x11DEC, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x181C, symBinAddr: 0x11E10, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61FB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1828, symBinAddr: 0x11E1C, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61FCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x61AC, symBinAddr: 0x1675C, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x6207E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1884, symBinAddr: 0x11E78, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x620B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C4, symBinAddr: 0x11EB8, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x620D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6314, symBinAddr: 0x168C4, symSize: 0x2C8 } + - { offsetInCU: 0xCA2, offset: 0x6213B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0x11EF8, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x62170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1950, symBinAddr: 0x11F44, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x621A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1974, symBinAddr: 0x11F68, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x621BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1980, symBinAddr: 0x11F74, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x621D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x65DC, symBinAddr: 0x16B8C, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x62299, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19DC, symBinAddr: 0x11FD0, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x622D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A4C, symBinAddr: 0x12040, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x622F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x673C, symBinAddr: 0x16CEC, symSize: 0x4D8 } + - { offsetInCU: 0xEC9, offset: 0x62362, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AAC, symBinAddr: 0x120A0, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x62397, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B34, symBinAddr: 0x12128, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x623C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B58, symBinAddr: 0x1214C, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x623E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B64, symBinAddr: 0x12158, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x62400, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x17290, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x62514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BC0, symBinAddr: 0x121B4, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x6254B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C24, symBinAddr: 0x12218, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x6256E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6F74, symBinAddr: 0x17524, symSize: 0x57C } + - { offsetInCU: 0x1162, offset: 0x625FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C74, symBinAddr: 0x12268, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6267B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1C8C, symBinAddr: 0x12280, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x6275E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CD0, symBinAddr: 0x122C4, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x627E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D38, symBinAddr: 0x1232C, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x62839, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D54, symBinAddr: 0x12348, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x6286A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D78, symBinAddr: 0x1236C, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x62886, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D84, symBinAddr: 0x12378, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x628A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7534, symBinAddr: 0x17AE4, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62930, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0x123D4, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x62967, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E0C, symBinAddr: 0x12400, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x6298A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x75F4, symBinAddr: 0x17BA4, symSize: 0x1A0 } + - { offsetInCU: 0x156C, offset: 0x62A05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0x12424, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x62A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1EA0, symBinAddr: 0x12494, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x62A6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1EC4, symBinAddr: 0x124B8, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x62A87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0x124C4, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x62AA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x77D8, symBinAddr: 0x17D88, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x62BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1F2C, symBinAddr: 0x12520, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x62BE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F84, symBinAddr: 0x12578, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x62C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7A1C, symBinAddr: 0x17FCC, symSize: 0x360 } + - { offsetInCU: 0x17D2, offset: 0x62C6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FD4, symBinAddr: 0x125C8, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x62CA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2038, symBinAddr: 0x1262C, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x62CD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x205C, symBinAddr: 0x12650, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x62CED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2068, symBinAddr: 0x1265C, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x62D09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7D7C, symBinAddr: 0x1832C, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x62DEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x20C4, symBinAddr: 0x126B8, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x210C, symBinAddr: 0x12700, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62E45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7F70, symBinAddr: 0x18520, symSize: 0x380 } + - { offsetInCU: 0x1A2F, offset: 0x62EC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x21D8, symBinAddr: 0x127CC, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62F12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x21F0, symBinAddr: 0x127E4, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62F43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2214, symBinAddr: 0x12808, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62F5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2220, symBinAddr: 0x12814, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62F7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8378, symBinAddr: 0x18928, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x63022, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x227C, symBinAddr: 0x12870, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x63059, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x22C0, symBinAddr: 0x128B4, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x6307C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8484, symBinAddr: 0x18A34, symSize: 0x1CC } + - { offsetInCU: 0x1C20, offset: 0x630B9, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3DE8, symBinAddr: 0x1439C, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x630CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3E0C, symBinAddr: 0x143C0, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x630E1, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3E50, symBinAddr: 0x14404, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x630F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3E70, symBinAddr: 0x14424, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x63109, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3EB4, symBinAddr: 0x14468, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x6311D, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3EF8, symBinAddr: 0x144AC, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x63131, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3F00, symBinAddr: 0x144B0, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x63145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x3F50, symBinAddr: 0x14500, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x63159, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x3FDC, symBinAddr: 0x1458C, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x6316D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x3FE4, symBinAddr: 0x14594, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x63181, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x3FE8, symBinAddr: 0x14598, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x63195, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x3FEC, symBinAddr: 0x1459C, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x631A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x3FFC, symBinAddr: 0x145AC, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x631BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x48AC, symBinAddr: 0x14E5C, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x631D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x48BC, symBinAddr: 0x14E6C, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x631E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x48C0, symBinAddr: 0x14E70, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x631F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4904, symBinAddr: 0x14EB4, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x6320D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4908, symBinAddr: 0x14EB8, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x63221, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x494C, symBinAddr: 0x14EFC, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x63235, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4950, symBinAddr: 0x14F00, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x63249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x4994, symBinAddr: 0x14F44, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x6325D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x49D8, symBinAddr: 0x14F88, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x63271, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x14FCC, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x63285, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4A60, symBinAddr: 0x15010, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x63299, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x15054, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x632AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x15098, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x632C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x4B2C, symBinAddr: 0x150DC, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x632D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x4B70, symBinAddr: 0x15120, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x632E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x4BB4, symBinAddr: 0x15164, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x632FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x4BF8, symBinAddr: 0x151A8, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x63311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x4C3C, symBinAddr: 0x151EC, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x63325, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4C80, symBinAddr: 0x15230, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x63339, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4CC4, symBinAddr: 0x15274, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x6334D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4CD0, symBinAddr: 0x15280, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x63361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4D60, symBinAddr: 0x15310, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x63375, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4E1C, symBinAddr: 0x153CC, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x63389, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4E24, symBinAddr: 0x153D4, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x6339D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4E28, symBinAddr: 0x153D8, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x633B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4E30, symBinAddr: 0x153E0, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x633C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4E40, symBinAddr: 0x153F0, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x633D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4E68, symBinAddr: 0x15418, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x633ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4EAC, symBinAddr: 0x1545C, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x63401, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4F20, symBinAddr: 0x154D0, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x63415, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4F34, symBinAddr: 0x154E4, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x63429, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x4F80, symBinAddr: 0x15530, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x6343D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x4FC8, symBinAddr: 0x15578, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x63451, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x5010, symBinAddr: 0x155C0, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x63465, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x5020, symBinAddr: 0x155D0, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x63479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5058, symBinAddr: 0x15608, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x6348D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x50CC, symBinAddr: 0x1567C, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x634A1, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5188, symBinAddr: 0x15738, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x634B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x51A4, symBinAddr: 0x15754, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x634C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5220, symBinAddr: 0x157D0, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x634DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5268, symBinAddr: 0x15818, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x634F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x52BC, symBinAddr: 0x1586C, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x63505, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x52CC, symBinAddr: 0x1587C, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x63519, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x52F4, symBinAddr: 0x158A4, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x6352D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5330, symBinAddr: 0x158E0, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x63541, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x539C, symBinAddr: 0x1594C, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x63555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x53A8, symBinAddr: 0x15958, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x63569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x53EC, symBinAddr: 0x1599C, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x6357D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x5434, symBinAddr: 0x159E4, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63591, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5474, symBinAddr: 0x15A24, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x635A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x5484, symBinAddr: 0x15A34, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x635B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x54D4, symBinAddr: 0x15A84, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x635CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5580, symBinAddr: 0x15B30, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x635E1, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5694, symBinAddr: 0x15C44, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x635F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x56C0, symBinAddr: 0x15C70, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x63609, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x575C, symBinAddr: 0x15D0C, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x6361D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x57A4, symBinAddr: 0x15D54, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x63631, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x5800, symBinAddr: 0x15DB0, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x63645, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x5810, symBinAddr: 0x15DC0, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x63659, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5868, symBinAddr: 0x15E18, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x6366D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x592C, symBinAddr: 0x15EDC, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63681, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5A70, symBinAddr: 0x16020, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63695, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x5AA4, symBinAddr: 0x16054, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x636A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x5B58, symBinAddr: 0x16108, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x636BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5BA0, symBinAddr: 0x16150, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x636D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x5C04, symBinAddr: 0x161B4, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x636E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5C14, symBinAddr: 0x161C4, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x636F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x5C18, symBinAddr: 0x161C8, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x6370D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5C5C, symBinAddr: 0x1620C, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x63721, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5C60, symBinAddr: 0x16210, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x63735, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5CA4, symBinAddr: 0x16254, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x63749, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5CA8, symBinAddr: 0x16258, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x6375D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x6C14, symBinAddr: 0x171C4, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63771, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x6C58, symBinAddr: 0x17208, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63785, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6C9C, symBinAddr: 0x1724C, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x63799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x74F0, symBinAddr: 0x17AA0, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x637AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7794, symBinAddr: 0x17D44, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x637C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x82F0, symBinAddr: 0x188A0, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x637D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8334, symBinAddr: 0x188E4, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x637E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8650, symBinAddr: 0x18C00, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x637FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8694, symBinAddr: 0x18C44, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x86D8, symBinAddr: 0x18C88, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63825, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x8780, symBinAddr: 0x18D30, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x63839, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x87C4, symBinAddr: 0x18D74, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x6384D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8854, symBinAddr: 0x18E04, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63861, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8910, symBinAddr: 0x18EC0, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63875, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8914, symBinAddr: 0x18EC4, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x63889, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8924, symBinAddr: 0x18ED4, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x6389D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x89B4, symBinAddr: 0x18F64, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x638B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A70, symBinAddr: 0x19020, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x638C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A74, symBinAddr: 0x19024, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x638D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8A84, symBinAddr: 0x19034, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x638ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8B14, symBinAddr: 0x190C4, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x8BD0, symBinAddr: 0x19180, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63915, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8BD8, symBinAddr: 0x19188, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x63929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x8BDC, symBinAddr: 0x1918C, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x6393D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8BE8, symBinAddr: 0x19198, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63951, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8BF8, symBinAddr: 0x191A8, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8C88, symBinAddr: 0x19238, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x63979, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8D44, symBinAddr: 0x192F4, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x6398D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8D48, symBinAddr: 0x192F8, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x639A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8D60, symBinAddr: 0x19310, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x639B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8D64, symBinAddr: 0x19314, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x639C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8D74, symBinAddr: 0x19324, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x639DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8DAC, symBinAddr: 0x1935C, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x639F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8E20, symBinAddr: 0x193D0, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63A05, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8EE4, symBinAddr: 0x19494, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x63A19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x8F08, symBinAddr: 0x194B8, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63A2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x8F7C, symBinAddr: 0x1952C, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63A41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x8FC4, symBinAddr: 0x19574, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63A55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x9018, symBinAddr: 0x195C8, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x63A69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x9028, symBinAddr: 0x195D8, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63A7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x9060, symBinAddr: 0x19610, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63A91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x90C4, symBinAddr: 0x19674, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x63AA5, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9170, symBinAddr: 0x19720, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x63AB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x9184, symBinAddr: 0x19734, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x63ACD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x91E8, symBinAddr: 0x19798, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x63AE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9230, symBinAddr: 0x197E0, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x63AF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x9280, symBinAddr: 0x19830, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x63B09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x9290, symBinAddr: 0x19840, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63B1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x92C8, symBinAddr: 0x19878, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63B31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9334, symBinAddr: 0x198E4, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63B45, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x93E8, symBinAddr: 0x19998, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x63B59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x940C, symBinAddr: 0x199BC, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63B6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9478, symBinAddr: 0x19A28, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63B81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x94C0, symBinAddr: 0x19A70, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63B95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9510, symBinAddr: 0x19AC0, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x63BA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9520, symBinAddr: 0x19AD0, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x63BBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9524, symBinAddr: 0x19AD4, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x63BD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9568, symBinAddr: 0x19B18, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x63BE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x956C, symBinAddr: 0x19B1C, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x63BF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x95B0, symBinAddr: 0x19B60, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63C0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x95B4, symBinAddr: 0x19B64, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63C21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x95F8, symBinAddr: 0x19BA8, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63C35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x95FC, symBinAddr: 0x19BAC, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x63C49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9640, symBinAddr: 0x19BF0, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63C5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9644, symBinAddr: 0x19BF4, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63C71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9688, symBinAddr: 0x19C38, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63C85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x968C, symBinAddr: 0x19C3C, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x63C99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96D0, symBinAddr: 0x19C80, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x63CAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96D4, symBinAddr: 0x19C84, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x63CC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9718, symBinAddr: 0x19CC8, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x63CD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x971C, symBinAddr: 0x19CCC, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x63CE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9760, symBinAddr: 0x19D10, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63CFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9764, symBinAddr: 0x19D14, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63D11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97A8, symBinAddr: 0x19D58, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63D25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97AC, symBinAddr: 0x19D5C, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x63D39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x97F0, symBinAddr: 0x19DA0, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63D4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x97F4, symBinAddr: 0x19DA4, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63D61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9838, symBinAddr: 0x19DE8, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63D75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x983C, symBinAddr: 0x19DEC, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x63D89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9880, symBinAddr: 0x19E30, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x63D9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9884, symBinAddr: 0x19E34, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x63DB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98C8, symBinAddr: 0x19E78, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x63DC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98CC, symBinAddr: 0x19E7C, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x63DD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9910, symBinAddr: 0x19EC0, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x63DED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9914, symBinAddr: 0x19EC4, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63E01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9958, symBinAddr: 0x19F08, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63E15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x999C, symBinAddr: 0x19F4C, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x63E29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x99E0, symBinAddr: 0x19F90, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63E3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9A24, symBinAddr: 0x19FD4, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63E51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9AB4, symBinAddr: 0x1A064, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63E65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9B70, symBinAddr: 0x1A120, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x63E79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9B74, symBinAddr: 0x1A124, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63E8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9CD8, symBinAddr: 0x1A288, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x63EA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9CDC, symBinAddr: 0x1A28C, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x63EB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9CEC, symBinAddr: 0x1A29C, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x63EC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9D7C, symBinAddr: 0x1A32C, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x63EDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9E38, symBinAddr: 0x1A3E8, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x63EF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9E3C, symBinAddr: 0x1A3EC, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63F05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9E4C, symBinAddr: 0x1A3FC, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63F19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9E50, symBinAddr: 0x1A400, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63F2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9E94, symBinAddr: 0x1A444, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9E98, symBinAddr: 0x1A448, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63F55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9EDC, symBinAddr: 0x1A48C, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63F69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9EE0, symBinAddr: 0x1A490, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63F7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9F24, symBinAddr: 0x1A4D4, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63F91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9F28, symBinAddr: 0x1A4D8, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63FA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9F6C, symBinAddr: 0x1A51C, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63FB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9F70, symBinAddr: 0x1A520, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63FCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9FB4, symBinAddr: 0x1A564, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63FE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9FB8, symBinAddr: 0x1A568, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63FF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9FFC, symBinAddr: 0x1A5AC, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x64009, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA000, symBinAddr: 0x1A5B0, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x6401D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA044, symBinAddr: 0x1A5F4, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x64031, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA048, symBinAddr: 0x1A5F8, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x64045, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA08C, symBinAddr: 0x1A63C, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x64059, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x1A640, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x640B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0x1077C, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x640CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0x107A4, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x6413A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1454, symBinAddr: 0x11A48, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x641FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1530, symBinAddr: 0x11B24, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x64216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1558, symBinAddr: 0x11B4C, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x64238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16C0, symBinAddr: 0x11CB4, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x64254, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0x11CDC, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x64276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1834, symBinAddr: 0x11E28, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x64292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0x11E50, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x642B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x11F80, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x642D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19B4, symBinAddr: 0x11FA8, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x642F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B70, symBinAddr: 0x12164, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x6430E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0x1218C, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x64361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1CF8, symBinAddr: 0x122EC, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x64403, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D90, symBinAddr: 0x12384, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x6441F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DB8, symBinAddr: 0x123AC, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x64441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EDC, symBinAddr: 0x124D0, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x6445D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1F04, symBinAddr: 0x124F8, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x6447F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x12668, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x6449B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x209C, symBinAddr: 0x12690, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x644BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x222C, symBinAddr: 0x12820, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x644D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2254, symBinAddr: 0x12848, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x645C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x10624, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x64643, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0x107CC, symSize: 0x40C } + - { offsetInCU: 0x31DB, offset: 0x64674, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5E4, symBinAddr: 0x10BD8, symSize: 0x100 } + - { offsetInCU: 0x320C, offset: 0x646A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6E4, symBinAddr: 0x10CD8, symSize: 0x17C } + - { offsetInCU: 0x323D, offset: 0x646D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x860, symBinAddr: 0x10E54, symSize: 0x154 } + - { offsetInCU: 0x326E, offset: 0x64707, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9B4, symBinAddr: 0x10FA8, symSize: 0x1A4 } + - { offsetInCU: 0x329F, offset: 0x64738, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB58, symBinAddr: 0x1114C, symSize: 0x1F4 } + - { offsetInCU: 0x32D0, offset: 0x64769, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD4C, symBinAddr: 0x11340, symSize: 0x118 } + - { offsetInCU: 0x3301, offset: 0x6479A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE64, symBinAddr: 0x11458, symSize: 0x1CC } + - { offsetInCU: 0x3332, offset: 0x647CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1030, symBinAddr: 0x11624, symSize: 0x1EC } + - { offsetInCU: 0x3363, offset: 0x647FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x121C, symBinAddr: 0x11810, symSize: 0x12C } + - { offsetInCU: 0x27, offset: 0x64A38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A718, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64DFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x1AA2C, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64E12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x1AA5C, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x64E26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x1AA9C, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x64E3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x1AB40, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64E4E, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1AC44, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x1AC70, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x64E76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x1AD0C, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x64E8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1AD54, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x64E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1ADB4, symSize: 0x10 } + - { offsetInCU: 0x60E, offset: 0x6501F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A718, symSize: 0x38 } + - { offsetInCU: 0x626, offset: 0x65037, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A718, symSize: 0x38 } + - { offsetInCU: 0x64D, offset: 0x6505E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x1A750, symSize: 0x3C } + - { offsetInCU: 0x667, offset: 0x65078, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x1A78C, symSize: 0x54 } + - { offsetInCU: 0x69C, offset: 0x650AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x1A7E0, symSize: 0x10 } + - { offsetInCU: 0x6B0, offset: 0x650C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x1A7F0, symSize: 0x4 } + - { offsetInCU: 0x6D1, offset: 0x650E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0xDC, symBinAddr: 0x1A7F4, symSize: 0x14 } + - { offsetInCU: 0x6E5, offset: 0x650F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0xF0, symBinAddr: 0x1A808, symSize: 0x14 } + - { offsetInCU: 0x715, offset: 0x65126, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x104, symBinAddr: 0x1A81C, symSize: 0x10 } + - { offsetInCU: 0x739, offset: 0x6514A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x1A82C, symSize: 0x4 } + - { offsetInCU: 0x75A, offset: 0x6516B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x1A830, symSize: 0x2C } + - { offsetInCU: 0x76E, offset: 0x6517F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x1A85C, symSize: 0x34 } + - { offsetInCU: 0x7A3, offset: 0x651B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1A890, symSize: 0x10 } + - { offsetInCU: 0x7C7, offset: 0x651D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1A8A0, symSize: 0x4 } + - { offsetInCU: 0x7E8, offset: 0x651F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1A8A4, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x6520D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x1A8AC, symSize: 0x8 } + - { offsetInCU: 0x82C, offset: 0x6523D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1A8B4, symSize: 0x10 } + - { offsetInCU: 0x850, offset: 0x65261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1A8C4, symSize: 0x4 } + - { offsetInCU: 0x871, offset: 0x65282, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x1A8C8, symSize: 0x8 } + - { offsetInCU: 0x885, offset: 0x65296, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1A8D0, symSize: 0x8 } + - { offsetInCU: 0x8B5, offset: 0x652C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x1A8D8, symSize: 0x10 } + - { offsetInCU: 0x8D9, offset: 0x652EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x1A8E8, symSize: 0x4 } + - { offsetInCU: 0x8FA, offset: 0x6530B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x1A8EC, symSize: 0x2C } + - { offsetInCU: 0x90E, offset: 0x6531F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x1A918, symSize: 0x34 } + - { offsetInCU: 0x943, offset: 0x65354, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x1A94C, symSize: 0x10 } + - { offsetInCU: 0x967, offset: 0x65378, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x1A95C, symSize: 0x4 } + - { offsetInCU: 0x988, offset: 0x65399, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x1A960, symSize: 0x2C } + - { offsetInCU: 0x99C, offset: 0x653AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x1A98C, symSize: 0x34 } + - { offsetInCU: 0x9D1, offset: 0x653E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1A9C0, symSize: 0x10 } + - { offsetInCU: 0x9F5, offset: 0x65406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1A9D0, symSize: 0x4 } + - { offsetInCU: 0xA16, offset: 0x65427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1A9D4, symSize: 0xC } + - { offsetInCU: 0xA2A, offset: 0x6543B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1A9E0, symSize: 0xC } + - { offsetInCU: 0xA5E, offset: 0x6546F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x1A9EC, symSize: 0x10 } + - { offsetInCU: 0xA82, offset: 0x65493, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x1A9FC, symSize: 0x4 } + - { offsetInCU: 0xAA3, offset: 0x654B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1AA00, symSize: 0xC } + - { offsetInCU: 0xAB7, offset: 0x654C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x1AA0C, symSize: 0xC } + - { offsetInCU: 0xAEB, offset: 0x654FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x1AA18, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x65520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x1AA28, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x655E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x598, symBinAddr: 0x1B35C, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x65614, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5C4, symBinAddr: 0x1B388, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x65630, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x1B5C4, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x656A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x7AC, symBinAddr: 0x1B570, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x656DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7D8, symBinAddr: 0x1B59C, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x656F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x864, symBinAddr: 0x1B628, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x65736, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C8, symBinAddr: 0x1B68C, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x65766, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9DC, symBinAddr: 0x1B790, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x6577A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA6C, symBinAddr: 0x1B820, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x6578E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB28, symBinAddr: 0x1B8DC, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x657A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB2C, symBinAddr: 0x1B8E0, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x657B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB3C, symBinAddr: 0x1B8F0, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x657CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBCC, symBinAddr: 0x1B980, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x657DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC88, symBinAddr: 0x1BA3C, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x657F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC90, symBinAddr: 0x1BA44, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x65806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC94, symBinAddr: 0x1BA48, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x6581A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC9C, symBinAddr: 0x1BA50, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x6582E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCAC, symBinAddr: 0x1BA60, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x65842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x1BA64, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x65856, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF4, symBinAddr: 0x1BAA8, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x6586A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF8, symBinAddr: 0x1BAAC, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x65974, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1ADC4, symSize: 0x2AC } + - { offsetInCU: 0x433, offset: 0x65997, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1B070, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x65AC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x1BC2C, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x65B05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x1BC4C, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x65B59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x1BCD8, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65B80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x1BCDC, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x65BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1BCE0, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x65BCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1BD54, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x65C0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x1BD58, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x1BDD8, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x65CCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x1BE3C, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65D1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x1BECC, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x65D7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x1BF4C, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x65DAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1BFB0, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x65DC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x1BFB4, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x65EB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1C708, symSize: 0x374 } + - { offsetInCU: 0x7D5, offset: 0x661C3, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1050, symBinAddr: 0x1CB48, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x661D7, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1060, symBinAddr: 0x1CB58, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x661EB, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10F4, symBinAddr: 0x1CB68, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x661FF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x113C, symBinAddr: 0x1CBB0, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x66213, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1150, symBinAddr: 0x1CBC4, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x66227, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1194, symBinAddr: 0x1CC08, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x6623B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11D4, symBinAddr: 0x1CC48, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x6624F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1398, symBinAddr: 0x1CE0C, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x66263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13C8, symBinAddr: 0x1CE3C, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x66277, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1584, symBinAddr: 0x1CFF8, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x66481, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1BAF8, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x664AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1BC0C, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x665DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x1BFB8, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x666B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1C694, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x6674A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF84, symBinAddr: 0x1CA7C, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x667BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFEC, symBinAddr: 0x1CAE4, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x6686A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2BF0, symBinAddr: 0x83C00, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x66884, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2BF8, symBinAddr: 0x83C08, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x66892, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1D038, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x668CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1D06C, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x66904, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1D0AC, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x66974, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1D18C, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x66994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1D18C, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x66A0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1D2F4, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x66A2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1D2F4, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x66A52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x1D350, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x66ACC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1D3BC, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x66AEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1D3BC, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x66E07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1D28, symBinAddr: 0x1ED50, symSize: 0x190 } + - { offsetInCU: 0x6B4, offset: 0x66ECF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x1D440, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66F05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x1D4C8, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x1D5C0, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x1D620, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x1D670, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66FA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x1D6F8, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66FE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x1D92C, symSize: 0x5C } + - { offsetInCU: 0x98E, offset: 0x671A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x17CC, symBinAddr: 0x1E7F4, symSize: 0x140 } + - { offsetInCU: 0xA8A, offset: 0x672A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x190C, symBinAddr: 0x1E934, symSize: 0x18 } + - { offsetInCU: 0xA9E, offset: 0x672B9, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A60, symBinAddr: 0x1EA88, symSize: 0x2C } + - { offsetInCU: 0xAB6, offset: 0x672D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1CC4, symBinAddr: 0x1ECEC, symSize: 0x44 } + - { offsetInCU: 0xACA, offset: 0x672E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1D08, symBinAddr: 0x1ED30, symSize: 0x20 } + - { offsetInCU: 0xADE, offset: 0x672F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1EB8, symBinAddr: 0x1EEE0, symSize: 0x20 } + - { offsetInCU: 0xAF2, offset: 0x6730D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1ED8, symBinAddr: 0x1EF00, symSize: 0x4 } + - { offsetInCU: 0xB06, offset: 0x67321, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1EDC, symBinAddr: 0x1EF04, symSize: 0x44 } + - { offsetInCU: 0xB1A, offset: 0x67335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1F20, symBinAddr: 0x1EF48, symSize: 0x4 } + - { offsetInCU: 0xB2E, offset: 0x67349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1F24, symBinAddr: 0x1EF4C, symSize: 0x44 } + - { offsetInCU: 0xB42, offset: 0x6735D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x2048, symBinAddr: 0x1F070, symSize: 0x18 } + - { offsetInCU: 0xB56, offset: 0x67371, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x2060, symBinAddr: 0x1F088, symSize: 0x14 } + - { offsetInCU: 0xB6A, offset: 0x67385, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x2074, symBinAddr: 0x1F09C, symSize: 0x18 } + - { offsetInCU: 0xB7E, offset: 0x67399, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x20EC, symBinAddr: 0x1F114, symSize: 0x6C } + - { offsetInCU: 0xB92, offset: 0x673AD, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2158, symBinAddr: 0x1F180, symSize: 0x14 } + - { offsetInCU: 0xBA6, offset: 0x673C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x216C, symBinAddr: 0x1F194, symSize: 0x50 } + - { offsetInCU: 0xBBA, offset: 0x673D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x21BC, symBinAddr: 0x1F1E4, symSize: 0x48 } + - { offsetInCU: 0xBCE, offset: 0x673E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x2204, symBinAddr: 0x1F22C, symSize: 0x48 } + - { offsetInCU: 0xBE2, offset: 0x673FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x224C, symBinAddr: 0x1F274, symSize: 0x8 } + - { offsetInCU: 0xBF6, offset: 0x67411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2254, symBinAddr: 0x1F27C, symSize: 0x4 } + - { offsetInCU: 0xC0A, offset: 0x67425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2258, symBinAddr: 0x1F280, symSize: 0x8 } + - { offsetInCU: 0xC1E, offset: 0x67439, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x1F288, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x6744D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2348, symBinAddr: 0x1F360, symSize: 0x90 } + - { offsetInCU: 0xC46, offset: 0x67461, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23D8, symBinAddr: 0x1F3F0, symSize: 0xBC } + - { offsetInCU: 0xC5A, offset: 0x67475, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2494, symBinAddr: 0x1F4AC, symSize: 0x4 } + - { offsetInCU: 0xC6E, offset: 0x67489, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2498, symBinAddr: 0x1F4B0, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x6749D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x24A8, symBinAddr: 0x1F4C0, symSize: 0x90 } + - { offsetInCU: 0xC96, offset: 0x674B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2538, symBinAddr: 0x1F550, symSize: 0xBC } + - { offsetInCU: 0xCAA, offset: 0x674C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x25F4, symBinAddr: 0x1F60C, symSize: 0x8 } + - { offsetInCU: 0xCBE, offset: 0x674D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x25FC, symBinAddr: 0x1F614, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x674ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2600, symBinAddr: 0x1F618, symSize: 0x8 } + - { offsetInCU: 0xCE6, offset: 0x67501, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2608, symBinAddr: 0x1F620, symSize: 0x10 } + - { offsetInCU: 0xD05, offset: 0x67520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2640, symBinAddr: 0x1F658, symSize: 0x24 } + - { offsetInCU: 0xD2E, offset: 0x67549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x274C, symBinAddr: 0x1F764, symSize: 0x8 } + - { offsetInCU: 0xD42, offset: 0x6755D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2754, symBinAddr: 0x1F76C, symSize: 0x10 } + - { offsetInCU: 0xD56, offset: 0x67571, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2764, symBinAddr: 0x1F77C, symSize: 0x8 } + - { offsetInCU: 0xD6A, offset: 0x67585, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x27F0, symBinAddr: 0x1F784, symSize: 0x3C } + - { offsetInCU: 0xDEC, offset: 0x67607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1D028, symSize: 0x4 } + - { offsetInCU: 0xE08, offset: 0x67623, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1D02C, symSize: 0x4 } + - { offsetInCU: 0xE24, offset: 0x6763F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1D030, symSize: 0x4 } + - { offsetInCU: 0xE40, offset: 0x6765B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1D034, symSize: 0x4 } + - { offsetInCU: 0x10B2, offset: 0x678CD, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1D0E0, symSize: 0x40 } + - { offsetInCU: 0x10E0, offset: 0x678FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1D120, symSize: 0x60 } + - { offsetInCU: 0x1118, offset: 0x67933, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x1D1EC, symSize: 0x84 } + - { offsetInCU: 0x113F, offset: 0x6795A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x1D270, symSize: 0x14 } + - { offsetInCU: 0x1186, offset: 0x679A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x1D284, symSize: 0x28 } + - { offsetInCU: 0x128D, offset: 0x67AA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x1D574, symSize: 0x4C } + - { offsetInCU: 0x12AC, offset: 0x67AC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x1D5D0, symSize: 0x50 } + - { offsetInCU: 0x12D5, offset: 0x67AF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x1D630, symSize: 0x3C } + - { offsetInCU: 0x12FA, offset: 0x67B15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x1D66C, symSize: 0x4 } + - { offsetInCU: 0x134F, offset: 0x67B6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x1D7A4, symSize: 0x4C } + - { offsetInCU: 0x136E, offset: 0x67B89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x1D7F0, symSize: 0x50 } + - { offsetInCU: 0x1397, offset: 0x67BB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x1D840, symSize: 0x3C } + - { offsetInCU: 0x13BC, offset: 0x67BD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x1D87C, symSize: 0x8 } + - { offsetInCU: 0x13DD, offset: 0x67BF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x1D884, symSize: 0x30 } + - { offsetInCU: 0x13FA, offset: 0x67C15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x1D8B4, symSize: 0x3C } + - { offsetInCU: 0x141F, offset: 0x67C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x1D8F0, symSize: 0x3C } + - { offsetInCU: 0x1469, offset: 0x67C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x960, symBinAddr: 0x1D988, symSize: 0x30 } + - { offsetInCU: 0x1486, offset: 0x67CA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x990, symBinAddr: 0x1D9B8, symSize: 0x44 } + - { offsetInCU: 0x14AF, offset: 0x67CCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x9D4, symBinAddr: 0x1D9FC, symSize: 0x3C } + - { offsetInCU: 0x14DB, offset: 0x67CF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x1DA38, symSize: 0xC8 } + - { offsetInCU: 0x1552, offset: 0x67D6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x1DB00, symSize: 0xC0 } + - { offsetInCU: 0x15E1, offset: 0x67DFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB98, symBinAddr: 0x1DBC0, symSize: 0xC0 } + - { offsetInCU: 0x16BA, offset: 0x67ED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xC58, symBinAddr: 0x1DC80, symSize: 0x204 } + - { offsetInCU: 0x1723, offset: 0x67F3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1924, symBinAddr: 0x1E94C, symSize: 0x13C } + - { offsetInCU: 0x17D1, offset: 0x67FEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xE5C, symBinAddr: 0x1DE84, symSize: 0x70 } + - { offsetInCU: 0x17FB, offset: 0x68016, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xECC, symBinAddr: 0x1DEF4, symSize: 0x30 } + - { offsetInCU: 0x181D, offset: 0x68038, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xEFC, symBinAddr: 0x1DF24, symSize: 0x178 } + - { offsetInCU: 0x18C2, offset: 0x680DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0x1074, symBinAddr: 0x1E09C, symSize: 0x14 } + - { offsetInCU: 0x190F, offset: 0x6812A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0x10F8, symBinAddr: 0x1E120, symSize: 0x3C } + - { offsetInCU: 0x1995, offset: 0x681B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0x1088, symBinAddr: 0x1E0B0, symSize: 0x70 } + - { offsetInCU: 0x1A29, offset: 0x68244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0x1134, symBinAddr: 0x1E15C, symSize: 0x78 } + - { offsetInCU: 0x1B0D, offset: 0x68328, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0x11AC, symBinAddr: 0x1E1D4, symSize: 0x224 } + - { offsetInCU: 0x1CF9, offset: 0x68514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x13D0, symBinAddr: 0x1E3F8, symSize: 0xC } + - { offsetInCU: 0x1D50, offset: 0x6856B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1E404, symSize: 0x4 } + - { offsetInCU: 0x1D6C, offset: 0x68587, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1E404, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x685A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1E404, symSize: 0x4 } + - { offsetInCU: 0x1D9E, offset: 0x685B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13E0, symBinAddr: 0x1E408, symSize: 0x4 } + - { offsetInCU: 0x1DB6, offset: 0x685D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13E4, symBinAddr: 0x1E40C, symSize: 0xB8 } + - { offsetInCU: 0x1E56, offset: 0x68671, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14DC, symBinAddr: 0x1E504, symSize: 0x4 } + - { offsetInCU: 0x1E6E, offset: 0x68689, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26AC, symBinAddr: 0x1F6C4, symSize: 0x7C } + - { offsetInCU: 0x1F45, offset: 0x68760, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x149C, symBinAddr: 0x1E4C4, symSize: 0x40 } + - { offsetInCU: 0x1F7A, offset: 0x68795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14EC, symBinAddr: 0x1E514, symSize: 0x98 } + - { offsetInCU: 0x2021, offset: 0x6883C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x1634, symBinAddr: 0x1E65C, symSize: 0x198 } + - { offsetInCU: 0x251E, offset: 0x68D39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x1A8C, symBinAddr: 0x1EAB4, symSize: 0x24 } + - { offsetInCU: 0x2561, offset: 0x68D7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1AB0, symBinAddr: 0x1EAD8, symSize: 0x214 } + - { offsetInCU: 0x43, offset: 0x68F34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1F8D8, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68F48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F914, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68F5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F998, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68F77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1FAC0, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68FA0, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1FAF0, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68FB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1FB0C, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68FC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1FBA8, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68FDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1FC0C, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68FF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1FC68, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x69004, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1FC78, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x69018, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1FCA8, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x6902C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1FCD0, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x69040, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1FD2C, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x69054, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1FDB0, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x69068, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1FE14, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x6907C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1FE70, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x69090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1FED0, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x690DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x202F8, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x69134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA28, symBinAddr: 0x20300, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x69217, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA68, symBinAddr: 0x20340, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x69288, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAC8, symBinAddr: 0x203A0, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x692D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD4, symBinAddr: 0x203AC, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x69331, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB50, symBinAddr: 0x20428, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x6934D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB5C, symBinAddr: 0x20434, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x6938A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBB8, symBinAddr: 0x20490, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x693C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC04, symBinAddr: 0x204DC, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x693E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC8, symBinAddr: 0x208A0, symSize: 0x144 } + - { offsetInCU: 0x580, offset: 0x69471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC44, symBinAddr: 0x2051C, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x694CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC5C, symBinAddr: 0x20534, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x69546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC88, symBinAddr: 0x20560, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x6957B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x205A8, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x695AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF4, symBinAddr: 0x205CC, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x695C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x205D8, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x695E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x125C, symBinAddr: 0x20AB0, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x696A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD5C, symBinAddr: 0x20634, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x696DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDA8, symBinAddr: 0x20680, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x696FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13B0, symBinAddr: 0x20C04, symSize: 0x254 } + - { offsetInCU: 0x87C, offset: 0x6976D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE74, symBinAddr: 0x2074C, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x697A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEC4, symBinAddr: 0x2079C, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x697D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xEE8, symBinAddr: 0x207C0, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x697EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x207CC, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x6980B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x21524, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x698BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF50, symBinAddr: 0x20828, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x698F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF90, symBinAddr: 0x20868, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x69915, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EA4, symBinAddr: 0x2168C, symSize: 0x2A8 } + - { offsetInCU: 0xA81, offset: 0x69972, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1170, symBinAddr: 0x209E4, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x69986, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x11D4, symBinAddr: 0x20A28, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x6999A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1218, symBinAddr: 0x20A6C, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x699AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x20E58, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x699C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x20E9C, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x699D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x20F8C, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x699EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x20FD8, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x699FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x20FE0, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x69A12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x20FE4, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x69A26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x20FEC, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x69A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x20FFC, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x69A4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x2104C, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69A62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x210D8, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x69A76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x210E0, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69A8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x210E4, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x69A9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x210E8, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69AB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x210F8, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x69AC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x21130, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69ADA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x21194, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x69AEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x21240, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x69B02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x212A4, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x69B16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x21300, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x69B2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x21364, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x69B3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x21374, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69B52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x21378, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x69B66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x213BC, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69B7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x213C0, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x69B8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x21404, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69BA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x21408, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x69BB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x2144C, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69BCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x21450, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69BDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x21494, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x69BF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x21498, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x69C06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x214DC, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x69C1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x214E0, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x69C2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x21934, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x69C42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x21ACC, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69C56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x21AD0, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69C6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x21AE0, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69C7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x21AE4, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69C92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x21B28, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69CA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x21B2C, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69CBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x21B70, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69CCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x21B74, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x69D2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA8C, symBinAddr: 0x20364, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x69DED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB68, symBinAddr: 0x20440, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x69E09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB90, symBinAddr: 0x20468, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x69E2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD0C, symBinAddr: 0x205E4, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x69E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD34, symBinAddr: 0x2060C, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69E69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF00, symBinAddr: 0x207D8, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69E85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF28, symBinAddr: 0x20800, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1FEE0, symSize: 0x10C } + - { offsetInCU: 0x10B4, offset: 0x69FA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x714, symBinAddr: 0x1FFEC, symSize: 0x1B8 } + - { offsetInCU: 0x10E5, offset: 0x69FD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8CC, symBinAddr: 0x201A4, symSize: 0x154 } + - { offsetInCU: 0xA6, offset: 0x6A191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x21E5C, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x6A1B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x21E5C, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x6A1D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x2D4, symBinAddr: 0x21E74, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x6A2BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x318, symBinAddr: 0x21EB8, symSize: 0x28 } + - { offsetInCU: 0x4BB, offset: 0x6A5A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x380, symBinAddr: 0x21F20, symSize: 0x4 } + - { offsetInCU: 0x4CF, offset: 0x6A5BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x384, symBinAddr: 0x21F24, symSize: 0x44 } + - { offsetInCU: 0x4E3, offset: 0x6A5CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x3C8, symBinAddr: 0x21F68, symSize: 0x30 } + - { offsetInCU: 0x4F7, offset: 0x6A5E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x3F8, symBinAddr: 0x21F98, symSize: 0x7C } + - { offsetInCU: 0x50B, offset: 0x6A5F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x474, symBinAddr: 0x22014, symSize: 0x184 } + - { offsetInCU: 0x51F, offset: 0x6A60A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0x5F8, symBinAddr: 0x22198, symSize: 0x394 } + - { offsetInCU: 0x53A, offset: 0x6A625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0x98C, symBinAddr: 0x2252C, symSize: 0x30 } + - { offsetInCU: 0x563, offset: 0x6A64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0x9BC, symBinAddr: 0x2255C, symSize: 0x2C } + - { offsetInCU: 0x577, offset: 0x6A662, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0x9E8, symBinAddr: 0x22588, symSize: 0x34 } + - { offsetInCU: 0x58B, offset: 0x6A676, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xA1C, symBinAddr: 0x225BC, symSize: 0x44 } + - { offsetInCU: 0x59F, offset: 0x6A68A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xA60, symBinAddr: 0x22600, symSize: 0x1B4 } + - { offsetInCU: 0x5B3, offset: 0x6A69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0xC14, symBinAddr: 0x227B4, symSize: 0x48 } + - { offsetInCU: 0x5C7, offset: 0x6A6B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0xC5C, symBinAddr: 0x227FC, symSize: 0x78 } + - { offsetInCU: 0x5DB, offset: 0x6A6C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0xCD4, symBinAddr: 0x22874, symSize: 0x10 } + - { offsetInCU: 0x5EF, offset: 0x6A6DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0xCE8, symBinAddr: 0x22888, symSize: 0x8 } + - { offsetInCU: 0x603, offset: 0x6A6EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0xD28, symBinAddr: 0x228C8, symSize: 0x54 } + - { offsetInCU: 0x617, offset: 0x6A702, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xD7C, symBinAddr: 0x2291C, symSize: 0x14 } + - { offsetInCU: 0x62B, offset: 0x6A716, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0xD90, symBinAddr: 0x22930, symSize: 0x3C } + - { offsetInCU: 0x63F, offset: 0x6A72A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0xDCC, symBinAddr: 0x2296C, symSize: 0x48 } + - { offsetInCU: 0x653, offset: 0x6A73E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0xE14, symBinAddr: 0x229B4, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x6A752, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0xE54, symBinAddr: 0x229F4, symSize: 0x10 } + - { offsetInCU: 0x67B, offset: 0x6A766, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0xE64, symBinAddr: 0x22A04, symSize: 0x38 } + - { offsetInCU: 0x68F, offset: 0x6A77A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0xE9C, symBinAddr: 0x22A3C, symSize: 0x6C } + - { offsetInCU: 0x6A3, offset: 0x6A78E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x22AA8, symSize: 0xDC } + - { offsetInCU: 0x6B7, offset: 0x6A7A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0xFE4, symBinAddr: 0x22B84, symSize: 0x1C } + - { offsetInCU: 0x6CB, offset: 0x6A7B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1000, symBinAddr: 0x22BA0, symSize: 0x74 } + - { offsetInCU: 0x6DF, offset: 0x6A7CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1074, symBinAddr: 0x22C14, symSize: 0x5C } + - { offsetInCU: 0x6F3, offset: 0x6A7DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x10D0, symBinAddr: 0x22C70, symSize: 0x64 } + - { offsetInCU: 0x707, offset: 0x6A7F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1134, symBinAddr: 0x22CD4, symSize: 0x10 } + - { offsetInCU: 0x71B, offset: 0x6A806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1144, symBinAddr: 0x22CE4, symSize: 0x28 } + - { offsetInCU: 0x72F, offset: 0x6A81A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x116C, symBinAddr: 0x22D0C, symSize: 0x3C } + - { offsetInCU: 0x743, offset: 0x6A82E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x11A8, symBinAddr: 0x22D48, symSize: 0x6C } + - { offsetInCU: 0x757, offset: 0x6A842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1220, symBinAddr: 0x22DB4, symSize: 0x44 } + - { offsetInCU: 0x76B, offset: 0x6A856, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1264, symBinAddr: 0x22DF8, symSize: 0x48 } + - { offsetInCU: 0x77F, offset: 0x6A86A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x12AC, symBinAddr: 0x22E40, symSize: 0x40 } + - { offsetInCU: 0x793, offset: 0x6A87E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x12EC, symBinAddr: 0x22E80, symSize: 0x10 } + - { offsetInCU: 0x7A7, offset: 0x6A892, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1300, symBinAddr: 0x22E90, symSize: 0x54 } + - { offsetInCU: 0x7BB, offset: 0x6A8A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1354, symBinAddr: 0x22EE4, symSize: 0x44 } + - { offsetInCU: 0x7CF, offset: 0x6A8BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1398, symBinAddr: 0x22F28, symSize: 0x10 } + - { offsetInCU: 0x7E3, offset: 0x6A8CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x13B4, symBinAddr: 0x22F38, symSize: 0x90 } + - { offsetInCU: 0x7F7, offset: 0x6A8E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1444, symBinAddr: 0x22FC8, symSize: 0xBC } + - { offsetInCU: 0x80B, offset: 0x6A8F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1500, symBinAddr: 0x23084, symSize: 0x8 } + - { offsetInCU: 0x81F, offset: 0x6A90A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1508, symBinAddr: 0x2308C, symSize: 0x4 } + - { offsetInCU: 0x833, offset: 0x6A91E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x150C, symBinAddr: 0x23090, symSize: 0xC } + - { offsetInCU: 0x847, offset: 0x6A932, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1518, symBinAddr: 0x2309C, symSize: 0x10 } + - { offsetInCU: 0x8BE, offset: 0x6A9A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x340, symBinAddr: 0x21EE0, symSize: 0x40 } + - { offsetInCU: 0xA61, offset: 0x6AB4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x21BD0, symSize: 0x18 } + - { offsetInCU: 0xA9A, offset: 0x6AB85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x21BE8, symSize: 0x94 } + - { offsetInCU: 0xAFB, offset: 0x6ABE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xAC, symBinAddr: 0x21C7C, symSize: 0x2C } + - { offsetInCU: 0xB15, offset: 0x6AC00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0xD8, symBinAddr: 0x21CA8, symSize: 0x34 } + - { offsetInCU: 0xB4A, offset: 0x6AC35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x10C, symBinAddr: 0x21CDC, symSize: 0x10 } + - { offsetInCU: 0xB5E, offset: 0x6AC49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x11C, symBinAddr: 0x21CEC, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x6AC6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x120, symBinAddr: 0x21CF0, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x6AC7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x128, symBinAddr: 0x21CF8, symSize: 0x8 } + - { offsetInCU: 0xBC3, offset: 0x6ACAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x130, symBinAddr: 0x21D00, symSize: 0x10 } + - { offsetInCU: 0xBE7, offset: 0x6ACD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x21D10, symSize: 0x4 } + - { offsetInCU: 0xC08, offset: 0x6ACF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x144, symBinAddr: 0x21D14, symSize: 0x14 } + - { offsetInCU: 0xC1C, offset: 0x6AD07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x188, symBinAddr: 0x21D28, symSize: 0x14 } + - { offsetInCU: 0xC30, offset: 0x6AD1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x19C, symBinAddr: 0x21D3C, symSize: 0x2C } + - { offsetInCU: 0xC44, offset: 0x6AD2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x1C8, symBinAddr: 0x21D68, symSize: 0x2C } + - { offsetInCU: 0xC58, offset: 0x6AD43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x1F4, symBinAddr: 0x21D94, symSize: 0x8 } + - { offsetInCU: 0xC6C, offset: 0x6AD57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x1FC, symBinAddr: 0x21D9C, symSize: 0x8 } + - { offsetInCU: 0xC9E, offset: 0x6AD89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x204, symBinAddr: 0x21DA4, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x6AD9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x214, symBinAddr: 0x21DB4, symSize: 0x4 } + - { offsetInCU: 0xCD3, offset: 0x6ADBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x218, symBinAddr: 0x21DB8, symSize: 0x8 } + - { offsetInCU: 0xCE7, offset: 0x6ADD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x220, symBinAddr: 0x21DC0, symSize: 0x8 } + - { offsetInCU: 0xD19, offset: 0x6AE04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x228, symBinAddr: 0x21DC8, symSize: 0x10 } + - { offsetInCU: 0xD3D, offset: 0x6AE28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x238, symBinAddr: 0x21DD8, symSize: 0x4 } + - { offsetInCU: 0xD5E, offset: 0x6AE49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x23C, symBinAddr: 0x21DDC, symSize: 0x10 } + - { offsetInCU: 0xD82, offset: 0x6AE6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x24C, symBinAddr: 0x21DEC, symSize: 0x4 } + - { offsetInCU: 0xDB1, offset: 0x6AE9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x250, symBinAddr: 0x21DF0, symSize: 0x28 } + - { offsetInCU: 0xE3C, offset: 0x6AF27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x278, symBinAddr: 0x21E18, symSize: 0x44 } + - { offsetInCU: 0x943, offset: 0x6B991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x7234, symBinAddr: 0x2A2F0, symSize: 0x28 } + - { offsetInCU: 0x18F2, offset: 0x6C940, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14448, symBinAddr: 0x37504, symSize: 0x90 } + - { offsetInCU: 0x198A, offset: 0x6C9D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x153AC, symBinAddr: 0x38468, symSize: 0x44 } + - { offsetInCU: 0x19A6, offset: 0x6C9F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x153F0, symBinAddr: 0x384AC, symSize: 0x150 } + - { offsetInCU: 0x1ABF, offset: 0x6CB0D, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x15540, symBinAddr: 0x385FC, symSize: 0x54 } + - { offsetInCU: 0x1B3D, offset: 0x6CB8B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x155E8, symBinAddr: 0x38650, symSize: 0x4C } + - { offsetInCU: 0x1BCB, offset: 0x6CC19, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x15634, symBinAddr: 0x3869C, symSize: 0x50 } + - { offsetInCU: 0x1C39, offset: 0x6CC87, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x15684, symBinAddr: 0x386EC, symSize: 0x64 } + - { offsetInCU: 0x22CF, offset: 0x6D31D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x164FC, symBinAddr: 0x39564, symSize: 0x84 } + - { offsetInCU: 0x2333, offset: 0x6D381, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x16580, symBinAddr: 0x395E8, symSize: 0x80 } + - { offsetInCU: 0x2400, offset: 0x6D44E, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1671C, symBinAddr: 0x39784, symSize: 0x40 } + - { offsetInCU: 0x25AE, offset: 0x6D5FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1718C, symBinAddr: 0x3A178, symSize: 0x1A0 } + - { offsetInCU: 0x2703, offset: 0x6D751, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1732C, symBinAddr: 0x3A318, symSize: 0x360 } + - { offsetInCU: 0x2E25, offset: 0x6DE73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x184BC, symBinAddr: 0x3B4A8, symSize: 0xBB8 } + - { offsetInCU: 0x3E91, offset: 0x6EEDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19074, symBinAddr: 0x3C060, symSize: 0x1C0 } + - { offsetInCU: 0x4012, offset: 0x6F060, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19234, symBinAddr: 0x3C220, symSize: 0x1A0 } + - { offsetInCU: 0x441A, offset: 0x6F468, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x19E30, symBinAddr: 0x3CE1C, symSize: 0x8 } + - { offsetInCU: 0x442E, offset: 0x6F47C, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x19F00, symBinAddr: 0x3CEEC, symSize: 0x10 } + - { offsetInCU: 0x4442, offset: 0x6F490, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x19F10, symBinAddr: 0x3CEFC, symSize: 0x14 } + - { offsetInCU: 0x4456, offset: 0x6F4A4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x19F24, symBinAddr: 0x3CF10, symSize: 0x44 } + - { offsetInCU: 0x446A, offset: 0x6F4B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x19F78, symBinAddr: 0x3CF54, symSize: 0x44 } + - { offsetInCU: 0x447E, offset: 0x6F4CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x19FBC, symBinAddr: 0x3CF98, symSize: 0x30C } + - { offsetInCU: 0x4492, offset: 0x6F4E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1A2C8, symBinAddr: 0x3D2A4, symSize: 0x240 } + - { offsetInCU: 0x44A6, offset: 0x6F4F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1A508, symBinAddr: 0x3D4E4, symSize: 0x70 } + - { offsetInCU: 0x44BA, offset: 0x6F508, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1A578, symBinAddr: 0x3D554, symSize: 0x34 } + - { offsetInCU: 0x44CE, offset: 0x6F51C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1A5AC, symBinAddr: 0x3D588, symSize: 0x174 } + - { offsetInCU: 0x44E2, offset: 0x6F530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1A720, symBinAddr: 0x3D6FC, symSize: 0xB4 } + - { offsetInCU: 0x4535, offset: 0x6F583, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1AFEC, symBinAddr: 0x3D7B0, symSize: 0xC4 } + - { offsetInCU: 0x45AB, offset: 0x6F5F9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B0B0, symBinAddr: 0x3D874, symSize: 0x78 } + - { offsetInCU: 0x45D8, offset: 0x6F626, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B128, symBinAddr: 0x3D8EC, symSize: 0x80 } + - { offsetInCU: 0x466C, offset: 0x6F6BA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B1A8, symBinAddr: 0x3D96C, symSize: 0x68 } + - { offsetInCU: 0x47D3, offset: 0x6F821, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B210, symBinAddr: 0x3D9D4, symSize: 0x640 } + - { offsetInCU: 0x4C97, offset: 0x6FCE5, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1B860, symBinAddr: 0x3E024, symSize: 0x4C } + - { offsetInCU: 0x4CAB, offset: 0x6FCF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1B954, symBinAddr: 0x3E090, symSize: 0x8 } + - { offsetInCU: 0x4CBF, offset: 0x6FD0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1B95C, symBinAddr: 0x3E098, symSize: 0x44 } + - { offsetInCU: 0x4CD3, offset: 0x6FD21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1B9A0, symBinAddr: 0x3E0DC, symSize: 0x44 } + - { offsetInCU: 0x4CE7, offset: 0x6FD35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BA4C, symBinAddr: 0x3E144, symSize: 0x8 } + - { offsetInCU: 0x4CFB, offset: 0x6FD49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1BADC, symBinAddr: 0x3E1CC, symSize: 0x44 } + - { offsetInCU: 0x4D30, offset: 0x6FD7E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BBE4, symBinAddr: 0x3E2D4, symSize: 0x48 } + - { offsetInCU: 0x4D44, offset: 0x6FD92, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BC50, symBinAddr: 0x3E340, symSize: 0x3C } + - { offsetInCU: 0x4D58, offset: 0x6FDA6, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BC8C, symBinAddr: 0x3E37C, symSize: 0x34 } + - { offsetInCU: 0x4D6C, offset: 0x6FDBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1BCE4, symBinAddr: 0x3E3D4, symSize: 0x40 } + - { offsetInCU: 0x4D80, offset: 0x6FDCE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1BD24, symBinAddr: 0x3E414, symSize: 0x48 } + - { offsetInCU: 0x4D94, offset: 0x6FDE2, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1BE30, symBinAddr: 0x3E520, symSize: 0x18 } + - { offsetInCU: 0x4DA8, offset: 0x6FDF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1BE48, symBinAddr: 0x3E538, symSize: 0x10 } + - { offsetInCU: 0x4DBC, offset: 0x6FE0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1BE58, symBinAddr: 0x3E548, symSize: 0x34 } + - { offsetInCU: 0x4DD0, offset: 0x6FE1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1BEC8, symBinAddr: 0x3E5B8, symSize: 0x30 } + - { offsetInCU: 0x5441, offset: 0x7048F, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9A68, symBinAddr: 0x2CB24, symSize: 0x400 } + - { offsetInCU: 0x55A4, offset: 0x705F2, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xACE4, symBinAddr: 0x2DDA0, symSize: 0x390 } + - { offsetInCU: 0x5868, offset: 0x708B6, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xB074, symBinAddr: 0x2E130, symSize: 0x3B8 } + - { offsetInCU: 0x5CC6, offset: 0x70D14, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF464, symBinAddr: 0x32520, symSize: 0x18C } + - { offsetInCU: 0x609C, offset: 0x710EA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x16BAC, symBinAddr: 0x39C14, symSize: 0x110 } + - { offsetInCU: 0x61F8, offset: 0x71246, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x16CFC, symBinAddr: 0x39D24, symSize: 0xFC } + - { offsetInCU: 0x6315, offset: 0x71363, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x16FE4, symBinAddr: 0x39FD0, symSize: 0x1A8 } + - { offsetInCU: 0x6425, offset: 0x71473, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1768C, symBinAddr: 0x3A678, symSize: 0x188 } + - { offsetInCU: 0x6772, offset: 0x717C0, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1959C, symBinAddr: 0x3C588, symSize: 0x1C8 } + - { offsetInCU: 0x68A1, offset: 0x718EF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x19764, symBinAddr: 0x3C750, symSize: 0x11C } + - { offsetInCU: 0x6A03, offset: 0x71A51, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x19880, symBinAddr: 0x3C86C, symSize: 0xFC } + - { offsetInCU: 0x6B65, offset: 0x71BB3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x1997C, symBinAddr: 0x3C968, symSize: 0xE4 } + - { offsetInCU: 0x6CBB, offset: 0x71D09, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19A60, symBinAddr: 0x3CA4C, symSize: 0x114 } + - { offsetInCU: 0x6E11, offset: 0x71E5F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19B74, symBinAddr: 0x3CB60, symSize: 0xF0 } + - { offsetInCU: 0x6F73, offset: 0x71FC1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x19D4C, symBinAddr: 0x3CD38, symSize: 0xE4 } + - { offsetInCU: 0x70EA, offset: 0x72138, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BB20, symBinAddr: 0x3E210, symSize: 0xC4 } + - { offsetInCU: 0x7651, offset: 0x7269F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x230BC, symSize: 0x190 } + - { offsetInCU: 0x7794, offset: 0x727E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x190, symBinAddr: 0x2324C, symSize: 0x5D8 } + - { offsetInCU: 0x7AA9, offset: 0x72AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x27D4, symBinAddr: 0x25890, symSize: 0x6C0 } + - { offsetInCU: 0x7D74, offset: 0x72DC2, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x768, symBinAddr: 0x23824, symSize: 0x88 } + - { offsetInCU: 0x7ECC, offset: 0x72F1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x7F0, symBinAddr: 0x238AC, symSize: 0x1D04 } + - { offsetInCU: 0x9069, offset: 0x740B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB42C, symBinAddr: 0x2E4E8, symSize: 0x37E0 } + - { offsetInCU: 0xA390, offset: 0x753DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xEC0C, symBinAddr: 0x31CC8, symSize: 0x578 } + - { offsetInCU: 0xA7E2, offset: 0x75830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10730, symBinAddr: 0x337EC, symSize: 0x2568 } + - { offsetInCU: 0xBE70, offset: 0x76EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13BE0, symBinAddr: 0x36C9C, symSize: 0x3DC } + - { offsetInCU: 0xC00B, offset: 0x77059, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x24F4, symBinAddr: 0x255B0, symSize: 0x2E0 } + - { offsetInCU: 0xC447, offset: 0x77495, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x2E94, symBinAddr: 0x25F50, symSize: 0x3B8 } + - { offsetInCU: 0xC6D3, offset: 0x77721, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x324C, symBinAddr: 0x26308, symSize: 0x3914 } + - { offsetInCU: 0xE279, offset: 0x792C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6B60, symBinAddr: 0x29C1C, symSize: 0x278 } + - { offsetInCU: 0xE385, offset: 0x793D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x725C, symBinAddr: 0x2A318, symSize: 0x1848 } + - { offsetInCU: 0xEE0C, offset: 0x79E5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x6DD8, symBinAddr: 0x29E94, symSize: 0x118 } + - { offsetInCU: 0xEE85, offset: 0x79ED3, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6EF0, symBinAddr: 0x29FAC, symSize: 0x15C } + - { offsetInCU: 0xEEA0, offset: 0x79EEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x704C, symBinAddr: 0x2A108, symSize: 0x1E8 } + - { offsetInCU: 0xF17F, offset: 0x7A1CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x8AF8, symBinAddr: 0x2BBB4, symSize: 0x3F8 } + - { offsetInCU: 0xF3A0, offset: 0x7A3EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9E68, symBinAddr: 0x2CF24, symSize: 0xE7C } + - { offsetInCU: 0xFCA5, offset: 0x7ACF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8EF0, symBinAddr: 0x2BFAC, symSize: 0xB78 } + - { offsetInCU: 0x10675, offset: 0x7B6C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF5F0, symBinAddr: 0x326AC, symSize: 0x1140 } + - { offsetInCU: 0x1182A, offset: 0x7C878, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x17814, symBinAddr: 0x3A800, symSize: 0xB10 } + - { offsetInCU: 0x122BA, offset: 0x7D308, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x12C98, symBinAddr: 0x35D54, symSize: 0xF48 } + - { offsetInCU: 0x12D9E, offset: 0x7DDEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x13FBC, symBinAddr: 0x37078, symSize: 0x1E8 } + - { offsetInCU: 0x12E22, offset: 0x7DE70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x141A4, symBinAddr: 0x37260, symSize: 0x294 } + - { offsetInCU: 0x12F32, offset: 0x7DF80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x144D8, symBinAddr: 0x37594, symSize: 0xED4 } + - { offsetInCU: 0x1395D, offset: 0x7E9AB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x156E8, symBinAddr: 0x38750, symSize: 0x64 } + - { offsetInCU: 0x1399B, offset: 0x7E9E9, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1574C, symBinAddr: 0x387B4, symSize: 0x30 } + - { offsetInCU: 0x139E2, offset: 0x7EA30, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1577C, symBinAddr: 0x387E4, symSize: 0x80 } + - { offsetInCU: 0x13A7C, offset: 0x7EACA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x157FC, symBinAddr: 0x38864, symSize: 0x6C } + - { offsetInCU: 0x13B2C, offset: 0x7EB7A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15868, symBinAddr: 0x388D0, symSize: 0x4C } + - { offsetInCU: 0x13BA5, offset: 0x7EBF3, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x158E0, symBinAddr: 0x38948, symSize: 0xE0 } + - { offsetInCU: 0x13C19, offset: 0x7EC67, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x159C0, symBinAddr: 0x38A28, symSize: 0xC4 } + - { offsetInCU: 0x13C42, offset: 0x7EC90, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15A84, symBinAddr: 0x38AEC, symSize: 0x174 } + - { offsetInCU: 0x13D1B, offset: 0x7ED69, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x15BF8, symBinAddr: 0x38C60, symSize: 0x104 } + - { offsetInCU: 0x13E4A, offset: 0x7EE98, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x15CFC, symBinAddr: 0x38D64, symSize: 0x124 } + - { offsetInCU: 0x13F6B, offset: 0x7EFB9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x15E20, symBinAddr: 0x38E88, symSize: 0x170 } + - { offsetInCU: 0x140EC, offset: 0x7F13A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x15F90, symBinAddr: 0x38FF8, symSize: 0x174 } + - { offsetInCU: 0x1423A, offset: 0x7F288, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16104, symBinAddr: 0x3916C, symSize: 0xFC } + - { offsetInCU: 0x14370, offset: 0x7F3BE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x16200, symBinAddr: 0x39268, symSize: 0xFC } + - { offsetInCU: 0x144A6, offset: 0x7F4F4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x16400, symBinAddr: 0x39468, symSize: 0xFC } + - { offsetInCU: 0x145DC, offset: 0x7F62A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x16600, symBinAddr: 0x39668, symSize: 0x11C } + - { offsetInCU: 0x146C7, offset: 0x7F715, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x169C0, symBinAddr: 0x39A28, symSize: 0x138 } + - { offsetInCU: 0x14796, offset: 0x7F7E4, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16AF8, symBinAddr: 0x39B60, symSize: 0xB4 } + - { offsetInCU: 0x1482E, offset: 0x7F87C, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x16DF8, symBinAddr: 0x39E20, symSize: 0x18C } + - { offsetInCU: 0x14A30, offset: 0x7FA7E, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18324, symBinAddr: 0x3B310, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x801B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3E620, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x801C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3E620, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x801DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3E650, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x801F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3E73C, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x80205, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x3E9A4, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x80219, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x3EDC0, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x8022D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x3EDC8, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x80241, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x3F004, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x80255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x3F04C, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x80269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x3F108, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x80863, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8BF0, symBinAddr: 0x47D08, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x80921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8E10, symBinAddr: 0x47F28, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x809EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD408, symBinAddr: 0x4C520, symSize: 0x774 } + - { offsetInCU: 0x9DA, offset: 0x80D24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xDB7C, symBinAddr: 0x4CC94, symSize: 0x9CC } + - { offsetInCU: 0xCB4, offset: 0x80FFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE548, symBinAddr: 0x4D660, symSize: 0x2AC } + - { offsetInCU: 0xDF6, offset: 0x81140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xEEAC, symBinAddr: 0x4DFC4, symSize: 0x810 } + - { offsetInCU: 0x10EC, offset: 0x81436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF6BC, symBinAddr: 0x4E7D4, symSize: 0xBB4 } + - { offsetInCU: 0x13C6, offset: 0x81710, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x10270, symBinAddr: 0x4F388, symSize: 0x314 } + - { offsetInCU: 0x1508, offset: 0x81852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x10584, symBinAddr: 0x4F69C, symSize: 0x208 } + - { offsetInCU: 0x1989, offset: 0x81CD3, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1E38, symBinAddr: 0x40F50, symSize: 0x2C } + - { offsetInCU: 0x1E8E, offset: 0x821D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x90D4, symBinAddr: 0x481EC, symSize: 0x20 } + - { offsetInCU: 0x1ED3, offset: 0x8221D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x90F4, symBinAddr: 0x4820C, symSize: 0x8C } + - { offsetInCU: 0x1F8F, offset: 0x822D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xA230, symBinAddr: 0x49348, symSize: 0x54 } + - { offsetInCU: 0x1FC9, offset: 0x82313, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xA284, symBinAddr: 0x4939C, symSize: 0x50 } + - { offsetInCU: 0x201F, offset: 0x82369, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA2D4, symBinAddr: 0x493EC, symSize: 0x64 } + - { offsetInCU: 0x2052, offset: 0x8239C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA338, symBinAddr: 0x49450, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x823DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA33C, symBinAddr: 0x49454, symSize: 0x78 } + - { offsetInCU: 0x20E7, offset: 0x82431, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA3B4, symBinAddr: 0x494CC, symSize: 0x88 } + - { offsetInCU: 0x2158, offset: 0x824A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA43C, symBinAddr: 0x49554, symSize: 0xDC } + - { offsetInCU: 0x21DA, offset: 0x82524, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA518, symBinAddr: 0x49630, symSize: 0x4 } + - { offsetInCU: 0x21F6, offset: 0x82540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA51C, symBinAddr: 0x49634, symSize: 0x4 } + - { offsetInCU: 0x2230, offset: 0x8257A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA520, symBinAddr: 0x49638, symSize: 0x64 } + - { offsetInCU: 0x259D, offset: 0x828E7, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB7C8, symBinAddr: 0x4A8E0, symSize: 0xE4 } + - { offsetInCU: 0x2681, offset: 0x829CB, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xB990, symBinAddr: 0x4AAA8, symSize: 0x280 } + - { offsetInCU: 0x281D, offset: 0x82B67, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xC1C0, symBinAddr: 0x4B2D8, symSize: 0x64 } + - { offsetInCU: 0x2DFE, offset: 0x83148, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xC9C4, symBinAddr: 0x4BADC, symSize: 0x374 } + - { offsetInCU: 0x35A0, offset: 0x838EA, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCD38, symBinAddr: 0x4BE50, symSize: 0x280 } + - { offsetInCU: 0x3977, offset: 0x83CC1, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCFB8, symBinAddr: 0x4C0D0, symSize: 0x148 } + - { offsetInCU: 0x3B71, offset: 0x83EBB, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xD100, symBinAddr: 0x4C218, symSize: 0x1F8 } + - { offsetInCU: 0x3D30, offset: 0x8407A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10F3C, symBinAddr: 0x50054, symSize: 0x104 } + - { offsetInCU: 0x3E7A, offset: 0x841C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x139F4, symBinAddr: 0x52B0C, symSize: 0x120 } + - { offsetInCU: 0x3F92, offset: 0x842DC, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x13FFC, symBinAddr: 0x530B4, symSize: 0x10 } + - { offsetInCU: 0x3FA6, offset: 0x842F0, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x1400C, symBinAddr: 0x530C4, symSize: 0x10 } + - { offsetInCU: 0x3FBA, offset: 0x84304, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x140A0, symBinAddr: 0x530D4, symSize: 0x48 } + - { offsetInCU: 0x3FCE, offset: 0x84318, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x1418C, symBinAddr: 0x5311C, symSize: 0x3C } + - { offsetInCU: 0x3FE2, offset: 0x8432C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x141C8, symBinAddr: 0x53158, symSize: 0x44 } + - { offsetInCU: 0x3FF6, offset: 0x84340, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOd', symObjAddr: 0x1420C, symBinAddr: 0x5319C, symSize: 0x48 } + - { offsetInCU: 0x400A, offset: 0x84354, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x14254, symBinAddr: 0x531E4, symSize: 0x8 } + - { offsetInCU: 0x401E, offset: 0x84368, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1425C, symBinAddr: 0x531EC, symSize: 0x10 } + - { offsetInCU: 0x4032, offset: 0x8437C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1426C, symBinAddr: 0x531FC, symSize: 0x8 } + - { offsetInCU: 0x4046, offset: 0x84390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x142F4, symBinAddr: 0x53240, symSize: 0x30 } + - { offsetInCU: 0x409E, offset: 0x843E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x143B4, symBinAddr: 0x53300, symSize: 0x24 } + - { offsetInCU: 0x40DA, offset: 0x84424, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x1441C, symBinAddr: 0x53368, symSize: 0x44 } + - { offsetInCU: 0x4BF8, offset: 0x84F42, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x3F118, symSize: 0x80 } + - { offsetInCU: 0x4C60, offset: 0x84FAA, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x80, symBinAddr: 0x3F198, symSize: 0xA0 } + - { offsetInCU: 0x4DC3, offset: 0x8510D, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x120, symBinAddr: 0x3F238, symSize: 0x9C } + - { offsetInCU: 0x4EEE, offset: 0x85238, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1BC, symBinAddr: 0x3F2D4, symSize: 0x74 } + - { offsetInCU: 0x4F73, offset: 0x852BD, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x230, symBinAddr: 0x3F348, symSize: 0x4 } + - { offsetInCU: 0x4F8E, offset: 0x852D8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x234, symBinAddr: 0x3F34C, symSize: 0x134 } + - { offsetInCU: 0x4FF9, offset: 0x85343, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x3F480, symSize: 0xE8 } + - { offsetInCU: 0x50DB, offset: 0x85425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x3F568, symSize: 0x204 } + - { offsetInCU: 0x525A, offset: 0x855A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x3F76C, symSize: 0xAF8 } + - { offsetInCU: 0x56EC, offset: 0x85A36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x114C, symBinAddr: 0x40264, symSize: 0x3CC } + - { offsetInCU: 0x5903, offset: 0x85C4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1518, symBinAddr: 0x40630, symSize: 0x920 } + - { offsetInCU: 0x5C7A, offset: 0x85FC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x1E64, symBinAddr: 0x40F7C, symSize: 0x21E4 } + - { offsetInCU: 0x7197, offset: 0x874E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE7F4, symBinAddr: 0x4D90C, symSize: 0x6B8 } + - { offsetInCU: 0x75A2, offset: 0x878EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4048, symBinAddr: 0x43160, symSize: 0x158C } + - { offsetInCU: 0x845D, offset: 0x887A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x55D4, symBinAddr: 0x446EC, symSize: 0xFD4 } + - { offsetInCU: 0x8E64, offset: 0x891AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x65A8, symBinAddr: 0x456C0, symSize: 0x3B0 } + - { offsetInCU: 0x8FCD, offset: 0x89317, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x71DC, symBinAddr: 0x462F4, symSize: 0x1E8 } + - { offsetInCU: 0x921F, offset: 0x89569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x73C4, symBinAddr: 0x464DC, symSize: 0x92C } + - { offsetInCU: 0x9A1F, offset: 0x89D69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7CF0, symBinAddr: 0x46E08, symSize: 0x2A8 } + - { offsetInCU: 0x9B71, offset: 0x89EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7F98, symBinAddr: 0x470B0, symSize: 0x614 } + - { offsetInCU: 0x9F3E, offset: 0x8A288, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x85AC, symBinAddr: 0x476C4, symSize: 0x644 } + - { offsetInCU: 0xA1E0, offset: 0x8A52A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x9034, symBinAddr: 0x4814C, symSize: 0x80 } + - { offsetInCU: 0xA203, offset: 0x8A54D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x90B4, symBinAddr: 0x481CC, symSize: 0x20 } + - { offsetInCU: 0xA28E, offset: 0x8A5D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x9180, symBinAddr: 0x48298, symSize: 0x1070 } + - { offsetInCU: 0xA8F6, offset: 0x8AC40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xA1F0, symBinAddr: 0x49308, symSize: 0x40 } + - { offsetInCU: 0xA969, offset: 0x8ACB3, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA584, symBinAddr: 0x4969C, symSize: 0x4 } + - { offsetInCU: 0xA984, offset: 0x8ACCE, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA588, symBinAddr: 0x496A0, symSize: 0x8 } + - { offsetInCU: 0xA99C, offset: 0x8ACE6, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA588, symBinAddr: 0x496A0, symSize: 0x8 } + - { offsetInCU: 0xA9AD, offset: 0x8ACF7, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA590, symBinAddr: 0x496A8, symSize: 0xC8 } + - { offsetInCU: 0xAA35, offset: 0x8AD7F, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA658, symBinAddr: 0x49770, symSize: 0xCC } + - { offsetInCU: 0xAAD5, offset: 0x8AE1F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA820, symBinAddr: 0x49938, symSize: 0x1F4 } + - { offsetInCU: 0xAB75, offset: 0x8AEBF, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xAA14, symBinAddr: 0x49B2C, symSize: 0x1C4 } + - { offsetInCU: 0xAC31, offset: 0x8AF7B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xABD8, symBinAddr: 0x49CF0, symSize: 0x340 } + - { offsetInCU: 0xAD28, offset: 0x8B072, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAF18, symBinAddr: 0x4A030, symSize: 0x340 } + - { offsetInCU: 0xAE12, offset: 0x8B15C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB258, symBinAddr: 0x4A370, symSize: 0x1DC } + - { offsetInCU: 0xAEB7, offset: 0x8B201, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB434, symBinAddr: 0x4A54C, symSize: 0x204 } + - { offsetInCU: 0xAF55, offset: 0x8B29F, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB638, symBinAddr: 0x4A750, symSize: 0x4C } + - { offsetInCU: 0xB001, offset: 0x8B34B, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB684, symBinAddr: 0x4A79C, symSize: 0x90 } + - { offsetInCU: 0xB08D, offset: 0x8B3D7, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB714, symBinAddr: 0x4A82C, symSize: 0x40 } + - { offsetInCU: 0xB0CA, offset: 0x8B414, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB754, symBinAddr: 0x4A86C, symSize: 0x18 } + - { offsetInCU: 0xB11C, offset: 0x8B466, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB76C, symBinAddr: 0x4A884, symSize: 0x3C } + - { offsetInCU: 0xB145, offset: 0x8B48F, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB7A8, symBinAddr: 0x4A8C0, symSize: 0x1C } + - { offsetInCU: 0xB186, offset: 0x8B4D0, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBE94, symBinAddr: 0x4AFAC, symSize: 0x8C } + - { offsetInCU: 0xB19A, offset: 0x8B4E4, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBF20, symBinAddr: 0x4B038, symSize: 0x4C } + - { offsetInCU: 0xB1CA, offset: 0x8B514, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBF6C, symBinAddr: 0x4B084, symSize: 0x164 } + - { offsetInCU: 0xB227, offset: 0x8B571, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC0D0, symBinAddr: 0x4B1E8, symSize: 0xF0 } + - { offsetInCU: 0xB24E, offset: 0x8B598, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC224, symBinAddr: 0x4B33C, symSize: 0x214 } + - { offsetInCU: 0xB283, offset: 0x8B5CD, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC438, symBinAddr: 0x4B550, symSize: 0x78 } + - { offsetInCU: 0xB297, offset: 0x8B5E1, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC4B0, symBinAddr: 0x4B5C8, symSize: 0x1C } + - { offsetInCU: 0xB2AB, offset: 0x8B5F5, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC4CC, symBinAddr: 0x4B5E4, symSize: 0x1C } + - { offsetInCU: 0xB2BF, offset: 0x8B609, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC4E8, symBinAddr: 0x4B600, symSize: 0x1C } + - { offsetInCU: 0xB2F6, offset: 0x8B640, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC504, symBinAddr: 0x4B61C, symSize: 0x104 } + - { offsetInCU: 0xB3F4, offset: 0x8B73E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC608, symBinAddr: 0x4B720, symSize: 0x174 } + - { offsetInCU: 0xB50A, offset: 0x8B854, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC77C, symBinAddr: 0x4B894, symSize: 0x124 } + - { offsetInCU: 0xB5DE, offset: 0x8B928, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC8A0, symBinAddr: 0x4B9B8, symSize: 0x124 } + - { offsetInCU: 0xB71D, offset: 0x8BA67, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD2F8, symBinAddr: 0x4C410, symSize: 0x14 } + - { offsetInCU: 0xB73F, offset: 0x8BA89, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD30C, symBinAddr: 0x4C424, symSize: 0xFC } + - { offsetInCU: 0xB819, offset: 0x8BB63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x1078C, symBinAddr: 0x4F8A4, symSize: 0x7B0 } + - { offsetInCU: 0xBCA0, offset: 0x8BFEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x11040, symBinAddr: 0x50158, symSize: 0x29B4 } + - { offsetInCU: 0xC434, offset: 0x8C77E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x13B14, symBinAddr: 0x52C2C, symSize: 0x488 } + - { offsetInCU: 0x95, offset: 0x8CB9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x543B4, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8CBF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xF98, symBinAddr: 0x54400, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8CC22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xFBC, symBinAddr: 0x54424, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8CC3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xFC8, symBinAddr: 0x54430, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8CC5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5F38, symBinAddr: 0x59310, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8CCF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1024, symBinAddr: 0x5448C, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8CD28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1074, symBinAddr: 0x544DC, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8CD4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x606C, symBinAddr: 0x59444, symSize: 0x132C } + - { offsetInCU: 0x2D0, offset: 0x8CDD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x10C4, symBinAddr: 0x5452C, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8CE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x10DC, symBinAddr: 0x54544, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8CEAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1108, symBinAddr: 0x54570, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8CEE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1170, symBinAddr: 0x545D8, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8CF14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1194, symBinAddr: 0x545FC, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8CF30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11A0, symBinAddr: 0x54608, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8CF4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E7C, symBinAddr: 0x5A83C, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8D03E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11FC, symBinAddr: 0x54664, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8D075, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x124C, symBinAddr: 0x546B4, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8D098, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8078, symBinAddr: 0x5AA38, symSize: 0xF38 } + - { offsetInCU: 0x611, offset: 0x8D11A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x146C, symBinAddr: 0x548D4, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8D14B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1498, symBinAddr: 0x54900, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8D167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1508, symBinAddr: 0x54970, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8D19C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1568, symBinAddr: 0x549D0, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8D1EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x158C, symBinAddr: 0x549F4, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8D208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1598, symBinAddr: 0x54A00, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8D224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x918C, symBinAddr: 0x5BB4C, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8D283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15F4, symBinAddr: 0x54A5C, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8D2BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x163C, symBinAddr: 0x54AA4, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8D2DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x91E8, symBinAddr: 0x5BBA8, symSize: 0x220 } + - { offsetInCU: 0x838, offset: 0x8D341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1684, symBinAddr: 0x54AEC, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8D376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x168C, symBinAddr: 0x54AF4, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8D3A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16B0, symBinAddr: 0x54B18, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8D3C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16BC, symBinAddr: 0x54B24, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8D3DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9408, symBinAddr: 0x5BDC8, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8D53B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1718, symBinAddr: 0x54B80, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8D572, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1778, symBinAddr: 0x54BE0, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8D595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x96F4, symBinAddr: 0x5C0B4, symSize: 0x538 } + - { offsetInCU: 0xB19, offset: 0x8D622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x54C38, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8D6A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x17E8, symBinAddr: 0x54C50, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8D785, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x182C, symBinAddr: 0x54C94, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8D80B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1894, symBinAddr: 0x54CFC, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8D860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18B8, symBinAddr: 0x54D20, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8D891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18DC, symBinAddr: 0x54D44, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8D8AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18E8, symBinAddr: 0x54D50, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8D8C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9C2C, symBinAddr: 0x5C5EC, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8D957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1944, symBinAddr: 0x54DAC, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8D98E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1970, symBinAddr: 0x54DD8, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8D9B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9CE8, symBinAddr: 0x5C6A8, symSize: 0x1A0 } + - { offsetInCU: 0xF18, offset: 0x8DA21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A18, symBinAddr: 0x54E80, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8DA56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x54EF8, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8DA87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x54F1C, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8DAA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x54F28, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8DABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9E88, symBinAddr: 0x5C848, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8DBBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B1C, symBinAddr: 0x54F84, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8DBF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B8C, symBinAddr: 0x54FF4, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8DC14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA0D4, symBinAddr: 0x5CA94, symSize: 0x8C8 } + - { offsetInCU: 0x11A5, offset: 0x8DCAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1D78, symBinAddr: 0x551E0, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8DCDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1DA4, symBinAddr: 0x5520C, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8DCF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1DCC, symBinAddr: 0x55234, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8DD28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DD4, symBinAddr: 0x5523C, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8DD78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1DF8, symBinAddr: 0x55260, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8DD94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E04, symBinAddr: 0x5526C, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8DDB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAA68, symBinAddr: 0x5D428, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8DE2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x552C8, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8DE65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EB8, symBinAddr: 0x55320, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8DE88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAAC4, symBinAddr: 0x5D484, symSize: 0x760 } + - { offsetInCU: 0x1457, offset: 0x8DF60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D00, symBinAddr: 0x5915C, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8DFB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5D54, symBinAddr: 0x591B0, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8E00C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5DD4, symBinAddr: 0x59230, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8E041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5DDC, symBinAddr: 0x59238, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8E0C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5E3C, symBinAddr: 0x59298, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8E0DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x20D0, symBinAddr: 0x55538, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8E0F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x20F0, symBinAddr: 0x55558, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8E106, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x21E4, symBinAddr: 0x5564C, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8E11A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x2564, symBinAddr: 0x559CC, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8E135, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x31BC, symBinAddr: 0x56624, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8E15E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x31EC, symBinAddr: 0x56654, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8E172, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x3218, symBinAddr: 0x56680, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8E186, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x3244, symBinAddr: 0x566AC, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8E19A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x3270, symBinAddr: 0x566D8, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8E1AE, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x329C, symBinAddr: 0x56704, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8E1C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x32A4, symBinAddr: 0x5670C, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8E1D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x3664, symBinAddr: 0x56ACC, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8E1EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x36C0, symBinAddr: 0x56B28, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8E1FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x37AC, symBinAddr: 0x56C14, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8E212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x37BC, symBinAddr: 0x56C24, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8E226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x37EC, symBinAddr: 0x56C54, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8E23A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x38CC, symBinAddr: 0x56D34, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8E24E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x3C04, symBinAddr: 0x5706C, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8E262, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4468, symBinAddr: 0x578D0, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8E276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4470, symBinAddr: 0x578D8, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8E28A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x47D4, symBinAddr: 0x57C3C, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8E29E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x4830, symBinAddr: 0x57C98, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8E2B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x4914, symBinAddr: 0x57D7C, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8E2C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x4924, symBinAddr: 0x57D8C, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8E2DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x49C8, symBinAddr: 0x57E30, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8E2EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x4B54, symBinAddr: 0x57FBC, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8E302, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4EFC, symBinAddr: 0x58364, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8E316, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4F40, symBinAddr: 0x583A8, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8E32A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x50BC, symBinAddr: 0x58524, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8E33E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x5118, symBinAddr: 0x58580, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8E352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x51AC, symBinAddr: 0x58614, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8E366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x51BC, symBinAddr: 0x58624, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8E37A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x5224, symBinAddr: 0x5868C, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8E38E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x5300, symBinAddr: 0x58768, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8E3A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x546C, symBinAddr: 0x588D4, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8E3B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5498, symBinAddr: 0x58900, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8E3CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x555C, symBinAddr: 0x589C4, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8E3DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x55B8, symBinAddr: 0x58A20, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8E3F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x5634, symBinAddr: 0x58A9C, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8E406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x5644, symBinAddr: 0x58AAC, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8E41A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x568C, symBinAddr: 0x58AF4, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8E42E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x5770, symBinAddr: 0x58BD8, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8E442, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5908, symBinAddr: 0x58D70, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8E456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x593C, symBinAddr: 0x58DA4, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8E46A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5A38, symBinAddr: 0x58EA0, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8E47E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x5A94, symBinAddr: 0x58EFC, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8E492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x5B10, symBinAddr: 0x58F78, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8E4A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x5B20, symBinAddr: 0x58F88, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8E4BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5B48, symBinAddr: 0x58FB0, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8E4CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x5B84, symBinAddr: 0x58FEC, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8E4E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x5BFC, symBinAddr: 0x59058, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8E4F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5C40, symBinAddr: 0x5909C, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8E50A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x5C9C, symBinAddr: 0x590F8, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8E51E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x5CF0, symBinAddr: 0x5914C, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8E532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5E44, symBinAddr: 0x592A0, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8E546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5E48, symBinAddr: 0x592A4, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8E55A, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F10, symBinAddr: 0x592E8, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8E56E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x7398, symBinAddr: 0x5A770, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8E582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x73DC, symBinAddr: 0x5A7B4, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8E596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7E38, symBinAddr: 0x5A7F8, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8E5AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x8FB0, symBinAddr: 0x5B970, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8E5BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x8FF4, symBinAddr: 0x5B9B4, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8E5D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x9038, symBinAddr: 0x5B9F8, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8E5E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x907C, symBinAddr: 0x5BA3C, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8E5FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x90C0, symBinAddr: 0x5BA80, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8E60E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x9104, symBinAddr: 0x5BAC4, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8E622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x9148, symBinAddr: 0x5BB08, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8E636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA99C, symBinAddr: 0x5D35C, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8E64A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xA9E0, symBinAddr: 0x5D3A0, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8E65E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xAA24, symBinAddr: 0x5D3E4, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8E672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xB224, symBinAddr: 0x5DBE4, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8E686, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB268, symBinAddr: 0x5DC28, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8E69A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xB2AC, symBinAddr: 0x5DC6C, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8E6AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xB334, symBinAddr: 0x5DCF4, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8E6C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB378, symBinAddr: 0x5DD38, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E6D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB3CC, symBinAddr: 0x5DD7C, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E6EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB45C, symBinAddr: 0x5DE0C, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E6FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB518, symBinAddr: 0x5DEC8, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8E712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB520, symBinAddr: 0x5DED0, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8E726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB524, symBinAddr: 0x5DED4, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8E73A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB530, symBinAddr: 0x5DEE0, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8E74E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB540, symBinAddr: 0x5DEF0, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8E762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB5D0, symBinAddr: 0x5DF80, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8E776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB68C, symBinAddr: 0x5E03C, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8E78A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB690, symBinAddr: 0x5E040, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8E79E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB6A0, symBinAddr: 0x5E050, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8E7B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB730, symBinAddr: 0x5E0E0, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8E7C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB7EC, symBinAddr: 0x5E19C, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8E7DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB7F0, symBinAddr: 0x5E1A0, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8E7EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB800, symBinAddr: 0x5E1B0, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8E802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB890, symBinAddr: 0x5E240, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8E816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB94C, symBinAddr: 0x5E2FC, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8E82A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB950, symBinAddr: 0x5E300, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8E83E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB960, symBinAddr: 0x5E310, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8E852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB9F0, symBinAddr: 0x5E3A0, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8E866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xBAAC, symBinAddr: 0x5E45C, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8E87A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBAB4, symBinAddr: 0x5E464, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8E88E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xBAB8, symBinAddr: 0x5E468, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8E8A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBAC0, symBinAddr: 0x5E470, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8E8B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xBAD0, symBinAddr: 0x5E480, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8E8CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xBB60, symBinAddr: 0x5E510, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8E8DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBC1C, symBinAddr: 0x5E5CC, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8E8F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBC20, symBinAddr: 0x5E5D0, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8E906, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBC30, symBinAddr: 0x5E5E0, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8E91A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xBC54, symBinAddr: 0x5E604, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8E92E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xBC74, symBinAddr: 0x5E624, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8E942, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xBCB4, symBinAddr: 0x5E664, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8E956, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBCC4, symBinAddr: 0x5E674, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8E96A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBCC8, symBinAddr: 0x5E678, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8E97E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBD0C, symBinAddr: 0x5E6BC, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8E992, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBD10, symBinAddr: 0x5E6C0, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8E9A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBD54, symBinAddr: 0x5E704, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8E9BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBD58, symBinAddr: 0x5E708, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8E9CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBD9C, symBinAddr: 0x5E74C, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8E9E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBDA0, symBinAddr: 0x5E750, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8E9F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBDE4, symBinAddr: 0x5E794, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8EA0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBDE8, symBinAddr: 0x5E798, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8EA1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBE2C, symBinAddr: 0x5E7DC, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8EA32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBE30, symBinAddr: 0x5E7E0, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8EA46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBE74, symBinAddr: 0x5E824, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8EA5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBE78, symBinAddr: 0x5E828, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8EA6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBEBC, symBinAddr: 0x5E86C, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8EA82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBEC0, symBinAddr: 0x5E870, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8EA96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF04, symBinAddr: 0x5E8B4, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8EAAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF08, symBinAddr: 0x5E8B8, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8EABE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF4C, symBinAddr: 0x5E8FC, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8EAD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBF50, symBinAddr: 0x5E900, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8EAE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF94, symBinAddr: 0x5E944, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8EAFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF98, symBinAddr: 0x5E948, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8EB0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFDC, symBinAddr: 0x5E98C, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8EB22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBFE0, symBinAddr: 0x5E990, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8EB36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC024, symBinAddr: 0x5E9D4, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8EB4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC028, symBinAddr: 0x5E9D8, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8EB5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC06C, symBinAddr: 0x5EA1C, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8EB72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC070, symBinAddr: 0x5EA20, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8EB86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC0B4, symBinAddr: 0x5EA64, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8EB9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC0B8, symBinAddr: 0x5EA68, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8EBAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0FC, symBinAddr: 0x5EAAC, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8EBC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC100, symBinAddr: 0x5EAB0, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8EBD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC144, symBinAddr: 0x5EAF4, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8EBEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC148, symBinAddr: 0x5EAF8, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8EBFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC18C, symBinAddr: 0x5EB3C, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8EC12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC190, symBinAddr: 0x5EB40, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8EC26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xC1D4, symBinAddr: 0x5EB84, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8EC3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xC218, symBinAddr: 0x5EBC8, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8EC4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xC2A8, symBinAddr: 0x5EC58, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8EC62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xC364, symBinAddr: 0x5ED14, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8EC76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xC368, symBinAddr: 0x5ED18, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8EC8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC378, symBinAddr: 0x5ED28, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8EC9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC37C, symBinAddr: 0x5ED2C, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8ECB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC3C0, symBinAddr: 0x5ED70, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8ECC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC3C4, symBinAddr: 0x5ED74, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8ECDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC408, symBinAddr: 0x5EDB8, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8ECEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC40C, symBinAddr: 0x5EDBC, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8ED1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xFD4, symBinAddr: 0x5443C, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8ED38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xFFC, symBinAddr: 0x54464, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8ED5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11AC, symBinAddr: 0x54614, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8ED76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11D4, symBinAddr: 0x5463C, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8ED92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x129C, symBinAddr: 0x54704, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8EE12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12A8, symBinAddr: 0x54710, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8EE94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x134C, symBinAddr: 0x547B4, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8EED2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x13CC, symBinAddr: 0x54834, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8EF38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x15A4, symBinAddr: 0x54A0C, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8EF54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x15CC, symBinAddr: 0x54A34, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8EF76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x54B30, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8EF92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x16F0, symBinAddr: 0x54B58, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8EFE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1854, symBinAddr: 0x54CBC, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8F087, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x18F4, symBinAddr: 0x54D5C, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8F0A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x191C, symBinAddr: 0x54D84, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8F0C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1ACC, symBinAddr: 0x54F34, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8F0E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x54F5C, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8F12A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1BF4, symBinAddr: 0x5505C, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8F1FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1C7C, symBinAddr: 0x550E4, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8F27C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CDC, symBinAddr: 0x55144, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8F2CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D1C, symBinAddr: 0x55184, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8F330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E10, symBinAddr: 0x55278, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8F34C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1E38, symBinAddr: 0x552A0, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8F38D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E00, symBinAddr: 0x5925C, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8F51F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x53468, symSize: 0x17C } + - { offsetInCU: 0x2A47, offset: 0x8F550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x17C, symBinAddr: 0x535E4, symSize: 0x264 } + - { offsetInCU: 0x2A78, offset: 0x8F581, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x3E0, symBinAddr: 0x53848, symSize: 0x190 } + - { offsetInCU: 0x2AA9, offset: 0x8F5B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x570, symBinAddr: 0x539D8, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8F5D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x60C, symBinAddr: 0x53A74, symSize: 0x268 } + - { offsetInCU: 0x2AFD, offset: 0x8F606, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x874, symBinAddr: 0x53CDC, symSize: 0x118 } + - { offsetInCU: 0x2B2E, offset: 0x8F637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x98C, symBinAddr: 0x53DF4, symSize: 0x214 } + - { offsetInCU: 0x2B5F, offset: 0x8F668, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBA0, symBinAddr: 0x54008, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8F69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC50, symBinAddr: 0x540B8, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F6E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x54168, symSize: 0x244 } + - { offsetInCU: 0x2DE8, offset: 0x8F8F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F08, symBinAddr: 0x55370, symSize: 0x1B8 } + - { offsetInCU: 0x2E34, offset: 0x8F93D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x20C0, symBinAddr: 0x55528, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8FA20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5EE58, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8FB5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5EEC4, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8FB70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5EF18, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8FB84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5EF5C, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8FC65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5EE58, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8FC7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5EE60, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8FCB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5EE68, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8FCC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5EE78, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8FCE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5EE7C, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8FCFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5EE84, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x8FD2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5EE8C, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x8FD50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5EE9C, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x8FD71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5EEA0, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x8FD85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5EEA8, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x8FDB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5EEB0, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x8FDD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5EEC0, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x8FE2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EF6C, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x8FE80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5EF90, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x8FF86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EF6C, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x8FFEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5EFB0, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x9003F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5EFD4, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5EFB0, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x901B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EFF4, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x90202, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5F054, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x90216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5F05C, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x9022A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5F098, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x90330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EFF4, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x9039A, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5F110, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x904EE, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5F478, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x90714, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5F110, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x9094F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5F4C0, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x909A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5F4E4, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5F4C0, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x90B88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x9C8, symBinAddr: 0x5FE8C, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x90BA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x5FE98, symSize: 0x4C } + - { offsetInCU: 0xD5, offset: 0x90BBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x5FE98, symSize: 0x4C } + - { offsetInCU: 0xF1, offset: 0x90BD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA20, symBinAddr: 0x5FEE4, symSize: 0x38 } + - { offsetInCU: 0x180, offset: 0x90C67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xBF4, symBinAddr: 0x600B8, symSize: 0xC } + - { offsetInCU: 0x19C, offset: 0x90C83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x600C4, symSize: 0x2C } + - { offsetInCU: 0x1B4, offset: 0x90C9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x600C4, symSize: 0x2C } + - { offsetInCU: 0x56B, offset: 0x91052, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x754, symBinAddr: 0x5FC18, symSize: 0xC8 } + - { offsetInCU: 0x5DF, offset: 0x910C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xC2C, symBinAddr: 0x600F0, symSize: 0x3EC } + - { offsetInCU: 0x808, offset: 0x912EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1018, symBinAddr: 0x604DC, symSize: 0x13C } + - { offsetInCU: 0xA2A, offset: 0x91511, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x32C0, symBinAddr: 0x626E4, symSize: 0x204 } + - { offsetInCU: 0xADB, offset: 0x915C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3568, symBinAddr: 0x62930, symSize: 0x23C } + - { offsetInCU: 0xB40, offset: 0x91627, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x37A4, symBinAddr: 0x62B6C, symSize: 0x238 } + - { offsetInCU: 0xC68, offset: 0x9174F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39DC, symBinAddr: 0x62DA4, symSize: 0x29C } + - { offsetInCU: 0xDA7, offset: 0x9188E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3C78, symBinAddr: 0x63040, symSize: 0x188 } + - { offsetInCU: 0xDED, offset: 0x918D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E00, symBinAddr: 0x631C8, symSize: 0x43C } + - { offsetInCU: 0x1124, offset: 0x91C0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x423C, symBinAddr: 0x63604, symSize: 0xC4 } + - { offsetInCU: 0x1269, offset: 0x91D50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2D4C, symBinAddr: 0x62210, symSize: 0x4 } + - { offsetInCU: 0x127D, offset: 0x91D64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2D50, symBinAddr: 0x62214, symSize: 0x44 } + - { offsetInCU: 0x1291, offset: 0x91D78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2D94, symBinAddr: 0x62258, symSize: 0x4 } + - { offsetInCU: 0x12A5, offset: 0x91D8C, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2D98, symBinAddr: 0x6225C, symSize: 0x4C } + - { offsetInCU: 0x12B9, offset: 0x91DA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x2E28, symBinAddr: 0x622A8, symSize: 0x4 } + - { offsetInCU: 0x12CD, offset: 0x91DB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x2E2C, symBinAddr: 0x622AC, symSize: 0x44 } + - { offsetInCU: 0x12E1, offset: 0x91DC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x2E80, symBinAddr: 0x622F0, symSize: 0x90 } + - { offsetInCU: 0x12F5, offset: 0x91DDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x2F10, symBinAddr: 0x62380, symSize: 0xBC } + - { offsetInCU: 0x1309, offset: 0x91DF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x2FCC, symBinAddr: 0x6243C, symSize: 0x8 } + - { offsetInCU: 0x131D, offset: 0x91E04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x2FD4, symBinAddr: 0x62444, symSize: 0x4 } + - { offsetInCU: 0x1331, offset: 0x91E18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x2FD8, symBinAddr: 0x62448, symSize: 0x8 } + - { offsetInCU: 0x1345, offset: 0x91E2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x2FE0, symBinAddr: 0x62450, symSize: 0x10 } + - { offsetInCU: 0x1359, offset: 0x91E40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x2FF0, symBinAddr: 0x62460, symSize: 0x90 } + - { offsetInCU: 0x136D, offset: 0x91E54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x3080, symBinAddr: 0x624F0, symSize: 0xBC } + - { offsetInCU: 0x1381, offset: 0x91E68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x313C, symBinAddr: 0x625AC, symSize: 0x8 } + - { offsetInCU: 0x1395, offset: 0x91E7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3144, symBinAddr: 0x625B4, symSize: 0x4 } + - { offsetInCU: 0x13A9, offset: 0x91E90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x3148, symBinAddr: 0x625B8, symSize: 0xC } + - { offsetInCU: 0x13BD, offset: 0x91EA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3154, symBinAddr: 0x625C4, symSize: 0x10 } + - { offsetInCU: 0x13D1, offset: 0x91EB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3164, symBinAddr: 0x625D4, symSize: 0x20 } + - { offsetInCU: 0x13E5, offset: 0x91ECC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x318C, symBinAddr: 0x625F4, symSize: 0xC } + - { offsetInCU: 0x13F9, offset: 0x91EE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3198, symBinAddr: 0x62600, symSize: 0x4 } + - { offsetInCU: 0x140D, offset: 0x91EF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x319C, symBinAddr: 0x62604, symSize: 0x44 } + - { offsetInCU: 0x1421, offset: 0x91F08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x31E0, symBinAddr: 0x62648, symSize: 0xC } + - { offsetInCU: 0x1435, offset: 0x91F1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x31EC, symBinAddr: 0x62654, symSize: 0x4 } + - { offsetInCU: 0x1449, offset: 0x91F30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x31F0, symBinAddr: 0x62658, symSize: 0x44 } + - { offsetInCU: 0x145D, offset: 0x91F44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3234, symBinAddr: 0x6269C, symSize: 0xC } + - { offsetInCU: 0x14D1, offset: 0x91FB8, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x34C4, symBinAddr: 0x628E8, symSize: 0x48 } + - { offsetInCU: 0x1530, offset: 0x92017, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4300, symBinAddr: 0x636C8, symSize: 0x3C } + - { offsetInCU: 0x1544, offset: 0x9202B, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x433C, symBinAddr: 0x63704, symSize: 0x24 } + - { offsetInCU: 0x1558, offset: 0x9203F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4394, symBinAddr: 0x6374C, symSize: 0x8 } + - { offsetInCU: 0x156C, offset: 0x92053, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x439C, symBinAddr: 0x63754, symSize: 0x10 } + - { offsetInCU: 0x1580, offset: 0x92067, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x43AC, symBinAddr: 0x63764, symSize: 0x8 } + - { offsetInCU: 0x1594, offset: 0x9207B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x440C, symBinAddr: 0x6376C, symSize: 0x8 } + - { offsetInCU: 0x15A8, offset: 0x9208F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x44C0, symBinAddr: 0x63820, symSize: 0x10 } + - { offsetInCU: 0x16A6, offset: 0x9218D, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x144, symBinAddr: 0x5F608, symSize: 0x134 } + - { offsetInCU: 0x1767, offset: 0x9224E, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x278, symBinAddr: 0x5F73C, symSize: 0xF0 } + - { offsetInCU: 0x1802, offset: 0x922E9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x368, symBinAddr: 0x5F82C, symSize: 0x90 } + - { offsetInCU: 0x19E2, offset: 0x924C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x5FD04, symSize: 0xC } + - { offsetInCU: 0x1A62, offset: 0x92549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x84C, symBinAddr: 0x5FD10, symSize: 0x8C } + - { offsetInCU: 0x1B16, offset: 0x925FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D8, symBinAddr: 0x5FD9C, symSize: 0x68 } + - { offsetInCU: 0x1B86, offset: 0x9266D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x940, symBinAddr: 0x5FE04, symSize: 0x88 } + - { offsetInCU: 0x1C1E, offset: 0x92705, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xACC, symBinAddr: 0x5FF90, symSize: 0xC } + - { offsetInCU: 0x1C9E, offset: 0x92785, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xAD8, symBinAddr: 0x5FF9C, symSize: 0x6C } + - { offsetInCU: 0x1D52, offset: 0x92839, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB44, symBinAddr: 0x60008, symSize: 0x48 } + - { offsetInCU: 0x1DC4, offset: 0x928AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x60050, symSize: 0x68 } + - { offsetInCU: 0x21B1, offset: 0x92C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5F504, symSize: 0x6C } + - { offsetInCU: 0x21E8, offset: 0x92CCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5F570, symSize: 0x28 } + - { offsetInCU: 0x2207, offset: 0x92CEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5F598, symSize: 0x48 } + - { offsetInCU: 0x223A, offset: 0x92D21, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x2252, offset: 0x92D39, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x2266, offset: 0x92D4D, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x227A, offset: 0x92D61, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x228E, offset: 0x92D75, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F5E0, symSize: 0x4 } + - { offsetInCU: 0x22AE, offset: 0x92D95, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x5F5E4, symSize: 0x24 } + - { offsetInCU: 0x2359, offset: 0x92E40, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x3F8, symBinAddr: 0x5F8BC, symSize: 0xC4 } + - { offsetInCU: 0x250C, offset: 0x92FF3, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2524, offset: 0x9300B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2544, offset: 0x9302B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2558, offset: 0x9303F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x256C, offset: 0x93053, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2580, offset: 0x93067, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F980, symSize: 0x48 } + - { offsetInCU: 0x2654, offset: 0x9313B, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x504, symBinAddr: 0x5F9C8, symSize: 0x88 } + - { offsetInCU: 0x2711, offset: 0x931F8, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x58C, symBinAddr: 0x5FA50, symSize: 0x80 } + - { offsetInCU: 0x27AC, offset: 0x93293, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x60C, symBinAddr: 0x5FAD0, symSize: 0xE4 } + - { offsetInCU: 0x2900, offset: 0x933E7, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x2918, offset: 0x933FF, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x292C, offset: 0x93413, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x2940, offset: 0x93427, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x2954, offset: 0x9343B, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5FBB4, symSize: 0x64 } + - { offsetInCU: 0x29D1, offset: 0x934B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x81C, symBinAddr: 0x5FCE0, symSize: 0x24 } + - { offsetInCU: 0x2A33, offset: 0x9351A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xA58, symBinAddr: 0x5FF1C, symSize: 0x74 } + - { offsetInCU: 0x2AE2, offset: 0x935C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1154, symBinAddr: 0x60618, symSize: 0x938 } + - { offsetInCU: 0x3090, offset: 0x93B77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1A8C, symBinAddr: 0x60F50, symSize: 0x654 } + - { offsetInCU: 0x33FF, offset: 0x93EE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x20E0, symBinAddr: 0x615A4, symSize: 0x470 } + - { offsetInCU: 0x35C8, offset: 0x940AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2550, symBinAddr: 0x61A14, symSize: 0x5FC } + - { offsetInCU: 0x3ACB, offset: 0x945B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2B4C, symBinAddr: 0x62010, symSize: 0x150 } + - { offsetInCU: 0x3BD7, offset: 0x946BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2C9C, symBinAddr: 0x62160, symSize: 0x2C } + - { offsetInCU: 0x3C10, offset: 0x946F7, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2D48, symBinAddr: 0x6220C, symSize: 0x4 } + - { offsetInCU: 0x3C3D, offset: 0x94724, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3284, symBinAddr: 0x626A8, symSize: 0x14 } + - { offsetInCU: 0x3C6D, offset: 0x94754, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3298, symBinAddr: 0x626BC, symSize: 0x14 } + - { offsetInCU: 0x3C9D, offset: 0x94784, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x32AC, symBinAddr: 0x626D0, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x94919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6383C, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x9492D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x639C4, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x94941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x63A68, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x94955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x63BC4, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x94969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x63DAC, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x9497D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x63E98, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x94991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x64020, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x949A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x640B8, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x949B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x64150, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x949CD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x641D8, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x949E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x6422C, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x949F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x64350, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x94A09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x643D4, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x94A1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x644C8, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x94A31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x64628, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x94A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x64704, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x94A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x6484C, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x94A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x648E4, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x94A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x649B0, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x94B0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x176C, symBinAddr: 0x64F68, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x94B6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1784, symBinAddr: 0x64F80, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x94BE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x64FAC, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x94C19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x6501C, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x94C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1844, symBinAddr: 0x65040, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x94C66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x6504C, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x94C82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2ED4, symBinAddr: 0x665D4, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x94D3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18AC, symBinAddr: 0x650A8, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x94D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x650BC, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x94DE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x65284, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x94E15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AD0, symBinAddr: 0x652CC, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x94E46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x652F0, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x94E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x652FC, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x94E7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30BC, symBinAddr: 0x667BC, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x94F2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B5C, symBinAddr: 0x65358, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x94F65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BA8, symBinAddr: 0x653A4, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x94F88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3210, symBinAddr: 0x66910, symSize: 0x294 } + - { offsetInCU: 0x716, offset: 0x94FEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23A4, symBinAddr: 0x65BA0, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x95021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23AC, symBinAddr: 0x65BA8, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x95052, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23D0, symBinAddr: 0x65BCC, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x9506E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23DC, symBinAddr: 0x65BD8, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x9508A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x34A4, symBinAddr: 0x66BA4, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x951E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2438, symBinAddr: 0x65C34, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x95209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x244C, symBinAddr: 0x65C48, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x9522D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2484, symBinAddr: 0x65C5C, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x95241, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24E8, symBinAddr: 0x65CA0, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x95255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x25B0, symBinAddr: 0x65D20, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x95269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2638, symBinAddr: 0x65D64, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x9527D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x2764, symBinAddr: 0x65E90, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x95291, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x27B8, symBinAddr: 0x65ED4, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x952A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2848, symBinAddr: 0x65F64, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x952B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2904, symBinAddr: 0x66020, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x952CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x290C, symBinAddr: 0x66028, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x952E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x2910, symBinAddr: 0x6602C, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x952F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2918, symBinAddr: 0x66034, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x95309, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2928, symBinAddr: 0x66044, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x9531D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x29B8, symBinAddr: 0x660D4, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x95331, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2A74, symBinAddr: 0x66190, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x95345, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2A78, symBinAddr: 0x66194, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x95359, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2A88, symBinAddr: 0x661A4, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x9536D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2AB8, symBinAddr: 0x661D4, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x95381, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2AE8, symBinAddr: 0x66204, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x95395, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2B44, symBinAddr: 0x66260, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x953A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2BF4, symBinAddr: 0x662F4, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x953BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2C58, symBinAddr: 0x66358, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x953D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2CB4, symBinAddr: 0x663B4, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x953E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2D14, symBinAddr: 0x66414, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x953F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D24, symBinAddr: 0x66424, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x9540D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D28, symBinAddr: 0x66428, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x95421, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D6C, symBinAddr: 0x6646C, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x95435, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D70, symBinAddr: 0x66470, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x95449, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DB4, symBinAddr: 0x664B4, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x9545D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DB8, symBinAddr: 0x664B8, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x95471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DFC, symBinAddr: 0x664FC, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x95485, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E00, symBinAddr: 0x66500, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x95499, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E44, symBinAddr: 0x66544, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x954AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E48, symBinAddr: 0x66548, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x954C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E8C, symBinAddr: 0x6658C, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x954D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E90, symBinAddr: 0x66590, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x954F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x37C0, symBinAddr: 0x66EC0, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x95508, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3804, symBinAddr: 0x66F04, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x9551C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x38D0, symBinAddr: 0x66FD0, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x95530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3960, symBinAddr: 0x67060, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x95544, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3A1C, symBinAddr: 0x6711C, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x95558, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3A20, symBinAddr: 0x67120, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x9556C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3A30, symBinAddr: 0x67130, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x95580, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3A34, symBinAddr: 0x67134, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x95594, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3A78, symBinAddr: 0x67178, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x955A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3A7C, symBinAddr: 0x6717C, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x955BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3AC0, symBinAddr: 0x671C0, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x955D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3AC4, symBinAddr: 0x671C4, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x955FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0x65058, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x9561A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1884, symBinAddr: 0x65080, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x9563C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B0C, symBinAddr: 0x65308, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x95658, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B34, symBinAddr: 0x65330, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x9567A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23E8, symBinAddr: 0x65BE4, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x95696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x65C0C, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x957A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x64A38, symSize: 0x200 } + - { offsetInCU: 0xF04, offset: 0x957DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x143C, symBinAddr: 0x64C38, symSize: 0x330 } + - { offsetInCU: 0xF7F, offset: 0x95855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18D4, symBinAddr: 0x650D0, symSize: 0x1AC } + - { offsetInCU: 0xFCA, offset: 0x958A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1BE8, symBinAddr: 0x653E4, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x958C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1C90, symBinAddr: 0x6548C, symSize: 0x264 } + - { offsetInCU: 0x1024, offset: 0x958FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1EF4, symBinAddr: 0x656F0, symSize: 0x424 } + - { offsetInCU: 0x27, offset: 0x95981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x67228, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x95A60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x67310, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x95A74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x67340, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x95A88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x67368, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x95A9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x673A4, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x95AB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x67410, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x95AC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x67454, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x95AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x6749C, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x95AEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x674DC, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x95BFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x67228, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x95C15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x67254, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x95C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x67288, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x95C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x67298, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x95C7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x6729C, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x95C93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x672C8, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x95CC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x672FC, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x95CEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x6730C, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x95D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x674EC, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x95D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x67784, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x95DBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6778C, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x95DD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6778C, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x95DEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x67674, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x95E03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x67678, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x95E37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x677A4, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x95E4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x67834, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x95E5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x678F0, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x95E73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x678F8, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x95E87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x678FC, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x95E9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x67904, symSize: 0x10 } + - { offsetInCU: 0x1BF, offset: 0x95ED6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x438, symBinAddr: 0x67914, symSize: 0x248 } + - { offsetInCU: 0x31A, offset: 0x96031, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x67650, symSize: 0x24 } + - { offsetInCU: 0x40E, offset: 0x96125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x676BC, symSize: 0x4C } + - { offsetInCU: 0x4E6, offset: 0x961FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x67708, symSize: 0x34 } + - { offsetInCU: 0x562, offset: 0x96279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x6773C, symSize: 0x48 } + - { offsetInCU: 0x6ED, offset: 0x96404, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x674EC, symSize: 0x14 } + - { offsetInCU: 0x70E, offset: 0x96425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x67500, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x964CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67B5C, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x96520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x67B80, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x96626, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67B5C, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x966B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1A40, symBinAddr: 0x84ED8, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x96C1E, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x67BD4, symSize: 0x4C } + - { offsetInCU: 0x5CF, offset: 0x96C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x67C20, symSize: 0x4C } + - { offsetInCU: 0x72F, offset: 0x96D96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1614, symBinAddr: 0x69148, symSize: 0x8 } + - { offsetInCU: 0x743, offset: 0x96DAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x161C, symBinAddr: 0x69150, symSize: 0x8 } + - { offsetInCU: 0x757, offset: 0x96DBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1624, symBinAddr: 0x69158, symSize: 0x8 } + - { offsetInCU: 0x76B, offset: 0x96DD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x162C, symBinAddr: 0x69160, symSize: 0x8 } + - { offsetInCU: 0x77F, offset: 0x96DE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1634, symBinAddr: 0x69168, symSize: 0x8 } + - { offsetInCU: 0x793, offset: 0x96DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x1698, symBinAddr: 0x69170, symSize: 0x20 } + - { offsetInCU: 0x7A7, offset: 0x96E0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOb', symObjAddr: 0x16B8, symBinAddr: 0x69190, symSize: 0x48 } + - { offsetInCU: 0x7BB, offset: 0x96E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOd', symObjAddr: 0x1700, symBinAddr: 0x691D8, symSize: 0x48 } + - { offsetInCU: 0x7CF, offset: 0x96E36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1884, symBinAddr: 0x6934C, symSize: 0x8 } + - { offsetInCU: 0x7E3, offset: 0x96E4A, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x188C, symBinAddr: 0x69354, symSize: 0x10 } + - { offsetInCU: 0x7F7, offset: 0x96E5E, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x189C, symBinAddr: 0x69364, symSize: 0x8 } + - { offsetInCU: 0x840, offset: 0x96EA7, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6936C, symSize: 0x10 } + - { offsetInCU: 0x85C, offset: 0x96EC3, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6936C, symSize: 0x10 } + - { offsetInCU: 0x870, offset: 0x96ED7, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18A4, symBinAddr: 0x6936C, symSize: 0x10 } + - { offsetInCU: 0x8AF, offset: 0x96F16, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x67BA0, symSize: 0x4 } + - { offsetInCU: 0x8CB, offset: 0x96F32, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x67BA4, symSize: 0x4 } + - { offsetInCU: 0x8E7, offset: 0x96F4E, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x67BA8, symSize: 0x4 } + - { offsetInCU: 0x903, offset: 0x96F6A, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x67BAC, symSize: 0x4 } + - { offsetInCU: 0x91F, offset: 0x96F86, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x67BB0, symSize: 0x4 } + - { offsetInCU: 0x93B, offset: 0x96FA2, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x67BB4, symSize: 0x4 } + - { offsetInCU: 0x957, offset: 0x96FBE, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x67BB8, symSize: 0x4 } + - { offsetInCU: 0x973, offset: 0x96FDA, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x67BBC, symSize: 0xC } + - { offsetInCU: 0x98F, offset: 0x96FF6, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x67BC8, symSize: 0xC } + - { offsetInCU: 0xBEF, offset: 0x97256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xCC, symBinAddr: 0x67C6C, symSize: 0x40 } + - { offsetInCU: 0xCB3, offset: 0x9731A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x10C, symBinAddr: 0x67CAC, symSize: 0x45C } + - { offsetInCU: 0xF32, offset: 0x97599, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x5B8, symBinAddr: 0x68118, symSize: 0x5C } + - { offsetInCU: 0xF98, offset: 0x975FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x614, symBinAddr: 0x68174, symSize: 0x5C } + - { offsetInCU: 0xFFE, offset: 0x97665, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x670, symBinAddr: 0x681D0, symSize: 0x5C } + - { offsetInCU: 0x1064, offset: 0x976CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x6CC, symBinAddr: 0x6822C, symSize: 0x5C } + - { offsetInCU: 0x10CA, offset: 0x97731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x728, symBinAddr: 0x68288, symSize: 0x5C } + - { offsetInCU: 0x1195, offset: 0x977FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x784, symBinAddr: 0x682E4, symSize: 0x44 } + - { offsetInCU: 0x11FF, offset: 0x97866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7C8, symBinAddr: 0x68328, symSize: 0x10 } + - { offsetInCU: 0x1231, offset: 0x97898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7C8, symBinAddr: 0x68328, symSize: 0x10 } + - { offsetInCU: 0x1260, offset: 0x978C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x7D8, symBinAddr: 0x68338, symSize: 0x54 } + - { offsetInCU: 0x12D7, offset: 0x9793E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x93C, symBinAddr: 0x6849C, symSize: 0x34 } + - { offsetInCU: 0x133A, offset: 0x979A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x970, symBinAddr: 0x684D0, symSize: 0x54 } + - { offsetInCU: 0x13B1, offset: 0x97A18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0x9C4, symBinAddr: 0x68524, symSize: 0x4C } + - { offsetInCU: 0x143D, offset: 0x97AA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA10, symBinAddr: 0x68570, symSize: 0x84 } + - { offsetInCU: 0x14D8, offset: 0x97B3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xA94, symBinAddr: 0x685F4, symSize: 0x74 } + - { offsetInCU: 0x1587, offset: 0x97BEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xB08, symBinAddr: 0x68668, symSize: 0x84 } + - { offsetInCU: 0x1622, offset: 0x97C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xB8C, symBinAddr: 0x686EC, symSize: 0x38 } + - { offsetInCU: 0x169F, offset: 0x97D06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBC4, symBinAddr: 0x68724, symSize: 0x38 } + - { offsetInCU: 0x171C, offset: 0x97D83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBFC, symBinAddr: 0x6875C, symSize: 0x38 } + - { offsetInCU: 0x179C, offset: 0x97E03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC34, symBinAddr: 0x68794, symSize: 0x38 } + - { offsetInCU: 0x181C, offset: 0x97E83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC6C, symBinAddr: 0x687CC, symSize: 0x38 } + - { offsetInCU: 0x189C, offset: 0x97F03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCA4, symBinAddr: 0x68804, symSize: 0x38 } + - { offsetInCU: 0x191C, offset: 0x97F83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCDC, symBinAddr: 0x6883C, symSize: 0x38 } + - { offsetInCU: 0x199C, offset: 0x98003, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xD14, symBinAddr: 0x68874, symSize: 0x38 } + - { offsetInCU: 0x19FC, offset: 0x98063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xD4C, symBinAddr: 0x688AC, symSize: 0x44 } + - { offsetInCU: 0x1A93, offset: 0x980FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xD90, symBinAddr: 0x688F0, symSize: 0x13C } + - { offsetInCU: 0x1B64, offset: 0x981CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xECC, symBinAddr: 0x68A2C, symSize: 0xAC } + - { offsetInCU: 0x1C36, offset: 0x9829D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0xF78, symBinAddr: 0x68AD8, symSize: 0x78 } + - { offsetInCU: 0x1CCC, offset: 0x98333, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0xFF0, symBinAddr: 0x68B50, symSize: 0x84 } + - { offsetInCU: 0x1CEF, offset: 0x98356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1074, symBinAddr: 0x68BD4, symSize: 0x20 } + - { offsetInCU: 0x1D34, offset: 0x9839B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x10C0, symBinAddr: 0x68BF4, symSize: 0x254 } + - { offsetInCU: 0x1E2F, offset: 0x98496, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1314, symBinAddr: 0x68E48, symSize: 0x300 } +... diff --git a/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml new file mode 100644 index 0000000..d1ef89a --- /dev/null +++ b/IoTConnect2/framework_AWS/xcframeworks/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml @@ -0,0 +1,1621 @@ +--- +triple: 'x86_64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' +relocations: + - { offsetInCU: 0x34, offset: 0x5A510, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x76800, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5A545, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x76838, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x5A5AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x40970, symBinAddr: 0x8D458, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x5A84A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB0F0, symBinAddr: 0xD540, symSize: 0x1BD0 } + - { offsetInCU: 0x1CEF, offset: 0x5C24A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x2510, symSize: 0x40 } + - { offsetInCU: 0x1EAB, offset: 0x5C406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1E50, symBinAddr: 0x42E0, symSize: 0x10 } + - { offsetInCU: 0x1EBF, offset: 0x5C41A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1E60, symBinAddr: 0x42F0, symSize: 0x30 } + - { offsetInCU: 0x1ED3, offset: 0x5C42E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1E90, symBinAddr: 0x4320, symSize: 0x220 } + - { offsetInCU: 0x2374, offset: 0x5C8CF, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x9E00, symBinAddr: 0xC280, symSize: 0x10 } + - { offsetInCU: 0x2388, offset: 0x5C8E3, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x9E10, symBinAddr: 0xC290, symSize: 0x10 } + - { offsetInCU: 0x239C, offset: 0x5C8F7, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x9E20, symBinAddr: 0xC2A0, symSize: 0x20 } + - { offsetInCU: 0x23B0, offset: 0x5C90B, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x9E40, symBinAddr: 0xC2C0, symSize: 0x30 } + - { offsetInCU: 0x25D5, offset: 0x5CB30, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xA4E0, symBinAddr: 0xC930, symSize: 0x20 } + - { offsetInCU: 0x25E9, offset: 0x5CB44, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xA500, symBinAddr: 0xC950, symSize: 0x20 } + - { offsetInCU: 0x25FD, offset: 0x5CB58, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xA550, symBinAddr: 0xC9A0, symSize: 0x20 } + - { offsetInCU: 0x2611, offset: 0x5CB6C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xA570, symBinAddr: 0xC9C0, symSize: 0x20 } + - { offsetInCU: 0x267A, offset: 0x5CBD5, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xA970, symBinAddr: 0xCDC0, symSize: 0x50 } + - { offsetInCU: 0x2CEF, offset: 0x5D24A, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xCE60, symBinAddr: 0xF2B0, symSize: 0x40 } + - { offsetInCU: 0x2D03, offset: 0x5D25E, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xCEA0, symBinAddr: 0xF2F0, symSize: 0x40 } + - { offsetInCU: 0x2D17, offset: 0x5D272, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xCEE0, symBinAddr: 0xF330, symSize: 0x30 } + - { offsetInCU: 0x2D2B, offset: 0x5D286, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xCF10, symBinAddr: 0xF360, symSize: 0x20 } + - { offsetInCU: 0x2D3F, offset: 0x5D29A, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xCF30, symBinAddr: 0xF380, symSize: 0x30 } + - { offsetInCU: 0x2D53, offset: 0x5D2AE, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xCFB0, symBinAddr: 0xF400, symSize: 0x30 } + - { offsetInCU: 0x2D67, offset: 0x5D2C2, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD170, symBinAddr: 0xF5C0, symSize: 0x20 } + - { offsetInCU: 0x2D7B, offset: 0x5D2D6, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD190, symBinAddr: 0xF5E0, symSize: 0x20 } + - { offsetInCU: 0x2D8F, offset: 0x5D2EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xD1B0, symBinAddr: 0xF600, symSize: 0x50 } + - { offsetInCU: 0x2DA3, offset: 0x5D2FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xD200, symBinAddr: 0xF650, symSize: 0x180 } + - { offsetInCU: 0x2DB7, offset: 0x5D312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xD380, symBinAddr: 0xF7D0, symSize: 0x2D0 } + - { offsetInCU: 0x2DCB, offset: 0x5D326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xD650, symBinAddr: 0xFAA0, symSize: 0x70 } + - { offsetInCU: 0x2DDF, offset: 0x5D33A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xD6C0, symBinAddr: 0xFB10, symSize: 0x30 } + - { offsetInCU: 0x2DF3, offset: 0x5D34E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xD6F0, symBinAddr: 0xFB40, symSize: 0xD0 } + - { offsetInCU: 0x2E07, offset: 0x5D362, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xD7C0, symBinAddr: 0xFC10, symSize: 0xB0 } + - { offsetInCU: 0x2E1B, offset: 0x5D376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xD870, symBinAddr: 0xFCC0, symSize: 0x20 } + - { offsetInCU: 0x2E2F, offset: 0x5D38A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xD890, symBinAddr: 0xFCE0, symSize: 0x30 } + - { offsetInCU: 0x2E43, offset: 0x5D39E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xD8F0, symBinAddr: 0xFD40, symSize: 0x50 } + - { offsetInCU: 0x2E57, offset: 0x5D3B2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xD9E0, symBinAddr: 0xFE30, symSize: 0x20 } + - { offsetInCU: 0x2E6B, offset: 0x5D3C6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xDA00, symBinAddr: 0xFE50, symSize: 0x20 } + - { offsetInCU: 0x2E7F, offset: 0x5D3DA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xDA20, symBinAddr: 0xFE70, symSize: 0x20 } + - { offsetInCU: 0x2E93, offset: 0x5D3EE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xDA40, symBinAddr: 0xFE90, symSize: 0x20 } + - { offsetInCU: 0x2EA7, offset: 0x5D402, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xDA60, symBinAddr: 0xFEB0, symSize: 0x20 } + - { offsetInCU: 0x2EBB, offset: 0x5D416, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xDA80, symBinAddr: 0xFED0, symSize: 0x20 } + - { offsetInCU: 0x2ECF, offset: 0x5D42A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xDAA0, symBinAddr: 0xFEF0, symSize: 0x20 } + - { offsetInCU: 0x3219, offset: 0x5D774, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x82B0, symBinAddr: 0xA740, symSize: 0x70 } + - { offsetInCU: 0x332D, offset: 0x5D888, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x9E90, symBinAddr: 0xC310, symSize: 0x80 } + - { offsetInCU: 0x33BE, offset: 0x5D919, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x9F10, symBinAddr: 0xC390, symSize: 0x80 } + - { offsetInCU: 0x345E, offset: 0x5D9B9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9F90, symBinAddr: 0xC410, symSize: 0x10 } + - { offsetInCU: 0x349C, offset: 0x5D9F7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x9FB0, symBinAddr: 0xC430, symSize: 0x10 } + - { offsetInCU: 0x34FF, offset: 0x5DA5A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x9FC0, symBinAddr: 0xC440, symSize: 0x10 } + - { offsetInCU: 0x35B0, offset: 0x5DB0B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x9FD0, symBinAddr: 0xC450, symSize: 0x10 } + - { offsetInCU: 0x3659, offset: 0x5DBB4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x9FE0, symBinAddr: 0xC460, symSize: 0x10 } + - { offsetInCU: 0x3700, offset: 0x5DC5B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x9FF0, symBinAddr: 0xC470, symSize: 0x30 } + - { offsetInCU: 0x3874, offset: 0x5DDCF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA020, symBinAddr: 0xC4A0, symSize: 0x30 } + - { offsetInCU: 0x397B, offset: 0x5DED6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA050, symBinAddr: 0xC4D0, symSize: 0x20 } + - { offsetInCU: 0x3A67, offset: 0x5DFC2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA070, symBinAddr: 0xC4F0, symSize: 0x10 } + - { offsetInCU: 0x3AA5, offset: 0x5E000, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA080, symBinAddr: 0xC500, symSize: 0x10 } + - { offsetInCU: 0x3AE3, offset: 0x5E03E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA090, symBinAddr: 0xC510, symSize: 0x10 } + - { offsetInCU: 0x3B3A, offset: 0x5E095, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA0A0, symBinAddr: 0xC520, symSize: 0x10 } + - { offsetInCU: 0x3BED, offset: 0x5E148, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA0B0, symBinAddr: 0xC530, symSize: 0x20 } + - { offsetInCU: 0x3C6E, offset: 0x5E1C9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA0D0, symBinAddr: 0xC550, symSize: 0x10 } + - { offsetInCU: 0x3D30, offset: 0x5E28B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA0E0, symBinAddr: 0xC560, symSize: 0x20 } + - { offsetInCU: 0x3DCA, offset: 0x5E325, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA100, symBinAddr: 0xC580, symSize: 0x10 } + - { offsetInCU: 0x3E32, offset: 0x5E38D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA110, symBinAddr: 0xC590, symSize: 0x20 } + - { offsetInCU: 0x3E4E, offset: 0x5E3A9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA130, symBinAddr: 0xC5B0, symSize: 0x10 } + - { offsetInCU: 0x3ECA, offset: 0x5E425, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA160, symBinAddr: 0xC5E0, symSize: 0x10 } + - { offsetInCU: 0x3EE6, offset: 0x5E441, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA170, symBinAddr: 0xC5F0, symSize: 0x10 } + - { offsetInCU: 0x3F17, offset: 0x5E472, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA180, symBinAddr: 0xC600, symSize: 0x10 } + - { offsetInCU: 0x3F48, offset: 0x5E4A3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA190, symBinAddr: 0xC610, symSize: 0x10 } + - { offsetInCU: 0x3F79, offset: 0x5E4D4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA1A0, symBinAddr: 0xC620, symSize: 0x30 } + - { offsetInCU: 0x3FA8, offset: 0x5E503, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA1D0, symBinAddr: 0xC650, symSize: 0x30 } + - { offsetInCU: 0x3FD9, offset: 0x5E534, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA200, symBinAddr: 0xC680, symSize: 0x30 } + - { offsetInCU: 0x400A, offset: 0x5E565, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA230, symBinAddr: 0xC6B0, symSize: 0x10 } + - { offsetInCU: 0x403B, offset: 0x5E596, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA240, symBinAddr: 0xC6C0, symSize: 0x10 } + - { offsetInCU: 0x406C, offset: 0x5E5C7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA250, symBinAddr: 0xC6D0, symSize: 0x10 } + - { offsetInCU: 0x409D, offset: 0x5E5F8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA260, symBinAddr: 0xC6E0, symSize: 0x20 } + - { offsetInCU: 0x40CE, offset: 0x5E629, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA280, symBinAddr: 0xC700, symSize: 0x20 } + - { offsetInCU: 0x40FF, offset: 0x5E65A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA2A0, symBinAddr: 0xC720, symSize: 0x10 } + - { offsetInCU: 0x4130, offset: 0x5E68B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA2B0, symBinAddr: 0xC730, symSize: 0x20 } + - { offsetInCU: 0x4161, offset: 0x5E6BC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA2D0, symBinAddr: 0xC750, symSize: 0x10 } + - { offsetInCU: 0x4192, offset: 0x5E6ED, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA2E0, symBinAddr: 0xC760, symSize: 0x20 } + - { offsetInCU: 0x41AE, offset: 0x5E709, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA300, symBinAddr: 0xC780, symSize: 0x10 } + - { offsetInCU: 0x41FE, offset: 0x5E759, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA330, symBinAddr: 0xC7B0, symSize: 0x30 } + - { offsetInCU: 0x4286, offset: 0x5E7E1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA360, symBinAddr: 0xC7E0, symSize: 0x60 } + - { offsetInCU: 0x430A, offset: 0x5E865, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA420, symBinAddr: 0xC8A0, symSize: 0x10 } + - { offsetInCU: 0x4326, offset: 0x5E881, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA430, symBinAddr: 0xC8B0, symSize: 0x10 } + - { offsetInCU: 0x4351, offset: 0x5E8AC, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xA440, symBinAddr: 0xC8C0, symSize: 0x40 } + - { offsetInCU: 0x43DF, offset: 0x5E93A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xA4B0, symBinAddr: 0xC900, symSize: 0x30 } + - { offsetInCU: 0x4410, offset: 0x5E96B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA590, symBinAddr: 0xC9E0, symSize: 0x10 } + - { offsetInCU: 0x4447, offset: 0x5E9A2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xA5A0, symBinAddr: 0xC9F0, symSize: 0x30 } + - { offsetInCU: 0x4487, offset: 0x5E9E2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA5D0, symBinAddr: 0xCA20, symSize: 0x80 } + - { offsetInCU: 0x4549, offset: 0x5EAA4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xA6E0, symBinAddr: 0xCB30, symSize: 0x70 } + - { offsetInCU: 0x4591, offset: 0x5EAEC, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0xAD70, symBinAddr: 0xD1C0, symSize: 0xB0 } + - { offsetInCU: 0x4669, offset: 0x5EBC4, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xAE20, symBinAddr: 0xD270, symSize: 0x190 } + - { offsetInCU: 0x4906, offset: 0x5EE61, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xCCC0, symBinAddr: 0xF110, symSize: 0xD0 } + - { offsetInCU: 0x4A68, offset: 0x5EFC3, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xCD90, symBinAddr: 0xF1E0, symSize: 0xD0 } + - { offsetInCU: 0x4D21, offset: 0x5F27C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA680, symBinAddr: 0xCAD0, symSize: 0x40 } + - { offsetInCU: 0x4D4A, offset: 0x5F2A5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA6C0, symBinAddr: 0xCB10, symSize: 0x20 } + - { offsetInCU: 0x4D85, offset: 0x5F2E0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xA660, symBinAddr: 0xCAB0, symSize: 0x10 } + - { offsetInCU: 0x4DA1, offset: 0x5F2FC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xA670, symBinAddr: 0xCAC0, symSize: 0x10 } + - { offsetInCU: 0x4DCF, offset: 0x5F32A, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xA650, symBinAddr: 0xCAA0, symSize: 0x10 } + - { offsetInCU: 0x4EA7, offset: 0x5F402, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x9FA0, symBinAddr: 0xC420, symSize: 0x10 } + - { offsetInCU: 0x4ECA, offset: 0x5F425, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA140, symBinAddr: 0xC5C0, symSize: 0x10 } + - { offsetInCU: 0x4EE6, offset: 0x5F441, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA150, symBinAddr: 0xC5D0, symSize: 0x10 } + - { offsetInCU: 0x4F4C, offset: 0x5F4A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xC0, symBinAddr: 0x2550, symSize: 0x40 } + - { offsetInCU: 0x4F60, offset: 0x5F4BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x2590, symSize: 0x10 } + - { offsetInCU: 0x4F88, offset: 0x5F4E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x110, symBinAddr: 0x25A0, symSize: 0x320 } + - { offsetInCU: 0x50B7, offset: 0x5F612, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x430, symBinAddr: 0x28C0, symSize: 0x13A0 } + - { offsetInCU: 0x53B8, offset: 0x5F913, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x17D0, symBinAddr: 0x3C60, symSize: 0x660 } + - { offsetInCU: 0x542F, offset: 0x5F98A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1E30, symBinAddr: 0x42C0, symSize: 0x20 } + - { offsetInCU: 0x5459, offset: 0x5F9B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x20B0, symBinAddr: 0x4540, symSize: 0x310 } + - { offsetInCU: 0x558B, offset: 0x5FAE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x23C0, symBinAddr: 0x4850, symSize: 0x480 } + - { offsetInCU: 0x5834, offset: 0x5FD8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2840, symBinAddr: 0x4CD0, symSize: 0x8E0 } + - { offsetInCU: 0x5DF5, offset: 0x60350, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3120, symBinAddr: 0x55B0, symSize: 0x620 } + - { offsetInCU: 0x61D8, offset: 0x60733, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3740, symBinAddr: 0x5BD0, symSize: 0x4B70 } + - { offsetInCU: 0x7228, offset: 0x61783, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8330, symBinAddr: 0xA7B0, symSize: 0x190 } + - { offsetInCU: 0x72F1, offset: 0x6184C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x84C0, symBinAddr: 0xA940, symSize: 0x3B0 } + - { offsetInCU: 0x7555, offset: 0x61AB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8870, symBinAddr: 0xACF0, symSize: 0x480 } + - { offsetInCU: 0x78D9, offset: 0x61E34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8CF0, symBinAddr: 0xB170, symSize: 0x330 } + - { offsetInCU: 0x7A7E, offset: 0x61FD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x92E0, symBinAddr: 0xB760, symSize: 0x380 } + - { offsetInCU: 0x7BA1, offset: 0x620FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x9660, symBinAddr: 0xBAE0, symSize: 0x560 } + - { offsetInCU: 0x7E14, offset: 0x6236F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x9BC0, symBinAddr: 0xC040, symSize: 0x1C0 } + - { offsetInCU: 0x8118, offset: 0x62673, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xA750, symBinAddr: 0xCBA0, symSize: 0x220 } + - { offsetInCU: 0x81B1, offset: 0x6270C, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xAB10, symBinAddr: 0xCF60, symSize: 0x260 } + - { offsetInCU: 0x27, offset: 0x62A1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xFF40, symSize: 0x20 } + - { offsetInCU: 0x62, offset: 0x62A5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0xFF60, symSize: 0x14 } + - { offsetInCU: 0x149, offset: 0x62B41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xFF40, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x62BAC, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0xFFB0, symSize: 0x10 } + - { offsetInCU: 0x57, offset: 0x62BC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0xFFF0, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x62C32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x150, symBinAddr: 0x100D0, symSize: 0x10 } + - { offsetInCU: 0x11C, offset: 0x62C85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x170, symBinAddr: 0x100F0, symSize: 0x20 } + - { offsetInCU: 0x196, offset: 0x62CFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0x10120, symSize: 0x10 } + - { offsetInCU: 0x1CB, offset: 0x62D34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B0, symBinAddr: 0x10130, symSize: 0x20 } + - { offsetInCU: 0x1FC, offset: 0x62D65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D0, symBinAddr: 0x10150, symSize: 0x10 } + - { offsetInCU: 0x218, offset: 0x62D81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E0, symBinAddr: 0x10160, symSize: 0x10 } + - { offsetInCU: 0x234, offset: 0x62D9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x25B0, symBinAddr: 0x12530, symSize: 0x370 } + - { offsetInCU: 0x3E4, offset: 0x62F4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1520, symBinAddr: 0x114A0, symSize: 0x50 } + - { offsetInCU: 0x41B, offset: 0x62F84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1570, symBinAddr: 0x114F0, symSize: 0x50 } + - { offsetInCU: 0x43E, offset: 0x62FA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2920, symBinAddr: 0x128A0, symSize: 0x14F0 } + - { offsetInCU: 0x49C, offset: 0x63005, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C0, symBinAddr: 0x11540, symSize: 0x10 } + - { offsetInCU: 0x4F4, offset: 0x6305D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x15D0, symBinAddr: 0x11550, symSize: 0x30 } + - { offsetInCU: 0x5D8, offset: 0x63141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1600, symBinAddr: 0x11580, symSize: 0x20 } + - { offsetInCU: 0x64A, offset: 0x631B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1650, symBinAddr: 0x115D0, symSize: 0x20 } + - { offsetInCU: 0x699, offset: 0x63202, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1670, symBinAddr: 0x115F0, symSize: 0x70 } + - { offsetInCU: 0x6F3, offset: 0x6325C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x11660, symSize: 0x10 } + - { offsetInCU: 0x70F, offset: 0x63278, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x11670, symSize: 0x10 } + - { offsetInCU: 0x74C, offset: 0x632B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x116C0, symSize: 0x50 } + - { offsetInCU: 0x783, offset: 0x632EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x11710, symSize: 0x50 } + - { offsetInCU: 0x7A6, offset: 0x6330F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3E10, symBinAddr: 0x13D90, symSize: 0x3A0 } + - { offsetInCU: 0x841, offset: 0x633AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x11780, symSize: 0x70 } + - { offsetInCU: 0x876, offset: 0x633DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1870, symBinAddr: 0x117F0, symSize: 0x20 } + - { offsetInCU: 0x8A7, offset: 0x63410, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1890, symBinAddr: 0x11810, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x6342C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18A0, symBinAddr: 0x11820, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x63448, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6630, symBinAddr: 0x16560, symSize: 0x170 } + - { offsetInCU: 0x9A8, offset: 0x63511, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x11870, symSize: 0x50 } + - { offsetInCU: 0x9DF, offset: 0x63548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1940, symBinAddr: 0x118C0, symSize: 0x50 } + - { offsetInCU: 0xA02, offset: 0x6356B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x67A0, symBinAddr: 0x166D0, symSize: 0x320 } + - { offsetInCU: 0xA71, offset: 0x635DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x19B0, symBinAddr: 0x11930, symSize: 0x70 } + - { offsetInCU: 0xAA6, offset: 0x6360F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x119A0, symSize: 0x20 } + - { offsetInCU: 0xAD7, offset: 0x63640, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x119C0, symSize: 0x10 } + - { offsetInCU: 0xAF3, offset: 0x6365C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x119D0, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x63678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6AC0, symBinAddr: 0x169F0, symSize: 0x130 } + - { offsetInCU: 0xBBF, offset: 0x63728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x11A20, symSize: 0x40 } + - { offsetInCU: 0xBF6, offset: 0x6375F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AE0, symBinAddr: 0x11A60, symSize: 0x40 } + - { offsetInCU: 0xC19, offset: 0x63782, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6BF0, symBinAddr: 0x16B20, symSize: 0x310 } + - { offsetInCU: 0xC7C, offset: 0x637E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B40, symBinAddr: 0x11AC0, symSize: 0x60 } + - { offsetInCU: 0xCB1, offset: 0x6381A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x11B20, symSize: 0x20 } + - { offsetInCU: 0xCE2, offset: 0x6384B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC0, symBinAddr: 0x11B40, symSize: 0x10 } + - { offsetInCU: 0xCFE, offset: 0x63867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x11B50, symSize: 0x10 } + - { offsetInCU: 0xD1A, offset: 0x63883, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6F00, symBinAddr: 0x16E30, symSize: 0x130 } + - { offsetInCU: 0xDCA, offset: 0x63933, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C20, symBinAddr: 0x11BA0, symSize: 0x50 } + - { offsetInCU: 0xE01, offset: 0x6396A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C70, symBinAddr: 0x11BF0, symSize: 0x50 } + - { offsetInCU: 0xE24, offset: 0x6398D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7030, symBinAddr: 0x16F60, symSize: 0x580 } + - { offsetInCU: 0xE93, offset: 0x639FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0x11C60, symSize: 0x90 } + - { offsetInCU: 0xEC8, offset: 0x63A31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D70, symBinAddr: 0x11CF0, symSize: 0x20 } + - { offsetInCU: 0xEF9, offset: 0x63A62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D90, symBinAddr: 0x11D10, symSize: 0x10 } + - { offsetInCU: 0xF15, offset: 0x63A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DA0, symBinAddr: 0x11D20, symSize: 0x10 } + - { offsetInCU: 0xF31, offset: 0x63A9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7640, symBinAddr: 0x17570, symSize: 0x220 } + - { offsetInCU: 0x1045, offset: 0x63BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DF0, symBinAddr: 0x11D70, symSize: 0x60 } + - { offsetInCU: 0x107C, offset: 0x63BE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E50, symBinAddr: 0x11DD0, symSize: 0x70 } + - { offsetInCU: 0x109F, offset: 0x63C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7860, symBinAddr: 0x17790, symSize: 0x660 } + - { offsetInCU: 0x112C, offset: 0x63C95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1EC0, symBinAddr: 0x11E40, symSize: 0x10 } + - { offsetInCU: 0x11A4, offset: 0x63D0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1ED0, symBinAddr: 0x11E50, symSize: 0x40 } + - { offsetInCU: 0x1288, offset: 0x63DF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1F10, symBinAddr: 0x11E90, symSize: 0x20 } + - { offsetInCU: 0x130E, offset: 0x63E77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F70, symBinAddr: 0x11EF0, symSize: 0x30 } + - { offsetInCU: 0x1358, offset: 0x63EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FA0, symBinAddr: 0x11F20, symSize: 0x20 } + - { offsetInCU: 0x1389, offset: 0x63EF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FC0, symBinAddr: 0x11F40, symSize: 0x10 } + - { offsetInCU: 0x13A5, offset: 0x63F0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FD0, symBinAddr: 0x11F50, symSize: 0x10 } + - { offsetInCU: 0x13C1, offset: 0x63F2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7EF0, symBinAddr: 0x17E20, symSize: 0xB0 } + - { offsetInCU: 0x143F, offset: 0x63FA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2020, symBinAddr: 0x11FA0, symSize: 0x30 } + - { offsetInCU: 0x1476, offset: 0x63FDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2050, symBinAddr: 0x11FD0, symSize: 0x20 } + - { offsetInCU: 0x1499, offset: 0x64002, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x17ED0, symSize: 0x180 } + - { offsetInCU: 0x1514, offset: 0x6407D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x2090, symBinAddr: 0x12010, symSize: 0x80 } + - { offsetInCU: 0x1549, offset: 0x640B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2110, symBinAddr: 0x12090, symSize: 0x20 } + - { offsetInCU: 0x157A, offset: 0x640E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x2130, symBinAddr: 0x120B0, symSize: 0x10 } + - { offsetInCU: 0x1596, offset: 0x640FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x120C0, symSize: 0x10 } + - { offsetInCU: 0x15B2, offset: 0x6411B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x8150, symBinAddr: 0x18080, symSize: 0x1F0 } + - { offsetInCU: 0x16AD, offset: 0x64216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2190, symBinAddr: 0x12110, symSize: 0x50 } + - { offsetInCU: 0x16E4, offset: 0x6424D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21E0, symBinAddr: 0x12160, symSize: 0x50 } + - { offsetInCU: 0x1707, offset: 0x64270, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x18270, symSize: 0x3A0 } + - { offsetInCU: 0x176A, offset: 0x642D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2250, symBinAddr: 0x121D0, symSize: 0x80 } + - { offsetInCU: 0x179F, offset: 0x64308, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x22D0, symBinAddr: 0x12250, symSize: 0x20 } + - { offsetInCU: 0x17D0, offset: 0x64339, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22F0, symBinAddr: 0x12270, symSize: 0x10 } + - { offsetInCU: 0x17EC, offset: 0x64355, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2300, symBinAddr: 0x12280, symSize: 0x10 } + - { offsetInCU: 0x1808, offset: 0x64371, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x86E0, symBinAddr: 0x18610, symSize: 0x1A0 } + - { offsetInCU: 0x18EA, offset: 0x64453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2350, symBinAddr: 0x122D0, symSize: 0x50 } + - { offsetInCU: 0x1921, offset: 0x6448A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A0, symBinAddr: 0x12320, symSize: 0x50 } + - { offsetInCU: 0x1944, offset: 0x644AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8880, symBinAddr: 0x187B0, symSize: 0x3D0 } + - { offsetInCU: 0x19C7, offset: 0x64530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x12410, symSize: 0x20 } + - { offsetInCU: 0x1A11, offset: 0x6457A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24B0, symBinAddr: 0x12430, symSize: 0x20 } + - { offsetInCU: 0x1A42, offset: 0x645AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24D0, symBinAddr: 0x12450, symSize: 0x10 } + - { offsetInCU: 0x1A5E, offset: 0x645C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24E0, symBinAddr: 0x12460, symSize: 0x10 } + - { offsetInCU: 0x1A7A, offset: 0x645E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8CB0, symBinAddr: 0x18BE0, symSize: 0xF0 } + - { offsetInCU: 0x1B11, offset: 0x6467A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2530, symBinAddr: 0x124B0, symSize: 0x40 } + - { offsetInCU: 0x1B48, offset: 0x646B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2570, symBinAddr: 0x124F0, symSize: 0x40 } + - { offsetInCU: 0x1B6B, offset: 0x646D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DA0, symBinAddr: 0x18CD0, symSize: 0x1C0 } + - { offsetInCU: 0x1BA8, offset: 0x64711, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x41F0, symBinAddr: 0x14130, symSize: 0x30 } + - { offsetInCU: 0x1BBC, offset: 0x64725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x4220, symBinAddr: 0x14160, symSize: 0x30 } + - { offsetInCU: 0x1BD0, offset: 0x64739, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x4250, symBinAddr: 0x14190, symSize: 0x30 } + - { offsetInCU: 0x1BE4, offset: 0x6474D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x4280, symBinAddr: 0x141C0, symSize: 0x30 } + - { offsetInCU: 0x1BF8, offset: 0x64761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x42B0, symBinAddr: 0x141F0, symSize: 0x30 } + - { offsetInCU: 0x1C0C, offset: 0x64775, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x42E0, symBinAddr: 0x14220, symSize: 0x10 } + - { offsetInCU: 0x1C20, offset: 0x64789, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4300, symBinAddr: 0x14230, symSize: 0x50 } + - { offsetInCU: 0x1C34, offset: 0x6479D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4350, symBinAddr: 0x14280, symSize: 0xA0 } + - { offsetInCU: 0x1C48, offset: 0x647B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x43F0, symBinAddr: 0x14320, symSize: 0x10 } + - { offsetInCU: 0x1C5C, offset: 0x647C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4400, symBinAddr: 0x14330, symSize: 0x10 } + - { offsetInCU: 0x1C70, offset: 0x647D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4410, symBinAddr: 0x14340, symSize: 0x10 } + - { offsetInCU: 0x1C84, offset: 0x647ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4420, symBinAddr: 0x14350, symSize: 0x10 } + - { offsetInCU: 0x1C98, offset: 0x64801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x4430, symBinAddr: 0x14360, symSize: 0x30 } + - { offsetInCU: 0x1CAC, offset: 0x64815, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x5180, symBinAddr: 0x150B0, symSize: 0x10 } + - { offsetInCU: 0x1CC0, offset: 0x64829, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5190, symBinAddr: 0x150C0, symSize: 0x10 } + - { offsetInCU: 0x1CD4, offset: 0x6483D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x51A0, symBinAddr: 0x150D0, symSize: 0x30 } + - { offsetInCU: 0x1CE8, offset: 0x64851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x51D0, symBinAddr: 0x15100, symSize: 0x10 } + - { offsetInCU: 0x1CFC, offset: 0x64865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x51E0, symBinAddr: 0x15110, symSize: 0x30 } + - { offsetInCU: 0x1D10, offset: 0x64879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5210, symBinAddr: 0x15140, symSize: 0x10 } + - { offsetInCU: 0x1D24, offset: 0x6488D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x5220, symBinAddr: 0x15150, symSize: 0x30 } + - { offsetInCU: 0x1D38, offset: 0x648A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x5250, symBinAddr: 0x15180, symSize: 0x30 } + - { offsetInCU: 0x1D4C, offset: 0x648B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x5280, symBinAddr: 0x151B0, symSize: 0x30 } + - { offsetInCU: 0x1D60, offset: 0x648C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x52B0, symBinAddr: 0x151E0, symSize: 0x30 } + - { offsetInCU: 0x1D74, offset: 0x648DD, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x52E0, symBinAddr: 0x15210, symSize: 0x40 } + - { offsetInCU: 0x1D88, offset: 0x648F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x5320, symBinAddr: 0x15250, symSize: 0x30 } + - { offsetInCU: 0x1D9C, offset: 0x64905, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x5350, symBinAddr: 0x15280, symSize: 0x30 } + - { offsetInCU: 0x1DB0, offset: 0x64919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x5380, symBinAddr: 0x152B0, symSize: 0x30 } + - { offsetInCU: 0x1DC4, offset: 0x6492D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x53B0, symBinAddr: 0x152E0, symSize: 0x30 } + - { offsetInCU: 0x1DD8, offset: 0x64941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x53E0, symBinAddr: 0x15310, symSize: 0x30 } + - { offsetInCU: 0x1DEC, offset: 0x64955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x5410, symBinAddr: 0x15340, symSize: 0x30 } + - { offsetInCU: 0x1E00, offset: 0x64969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x5440, symBinAddr: 0x15370, symSize: 0x30 } + - { offsetInCU: 0x1E14, offset: 0x6497D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x5470, symBinAddr: 0x153A0, symSize: 0x30 } + - { offsetInCU: 0x1E28, offset: 0x64991, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x54A0, symBinAddr: 0x153D0, symSize: 0x10 } + - { offsetInCU: 0x1E3C, offset: 0x649A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x54B0, symBinAddr: 0x153E0, symSize: 0x80 } + - { offsetInCU: 0x1E50, offset: 0x649B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x5530, symBinAddr: 0x15460, symSize: 0xD0 } + - { offsetInCU: 0x1E64, offset: 0x649CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x5600, symBinAddr: 0x15530, symSize: 0x10 } + - { offsetInCU: 0x1E78, offset: 0x649E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x5610, symBinAddr: 0x15540, symSize: 0x10 } + - { offsetInCU: 0x1E8C, offset: 0x649F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x5620, symBinAddr: 0x15550, symSize: 0x10 } + - { offsetInCU: 0x1EA0, offset: 0x64A09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x5630, symBinAddr: 0x15560, symSize: 0x10 } + - { offsetInCU: 0x1EB4, offset: 0x64A1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x5640, symBinAddr: 0x15570, symSize: 0x30 } + - { offsetInCU: 0x1EC8, offset: 0x64A31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x5670, symBinAddr: 0x155A0, symSize: 0x40 } + - { offsetInCU: 0x1EDC, offset: 0x64A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x56B0, symBinAddr: 0x155E0, symSize: 0x70 } + - { offsetInCU: 0x1EF0, offset: 0x64A59, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5720, symBinAddr: 0x15650, symSize: 0x20 } + - { offsetInCU: 0x1F04, offset: 0x64A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x5740, symBinAddr: 0x15670, symSize: 0x50 } + - { offsetInCU: 0x1F18, offset: 0x64A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x5790, symBinAddr: 0x156C0, symSize: 0x40 } + - { offsetInCU: 0x1F2C, offset: 0x64A95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x57D0, symBinAddr: 0x15700, symSize: 0x40 } + - { offsetInCU: 0x1F40, offset: 0x64AA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x5810, symBinAddr: 0x15740, symSize: 0x10 } + - { offsetInCU: 0x1F54, offset: 0x64ABD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x5820, symBinAddr: 0x15750, symSize: 0x40 } + - { offsetInCU: 0x1F68, offset: 0x64AD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5860, symBinAddr: 0x15790, symSize: 0x80 } + - { offsetInCU: 0x1F7C, offset: 0x64AE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x58E0, symBinAddr: 0x15810, symSize: 0xB0 } + - { offsetInCU: 0x1F90, offset: 0x64AF9, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5990, symBinAddr: 0x158C0, symSize: 0x30 } + - { offsetInCU: 0x1FA4, offset: 0x64B0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x59C0, symBinAddr: 0x158F0, symSize: 0x80 } + - { offsetInCU: 0x1FB8, offset: 0x64B21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5A40, symBinAddr: 0x15970, symSize: 0x40 } + - { offsetInCU: 0x1FCC, offset: 0x64B35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5A80, symBinAddr: 0x159B0, symSize: 0x50 } + - { offsetInCU: 0x1FE0, offset: 0x64B49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x5AD0, symBinAddr: 0x15A00, symSize: 0x10 } + - { offsetInCU: 0x1FF4, offset: 0x64B5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x5AE0, symBinAddr: 0x15A10, symSize: 0x30 } + - { offsetInCU: 0x2008, offset: 0x64B71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x5B10, symBinAddr: 0x15A40, symSize: 0x40 } + - { offsetInCU: 0x201C, offset: 0x64B85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5B50, symBinAddr: 0x15A80, symSize: 0x60 } + - { offsetInCU: 0x2030, offset: 0x64B99, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5BB0, symBinAddr: 0x15AE0, symSize: 0x20 } + - { offsetInCU: 0x2044, offset: 0x64BAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5BD0, symBinAddr: 0x15B00, symSize: 0x50 } + - { offsetInCU: 0x2058, offset: 0x64BC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5C20, symBinAddr: 0x15B50, symSize: 0x40 } + - { offsetInCU: 0x206C, offset: 0x64BD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x5C60, symBinAddr: 0x15B90, symSize: 0x50 } + - { offsetInCU: 0x2080, offset: 0x64BE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5CB0, symBinAddr: 0x15BE0, symSize: 0x10 } + - { offsetInCU: 0x2094, offset: 0x64BFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x5CC0, symBinAddr: 0x15BF0, symSize: 0x50 } + - { offsetInCU: 0x20A8, offset: 0x64C11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x5D10, symBinAddr: 0x15C40, symSize: 0xE0 } + - { offsetInCU: 0x20BC, offset: 0x64C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5DF0, symBinAddr: 0x15D20, symSize: 0x110 } + - { offsetInCU: 0x20D0, offset: 0x64C39, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5F00, symBinAddr: 0x15E30, symSize: 0x50 } + - { offsetInCU: 0x20E4, offset: 0x64C4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5F50, symBinAddr: 0x15E80, symSize: 0xD0 } + - { offsetInCU: 0x20F8, offset: 0x64C61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x6020, symBinAddr: 0x15F50, symSize: 0x40 } + - { offsetInCU: 0x210C, offset: 0x64C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x6060, symBinAddr: 0x15F90, symSize: 0x60 } + - { offsetInCU: 0x2120, offset: 0x64C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x60C0, symBinAddr: 0x15FF0, symSize: 0x10 } + - { offsetInCU: 0x2134, offset: 0x64C9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x60D0, symBinAddr: 0x16000, symSize: 0x60 } + - { offsetInCU: 0x2148, offset: 0x64CB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x6130, symBinAddr: 0x16060, symSize: 0x110 } + - { offsetInCU: 0x215C, offset: 0x64CC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x6240, symBinAddr: 0x16170, symSize: 0x160 } + - { offsetInCU: 0x2170, offset: 0x64CD9, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x63A0, symBinAddr: 0x162D0, symSize: 0x10 } + - { offsetInCU: 0x2184, offset: 0x64CED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x63B0, symBinAddr: 0x162E0, symSize: 0x100 } + - { offsetInCU: 0x2198, offset: 0x64D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x64B0, symBinAddr: 0x163E0, symSize: 0x40 } + - { offsetInCU: 0x21AC, offset: 0x64D15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x64F0, symBinAddr: 0x16420, symSize: 0x70 } + - { offsetInCU: 0x21C0, offset: 0x64D29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x6560, symBinAddr: 0x16490, symSize: 0x10 } + - { offsetInCU: 0x21D4, offset: 0x64D3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x6570, symBinAddr: 0x164A0, symSize: 0x10 } + - { offsetInCU: 0x21E8, offset: 0x64D51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x6580, symBinAddr: 0x164B0, symSize: 0x30 } + - { offsetInCU: 0x21FC, offset: 0x64D65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x65B0, symBinAddr: 0x164E0, symSize: 0x10 } + - { offsetInCU: 0x2210, offset: 0x64D79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x65C0, symBinAddr: 0x164F0, symSize: 0x30 } + - { offsetInCU: 0x2224, offset: 0x64D8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x65F0, symBinAddr: 0x16520, symSize: 0x10 } + - { offsetInCU: 0x2238, offset: 0x64DA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x6600, symBinAddr: 0x16530, symSize: 0x30 } + - { offsetInCU: 0x224C, offset: 0x64DB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x75B0, symBinAddr: 0x174E0, symSize: 0x30 } + - { offsetInCU: 0x2260, offset: 0x64DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x75E0, symBinAddr: 0x17510, symSize: 0x30 } + - { offsetInCU: 0x2274, offset: 0x64DDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x7610, symBinAddr: 0x17540, symSize: 0x30 } + - { offsetInCU: 0x2288, offset: 0x64DF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7EC0, symBinAddr: 0x17DF0, symSize: 0x30 } + - { offsetInCU: 0x229C, offset: 0x64E05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8120, symBinAddr: 0x18050, symSize: 0x30 } + - { offsetInCU: 0x22B0, offset: 0x64E19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8C50, symBinAddr: 0x18B80, symSize: 0x30 } + - { offsetInCU: 0x22C4, offset: 0x64E2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8C80, symBinAddr: 0x18BB0, symSize: 0x30 } + - { offsetInCU: 0x22D8, offset: 0x64E41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8F60, symBinAddr: 0x18E90, symSize: 0x30 } + - { offsetInCU: 0x22EC, offset: 0x64E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8F90, symBinAddr: 0x18EC0, symSize: 0x30 } + - { offsetInCU: 0x2300, offset: 0x64E69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x8FC0, symBinAddr: 0x18EF0, symSize: 0x30 } + - { offsetInCU: 0x2314, offset: 0x64E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x9050, symBinAddr: 0x18F80, symSize: 0x30 } + - { offsetInCU: 0x2328, offset: 0x64E91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9080, symBinAddr: 0x18FB0, symSize: 0x80 } + - { offsetInCU: 0x233C, offset: 0x64EA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9100, symBinAddr: 0x19030, symSize: 0xD0 } + - { offsetInCU: 0x2350, offset: 0x64EB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x91D0, symBinAddr: 0x19100, symSize: 0x10 } + - { offsetInCU: 0x2364, offset: 0x64ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x91E0, symBinAddr: 0x19110, symSize: 0x10 } + - { offsetInCU: 0x2378, offset: 0x64EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x91F0, symBinAddr: 0x19120, symSize: 0x80 } + - { offsetInCU: 0x238C, offset: 0x64EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9270, symBinAddr: 0x191A0, symSize: 0xD0 } + - { offsetInCU: 0x23A0, offset: 0x64F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9340, symBinAddr: 0x19270, symSize: 0x10 } + - { offsetInCU: 0x23B4, offset: 0x64F1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9350, symBinAddr: 0x19280, symSize: 0x10 } + - { offsetInCU: 0x23C8, offset: 0x64F31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9360, symBinAddr: 0x19290, symSize: 0x80 } + - { offsetInCU: 0x23DC, offset: 0x64F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x93E0, symBinAddr: 0x19310, symSize: 0xD0 } + - { offsetInCU: 0x23F0, offset: 0x64F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x94B0, symBinAddr: 0x193E0, symSize: 0x10 } + - { offsetInCU: 0x2404, offset: 0x64F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x94C0, symBinAddr: 0x193F0, symSize: 0x10 } + - { offsetInCU: 0x2418, offset: 0x64F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x94D0, symBinAddr: 0x19400, symSize: 0x10 } + - { offsetInCU: 0x242C, offset: 0x64F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x94E0, symBinAddr: 0x19410, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x64FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x94F0, symBinAddr: 0x19420, symSize: 0x80 } + - { offsetInCU: 0x2454, offset: 0x64FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9570, symBinAddr: 0x194A0, symSize: 0xD0 } + - { offsetInCU: 0x2468, offset: 0x64FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9640, symBinAddr: 0x19570, symSize: 0x10 } + - { offsetInCU: 0x247C, offset: 0x64FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9650, symBinAddr: 0x19580, symSize: 0x10 } + - { offsetInCU: 0x2490, offset: 0x64FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9680, symBinAddr: 0x195B0, symSize: 0x10 } + - { offsetInCU: 0x24A4, offset: 0x6500D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9690, symBinAddr: 0x195C0, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x65021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x96A0, symBinAddr: 0x195D0, symSize: 0x40 } + - { offsetInCU: 0x24CC, offset: 0x65035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x96E0, symBinAddr: 0x19610, symSize: 0x80 } + - { offsetInCU: 0x24E0, offset: 0x65049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x9760, symBinAddr: 0x19690, symSize: 0xC0 } + - { offsetInCU: 0x24F4, offset: 0x6505D, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9820, symBinAddr: 0x19750, symSize: 0x40 } + - { offsetInCU: 0x2508, offset: 0x65071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x9860, symBinAddr: 0x19790, symSize: 0x90 } + - { offsetInCU: 0x251C, offset: 0x65085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x98F0, symBinAddr: 0x19820, symSize: 0x40 } + - { offsetInCU: 0x2530, offset: 0x65099, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x9930, symBinAddr: 0x19860, symSize: 0x50 } + - { offsetInCU: 0x2544, offset: 0x650AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x9980, symBinAddr: 0x198B0, symSize: 0x10 } + - { offsetInCU: 0x2558, offset: 0x650C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x9990, symBinAddr: 0x198C0, symSize: 0x40 } + - { offsetInCU: 0x256C, offset: 0x650D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x99D0, symBinAddr: 0x19900, symSize: 0x80 } + - { offsetInCU: 0x2580, offset: 0x650E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x9A50, symBinAddr: 0x19980, symSize: 0xA0 } + - { offsetInCU: 0x2594, offset: 0x650FD, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9AF0, symBinAddr: 0x19A20, symSize: 0x30 } + - { offsetInCU: 0x25A8, offset: 0x65111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x9B20, symBinAddr: 0x19A50, symSize: 0x80 } + - { offsetInCU: 0x25BC, offset: 0x65125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x9BA0, symBinAddr: 0x19AD0, symSize: 0x40 } + - { offsetInCU: 0x25D0, offset: 0x65139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9BE0, symBinAddr: 0x19B10, symSize: 0x50 } + - { offsetInCU: 0x25E4, offset: 0x6514D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x9C30, symBinAddr: 0x19B60, symSize: 0x10 } + - { offsetInCU: 0x25F8, offset: 0x65161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x9C40, symBinAddr: 0x19B70, symSize: 0x40 } + - { offsetInCU: 0x260C, offset: 0x65175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x9C80, symBinAddr: 0x19BB0, symSize: 0x80 } + - { offsetInCU: 0x2620, offset: 0x65189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9D00, symBinAddr: 0x19C30, symSize: 0xB0 } + - { offsetInCU: 0x2634, offset: 0x6519D, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9DB0, symBinAddr: 0x19CE0, symSize: 0x30 } + - { offsetInCU: 0x2648, offset: 0x651B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x9DE0, symBinAddr: 0x19D10, symSize: 0x80 } + - { offsetInCU: 0x265C, offset: 0x651C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9E60, symBinAddr: 0x19D90, symSize: 0x40 } + - { offsetInCU: 0x2670, offset: 0x651D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x9EA0, symBinAddr: 0x19DD0, symSize: 0x50 } + - { offsetInCU: 0x2684, offset: 0x651ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9EF0, symBinAddr: 0x19E20, symSize: 0x10 } + - { offsetInCU: 0x2698, offset: 0x65201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F00, symBinAddr: 0x19E30, symSize: 0x10 } + - { offsetInCU: 0x26AC, offset: 0x65215, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9F10, symBinAddr: 0x19E40, symSize: 0x30 } + - { offsetInCU: 0x26C0, offset: 0x65229, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F40, symBinAddr: 0x19E70, symSize: 0x10 } + - { offsetInCU: 0x26D4, offset: 0x6523D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9F50, symBinAddr: 0x19E80, symSize: 0x30 } + - { offsetInCU: 0x26E8, offset: 0x65251, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F80, symBinAddr: 0x19EB0, symSize: 0x10 } + - { offsetInCU: 0x26FC, offset: 0x65265, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x19EC0, symSize: 0x30 } + - { offsetInCU: 0x2710, offset: 0x65279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9FC0, symBinAddr: 0x19EF0, symSize: 0x10 } + - { offsetInCU: 0x2724, offset: 0x6528D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9FD0, symBinAddr: 0x19F00, symSize: 0x30 } + - { offsetInCU: 0x2738, offset: 0x652A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA000, symBinAddr: 0x19F30, symSize: 0x10 } + - { offsetInCU: 0x274C, offset: 0x652B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0xA010, symBinAddr: 0x19F40, symSize: 0x30 } + - { offsetInCU: 0x2760, offset: 0x652C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA040, symBinAddr: 0x19F70, symSize: 0x10 } + - { offsetInCU: 0x2774, offset: 0x652DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA050, symBinAddr: 0x19F80, symSize: 0x30 } + - { offsetInCU: 0x2788, offset: 0x652F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA080, symBinAddr: 0x19FB0, symSize: 0x10 } + - { offsetInCU: 0x279C, offset: 0x65305, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x19FC0, symSize: 0x30 } + - { offsetInCU: 0x27B0, offset: 0x65319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0C0, symBinAddr: 0x19FF0, symSize: 0x10 } + - { offsetInCU: 0x27C4, offset: 0x6532D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0D0, symBinAddr: 0x1A000, symSize: 0x30 } + - { offsetInCU: 0x27D8, offset: 0x65341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA100, symBinAddr: 0x1A030, symSize: 0x10 } + - { offsetInCU: 0x27EC, offset: 0x65355, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA110, symBinAddr: 0x1A040, symSize: 0x30 } + - { offsetInCU: 0x2800, offset: 0x65369, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA140, symBinAddr: 0x1A070, symSize: 0x10 } + - { offsetInCU: 0x2814, offset: 0x6537D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA150, symBinAddr: 0x1A080, symSize: 0x30 } + - { offsetInCU: 0x2828, offset: 0x65391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA180, symBinAddr: 0x1A0B0, symSize: 0x10 } + - { offsetInCU: 0x283C, offset: 0x653A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA190, symBinAddr: 0x1A0C0, symSize: 0x30 } + - { offsetInCU: 0x2850, offset: 0x653B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA1C0, symBinAddr: 0x1A0F0, symSize: 0x10 } + - { offsetInCU: 0x2864, offset: 0x653CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x1A100, symSize: 0x30 } + - { offsetInCU: 0x2878, offset: 0x653E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA200, symBinAddr: 0x1A130, symSize: 0x10 } + - { offsetInCU: 0x288C, offset: 0x653F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA210, symBinAddr: 0x1A140, symSize: 0x30 } + - { offsetInCU: 0x28A0, offset: 0x65409, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA240, symBinAddr: 0x1A170, symSize: 0x10 } + - { offsetInCU: 0x28B4, offset: 0x6541D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA250, symBinAddr: 0x1A180, symSize: 0x30 } + - { offsetInCU: 0x28C8, offset: 0x65431, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA280, symBinAddr: 0x1A1B0, symSize: 0x10 } + - { offsetInCU: 0x28DC, offset: 0x65445, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA290, symBinAddr: 0x1A1C0, symSize: 0x30 } + - { offsetInCU: 0x28F0, offset: 0x65459, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0xA2C0, symBinAddr: 0x1A1F0, symSize: 0x30 } + - { offsetInCU: 0x2904, offset: 0x6546D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0xA2F0, symBinAddr: 0x1A220, symSize: 0x30 } + - { offsetInCU: 0x2918, offset: 0x65481, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0xA320, symBinAddr: 0x1A250, symSize: 0x30 } + - { offsetInCU: 0x292C, offset: 0x65495, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0xA350, symBinAddr: 0x1A280, symSize: 0x80 } + - { offsetInCU: 0x2940, offset: 0x654A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA3D0, symBinAddr: 0x1A300, symSize: 0xD0 } + - { offsetInCU: 0x2954, offset: 0x654BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA4A0, symBinAddr: 0x1A3D0, symSize: 0x10 } + - { offsetInCU: 0x2968, offset: 0x654D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA4B0, symBinAddr: 0x1A3E0, symSize: 0x10 } + - { offsetInCU: 0x297C, offset: 0x654E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA630, symBinAddr: 0x1A560, symSize: 0x10 } + - { offsetInCU: 0x2990, offset: 0x654F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA640, symBinAddr: 0x1A570, symSize: 0x10 } + - { offsetInCU: 0x29A4, offset: 0x6550D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0xA650, symBinAddr: 0x1A580, symSize: 0x80 } + - { offsetInCU: 0x29B8, offset: 0x65521, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA6D0, symBinAddr: 0x1A600, symSize: 0xD0 } + - { offsetInCU: 0x29CC, offset: 0x65535, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA7A0, symBinAddr: 0x1A6D0, symSize: 0x10 } + - { offsetInCU: 0x29E0, offset: 0x65549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA7B0, symBinAddr: 0x1A6E0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x6555D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA7C0, symBinAddr: 0x1A6F0, symSize: 0x10 } + - { offsetInCU: 0x2A08, offset: 0x65571, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA7D0, symBinAddr: 0x1A700, symSize: 0x30 } + - { offsetInCU: 0x2A1C, offset: 0x65585, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA800, symBinAddr: 0x1A730, symSize: 0x10 } + - { offsetInCU: 0x2A30, offset: 0x65599, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA810, symBinAddr: 0x1A740, symSize: 0x30 } + - { offsetInCU: 0x2A44, offset: 0x655AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA840, symBinAddr: 0x1A770, symSize: 0x10 } + - { offsetInCU: 0x2A58, offset: 0x655C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA850, symBinAddr: 0x1A780, symSize: 0x30 } + - { offsetInCU: 0x2A6C, offset: 0x655D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA880, symBinAddr: 0x1A7B0, symSize: 0x10 } + - { offsetInCU: 0x2A80, offset: 0x655E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA890, symBinAddr: 0x1A7C0, symSize: 0x30 } + - { offsetInCU: 0x2A94, offset: 0x655FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA8C0, symBinAddr: 0x1A7F0, symSize: 0x10 } + - { offsetInCU: 0x2AA8, offset: 0x65611, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA8D0, symBinAddr: 0x1A800, symSize: 0x30 } + - { offsetInCU: 0x2ABC, offset: 0x65625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA900, symBinAddr: 0x1A830, symSize: 0x10 } + - { offsetInCU: 0x2AD0, offset: 0x65639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA910, symBinAddr: 0x1A840, symSize: 0x30 } + - { offsetInCU: 0x2AE4, offset: 0x6564D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA940, symBinAddr: 0x1A870, symSize: 0x10 } + - { offsetInCU: 0x2AF8, offset: 0x65661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA950, symBinAddr: 0x1A880, symSize: 0x30 } + - { offsetInCU: 0x2B0C, offset: 0x65675, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA980, symBinAddr: 0x1A8B0, symSize: 0x10 } + - { offsetInCU: 0x2B20, offset: 0x65689, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA990, symBinAddr: 0x1A8C0, symSize: 0x30 } + - { offsetInCU: 0x2B34, offset: 0x6569D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA9C0, symBinAddr: 0x1A8F0, symSize: 0x10 } + - { offsetInCU: 0x2B48, offset: 0x656B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA9D0, symBinAddr: 0x1A900, symSize: 0x30 } + - { offsetInCU: 0x2BA2, offset: 0x6570B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F0, symBinAddr: 0x10170, symSize: 0x20 } + - { offsetInCU: 0x2BBE, offset: 0x65727, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x210, symBinAddr: 0x10190, symSize: 0x20 } + - { offsetInCU: 0x2C29, offset: 0x65792, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1620, symBinAddr: 0x115A0, symSize: 0x30 } + - { offsetInCU: 0x2CEA, offset: 0x65853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x11680, symSize: 0x20 } + - { offsetInCU: 0x2D06, offset: 0x6586F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x116A0, symSize: 0x20 } + - { offsetInCU: 0x2D28, offset: 0x65891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x11830, symSize: 0x20 } + - { offsetInCU: 0x2D44, offset: 0x658AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18D0, symBinAddr: 0x11850, symSize: 0x20 } + - { offsetInCU: 0x2D66, offset: 0x658CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x119E0, symSize: 0x20 } + - { offsetInCU: 0x2D82, offset: 0x658EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x11A00, symSize: 0x20 } + - { offsetInCU: 0x2DA4, offset: 0x6590D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BE0, symBinAddr: 0x11B60, symSize: 0x20 } + - { offsetInCU: 0x2DC0, offset: 0x65929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C00, symBinAddr: 0x11B80, symSize: 0x20 } + - { offsetInCU: 0x2DE2, offset: 0x6594B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DB0, symBinAddr: 0x11D30, symSize: 0x20 } + - { offsetInCU: 0x2DFE, offset: 0x65967, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DD0, symBinAddr: 0x11D50, symSize: 0x20 } + - { offsetInCU: 0x2E51, offset: 0x659BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1F30, symBinAddr: 0x11EB0, symSize: 0x40 } + - { offsetInCU: 0x2EF4, offset: 0x65A5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FE0, symBinAddr: 0x11F60, symSize: 0x20 } + - { offsetInCU: 0x2F10, offset: 0x65A79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2000, symBinAddr: 0x11F80, symSize: 0x20 } + - { offsetInCU: 0x2F32, offset: 0x65A9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x2150, symBinAddr: 0x120D0, symSize: 0x20 } + - { offsetInCU: 0x2F4E, offset: 0x65AB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x2170, symBinAddr: 0x120F0, symSize: 0x20 } + - { offsetInCU: 0x2F70, offset: 0x65AD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2310, symBinAddr: 0x12290, symSize: 0x20 } + - { offsetInCU: 0x2F8C, offset: 0x65AF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2330, symBinAddr: 0x122B0, symSize: 0x20 } + - { offsetInCU: 0x2FAE, offset: 0x65B17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24F0, symBinAddr: 0x12470, symSize: 0x20 } + - { offsetInCU: 0x2FCA, offset: 0x65B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2510, symBinAddr: 0x12490, symSize: 0x20 } + - { offsetInCU: 0x30B3, offset: 0x65C1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0x10000, symSize: 0xD0 } + - { offsetInCU: 0x3132, offset: 0x65C9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x230, symBinAddr: 0x101B0, symSize: 0x4C0 } + - { offsetInCU: 0x3163, offset: 0x65CCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6F0, symBinAddr: 0x10670, symSize: 0xE0 } + - { offsetInCU: 0x3194, offset: 0x65CFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7D0, symBinAddr: 0x10750, symSize: 0x1A0 } + - { offsetInCU: 0x31C5, offset: 0x65D2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x970, symBinAddr: 0x108F0, symSize: 0x170 } + - { offsetInCU: 0x31F6, offset: 0x65D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xAE0, symBinAddr: 0x10A60, symSize: 0x1D0 } + - { offsetInCU: 0x3227, offset: 0x65D90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xCB0, symBinAddr: 0x10C30, symSize: 0x230 } + - { offsetInCU: 0x3258, offset: 0x65DC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x10E60, symSize: 0x110 } + - { offsetInCU: 0x3289, offset: 0x65DF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xFF0, symBinAddr: 0x10F70, symSize: 0x1F0 } + - { offsetInCU: 0x32BA, offset: 0x65E23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x11E0, symBinAddr: 0x11160, symSize: 0x210 } + - { offsetInCU: 0x32EB, offset: 0x65E54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x13F0, symBinAddr: 0x11370, symSize: 0x130 } + - { offsetInCU: 0x27, offset: 0x66090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AB80, symSize: 0x60 } + - { offsetInCU: 0x3ED, offset: 0x66456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x470, symBinAddr: 0x1AFF0, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x6646A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x4A0, symBinAddr: 0x1B020, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x6647E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x4E0, symBinAddr: 0x1B060, symSize: 0xD0 } + - { offsetInCU: 0x429, offset: 0x66492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x5B0, symBinAddr: 0x1B130, symSize: 0x100 } + - { offsetInCU: 0x43D, offset: 0x664A6, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6B0, symBinAddr: 0x1B230, symSize: 0x50 } + - { offsetInCU: 0x451, offset: 0x664BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x700, symBinAddr: 0x1B280, symSize: 0xD0 } + - { offsetInCU: 0x465, offset: 0x664CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x7D0, symBinAddr: 0x1B350, symSize: 0x40 } + - { offsetInCU: 0x479, offset: 0x664E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x810, symBinAddr: 0x1B390, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x664F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x870, symBinAddr: 0x1B3F0, symSize: 0xA } + - { offsetInCU: 0x60E, offset: 0x66677, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AB80, symSize: 0x60 } + - { offsetInCU: 0x64D, offset: 0x666B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x60, symBinAddr: 0x1ABE0, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x666D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xA0, symBinAddr: 0x1AC20, symSize: 0x50 } + - { offsetInCU: 0x697, offset: 0x66700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xF0, symBinAddr: 0x1AC70, symSize: 0x10 } + - { offsetInCU: 0x6AB, offset: 0x66714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x1AC80, symSize: 0x10 } + - { offsetInCU: 0x6CC, offset: 0x66735, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x110, symBinAddr: 0x1AC90, symSize: 0x20 } + - { offsetInCU: 0x6E0, offset: 0x66749, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x130, symBinAddr: 0x1ACB0, symSize: 0x20 } + - { offsetInCU: 0x710, offset: 0x66779, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x150, symBinAddr: 0x1ACD0, symSize: 0x20 } + - { offsetInCU: 0x734, offset: 0x6679D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x170, symBinAddr: 0x1ACF0, symSize: 0x10 } + - { offsetInCU: 0x755, offset: 0x667BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x180, symBinAddr: 0x1AD00, symSize: 0x30 } + - { offsetInCU: 0x769, offset: 0x667D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1B0, symBinAddr: 0x1AD30, symSize: 0x30 } + - { offsetInCU: 0x79D, offset: 0x66806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1E0, symBinAddr: 0x1AD60, symSize: 0x20 } + - { offsetInCU: 0x7C1, offset: 0x6682A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x200, symBinAddr: 0x1AD80, symSize: 0x10 } + - { offsetInCU: 0x7E2, offset: 0x6684B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x210, symBinAddr: 0x1AD90, symSize: 0x10 } + - { offsetInCU: 0x7F6, offset: 0x6685F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x220, symBinAddr: 0x1ADA0, symSize: 0x10 } + - { offsetInCU: 0x82A, offset: 0x66893, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x230, symBinAddr: 0x1ADB0, symSize: 0x20 } + - { offsetInCU: 0x84E, offset: 0x668B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x250, symBinAddr: 0x1ADD0, symSize: 0x10 } + - { offsetInCU: 0x86F, offset: 0x668D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x260, symBinAddr: 0x1ADE0, symSize: 0x10 } + - { offsetInCU: 0x883, offset: 0x668EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x270, symBinAddr: 0x1ADF0, symSize: 0x10 } + - { offsetInCU: 0x8B7, offset: 0x66920, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x280, symBinAddr: 0x1AE00, symSize: 0x20 } + - { offsetInCU: 0x8DB, offset: 0x66944, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x1AE20, symSize: 0x10 } + - { offsetInCU: 0x8FC, offset: 0x66965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2B0, symBinAddr: 0x1AE30, symSize: 0x30 } + - { offsetInCU: 0x910, offset: 0x66979, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x2E0, symBinAddr: 0x1AE60, symSize: 0x30 } + - { offsetInCU: 0x944, offset: 0x669AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x310, symBinAddr: 0x1AE90, symSize: 0x20 } + - { offsetInCU: 0x968, offset: 0x669D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1AEB0, symSize: 0x10 } + - { offsetInCU: 0x989, offset: 0x669F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x340, symBinAddr: 0x1AEC0, symSize: 0x30 } + - { offsetInCU: 0x99D, offset: 0x66A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x370, symBinAddr: 0x1AEF0, symSize: 0x30 } + - { offsetInCU: 0x9D1, offset: 0x66A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3A0, symBinAddr: 0x1AF20, symSize: 0x20 } + - { offsetInCU: 0x9F5, offset: 0x66A5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x3C0, symBinAddr: 0x1AF40, symSize: 0x10 } + - { offsetInCU: 0xA16, offset: 0x66A7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x3D0, symBinAddr: 0x1AF50, symSize: 0x10 } + - { offsetInCU: 0xA2A, offset: 0x66A93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x3E0, symBinAddr: 0x1AF60, symSize: 0x10 } + - { offsetInCU: 0xA5E, offset: 0x66AC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x3F0, symBinAddr: 0x1AF70, symSize: 0x20 } + - { offsetInCU: 0xA82, offset: 0x66AEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x410, symBinAddr: 0x1AF90, symSize: 0x10 } + - { offsetInCU: 0xAA3, offset: 0x66B0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x420, symBinAddr: 0x1AFA0, symSize: 0x10 } + - { offsetInCU: 0xAB7, offset: 0x66B20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x430, symBinAddr: 0x1AFB0, symSize: 0x10 } + - { offsetInCU: 0xAEB, offset: 0x66B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x440, symBinAddr: 0x1AFC0, symSize: 0x20 } + - { offsetInCU: 0xB0F, offset: 0x66B78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x460, symBinAddr: 0x1AFE0, symSize: 0x10 } + - { offsetInCU: 0x7F, offset: 0x66C3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x6E0, symBinAddr: 0x1BAE0, symSize: 0x30 } + - { offsetInCU: 0xB0, offset: 0x66C6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x710, symBinAddr: 0x1BB10, symSize: 0x30 } + - { offsetInCU: 0xCC, offset: 0x66C88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x970, symBinAddr: 0x1BD70, symSize: 0x60 } + - { offsetInCU: 0x145, offset: 0x66D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x910, symBinAddr: 0x1BD10, symSize: 0x30 } + - { offsetInCU: 0x176, offset: 0x66D32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x940, symBinAddr: 0x1BD40, symSize: 0x30 } + - { offsetInCU: 0x192, offset: 0x66D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x9D0, symBinAddr: 0x1BDD0, symSize: 0x60 } + - { offsetInCU: 0x1D2, offset: 0x66D8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1BE30, symSize: 0x120 } + - { offsetInCU: 0x202, offset: 0x66DBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1BF50, symSize: 0x80 } + - { offsetInCU: 0x216, offset: 0x66DD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1BFD0, symSize: 0xD0 } + - { offsetInCU: 0x22A, offset: 0x66DE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1C0A0, symSize: 0x10 } + - { offsetInCU: 0x23E, offset: 0x66DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1C0B0, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x66E0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1C0C0, symSize: 0x80 } + - { offsetInCU: 0x266, offset: 0x66E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1C140, symSize: 0xD0 } + - { offsetInCU: 0x27A, offset: 0x66E36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1C210, symSize: 0x10 } + - { offsetInCU: 0x28E, offset: 0x66E4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1C220, symSize: 0x10 } + - { offsetInCU: 0x2A2, offset: 0x66E5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1C230, symSize: 0x10 } + - { offsetInCU: 0x2B6, offset: 0x66E72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1C240, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x66E86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1C250, symSize: 0x10 } + - { offsetInCU: 0x2DE, offset: 0x66E9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1C260, symSize: 0x30 } + - { offsetInCU: 0x2F2, offset: 0x66EAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1C290, symSize: 0x10 } + - { offsetInCU: 0x306, offset: 0x66EC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1C2A0, symSize: 0x30 } + - { offsetInCU: 0x410, offset: 0x66FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1B400, symSize: 0x350 } + - { offsetInCU: 0x433, offset: 0x66FEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1B750, symSize: 0x310 } + - { offsetInCU: 0xD3, offset: 0x67119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1C5C0, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x6715D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1C5E0, symSize: 0x90 } + - { offsetInCU: 0x16B, offset: 0x671B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1C670, symSize: 0x10 } + - { offsetInCU: 0x194, offset: 0x671DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1C680, symSize: 0x10 } + - { offsetInCU: 0x1BD, offset: 0x67203, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1C690, symSize: 0x10 } + - { offsetInCU: 0x1E6, offset: 0x6722C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1C730, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x67268, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1C740, symSize: 0x80 } + - { offsetInCU: 0x28E, offset: 0x672D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1C7C0, symSize: 0x60 } + - { offsetInCU: 0x2E3, offset: 0x67329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1C820, symSize: 0x90 } + - { offsetInCU: 0x335, offset: 0x6737B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1C8B0, symSize: 0x80 } + - { offsetInCU: 0x392, offset: 0x673D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1C930, symSize: 0x60 } + - { offsetInCU: 0x3C4, offset: 0x6740A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6A0, symBinAddr: 0x1C990, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x67426, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1C9A0, symSize: 0x10 } + - { offsetInCU: 0x4D3, offset: 0x67519, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1020, symBinAddr: 0x1D310, symSize: 0x3E0 } + - { offsetInCU: 0x7C6, offset: 0x6780C, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x14C0, symBinAddr: 0x1D7B0, symSize: 0x20 } + - { offsetInCU: 0x7DA, offset: 0x67820, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x14E0, symBinAddr: 0x1D7D0, symSize: 0x20 } + - { offsetInCU: 0x7EE, offset: 0x67834, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1570, symBinAddr: 0x1D7F0, symSize: 0x40 } + - { offsetInCU: 0x802, offset: 0x67848, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x15B0, symBinAddr: 0x1D830, symSize: 0x20 } + - { offsetInCU: 0x816, offset: 0x6785C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x15D0, symBinAddr: 0x1D850, symSize: 0x40 } + - { offsetInCU: 0x82A, offset: 0x67870, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1610, symBinAddr: 0x1D890, symSize: 0x30 } + - { offsetInCU: 0x83E, offset: 0x67884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x1640, symBinAddr: 0x1D8C0, symSize: 0x260 } + - { offsetInCU: 0x852, offset: 0x67898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x18A0, symBinAddr: 0x1DB20, symSize: 0x30 } + - { offsetInCU: 0x866, offset: 0x678AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x18D0, symBinAddr: 0x1DB50, symSize: 0x260 } + - { offsetInCU: 0x87A, offset: 0x678C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1B30, symBinAddr: 0x1DDB0, symSize: 0x25 } + - { offsetInCU: 0xA79, offset: 0x67ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1C2F0, symSize: 0x2B0 } + - { offsetInCU: 0xAA2, offset: 0x67AE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1C5A0, symSize: 0x20 } + - { offsetInCU: 0xBD2, offset: 0x67C18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x6C0, symBinAddr: 0x1C9B0, symSize: 0x8F0 } + - { offsetInCU: 0xCD9, offset: 0x67D1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xFB0, symBinAddr: 0x1D2A0, symSize: 0x70 } + - { offsetInCU: 0xD57, offset: 0x67D9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x1400, symBinAddr: 0x1D6F0, symSize: 0x60 } + - { offsetInCU: 0xD8C, offset: 0x67DD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0x1460, symBinAddr: 0x1D750, symSize: 0x60 } + - { offsetInCU: 0x4F, offset: 0x67E7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2B20, symBinAddr: 0x8BBF8, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x67E98, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2B28, symBinAddr: 0x8BC00, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x67EA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1DE20, symSize: 0x30 } + - { offsetInCU: 0xB3, offset: 0x67EE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1DE50, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x67F18, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1DE90, symSize: 0x30 } + - { offsetInCU: 0x159, offset: 0x67F88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0x1DF80, symSize: 0x50 } + - { offsetInCU: 0x1E6, offset: 0x68015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2F0, symBinAddr: 0x1E0D0, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x68051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x350, symBinAddr: 0x1E130, symSize: 0x20 } + - { offsetInCU: 0x29C, offset: 0x680CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x3C0, symBinAddr: 0x1E1A0, symSize: 0x80 } + - { offsetInCU: 0x5C1, offset: 0x683F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1CC0, symBinAddr: 0x1FAA0, symSize: 0x170 } + - { offsetInCU: 0x688, offset: 0x684B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x440, symBinAddr: 0x1E220, symSize: 0x80 } + - { offsetInCU: 0x6C0, offset: 0x684EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4C0, symBinAddr: 0x1E2A0, symSize: 0xB0 } + - { offsetInCU: 0x700, offset: 0x6852F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x5B0, symBinAddr: 0x1E390, symSize: 0x20 } + - { offsetInCU: 0x714, offset: 0x68543, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x620, symBinAddr: 0x1E400, symSize: 0x20 } + - { offsetInCU: 0x728, offset: 0x68557, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x680, symBinAddr: 0x1E460, symSize: 0x80 } + - { offsetInCU: 0x760, offset: 0x6858F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x700, symBinAddr: 0x1E4E0, symSize: 0xB0 } + - { offsetInCU: 0x7A0, offset: 0x685CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x910, symBinAddr: 0x1E6F0, symSize: 0x50 } + - { offsetInCU: 0x9AA, offset: 0x687D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x17C0, symBinAddr: 0x1F5A0, symSize: 0x130 } + - { offsetInCU: 0xAA6, offset: 0x688D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x18F0, symBinAddr: 0x1F6D0, symSize: 0x10 } + - { offsetInCU: 0xABA, offset: 0x688E9, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A20, symBinAddr: 0x1F800, symSize: 0x30 } + - { offsetInCU: 0xAD2, offset: 0x68901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1C70, symBinAddr: 0x1FA50, symSize: 0x30 } + - { offsetInCU: 0xAE6, offset: 0x68915, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1CA0, symBinAddr: 0x1FA80, symSize: 0x20 } + - { offsetInCU: 0xAFA, offset: 0x68929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1E30, symBinAddr: 0x1FC10, symSize: 0x20 } + - { offsetInCU: 0xB0E, offset: 0x6893D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E50, symBinAddr: 0x1FC30, symSize: 0x10 } + - { offsetInCU: 0xB22, offset: 0x68951, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E60, symBinAddr: 0x1FC40, symSize: 0x30 } + - { offsetInCU: 0xB36, offset: 0x68965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E90, symBinAddr: 0x1FC70, symSize: 0x10 } + - { offsetInCU: 0xB4A, offset: 0x68979, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1EA0, symBinAddr: 0x1FC80, symSize: 0x30 } + - { offsetInCU: 0xB5E, offset: 0x6898D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1FF0, symBinAddr: 0x1FDD0, symSize: 0x20 } + - { offsetInCU: 0xB72, offset: 0x689A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x2010, symBinAddr: 0x1FDF0, symSize: 0x20 } + - { offsetInCU: 0xB86, offset: 0x689B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x2030, symBinAddr: 0x1FE10, symSize: 0x20 } + - { offsetInCU: 0xB9A, offset: 0x689C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x20C0, symBinAddr: 0x1FEA0, symSize: 0x70 } + - { offsetInCU: 0xBAE, offset: 0x689DD, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2130, symBinAddr: 0x1FF10, symSize: 0x20 } + - { offsetInCU: 0xBC2, offset: 0x689F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x2150, symBinAddr: 0x1FF30, symSize: 0x40 } + - { offsetInCU: 0xBD6, offset: 0x68A05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x2190, symBinAddr: 0x1FF70, symSize: 0x50 } + - { offsetInCU: 0xBEA, offset: 0x68A19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x21E0, symBinAddr: 0x1FFC0, symSize: 0x50 } + - { offsetInCU: 0xBFE, offset: 0x68A2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x2230, symBinAddr: 0x20010, symSize: 0x10 } + - { offsetInCU: 0xC12, offset: 0x68A41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2240, symBinAddr: 0x20020, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x68A55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2250, symBinAddr: 0x20030, symSize: 0x10 } + - { offsetInCU: 0xC3A, offset: 0x68A69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x20040, symSize: 0x10 } + - { offsetInCU: 0xC4E, offset: 0x68A7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2450, symBinAddr: 0x20210, symSize: 0x80 } + - { offsetInCU: 0xC62, offset: 0x68A91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x24D0, symBinAddr: 0x20290, symSize: 0xD0 } + - { offsetInCU: 0xC76, offset: 0x68AA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x25A0, symBinAddr: 0x20360, symSize: 0x10 } + - { offsetInCU: 0xC8A, offset: 0x68AB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x25B0, symBinAddr: 0x20370, symSize: 0x10 } + - { offsetInCU: 0xC9E, offset: 0x68ACD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x25C0, symBinAddr: 0x20380, symSize: 0x80 } + - { offsetInCU: 0xCB2, offset: 0x68AE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2640, symBinAddr: 0x20400, symSize: 0xD0 } + - { offsetInCU: 0xCC6, offset: 0x68AF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x2710, symBinAddr: 0x204D0, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x68B09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x2720, symBinAddr: 0x204E0, symSize: 0x10 } + - { offsetInCU: 0xCEE, offset: 0x68B1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2730, symBinAddr: 0x204F0, symSize: 0x10 } + - { offsetInCU: 0xD02, offset: 0x68B31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2740, symBinAddr: 0x20500, symSize: 0x10 } + - { offsetInCU: 0xD21, offset: 0x68B50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2780, symBinAddr: 0x20540, symSize: 0x20 } + - { offsetInCU: 0xD4A, offset: 0x68B79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x2880, symBinAddr: 0x20640, symSize: 0x10 } + - { offsetInCU: 0xD5E, offset: 0x68B8D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2890, symBinAddr: 0x20650, symSize: 0x20 } + - { offsetInCU: 0xD72, offset: 0x68BA1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x28B0, symBinAddr: 0x20670, symSize: 0x10 } + - { offsetInCU: 0xD86, offset: 0x68BB5, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2940, symBinAddr: 0x20680, symSize: 0x30 } + - { offsetInCU: 0xE08, offset: 0x68C37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1DDE0, symSize: 0x10 } + - { offsetInCU: 0xE24, offset: 0x68C53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1DDF0, symSize: 0x10 } + - { offsetInCU: 0xE40, offset: 0x68C6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1DE00, symSize: 0x10 } + - { offsetInCU: 0xE5C, offset: 0x68C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1DE10, symSize: 0x10 } + - { offsetInCU: 0x11AB, offset: 0x68FDA, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1DEC0, symSize: 0x40 } + - { offsetInCU: 0x11D9, offset: 0x69008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1DF00, symSize: 0x50 } + - { offsetInCU: 0x120D, offset: 0x6903C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1F0, symBinAddr: 0x1DFD0, symSize: 0x80 } + - { offsetInCU: 0x1234, offset: 0x69063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x270, symBinAddr: 0x1E050, symSize: 0x10 } + - { offsetInCU: 0x1277, offset: 0x690A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x280, symBinAddr: 0x1E060, symSize: 0x20 } + - { offsetInCU: 0x137E, offset: 0x691AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x570, symBinAddr: 0x1E350, symSize: 0x40 } + - { offsetInCU: 0x139B, offset: 0x691CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5D0, symBinAddr: 0x1E3B0, symSize: 0x50 } + - { offsetInCU: 0x13C2, offset: 0x691F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x640, symBinAddr: 0x1E420, symSize: 0x30 } + - { offsetInCU: 0x13E5, offset: 0x69214, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x670, symBinAddr: 0x1E450, symSize: 0x10 } + - { offsetInCU: 0x143A, offset: 0x69269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x7B0, symBinAddr: 0x1E590, symSize: 0x40 } + - { offsetInCU: 0x1457, offset: 0x69286, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7F0, symBinAddr: 0x1E5D0, symSize: 0x50 } + - { offsetInCU: 0x147E, offset: 0x692AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x840, symBinAddr: 0x1E620, symSize: 0x30 } + - { offsetInCU: 0x14A1, offset: 0x692D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x870, symBinAddr: 0x1E650, symSize: 0x10 } + - { offsetInCU: 0x14C2, offset: 0x692F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x880, symBinAddr: 0x1E660, symSize: 0x30 } + - { offsetInCU: 0x14DF, offset: 0x6930E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x8B0, symBinAddr: 0x1E690, symSize: 0x30 } + - { offsetInCU: 0x1506, offset: 0x69335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8E0, symBinAddr: 0x1E6C0, symSize: 0x30 } + - { offsetInCU: 0x154E, offset: 0x6937D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x960, symBinAddr: 0x1E740, symSize: 0x30 } + - { offsetInCU: 0x156B, offset: 0x6939A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x990, symBinAddr: 0x1E770, symSize: 0x40 } + - { offsetInCU: 0x1592, offset: 0x693C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x9D0, symBinAddr: 0x1E7B0, symSize: 0x30 } + - { offsetInCU: 0x15BC, offset: 0x693EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0xA00, symBinAddr: 0x1E7E0, symSize: 0xD0 } + - { offsetInCU: 0x1633, offset: 0x69462, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0xAD0, symBinAddr: 0x1E8B0, symSize: 0xA0 } + - { offsetInCU: 0x16A6, offset: 0x694D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB70, symBinAddr: 0x1E950, symSize: 0xA0 } + - { offsetInCU: 0x1763, offset: 0x69592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xC10, symBinAddr: 0x1E9F0, symSize: 0x1F0 } + - { offsetInCU: 0x17CC, offset: 0x695FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1900, symBinAddr: 0x1F6E0, symSize: 0x120 } + - { offsetInCU: 0x1890, offset: 0x696BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xE00, symBinAddr: 0x1EBE0, symSize: 0x60 } + - { offsetInCU: 0x18BA, offset: 0x696E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xE60, symBinAddr: 0x1EC40, symSize: 0x30 } + - { offsetInCU: 0x18DC, offset: 0x6970B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1EC70, symSize: 0x160 } + - { offsetInCU: 0x1981, offset: 0x697B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xFF0, symBinAddr: 0x1EDD0, symSize: 0x10 } + - { offsetInCU: 0x19CE, offset: 0x697FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0x1070, symBinAddr: 0x1EE50, symSize: 0x30 } + - { offsetInCU: 0x1A52, offset: 0x69881, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0x1000, symBinAddr: 0x1EDE0, symSize: 0x70 } + - { offsetInCU: 0x1AE4, offset: 0x69913, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0x10A0, symBinAddr: 0x1EE80, symSize: 0x80 } + - { offsetInCU: 0x1BB2, offset: 0x699E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0x1120, symBinAddr: 0x1EF00, symSize: 0x230 } + - { offsetInCU: 0x1D80, offset: 0x69BAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x1350, symBinAddr: 0x1F130, symSize: 0x10 } + - { offsetInCU: 0x1DD7, offset: 0x69C06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x1360, symBinAddr: 0x1F140, symSize: 0x10 } + - { offsetInCU: 0x1E25, offset: 0x69C54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1370, symBinAddr: 0x1F150, symSize: 0x10 } + - { offsetInCU: 0x1E3D, offset: 0x69C6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1380, symBinAddr: 0x1F160, symSize: 0xB0 } + - { offsetInCU: 0x1EE3, offset: 0x69D12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1470, symBinAddr: 0x1F250, symSize: 0x10 } + - { offsetInCU: 0x1EFB, offset: 0x69D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x27F0, symBinAddr: 0x205B0, symSize: 0x70 } + - { offsetInCU: 0x1FD2, offset: 0x69E01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x1430, symBinAddr: 0x1F210, symSize: 0x40 } + - { offsetInCU: 0x200D, offset: 0x69E3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14A0, symBinAddr: 0x1F280, symSize: 0x90 } + - { offsetInCU: 0x20EA, offset: 0x69F19, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x15F0, symBinAddr: 0x1F3D0, symSize: 0x1D0 } + - { offsetInCU: 0x27E1, offset: 0x6A610, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x1A50, symBinAddr: 0x1F830, symSize: 0x20 } + - { offsetInCU: 0x2824, offset: 0x6A653, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1A70, symBinAddr: 0x1F850, symSize: 0x200 } + - { offsetInCU: 0x43, offset: 0x6A806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x20840, symSize: 0x30 } + - { offsetInCU: 0x57, offset: 0x6A81A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x20870, symSize: 0x80 } + - { offsetInCU: 0x6B, offset: 0x6A82E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x208F0, symSize: 0x130 } + - { offsetInCU: 0x86, offset: 0x6A849, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x20A20, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x6A872, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x20A50, symSize: 0x30 } + - { offsetInCU: 0xC3, offset: 0x6A886, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x20A80, symSize: 0xC0 } + - { offsetInCU: 0xD7, offset: 0x6A89A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x20B40, symSize: 0x50 } + - { offsetInCU: 0xEB, offset: 0x6A8AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x20B90, symSize: 0x50 } + - { offsetInCU: 0xFF, offset: 0x6A8C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x20BE0, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x6A8D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x20BF0, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x6A8EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x20C20, symSize: 0x30 } + - { offsetInCU: 0x13B, offset: 0x6A8FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x20C50, symSize: 0x60 } + - { offsetInCU: 0x14F, offset: 0x6A912, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x20CB0, symSize: 0x80 } + - { offsetInCU: 0x163, offset: 0x6A926, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x20D30, symSize: 0x60 } + - { offsetInCU: 0x177, offset: 0x6A93A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x20D90, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x6A94E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x20DE0, symSize: 0x50 } + - { offsetInCU: 0x19F, offset: 0x6A962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x20E30, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x6A9AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x21260, symSize: 0x10 } + - { offsetInCU: 0x243, offset: 0x6AA06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA30, symBinAddr: 0x21270, symSize: 0x30 } + - { offsetInCU: 0x327, offset: 0x6AAEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x212A0, symSize: 0x20 } + - { offsetInCU: 0x399, offset: 0x6AB5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAB0, symBinAddr: 0x212F0, symSize: 0x20 } + - { offsetInCU: 0x3E8, offset: 0x6ABAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD0, symBinAddr: 0x21310, symSize: 0x70 } + - { offsetInCU: 0x442, offset: 0x6AC05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB40, symBinAddr: 0x21380, symSize: 0x10 } + - { offsetInCU: 0x45E, offset: 0x6AC21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB50, symBinAddr: 0x21390, symSize: 0x10 } + - { offsetInCU: 0x49B, offset: 0x6AC5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBA0, symBinAddr: 0x213E0, symSize: 0x40 } + - { offsetInCU: 0x4D2, offset: 0x6AC95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE0, symBinAddr: 0x21420, symSize: 0x40 } + - { offsetInCU: 0x4F5, offset: 0x6ACB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFE0, symBinAddr: 0x21820, symSize: 0x140 } + - { offsetInCU: 0x582, offset: 0x6AD45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC20, symBinAddr: 0x21460, symSize: 0x10 } + - { offsetInCU: 0x5D5, offset: 0x6AD98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x21480, symSize: 0x20 } + - { offsetInCU: 0x64F, offset: 0x6AE12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC70, symBinAddr: 0x214B0, symSize: 0x60 } + - { offsetInCU: 0x684, offset: 0x6AE47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x21510, symSize: 0x20 } + - { offsetInCU: 0x6B5, offset: 0x6AE78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF0, symBinAddr: 0x21530, symSize: 0x10 } + - { offsetInCU: 0x6D1, offset: 0x6AE94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x21540, symSize: 0x10 } + - { offsetInCU: 0x6ED, offset: 0x6AEB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1250, symBinAddr: 0x219F0, symSize: 0x120 } + - { offsetInCU: 0x79D, offset: 0x6AF60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD50, symBinAddr: 0x21590, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x6AF97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD90, symBinAddr: 0x215D0, symSize: 0x40 } + - { offsetInCU: 0x7F7, offset: 0x6AFBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1370, symBinAddr: 0x21B10, symSize: 0x250 } + - { offsetInCU: 0x866, offset: 0x6B029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x216B0, symSize: 0x70 } + - { offsetInCU: 0x89B, offset: 0x6B05E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE0, symBinAddr: 0x21720, symSize: 0x20 } + - { offsetInCU: 0x8CC, offset: 0x6B08F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF00, symBinAddr: 0x21740, symSize: 0x10 } + - { offsetInCU: 0x8E8, offset: 0x6B0AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF10, symBinAddr: 0x21750, symSize: 0x10 } + - { offsetInCU: 0x904, offset: 0x6B0C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D30, symBinAddr: 0x22430, symSize: 0x130 } + - { offsetInCU: 0x9B4, offset: 0x6B177, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF60, symBinAddr: 0x217A0, symSize: 0x40 } + - { offsetInCU: 0x9EB, offset: 0x6B1AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFA0, symBinAddr: 0x217E0, symSize: 0x40 } + - { offsetInCU: 0xA0E, offset: 0x6B1D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E60, symBinAddr: 0x22560, symSize: 0x2F0 } + - { offsetInCU: 0xA6B, offset: 0x6B22E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1190, symBinAddr: 0x21960, symSize: 0x30 } + - { offsetInCU: 0xA7F, offset: 0x6B242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x11F0, symBinAddr: 0x21990, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x6B256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x219C0, symSize: 0x30 } + - { offsetInCU: 0xAA7, offset: 0x6B26A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x15C0, symBinAddr: 0x21D60, symSize: 0x30 } + - { offsetInCU: 0xABB, offset: 0x6B27E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x1630, symBinAddr: 0x21D90, symSize: 0x30 } + - { offsetInCU: 0xACF, offset: 0x6B292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x16F0, symBinAddr: 0x21E50, symSize: 0x30 } + - { offsetInCU: 0xAE3, offset: 0x6B2A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1760, symBinAddr: 0x21EA0, symSize: 0x10 } + - { offsetInCU: 0xAF7, offset: 0x6B2BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1770, symBinAddr: 0x21EB0, symSize: 0x10 } + - { offsetInCU: 0xB0B, offset: 0x6B2CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1780, symBinAddr: 0x21EC0, symSize: 0x10 } + - { offsetInCU: 0xB1F, offset: 0x6B2E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x1790, symBinAddr: 0x21ED0, symSize: 0x10 } + - { offsetInCU: 0xB33, offset: 0x6B2F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x21EE0, symSize: 0x50 } + - { offsetInCU: 0xB47, offset: 0x6B30A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x21F30, symSize: 0xA0 } + - { offsetInCU: 0xB5B, offset: 0x6B31E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x18A0, symBinAddr: 0x21FD0, symSize: 0x10 } + - { offsetInCU: 0xB6F, offset: 0x6B332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x18B0, symBinAddr: 0x21FE0, symSize: 0x10 } + - { offsetInCU: 0xB83, offset: 0x6B346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x18C0, symBinAddr: 0x21FF0, symSize: 0x10 } + - { offsetInCU: 0xB97, offset: 0x6B35A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x18D0, symBinAddr: 0x22000, symSize: 0x10 } + - { offsetInCU: 0xBAB, offset: 0x6B36E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18E0, symBinAddr: 0x22010, symSize: 0x40 } + - { offsetInCU: 0xBBF, offset: 0x6B382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1920, symBinAddr: 0x22050, symSize: 0x80 } + - { offsetInCU: 0xBD3, offset: 0x6B396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x19A0, symBinAddr: 0x220D0, symSize: 0xA0 } + - { offsetInCU: 0xBE7, offset: 0x6B3AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A70, symBinAddr: 0x22170, symSize: 0x80 } + - { offsetInCU: 0xBFB, offset: 0x6B3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1AF0, symBinAddr: 0x221F0, symSize: 0x50 } + - { offsetInCU: 0xC0F, offset: 0x6B3D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B40, symBinAddr: 0x22240, symSize: 0x60 } + - { offsetInCU: 0xC23, offset: 0x6B3E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1BA0, symBinAddr: 0x222A0, symSize: 0x10 } + - { offsetInCU: 0xC37, offset: 0x6B3FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BB0, symBinAddr: 0x222B0, symSize: 0x10 } + - { offsetInCU: 0xC4B, offset: 0x6B40E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BC0, symBinAddr: 0x222C0, symSize: 0x30 } + - { offsetInCU: 0xC5F, offset: 0x6B422, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BF0, symBinAddr: 0x222F0, symSize: 0x10 } + - { offsetInCU: 0xC73, offset: 0x6B436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1C00, symBinAddr: 0x22300, symSize: 0x30 } + - { offsetInCU: 0xC87, offset: 0x6B44A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C30, symBinAddr: 0x22330, symSize: 0x10 } + - { offsetInCU: 0xC9B, offset: 0x6B45E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C40, symBinAddr: 0x22340, symSize: 0x30 } + - { offsetInCU: 0xCAF, offset: 0x6B472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C70, symBinAddr: 0x22370, symSize: 0x10 } + - { offsetInCU: 0xCC3, offset: 0x6B486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C80, symBinAddr: 0x22380, symSize: 0x30 } + - { offsetInCU: 0xCD7, offset: 0x6B49A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CB0, symBinAddr: 0x223B0, symSize: 0x10 } + - { offsetInCU: 0xCEB, offset: 0x6B4AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CC0, symBinAddr: 0x223C0, symSize: 0x30 } + - { offsetInCU: 0xCFF, offset: 0x6B4C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF0, symBinAddr: 0x223F0, symSize: 0x10 } + - { offsetInCU: 0xD13, offset: 0x6B4D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x22400, symSize: 0x30 } + - { offsetInCU: 0xD27, offset: 0x6B4EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x2150, symBinAddr: 0x22850, symSize: 0x30 } + - { offsetInCU: 0xD3B, offset: 0x6B4FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x22F0, symBinAddr: 0x229F0, symSize: 0x10 } + - { offsetInCU: 0xD4F, offset: 0x6B512, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2300, symBinAddr: 0x22A00, symSize: 0x10 } + - { offsetInCU: 0xD63, offset: 0x6B526, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2310, symBinAddr: 0x22A10, symSize: 0x10 } + - { offsetInCU: 0xD77, offset: 0x6B53A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x2320, symBinAddr: 0x22A20, symSize: 0x30 } + - { offsetInCU: 0xD8B, offset: 0x6B54E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2350, symBinAddr: 0x22A50, symSize: 0x10 } + - { offsetInCU: 0xD9F, offset: 0x6B562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2360, symBinAddr: 0x22A60, symSize: 0x30 } + - { offsetInCU: 0xDB3, offset: 0x6B576, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2390, symBinAddr: 0x22A90, symSize: 0x10 } + - { offsetInCU: 0xDC7, offset: 0x6B58A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23A0, symBinAddr: 0x22AA0, symSize: 0x30 } + - { offsetInCU: 0xE26, offset: 0x6B5E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA80, symBinAddr: 0x212C0, symSize: 0x30 } + - { offsetInCU: 0xEE7, offset: 0x6B6AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x213A0, symSize: 0x20 } + - { offsetInCU: 0xF03, offset: 0x6B6C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB80, symBinAddr: 0x213C0, symSize: 0x20 } + - { offsetInCU: 0xF25, offset: 0x6B6E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD10, symBinAddr: 0x21550, symSize: 0x20 } + - { offsetInCU: 0xF41, offset: 0x6B704, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD30, symBinAddr: 0x21570, symSize: 0x20 } + - { offsetInCU: 0xF63, offset: 0x6B726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF20, symBinAddr: 0x21760, symSize: 0x20 } + - { offsetInCU: 0xF7F, offset: 0x6B742, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF40, symBinAddr: 0x21780, symSize: 0x20 } + - { offsetInCU: 0x106E, offset: 0x6B831, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x20E40, symSize: 0x100 } + - { offsetInCU: 0x109F, offset: 0x6B862, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x700, symBinAddr: 0x20F40, symSize: 0x1B0 } + - { offsetInCU: 0x10D0, offset: 0x6B893, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B0, symBinAddr: 0x210F0, symSize: 0x170 } + - { offsetInCU: 0xA6, offset: 0x6BA4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3B0, symBinAddr: 0x22EB0, symSize: 0x10 } + - { offsetInCU: 0xE2, offset: 0x6BA8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3C0, symBinAddr: 0x22EC0, symSize: 0x40 } + - { offsetInCU: 0x1C6, offset: 0x6BB6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x400, symBinAddr: 0x22F00, symSize: 0x20 } + - { offsetInCU: 0x4B2, offset: 0x6BE5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x460, symBinAddr: 0x22F60, symSize: 0x10 } + - { offsetInCU: 0x4C6, offset: 0x6BE6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x470, symBinAddr: 0x22F70, symSize: 0x30 } + - { offsetInCU: 0x4DA, offset: 0x6BE82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x4A0, symBinAddr: 0x22FA0, symSize: 0x30 } + - { offsetInCU: 0x4EE, offset: 0x6BE96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x4D0, symBinAddr: 0x22FD0, symSize: 0x80 } + - { offsetInCU: 0x502, offset: 0x6BEAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x550, symBinAddr: 0x23050, symSize: 0x250 } + - { offsetInCU: 0x516, offset: 0x6BEBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0x7A0, symBinAddr: 0x232A0, symSize: 0x4F0 } + - { offsetInCU: 0x531, offset: 0x6BED9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xC90, symBinAddr: 0x23790, symSize: 0x30 } + - { offsetInCU: 0x55A, offset: 0x6BF02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xCC0, symBinAddr: 0x237C0, symSize: 0x20 } + - { offsetInCU: 0x56E, offset: 0x6BF16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xCE0, symBinAddr: 0x237E0, symSize: 0x30 } + - { offsetInCU: 0x582, offset: 0x6BF2A, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xD10, symBinAddr: 0x23810, symSize: 0x10 } + - { offsetInCU: 0x596, offset: 0x6BF3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xD20, symBinAddr: 0x23820, symSize: 0x340 } + - { offsetInCU: 0x5AA, offset: 0x6BF52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x1060, symBinAddr: 0x23B60, symSize: 0x40 } + - { offsetInCU: 0x5BE, offset: 0x6BF66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x10A0, symBinAddr: 0x23BA0, symSize: 0x90 } + - { offsetInCU: 0x5D2, offset: 0x6BF7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x1130, symBinAddr: 0x23C30, symSize: 0x10 } + - { offsetInCU: 0x5E6, offset: 0x6BF8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1150, symBinAddr: 0x23C50, symSize: 0x10 } + - { offsetInCU: 0x5FA, offset: 0x6BFA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x11A0, symBinAddr: 0x23CA0, symSize: 0x50 } + - { offsetInCU: 0x60E, offset: 0x6BFB6, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11F0, symBinAddr: 0x23CF0, symSize: 0x20 } + - { offsetInCU: 0x622, offset: 0x6BFCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x1210, symBinAddr: 0x23D10, symSize: 0x40 } + - { offsetInCU: 0x636, offset: 0x6BFDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1250, symBinAddr: 0x23D50, symSize: 0x40 } + - { offsetInCU: 0x64A, offset: 0x6BFF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1290, symBinAddr: 0x23D90, symSize: 0x50 } + - { offsetInCU: 0x65E, offset: 0x6C006, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x12E0, symBinAddr: 0x23DE0, symSize: 0x10 } + - { offsetInCU: 0x672, offset: 0x6C01A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x12F0, symBinAddr: 0x23DF0, symSize: 0x30 } + - { offsetInCU: 0x686, offset: 0x6C02E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x1320, symBinAddr: 0x23E20, symSize: 0x80 } + - { offsetInCU: 0x69A, offset: 0x6C042, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x13A0, symBinAddr: 0x23EA0, symSize: 0xE0 } + - { offsetInCU: 0x6AE, offset: 0x6C056, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1480, symBinAddr: 0x23F80, symSize: 0x30 } + - { offsetInCU: 0x6C2, offset: 0x6C06A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x14B0, symBinAddr: 0x23FB0, symSize: 0x90 } + - { offsetInCU: 0x6D6, offset: 0x6C07E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1540, symBinAddr: 0x24040, symSize: 0x50 } + - { offsetInCU: 0x6EA, offset: 0x6C092, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1590, symBinAddr: 0x24090, symSize: 0x60 } + - { offsetInCU: 0x6FE, offset: 0x6C0A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x240F0, symSize: 0x10 } + - { offsetInCU: 0x712, offset: 0x6C0BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1600, symBinAddr: 0x24100, symSize: 0x30 } + - { offsetInCU: 0x726, offset: 0x6C0CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x1630, symBinAddr: 0x24130, symSize: 0x40 } + - { offsetInCU: 0x73A, offset: 0x6C0E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x24170, symSize: 0x60 } + - { offsetInCU: 0x74E, offset: 0x6C0F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x16F0, symBinAddr: 0x241D0, symSize: 0x50 } + - { offsetInCU: 0x762, offset: 0x6C10A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1740, symBinAddr: 0x24220, symSize: 0x40 } + - { offsetInCU: 0x776, offset: 0x6C11E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x1780, symBinAddr: 0x24260, symSize: 0x50 } + - { offsetInCU: 0x78A, offset: 0x6C132, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x17D0, symBinAddr: 0x242B0, symSize: 0x10 } + - { offsetInCU: 0x79E, offset: 0x6C146, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x17F0, symBinAddr: 0x242C0, symSize: 0x40 } + - { offsetInCU: 0x7B2, offset: 0x6C15A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1830, symBinAddr: 0x24300, symSize: 0x50 } + - { offsetInCU: 0x7C6, offset: 0x6C16E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1880, symBinAddr: 0x24350, symSize: 0x10 } + - { offsetInCU: 0x7DA, offset: 0x6C182, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x18A0, symBinAddr: 0x24360, symSize: 0x80 } + - { offsetInCU: 0x7EE, offset: 0x6C196, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1920, symBinAddr: 0x243E0, symSize: 0xD0 } + - { offsetInCU: 0x802, offset: 0x6C1AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x19F0, symBinAddr: 0x244B0, symSize: 0x10 } + - { offsetInCU: 0x816, offset: 0x6C1BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1A00, symBinAddr: 0x244C0, symSize: 0x10 } + - { offsetInCU: 0x82A, offset: 0x6C1D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1A10, symBinAddr: 0x244D0, symSize: 0x10 } + - { offsetInCU: 0x83E, offset: 0x6C1E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1A20, symBinAddr: 0x244E0, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x6C25D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x420, symBinAddr: 0x22F20, symSize: 0x40 } + - { offsetInCU: 0xA59, offset: 0x6C401, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22B30, symSize: 0x10 } + - { offsetInCU: 0xA8E, offset: 0x6C436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x22B40, symSize: 0xD0 } + - { offsetInCU: 0xAEB, offset: 0x6C493, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xE0, symBinAddr: 0x22C10, symSize: 0x30 } + - { offsetInCU: 0xB05, offset: 0x6C4AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x110, symBinAddr: 0x22C40, symSize: 0x30 } + - { offsetInCU: 0xB39, offset: 0x6C4E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x140, symBinAddr: 0x22C70, symSize: 0x10 } + - { offsetInCU: 0xB4D, offset: 0x6C4F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x150, symBinAddr: 0x22C80, symSize: 0x10 } + - { offsetInCU: 0xB6E, offset: 0x6C516, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x160, symBinAddr: 0x22C90, symSize: 0x10 } + - { offsetInCU: 0xB82, offset: 0x6C52A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x170, symBinAddr: 0x22CA0, symSize: 0x10 } + - { offsetInCU: 0xBB6, offset: 0x6C55E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x180, symBinAddr: 0x22CB0, symSize: 0x20 } + - { offsetInCU: 0xBDA, offset: 0x6C582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x1A0, symBinAddr: 0x22CD0, symSize: 0x10 } + - { offsetInCU: 0xBFB, offset: 0x6C5A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x1B0, symBinAddr: 0x22CE0, symSize: 0x30 } + - { offsetInCU: 0xC0F, offset: 0x6C5B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x210, symBinAddr: 0x22D10, symSize: 0x20 } + - { offsetInCU: 0xC23, offset: 0x6C5CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x230, symBinAddr: 0x22D30, symSize: 0x30 } + - { offsetInCU: 0xC37, offset: 0x6C5DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x260, symBinAddr: 0x22D60, symSize: 0x30 } + - { offsetInCU: 0xC4B, offset: 0x6C5F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x290, symBinAddr: 0x22D90, symSize: 0x10 } + - { offsetInCU: 0xC5F, offset: 0x6C607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x2A0, symBinAddr: 0x22DA0, symSize: 0x10 } + - { offsetInCU: 0xC91, offset: 0x6C639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x2B0, symBinAddr: 0x22DB0, symSize: 0x10 } + - { offsetInCU: 0xCA5, offset: 0x6C64D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x2C0, symBinAddr: 0x22DC0, symSize: 0x10 } + - { offsetInCU: 0xCC6, offset: 0x6C66E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x2D0, symBinAddr: 0x22DD0, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x6C682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x2E0, symBinAddr: 0x22DE0, symSize: 0x10 } + - { offsetInCU: 0xD0C, offset: 0x6C6B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x2F0, symBinAddr: 0x22DF0, symSize: 0x20 } + - { offsetInCU: 0xD30, offset: 0x6C6D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x310, symBinAddr: 0x22E10, symSize: 0x10 } + - { offsetInCU: 0xD51, offset: 0x6C6F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x320, symBinAddr: 0x22E20, symSize: 0x20 } + - { offsetInCU: 0xD75, offset: 0x6C71D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x340, symBinAddr: 0x22E40, symSize: 0x10 } + - { offsetInCU: 0xDA4, offset: 0x6C74C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x350, symBinAddr: 0x22E50, symSize: 0x20 } + - { offsetInCU: 0xE2F, offset: 0x6C7D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x370, symBinAddr: 0x22E70, symSize: 0x40 } + - { offsetInCU: 0x95E, offset: 0x6D25D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x8C20, symBinAddr: 0x2D150, symSize: 0x30 } + - { offsetInCU: 0x1908, offset: 0x6E207, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x17E80, symBinAddr: 0x3C3B0, symSize: 0x80 } + - { offsetInCU: 0x198A, offset: 0x6E289, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x19070, symBinAddr: 0x3D5A0, symSize: 0x40 } + - { offsetInCU: 0x19A6, offset: 0x6E2A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x190B0, symBinAddr: 0x3D5E0, symSize: 0x160 } + - { offsetInCU: 0x1AAF, offset: 0x6E3AE, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x19210, symBinAddr: 0x3D740, symSize: 0x50 } + - { offsetInCU: 0x1B2D, offset: 0x6E42C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x192B0, symBinAddr: 0x3D790, symSize: 0x40 } + - { offsetInCU: 0x1BBB, offset: 0x6E4BA, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x192F0, symBinAddr: 0x3D7D0, symSize: 0x40 } + - { offsetInCU: 0x1C29, offset: 0x6E528, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x19330, symBinAddr: 0x3D810, symSize: 0x60 } + - { offsetInCU: 0x22F5, offset: 0x6EBF4, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x1A280, symBinAddr: 0x3E760, symSize: 0x90 } + - { offsetInCU: 0x2359, offset: 0x6EC58, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x1A310, symBinAddr: 0x3E7F0, symSize: 0x80 } + - { offsetInCU: 0x2426, offset: 0x6ED25, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1A4B0, symBinAddr: 0x3E990, symSize: 0x40 } + - { offsetInCU: 0x25D4, offset: 0x6EED3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1B000, symBinAddr: 0x3F470, symSize: 0x1B0 } + - { offsetInCU: 0x26D9, offset: 0x6EFD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1B1B0, symBinAddr: 0x3F620, symSize: 0x3E0 } + - { offsetInCU: 0x2E52, offset: 0x6F751, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1C610, symBinAddr: 0x40A80, symSize: 0xD90 } + - { offsetInCU: 0x3F5C, offset: 0x7085B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D3A0, symBinAddr: 0x41810, symSize: 0x1E0 } + - { offsetInCU: 0x40CD, offset: 0x709CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D580, symBinAddr: 0x419F0, symSize: 0x1B0 } + - { offsetInCU: 0x44C5, offset: 0x70DC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1E1D0, symBinAddr: 0x42640, symSize: 0x10 } + - { offsetInCU: 0x44D9, offset: 0x70DD8, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1E290, symBinAddr: 0x42700, symSize: 0x20 } + - { offsetInCU: 0x44ED, offset: 0x70DEC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1E2B0, symBinAddr: 0x42720, symSize: 0x20 } + - { offsetInCU: 0x4501, offset: 0x70E00, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1E2D0, symBinAddr: 0x42740, symSize: 0x40 } + - { offsetInCU: 0x4515, offset: 0x70E14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1E330, symBinAddr: 0x42780, symSize: 0x30 } + - { offsetInCU: 0x4529, offset: 0x70E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1E360, symBinAddr: 0x427B0, symSize: 0x180 } + - { offsetInCU: 0x453D, offset: 0x70E3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1E4E0, symBinAddr: 0x42930, symSize: 0x2D0 } + - { offsetInCU: 0x4551, offset: 0x70E50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1E7B0, symBinAddr: 0x42C00, symSize: 0x70 } + - { offsetInCU: 0x4565, offset: 0x70E64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1E820, symBinAddr: 0x42C70, symSize: 0x30 } + - { offsetInCU: 0x4579, offset: 0x70E78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1E850, symBinAddr: 0x42CA0, symSize: 0xD0 } + - { offsetInCU: 0x458D, offset: 0x70E8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1E920, symBinAddr: 0x42D70, symSize: 0xB0 } + - { offsetInCU: 0x45E0, offset: 0x70EDF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1F040, symBinAddr: 0x42E20, symSize: 0xC0 } + - { offsetInCU: 0x4656, offset: 0x70F55, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F100, symBinAddr: 0x42EE0, symSize: 0x80 } + - { offsetInCU: 0x4683, offset: 0x70F82, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F180, symBinAddr: 0x42F60, symSize: 0x80 } + - { offsetInCU: 0x4717, offset: 0x71016, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1F200, symBinAddr: 0x42FE0, symSize: 0x70 } + - { offsetInCU: 0x486E, offset: 0x7116D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1F270, symBinAddr: 0x43050, symSize: 0x780 } + - { offsetInCU: 0x4D47, offset: 0x71646, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1F9F0, symBinAddr: 0x437D0, symSize: 0x40 } + - { offsetInCU: 0x4D5B, offset: 0x7165A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1FAE0, symBinAddr: 0x43840, symSize: 0x10 } + - { offsetInCU: 0x4D6F, offset: 0x7166E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1FAF0, symBinAddr: 0x43850, symSize: 0x30 } + - { offsetInCU: 0x4D83, offset: 0x71682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1FB20, symBinAddr: 0x43880, symSize: 0x30 } + - { offsetInCU: 0x4D97, offset: 0x71696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1FBC0, symBinAddr: 0x438D0, symSize: 0x20 } + - { offsetInCU: 0x4DAB, offset: 0x716AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1FC60, symBinAddr: 0x43950, symSize: 0x30 } + - { offsetInCU: 0x4DE0, offset: 0x716DF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1FD60, symBinAddr: 0x43A50, symSize: 0x40 } + - { offsetInCU: 0x4DF4, offset: 0x716F3, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1FDD0, symBinAddr: 0x43AC0, symSize: 0x30 } + - { offsetInCU: 0x4E08, offset: 0x71707, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1FE00, symBinAddr: 0x43AF0, symSize: 0x30 } + - { offsetInCU: 0x4E1C, offset: 0x7171B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1FE50, symBinAddr: 0x43B40, symSize: 0x50 } + - { offsetInCU: 0x4E30, offset: 0x7172F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1FEA0, symBinAddr: 0x43B90, symSize: 0x40 } + - { offsetInCU: 0x4E44, offset: 0x71743, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1FF70, symBinAddr: 0x43C60, symSize: 0x10 } + - { offsetInCU: 0x4E58, offset: 0x71757, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1FF80, symBinAddr: 0x43C70, symSize: 0x20 } + - { offsetInCU: 0x4E6C, offset: 0x7176B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1FFA0, symBinAddr: 0x43C90, symSize: 0x30 } + - { offsetInCU: 0x4E80, offset: 0x7177F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x20010, symBinAddr: 0x43D00, symSize: 0x40 } + - { offsetInCU: 0x54F1, offset: 0x71DF0, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xBA80, symBinAddr: 0x2FFB0, symSize: 0x4B0 } + - { offsetInCU: 0x5640, offset: 0x71F3F, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xD130, symBinAddr: 0x31660, symSize: 0x3C0 } + - { offsetInCU: 0x5944, offset: 0x72243, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xD4F0, symBinAddr: 0x31A20, symSize: 0x390 } + - { offsetInCU: 0x5DBC, offset: 0x726BB, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x11F00, symBinAddr: 0x36430, symSize: 0x1B0 } + - { offsetInCU: 0x61A6, offset: 0x72AA5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x1AA10, symBinAddr: 0x3EEF0, symSize: 0xE0 } + - { offsetInCU: 0x62EE, offset: 0x72BED, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x1AB30, symBinAddr: 0x3EFD0, symSize: 0xF0 } + - { offsetInCU: 0x640B, offset: 0x72D0A, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1ADE0, symBinAddr: 0x3F250, symSize: 0x220 } + - { offsetInCU: 0x651B, offset: 0x72E1A, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1B590, symBinAddr: 0x3FA00, symSize: 0x1A0 } + - { offsetInCU: 0x6861, offset: 0x73160, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1D940, symBinAddr: 0x41DB0, symSize: 0x240 } + - { offsetInCU: 0x6990, offset: 0x7328F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x1DB80, symBinAddr: 0x41FF0, symSize: 0xF0 } + - { offsetInCU: 0x6ADE, offset: 0x733DD, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x1DC70, symBinAddr: 0x420E0, symSize: 0xF0 } + - { offsetInCU: 0x6C40, offset: 0x7353F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x1DD60, symBinAddr: 0x421D0, symSize: 0xE0 } + - { offsetInCU: 0x6D96, offset: 0x73695, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x1DE40, symBinAddr: 0x422B0, symSize: 0xF0 } + - { offsetInCU: 0x6ED8, offset: 0x737D7, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x1DF30, symBinAddr: 0x423A0, symSize: 0xE0 } + - { offsetInCU: 0x703A, offset: 0x73939, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1E0F0, symBinAddr: 0x42560, symSize: 0xE0 } + - { offsetInCU: 0x71B1, offset: 0x73AB0, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1FC90, symBinAddr: 0x43980, symSize: 0xD0 } + - { offsetInCU: 0x7718, offset: 0x74017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x24530, symSize: 0x170 } + - { offsetInCU: 0x785B, offset: 0x7415A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x170, symBinAddr: 0x246A0, symSize: 0x680 } + - { offsetInCU: 0x7B67, offset: 0x74466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2CF0, symBinAddr: 0x27220, symSize: 0x780 } + - { offsetInCU: 0x7E35, offset: 0x74734, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x7F0, symBinAddr: 0x24D20, symSize: 0x80 } + - { offsetInCU: 0x7F71, offset: 0x74870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x870, symBinAddr: 0x24DA0, symSize: 0x2140 } + - { offsetInCU: 0x8F2C, offset: 0x7582B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xD880, symBinAddr: 0x31DB0, symSize: 0x3D60 } + - { offsetInCU: 0xA376, offset: 0x76C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x115E0, symBinAddr: 0x35B10, symSize: 0x640 } + - { offsetInCU: 0xA792, offset: 0x77091, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x13740, symBinAddr: 0x37C70, symSize: 0x2E30 } + - { offsetInCU: 0xBCE9, offset: 0x785E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x175A0, symBinAddr: 0x3BAD0, symSize: 0x450 } + - { offsetInCU: 0xBE7A, offset: 0x78779, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x29B0, symBinAddr: 0x26EE0, symSize: 0x340 } + - { offsetInCU: 0xC262, offset: 0x78B61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x3470, symBinAddr: 0x279A0, symSize: 0x460 } + - { offsetInCU: 0xC4EE, offset: 0x78DED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x38D0, symBinAddr: 0x27E00, symSize: 0x4C20 } + - { offsetInCU: 0xE149, offset: 0x7AA48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x84F0, symBinAddr: 0x2CA20, symSize: 0x2E0 } + - { offsetInCU: 0xE240, offset: 0x7AB3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x8C50, symBinAddr: 0x2D180, symSize: 0x1CB0 } + - { offsetInCU: 0xEC49, offset: 0x7B548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x87D0, symBinAddr: 0x2CD00, symSize: 0x120 } + - { offsetInCU: 0xECC2, offset: 0x7B5C1, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x88F0, symBinAddr: 0x2CE20, symSize: 0x120 } + - { offsetInCU: 0xECDD, offset: 0x7B5DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x8A10, symBinAddr: 0x2CF40, symSize: 0x210 } + - { offsetInCU: 0xEFE3, offset: 0x7B8E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0xA900, symBinAddr: 0x2EE30, symSize: 0x4C0 } + - { offsetInCU: 0xF240, offset: 0x7BB3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xBF30, symBinAddr: 0x30460, symSize: 0x1200 } + - { offsetInCU: 0xFB4E, offset: 0x7C44D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xADC0, symBinAddr: 0x2F2F0, symSize: 0xCC0 } + - { offsetInCU: 0x10564, offset: 0x7CE63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x120B0, symBinAddr: 0x365E0, symSize: 0x1690 } + - { offsetInCU: 0x1167C, offset: 0x7DF7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1B730, symBinAddr: 0x3FBA0, symSize: 0xD70 } + - { offsetInCU: 0x12036, offset: 0x7E935, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x16570, symBinAddr: 0x3AAA0, symSize: 0x1030 } + - { offsetInCU: 0x12B2D, offset: 0x7F42C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x179F0, symBinAddr: 0x3BF20, symSize: 0x1C0 } + - { offsetInCU: 0x12BB1, offset: 0x7F4B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x17BB0, symBinAddr: 0x3C0E0, symSize: 0x2D0 } + - { offsetInCU: 0x12CD6, offset: 0x7F5D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x17F00, symBinAddr: 0x3C430, symSize: 0x1170 } + - { offsetInCU: 0x1369E, offset: 0x7FF9D, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x19390, symBinAddr: 0x3D870, symSize: 0x60 } + - { offsetInCU: 0x136DC, offset: 0x7FFDB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x193F0, symBinAddr: 0x3D8D0, symSize: 0x30 } + - { offsetInCU: 0x13723, offset: 0x80022, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19420, symBinAddr: 0x3D900, symSize: 0x80 } + - { offsetInCU: 0x137BD, offset: 0x800BC, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x194A0, symBinAddr: 0x3D980, symSize: 0x60 } + - { offsetInCU: 0x13859, offset: 0x80158, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x19500, symBinAddr: 0x3D9E0, symSize: 0x50 } + - { offsetInCU: 0x138D2, offset: 0x801D1, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x195A0, symBinAddr: 0x3DA80, symSize: 0xE0 } + - { offsetInCU: 0x13936, offset: 0x80235, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19680, symBinAddr: 0x3DB60, symSize: 0xC0 } + - { offsetInCU: 0x1395F, offset: 0x8025E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19740, symBinAddr: 0x3DC20, symSize: 0x180 } + - { offsetInCU: 0x13A48, offset: 0x80347, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x198C0, symBinAddr: 0x3DDA0, symSize: 0x110 } + - { offsetInCU: 0x13B77, offset: 0x80476, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x199D0, symBinAddr: 0x3DEB0, symSize: 0x130 } + - { offsetInCU: 0x13CA6, offset: 0x805A5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x19B00, symBinAddr: 0x3DFE0, symSize: 0x180 } + - { offsetInCU: 0x13E17, offset: 0x80716, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x19C80, symBinAddr: 0x3E160, symSize: 0x1A0 } + - { offsetInCU: 0x13F8F, offset: 0x8088E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x19E20, symBinAddr: 0x3E300, symSize: 0x110 } + - { offsetInCU: 0x140C5, offset: 0x809C4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x19F30, symBinAddr: 0x3E410, symSize: 0x110 } + - { offsetInCU: 0x141FB, offset: 0x80AFA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1A170, symBinAddr: 0x3E650, symSize: 0x110 } + - { offsetInCU: 0x14319, offset: 0x80C18, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x1A390, symBinAddr: 0x3E870, symSize: 0x120 } + - { offsetInCU: 0x14404, offset: 0x80D03, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1A7C0, symBinAddr: 0x3ECA0, symSize: 0x180 } + - { offsetInCU: 0x144D3, offset: 0x80DD2, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1A940, symBinAddr: 0x3EE20, symSize: 0xD0 } + - { offsetInCU: 0x1456B, offset: 0x80E6A, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1AC20, symBinAddr: 0x3F0C0, symSize: 0x170 } + - { offsetInCU: 0x1476D, offset: 0x8106C, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1C4A0, symBinAddr: 0x40910, symSize: 0x170 } + - { offsetInCU: 0x27, offset: 0x81791, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43D70, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x817A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43D70, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x817BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x43DA0, symSize: 0x140 } + - { offsetInCU: 0x67, offset: 0x817D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x43EE0, symSize: 0x440 } + - { offsetInCU: 0x7B, offset: 0x817E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x44320, symSize: 0x590 } + - { offsetInCU: 0x8F, offset: 0x817F9, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x448B0, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x8180D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x448C0, symSize: 0x440 } + - { offsetInCU: 0xB7, offset: 0x81821, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x44D00, symSize: 0x40 } + - { offsetInCU: 0xCB, offset: 0x81835, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x44D40, symSize: 0x110 } + - { offsetInCU: 0xDF, offset: 0x81849, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x44E50, symSize: 0xA } + - { offsetInCU: 0x4F9, offset: 0x81E23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA480, symBinAddr: 0x4F2E0, symSize: 0x250 } + - { offsetInCU: 0x5CD, offset: 0x81EF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA6D0, symBinAddr: 0x4F530, symSize: 0x260 } + - { offsetInCU: 0x6B0, offset: 0x81FDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xF620, symBinAddr: 0x54480, symSize: 0x8E0 } + - { offsetInCU: 0x9E6, offset: 0x82310, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xFF00, symBinAddr: 0x54D60, symSize: 0xA50 } + - { offsetInCU: 0xCC0, offset: 0x825EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0x10950, symBinAddr: 0x557B0, symSize: 0x300 } + - { offsetInCU: 0xDD8, offset: 0x82702, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x11440, symBinAddr: 0x562A0, symSize: 0x950 } + - { offsetInCU: 0x10CE, offset: 0x829F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11D90, symBinAddr: 0x56BF0, symSize: 0xBD0 } + - { offsetInCU: 0x13A8, offset: 0x82CD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x12960, symBinAddr: 0x577C0, symSize: 0x370 } + - { offsetInCU: 0x14C0, offset: 0x82DEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x12CD0, symBinAddr: 0x57B30, symSize: 0x210 } + - { offsetInCU: 0x190C, offset: 0x83236, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2480, symBinAddr: 0x472E0, symSize: 0x30 } + - { offsetInCU: 0x1E10, offset: 0x8373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0xAA10, symBinAddr: 0x4F870, symSize: 0x20 } + - { offsetInCU: 0x1E55, offset: 0x8377F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xAA30, symBinAddr: 0x4F890, symSize: 0x90 } + - { offsetInCU: 0x1F1C, offset: 0x83846, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xBEC0, symBinAddr: 0x50D20, symSize: 0x50 } + - { offsetInCU: 0x1F56, offset: 0x83880, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xBF10, symBinAddr: 0x50D70, symSize: 0x50 } + - { offsetInCU: 0x1FAC, offset: 0x838D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBF60, symBinAddr: 0x50DC0, symSize: 0x60 } + - { offsetInCU: 0x1FDF, offset: 0x83909, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xBFC0, symBinAddr: 0x50E20, symSize: 0x10 } + - { offsetInCU: 0x201E, offset: 0x83948, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBFD0, symBinAddr: 0x50E30, symSize: 0x70 } + - { offsetInCU: 0x2074, offset: 0x8399E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xC040, symBinAddr: 0x50EA0, symSize: 0x90 } + - { offsetInCU: 0x20E5, offset: 0x83A0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xC0D0, symBinAddr: 0x50F30, symSize: 0xE0 } + - { offsetInCU: 0x2167, offset: 0x83A91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xC1B0, symBinAddr: 0x51010, symSize: 0x10 } + - { offsetInCU: 0x2183, offset: 0x83AAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xC1C0, symBinAddr: 0x51020, symSize: 0x10 } + - { offsetInCU: 0x21BD, offset: 0x83AE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xC1D0, symBinAddr: 0x51030, symSize: 0x60 } + - { offsetInCU: 0x24DE, offset: 0x83E08, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xD6A0, symBinAddr: 0x52500, symSize: 0x120 } + - { offsetInCU: 0x2544, offset: 0x83E6E, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xD8E0, symBinAddr: 0x52740, symSize: 0x2A0 } + - { offsetInCU: 0x26C8, offset: 0x83FF2, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xE170, symBinAddr: 0x52FD0, symSize: 0x70 } + - { offsetInCU: 0x2CC4, offset: 0x845EE, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xEA90, symBinAddr: 0x538F0, symSize: 0x450 } + - { offsetInCU: 0x34EB, offset: 0x84E15, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xEEE0, symBinAddr: 0x53D40, symSize: 0x2D0 } + - { offsetInCU: 0x38AD, offset: 0x851D7, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xF1B0, symBinAddr: 0x54010, symSize: 0x160 } + - { offsetInCU: 0x3AA8, offset: 0x853D2, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xF310, symBinAddr: 0x54170, symSize: 0x1E0 } + - { offsetInCU: 0x3CF1, offset: 0x8561B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x137D0, symBinAddr: 0x58630, symSize: 0x130 } + - { offsetInCU: 0x3E3B, offset: 0x85765, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x167D0, symBinAddr: 0x5B630, symSize: 0x130 } + - { offsetInCU: 0x3F53, offset: 0x8587D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x16F50, symBinAddr: 0x5BD40, symSize: 0x20 } + - { offsetInCU: 0x3F67, offset: 0x85891, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x16F70, symBinAddr: 0x5BD60, symSize: 0x20 } + - { offsetInCU: 0x3F7B, offset: 0x858A5, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x16FF0, symBinAddr: 0x5BD80, symSize: 0x40 } + - { offsetInCU: 0x3F8F, offset: 0x858B9, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x170E0, symBinAddr: 0x5BDC0, symSize: 0x30 } + - { offsetInCU: 0x3FA3, offset: 0x858CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x17110, symBinAddr: 0x5BDF0, symSize: 0x30 } + - { offsetInCU: 0x3FB7, offset: 0x858E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOd', symObjAddr: 0x17140, symBinAddr: 0x5BE20, symSize: 0x40 } + - { offsetInCU: 0x3FCB, offset: 0x858F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x17180, symBinAddr: 0x5BE60, symSize: 0x10 } + - { offsetInCU: 0x3FDF, offset: 0x85909, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x17190, symBinAddr: 0x5BE70, symSize: 0x20 } + - { offsetInCU: 0x3FF3, offset: 0x8591D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x171B0, symBinAddr: 0x5BE90, symSize: 0x10 } + - { offsetInCU: 0x4007, offset: 0x85931, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x17240, symBinAddr: 0x5BEE0, symSize: 0x40 } + - { offsetInCU: 0x405F, offset: 0x85989, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x17300, symBinAddr: 0x5BFA0, symSize: 0x20 } + - { offsetInCU: 0x409B, offset: 0x859C5, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x17350, symBinAddr: 0x5BFF0, symSize: 0x30 } + - { offsetInCU: 0x4BAE, offset: 0x864D8, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x44E60, symSize: 0x70 } + - { offsetInCU: 0x4C0F, offset: 0x86539, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x70, symBinAddr: 0x44ED0, symSize: 0xA0 } + - { offsetInCU: 0x4D56, offset: 0x86680, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x110, symBinAddr: 0x44F70, symSize: 0x90 } + - { offsetInCU: 0x4E6C, offset: 0x86796, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x45000, symSize: 0x60 } + - { offsetInCU: 0x4EC8, offset: 0x867F2, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x200, symBinAddr: 0x45060, symSize: 0x10 } + - { offsetInCU: 0x4EE3, offset: 0x8680D, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x210, symBinAddr: 0x45070, symSize: 0x140 } + - { offsetInCU: 0x4F4E, offset: 0x86878, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x350, symBinAddr: 0x451B0, symSize: 0xE0 } + - { offsetInCU: 0x5030, offset: 0x8695A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x430, symBinAddr: 0x45290, symSize: 0x2D0 } + - { offsetInCU: 0x51AE, offset: 0x86AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x700, symBinAddr: 0x45560, symSize: 0xD90 } + - { offsetInCU: 0x561D, offset: 0x86F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x1490, symBinAddr: 0x462F0, symSize: 0x4F0 } + - { offsetInCU: 0x589C, offset: 0x871C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1980, symBinAddr: 0x467E0, symSize: 0xB00 } + - { offsetInCU: 0x5C0F, offset: 0x87539, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x24B0, symBinAddr: 0x47310, symSize: 0x2870 } + - { offsetInCU: 0x7052, offset: 0x8897C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x10C50, symBinAddr: 0x55AB0, symSize: 0x7F0 } + - { offsetInCU: 0x7410, offset: 0x88D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4D20, symBinAddr: 0x49B80, symSize: 0x19B0 } + - { offsetInCU: 0x8255, offset: 0x89B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x66D0, symBinAddr: 0x4B530, symSize: 0x1200 } + - { offsetInCU: 0x8C0F, offset: 0x8A539, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x78D0, symBinAddr: 0x4C730, symSize: 0x400 } + - { offsetInCU: 0x8D78, offset: 0x8A6A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x86F0, symBinAddr: 0x4D550, symSize: 0x210 } + - { offsetInCU: 0x9003, offset: 0x8A92D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8900, symBinAddr: 0x4D760, symSize: 0xA60 } + - { offsetInCU: 0x97BC, offset: 0x8B0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x9360, symBinAddr: 0x4E1C0, symSize: 0x2F0 } + - { offsetInCU: 0x990E, offset: 0x8B238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9650, symBinAddr: 0x4E4B0, symSize: 0x6F0 } + - { offsetInCU: 0x9CDD, offset: 0x8B607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x9D40, symBinAddr: 0x4EBA0, symSize: 0x740 } + - { offsetInCU: 0x9F97, offset: 0x8B8C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0xA930, symBinAddr: 0x4F790, symSize: 0xC0 } + - { offsetInCU: 0x9FBA, offset: 0x8B8E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0xA9F0, symBinAddr: 0x4F850, symSize: 0x20 } + - { offsetInCU: 0xA045, offset: 0x8B96F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0xAAC0, symBinAddr: 0x4F920, symSize: 0x13C0 } + - { offsetInCU: 0xA644, offset: 0x8BF6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xBE80, symBinAddr: 0x50CE0, symSize: 0x40 } + - { offsetInCU: 0xA6B7, offset: 0x8BFE1, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xC230, symBinAddr: 0x51090, symSize: 0x10 } + - { offsetInCU: 0xA6D2, offset: 0x8BFFC, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xC240, symBinAddr: 0x510A0, symSize: 0x10 } + - { offsetInCU: 0xA6FB, offset: 0x8C025, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xC250, symBinAddr: 0x510B0, symSize: 0xC0 } + - { offsetInCU: 0xA76E, offset: 0x8C098, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xC310, symBinAddr: 0x51170, symSize: 0xC0 } + - { offsetInCU: 0xA81A, offset: 0x8C144, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xC4A0, symBinAddr: 0x51300, symSize: 0x260 } + - { offsetInCU: 0xA8A6, offset: 0x8C1D0, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xC700, symBinAddr: 0x51560, symSize: 0x220 } + - { offsetInCU: 0xA976, offset: 0x8C2A0, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xC920, symBinAddr: 0x51780, symSize: 0x3C0 } + - { offsetInCU: 0xAA59, offset: 0x8C383, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xCCE0, symBinAddr: 0x51B40, symSize: 0x3D0 } + - { offsetInCU: 0xAB4A, offset: 0x8C474, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xD0B0, symBinAddr: 0x51F10, symSize: 0x220 } + - { offsetInCU: 0xABE7, offset: 0x8C511, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xD2D0, symBinAddr: 0x52130, symSize: 0x230 } + - { offsetInCU: 0xAC7D, offset: 0x8C5A7, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xD500, symBinAddr: 0x52360, symSize: 0x40 } + - { offsetInCU: 0xAD30, offset: 0x8C65A, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xD540, symBinAddr: 0x523A0, symSize: 0xA0 } + - { offsetInCU: 0xADE5, offset: 0x8C70F, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xD5E0, symBinAddr: 0x52440, symSize: 0x40 } + - { offsetInCU: 0xAE22, offset: 0x8C74C, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xD620, symBinAddr: 0x52480, symSize: 0x20 } + - { offsetInCU: 0xAE4B, offset: 0x8C775, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xD640, symBinAddr: 0x524A0, symSize: 0x30 } + - { offsetInCU: 0xAE74, offset: 0x8C79E, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xD670, symBinAddr: 0x524D0, symSize: 0x20 } + - { offsetInCU: 0xAEB5, offset: 0x8C7DF, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xDE10, symBinAddr: 0x52C70, symSize: 0x80 } + - { offsetInCU: 0xAEC9, offset: 0x8C7F3, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xDE90, symBinAddr: 0x52CF0, symSize: 0x60 } + - { offsetInCU: 0xAEF9, offset: 0x8C823, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xDEF0, symBinAddr: 0x52D50, symSize: 0x180 } + - { offsetInCU: 0xAF56, offset: 0x8C880, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xE070, symBinAddr: 0x52ED0, symSize: 0x100 } + - { offsetInCU: 0xAF7D, offset: 0x8C8A7, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xE1E0, symBinAddr: 0x53040, symSize: 0x2D0 } + - { offsetInCU: 0xAFB2, offset: 0x8C8DC, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xE4B0, symBinAddr: 0x53310, symSize: 0xA0 } + - { offsetInCU: 0xAFC6, offset: 0x8C8F0, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xE550, symBinAddr: 0x533B0, symSize: 0x20 } + - { offsetInCU: 0xAFDA, offset: 0x8C904, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE570, symBinAddr: 0x533D0, symSize: 0x20 } + - { offsetInCU: 0xAFEE, offset: 0x8C918, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE590, symBinAddr: 0x533F0, symSize: 0x20 } + - { offsetInCU: 0xB025, offset: 0x8C94F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xE5B0, symBinAddr: 0x53410, symSize: 0x110 } + - { offsetInCU: 0xB123, offset: 0x8CA4D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE6C0, symBinAddr: 0x53520, symSize: 0x1A0 } + - { offsetInCU: 0xB263, offset: 0x8CB8D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE860, symBinAddr: 0x536C0, symSize: 0x130 } + - { offsetInCU: 0xB337, offset: 0x8CC61, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xE990, symBinAddr: 0x537F0, symSize: 0x100 } + - { offsetInCU: 0xB47D, offset: 0x8CDA7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xF4F0, symBinAddr: 0x54350, symSize: 0x20 } + - { offsetInCU: 0xB49F, offset: 0x8CDC9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xF510, symBinAddr: 0x54370, symSize: 0x110 } + - { offsetInCU: 0xB571, offset: 0x8CE9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x12EE0, symBinAddr: 0x57D40, symSize: 0x8F0 } + - { offsetInCU: 0xBA7E, offset: 0x8D3A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13900, symBinAddr: 0x58760, symSize: 0x2ED0 } + - { offsetInCU: 0xC1F0, offset: 0x8DB1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x16900, symBinAddr: 0x5B760, symSize: 0x5E0 } + - { offsetInCU: 0x95, offset: 0x8DFA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x10E0, symBinAddr: 0x5D1F0, symSize: 0x50 } + - { offsetInCU: 0xDF, offset: 0x8DFEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1130, symBinAddr: 0x5D240, symSize: 0x20 } + - { offsetInCU: 0x110, offset: 0x8E01D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1150, symBinAddr: 0x5D260, symSize: 0x10 } + - { offsetInCU: 0x12C, offset: 0x8E039, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1160, symBinAddr: 0x5D270, symSize: 0x10 } + - { offsetInCU: 0x148, offset: 0x8E055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6FD0, symBinAddr: 0x63020, symSize: 0xF0 } + - { offsetInCU: 0x1DF, offset: 0x8E0EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x5D2C0, symSize: 0x50 } + - { offsetInCU: 0x216, offset: 0x8E123, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1200, symBinAddr: 0x5D310, symSize: 0x50 } + - { offsetInCU: 0x239, offset: 0x8E146, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x70C0, symBinAddr: 0x63110, symSize: 0x13C0 } + - { offsetInCU: 0x2C7, offset: 0x8E1D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1250, symBinAddr: 0x5D360, symSize: 0x10 } + - { offsetInCU: 0x31A, offset: 0x8E227, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1270, symBinAddr: 0x5D380, symSize: 0x20 } + - { offsetInCU: 0x394, offset: 0x8E2A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x12A0, symBinAddr: 0x5D3B0, symSize: 0x90 } + - { offsetInCU: 0x3C9, offset: 0x8E2D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1330, symBinAddr: 0x5D440, symSize: 0x20 } + - { offsetInCU: 0x3FA, offset: 0x8E307, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1350, symBinAddr: 0x5D460, symSize: 0x10 } + - { offsetInCU: 0x416, offset: 0x8E323, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1360, symBinAddr: 0x5D470, symSize: 0x10 } + - { offsetInCU: 0x432, offset: 0x8E33F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8EF0, symBinAddr: 0x64560, symSize: 0x1B0 } + - { offsetInCU: 0x514, offset: 0x8E421, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13B0, symBinAddr: 0x5D4C0, symSize: 0x50 } + - { offsetInCU: 0x54B, offset: 0x8E458, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1400, symBinAddr: 0x5D510, symSize: 0x50 } + - { offsetInCU: 0x56E, offset: 0x8E47B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x90A0, symBinAddr: 0x64710, symSize: 0x1180 } + - { offsetInCU: 0x5F0, offset: 0x8E4FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1650, symBinAddr: 0x5D760, symSize: 0x30 } + - { offsetInCU: 0x621, offset: 0x8E52E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1680, symBinAddr: 0x5D790, symSize: 0x80 } + - { offsetInCU: 0x63D, offset: 0x8E54A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x5D810, symSize: 0x70 } + - { offsetInCU: 0x672, offset: 0x8E57F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5D880, symSize: 0x20 } + - { offsetInCU: 0x6C2, offset: 0x8E5CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1790, symBinAddr: 0x5D8A0, symSize: 0x10 } + - { offsetInCU: 0x6DE, offset: 0x8E5EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x5D8B0, symSize: 0x10 } + - { offsetInCU: 0x6FA, offset: 0x8E607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xA370, symBinAddr: 0x659E0, symSize: 0x60 } + - { offsetInCU: 0x759, offset: 0x8E666, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x5D900, symSize: 0x50 } + - { offsetInCU: 0x790, offset: 0x8E69D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1840, symBinAddr: 0x5D950, symSize: 0x50 } + - { offsetInCU: 0x7B3, offset: 0x8E6C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA3D0, symBinAddr: 0x65A40, symSize: 0x210 } + - { offsetInCU: 0x817, offset: 0x8E724, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5D9C0, symSize: 0x10 } + - { offsetInCU: 0x84C, offset: 0x8E759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18C0, symBinAddr: 0x5D9D0, symSize: 0x20 } + - { offsetInCU: 0x87D, offset: 0x8E78A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18E0, symBinAddr: 0x5D9F0, symSize: 0x10 } + - { offsetInCU: 0x899, offset: 0x8E7A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x5DA00, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x8E7C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA5E0, symBinAddr: 0x65C50, symSize: 0x270 } + - { offsetInCU: 0xA01, offset: 0x8E90E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1940, symBinAddr: 0x5DA50, symSize: 0x50 } + - { offsetInCU: 0xA38, offset: 0x8E945, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1990, symBinAddr: 0x5DAA0, symSize: 0x50 } + - { offsetInCU: 0xA5B, offset: 0x8E968, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA850, symBinAddr: 0x65EC0, symSize: 0x5E0 } + - { offsetInCU: 0xAE8, offset: 0x8E9F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x19E0, symBinAddr: 0x5DAF0, symSize: 0x10 } + - { offsetInCU: 0xB60, offset: 0x8EA6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5DB00, symSize: 0x40 } + - { offsetInCU: 0xC44, offset: 0x8EB51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A30, symBinAddr: 0x5DB40, symSize: 0x20 } + - { offsetInCU: 0xCCA, offset: 0x8EBD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A90, symBinAddr: 0x5DBA0, symSize: 0x30 } + - { offsetInCU: 0xD14, offset: 0x8EC21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5DBD0, symSize: 0x20 } + - { offsetInCU: 0xD45, offset: 0x8EC52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x5DBF0, symSize: 0x10 } + - { offsetInCU: 0xD61, offset: 0x8EC6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AF0, symBinAddr: 0x5DC00, symSize: 0x10 } + - { offsetInCU: 0xD7D, offset: 0x8EC8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAE30, symBinAddr: 0x664A0, symSize: 0xA0 } + - { offsetInCU: 0xDFB, offset: 0x8ED08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5DC50, symSize: 0x30 } + - { offsetInCU: 0xE32, offset: 0x8ED3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B70, symBinAddr: 0x5DC80, symSize: 0x20 } + - { offsetInCU: 0xE55, offset: 0x8ED62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAED0, symBinAddr: 0x66540, symSize: 0x180 } + - { offsetInCU: 0xEC5, offset: 0x8EDD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C30, symBinAddr: 0x5DD40, symSize: 0xA0 } + - { offsetInCU: 0xEFA, offset: 0x8EE07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1CD0, symBinAddr: 0x5DDE0, symSize: 0x20 } + - { offsetInCU: 0xF2B, offset: 0x8EE38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1CF0, symBinAddr: 0x5DE00, symSize: 0x10 } + - { offsetInCU: 0xF47, offset: 0x8EE54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D00, symBinAddr: 0x5DE10, symSize: 0x10 } + - { offsetInCU: 0xF63, offset: 0x8EE70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xB050, symBinAddr: 0x666C0, symSize: 0x1F0 } + - { offsetInCU: 0x105E, offset: 0x8EF6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D50, symBinAddr: 0x5DE60, symSize: 0x50 } + - { offsetInCU: 0x1095, offset: 0x8EFA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1DA0, symBinAddr: 0x5DEB0, symSize: 0x50 } + - { offsetInCU: 0x10B8, offset: 0x8EFC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB240, symBinAddr: 0x668B0, symSize: 0x840 } + - { offsetInCU: 0x1152, offset: 0x8F05F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x5E050, symSize: 0x30 } + - { offsetInCU: 0x1183, offset: 0x8F090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1F70, symBinAddr: 0x5E080, symSize: 0x30 } + - { offsetInCU: 0x1197, offset: 0x8F0A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1FA0, symBinAddr: 0x5E0B0, symSize: 0x10 } + - { offsetInCU: 0x11CC, offset: 0x8F0D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FB0, symBinAddr: 0x5E0C0, symSize: 0x20 } + - { offsetInCU: 0x121C, offset: 0x8F129, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x5E0E0, symSize: 0x10 } + - { offsetInCU: 0x1238, offset: 0x8F145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FE0, symBinAddr: 0x5E0F0, symSize: 0x10 } + - { offsetInCU: 0x1254, offset: 0x8F161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xBB10, symBinAddr: 0x67180, symSize: 0x60 } + - { offsetInCU: 0x12D2, offset: 0x8F1DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2030, symBinAddr: 0x5E140, symSize: 0x50 } + - { offsetInCU: 0x1309, offset: 0x8F216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2080, symBinAddr: 0x5E190, symSize: 0x50 } + - { offsetInCU: 0x132C, offset: 0x8F239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xBB70, symBinAddr: 0x671E0, symSize: 0x950 } + - { offsetInCU: 0x1404, offset: 0x8F311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6D80, symBinAddr: 0x62E70, symSize: 0x50 } + - { offsetInCU: 0x145D, offset: 0x8F36A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6DD0, symBinAddr: 0x62EC0, symSize: 0x80 } + - { offsetInCU: 0x14B1, offset: 0x8F3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6E50, symBinAddr: 0x62F40, symSize: 0x10 } + - { offsetInCU: 0x14E6, offset: 0x8F3F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E60, symBinAddr: 0x62F50, symSize: 0x20 } + - { offsetInCU: 0x1567, offset: 0x8F474, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6EB0, symBinAddr: 0x62FA0, symSize: 0x10 } + - { offsetInCU: 0x1584, offset: 0x8F491, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x22C0, symBinAddr: 0x5E3D0, symSize: 0x20 } + - { offsetInCU: 0x1598, offset: 0x8F4A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x22E0, symBinAddr: 0x5E3F0, symSize: 0x140 } + - { offsetInCU: 0x15AC, offset: 0x8F4B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x2420, symBinAddr: 0x5E530, symSize: 0x4F0 } + - { offsetInCU: 0x15C0, offset: 0x8F4CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x2910, symBinAddr: 0x5EA20, symSize: 0xED0 } + - { offsetInCU: 0x15DB, offset: 0x8F4E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x37E0, symBinAddr: 0x5F8F0, symSize: 0x30 } + - { offsetInCU: 0x1604, offset: 0x8F511, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x3810, symBinAddr: 0x5F920, symSize: 0x20 } + - { offsetInCU: 0x1618, offset: 0x8F525, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x3830, symBinAddr: 0x5F940, symSize: 0x20 } + - { offsetInCU: 0x162C, offset: 0x8F539, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x3850, symBinAddr: 0x5F960, symSize: 0x20 } + - { offsetInCU: 0x1640, offset: 0x8F54D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x3870, symBinAddr: 0x5F980, symSize: 0x20 } + - { offsetInCU: 0x1654, offset: 0x8F561, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3890, symBinAddr: 0x5F9A0, symSize: 0x10 } + - { offsetInCU: 0x1668, offset: 0x8F575, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x38A0, symBinAddr: 0x5F9B0, symSize: 0x580 } + - { offsetInCU: 0x167C, offset: 0x8F589, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x3E20, symBinAddr: 0x5FF30, symSize: 0x50 } + - { offsetInCU: 0x1690, offset: 0x8F59D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3E70, symBinAddr: 0x5FF80, symSize: 0x140 } + - { offsetInCU: 0x16A4, offset: 0x8F5B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x3FB0, symBinAddr: 0x600C0, symSize: 0x10 } + - { offsetInCU: 0x16B8, offset: 0x8F5C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3FC0, symBinAddr: 0x600D0, symSize: 0x30 } + - { offsetInCU: 0x16CC, offset: 0x8F5D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x3FF0, symBinAddr: 0x60100, symSize: 0x120 } + - { offsetInCU: 0x16E0, offset: 0x8F5ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x4110, symBinAddr: 0x60220, symSize: 0x480 } + - { offsetInCU: 0x16F4, offset: 0x8F601, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x4590, symBinAddr: 0x606A0, symSize: 0x9D0 } + - { offsetInCU: 0x1708, offset: 0x8F615, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4F60, symBinAddr: 0x61070, symSize: 0x10 } + - { offsetInCU: 0x171C, offset: 0x8F629, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4F70, symBinAddr: 0x61080, symSize: 0x500 } + - { offsetInCU: 0x1730, offset: 0x8F63D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x5470, symBinAddr: 0x61580, symSize: 0x50 } + - { offsetInCU: 0x1744, offset: 0x8F651, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x54C0, symBinAddr: 0x615D0, symSize: 0x130 } + - { offsetInCU: 0x1758, offset: 0x8F665, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x55F0, symBinAddr: 0x61700, symSize: 0x10 } + - { offsetInCU: 0x176C, offset: 0x8F679, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x5600, symBinAddr: 0x61710, symSize: 0xC0 } + - { offsetInCU: 0x1780, offset: 0x8F68D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x56C0, symBinAddr: 0x617D0, symSize: 0x240 } + - { offsetInCU: 0x1794, offset: 0x8F6A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x5900, symBinAddr: 0x61A10, symSize: 0x450 } + - { offsetInCU: 0x17A8, offset: 0x8F6B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5D50, symBinAddr: 0x61E60, symSize: 0x10 } + - { offsetInCU: 0x17BC, offset: 0x8F6C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x5D60, symBinAddr: 0x61E70, symSize: 0x250 } + - { offsetInCU: 0x17D0, offset: 0x8F6DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x5FB0, symBinAddr: 0x620C0, symSize: 0x50 } + - { offsetInCU: 0x17E4, offset: 0x8F6F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x6000, symBinAddr: 0x62110, symSize: 0xA0 } + - { offsetInCU: 0x17F8, offset: 0x8F705, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x60A0, symBinAddr: 0x621B0, symSize: 0x10 } + - { offsetInCU: 0x180C, offset: 0x8F719, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x60B0, symBinAddr: 0x621C0, symSize: 0x70 } + - { offsetInCU: 0x1820, offset: 0x8F72D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x6120, symBinAddr: 0x62230, symSize: 0x150 } + - { offsetInCU: 0x1834, offset: 0x8F741, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x6270, symBinAddr: 0x62380, symSize: 0x190 } + - { offsetInCU: 0x1848, offset: 0x8F755, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x6400, symBinAddr: 0x62510, symSize: 0x10 } + - { offsetInCU: 0x185C, offset: 0x8F769, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x6410, symBinAddr: 0x62520, symSize: 0x130 } + - { offsetInCU: 0x1870, offset: 0x8F77D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x6540, symBinAddr: 0x62650, symSize: 0x50 } + - { offsetInCU: 0x1884, offset: 0x8F791, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x6590, symBinAddr: 0x626A0, symSize: 0x80 } + - { offsetInCU: 0x1898, offset: 0x8F7A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x6610, symBinAddr: 0x62720, symSize: 0x10 } + - { offsetInCU: 0x18AC, offset: 0x8F7B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x6620, symBinAddr: 0x62730, symSize: 0x50 } + - { offsetInCU: 0x18C0, offset: 0x8F7CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x6670, symBinAddr: 0x62780, symSize: 0x120 } + - { offsetInCU: 0x18D4, offset: 0x8F7E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x6790, symBinAddr: 0x628A0, symSize: 0x1C0 } + - { offsetInCU: 0x18E8, offset: 0x8F7F5, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6950, symBinAddr: 0x62A60, symSize: 0x10 } + - { offsetInCU: 0x18FC, offset: 0x8F809, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x6960, symBinAddr: 0x62A70, symSize: 0x150 } + - { offsetInCU: 0x1910, offset: 0x8F81D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x6AB0, symBinAddr: 0x62BC0, symSize: 0x50 } + - { offsetInCU: 0x1924, offset: 0x8F831, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x6B00, symBinAddr: 0x62C10, symSize: 0x80 } + - { offsetInCU: 0x1938, offset: 0x8F845, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x6B80, symBinAddr: 0x62C90, symSize: 0x10 } + - { offsetInCU: 0x194C, offset: 0x8F859, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x6B90, symBinAddr: 0x62CA0, symSize: 0x30 } + - { offsetInCU: 0x1960, offset: 0x8F86D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x6BC0, symBinAddr: 0x62CD0, symSize: 0x40 } + - { offsetInCU: 0x1974, offset: 0x8F881, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x6C00, symBinAddr: 0x62D10, symSize: 0x60 } + - { offsetInCU: 0x1988, offset: 0x8F895, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x6C80, symBinAddr: 0x62D70, symSize: 0x50 } + - { offsetInCU: 0x199C, offset: 0x8F8A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x6CD0, symBinAddr: 0x62DC0, symSize: 0x50 } + - { offsetInCU: 0x19B0, offset: 0x8F8BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x6D20, symBinAddr: 0x62E10, symSize: 0x50 } + - { offsetInCU: 0x19C4, offset: 0x8F8D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x6D70, symBinAddr: 0x62E60, symSize: 0x10 } + - { offsetInCU: 0x19D8, offset: 0x8F8E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x6EC0, symBinAddr: 0x62FB0, symSize: 0x10 } + - { offsetInCU: 0x19EC, offset: 0x8F8F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x6ED0, symBinAddr: 0x62FC0, symSize: 0x30 } + - { offsetInCU: 0x1A00, offset: 0x8F90D, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6FA0, symBinAddr: 0x62FF0, symSize: 0x30 } + - { offsetInCU: 0x1A14, offset: 0x8F921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x8480, symBinAddr: 0x644D0, symSize: 0x30 } + - { offsetInCU: 0x1A28, offset: 0x8F935, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x84B0, symBinAddr: 0x64500, symSize: 0x30 } + - { offsetInCU: 0x1A3C, offset: 0x8F949, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x8EC0, symBinAddr: 0x64530, symSize: 0x30 } + - { offsetInCU: 0x1A50, offset: 0x8F95D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA220, symBinAddr: 0x65890, symSize: 0x30 } + - { offsetInCU: 0x1A64, offset: 0x8F971, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0xA250, symBinAddr: 0x658C0, symSize: 0x30 } + - { offsetInCU: 0x1A78, offset: 0x8F985, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0xA280, symBinAddr: 0x658F0, symSize: 0x30 } + - { offsetInCU: 0x1A8C, offset: 0x8F999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0xA2B0, symBinAddr: 0x65920, symSize: 0x30 } + - { offsetInCU: 0x1AA0, offset: 0x8F9AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0xA2E0, symBinAddr: 0x65950, symSize: 0x30 } + - { offsetInCU: 0x1AB4, offset: 0x8F9C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0xA310, symBinAddr: 0x65980, symSize: 0x30 } + - { offsetInCU: 0x1AC8, offset: 0x8F9D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0xA340, symBinAddr: 0x659B0, symSize: 0x30 } + - { offsetInCU: 0x1ADC, offset: 0x8F9E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xBA80, symBinAddr: 0x670F0, symSize: 0x30 } + - { offsetInCU: 0x1AF0, offset: 0x8F9FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xBAB0, symBinAddr: 0x67120, symSize: 0x30 } + - { offsetInCU: 0x1B04, offset: 0x8FA11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xBAE0, symBinAddr: 0x67150, symSize: 0x30 } + - { offsetInCU: 0x1B18, offset: 0x8FA25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xC4C0, symBinAddr: 0x67B30, symSize: 0x30 } + - { offsetInCU: 0x1B2C, offset: 0x8FA39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xC4F0, symBinAddr: 0x67B60, symSize: 0x30 } + - { offsetInCU: 0x1B40, offset: 0x8FA4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xC520, symBinAddr: 0x67B90, symSize: 0x30 } + - { offsetInCU: 0x1B54, offset: 0x8FA61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xC580, symBinAddr: 0x67BF0, symSize: 0x30 } + - { offsetInCU: 0x1B68, offset: 0x8FA75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xC5B0, symBinAddr: 0x67C20, symSize: 0x30 } + - { offsetInCU: 0x1B7C, offset: 0x8FA89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC600, symBinAddr: 0x67C50, symSize: 0x80 } + - { offsetInCU: 0x1B90, offset: 0x8FA9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC680, symBinAddr: 0x67CD0, symSize: 0xD0 } + - { offsetInCU: 0x1BA4, offset: 0x8FAB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xC750, symBinAddr: 0x67DA0, symSize: 0x10 } + - { offsetInCU: 0x1BB8, offset: 0x8FAC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC760, symBinAddr: 0x67DB0, symSize: 0x10 } + - { offsetInCU: 0x1BCC, offset: 0x8FAD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xC770, symBinAddr: 0x67DC0, symSize: 0x10 } + - { offsetInCU: 0x1BE0, offset: 0x8FAED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC780, symBinAddr: 0x67DD0, symSize: 0x10 } + - { offsetInCU: 0x1BF4, offset: 0x8FB01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC790, symBinAddr: 0x67DE0, symSize: 0x80 } + - { offsetInCU: 0x1C08, offset: 0x8FB15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC810, symBinAddr: 0x67E60, symSize: 0xD0 } + - { offsetInCU: 0x1C1C, offset: 0x8FB29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC8E0, symBinAddr: 0x67F30, symSize: 0x10 } + - { offsetInCU: 0x1C30, offset: 0x8FB3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC8F0, symBinAddr: 0x67F40, symSize: 0x10 } + - { offsetInCU: 0x1C44, offset: 0x8FB51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xC900, symBinAddr: 0x67F50, symSize: 0x80 } + - { offsetInCU: 0x1C58, offset: 0x8FB65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xC980, symBinAddr: 0x67FD0, symSize: 0xD0 } + - { offsetInCU: 0x1C6C, offset: 0x8FB79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xCA50, symBinAddr: 0x680A0, symSize: 0x10 } + - { offsetInCU: 0x1C80, offset: 0x8FB8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xCA60, symBinAddr: 0x680B0, symSize: 0x10 } + - { offsetInCU: 0x1C94, offset: 0x8FBA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xCA70, symBinAddr: 0x680C0, symSize: 0x80 } + - { offsetInCU: 0x1CA8, offset: 0x8FBB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xCAF0, symBinAddr: 0x68140, symSize: 0xD0 } + - { offsetInCU: 0x1CBC, offset: 0x8FBC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xCBC0, symBinAddr: 0x68210, symSize: 0x10 } + - { offsetInCU: 0x1CD0, offset: 0x8FBDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xCBD0, symBinAddr: 0x68220, symSize: 0x10 } + - { offsetInCU: 0x1CE4, offset: 0x8FBF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xCBE0, symBinAddr: 0x68230, symSize: 0x80 } + - { offsetInCU: 0x1CF8, offset: 0x8FC05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xCC60, symBinAddr: 0x682B0, symSize: 0xD0 } + - { offsetInCU: 0x1D0C, offset: 0x8FC19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xCD30, symBinAddr: 0x68380, symSize: 0x10 } + - { offsetInCU: 0x1D20, offset: 0x8FC2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xCD40, symBinAddr: 0x68390, symSize: 0x10 } + - { offsetInCU: 0x1D34, offset: 0x8FC41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xCD50, symBinAddr: 0x683A0, symSize: 0x10 } + - { offsetInCU: 0x1D48, offset: 0x8FC55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xCD60, symBinAddr: 0x683B0, symSize: 0x10 } + - { offsetInCU: 0x1D5C, offset: 0x8FC69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xCD70, symBinAddr: 0x683C0, symSize: 0x80 } + - { offsetInCU: 0x1D70, offset: 0x8FC7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xCDF0, symBinAddr: 0x68440, symSize: 0xD0 } + - { offsetInCU: 0x1D84, offset: 0x8FC91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xCEC0, symBinAddr: 0x68510, symSize: 0x10 } + - { offsetInCU: 0x1D98, offset: 0x8FCA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xCED0, symBinAddr: 0x68520, symSize: 0x10 } + - { offsetInCU: 0x1DAC, offset: 0x8FCB9, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xCEE0, symBinAddr: 0x68530, symSize: 0x30 } + - { offsetInCU: 0x1DC0, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xCF10, symBinAddr: 0x68560, symSize: 0x20 } + - { offsetInCU: 0x1DD4, offset: 0x8FCE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xCF30, symBinAddr: 0x68580, symSize: 0x40 } + - { offsetInCU: 0x1DE8, offset: 0x8FCF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xCF70, symBinAddr: 0x685C0, symSize: 0x10 } + - { offsetInCU: 0x1DFC, offset: 0x8FD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCF80, symBinAddr: 0x685D0, symSize: 0x10 } + - { offsetInCU: 0x1E10, offset: 0x8FD1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCF90, symBinAddr: 0x685E0, symSize: 0x30 } + - { offsetInCU: 0x1E24, offset: 0x8FD31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCFC0, symBinAddr: 0x68610, symSize: 0x10 } + - { offsetInCU: 0x1E38, offset: 0x8FD45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCFD0, symBinAddr: 0x68620, symSize: 0x30 } + - { offsetInCU: 0x1E4C, offset: 0x8FD59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xD000, symBinAddr: 0x68650, symSize: 0x10 } + - { offsetInCU: 0x1E60, offset: 0x8FD6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xD010, symBinAddr: 0x68660, symSize: 0x30 } + - { offsetInCU: 0x1E74, offset: 0x8FD81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xD040, symBinAddr: 0x68690, symSize: 0x10 } + - { offsetInCU: 0x1E88, offset: 0x8FD95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xD050, symBinAddr: 0x686A0, symSize: 0x30 } + - { offsetInCU: 0x1E9C, offset: 0x8FDA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xD080, symBinAddr: 0x686D0, symSize: 0x10 } + - { offsetInCU: 0x1EB0, offset: 0x8FDBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xD090, symBinAddr: 0x686E0, symSize: 0x30 } + - { offsetInCU: 0x1EC4, offset: 0x8FDD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xD0C0, symBinAddr: 0x68710, symSize: 0x10 } + - { offsetInCU: 0x1ED8, offset: 0x8FDE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xD0D0, symBinAddr: 0x68720, symSize: 0x30 } + - { offsetInCU: 0x1EEC, offset: 0x8FDF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD100, symBinAddr: 0x68750, symSize: 0x10 } + - { offsetInCU: 0x1F00, offset: 0x8FE0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD110, symBinAddr: 0x68760, symSize: 0x30 } + - { offsetInCU: 0x1F14, offset: 0x8FE21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD140, symBinAddr: 0x68790, symSize: 0x10 } + - { offsetInCU: 0x1F28, offset: 0x8FE35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD150, symBinAddr: 0x687A0, symSize: 0x30 } + - { offsetInCU: 0x1F3C, offset: 0x8FE49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD180, symBinAddr: 0x687D0, symSize: 0x10 } + - { offsetInCU: 0x1F50, offset: 0x8FE5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD190, symBinAddr: 0x687E0, symSize: 0x30 } + - { offsetInCU: 0x1F64, offset: 0x8FE71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD1C0, symBinAddr: 0x68810, symSize: 0x10 } + - { offsetInCU: 0x1F78, offset: 0x8FE85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD1D0, symBinAddr: 0x68820, symSize: 0x30 } + - { offsetInCU: 0x1F8C, offset: 0x8FE99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD200, symBinAddr: 0x68850, symSize: 0x10 } + - { offsetInCU: 0x1FA0, offset: 0x8FEAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD210, symBinAddr: 0x68860, symSize: 0x30 } + - { offsetInCU: 0x1FB4, offset: 0x8FEC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD240, symBinAddr: 0x68890, symSize: 0x10 } + - { offsetInCU: 0x1FC8, offset: 0x8FED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD250, symBinAddr: 0x688A0, symSize: 0x30 } + - { offsetInCU: 0x1FDC, offset: 0x8FEE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD280, symBinAddr: 0x688D0, symSize: 0x10 } + - { offsetInCU: 0x1FF0, offset: 0x8FEFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD290, symBinAddr: 0x688E0, symSize: 0x30 } + - { offsetInCU: 0x2004, offset: 0x8FF11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD2C0, symBinAddr: 0x68910, symSize: 0x10 } + - { offsetInCU: 0x2018, offset: 0x8FF25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD2D0, symBinAddr: 0x68920, symSize: 0x30 } + - { offsetInCU: 0x202C, offset: 0x8FF39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD300, symBinAddr: 0x68950, symSize: 0x10 } + - { offsetInCU: 0x2040, offset: 0x8FF4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD310, symBinAddr: 0x68960, symSize: 0x30 } + - { offsetInCU: 0x2054, offset: 0x8FF61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD340, symBinAddr: 0x68990, symSize: 0x10 } + - { offsetInCU: 0x2068, offset: 0x8FF75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD350, symBinAddr: 0x689A0, symSize: 0x30 } + - { offsetInCU: 0x207C, offset: 0x8FF89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD380, symBinAddr: 0x689D0, symSize: 0x10 } + - { offsetInCU: 0x2090, offset: 0x8FF9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD390, symBinAddr: 0x689E0, symSize: 0x30 } + - { offsetInCU: 0x20A4, offset: 0x8FFB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD3C0, symBinAddr: 0x68A10, symSize: 0x10 } + - { offsetInCU: 0x20B8, offset: 0x8FFC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD3D0, symBinAddr: 0x68A20, symSize: 0x30 } + - { offsetInCU: 0x20CC, offset: 0x8FFD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xD400, symBinAddr: 0x68A50, symSize: 0x30 } + - { offsetInCU: 0x20E0, offset: 0x8FFED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xD430, symBinAddr: 0x68A80, symSize: 0x80 } + - { offsetInCU: 0x20F4, offset: 0x90001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xD4B0, symBinAddr: 0x68B00, symSize: 0xD0 } + - { offsetInCU: 0x2108, offset: 0x90015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xD580, symBinAddr: 0x68BD0, symSize: 0x10 } + - { offsetInCU: 0x211C, offset: 0x90029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xD590, symBinAddr: 0x68BE0, symSize: 0x10 } + - { offsetInCU: 0x2130, offset: 0x9003D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD5A0, symBinAddr: 0x68BF0, symSize: 0x10 } + - { offsetInCU: 0x2144, offset: 0x90051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD5B0, symBinAddr: 0x68C00, symSize: 0x30 } + - { offsetInCU: 0x2158, offset: 0x90065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD5E0, symBinAddr: 0x68C30, symSize: 0x10 } + - { offsetInCU: 0x216C, offset: 0x90079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD5F0, symBinAddr: 0x68C40, symSize: 0x30 } + - { offsetInCU: 0x2180, offset: 0x9008D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD620, symBinAddr: 0x68C70, symSize: 0x10 } + - { offsetInCU: 0x2194, offset: 0x900A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD630, symBinAddr: 0x68C80, symSize: 0x30 } + - { offsetInCU: 0x21C2, offset: 0x900CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1170, symBinAddr: 0x5D280, symSize: 0x20 } + - { offsetInCU: 0x21DE, offset: 0x900EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1190, symBinAddr: 0x5D2A0, symSize: 0x20 } + - { offsetInCU: 0x2200, offset: 0x9010D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x5D480, symSize: 0x20 } + - { offsetInCU: 0x221C, offset: 0x90129, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5D4A0, symSize: 0x20 } + - { offsetInCU: 0x2238, offset: 0x90145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1450, symBinAddr: 0x5D560, symSize: 0x10 } + - { offsetInCU: 0x22B8, offset: 0x901C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1460, symBinAddr: 0x5D570, symSize: 0xB0 } + - { offsetInCU: 0x233A, offset: 0x90247, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x5D620, symSize: 0x90 } + - { offsetInCU: 0x2378, offset: 0x90285, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x15A0, symBinAddr: 0x5D6B0, symSize: 0xB0 } + - { offsetInCU: 0x23DE, offset: 0x902EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x5D8C0, symSize: 0x20 } + - { offsetInCU: 0x23FA, offset: 0x90307, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x5D8E0, symSize: 0x20 } + - { offsetInCU: 0x241C, offset: 0x90329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1900, symBinAddr: 0x5DA10, symSize: 0x20 } + - { offsetInCU: 0x2438, offset: 0x90345, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1920, symBinAddr: 0x5DA30, symSize: 0x20 } + - { offsetInCU: 0x248B, offset: 0x90398, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A50, symBinAddr: 0x5DB60, symSize: 0x40 } + - { offsetInCU: 0x252E, offset: 0x9043B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5DC10, symSize: 0x20 } + - { offsetInCU: 0x254A, offset: 0x90457, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x5DC30, symSize: 0x20 } + - { offsetInCU: 0x256C, offset: 0x90479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D10, symBinAddr: 0x5DE20, symSize: 0x20 } + - { offsetInCU: 0x2588, offset: 0x90495, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1D30, symBinAddr: 0x5DE40, symSize: 0x20 } + - { offsetInCU: 0x25D1, offset: 0x904DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1DF0, symBinAddr: 0x5DF00, symSize: 0x80 } + - { offsetInCU: 0x26BD, offset: 0x905CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1E70, symBinAddr: 0x5DF80, symSize: 0x50 } + - { offsetInCU: 0x273B, offset: 0x90648, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1EC0, symBinAddr: 0x5DFD0, symSize: 0x30 } + - { offsetInCU: 0x278D, offset: 0x9069A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1EF0, symBinAddr: 0x5E000, symSize: 0x50 } + - { offsetInCU: 0x27EF, offset: 0x906FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x5E100, symSize: 0x20 } + - { offsetInCU: 0x280B, offset: 0x90718, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x2010, symBinAddr: 0x5E120, symSize: 0x20 } + - { offsetInCU: 0x284C, offset: 0x90759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6E80, symBinAddr: 0x62F70, symSize: 0x30 } + - { offsetInCU: 0x29DF, offset: 0x908EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x5C110, symSize: 0x190 } + - { offsetInCU: 0x2A10, offset: 0x9091D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x190, symBinAddr: 0x5C2A0, symSize: 0x2B0 } + - { offsetInCU: 0x2A41, offset: 0x9094E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x440, symBinAddr: 0x5C550, symSize: 0x190 } + - { offsetInCU: 0x2A72, offset: 0x9097F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x5D0, symBinAddr: 0x5C6E0, symSize: 0xB0 } + - { offsetInCU: 0x2A93, offset: 0x909A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x680, symBinAddr: 0x5C790, symSize: 0x2A0 } + - { offsetInCU: 0x2AC4, offset: 0x909D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x920, symBinAddr: 0x5CA30, symSize: 0x110 } + - { offsetInCU: 0x2AF5, offset: 0x90A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA30, symBinAddr: 0x5CB40, symSize: 0x250 } + - { offsetInCU: 0x2B26, offset: 0x90A33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC80, symBinAddr: 0x5CD90, symSize: 0xB0 } + - { offsetInCU: 0x2B5A, offset: 0x90A67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xD30, symBinAddr: 0x5CE40, symSize: 0xB0 } + - { offsetInCU: 0x2B9A, offset: 0x90AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDE0, symBinAddr: 0x5CEF0, symSize: 0x2E0 } + - { offsetInCU: 0x2DAB, offset: 0x90CB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x20D0, symBinAddr: 0x5E1E0, symSize: 0x1D0 } + - { offsetInCU: 0x2DF7, offset: 0x90D04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x22A0, symBinAddr: 0x5E3B0, symSize: 0x20 } + - { offsetInCU: 0x27, offset: 0x90DE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x68E10, symSize: 0x10 } + - { offsetInCU: 0x163, offset: 0x90F21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x68EF0, symSize: 0x40 } + - { offsetInCU: 0x177, offset: 0x90F35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x68F30, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x90F49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x68F80, symSize: 0xA } + - { offsetInCU: 0x26C, offset: 0x9102A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x68E10, symSize: 0x10 } + - { offsetInCU: 0x286, offset: 0x91044, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x68E20, symSize: 0x10 } + - { offsetInCU: 0x2B8, offset: 0x91076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x68E30, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x9108A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x68E40, symSize: 0x10 } + - { offsetInCU: 0x2ED, offset: 0x910AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x68E50, symSize: 0x10 } + - { offsetInCU: 0x301, offset: 0x910BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x68E60, symSize: 0x10 } + - { offsetInCU: 0x333, offset: 0x910F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x68E70, symSize: 0x20 } + - { offsetInCU: 0x357, offset: 0x91115, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x68E90, symSize: 0x10 } + - { offsetInCU: 0x378, offset: 0x91136, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x68EA0, symSize: 0x10 } + - { offsetInCU: 0x38C, offset: 0x9114A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x68EB0, symSize: 0x10 } + - { offsetInCU: 0x3C0, offset: 0x9117E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x68EC0, symSize: 0x20 } + - { offsetInCU: 0x3E4, offset: 0x911A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x68EE0, symSize: 0x10 } + - { offsetInCU: 0x2B, offset: 0x911F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68F90, symSize: 0x30 } + - { offsetInCU: 0x7C, offset: 0x91249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x68FC0, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x9134F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68F90, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x913B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68FE0, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x91408, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x69000, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x9150E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68FE0, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x9157A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x69020, symSize: 0x50 } + - { offsetInCU: 0x7C, offset: 0x915CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x69070, symSize: 0x10 } + - { offsetInCU: 0x90, offset: 0x915DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x69080, symSize: 0x30 } + - { offsetInCU: 0xA4, offset: 0x915F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x690B0, symSize: 0x69 } + - { offsetInCU: 0x1AA, offset: 0x916F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x69020, symSize: 0x50 } + - { offsetInCU: 0x27, offset: 0x91761, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x69120, symSize: 0x430 } + - { offsetInCU: 0x16B, offset: 0x918A5, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x69550, symSize: 0x40 } + - { offsetInCU: 0x38A, offset: 0x91AC4, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x69120, symSize: 0x430 } + - { offsetInCU: 0x27, offset: 0x91CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69590, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x91D14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x695B0, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x91E1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69590, symSize: 0x20 } + - { offsetInCU: 0xA1, offset: 0x91EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x9E0, symBinAddr: 0x69F70, symSize: 0x20 } + - { offsetInCU: 0xBD, offset: 0x91F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA00, symBinAddr: 0x69F90, symSize: 0x60 } + - { offsetInCU: 0xE6, offset: 0x91F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA60, symBinAddr: 0x69FF0, symSize: 0x30 } + - { offsetInCU: 0x175, offset: 0x91FD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xC10, symBinAddr: 0x6A1A0, symSize: 0x20 } + - { offsetInCU: 0x191, offset: 0x91FEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC30, symBinAddr: 0x6A1C0, symSize: 0x30 } + - { offsetInCU: 0x497, offset: 0x922F2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x760, symBinAddr: 0x69CF0, symSize: 0xF0 } + - { offsetInCU: 0x50B, offset: 0x92366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xC60, symBinAddr: 0x6A1F0, symSize: 0x480 } + - { offsetInCU: 0x738, offset: 0x92593, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x10E0, symBinAddr: 0x6A670, symSize: 0x150 } + - { offsetInCU: 0x95A, offset: 0x927B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x36C0, symBinAddr: 0x6CBB0, symSize: 0x1F0 } + - { offsetInCU: 0xA0B, offset: 0x92866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3950, symBinAddr: 0x6CDE0, symSize: 0x220 } + - { offsetInCU: 0xA70, offset: 0x928CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3B70, symBinAddr: 0x6D000, symSize: 0x240 } + - { offsetInCU: 0xB98, offset: 0x929F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3DB0, symBinAddr: 0x6D240, symSize: 0x290 } + - { offsetInCU: 0xCD7, offset: 0x92B32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x4040, symBinAddr: 0x6D4D0, symSize: 0x170 } + - { offsetInCU: 0xD1D, offset: 0x92B78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x41B0, symBinAddr: 0x6D640, symSize: 0x520 } + - { offsetInCU: 0x104C, offset: 0x92EA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x46D0, symBinAddr: 0x6DB60, symSize: 0xD0 } + - { offsetInCU: 0x1171, offset: 0x92FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3100, symBinAddr: 0x6C690, symSize: 0x10 } + - { offsetInCU: 0x1185, offset: 0x92FE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x3110, symBinAddr: 0x6C6A0, symSize: 0x30 } + - { offsetInCU: 0x1199, offset: 0x92FF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x3140, symBinAddr: 0x6C6D0, symSize: 0x10 } + - { offsetInCU: 0x11AD, offset: 0x93008, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x3150, symBinAddr: 0x6C6E0, symSize: 0x40 } + - { offsetInCU: 0x11C1, offset: 0x9301C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x31D0, symBinAddr: 0x6C720, symSize: 0x10 } + - { offsetInCU: 0x11D5, offset: 0x93030, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x31E0, symBinAddr: 0x6C730, symSize: 0x30 } + - { offsetInCU: 0x11E9, offset: 0x93044, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x3230, symBinAddr: 0x6C760, symSize: 0x80 } + - { offsetInCU: 0x11FD, offset: 0x93058, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x32B0, symBinAddr: 0x6C7E0, symSize: 0xD0 } + - { offsetInCU: 0x1211, offset: 0x9306C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3380, symBinAddr: 0x6C8B0, symSize: 0x10 } + - { offsetInCU: 0x1225, offset: 0x93080, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3390, symBinAddr: 0x6C8C0, symSize: 0x10 } + - { offsetInCU: 0x1239, offset: 0x93094, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x33A0, symBinAddr: 0x6C8D0, symSize: 0x10 } + - { offsetInCU: 0x124D, offset: 0x930A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x33B0, symBinAddr: 0x6C8E0, symSize: 0x10 } + - { offsetInCU: 0x1261, offset: 0x930BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x33C0, symBinAddr: 0x6C8F0, symSize: 0x80 } + - { offsetInCU: 0x1275, offset: 0x930D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x3440, symBinAddr: 0x6C970, symSize: 0xD0 } + - { offsetInCU: 0x1289, offset: 0x930E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x3510, symBinAddr: 0x6CA40, symSize: 0x10 } + - { offsetInCU: 0x129D, offset: 0x930F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3520, symBinAddr: 0x6CA50, symSize: 0x10 } + - { offsetInCU: 0x12B1, offset: 0x9310C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x3530, symBinAddr: 0x6CA60, symSize: 0x10 } + - { offsetInCU: 0x12C5, offset: 0x93120, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3540, symBinAddr: 0x6CA70, symSize: 0x10 } + - { offsetInCU: 0x12D9, offset: 0x93134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3550, symBinAddr: 0x6CA80, symSize: 0x20 } + - { offsetInCU: 0x12ED, offset: 0x93148, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3580, symBinAddr: 0x6CAA0, symSize: 0x10 } + - { offsetInCU: 0x1301, offset: 0x9315C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3590, symBinAddr: 0x6CAB0, symSize: 0x10 } + - { offsetInCU: 0x1315, offset: 0x93170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x35A0, symBinAddr: 0x6CAC0, symSize: 0x30 } + - { offsetInCU: 0x1329, offset: 0x93184, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x35D0, symBinAddr: 0x6CAF0, symSize: 0x10 } + - { offsetInCU: 0x133D, offset: 0x93198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x35E0, symBinAddr: 0x6CB00, symSize: 0x10 } + - { offsetInCU: 0x1351, offset: 0x931AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x35F0, symBinAddr: 0x6CB10, symSize: 0x30 } + - { offsetInCU: 0x1365, offset: 0x931C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3620, symBinAddr: 0x6CB40, symSize: 0x10 } + - { offsetInCU: 0x13D9, offset: 0x93234, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x38B0, symBinAddr: 0x6CDA0, symSize: 0x40 } + - { offsetInCU: 0x1438, offset: 0x93293, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x47A0, symBinAddr: 0x6DC30, symSize: 0x30 } + - { offsetInCU: 0x144C, offset: 0x932A7, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x47D0, symBinAddr: 0x6DC60, symSize: 0x30 } + - { offsetInCU: 0x1460, offset: 0x932BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4840, symBinAddr: 0x6DCB0, symSize: 0x20 } + - { offsetInCU: 0x1474, offset: 0x932CF, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4860, symBinAddr: 0x6DCD0, symSize: 0x20 } + - { offsetInCU: 0x1488, offset: 0x932E3, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4880, symBinAddr: 0x6DCF0, symSize: 0x10 } + - { offsetInCU: 0x149C, offset: 0x932F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x48F0, symBinAddr: 0x6DD00, symSize: 0x20 } + - { offsetInCU: 0x14B0, offset: 0x9330B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x49A0, symBinAddr: 0x6DDB0, symSize: 0x10 } + - { offsetInCU: 0x15AE, offset: 0x93409, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x170, symBinAddr: 0x69700, symSize: 0x160 } + - { offsetInCU: 0x1671, offset: 0x934CC, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x2D0, symBinAddr: 0x69860, symSize: 0xE0 } + - { offsetInCU: 0x1734, offset: 0x9358F, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x3B0, symBinAddr: 0x69940, symSize: 0x90 } + - { offsetInCU: 0x18D6, offset: 0x93731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x870, symBinAddr: 0x69E00, symSize: 0x10 } + - { offsetInCU: 0x1956, offset: 0x937B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x880, symBinAddr: 0x69E10, symSize: 0x80 } + - { offsetInCU: 0x1A01, offset: 0x9385C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x900, symBinAddr: 0x69E90, symSize: 0x60 } + - { offsetInCU: 0x1A68, offset: 0x938C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x960, symBinAddr: 0x69EF0, symSize: 0x80 } + - { offsetInCU: 0x1AF7, offset: 0x93952, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB00, symBinAddr: 0x6A090, symSize: 0x10 } + - { offsetInCU: 0x1B77, offset: 0x939D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB10, symBinAddr: 0x6A0A0, symSize: 0x60 } + - { offsetInCU: 0x1C22, offset: 0x93A7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB70, symBinAddr: 0x6A100, symSize: 0x40 } + - { offsetInCU: 0x1C89, offset: 0x93AE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBB0, symBinAddr: 0x6A140, symSize: 0x60 } + - { offsetInCU: 0x2073, offset: 0x93ECE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x695D0, symSize: 0x70 } + - { offsetInCU: 0x20AA, offset: 0x93F05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x69640, symSize: 0x30 } + - { offsetInCU: 0x20C5, offset: 0x93F20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x69670, symSize: 0x50 } + - { offsetInCU: 0x20F4, offset: 0x93F4F, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x130, symBinAddr: 0x696C0, symSize: 0x10 } + - { offsetInCU: 0x2168, offset: 0x93FC3, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x140, symBinAddr: 0x696D0, symSize: 0x30 } + - { offsetInCU: 0x2213, offset: 0x9406E, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x440, symBinAddr: 0x699D0, symSize: 0xB0 } + - { offsetInCU: 0x23C5, offset: 0x94220, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F0, symBinAddr: 0x69A80, symSize: 0x50 } + - { offsetInCU: 0x24AC, offset: 0x94307, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x540, symBinAddr: 0x69AD0, symSize: 0x90 } + - { offsetInCU: 0x253A, offset: 0x94395, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x5D0, symBinAddr: 0x69B60, symSize: 0x80 } + - { offsetInCU: 0x25AC, offset: 0x94407, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x650, symBinAddr: 0x69BE0, symSize: 0xD0 } + - { offsetInCU: 0x26DB, offset: 0x94536, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x720, symBinAddr: 0x69CB0, symSize: 0x40 } + - { offsetInCU: 0x2769, offset: 0x945C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x850, symBinAddr: 0x69DE0, symSize: 0x20 } + - { offsetInCU: 0x27CB, offset: 0x94626, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xA90, symBinAddr: 0x6A020, symSize: 0x70 } + - { offsetInCU: 0x287A, offset: 0x946D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1230, symBinAddr: 0x6A7C0, symSize: 0x960 } + - { offsetInCU: 0x2E20, offset: 0x94C7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B90, symBinAddr: 0x6B120, symSize: 0x7A0 } + - { offsetInCU: 0x318F, offset: 0x94FEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2330, symBinAddr: 0x6B8C0, symSize: 0x540 } + - { offsetInCU: 0x334A, offset: 0x951A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2870, symBinAddr: 0x6BE00, symSize: 0x670 } + - { offsetInCU: 0x3823, offset: 0x9567E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2EE0, symBinAddr: 0x6C470, symSize: 0x130 } + - { offsetInCU: 0x3905, offset: 0x95760, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x3010, symBinAddr: 0x6C5A0, symSize: 0x30 } + - { offsetInCU: 0x393E, offset: 0x95799, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x30F0, symBinAddr: 0x6C680, symSize: 0x10 } + - { offsetInCU: 0x396B, offset: 0x957C6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3660, symBinAddr: 0x6CB50, symSize: 0x20 } + - { offsetInCU: 0x399B, offset: 0x957F6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3680, symBinAddr: 0x6CB70, symSize: 0x20 } + - { offsetInCU: 0x39CB, offset: 0x95826, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x36A0, symBinAddr: 0x6CB90, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x959BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6DDF0, symSize: 0x1A0 } + - { offsetInCU: 0x57, offset: 0x959CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6DF90, symSize: 0x90 } + - { offsetInCU: 0x6B, offset: 0x959E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6E020, symSize: 0x170 } + - { offsetInCU: 0x7F, offset: 0x959F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6E190, symSize: 0x1F0 } + - { offsetInCU: 0x93, offset: 0x95A0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6E380, symSize: 0xE0 } + - { offsetInCU: 0xA7, offset: 0x95A1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x6E460, symSize: 0x1C0 } + - { offsetInCU: 0xBB, offset: 0x95A33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x6E620, symSize: 0x20 } + - { offsetInCU: 0xCF, offset: 0x95A47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x6E6B0, symSize: 0x20 } + - { offsetInCU: 0xE3, offset: 0x95A5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x6E750, symSize: 0x90 } + - { offsetInCU: 0xF7, offset: 0x95A6F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x6E7E0, symSize: 0x50 } + - { offsetInCU: 0x10B, offset: 0x95A83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x6E830, symSize: 0x120 } + - { offsetInCU: 0x11F, offset: 0x95A97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x6E950, symSize: 0x70 } + - { offsetInCU: 0x133, offset: 0x95AAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x6E9C0, symSize: 0xF0 } + - { offsetInCU: 0x147, offset: 0x95ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x6EAB0, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x95AD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x6EC10, symSize: 0xC0 } + - { offsetInCU: 0x16F, offset: 0x95AE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x6ECD0, symSize: 0x150 } + - { offsetInCU: 0x183, offset: 0x95AFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x6EE20, symSize: 0x20 } + - { offsetInCU: 0x197, offset: 0x95B0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x6EEB0, symSize: 0x20 } + - { offsetInCU: 0x1AB, offset: 0x95B23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x6EF70, symSize: 0x80 } + - { offsetInCU: 0x239, offset: 0x95BB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1780, symBinAddr: 0x6F530, symSize: 0x10 } + - { offsetInCU: 0x28C, offset: 0x95C04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A0, symBinAddr: 0x6F550, symSize: 0x20 } + - { offsetInCU: 0x306, offset: 0x95C7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x6F580, symSize: 0x80 } + - { offsetInCU: 0x33B, offset: 0x95CB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x6F600, symSize: 0x20 } + - { offsetInCU: 0x36C, offset: 0x95CE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x6F620, symSize: 0x10 } + - { offsetInCU: 0x388, offset: 0x95D00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x6F630, symSize: 0x10 } + - { offsetInCU: 0x3A4, offset: 0x95D1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F50, symBinAddr: 0x70BD0, symSize: 0x170 } + - { offsetInCU: 0x44E, offset: 0x95DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x6F680, symSize: 0x10 } + - { offsetInCU: 0x471, offset: 0x95DE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18E0, symBinAddr: 0x6F690, symSize: 0x10 } + - { offsetInCU: 0x4F2, offset: 0x95E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AC0, symBinAddr: 0x6F870, symSize: 0x60 } + - { offsetInCU: 0x527, offset: 0x95E9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x6F8D0, symSize: 0x20 } + - { offsetInCU: 0x558, offset: 0x95ED0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B40, symBinAddr: 0x6F8F0, symSize: 0x10 } + - { offsetInCU: 0x574, offset: 0x95EEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x6F900, symSize: 0x10 } + - { offsetInCU: 0x590, offset: 0x95F08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30C0, symBinAddr: 0x70D40, symSize: 0x120 } + - { offsetInCU: 0x640, offset: 0x95FB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x6F950, symSize: 0x40 } + - { offsetInCU: 0x677, offset: 0x95FEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BE0, symBinAddr: 0x6F990, symSize: 0x40 } + - { offsetInCU: 0x69A, offset: 0x96012, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31E0, symBinAddr: 0x70E60, symSize: 0x2B0 } + - { offsetInCU: 0x6FE, offset: 0x96076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x70240, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x960AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24A0, symBinAddr: 0x70250, symSize: 0x20 } + - { offsetInCU: 0x764, offset: 0x960DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24C0, symBinAddr: 0x70270, symSize: 0x10 } + - { offsetInCU: 0x780, offset: 0x960F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24D0, symBinAddr: 0x70280, symSize: 0x10 } + - { offsetInCU: 0x79C, offset: 0x96114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3490, symBinAddr: 0x71110, symSize: 0x270 } + - { offsetInCU: 0x8E8, offset: 0x96260, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2520, symBinAddr: 0x702D0, symSize: 0x10 } + - { offsetInCU: 0x90B, offset: 0x96283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2530, symBinAddr: 0x702E0, symSize: 0x10 } + - { offsetInCU: 0x92F, offset: 0x962A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2570, symBinAddr: 0x702F0, symSize: 0x30 } + - { offsetInCU: 0x943, offset: 0x962BB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x25D0, symBinAddr: 0x70320, symSize: 0x30 } + - { offsetInCU: 0x957, offset: 0x962CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2670, symBinAddr: 0x70380, symSize: 0x30 } + - { offsetInCU: 0x96B, offset: 0x962E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x26E0, symBinAddr: 0x703B0, symSize: 0x30 } + - { offsetInCU: 0x97F, offset: 0x962F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x27D0, symBinAddr: 0x704A0, symSize: 0x30 } + - { offsetInCU: 0x993, offset: 0x9630B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2820, symBinAddr: 0x704D0, symSize: 0x80 } + - { offsetInCU: 0x9A7, offset: 0x9631F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x28A0, symBinAddr: 0x70550, symSize: 0xD0 } + - { offsetInCU: 0x9BB, offset: 0x96333, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2970, symBinAddr: 0x70620, symSize: 0x10 } + - { offsetInCU: 0x9CF, offset: 0x96347, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2980, symBinAddr: 0x70630, symSize: 0x10 } + - { offsetInCU: 0x9E3, offset: 0x9635B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x2990, symBinAddr: 0x70640, symSize: 0x10 } + - { offsetInCU: 0x9F7, offset: 0x9636F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x29A0, symBinAddr: 0x70650, symSize: 0x10 } + - { offsetInCU: 0xA0B, offset: 0x96383, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x29B0, symBinAddr: 0x70660, symSize: 0x80 } + - { offsetInCU: 0xA1F, offset: 0x96397, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2A30, symBinAddr: 0x706E0, symSize: 0xD0 } + - { offsetInCU: 0xA33, offset: 0x963AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2B00, symBinAddr: 0x707B0, symSize: 0x10 } + - { offsetInCU: 0xA47, offset: 0x963BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2B10, symBinAddr: 0x707C0, symSize: 0x10 } + - { offsetInCU: 0xA5B, offset: 0x963D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2B20, symBinAddr: 0x707D0, symSize: 0x30 } + - { offsetInCU: 0xA6F, offset: 0x963E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2B50, symBinAddr: 0x70800, symSize: 0x30 } + - { offsetInCU: 0xA83, offset: 0x963FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2B80, symBinAddr: 0x70830, symSize: 0x70 } + - { offsetInCU: 0xA97, offset: 0x9640F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2BF0, symBinAddr: 0x708A0, symSize: 0x90 } + - { offsetInCU: 0xAAB, offset: 0x96423, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2CB0, symBinAddr: 0x70930, symSize: 0x70 } + - { offsetInCU: 0xABF, offset: 0x96437, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2D20, symBinAddr: 0x709A0, symSize: 0x50 } + - { offsetInCU: 0xAD3, offset: 0x9644B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2D70, symBinAddr: 0x709F0, symSize: 0x50 } + - { offsetInCU: 0xAE7, offset: 0x9645F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2DC0, symBinAddr: 0x70A40, symSize: 0x10 } + - { offsetInCU: 0xAFB, offset: 0x96473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2DD0, symBinAddr: 0x70A50, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x96487, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2DE0, symBinAddr: 0x70A60, symSize: 0x30 } + - { offsetInCU: 0xB23, offset: 0x9649B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2E10, symBinAddr: 0x70A90, symSize: 0x10 } + - { offsetInCU: 0xB37, offset: 0x964AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2E20, symBinAddr: 0x70AA0, symSize: 0x30 } + - { offsetInCU: 0xB4B, offset: 0x964C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E50, symBinAddr: 0x70AD0, symSize: 0x10 } + - { offsetInCU: 0xB5F, offset: 0x964D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E60, symBinAddr: 0x70AE0, symSize: 0x30 } + - { offsetInCU: 0xB73, offset: 0x964EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x70B10, symSize: 0x10 } + - { offsetInCU: 0xB87, offset: 0x964FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2EA0, symBinAddr: 0x70B20, symSize: 0x30 } + - { offsetInCU: 0xB9B, offset: 0x96513, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED0, symBinAddr: 0x70B50, symSize: 0x10 } + - { offsetInCU: 0xBAF, offset: 0x96527, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EE0, symBinAddr: 0x70B60, symSize: 0x30 } + - { offsetInCU: 0xBC3, offset: 0x9653B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F10, symBinAddr: 0x70B90, symSize: 0x10 } + - { offsetInCU: 0xBD7, offset: 0x9654F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F20, symBinAddr: 0x70BA0, symSize: 0x30 } + - { offsetInCU: 0xBF6, offset: 0x9656E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3700, symBinAddr: 0x71380, symSize: 0x30 } + - { offsetInCU: 0xC0A, offset: 0x96582, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3730, symBinAddr: 0x713B0, symSize: 0x40 } + - { offsetInCU: 0xC1E, offset: 0x96596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x37E0, symBinAddr: 0x71460, symSize: 0x80 } + - { offsetInCU: 0xC32, offset: 0x965AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3860, symBinAddr: 0x714E0, symSize: 0xD0 } + - { offsetInCU: 0xC46, offset: 0x965BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3930, symBinAddr: 0x715B0, symSize: 0x10 } + - { offsetInCU: 0xC5A, offset: 0x965D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3940, symBinAddr: 0x715C0, symSize: 0x10 } + - { offsetInCU: 0xC6E, offset: 0x965E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3950, symBinAddr: 0x715D0, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x965FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3960, symBinAddr: 0x715E0, symSize: 0x30 } + - { offsetInCU: 0xC96, offset: 0x9660E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3990, symBinAddr: 0x71610, symSize: 0x10 } + - { offsetInCU: 0xCAA, offset: 0x96622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39A0, symBinAddr: 0x71620, symSize: 0x30 } + - { offsetInCU: 0xCBE, offset: 0x96636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39D0, symBinAddr: 0x71650, symSize: 0x10 } + - { offsetInCU: 0xCD2, offset: 0x9664A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39E0, symBinAddr: 0x71660, symSize: 0x30 } + - { offsetInCU: 0xD00, offset: 0x96678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x6F640, symSize: 0x20 } + - { offsetInCU: 0xD1C, offset: 0x96694, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x6F660, symSize: 0x20 } + - { offsetInCU: 0xD3E, offset: 0x966B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x6F910, symSize: 0x20 } + - { offsetInCU: 0xD5A, offset: 0x966D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B80, symBinAddr: 0x6F930, symSize: 0x20 } + - { offsetInCU: 0xD7C, offset: 0x966F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24E0, symBinAddr: 0x70290, symSize: 0x20 } + - { offsetInCU: 0xD98, offset: 0x96710, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2500, symBinAddr: 0x702B0, symSize: 0x20 } + - { offsetInCU: 0xEA5, offset: 0x9681D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1240, symBinAddr: 0x6EFF0, symSize: 0x1F0 } + - { offsetInCU: 0xEDC, offset: 0x96854, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1430, symBinAddr: 0x6F1E0, symSize: 0x350 } + - { offsetInCU: 0xF57, offset: 0x968CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x6F6A0, symSize: 0x1B0 } + - { offsetInCU: 0xFA2, offset: 0x9691A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1C20, symBinAddr: 0x6F9D0, symSize: 0xB0 } + - { offsetInCU: 0xFC3, offset: 0x9693B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CD0, symBinAddr: 0x6FA80, symSize: 0x2B0 } + - { offsetInCU: 0xFFA, offset: 0x96972, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F80, symBinAddr: 0x6FD30, symSize: 0x470 } + - { offsetInCU: 0x27, offset: 0x969F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x71710, symSize: 0x30 } + - { offsetInCU: 0x106, offset: 0x96AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x71820, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x96AEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x71850, symSize: 0x30 } + - { offsetInCU: 0x12E, offset: 0x96B00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x71880, symSize: 0x40 } + - { offsetInCU: 0x142, offset: 0x96B14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x718C0, symSize: 0x60 } + - { offsetInCU: 0x156, offset: 0x96B28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x71920, symSize: 0x50 } + - { offsetInCU: 0x16A, offset: 0x96B3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x71970, symSize: 0x40 } + - { offsetInCU: 0x17E, offset: 0x96B50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x719B0, symSize: 0x50 } + - { offsetInCU: 0x192, offset: 0x96B64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x71A00, symSize: 0xA } + - { offsetInCU: 0x2A1, offset: 0x96C73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x71710, symSize: 0x30 } + - { offsetInCU: 0x2BB, offset: 0x96C8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x71740, symSize: 0x30 } + - { offsetInCU: 0x2EF, offset: 0x96CC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x71770, symSize: 0x10 } + - { offsetInCU: 0x303, offset: 0x96CD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x71780, symSize: 0x10 } + - { offsetInCU: 0x324, offset: 0x96CF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x71790, symSize: 0x30 } + - { offsetInCU: 0x338, offset: 0x96D0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x717C0, symSize: 0x30 } + - { offsetInCU: 0x36C, offset: 0x96D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x717F0, symSize: 0x20 } + - { offsetInCU: 0x390, offset: 0x96D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x71810, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x96DB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x71A10, symSize: 0x20 } + - { offsetInCU: 0x87, offset: 0x96E14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x540, symBinAddr: 0x71F50, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x96E30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x550, symBinAddr: 0x71F60, symSize: 0x20 } + - { offsetInCU: 0xD8, offset: 0x96E65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x450, symBinAddr: 0x71E60, symSize: 0x10 } + - { offsetInCU: 0xEC, offset: 0x96E79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x460, symBinAddr: 0x71E70, symSize: 0x30 } + - { offsetInCU: 0x120, offset: 0x96EAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x590, symBinAddr: 0x71F80, symSize: 0x80 } + - { offsetInCU: 0x134, offset: 0x96EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x610, symBinAddr: 0x72000, symSize: 0xD0 } + - { offsetInCU: 0x148, offset: 0x96ED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x6E0, symBinAddr: 0x720D0, symSize: 0x10 } + - { offsetInCU: 0x15C, offset: 0x96EE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x6F0, symBinAddr: 0x720E0, symSize: 0x10 } + - { offsetInCU: 0x170, offset: 0x96EFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x700, symBinAddr: 0x720F0, symSize: 0x10 } + - { offsetInCU: 0x184, offset: 0x96F11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x710, symBinAddr: 0x72100, symSize: 0x10 } + - { offsetInCU: 0x1FF, offset: 0x96F8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x720, symBinAddr: 0x72110, symSize: 0x27B } + - { offsetInCU: 0x456, offset: 0x971E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x430, symBinAddr: 0x71E40, symSize: 0x20 } + - { offsetInCU: 0x529, offset: 0x972B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x490, symBinAddr: 0x71EA0, symSize: 0x40 } + - { offsetInCU: 0x601, offset: 0x9738E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4D0, symBinAddr: 0x71EE0, symSize: 0x30 } + - { offsetInCU: 0x67D, offset: 0x9740A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x500, symBinAddr: 0x71F10, symSize: 0x40 } + - { offsetInCU: 0x860, offset: 0x975ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x71A10, symSize: 0x20 } + - { offsetInCU: 0x881, offset: 0x9760E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x20, symBinAddr: 0x71A30, symSize: 0x410 } + - { offsetInCU: 0x2B, offset: 0x976DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x72390, symSize: 0x20 } + - { offsetInCU: 0x7C, offset: 0x9772D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x723B0, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x97833, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x72390, symSize: 0x20 } + - { offsetInCU: 0x4F, offset: 0x978C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x2000, symBinAddr: 0x8CED0, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x97E2B, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xB0, symBinAddr: 0x72480, symSize: 0x50 } + - { offsetInCU: 0x5CF, offset: 0x97E43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x100, symBinAddr: 0x724D0, symSize: 0x80 } + - { offsetInCU: 0x71F, offset: 0x97F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1A50, symBinAddr: 0x73D70, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x97FA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x1A60, symBinAddr: 0x73D80, symSize: 0x10 } + - { offsetInCU: 0x747, offset: 0x97FBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1A70, symBinAddr: 0x73D90, symSize: 0x10 } + - { offsetInCU: 0x75B, offset: 0x97FCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x1A80, symBinAddr: 0x73DA0, symSize: 0x10 } + - { offsetInCU: 0x76F, offset: 0x97FE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1A90, symBinAddr: 0x73DB0, symSize: 0x10 } + - { offsetInCU: 0x783, offset: 0x97FF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x1AF0, symBinAddr: 0x73DC0, symSize: 0x20 } + - { offsetInCU: 0x797, offset: 0x9800B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOb', symObjAddr: 0x1B10, symBinAddr: 0x73DE0, symSize: 0x40 } + - { offsetInCU: 0x7AB, offset: 0x9801F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOd', symObjAddr: 0x1B50, symBinAddr: 0x73E20, symSize: 0x40 } + - { offsetInCU: 0x7BF, offset: 0x98033, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1EC0, symBinAddr: 0x74170, symSize: 0x10 } + - { offsetInCU: 0x7D3, offset: 0x98047, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1ED0, symBinAddr: 0x74180, symSize: 0x20 } + - { offsetInCU: 0x7E7, offset: 0x9805B, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1EF0, symBinAddr: 0x741A0, symSize: 0x10 } + - { offsetInCU: 0x830, offset: 0x980A4, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1F00, symBinAddr: 0x741B0, symSize: 0x20 } + - { offsetInCU: 0x89F, offset: 0x98113, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x723D0, symSize: 0x10 } + - { offsetInCU: 0x8BB, offset: 0x9812F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x10, symBinAddr: 0x723E0, symSize: 0x10 } + - { offsetInCU: 0x8D7, offset: 0x9814B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x20, symBinAddr: 0x723F0, symSize: 0x10 } + - { offsetInCU: 0x8F3, offset: 0x98167, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x30, symBinAddr: 0x72400, symSize: 0x10 } + - { offsetInCU: 0x90F, offset: 0x98183, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x40, symBinAddr: 0x72410, symSize: 0x10 } + - { offsetInCU: 0x92B, offset: 0x9819F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x72420, symSize: 0x10 } + - { offsetInCU: 0x947, offset: 0x981BB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x60, symBinAddr: 0x72430, symSize: 0x10 } + - { offsetInCU: 0x963, offset: 0x981D7, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x70, symBinAddr: 0x72440, symSize: 0x20 } + - { offsetInCU: 0x97F, offset: 0x981F3, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x90, symBinAddr: 0x72460, symSize: 0x20 } + - { offsetInCU: 0xBD3, offset: 0x98447, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0x180, symBinAddr: 0x72550, symSize: 0x30 } + - { offsetInCU: 0xC97, offset: 0x9850B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1B0, symBinAddr: 0x72580, symSize: 0x630 } + - { offsetInCU: 0xF14, offset: 0x98788, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x820, symBinAddr: 0x72BB0, symSize: 0x50 } + - { offsetInCU: 0xF83, offset: 0x987F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x870, symBinAddr: 0x72C00, symSize: 0x50 } + - { offsetInCU: 0xFF2, offset: 0x98866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x8C0, symBinAddr: 0x72C50, symSize: 0x50 } + - { offsetInCU: 0x1061, offset: 0x988D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x910, symBinAddr: 0x72CA0, symSize: 0x50 } + - { offsetInCU: 0x10D0, offset: 0x98944, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x960, symBinAddr: 0x72CF0, symSize: 0x50 } + - { offsetInCU: 0x11A4, offset: 0x98A18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x9B0, symBinAddr: 0x72D40, symSize: 0x40 } + - { offsetInCU: 0x120E, offset: 0x98A82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x9F0, symBinAddr: 0x72D80, symSize: 0x10 } + - { offsetInCU: 0x1251, offset: 0x98AC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA00, symBinAddr: 0x72D90, symSize: 0x50 } + - { offsetInCU: 0x12C8, offset: 0x98B3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0xB70, symBinAddr: 0x72F00, symSize: 0x30 } + - { offsetInCU: 0x132B, offset: 0x98B9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xBA0, symBinAddr: 0x72F30, symSize: 0x50 } + - { offsetInCU: 0x13A2, offset: 0x98C16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xBF0, symBinAddr: 0x72F80, symSize: 0x40 } + - { offsetInCU: 0x142E, offset: 0x98CA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xC30, symBinAddr: 0x72FC0, symSize: 0x80 } + - { offsetInCU: 0x14C9, offset: 0x98D3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xCB0, symBinAddr: 0x73040, symSize: 0x70 } + - { offsetInCU: 0x1578, offset: 0x98DEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xD20, symBinAddr: 0x730B0, symSize: 0x80 } + - { offsetInCU: 0x1613, offset: 0x98E87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xDA0, symBinAddr: 0x73130, symSize: 0x30 } + - { offsetInCU: 0x168E, offset: 0x98F02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xDD0, symBinAddr: 0x73160, symSize: 0x30 } + - { offsetInCU: 0x1709, offset: 0x98F7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE00, symBinAddr: 0x73190, symSize: 0x40 } + - { offsetInCU: 0x1787, offset: 0x98FFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE40, symBinAddr: 0x731D0, symSize: 0x40 } + - { offsetInCU: 0x1805, offset: 0x99079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE80, symBinAddr: 0x73210, symSize: 0x40 } + - { offsetInCU: 0x1883, offset: 0x990F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xEC0, symBinAddr: 0x73250, symSize: 0x40 } + - { offsetInCU: 0x1901, offset: 0x99175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF00, symBinAddr: 0x73290, symSize: 0x40 } + - { offsetInCU: 0x197F, offset: 0x991F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xF40, symBinAddr: 0x732D0, symSize: 0x30 } + - { offsetInCU: 0x19DD, offset: 0x99251, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xF70, symBinAddr: 0x73300, symSize: 0x40 } + - { offsetInCU: 0x1A74, offset: 0x992E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xFB0, symBinAddr: 0x73340, symSize: 0x130 } + - { offsetInCU: 0x1B46, offset: 0x993BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0x10E0, symBinAddr: 0x73470, symSize: 0xB0 } + - { offsetInCU: 0x1C18, offset: 0x9948C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1190, symBinAddr: 0x73520, symSize: 0x90 } + - { offsetInCU: 0x1CAE, offset: 0x99522, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x1220, symBinAddr: 0x735B0, symSize: 0xF0 } + - { offsetInCU: 0x1CD1, offset: 0x99545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1310, symBinAddr: 0x736A0, symSize: 0x20 } + - { offsetInCU: 0x1D0F, offset: 0x99583, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x13A0, symBinAddr: 0x736C0, symSize: 0x310 } + - { offsetInCU: 0x1DE0, offset: 0x99654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x16B0, symBinAddr: 0x739D0, symSize: 0x3A0 } +... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT deleted file mode 100755 index 28c6e85..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule deleted file mode 100644 index 066624b..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS deleted file mode 100755 index a2f48d1..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json deleted file mode 100644 index 169ab97..0000000 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json +++ /dev/null @@ -1,22932 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS12ReachabilityC", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2_AWS.DebugConfig", - "usr": "s:15IoTConnect2_AWS11DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2_AWS.MqttConfig", - "usr": "s:15IoTConnect2_AWS10MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS11DebugConfigV", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS10MqttConfigV", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PREQA", - "printedName": "PREQA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "POC", - "printedName": "POC", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS0A4TCPfO", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS9SSLOptionV", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS11CommandTypeO", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS9SDKClientC", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", - "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4310, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34350, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34392, - "length": 48, - "value": "\"twinPropertySubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34421, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34515, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34565, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34614, - "length": 48, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34643, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34661, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34737, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34787, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34891, - "length": 11, - "value": "\"subForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34988, - "length": 11, - "value": "\"pubForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 89, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2295, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2315, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2406, - "length": 92, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2448, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2477, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2497, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2549, - "length": 93, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2580, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2413, - "length": 26, - "value": "\"SDKClient initialize AWS\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftmodule b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftmodule deleted file mode 100644 index a736c7f..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftmodule and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS deleted file mode 100644 index 9116486..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT deleted file mode 100644 index 21573bd..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml deleted file mode 100644 index 3f31e3d..0000000 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml +++ /dev/null @@ -1,1665 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT' -relocations: - - { offsetInCU: 0x34, offset: 0x5447A, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x4ABB0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x544AF, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x4ABD8, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x54514, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x4 } - - { offsetInCU: 0x6B, offset: 0x54530, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x4, symBinAddr: 0x4004, symSize: 0x4 } - - { offsetInCU: 0x94, offset: 0x54559, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x8, symBinAddr: 0x4008, symSize: 0x28 } - - { offsetInCU: 0xB3, offset: 0x54578, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x30, symBinAddr: 0x4030, symSize: 0x110 } - - { offsetInCU: 0xFC, offset: 0x545C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x200, symBinAddr: 0x4200, symSize: 0x20 } - - { offsetInCU: 0x12D, offset: 0x545F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x220, symBinAddr: 0x4220, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x5460E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x22C, symBinAddr: 0x422C, symSize: 0x8 } - - { offsetInCU: 0x165, offset: 0x5462A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x851C, symBinAddr: 0xC508, symSize: 0x14 } - - { offsetInCU: 0x2C0, offset: 0x54785, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x234, symBinAddr: 0x4234, symSize: 0x14C } - - { offsetInCU: 0x40B, offset: 0x548D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x380, symBinAddr: 0x4380, symSize: 0x8 } - - { offsetInCU: 0x42F, offset: 0x548F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x388, symBinAddr: 0x4388, symSize: 0x48 } - - { offsetInCU: 0x44E, offset: 0x54913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x3D0, symBinAddr: 0x43D0, symSize: 0x58 } - - { offsetInCU: 0x48D, offset: 0x54952, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x428, symBinAddr: 0x4428, symSize: 0x70 } - - { offsetInCU: 0x4BC, offset: 0x54981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x498, symBinAddr: 0x4498, symSize: 0x6C } - - { offsetInCU: 0x4E7, offset: 0x549AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x54C, symBinAddr: 0x454C, symSize: 0x44 } - - { offsetInCU: 0x516, offset: 0x549DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x5B0, symBinAddr: 0x45B0, symSize: 0x44 } - - { offsetInCU: 0x545, offset: 0x54A0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x6B4, symBinAddr: 0x46B4, symSize: 0x44 } - - { offsetInCU: 0x574, offset: 0x54A39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x71C, symBinAddr: 0x471C, symSize: 0x44 } - - { offsetInCU: 0x5A3, offset: 0x54A68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x482C, symSize: 0x44 } - - { offsetInCU: 0x5D2, offset: 0x54A97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x890, symBinAddr: 0x4890, symSize: 0x44 } - - { offsetInCU: 0x601, offset: 0x54AC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x8DC, symBinAddr: 0x48DC, symSize: 0x50 } - - { offsetInCU: 0x620, offset: 0x54AE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0x92C, symBinAddr: 0x492C, symSize: 0x50 } - - { offsetInCU: 0x65F, offset: 0x54B24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0x97C, symBinAddr: 0x497C, symSize: 0x44 } - - { offsetInCU: 0x68E, offset: 0x54B53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0x9C0, symBinAddr: 0x49C0, symSize: 0x4 } - - { offsetInCU: 0x6D9, offset: 0x54B9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0x9C4, symBinAddr: 0x49C4, symSize: 0xC0 } - - { offsetInCU: 0x749, offset: 0x54C0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xA90, symBinAddr: 0x4A90, symSize: 0xF4 } - - { offsetInCU: 0x7BC, offset: 0x54C81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xB90, symBinAddr: 0x4B90, symSize: 0x44 } - - { offsetInCU: 0x7DB, offset: 0x54CA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xBD4, symBinAddr: 0x4BD4, symSize: 0x50 } - - { offsetInCU: 0x81A, offset: 0x54CDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC24, symBinAddr: 0x4C24, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x54D6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xC70, symBinAddr: 0x4C70, symSize: 0x118 } - - { offsetInCU: 0x97B, offset: 0x54E40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0xFD8, symBinAddr: 0x4FD8, symSize: 0x44 } - - { offsetInCU: 0x9B8, offset: 0x54E7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x101C, symBinAddr: 0x501C, symSize: 0x90 } - - { offsetInCU: 0xA00, offset: 0x54EC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x10AC, symBinAddr: 0x50AC, symSize: 0x48 } - - { offsetInCU: 0xA2F, offset: 0x54EF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x10F4, symBinAddr: 0x50F4, symSize: 0x80 } - - { offsetInCU: 0xA8C, offset: 0x54F51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x1178, symBinAddr: 0x5178, symSize: 0x20 } - - { offsetInCU: 0xAAC, offset: 0x54F71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x1178, symBinAddr: 0x5178, symSize: 0x20 } - - { offsetInCU: 0xADC, offset: 0x54FA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x1198, symBinAddr: 0x5198, symSize: 0x20 } - - { offsetInCU: 0xB05, offset: 0x54FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x1198, symBinAddr: 0x5198, symSize: 0x20 } - - { offsetInCU: 0xB5D, offset: 0x55022, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x11B8, symBinAddr: 0x51B8, symSize: 0x34 } - - { offsetInCU: 0xBEB, offset: 0x550B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } - - { offsetInCU: 0xC19, offset: 0x550DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } - - { offsetInCU: 0xC2D, offset: 0x550F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } - - { offsetInCU: 0xC81, offset: 0x55146, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x120C, symBinAddr: 0x520C, symSize: 0x20 } - - { offsetInCU: 0xCA1, offset: 0x55166, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x120C, symBinAddr: 0x520C, symSize: 0x20 } - - { offsetInCU: 0xCEF, offset: 0x551B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x1238, symBinAddr: 0x5238, symSize: 0x34 } - - { offsetInCU: 0xD53, offset: 0x55218, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1278, symBinAddr: 0x5278, symSize: 0x20 } - - { offsetInCU: 0xD73, offset: 0x55238, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1278, symBinAddr: 0x5278, symSize: 0x20 } - - { offsetInCU: 0xDC1, offset: 0x55286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x12BC, symBinAddr: 0x52BC, symSize: 0x34 } - - { offsetInCU: 0xE25, offset: 0x552EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x1334, symBinAddr: 0x5334, symSize: 0x44 } - - { offsetInCU: 0xE54, offset: 0x55319, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x1424, symBinAddr: 0x5424, symSize: 0x44 } - - { offsetInCU: 0xE83, offset: 0x55348, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1488, symBinAddr: 0x5488, symSize: 0x44 } - - { offsetInCU: 0xEB2, offset: 0x55377, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1570, symBinAddr: 0x5570, symSize: 0x44 } - - { offsetInCU: 0xEE1, offset: 0x553A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x15CC, symBinAddr: 0x55CC, symSize: 0x78 } - - { offsetInCU: 0xF1E, offset: 0x553E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x1644, symBinAddr: 0x5644, symSize: 0x7C } - - { offsetInCU: 0xF8C, offset: 0x55451, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x16C0, symBinAddr: 0x56C0, symSize: 0x90 } - - { offsetInCU: 0x1010, offset: 0x554D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x1750, symBinAddr: 0x5750, symSize: 0x24 } - - { offsetInCU: 0x1065, offset: 0x5552A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x1774, symBinAddr: 0x5774, symSize: 0x88 } - - { offsetInCU: 0x10C2, offset: 0x55587, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x17FC, symBinAddr: 0x57FC, symSize: 0x7C } - - { offsetInCU: 0x1121, offset: 0x555E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x1878, symBinAddr: 0x5878, symSize: 0xA8 } - - { offsetInCU: 0x11A9, offset: 0x5566E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1920, symBinAddr: 0x5920, symSize: 0x80 } - - { offsetInCU: 0x1220, offset: 0x556E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x19A0, symBinAddr: 0x59A0, symSize: 0xC8 } - - { offsetInCU: 0x1272, offset: 0x55737, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1A68, symBinAddr: 0x5A68, symSize: 0xD4 } - - { offsetInCU: 0x12F7, offset: 0x557BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1B3C, symBinAddr: 0x5B3C, symSize: 0xFC } - - { offsetInCU: 0x1394, offset: 0x55859, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1C38, symBinAddr: 0x5C38, symSize: 0x130 } - - { offsetInCU: 0x1418, offset: 0x558DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1D68, symBinAddr: 0x5D68, symSize: 0xC0 } - - { offsetInCU: 0x148C, offset: 0x55951, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x1EF4, symBinAddr: 0x5EF4, symSize: 0xF4 } - - { offsetInCU: 0x1503, offset: 0x559C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2108, symBinAddr: 0x6108, symSize: 0x48 } - - { offsetInCU: 0x1534, offset: 0x559F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2150, symBinAddr: 0x6150, symSize: 0x50 } - - { offsetInCU: 0x1576, offset: 0x55A3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x21A0, symBinAddr: 0x61A0, symSize: 0x44 } - - { offsetInCU: 0x1595, offset: 0x55A5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2260, symBinAddr: 0x6260, symSize: 0x10 } - - { offsetInCU: 0x15AD, offset: 0x55A72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x2270, symBinAddr: 0x6270, symSize: 0x4 } - - { offsetInCU: 0x15E7, offset: 0x55AAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x228C, symBinAddr: 0x628C, symSize: 0x44 } - - { offsetInCU: 0x1618, offset: 0x55ADD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x22D0, symBinAddr: 0x62D0, symSize: 0x10 } - - { offsetInCU: 0x1630, offset: 0x55AF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x22E0, symBinAddr: 0x62E0, symSize: 0x4 } - - { offsetInCU: 0x1679, offset: 0x55B3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x22FC, symBinAddr: 0x62FC, symSize: 0x44 } - - { offsetInCU: 0x16AA, offset: 0x55B6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2340, symBinAddr: 0x6340, symSize: 0x10 } - - { offsetInCU: 0x16C2, offset: 0x55B87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x2350, symBinAddr: 0x6350, symSize: 0x4 } - - { offsetInCU: 0x16FC, offset: 0x55BC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x236C, symBinAddr: 0x636C, symSize: 0x44 } - - { offsetInCU: 0x172D, offset: 0x55BF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x23B0, symBinAddr: 0x63B0, symSize: 0x10 } - - { offsetInCU: 0x1745, offset: 0x55C0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x23D8, symBinAddr: 0x63D8, symSize: 0x44 } - - { offsetInCU: 0x1776, offset: 0x55C3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x241C, symBinAddr: 0x641C, symSize: 0x10 } - - { offsetInCU: 0x178E, offset: 0x55C53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x242C, symBinAddr: 0x642C, symSize: 0x4 } - - { offsetInCU: 0x17D7, offset: 0x55C9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x2448, symBinAddr: 0x6448, symSize: 0x44 } - - { offsetInCU: 0x1808, offset: 0x55CCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x248C, symBinAddr: 0x648C, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x55CE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x24B4, symBinAddr: 0x64B4, symSize: 0x44 } - - { offsetInCU: 0x1851, offset: 0x55D16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x24F8, symBinAddr: 0x64F8, symSize: 0x10 } - - { offsetInCU: 0x1869, offset: 0x55D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2508, symBinAddr: 0x6508, symSize: 0x4 } - - { offsetInCU: 0x1894, offset: 0x55D59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x2524, symBinAddr: 0x6524, symSize: 0x44 } - - { offsetInCU: 0x18C5, offset: 0x55D8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x2568, symBinAddr: 0x6568, symSize: 0x10 } - - { offsetInCU: 0x18DD, offset: 0x55DA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x2578, symBinAddr: 0x6578, symSize: 0x4 } - - { offsetInCU: 0x1908, offset: 0x55DCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2594, symBinAddr: 0x6594, symSize: 0x44 } - - { offsetInCU: 0x1939, offset: 0x55DFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x25D8, symBinAddr: 0x65D8, symSize: 0x10 } - - { offsetInCU: 0x1951, offset: 0x55E16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x25E8, symBinAddr: 0x65E8, symSize: 0x4 } - - { offsetInCU: 0x198B, offset: 0x55E50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x2604, symBinAddr: 0x6604, symSize: 0x44 } - - { offsetInCU: 0x19BC, offset: 0x55E81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x2648, symBinAddr: 0x6648, symSize: 0x10 } - - { offsetInCU: 0x19D4, offset: 0x55E99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x2658, symBinAddr: 0x6658, symSize: 0x4 } - - { offsetInCU: 0x1A1F, offset: 0x55EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x2674, symBinAddr: 0x6674, symSize: 0x44 } - - { offsetInCU: 0x1A50, offset: 0x55F15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x26B8, symBinAddr: 0x66B8, symSize: 0x10 } - - { offsetInCU: 0x1A68, offset: 0x55F2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x26E0, symBinAddr: 0x66E0, symSize: 0x44 } - - { offsetInCU: 0x1A99, offset: 0x55F5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2724, symBinAddr: 0x6724, symSize: 0x10 } - - { offsetInCU: 0x1AB1, offset: 0x55F76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x27F4, symBinAddr: 0x67F4, symSize: 0x44 } - - { offsetInCU: 0x1AE2, offset: 0x55FA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2838, symBinAddr: 0x6838, symSize: 0x70 } - - { offsetInCU: 0x1B01, offset: 0x55FC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x28A8, symBinAddr: 0x68A8, symSize: 0x5FC } - - { offsetInCU: 0x1D11, offset: 0x561D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x2EA4, symBinAddr: 0x6EA4, symSize: 0x178 } - - { offsetInCU: 0x1D70, offset: 0x56235, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x301C, symBinAddr: 0x701C, symSize: 0x24 } - - { offsetInCU: 0x1E6F, offset: 0x56334, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x326C, symBinAddr: 0x726C, symSize: 0x518 } - - { offsetInCU: 0x202F, offset: 0x564F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3784, symBinAddr: 0x7784, symSize: 0x8 } - - { offsetInCU: 0x20B5, offset: 0x5657A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x378C, symBinAddr: 0x778C, symSize: 0x68C } - - { offsetInCU: 0x23AB, offset: 0x56870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x3E18, symBinAddr: 0x7E18, symSize: 0xC0 } - - { offsetInCU: 0x245E, offset: 0x56923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x3F04, symBinAddr: 0x7F04, symSize: 0x4 } - - { offsetInCU: 0x24B7, offset: 0x5697C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19internal_disconnectyyF', symObjAddr: 0x3F08, symBinAddr: 0x7F08, symSize: 0xD4 } - - { offsetInCU: 0x256D, offset: 0x56A32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x3FDC, symBinAddr: 0x7FDC, symSize: 0x100 } - - { offsetInCU: 0x25E9, offset: 0x56AAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x40DC, symBinAddr: 0x80DC, symSize: 0xB0 } - - { offsetInCU: 0x2675, offset: 0x56B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x418C, symBinAddr: 0x818C, symSize: 0x17C } - - { offsetInCU: 0x27E3, offset: 0x56CA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x4308, symBinAddr: 0x8308, symSize: 0x5EC } - - { offsetInCU: 0x2A2F, offset: 0x56EF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x48F4, symBinAddr: 0x88F4, symSize: 0x7C } - - { offsetInCU: 0x2A9C, offset: 0x56F61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x4970, symBinAddr: 0x8970, symSize: 0xBC } - - { offsetInCU: 0x2B88, offset: 0x5704D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4A2C, symBinAddr: 0x8A2C, symSize: 0x78 } - - { offsetInCU: 0x2C50, offset: 0x57115, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x4AA4, symBinAddr: 0x8AA4, symSize: 0xF8 } - - { offsetInCU: 0x2E9D, offset: 0x57362, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x4B9C, symBinAddr: 0x8B9C, symSize: 0x134 } - - { offsetInCU: 0x305A, offset: 0x5751F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x4CD0, symBinAddr: 0x8CD0, symSize: 0xF0 } - - { offsetInCU: 0x318C, offset: 0x57651, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4DC0, symBinAddr: 0x8DC0, symSize: 0x20 } - - { offsetInCU: 0x31AA, offset: 0x5766F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4DE0, symBinAddr: 0x8DE0, symSize: 0x2C } - - { offsetInCU: 0x320D, offset: 0x576D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4E0C, symBinAddr: 0x8E0C, symSize: 0x2C } - - { offsetInCU: 0x3274, offset: 0x57739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4E38, symBinAddr: 0x8E38, symSize: 0x44 } - - { offsetInCU: 0x3463, offset: 0x57928, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x6F1C, symBinAddr: 0xAF08, symSize: 0x24C } - - { offsetInCU: 0x3637, offset: 0x57AFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubAckV_Tg5', symObjAddr: 0x7168, symBinAddr: 0xB154, symSize: 0x22C } - - { offsetInCU: 0x380B, offset: 0x57CD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRecV_Tg5', symObjAddr: 0x7394, symBinAddr: 0xB380, symSize: 0x22C } - - { offsetInCU: 0x39DF, offset: 0x57EA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PubCompV_Tg5', symObjAddr: 0x75C0, symBinAddr: 0xB5AC, symSize: 0x22C } - - { offsetInCU: 0x3BB3, offset: 0x58078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x77EC, symBinAddr: 0xB7D8, symSize: 0x234 } - - { offsetInCU: 0x3D87, offset: 0x5824C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x7A20, symBinAddr: 0xBA0C, symSize: 0x200 } - - { offsetInCU: 0x3F5B, offset: 0x58420, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x7C20, symBinAddr: 0xBC0C, symSize: 0x22C } - - { offsetInCU: 0x412F, offset: 0x585F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x7E4C, symBinAddr: 0xBE38, symSize: 0x270 } - - { offsetInCU: 0x4303, offset: 0x587C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x80BC, symBinAddr: 0xC0A8, symSize: 0x234 } - - { offsetInCU: 0x44D7, offset: 0x5899C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRelV_Tg5', symObjAddr: 0x82F0, symBinAddr: 0xC2DC, symSize: 0x22C } - - { offsetInCU: 0x4819, offset: 0x58CDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x504, symBinAddr: 0x4504, symSize: 0x14 } - - { offsetInCU: 0x4831, offset: 0x58CF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x518, symBinAddr: 0x4518, symSize: 0x1C } - - { offsetInCU: 0x4849, offset: 0x58D0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x590, symBinAddr: 0x4590, symSize: 0x8 } - - { offsetInCU: 0x4861, offset: 0x58D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x6F8, symBinAddr: 0x46F8, symSize: 0xC } - - { offsetInCU: 0x4879, offset: 0x58D3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x760, symBinAddr: 0x4760, symSize: 0xC } - - { offsetInCU: 0x4891, offset: 0x58D56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x870, symBinAddr: 0x4870, symSize: 0x8 } - - { offsetInCU: 0x48A9, offset: 0x58D6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x8D4, symBinAddr: 0x48D4, symSize: 0x8 } - - { offsetInCU: 0x495E, offset: 0x58E23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xC68, symBinAddr: 0x4C68, symSize: 0x8 } - - { offsetInCU: 0x498D, offset: 0x58E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xD88, symBinAddr: 0x4D88, symSize: 0x250 } - - { offsetInCU: 0x4A11, offset: 0x58ED6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4E84, symBinAddr: 0x8E84, symSize: 0x5C } - - { offsetInCU: 0x4B67, offset: 0x5902C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x8 } - - { offsetInCU: 0x4B7F, offset: 0x59044, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1378, symBinAddr: 0x5378, symSize: 0x8 } - - { offsetInCU: 0x4B97, offset: 0x5905C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1380, symBinAddr: 0x5380, symSize: 0x8 } - - { offsetInCU: 0x4BAF, offset: 0x59074, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1468, symBinAddr: 0x5468, symSize: 0x8 } - - { offsetInCU: 0x4BC7, offset: 0x5908C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x14CC, symBinAddr: 0x54CC, symSize: 0x8 } - - { offsetInCU: 0x4BDF, offset: 0x590A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x15B4, symBinAddr: 0x55B4, symSize: 0x8 } - - { offsetInCU: 0x4BF7, offset: 0x590BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x15BC, symBinAddr: 0x55BC, symSize: 0x8 } - - { offsetInCU: 0x4C0F, offset: 0x590D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x15C4, symBinAddr: 0x55C4, symSize: 0x8 } - - { offsetInCU: 0x4D41, offset: 0x59206, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x20CC, symBinAddr: 0x60CC, symSize: 0x3C } - - { offsetInCU: 0x4D70, offset: 0x59235, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x21E4, symBinAddr: 0x61E4, symSize: 0x24 } - - { offsetInCU: 0x4D9F, offset: 0x59264, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x2208, symBinAddr: 0x6208, symSize: 0x24 } - - { offsetInCU: 0x4DCE, offset: 0x59293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x222C, symBinAddr: 0x622C, symSize: 0x24 } - - { offsetInCU: 0x4DFD, offset: 0x592C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x2250, symBinAddr: 0x6250, symSize: 0x8 } - - { offsetInCU: 0x4E15, offset: 0x592DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x2258, symBinAddr: 0x6258, symSize: 0x8 } - - { offsetInCU: 0x4E7C, offset: 0x59341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x3040, symBinAddr: 0x7040, symSize: 0x22C } - - { offsetInCU: 0x5033, offset: 0x594F8, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x3ED8, symBinAddr: 0x7ED8, symSize: 0x2C } - - { offsetInCU: 0x5406, offset: 0x598CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4E7C, symBinAddr: 0x8E7C, symSize: 0x8 } - - { offsetInCU: 0x5439, offset: 0x598FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4EE0, symBinAddr: 0x8EE0, symSize: 0x4 } - - { offsetInCU: 0x5467, offset: 0x5992C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x4EE4, symBinAddr: 0x8EE4, symSize: 0x1F0 } - - { offsetInCU: 0x555B, offset: 0x59A20, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x50D4, symBinAddr: 0x90D4, symSize: 0x3C } - - { offsetInCU: 0x557E, offset: 0x59A43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5110, symBinAddr: 0x9110, symSize: 0x1B0 } - - { offsetInCU: 0x5664, offset: 0x59B29, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x52C0, symBinAddr: 0x92C0, symSize: 0x64 } - - { offsetInCU: 0x567C, offset: 0x59B41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5324, symBinAddr: 0x9324, symSize: 0xC4 } - - { offsetInCU: 0x5702, offset: 0x59BC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x53E8, symBinAddr: 0x93E8, symSize: 0x4 } - - { offsetInCU: 0x57E9, offset: 0x59CAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x53EC, symBinAddr: 0x93EC, symSize: 0x268 } - - { offsetInCU: 0x5B74, offset: 0x5A039, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5654, symBinAddr: 0x9654, symSize: 0x390 } - - { offsetInCU: 0x5DBB, offset: 0x5A280, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x59E4, symBinAddr: 0x99E4, symSize: 0xB0 } - - { offsetInCU: 0x5EA1, offset: 0x5A366, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5A94, symBinAddr: 0x9A94, symSize: 0x4 } - - { offsetInCU: 0x5EC1, offset: 0x5A386, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5A94, symBinAddr: 0x9A94, symSize: 0x4 } - - { offsetInCU: 0x5EE6, offset: 0x5A3AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5A98, symBinAddr: 0x9A98, symSize: 0x4 } - - { offsetInCU: 0x5F02, offset: 0x5A3C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5A9C, symBinAddr: 0x9A9C, symSize: 0x4 } - - { offsetInCU: 0x5F1E, offset: 0x5A3E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x5AA0, symBinAddr: 0x9AA0, symSize: 0x4 } - - { offsetInCU: 0x5F3A, offset: 0x5A3FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5AA4, symBinAddr: 0x9AA4, symSize: 0x4 } - - { offsetInCU: 0x5F56, offset: 0x5A41B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x5AA8, symBinAddr: 0x9AA8, symSize: 0x4 } - - { offsetInCU: 0x5F72, offset: 0x5A437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5AAC, symBinAddr: 0x9AAC, symSize: 0x234 } - - { offsetInCU: 0x5FFA, offset: 0x5A4BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5CE0, symBinAddr: 0x9CE0, symSize: 0x140 } - - { offsetInCU: 0x60E8, offset: 0x5A5AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5E20, symBinAddr: 0x9E20, symSize: 0x2C } - - { offsetInCU: 0x612A, offset: 0x5A5EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5E4C, symBinAddr: 0x9E4C, symSize: 0x8 } - - { offsetInCU: 0x616C, offset: 0x5A631, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5E54, symBinAddr: 0x9E54, symSize: 0x8 } - - { offsetInCU: 0x61AE, offset: 0x5A673, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5E5C, symBinAddr: 0x9E5C, symSize: 0x8 } - - { offsetInCU: 0x61F0, offset: 0x5A6B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5E64, symBinAddr: 0x9E64, symSize: 0x8 } - - { offsetInCU: 0x6232, offset: 0x5A6F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5E6C, symBinAddr: 0x9E6C, symSize: 0x8 } - - { offsetInCU: 0x6274, offset: 0x5A739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5E74, symBinAddr: 0x9E74, symSize: 0x8 } - - { offsetInCU: 0x62B6, offset: 0x5A77B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5E7C, symBinAddr: 0x9E7C, symSize: 0x8 } - - { offsetInCU: 0x62F8, offset: 0x5A7BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5E84, symBinAddr: 0x9E84, symSize: 0x4 } - - { offsetInCU: 0x6318, offset: 0x5A7DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5E84, symBinAddr: 0x9E84, symSize: 0x4 } - - { offsetInCU: 0x632B, offset: 0x5A7F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5E88, symBinAddr: 0x9E88, symSize: 0x8 } - - { offsetInCU: 0x6343, offset: 0x5A808, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5E90, symBinAddr: 0x9E90, symSize: 0x10 } - - { offsetInCU: 0x635B, offset: 0x5A820, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5EA0, symBinAddr: 0x9EA0, symSize: 0x1C } - - { offsetInCU: 0x6373, offset: 0x5A838, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5EBC, symBinAddr: 0x9EBC, symSize: 0x8 } - - { offsetInCU: 0x638B, offset: 0x5A850, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x5EC4, symBinAddr: 0x9EC4, symSize: 0xC } - - { offsetInCU: 0x63A3, offset: 0x5A868, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x5ED0, symBinAddr: 0x9ED0, symSize: 0xC } - - { offsetInCU: 0x63BB, offset: 0x5A880, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x5EDC, symBinAddr: 0x9EDC, symSize: 0x8 } - - { offsetInCU: 0x63D3, offset: 0x5A898, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x5EE4, symBinAddr: 0x9EE4, symSize: 0x8 } - - { offsetInCU: 0x63EB, offset: 0x5A8B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x5EEC, symBinAddr: 0x9EEC, symSize: 0x38 } - - { offsetInCU: 0x6403, offset: 0x5A8C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x5F24, symBinAddr: 0x9F24, symSize: 0x8 } - - { offsetInCU: 0x641B, offset: 0x5A8E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x5F54, symBinAddr: 0x9F54, symSize: 0x8 } - - { offsetInCU: 0x6433, offset: 0x5A8F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5F5C, symBinAddr: 0x9F5C, symSize: 0x8 } - - { offsetInCU: 0x644B, offset: 0x5A910, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x5F64, symBinAddr: 0x9F64, symSize: 0x8 } - - { offsetInCU: 0x6463, offset: 0x5A928, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5F6C, symBinAddr: 0x9F6C, symSize: 0x8 } - - { offsetInCU: 0x647B, offset: 0x5A940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5F74, symBinAddr: 0x9F74, symSize: 0x8 } - - { offsetInCU: 0x6493, offset: 0x5A958, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x5F7C, symBinAddr: 0x9F7C, symSize: 0x8 } - - { offsetInCU: 0x64AB, offset: 0x5A970, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x5F84, symBinAddr: 0x9F84, symSize: 0x8 } - - { offsetInCU: 0x64C3, offset: 0x5A988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5F8C, symBinAddr: 0x9F8C, symSize: 0x8 } - - { offsetInCU: 0x64DB, offset: 0x5A9A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5F94, symBinAddr: 0x9F94, symSize: 0x8 } - - { offsetInCU: 0x64F3, offset: 0x5A9B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x5F9C, symBinAddr: 0x9F9C, symSize: 0x8 } - - { offsetInCU: 0x6566, offset: 0x5AA2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x5FA4, symBinAddr: 0x9FA4, symSize: 0x184 } - - { offsetInCU: 0x65E4, offset: 0x5AAA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x62DC, symBinAddr: 0xA2DC, symSize: 0x24 } - - { offsetInCU: 0x6613, offset: 0x5AAD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6300, symBinAddr: 0xA300, symSize: 0x8 } - - { offsetInCU: 0x662B, offset: 0x5AAF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x6308, symBinAddr: 0xA308, symSize: 0x8 } - - { offsetInCU: 0x6643, offset: 0x5AB08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6310, symBinAddr: 0xA310, symSize: 0x8 } - - { offsetInCU: 0x665B, offset: 0x5AB20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x6318, symBinAddr: 0xA318, symSize: 0x8 } - - { offsetInCU: 0x6673, offset: 0x5AB38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x6320, symBinAddr: 0xA320, symSize: 0x8 } - - { offsetInCU: 0x668B, offset: 0x5AB50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x6328, symBinAddr: 0xA328, symSize: 0x8 } - - { offsetInCU: 0x66A3, offset: 0x5AB68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x6330, symBinAddr: 0xA330, symSize: 0x18 } - - { offsetInCU: 0x66BB, offset: 0x5AB80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x6348, symBinAddr: 0xA348, symSize: 0x1C } - - { offsetInCU: 0x66D3, offset: 0x5AB98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x6364, symBinAddr: 0xA364, symSize: 0xC } - - { offsetInCU: 0x66EB, offset: 0x5ABB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x6370, symBinAddr: 0xA370, symSize: 0xC } - - { offsetInCU: 0x6703, offset: 0x5ABC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x637C, symBinAddr: 0xA37C, symSize: 0x8 } - - { offsetInCU: 0x671B, offset: 0x5ABE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x6384, symBinAddr: 0xA384, symSize: 0x8 } - - { offsetInCU: 0x6733, offset: 0x5ABF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x638C, symBinAddr: 0xA38C, symSize: 0x8 } - - { offsetInCU: 0x674B, offset: 0x5AC10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6394, symBinAddr: 0xA394, symSize: 0x8 } - - { offsetInCU: 0x6763, offset: 0x5AC28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x639C, symBinAddr: 0xA39C, symSize: 0x8 } - - { offsetInCU: 0x677B, offset: 0x5AC40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x63A4, symBinAddr: 0xA3A4, symSize: 0x8 } - - { offsetInCU: 0x6793, offset: 0x5AC58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x63AC, symBinAddr: 0xA3AC, symSize: 0x8 } - - { offsetInCU: 0x67AB, offset: 0x5AC70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x63B4, symBinAddr: 0xA3B4, symSize: 0x8 } - - { offsetInCU: 0x67C3, offset: 0x5AC88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x63BC, symBinAddr: 0xA3BC, symSize: 0x8 } - - { offsetInCU: 0x67DB, offset: 0x5ACA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x63C4, symBinAddr: 0xA3C4, symSize: 0x8 } - - { offsetInCU: 0x67F3, offset: 0x5ACB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x63CC, symBinAddr: 0xA3CC, symSize: 0x24 } - - { offsetInCU: 0x6836, offset: 0x5ACFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x63F0, symBinAddr: 0xA3F0, symSize: 0xC } - - { offsetInCU: 0x684E, offset: 0x5AD13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x63FC, symBinAddr: 0xA3FC, symSize: 0xC } - - { offsetInCU: 0x6866, offset: 0x5AD2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6408, symBinAddr: 0xA408, symSize: 0x8 } - - { offsetInCU: 0x687E, offset: 0x5AD43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x6410, symBinAddr: 0xA410, symSize: 0xC } - - { offsetInCU: 0x6896, offset: 0x5AD5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x641C, symBinAddr: 0xA41C, symSize: 0x8 } - - { offsetInCU: 0x68AE, offset: 0x5AD73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x6424, symBinAddr: 0xA424, symSize: 0x8 } - - { offsetInCU: 0x68C6, offset: 0x5AD8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x642C, symBinAddr: 0xA42C, symSize: 0xC } - - { offsetInCU: 0x68DE, offset: 0x5ADA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6438, symBinAddr: 0xA438, symSize: 0x8 } - - { offsetInCU: 0x68F6, offset: 0x5ADBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x6440, symBinAddr: 0xA440, symSize: 0xC } - - { offsetInCU: 0x690E, offset: 0x5ADD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x644C, symBinAddr: 0xA44C, symSize: 0x10 } - - { offsetInCU: 0x6926, offset: 0x5ADEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x645C, symBinAddr: 0xA45C, symSize: 0x8 } - - { offsetInCU: 0x693E, offset: 0x5AE03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x6464, symBinAddr: 0xA464, symSize: 0x1C } - - { offsetInCU: 0x6956, offset: 0x5AE1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x6480, symBinAddr: 0xA480, symSize: 0xC } - - { offsetInCU: 0x696E, offset: 0x5AE33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x648C, symBinAddr: 0xA48C, symSize: 0xC } - - { offsetInCU: 0x6986, offset: 0x5AE4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6498, symBinAddr: 0xA498, symSize: 0x8 } - - { offsetInCU: 0x699E, offset: 0x5AE63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x64A0, symBinAddr: 0xA4A0, symSize: 0x8 } - - { offsetInCU: 0x69B6, offset: 0x5AE7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x64A8, symBinAddr: 0xA4A8, symSize: 0x8 } - - { offsetInCU: 0x69CE, offset: 0x5AE93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x64B0, symBinAddr: 0xA4B0, symSize: 0x8 } - - { offsetInCU: 0x69E6, offset: 0x5AEAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x64B8, symBinAddr: 0xA4B8, symSize: 0xC } - - { offsetInCU: 0x69FE, offset: 0x5AEC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x64C4, symBinAddr: 0xA4C4, symSize: 0xC } - - { offsetInCU: 0x6A16, offset: 0x5AEDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x64D0, symBinAddr: 0xA4D0, symSize: 0xC } - - { offsetInCU: 0x6A2E, offset: 0x5AEF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x64DC, symBinAddr: 0xA4DC, symSize: 0xC } - - { offsetInCU: 0x6A46, offset: 0x5AF0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x64E8, symBinAddr: 0xA4E8, symSize: 0x8 } - - { offsetInCU: 0x6A5E, offset: 0x5AF23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x64F0, symBinAddr: 0xA4F0, symSize: 0x8 } - - { offsetInCU: 0x6A76, offset: 0x5AF3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x64F8, symBinAddr: 0xA4F8, symSize: 0x8 } - - { offsetInCU: 0x6A8E, offset: 0x5AF53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6500, symBinAddr: 0xA500, symSize: 0x10 } - - { offsetInCU: 0x6AA6, offset: 0x5AF6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6510, symBinAddr: 0xA510, symSize: 0x8 } - - { offsetInCU: 0x6ABE, offset: 0x5AF83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6518, symBinAddr: 0xA518, symSize: 0xC } - - { offsetInCU: 0x6AD6, offset: 0x5AF9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6524, symBinAddr: 0xA524, symSize: 0x8 } - - { offsetInCU: 0x6AEE, offset: 0x5AFB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x652C, symBinAddr: 0xA52C, symSize: 0x8 } - - { offsetInCU: 0x6B06, offset: 0x5AFCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x6534, symBinAddr: 0xA534, symSize: 0x8 } - - { offsetInCU: 0x6B1E, offset: 0x5AFE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x653C, symBinAddr: 0xA53C, symSize: 0x8 } - - { offsetInCU: 0x6B36, offset: 0x5AFFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x6544, symBinAddr: 0xA544, symSize: 0x8 } - - { offsetInCU: 0x6B4E, offset: 0x5B013, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x654C, symBinAddr: 0xA54C, symSize: 0xC } - - { offsetInCU: 0x6B66, offset: 0x5B02B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6558, symBinAddr: 0xA558, symSize: 0x8 } - - { offsetInCU: 0x6B7E, offset: 0x5B043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x6560, symBinAddr: 0xA560, symSize: 0xC } - - { offsetInCU: 0x6B96, offset: 0x5B05B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x656C, symBinAddr: 0xA56C, symSize: 0xC } - - { offsetInCU: 0x6BAE, offset: 0x5B073, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6578, symBinAddr: 0xA578, symSize: 0x8 } - - { offsetInCU: 0x6BC6, offset: 0x5B08B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6580, symBinAddr: 0xA580, symSize: 0x8 } - - { offsetInCU: 0x6BDE, offset: 0x5B0A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x6588, symBinAddr: 0xA588, symSize: 0x8 } - - { offsetInCU: 0x6BF6, offset: 0x5B0BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x6590, symBinAddr: 0xA590, symSize: 0xC } - - { offsetInCU: 0x6C0E, offset: 0x5B0D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x659C, symBinAddr: 0xA59C, symSize: 0xC } - - { offsetInCU: 0x6C26, offset: 0x5B0EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x65A8, symBinAddr: 0xA5A8, symSize: 0x8 } - - { offsetInCU: 0x6C3E, offset: 0x5B103, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x65B0, symBinAddr: 0xA5B0, symSize: 0x8 } - - { offsetInCU: 0x6C56, offset: 0x5B11B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x65B8, symBinAddr: 0xA5B8, symSize: 0x8 } - - { offsetInCU: 0x6C6E, offset: 0x5B133, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x65C0, symBinAddr: 0xA5C0, symSize: 0x8 } - - { offsetInCU: 0x6C86, offset: 0x5B14B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x65C8, symBinAddr: 0xA5C8, symSize: 0x8 } - - { offsetInCU: 0x6C9E, offset: 0x5B163, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x65D0, symBinAddr: 0xA5D0, symSize: 0xC } - - { offsetInCU: 0x6CB6, offset: 0x5B17B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x65DC, symBinAddr: 0xA5DC, symSize: 0x8 } - - { offsetInCU: 0x6CCE, offset: 0x5B193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x65E4, symBinAddr: 0xA5E4, symSize: 0x8 } - - { offsetInCU: 0x6CE6, offset: 0x5B1AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x65EC, symBinAddr: 0xA5EC, symSize: 0x8 } - - { offsetInCU: 0x6CFE, offset: 0x5B1C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x65F4, symBinAddr: 0xA5F4, symSize: 0x8 } - - { offsetInCU: 0x6D16, offset: 0x5B1DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x65FC, symBinAddr: 0xA5FC, symSize: 0x8 } - - { offsetInCU: 0x6D2E, offset: 0x5B1F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6604, symBinAddr: 0xA604, symSize: 0xC } - - { offsetInCU: 0x6D46, offset: 0x5B20B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6610, symBinAddr: 0xA610, symSize: 0x8 } - - { offsetInCU: 0x6D5E, offset: 0x5B223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x6618, symBinAddr: 0xA618, symSize: 0x8 } - - { offsetInCU: 0x6D76, offset: 0x5B23B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x6620, symBinAddr: 0xA620, symSize: 0x8 } - - { offsetInCU: 0x6D8E, offset: 0x5B253, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x6628, symBinAddr: 0xA628, symSize: 0x8 } - - { offsetInCU: 0x6DA6, offset: 0x5B26B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x6630, symBinAddr: 0xA630, symSize: 0xC } - - { offsetInCU: 0x6DBE, offset: 0x5B283, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x663C, symBinAddr: 0xA63C, symSize: 0x8 } - - { offsetInCU: 0x6DD6, offset: 0x5B29B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6644, symBinAddr: 0xA644, symSize: 0xC } - - { offsetInCU: 0x6DEE, offset: 0x5B2B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6650, symBinAddr: 0xA650, symSize: 0x8 } - - { offsetInCU: 0x6E06, offset: 0x5B2CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x6658, symBinAddr: 0xA658, symSize: 0x8 } - - { offsetInCU: 0x6E1E, offset: 0x5B2E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x6660, symBinAddr: 0xA660, symSize: 0x8 } - - { offsetInCU: 0x6E36, offset: 0x5B2FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x6668, symBinAddr: 0xA668, symSize: 0x8 } - - { offsetInCU: 0x6E4E, offset: 0x5B313, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x6670, symBinAddr: 0xA670, symSize: 0xC } - - { offsetInCU: 0x6E66, offset: 0x5B32B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x667C, symBinAddr: 0xA67C, symSize: 0x8 } - - { offsetInCU: 0x6E7E, offset: 0x5B343, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6684, symBinAddr: 0xA684, symSize: 0xC } - - { offsetInCU: 0x6E96, offset: 0x5B35B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6690, symBinAddr: 0xA690, symSize: 0x8 } - - { offsetInCU: 0x6EAE, offset: 0x5B373, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x6698, symBinAddr: 0xA698, symSize: 0xC } - - { offsetInCU: 0x6EC6, offset: 0x5B38B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x66A4, symBinAddr: 0xA6A4, symSize: 0xC } - - { offsetInCU: 0x6EDE, offset: 0x5B3A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x66B0, symBinAddr: 0xA6B0, symSize: 0x8 } - - { offsetInCU: 0x6EF6, offset: 0x5B3BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x66B8, symBinAddr: 0xA6B8, symSize: 0x8 } - - { offsetInCU: 0x6F0E, offset: 0x5B3D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x66C0, symBinAddr: 0xA6C0, symSize: 0xC } - - { offsetInCU: 0x6F26, offset: 0x5B3EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x66CC, symBinAddr: 0xA6CC, symSize: 0x8 } - - { offsetInCU: 0x6F3E, offset: 0x5B403, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x66D4, symBinAddr: 0xA6D4, symSize: 0x8 } - - { offsetInCU: 0x6F56, offset: 0x5B41B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x66DC, symBinAddr: 0xA6DC, symSize: 0x8 } - - { offsetInCU: 0x6F6E, offset: 0x5B433, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x66E4, symBinAddr: 0xA6E4, symSize: 0x8 } - - { offsetInCU: 0x6FFF, offset: 0x5B4C4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x670C, symBinAddr: 0xA6F8, symSize: 0xE4 } - - { offsetInCU: 0x718E, offset: 0x5B653, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x67F0, symBinAddr: 0xA7DC, symSize: 0xBC } - - { offsetInCU: 0x72E9, offset: 0x5B7AE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x697C, symBinAddr: 0xA968, symSize: 0xC4 } - - { offsetInCU: 0x7434, offset: 0x5B8F9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x6A4C, symBinAddr: 0xAA38, symSize: 0xCC } - - { offsetInCU: 0x7548, offset: 0x5BA0D, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x6B18, symBinAddr: 0xAB04, symSize: 0xA4 } - - { offsetInCU: 0x75CF, offset: 0x5BA94, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x6DCC, symBinAddr: 0xADB8, symSize: 0x150 } - - { offsetInCU: 0x7673, offset: 0x5BB38, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x8530, symBinAddr: 0xC51C, symSize: 0x40 } - - { offsetInCU: 0x7687, offset: 0x5BB4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x8594, symBinAddr: 0xC580, symSize: 0x8 } - - { offsetInCU: 0x769B, offset: 0x5BB60, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x859C, symBinAddr: 0xC588, symSize: 0x24 } - - { offsetInCU: 0x76AF, offset: 0x5BB74, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x85C0, symBinAddr: 0xC5AC, symSize: 0x20 } - - { offsetInCU: 0x76C3, offset: 0x5BB88, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x85E0, symBinAddr: 0xC5CC, symSize: 0x28 } - - { offsetInCU: 0x772F, offset: 0x5BBF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x87F8, symBinAddr: 0xC7E4, symSize: 0x20 } - - { offsetInCU: 0x7743, offset: 0x5BC08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8850, symBinAddr: 0xC83C, symSize: 0x8 } - - { offsetInCU: 0x7757, offset: 0x5BC1C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8858, symBinAddr: 0xC844, symSize: 0x10 } - - { offsetInCU: 0x776B, offset: 0x5BC30, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8868, symBinAddr: 0xC854, symSize: 0x8 } - - { offsetInCU: 0x777F, offset: 0x5BC44, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x88B0, symBinAddr: 0xC89C, symSize: 0x54 } - - { offsetInCU: 0x7793, offset: 0x5BC58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8904, symBinAddr: 0xC8F0, symSize: 0x8 } - - { offsetInCU: 0x784C, offset: 0x5BD11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x8C4C, symBinAddr: 0xCC38, symSize: 0x10 } - - { offsetInCU: 0x7860, offset: 0x5BD25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x8C5C, symBinAddr: 0xCC48, symSize: 0x6C } - - { offsetInCU: 0x7874, offset: 0x5BD39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x8CC8, symBinAddr: 0xCCB4, symSize: 0x6C } - - { offsetInCU: 0x7888, offset: 0x5BD4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8D58, symBinAddr: 0xCD44, symSize: 0xC } - - { offsetInCU: 0x789C, offset: 0x5BD61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOs', symObjAddr: 0x8D64, symBinAddr: 0xCD50, symSize: 0x44 } - - { offsetInCU: 0x78B0, offset: 0x5BD75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x8DA8, symBinAddr: 0xCD94, symSize: 0x8 } - - { offsetInCU: 0x78E2, offset: 0x5BDA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x8DB0, symBinAddr: 0xCD9C, symSize: 0x350 } - - { offsetInCU: 0x7AC2, offset: 0x5BF87, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfC9CocoaMQTT5Frame_p_Tg5Tf4nnd_n', symObjAddr: 0x9184, symBinAddr: 0xD170, symSize: 0x84 } - - { offsetInCU: 0x7B5C, offset: 0x5C021, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x9208, symBinAddr: 0xD1F4, symSize: 0x5FC } - - { offsetInCU: 0x809B, offset: 0x5C560, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x9804, symBinAddr: 0xD7F0, symSize: 0x4A8 } - - { offsetInCU: 0x8462, offset: 0x5C927, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9CAC, symBinAddr: 0xDC98, symSize: 0x1C0 } - - { offsetInCU: 0x858F, offset: 0x5CA54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9E6C, symBinAddr: 0xDE58, symSize: 0x130 } - - { offsetInCU: 0x86B5, offset: 0x5CB7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9F9C, symBinAddr: 0xDF88, symSize: 0x134 } - - { offsetInCU: 0x87E0, offset: 0x5CCA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0xA0D0, symBinAddr: 0xE0BC, symSize: 0x1D8 } - - { offsetInCU: 0x89F4, offset: 0x5CEB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA2A8, symBinAddr: 0xE294, symSize: 0x678 } - - { offsetInCU: 0x906F, offset: 0x5D534, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA984, symBinAddr: 0xE970, symSize: 0x39C } - - { offsetInCU: 0x93D1, offset: 0x5D896, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAD20, symBinAddr: 0xED0C, symSize: 0x140 } - - { offsetInCU: 0x9488, offset: 0x5D94D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xAE60, symBinAddr: 0xEE4C, symSize: 0x4 } - - { offsetInCU: 0x949C, offset: 0x5D961, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xAE64, symBinAddr: 0xEE50, symSize: 0x44 } - - { offsetInCU: 0x94B0, offset: 0x5D975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xAEA8, symBinAddr: 0xEE94, symSize: 0x10 } - - { offsetInCU: 0x94C4, offset: 0x5D989, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xAFA8, symBinAddr: 0xEF94, symSize: 0x24 } - - { offsetInCU: 0x94D8, offset: 0x5D99D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xAFD0, symBinAddr: 0xEFBC, symSize: 0x44 } - - { offsetInCU: 0x94EC, offset: 0x5D9B1, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xB014, symBinAddr: 0xF000, symSize: 0x28 } - - { offsetInCU: 0x9500, offset: 0x5D9C5, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xB03C, symBinAddr: 0xF028, symSize: 0x28 } - - { offsetInCU: 0x9514, offset: 0x5D9D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xB06C, symBinAddr: 0xF058, symSize: 0x8 } - - { offsetInCU: 0x9528, offset: 0x5D9ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xB098, symBinAddr: 0xF084, symSize: 0x8 } - - { offsetInCU: 0x953C, offset: 0x5DA01, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xB0B0, symBinAddr: 0xF09C, symSize: 0x8 } - - { offsetInCU: 0x9550, offset: 0x5DA15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xB0B8, symBinAddr: 0xF0A4, symSize: 0x8 } - - { offsetInCU: 0x9564, offset: 0x5DA29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xB210, symBinAddr: 0xF1FC, symSize: 0xC0 } - - { offsetInCU: 0x9578, offset: 0x5DA3D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xB2D0, symBinAddr: 0xF2BC, symSize: 0x14 } - - { offsetInCU: 0x958C, offset: 0x5DA51, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xB2E4, symBinAddr: 0xF2D0, symSize: 0x50 } - - { offsetInCU: 0x95A0, offset: 0x5DA65, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xB334, symBinAddr: 0xF320, symSize: 0x14 } - - { offsetInCU: 0x95B4, offset: 0x5DA79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xB42C, symBinAddr: 0xF418, symSize: 0x44 } - - { offsetInCU: 0x95C8, offset: 0x5DA8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xB4A4, symBinAddr: 0xF490, symSize: 0x44 } - - { offsetInCU: 0x95DC, offset: 0x5DAA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xB514, symBinAddr: 0xF500, symSize: 0xC } - - { offsetInCU: 0x9655, offset: 0x5DB1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x140, symBinAddr: 0x4140, symSize: 0x14 } - - { offsetInCU: 0x96F2, offset: 0x5DBB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x154, symBinAddr: 0x4154, symSize: 0x44 } - - { offsetInCU: 0x9781, offset: 0x5DC46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x198, symBinAddr: 0x4198, symSize: 0x28 } - - { offsetInCU: 0x97D4, offset: 0x5DC99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C0, symBinAddr: 0x41C0, symSize: 0x40 } - - { offsetInCU: 0x9BFA, offset: 0x5E0BF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTg5Tf4gd_n', symObjAddr: 0x8608, symBinAddr: 0xC5F4, symSize: 0xEC } - - { offsetInCU: 0x9D33, offset: 0x5E1F8, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x890C, symBinAddr: 0xC8F8, symSize: 0x104 } - - { offsetInCU: 0x9E56, offset: 0x5E31B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x8B20, symBinAddr: 0xCB0C, symSize: 0xF4 } - - { offsetInCU: 0xE9, offset: 0x5EBD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0xF7E8, symSize: 0x64 } - - { offsetInCU: 0x118, offset: 0x5EC05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x1F4, symBinAddr: 0xF84C, symSize: 0x28 } - - { offsetInCU: 0x137, offset: 0x5EC24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x21C, symBinAddr: 0xF874, symSize: 0x4 } - - { offsetInCU: 0x17A, offset: 0x5EC67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2E0, symBinAddr: 0xF938, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x5EC98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x300, symBinAddr: 0xF958, symSize: 0xC } - - { offsetInCU: 0x1C7, offset: 0x5ECB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x30C, symBinAddr: 0xF964, symSize: 0x8 } - - { offsetInCU: 0x2B8, offset: 0x5EDA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x314, symBinAddr: 0xF96C, symSize: 0x148 } - - { offsetInCU: 0x40F, offset: 0x5EEFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x45C, symBinAddr: 0xFAB4, symSize: 0x48 } - - { offsetInCU: 0x42E, offset: 0x5EF1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x4A4, symBinAddr: 0xFAFC, symSize: 0x58 } - - { offsetInCU: 0x46D, offset: 0x5EF5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x4FC, symBinAddr: 0xFB54, symSize: 0x70 } - - { offsetInCU: 0x49C, offset: 0x5EF89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x56C, symBinAddr: 0xFBC4, symSize: 0x6C } - - { offsetInCU: 0x4C7, offset: 0x5EFB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x5F0, symBinAddr: 0xFC48, symSize: 0x44 } - - { offsetInCU: 0x4F6, offset: 0x5EFE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x64C, symBinAddr: 0xFCA4, symSize: 0x44 } - - { offsetInCU: 0x525, offset: 0x5F012, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x750, symBinAddr: 0xFDA8, symSize: 0x44 } - - { offsetInCU: 0x554, offset: 0x5F041, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x7AC, symBinAddr: 0xFE04, symSize: 0x44 } - - { offsetInCU: 0x583, offset: 0x5F070, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x8B0, symBinAddr: 0xFF08, symSize: 0x44 } - - { offsetInCU: 0x5B2, offset: 0x5F09F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0x90C, symBinAddr: 0xFF64, symSize: 0x44 } - - { offsetInCU: 0x5E1, offset: 0x5F0CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0x968, symBinAddr: 0xFFC0, symSize: 0x44 } - - { offsetInCU: 0x610, offset: 0x5F0FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0x9AC, symBinAddr: 0x10004, symSize: 0x4 } - - { offsetInCU: 0x65B, offset: 0x5F148, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0x9B0, symBinAddr: 0x10008, symSize: 0xC0 } - - { offsetInCU: 0x6CB, offset: 0x5F1B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xA7C, symBinAddr: 0x100D4, symSize: 0xF4 } - - { offsetInCU: 0x73E, offset: 0x5F22B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xB7C, symBinAddr: 0x101D4, symSize: 0x44 } - - { offsetInCU: 0x75D, offset: 0x5F24A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xBC0, symBinAddr: 0x10218, symSize: 0x50 } - - { offsetInCU: 0x79C, offset: 0x5F289, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC10, symBinAddr: 0x10268, symSize: 0x44 } - - { offsetInCU: 0x827, offset: 0x5F314, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xC54, symBinAddr: 0x102AC, symSize: 0x118 } - - { offsetInCU: 0x8FD, offset: 0x5F3EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0xFBC, symBinAddr: 0x10614, symSize: 0x44 } - - { offsetInCU: 0x93A, offset: 0x5F427, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1000, symBinAddr: 0x10658, symSize: 0x90 } - - { offsetInCU: 0x982, offset: 0x5F46F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1090, symBinAddr: 0x106E8, symSize: 0x48 } - - { offsetInCU: 0x9B1, offset: 0x5F49E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x10D8, symBinAddr: 0x10730, symSize: 0x80 } - - { offsetInCU: 0xA0E, offset: 0x5F4FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1158, symBinAddr: 0x107B0, symSize: 0x20 } - - { offsetInCU: 0xA2E, offset: 0x5F51B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1158, symBinAddr: 0x107B0, symSize: 0x20 } - - { offsetInCU: 0xA5E, offset: 0x5F54B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x1178, symBinAddr: 0x107D0, symSize: 0x20 } - - { offsetInCU: 0xA87, offset: 0x5F574, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x1178, symBinAddr: 0x107D0, symSize: 0x20 } - - { offsetInCU: 0xADF, offset: 0x5F5CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x1198, symBinAddr: 0x107F0, symSize: 0x34 } - - { offsetInCU: 0xB6D, offset: 0x5F65A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11CC, symBinAddr: 0x10824, symSize: 0x20 } - - { offsetInCU: 0xB9B, offset: 0x5F688, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11CC, symBinAddr: 0x10824, symSize: 0x20 } - - { offsetInCU: 0xBAF, offset: 0x5F69C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11CC, symBinAddr: 0x10824, symSize: 0x20 } - - { offsetInCU: 0xC03, offset: 0x5F6F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x11EC, symBinAddr: 0x10844, symSize: 0x20 } - - { offsetInCU: 0xC23, offset: 0x5F710, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x11EC, symBinAddr: 0x10844, symSize: 0x20 } - - { offsetInCU: 0xC71, offset: 0x5F75E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x1218, symBinAddr: 0x10870, symSize: 0x34 } - - { offsetInCU: 0xCD5, offset: 0x5F7C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x1258, symBinAddr: 0x108B0, symSize: 0x20 } - - { offsetInCU: 0xCF5, offset: 0x5F7E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x1258, symBinAddr: 0x108B0, symSize: 0x20 } - - { offsetInCU: 0xD43, offset: 0x5F830, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x129C, symBinAddr: 0x108F4, symSize: 0x34 } - - { offsetInCU: 0xDA7, offset: 0x5F894, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x130C, symBinAddr: 0x10964, symSize: 0x44 } - - { offsetInCU: 0xDD6, offset: 0x5F8C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x13EC, symBinAddr: 0x10A44, symSize: 0x44 } - - { offsetInCU: 0xE05, offset: 0x5F8F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1448, symBinAddr: 0x10AA0, symSize: 0x44 } - - { offsetInCU: 0xE34, offset: 0x5F921, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1528, symBinAddr: 0x10B80, symSize: 0x44 } - - { offsetInCU: 0xE63, offset: 0x5F950, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x1584, symBinAddr: 0x10BDC, symSize: 0x44 } - - { offsetInCU: 0xE92, offset: 0x5F97F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x1678, symBinAddr: 0x10CD0, symSize: 0x44 } - - { offsetInCU: 0xEC1, offset: 0x5F9AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x16BC, symBinAddr: 0x10D14, symSize: 0x78 } - - { offsetInCU: 0xEFE, offset: 0x5F9EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x1734, symBinAddr: 0x10D8C, symSize: 0x7C } - - { offsetInCU: 0xF6C, offset: 0x5FA59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x17B0, symBinAddr: 0x10E08, symSize: 0x90 } - - { offsetInCU: 0xFF0, offset: 0x5FADD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x1840, symBinAddr: 0x10E98, symSize: 0x24 } - - { offsetInCU: 0x1045, offset: 0x5FB32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1864, symBinAddr: 0x10EBC, symSize: 0x88 } - - { offsetInCU: 0x10A2, offset: 0x5FB8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x18EC, symBinAddr: 0x10F44, symSize: 0x7C } - - { offsetInCU: 0x1101, offset: 0x5FBEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1968, symBinAddr: 0x10FC0, symSize: 0xA8 } - - { offsetInCU: 0x1189, offset: 0x5FC76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1A10, symBinAddr: 0x11068, symSize: 0x80 } - - { offsetInCU: 0x1200, offset: 0x5FCED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1A90, symBinAddr: 0x110E8, symSize: 0xC8 } - - { offsetInCU: 0x1254, offset: 0x5FD41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1B58, symBinAddr: 0x111B0, symSize: 0xD4 } - - { offsetInCU: 0x12DD, offset: 0x5FDCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1C2C, symBinAddr: 0x11284, symSize: 0xFC } - - { offsetInCU: 0x1381, offset: 0x5FE6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1D28, symBinAddr: 0x11380, symSize: 0x130 } - - { offsetInCU: 0x140A, offset: 0x5FEF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x1E58, symBinAddr: 0x114B0, symSize: 0xC0 } - - { offsetInCU: 0x147E, offset: 0x5FF6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x1FE4, symBinAddr: 0x1163C, symSize: 0xF4 } - - { offsetInCU: 0x14F5, offset: 0x5FFE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x21BC, symBinAddr: 0x11814, symSize: 0x48 } - - { offsetInCU: 0x1514, offset: 0x60001, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2204, symBinAddr: 0x1185C, symSize: 0x50 } - - { offsetInCU: 0x1556, offset: 0x60043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2254, symBinAddr: 0x118AC, symSize: 0x44 } - - { offsetInCU: 0x1587, offset: 0x60074, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x2298, symBinAddr: 0x118F0, symSize: 0x10 } - - { offsetInCU: 0x159F, offset: 0x6008C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x22A8, symBinAddr: 0x11900, symSize: 0x4 } - - { offsetInCU: 0x15E8, offset: 0x600D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x22C4, symBinAddr: 0x1191C, symSize: 0x44 } - - { offsetInCU: 0x1619, offset: 0x60106, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x2308, symBinAddr: 0x11960, symSize: 0x10 } - - { offsetInCU: 0x1631, offset: 0x6011E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x2318, symBinAddr: 0x11970, symSize: 0x4 } - - { offsetInCU: 0x167A, offset: 0x60167, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x2334, symBinAddr: 0x1198C, symSize: 0x44 } - - { offsetInCU: 0x16AB, offset: 0x60198, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2378, symBinAddr: 0x119D0, symSize: 0x10 } - - { offsetInCU: 0x16C3, offset: 0x601B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2388, symBinAddr: 0x119E0, symSize: 0x4 } - - { offsetInCU: 0x170C, offset: 0x601F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x23A4, symBinAddr: 0x119FC, symSize: 0x44 } - - { offsetInCU: 0x173D, offset: 0x6022A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x23E8, symBinAddr: 0x11A40, symSize: 0x10 } - - { offsetInCU: 0x1755, offset: 0x60242, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2410, symBinAddr: 0x11A68, symSize: 0x44 } - - { offsetInCU: 0x1786, offset: 0x60273, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x2454, symBinAddr: 0x11AAC, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x6028B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x2464, symBinAddr: 0x11ABC, symSize: 0x4 } - - { offsetInCU: 0x17F6, offset: 0x602E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x2480, symBinAddr: 0x11AD8, symSize: 0x44 } - - { offsetInCU: 0x1827, offset: 0x60314, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x24C4, symBinAddr: 0x11B1C, symSize: 0x10 } - - { offsetInCU: 0x183F, offset: 0x6032C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x24D4, symBinAddr: 0x11B2C, symSize: 0x4 } - - { offsetInCU: 0x1897, offset: 0x60384, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x24F0, symBinAddr: 0x11B48, symSize: 0x44 } - - { offsetInCU: 0x18C8, offset: 0x603B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x2534, symBinAddr: 0x11B8C, symSize: 0x10 } - - { offsetInCU: 0x18E0, offset: 0x603CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x2544, symBinAddr: 0x11B9C, symSize: 0x4 } - - { offsetInCU: 0x1929, offset: 0x60416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x2560, symBinAddr: 0x11BB8, symSize: 0x44 } - - { offsetInCU: 0x195A, offset: 0x60447, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x25A4, symBinAddr: 0x11BFC, symSize: 0x10 } - - { offsetInCU: 0x1972, offset: 0x6045F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x25B4, symBinAddr: 0x11C0C, symSize: 0x4 } - - { offsetInCU: 0x199D, offset: 0x6048A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x25D0, symBinAddr: 0x11C28, symSize: 0x44 } - - { offsetInCU: 0x19CE, offset: 0x604BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x2614, symBinAddr: 0x11C6C, symSize: 0x10 } - - { offsetInCU: 0x19E6, offset: 0x604D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x2624, symBinAddr: 0x11C7C, symSize: 0x4 } - - { offsetInCU: 0x1A11, offset: 0x604FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2640, symBinAddr: 0x11C98, symSize: 0x44 } - - { offsetInCU: 0x1A42, offset: 0x6052F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2684, symBinAddr: 0x11CDC, symSize: 0x10 } - - { offsetInCU: 0x1A5A, offset: 0x60547, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2694, symBinAddr: 0x11CEC, symSize: 0x4 } - - { offsetInCU: 0x1A94, offset: 0x60581, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x26B0, symBinAddr: 0x11D08, symSize: 0x44 } - - { offsetInCU: 0x1AC5, offset: 0x605B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x26F4, symBinAddr: 0x11D4C, symSize: 0x10 } - - { offsetInCU: 0x1ADD, offset: 0x605CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x271C, symBinAddr: 0x11D74, symSize: 0x44 } - - { offsetInCU: 0x1B0E, offset: 0x605FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2760, symBinAddr: 0x11DB8, symSize: 0x10 } - - { offsetInCU: 0x1B26, offset: 0x60613, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2788, symBinAddr: 0x11DE0, symSize: 0x44 } - - { offsetInCU: 0x1B57, offset: 0x60644, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x27CC, symBinAddr: 0x11E24, symSize: 0x10 } - - { offsetInCU: 0x1B6F, offset: 0x6065C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x27DC, symBinAddr: 0x11E34, symSize: 0x4 } - - { offsetInCU: 0x1BBA, offset: 0x606A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x27F8, symBinAddr: 0x11E50, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x606D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x283C, symBinAddr: 0x11E94, symSize: 0x10 } - - { offsetInCU: 0x1C03, offset: 0x606F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2864, symBinAddr: 0x11EBC, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x60721, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x28A8, symBinAddr: 0x11F00, symSize: 0x10 } - - { offsetInCU: 0x1C4C, offset: 0x60739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x28B8, symBinAddr: 0x11F10, symSize: 0x4 } - - { offsetInCU: 0x1C86, offset: 0x60773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x297C, symBinAddr: 0x11FD4, symSize: 0x44 } - - { offsetInCU: 0x1CB7, offset: 0x607A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x29C0, symBinAddr: 0x12018, symSize: 0x70 } - - { offsetInCU: 0x1CD6, offset: 0x607C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2A30, symBinAddr: 0x12088, symSize: 0x92C } - - { offsetInCU: 0x1FCF, offset: 0x60ABC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x335C, symBinAddr: 0x129B4, symSize: 0x178 } - - { offsetInCU: 0x202E, offset: 0x60B1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x34D4, symBinAddr: 0x12B2C, symSize: 0x24 } - - { offsetInCU: 0x214B, offset: 0x60C38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3780, symBinAddr: 0x12DD8, symSize: 0x534 } - - { offsetInCU: 0x232A, offset: 0x60E17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3CB4, symBinAddr: 0x1330C, symSize: 0x8 } - - { offsetInCU: 0x23B0, offset: 0x60E9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3CBC, symBinAddr: 0x13314, symSize: 0x68C } - - { offsetInCU: 0x26A6, offset: 0x61193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4348, symBinAddr: 0x139A0, symSize: 0xC0 } - - { offsetInCU: 0x2759, offset: 0x61246, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x4408, symBinAddr: 0x13A60, symSize: 0x4 } - - { offsetInCU: 0x2788, offset: 0x61275, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x440C, symBinAddr: 0x13A64, symSize: 0x4 } - - { offsetInCU: 0x27FF, offset: 0x612EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19internal_disconnectyyF', symObjAddr: 0x4410, symBinAddr: 0x13A68, symSize: 0xD0 } - - { offsetInCU: 0x28BC, offset: 0x613A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x44E0, symBinAddr: 0x13B38, symSize: 0x114 } - - { offsetInCU: 0x298D, offset: 0x6147A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x45F4, symBinAddr: 0x13C4C, symSize: 0x100 } - - { offsetInCU: 0x2A09, offset: 0x614F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x46F4, symBinAddr: 0x13D4C, symSize: 0xB0 } - - { offsetInCU: 0x2AA4, offset: 0x61591, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x47A4, symBinAddr: 0x13DFC, symSize: 0xD8 } - - { offsetInCU: 0x2BB2, offset: 0x6169F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x487C, symBinAddr: 0x13ED4, symSize: 0x8 } - - { offsetInCU: 0x2BC6, offset: 0x616B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x4884, symBinAddr: 0x13EDC, symSize: 0x6C } - - { offsetInCU: 0x2C33, offset: 0x61720, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x48F0, symBinAddr: 0x13F48, symSize: 0xC4 } - - { offsetInCU: 0x2E19, offset: 0x61906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x49B4, symBinAddr: 0x1400C, symSize: 0x204 } - - { offsetInCU: 0x308C, offset: 0x61B79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4BB8, symBinAddr: 0x14210, symSize: 0xE0 } - - { offsetInCU: 0x31F3, offset: 0x61CE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4C98, symBinAddr: 0x142F0, symSize: 0xE8 } - - { offsetInCU: 0x3413, offset: 0x61F00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4D80, symBinAddr: 0x143D8, symSize: 0x1E8 } - - { offsetInCU: 0x362D, offset: 0x6211A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4F68, symBinAddr: 0x145C0, symSize: 0xD4 } - - { offsetInCU: 0x3751, offset: 0x6223E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x503C, symBinAddr: 0x14694, symSize: 0x10C } - - { offsetInCU: 0x381A, offset: 0x62307, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x5148, symBinAddr: 0x147A0, symSize: 0x20 } - - { offsetInCU: 0x3838, offset: 0x62325, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x5168, symBinAddr: 0x147C0, symSize: 0x2C } - - { offsetInCU: 0x389B, offset: 0x62388, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x5194, symBinAddr: 0x147EC, symSize: 0x2C } - - { offsetInCU: 0x3902, offset: 0x623EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x51C0, symBinAddr: 0x14818, symSize: 0x44 } - - { offsetInCU: 0x3AF1, offset: 0x625DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x6AF8, symBinAddr: 0x160A4, symSize: 0x234 } - - { offsetInCU: 0x3CC5, offset: 0x627B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubAckV_Tg5', symObjAddr: 0x6D2C, symBinAddr: 0x162D8, symSize: 0x22C } - - { offsetInCU: 0x3E99, offset: 0x62986, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRecV_Tg5', symObjAddr: 0x6F58, symBinAddr: 0x16504, symSize: 0x22C } - - { offsetInCU: 0x406D, offset: 0x62B5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PubCompV_Tg5', symObjAddr: 0x7184, symBinAddr: 0x16730, symSize: 0x22C } - - { offsetInCU: 0x4241, offset: 0x62D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x73B0, symBinAddr: 0x1695C, symSize: 0x24C } - - { offsetInCU: 0x4415, offset: 0x62F02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x75FC, symBinAddr: 0x16BA8, symSize: 0x200 } - - { offsetInCU: 0x45E9, offset: 0x630D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x77FC, symBinAddr: 0x16DA8, symSize: 0x22C } - - { offsetInCU: 0x47BD, offset: 0x632AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x7A28, symBinAddr: 0x16FD4, symSize: 0x270 } - - { offsetInCU: 0x4991, offset: 0x6347E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x7C98, symBinAddr: 0x17244, symSize: 0x25C } - - { offsetInCU: 0x4B65, offset: 0x63652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x7EF4, symBinAddr: 0x174A0, symSize: 0x234 } - - { offsetInCU: 0x4D39, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRelV_Tg5', symObjAddr: 0x8128, symBinAddr: 0x176D4, symSize: 0x22C } - - { offsetInCU: 0x505A, offset: 0x63B47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xB460, symBinAddr: 0x1A9B8, symSize: 0x770 } - - { offsetInCU: 0x553E, offset: 0x6402B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xD6C, symBinAddr: 0x103C4, symSize: 0x250 } - - { offsetInCU: 0x55C2, offset: 0x640AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x520C, symBinAddr: 0x14864, symSize: 0x5C } - - { offsetInCU: 0x56EA, offset: 0x641D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x8354, symBinAddr: 0x17900, symSize: 0x340 } - - { offsetInCU: 0x5795, offset: 0x64282, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x8694, symBinAddr: 0x17C40, symSize: 0x344 } - - { offsetInCU: 0x5840, offset: 0x6432D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x89D8, symBinAddr: 0x17F84, symSize: 0x344 } - - { offsetInCU: 0x5ABC, offset: 0x645A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6230, symBinAddr: 0x157DC, symSize: 0x1B8 } - - { offsetInCU: 0x5B22, offset: 0x6460F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x63E8, symBinAddr: 0x15994, symSize: 0xC4 } - - { offsetInCU: 0x5B91, offset: 0x6467E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x64AC, symBinAddr: 0x15A58, symSize: 0x108 } - - { offsetInCU: 0x5D56, offset: 0x64843, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x34F8, symBinAddr: 0x12B50, symSize: 0x288 } - - { offsetInCU: 0x61F2, offset: 0x64CDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x5204, symBinAddr: 0x1485C, symSize: 0x8 } - - { offsetInCU: 0x6225, offset: 0x64D12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5268, symBinAddr: 0x148C0, symSize: 0x4 } - - { offsetInCU: 0x6253, offset: 0x64D40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x526C, symBinAddr: 0x148C4, symSize: 0x1F0 } - - { offsetInCU: 0x6352, offset: 0x64E3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x545C, symBinAddr: 0x14AB4, symSize: 0x1B0 } - - { offsetInCU: 0x6438, offset: 0x64F25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x560C, symBinAddr: 0x14C64, symSize: 0xC4 } - - { offsetInCU: 0x64BE, offset: 0x64FAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x56D0, symBinAddr: 0x14D28, symSize: 0x4 } - - { offsetInCU: 0x65A5, offset: 0x65092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x56D4, symBinAddr: 0x14D2C, symSize: 0x258 } - - { offsetInCU: 0x6930, offset: 0x6541D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x592C, symBinAddr: 0x14F84, symSize: 0x390 } - - { offsetInCU: 0x6B77, offset: 0x65664, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5CBC, symBinAddr: 0x15314, symSize: 0xB0 } - - { offsetInCU: 0x6C5D, offset: 0x6574A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5D6C, symBinAddr: 0x153C4, symSize: 0x4 } - - { offsetInCU: 0x6C7D, offset: 0x6576A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5D6C, symBinAddr: 0x153C4, symSize: 0x4 } - - { offsetInCU: 0x6CA2, offset: 0x6578F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5D70, symBinAddr: 0x153C8, symSize: 0x4 } - - { offsetInCU: 0x6CBE, offset: 0x657AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5D74, symBinAddr: 0x153CC, symSize: 0x4 } - - { offsetInCU: 0x6CDA, offset: 0x657C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5D78, symBinAddr: 0x153D0, symSize: 0x4 } - - { offsetInCU: 0x6CF6, offset: 0x657E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5D7C, symBinAddr: 0x153D4, symSize: 0x4 } - - { offsetInCU: 0x6D12, offset: 0x657FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5D80, symBinAddr: 0x153D8, symSize: 0x4 } - - { offsetInCU: 0x6D2E, offset: 0x6581B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5D84, symBinAddr: 0x153DC, symSize: 0x234 } - - { offsetInCU: 0x6DB6, offset: 0x658A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5FB8, symBinAddr: 0x15610, symSize: 0x140 } - - { offsetInCU: 0x6EA4, offset: 0x65991, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x60F8, symBinAddr: 0x15750, symSize: 0x24 } - - { offsetInCU: 0x6EE6, offset: 0x659D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x611C, symBinAddr: 0x15774, symSize: 0x8 } - - { offsetInCU: 0x6F28, offset: 0x65A15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x6124, symBinAddr: 0x1577C, symSize: 0x8 } - - { offsetInCU: 0x6F6A, offset: 0x65A57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x612C, symBinAddr: 0x15784, symSize: 0x8 } - - { offsetInCU: 0x6FAC, offset: 0x65A99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6134, symBinAddr: 0x1578C, symSize: 0x8 } - - { offsetInCU: 0x6FEE, offset: 0x65ADB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x613C, symBinAddr: 0x15794, symSize: 0x8 } - - { offsetInCU: 0x7030, offset: 0x65B1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6144, symBinAddr: 0x1579C, symSize: 0x8 } - - { offsetInCU: 0x7072, offset: 0x65B5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x614C, symBinAddr: 0x157A4, symSize: 0x8 } - - { offsetInCU: 0x70B4, offset: 0x65BA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6154, symBinAddr: 0x157AC, symSize: 0x4 } - - { offsetInCU: 0x70D4, offset: 0x65BC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6154, symBinAddr: 0x157AC, symSize: 0x4 } - - { offsetInCU: 0x70E7, offset: 0x65BD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x61BC, symBinAddr: 0x157D4, symSize: 0x8 } - - { offsetInCU: 0x713D, offset: 0x65C2A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x65C8, symBinAddr: 0x15B74, symSize: 0x1DC } - - { offsetInCU: 0x71E4, offset: 0x65CD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x8D1C, symBinAddr: 0x182C8, symSize: 0xAC } - - { offsetInCU: 0x7226, offset: 0x65D13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x8DC8, symBinAddr: 0x18374, symSize: 0x94 } - - { offsetInCU: 0x7268, offset: 0x65D55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x8E5C, symBinAddr: 0x18408, symSize: 0x20 } - - { offsetInCU: 0x727C, offset: 0x65D69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8EB4, symBinAddr: 0x18460, symSize: 0x8 } - - { offsetInCU: 0x7290, offset: 0x65D7D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8EBC, symBinAddr: 0x18468, symSize: 0x10 } - - { offsetInCU: 0x72A4, offset: 0x65D91, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8ECC, symBinAddr: 0x18478, symSize: 0x8 } - - { offsetInCU: 0x72B8, offset: 0x65DA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8F68, symBinAddr: 0x184C0, symSize: 0x8 } - - { offsetInCU: 0x72ED, offset: 0x65DDA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x8F70, symBinAddr: 0x184C8, symSize: 0xC4 } - - { offsetInCU: 0x7363, offset: 0x65E50, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x9034, symBinAddr: 0x1858C, symSize: 0x78 } - - { offsetInCU: 0x7390, offset: 0x65E7D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x90AC, symBinAddr: 0x18604, symSize: 0x80 } - - { offsetInCU: 0x7406, offset: 0x65EF3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x912C, symBinAddr: 0x18684, symSize: 0x68 } - - { offsetInCU: 0x7497, offset: 0x65F84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x9194, symBinAddr: 0x186EC, symSize: 0x634 } - - { offsetInCU: 0x7A24, offset: 0x66511, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x97C8, symBinAddr: 0x18D20, symSize: 0x420 } - - { offsetInCU: 0x7DCD, offset: 0x668BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9BE8, symBinAddr: 0x19140, symSize: 0x20C } - - { offsetInCU: 0x7EFA, offset: 0x669E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9DF4, symBinAddr: 0x1934C, symSize: 0x20C } - - { offsetInCU: 0x8076, offset: 0x66B63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0xA000, symBinAddr: 0x19558, symSize: 0x130 } - - { offsetInCU: 0x81A8, offset: 0x66C95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0xA130, symBinAddr: 0x19688, symSize: 0x220 } - - { offsetInCU: 0x8401, offset: 0x66EEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA350, symBinAddr: 0x198A8, symSize: 0x8B4 } - - { offsetInCU: 0x8A44, offset: 0x67531, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xAC04, symBinAddr: 0x1A15C, symSize: 0x71C } - - { offsetInCU: 0x8E32, offset: 0x6791F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xB320, symBinAddr: 0x1A878, symSize: 0x140 } - - { offsetInCU: 0x8F71, offset: 0x67A5E, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tg5Tf4d_n', symObjAddr: 0xBBD0, symBinAddr: 0x1B128, symSize: 0x54 } - - { offsetInCU: 0x8F9E, offset: 0x67A8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xBC68, symBinAddr: 0x1B17C, symSize: 0x8 } - - { offsetInCU: 0x8FB2, offset: 0x67A9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xBC70, symBinAddr: 0x1B184, symSize: 0x4 } - - { offsetInCU: 0x8FC6, offset: 0x67AB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xBC74, symBinAddr: 0x1B188, symSize: 0x44 } - - { offsetInCU: 0x8FDA, offset: 0x67AC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xBCB8, symBinAddr: 0x1B1CC, symSize: 0x10 } - - { offsetInCU: 0x8FEE, offset: 0x67ADB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xBCC8, symBinAddr: 0x1B1DC, symSize: 0x24 } - - { offsetInCU: 0x9002, offset: 0x67AEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xBDB4, symBinAddr: 0x1B2C8, symSize: 0x10 } - - { offsetInCU: 0x9016, offset: 0x67B03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0xBE34, symBinAddr: 0x1B348, symSize: 0x18 } - - { offsetInCU: 0x902A, offset: 0x67B17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xBE4C, symBinAddr: 0x1B360, symSize: 0x10 } - - { offsetInCU: 0x903E, offset: 0x67B2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xBEDC, symBinAddr: 0x1B3AC, symSize: 0x8 } - - { offsetInCU: 0x9052, offset: 0x67B3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xBEE4, symBinAddr: 0x1B3B4, symSize: 0x8 } - - { offsetInCU: 0x9066, offset: 0x67B53, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xBEFC, symBinAddr: 0x1B3CC, symSize: 0x8 } - - { offsetInCU: 0x907A, offset: 0x67B67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xBF04, symBinAddr: 0x1B3D4, symSize: 0x8 } - - { offsetInCU: 0x90AC, offset: 0x67B99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xBF0C, symBinAddr: 0x1B3DC, symSize: 0x288 } - - { offsetInCU: 0x9249, offset: 0x67D36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xC5F4, symBinAddr: 0x1B8B4, symSize: 0x10 } - - { offsetInCU: 0x925D, offset: 0x67D4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xC6A8, symBinAddr: 0x1B924, symSize: 0x10 } - - { offsetInCU: 0x9271, offset: 0x67D5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xC6DC, symBinAddr: 0x1B958, symSize: 0xC } - - { offsetInCU: 0x9285, offset: 0x67D72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xC7B4, symBinAddr: 0x1B9EC, symSize: 0xC } - - { offsetInCU: 0x9328, offset: 0x67E15, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xF658, symSize: 0xE4 } - - { offsetInCU: 0x93E9, offset: 0x67ED6, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE4, symBinAddr: 0xF73C, symSize: 0xAC } - - { offsetInCU: 0x9498, offset: 0x67F85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x220, symBinAddr: 0xF878, symSize: 0x14 } - - { offsetInCU: 0x9529, offset: 0x68016, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x234, symBinAddr: 0xF88C, symSize: 0x44 } - - { offsetInCU: 0x95B8, offset: 0x680A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x278, symBinAddr: 0xF8D0, symSize: 0x28 } - - { offsetInCU: 0x960B, offset: 0x680F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2A0, symBinAddr: 0xF8F8, symSize: 0x40 } - - { offsetInCU: 0x5A, offset: 0x68B97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x1BB24, symSize: 0x88 } - - { offsetInCU: 0x8E, offset: 0x68BCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x88, symBinAddr: 0x1BBAC, symSize: 0x60 } - - { offsetInCU: 0xAC, offset: 0x68BE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0xE8, symBinAddr: 0x1BC0C, symSize: 0x44 } - - { offsetInCU: 0xCB, offset: 0x68C08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x12C, symBinAddr: 0x1BC50, symSize: 0x48 } - - { offsetInCU: 0x10A, offset: 0x68C47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x174, symBinAddr: 0x1BC98, symSize: 0x44 } - - { offsetInCU: 0x139, offset: 0x68C76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x1B8, symBinAddr: 0x1BCDC, symSize: 0x54 } - - { offsetInCU: 0x158, offset: 0x68C95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x20C, symBinAddr: 0x1BD30, symSize: 0x5C } - - { offsetInCU: 0x197, offset: 0x68CD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x268, symBinAddr: 0x1BD8C, symSize: 0x44 } - - { offsetInCU: 0x1C6, offset: 0x68D03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x1BDD0, symSize: 0x48 } - - { offsetInCU: 0x1E5, offset: 0x68D22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x2F4, symBinAddr: 0x1BE18, symSize: 0x50 } - - { offsetInCU: 0x224, offset: 0x68D61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x344, symBinAddr: 0x1BE68, symSize: 0x44 } - - { offsetInCU: 0x253, offset: 0x68D90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x3A0, symBinAddr: 0x1BEC4, symSize: 0x44 } - - { offsetInCU: 0x282, offset: 0x68DBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x3FC, symBinAddr: 0x1BF20, symSize: 0x44 } - - { offsetInCU: 0x2B1, offset: 0x68DEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x440, symBinAddr: 0x1BF64, symSize: 0x4 } - - { offsetInCU: 0x2DC, offset: 0x68E19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x4E0, symBinAddr: 0x1C004, symSize: 0x44 } - - { offsetInCU: 0x30B, offset: 0x68E48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x53C, symBinAddr: 0x1C060, symSize: 0x44 } - - { offsetInCU: 0x33A, offset: 0x68E77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x634, symBinAddr: 0x1C158, symSize: 0x44 } - - { offsetInCU: 0x369, offset: 0x68EA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x690, symBinAddr: 0x1C1B4, symSize: 0x44 } - - { offsetInCU: 0x398, offset: 0x68ED5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x794, symBinAddr: 0x1C2B8, symSize: 0x44 } - - { offsetInCU: 0x3C7, offset: 0x68F04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x7F0, symBinAddr: 0x1C314, symSize: 0x44 } - - { offsetInCU: 0x3F6, offset: 0x68F33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0x8DC, symBinAddr: 0x1C400, symSize: 0x44 } - - { offsetInCU: 0x443, offset: 0x68F80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0x920, symBinAddr: 0x1C444, symSize: 0x110 } - - { offsetInCU: 0x621, offset: 0x6915E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xA30, symBinAddr: 0x1C554, symSize: 0x74C } - - { offsetInCU: 0x1187, offset: 0x69CC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x117C, symBinAddr: 0x1CCA0, symSize: 0x44 } - - { offsetInCU: 0x119B, offset: 0x69CD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x11C0, symBinAddr: 0x1CCE4, symSize: 0x184 } - - { offsetInCU: 0x1206, offset: 0x69D43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x1344, symBinAddr: 0x1CE68, symSize: 0x70 } - - { offsetInCU: 0x122B, offset: 0x69D68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x13B4, symBinAddr: 0x1CED8, symSize: 0x434 } - - { offsetInCU: 0x12CC, offset: 0x69E09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x17E8, symBinAddr: 0x1D30C, symSize: 0x20 } - - { offsetInCU: 0x12EA, offset: 0x69E27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x1808, symBinAddr: 0x1D32C, symSize: 0x2C } - - { offsetInCU: 0x134D, offset: 0x69E8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x1834, symBinAddr: 0x1D358, symSize: 0x2C } - - { offsetInCU: 0x13B4, offset: 0x69EF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x1860, symBinAddr: 0x1D384, symSize: 0x30 } - - { offsetInCU: 0x141D, offset: 0x69F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfcTf4ggnnn_n', symObjAddr: 0x2414, symBinAddr: 0x1DF38, symSize: 0x1A4 } - - { offsetInCU: 0x168C, offset: 0x6A1C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1890, symBinAddr: 0x1D3B4, symSize: 0x84 } - - { offsetInCU: 0x16BB, offset: 0x6A1F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x1914, symBinAddr: 0x1D438, symSize: 0x5C } - - { offsetInCU: 0x1753, offset: 0x6A290, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1970, symBinAddr: 0x1D494, symSize: 0x218 } - - { offsetInCU: 0x1998, offset: 0x6A4D5, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1B88, symBinAddr: 0x1D6AC, symSize: 0xD4 } - - { offsetInCU: 0x1BD6, offset: 0x6A713, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1C5C, symBinAddr: 0x1D780, symSize: 0x12C } - - { offsetInCU: 0x1DE3, offset: 0x6A920, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x1D88, symBinAddr: 0x1D8AC, symSize: 0xC4 } - - { offsetInCU: 0x1FED, offset: 0x6AB2A, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x21B0, symBinAddr: 0x1DCD4, symSize: 0x68 } - - { offsetInCU: 0x2091, offset: 0x6ABCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x25F8, symBinAddr: 0x1E0DC, symSize: 0x20 } - - { offsetInCU: 0x20A5, offset: 0x6ABE2, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x265C, symBinAddr: 0x1E0FC, symSize: 0x10 } - - { offsetInCU: 0x2228, offset: 0x6AD65, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x1E4C, symBinAddr: 0x1D970, symSize: 0x2AC } - - { offsetInCU: 0x249A, offset: 0x6AFD7, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS_SD6ValuesVyS2S_GTg5Tf4gd_n', symObjAddr: 0x20F8, symBinAddr: 0x1DC1C, symSize: 0xB8 } - - { offsetInCU: 0x2586, offset: 0x6B0C3, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTg5Tf4nd_n', symObjAddr: 0x2218, symBinAddr: 0x1DD3C, symSize: 0xDC } - - { offsetInCU: 0x261F, offset: 0x6B15C, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTg5Tf4gd_n', symObjAddr: 0x22F4, symBinAddr: 0x1DE18, symSize: 0x110 } - - { offsetInCU: 0x134, offset: 0x6B510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1E138, symSize: 0x34C } - - { offsetInCU: 0x21A, offset: 0x6B5F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x34C, symBinAddr: 0x1E484, symSize: 0x334 } - - { offsetInCU: 0x64C, offset: 0x6BA28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x764, symBinAddr: 0x1E89C, symSize: 0x48C } - - { offsetInCU: 0x860, offset: 0x6BC3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xBF0, symBinAddr: 0x1ED28, symSize: 0x138 } - - { offsetInCU: 0xA21, offset: 0x6BDFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xD7C, symBinAddr: 0x1EEB4, symSize: 0x6AC } - - { offsetInCU: 0xDFC, offset: 0x6C1D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x1428, symBinAddr: 0x1F560, symSize: 0xB8 } - - { offsetInCU: 0xEA4, offset: 0x6C280, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x14E0, symBinAddr: 0x1F618, symSize: 0x264 } - - { offsetInCU: 0xEF5, offset: 0x6C2D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x1744, symBinAddr: 0x1F87C, symSize: 0x20 } - - { offsetInCU: 0xF11, offset: 0x6C2ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1764, symBinAddr: 0x1F89C, symSize: 0x30 } - - { offsetInCU: 0x1172, offset: 0x6C54E, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x680, symBinAddr: 0x1E7B8, symSize: 0x20 } - - { offsetInCU: 0x1186, offset: 0x6C562, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x6A0, symBinAddr: 0x1E7D8, symSize: 0x20 } - - { offsetInCU: 0x11B4, offset: 0x6C590, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x6C0, symBinAddr: 0x1E7F8, symSize: 0xA4 } - - { offsetInCU: 0x14D6, offset: 0x6C8B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x1794, symBinAddr: 0x1F8CC, symSize: 0x78 } - - { offsetInCU: 0x1505, offset: 0x6C8E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x180C, symBinAddr: 0x1F944, symSize: 0x20 } - - { offsetInCU: 0x1519, offset: 0x6C8F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x182C, symBinAddr: 0x1F964, symSize: 0x30 } - - { offsetInCU: 0x152D, offset: 0x6C909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x185C, symBinAddr: 0x1F994, symSize: 0x4 } - - { offsetInCU: 0x1541, offset: 0x6C91D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1880, symBinAddr: 0x1F998, symSize: 0x40 } - - { offsetInCU: 0x1555, offset: 0x6C931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x18C0, symBinAddr: 0x1F9D8, symSize: 0x30 } - - { offsetInCU: 0x1569, offset: 0x6C945, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x18F0, symBinAddr: 0x1FA08, symSize: 0x168 } - - { offsetInCU: 0x157D, offset: 0x6C959, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1A58, symBinAddr: 0x1FB70, symSize: 0x14 } - - { offsetInCU: 0x1591, offset: 0x6C96D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1A6C, symBinAddr: 0x1FB84, symSize: 0x40 } - - { offsetInCU: 0x15A5, offset: 0x6C981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1AAC, symBinAddr: 0x1FBC4, symSize: 0x48 } - - { offsetInCU: 0x15B9, offset: 0x6C995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1AF4, symBinAddr: 0x1FC0C, symSize: 0x4C } - - { offsetInCU: 0x15CD, offset: 0x6C9A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1B40, symBinAddr: 0x1FC58, symSize: 0x10 } - - { offsetInCU: 0x1669, offset: 0x6CA45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1BF0, symBinAddr: 0x1FD08, symSize: 0x2A0 } - - { offsetInCU: 0x189D, offset: 0x6CC79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x1E90, symBinAddr: 0x1FFA8, symSize: 0x224 } - - { offsetInCU: 0x19BE, offset: 0x6CD9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x20B4, symBinAddr: 0x201CC, symSize: 0x478 } - - { offsetInCU: 0x1DA9, offset: 0x6D185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x252C, symBinAddr: 0x20644, symSize: 0x85C } - - { offsetInCU: 0x22B1, offset: 0x6D68D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2DBC, symBinAddr: 0x20ED4, symSize: 0xC } - - { offsetInCU: 0x22D0, offset: 0x6D6AC, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x2DD8, symBinAddr: 0x20EF0, symSize: 0x20 } - - { offsetInCU: 0x22F9, offset: 0x6D6D5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2DF8, symBinAddr: 0x20F10, symSize: 0x10 } - - { offsetInCU: 0x230D, offset: 0x6D6E9, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2E08, symBinAddr: 0x20F20, symSize: 0x8 } - - { offsetInCU: 0x2321, offset: 0x6D6FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x2E34, symBinAddr: 0x20F4C, symSize: 0x18 } - - { offsetInCU: 0x2340, offset: 0x6D71C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x2EF0, symBinAddr: 0x20FA4, symSize: 0x14 } - - { offsetInCU: 0x2378, offset: 0x6D754, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x2F04, symBinAddr: 0x20FB8, symSize: 0x14 } - - { offsetInCU: 0x23A5, offset: 0x6D781, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x2F18, symBinAddr: 0x20FCC, symSize: 0x78 } - - { offsetInCU: 0x241A, offset: 0x6D7F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x2F90, symBinAddr: 0x21044, symSize: 0x5A4 } - - { offsetInCU: 0x25FC, offset: 0x6D9D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x3534, symBinAddr: 0x215E8, symSize: 0x56C } - - { offsetInCU: 0x27D3, offset: 0x6DBAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3AA0, symBinAddr: 0x21B54, symSize: 0x44 } - - { offsetInCU: 0x27E7, offset: 0x6DBC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3AFC, symBinAddr: 0x21B98, symSize: 0x8 } - - { offsetInCU: 0x27FB, offset: 0x6DBD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3B28, symBinAddr: 0x21BC4, symSize: 0x20 } - - { offsetInCU: 0x2834, offset: 0x6DC10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3B48, symBinAddr: 0x21BE4, symSize: 0x48 } - - { offsetInCU: 0x285D, offset: 0x6DC39, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3B90, symBinAddr: 0x21C2C, symSize: 0x48 } - - { offsetInCU: 0x2878, offset: 0x6DC54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3BD8, symBinAddr: 0x21C74, symSize: 0x24 } - - { offsetInCU: 0x28A8, offset: 0x6DC84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3C24, symBinAddr: 0x21C98, symSize: 0x38 } - - { offsetInCU: 0x28D1, offset: 0x6DCAD, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3C5C, symBinAddr: 0x21CD0, symSize: 0x3C } - - { offsetInCU: 0x28E5, offset: 0x6DCC1, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3CA0, symBinAddr: 0x21D14, symSize: 0x3C } - - { offsetInCU: 0x28F9, offset: 0x6DCD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3D68, symBinAddr: 0x21DDC, symSize: 0x24 } - - { offsetInCU: 0x290D, offset: 0x6DCE9, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3D8C, symBinAddr: 0x21E00, symSize: 0x190 } - - { offsetInCU: 0x2AC2, offset: 0x6DE9E, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x3F1C, symBinAddr: 0x21F90, symSize: 0x40 } - - { offsetInCU: 0x2AD6, offset: 0x6DEB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x3FDC, symBinAddr: 0x22050, symSize: 0x44 } - - { offsetInCU: 0x2AEA, offset: 0x6DEC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOs', symObjAddr: 0x4020, symBinAddr: 0x22094, symSize: 0x44 } - - { offsetInCU: 0x2AFE, offset: 0x6DEDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x4144, symBinAddr: 0x221B8, symSize: 0xC } - - { offsetInCU: 0x2B12, offset: 0x6DEEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x41CC, symBinAddr: 0x221D4, symSize: 0x18 } - - { offsetInCU: 0x2C7D, offset: 0x6E059, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1B50, symBinAddr: 0x1FC68, symSize: 0xA0 } - - { offsetInCU: 0x27, offset: 0x6E399, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x22220, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x6E3BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x46B0, symBinAddr: 0x69F08, symSize: 0x0 } - - { offsetInCU: 0x76, offset: 0x6E3E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x168, symBinAddr: 0x22388, symSize: 0x20 } - - { offsetInCU: 0x8A, offset: 0x6E3FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x188, symBinAddr: 0x223A8, symSize: 0x68 } - - { offsetInCU: 0xC1, offset: 0x6E433, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1F0, symBinAddr: 0x22410, symSize: 0x74 } - - { offsetInCU: 0x108, offset: 0x6E47A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x264, symBinAddr: 0x22484, symSize: 0x6C } - - { offsetInCU: 0x13F, offset: 0x6E4B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2D0, symBinAddr: 0x224F0, symSize: 0x4 } - - { offsetInCU: 0x16A, offset: 0x6E4DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2D4, symBinAddr: 0x224F4, symSize: 0x40 } - - { offsetInCU: 0x1A7, offset: 0x6E519, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x334, symBinAddr: 0x22554, symSize: 0x4C } - - { offsetInCU: 0x202, offset: 0x6E574, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x380, symBinAddr: 0x225A0, symSize: 0x148 } - - { offsetInCU: 0x3AA, offset: 0x6E71C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x508, symBinAddr: 0x226E8, symSize: 0x30 } - - { offsetInCU: 0x3D8, offset: 0x6E74A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x22220, symSize: 0x40 } - - { offsetInCU: 0x3F8, offset: 0x6E76A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x40, symBinAddr: 0x22260, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x6E789, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x50, symBinAddr: 0x22270, symSize: 0x8 } - - { offsetInCU: 0x45C, offset: 0x6E7CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x118, symBinAddr: 0x22338, symSize: 0x18 } - - { offsetInCU: 0x48D, offset: 0x6E7FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x130, symBinAddr: 0x22350, symSize: 0xC } - - { offsetInCU: 0x4CB, offset: 0x6E83D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x13C, symBinAddr: 0x2235C, symSize: 0x2C } - - { offsetInCU: 0x50C, offset: 0x6E87E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x314, symBinAddr: 0x22534, symSize: 0x20 } - - { offsetInCU: 0x583, offset: 0x6E8F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x538, symBinAddr: 0x22718, symSize: 0x4 } - - { offsetInCU: 0x597, offset: 0x6E909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x53C, symBinAddr: 0x2271C, symSize: 0x44 } - - { offsetInCU: 0x5AB, offset: 0x6E91D, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x580, symBinAddr: 0x22760, symSize: 0xC } - - { offsetInCU: 0x5BF, offset: 0x6E931, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x58C, symBinAddr: 0x2276C, symSize: 0x4 } - - { offsetInCU: 0x5D3, offset: 0x6E945, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x590, symBinAddr: 0x22770, symSize: 0x90 } - - { offsetInCU: 0x5E7, offset: 0x6E959, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x620, symBinAddr: 0x22800, symSize: 0xBC } - - { offsetInCU: 0x5FB, offset: 0x6E96D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6DC, symBinAddr: 0x228BC, symSize: 0x8 } - - { offsetInCU: 0x60F, offset: 0x6E981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6E4, symBinAddr: 0x228C4, symSize: 0x4 } - - { offsetInCU: 0x623, offset: 0x6E995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x6E8, symBinAddr: 0x228C8, symSize: 0x8 } - - { offsetInCU: 0x637, offset: 0x6E9A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x6F0, symBinAddr: 0x228D0, symSize: 0x10 } - - { offsetInCU: 0x64B, offset: 0x6E9BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x700, symBinAddr: 0x228E0, symSize: 0x4 } - - { offsetInCU: 0x699, offset: 0x6EA0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x58, symBinAddr: 0x22278, symSize: 0x14 } - - { offsetInCU: 0x72A, offset: 0x6EA9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x6C, symBinAddr: 0x2228C, symSize: 0x44 } - - { offsetInCU: 0x7D9, offset: 0x6EB4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB0, symBinAddr: 0x222D0, symSize: 0x28 } - - { offsetInCU: 0x82C, offset: 0x6EB9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xD8, symBinAddr: 0x222F8, symSize: 0x40 } - - { offsetInCU: 0x99, offset: 0x6EDD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x228E4, symSize: 0x15C } - - { offsetInCU: 0x16F, offset: 0x6EEAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x15C, symBinAddr: 0x22A40, symSize: 0x11C } - - { offsetInCU: 0x1BE, offset: 0x6EEFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x278, symBinAddr: 0x22B5C, symSize: 0x44 } - - { offsetInCU: 0x1DD, offset: 0x6EF19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2BC, symBinAddr: 0x22BA0, symSize: 0x48 } - - { offsetInCU: 0x21C, offset: 0x6EF58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x304, symBinAddr: 0x22BE8, symSize: 0x44 } - - { offsetInCU: 0x24B, offset: 0x6EF87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x348, symBinAddr: 0x22C2C, symSize: 0x54 } - - { offsetInCU: 0x26A, offset: 0x6EFA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x39C, symBinAddr: 0x22C80, symSize: 0x5C } - - { offsetInCU: 0x2A9, offset: 0x6EFE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x3F8, symBinAddr: 0x22CDC, symSize: 0x44 } - - { offsetInCU: 0x2D8, offset: 0x6F014, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x43C, symBinAddr: 0x22D20, symSize: 0x48 } - - { offsetInCU: 0x2F7, offset: 0x6F033, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x484, symBinAddr: 0x22D68, symSize: 0x50 } - - { offsetInCU: 0x336, offset: 0x6F072, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x4D4, symBinAddr: 0x22DB8, symSize: 0x44 } - - { offsetInCU: 0x365, offset: 0x6F0A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x530, symBinAddr: 0x22E14, symSize: 0x44 } - - { offsetInCU: 0x394, offset: 0x6F0D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x610, symBinAddr: 0x22EF4, symSize: 0x44 } - - { offsetInCU: 0x3C3, offset: 0x6F0FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x654, symBinAddr: 0x22F38, symSize: 0x4 } - - { offsetInCU: 0x40C, offset: 0x6F148, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x658, symBinAddr: 0x22F3C, symSize: 0x110 } - - { offsetInCU: 0x518, offset: 0x6F254, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x768, symBinAddr: 0x2304C, symSize: 0x14C } - - { offsetInCU: 0x59A, offset: 0x6F2D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x8B4, symBinAddr: 0x23198, symSize: 0x114 } - - { offsetInCU: 0x5DD, offset: 0x6F319, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x9C8, symBinAddr: 0x232AC, symSize: 0x20 } - - { offsetInCU: 0x5FB, offset: 0x6F337, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x9E8, symBinAddr: 0x232CC, symSize: 0x2C } - - { offsetInCU: 0x65E, offset: 0x6F39A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0xA14, symBinAddr: 0x232F8, symSize: 0x2C } - - { offsetInCU: 0x6C5, offset: 0x6F401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0xA40, symBinAddr: 0x23324, symSize: 0x30 } - - { offsetInCU: 0x79D, offset: 0x6F4D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0xA70, symBinAddr: 0x23354, symSize: 0x3C } - - { offsetInCU: 0x7CC, offset: 0x6F508, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xAAC, symBinAddr: 0x23390, symSize: 0x5C } - - { offsetInCU: 0x82A, offset: 0x6F566, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xB08, symBinAddr: 0x233EC, symSize: 0x218 } - - { offsetInCU: 0xA2D, offset: 0x6F769, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xD20, symBinAddr: 0x23604, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x6F8E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x23634, symSize: 0x14 } - - { offsetInCU: 0x4B, offset: 0x6F90A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x23634, symSize: 0x14 } - - { offsetInCU: 0x6A, offset: 0x6F929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x14, symBinAddr: 0x23648, symSize: 0x4 } - - { offsetInCU: 0xB6, offset: 0x6F975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x104, symBinAddr: 0x23738, symSize: 0x28 } - - { offsetInCU: 0xE7, offset: 0x6F9A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x12C, symBinAddr: 0x23760, symSize: 0x18 } - - { offsetInCU: 0x110, offset: 0x6F9CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x23E34, symSize: 0x2C } - - { offsetInCU: 0x169, offset: 0x6FA28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x144, symBinAddr: 0x23778, symSize: 0x58 } - - { offsetInCU: 0x188, offset: 0x6FA47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x19C, symBinAddr: 0x237D0, symSize: 0x14 } - - { offsetInCU: 0x1EA, offset: 0x6FAA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x29C, symBinAddr: 0x238D0, symSize: 0x70 } - - { offsetInCU: 0x21B, offset: 0x6FADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x30C, symBinAddr: 0x23940, symSize: 0x18 } - - { offsetInCU: 0x2F9, offset: 0x6FBB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x324, symBinAddr: 0x23958, symSize: 0x220 } - - { offsetInCU: 0x590, offset: 0x6FE4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x554, symBinAddr: 0x23B88, symSize: 0x120 } - - { offsetInCU: 0x818, offset: 0x700D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x674, symBinAddr: 0x23CA8, symSize: 0xC0 } - - { offsetInCU: 0x960, offset: 0x7021F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x734, symBinAddr: 0x23D68, symSize: 0xCC } - - { offsetInCU: 0xA8D, offset: 0x7034C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x82C, symBinAddr: 0x23E60, symSize: 0x4 } - - { offsetInCU: 0xAA1, offset: 0x70360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x830, symBinAddr: 0x23E64, symSize: 0x44 } - - { offsetInCU: 0xAB5, offset: 0x70374, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x874, symBinAddr: 0x23EA8, symSize: 0x4 } - - { offsetInCU: 0xAC9, offset: 0x70388, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x878, symBinAddr: 0x23EAC, symSize: 0x44 } - - { offsetInCU: 0xADD, offset: 0x7039C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x8CC, symBinAddr: 0x23EF0, symSize: 0x90 } - - { offsetInCU: 0xAF1, offset: 0x703B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x95C, symBinAddr: 0x23F80, symSize: 0xBC } - - { offsetInCU: 0xB05, offset: 0x703C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0xA18, symBinAddr: 0x2403C, symSize: 0x8 } - - { offsetInCU: 0xB19, offset: 0x703D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0xA20, symBinAddr: 0x24044, symSize: 0x4 } - - { offsetInCU: 0xB2D, offset: 0x703EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0xA24, symBinAddr: 0x24048, symSize: 0x8 } - - { offsetInCU: 0xB41, offset: 0x70400, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0xA2C, symBinAddr: 0x24050, symSize: 0x10 } - - { offsetInCU: 0xB55, offset: 0x70414, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0xA3C, symBinAddr: 0x24060, symSize: 0x90 } - - { offsetInCU: 0xB69, offset: 0x70428, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xACC, symBinAddr: 0x240F0, symSize: 0xBC } - - { offsetInCU: 0xB7D, offset: 0x7043C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xB88, symBinAddr: 0x241AC, symSize: 0x4 } - - { offsetInCU: 0xB91, offset: 0x70450, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xB8C, symBinAddr: 0x241B0, symSize: 0x10 } - - { offsetInCU: 0xBA5, offset: 0x70464, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xBDC, symBinAddr: 0x241C0, symSize: 0x48 } - - { offsetInCU: 0xBB9, offset: 0x70478, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGMa', symObjAddr: 0xC24, symBinAddr: 0x24208, symSize: 0x54 } - - { offsetInCU: 0xBF0, offset: 0x704AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x18, symBinAddr: 0x2364C, symSize: 0x24 } - - { offsetInCU: 0xC92, offset: 0x70551, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x3C, symBinAddr: 0x23670, symSize: 0x4C } - - { offsetInCU: 0xD6A, offset: 0x70629, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x236BC, symSize: 0x34 } - - { offsetInCU: 0xDE6, offset: 0x706A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBC, symBinAddr: 0x236F0, symSize: 0x48 } - - { offsetInCU: 0xEA1, offset: 0x70760, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B0, symBinAddr: 0x237E4, symSize: 0x24 } - - { offsetInCU: 0xF43, offset: 0x70802, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x1D4, symBinAddr: 0x23808, symSize: 0x4C } - - { offsetInCU: 0x101B, offset: 0x708DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x220, symBinAddr: 0x23854, symSize: 0x34 } - - { offsetInCU: 0x1097, offset: 0x70956, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x254, symBinAddr: 0x23888, symSize: 0x48 } - - { offsetInCU: 0xBF, offset: 0x70C3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x24264, symSize: 0x16C } - - { offsetInCU: 0x1E7, offset: 0x70D66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x16C, symBinAddr: 0x243D0, symSize: 0x180 } - - { offsetInCU: 0x347, offset: 0x70EC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x37C, symBinAddr: 0x245E0, symSize: 0xCAC } - - { offsetInCU: 0x9FE, offset: 0x7157D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0x1028, symBinAddr: 0x2528C, symSize: 0x34 } - - { offsetInCU: 0xC1B, offset: 0x7179A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x105C, symBinAddr: 0x252C0, symSize: 0x20 } - - { offsetInCU: 0xC2F, offset: 0x717AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x107C, symBinAddr: 0x252E0, symSize: 0x44 } - - { offsetInCU: 0xC43, offset: 0x717C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x1144, symBinAddr: 0x25324, symSize: 0x34 } - - { offsetInCU: 0xC57, offset: 0x717D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x1178, symBinAddr: 0x25358, symSize: 0x50 } - - { offsetInCU: 0xC6B, offset: 0x717EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x11C8, symBinAddr: 0x253A8, symSize: 0x34 } - - { offsetInCU: 0xC7F, offset: 0x717FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x11FC, symBinAddr: 0x253DC, symSize: 0x5C } - - { offsetInCU: 0xC93, offset: 0x71812, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x130C, symBinAddr: 0x254EC, symSize: 0x50 } - - { offsetInCU: 0xCA7, offset: 0x71826, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x135C, symBinAddr: 0x2553C, symSize: 0x80 } - - { offsetInCU: 0xCBB, offset: 0x7183A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x13DC, symBinAddr: 0x255BC, symSize: 0x24 } - - { offsetInCU: 0xD2B, offset: 0x718AA, size: 0x8, addend: 0x0, symName: '_$sSa9repeating5countSayxGx_SitcfCs5UInt8V_Tg5', symObjAddr: 0x30C, symBinAddr: 0x24570, symSize: 0x70 } - - { offsetInCU: 0x4B, offset: 0x71AFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x255E0, symSize: 0x3C } - - { offsetInCU: 0x6A, offset: 0x71B1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3C, symBinAddr: 0x2561C, symSize: 0x4 } - - { offsetInCU: 0xAD, offset: 0x71B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x84, symBinAddr: 0x25664, symSize: 0x34 } - - { offsetInCU: 0xDE, offset: 0x71B8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xB8, symBinAddr: 0x25698, symSize: 0xC } - - { offsetInCU: 0x128, offset: 0x71BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0xD0, symBinAddr: 0x256B0, symSize: 0x4 } - - { offsetInCU: 0x151, offset: 0x71C02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x25A30, symSize: 0x4C } - - { offsetInCU: 0x189, offset: 0x71C3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x114, symBinAddr: 0x256F4, symSize: 0x4 } - - { offsetInCU: 0x1B2, offset: 0x71C63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x49C, symBinAddr: 0x25A7C, symSize: 0x4C } - - { offsetInCU: 0x1EA, offset: 0x71C9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x190, symBinAddr: 0x25770, symSize: 0x4 } - - { offsetInCU: 0x220, offset: 0x71CD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1E4, symBinAddr: 0x257C4, symSize: 0x4 } - - { offsetInCU: 0x256, offset: 0x71D07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1EC, symBinAddr: 0x257CC, symSize: 0x4 } - - { offsetInCU: 0x28C, offset: 0x71D3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x22C, symBinAddr: 0x2580C, symSize: 0x4 } - - { offsetInCU: 0x2CF, offset: 0x71D80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x230, symBinAddr: 0x25810, symSize: 0x2C } - - { offsetInCU: 0x30D, offset: 0x71DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x268, symBinAddr: 0x25848, symSize: 0x4 } - - { offsetInCU: 0x336, offset: 0x71DE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x534, symBinAddr: 0x25B14, symSize: 0x58 } - - { offsetInCU: 0x36E, offset: 0x71E1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x288, symBinAddr: 0x25868, symSize: 0x4C } - - { offsetInCU: 0x38D, offset: 0x71E3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2D4, symBinAddr: 0x258B4, symSize: 0x4 } - - { offsetInCU: 0x3D0, offset: 0x71E81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2D8, symBinAddr: 0x258B8, symSize: 0x44 } - - { offsetInCU: 0x40E, offset: 0x71EBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x31C, symBinAddr: 0x258FC, symSize: 0x28 } - - { offsetInCU: 0x42D, offset: 0x71EDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x344, symBinAddr: 0x25924, symSize: 0x4 } - - { offsetInCU: 0x470, offset: 0x71F21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x348, symBinAddr: 0x25928, symSize: 0x20 } - - { offsetInCU: 0x4AE, offset: 0x71F5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x368, symBinAddr: 0x25948, symSize: 0x34 } - - { offsetInCU: 0x4CD, offset: 0x71F7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x39C, symBinAddr: 0x2597C, symSize: 0x4 } - - { offsetInCU: 0x510, offset: 0x71FC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x424, symBinAddr: 0x25A04, symSize: 0x2C } - - { offsetInCU: 0x542, offset: 0x71FF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0x58C, symBinAddr: 0x25B6C, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x72007, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0x590, symBinAddr: 0x25B70, symSize: 0x44 } - - { offsetInCU: 0x56A, offset: 0x7201B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x5D4, symBinAddr: 0x25BB4, symSize: 0x4 } - - { offsetInCU: 0x57E, offset: 0x7202F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x5D8, symBinAddr: 0x25BB8, symSize: 0x44 } - - { offsetInCU: 0x592, offset: 0x72043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x61C, symBinAddr: 0x25BFC, symSize: 0x4 } - - { offsetInCU: 0x5A6, offset: 0x72057, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x620, symBinAddr: 0x25C00, symSize: 0x44 } - - { offsetInCU: 0x5BA, offset: 0x7206B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x664, symBinAddr: 0x25C44, symSize: 0x4 } - - { offsetInCU: 0x5CE, offset: 0x7207F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x668, symBinAddr: 0x25C48, symSize: 0x44 } - - { offsetInCU: 0x5E2, offset: 0x72093, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x6AC, symBinAddr: 0x25C8C, symSize: 0x4 } - - { offsetInCU: 0x5F6, offset: 0x720A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x6B0, symBinAddr: 0x25C90, symSize: 0x44 } - - { offsetInCU: 0x60A, offset: 0x720BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x6F4, symBinAddr: 0x25CD4, symSize: 0x4 } - - { offsetInCU: 0x61E, offset: 0x720CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x6F8, symBinAddr: 0x25CD8, symSize: 0x44 } - - { offsetInCU: 0x632, offset: 0x720E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x73C, symBinAddr: 0x25D1C, symSize: 0x4 } - - { offsetInCU: 0x646, offset: 0x720F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x740, symBinAddr: 0x25D20, symSize: 0x44 } - - { offsetInCU: 0x65A, offset: 0x7210B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x784, symBinAddr: 0x25D64, symSize: 0x4 } - - { offsetInCU: 0x66E, offset: 0x7211F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x788, symBinAddr: 0x25D68, symSize: 0x44 } - - { offsetInCU: 0x682, offset: 0x72133, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x7CC, symBinAddr: 0x25DAC, symSize: 0x4 } - - { offsetInCU: 0x696, offset: 0x72147, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x7D0, symBinAddr: 0x25DB0, symSize: 0x44 } - - { offsetInCU: 0x6AA, offset: 0x7215B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x814, symBinAddr: 0x25DF4, symSize: 0x4 } - - { offsetInCU: 0x6BE, offset: 0x7216F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x818, symBinAddr: 0x25DF8, symSize: 0x44 } - - { offsetInCU: 0x6D2, offset: 0x72183, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x85C, symBinAddr: 0x25E3C, symSize: 0x4 } - - { offsetInCU: 0x6E6, offset: 0x72197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x860, symBinAddr: 0x25E40, symSize: 0x44 } - - { offsetInCU: 0x6FA, offset: 0x721AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x8A4, symBinAddr: 0x25E84, symSize: 0x10 } - - { offsetInCU: 0x70E, offset: 0x721BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x8B4, symBinAddr: 0x25E94, symSize: 0x10 } - - { offsetInCU: 0x722, offset: 0x721D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x8C4, symBinAddr: 0x25EA4, symSize: 0x10 } - - { offsetInCU: 0x736, offset: 0x721E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x8D4, symBinAddr: 0x25EB4, symSize: 0x10 } - - { offsetInCU: 0x74A, offset: 0x721FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x8E4, symBinAddr: 0x25EC4, symSize: 0x10 } - - { offsetInCU: 0x75E, offset: 0x7220F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x8F4, symBinAddr: 0x25ED4, symSize: 0x10 } - - { offsetInCU: 0x772, offset: 0x72223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x904, symBinAddr: 0x25EE4, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x72237, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x914, symBinAddr: 0x25EF4, symSize: 0x10 } - - { offsetInCU: 0x79A, offset: 0x7224B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x924, symBinAddr: 0x25F04, symSize: 0x10 } - - { offsetInCU: 0x7AE, offset: 0x7225F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x934, symBinAddr: 0x25F14, symSize: 0x10 } - - { offsetInCU: 0x7C2, offset: 0x72273, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x944, symBinAddr: 0x25F24, symSize: 0x10 } - - { offsetInCU: 0x7F9, offset: 0x722AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x25620, symSize: 0x14 } - - { offsetInCU: 0x84E, offset: 0x722FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x58, symBinAddr: 0x25638, symSize: 0x28 } - - { offsetInCU: 0x4F, offset: 0x724A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x26008, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x724BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0x38, symBinAddr: 0x26040, symSize: 0x44 } - - { offsetInCU: 0x9C, offset: 0x724ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x94, symBinAddr: 0x2609C, symSize: 0x44 } - - { offsetInCU: 0xBB, offset: 0x7250C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0xD8, symBinAddr: 0x260E0, symSize: 0x48 } - - { offsetInCU: 0xDA, offset: 0x7252B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x120, symBinAddr: 0x26128, symSize: 0x50 } - - { offsetInCU: 0x119, offset: 0x7256A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x170, symBinAddr: 0x26178, symSize: 0x44 } - - { offsetInCU: 0x148, offset: 0x72599, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1B4, symBinAddr: 0x261BC, symSize: 0x4 } - - { offsetInCU: 0x173, offset: 0x725C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x254, symBinAddr: 0x2625C, symSize: 0x44 } - - { offsetInCU: 0x1A2, offset: 0x725F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x298, symBinAddr: 0x262A0, symSize: 0xD4 } - - { offsetInCU: 0x1EB, offset: 0x7263C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x38C, symBinAddr: 0x26394, symSize: 0x20 } - - { offsetInCU: 0x207, offset: 0x72658, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x3AC, symBinAddr: 0x263B4, symSize: 0x30 } - - { offsetInCU: 0x29A, offset: 0x726EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x648, symBinAddr: 0x26650, symSize: 0x48 } - - { offsetInCU: 0x2F6, offset: 0x72747, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x690, symBinAddr: 0x26698, symSize: 0x4C } - - { offsetInCU: 0x346, offset: 0x72797, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x6DC, symBinAddr: 0x266E4, symSize: 0x48 } - - { offsetInCU: 0x3D3, offset: 0x72824, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x36C, symBinAddr: 0x26374, symSize: 0x20 } - - { offsetInCU: 0x3E7, offset: 0x72838, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x3DC, symBinAddr: 0x263E4, symSize: 0x48 } - - { offsetInCU: 0x422, offset: 0x72873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x424, symBinAddr: 0x2642C, symSize: 0x84 } - - { offsetInCU: 0x4B7, offset: 0x72908, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x4A8, symBinAddr: 0x264B0, symSize: 0x18 } - - { offsetInCU: 0x4E8, offset: 0x72939, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x4C0, symBinAddr: 0x264C8, symSize: 0xEC } - - { offsetInCU: 0x54D, offset: 0x7299E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x5AC, symBinAddr: 0x265B4, symSize: 0x18 } - - { offsetInCU: 0x56A, offset: 0x729BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x5C4, symBinAddr: 0x265CC, symSize: 0x20 } - - { offsetInCU: 0x5A4, offset: 0x729F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x5E4, symBinAddr: 0x265EC, symSize: 0x64 } - - { offsetInCU: 0x5E1, offset: 0x72A32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x724, symBinAddr: 0x2672C, symSize: 0x20 } - - { offsetInCU: 0x639, offset: 0x72A8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x744, symBinAddr: 0x2674C, symSize: 0x24 } - - { offsetInCU: 0x68C, offset: 0x72ADD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x768, symBinAddr: 0x26770, symSize: 0x20 } - - { offsetInCU: 0x6CD, offset: 0x72B1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x788, symBinAddr: 0x26790, symSize: 0x1C } - - { offsetInCU: 0x741, offset: 0x72B92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x7A4, symBinAddr: 0x267AC, symSize: 0x24 } - - { offsetInCU: 0x7CF, offset: 0x72C20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x7C8, symBinAddr: 0x267D0, symSize: 0x68 } - - { offsetInCU: 0x971, offset: 0x72DC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x830, symBinAddr: 0x26838, symSize: 0x4A4 } - - { offsetInCU: 0xC5E, offset: 0x730AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xCF4, symBinAddr: 0x26CDC, symSize: 0x148 } - - { offsetInCU: 0xD2C, offset: 0x7317D, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xE3C, symBinAddr: 0x26E24, symSize: 0x2C } - - { offsetInCU: 0xD44, offset: 0x73195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xE68, symBinAddr: 0x26E50, symSize: 0x90 } - - { offsetInCU: 0xD60, offset: 0x731B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xEF8, symBinAddr: 0x26EE0, symSize: 0xC8 } - - { offsetInCU: 0xE2B, offset: 0x7327C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0xFC0, symBinAddr: 0x26FA8, symSize: 0x1C0 } - - { offsetInCU: 0xEB0, offset: 0x73301, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1180, symBinAddr: 0x27168, symSize: 0x4 } - - { offsetInCU: 0xED3, offset: 0x73324, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1184, symBinAddr: 0x2716C, symSize: 0x4C } - - { offsetInCU: 0xF05, offset: 0x73356, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x11D0, symBinAddr: 0x271B8, symSize: 0x8 } - - { offsetInCU: 0xF28, offset: 0x73379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x11D8, symBinAddr: 0x271C0, symSize: 0x60 } - - { offsetInCU: 0xF5A, offset: 0x733AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x1238, symBinAddr: 0x27220, symSize: 0xBC } - - { offsetInCU: 0xFEB, offset: 0x7343C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x12F4, symBinAddr: 0x272DC, symSize: 0x154 } - - { offsetInCU: 0x1035, offset: 0x73486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x1448, symBinAddr: 0x27430, symSize: 0x8 } - - { offsetInCU: 0x1058, offset: 0x734A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x1450, symBinAddr: 0x27438, symSize: 0x78 } - - { offsetInCU: 0x10AB, offset: 0x734FC, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x14C8, symBinAddr: 0x274B0, symSize: 0x4C } - - { offsetInCU: 0x1128, offset: 0x73579, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x183C, symBinAddr: 0x277D8, symSize: 0x3C } - - { offsetInCU: 0x113C, offset: 0x7358D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x189C, symBinAddr: 0x27838, symSize: 0x8 } - - { offsetInCU: 0x1150, offset: 0x735A1, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x18A4, symBinAddr: 0x27840, symSize: 0x10 } - - { offsetInCU: 0x1164, offset: 0x735B5, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18B4, symBinAddr: 0x27850, symSize: 0x8 } - - { offsetInCU: 0x1196, offset: 0x735E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x18BC, symBinAddr: 0x27858, symSize: 0x12C } - - { offsetInCU: 0x1222, offset: 0x73673, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x19E8, symBinAddr: 0x27984, symSize: 0x19C } - - { offsetInCU: 0x1308, offset: 0x73759, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1B84, symBinAddr: 0x27B20, symSize: 0x134 } - - { offsetInCU: 0x13A4, offset: 0x737F5, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1D20, symBinAddr: 0x27C78, symSize: 0x14 } - - { offsetInCU: 0x13CD, offset: 0x7381E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1D34, symBinAddr: 0x27C8C, symSize: 0x24 } - - { offsetInCU: 0x229, offset: 0x73C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x27CC0, symSize: 0xA8C } - - { offsetInCU: 0xF9A, offset: 0x749CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x1520, symBinAddr: 0x291E0, symSize: 0xA1C } - - { offsetInCU: 0x1B46, offset: 0x75579, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x1F3C, symBinAddr: 0x29BFC, symSize: 0x9C4 } - - { offsetInCU: 0x274A, offset: 0x7617D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2900, symBinAddr: 0x2A5C0, symSize: 0xBE0 } - - { offsetInCU: 0x370A, offset: 0x7713D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x34E0, symBinAddr: 0x2B1A0, symSize: 0xB70 } - - { offsetInCU: 0x4690, offset: 0x780C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x4068, symBinAddr: 0x2BD28, symSize: 0xAA0 } - - { offsetInCU: 0x5424, offset: 0x78E57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x4B08, symBinAddr: 0x2C7C8, symSize: 0xA38 } - - { offsetInCU: 0x5FB5, offset: 0x799E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x5540, symBinAddr: 0x2D200, symSize: 0x190 } - - { offsetInCU: 0x609B, offset: 0x79ACE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x56D0, symBinAddr: 0x2D390, symSize: 0x180 } - - { offsetInCU: 0x613A, offset: 0x79B6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x5850, symBinAddr: 0x2D510, symSize: 0x128 } - - { offsetInCU: 0x62A3, offset: 0x79CD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x5978, symBinAddr: 0x2D638, symSize: 0x58 } - - { offsetInCU: 0x631D, offset: 0x79D50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x59F0, symBinAddr: 0x2D6B0, symSize: 0x6C8 } - - { offsetInCU: 0x6A10, offset: 0x7A443, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x59D0, symBinAddr: 0x2D690, symSize: 0x20 } - - { offsetInCU: 0x6CA9, offset: 0x7A6DC, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x60B8, symBinAddr: 0x2DD78, symSize: 0x68 } - - { offsetInCU: 0x6DB0, offset: 0x7A7E3, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6120, symBinAddr: 0x2DDE0, symSize: 0x104 } - - { offsetInCU: 0x6FC7, offset: 0x7A9FA, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6224, symBinAddr: 0x2DEE4, symSize: 0x3FC } - - { offsetInCU: 0x73C5, offset: 0x7ADF8, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x6620, symBinAddr: 0x2E2E0, symSize: 0x12C } - - { offsetInCU: 0x756A, offset: 0x7AF9D, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x674C, symBinAddr: 0x2E40C, symSize: 0x294 } - - { offsetInCU: 0x7757, offset: 0x7B18A, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x69E0, symBinAddr: 0x2E6A0, symSize: 0x154 } - - { offsetInCU: 0x78BD, offset: 0x7B2F0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x6B34, symBinAddr: 0x2E7F4, symSize: 0x300 } - - { offsetInCU: 0x794C, offset: 0x7B37F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x6E34, symBinAddr: 0x2EAF4, symSize: 0x14 } - - { offsetInCU: 0x7985, offset: 0x7B3B8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x6E48, symBinAddr: 0x2EB08, symSize: 0xB4 } - - { offsetInCU: 0x7A46, offset: 0x7B479, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x6EFC, symBinAddr: 0x2EBBC, symSize: 0x1C8 } - - { offsetInCU: 0x7B48, offset: 0x7B57B, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x70C4, symBinAddr: 0x2ED84, symSize: 0x1DC } - - { offsetInCU: 0x7C4F, offset: 0x7B682, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x7384, symBinAddr: 0x2F044, symSize: 0x14 } - - { offsetInCU: 0x7CBE, offset: 0x7B6F1, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayVyAByxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x744C, symBinAddr: 0x2F10C, symSize: 0xB8 } - - { offsetInCU: 0x7DA0, offset: 0x7B7D3, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x7504, symBinAddr: 0x2F1C4, symSize: 0x48 } - - { offsetInCU: 0x7DB4, offset: 0x7B7E7, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x758C, symBinAddr: 0x2F20C, symSize: 0x10 } - - { offsetInCU: 0x7DC8, offset: 0x7B7FB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSnySiG_Tgq5Tf4nnd_n', symObjAddr: 0x759C, symBinAddr: 0x2F21C, symSize: 0x7C } - - { offsetInCU: 0x7DFE, offset: 0x7B831, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x76C0, symBinAddr: 0x2F318, symSize: 0x3C } - - { offsetInCU: 0x7E12, offset: 0x7B845, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x76FC, symBinAddr: 0x2F354, symSize: 0x40 } - - { offsetInCU: 0x7E26, offset: 0x7B859, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOr', symObjAddr: 0x7780, symBinAddr: 0x2F3D8, symSize: 0x28 } - - { offsetInCU: 0x7E3A, offset: 0x7B86D, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOs', symObjAddr: 0x77A8, symBinAddr: 0x2F400, symSize: 0x28 } - - { offsetInCU: 0x810F, offset: 0x7BB42, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x72A0, symBinAddr: 0x2EF60, symSize: 0xE4 } - - { offsetInCU: 0x4F, offset: 0x7BEB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x1160, symBinAddr: 0x66968, symSize: 0x0 } - - { offsetInCU: 0x87, offset: 0x7BEE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2F428, symSize: 0xB4 } - - { offsetInCU: 0xE0, offset: 0x7BF41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1D0, symBinAddr: 0x2F5F8, symSize: 0x5C } - - { offsetInCU: 0x10E, offset: 0x7BF6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x22C, symBinAddr: 0x2F654, symSize: 0x4FC } - - { offsetInCU: 0x1FA, offset: 0x7C05B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x728, symBinAddr: 0x2FB50, symSize: 0x7C } - - { offsetInCU: 0x25C, offset: 0x7C0BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x860, symBinAddr: 0x2FC88, symSize: 0x14 } - - { offsetInCU: 0x2EB, offset: 0x7C14C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x874, symBinAddr: 0x2FC9C, symSize: 0x44 } - - { offsetInCU: 0x3CE, offset: 0x7C22F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8B8, symBinAddr: 0x2FCE0, symSize: 0x28 } - - { offsetInCU: 0x460, offset: 0x7C2C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x920, symBinAddr: 0x2FD48, symSize: 0x1B4 } - - { offsetInCU: 0x4CB, offset: 0x7C32C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAD4, symBinAddr: 0x2FEFC, symSize: 0x4 } - - { offsetInCU: 0x4E5, offset: 0x7C346, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAD8, symBinAddr: 0x2FF00, symSize: 0x1C } - - { offsetInCU: 0x568, offset: 0x7C3C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xD84, symBinAddr: 0x3015C, symSize: 0xAC } - - { offsetInCU: 0x633, offset: 0x7C494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE30, symBinAddr: 0x30208, symSize: 0x110 } - - { offsetInCU: 0x6FD, offset: 0x7C55E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB4, symBinAddr: 0x2F4DC, symSize: 0x11C } - - { offsetInCU: 0x754, offset: 0x7C5B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAF4, symBinAddr: 0x2FF1C, symSize: 0x20 } - - { offsetInCU: 0x768, offset: 0x7C5C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB24, symBinAddr: 0x2FF3C, symSize: 0x90 } - - { offsetInCU: 0x77C, offset: 0x7C5DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xBB4, symBinAddr: 0x2FFCC, symSize: 0xBC } - - { offsetInCU: 0x790, offset: 0x7C5F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC70, symBinAddr: 0x30088, symSize: 0x8 } - - { offsetInCU: 0x7A4, offset: 0x7C605, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC78, symBinAddr: 0x30090, symSize: 0x4 } - - { offsetInCU: 0x7B8, offset: 0x7C619, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC7C, symBinAddr: 0x30094, symSize: 0x8 } - - { offsetInCU: 0x7CC, offset: 0x7C62D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC84, symBinAddr: 0x3009C, symSize: 0x10 } - - { offsetInCU: 0x7E0, offset: 0x7C641, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xC94, symBinAddr: 0x300AC, symSize: 0x4 } - - { offsetInCU: 0x7F4, offset: 0x7C655, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xC98, symBinAddr: 0x300B0, symSize: 0x44 } - - { offsetInCU: 0x808, offset: 0x7C669, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCDC, symBinAddr: 0x300F4, symSize: 0x10 } - - { offsetInCU: 0x81C, offset: 0x7C67D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xCEC, symBinAddr: 0x30104, symSize: 0x8 } - - { offsetInCU: 0x830, offset: 0x7C691, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xCF4, symBinAddr: 0x3010C, symSize: 0x10 } - - { offsetInCU: 0x844, offset: 0x7C6A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xF90, symBinAddr: 0x30368, symSize: 0xC } - - { offsetInCU: 0x858, offset: 0x7C6B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x1060, symBinAddr: 0x30438, symSize: 0x8 } - - { offsetInCU: 0x86C, offset: 0x7C6CD, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x1068, symBinAddr: 0x30440, symSize: 0x10 } - - { offsetInCU: 0x90B, offset: 0x7C76C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x2FD08, symSize: 0x40 } - - { offsetInCU: 0xABE, offset: 0x7C91F, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x7A4, symBinAddr: 0x2FBCC, symSize: 0xBC } - - { offsetInCU: 0x2B, offset: 0x7C9DF, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x30458, symSize: 0x5C } - - { offsetInCU: 0x64, offset: 0x7CA18, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x30458, symSize: 0x5C } - - { offsetInCU: 0xE7, offset: 0x7CA9B, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x5C, symBinAddr: 0x304B4, symSize: 0x104 } - - { offsetInCU: 0x194, offset: 0x7CB48, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x160, symBinAddr: 0x305B8, symSize: 0xB4 } - - { offsetInCU: 0x340, offset: 0x7CCF4, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x214, symBinAddr: 0x3066C, symSize: 0x150 } - - { offsetInCU: 0x519, offset: 0x7CECD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x374, symBinAddr: 0x307CC, symSize: 0x10 } - - { offsetInCU: 0x547, offset: 0x7CEFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x384, symBinAddr: 0x307DC, symSize: 0x24 } - - { offsetInCU: 0x5E1, offset: 0x7CF95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x3A8, symBinAddr: 0x30800, symSize: 0x44 } - - { offsetInCU: 0x6E9, offset: 0x7D09D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3EC, symBinAddr: 0x30844, symSize: 0x14 } - - { offsetInCU: 0x745, offset: 0x7D0F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x400, symBinAddr: 0x30858, symSize: 0x44 } - - { offsetInCU: 0x828, offset: 0x7D1DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x444, symBinAddr: 0x3089C, symSize: 0x28 } - - { offsetInCU: 0x8B1, offset: 0x7D265, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x4AC, symBinAddr: 0x30904, symSize: 0x4 } - - { offsetInCU: 0x8C5, offset: 0x7D279, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4B0, symBinAddr: 0x30908, symSize: 0x44 } - - { offsetInCU: 0x8D9, offset: 0x7D28D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x514, symBinAddr: 0x3095C, symSize: 0x90 } - - { offsetInCU: 0x8ED, offset: 0x7D2A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x5A4, symBinAddr: 0x309EC, symSize: 0xBC } - - { offsetInCU: 0x901, offset: 0x7D2B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x660, symBinAddr: 0x30AA8, symSize: 0x8 } - - { offsetInCU: 0x915, offset: 0x7D2C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x668, symBinAddr: 0x30AB0, symSize: 0x4 } - - { offsetInCU: 0x929, offset: 0x7D2DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x66C, symBinAddr: 0x30AB4, symSize: 0x8 } - - { offsetInCU: 0x93D, offset: 0x7D2F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x674, symBinAddr: 0x30ABC, symSize: 0x10 } - - { offsetInCU: 0x951, offset: 0x7D305, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x684, symBinAddr: 0x30ACC, symSize: 0xC } - - { offsetInCU: 0x965, offset: 0x7D319, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x690, symBinAddr: 0x30AD8, symSize: 0x20 } - - { offsetInCU: 0x979, offset: 0x7D32D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x6B0, symBinAddr: 0x30AF8, symSize: 0x28 } - - { offsetInCU: 0x98D, offset: 0x7D341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x6D8, symBinAddr: 0x30B20, symSize: 0x8 } - - { offsetInCU: 0x9A1, offset: 0x7D355, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x6E0, symBinAddr: 0x30B28, symSize: 0x4 } - - { offsetInCU: 0x9B5, offset: 0x7D369, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x6E4, symBinAddr: 0x30B2C, symSize: 0x4 } - - { offsetInCU: 0x9C9, offset: 0x7D37D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x6E8, symBinAddr: 0x30B30, symSize: 0x10 } - - { offsetInCU: 0xA35, offset: 0x7D3E9, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x6F8, symBinAddr: 0x30B40, symSize: 0x258 } - - { offsetInCU: 0xCED, offset: 0x7D6A1, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x9A0, symBinAddr: 0x30D98, symSize: 0x44 } - - { offsetInCU: 0xDAE, offset: 0x7D762, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x364, symBinAddr: 0x307BC, symSize: 0x4 } - - { offsetInCU: 0xDCA, offset: 0x7D77E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x368, symBinAddr: 0x307C0, symSize: 0x4 } - - { offsetInCU: 0xDE6, offset: 0x7D79A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x36C, symBinAddr: 0x307C4, symSize: 0x4 } - - { offsetInCU: 0xE02, offset: 0x7D7B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x370, symBinAddr: 0x307C8, symSize: 0x4 } - - { offsetInCU: 0xE4B, offset: 0x7D7FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x46C, symBinAddr: 0x308C4, symSize: 0x40 } - - { offsetInCU: 0xEE7, offset: 0x7D89B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x4F4, symBinAddr: 0x3094C, symSize: 0x4 } - - { offsetInCU: 0xF03, offset: 0x7D8B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x4F8, symBinAddr: 0x30950, symSize: 0x4 } - - { offsetInCU: 0xF1F, offset: 0x7D8D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x4FC, symBinAddr: 0x30954, symSize: 0x4 } - - { offsetInCU: 0xF3B, offset: 0x7D8EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x500, symBinAddr: 0x30958, symSize: 0x4 } - - { offsetInCU: 0x2B, offset: 0x7DAEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x30DDC, symSize: 0x50 } - - { offsetInCU: 0x69, offset: 0x7DB2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x50, symBinAddr: 0x30E2C, symSize: 0x4 } - - { offsetInCU: 0x92, offset: 0x7DB56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xF0, symBinAddr: 0x30ECC, symSize: 0xA0 } - - { offsetInCU: 0xC1, offset: 0x7DB85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x190, symBinAddr: 0x30F6C, symSize: 0x34 } - - { offsetInCU: 0xE0, offset: 0x7DBA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x284, symBinAddr: 0x31060, symSize: 0x2C } - - { offsetInCU: 0x111, offset: 0x7DBD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x2B0, symBinAddr: 0x3108C, symSize: 0xC } - - { offsetInCU: 0x12D, offset: 0x7DBF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2BC, symBinAddr: 0x31098, symSize: 0x8 } - - { offsetInCU: 0x14A, offset: 0x7DC0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x30DDC, symSize: 0x50 } - - { offsetInCU: 0x1B0, offset: 0x7DC74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x54, symBinAddr: 0x30E30, symSize: 0x5C } - - { offsetInCU: 0x241, offset: 0x7DD05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x468, symBinAddr: 0x31244, symSize: 0x28 } - - { offsetInCU: 0x272, offset: 0x7DD36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x490, symBinAddr: 0x3126C, symSize: 0x10 } - - { offsetInCU: 0x2A4, offset: 0x7DD68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x3127C, symSize: 0x34 } - - { offsetInCU: 0x2D0, offset: 0x7DD94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0xB0, symBinAddr: 0x30E8C, symSize: 0x30 } - - { offsetInCU: 0x336, offset: 0x7DDFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xE0, symBinAddr: 0x30EBC, symSize: 0x10 } - - { offsetInCU: 0x385, offset: 0x7DE49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x2C4, symBinAddr: 0x310A0, symSize: 0x10 } - - { offsetInCU: 0x3B3, offset: 0x7DE77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x2D4, symBinAddr: 0x310B0, symSize: 0x10 } - - { offsetInCU: 0x3E1, offset: 0x7DEA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x2E4, symBinAddr: 0x310C0, symSize: 0x10 } - - { offsetInCU: 0x40F, offset: 0x7DED3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x2F4, symBinAddr: 0x310D0, symSize: 0x4 } - - { offsetInCU: 0x423, offset: 0x7DEE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x2F8, symBinAddr: 0x310D4, symSize: 0x44 } - - { offsetInCU: 0x437, offset: 0x7DEFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x33C, symBinAddr: 0x31118, symSize: 0x4 } - - { offsetInCU: 0x481, offset: 0x7DF45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x340, symBinAddr: 0x3111C, symSize: 0x14 } - - { offsetInCU: 0x4FA, offset: 0x7DFBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x354, symBinAddr: 0x31130, symSize: 0x14 } - - { offsetInCU: 0x573, offset: 0x7E037, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x368, symBinAddr: 0x31144, symSize: 0x14 } - - { offsetInCU: 0x5EC, offset: 0x7E0B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x37C, symBinAddr: 0x31158, symSize: 0x14 } - - { offsetInCU: 0x62F, offset: 0x7E0F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x390, symBinAddr: 0x3116C, symSize: 0x10 } - - { offsetInCU: 0x643, offset: 0x7E107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x4E4, symBinAddr: 0x312B0, symSize: 0x90 } - - { offsetInCU: 0x657, offset: 0x7E11B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x574, symBinAddr: 0x31340, symSize: 0xBC } - - { offsetInCU: 0x66B, offset: 0x7E12F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x630, symBinAddr: 0x313FC, symSize: 0x8 } - - { offsetInCU: 0x67F, offset: 0x7E143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x638, symBinAddr: 0x31404, symSize: 0x4 } - - { offsetInCU: 0x693, offset: 0x7E157, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x63C, symBinAddr: 0x31408, symSize: 0x8 } - - { offsetInCU: 0x6A7, offset: 0x7E16B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x644, symBinAddr: 0x31410, symSize: 0x10 } - - { offsetInCU: 0x6BB, offset: 0x7E17F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x654, symBinAddr: 0x31420, symSize: 0x4 } - - { offsetInCU: 0x6CF, offset: 0x7E193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x658, symBinAddr: 0x31424, symSize: 0x44 } - - { offsetInCU: 0x712, offset: 0x7E1D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C4, symBinAddr: 0x30FA0, symSize: 0x14 } - - { offsetInCU: 0x7A3, offset: 0x7E267, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1D8, symBinAddr: 0x30FB4, symSize: 0x44 } - - { offsetInCU: 0x832, offset: 0x7E2F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x30FF8, symSize: 0x28 } - - { offsetInCU: 0x885, offset: 0x7E349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x244, symBinAddr: 0x31020, symSize: 0x40 } - - { offsetInCU: 0x8F1, offset: 0x7E3B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3A0, symBinAddr: 0x3117C, symSize: 0x18 } - - { offsetInCU: 0x982, offset: 0x7E446, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3B8, symBinAddr: 0x31194, symSize: 0x44 } - - { offsetInCU: 0xA63, offset: 0x7E527, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x3FC, symBinAddr: 0x311D8, symSize: 0x2C } - - { offsetInCU: 0xAE8, offset: 0x7E5AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x428, symBinAddr: 0x31204, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x7E77F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31468, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x7E7A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31468, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x7E7CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31470, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x7E7EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31470, symSize: 0x8 } - - { offsetInCU: 0x14B, offset: 0x7E8A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x31478, symSize: 0xD4 } - - { offsetInCU: 0x323, offset: 0x7EA7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwCP', symObjAddr: 0xE4, symBinAddr: 0x3154C, symSize: 0x3C } - - { offsetInCU: 0x337, offset: 0x7EA8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0x120, symBinAddr: 0x31588, symSize: 0x8 } - - { offsetInCU: 0x34B, offset: 0x7EAA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwcp', symObjAddr: 0x128, symBinAddr: 0x31590, symSize: 0x3C } - - { offsetInCU: 0x35F, offset: 0x7EAB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x164, symBinAddr: 0x315CC, symSize: 0x50 } - - { offsetInCU: 0x373, offset: 0x7EACB, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x1B4, symBinAddr: 0x3161C, symSize: 0xC } - - { offsetInCU: 0x387, offset: 0x7EADF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x1C0, symBinAddr: 0x31628, symSize: 0x40 } - - { offsetInCU: 0x39B, offset: 0x7EAF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x200, symBinAddr: 0x31668, symSize: 0x5C } - - { offsetInCU: 0x3AF, offset: 0x7EB07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x25C, symBinAddr: 0x316C4, symSize: 0x50 } - - { offsetInCU: 0x3C3, offset: 0x7EB1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x2AC, symBinAddr: 0x31714, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x7EC6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31724, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x7EC93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31724, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x7ECBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3172C, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x7ECDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3172C, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x7ED00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x31734, symSize: 0x1C } - - { offsetInCU: 0x13B, offset: 0x7ED83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x2C, symBinAddr: 0x31750, symSize: 0xE8 } - - { offsetInCU: 0x2B9, offset: 0x7EF01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x114, symBinAddr: 0x31838, symSize: 0x110 } - - { offsetInCU: 0x3E9, offset: 0x7F031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwCP', symObjAddr: 0x264, symBinAddr: 0x31948, symSize: 0x4C } - - { offsetInCU: 0x3FD, offset: 0x7F045, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x2B0, symBinAddr: 0x31994, symSize: 0x28 } - - { offsetInCU: 0x411, offset: 0x7F059, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwcp', symObjAddr: 0x2D8, symBinAddr: 0x319BC, symSize: 0x4C } - - { offsetInCU: 0x425, offset: 0x7F06D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x324, symBinAddr: 0x31A08, symSize: 0x7C } - - { offsetInCU: 0x439, offset: 0x7F081, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x3A0, symBinAddr: 0x31A84, symSize: 0x14 } - - { offsetInCU: 0x44D, offset: 0x7F095, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x3B4, symBinAddr: 0x31A98, symSize: 0x5C } - - { offsetInCU: 0x461, offset: 0x7F0A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x410, symBinAddr: 0x31AF4, symSize: 0x5C } - - { offsetInCU: 0x475, offset: 0x7F0BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x46C, symBinAddr: 0x31B50, symSize: 0x54 } - - { offsetInCU: 0x489, offset: 0x7F0D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x4C0, symBinAddr: 0x31BA4, symSize: 0x10 } - - { offsetInCU: 0x4F, offset: 0x7F290, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31BB4, symSize: 0x8 } - - { offsetInCU: 0x7A, offset: 0x7F2BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31BBC, symSize: 0x8 } - - { offsetInCU: 0x9A, offset: 0x7F2DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31BBC, symSize: 0x8 } - - { offsetInCU: 0xAC, offset: 0x7F2ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8clientIDACSS_tcfCTf4gd_nTf4n_g', symObjAddr: 0xEF8, symBinAddr: 0x32A6C, symSize: 0xF0 } - - { offsetInCU: 0x218, offset: 0x7F459, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x31BC4, symSize: 0x2E8 } - - { offsetInCU: 0x5A6, offset: 0x7F7E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x2F8, symBinAddr: 0x31EAC, symSize: 0x34C } - - { offsetInCU: 0x9F0, offset: 0x7FC31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x644, symBinAddr: 0x321F8, symSize: 0x288 } - - { offsetInCU: 0xD53, offset: 0x7FF94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x8CC, symBinAddr: 0x32480, symSize: 0x290 } - - { offsetInCU: 0x117B, offset: 0x803BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xB5C, symBinAddr: 0x32710, symSize: 0x2C0 } - - { offsetInCU: 0x143A, offset: 0x8067B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xE1C, symBinAddr: 0x329D0, symSize: 0x58 } - - { offsetInCU: 0x1456, offset: 0x80697, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0x1040, symBinAddr: 0x32B5C, symSize: 0x30 } - - { offsetInCU: 0x146A, offset: 0x806AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0x10C0, symBinAddr: 0x32B8C, symSize: 0x78 } - - { offsetInCU: 0x147E, offset: 0x806BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x1138, symBinAddr: 0x32C04, symSize: 0x140 } - - { offsetInCU: 0x1492, offset: 0x806D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x1278, symBinAddr: 0x32D44, symSize: 0x1F0 } - - { offsetInCU: 0x14A6, offset: 0x806E7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x1468, symBinAddr: 0x32F34, symSize: 0x34 } - - { offsetInCU: 0x14BA, offset: 0x806FB, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x149C, symBinAddr: 0x32F68, symSize: 0x3C } - - { offsetInCU: 0x14CE, offset: 0x8070F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x14D8, symBinAddr: 0x32FA4, symSize: 0x138 } - - { offsetInCU: 0x14E2, offset: 0x80723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x1610, symBinAddr: 0x330DC, symSize: 0x48 } - - { offsetInCU: 0x14F6, offset: 0x80737, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x1658, symBinAddr: 0x33124, symSize: 0x68 } - - { offsetInCU: 0x150A, offset: 0x8074B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x16C0, symBinAddr: 0x3318C, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x80906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3319C, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x80931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x331A4, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x80951, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x331A4, symSize: 0x8 } - - { offsetInCU: 0x122, offset: 0x809DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x331AC, symSize: 0xE4 } - - { offsetInCU: 0x31C, offset: 0x80BD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0xF4, symBinAddr: 0x33290, symSize: 0x2C4 } - - { offsetInCU: 0x737, offset: 0x80FF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3B8, symBinAddr: 0x33554, symSize: 0x4 } - - { offsetInCU: 0x757, offset: 0x81012, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3B8, symBinAddr: 0x33554, symSize: 0x4 } - - { offsetInCU: 0x769, offset: 0x81024, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV11descriptionSSvgTf4d_n', symObjAddr: 0x3BC, symBinAddr: 0x33558, symSize: 0x1C } - - { offsetInCU: 0x787, offset: 0x81042, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x45C, symBinAddr: 0x335B8, symSize: 0x30 } - - { offsetInCU: 0x79B, offset: 0x81056, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x48C, symBinAddr: 0x335E8, symSize: 0x30 } - - { offsetInCU: 0x7AF, offset: 0x8106A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x4BC, symBinAddr: 0x33618, symSize: 0x74 } - - { offsetInCU: 0x7C3, offset: 0x8107E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x530, symBinAddr: 0x3368C, symSize: 0xAC } - - { offsetInCU: 0x7D7, offset: 0x81092, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x5DC, symBinAddr: 0x33738, symSize: 0x1C } - - { offsetInCU: 0x7EB, offset: 0x810A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x5F8, symBinAddr: 0x33754, symSize: 0x74 } - - { offsetInCU: 0x7FF, offset: 0x810BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x66C, symBinAddr: 0x337C8, symSize: 0x5C } - - { offsetInCU: 0x813, offset: 0x810CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x6C8, symBinAddr: 0x33824, symSize: 0x60 } - - { offsetInCU: 0x827, offset: 0x810E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x728, symBinAddr: 0x33884, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x81269, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33894, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x81288, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33894, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x812B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3389C, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x812D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3389C, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x812F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x338A4, symSize: 0x4 } - - { offsetInCU: 0xD3, offset: 0x81315, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x338A4, symSize: 0x4 } - - { offsetInCU: 0xE5, offset: 0x81327, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqV11descriptionSSvgTf4d_n', symObjAddr: 0x14, symBinAddr: 0x338A8, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x81345, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x24, symBinAddr: 0x338B8, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x81411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x338C8, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x81430, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x338C8, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x8145B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x338D0, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x8147B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x338D0, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x8149D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x338D8, symSize: 0x4 } - - { offsetInCU: 0xD3, offset: 0x814BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x338D8, symSize: 0x4 } - - { offsetInCU: 0xE5, offset: 0x814CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespV11descriptionSSvgTf4d_n', symObjAddr: 0x14, symBinAddr: 0x338DC, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x814ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x24, symBinAddr: 0x338EC, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x815DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x338FC, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x81608, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33904, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x81628, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33904, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x81711, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x3390C, symSize: 0x12C } - - { offsetInCU: 0x40D, offset: 0x8199F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x33A38, symSize: 0x158 } - - { offsetInCU: 0x5CB, offset: 0x81B5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV11descriptionSSvg', symObjAddr: 0x294, symBinAddr: 0x33B90, symSize: 0x88 } - - { offsetInCU: 0x624, offset: 0x81BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x31C, symBinAddr: 0x33C18, symSize: 0x38 } - - { offsetInCU: 0x69A, offset: 0x81C2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x354, symBinAddr: 0x33C50, symSize: 0x1B8 } - - { offsetInCU: 0x834, offset: 0x81DC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x5F8, symBinAddr: 0x33EB4, symSize: 0x30 } - - { offsetInCU: 0x848, offset: 0x81DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x628, symBinAddr: 0x33EE4, symSize: 0x30 } - - { offsetInCU: 0x85C, offset: 0x81DEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x658, symBinAddr: 0x33F14, symSize: 0x5C } - - { offsetInCU: 0x870, offset: 0x81E02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x6B4, symBinAddr: 0x33F70, symSize: 0x94 } - - { offsetInCU: 0x884, offset: 0x81E16, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x748, symBinAddr: 0x34004, symSize: 0x14 } - - { offsetInCU: 0x898, offset: 0x81E2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x75C, symBinAddr: 0x34018, symSize: 0x64 } - - { offsetInCU: 0x8AC, offset: 0x81E3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x7C0, symBinAddr: 0x3407C, symSize: 0x5C } - - { offsetInCU: 0x8C0, offset: 0x81E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x81C, symBinAddr: 0x340D8, symSize: 0x5C } - - { offsetInCU: 0x8D4, offset: 0x81E66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x878, symBinAddr: 0x34134, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x82045, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34144, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x82070, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3414C, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x82090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3414C, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x82179, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x34154, symSize: 0x12C } - - { offsetInCU: 0x40D, offset: 0x82407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x34280, symSize: 0x158 } - - { offsetInCU: 0x5CB, offset: 0x825C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV11descriptionSSvg', symObjAddr: 0x294, symBinAddr: 0x343D8, symSize: 0x88 } - - { offsetInCU: 0x624, offset: 0x8261E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x31C, symBinAddr: 0x34460, symSize: 0x38 } - - { offsetInCU: 0x673, offset: 0x8266D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x354, symBinAddr: 0x34498, symSize: 0xE0 } - - { offsetInCU: 0x794, offset: 0x8278E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x4B8, symBinAddr: 0x345BC, symSize: 0x30 } - - { offsetInCU: 0x7A8, offset: 0x827A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x4E8, symBinAddr: 0x345EC, symSize: 0x30 } - - { offsetInCU: 0x7BC, offset: 0x827B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x518, symBinAddr: 0x3461C, symSize: 0x5C } - - { offsetInCU: 0x7D0, offset: 0x827CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x574, symBinAddr: 0x34678, symSize: 0x94 } - - { offsetInCU: 0x7E4, offset: 0x827DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x61C, symBinAddr: 0x3470C, symSize: 0x64 } - - { offsetInCU: 0x7F8, offset: 0x827F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x680, symBinAddr: 0x34770, symSize: 0x5C } - - { offsetInCU: 0x80C, offset: 0x82806, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x6DC, symBinAddr: 0x347CC, symSize: 0x5C } - - { offsetInCU: 0x820, offset: 0x8281A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x738, symBinAddr: 0x34828, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x829C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34838, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x829E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34838, symSize: 0x8 } - - { offsetInCU: 0x6E, offset: 0x82A09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34840, symSize: 0x8 } - - { offsetInCU: 0x8E, offset: 0x82A29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34840, symSize: 0x8 } - - { offsetInCU: 0xBE, offset: 0x82A59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV5topic7payload3qos5msgidACSS_Says5UInt8VGAA0A7MQTTQoSOs6UInt16VtcfCTf4nnnnd_n', symObjAddr: 0x430, symBinAddr: 0x34C68, symSize: 0x40 } - - { offsetInCU: 0x22F, offset: 0x82BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x34848, symSize: 0x124 } - - { offsetInCU: 0x463, offset: 0x82DFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x134, symBinAddr: 0x3496C, symSize: 0x188 } - - { offsetInCU: 0x777, offset: 0x83112, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2BC, symBinAddr: 0x34AF4, symSize: 0x134 } - - { offsetInCU: 0x90B, offset: 0x832A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3F0, symBinAddr: 0x34C28, symSize: 0x40 } - - { offsetInCU: 0xAD0, offset: 0x8346B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x470, symBinAddr: 0x34CA8, symSize: 0x748 } - - { offsetInCU: 0x1091, offset: 0x83A2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xBB8, symBinAddr: 0x353F0, symSize: 0x48 } - - { offsetInCU: 0x10A5, offset: 0x83A40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xC40, symBinAddr: 0x35438, symSize: 0x30 } - - { offsetInCU: 0x10B9, offset: 0x83A54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xC70, symBinAddr: 0x35468, symSize: 0x48 } - - { offsetInCU: 0x10CD, offset: 0x83A68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xCB8, symBinAddr: 0x354B0, symSize: 0xB4 } - - { offsetInCU: 0x10E1, offset: 0x83A7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xD6C, symBinAddr: 0x35564, symSize: 0x104 } - - { offsetInCU: 0x10F5, offset: 0x83A90, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xE70, symBinAddr: 0x35668, symSize: 0x1C } - - { offsetInCU: 0x1109, offset: 0x83AA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xE8C, symBinAddr: 0x35684, symSize: 0xB4 } - - { offsetInCU: 0x111D, offset: 0x83AB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0xF40, symBinAddr: 0x35738, symSize: 0x48 } - - { offsetInCU: 0x1131, offset: 0x83ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0xF88, symBinAddr: 0x35780, symSize: 0x58 } - - { offsetInCU: 0x1145, offset: 0x83AE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0xFE0, symBinAddr: 0x357D8, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x83D42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x357E8, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x83D6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x357F0, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x83D8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x357F0, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x83E76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x357F8, symSize: 0x12C } - - { offsetInCU: 0x40D, offset: 0x84104, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x35924, symSize: 0x158 } - - { offsetInCU: 0x5CB, offset: 0x842C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV11descriptionSSvg', symObjAddr: 0x294, symBinAddr: 0x35A7C, symSize: 0x88 } - - { offsetInCU: 0x624, offset: 0x8431B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x31C, symBinAddr: 0x35B04, symSize: 0x38 } - - { offsetInCU: 0x673, offset: 0x8436A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x354, symBinAddr: 0x35B3C, symSize: 0xE0 } - - { offsetInCU: 0x794, offset: 0x8448B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x4B8, symBinAddr: 0x35C60, symSize: 0x30 } - - { offsetInCU: 0x7A8, offset: 0x8449F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x4E8, symBinAddr: 0x35C90, symSize: 0x30 } - - { offsetInCU: 0x7BC, offset: 0x844B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x518, symBinAddr: 0x35CC0, symSize: 0x5C } - - { offsetInCU: 0x7D0, offset: 0x844C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x574, symBinAddr: 0x35D1C, symSize: 0x94 } - - { offsetInCU: 0x7E4, offset: 0x844DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x61C, symBinAddr: 0x35DB0, symSize: 0x64 } - - { offsetInCU: 0x7F8, offset: 0x844EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x680, symBinAddr: 0x35E14, symSize: 0x5C } - - { offsetInCU: 0x80C, offset: 0x84503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x6DC, symBinAddr: 0x35E70, symSize: 0x5C } - - { offsetInCU: 0x820, offset: 0x84517, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x738, symBinAddr: 0x35ECC, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x846E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35EDC, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x8470E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35EE4, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x8472E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35EE4, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x84817, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x35EEC, symSize: 0xF4 } - - { offsetInCU: 0x3F8, offset: 0x84A90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x104, symBinAddr: 0x35FE0, symSize: 0x158 } - - { offsetInCU: 0x5B6, offset: 0x84C4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV11descriptionSSvg', symObjAddr: 0x25C, symBinAddr: 0x36138, symSize: 0x88 } - - { offsetInCU: 0x60F, offset: 0x84CA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2E4, symBinAddr: 0x361C0, symSize: 0x38 } - - { offsetInCU: 0x636, offset: 0x84CCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x31C, symBinAddr: 0x361F8, symSize: 0xDC } - - { offsetInCU: 0x757, offset: 0x84DEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x47C, symBinAddr: 0x36318, symSize: 0x30 } - - { offsetInCU: 0x76B, offset: 0x84E03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x4AC, symBinAddr: 0x36348, symSize: 0x30 } - - { offsetInCU: 0x77F, offset: 0x84E17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x4DC, symBinAddr: 0x36378, symSize: 0x64 } - - { offsetInCU: 0x793, offset: 0x84E2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x540, symBinAddr: 0x363DC, symSize: 0x94 } - - { offsetInCU: 0x7A7, offset: 0x84E3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x5E8, symBinAddr: 0x36470, symSize: 0x6C } - - { offsetInCU: 0x7BB, offset: 0x84E53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x654, symBinAddr: 0x364DC, symSize: 0x5C } - - { offsetInCU: 0x7CF, offset: 0x84E67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x6B0, symBinAddr: 0x36538, symSize: 0x5C } - - { offsetInCU: 0x7E3, offset: 0x84E7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x70C, symBinAddr: 0x36594, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x85023, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x365A4, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x85047, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x365A4, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x85072, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x365AC, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x85092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x365AC, symSize: 0x8 } - - { offsetInCU: 0xA9, offset: 0x850A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x365B4, symSize: 0x88 } - - { offsetInCU: 0x102, offset: 0x850FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x98, symBinAddr: 0x3663C, symSize: 0x40 } - - { offsetInCU: 0x2E5, offset: 0x852E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xD8, symBinAddr: 0x3667C, symSize: 0x54C } - - { offsetInCU: 0xA61, offset: 0x85A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x624, symBinAddr: 0x36BC8, symSize: 0x30 } - - { offsetInCU: 0xA75, offset: 0x85A71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x654, symBinAddr: 0x36BF8, symSize: 0x40 } - - { offsetInCU: 0xA89, offset: 0x85A85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x694, symBinAddr: 0x36C38, symSize: 0x7C } - - { offsetInCU: 0xA9D, offset: 0x85A99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x710, symBinAddr: 0x36CB4, symSize: 0xBC } - - { offsetInCU: 0xAB1, offset: 0x85AAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x7E8, symBinAddr: 0x36D70, symSize: 0x84 } - - { offsetInCU: 0xAC5, offset: 0x85AC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x86C, symBinAddr: 0x36DF4, symSize: 0x48 } - - { offsetInCU: 0xAD9, offset: 0x85AD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x8B4, symBinAddr: 0x36E3C, symSize: 0x4C } - - { offsetInCU: 0xAED, offset: 0x85AE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x900, symBinAddr: 0x36E88, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x85D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36E98, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x85D54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36EA0, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x85D74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36EA0, symSize: 0x8 } - - { offsetInCU: 0xA8, offset: 0x85D86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV5msgid16subscriptionList16packetIdentifier0fI012userPropertyACs6UInt16V_SayAA16MqttSubscriptionCGAJSgs6UInt32VSgSDyS2SGtcfCTf4nnnnnd_n', symObjAddr: 0xD1C, symBinAddr: 0x37B74, symSize: 0xC0 } - - { offsetInCU: 0x1C5, offset: 0x85EA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x36EA8, symSize: 0xAC } - - { offsetInCU: 0x41D, offset: 0x860FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xBC, symBinAddr: 0x36F54, symSize: 0x26C } - - { offsetInCU: 0x898, offset: 0x86576, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x328, symBinAddr: 0x371C0, symSize: 0x1E8 } - - { offsetInCU: 0xD64, offset: 0x86A42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x510, symBinAddr: 0x373A8, symSize: 0x5B0 } - - { offsetInCU: 0x1217, offset: 0x86EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xAC0, symBinAddr: 0x37958, symSize: 0x38 } - - { offsetInCU: 0x1233, offset: 0x86F11, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xB38, symBinAddr: 0x37990, symSize: 0x1E4 } - - { offsetInCU: 0x1290, offset: 0x86F6E, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xE20, symBinAddr: 0x37C78, symSize: 0x28 } - - { offsetInCU: 0x12A4, offset: 0x86F82, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xE48, symBinAddr: 0x37CA0, symSize: 0x28 } - - { offsetInCU: 0x12B8, offset: 0x86F96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xE70, symBinAddr: 0x37CC8, symSize: 0x30 } - - { offsetInCU: 0x12CC, offset: 0x86FAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xEA0, symBinAddr: 0x37CF8, symSize: 0x30 } - - { offsetInCU: 0x12E0, offset: 0x86FBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xED0, symBinAddr: 0x37D28, symSize: 0x84 } - - { offsetInCU: 0x12F4, offset: 0x86FD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xF54, symBinAddr: 0x37DAC, symSize: 0xAC } - - { offsetInCU: 0x1308, offset: 0x86FE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0x1014, symBinAddr: 0x37E58, symSize: 0x8C } - - { offsetInCU: 0x131C, offset: 0x86FFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0x10A0, symBinAddr: 0x37EE4, symSize: 0x5C } - - { offsetInCU: 0x1330, offset: 0x8700E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x10FC, symBinAddr: 0x37F40, symSize: 0x60 } - - { offsetInCU: 0x1344, offset: 0x87022, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x115C, symBinAddr: 0x37FA0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x87408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37FB0, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8742C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37FB0, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x87457, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x37FB8, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x87477, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x37FB8, symSize: 0x8 } - - { offsetInCU: 0xBF, offset: 0x874A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x37FC0, symSize: 0xAC } - - { offsetInCU: 0x157, offset: 0x87538, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBC, symBinAddr: 0x3806C, symSize: 0x38 } - - { offsetInCU: 0x1BC, offset: 0x8759D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF4, symBinAddr: 0x380A4, symSize: 0x114 } - - { offsetInCU: 0x2D5, offset: 0x876B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x208, symBinAddr: 0x381B8, symSize: 0x30 } - - { offsetInCU: 0x2E9, offset: 0x876CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x238, symBinAddr: 0x381E8, symSize: 0x38 } - - { offsetInCU: 0x2FD, offset: 0x876DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x270, symBinAddr: 0x38220, symSize: 0x6C } - - { offsetInCU: 0x311, offset: 0x876F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x2DC, symBinAddr: 0x3828C, symSize: 0xA4 } - - { offsetInCU: 0x325, offset: 0x87706, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x394, symBinAddr: 0x38330, symSize: 0x74 } - - { offsetInCU: 0x339, offset: 0x8771A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x408, symBinAddr: 0x383A4, symSize: 0x48 } - - { offsetInCU: 0x34D, offset: 0x8772E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x450, symBinAddr: 0x383EC, symSize: 0x4C } - - { offsetInCU: 0x361, offset: 0x87742, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x49C, symBinAddr: 0x38438, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x87870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38448, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x8788F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38448, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x878BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x38450, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x878DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x38450, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x878FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x38458, symSize: 0x1C } - - { offsetInCU: 0x1CE, offset: 0x87A17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x2C, symBinAddr: 0x38474, symSize: 0x174 } - - { offsetInCU: 0x4E8, offset: 0x87D31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1A0, symBinAddr: 0x385E8, symSize: 0x88 } - - { offsetInCU: 0x675, offset: 0x87EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x228, symBinAddr: 0x38670, symSize: 0x144 } - - { offsetInCU: 0xA16, offset: 0x8825F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x36C, symBinAddr: 0x387B4, symSize: 0x500 } - - { offsetInCU: 0xEB9, offset: 0x88702, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x8AC, symBinAddr: 0x38CB4, symSize: 0x30 } - - { offsetInCU: 0xECD, offset: 0x88716, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0x8DC, symBinAddr: 0x38CE4, symSize: 0x30 } - - { offsetInCU: 0xEE1, offset: 0x8872A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0x90C, symBinAddr: 0x38D14, symSize: 0x64 } - - { offsetInCU: 0xEF5, offset: 0x8873E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0x970, symBinAddr: 0x38D78, symSize: 0x8C } - - { offsetInCU: 0xF09, offset: 0x88752, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x9FC, symBinAddr: 0x38E04, symSize: 0xC } - - { offsetInCU: 0xF1D, offset: 0x88766, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xA08, symBinAddr: 0x38E10, symSize: 0x6C } - - { offsetInCU: 0xF31, offset: 0x8877A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xA74, symBinAddr: 0x38E7C, symSize: 0x5C } - - { offsetInCU: 0xF45, offset: 0x8878E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xAD0, symBinAddr: 0x38ED8, symSize: 0x54 } - - { offsetInCU: 0xF59, offset: 0x887A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xB24, symBinAddr: 0x38F2C, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x88AF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x18, symBinAddr: 0x38F54, symSize: 0x44 } - - { offsetInCU: 0x7A, offset: 0x88B22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x74, symBinAddr: 0x38FB0, symSize: 0x44 } - - { offsetInCU: 0xA9, offset: 0x88B51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x178, symBinAddr: 0x390B4, symSize: 0x44 } - - { offsetInCU: 0xD8, offset: 0x88B80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x264, symBinAddr: 0x391A0, symSize: 0x44 } - - { offsetInCU: 0x107, offset: 0x88BAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x2A8, symBinAddr: 0x391E4, symSize: 0x4 } - - { offsetInCU: 0x1AA, offset: 0x88C52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x391E8, symSize: 0x2F8 } - - { offsetInCU: 0x62C, offset: 0x890D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x5A4, symBinAddr: 0x394E0, symSize: 0x20 } - - { offsetInCU: 0x64A, offset: 0x890F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x5C4, symBinAddr: 0x39500, symSize: 0x68 } - - { offsetInCU: 0x685, offset: 0x8912D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x62C, symBinAddr: 0x39568, symSize: 0x74 } - - { offsetInCU: 0x6C0, offset: 0x89168, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x6A0, symBinAddr: 0x395DC, symSize: 0x30 } - - { offsetInCU: 0x7A8, offset: 0x89250, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x6D0, symBinAddr: 0x3960C, symSize: 0x60 } - - { offsetInCU: 0x7D7, offset: 0x8927F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x730, symBinAddr: 0x3966C, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8940C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x18, symBinAddr: 0x396B0, symSize: 0x44 } - - { offsetInCU: 0x7A, offset: 0x8943B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x74, symBinAddr: 0x3970C, symSize: 0x44 } - - { offsetInCU: 0xA9, offset: 0x8946A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x16C, symBinAddr: 0x39804, symSize: 0x44 } - - { offsetInCU: 0xD8, offset: 0x89499, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x25C, symBinAddr: 0x398F4, symSize: 0x44 } - - { offsetInCU: 0x107, offset: 0x894C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x2B8, symBinAddr: 0x39950, symSize: 0x44 } - - { offsetInCU: 0x136, offset: 0x894F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x3A8, symBinAddr: 0x39A40, symSize: 0x44 } - - { offsetInCU: 0x165, offset: 0x89526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x404, symBinAddr: 0x39A9C, symSize: 0x44 } - - { offsetInCU: 0x194, offset: 0x89555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x448, symBinAddr: 0x39AE0, symSize: 0x4 } - - { offsetInCU: 0x1BF, offset: 0x89580, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x44C, symBinAddr: 0x39AE4, symSize: 0x54 } - - { offsetInCU: 0x1DE, offset: 0x8959F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x4A0, symBinAddr: 0x39B38, symSize: 0x5C } - - { offsetInCU: 0x21D, offset: 0x895DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x4FC, symBinAddr: 0x39B94, symSize: 0x44 } - - { offsetInCU: 0x24C, offset: 0x8960D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x5E8, symBinAddr: 0x39C80, symSize: 0x44 } - - { offsetInCU: 0x389, offset: 0x8974A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x62C, symBinAddr: 0x39CC4, symSize: 0x758 } - - { offsetInCU: 0x1009, offset: 0x8A3CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xD84, symBinAddr: 0x3A41C, symSize: 0x20 } - - { offsetInCU: 0x1027, offset: 0x8A3E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xDA4, symBinAddr: 0x3A43C, symSize: 0xC8 } - - { offsetInCU: 0x1054, offset: 0x8A415, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xE6C, symBinAddr: 0x3A504, symSize: 0x20 } - - { offsetInCU: 0x1070, offset: 0x8A431, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xE8C, symBinAddr: 0x3A524, symSize: 0x30 } - - { offsetInCU: 0x11AA, offset: 0x8A56B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xEBC, symBinAddr: 0x3A554, symSize: 0x4C } - - { offsetInCU: 0x11D9, offset: 0x8A59A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0xF08, symBinAddr: 0x3A5A0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8A778, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A5E0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8A796, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3A600, symSize: 0x48 } - - { offsetInCU: 0x88, offset: 0x8A7B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3A648, symSize: 0x5C } - - { offsetInCU: 0xB1, offset: 0x8A7DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3A6A4, symSize: 0x44 } - - { offsetInCU: 0xE0, offset: 0x8A80D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x120, symBinAddr: 0x3A700, symSize: 0x44 } - - { offsetInCU: 0x10F, offset: 0x8A83C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x17C, symBinAddr: 0x3A75C, symSize: 0x44 } - - { offsetInCU: 0x13E, offset: 0x8A86B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1C0, symBinAddr: 0x3A7A0, symSize: 0x4C } - - { offsetInCU: 0x16D, offset: 0x8A89A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x20C, symBinAddr: 0x3A7EC, symSize: 0x50 } - - { offsetInCU: 0x192, offset: 0x8A8BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x25C, symBinAddr: 0x3A83C, symSize: 0x44 } - - { offsetInCU: 0x1C1, offset: 0x8A8EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x3A880, symSize: 0x4 } - - { offsetInCU: 0x1EC, offset: 0x8A919, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2A4, symBinAddr: 0x3A884, symSize: 0x44 } - - { offsetInCU: 0x21B, offset: 0x8A948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x2F4, symBinAddr: 0x3A8D4, symSize: 0x44 } - - { offsetInCU: 0x24A, offset: 0x8A977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x3EC, symBinAddr: 0x3A9CC, symSize: 0x44 } - - { offsetInCU: 0x279, offset: 0x8A9A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x448, symBinAddr: 0x3AA28, symSize: 0x44 } - - { offsetInCU: 0x2A8, offset: 0x8A9D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x4A4, symBinAddr: 0x3AA84, symSize: 0x44 } - - { offsetInCU: 0x2D7, offset: 0x8AA04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x500, symBinAddr: 0x3AAE0, symSize: 0x44 } - - { offsetInCU: 0x306, offset: 0x8AA33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x544, symBinAddr: 0x3AB24, symSize: 0x48 } - - { offsetInCU: 0x335, offset: 0x8AA62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x58C, symBinAddr: 0x3AB6C, symSize: 0x50 } - - { offsetInCU: 0x374, offset: 0x8AAA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x5DC, symBinAddr: 0x3ABBC, symSize: 0x44 } - - { offsetInCU: 0x393, offset: 0x8AAC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x620, symBinAddr: 0x3AC00, symSize: 0x44 } - - { offsetInCU: 0x3C2, offset: 0x8AAEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x670, symBinAddr: 0x3AC50, symSize: 0x44 } - - { offsetInCU: 0x3F1, offset: 0x8AB1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x6B4, symBinAddr: 0x3AC94, symSize: 0x44 } - - { offsetInCU: 0x420, offset: 0x8AB4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x704, symBinAddr: 0x3ACE4, symSize: 0x44 } - - { offsetInCU: 0x44F, offset: 0x8AB7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x748, symBinAddr: 0x3AD28, symSize: 0x44 } - - { offsetInCU: 0x47E, offset: 0x8ABAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x7DC, symBinAddr: 0x3ADBC, symSize: 0x44 } - - { offsetInCU: 0x4AD, offset: 0x8ABDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x8CC, symBinAddr: 0x3AEAC, symSize: 0x44 } - - { offsetInCU: 0x4DC, offset: 0x8AC09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0x928, symBinAddr: 0x3AF08, symSize: 0x44 } - - { offsetInCU: 0x50B, offset: 0x8AC38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0x984, symBinAddr: 0x3AF64, symSize: 0x44 } - - { offsetInCU: 0x53A, offset: 0x8AC67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xA88, symBinAddr: 0x3B068, symSize: 0x44 } - - { offsetInCU: 0x569, offset: 0x8AC96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xACC, symBinAddr: 0x3B0AC, symSize: 0x48 } - - { offsetInCU: 0x598, offset: 0x8ACC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xB14, symBinAddr: 0x3B0F4, symSize: 0x50 } - - { offsetInCU: 0x5C1, offset: 0x8ACEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xB64, symBinAddr: 0x3B144, symSize: 0x44 } - - { offsetInCU: 0x8F6, offset: 0x8B023, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xBA8, symBinAddr: 0x3B188, symSize: 0xABC } - - { offsetInCU: 0x1523, offset: 0x8BC50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x16D4, symBinAddr: 0x3BCB4, symSize: 0x174 } - - { offsetInCU: 0x1552, offset: 0x8BC7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1848, symBinAddr: 0x3BE28, symSize: 0x20 } - - { offsetInCU: 0x156E, offset: 0x8BC9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1868, symBinAddr: 0x3BE48, symSize: 0x30 } - - { offsetInCU: 0x179B, offset: 0x8BEC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x1898, symBinAddr: 0x3BE78, symSize: 0x9C } - - { offsetInCU: 0x17E0, offset: 0x8BF0D, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1934, symBinAddr: 0x3BF14, symSize: 0x64 } - - { offsetInCU: 0x1838, offset: 0x8BF65, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1998, symBinAddr: 0x3BF78, symSize: 0x34 } - - { offsetInCU: 0x1885, offset: 0x8BFB2, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19CC, symBinAddr: 0x3BFAC, symSize: 0xE0 } - - { offsetInCU: 0x18CF, offset: 0x8BFFC, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1AAC, symBinAddr: 0x3C08C, symSize: 0xA0 } - - { offsetInCU: 0x1907, offset: 0x8C034, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1B70, symBinAddr: 0x3C150, symSize: 0x1C8 } - - { offsetInCU: 0x198D, offset: 0x8C0BA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1D38, symBinAddr: 0x3C318, symSize: 0x1B8 } - - { offsetInCU: 0x1A2F, offset: 0x8C15C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x2260, symBinAddr: 0x3C840, symSize: 0x1C4 } - - { offsetInCU: 0x1AD1, offset: 0x8C1FE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2448, symBinAddr: 0x3CA28, symSize: 0x3AC } - - { offsetInCU: 0x1BC1, offset: 0x8C2EE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x27F4, symBinAddr: 0x3CDD4, symSize: 0x390 } - - { offsetInCU: 0x1CCD, offset: 0x8C3FA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x31F4, symBinAddr: 0x3D7D4, symSize: 0x398 } - - { offsetInCU: 0x1DCE, offset: 0x8C4FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x358C, symBinAddr: 0x3DB6C, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8C817, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DBD0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8C83B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DBD0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8C859, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3DBF0, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8C888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3DC3C, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8C8AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3DC8C, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8C8DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3DCD0, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8C907, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3DCD4, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x8C936, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3DD18, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x8C95F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3DD60, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x8C98E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3DDA4, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x8C9BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3DDF8, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x8C9E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3DE54, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x8CA15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3DE98, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x8CA44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3DEE0, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x8CA83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3DF30, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x8CAA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3DF74, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x8CABE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3DF7C, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x8CAEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3E008, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x8CB07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x458, symBinAddr: 0x3E028, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x8CC8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3E094, symSize: 0x604 } - - { offsetInCU: 0xB78, offset: 0x8D368, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x488, symBinAddr: 0x3E058, symSize: 0x3C } - - { offsetInCU: 0xD5C, offset: 0x8D54C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xAC8, symBinAddr: 0x3E698, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8D7AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3E6C4, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8D7D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3E6C4, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8D7F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3E6E4, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8D81F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3E730, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8D844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3E780, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8D873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3E7C4, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8D89E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3E7C8, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x8D8CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3E80C, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x8D8F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3E854, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x8D925, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3E898, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x8D954, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3E8EC, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x8D97D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3E948, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x8D9AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3E98C, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x8D9DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3E9D4, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x8DA1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3EA24, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x8DA39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3EA68, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x8DA55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3EA70, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x8DA82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3EAFC, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x8DA9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x458, symBinAddr: 0x3EB1C, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x8DC21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3EB88, symSize: 0x5F8 } - - { offsetInCU: 0xB80, offset: 0x8E307, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x488, symBinAddr: 0x3EB4C, symSize: 0x3C } - - { offsetInCU: 0xD7B, offset: 0x8E502, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xABC, symBinAddr: 0x3F180, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8E788, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F1AC, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8E7A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3F1CC, symSize: 0x48 } - - { offsetInCU: 0x88, offset: 0x8E7C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3F214, symSize: 0x5C } - - { offsetInCU: 0xB1, offset: 0x8E7EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3F270, symSize: 0x44 } - - { offsetInCU: 0xE0, offset: 0x8E81D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0x108, symBinAddr: 0x3F2B4, symSize: 0x4C } - - { offsetInCU: 0x10F, offset: 0x8E84C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x154, symBinAddr: 0x3F300, symSize: 0x50 } - - { offsetInCU: 0x134, offset: 0x8E871, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x1A4, symBinAddr: 0x3F350, symSize: 0x44 } - - { offsetInCU: 0x163, offset: 0x8E8A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1E8, symBinAddr: 0x3F394, symSize: 0x54 } - - { offsetInCU: 0x192, offset: 0x8E8CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x23C, symBinAddr: 0x3F3E8, symSize: 0x50 } - - { offsetInCU: 0x1B7, offset: 0x8E8F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x28C, symBinAddr: 0x3F438, symSize: 0x44 } - - { offsetInCU: 0x1E6, offset: 0x8E923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2E8, symBinAddr: 0x3F494, symSize: 0x44 } - - { offsetInCU: 0x215, offset: 0x8E952, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x32C, symBinAddr: 0x3F4D8, symSize: 0x4 } - - { offsetInCU: 0x240, offset: 0x8E97D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x348, symBinAddr: 0x3F4F4, symSize: 0x44 } - - { offsetInCU: 0x26F, offset: 0x8E9AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3A4, symBinAddr: 0x3F550, symSize: 0x44 } - - { offsetInCU: 0x29E, offset: 0x8E9DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x490, symBinAddr: 0x3F63C, symSize: 0x44 } - - { offsetInCU: 0x2BD, offset: 0x8E9FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x4EC, symBinAddr: 0x3F698, symSize: 0x44 } - - { offsetInCU: 0x2EC, offset: 0x8EA29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x5F0, symBinAddr: 0x3F79C, symSize: 0x44 } - - { offsetInCU: 0x31B, offset: 0x8EA58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x634, symBinAddr: 0x3F7E0, symSize: 0x54 } - - { offsetInCU: 0x33A, offset: 0x8EA77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x688, symBinAddr: 0x3F834, symSize: 0x5C } - - { offsetInCU: 0x363, offset: 0x8EAA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x6E4, symBinAddr: 0x3F890, symSize: 0x44 } - - { offsetInCU: 0x392, offset: 0x8EACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x7D4, symBinAddr: 0x3F980, symSize: 0x44 } - - { offsetInCU: 0x3C1, offset: 0x8EAFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x8B4, symBinAddr: 0x3FA60, symSize: 0x44 } - - { offsetInCU: 0x660, offset: 0x8ED9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x8F8, symBinAddr: 0x3FAA4, symSize: 0xAE8 } - - { offsetInCU: 0x114B, offset: 0x8F888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x1450, symBinAddr: 0x405FC, symSize: 0xF8 } - - { offsetInCU: 0x1178, offset: 0x8F8B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x1548, symBinAddr: 0x406F4, symSize: 0x20 } - - { offsetInCU: 0x1194, offset: 0x8F8D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1568, symBinAddr: 0x40714, symSize: 0x30 } - - { offsetInCU: 0x1473, offset: 0x8FBB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x1598, symBinAddr: 0x40744, symSize: 0x74 } - - { offsetInCU: 0x14A2, offset: 0x8FBDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x160C, symBinAddr: 0x407B8, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8FEFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x40804, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8FF22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x40804, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8FF40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x40824, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8FF6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x40870, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8FF94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x408C0, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8FFC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x40904, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8FFEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x40908, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x9001D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x4094C, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x90046, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x40994, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x90075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x409D8, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x900A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x40A2C, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x900CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x40A88, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x900FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x40ACC, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x9012B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x40B14, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x9016A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x40B64, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x90189, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x40BA8, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x901A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x40BB0, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x901D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x40C3C, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x901EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x458, symBinAddr: 0x40C5C, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x90371, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x40CC8, symSize: 0x604 } - - { offsetInCU: 0xB78, offset: 0x90A4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x488, symBinAddr: 0x40C8C, symSize: 0x3C } - - { offsetInCU: 0xD5C, offset: 0x90C33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xAC8, symBinAddr: 0x412CC, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90E95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x412F8, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x90EB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x412F8, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90ED7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x41318, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x90F06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x41364, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x90F2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x413B4, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x90F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x413F8, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x90F85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x413FC, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x90FB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x41440, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x90FDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x41488, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x9100C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x414CC, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x9103B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x41520, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x91064, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x4157C, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x91093, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x415C0, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x910C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x41608, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x91101, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x41658, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x91120, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x4169C, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x9113C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x416A4, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x91169, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x41730, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x91185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x458, symBinAddr: 0x41750, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x91308, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x417BC, symSize: 0x5F8 } - - { offsetInCU: 0xB80, offset: 0x919EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x488, symBinAddr: 0x41780, symSize: 0x3C } - - { offsetInCU: 0xD64, offset: 0x91BD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xABC, symBinAddr: 0x41DB4, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x91E34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x41DE0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x91E58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x41DE0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x91E76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x41E00, symSize: 0x48 } - - { offsetInCU: 0x98, offset: 0x91EA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x41E48, symSize: 0x50 } - - { offsetInCU: 0xD7, offset: 0x91EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x41E98, symSize: 0x44 } - - { offsetInCU: 0xF6, offset: 0x91F03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x41EDC, symSize: 0x4 } - - { offsetInCU: 0x121, offset: 0x91F2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x41EE0, symSize: 0x44 } - - { offsetInCU: 0x150, offset: 0x91F5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x41F24, symSize: 0x48 } - - { offsetInCU: 0x179, offset: 0x91F86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x41F6C, symSize: 0x44 } - - { offsetInCU: 0x1A8, offset: 0x91FB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x41FB0, symSize: 0x54 } - - { offsetInCU: 0x1D7, offset: 0x91FE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x42004, symSize: 0x5C } - - { offsetInCU: 0x200, offset: 0x9200D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x42060, symSize: 0x44 } - - { offsetInCU: 0x22F, offset: 0x9203C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x420A4, symSize: 0x48 } - - { offsetInCU: 0x25E, offset: 0x9206B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x420EC, symSize: 0x50 } - - { offsetInCU: 0x29D, offset: 0x920AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x4213C, symSize: 0x44 } - - { offsetInCU: 0x2BC, offset: 0x920C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x42180, symSize: 0x8 } - - { offsetInCU: 0x2D8, offset: 0x920E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x42188, symSize: 0xA4 } - - { offsetInCU: 0x307, offset: 0x92114, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x44C, symBinAddr: 0x4222C, symSize: 0x20 } - - { offsetInCU: 0x323, offset: 0x92130, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x46C, symBinAddr: 0x4224C, symSize: 0x30 } - - { offsetInCU: 0x4B8, offset: 0x922C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4E8, symBinAddr: 0x422C8, symSize: 0x6CC } - - { offsetInCU: 0xCE2, offset: 0x92AEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x49C, symBinAddr: 0x4227C, symSize: 0x4C } - - { offsetInCU: 0xF34, offset: 0x92D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xC24, symBinAddr: 0x42A04, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x92FCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x42A30, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x92FF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x42A30, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x9300E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x42A50, symSize: 0x48 } - - { offsetInCU: 0x98, offset: 0x9303D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x42A98, symSize: 0x50 } - - { offsetInCU: 0xD7, offset: 0x9307C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x42AE8, symSize: 0x44 } - - { offsetInCU: 0xF6, offset: 0x9309B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x42B2C, symSize: 0x4 } - - { offsetInCU: 0x121, offset: 0x930C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x42B30, symSize: 0x44 } - - { offsetInCU: 0x150, offset: 0x930F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x42B74, symSize: 0x48 } - - { offsetInCU: 0x179, offset: 0x9311E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x42BBC, symSize: 0x44 } - - { offsetInCU: 0x1A8, offset: 0x9314D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x42C00, symSize: 0x54 } - - { offsetInCU: 0x1D7, offset: 0x9317C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x42C54, symSize: 0x5C } - - { offsetInCU: 0x200, offset: 0x931A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x42CB0, symSize: 0x44 } - - { offsetInCU: 0x22F, offset: 0x931D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x42CF4, symSize: 0x48 } - - { offsetInCU: 0x25E, offset: 0x93203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x42D3C, symSize: 0x50 } - - { offsetInCU: 0x29D, offset: 0x93242, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x42D8C, symSize: 0x44 } - - { offsetInCU: 0x2BC, offset: 0x93261, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x42DD0, symSize: 0x8 } - - { offsetInCU: 0x2D8, offset: 0x9327D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x42DD8, symSize: 0xA4 } - - { offsetInCU: 0x307, offset: 0x932AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x44C, symBinAddr: 0x42E7C, symSize: 0x20 } - - { offsetInCU: 0x323, offset: 0x932C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x46C, symBinAddr: 0x42E9C, symSize: 0x30 } - - { offsetInCU: 0x4B8, offset: 0x9345D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4E8, symBinAddr: 0x42F18, symSize: 0x6CC } - - { offsetInCU: 0xCE2, offset: 0x93C87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x49C, symBinAddr: 0x42ECC, symSize: 0x4C } - - { offsetInCU: 0xF50, offset: 0x93EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xC24, symBinAddr: 0x43654, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x941AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x43680, symSize: 0x48 } - - { offsetInCU: 0x7A, offset: 0x941D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x48, symBinAddr: 0x436C8, symSize: 0x5C } - - { offsetInCU: 0xB9, offset: 0x94218, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0xA4, symBinAddr: 0x43724, symSize: 0x44 } - - { offsetInCU: 0xE8, offset: 0x94247, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xE8, symBinAddr: 0x43768, symSize: 0x4C } - - { offsetInCU: 0x107, offset: 0x94266, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x134, symBinAddr: 0x437B4, symSize: 0x50 } - - { offsetInCU: 0x142, offset: 0x942A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x184, symBinAddr: 0x43804, symSize: 0x44 } - - { offsetInCU: 0x171, offset: 0x942D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x43860, symSize: 0x44 } - - { offsetInCU: 0x1A0, offset: 0x942FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x224, symBinAddr: 0x438A4, symSize: 0x4C } - - { offsetInCU: 0x1BF, offset: 0x9431E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x270, symBinAddr: 0x438F0, symSize: 0x50 } - - { offsetInCU: 0x1FA, offset: 0x94359, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2C0, symBinAddr: 0x43940, symSize: 0x44 } - - { offsetInCU: 0x229, offset: 0x94388, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x43984, symSize: 0x4 } - - { offsetInCU: 0x254, offset: 0x943B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x320, symBinAddr: 0x439A0, symSize: 0x44 } - - { offsetInCU: 0x283, offset: 0x943E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x37C, symBinAddr: 0x439FC, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x94411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x468, symBinAddr: 0x43AE8, symSize: 0x44 } - - { offsetInCU: 0x2E1, offset: 0x94440, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x43BE0, symSize: 0x44 } - - { offsetInCU: 0x310, offset: 0x9446F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x43CE4, symSize: 0x44 } - - { offsetInCU: 0x34E, offset: 0x944AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x6A8, symBinAddr: 0x43D28, symSize: 0xE8 } - - { offsetInCU: 0x382, offset: 0x944E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x790, symBinAddr: 0x43E10, symSize: 0xAC } - - { offsetInCU: 0x486, offset: 0x945E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x83C, symBinAddr: 0x43EBC, symSize: 0x778 } - - { offsetInCU: 0x11C4, offset: 0x95323, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0xFB4, symBinAddr: 0x44634, symSize: 0x20 } - - { offsetInCU: 0x11E2, offset: 0x95341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0xFD4, symBinAddr: 0x44654, symSize: 0x2C } - - { offsetInCU: 0x1245, offset: 0x953A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x1000, symBinAddr: 0x44680, symSize: 0x2C } - - { offsetInCU: 0x12AC, offset: 0x9540B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x102C, symBinAddr: 0x446AC, symSize: 0x30 } - - { offsetInCU: 0x12D9, offset: 0x95438, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfcTf4nnnngggngn_n', symObjAddr: 0x10BC, symBinAddr: 0x4473C, symSize: 0x314 } - - { offsetInCU: 0x1551, offset: 0x956B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x105C, symBinAddr: 0x446DC, symSize: 0x60 } - - { offsetInCU: 0x1580, offset: 0x956DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0x13D0, symBinAddr: 0x44A50, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x959B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x44A90, symSize: 0xF4 } - - { offsetInCU: 0x81, offset: 0x95A0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x44A90, symSize: 0xF4 } - - { offsetInCU: 0xF2, offset: 0x95A7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xF4, symBinAddr: 0x44B84, symSize: 0xF0 } - - { offsetInCU: 0x139, offset: 0x95AC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x1E4, symBinAddr: 0x44C74, symSize: 0x48 } - - { offsetInCU: 0x155, offset: 0x95ADF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x22C, symBinAddr: 0x44CBC, symSize: 0x50 } - - { offsetInCU: 0x171, offset: 0x95AFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x27C, symBinAddr: 0x44D0C, symSize: 0x3C } - - { offsetInCU: 0x18D, offset: 0x95B17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x2B8, symBinAddr: 0x44D48, symSize: 0x30 } - - { offsetInCU: 0x1A9, offset: 0x95B33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2E8, symBinAddr: 0x44D78, symSize: 0x3C } - - { offsetInCU: 0x1C5, offset: 0x95B4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x324, symBinAddr: 0x44DB4, symSize: 0x3C } - - { offsetInCU: 0x1E1, offset: 0x95B6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x360, symBinAddr: 0x44DF0, symSize: 0x30 } - - { offsetInCU: 0x1FD, offset: 0x95B87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x390, symBinAddr: 0x44E20, symSize: 0x3C } - - { offsetInCU: 0x219, offset: 0x95BA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x3CC, symBinAddr: 0x44E5C, symSize: 0x3C } - - { offsetInCU: 0x235, offset: 0x95BBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x408, symBinAddr: 0x44E98, symSize: 0x30 } - - { offsetInCU: 0x251, offset: 0x95BDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x438, symBinAddr: 0x44EC8, symSize: 0x3C } - - { offsetInCU: 0x26D, offset: 0x95BF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x474, symBinAddr: 0x44F04, symSize: 0x3C } - - { offsetInCU: 0x289, offset: 0x95C13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x4B0, symBinAddr: 0x44F40, symSize: 0x30 } - - { offsetInCU: 0x2A5, offset: 0x95C2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x4E0, symBinAddr: 0x44F70, symSize: 0x3C } - - { offsetInCU: 0x2C1, offset: 0x95C4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x51C, symBinAddr: 0x44FAC, symSize: 0x3C } - - { offsetInCU: 0x2DD, offset: 0x95C67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x558, symBinAddr: 0x44FE8, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x95C83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x55C, symBinAddr: 0x44FEC, symSize: 0x30 } - - { offsetInCU: 0x315, offset: 0x95C9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x58C, symBinAddr: 0x4501C, symSize: 0x3C } - - { offsetInCU: 0x331, offset: 0x95CBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x5C8, symBinAddr: 0x45058, symSize: 0x3C } - - { offsetInCU: 0x34D, offset: 0x95CD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x604, symBinAddr: 0x45094, symSize: 0xDC } - - { offsetInCU: 0x376, offset: 0x95D00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x6E0, symBinAddr: 0x45170, symSize: 0xE0 } - - { offsetInCU: 0x3A9, offset: 0x95D33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x7C0, symBinAddr: 0x45250, symSize: 0x26C } - - { offsetInCU: 0x55E, offset: 0x95EE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0xA2C, symBinAddr: 0x454BC, symSize: 0x1C } - - { offsetInCU: 0x599, offset: 0x95F23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0xA48, symBinAddr: 0x454D8, symSize: 0x24 } - - { offsetInCU: 0x6B9, offset: 0x96043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0xA6C, symBinAddr: 0x454FC, symSize: 0x20 } - - { offsetInCU: 0x5E, offset: 0x961C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x45530, symSize: 0x60 } - - { offsetInCU: 0x92, offset: 0x961FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x17C, symBinAddr: 0x456AC, symSize: 0x30 } - - { offsetInCU: 0xA6, offset: 0x9620F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x1AC, symBinAddr: 0x456DC, symSize: 0x78 } - - { offsetInCU: 0x100, offset: 0x96269, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x224, symBinAddr: 0x45754, symSize: 0xBC } - - { offsetInCU: 0x15E, offset: 0x962C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x2E0, symBinAddr: 0x45810, symSize: 0x60 } - - { offsetInCU: 0x186, offset: 0x962EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x340, symBinAddr: 0x45870, symSize: 0x140 } - - { offsetInCU: 0x1EE, offset: 0x96357, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x480, symBinAddr: 0x459B0, symSize: 0x64 } - - { offsetInCU: 0x23A, offset: 0x963A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x4E4, symBinAddr: 0x45A14, symSize: 0x90 } - - { offsetInCU: 0x298, offset: 0x96401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x574, symBinAddr: 0x45AA4, symSize: 0xC4 } - - { offsetInCU: 0x2D8, offset: 0x96441, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x638, symBinAddr: 0x45B68, symSize: 0xDC } - - { offsetInCU: 0x309, offset: 0x96472, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x714, symBinAddr: 0x45C44, symSize: 0x104 } - - { offsetInCU: 0x363, offset: 0x964CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x818, symBinAddr: 0x45D48, symSize: 0xD8 } - - { offsetInCU: 0x3C1, offset: 0x9652A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0x8F0, symBinAddr: 0x45E20, symSize: 0xBC } - - { offsetInCU: 0x40D, offset: 0x96576, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0x9AC, symBinAddr: 0x45EDC, symSize: 0x88 } - - { offsetInCU: 0x46B, offset: 0x965D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xA34, symBinAddr: 0x45F64, symSize: 0x190 } - - { offsetInCU: 0x4C2, offset: 0x9662B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x460F4, symSize: 0xB0 } - - { offsetInCU: 0x50A, offset: 0x96673, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xC74, symBinAddr: 0x461A4, symSize: 0x24 } - - { offsetInCU: 0x545, offset: 0x966AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xC98, symBinAddr: 0x461C8, symSize: 0x2C } - - { offsetInCU: 0x58F, offset: 0x966F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xD0C, symBinAddr: 0x4623C, symSize: 0xE4 } - - { offsetInCU: 0x5AB, offset: 0x96714, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xDF0, symBinAddr: 0x46320, symSize: 0x54 } - - { offsetInCU: 0x5C7, offset: 0x96730, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xE44, symBinAddr: 0x46374, symSize: 0xA8 } - - { offsetInCU: 0x620, offset: 0x96789, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0xEEC, symBinAddr: 0x4641C, symSize: 0x30 } - - { offsetInCU: 0x669, offset: 0x967D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x11E0, symBinAddr: 0x46710, symSize: 0x3C } - - { offsetInCU: 0x69B, offset: 0x96804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfcTf4ngn_n', symObjAddr: 0x1600, symBinAddr: 0x46B30, symSize: 0x140 } - - { offsetInCU: 0x714, offset: 0x9687D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x17A0, symBinAddr: 0x46CD0, symSize: 0x274 } - - { offsetInCU: 0x795, offset: 0x968FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1740, symBinAddr: 0x46C70, symSize: 0x20 } - - { offsetInCU: 0x7A9, offset: 0x96912, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1760, symBinAddr: 0x46C90, symSize: 0x20 } - - { offsetInCU: 0x7BD, offset: 0x96926, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x46CB0, symSize: 0x20 } - - { offsetInCU: 0x7D1, offset: 0x9693A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x1A14, symBinAddr: 0x46F44, symSize: 0x18 } - - { offsetInCU: 0x7E5, offset: 0x9694E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x1A2C, symBinAddr: 0x46F5C, symSize: 0x20 } - - { offsetInCU: 0x7F9, offset: 0x96962, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1A4C, symBinAddr: 0x46F7C, symSize: 0x18 } - - { offsetInCU: 0x80D, offset: 0x96976, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x1AAC, symBinAddr: 0x46FDC, symSize: 0xC } - - { offsetInCU: 0x821, offset: 0x9698A, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1AB8, symBinAddr: 0x46FE8, symSize: 0x10 } - - { offsetInCU: 0x835, offset: 0x9699E, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1AC8, symBinAddr: 0x46FF8, symSize: 0x8 } - - { offsetInCU: 0x849, offset: 0x969B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1AD0, symBinAddr: 0x47000, symSize: 0x10 } - - { offsetInCU: 0x85D, offset: 0x969C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1AE0, symBinAddr: 0x47010, symSize: 0x10 } - - { offsetInCU: 0x871, offset: 0x969DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1AF0, symBinAddr: 0x47020, symSize: 0x10 } - - { offsetInCU: 0x885, offset: 0x969EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1B00, symBinAddr: 0x47030, symSize: 0x10 } - - { offsetInCU: 0x899, offset: 0x96A02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1B10, symBinAddr: 0x47040, symSize: 0x10 } - - { offsetInCU: 0x8AD, offset: 0x96A16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1B20, symBinAddr: 0x47050, symSize: 0x4 } - - { offsetInCU: 0x8C1, offset: 0x96A2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1B24, symBinAddr: 0x47054, symSize: 0x50 } - - { offsetInCU: 0x8D5, offset: 0x96A3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B74, symBinAddr: 0x470A4, symSize: 0xC } - - { offsetInCU: 0x8E9, offset: 0x96A52, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B80, symBinAddr: 0x470B0, symSize: 0xC } - - { offsetInCU: 0x8FD, offset: 0x96A66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1DD0, symBinAddr: 0x47300, symSize: 0x7C } - - { offsetInCU: 0x911, offset: 0x96A7A, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E88, symBinAddr: 0x4737C, symSize: 0x2C } - - { offsetInCU: 0x939, offset: 0x96AA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0xF1C, symBinAddr: 0x4644C, symSize: 0x54 } - - { offsetInCU: 0x955, offset: 0x96ABE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0xF70, symBinAddr: 0x464A0, symSize: 0x44 } - - { offsetInCU: 0x971, offset: 0x96ADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0xFB4, symBinAddr: 0x464E4, symSize: 0x4 } - - { offsetInCU: 0x98D, offset: 0x96AF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0xFB8, symBinAddr: 0x464E8, symSize: 0x4 } - - { offsetInCU: 0x9BE, offset: 0x96B27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xFBC, symBinAddr: 0x464EC, symSize: 0x10 } - - { offsetInCU: 0x9DE, offset: 0x96B47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xFBC, symBinAddr: 0x464EC, symSize: 0x10 } - - { offsetInCU: 0x9EF, offset: 0x96B58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0xFCC, symBinAddr: 0x464FC, symSize: 0x64 } - - { offsetInCU: 0xA0B, offset: 0x96B74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x1030, symBinAddr: 0x46560, symSize: 0x68 } - - { offsetInCU: 0xA27, offset: 0x96B90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1098, symBinAddr: 0x465C8, symSize: 0x50 } - - { offsetInCU: 0xA52, offset: 0x96BBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x1190, symBinAddr: 0x466C0, symSize: 0x50 } - - { offsetInCU: 0xA9E, offset: 0x96C07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x121C, symBinAddr: 0x4674C, symSize: 0x78 } - - { offsetInCU: 0xAF1, offset: 0x96C5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x1294, symBinAddr: 0x467C4, symSize: 0x60 } - - { offsetInCU: 0xB2F, offset: 0x96C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x12F4, symBinAddr: 0x46824, symSize: 0x34 } - - { offsetInCU: 0xB4B, offset: 0x96CB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1328, symBinAddr: 0x46858, symSize: 0x8 } - - { offsetInCU: 0xB7C, offset: 0x96CE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x1330, symBinAddr: 0x46860, symSize: 0x5C } - - { offsetInCU: 0xBAD, offset: 0x96D16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x138C, symBinAddr: 0x468BC, symSize: 0x5C } - - { offsetInCU: 0xBC9, offset: 0x96D32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x13E8, symBinAddr: 0x46918, symSize: 0x70 } - - { offsetInCU: 0xBEC, offset: 0x96D55, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x15FC, symBinAddr: 0x46B2C, symSize: 0x4 } - - { offsetInCU: 0xC15, offset: 0x96D7E, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B8C, symBinAddr: 0x470BC, symSize: 0x178 } -... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS deleted file mode 100644 index 8c3d4b1..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml deleted file mode 100644 index 6c2b159..0000000 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml +++ /dev/null @@ -1,1833 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' -relocations: - - { offsetInCU: 0x34, offset: 0x57F7E, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6D7D0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x57FB3, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6D808, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58018, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E128, symBinAddr: 0x88A20, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58043, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x407C, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5805F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x40C0, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x5807B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x40C4, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x580D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x4380, symSize: 0xDC0 } - - { offsetInCU: 0x45B, offset: 0x58424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x1180, symBinAddr: 0x5140, symSize: 0x384 } - - { offsetInCU: 0x4BE, offset: 0x58487, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1504, symBinAddr: 0x54C4, symSize: 0x20 } - - { offsetInCU: 0x4EB, offset: 0x584B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x16D0, symBinAddr: 0x5690, symSize: 0x6C8 } - - { offsetInCU: 0x7EF, offset: 0x587B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D98, symBinAddr: 0x5D58, symSize: 0x3E4 } - - { offsetInCU: 0xAA5, offset: 0x58A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x217C, symBinAddr: 0x613C, symSize: 0x914 } - - { offsetInCU: 0xF7B, offset: 0x58F44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A90, symBinAddr: 0x6A50, symSize: 0x678 } - - { offsetInCU: 0x1375, offset: 0x5933E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3108, symBinAddr: 0x70C8, symSize: 0x3C18 } - - { offsetInCU: 0x2E6B, offset: 0x5AE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6D30, symBinAddr: 0xACE0, symSize: 0x150 } - - { offsetInCU: 0x2F55, offset: 0x5AF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6E80, symBinAddr: 0xAE30, symSize: 0x304 } - - { offsetInCU: 0x3146, offset: 0x5B10F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7184, symBinAddr: 0xB134, symSize: 0x3C8 } - - { offsetInCU: 0x34AF, offset: 0x5B478, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x754C, symBinAddr: 0xB4FC, symSize: 0x2E4 } - - { offsetInCU: 0x3683, offset: 0x5B64C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x7830, symBinAddr: 0xB7E0, symSize: 0x240 } - - { offsetInCU: 0x3815, offset: 0x5B7DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x7A70, symBinAddr: 0xBA20, symSize: 0x244 } - - { offsetInCU: 0x39A7, offset: 0x5B970, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7CB4, symBinAddr: 0xBC64, symSize: 0x430 } - - { offsetInCU: 0x3B10, offset: 0x5BAD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x80E4, symBinAddr: 0xC094, symSize: 0x650 } - - { offsetInCU: 0x3E23, offset: 0x5BDEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x8734, symBinAddr: 0xC6E4, symSize: 0x224 } - - { offsetInCU: 0x4034, offset: 0x5BFFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9B80, symBinAddr: 0xDB30, symSize: 0x15A8 } - - { offsetInCU: 0x5710, offset: 0x5D6D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4000, symSize: 0x3C } - - { offsetInCU: 0x5740, offset: 0x5D709, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x403C, symSize: 0x40 } - - { offsetInCU: 0x5909, offset: 0x5D8D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1524, symBinAddr: 0x54E4, symSize: 0x8 } - - { offsetInCU: 0x591D, offset: 0x5D8E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x152C, symBinAddr: 0x54EC, symSize: 0x3C } - - { offsetInCU: 0x5931, offset: 0x5D8FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1568, symBinAddr: 0x5528, symSize: 0x168 } - - { offsetInCU: 0x5E77, offset: 0x5DE40, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x89CC, symBinAddr: 0xC97C, symSize: 0xC } - - { offsetInCU: 0x5E8B, offset: 0x5DE54, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x89D8, symBinAddr: 0xC988, symSize: 0x4 } - - { offsetInCU: 0x5E9F, offset: 0x5DE68, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x89DC, symBinAddr: 0xC98C, symSize: 0x20 } - - { offsetInCU: 0x5EB3, offset: 0x5DE7C, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x89FC, symBinAddr: 0xC9AC, symSize: 0x28 } - - { offsetInCU: 0x5FC4, offset: 0x5DF8D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8F34, symBinAddr: 0xCEE4, symSize: 0x2C } - - { offsetInCU: 0x5FD8, offset: 0x5DFA1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F60, symBinAddr: 0xCF10, symSize: 0x2C } - - { offsetInCU: 0x5FEC, offset: 0x5DFB5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8FCC, symBinAddr: 0xCF7C, symSize: 0x2C } - - { offsetInCU: 0x6000, offset: 0x5DFC9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8FF8, symBinAddr: 0xCFA8, symSize: 0x2C } - - { offsetInCU: 0x6035, offset: 0x5DFFE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x9214, symBinAddr: 0xD1C4, symSize: 0x210 } - - { offsetInCU: 0x6087, offset: 0x5E050, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x9424, symBinAddr: 0xD3D4, symSize: 0x68 } - - { offsetInCU: 0x60E8, offset: 0x5E0B1, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x95E8, symBinAddr: 0xD598, symSize: 0x1DC } - - { offsetInCU: 0x6633, offset: 0x5E5FC, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB198, symBinAddr: 0xF148, symSize: 0x40 } - - { offsetInCU: 0x6647, offset: 0x5E610, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB1D8, symBinAddr: 0xF188, symSize: 0x20 } - - { offsetInCU: 0x665B, offset: 0x5E624, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB1F8, symBinAddr: 0xF1A8, symSize: 0x10 } - - { offsetInCU: 0x666F, offset: 0x5E638, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB208, symBinAddr: 0xF1B8, symSize: 0x3C } - - { offsetInCU: 0x6683, offset: 0x5E64C, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB2A4, symBinAddr: 0xF254, symSize: 0x44 } - - { offsetInCU: 0x6697, offset: 0x5E660, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB454, symBinAddr: 0xF404, symSize: 0x10 } - - { offsetInCU: 0x66AB, offset: 0x5E674, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB464, symBinAddr: 0xF414, symSize: 0x10 } - - { offsetInCU: 0x66BF, offset: 0x5E688, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xB474, symBinAddr: 0xF424, symSize: 0x5C } - - { offsetInCU: 0x66D3, offset: 0x5E69C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xB4D0, symBinAddr: 0xF480, symSize: 0x30C } - - { offsetInCU: 0x66E7, offset: 0x5E6B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB7DC, symBinAddr: 0xF78C, symSize: 0x240 } - - { offsetInCU: 0x66FB, offset: 0x5E6C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xBA1C, symBinAddr: 0xF9CC, symSize: 0x70 } - - { offsetInCU: 0x670F, offset: 0x5E6D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xBA8C, symBinAddr: 0xFA3C, symSize: 0x34 } - - { offsetInCU: 0x6723, offset: 0x5E6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xBAC0, symBinAddr: 0xFA70, symSize: 0x174 } - - { offsetInCU: 0x6737, offset: 0x5E700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xBC34, symBinAddr: 0xFBE4, symSize: 0xB4 } - - { offsetInCU: 0x674B, offset: 0x5E714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xBCE8, symBinAddr: 0xFC98, symSize: 0x10 } - - { offsetInCU: 0x675F, offset: 0x5E728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xBCF8, symBinAddr: 0xFCA8, symSize: 0x34 } - - { offsetInCU: 0x6773, offset: 0x5E73C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xBDAC, symBinAddr: 0xFD5C, symSize: 0x5C } - - { offsetInCU: 0x6787, offset: 0x5E750, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBEAC, symBinAddr: 0xFE5C, symSize: 0x2C } - - { offsetInCU: 0x679B, offset: 0x5E764, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBED8, symBinAddr: 0xFE88, symSize: 0x2C } - - { offsetInCU: 0x67AF, offset: 0x5E778, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBF04, symBinAddr: 0xFEB4, symSize: 0x2C } - - { offsetInCU: 0x67C3, offset: 0x5E78C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBF30, symBinAddr: 0xFEE0, symSize: 0x2C } - - { offsetInCU: 0x67D7, offset: 0x5E7A0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBF5C, symBinAddr: 0xFF0C, symSize: 0x2C } - - { offsetInCU: 0x67EB, offset: 0x5E7B4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBF88, symBinAddr: 0xFF38, symSize: 0x2C } - - { offsetInCU: 0x67FF, offset: 0x5E7C8, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBFB4, symBinAddr: 0xFF64, symSize: 0x2C } - - { offsetInCU: 0x6C07, offset: 0x5EBD0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8A38, symBinAddr: 0xC9E8, symSize: 0x14 } - - { offsetInCU: 0x6C45, offset: 0x5EC0E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8A58, symBinAddr: 0xCA08, symSize: 0x8 } - - { offsetInCU: 0x6C94, offset: 0x5EC5D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A60, symBinAddr: 0xCA10, symSize: 0x14 } - - { offsetInCU: 0x6D31, offset: 0x5ECFA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A74, symBinAddr: 0xCA24, symSize: 0x14 } - - { offsetInCU: 0x6DC6, offset: 0x5ED8F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A88, symBinAddr: 0xCA38, symSize: 0x14 } - - { offsetInCU: 0x6E63, offset: 0x5EE2C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A9C, symBinAddr: 0xCA4C, symSize: 0x30 } - - { offsetInCU: 0x6FD6, offset: 0x5EF9F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8ACC, symBinAddr: 0xCA7C, symSize: 0x2C } - - { offsetInCU: 0x7163, offset: 0x5F12C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8AF8, symBinAddr: 0xCAA8, symSize: 0x24 } - - { offsetInCU: 0x724F, offset: 0x5F218, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8B1C, symBinAddr: 0xCACC, symSize: 0x14 } - - { offsetInCU: 0x72B5, offset: 0x5F27E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8B30, symBinAddr: 0xCAE0, symSize: 0x14 } - - { offsetInCU: 0x731B, offset: 0x5F2E4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8B44, symBinAddr: 0xCAF4, symSize: 0x14 } - - { offsetInCU: 0x7390, offset: 0x5F359, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8B58, symBinAddr: 0xCB08, symSize: 0x14 } - - { offsetInCU: 0x7439, offset: 0x5F402, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B6C, symBinAddr: 0xCB1C, symSize: 0x14 } - - { offsetInCU: 0x74B0, offset: 0x5F479, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B80, symBinAddr: 0xCB30, symSize: 0x14 } - - { offsetInCU: 0x7568, offset: 0x5F531, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B94, symBinAddr: 0xCB44, symSize: 0x14 } - - { offsetInCU: 0x7602, offset: 0x5F5CB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8BA8, symBinAddr: 0xCB58, symSize: 0x10 } - - { offsetInCU: 0x766A, offset: 0x5F633, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8BB8, symBinAddr: 0xCB68, symSize: 0x28 } - - { offsetInCU: 0x7686, offset: 0x5F64F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8BE0, symBinAddr: 0xCB90, symSize: 0x14 } - - { offsetInCU: 0x7702, offset: 0x5F6CB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8C10, symBinAddr: 0xCBC0, symSize: 0x14 } - - { offsetInCU: 0x7733, offset: 0x5F6FC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8C24, symBinAddr: 0xCBD4, symSize: 0x14 } - - { offsetInCU: 0x7764, offset: 0x5F72D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8C38, symBinAddr: 0xCBE8, symSize: 0x14 } - - { offsetInCU: 0x7795, offset: 0x5F75E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8C4C, symBinAddr: 0xCBFC, symSize: 0x30 } - - { offsetInCU: 0x77C4, offset: 0x5F78D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C7C, symBinAddr: 0xCC2C, symSize: 0x2C } - - { offsetInCU: 0x77F5, offset: 0x5F7BE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8CA8, symBinAddr: 0xCC58, symSize: 0x24 } - - { offsetInCU: 0x7826, offset: 0x5F7EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8CCC, symBinAddr: 0xCC7C, symSize: 0x14 } - - { offsetInCU: 0x7857, offset: 0x5F820, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8CE0, symBinAddr: 0xCC90, symSize: 0x14 } - - { offsetInCU: 0x7888, offset: 0x5F851, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8CF4, symBinAddr: 0xCCA4, symSize: 0x14 } - - { offsetInCU: 0x78B9, offset: 0x5F882, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8D08, symBinAddr: 0xCCB8, symSize: 0x14 } - - { offsetInCU: 0x78EA, offset: 0x5F8B3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8D1C, symBinAddr: 0xCCCC, symSize: 0x14 } - - { offsetInCU: 0x791B, offset: 0x5F8E4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8D30, symBinAddr: 0xCCE0, symSize: 0x14 } - - { offsetInCU: 0x794C, offset: 0x5F915, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8D44, symBinAddr: 0xCCF4, symSize: 0x14 } - - { offsetInCU: 0x797D, offset: 0x5F946, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8D58, symBinAddr: 0xCD08, symSize: 0x10 } - - { offsetInCU: 0x79AE, offset: 0x5F977, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D68, symBinAddr: 0xCD18, symSize: 0x28 } - - { offsetInCU: 0x79CA, offset: 0x5F993, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D90, symBinAddr: 0xCD40, symSize: 0x14 } - - { offsetInCU: 0x7A0A, offset: 0x5F9D3, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8DB0, symBinAddr: 0xCD60, symSize: 0x40 } - - { offsetInCU: 0x7A88, offset: 0x5FA51, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8DF0, symBinAddr: 0xCDA0, symSize: 0x70 } - - { offsetInCU: 0x7B1B, offset: 0x5FAE4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EA8, symBinAddr: 0xCE58, symSize: 0x4 } - - { offsetInCU: 0x7B3B, offset: 0x5FB04, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EA8, symBinAddr: 0xCE58, symSize: 0x4 } - - { offsetInCU: 0x7B5B, offset: 0x5FB24, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EAC, symBinAddr: 0xCE5C, symSize: 0x4 } - - { offsetInCU: 0x7B7B, offset: 0x5FB44, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EAC, symBinAddr: 0xCE5C, symSize: 0x4 } - - { offsetInCU: 0x7BA1, offset: 0x5FB6A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8EB0, symBinAddr: 0xCE60, symSize: 0x40 } - - { offsetInCU: 0x7C10, offset: 0x5FBD9, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8EF0, symBinAddr: 0xCEA0, symSize: 0x8 } - - { offsetInCU: 0x7C3B, offset: 0x5FC04, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8EF8, symBinAddr: 0xCEA8, symSize: 0x3C } - - { offsetInCU: 0x7C6C, offset: 0x5FC35, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9024, symBinAddr: 0xCFD4, symSize: 0x14 } - - { offsetInCU: 0x7C9D, offset: 0x5FC66, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x9038, symBinAddr: 0xCFE8, symSize: 0x3C } - - { offsetInCU: 0x7CDD, offset: 0x5FCA6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9074, symBinAddr: 0xD024, symSize: 0x88 } - - { offsetInCU: 0x7D5E, offset: 0x5FD27, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9190, symBinAddr: 0xD140, symSize: 0x84 } - - { offsetInCU: 0x7D92, offset: 0x5FD5B, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x97C4, symBinAddr: 0xD774, symSize: 0xB0 } - - { offsetInCU: 0x7E7E, offset: 0x5FE47, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9874, symBinAddr: 0xD824, symSize: 0x1F0 } - - { offsetInCU: 0x80AD, offset: 0x60076, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x80CD, offset: 0x60096, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x80E1, offset: 0x600AA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8101, offset: 0x600CA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8115, offset: 0x600DE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8129, offset: 0x600F2, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x813D, offset: 0x60106, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8220, offset: 0x601E9, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8240, offset: 0x60209, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8254, offset: 0x6021D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8274, offset: 0x6023D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8288, offset: 0x60251, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x829C, offset: 0x60265, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x82B0, offset: 0x60279, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8357, offset: 0x60320, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBFE0, symBinAddr: 0xFF90, symSize: 0x80 } - - { offsetInCU: 0x83E8, offset: 0x603B1, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xC060, symBinAddr: 0x10010, symSize: 0x90 } - - { offsetInCU: 0x85AA, offset: 0x60573, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x9108, symBinAddr: 0xD0B8, symSize: 0x10 } - - { offsetInCU: 0x85C6, offset: 0x6058F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x9118, symBinAddr: 0xD0C8, symSize: 0xC } - - { offsetInCU: 0x8630, offset: 0x605F9, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x9124, symBinAddr: 0xD0D4, symSize: 0x44 } - - { offsetInCU: 0x8659, offset: 0x60622, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x9168, symBinAddr: 0xD118, symSize: 0x28 } - - { offsetInCU: 0x8694, offset: 0x6065D, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x90FC, symBinAddr: 0xD0AC, symSize: 0xC } - - { offsetInCU: 0x8772, offset: 0x6073B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8A4C, symBinAddr: 0xC9FC, symSize: 0xC } - - { offsetInCU: 0x87A4, offset: 0x6076D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8BF4, symBinAddr: 0xCBA4, symSize: 0x10 } - - { offsetInCU: 0x87C0, offset: 0x60789, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8C04, symBinAddr: 0xCBB4, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x60991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100D0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x609B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100D0, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x609E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x100E0, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x60B14, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x1010C, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x60B28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x10120, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x60B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x10130, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x60BB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x10150, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x60C1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0x10168, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x60C97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0x10194, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x60CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0x1019C, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x60CF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0x101C0, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x60D0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0x101CC, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x60D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x20F8, symBinAddr: 0x121F8, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x60D71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0x10228, symSize: 0x41C } - - { offsetInCU: 0x2F5, offset: 0x60DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1428, symBinAddr: 0x11528, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x60DFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1478, symBinAddr: 0x11578, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x60E20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x24CC, symBinAddr: 0x125CC, symSize: 0x145C } - - { offsetInCU: 0x381, offset: 0x60E52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x544, symBinAddr: 0x10644, symSize: 0x110 } - - { offsetInCU: 0x3CD, offset: 0x60E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14C8, symBinAddr: 0x115C8, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x60EF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x14D0, symBinAddr: 0x115D0, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x60FD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x11610, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11670, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61075, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11670, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x61095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x11674, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x610C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x159C, symBinAddr: 0x1169C, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x610E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15A8, symBinAddr: 0x116A8, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x610FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3928, symBinAddr: 0x13A28, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x61142, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvgTf4d_n', symObjAddr: 0x3994, symBinAddr: 0x13A94, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x61176, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1604, symBinAddr: 0x11704, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x611AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1654, symBinAddr: 0x11754, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x611D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x39A0, symBinAddr: 0x13AA0, symSize: 0x258 } - - { offsetInCU: 0x771, offset: 0x61242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x654, symBinAddr: 0x10754, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x6126D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16A4, symBinAddr: 0x117A4, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x61298, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16AC, symBinAddr: 0x117AC, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x612C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16D0, symBinAddr: 0x117D0, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x612E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16DC, symBinAddr: 0x117DC, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x61301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5B54, symBinAddr: 0x15C10, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x61347, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x674, symBinAddr: 0x10774, symSize: 0x18C } - - { offsetInCU: 0x8CB, offset: 0x6139C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1738, symBinAddr: 0x11838, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x613D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1788, symBinAddr: 0x11888, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x613F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x15DA8, symSize: 0x320 } - - { offsetInCU: 0x975, offset: 0x61446, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x800, symBinAddr: 0x10900, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x61471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17C8, symBinAddr: 0x118C8, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x6149C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17D0, symBinAddr: 0x118D0, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x614CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x17F4, symBinAddr: 0x118F4, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x614E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x600C, symBinAddr: 0x160C8, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x6152F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x820, symBinAddr: 0x10920, symSize: 0x164 } - - { offsetInCU: 0xAB3, offset: 0x61584, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1850, symBinAddr: 0x11950, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x615BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1890, symBinAddr: 0x11990, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x615DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6164, symBinAddr: 0x16220, symSize: 0x2D8 } - - { offsetInCU: 0xB51, offset: 0x61622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x984, symBinAddr: 0x10A84, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x6164D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18C8, symBinAddr: 0x119C8, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x61678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x119D0, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x616A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18F4, symBinAddr: 0x119F4, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x616C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1900, symBinAddr: 0x11A00, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x616E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x643C, symBinAddr: 0x164F8, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x61727, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9A4, symBinAddr: 0x10AA4, symSize: 0x1B4 } - - { offsetInCU: 0xCAB, offset: 0x6177C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x195C, symBinAddr: 0x11A5C, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x617B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19CC, symBinAddr: 0x11ACC, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x617D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6584, symBinAddr: 0x16640, symSize: 0x4E8 } - - { offsetInCU: 0xD55, offset: 0x61826, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xB58, symBinAddr: 0x10C58, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x11B2C, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x6187C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A34, symBinAddr: 0x11B34, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x618AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A58, symBinAddr: 0x11B58, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x618C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A64, symBinAddr: 0x11B64, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x618E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B38, symBinAddr: 0x16BF4, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x6192B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB78, symBinAddr: 0x10C78, symSize: 0x204 } - - { offsetInCU: 0xEAF, offset: 0x61980, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x11BC0, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x619B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B24, symBinAddr: 0x11C24, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x619DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6DAC, symBinAddr: 0x16E68, symSize: 0x58C } - - { offsetInCU: 0xF59, offset: 0x61A2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xD7C, symBinAddr: 0x10E7C, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61A75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B74, symBinAddr: 0x11C74, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x61B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1B8C, symBinAddr: 0x11C8C, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x61BE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1BD0, symBinAddr: 0x11CD0, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x61C5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x11D38, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x61C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C40, symBinAddr: 0x11D40, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x61CB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1C64, symBinAddr: 0x11D64, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x61CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C70, symBinAddr: 0x11D70, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x61CEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x737C, symBinAddr: 0x17438, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x61D35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD94, symBinAddr: 0x10E94, symSize: 0x128 } - - { offsetInCU: 0x12B9, offset: 0x61D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1CCC, symBinAddr: 0x11DCC, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x61DC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CF8, symBinAddr: 0x11DF8, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x61DE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7434, symBinAddr: 0x174F0, symSize: 0x1B0 } - - { offsetInCU: 0x136F, offset: 0x61E40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xEBC, symBinAddr: 0x10FBC, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x61E6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1D14, symBinAddr: 0x11E14, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x61E96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D1C, symBinAddr: 0x11E1C, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x61EC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D40, symBinAddr: 0x11E40, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x61EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D4C, symBinAddr: 0x11E4C, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x61EFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7628, symBinAddr: 0x176E4, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x61F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEDC, symBinAddr: 0x10FDC, symSize: 0x1DC } - - { offsetInCU: 0x14C9, offset: 0x61F9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DA8, symBinAddr: 0x11EA8, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x61FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E00, symBinAddr: 0x11F00, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x61FF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x783C, symBinAddr: 0x178F8, symSize: 0x370 } - - { offsetInCU: 0x1567, offset: 0x62038, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x10B8, symBinAddr: 0x111B8, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1E48, symBinAddr: 0x11F48, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x6208E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E50, symBinAddr: 0x11F50, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x620BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E74, symBinAddr: 0x11F74, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x620DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x11F80, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x620F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7BAC, symBinAddr: 0x17C68, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x6213D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10D8, symBinAddr: 0x111D8, symSize: 0x1FC } - - { offsetInCU: 0x16C1, offset: 0x62192, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EDC, symBinAddr: 0x11FDC, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x621C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F24, symBinAddr: 0x12024, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x621EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D80, symBinAddr: 0x17E3C, symSize: 0x390 } - - { offsetInCU: 0x176B, offset: 0x6223C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x12D4, symBinAddr: 0x113D4, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x62267, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FE8, symBinAddr: 0x120E8, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x62292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FF0, symBinAddr: 0x120F0, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x622C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2014, symBinAddr: 0x12114, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x622DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2020, symBinAddr: 0x12120, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x622FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8198, symBinAddr: 0x18254, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x62341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12EC, symBinAddr: 0x113EC, symSize: 0x13C } - - { offsetInCU: 0x18C5, offset: 0x62396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x207C, symBinAddr: 0x1217C, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x623CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x20C0, symBinAddr: 0x121C0, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x623F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8294, symBinAddr: 0x18350, symSize: 0x1DC } - - { offsetInCU: 0x195C, offset: 0x6242D, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3C38, symBinAddr: 0x13CF8, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x62441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3C5C, symBinAddr: 0x13D1C, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62455, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3CA0, symBinAddr: 0x13D60, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x62469, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3CC0, symBinAddr: 0x13D80, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x6247D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3D04, symBinAddr: 0x13DC4, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x62491, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3D48, symBinAddr: 0x13E08, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x624A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3D50, symBinAddr: 0x13E0C, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x624B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x3DA0, symBinAddr: 0x13E5C, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x624CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x3E2C, symBinAddr: 0x13EE8, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x624E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x3E34, symBinAddr: 0x13EF0, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x624F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x3E38, symBinAddr: 0x13EF4, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x62509, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x3E3C, symBinAddr: 0x13EF8, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x6251D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x3E4C, symBinAddr: 0x13F08, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62531, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x4714, symBinAddr: 0x147D0, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x4724, symBinAddr: 0x147E0, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x62559, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4728, symBinAddr: 0x147E4, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x6256D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x476C, symBinAddr: 0x14828, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x62581, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4770, symBinAddr: 0x1482C, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x62595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x47B4, symBinAddr: 0x14870, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x625A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x47B8, symBinAddr: 0x14874, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x625BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x47FC, symBinAddr: 0x148B8, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x625D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4840, symBinAddr: 0x148FC, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x625E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4884, symBinAddr: 0x14940, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x625F9, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x48C8, symBinAddr: 0x14984, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x6260D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x490C, symBinAddr: 0x149C8, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62621, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4950, symBinAddr: 0x14A0C, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62635, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x4994, symBinAddr: 0x14A50, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x62649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x49D8, symBinAddr: 0x14A94, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x6265D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x14AD8, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62671, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x4A60, symBinAddr: 0x14B1C, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x62685, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x14B60, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x62699, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x14BA4, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x626AD, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4B2C, symBinAddr: 0x14BE8, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x626C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4B38, symBinAddr: 0x14BF4, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x626D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4BC8, symBinAddr: 0x14C84, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x626E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4C84, symBinAddr: 0x14D40, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x626FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4C8C, symBinAddr: 0x14D48, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4C90, symBinAddr: 0x14D4C, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4C98, symBinAddr: 0x14D54, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x62739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4CA8, symBinAddr: 0x14D64, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x6274D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4CD0, symBinAddr: 0x14D8C, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4D14, symBinAddr: 0x14DD0, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62775, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4D88, symBinAddr: 0x14E44, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x62789, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4D9C, symBinAddr: 0x14E58, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x6279D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x4DE8, symBinAddr: 0x14EA4, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x627B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x4E30, symBinAddr: 0x14EEC, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x627C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x4E78, symBinAddr: 0x14F34, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x627D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x4E88, symBinAddr: 0x14F44, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x627ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x4EC0, symBinAddr: 0x14F7C, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x4F34, symBinAddr: 0x14FF0, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62815, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4FF0, symBinAddr: 0x150AC, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x62829, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x500C, symBinAddr: 0x150C8, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x6283D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5088, symBinAddr: 0x15144, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x50D0, symBinAddr: 0x1518C, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x5124, symBinAddr: 0x151E0, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x62879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x5134, symBinAddr: 0x151F0, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x6288D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x515C, symBinAddr: 0x15218, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x628A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5198, symBinAddr: 0x15254, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x628B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5204, symBinAddr: 0x152C0, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x628C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5210, symBinAddr: 0x152CC, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x628DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5254, symBinAddr: 0x15310, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x628F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x529C, symBinAddr: 0x15358, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62905, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x52DC, symBinAddr: 0x15398, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x62919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x52EC, symBinAddr: 0x153A8, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x6292D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x533C, symBinAddr: 0x153F8, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x53E8, symBinAddr: 0x154A4, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62955, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x54FC, symBinAddr: 0x155B8, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x62969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5528, symBinAddr: 0x155E4, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x6297D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x55C4, symBinAddr: 0x15680, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x62991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x560C, symBinAddr: 0x156C8, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x629A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x5668, symBinAddr: 0x15724, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x629B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x5678, symBinAddr: 0x15734, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x629CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x56D0, symBinAddr: 0x1578C, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x629E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x5794, symBinAddr: 0x15850, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x629F5, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x58D8, symBinAddr: 0x15994, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62A09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x590C, symBinAddr: 0x159C8, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62A1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x59C0, symBinAddr: 0x15A7C, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62A31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5A08, symBinAddr: 0x15AC4, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x5A6C, symBinAddr: 0x15B28, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5A7C, symBinAddr: 0x15B38, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x5A80, symBinAddr: 0x15B3C, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5AC4, symBinAddr: 0x15B80, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62A95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5AC8, symBinAddr: 0x15B84, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62AA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5B0C, symBinAddr: 0x15BC8, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62ABD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5B10, symBinAddr: 0x15BCC, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62AD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x6A6C, symBinAddr: 0x16B28, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x62AE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x6AB0, symBinAddr: 0x16B6C, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x62AF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6AF4, symBinAddr: 0x16BB0, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x62B0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7338, symBinAddr: 0x173F4, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x62B21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x75E4, symBinAddr: 0x176A0, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x62B35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8110, symBinAddr: 0x181CC, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x62B49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8154, symBinAddr: 0x18210, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x62B5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8470, symBinAddr: 0x1852C, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x62B71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x84B4, symBinAddr: 0x18570, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x62B85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x84F8, symBinAddr: 0x185B4, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x62B99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x85A0, symBinAddr: 0x1865C, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x62BAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x85E4, symBinAddr: 0x186A0, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x62BC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8674, symBinAddr: 0x18730, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x62BD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8730, symBinAddr: 0x187EC, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x62BE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8734, symBinAddr: 0x187F0, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x62BFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8744, symBinAddr: 0x18800, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x62C11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x87D4, symBinAddr: 0x18890, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x62C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8890, symBinAddr: 0x1894C, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x62C39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8894, symBinAddr: 0x18950, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x62C4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x88A4, symBinAddr: 0x18960, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x62C61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8934, symBinAddr: 0x189F0, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x62C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x89F0, symBinAddr: 0x18AAC, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x62C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x89F8, symBinAddr: 0x18AB4, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x62C9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x89FC, symBinAddr: 0x18AB8, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x62CB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A08, symBinAddr: 0x18AC4, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x62CC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8A18, symBinAddr: 0x18AD4, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x62CD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8AA8, symBinAddr: 0x18B64, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x62CED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8B64, symBinAddr: 0x18C20, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x62D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8B68, symBinAddr: 0x18C24, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x62D15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8B80, symBinAddr: 0x18C3C, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x62D29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8B84, symBinAddr: 0x18C40, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x62D3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8B94, symBinAddr: 0x18C50, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x62D51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8BCC, symBinAddr: 0x18C88, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x62D65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8C40, symBinAddr: 0x18CFC, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x62D79, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8D04, symBinAddr: 0x18DC0, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x62D8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x8D28, symBinAddr: 0x18DE4, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x62DA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x8D9C, symBinAddr: 0x18E58, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x62DB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x8DE4, symBinAddr: 0x18EA0, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x62DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x8E38, symBinAddr: 0x18EF4, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x62DDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x8E48, symBinAddr: 0x18F04, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x62DF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x8E80, symBinAddr: 0x18F3C, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x62E05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x8EE4, symBinAddr: 0x18FA0, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x62E19, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8F90, symBinAddr: 0x1904C, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x62E2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x8FA4, symBinAddr: 0x19060, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x62E41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x9008, symBinAddr: 0x190C4, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x62E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9050, symBinAddr: 0x1910C, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x62E69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x90A0, symBinAddr: 0x1915C, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x62E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x90B0, symBinAddr: 0x1916C, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x62E91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x90E8, symBinAddr: 0x191A4, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x62EA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9154, symBinAddr: 0x19210, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x62EB9, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9208, symBinAddr: 0x192C4, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x62ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x922C, symBinAddr: 0x192E8, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x62EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9298, symBinAddr: 0x19354, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x62EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x92E0, symBinAddr: 0x1939C, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x62F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9330, symBinAddr: 0x193EC, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x62F1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9340, symBinAddr: 0x193FC, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x62F31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9344, symBinAddr: 0x19400, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x62F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9388, symBinAddr: 0x19444, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x62F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x938C, symBinAddr: 0x19448, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x62F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x93D0, symBinAddr: 0x1948C, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x62F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x93D4, symBinAddr: 0x19490, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x62F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9418, symBinAddr: 0x194D4, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x62FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x941C, symBinAddr: 0x194D8, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x62FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9460, symBinAddr: 0x1951C, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x62FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9464, symBinAddr: 0x19520, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x62FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x94A8, symBinAddr: 0x19564, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x62FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x94AC, symBinAddr: 0x19568, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x6300D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94F0, symBinAddr: 0x195AC, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x63021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94F4, symBinAddr: 0x195B0, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9538, symBinAddr: 0x195F4, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x63049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x953C, symBinAddr: 0x195F8, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x6305D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9580, symBinAddr: 0x1963C, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x63071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9584, symBinAddr: 0x19640, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x63085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95C8, symBinAddr: 0x19684, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x63099, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95CC, symBinAddr: 0x19688, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x630AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9610, symBinAddr: 0x196CC, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x630C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9614, symBinAddr: 0x196D0, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x630D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9658, symBinAddr: 0x19714, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x630E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x965C, symBinAddr: 0x19718, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x630FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96A0, symBinAddr: 0x1975C, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x63111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96A4, symBinAddr: 0x19760, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x96E8, symBinAddr: 0x197A4, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x63139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x96EC, symBinAddr: 0x197A8, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x6314D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9730, symBinAddr: 0x197EC, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x63161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9734, symBinAddr: 0x197F0, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9778, symBinAddr: 0x19834, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x63189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x97BC, symBinAddr: 0x19878, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x6319D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9800, symBinAddr: 0x198BC, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x631B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9844, symBinAddr: 0x19900, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x631C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x98D4, symBinAddr: 0x19990, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x631D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9990, symBinAddr: 0x19A4C, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x631ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9994, symBinAddr: 0x19A50, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x63201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9AF8, symBinAddr: 0x19BB4, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63215, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9AFC, symBinAddr: 0x19BB8, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x63229, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9B0C, symBinAddr: 0x19BC8, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x6323D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9B9C, symBinAddr: 0x19C58, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x63251, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9C58, symBinAddr: 0x19D14, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63265, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9C5C, symBinAddr: 0x19D18, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x63279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9C6C, symBinAddr: 0x19D28, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x6328D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9C70, symBinAddr: 0x19D2C, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x632A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9CB4, symBinAddr: 0x19D70, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x632B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9CB8, symBinAddr: 0x19D74, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x632C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9CFC, symBinAddr: 0x19DB8, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x632DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9D00, symBinAddr: 0x19DBC, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x632F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D44, symBinAddr: 0x19E00, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63305, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D48, symBinAddr: 0x19E04, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x63319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D8C, symBinAddr: 0x19E48, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x6332D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x19E4C, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x63341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9DD4, symBinAddr: 0x19E90, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63355, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9DD8, symBinAddr: 0x19E94, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x63369, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E1C, symBinAddr: 0x19ED8, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x6337D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9E20, symBinAddr: 0x19EDC, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x63391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E64, symBinAddr: 0x19F20, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x633A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E68, symBinAddr: 0x19F24, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x633B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EAC, symBinAddr: 0x19F68, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x633CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9EB0, symBinAddr: 0x19F6C, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x6341D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0x101D8, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x63439, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0x10200, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x63482, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1534, symBinAddr: 0x11634, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63524, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15B4, symBinAddr: 0x116B4, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15DC, symBinAddr: 0x116DC, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0x117E8, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1710, symBinAddr: 0x11810, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x635A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x11900, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x635BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1828, symBinAddr: 0x11928, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x635DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x190C, symBinAddr: 0x11A0C, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1934, symBinAddr: 0x11A34, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x6361C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A70, symBinAddr: 0x11B70, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x63638, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A98, symBinAddr: 0x11B98, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x63681, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1BF8, symBinAddr: 0x11CF8, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63723, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C7C, symBinAddr: 0x11D7C, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x6373F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1CA4, symBinAddr: 0x11DA4, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1D58, symBinAddr: 0x11E58, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x6377D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1D80, symBinAddr: 0x11E80, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x6379F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E8C, symBinAddr: 0x11F8C, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x637BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1EB4, symBinAddr: 0x11FB4, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x637DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x202C, symBinAddr: 0x1212C, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x637F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2054, symBinAddr: 0x12154, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x639A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A088, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63A22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A088, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63A7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x1A10C, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63A99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x1A148, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x1A19C, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x63AF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x1A1AC, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x63B21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x128, symBinAddr: 0x1A1B0, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x63B3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x13C, symBinAddr: 0x1A1C4, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x63B79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x150, symBinAddr: 0x1A1D8, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x63BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x1A1E8, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x1A1EC, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x63BF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x1A218, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x63C2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x1A24C, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x63C5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x1A25C, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x63C88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x1A260, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x63CA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x1A268, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x63CE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x1A270, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x63D0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x1A280, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x63D39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x1A284, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x63D57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x1A28C, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x63D91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x1A294, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x63DBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x1A2A4, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x63DEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x1A2A8, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x63E08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x1A2D4, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x63E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x1A308, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x63E75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1A318, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x63EA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x1A31C, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x63EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x1A348, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x63EFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x1A37C, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x63F2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x1A38C, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x63F56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x1A390, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x63F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x1A39C, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x63FB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x1A3A8, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x63FE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1A3B8, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x6400B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x1A3BC, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x64029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x1A3C8, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x64067, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x1A3D4, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x64095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x1A3E4, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x640C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x1A3E8, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x640D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x1A418, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x640E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x1A458, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x640FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x1A4FC, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x64111, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x1A600, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x1A62C, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x64139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x1A6C8, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x6414D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x1A710, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x1A770, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64343, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1A780, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x6436E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x1AD24, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x6438A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x1AF94, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x643C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1AA2C, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x643ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x1AF6C, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x64409, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x1AFEC, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64435, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x1B044, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64465, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x1B148, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x64479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x1B1D8, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x6448D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x1B294, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x644A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x1B298, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x644B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x1B2A8, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x644C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x1B338, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x644DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x1B3F4, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x644F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x1B3FC, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64505, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x1B400, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x64519, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x1B408, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x6452D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x1B418, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64541, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x1B41C, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x1B460, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x64569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x1B464, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x646C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1B4B0, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x646F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1B5C4, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64721, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC9printLogs33_05B95674BA567498C742095BB49A0405LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x1B99C, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x1B5E0, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x648A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x1B600, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x648FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x1B68C, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64923, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x1B690, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x6494A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x1B694, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64971, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x1B708, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x649C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1B70C, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64A1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x1B79C, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64A5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x1B800, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64AB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x1B890, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x64B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x1B920, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x64B38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x1B994, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x64B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x1B998, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x64BCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x1BA48, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x64CB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1C114, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x64D0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1C188, symSize: 0x2A4 } - - { offsetInCU: 0x7C0, offset: 0x64E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF7C, symBinAddr: 0x1C42C, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x64EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFE4, symBinAddr: 0x1C494, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x64EF5, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1048, symBinAddr: 0x1C4F8, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x64F09, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1058, symBinAddr: 0x1C508, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x64F1D, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10EC, symBinAddr: 0x1C518, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x64F31, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1134, symBinAddr: 0x1C560, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x64F45, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1148, symBinAddr: 0x1C574, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x64F59, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x118C, symBinAddr: 0x1C5B8, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x64F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11CC, symBinAddr: 0x1C5F8, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x64F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1390, symBinAddr: 0x1C7BC, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x64F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13C0, symBinAddr: 0x1C7EC, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x64FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x157C, symBinAddr: 0x1C9A8, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x65250, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x29C8, symBinAddr: 0x871C0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x6526A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x29D0, symBinAddr: 0x871C8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65278, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1C9E8, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x652B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1CA1C, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x652EA, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1CA5C, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65315, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1CA90, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1CAD0, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x65390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1CB00, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x653B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1CB04, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x653D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1CB28, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x65407, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1CB3C, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x65498, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CBAC, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x654B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CBAC, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x65502, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1CC08, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x6557C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1CC74, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x65606, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1CDAC, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1CE08, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x6564E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1CE68, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x6567D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1CEA4, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x656F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1CFDC, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x6570F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1D028, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x65738, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1D078, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x65767, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1D0B4, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x65792, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1D0BC, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x657AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1D0EC, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x657D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1D128, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x6582D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1D1C0, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x6584A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x818, symBinAddr: 0x1D1F0, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65873, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x85C, symBinAddr: 0x1D234, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x658A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1D270, symSize: 0x68 } - - { offsetInCU: 0x710, offset: 0x65911, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1D2D8, symSize: 0x4 } - - { offsetInCU: 0x779, offset: 0x6597A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x904, symBinAddr: 0x1D2DC, symSize: 0x128 } - - { offsetInCU: 0x853, offset: 0x65A54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xC50, symBinAddr: 0x1D628, symSize: 0x70 } - - { offsetInCU: 0x87D, offset: 0x65A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xCC0, symBinAddr: 0x1D698, symSize: 0x30 } - - { offsetInCU: 0x8A2, offset: 0x65AA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xCF0, symBinAddr: 0x1D6C8, symSize: 0x198 } - - { offsetInCU: 0x957, offset: 0x65B58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xE88, symBinAddr: 0x1D860, symSize: 0x14 } - - { offsetInCU: 0x9A4, offset: 0x65BA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0xE9C, symBinAddr: 0x1D874, symSize: 0x64 } - - { offsetInCU: 0xA40, offset: 0x65C41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0xF30, symBinAddr: 0x1D908, symSize: 0x6C } - - { offsetInCU: 0xB74, offset: 0x65D75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x17D4, symBinAddr: 0x1E1AC, symSize: 0x258 } - - { offsetInCU: 0xC05, offset: 0x65E06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1A90, symBinAddr: 0x1E468, symSize: 0x1A0 } - - { offsetInCU: 0xCED, offset: 0x65EEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1CC78, symSize: 0x88 } - - { offsetInCU: 0xD23, offset: 0x65F24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1CD00, symSize: 0xAC } - - { offsetInCU: 0xD63, offset: 0x65F64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1CDF8, symSize: 0x10 } - - { offsetInCU: 0xD77, offset: 0x65F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1CE58, symSize: 0x10 } - - { offsetInCU: 0xD8B, offset: 0x65F8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1CEA8, symSize: 0x88 } - - { offsetInCU: 0xDC1, offset: 0x65FC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1CF30, symSize: 0xAC } - - { offsetInCU: 0xE01, offset: 0x66002, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1D164, symSize: 0x5C } - - { offsetInCU: 0xEA2, offset: 0x660A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xA2C, symBinAddr: 0x1D404, symSize: 0x224 } - - { offsetInCU: 0xF16, offset: 0x66117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1648, symBinAddr: 0x1E020, symSize: 0x13C } - - { offsetInCU: 0xFE0, offset: 0x661E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0xF00, symBinAddr: 0x1D8D8, symSize: 0x30 } - - { offsetInCU: 0x10CF, offset: 0x662D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x17B0, symBinAddr: 0x1E188, symSize: 0x24 } - - { offsetInCU: 0x111F, offset: 0x66320, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0xF9C, symBinAddr: 0x1D974, symSize: 0x22C } - - { offsetInCU: 0x1311, offset: 0x66512, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x11C8, symBinAddr: 0x1DBA0, symSize: 0xC } - - { offsetInCU: 0x1368, offset: 0x66569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DBAC, symSize: 0x4 } - - { offsetInCU: 0x1384, offset: 0x66585, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DBAC, symSize: 0x4 } - - { offsetInCU: 0x139D, offset: 0x6659E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DBAC, symSize: 0x4 } - - { offsetInCU: 0x13B6, offset: 0x665B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11D8, symBinAddr: 0x1DBB0, symSize: 0x4 } - - { offsetInCU: 0x13CE, offset: 0x665CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11DC, symBinAddr: 0x1DBB4, symSize: 0xB8 } - - { offsetInCU: 0x146E, offset: 0x6666F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12D4, symBinAddr: 0x1DCAC, symSize: 0x4 } - - { offsetInCU: 0x1486, offset: 0x66687, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2478, symBinAddr: 0x1EE40, symSize: 0x7C } - - { offsetInCU: 0x1563, offset: 0x66764, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x1294, symBinAddr: 0x1DC6C, symSize: 0x40 } - - { offsetInCU: 0x1598, offset: 0x66799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg', symObjAddr: 0x12D8, symBinAddr: 0x1DCB0, symSize: 0x2C } - - { offsetInCU: 0x15E3, offset: 0x667E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1304, symBinAddr: 0x1DCDC, symSize: 0x2C } - - { offsetInCU: 0x162E, offset: 0x6682F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1330, symBinAddr: 0x1DD08, symSize: 0x2C } - - { offsetInCU: 0x16BB, offset: 0x668BC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x135C, symBinAddr: 0x1DD34, symSize: 0x198 } - - { offsetInCU: 0x1B6A, offset: 0x66D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x14F4, symBinAddr: 0x1DECC, symSize: 0x13C } - - { offsetInCU: 0x1C67, offset: 0x66E68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1630, symBinAddr: 0x1E008, symSize: 0x18 } - - { offsetInCU: 0x1C7B, offset: 0x66E7C, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1784, symBinAddr: 0x1E15C, symSize: 0x2C } - - { offsetInCU: 0x1C93, offset: 0x66E94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1A2C, symBinAddr: 0x1E404, symSize: 0x44 } - - { offsetInCU: 0x1CA7, offset: 0x66EA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1A70, symBinAddr: 0x1E448, symSize: 0x20 } - - { offsetInCU: 0x1CBB, offset: 0x66EBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1C30, symBinAddr: 0x1E608, symSize: 0x20 } - - { offsetInCU: 0x1CCF, offset: 0x66ED0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1C50, symBinAddr: 0x1E628, symSize: 0x4 } - - { offsetInCU: 0x1CE3, offset: 0x66EE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1C54, symBinAddr: 0x1E62C, symSize: 0x44 } - - { offsetInCU: 0x1CF7, offset: 0x66EF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1C98, symBinAddr: 0x1E670, symSize: 0x4 } - - { offsetInCU: 0x1D0B, offset: 0x66F0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1C9C, symBinAddr: 0x1E674, symSize: 0x44 } - - { offsetInCU: 0x1D1F, offset: 0x66F20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwCP', symObjAddr: 0x1DBC, symBinAddr: 0x1E794, symSize: 0x5C } - - { offsetInCU: 0x1D33, offset: 0x66F34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1E18, symBinAddr: 0x1E7F0, symSize: 0x18 } - - { offsetInCU: 0x1D47, offset: 0x66F48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1E30, symBinAddr: 0x1E808, symSize: 0x14 } - - { offsetInCU: 0x1D5B, offset: 0x66F5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1E44, symBinAddr: 0x1E81C, symSize: 0x18 } - - { offsetInCU: 0x1D6F, offset: 0x66F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwcp', symObjAddr: 0x1E5C, symBinAddr: 0x1E834, symSize: 0x5C } - - { offsetInCU: 0x1D83, offset: 0x66F84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x1EB8, symBinAddr: 0x1E890, symSize: 0x6C } - - { offsetInCU: 0x1D97, offset: 0x66F98, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1F24, symBinAddr: 0x1E8FC, symSize: 0x14 } - - { offsetInCU: 0x1DAB, offset: 0x66FAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x1F38, symBinAddr: 0x1E910, symSize: 0x50 } - - { offsetInCU: 0x1DBF, offset: 0x66FC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x1F88, symBinAddr: 0x1E960, symSize: 0x48 } - - { offsetInCU: 0x1DD3, offset: 0x66FD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x1FD0, symBinAddr: 0x1E9A8, symSize: 0x48 } - - { offsetInCU: 0x1DE7, offset: 0x66FE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x2018, symBinAddr: 0x1E9F0, symSize: 0x8 } - - { offsetInCU: 0x1DFB, offset: 0x66FFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2020, symBinAddr: 0x1E9F8, symSize: 0x4 } - - { offsetInCU: 0x1E0F, offset: 0x67010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2024, symBinAddr: 0x1E9FC, symSize: 0x8 } - - { offsetInCU: 0x1E23, offset: 0x67024, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x202C, symBinAddr: 0x1EA04, symSize: 0x10 } - - { offsetInCU: 0x1E37, offset: 0x67038, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2114, symBinAddr: 0x1EADC, symSize: 0x90 } - - { offsetInCU: 0x1E4B, offset: 0x6704C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x21A4, symBinAddr: 0x1EB6C, symSize: 0xBC } - - { offsetInCU: 0x1E5F, offset: 0x67060, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2260, symBinAddr: 0x1EC28, symSize: 0x4 } - - { offsetInCU: 0x1E73, offset: 0x67074, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2264, symBinAddr: 0x1EC2C, symSize: 0x10 } - - { offsetInCU: 0x1E87, offset: 0x67088, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x2274, symBinAddr: 0x1EC3C, symSize: 0x90 } - - { offsetInCU: 0x1E9B, offset: 0x6709C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2304, symBinAddr: 0x1ECCC, symSize: 0xBC } - - { offsetInCU: 0x1EAF, offset: 0x670B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x23C0, symBinAddr: 0x1ED88, symSize: 0x8 } - - { offsetInCU: 0x1EC3, offset: 0x670C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x23C8, symBinAddr: 0x1ED90, symSize: 0x4 } - - { offsetInCU: 0x1ED7, offset: 0x670D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x23CC, symBinAddr: 0x1ED94, symSize: 0x8 } - - { offsetInCU: 0x1EEB, offset: 0x670EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x23D4, symBinAddr: 0x1ED9C, symSize: 0x10 } - - { offsetInCU: 0x1F0A, offset: 0x6710B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x240C, symBinAddr: 0x1EDD4, symSize: 0x24 } - - { offsetInCU: 0x1F33, offset: 0x67134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x2518, symBinAddr: 0x1EEE0, symSize: 0x8 } - - { offsetInCU: 0x1F47, offset: 0x67148, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2520, symBinAddr: 0x1EEE8, symSize: 0x10 } - - { offsetInCU: 0x1F5B, offset: 0x6715C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2530, symBinAddr: 0x1EEF8, symSize: 0x8 } - - { offsetInCU: 0x1F6F, offset: 0x67170, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x25BC, symBinAddr: 0x1EF00, symSize: 0x3C } - - { offsetInCU: 0x1FF1, offset: 0x671F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1C9D8, symSize: 0x4 } - - { offsetInCU: 0x200D, offset: 0x6720E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1C9DC, symSize: 0x4 } - - { offsetInCU: 0x2029, offset: 0x6722A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1C9E0, symSize: 0x4 } - - { offsetInCU: 0x2045, offset: 0x67246, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1C9E4, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x67639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1F004, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x6764D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F040, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F0C4, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x6767C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1F1EC, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x676A5, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1F21C, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x676B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1F238, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x676CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1F2D4, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x676E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1F338, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x676F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1F394, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x67709, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1F3A4, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x6771D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1F3D4, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1F3FC, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67745, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1F458, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x67759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1F4DC, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x6776D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1F540, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x67781, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1F59C, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x67795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1F5FC, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x677B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1F60C, symSize: 0x11C } - - { offsetInCU: 0x20B, offset: 0x67801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA90, symBinAddr: 0x1FA94, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA98, symBinAddr: 0x1FA9C, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x67938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAD8, symBinAddr: 0x1FADC, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x679B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB3C, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x679D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB3C, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x679F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB3C, symBinAddr: 0x1FB40, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67A29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB64, symBinAddr: 0x1FB68, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB70, symBinAddr: 0x1FB74, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67A61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF48, symBinAddr: 0x1FF4C, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67AA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xFB4, symBinAddr: 0x1FFB8, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67AD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBCC, symBinAddr: 0x1FBD0, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67B10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC18, symBinAddr: 0x1FC1C, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC0, symBinAddr: 0x1FFC4, symSize: 0x154 } - - { offsetInCU: 0x58D, offset: 0x67B83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x724, symBinAddr: 0x1F728, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x67BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC58, symBinAddr: 0x1FC5C, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x67C38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC70, symBinAddr: 0x1FC74, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x67CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC9C, symBinAddr: 0x1FCA0, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x67CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1FCA8, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x67D0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCC8, symBinAddr: 0x1FCCC, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x67D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCD4, symBinAddr: 0x1FCD8, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x67D46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1264, symBinAddr: 0x201E4, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x67D8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x744, symBinAddr: 0x1F748, symSize: 0x1C8 } - - { offsetInCU: 0x7EB, offset: 0x67DE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD30, symBinAddr: 0x1FD34, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x67E18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD7C, symBinAddr: 0x1FD80, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x67E3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13A0, symBinAddr: 0x20320, symSize: 0x264 } - - { offsetInCU: 0x895, offset: 0x67E8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x90C, symBinAddr: 0x1F910, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x67EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE48, symBinAddr: 0x1FE4C, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x67EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE50, symBinAddr: 0x1FE54, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x67F12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE74, symBinAddr: 0x1FE78, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x67F2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x20C50, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x67F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x92C, symBinAddr: 0x1F930, symSize: 0x164 } - - { offsetInCU: 0x9D3, offset: 0x67FC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xED0, symBinAddr: 0x1FED4, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x68000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF10, symBinAddr: 0x1FF14, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x68023, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E94, symBinAddr: 0x20DA8, symSize: 0x2B8 } - - { offsetInCU: 0xA80, offset: 0x68076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1178, symBinAddr: 0x20118, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x6808A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x11DC, symBinAddr: 0x2015C, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x6809E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x201A0, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x680B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x20584, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x680C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x205C8, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x680DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x206B8, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x680EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x20704, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x68102, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x2070C, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x68116, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x20710, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x6812A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x20718, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x6813E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x20728, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x68152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x20778, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x68166, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x20804, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x6817A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x2080C, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x6818E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x20810, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x681A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x20814, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x681B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x20824, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x681CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x2085C, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x681DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x208C0, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x681F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x2096C, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x68206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x209D0, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x6821A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x20A2C, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x6822E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x20A90, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x68242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x20AA0, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x68256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x20AA4, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x6826A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x20AE8, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x6827E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x20AEC, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x68292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x20B30, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x682A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x20B34, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x682BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x20B78, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x682CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x20B7C, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x682E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x20BC0, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x682F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x20BC4, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x6830A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x20C08, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x6831E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x20C0C, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x68332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x21060, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x68346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x211F8, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x6835A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x211FC, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x6836E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x2120C, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x68382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x21210, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x68396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x21254, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x683AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x21258, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x683BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x2129C, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x683D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x212A0, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x68427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAFC, symBinAddr: 0x1FB00, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x684C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB7C, symBinAddr: 0x1FB80, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x684E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBA4, symBinAddr: 0x1FBA8, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x68507, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCE0, symBinAddr: 0x1FCE4, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x68523, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD08, symBinAddr: 0x1FD0C, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x68545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE80, symBinAddr: 0x1FE84, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x68561, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEA8, symBinAddr: 0x1FEAC, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x686AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x21310, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x686D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x21310, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68705, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x21858, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x6879B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x21880, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x68895, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x218C4, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x688B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x218C4, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x688F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x218DC, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x689D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x21920, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68A57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x21328, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68AD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x216C4, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68AE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x216D4, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68B07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x216E4, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68B25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x21710, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x68B64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x21744, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x68B82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x21754, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x68BAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x21758, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x68BCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x21760, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x68C05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x21768, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x68C33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x21778, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x68C66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x584, symBinAddr: 0x2177C, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x68C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x598, symBinAddr: 0x21790, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x68CAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x217A4, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x68CC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x217D0, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x68CF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x217FC, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x68D11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x21804, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x68D4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x2180C, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x68D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x2181C, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x68D96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x21820, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x68DB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x21828, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x68DF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x21830, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x68E1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x21840, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x68E49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x21844, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x68E77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x21854, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x68EB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x21988, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x68ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x2198C, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x68EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x219D0, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x68EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x21A00, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x68F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x21A7C, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x68F1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x21C00, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x68F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x21F94, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x68F61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x21FC4, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x68F75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x21FF0, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x68F89, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x22024, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x68F9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x22068, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x68FB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x22214, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x68FC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x2225C, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x68FD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x222D4, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x68FED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x222E4, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x69001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x22318, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x69015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x22320, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x69029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x22354, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x6903D, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x223A8, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x69051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x223BC, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x69065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x223F8, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x69079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x22440, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x6908D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x22480, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x690A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x22490, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x690B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x224C8, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x690C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x22534, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x690DD, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x22610, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x690F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x2262C, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x69105, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x226A0, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x69119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x226FC, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x6912D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x22760, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x69141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x22770, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x69155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x22798, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x69169, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x227D4, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x6917D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x22840, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x69191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x22884, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x691A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x228CC, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x691B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x2290C, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x691CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x2291C, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x691E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x22970, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x691F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x229B4, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x69209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x229C4, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x6921D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x22A54, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x69231, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x22B10, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x69245, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x22B18, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x69259, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x22B1C, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x6926D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x22B28, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x692C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x21948, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x6950D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x22B48, symSize: 0x1A0 } - - { offsetInCU: 0x34F, offset: 0x697EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x1A0, symBinAddr: 0x22CE8, symSize: 0x628 } - - { offsetInCU: 0x6AA, offset: 0x69B49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2D3C, symBinAddr: 0x25884, symSize: 0x6F8 } - - { offsetInCU: 0xBCE, offset: 0x6A06D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x850, symBinAddr: 0x23398, symSize: 0x2244 } - - { offsetInCU: 0x1E29, offset: 0x6B2C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB7FC, symBinAddr: 0x2E344, symSize: 0x3CB4 } - - { offsetInCU: 0x39B2, offset: 0x6CE51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xF4B0, symBinAddr: 0x31FF8, symSize: 0x634 } - - { offsetInCU: 0x3F86, offset: 0x6D425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tF', symObjAddr: 0xFB0C, symBinAddr: 0x32654, symSize: 0x40 } - - { offsetInCU: 0x3FAE, offset: 0x6D44D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x1490C, symBinAddr: 0x37454, symSize: 0x3E0 } - - { offsetInCU: 0x413D, offset: 0x6D5DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x1123C, symBinAddr: 0x33D84, symSize: 0x276C } - - { offsetInCU: 0x5871, offset: 0x6ED10, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2A94, symBinAddr: 0x255DC, symSize: 0x2A8 } - - { offsetInCU: 0x5D25, offset: 0x6F1C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x3434, symBinAddr: 0x25F7C, symSize: 0x5D8 } - - { offsetInCU: 0x6058, offset: 0x6F4F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3A0C, symBinAddr: 0x26554, symSize: 0x395C } - - { offsetInCU: 0x7A52, offset: 0x70EF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7368, symBinAddr: 0x29EB0, symSize: 0x278 } - - { offsetInCU: 0x7B69, offset: 0x71008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x7A74, symBinAddr: 0x2A5BC, symSize: 0x17AC } - - { offsetInCU: 0x84C3, offset: 0x71962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x75E0, symBinAddr: 0x2A128, symSize: 0x118 } - - { offsetInCU: 0x852C, offset: 0x719CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x7864, symBinAddr: 0x2A3AC, symSize: 0x1E8 } - - { offsetInCU: 0x85F9, offset: 0x71A98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x7A4C, symBinAddr: 0x2A594, symSize: 0x28 } - - { offsetInCU: 0x8836, offset: 0x71CD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x9274, symBinAddr: 0x2BDBC, symSize: 0x754 } - - { offsetInCU: 0x8C47, offset: 0x720E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA97C, symBinAddr: 0x2D4C4, symSize: 0xE80 } - - { offsetInCU: 0x950F, offset: 0x729AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x99C8, symBinAddr: 0x2C510, symSize: 0xBAC } - - { offsetInCU: 0x9F70, offset: 0x7340F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xFF78, symBinAddr: 0x32AC0, symSize: 0x12C4 } - - { offsetInCU: 0xAFC3, offset: 0x74462, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x185D0, symBinAddr: 0x3B048, symSize: 0xBD0 } - - { offsetInCU: 0xBCEA, offset: 0x75189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x139A8, symBinAddr: 0x364F0, symSize: 0xF64 } - - { offsetInCU: 0xC618, offset: 0x75AB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x14CEC, symBinAddr: 0x37834, symSize: 0x208 } - - { offsetInCU: 0xC6AE, offset: 0x75B4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14EF4, symBinAddr: 0x37A3C, symSize: 0x290 } - - { offsetInCU: 0xC79F, offset: 0x75C3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x15194, symBinAddr: 0x37CDC, symSize: 0xA0 } - - { offsetInCU: 0xC834, offset: 0x75CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x15288, symBinAddr: 0x37DD0, symSize: 0x1024 } - - { offsetInCU: 0xD229, offset: 0x766C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x162AC, symBinAddr: 0x38DF4, symSize: 0x4C } - - { offsetInCU: 0xD245, offset: 0x766E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x162F8, symBinAddr: 0x38E40, symSize: 0x150 } - - { offsetInCU: 0xD354, offset: 0x767F3, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x16448, symBinAddr: 0x38F90, symSize: 0x54 } - - { offsetInCU: 0xD3CD, offset: 0x7686C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x164F0, symBinAddr: 0x38FE4, symSize: 0x4C } - - { offsetInCU: 0xD451, offset: 0x768F0, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x1653C, symBinAddr: 0x39030, symSize: 0x50 } - - { offsetInCU: 0xD4CA, offset: 0x76969, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1658C, symBinAddr: 0x39080, symSize: 0x64 } - - { offsetInCU: 0xD50C, offset: 0x769AB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x165F0, symBinAddr: 0x390E4, symSize: 0x30 } - - { offsetInCU: 0xD539, offset: 0x769D8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16620, symBinAddr: 0x39114, symSize: 0x80 } - - { offsetInCU: 0xD5D7, offset: 0x76A76, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x166A0, symBinAddr: 0x39194, symSize: 0x6C } - - { offsetInCU: 0xD671, offset: 0x76B10, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1670C, symBinAddr: 0x39200, symSize: 0x4C } - - { offsetInCU: 0xD6F5, offset: 0x76B94, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x16784, symBinAddr: 0x39278, symSize: 0xE0 } - - { offsetInCU: 0xD73F, offset: 0x76BDE, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x16864, symBinAddr: 0x39358, symSize: 0xC4 } - - { offsetInCU: 0xD76C, offset: 0x76C0B, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16928, symBinAddr: 0x3941C, symSize: 0x174 } - - { offsetInCU: 0xD820, offset: 0x76CBF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x16A9C, symBinAddr: 0x39590, symSize: 0x104 } - - { offsetInCU: 0xD9B3, offset: 0x76E52, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x16BA0, symBinAddr: 0x39694, symSize: 0x128 } - - { offsetInCU: 0xDB56, offset: 0x76FF5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x16CC8, symBinAddr: 0x397BC, symSize: 0x16C } - - { offsetInCU: 0xDD2B, offset: 0x771CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x16E34, symBinAddr: 0x39928, symSize: 0x174 } - - { offsetInCU: 0xDEE6, offset: 0x77385, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16FA8, symBinAddr: 0x39A9C, symSize: 0xFC } - - { offsetInCU: 0xE089, offset: 0x77528, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x170A4, symBinAddr: 0x39B98, symSize: 0xFC } - - { offsetInCU: 0xE22C, offset: 0x776CB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x172A4, symBinAddr: 0x39D98, symSize: 0xFC } - - { offsetInCU: 0xE356, offset: 0x777F5, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x173A0, symBinAddr: 0x39E94, symSize: 0x40 } - - { offsetInCU: 0xE3A3, offset: 0x77842, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x17644, symBinAddr: 0x3A138, symSize: 0x138 } - - { offsetInCU: 0xE442, offset: 0x778E1, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1777C, symBinAddr: 0x3A270, symSize: 0xB4 } - - { offsetInCU: 0xE511, offset: 0x779B0, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x17A7C, symBinAddr: 0x3A530, symSize: 0x18C } - - { offsetInCU: 0xE622, offset: 0x77AC1, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17C08, symBinAddr: 0x3A6BC, symSize: 0xC0 } - - { offsetInCU: 0xE725, offset: 0x77BC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17EE4, symBinAddr: 0x3A95C, symSize: 0x1A0 } - - { offsetInCU: 0xE87A, offset: 0x77D19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x18084, symBinAddr: 0x3AAFC, symSize: 0x380 } - - { offsetInCU: 0xEBA6, offset: 0x78045, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x191A0, symBinAddr: 0x3BC18, symSize: 0x198 } - - { offsetInCU: 0xECC2, offset: 0x78161, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19338, symBinAddr: 0x3BDB0, symSize: 0xC0 } - - { offsetInCU: 0xEFF4, offset: 0x78493, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x193F8, symBinAddr: 0x3BE70, symSize: 0xD38 } - - { offsetInCU: 0x1026F, offset: 0x7970E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A130, symBinAddr: 0x3CBA8, symSize: 0x1C0 } - - { offsetInCU: 0x1041D, offset: 0x798BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A2F0, symBinAddr: 0x3CD68, symSize: 0x1A4 } - - { offsetInCU: 0x10510, offset: 0x799AF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A494, symBinAddr: 0x3CF0C, symSize: 0x84 } - - { offsetInCU: 0x1071D, offset: 0x79BBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1AFB8, symBinAddr: 0x3DA30, symSize: 0x8 } - - { offsetInCU: 0x10731, offset: 0x79BD0, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1B09C, symBinAddr: 0x3DB14, symSize: 0x10 } - - { offsetInCU: 0x10745, offset: 0x79BE4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1B0AC, symBinAddr: 0x3DB24, symSize: 0x14 } - - { offsetInCU: 0x10759, offset: 0x79BF8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1B0C0, symBinAddr: 0x3DB38, symSize: 0x50 } - - { offsetInCU: 0x1076D, offset: 0x79C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1B120, symBinAddr: 0x3DB88, symSize: 0x44 } - - { offsetInCU: 0x10781, offset: 0x79C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1B164, symBinAddr: 0x3DBCC, symSize: 0x30C } - - { offsetInCU: 0x10795, offset: 0x79C34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1B470, symBinAddr: 0x3DED8, symSize: 0x240 } - - { offsetInCU: 0x107A9, offset: 0x79C48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1B6B0, symBinAddr: 0x3E118, symSize: 0x70 } - - { offsetInCU: 0x107BD, offset: 0x79C5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1B720, symBinAddr: 0x3E188, symSize: 0x34 } - - { offsetInCU: 0x107D1, offset: 0x79C70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1B754, symBinAddr: 0x3E1BC, symSize: 0x174 } - - { offsetInCU: 0x107E5, offset: 0x79C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1B8C8, symBinAddr: 0x3E330, symSize: 0xB4 } - - { offsetInCU: 0x1081A, offset: 0x79CB9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1C194, symBinAddr: 0x3E3E4, symSize: 0xC4 } - - { offsetInCU: 0x10890, offset: 0x79D2F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C258, symBinAddr: 0x3E4A8, symSize: 0x78 } - - { offsetInCU: 0x108BD, offset: 0x79D5C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C2D0, symBinAddr: 0x3E520, symSize: 0x80 } - - { offsetInCU: 0x10933, offset: 0x79DD2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C350, symBinAddr: 0x3E5A0, symSize: 0x68 } - - { offsetInCU: 0x10A57, offset: 0x79EF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C3B8, symBinAddr: 0x3E608, symSize: 0x664 } - - { offsetInCU: 0x10EFB, offset: 0x7A39A, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1CA2C, symBinAddr: 0x3EC7C, symSize: 0x4C } - - { offsetInCU: 0x10F0F, offset: 0x7A3AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1CB20, symBinAddr: 0x3ECE8, symSize: 0x8 } - - { offsetInCU: 0x10F23, offset: 0x7A3C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1CB28, symBinAddr: 0x3ECF0, symSize: 0x44 } - - { offsetInCU: 0x10F37, offset: 0x7A3D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1CB6C, symBinAddr: 0x3ED34, symSize: 0x44 } - - { offsetInCU: 0x10F4B, offset: 0x7A3EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1CC18, symBinAddr: 0x3ED9C, symSize: 0x8 } - - { offsetInCU: 0x10F5F, offset: 0x7A3FE, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1CC30, symBinAddr: 0x3EDA4, symSize: 0x3C } - - { offsetInCU: 0x10F73, offset: 0x7A412, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1CC6C, symBinAddr: 0x3EDE0, symSize: 0x34 } - - { offsetInCU: 0x10F87, offset: 0x7A426, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1CD20, symBinAddr: 0x3EE94, symSize: 0x44 } - - { offsetInCU: 0x10FBC, offset: 0x7A45B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CE28, symBinAddr: 0x3EF9C, symSize: 0x48 } - - { offsetInCU: 0x10FDB, offset: 0x7A47A, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CE70, symBinAddr: 0x3EFE4, symSize: 0x64 } - - { offsetInCU: 0x1101E, offset: 0x7A4BD, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CED4, symBinAddr: 0x3F048, symSize: 0x80 } - - { offsetInCU: 0x110B3, offset: 0x7A552, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CF54, symBinAddr: 0x3F0C8, symSize: 0x120 } - - { offsetInCU: 0x1119B, offset: 0x7A63A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1D0BC, symBinAddr: 0x3F230, symSize: 0x48 } - - { offsetInCU: 0x111AF, offset: 0x7A64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1D104, symBinAddr: 0x3F278, symSize: 0x40 } - - { offsetInCU: 0x111C3, offset: 0x7A662, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1D218, symBinAddr: 0x3F38C, symSize: 0x48 } - - { offsetInCU: 0x111D7, offset: 0x7A676, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1D2E0, symBinAddr: 0x3F454, symSize: 0x18 } - - { offsetInCU: 0x111EB, offset: 0x7A68A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1D2F8, symBinAddr: 0x3F46C, symSize: 0x10 } - - { offsetInCU: 0x111FF, offset: 0x7A69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1D308, symBinAddr: 0x3F47C, symSize: 0x34 } - - { offsetInCU: 0x11213, offset: 0x7A6B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D378, symBinAddr: 0x3F4EC, symSize: 0x30 } - - { offsetInCU: 0x112C9, offset: 0x7A768, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x7C8, symBinAddr: 0x23310, symSize: 0x88 } - - { offsetInCU: 0x116A8, offset: 0x7AB47, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xA574, symBinAddr: 0x2D0BC, symSize: 0x408 } - - { offsetInCU: 0x11983, offset: 0x7AE22, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xFDEC, symBinAddr: 0x32934, symSize: 0x18C } - - { offsetInCU: 0x11BA1, offset: 0x7B040, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x15234, symBinAddr: 0x37D7C, symSize: 0x54 } - - { offsetInCU: 0x11D0E, offset: 0x7B1AD, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x17830, symBinAddr: 0x3A324, symSize: 0x110 } - - { offsetInCU: 0x11E4F, offset: 0x7B2EE, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x17980, symBinAddr: 0x3A434, symSize: 0xFC } - - { offsetInCU: 0x11F50, offset: 0x7B3EF, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17D28, symBinAddr: 0x3A7A0, symSize: 0x1BC } - - { offsetInCU: 0x1201E, offset: 0x7B4BD, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18404, symBinAddr: 0x3AE7C, symSize: 0x1CC } - - { offsetInCU: 0x122E1, offset: 0x7B780, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A714, symBinAddr: 0x3D18C, symSize: 0x1DC } - - { offsetInCU: 0x123CD, offset: 0x7B86C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A8F0, symBinAddr: 0x3D368, symSize: 0x11C } - - { offsetInCU: 0x12514, offset: 0x7B9B3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1AA0C, symBinAddr: 0x3D484, symSize: 0xFC } - - { offsetInCU: 0x1265B, offset: 0x7BAFA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1AB08, symBinAddr: 0x3D580, symSize: 0xE4 } - - { offsetInCU: 0x12796, offset: 0x7BC35, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1ABEC, symBinAddr: 0x3D664, symSize: 0x114 } - - { offsetInCU: 0x128D7, offset: 0x7BD76, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AD00, symBinAddr: 0x3D778, symSize: 0xEC } - - { offsetInCU: 0x12A1E, offset: 0x7BEBD, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1AED4, symBinAddr: 0x3D94C, symSize: 0xE4 } - - { offsetInCU: 0x12B7D, offset: 0x7C01C, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CD64, symBinAddr: 0x3EED8, symSize: 0xC4 } - - { offsetInCU: 0x12E23, offset: 0x7C2C2, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x76F8, symBinAddr: 0x2A240, symSize: 0x16C } - - { offsetInCU: 0x27, offset: 0x7C870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F554, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7C888, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F554, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7C89C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3F584, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7C8B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3F670, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7C8C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3F8E8, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7C8D8, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3FD04, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7C8EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3FD0C, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7C900, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3FF54, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7C914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3FF9C, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7C928, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x40058, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7CC5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x40514, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7CD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x40718, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x41328, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D3B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x41868, symSize: 0x9B0 } - - { offsetInCU: 0xD3E, offset: 0x7D747, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x21E4, symBinAddr: 0x42244, symSize: 0x21A4 } - - { offsetInCU: 0x202F, offset: 0x7EA38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE918, symBinAddr: 0x4E978, symSize: 0x6F8 } - - { offsetInCU: 0x23FC, offset: 0x7EE05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4388, symBinAddr: 0x443E8, symSize: 0x1288 } - - { offsetInCU: 0x2F50, offset: 0x7F959, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x5610, symBinAddr: 0x45670, symSize: 0xBF4 } - - { offsetInCU: 0x377E, offset: 0x80187, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x6204, symBinAddr: 0x46264, symSize: 0x418 } - - { offsetInCU: 0x3895, offset: 0x8029E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6F14, symBinAddr: 0x46F74, symSize: 0x20C } - - { offsetInCU: 0x3B41, offset: 0x8054A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7120, symBinAddr: 0x47180, symSize: 0x924 } - - { offsetInCU: 0x42D4, offset: 0x80CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7A44, symBinAddr: 0x47AA4, symSize: 0x2E8 } - - { offsetInCU: 0x440C, offset: 0x80E15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7D2C, symBinAddr: 0x47D8C, symSize: 0x658 } - - { offsetInCU: 0x47FD, offset: 0x81206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x8384, symBinAddr: 0x483E4, symSize: 0x688 } - - { offsetInCU: 0x4ABF, offset: 0x814C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8A0C, symBinAddr: 0x48A6C, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x81586, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8C3C, symBinAddr: 0x48C9C, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x81609, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x8E68, symBinAddr: 0x48EC8, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x81636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x8EE8, symBinAddr: 0x48F48, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD4AC, symBinAddr: 0x4D50C, symSize: 0x7CC } - - { offsetInCU: 0x4FB0, offset: 0x819B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xDC78, symBinAddr: 0x4DCD8, symSize: 0xA24 } - - { offsetInCU: 0x529F, offset: 0x81CA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE69C, symBinAddr: 0x4E6FC, symSize: 0x218 } - - { offsetInCU: 0x5374, offset: 0x81D7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xF010, symBinAddr: 0x4F070, symSize: 0x86C } - - { offsetInCU: 0x567F, offset: 0x82088, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF87C, symBinAddr: 0x4F8DC, symSize: 0xC18 } - - { offsetInCU: 0x596E, offset: 0x82377, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x10494, symBinAddr: 0x504F4, symSize: 0x278 } - - { offsetInCU: 0x5A43, offset: 0x8244C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x1070C, symBinAddr: 0x5076C, symSize: 0x214 } - - { offsetInCU: 0x5F39, offset: 0x82942, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x21B8, symBinAddr: 0x42218, symSize: 0x2C } - - { offsetInCU: 0x6237, offset: 0x82C40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x8F04, symBinAddr: 0x48F64, symSize: 0x20 } - - { offsetInCU: 0x6290, offset: 0x82C99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8F24, symBinAddr: 0x48F84, symSize: 0x8C } - - { offsetInCU: 0x6328, offset: 0x82D31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x8FB0, symBinAddr: 0x49010, symSize: 0x1298 } - - { offsetInCU: 0x6AA0, offset: 0x834A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xA248, symBinAddr: 0x4A2A8, symSize: 0x40 } - - { offsetInCU: 0x6AE4, offset: 0x834ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xA288, symBinAddr: 0x4A2E8, symSize: 0x58 } - - { offsetInCU: 0x6B0F, offset: 0x83518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xA2E0, symBinAddr: 0x4A340, symSize: 0x54 } - - { offsetInCU: 0x6B51, offset: 0x8355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA334, symBinAddr: 0x4A394, symSize: 0x64 } - - { offsetInCU: 0x6B84, offset: 0x8358D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA398, symBinAddr: 0x4A3F8, symSize: 0x4 } - - { offsetInCU: 0x6BAF, offset: 0x835B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA39C, symBinAddr: 0x4A3FC, symSize: 0x78 } - - { offsetInCU: 0x6BF1, offset: 0x835FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA414, symBinAddr: 0x4A474, symSize: 0x90 } - - { offsetInCU: 0x6C33, offset: 0x8363C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA4A4, symBinAddr: 0x4A504, symSize: 0x6C } - - { offsetInCU: 0x6C66, offset: 0x8366F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA510, symBinAddr: 0x4A570, symSize: 0x4 } - - { offsetInCU: 0x6C82, offset: 0x8368B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA514, symBinAddr: 0x4A574, symSize: 0x4 } - - { offsetInCU: 0x6CAD, offset: 0x836B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA518, symBinAddr: 0x4A578, symSize: 0x74 } - - { offsetInCU: 0x6CE0, offset: 0x836E9, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA58C, symBinAddr: 0x4A5EC, symSize: 0x4 } - - { offsetInCU: 0x6CFF, offset: 0x83708, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA590, symBinAddr: 0x4A5F0, symSize: 0x8 } - - { offsetInCU: 0x6D1B, offset: 0x83724, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA590, symBinAddr: 0x4A5F0, symSize: 0x8 } - - { offsetInCU: 0x6D2C, offset: 0x83735, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA598, symBinAddr: 0x4A5F8, symSize: 0xC8 } - - { offsetInCU: 0x6DC9, offset: 0x837D2, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA660, symBinAddr: 0x4A6C0, symSize: 0xCC } - - { offsetInCU: 0x6E75, offset: 0x8387E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA828, symBinAddr: 0x4A888, symSize: 0x1F4 } - - { offsetInCU: 0x6F01, offset: 0x8390A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xAA1C, symBinAddr: 0x4AA7C, symSize: 0x1C4 } - - { offsetInCU: 0x6FB9, offset: 0x839C2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xABE0, symBinAddr: 0x4AC40, symSize: 0x3A0 } - - { offsetInCU: 0x70D9, offset: 0x83AE2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAF80, symBinAddr: 0x4AFE0, symSize: 0x398 } - - { offsetInCU: 0x71F0, offset: 0x83BF9, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB318, symBinAddr: 0x4B378, symSize: 0x1E4 } - - { offsetInCU: 0x7281, offset: 0x83C8A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB4FC, symBinAddr: 0x4B55C, symSize: 0x204 } - - { offsetInCU: 0x7307, offset: 0x83D10, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB700, symBinAddr: 0x4B760, symSize: 0x4C } - - { offsetInCU: 0x73C4, offset: 0x83DCD, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB74C, symBinAddr: 0x4B7AC, symSize: 0x90 } - - { offsetInCU: 0x745F, offset: 0x83E68, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB7DC, symBinAddr: 0x4B83C, symSize: 0x40 } - - { offsetInCU: 0x749C, offset: 0x83EA5, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB81C, symBinAddr: 0x4B87C, symSize: 0x18 } - - { offsetInCU: 0x74EE, offset: 0x83EF7, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB834, symBinAddr: 0x4B894, symSize: 0x3C } - - { offsetInCU: 0x7517, offset: 0x83F20, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB870, symBinAddr: 0x4B8D0, symSize: 0x1C } - - { offsetInCU: 0x75E7, offset: 0x83FF0, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB88C, symBinAddr: 0x4B8EC, symSize: 0xE0 } - - { offsetInCU: 0x770A, offset: 0x84113, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xBA50, symBinAddr: 0x4BAB0, symSize: 0x294 } - - { offsetInCU: 0x7781, offset: 0x8418A, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBF80, symBinAddr: 0x4BFE0, symSize: 0x8C } - - { offsetInCU: 0x7799, offset: 0x841A2, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xC00C, symBinAddr: 0x4C06C, symSize: 0x4C } - - { offsetInCU: 0x77EE, offset: 0x841F7, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xC058, symBinAddr: 0x4C0B8, symSize: 0x154 } - - { offsetInCU: 0x785C, offset: 0x84265, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC1AC, symBinAddr: 0x4C20C, symSize: 0xF0 } - - { offsetInCU: 0x7881, offset: 0x8428A, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC29C, symBinAddr: 0x4C2FC, symSize: 0x214 } - - { offsetInCU: 0x78BA, offset: 0x842C3, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC4B0, symBinAddr: 0x4C510, symSize: 0x78 } - - { offsetInCU: 0x78D2, offset: 0x842DB, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC528, symBinAddr: 0x4C588, symSize: 0x1C } - - { offsetInCU: 0x78EA, offset: 0x842F3, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC544, symBinAddr: 0x4C5A4, symSize: 0x1C } - - { offsetInCU: 0x7902, offset: 0x8430B, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC560, symBinAddr: 0x4C5C0, symSize: 0x1C } - - { offsetInCU: 0x7967, offset: 0x84370, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC57C, symBinAddr: 0x4C5DC, symSize: 0x104 } - - { offsetInCU: 0x7ACA, offset: 0x844D3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC680, symBinAddr: 0x4C6E0, symSize: 0x174 } - - { offsetInCU: 0x7C3A, offset: 0x84643, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC7F4, symBinAddr: 0x4C854, symSize: 0x124 } - - { offsetInCU: 0x7D3A, offset: 0x84743, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC918, symBinAddr: 0x4C978, symSize: 0x120 } - - { offsetInCU: 0x7F86, offset: 0x8498F, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xCA38, symBinAddr: 0x4CA98, symSize: 0x36C } - - { offsetInCU: 0x8574, offset: 0x84F7D, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xCDA4, symBinAddr: 0x4CE04, symSize: 0x290 } - - { offsetInCU: 0x8761, offset: 0x8516A, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xD034, symBinAddr: 0x4D094, symSize: 0x150 } - - { offsetInCU: 0x88C7, offset: 0x852D0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xD184, symBinAddr: 0x4D1E4, symSize: 0x218 } - - { offsetInCU: 0x8913, offset: 0x8531C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD39C, symBinAddr: 0x4D3FC, symSize: 0x14 } - - { offsetInCU: 0x894C, offset: 0x85355, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD3B0, symBinAddr: 0x4D410, symSize: 0xFC } - - { offsetInCU: 0x8A0A, offset: 0x85413, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xE8B4, symBinAddr: 0x4E914, symSize: 0x64 } - - { offsetInCU: 0x8AB6, offset: 0x854BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x10920, symBinAddr: 0x50980, symSize: 0xA78 } - - { offsetInCU: 0x9084, offset: 0x85A8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x11398, symBinAddr: 0x513F8, symSize: 0x104 } - - { offsetInCU: 0x91F0, offset: 0x85BF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x1149C, symBinAddr: 0x514FC, symSize: 0x2D8C } - - { offsetInCU: 0x98B6, offset: 0x862BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x14228, symBinAddr: 0x54288, symSize: 0x120 } - - { offsetInCU: 0x99C7, offset: 0x863D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x14348, symBinAddr: 0x543A8, symSize: 0x80 } - - { offsetInCU: 0x9A4A, offset: 0x86453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x143C8, symBinAddr: 0x54428, symSize: 0x654 } - - { offsetInCU: 0x9DE6, offset: 0x867EF, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14A7C, symBinAddr: 0x54A7C, symSize: 0x10 } - - { offsetInCU: 0x9DFA, offset: 0x86803, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x14A8C, symBinAddr: 0x54A8C, symSize: 0x10 } - - { offsetInCU: 0x9E0E, offset: 0x86817, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x14AE0, symBinAddr: 0x54A9C, symSize: 0x48 } - - { offsetInCU: 0x9E22, offset: 0x8682B, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x14B90, symBinAddr: 0x54AE4, symSize: 0x3C } - - { offsetInCU: 0x9E36, offset: 0x8683F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x14BCC, symBinAddr: 0x54B20, symSize: 0x44 } - - { offsetInCU: 0x9E4A, offset: 0x86853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOf', symObjAddr: 0x14C10, symBinAddr: 0x54B64, symSize: 0x48 } - - { offsetInCU: 0x9E5E, offset: 0x86867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x14CD0, symBinAddr: 0x54BE8, symSize: 0x8 } - - { offsetInCU: 0x9E72, offset: 0x8687B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14CD8, symBinAddr: 0x54BF0, symSize: 0x10 } - - { offsetInCU: 0x9E86, offset: 0x8688F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14CE8, symBinAddr: 0x54C00, symSize: 0x8 } - - { offsetInCU: 0x9E9A, offset: 0x868A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14D70, symBinAddr: 0x54C44, symSize: 0x30 } - - { offsetInCU: 0x9EF2, offset: 0x868FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x14E30, symBinAddr: 0x54D04, symSize: 0x24 } - - { offsetInCU: 0x9F2E, offset: 0x86937, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14E9C, symBinAddr: 0x54D28, symSize: 0x44 } - - { offsetInCU: 0x9F5D, offset: 0x86966, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x40068, symSize: 0x12C } - - { offsetInCU: 0x9F93, offset: 0x8699C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x40194, symSize: 0x58 } - - { offsetInCU: 0xA073, offset: 0x86A7C, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x401EC, symSize: 0x90 } - - { offsetInCU: 0xA09C, offset: 0x86AA5, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x4027C, symSize: 0xA0 } - - { offsetInCU: 0xA1C8, offset: 0x86BD1, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x4031C, symSize: 0x9C } - - { offsetInCU: 0xA2D7, offset: 0x86CE0, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x403B8, symSize: 0x74 } - - { offsetInCU: 0xA35C, offset: 0x86D65, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x4042C, symSize: 0x4 } - - { offsetInCU: 0xA37E, offset: 0x86D87, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x40430, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x87783, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x54E30, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x877AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEE0, symBinAddr: 0x55D10, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x877D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE8, symBinAddr: 0x55D18, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x8780A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF0C, symBinAddr: 0x55D3C, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x87826, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF18, symBinAddr: 0x55D48, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x87842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5C00, symBinAddr: 0x5A9A0, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87888, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x54E50, symSize: 0x18C } - - { offsetInCU: 0x1BC, offset: 0x878DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF74, symBinAddr: 0x55DA4, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x87914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC4, symBinAddr: 0x55DF4, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x87937, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5D2C, symBinAddr: 0x5AACC, symSize: 0x133C } - - { offsetInCU: 0x267, offset: 0x87988, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x1AC, symBinAddr: 0x54FDC, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x879D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1014, symBinAddr: 0x55E44, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x87A3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x102C, symBinAddr: 0x55E5C, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87AB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1058, symBinAddr: 0x55E88, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1060, symBinAddr: 0x55E90, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x87B13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1084, symBinAddr: 0x55EB4, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x87B2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1090, symBinAddr: 0x55EC0, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x87B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B4C, symBinAddr: 0x5BED4, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x87B91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CC, symBinAddr: 0x54FFC, symSize: 0x274 } - - { offsetInCU: 0x4C5, offset: 0x87BE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x10EC, symBinAddr: 0x55F1C, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x87C1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x113C, symBinAddr: 0x55F6C, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x87C40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D28, symBinAddr: 0x5C0B0, symSize: 0xF48 } - - { offsetInCU: 0x569, offset: 0x87C8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x440, symBinAddr: 0x55270, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x87CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x55290, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x87CF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x55290, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x87D45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x55FE0, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x87DAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1214, symBinAddr: 0x56044, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x87DC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x123C, symBinAddr: 0x5606C, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x87DFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1244, symBinAddr: 0x56074, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x87E82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x12AC, symBinAddr: 0x560DC, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x87E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x12B8, symBinAddr: 0x560E8, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x87EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x480, symBinAddr: 0x552B0, symSize: 0x1A0 } - - { offsetInCU: 0x7EF, offset: 0x87F10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1314, symBinAddr: 0x56144, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x87F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x135C, symBinAddr: 0x5618C, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x87F6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8E4C, symBinAddr: 0x5D1D4, symSize: 0x230 } - - { offsetInCU: 0x899, offset: 0x87FBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x620, symBinAddr: 0x55450, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x87FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x139C, symBinAddr: 0x561CC, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x88010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A4, symBinAddr: 0x561D4, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x88041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x13C8, symBinAddr: 0x561F8, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x8805D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x13D4, symBinAddr: 0x56204, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x88079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x907C, symBinAddr: 0x5D404, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x880BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x55470, symSize: 0x278 } - - { offsetInCU: 0x9F3, offset: 0x88114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1430, symBinAddr: 0x56260, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x8814B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1490, symBinAddr: 0x562C0, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x8816E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9328, symBinAddr: 0x5D6B0, symSize: 0x548 } - - { offsetInCU: 0xA9D, offset: 0x881BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x8B8, symBinAddr: 0x556E8, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x88209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14E8, symBinAddr: 0x56318, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x8829A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1500, symBinAddr: 0x56330, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x8837D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1544, symBinAddr: 0x56374, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x883EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x15AC, symBinAddr: 0x563DC, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x8841A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15B4, symBinAddr: 0x563E4, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x8844B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15D8, symBinAddr: 0x56408, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x88467, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15E4, symBinAddr: 0x56414, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x88483, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9870, symBinAddr: 0x5DBF8, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x884C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8D8, symBinAddr: 0x55708, symSize: 0x128 } - - { offsetInCU: 0xDFD, offset: 0x8851E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1640, symBinAddr: 0x56470, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x88555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x166C, symBinAddr: 0x5649C, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x88578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9924, symBinAddr: 0x5DCAC, symSize: 0x1B0 } - - { offsetInCU: 0xEA8, offset: 0x885C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0xA00, symBinAddr: 0x55830, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x885F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x170C, symBinAddr: 0x5653C, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x8861F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1714, symBinAddr: 0x56544, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x88650, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1738, symBinAddr: 0x56568, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x8866C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1744, symBinAddr: 0x56574, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x88688, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9AD4, symBinAddr: 0x5DE5C, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x886CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA20, symBinAddr: 0x55850, symSize: 0x224 } - - { offsetInCU: 0x1002, offset: 0x88723, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x565D0, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x8875A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1810, symBinAddr: 0x56640, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x8877D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9D08, symBinAddr: 0x5E090, symSize: 0x8D8 } - - { offsetInCU: 0x10A6, offset: 0x887C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC44, symBinAddr: 0x55A74, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x88800, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55A94, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x8882E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55A94, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88877, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x19FC, symBinAddr: 0x5682C, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x888BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1A40, symBinAddr: 0x56870, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x888D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1A68, symBinAddr: 0x56898, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x88907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A70, symBinAddr: 0x568A0, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x8896C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1AAC, symBinAddr: 0x568DC, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88988, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AB8, symBinAddr: 0x568E8, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x889A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA6AC, symBinAddr: 0x5EA34, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x889D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC84, symBinAddr: 0x55AB4, symSize: 0x254 } - - { offsetInCU: 0x1304, offset: 0x88A25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B14, symBinAddr: 0x56944, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x88A5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B6C, symBinAddr: 0x5699C, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x88A7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA6FC, symBinAddr: 0x5EA84, symSize: 0x770 } - - { offsetInCU: 0x13D3, offset: 0x88AF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1BBC, symBinAddr: 0x569EC, symSize: 0x1C8 } - - { offsetInCU: 0x142F, offset: 0x88B50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x1D84, symBinAddr: 0x56BB4, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x88B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x59C8, symBinAddr: 0x5A7EC, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x88C02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5A1C, symBinAddr: 0x5A840, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x88C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A9C, symBinAddr: 0x5A8C0, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x88C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5AA4, symBinAddr: 0x5A8C8, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x88D0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5B04, symBinAddr: 0x5A928, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x88D28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x1D94, symBinAddr: 0x56BC4, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x88D3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x1DB4, symBinAddr: 0x56BE4, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x88D50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x1EA8, symBinAddr: 0x56CD8, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x88D64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x222C, symBinAddr: 0x5705C, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x88D7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x2E84, symBinAddr: 0x57CB4, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x88DA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x2EB4, symBinAddr: 0x57CE4, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x88DBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x2EE0, symBinAddr: 0x57D10, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x88DD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x2F0C, symBinAddr: 0x57D3C, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x88DE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x2F38, symBinAddr: 0x57D68, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x88DF8, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2F64, symBinAddr: 0x57D94, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x88E0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x2F6C, symBinAddr: 0x57D9C, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x88E20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x332C, symBinAddr: 0x5815C, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x88E34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3388, symBinAddr: 0x581B8, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x88E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x3474, symBinAddr: 0x582A4, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x88E5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3484, symBinAddr: 0x582B4, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x88E70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x34B4, symBinAddr: 0x582E4, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x88E84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x3594, symBinAddr: 0x583C4, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x88E98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x38CC, symBinAddr: 0x586FC, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x88EAC, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4130, symBinAddr: 0x58F60, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x88EC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4138, symBinAddr: 0x58F68, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x88ED4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x449C, symBinAddr: 0x592CC, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x88EE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x44F8, symBinAddr: 0x59328, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x88EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x45DC, symBinAddr: 0x5940C, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x88F10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x45EC, symBinAddr: 0x5941C, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x88F24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x4690, symBinAddr: 0x594C0, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x88F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x481C, symBinAddr: 0x5964C, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x88F4C, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4BC4, symBinAddr: 0x599F4, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x88F60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4C08, symBinAddr: 0x59A38, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x88F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x4D84, symBinAddr: 0x59BB4, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x88F88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x4DE0, symBinAddr: 0x59C10, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x88F9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x4E74, symBinAddr: 0x59CA4, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x88FB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x4E84, symBinAddr: 0x59CB4, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x88FC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x4EEC, symBinAddr: 0x59D1C, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x88FD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x4FC8, symBinAddr: 0x59DF8, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x88FEC, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5134, symBinAddr: 0x59F64, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x89000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5160, symBinAddr: 0x59F90, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x89014, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x5224, symBinAddr: 0x5A054, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x89028, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x5280, symBinAddr: 0x5A0B0, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x8903C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x52FC, symBinAddr: 0x5A12C, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x89050, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x530C, symBinAddr: 0x5A13C, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x89064, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x5354, symBinAddr: 0x5A184, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x89078, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x5438, symBinAddr: 0x5A268, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x8908C, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x55D0, symBinAddr: 0x5A400, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x890A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x5604, symBinAddr: 0x5A434, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x890B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5700, symBinAddr: 0x5A530, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x890C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x575C, symBinAddr: 0x5A58C, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x890DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x57D8, symBinAddr: 0x5A608, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x890F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x57E8, symBinAddr: 0x5A618, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x89104, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5810, symBinAddr: 0x5A640, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x89118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x584C, symBinAddr: 0x5A67C, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x8912C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x58C4, symBinAddr: 0x5A6E8, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x89140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5908, symBinAddr: 0x5A72C, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x89154, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x5964, symBinAddr: 0x5A788, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x89168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x59B8, symBinAddr: 0x5A7DC, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x8917C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5B0C, symBinAddr: 0x5A930, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x89190, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5B10, symBinAddr: 0x5A934, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x891A4, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5BD8, symBinAddr: 0x5A978, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x891B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x7068, symBinAddr: 0x5BE08, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x891CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x70AC, symBinAddr: 0x5BE4C, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x891E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7B08, symBinAddr: 0x5BE90, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x891F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x8C70, symBinAddr: 0x5CFF8, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x89208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x8CB4, symBinAddr: 0x5D03C, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x8921C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x8CF8, symBinAddr: 0x5D080, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x89230, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x8D3C, symBinAddr: 0x5D0C4, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x89244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x8D80, symBinAddr: 0x5D108, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x89258, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x8DC4, symBinAddr: 0x5D14C, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x8926C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x8E08, symBinAddr: 0x5D190, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x89280, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA5E0, symBinAddr: 0x5E968, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x89294, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xA624, symBinAddr: 0x5E9AC, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x892A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xA668, symBinAddr: 0x5E9F0, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x892BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xAE6C, symBinAddr: 0x5F1F4, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x892D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xAEB0, symBinAddr: 0x5F238, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x892E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xAEF4, symBinAddr: 0x5F27C, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x892F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xAF7C, symBinAddr: 0x5F304, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x8930C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xAFC0, symBinAddr: 0x5F348, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x89320, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB014, symBinAddr: 0x5F38C, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x89334, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB0A4, symBinAddr: 0x5F41C, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x89348, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB160, symBinAddr: 0x5F4D8, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x8935C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB168, symBinAddr: 0x5F4E0, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x89370, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB16C, symBinAddr: 0x5F4E4, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x89384, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB178, symBinAddr: 0x5F4F0, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x89398, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB188, symBinAddr: 0x5F500, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x893AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB218, symBinAddr: 0x5F590, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x893C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB2D4, symBinAddr: 0x5F64C, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x893D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB2D8, symBinAddr: 0x5F650, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x893E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB2E8, symBinAddr: 0x5F660, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x893FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB378, symBinAddr: 0x5F6F0, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x89410, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB434, symBinAddr: 0x5F7AC, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x89424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB438, symBinAddr: 0x5F7B0, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x89438, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB448, symBinAddr: 0x5F7C0, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x8944C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB4D8, symBinAddr: 0x5F850, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x89460, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB594, symBinAddr: 0x5F90C, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x89474, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB598, symBinAddr: 0x5F910, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x89488, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB5A8, symBinAddr: 0x5F920, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x8949C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB638, symBinAddr: 0x5F9B0, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x894B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB6F4, symBinAddr: 0x5FA6C, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x894C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB6FC, symBinAddr: 0x5FA74, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x894D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB700, symBinAddr: 0x5FA78, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x894EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB708, symBinAddr: 0x5FA80, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x89500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB718, symBinAddr: 0x5FA90, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x89514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB7A8, symBinAddr: 0x5FB20, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x89528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB864, symBinAddr: 0x5FBDC, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x8953C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB868, symBinAddr: 0x5FBE0, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x89550, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB878, symBinAddr: 0x5FBF0, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x89564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xB89C, symBinAddr: 0x5FC14, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x89578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xB8BC, symBinAddr: 0x5FC34, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x8958C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xB8FC, symBinAddr: 0x5FC74, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x895A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB90C, symBinAddr: 0x5FC84, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x895B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB910, symBinAddr: 0x5FC88, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x895C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB954, symBinAddr: 0x5FCCC, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x895DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB958, symBinAddr: 0x5FCD0, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x895F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB99C, symBinAddr: 0x5FD14, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x89604, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB9A0, symBinAddr: 0x5FD18, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x89618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB9E4, symBinAddr: 0x5FD5C, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x8962C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB9E8, symBinAddr: 0x5FD60, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x89640, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBA2C, symBinAddr: 0x5FDA4, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBA30, symBinAddr: 0x5FDA8, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x89668, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBA74, symBinAddr: 0x5FDEC, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x8967C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBA78, symBinAddr: 0x5FDF0, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x89690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBABC, symBinAddr: 0x5FE34, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x896A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAC0, symBinAddr: 0x5FE38, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x896B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB04, symBinAddr: 0x5FE7C, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x896CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB08, symBinAddr: 0x5FE80, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x896E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB4C, symBinAddr: 0x5FEC4, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x896F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB50, symBinAddr: 0x5FEC8, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x89708, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB94, symBinAddr: 0x5FF0C, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x8971C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB98, symBinAddr: 0x5FF10, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x89730, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBBDC, symBinAddr: 0x5FF54, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x89744, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBBE0, symBinAddr: 0x5FF58, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89758, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC24, symBinAddr: 0x5FF9C, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x8976C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBC28, symBinAddr: 0x5FFA0, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x89780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC6C, symBinAddr: 0x5FFE4, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x89794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC70, symBinAddr: 0x5FFE8, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x897A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCB4, symBinAddr: 0x6002C, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x897BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCB8, symBinAddr: 0x60030, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x897D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBCFC, symBinAddr: 0x60074, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x897E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD00, symBinAddr: 0x60078, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x897F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBD44, symBinAddr: 0x600BC, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x8980C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBD48, symBinAddr: 0x600C0, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x89820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBD8C, symBinAddr: 0x60104, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x89834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD90, symBinAddr: 0x60108, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x89848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBDD4, symBinAddr: 0x6014C, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x8985C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBDD8, symBinAddr: 0x60150, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x89870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xBE1C, symBinAddr: 0x60194, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xBE60, symBinAddr: 0x601D8, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xBEF0, symBinAddr: 0x60268, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x898AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xBFAC, symBinAddr: 0x60324, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x898C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xBFB0, symBinAddr: 0x60328, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x898D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBFC0, symBinAddr: 0x60338, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x898E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBFC4, symBinAddr: 0x6033C, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x898FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC008, symBinAddr: 0x60380, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x89910, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC00C, symBinAddr: 0x60384, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x89924, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC050, symBinAddr: 0x603C8, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x89938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC054, symBinAddr: 0x603CC, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89966, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF24, symBinAddr: 0x55D54, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89982, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x55D7C, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x899A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x109C, symBinAddr: 0x55ECC, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x899C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x10C4, symBinAddr: 0x55EF4, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x899DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x118C, symBinAddr: 0x55FBC, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x899F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1198, symBinAddr: 0x55FC8, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x89A14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x11A0, symBinAddr: 0x55FD0, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x89A30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x11A8, symBinAddr: 0x55FD8, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89A52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x12C4, symBinAddr: 0x560F4, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x89A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x12EC, symBinAddr: 0x5611C, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x89A90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x13E0, symBinAddr: 0x56210, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x89AAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1408, symBinAddr: 0x56238, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x89AF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x156C, symBinAddr: 0x5639C, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x89B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15F0, symBinAddr: 0x56420, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x89BB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1618, symBinAddr: 0x56448, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x89BD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x56580, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x89BF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1778, symBinAddr: 0x565A8, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x89C2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1878, symBinAddr: 0x566A8, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x89CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1900, symBinAddr: 0x56730, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x89D58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1960, symBinAddr: 0x56790, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x89DAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x19A0, symBinAddr: 0x567D0, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x89E0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1AC4, symBinAddr: 0x568F4, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x89E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1AEC, symBinAddr: 0x5691C, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x89E5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5AC8, symBinAddr: 0x5A8EC, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x8A068, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x60478, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8A08C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x60478, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x8A0AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x60480, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x8A0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x60488, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8A104, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x60498, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x8A12F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x6049C, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x8A14D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x604A4, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x8A189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x604AC, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x8A1B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x604BC, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x8A1E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x604C0, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x8A200, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x604C8, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x8A23A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x604D0, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A268, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x604E0, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A294, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x604E4, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A2A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x60538, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A2BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x6057C, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A3D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6058C, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A41A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6058C, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x605B0, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8A57F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x605D0, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8A5C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x605D0, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8A60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x605F4, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8A72A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x60614, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8A76C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x60614, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8A7BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x60674, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8A7CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x6067C, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8A7E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x606B8, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8A8FB, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x60730, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8A9B8, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x60730, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8ABB1, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x60A98, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8AD61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60AE0, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8ADA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60AE0, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8ADEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x60B04, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8AF30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x60B24, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8AF5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x60BB8, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8AF9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x614F0, symSize: 0x44 } - - { offsetInCU: 0x12D, offset: 0x8B00E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA74, symBinAddr: 0x61558, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8B02A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA80, symBinAddr: 0x61564, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8B058, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x61588, symSize: 0x54 } - - { offsetInCU: 0x209, offset: 0x8B0EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x60B90, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8B115, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF8, symBinAddr: 0x615DC, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8B140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x61680, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8B15C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xBA8, symBinAddr: 0x6168C, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B41D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x61424, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B499, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBCC, symBinAddr: 0x616B0, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8B6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC8, symBinAddr: 0x61AAC, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8B870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1104, symBinAddr: 0x61BE8, symSize: 0xAB0 } - - { offsetInCU: 0xF95, offset: 0x8BE76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1BB4, symBinAddr: 0x62698, symSize: 0x694 } - - { offsetInCU: 0x1345, offset: 0x8C226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2248, symBinAddr: 0x62D2C, symSize: 0x4B0 } - - { offsetInCU: 0x14E4, offset: 0x8C3C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x26F8, symBinAddr: 0x631DC, symSize: 0x668 } - - { offsetInCU: 0x1A13, offset: 0x8C8F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2D60, symBinAddr: 0x63844, symSize: 0x160 } - - { offsetInCU: 0x1B2D, offset: 0x8CA0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2EC0, symBinAddr: 0x639A4, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8CA51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3470, symBinAddr: 0x63EF8, symSize: 0x224 } - - { offsetInCU: 0x1C21, offset: 0x8CB02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3694, symBinAddr: 0x6411C, symSize: 0x25C } - - { offsetInCU: 0x1C86, offset: 0x8CB67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x38F0, symBinAddr: 0x64378, symSize: 0x248 } - - { offsetInCU: 0x1DAE, offset: 0x8CC8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3B7C, symBinAddr: 0x645C0, symSize: 0x2BC } - - { offsetInCU: 0x1EED, offset: 0x8CDCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3E38, symBinAddr: 0x6487C, symSize: 0x1A8 } - - { offsetInCU: 0x1F33, offset: 0x8CE14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3FE0, symBinAddr: 0x64A24, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8D168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4454, symBinAddr: 0x64E98, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D264, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2F3C, symBinAddr: 0x63A20, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D2A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2F40, symBinAddr: 0x63A24, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D2BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2F44, symBinAddr: 0x63A28, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D2CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2F88, symBinAddr: 0x63A6C, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D2E2, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2F8C, symBinAddr: 0x63A70, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D2F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x301C, symBinAddr: 0x63ABC, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D30A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x3020, symBinAddr: 0x63AC0, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D31E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x3074, symBinAddr: 0x63B04, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x3104, symBinAddr: 0x63B94, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x31C0, symBinAddr: 0x63C50, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D35A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x31C8, symBinAddr: 0x63C58, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D36E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x31CC, symBinAddr: 0x63C5C, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x31D4, symBinAddr: 0x63C64, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x31E4, symBinAddr: 0x63C74, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D3AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x3274, symBinAddr: 0x63D04, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x3330, symBinAddr: 0x63DC0, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D3D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3338, symBinAddr: 0x63DC8, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D3E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x333C, symBinAddr: 0x63DCC, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D3FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3348, symBinAddr: 0x63DD8, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D40E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3358, symBinAddr: 0x63DE8, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D422, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3380, symBinAddr: 0x63E08, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x338C, symBinAddr: 0x63E14, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D44A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3390, symBinAddr: 0x63E18, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D45E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x33D4, symBinAddr: 0x63E5C, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x33E0, symBinAddr: 0x63E68, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x33E4, symBinAddr: 0x63E6C, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D49A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3428, symBinAddr: 0x63EB0, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D4B9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3434, symBinAddr: 0x63EBC, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D4F1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3448, symBinAddr: 0x63ED0, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D529, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x345C, symBinAddr: 0x63EE4, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8D58D, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x456C, symBinAddr: 0x64FB0, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8D5A1, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4610, symBinAddr: 0x64FF8, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8D5B5, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x464C, symBinAddr: 0x65034, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8D5C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x46A4, symBinAddr: 0x6507C, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8D5DD, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x46AC, symBinAddr: 0x65084, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8D5F1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x46BC, symBinAddr: 0x65094, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8D605, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x471C, symBinAddr: 0x6509C, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8D619, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x47D0, symBinAddr: 0x65150, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8D648, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8D660, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8D674, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8D688, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8D69C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8D6B0, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x60BE0, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8D72E, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x60C04, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8D7BD, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x60C88, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8D84C, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x60D0C, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8D8E3, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x60D98, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8D9BD, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x60E00, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8DA97, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x60E68, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8DB0C, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x60ED4, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8DB69, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x60F14, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8DBC6, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x60F54, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8DBEF, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x60F98, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8DC42, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x61000, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8DCBE, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x61064, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8DD4F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x610C8, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8DEB5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8DED5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8DEF5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8DF09, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8DF1D, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8DF31, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8DFDA, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x611D4, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8E081, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x6125C, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8E124, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x612DC, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8E210, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8E230, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8E244, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E258, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E26C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E2DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x61534, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E2F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA5C, symBinAddr: 0x61540, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E314, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA64, symBinAddr: 0x61548, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E328, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA6C, symBinAddr: 0x61550, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E342, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB78, symBinAddr: 0x6165C, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E35E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB84, symBinAddr: 0x61668, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E37A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x61670, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E38E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB94, symBinAddr: 0x61678, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8E841, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6516C, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8E855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x652F4, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8E869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x65398, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8E87D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x654F4, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8E891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x656DC, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8E8A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x657C8, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8E8B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x65950, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8E8CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x659E8, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8E8E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x65A80, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8E8F5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x65B08, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8E909, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x65B5C, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8E91D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x65C7C, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8E931, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x65D00, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8E945, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x65DF4, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8E959, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x65F54, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8E96D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x66030, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8E981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x66178, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8E995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x66210, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8E9A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x662DC, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8E9DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x66364, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8EA2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x668FC, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8EA90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17E8, symBinAddr: 0x66914, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8EB0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1814, symBinAddr: 0x66940, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8EB35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x181C, symBinAddr: 0x66948, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8EB66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1840, symBinAddr: 0x6696C, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8EB82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x184C, symBinAddr: 0x66978, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8EB9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2EBC, symBinAddr: 0x67EEC, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8EBE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x66384, symSize: 0x210 } - - { offsetInCU: 0x425, offset: 0x8EC23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1468, symBinAddr: 0x66594, symSize: 0x368 } - - { offsetInCU: 0x456, offset: 0x8EC54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18A8, symBinAddr: 0x669D4, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8EC77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18BC, symBinAddr: 0x669E8, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8ECCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x18D0, symBinAddr: 0x669FC, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8ECFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x66BE0, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8ED25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1ABC, symBinAddr: 0x66BE8, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8ED56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x66C0C, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8ED72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AEC, symBinAddr: 0x66C18, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8ED8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3078, symBinAddr: 0x680A8, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8EDD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x66A1C, symSize: 0x1BC } - - { offsetInCU: 0x62B, offset: 0x8EE29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B48, symBinAddr: 0x66C74, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8EE60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B94, symBinAddr: 0x66CC0, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8EE83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31C4, symBinAddr: 0x681F4, symSize: 0x2A4 } - - { offsetInCU: 0x6D5, offset: 0x8EED3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1BD4, symBinAddr: 0x66D00, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8EEFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x238C, symBinAddr: 0x674B8, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8EF29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2394, symBinAddr: 0x674C0, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8EF5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23B8, symBinAddr: 0x674E4, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8EF76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23C4, symBinAddr: 0x674F0, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8EF92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3468, symBinAddr: 0x68498, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8EFD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BF4, symBinAddr: 0x66D20, symSize: 0x274 } - - { offsetInCU: 0x819, offset: 0x8F017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E68, symBinAddr: 0x66F94, symSize: 0x4A0 } - - { offsetInCU: 0x84A, offset: 0x8F048, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2420, symBinAddr: 0x6754C, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8F06B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2434, symBinAddr: 0x67560, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8F08F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x246C, symBinAddr: 0x67574, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8F0A3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24D0, symBinAddr: 0x675B8, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8F0B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2598, symBinAddr: 0x67638, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8F0CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2620, symBinAddr: 0x6767C, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8F0DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x274C, symBinAddr: 0x677A8, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8F0F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x27A0, symBinAddr: 0x677EC, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8F107, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2830, symBinAddr: 0x6787C, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8F11B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x28EC, symBinAddr: 0x67938, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8F12F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x28F4, symBinAddr: 0x67940, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8F143, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x28F8, symBinAddr: 0x67944, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8F157, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2900, symBinAddr: 0x6794C, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8F16B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2910, symBinAddr: 0x6795C, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8F17F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x29A0, symBinAddr: 0x679EC, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8F193, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2A5C, symBinAddr: 0x67AA8, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8F1A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2A60, symBinAddr: 0x67AAC, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8F1BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2A70, symBinAddr: 0x67ABC, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8F1CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2AA0, symBinAddr: 0x67AEC, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8F1E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2AD0, symBinAddr: 0x67B1C, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8F1F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2B2C, symBinAddr: 0x67B78, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8F20B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2BDC, symBinAddr: 0x67C0C, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8F21F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2C40, symBinAddr: 0x67C70, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8F233, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2C9C, symBinAddr: 0x67CCC, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8F247, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2CFC, symBinAddr: 0x67D2C, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F25B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D0C, symBinAddr: 0x67D3C, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F26F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x67D40, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D54, symBinAddr: 0x67D84, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F297, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D58, symBinAddr: 0x67D88, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F2AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D9C, symBinAddr: 0x67DCC, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F2BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA0, symBinAddr: 0x67DD0, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F2D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE4, symBinAddr: 0x67E14, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F2E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DE8, symBinAddr: 0x67E18, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F2FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E2C, symBinAddr: 0x67E5C, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F30F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E30, symBinAddr: 0x67E60, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F323, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E74, symBinAddr: 0x67EA4, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F337, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E78, symBinAddr: 0x67EA8, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3740, symBinAddr: 0x68770, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F36A, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3784, symBinAddr: 0x687B4, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F37E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x3850, symBinAddr: 0x68880, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F392, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x38E0, symBinAddr: 0x68910, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F3A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x399C, symBinAddr: 0x689CC, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F3BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x39A0, symBinAddr: 0x689D0, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F3CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x39B0, symBinAddr: 0x689E0, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F3E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x39B4, symBinAddr: 0x689E4, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F3F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x39F8, symBinAddr: 0x68A28, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F40A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39FC, symBinAddr: 0x68A2C, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F41E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3A40, symBinAddr: 0x68A70, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F432, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3A44, symBinAddr: 0x68A74, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F460, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1858, symBinAddr: 0x66984, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F47C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1880, symBinAddr: 0x669AC, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F49E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AF8, symBinAddr: 0x66C24, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F4BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x66C4C, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F4DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23D0, symBinAddr: 0x674FC, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F4F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x23F8, symBinAddr: 0x67524, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8F64A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x68AE0, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8F66E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x68AE0, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8F68C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x68B0C, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8F6CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x68B40, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8F6E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x68B50, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8F714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x68B54, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8F732, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x68B80, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8F771, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x68BB4, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8F79F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x68BC4, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8F7CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x68BC8, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8F7DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x68BF8, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8F7F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x68C20, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8F807, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x68C5C, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8F81B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x68CC8, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8F82F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x68D0C, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8F843, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x68D54, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8F857, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x68D94, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8F99D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68DA4, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8F9C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0SSvpZ', symObjAddr: 0x8E88, symBinAddr: 0x88AD0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8F9DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8languageSSvpZ', symObjAddr: 0x8E98, symBinAddr: 0x88AE0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8F9F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7versionSSvpZ', symObjAddr: 0x8EA8, symBinAddr: 0x88AF0, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8FA0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8EB8, symBinAddr: 0x88B00, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8FA29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8EC8, symBinAddr: 0x88B10, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8FA43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8ED8, symBinAddr: 0x88B20, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8FA5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8EE8, symBinAddr: 0x88B30, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8FA77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x8EF8, symBinAddr: 0x88B40, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8FA91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x8F08, symBinAddr: 0x88B50, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8FAAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x8F18, symBinAddr: 0x88B60, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8FAC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x8F28, symBinAddr: 0x88B70, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8FADF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x8F38, symBinAddr: 0x88B80, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8FAF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x8F48, symBinAddr: 0x88B90, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8FB13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x8F58, symBinAddr: 0x88BA0, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8FB2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x8F68, symBinAddr: 0x88BB0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8FB47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x8F78, symBinAddr: 0x88BC0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8FB61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x8F88, symBinAddr: 0x88BD0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x8FB7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x8F98, symBinAddr: 0x88BE0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x8FB95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x8FA8, symBinAddr: 0x88BF0, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x8FBAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x8FB8, symBinAddr: 0x88C00, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x8FBC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x8FC8, symBinAddr: 0x88C10, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x8FBE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x8FD8, symBinAddr: 0x88C20, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x8FBFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x8FE8, symBinAddr: 0x88C30, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x8FC17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x8FF8, symBinAddr: 0x88C40, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x8FC31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x9008, symBinAddr: 0x88C50, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x8FC4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x9018, symBinAddr: 0x88C60, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x8FC65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x9028, symBinAddr: 0x88C70, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x8FC7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x9038, symBinAddr: 0x88C80, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x8FC99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x9048, symBinAddr: 0x88C90, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x8FCB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x9058, symBinAddr: 0x88CA0, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKeySSvpZ', symObjAddr: 0x9068, symBinAddr: 0x88CB0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x8FCE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKeySSvpZ', symObjAddr: 0x9078, symBinAddr: 0x88CC0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x8FD01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvpZ', symObjAddr: 0x9088, symBinAddr: 0x88CD0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x8FD1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKeySSvpZ', symObjAddr: 0x9098, symBinAddr: 0x88CE0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x8FD35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKeySSvpZ', symObjAddr: 0x90A8, symBinAddr: 0x88CF0, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x8FD4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKeySSvpZ', symObjAddr: 0x90B8, symBinAddr: 0x88D00, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x8FD69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKeySSvpZ', symObjAddr: 0x90C8, symBinAddr: 0x88D10, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x8FD83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvpZ', symObjAddr: 0x90D8, symBinAddr: 0x88D20, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x8FD9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvpZ', symObjAddr: 0x90E8, symBinAddr: 0x88D30, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x8FDB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvpZ', symObjAddr: 0x90F8, symBinAddr: 0x88D40, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x8FDD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkeySSvpZ', symObjAddr: 0x9108, symBinAddr: 0x88D50, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x8FDEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvpZ', symObjAddr: 0x9118, symBinAddr: 0x88D60, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x8FE05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKeySSvpZ', symObjAddr: 0x9128, symBinAddr: 0x88D70, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x8FE1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKeySSvpZ', symObjAddr: 0x9138, symBinAddr: 0x88D80, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x8FE39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKeySSvpZ', symObjAddr: 0x9148, symBinAddr: 0x88D90, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x8FE53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKeySSvpZ', symObjAddr: 0x9158, symBinAddr: 0x88DA0, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x8FE6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKeySSvpZ', symObjAddr: 0x9168, symBinAddr: 0x88DB0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x8FE87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKeySSvpZ', symObjAddr: 0x9178, symBinAddr: 0x88DC0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x8FEA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x9188, symBinAddr: 0x88DD0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x8FEBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x9198, symBinAddr: 0x88DE0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x8FED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x91A8, symBinAddr: 0x88DF0, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x8FEEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKeySSvpZ', symObjAddr: 0x91B8, symBinAddr: 0x88E00, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x8FF09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKeySSvpZ', symObjAddr: 0x91C8, symBinAddr: 0x88E10, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x8FF23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKeySSvpZ', symObjAddr: 0x91D8, symBinAddr: 0x88E20, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x8FF3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x91E8, symBinAddr: 0x88E30, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x8FF57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x91F8, symBinAddr: 0x88E40, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x8FF71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x9208, symBinAddr: 0x88E50, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x8FF8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x9218, symBinAddr: 0x88E60, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x8FFA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x9228, symBinAddr: 0x88E70, symSize: 0x0 } - - { offsetInCU: 0x649, offset: 0x8FFBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkeySSvpZ', symObjAddr: 0x9238, symBinAddr: 0x88E80, symSize: 0x0 } - - { offsetInCU: 0x657, offset: 0x8FFCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68DA4, symSize: 0x40 } - - { offsetInCU: 0x675, offset: 0x8FFEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x68DE4, symSize: 0x40 } - - { offsetInCU: 0x693, offset: 0x90009, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x68E24, symSize: 0x40 } - - { offsetInCU: 0x6B1, offset: 0x90027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x68E64, symSize: 0x40 } - - { offsetInCU: 0x6CF, offset: 0x90045, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x68EA4, symSize: 0x40 } - - { offsetInCU: 0x6F9, offset: 0x9006F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x68EE4, symSize: 0x14 } - - { offsetInCU: 0x714, offset: 0x9008A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x69078, symSize: 0x108 } - - { offsetInCU: 0x766, offset: 0x900DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x692B4, symSize: 0x8 } - - { offsetInCU: 0x782, offset: 0x900F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x692BC, symSize: 0x18 } - - { offsetInCU: 0x79A, offset: 0x90110, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x692BC, symSize: 0x18 } - - { offsetInCU: 0x7AC, offset: 0x90122, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x68EF8, symSize: 0x40 } - - { offsetInCU: 0x7CA, offset: 0x90140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x68F38, symSize: 0x40 } - - { offsetInCU: 0x7E8, offset: 0x9015E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x68F78, symSize: 0x40 } - - { offsetInCU: 0x806, offset: 0x9017C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x68FB8, symSize: 0x40 } - - { offsetInCU: 0x824, offset: 0x9019A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x68FF8, symSize: 0x40 } - - { offsetInCU: 0x842, offset: 0x901B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x69038, symSize: 0x40 } - - { offsetInCU: 0x86B, offset: 0x901E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x691A4, symSize: 0x4 } - - { offsetInCU: 0x87F, offset: 0x901F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x691A8, symSize: 0x44 } - - { offsetInCU: 0x8A9, offset: 0x9021F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x692D4, symSize: 0x90 } - - { offsetInCU: 0x8BD, offset: 0x90233, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x69364, symSize: 0xBC } - - { offsetInCU: 0x8D1, offset: 0x90247, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x69420, symSize: 0x8 } - - { offsetInCU: 0x8E5, offset: 0x9025B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x69428, symSize: 0x4 } - - { offsetInCU: 0x8F9, offset: 0x9026F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x6942C, symSize: 0x8 } - - { offsetInCU: 0x90D, offset: 0x90283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x69434, symSize: 0x10 } - - { offsetInCU: 0x921, offset: 0x90297, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0_WZ', symObjAddr: 0x6B0, symBinAddr: 0x69444, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x902B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8language_WZ', symObjAddr: 0x6CC, symBinAddr: 0x69460, symSize: 0x20 } - - { offsetInCU: 0x955, offset: 0x902CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7version_WZ', symObjAddr: 0x6EC, symBinAddr: 0x69480, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x902E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x708, symBinAddr: 0x6949C, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x902FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x724, symBinAddr: 0x694B8, symSize: 0x1C } - - { offsetInCU: 0x9A3, offset: 0x90319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x740, symBinAddr: 0x694D4, symSize: 0x1C } - - { offsetInCU: 0x9BD, offset: 0x90333, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPassword_WZ', symObjAddr: 0x75C, symBinAddr: 0x694F0, symSize: 0x14 } - - { offsetInCU: 0x9DE, offset: 0x90354, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x770, symBinAddr: 0x69504, symSize: 0x1C } - - { offsetInCU: 0x9F8, offset: 0x9036E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x78C, symBinAddr: 0x69520, symSize: 0x24 } - - { offsetInCU: 0xA12, offset: 0x90388, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x7B0, symBinAddr: 0x69544, symSize: 0x20 } - - { offsetInCU: 0xA2C, offset: 0x903A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7D0, symBinAddr: 0x69564, symSize: 0x28 } - - { offsetInCU: 0xA46, offset: 0x903BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7F8, symBinAddr: 0x6958C, symSize: 0x24 } - - { offsetInCU: 0xA60, offset: 0x903D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x81C, symBinAddr: 0x695B0, symSize: 0x24 } - - { offsetInCU: 0xA7A, offset: 0x903F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x840, symBinAddr: 0x695D4, symSize: 0x20 } - - { offsetInCU: 0xA94, offset: 0x9040A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x860, symBinAddr: 0x695F4, symSize: 0x28 } - - { offsetInCU: 0xAAE, offset: 0x90424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x888, symBinAddr: 0x6961C, symSize: 0x1C } - - { offsetInCU: 0xAC9, offset: 0x9043F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKey_WZ', symObjAddr: 0x8A4, symBinAddr: 0x69638, symSize: 0x18 } - - { offsetInCU: 0xAE3, offset: 0x90459, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKey_WZ', symObjAddr: 0x8BC, symBinAddr: 0x69650, symSize: 0x18 } - - { offsetInCU: 0xAFD, offset: 0x90473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x69668, symSize: 0x1C } - - { offsetInCU: 0xB17, offset: 0x9048D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x69684, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x904A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKey_WZ', symObjAddr: 0x90C, symBinAddr: 0x696A0, symSize: 0x18 } - - { offsetInCU: 0xB4B, offset: 0x904C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKey_WZ', symObjAddr: 0x924, symBinAddr: 0x696B8, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x904DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKey_WZ', symObjAddr: 0x940, symBinAddr: 0x696D4, symSize: 0x1C } - - { offsetInCU: 0xB7F, offset: 0x904F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x696F0, symSize: 0x1C } - - { offsetInCU: 0xB99, offset: 0x9050F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKey_WZ', symObjAddr: 0x978, symBinAddr: 0x6970C, symSize: 0x18 } - - { offsetInCU: 0xBB3, offset: 0x90529, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKey_WZ', symObjAddr: 0x990, symBinAddr: 0x69724, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x90543, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x6973C, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x9055D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKey_WZ', symObjAddr: 0x9C4, symBinAddr: 0x69758, symSize: 0x18 } - - { offsetInCU: 0xC01, offset: 0x90577, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x69770, symSize: 0x1C } - - { offsetInCU: 0xC1B, offset: 0x90591, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9F8, symBinAddr: 0x6978C, symSize: 0x24 } - - { offsetInCU: 0xC35, offset: 0x905AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKey_WZ', symObjAddr: 0xA1C, symBinAddr: 0x697B0, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x905C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKey_WZ', symObjAddr: 0xA34, symBinAddr: 0x697C8, symSize: 0x18 } - - { offsetInCU: 0xC69, offset: 0x905DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKey_WZ', symObjAddr: 0xA4C, symBinAddr: 0x697E0, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x905F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x697F8, symSize: 0x1C } - - { offsetInCU: 0xC9D, offset: 0x90613, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKey_WZ', symObjAddr: 0xA80, symBinAddr: 0x69814, symSize: 0x18 } - - { offsetInCU: 0xCB7, offset: 0x9062D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKey_WZ', symObjAddr: 0xA98, symBinAddr: 0x6982C, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x90647, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x69844, symSize: 0x1C } - - { offsetInCU: 0xCEB, offset: 0x90661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkey_WZ', symObjAddr: 0xACC, symBinAddr: 0x69860, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x9067B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkey_WZ', symObjAddr: 0xAE4, symBinAddr: 0x69878, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x90695, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekey_WZ', symObjAddr: 0xAFC, symBinAddr: 0x69890, symSize: 0x18 } - - { offsetInCU: 0xD39, offset: 0x906AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkey_WZ', symObjAddr: 0xB14, symBinAddr: 0x698A8, symSize: 0x18 } - - { offsetInCU: 0xD53, offset: 0x906C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkey_WZ', symObjAddr: 0xB2C, symBinAddr: 0x698C0, symSize: 0x20 } - - { offsetInCU: 0xD6D, offset: 0x906E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKey_WZ', symObjAddr: 0xB4C, symBinAddr: 0x698E0, symSize: 0x24 } - - { offsetInCU: 0xD87, offset: 0x906FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x69904, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x90717, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x69920, symSize: 0x1C } - - { offsetInCU: 0xDBB, offset: 0x90731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x6993C, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x9074B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKey_WZ', symObjAddr: 0xBC4, symBinAddr: 0x69958, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x90765, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x69970, symSize: 0x1C } - - { offsetInCU: 0xE09, offset: 0x9077F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBF8, symBinAddr: 0x6998C, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x90799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xC10, symBinAddr: 0x699A4, symSize: 0x18 } - - { offsetInCU: 0xE3D, offset: 0x907B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC28, symBinAddr: 0x699BC, symSize: 0x18 } - - { offsetInCU: 0xE57, offset: 0x907CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x699D4, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x907E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKey_WZ', symObjAddr: 0xC5C, symBinAddr: 0x699F0, symSize: 0x24 } - - { offsetInCU: 0xE8B, offset: 0x90801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x69A14, symSize: 0x1C } - - { offsetInCU: 0xEA5, offset: 0x9081B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKey_WZ', symObjAddr: 0xC9C, symBinAddr: 0x69A30, symSize: 0x20 } - - { offsetInCU: 0xEBF, offset: 0x90835, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCBC, symBinAddr: 0x69A50, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x9084F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCD4, symBinAddr: 0x69A68, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCEC, symBinAddr: 0x69A80, symSize: 0x18 } - - { offsetInCU: 0xF0D, offset: 0x90883, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekey_WZ', symObjAddr: 0xD04, symBinAddr: 0x69A98, symSize: 0x18 } - - { offsetInCU: 0xF27, offset: 0x9089D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkey_WZ', symObjAddr: 0xD1C, symBinAddr: 0x69AB0, symSize: 0x18 } - - { offsetInCU: 0xF69, offset: 0x908DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0xD34, symBinAddr: 0x69AC8, symSize: 0x288 } - - { offsetInCU: 0x10FC, offset: 0x90A72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x69180, symSize: 0x24 } - - { offsetInCU: 0x119E, offset: 0x90B14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x691EC, symSize: 0x4C } - - { offsetInCU: 0x1276, offset: 0x90BEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x69238, symSize: 0x34 } - - { offsetInCU: 0x12F2, offset: 0x90C68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x6926C, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x90E31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69D50, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x90E73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69D50, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x90EBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x69D74, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x91000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1B00, symBinAddr: 0x88498, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x91049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x69E70, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x910C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x69EB0, symSize: 0x3F8 } - - { offsetInCU: 0x302, offset: 0x912B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x564, symBinAddr: 0x6A2B8, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x91319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C8, symBinAddr: 0x6A31C, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x9137F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x62C, symBinAddr: 0x6A380, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x913E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x690, symBinAddr: 0x6A3E4, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x9144B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6F4, symBinAddr: 0x6A448, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x91548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x81C, symBinAddr: 0x6A514, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x915B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6A550, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x915F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6A550, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x91624, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x868, symBinAddr: 0x6A560, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x916A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x9CC, symBinAddr: 0x6A6C4, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x91706, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xA00, symBinAddr: 0x6A6F8, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x91787, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA54, symBinAddr: 0x6A74C, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91822, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xAA0, symBinAddr: 0x6A798, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x918D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB34, symBinAddr: 0x6A81C, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x91994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA8, symBinAddr: 0x6A890, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91A43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC2C, symBinAddr: 0x6A914, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91AD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC64, symBinAddr: 0x6A94C, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91B65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC9C, symBinAddr: 0x6A984, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x91BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCD4, symBinAddr: 0x6A9BC, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x91C8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD0C, symBinAddr: 0x6A9F4, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x91D21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD44, symBinAddr: 0x6AA2C, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x91DB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD7C, symBinAddr: 0x6AA64, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x91E4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDB4, symBinAddr: 0x6AA9C, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x91EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDEC, symBinAddr: 0x6AAD4, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x91F17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE30, symBinAddr: 0x6AB18, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x91FFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xF68, symBinAddr: 0x6AC50, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x920E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1014, symBinAddr: 0x6ACFC, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x9217F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x108C, symBinAddr: 0x6AD74, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x921AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1110, symBinAddr: 0x6ADF8, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x92252, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x69DD4, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x9226A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x69E24, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x92308, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5C0, symBinAddr: 0x6A314, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x9231C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x624, symBinAddr: 0x6A378, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x92330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x688, symBinAddr: 0x6A3DC, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x92344, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6EC, symBinAddr: 0x6A440, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x92358, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x750, symBinAddr: 0x6A4A4, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x9236C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x7B4, symBinAddr: 0x6A4AC, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x92380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOf', symObjAddr: 0x7D4, symBinAddr: 0x6A4CC, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x923E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1258, symBinAddr: 0x6AF40, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x923F5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1260, symBinAddr: 0x6AF48, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x92409, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1270, symBinAddr: 0x6AF58, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x9244A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x12A4, symBinAddr: 0x6AF60, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x9254C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15C4, symBinAddr: 0x6B280, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x9269F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x69D94, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x926BB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x69D98, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x926D7, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x69D9C, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x926F3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x69DA0, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x9270F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x69DA4, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x9272B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x69DA8, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x92747, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x69DAC, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92763, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x69DB0, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x9277F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x69DB4, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x9279B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x69DB8, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x927B7, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x69DBC, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x927D3, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x69DC8, symSize: 0xC } -... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket deleted file mode 100644 index b12320a..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT deleted file mode 100755 index f269aa0..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule deleted file mode 100644 index 4c5363f..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule deleted file mode 100644 index 859b57c..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS deleted file mode 100755 index a9beaf7..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json deleted file mode 100644 index 04360c8..0000000 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,22932 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS12ReachabilityC", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2_AWS.DebugConfig", - "usr": "s:15IoTConnect2_AWS11DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2_AWS.MqttConfig", - "usr": "s:15IoTConnect2_AWS10MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS11DebugConfigV", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS10MqttConfigV", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PREQA", - "printedName": "PREQA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "POC", - "printedName": "POC", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS0A4TCPfO", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS9SSLOptionV", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS11CommandTypeO", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS9SDKClientC", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", - "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34350, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34392, - "length": 48, - "value": "\"twinPropertySubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34421, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34515, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34565, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34614, - "length": 48, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34643, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34661, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34737, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34787, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34891, - "length": 11, - "value": "\"subForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34988, - "length": 11, - "value": "\"pubForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 89, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2295, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2315, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2406, - "length": 92, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2448, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2477, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2497, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2549, - "length": 93, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2580, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2413, - "length": 26, - "value": "\"SDKClient initialize AWS\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule deleted file mode 100644 index 4e3f598..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json deleted file mode 100644 index 04360c8..0000000 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,22932 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS12ReachabilityC", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2_AWS.DebugConfig", - "usr": "s:15IoTConnect2_AWS11DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2_AWS.MqttConfig", - "usr": "s:15IoTConnect2_AWS10MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS11DebugConfigV", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS10MqttConfigV", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PREQA", - "printedName": "PREQA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "POC", - "printedName": "POC", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS0A4TCPfO", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS9SSLOptionV", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS11CommandTypeO", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS9SDKClientC", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", - "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34350, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34392, - "length": 48, - "value": "\"twinPropertySubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34421, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34515, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34565, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34614, - "length": 48, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34643, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34661, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34737, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34787, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34891, - "length": 11, - "value": "\"subForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34988, - "length": 11, - "value": "\"pubForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 89, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2295, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2315, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2406, - "length": 92, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2448, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2477, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2497, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2549, - "length": 93, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2580, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2413, - "length": 26, - "value": "\"SDKClient initialize AWS\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule deleted file mode 100644 index 8a2c384..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS deleted file mode 100644 index 3b0a87f..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/Pods_IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeDirectory b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeDirectory deleted file mode 100644 index 7e82344..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeDirectory and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements-1 b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements-1 deleted file mode 100644 index 0fb1402..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2_AWS.framework/_CodeSignature/CodeRequirements-1 and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT deleted file mode 100644 index 3f09da4..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml deleted file mode 100644 index 1d125de..0000000 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml +++ /dev/null @@ -1,1661 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT' -relocations: - - { offsetInCU: 0x34, offset: 0x54977, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x46A10, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x549AC, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x46A38, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x54A11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x1988, symSize: 0x4 } - - { offsetInCU: 0x6B, offset: 0x54A2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x4, symBinAddr: 0x198C, symSize: 0x4 } - - { offsetInCU: 0x94, offset: 0x54A56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x8, symBinAddr: 0x1990, symSize: 0x28 } - - { offsetInCU: 0xB3, offset: 0x54A75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x30, symBinAddr: 0x19B8, symSize: 0x110 } - - { offsetInCU: 0xFC, offset: 0x54ABE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x200, symBinAddr: 0x1B88, symSize: 0x20 } - - { offsetInCU: 0x12D, offset: 0x54AEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x220, symBinAddr: 0x1BA8, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x54B0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x22C, symBinAddr: 0x1BB4, symSize: 0x8 } - - { offsetInCU: 0x165, offset: 0x54B27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x84E4, symBinAddr: 0x9E58, symSize: 0x14 } - - { offsetInCU: 0x2C0, offset: 0x54C82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x234, symBinAddr: 0x1BBC, symSize: 0x14C } - - { offsetInCU: 0x40B, offset: 0x54DCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x380, symBinAddr: 0x1D08, symSize: 0x8 } - - { offsetInCU: 0x42F, offset: 0x54DF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x388, symBinAddr: 0x1D10, symSize: 0x48 } - - { offsetInCU: 0x44E, offset: 0x54E10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x3D0, symBinAddr: 0x1D58, symSize: 0x58 } - - { offsetInCU: 0x48D, offset: 0x54E4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x428, symBinAddr: 0x1DB0, symSize: 0x70 } - - { offsetInCU: 0x4BC, offset: 0x54E7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x498, symBinAddr: 0x1E20, symSize: 0x6C } - - { offsetInCU: 0x4E7, offset: 0x54EA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x54C, symBinAddr: 0x1ED4, symSize: 0x44 } - - { offsetInCU: 0x516, offset: 0x54ED8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x5B0, symBinAddr: 0x1F38, symSize: 0x44 } - - { offsetInCU: 0x545, offset: 0x54F07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x6B4, symBinAddr: 0x203C, symSize: 0x44 } - - { offsetInCU: 0x574, offset: 0x54F36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x71C, symBinAddr: 0x20A4, symSize: 0x44 } - - { offsetInCU: 0x5A3, offset: 0x54F65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x21B4, symSize: 0x44 } - - { offsetInCU: 0x5D2, offset: 0x54F94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x890, symBinAddr: 0x2218, symSize: 0x44 } - - { offsetInCU: 0x601, offset: 0x54FC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x8DC, symBinAddr: 0x2264, symSize: 0x50 } - - { offsetInCU: 0x620, offset: 0x54FE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0x92C, symBinAddr: 0x22B4, symSize: 0x50 } - - { offsetInCU: 0x65F, offset: 0x55021, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0x97C, symBinAddr: 0x2304, symSize: 0x44 } - - { offsetInCU: 0x68E, offset: 0x55050, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0x9C0, symBinAddr: 0x2348, symSize: 0x4 } - - { offsetInCU: 0x6D9, offset: 0x5509B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0x9C4, symBinAddr: 0x234C, symSize: 0xC0 } - - { offsetInCU: 0x749, offset: 0x5510B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xA90, symBinAddr: 0x2418, symSize: 0xF4 } - - { offsetInCU: 0x7BC, offset: 0x5517E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xB90, symBinAddr: 0x2518, symSize: 0x44 } - - { offsetInCU: 0x7DB, offset: 0x5519D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xBD4, symBinAddr: 0x255C, symSize: 0x50 } - - { offsetInCU: 0x81A, offset: 0x551DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC24, symBinAddr: 0x25AC, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x55267, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xC70, symBinAddr: 0x25F8, symSize: 0x118 } - - { offsetInCU: 0x97B, offset: 0x5533D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0xF9C, symBinAddr: 0x2924, symSize: 0x44 } - - { offsetInCU: 0x9B8, offset: 0x5537A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0xFE0, symBinAddr: 0x2968, symSize: 0x90 } - - { offsetInCU: 0xA00, offset: 0x553C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x1070, symBinAddr: 0x29F8, symSize: 0x48 } - - { offsetInCU: 0xA2F, offset: 0x553F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x10B8, symBinAddr: 0x2A40, symSize: 0x80 } - - { offsetInCU: 0xA8C, offset: 0x5544E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x113C, symBinAddr: 0x2AC4, symSize: 0x20 } - - { offsetInCU: 0xAAC, offset: 0x5546E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x113C, symBinAddr: 0x2AC4, symSize: 0x20 } - - { offsetInCU: 0xADC, offset: 0x5549E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x115C, symBinAddr: 0x2AE4, symSize: 0x20 } - - { offsetInCU: 0xB05, offset: 0x554C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x115C, symBinAddr: 0x2AE4, symSize: 0x20 } - - { offsetInCU: 0xB5D, offset: 0x5551F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x117C, symBinAddr: 0x2B04, symSize: 0x34 } - - { offsetInCU: 0xBEB, offset: 0x555AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11B0, symBinAddr: 0x2B38, symSize: 0x20 } - - { offsetInCU: 0xC19, offset: 0x555DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11B0, symBinAddr: 0x2B38, symSize: 0x20 } - - { offsetInCU: 0xC2D, offset: 0x555EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11B0, symBinAddr: 0x2B38, symSize: 0x20 } - - { offsetInCU: 0xC81, offset: 0x55643, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x11D0, symBinAddr: 0x2B58, symSize: 0x20 } - - { offsetInCU: 0xCA1, offset: 0x55663, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x11D0, symBinAddr: 0x2B58, symSize: 0x20 } - - { offsetInCU: 0xCEF, offset: 0x556B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x11FC, symBinAddr: 0x2B84, symSize: 0x34 } - - { offsetInCU: 0xD53, offset: 0x55715, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x123C, symBinAddr: 0x2BC4, symSize: 0x20 } - - { offsetInCU: 0xD73, offset: 0x55735, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x123C, symBinAddr: 0x2BC4, symSize: 0x20 } - - { offsetInCU: 0xDC1, offset: 0x55783, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1280, symBinAddr: 0x2C08, symSize: 0x34 } - - { offsetInCU: 0xE25, offset: 0x557E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x12F8, symBinAddr: 0x2C80, symSize: 0x44 } - - { offsetInCU: 0xE54, offset: 0x55816, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x13E8, symBinAddr: 0x2D70, symSize: 0x44 } - - { offsetInCU: 0xE83, offset: 0x55845, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x144C, symBinAddr: 0x2DD4, symSize: 0x44 } - - { offsetInCU: 0xEB2, offset: 0x55874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1534, symBinAddr: 0x2EBC, symSize: 0x44 } - - { offsetInCU: 0xEE1, offset: 0x558A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x1590, symBinAddr: 0x2F18, symSize: 0x78 } - - { offsetInCU: 0xF1E, offset: 0x558E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x1608, symBinAddr: 0x2F90, symSize: 0x7C } - - { offsetInCU: 0xF8C, offset: 0x5594E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x1684, symBinAddr: 0x300C, symSize: 0x90 } - - { offsetInCU: 0x1010, offset: 0x559D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x1714, symBinAddr: 0x309C, symSize: 0x24 } - - { offsetInCU: 0x1065, offset: 0x55A27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x1738, symBinAddr: 0x30C0, symSize: 0x88 } - - { offsetInCU: 0x10C2, offset: 0x55A84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x17C0, symBinAddr: 0x3148, symSize: 0x7C } - - { offsetInCU: 0x1121, offset: 0x55AE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x183C, symBinAddr: 0x31C4, symSize: 0xA8 } - - { offsetInCU: 0x11A9, offset: 0x55B6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x18E4, symBinAddr: 0x326C, symSize: 0x80 } - - { offsetInCU: 0x1220, offset: 0x55BE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1964, symBinAddr: 0x32EC, symSize: 0xC8 } - - { offsetInCU: 0x1272, offset: 0x55C34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1A2C, symBinAddr: 0x33B4, symSize: 0xD4 } - - { offsetInCU: 0x12F7, offset: 0x55CB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1B00, symBinAddr: 0x3488, symSize: 0xFC } - - { offsetInCU: 0x1394, offset: 0x55D56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1BFC, symBinAddr: 0x3584, symSize: 0x130 } - - { offsetInCU: 0x1418, offset: 0x55DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1D2C, symBinAddr: 0x36B4, symSize: 0xC0 } - - { offsetInCU: 0x148C, offset: 0x55E4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x1EB8, symBinAddr: 0x3840, symSize: 0xF4 } - - { offsetInCU: 0x1503, offset: 0x55EC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x209C, symBinAddr: 0x3A24, symSize: 0x48 } - - { offsetInCU: 0x1534, offset: 0x55EF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x20E4, symBinAddr: 0x3A6C, symSize: 0x50 } - - { offsetInCU: 0x1576, offset: 0x55F38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2134, symBinAddr: 0x3ABC, symSize: 0x44 } - - { offsetInCU: 0x1595, offset: 0x55F57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x21F4, symBinAddr: 0x3B7C, symSize: 0x10 } - - { offsetInCU: 0x15AD, offset: 0x55F6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x2204, symBinAddr: 0x3B8C, symSize: 0x4 } - - { offsetInCU: 0x15E7, offset: 0x55FA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2220, symBinAddr: 0x3BA8, symSize: 0x44 } - - { offsetInCU: 0x1618, offset: 0x55FDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2264, symBinAddr: 0x3BEC, symSize: 0x10 } - - { offsetInCU: 0x1630, offset: 0x55FF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x2274, symBinAddr: 0x3BFC, symSize: 0x4 } - - { offsetInCU: 0x1679, offset: 0x5603B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2290, symBinAddr: 0x3C18, symSize: 0x44 } - - { offsetInCU: 0x16AA, offset: 0x5606C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x22D4, symBinAddr: 0x3C5C, symSize: 0x10 } - - { offsetInCU: 0x16C2, offset: 0x56084, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x22E4, symBinAddr: 0x3C6C, symSize: 0x4 } - - { offsetInCU: 0x16FC, offset: 0x560BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x2300, symBinAddr: 0x3C88, symSize: 0x44 } - - { offsetInCU: 0x172D, offset: 0x560EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2344, symBinAddr: 0x3CCC, symSize: 0x10 } - - { offsetInCU: 0x1745, offset: 0x56107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x236C, symBinAddr: 0x3CF4, symSize: 0x44 } - - { offsetInCU: 0x1776, offset: 0x56138, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x23B0, symBinAddr: 0x3D38, symSize: 0x10 } - - { offsetInCU: 0x178E, offset: 0x56150, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x23C0, symBinAddr: 0x3D48, symSize: 0x4 } - - { offsetInCU: 0x17D7, offset: 0x56199, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x23DC, symBinAddr: 0x3D64, symSize: 0x44 } - - { offsetInCU: 0x1808, offset: 0x561CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x2420, symBinAddr: 0x3DA8, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x561E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x2448, symBinAddr: 0x3DD0, symSize: 0x44 } - - { offsetInCU: 0x1851, offset: 0x56213, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x248C, symBinAddr: 0x3E14, symSize: 0x10 } - - { offsetInCU: 0x1869, offset: 0x5622B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x249C, symBinAddr: 0x3E24, symSize: 0x4 } - - { offsetInCU: 0x1894, offset: 0x56256, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x24B8, symBinAddr: 0x3E40, symSize: 0x44 } - - { offsetInCU: 0x18C5, offset: 0x56287, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x24FC, symBinAddr: 0x3E84, symSize: 0x10 } - - { offsetInCU: 0x18DD, offset: 0x5629F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x250C, symBinAddr: 0x3E94, symSize: 0x4 } - - { offsetInCU: 0x1908, offset: 0x562CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2528, symBinAddr: 0x3EB0, symSize: 0x44 } - - { offsetInCU: 0x1939, offset: 0x562FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x256C, symBinAddr: 0x3EF4, symSize: 0x10 } - - { offsetInCU: 0x1951, offset: 0x56313, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x257C, symBinAddr: 0x3F04, symSize: 0x4 } - - { offsetInCU: 0x198B, offset: 0x5634D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x2598, symBinAddr: 0x3F20, symSize: 0x44 } - - { offsetInCU: 0x19BC, offset: 0x5637E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x25DC, symBinAddr: 0x3F64, symSize: 0x10 } - - { offsetInCU: 0x19D4, offset: 0x56396, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x25EC, symBinAddr: 0x3F74, symSize: 0x4 } - - { offsetInCU: 0x1A1F, offset: 0x563E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x2608, symBinAddr: 0x3F90, symSize: 0x44 } - - { offsetInCU: 0x1A50, offset: 0x56412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x264C, symBinAddr: 0x3FD4, symSize: 0x10 } - - { offsetInCU: 0x1A68, offset: 0x5642A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2674, symBinAddr: 0x3FFC, symSize: 0x44 } - - { offsetInCU: 0x1A99, offset: 0x5645B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x26B8, symBinAddr: 0x4040, symSize: 0x10 } - - { offsetInCU: 0x1AB1, offset: 0x56473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2788, symBinAddr: 0x4110, symSize: 0x44 } - - { offsetInCU: 0x1AE2, offset: 0x564A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x27CC, symBinAddr: 0x4154, symSize: 0x70 } - - { offsetInCU: 0x1B01, offset: 0x564C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x283C, symBinAddr: 0x41C4, symSize: 0x5EC } - - { offsetInCU: 0x1D11, offset: 0x566D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x2E28, symBinAddr: 0x47B0, symSize: 0x178 } - - { offsetInCU: 0x1D70, offset: 0x56732, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x2FA0, symBinAddr: 0x4928, symSize: 0x24 } - - { offsetInCU: 0x1E6F, offset: 0x56831, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x31F0, symBinAddr: 0x4B78, symSize: 0x510 } - - { offsetInCU: 0x202F, offset: 0x569F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3700, symBinAddr: 0x5088, symSize: 0x8 } - - { offsetInCU: 0x20B5, offset: 0x56A77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x3708, symBinAddr: 0x5090, symSize: 0x648 } - - { offsetInCU: 0x23B3, offset: 0x56D75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x3D50, symBinAddr: 0x56D8, symSize: 0xC0 } - - { offsetInCU: 0x2466, offset: 0x56E28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x3E3C, symBinAddr: 0x57C4, symSize: 0x4 } - - { offsetInCU: 0x24BF, offset: 0x56E81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19internal_disconnectyyF', symObjAddr: 0x3E40, symBinAddr: 0x57C8, symSize: 0xD4 } - - { offsetInCU: 0x2575, offset: 0x56F37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x3F14, symBinAddr: 0x589C, symSize: 0x100 } - - { offsetInCU: 0x25F1, offset: 0x56FB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x4014, symBinAddr: 0x599C, symSize: 0xB0 } - - { offsetInCU: 0x267D, offset: 0x5703F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x40C4, symBinAddr: 0x5A4C, symSize: 0x17C } - - { offsetInCU: 0x27EB, offset: 0x571AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x4240, symBinAddr: 0x5BC8, symSize: 0x5B0 } - - { offsetInCU: 0x2A47, offset: 0x57409, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x47F0, symBinAddr: 0x6178, symSize: 0x7C } - - { offsetInCU: 0x2AB4, offset: 0x57476, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x486C, symBinAddr: 0x61F4, symSize: 0xBC } - - { offsetInCU: 0x2BA0, offset: 0x57562, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4928, symBinAddr: 0x62B0, symSize: 0x78 } - - { offsetInCU: 0x2C68, offset: 0x5762A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x49A0, symBinAddr: 0x6328, symSize: 0xF8 } - - { offsetInCU: 0x2EB5, offset: 0x57877, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x4A98, symBinAddr: 0x6420, symSize: 0x134 } - - { offsetInCU: 0x3072, offset: 0x57A34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x4BCC, symBinAddr: 0x6554, symSize: 0xF0 } - - { offsetInCU: 0x31A4, offset: 0x57B66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4CBC, symBinAddr: 0x6644, symSize: 0x20 } - - { offsetInCU: 0x31C2, offset: 0x57B84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4CDC, symBinAddr: 0x6664, symSize: 0x2C } - - { offsetInCU: 0x3225, offset: 0x57BE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4D08, symBinAddr: 0x6690, symSize: 0x2C } - - { offsetInCU: 0x328C, offset: 0x57C4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4D34, symBinAddr: 0x66BC, symSize: 0x44 } - - { offsetInCU: 0x347B, offset: 0x57E3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x6EE4, symBinAddr: 0x8858, symSize: 0x24C } - - { offsetInCU: 0x364F, offset: 0x58011, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubAckV_Tg5', symObjAddr: 0x7130, symBinAddr: 0x8AA4, symSize: 0x22C } - - { offsetInCU: 0x3823, offset: 0x581E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRecV_Tg5', symObjAddr: 0x735C, symBinAddr: 0x8CD0, symSize: 0x22C } - - { offsetInCU: 0x39F7, offset: 0x583B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PubCompV_Tg5', symObjAddr: 0x7588, symBinAddr: 0x8EFC, symSize: 0x22C } - - { offsetInCU: 0x3BCB, offset: 0x5858D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x77B4, symBinAddr: 0x9128, symSize: 0x234 } - - { offsetInCU: 0x3D9F, offset: 0x58761, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x79E8, symBinAddr: 0x935C, symSize: 0x200 } - - { offsetInCU: 0x3F73, offset: 0x58935, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x7BE8, symBinAddr: 0x955C, symSize: 0x22C } - - { offsetInCU: 0x4147, offset: 0x58B09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x7E14, symBinAddr: 0x9788, symSize: 0x270 } - - { offsetInCU: 0x431B, offset: 0x58CDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x8084, symBinAddr: 0x99F8, symSize: 0x234 } - - { offsetInCU: 0x44EF, offset: 0x58EB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRelV_Tg5', symObjAddr: 0x82B8, symBinAddr: 0x9C2C, symSize: 0x22C } - - { offsetInCU: 0x4831, offset: 0x591F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x504, symBinAddr: 0x1E8C, symSize: 0x14 } - - { offsetInCU: 0x4849, offset: 0x5920B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x518, symBinAddr: 0x1EA0, symSize: 0x1C } - - { offsetInCU: 0x4861, offset: 0x59223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x590, symBinAddr: 0x1F18, symSize: 0x8 } - - { offsetInCU: 0x4879, offset: 0x5923B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x6F8, symBinAddr: 0x2080, symSize: 0xC } - - { offsetInCU: 0x4891, offset: 0x59253, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x760, symBinAddr: 0x20E8, symSize: 0xC } - - { offsetInCU: 0x48A9, offset: 0x5926B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x870, symBinAddr: 0x21F8, symSize: 0x8 } - - { offsetInCU: 0x48C1, offset: 0x59283, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x8D4, symBinAddr: 0x225C, symSize: 0x8 } - - { offsetInCU: 0x4976, offset: 0x59338, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xC68, symBinAddr: 0x25F0, symSize: 0x8 } - - { offsetInCU: 0x49A5, offset: 0x59367, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xD88, symBinAddr: 0x2710, symSize: 0x214 } - - { offsetInCU: 0x4A31, offset: 0x593F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4D80, symBinAddr: 0x6708, symSize: 0x5C } - - { offsetInCU: 0x4B87, offset: 0x59549, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x12D8, symBinAddr: 0x2C60, symSize: 0x8 } - - { offsetInCU: 0x4B9F, offset: 0x59561, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x133C, symBinAddr: 0x2CC4, symSize: 0x8 } - - { offsetInCU: 0x4BB7, offset: 0x59579, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1344, symBinAddr: 0x2CCC, symSize: 0x8 } - - { offsetInCU: 0x4BCF, offset: 0x59591, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x142C, symBinAddr: 0x2DB4, symSize: 0x8 } - - { offsetInCU: 0x4BE7, offset: 0x595A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1490, symBinAddr: 0x2E18, symSize: 0x8 } - - { offsetInCU: 0x4BFF, offset: 0x595C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x1578, symBinAddr: 0x2F00, symSize: 0x8 } - - { offsetInCU: 0x4C17, offset: 0x595D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1580, symBinAddr: 0x2F08, symSize: 0x8 } - - { offsetInCU: 0x4C2F, offset: 0x595F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x1588, symBinAddr: 0x2F10, symSize: 0x8 } - - { offsetInCU: 0x4D61, offset: 0x59723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x2090, symBinAddr: 0x3A18, symSize: 0xC } - - { offsetInCU: 0x4D7D, offset: 0x5973F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x2090, symBinAddr: 0x3A18, symSize: 0xC } - - { offsetInCU: 0x4D90, offset: 0x59752, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x2178, symBinAddr: 0x3B00, symSize: 0x24 } - - { offsetInCU: 0x4DBF, offset: 0x59781, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x219C, symBinAddr: 0x3B24, symSize: 0x24 } - - { offsetInCU: 0x4DEE, offset: 0x597B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x21C0, symBinAddr: 0x3B48, symSize: 0x24 } - - { offsetInCU: 0x4E1D, offset: 0x597DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x21E4, symBinAddr: 0x3B6C, symSize: 0x8 } - - { offsetInCU: 0x4E35, offset: 0x597F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x21EC, symBinAddr: 0x3B74, symSize: 0x8 } - - { offsetInCU: 0x4E9C, offset: 0x5985E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x2FC4, symBinAddr: 0x494C, symSize: 0x22C } - - { offsetInCU: 0x5053, offset: 0x59A15, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x3E10, symBinAddr: 0x5798, symSize: 0x2C } - - { offsetInCU: 0x5426, offset: 0x59DE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4D78, symBinAddr: 0x6700, symSize: 0x8 } - - { offsetInCU: 0x5459, offset: 0x59E1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4DDC, symBinAddr: 0x6764, symSize: 0x4 } - - { offsetInCU: 0x5487, offset: 0x59E49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x4DE0, symBinAddr: 0x6768, symSize: 0x1F0 } - - { offsetInCU: 0x557B, offset: 0x59F3D, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x4FD0, symBinAddr: 0x6958, symSize: 0x3C } - - { offsetInCU: 0x559E, offset: 0x59F60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x500C, symBinAddr: 0x6994, symSize: 0x1B0 } - - { offsetInCU: 0x5684, offset: 0x5A046, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x51BC, symBinAddr: 0x6B44, symSize: 0x64 } - - { offsetInCU: 0x569C, offset: 0x5A05E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5220, symBinAddr: 0x6BA8, symSize: 0xC4 } - - { offsetInCU: 0x5722, offset: 0x5A0E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x52E4, symBinAddr: 0x6C6C, symSize: 0x4 } - - { offsetInCU: 0x5809, offset: 0x5A1CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x52E8, symBinAddr: 0x6C70, symSize: 0x250 } - - { offsetInCU: 0x5B94, offset: 0x5A556, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5538, symBinAddr: 0x6EC0, symSize: 0x390 } - - { offsetInCU: 0x5DDB, offset: 0x5A79D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x58C8, symBinAddr: 0x7250, symSize: 0xB0 } - - { offsetInCU: 0x5EC1, offset: 0x5A883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5978, symBinAddr: 0x7300, symSize: 0x4 } - - { offsetInCU: 0x5EE1, offset: 0x5A8A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5978, symBinAddr: 0x7300, symSize: 0x4 } - - { offsetInCU: 0x5F06, offset: 0x5A8C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x597C, symBinAddr: 0x7304, symSize: 0x4 } - - { offsetInCU: 0x5F22, offset: 0x5A8E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5980, symBinAddr: 0x7308, symSize: 0x4 } - - { offsetInCU: 0x5F3E, offset: 0x5A900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x5984, symBinAddr: 0x730C, symSize: 0x4 } - - { offsetInCU: 0x5F5A, offset: 0x5A91C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5988, symBinAddr: 0x7310, symSize: 0x4 } - - { offsetInCU: 0x5F76, offset: 0x5A938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x598C, symBinAddr: 0x7314, symSize: 0x4 } - - { offsetInCU: 0x5F92, offset: 0x5A954, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5990, symBinAddr: 0x7318, symSize: 0x204 } - - { offsetInCU: 0x6022, offset: 0x5A9E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5B94, symBinAddr: 0x751C, symSize: 0x140 } - - { offsetInCU: 0x6110, offset: 0x5AAD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5CD4, symBinAddr: 0x765C, symSize: 0x2C } - - { offsetInCU: 0x6152, offset: 0x5AB14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5D00, symBinAddr: 0x7688, symSize: 0x8 } - - { offsetInCU: 0x6194, offset: 0x5AB56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5D08, symBinAddr: 0x7690, symSize: 0x8 } - - { offsetInCU: 0x61D6, offset: 0x5AB98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5D10, symBinAddr: 0x7698, symSize: 0x8 } - - { offsetInCU: 0x6218, offset: 0x5ABDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5D18, symBinAddr: 0x76A0, symSize: 0x8 } - - { offsetInCU: 0x625A, offset: 0x5AC1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5D20, symBinAddr: 0x76A8, symSize: 0x8 } - - { offsetInCU: 0x629C, offset: 0x5AC5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5D28, symBinAddr: 0x76B0, symSize: 0x8 } - - { offsetInCU: 0x62DE, offset: 0x5ACA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5D30, symBinAddr: 0x76B8, symSize: 0x8 } - - { offsetInCU: 0x6320, offset: 0x5ACE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5D38, symBinAddr: 0x76C0, symSize: 0x4 } - - { offsetInCU: 0x6340, offset: 0x5AD02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5D38, symBinAddr: 0x76C0, symSize: 0x4 } - - { offsetInCU: 0x6353, offset: 0x5AD15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5D3C, symBinAddr: 0x76C4, symSize: 0x8 } - - { offsetInCU: 0x636B, offset: 0x5AD2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5D44, symBinAddr: 0x76CC, symSize: 0x10 } - - { offsetInCU: 0x6383, offset: 0x5AD45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5D54, symBinAddr: 0x76DC, symSize: 0x1C } - - { offsetInCU: 0x639B, offset: 0x5AD5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5D70, symBinAddr: 0x76F8, symSize: 0x8 } - - { offsetInCU: 0x63B3, offset: 0x5AD75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x5D78, symBinAddr: 0x7700, symSize: 0xC } - - { offsetInCU: 0x63CB, offset: 0x5AD8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x5D84, symBinAddr: 0x770C, symSize: 0xC } - - { offsetInCU: 0x63E3, offset: 0x5ADA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x5D90, symBinAddr: 0x7718, symSize: 0x8 } - - { offsetInCU: 0x63FB, offset: 0x5ADBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x5D98, symBinAddr: 0x7720, symSize: 0x8 } - - { offsetInCU: 0x6413, offset: 0x5ADD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x5DA0, symBinAddr: 0x7728, symSize: 0x38 } - - { offsetInCU: 0x642B, offset: 0x5ADED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x5DD8, symBinAddr: 0x7760, symSize: 0x8 } - - { offsetInCU: 0x6443, offset: 0x5AE05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x5E08, symBinAddr: 0x7790, symSize: 0x8 } - - { offsetInCU: 0x645B, offset: 0x5AE1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5E10, symBinAddr: 0x7798, symSize: 0x8 } - - { offsetInCU: 0x6473, offset: 0x5AE35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x5E18, symBinAddr: 0x77A0, symSize: 0x8 } - - { offsetInCU: 0x648B, offset: 0x5AE4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5E20, symBinAddr: 0x77A8, symSize: 0x8 } - - { offsetInCU: 0x64A3, offset: 0x5AE65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5E28, symBinAddr: 0x77B0, symSize: 0x8 } - - { offsetInCU: 0x64BB, offset: 0x5AE7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x5E30, symBinAddr: 0x77B8, symSize: 0x8 } - - { offsetInCU: 0x64D3, offset: 0x5AE95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x5E38, symBinAddr: 0x77C0, symSize: 0x8 } - - { offsetInCU: 0x64EB, offset: 0x5AEAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5E40, symBinAddr: 0x77C8, symSize: 0x8 } - - { offsetInCU: 0x6503, offset: 0x5AEC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5E48, symBinAddr: 0x77D0, symSize: 0x8 } - - { offsetInCU: 0x651B, offset: 0x5AEDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x5E50, symBinAddr: 0x77D8, symSize: 0x8 } - - { offsetInCU: 0x658E, offset: 0x5AF50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x5E58, symBinAddr: 0x77E0, symSize: 0x16C } - - { offsetInCU: 0x6614, offset: 0x5AFD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x6160, symBinAddr: 0x7AE8, symSize: 0x24 } - - { offsetInCU: 0x6643, offset: 0x5B005, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6184, symBinAddr: 0x7B0C, symSize: 0x8 } - - { offsetInCU: 0x665B, offset: 0x5B01D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x618C, symBinAddr: 0x7B14, symSize: 0x8 } - - { offsetInCU: 0x6673, offset: 0x5B035, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6194, symBinAddr: 0x7B1C, symSize: 0x8 } - - { offsetInCU: 0x668B, offset: 0x5B04D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x619C, symBinAddr: 0x7B24, symSize: 0x8 } - - { offsetInCU: 0x66A3, offset: 0x5B065, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x61A4, symBinAddr: 0x7B2C, symSize: 0x8 } - - { offsetInCU: 0x66BB, offset: 0x5B07D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x61AC, symBinAddr: 0x7B34, symSize: 0x8 } - - { offsetInCU: 0x66D3, offset: 0x5B095, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x61B4, symBinAddr: 0x7B3C, symSize: 0x18 } - - { offsetInCU: 0x66EB, offset: 0x5B0AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x61CC, symBinAddr: 0x7B54, symSize: 0x1C } - - { offsetInCU: 0x6703, offset: 0x5B0C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x61E8, symBinAddr: 0x7B70, symSize: 0xC } - - { offsetInCU: 0x671B, offset: 0x5B0DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x61F4, symBinAddr: 0x7B7C, symSize: 0xC } - - { offsetInCU: 0x6733, offset: 0x5B0F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6200, symBinAddr: 0x7B88, symSize: 0x8 } - - { offsetInCU: 0x674B, offset: 0x5B10D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x6208, symBinAddr: 0x7B90, symSize: 0x8 } - - { offsetInCU: 0x6763, offset: 0x5B125, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x6210, symBinAddr: 0x7B98, symSize: 0x8 } - - { offsetInCU: 0x677B, offset: 0x5B13D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6218, symBinAddr: 0x7BA0, symSize: 0x8 } - - { offsetInCU: 0x6793, offset: 0x5B155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x6220, symBinAddr: 0x7BA8, symSize: 0x8 } - - { offsetInCU: 0x67AB, offset: 0x5B16D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x6228, symBinAddr: 0x7BB0, symSize: 0x8 } - - { offsetInCU: 0x67C3, offset: 0x5B185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x6230, symBinAddr: 0x7BB8, symSize: 0x8 } - - { offsetInCU: 0x67DB, offset: 0x5B19D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x6238, symBinAddr: 0x7BC0, symSize: 0x8 } - - { offsetInCU: 0x67F3, offset: 0x5B1B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x6240, symBinAddr: 0x7BC8, symSize: 0x8 } - - { offsetInCU: 0x680B, offset: 0x5B1CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x6248, symBinAddr: 0x7BD0, symSize: 0x8 } - - { offsetInCU: 0x6823, offset: 0x5B1E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x6250, symBinAddr: 0x7BD8, symSize: 0x24 } - - { offsetInCU: 0x6866, offset: 0x5B228, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x6274, symBinAddr: 0x7BFC, symSize: 0xC } - - { offsetInCU: 0x687E, offset: 0x5B240, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6280, symBinAddr: 0x7C08, symSize: 0xC } - - { offsetInCU: 0x6896, offset: 0x5B258, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x628C, symBinAddr: 0x7C14, symSize: 0x8 } - - { offsetInCU: 0x68AE, offset: 0x5B270, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x6294, symBinAddr: 0x7C1C, symSize: 0xC } - - { offsetInCU: 0x68C6, offset: 0x5B288, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x62A0, symBinAddr: 0x7C28, symSize: 0x8 } - - { offsetInCU: 0x68DE, offset: 0x5B2A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x62A8, symBinAddr: 0x7C30, symSize: 0x8 } - - { offsetInCU: 0x68F6, offset: 0x5B2B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x62B0, symBinAddr: 0x7C38, symSize: 0xC } - - { offsetInCU: 0x690E, offset: 0x5B2D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x62BC, symBinAddr: 0x7C44, symSize: 0x8 } - - { offsetInCU: 0x6926, offset: 0x5B2E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x62C4, symBinAddr: 0x7C4C, symSize: 0xC } - - { offsetInCU: 0x693E, offset: 0x5B300, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x62D0, symBinAddr: 0x7C58, symSize: 0x10 } - - { offsetInCU: 0x6956, offset: 0x5B318, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x62E0, symBinAddr: 0x7C68, symSize: 0x8 } - - { offsetInCU: 0x696E, offset: 0x5B330, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x62E8, symBinAddr: 0x7C70, symSize: 0x1C } - - { offsetInCU: 0x6986, offset: 0x5B348, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x6304, symBinAddr: 0x7C8C, symSize: 0xC } - - { offsetInCU: 0x699E, offset: 0x5B360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x6310, symBinAddr: 0x7C98, symSize: 0xC } - - { offsetInCU: 0x69B6, offset: 0x5B378, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x631C, symBinAddr: 0x7CA4, symSize: 0x8 } - - { offsetInCU: 0x69CE, offset: 0x5B390, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6324, symBinAddr: 0x7CAC, symSize: 0x8 } - - { offsetInCU: 0x69E6, offset: 0x5B3A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x632C, symBinAddr: 0x7CB4, symSize: 0x8 } - - { offsetInCU: 0x69FE, offset: 0x5B3C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6334, symBinAddr: 0x7CBC, symSize: 0x8 } - - { offsetInCU: 0x6A16, offset: 0x5B3D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x633C, symBinAddr: 0x7CC4, symSize: 0xC } - - { offsetInCU: 0x6A2E, offset: 0x5B3F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x6348, symBinAddr: 0x7CD0, symSize: 0xC } - - { offsetInCU: 0x6A46, offset: 0x5B408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x6354, symBinAddr: 0x7CDC, symSize: 0xC } - - { offsetInCU: 0x6A5E, offset: 0x5B420, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x6360, symBinAddr: 0x7CE8, symSize: 0xC } - - { offsetInCU: 0x6A76, offset: 0x5B438, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x636C, symBinAddr: 0x7CF4, symSize: 0x8 } - - { offsetInCU: 0x6A8E, offset: 0x5B450, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x6374, symBinAddr: 0x7CFC, symSize: 0x8 } - - { offsetInCU: 0x6AA6, offset: 0x5B468, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x637C, symBinAddr: 0x7D04, symSize: 0x8 } - - { offsetInCU: 0x6ABE, offset: 0x5B480, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6384, symBinAddr: 0x7D0C, symSize: 0x10 } - - { offsetInCU: 0x6AD6, offset: 0x5B498, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6394, symBinAddr: 0x7D1C, symSize: 0x8 } - - { offsetInCU: 0x6AEE, offset: 0x5B4B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x639C, symBinAddr: 0x7D24, symSize: 0xC } - - { offsetInCU: 0x6B06, offset: 0x5B4C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x63A8, symBinAddr: 0x7D30, symSize: 0x8 } - - { offsetInCU: 0x6B1E, offset: 0x5B4E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x63B0, symBinAddr: 0x7D38, symSize: 0x8 } - - { offsetInCU: 0x6B36, offset: 0x5B4F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x63B8, symBinAddr: 0x7D40, symSize: 0x8 } - - { offsetInCU: 0x6B4E, offset: 0x5B510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x63C0, symBinAddr: 0x7D48, symSize: 0x8 } - - { offsetInCU: 0x6B66, offset: 0x5B528, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x63C8, symBinAddr: 0x7D50, symSize: 0x8 } - - { offsetInCU: 0x6B7E, offset: 0x5B540, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x63D0, symBinAddr: 0x7D58, symSize: 0xC } - - { offsetInCU: 0x6B96, offset: 0x5B558, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x63DC, symBinAddr: 0x7D64, symSize: 0x8 } - - { offsetInCU: 0x6BAE, offset: 0x5B570, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x63E4, symBinAddr: 0x7D6C, symSize: 0xC } - - { offsetInCU: 0x6BC6, offset: 0x5B588, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x63F0, symBinAddr: 0x7D78, symSize: 0xC } - - { offsetInCU: 0x6BDE, offset: 0x5B5A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x63FC, symBinAddr: 0x7D84, symSize: 0x8 } - - { offsetInCU: 0x6BF6, offset: 0x5B5B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6404, symBinAddr: 0x7D8C, symSize: 0x8 } - - { offsetInCU: 0x6C0E, offset: 0x5B5D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x640C, symBinAddr: 0x7D94, symSize: 0x8 } - - { offsetInCU: 0x6C26, offset: 0x5B5E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x6414, symBinAddr: 0x7D9C, symSize: 0xC } - - { offsetInCU: 0x6C3E, offset: 0x5B600, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x6420, symBinAddr: 0x7DA8, symSize: 0xC } - - { offsetInCU: 0x6C56, offset: 0x5B618, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x642C, symBinAddr: 0x7DB4, symSize: 0x8 } - - { offsetInCU: 0x6C6E, offset: 0x5B630, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x6434, symBinAddr: 0x7DBC, symSize: 0x8 } - - { offsetInCU: 0x6C86, offset: 0x5B648, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x643C, symBinAddr: 0x7DC4, symSize: 0x8 } - - { offsetInCU: 0x6C9E, offset: 0x5B660, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x6444, symBinAddr: 0x7DCC, symSize: 0x8 } - - { offsetInCU: 0x6CB6, offset: 0x5B678, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x644C, symBinAddr: 0x7DD4, symSize: 0x8 } - - { offsetInCU: 0x6CCE, offset: 0x5B690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x6454, symBinAddr: 0x7DDC, symSize: 0xC } - - { offsetInCU: 0x6CE6, offset: 0x5B6A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6460, symBinAddr: 0x7DE8, symSize: 0x8 } - - { offsetInCU: 0x6CFE, offset: 0x5B6C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x6468, symBinAddr: 0x7DF0, symSize: 0x8 } - - { offsetInCU: 0x6D16, offset: 0x5B6D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x6470, symBinAddr: 0x7DF8, symSize: 0x8 } - - { offsetInCU: 0x6D2E, offset: 0x5B6F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x6478, symBinAddr: 0x7E00, symSize: 0x8 } - - { offsetInCU: 0x6D46, offset: 0x5B708, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x6480, symBinAddr: 0x7E08, symSize: 0x8 } - - { offsetInCU: 0x6D5E, offset: 0x5B720, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6488, symBinAddr: 0x7E10, symSize: 0xC } - - { offsetInCU: 0x6D76, offset: 0x5B738, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6494, symBinAddr: 0x7E1C, symSize: 0x8 } - - { offsetInCU: 0x6D8E, offset: 0x5B750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x649C, symBinAddr: 0x7E24, symSize: 0x8 } - - { offsetInCU: 0x6DA6, offset: 0x5B768, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x64A4, symBinAddr: 0x7E2C, symSize: 0x8 } - - { offsetInCU: 0x6DBE, offset: 0x5B780, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x64AC, symBinAddr: 0x7E34, symSize: 0x8 } - - { offsetInCU: 0x6DD6, offset: 0x5B798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x64B4, symBinAddr: 0x7E3C, symSize: 0xC } - - { offsetInCU: 0x6DEE, offset: 0x5B7B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x64C0, symBinAddr: 0x7E48, symSize: 0x8 } - - { offsetInCU: 0x6E06, offset: 0x5B7C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x64C8, symBinAddr: 0x7E50, symSize: 0xC } - - { offsetInCU: 0x6E1E, offset: 0x5B7E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x64D4, symBinAddr: 0x7E5C, symSize: 0x8 } - - { offsetInCU: 0x6E36, offset: 0x5B7F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x64DC, symBinAddr: 0x7E64, symSize: 0x8 } - - { offsetInCU: 0x6E4E, offset: 0x5B810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x64E4, symBinAddr: 0x7E6C, symSize: 0x8 } - - { offsetInCU: 0x6E66, offset: 0x5B828, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x64EC, symBinAddr: 0x7E74, symSize: 0x8 } - - { offsetInCU: 0x6E7E, offset: 0x5B840, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x64F4, symBinAddr: 0x7E7C, symSize: 0xC } - - { offsetInCU: 0x6E96, offset: 0x5B858, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6500, symBinAddr: 0x7E88, symSize: 0x8 } - - { offsetInCU: 0x6EAE, offset: 0x5B870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6508, symBinAddr: 0x7E90, symSize: 0xC } - - { offsetInCU: 0x6EC6, offset: 0x5B888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6514, symBinAddr: 0x7E9C, symSize: 0x8 } - - { offsetInCU: 0x6EDE, offset: 0x5B8A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x651C, symBinAddr: 0x7EA4, symSize: 0xC } - - { offsetInCU: 0x6EF6, offset: 0x5B8B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x6528, symBinAddr: 0x7EB0, symSize: 0xC } - - { offsetInCU: 0x6F0E, offset: 0x5B8D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6534, symBinAddr: 0x7EBC, symSize: 0x8 } - - { offsetInCU: 0x6F26, offset: 0x5B8E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x653C, symBinAddr: 0x7EC4, symSize: 0x8 } - - { offsetInCU: 0x6F3E, offset: 0x5B900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x6544, symBinAddr: 0x7ECC, symSize: 0xC } - - { offsetInCU: 0x6F56, offset: 0x5B918, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6550, symBinAddr: 0x7ED8, symSize: 0x8 } - - { offsetInCU: 0x6F6E, offset: 0x5B930, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x6558, symBinAddr: 0x7EE0, symSize: 0x8 } - - { offsetInCU: 0x6F86, offset: 0x5B948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x6560, symBinAddr: 0x7EE8, symSize: 0x8 } - - { offsetInCU: 0x6F9E, offset: 0x5B960, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x6568, symBinAddr: 0x7EF0, symSize: 0x8 } - - { offsetInCU: 0x703A, offset: 0x5B9FC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x6590, symBinAddr: 0x7F04, symSize: 0x138 } - - { offsetInCU: 0x71FE, offset: 0x5BBC0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x66C8, symBinAddr: 0x803C, symSize: 0xFC } - - { offsetInCU: 0x738B, offset: 0x5BD4D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x67DC, symBinAddr: 0x8150, symSize: 0x104 } - - { offsetInCU: 0x7513, offset: 0x5BED5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x69D0, symBinAddr: 0x8344, symSize: 0x118 } - - { offsetInCU: 0x7659, offset: 0x5C01B, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x6AE8, symBinAddr: 0x845C, symSize: 0xA4 } - - { offsetInCU: 0x76D5, offset: 0x5C097, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x6D9C, symBinAddr: 0x8710, symSize: 0x148 } - - { offsetInCU: 0x7765, offset: 0x5C127, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x84F8, symBinAddr: 0x9E6C, symSize: 0x40 } - - { offsetInCU: 0x7779, offset: 0x5C13B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x855C, symBinAddr: 0x9ED0, symSize: 0x8 } - - { offsetInCU: 0x778D, offset: 0x5C14F, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x8564, symBinAddr: 0x9ED8, symSize: 0x24 } - - { offsetInCU: 0x77A1, offset: 0x5C163, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x8588, symBinAddr: 0x9EFC, symSize: 0x20 } - - { offsetInCU: 0x77B5, offset: 0x5C177, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x85A8, symBinAddr: 0x9F1C, symSize: 0x28 } - - { offsetInCU: 0x7821, offset: 0x5C1E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x87B0, symBinAddr: 0xA124, symSize: 0x20 } - - { offsetInCU: 0x7835, offset: 0x5C1F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8808, symBinAddr: 0xA17C, symSize: 0x8 } - - { offsetInCU: 0x7849, offset: 0x5C20B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8810, symBinAddr: 0xA184, symSize: 0x10 } - - { offsetInCU: 0x785D, offset: 0x5C21F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8820, symBinAddr: 0xA194, symSize: 0x8 } - - { offsetInCU: 0x7871, offset: 0x5C233, size: 0x8, addend: 0x0, symName: '_$s8Dispatch0A13WorkItemFlagsVACs10SetAlgebraAAWl', symObjAddr: 0x8828, symBinAddr: 0xA19C, symSize: 0x48 } - - { offsetInCU: 0x7885, offset: 0x5C247, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGSayxGSTsWl', symObjAddr: 0x8870, symBinAddr: 0xA1E4, symSize: 0x4C } - - { offsetInCU: 0x7899, offset: 0x5C25B, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x88BC, symBinAddr: 0xA230, symSize: 0x44 } - - { offsetInCU: 0x78AD, offset: 0x5C26F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8900, symBinAddr: 0xA274, symSize: 0x8 } - - { offsetInCU: 0x7966, offset: 0x5C328, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x8C24, symBinAddr: 0xA598, symSize: 0x10 } - - { offsetInCU: 0x797A, offset: 0x5C33C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x8C34, symBinAddr: 0xA5A8, symSize: 0x6C } - - { offsetInCU: 0x798E, offset: 0x5C350, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x8CA0, symBinAddr: 0xA614, symSize: 0x6C } - - { offsetInCU: 0x79A2, offset: 0x5C364, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8D30, symBinAddr: 0xA6A4, symSize: 0xC } - - { offsetInCU: 0x79B6, offset: 0x5C378, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOs', symObjAddr: 0x8D3C, symBinAddr: 0xA6B0, symSize: 0x44 } - - { offsetInCU: 0x79CA, offset: 0x5C38C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x8D80, symBinAddr: 0xA6F4, symSize: 0x8 } - - { offsetInCU: 0x79FC, offset: 0x5C3BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x8D88, symBinAddr: 0xA6FC, symSize: 0x350 } - - { offsetInCU: 0x7C02, offset: 0x5C5C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x90D8, symBinAddr: 0xAA4C, symSize: 0x5FC } - - { offsetInCU: 0x8141, offset: 0x5CB03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x96D4, symBinAddr: 0xB048, symSize: 0x4A8 } - - { offsetInCU: 0x8508, offset: 0x5CECA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9B7C, symBinAddr: 0xB4F0, symSize: 0x1C0 } - - { offsetInCU: 0x8635, offset: 0x5CFF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9D3C, symBinAddr: 0xB6B0, symSize: 0x130 } - - { offsetInCU: 0x875B, offset: 0x5D11D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9E6C, symBinAddr: 0xB7E0, symSize: 0x134 } - - { offsetInCU: 0x8886, offset: 0x5D248, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9FA0, symBinAddr: 0xB914, symSize: 0x1D8 } - - { offsetInCU: 0x8A9A, offset: 0x5D45C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA178, symBinAddr: 0xBAEC, symSize: 0x664 } - - { offsetInCU: 0x9115, offset: 0x5DAD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA7DC, symBinAddr: 0xC150, symSize: 0x39C } - - { offsetInCU: 0x9477, offset: 0x5DE39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAB78, symBinAddr: 0xC4EC, symSize: 0x140 } - - { offsetInCU: 0x952E, offset: 0x5DEF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xACB8, symBinAddr: 0xC62C, symSize: 0x4 } - - { offsetInCU: 0x9542, offset: 0x5DF04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xACBC, symBinAddr: 0xC630, symSize: 0x44 } - - { offsetInCU: 0x9556, offset: 0x5DF18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xAD00, symBinAddr: 0xC674, symSize: 0x10 } - - { offsetInCU: 0x956A, offset: 0x5DF2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xAD7C, symBinAddr: 0xC6F0, symSize: 0x24 } - - { offsetInCU: 0x957E, offset: 0x5DF40, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xADA4, symBinAddr: 0xC718, symSize: 0x44 } - - { offsetInCU: 0x9592, offset: 0x5DF54, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xADE8, symBinAddr: 0xC75C, symSize: 0x28 } - - { offsetInCU: 0x95A6, offset: 0x5DF68, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xAE10, symBinAddr: 0xC784, symSize: 0x28 } - - { offsetInCU: 0x95BA, offset: 0x5DF7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xAE40, symBinAddr: 0xC7B4, symSize: 0x8 } - - { offsetInCU: 0x95CE, offset: 0x5DF90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xAE6C, symBinAddr: 0xC7E0, symSize: 0x8 } - - { offsetInCU: 0x95E2, offset: 0x5DFA4, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xAE84, symBinAddr: 0xC7F8, symSize: 0x8 } - - { offsetInCU: 0x95F6, offset: 0x5DFB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xAE8C, symBinAddr: 0xC800, symSize: 0x8 } - - { offsetInCU: 0x960A, offset: 0x5DFCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xAFE4, symBinAddr: 0xC958, symSize: 0xC0 } - - { offsetInCU: 0x961E, offset: 0x5DFE0, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xB0A4, symBinAddr: 0xCA18, symSize: 0x14 } - - { offsetInCU: 0x9632, offset: 0x5DFF4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xB0B8, symBinAddr: 0xCA2C, symSize: 0x50 } - - { offsetInCU: 0x9646, offset: 0x5E008, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xB108, symBinAddr: 0xCA7C, symSize: 0x14 } - - { offsetInCU: 0x965A, offset: 0x5E01C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xB200, symBinAddr: 0xCB74, symSize: 0x44 } - - { offsetInCU: 0x966E, offset: 0x5E030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xB278, symBinAddr: 0xCBEC, symSize: 0x44 } - - { offsetInCU: 0x9682, offset: 0x5E044, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xB2E8, symBinAddr: 0xCC5C, symSize: 0xC } - - { offsetInCU: 0x96FB, offset: 0x5E0BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x140, symBinAddr: 0x1AC8, symSize: 0x14 } - - { offsetInCU: 0x9798, offset: 0x5E15A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x154, symBinAddr: 0x1ADC, symSize: 0x44 } - - { offsetInCU: 0x9827, offset: 0x5E1E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x198, symBinAddr: 0x1B20, symSize: 0x28 } - - { offsetInCU: 0x987A, offset: 0x5E23C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C0, symBinAddr: 0x1B48, symSize: 0x40 } - - { offsetInCU: 0x9CA0, offset: 0x5E662, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTg5Tf4gd_n', symObjAddr: 0x85D0, symBinAddr: 0x9F44, symSize: 0xE4 } - - { offsetInCU: 0x9DE1, offset: 0x5E7A3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x8908, symBinAddr: 0xA27C, symSize: 0xFC } - - { offsetInCU: 0x9F0C, offset: 0x5E8CE, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x8B0C, symBinAddr: 0xA480, symSize: 0xEC } - - { offsetInCU: 0xE9, offset: 0x5F191, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0xCF44, symSize: 0x64 } - - { offsetInCU: 0x118, offset: 0x5F1C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x1F4, symBinAddr: 0xCFA8, symSize: 0x28 } - - { offsetInCU: 0x137, offset: 0x5F1DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x21C, symBinAddr: 0xCFD0, symSize: 0x4 } - - { offsetInCU: 0x17A, offset: 0x5F222, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2E0, symBinAddr: 0xD094, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x5F253, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x300, symBinAddr: 0xD0B4, symSize: 0xC } - - { offsetInCU: 0x1C7, offset: 0x5F26F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x30C, symBinAddr: 0xD0C0, symSize: 0x8 } - - { offsetInCU: 0x2B8, offset: 0x5F360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x314, symBinAddr: 0xD0C8, symSize: 0x148 } - - { offsetInCU: 0x40F, offset: 0x5F4B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x45C, symBinAddr: 0xD210, symSize: 0x48 } - - { offsetInCU: 0x42E, offset: 0x5F4D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x4A4, symBinAddr: 0xD258, symSize: 0x58 } - - { offsetInCU: 0x46D, offset: 0x5F515, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x4FC, symBinAddr: 0xD2B0, symSize: 0x70 } - - { offsetInCU: 0x49C, offset: 0x5F544, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x56C, symBinAddr: 0xD320, symSize: 0x6C } - - { offsetInCU: 0x4C7, offset: 0x5F56F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x5F0, symBinAddr: 0xD3A4, symSize: 0x44 } - - { offsetInCU: 0x4F6, offset: 0x5F59E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x64C, symBinAddr: 0xD400, symSize: 0x44 } - - { offsetInCU: 0x525, offset: 0x5F5CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x750, symBinAddr: 0xD504, symSize: 0x44 } - - { offsetInCU: 0x554, offset: 0x5F5FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x7AC, symBinAddr: 0xD560, symSize: 0x44 } - - { offsetInCU: 0x583, offset: 0x5F62B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x8B0, symBinAddr: 0xD664, symSize: 0x44 } - - { offsetInCU: 0x5B2, offset: 0x5F65A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0x90C, symBinAddr: 0xD6C0, symSize: 0x44 } - - { offsetInCU: 0x5E1, offset: 0x5F689, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0x968, symBinAddr: 0xD71C, symSize: 0x44 } - - { offsetInCU: 0x610, offset: 0x5F6B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0x9AC, symBinAddr: 0xD760, symSize: 0x4 } - - { offsetInCU: 0x65B, offset: 0x5F703, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0x9B0, symBinAddr: 0xD764, symSize: 0xC0 } - - { offsetInCU: 0x6CB, offset: 0x5F773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xA7C, symBinAddr: 0xD830, symSize: 0xF4 } - - { offsetInCU: 0x73E, offset: 0x5F7E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xB7C, symBinAddr: 0xD930, symSize: 0x44 } - - { offsetInCU: 0x75D, offset: 0x5F805, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xBC0, symBinAddr: 0xD974, symSize: 0x50 } - - { offsetInCU: 0x79C, offset: 0x5F844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC10, symBinAddr: 0xD9C4, symSize: 0x44 } - - { offsetInCU: 0x827, offset: 0x5F8CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xC54, symBinAddr: 0xDA08, symSize: 0x118 } - - { offsetInCU: 0x8FD, offset: 0x5F9A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0xF80, symBinAddr: 0xDD34, symSize: 0x44 } - - { offsetInCU: 0x93A, offset: 0x5F9E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0xFC4, symBinAddr: 0xDD78, symSize: 0x90 } - - { offsetInCU: 0x982, offset: 0x5FA2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1054, symBinAddr: 0xDE08, symSize: 0x48 } - - { offsetInCU: 0x9B1, offset: 0x5FA59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x109C, symBinAddr: 0xDE50, symSize: 0x80 } - - { offsetInCU: 0xA0E, offset: 0x5FAB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x111C, symBinAddr: 0xDED0, symSize: 0x20 } - - { offsetInCU: 0xA2E, offset: 0x5FAD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x111C, symBinAddr: 0xDED0, symSize: 0x20 } - - { offsetInCU: 0xA5E, offset: 0x5FB06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x113C, symBinAddr: 0xDEF0, symSize: 0x20 } - - { offsetInCU: 0xA87, offset: 0x5FB2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x113C, symBinAddr: 0xDEF0, symSize: 0x20 } - - { offsetInCU: 0xADF, offset: 0x5FB87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x115C, symBinAddr: 0xDF10, symSize: 0x34 } - - { offsetInCU: 0xB6D, offset: 0x5FC15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1190, symBinAddr: 0xDF44, symSize: 0x20 } - - { offsetInCU: 0xB9B, offset: 0x5FC43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1190, symBinAddr: 0xDF44, symSize: 0x20 } - - { offsetInCU: 0xBAF, offset: 0x5FC57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1190, symBinAddr: 0xDF44, symSize: 0x20 } - - { offsetInCU: 0xC03, offset: 0x5FCAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x11B0, symBinAddr: 0xDF64, symSize: 0x20 } - - { offsetInCU: 0xC23, offset: 0x5FCCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x11B0, symBinAddr: 0xDF64, symSize: 0x20 } - - { offsetInCU: 0xC71, offset: 0x5FD19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x11DC, symBinAddr: 0xDF90, symSize: 0x34 } - - { offsetInCU: 0xCD5, offset: 0x5FD7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x121C, symBinAddr: 0xDFD0, symSize: 0x20 } - - { offsetInCU: 0xCF5, offset: 0x5FD9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x121C, symBinAddr: 0xDFD0, symSize: 0x20 } - - { offsetInCU: 0xD43, offset: 0x5FDEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x1260, symBinAddr: 0xE014, symSize: 0x34 } - - { offsetInCU: 0xDA7, offset: 0x5FE4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x12D0, symBinAddr: 0xE084, symSize: 0x44 } - - { offsetInCU: 0xDD6, offset: 0x5FE7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x13B0, symBinAddr: 0xE164, symSize: 0x44 } - - { offsetInCU: 0xE05, offset: 0x5FEAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x140C, symBinAddr: 0xE1C0, symSize: 0x44 } - - { offsetInCU: 0xE34, offset: 0x5FEDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x14EC, symBinAddr: 0xE2A0, symSize: 0x44 } - - { offsetInCU: 0xE63, offset: 0x5FF0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x1548, symBinAddr: 0xE2FC, symSize: 0x44 } - - { offsetInCU: 0xE92, offset: 0x5FF3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x163C, symBinAddr: 0xE3F0, symSize: 0x44 } - - { offsetInCU: 0xEC1, offset: 0x5FF69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x1680, symBinAddr: 0xE434, symSize: 0x78 } - - { offsetInCU: 0xEFE, offset: 0x5FFA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x16F8, symBinAddr: 0xE4AC, symSize: 0x7C } - - { offsetInCU: 0xF6C, offset: 0x60014, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1774, symBinAddr: 0xE528, symSize: 0x90 } - - { offsetInCU: 0xFF0, offset: 0x60098, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x1804, symBinAddr: 0xE5B8, symSize: 0x24 } - - { offsetInCU: 0x1045, offset: 0x600ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1828, symBinAddr: 0xE5DC, symSize: 0x88 } - - { offsetInCU: 0x10A2, offset: 0x6014A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x18B0, symBinAddr: 0xE664, symSize: 0x7C } - - { offsetInCU: 0x1101, offset: 0x601A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x192C, symBinAddr: 0xE6E0, symSize: 0xA8 } - - { offsetInCU: 0x1189, offset: 0x60231, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x19D4, symBinAddr: 0xE788, symSize: 0x80 } - - { offsetInCU: 0x1200, offset: 0x602A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1A54, symBinAddr: 0xE808, symSize: 0xC8 } - - { offsetInCU: 0x1254, offset: 0x602FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1B1C, symBinAddr: 0xE8D0, symSize: 0xD4 } - - { offsetInCU: 0x12DD, offset: 0x60385, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1BF0, symBinAddr: 0xE9A4, symSize: 0xFC } - - { offsetInCU: 0x1381, offset: 0x60429, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1CEC, symBinAddr: 0xEAA0, symSize: 0x130 } - - { offsetInCU: 0x140A, offset: 0x604B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x1E1C, symBinAddr: 0xEBD0, symSize: 0xC0 } - - { offsetInCU: 0x147E, offset: 0x60526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x1FA8, symBinAddr: 0xED5C, symSize: 0xF4 } - - { offsetInCU: 0x14F5, offset: 0x6059D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2180, symBinAddr: 0xEF34, symSize: 0x48 } - - { offsetInCU: 0x1514, offset: 0x605BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x21C8, symBinAddr: 0xEF7C, symSize: 0x50 } - - { offsetInCU: 0x1556, offset: 0x605FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2218, symBinAddr: 0xEFCC, symSize: 0x44 } - - { offsetInCU: 0x1587, offset: 0x6062F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x225C, symBinAddr: 0xF010, symSize: 0x10 } - - { offsetInCU: 0x159F, offset: 0x60647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x226C, symBinAddr: 0xF020, symSize: 0x4 } - - { offsetInCU: 0x15E8, offset: 0x60690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2288, symBinAddr: 0xF03C, symSize: 0x44 } - - { offsetInCU: 0x1619, offset: 0x606C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x22CC, symBinAddr: 0xF080, symSize: 0x10 } - - { offsetInCU: 0x1631, offset: 0x606D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x22DC, symBinAddr: 0xF090, symSize: 0x4 } - - { offsetInCU: 0x167A, offset: 0x60722, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x22F8, symBinAddr: 0xF0AC, symSize: 0x44 } - - { offsetInCU: 0x16AB, offset: 0x60753, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x233C, symBinAddr: 0xF0F0, symSize: 0x10 } - - { offsetInCU: 0x16C3, offset: 0x6076B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x234C, symBinAddr: 0xF100, symSize: 0x4 } - - { offsetInCU: 0x170C, offset: 0x607B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2368, symBinAddr: 0xF11C, symSize: 0x44 } - - { offsetInCU: 0x173D, offset: 0x607E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x23AC, symBinAddr: 0xF160, symSize: 0x10 } - - { offsetInCU: 0x1755, offset: 0x607FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x23D4, symBinAddr: 0xF188, symSize: 0x44 } - - { offsetInCU: 0x1786, offset: 0x6082E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x2418, symBinAddr: 0xF1CC, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x60846, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x2428, symBinAddr: 0xF1DC, symSize: 0x4 } - - { offsetInCU: 0x17F6, offset: 0x6089E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x2444, symBinAddr: 0xF1F8, symSize: 0x44 } - - { offsetInCU: 0x1827, offset: 0x608CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x2488, symBinAddr: 0xF23C, symSize: 0x10 } - - { offsetInCU: 0x183F, offset: 0x608E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2498, symBinAddr: 0xF24C, symSize: 0x4 } - - { offsetInCU: 0x1897, offset: 0x6093F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x24B4, symBinAddr: 0xF268, symSize: 0x44 } - - { offsetInCU: 0x18C8, offset: 0x60970, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x24F8, symBinAddr: 0xF2AC, symSize: 0x10 } - - { offsetInCU: 0x18E0, offset: 0x60988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x2508, symBinAddr: 0xF2BC, symSize: 0x4 } - - { offsetInCU: 0x1929, offset: 0x609D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x2524, symBinAddr: 0xF2D8, symSize: 0x44 } - - { offsetInCU: 0x195A, offset: 0x60A02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2568, symBinAddr: 0xF31C, symSize: 0x10 } - - { offsetInCU: 0x1972, offset: 0x60A1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2578, symBinAddr: 0xF32C, symSize: 0x4 } - - { offsetInCU: 0x199D, offset: 0x60A45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x2594, symBinAddr: 0xF348, symSize: 0x44 } - - { offsetInCU: 0x19CE, offset: 0x60A76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x25D8, symBinAddr: 0xF38C, symSize: 0x10 } - - { offsetInCU: 0x19E6, offset: 0x60A8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x25E8, symBinAddr: 0xF39C, symSize: 0x4 } - - { offsetInCU: 0x1A11, offset: 0x60AB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2604, symBinAddr: 0xF3B8, symSize: 0x44 } - - { offsetInCU: 0x1A42, offset: 0x60AEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2648, symBinAddr: 0xF3FC, symSize: 0x10 } - - { offsetInCU: 0x1A5A, offset: 0x60B02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2658, symBinAddr: 0xF40C, symSize: 0x4 } - - { offsetInCU: 0x1A94, offset: 0x60B3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x2674, symBinAddr: 0xF428, symSize: 0x44 } - - { offsetInCU: 0x1AC5, offset: 0x60B6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x26B8, symBinAddr: 0xF46C, symSize: 0x10 } - - { offsetInCU: 0x1ADD, offset: 0x60B85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x26E0, symBinAddr: 0xF494, symSize: 0x44 } - - { offsetInCU: 0x1B0E, offset: 0x60BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2724, symBinAddr: 0xF4D8, symSize: 0x10 } - - { offsetInCU: 0x1B26, offset: 0x60BCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x274C, symBinAddr: 0xF500, symSize: 0x44 } - - { offsetInCU: 0x1B57, offset: 0x60BFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2790, symBinAddr: 0xF544, symSize: 0x10 } - - { offsetInCU: 0x1B6F, offset: 0x60C17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x27A0, symBinAddr: 0xF554, symSize: 0x4 } - - { offsetInCU: 0x1BBA, offset: 0x60C62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x27BC, symBinAddr: 0xF570, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x60C93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2800, symBinAddr: 0xF5B4, symSize: 0x10 } - - { offsetInCU: 0x1C03, offset: 0x60CAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2828, symBinAddr: 0xF5DC, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x60CDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x286C, symBinAddr: 0xF620, symSize: 0x10 } - - { offsetInCU: 0x1C4C, offset: 0x60CF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x287C, symBinAddr: 0xF630, symSize: 0x4 } - - { offsetInCU: 0x1C86, offset: 0x60D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2940, symBinAddr: 0xF6F4, symSize: 0x44 } - - { offsetInCU: 0x1CB7, offset: 0x60D5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2984, symBinAddr: 0xF738, symSize: 0x70 } - - { offsetInCU: 0x1CD6, offset: 0x60D7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x29F4, symBinAddr: 0xF7A8, symSize: 0x8F0 } - - { offsetInCU: 0x1FEF, offset: 0x61097, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x32E4, symBinAddr: 0x10098, symSize: 0x178 } - - { offsetInCU: 0x204E, offset: 0x610F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x345C, symBinAddr: 0x10210, symSize: 0x24 } - - { offsetInCU: 0x216B, offset: 0x61213, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3708, symBinAddr: 0x104BC, symSize: 0x52C } - - { offsetInCU: 0x234A, offset: 0x613F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3C34, symBinAddr: 0x109E8, symSize: 0x8 } - - { offsetInCU: 0x23D0, offset: 0x61478, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3C3C, symBinAddr: 0x109F0, symSize: 0x648 } - - { offsetInCU: 0x26CE, offset: 0x61776, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4284, symBinAddr: 0x11038, symSize: 0xC0 } - - { offsetInCU: 0x2781, offset: 0x61829, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x4344, symBinAddr: 0x110F8, symSize: 0x4 } - - { offsetInCU: 0x27B0, offset: 0x61858, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x4348, symBinAddr: 0x110FC, symSize: 0x4 } - - { offsetInCU: 0x2827, offset: 0x618CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19internal_disconnectyyF', symObjAddr: 0x434C, symBinAddr: 0x11100, symSize: 0xD0 } - - { offsetInCU: 0x28E4, offset: 0x6198C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x441C, symBinAddr: 0x111D0, symSize: 0x114 } - - { offsetInCU: 0x29B5, offset: 0x61A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x4530, symBinAddr: 0x112E4, symSize: 0x100 } - - { offsetInCU: 0x2A31, offset: 0x61AD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x4630, symBinAddr: 0x113E4, symSize: 0xB0 } - - { offsetInCU: 0x2ACC, offset: 0x61B74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x46E0, symBinAddr: 0x11494, symSize: 0xD8 } - - { offsetInCU: 0x2BDA, offset: 0x61C82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x47B8, symBinAddr: 0x1156C, symSize: 0x8 } - - { offsetInCU: 0x2BEE, offset: 0x61C96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x47C0, symBinAddr: 0x11574, symSize: 0x6C } - - { offsetInCU: 0x2C5B, offset: 0x61D03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x482C, symBinAddr: 0x115E0, symSize: 0xC4 } - - { offsetInCU: 0x2E41, offset: 0x61EE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x48F0, symBinAddr: 0x116A4, symSize: 0x204 } - - { offsetInCU: 0x30B4, offset: 0x6215C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4AF4, symBinAddr: 0x118A8, symSize: 0xE0 } - - { offsetInCU: 0x321B, offset: 0x622C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4BD4, symBinAddr: 0x11988, symSize: 0xE8 } - - { offsetInCU: 0x343B, offset: 0x624E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4CBC, symBinAddr: 0x11A70, symSize: 0x1E8 } - - { offsetInCU: 0x3655, offset: 0x626FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4EA4, symBinAddr: 0x11C58, symSize: 0xD4 } - - { offsetInCU: 0x3779, offset: 0x62821, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x4F78, symBinAddr: 0x11D2C, symSize: 0x10C } - - { offsetInCU: 0x3842, offset: 0x628EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x5084, symBinAddr: 0x11E38, symSize: 0x20 } - - { offsetInCU: 0x3860, offset: 0x62908, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x50A4, symBinAddr: 0x11E58, symSize: 0x2C } - - { offsetInCU: 0x38C3, offset: 0x6296B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x50D0, symBinAddr: 0x11E84, symSize: 0x2C } - - { offsetInCU: 0x392A, offset: 0x629D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x50FC, symBinAddr: 0x11EB0, symSize: 0x44 } - - { offsetInCU: 0x3B19, offset: 0x62BC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x69EC, symBinAddr: 0x136F4, symSize: 0x234 } - - { offsetInCU: 0x3CED, offset: 0x62D95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubAckV_Tg5', symObjAddr: 0x6C20, symBinAddr: 0x13928, symSize: 0x22C } - - { offsetInCU: 0x3EC1, offset: 0x62F69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRecV_Tg5', symObjAddr: 0x6E4C, symBinAddr: 0x13B54, symSize: 0x22C } - - { offsetInCU: 0x4095, offset: 0x6313D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PubCompV_Tg5', symObjAddr: 0x7078, symBinAddr: 0x13D80, symSize: 0x22C } - - { offsetInCU: 0x4269, offset: 0x63311, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x72A4, symBinAddr: 0x13FAC, symSize: 0x24C } - - { offsetInCU: 0x443D, offset: 0x634E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x74F0, symBinAddr: 0x141F8, symSize: 0x200 } - - { offsetInCU: 0x4611, offset: 0x636B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x76F0, symBinAddr: 0x143F8, symSize: 0x22C } - - { offsetInCU: 0x47E5, offset: 0x6388D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x791C, symBinAddr: 0x14624, symSize: 0x270 } - - { offsetInCU: 0x49B9, offset: 0x63A61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x7B8C, symBinAddr: 0x14894, symSize: 0x25C } - - { offsetInCU: 0x4B8D, offset: 0x63C35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x7DE8, symBinAddr: 0x14AF0, symSize: 0x234 } - - { offsetInCU: 0x4D61, offset: 0x63E09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRelV_Tg5', symObjAddr: 0x801C, symBinAddr: 0x14D24, symSize: 0x22C } - - { offsetInCU: 0x5082, offset: 0x6412A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xB2C8, symBinAddr: 0x17EF8, symSize: 0x730 } - - { offsetInCU: 0x5576, offset: 0x6461E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xD6C, symBinAddr: 0xDB20, symSize: 0x214 } - - { offsetInCU: 0x5602, offset: 0x646AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x5148, symBinAddr: 0x11EFC, symSize: 0x5C } - - { offsetInCU: 0x572A, offset: 0x647D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x8248, symBinAddr: 0x14F50, symSize: 0x308 } - - { offsetInCU: 0x57DD, offset: 0x64885, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x8550, symBinAddr: 0x15258, symSize: 0x30C } - - { offsetInCU: 0x5890, offset: 0x64938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x885C, symBinAddr: 0x15564, symSize: 0x30C } - - { offsetInCU: 0x5B14, offset: 0x64BBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6124, symBinAddr: 0x12E2C, symSize: 0x1B8 } - - { offsetInCU: 0x5B7A, offset: 0x64C22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x62DC, symBinAddr: 0x12FE4, symSize: 0xC4 } - - { offsetInCU: 0x5BE9, offset: 0x64C91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x63A0, symBinAddr: 0x130A8, symSize: 0x108 } - - { offsetInCU: 0x5DAE, offset: 0x64E56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x3480, symBinAddr: 0x10234, symSize: 0x288 } - - { offsetInCU: 0x624A, offset: 0x652F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x5140, symBinAddr: 0x11EF4, symSize: 0x8 } - - { offsetInCU: 0x627D, offset: 0x65325, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x51A4, symBinAddr: 0x11F58, symSize: 0x4 } - - { offsetInCU: 0x62AB, offset: 0x65353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x51A8, symBinAddr: 0x11F5C, symSize: 0x1F0 } - - { offsetInCU: 0x63AA, offset: 0x65452, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5398, symBinAddr: 0x1214C, symSize: 0x1B0 } - - { offsetInCU: 0x6490, offset: 0x65538, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5548, symBinAddr: 0x122FC, symSize: 0xC4 } - - { offsetInCU: 0x6516, offset: 0x655BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x560C, symBinAddr: 0x123C0, symSize: 0x4 } - - { offsetInCU: 0x65FD, offset: 0x656A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5610, symBinAddr: 0x123C4, symSize: 0x240 } - - { offsetInCU: 0x6988, offset: 0x65A30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x5850, symBinAddr: 0x12604, symSize: 0x390 } - - { offsetInCU: 0x6BCF, offset: 0x65C77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5BE0, symBinAddr: 0x12994, symSize: 0xB0 } - - { offsetInCU: 0x6CB5, offset: 0x65D5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5C90, symBinAddr: 0x12A44, symSize: 0x4 } - - { offsetInCU: 0x6CD5, offset: 0x65D7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5C90, symBinAddr: 0x12A44, symSize: 0x4 } - - { offsetInCU: 0x6CFA, offset: 0x65DA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5C94, symBinAddr: 0x12A48, symSize: 0x4 } - - { offsetInCU: 0x6D16, offset: 0x65DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5C98, symBinAddr: 0x12A4C, symSize: 0x4 } - - { offsetInCU: 0x6D32, offset: 0x65DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5C9C, symBinAddr: 0x12A50, symSize: 0x4 } - - { offsetInCU: 0x6D4E, offset: 0x65DF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5CA0, symBinAddr: 0x12A54, symSize: 0x4 } - - { offsetInCU: 0x6D6A, offset: 0x65E12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5CA4, symBinAddr: 0x12A58, symSize: 0x4 } - - { offsetInCU: 0x6D86, offset: 0x65E2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5CA8, symBinAddr: 0x12A5C, symSize: 0x204 } - - { offsetInCU: 0x6E16, offset: 0x65EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5EAC, symBinAddr: 0x12C60, symSize: 0x140 } - - { offsetInCU: 0x6F04, offset: 0x65FAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5FEC, symBinAddr: 0x12DA0, symSize: 0x24 } - - { offsetInCU: 0x6F46, offset: 0x65FEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x6010, symBinAddr: 0x12DC4, symSize: 0x8 } - - { offsetInCU: 0x6F88, offset: 0x66030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x6018, symBinAddr: 0x12DCC, symSize: 0x8 } - - { offsetInCU: 0x6FCA, offset: 0x66072, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x6020, symBinAddr: 0x12DD4, symSize: 0x8 } - - { offsetInCU: 0x700C, offset: 0x660B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6028, symBinAddr: 0x12DDC, symSize: 0x8 } - - { offsetInCU: 0x704E, offset: 0x660F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x6030, symBinAddr: 0x12DE4, symSize: 0x8 } - - { offsetInCU: 0x7090, offset: 0x66138, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6038, symBinAddr: 0x12DEC, symSize: 0x8 } - - { offsetInCU: 0x70D2, offset: 0x6617A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x6040, symBinAddr: 0x12DF4, symSize: 0x8 } - - { offsetInCU: 0x7114, offset: 0x661BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6048, symBinAddr: 0x12DFC, symSize: 0x4 } - - { offsetInCU: 0x7134, offset: 0x661DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6048, symBinAddr: 0x12DFC, symSize: 0x4 } - - { offsetInCU: 0x7147, offset: 0x661EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x60B0, symBinAddr: 0x12E24, symSize: 0x8 } - - { offsetInCU: 0x719D, offset: 0x66245, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x64BC, symBinAddr: 0x131C4, symSize: 0x1DC } - - { offsetInCU: 0x7244, offset: 0x662EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x8B68, symBinAddr: 0x15870, symSize: 0xAC } - - { offsetInCU: 0x7286, offset: 0x6632E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x8C14, symBinAddr: 0x1591C, symSize: 0x94 } - - { offsetInCU: 0x72C8, offset: 0x66370, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x8CA8, symBinAddr: 0x159B0, symSize: 0x20 } - - { offsetInCU: 0x72DC, offset: 0x66384, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8D00, symBinAddr: 0x15A08, symSize: 0x8 } - - { offsetInCU: 0x72F0, offset: 0x66398, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8D08, symBinAddr: 0x15A10, symSize: 0x10 } - - { offsetInCU: 0x7304, offset: 0x663AC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8D18, symBinAddr: 0x15A20, symSize: 0x8 } - - { offsetInCU: 0x7318, offset: 0x663C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8DF8, symBinAddr: 0x15A28, symSize: 0x8 } - - { offsetInCU: 0x734D, offset: 0x663F5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x8E00, symBinAddr: 0x15A30, symSize: 0xC4 } - - { offsetInCU: 0x73C3, offset: 0x6646B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8EC4, symBinAddr: 0x15AF4, symSize: 0x78 } - - { offsetInCU: 0x73F0, offset: 0x66498, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8F3C, symBinAddr: 0x15B6C, symSize: 0x80 } - - { offsetInCU: 0x7466, offset: 0x6650E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x8FBC, symBinAddr: 0x15BEC, symSize: 0x68 } - - { offsetInCU: 0x74F7, offset: 0x6659F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x9024, symBinAddr: 0x15C54, symSize: 0x634 } - - { offsetInCU: 0x7A84, offset: 0x66B2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x9658, symBinAddr: 0x16288, symSize: 0x420 } - - { offsetInCU: 0x7E2D, offset: 0x66ED5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9A78, symBinAddr: 0x166A8, symSize: 0x20C } - - { offsetInCU: 0x7F5A, offset: 0x67002, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9C84, symBinAddr: 0x168B4, symSize: 0x20C } - - { offsetInCU: 0x80D6, offset: 0x6717E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9E90, symBinAddr: 0x16AC0, symSize: 0x130 } - - { offsetInCU: 0x8208, offset: 0x672B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9FC0, symBinAddr: 0x16BF0, symSize: 0x220 } - - { offsetInCU: 0x8461, offset: 0x67509, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA1E0, symBinAddr: 0x16E10, symSize: 0x8A4 } - - { offsetInCU: 0x8AA4, offset: 0x67B4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xAA84, symBinAddr: 0x176B4, symSize: 0x704 } - - { offsetInCU: 0x8E92, offset: 0x67F3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xB188, symBinAddr: 0x17DB8, symSize: 0x140 } - - { offsetInCU: 0x8FD1, offset: 0x68079, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tg5Tf4d_n', symObjAddr: 0xB9F8, symBinAddr: 0x18628, symSize: 0x54 } - - { offsetInCU: 0x8FFE, offset: 0x680A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xBA90, symBinAddr: 0x1867C, symSize: 0x8 } - - { offsetInCU: 0x9012, offset: 0x680BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xBA98, symBinAddr: 0x18684, symSize: 0x4 } - - { offsetInCU: 0x9026, offset: 0x680CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xBA9C, symBinAddr: 0x18688, symSize: 0x44 } - - { offsetInCU: 0x903A, offset: 0x680E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xBAE0, symBinAddr: 0x186CC, symSize: 0x10 } - - { offsetInCU: 0x904E, offset: 0x680F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xBAF0, symBinAddr: 0x186DC, symSize: 0x24 } - - { offsetInCU: 0x9062, offset: 0x6810A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xBBDC, symBinAddr: 0x187C8, symSize: 0x10 } - - { offsetInCU: 0x9076, offset: 0x6811E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0xBC5C, symBinAddr: 0x18848, symSize: 0x18 } - - { offsetInCU: 0x908A, offset: 0x68132, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xBC74, symBinAddr: 0x18860, symSize: 0x10 } - - { offsetInCU: 0x909E, offset: 0x68146, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xBD04, symBinAddr: 0x188AC, symSize: 0x8 } - - { offsetInCU: 0x90B2, offset: 0x6815A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xBD0C, symBinAddr: 0x188B4, symSize: 0x8 } - - { offsetInCU: 0x90C6, offset: 0x6816E, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xBD24, symBinAddr: 0x188CC, symSize: 0x8 } - - { offsetInCU: 0x90DA, offset: 0x68182, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xBD2C, symBinAddr: 0x188D4, symSize: 0x8 } - - { offsetInCU: 0x910C, offset: 0x681B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xBD34, symBinAddr: 0x188DC, symSize: 0x288 } - - { offsetInCU: 0x92A9, offset: 0x68351, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xC41C, symBinAddr: 0x18DB4, symSize: 0x10 } - - { offsetInCU: 0x92BD, offset: 0x68365, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xC4D0, symBinAddr: 0x18E24, symSize: 0x10 } - - { offsetInCU: 0x92D1, offset: 0x68379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xC504, symBinAddr: 0x18E58, symSize: 0xC } - - { offsetInCU: 0x92E5, offset: 0x6838D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xC5DC, symBinAddr: 0x18EEC, symSize: 0xC } - - { offsetInCU: 0x9388, offset: 0x68430, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xCDB4, symSize: 0xE4 } - - { offsetInCU: 0x9449, offset: 0x684F1, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE4, symBinAddr: 0xCE98, symSize: 0xAC } - - { offsetInCU: 0x94F8, offset: 0x685A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x220, symBinAddr: 0xCFD4, symSize: 0x14 } - - { offsetInCU: 0x9589, offset: 0x68631, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x234, symBinAddr: 0xCFE8, symSize: 0x44 } - - { offsetInCU: 0x9618, offset: 0x686C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x278, symBinAddr: 0xD02C, symSize: 0x28 } - - { offsetInCU: 0x966B, offset: 0x68713, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2A0, symBinAddr: 0xD054, symSize: 0x40 } - - { offsetInCU: 0x5A, offset: 0x691B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x19024, symSize: 0x88 } - - { offsetInCU: 0x8E, offset: 0x691E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x88, symBinAddr: 0x190AC, symSize: 0x60 } - - { offsetInCU: 0xAC, offset: 0x69204, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0xE8, symBinAddr: 0x1910C, symSize: 0x44 } - - { offsetInCU: 0xCB, offset: 0x69223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x12C, symBinAddr: 0x19150, symSize: 0x48 } - - { offsetInCU: 0x10A, offset: 0x69262, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x174, symBinAddr: 0x19198, symSize: 0x44 } - - { offsetInCU: 0x139, offset: 0x69291, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x1B8, symBinAddr: 0x191DC, symSize: 0x54 } - - { offsetInCU: 0x158, offset: 0x692B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x20C, symBinAddr: 0x19230, symSize: 0x5C } - - { offsetInCU: 0x197, offset: 0x692EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x268, symBinAddr: 0x1928C, symSize: 0x44 } - - { offsetInCU: 0x1C6, offset: 0x6931E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x192D0, symSize: 0x48 } - - { offsetInCU: 0x1E5, offset: 0x6933D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x2F4, symBinAddr: 0x19318, symSize: 0x50 } - - { offsetInCU: 0x224, offset: 0x6937C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x344, symBinAddr: 0x19368, symSize: 0x44 } - - { offsetInCU: 0x253, offset: 0x693AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x3A0, symBinAddr: 0x193C4, symSize: 0x44 } - - { offsetInCU: 0x282, offset: 0x693DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x3FC, symBinAddr: 0x19420, symSize: 0x44 } - - { offsetInCU: 0x2B1, offset: 0x69409, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x440, symBinAddr: 0x19464, symSize: 0x4 } - - { offsetInCU: 0x2DC, offset: 0x69434, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x4E0, symBinAddr: 0x19504, symSize: 0x44 } - - { offsetInCU: 0x30B, offset: 0x69463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x53C, symBinAddr: 0x19560, symSize: 0x44 } - - { offsetInCU: 0x33A, offset: 0x69492, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x634, symBinAddr: 0x19658, symSize: 0x44 } - - { offsetInCU: 0x369, offset: 0x694C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x690, symBinAddr: 0x196B4, symSize: 0x44 } - - { offsetInCU: 0x398, offset: 0x694F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x794, symBinAddr: 0x197B8, symSize: 0x44 } - - { offsetInCU: 0x3C7, offset: 0x6951F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x7F0, symBinAddr: 0x19814, symSize: 0x44 } - - { offsetInCU: 0x3F6, offset: 0x6954E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0x8DC, symBinAddr: 0x19900, symSize: 0x44 } - - { offsetInCU: 0x443, offset: 0x6959B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0x920, symBinAddr: 0x19944, symSize: 0x110 } - - { offsetInCU: 0x621, offset: 0x69779, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xA30, symBinAddr: 0x19A54, symSize: 0x6F4 } - - { offsetInCU: 0x1185, offset: 0x6A2DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1124, symBinAddr: 0x1A148, symSize: 0x44 } - - { offsetInCU: 0x1199, offset: 0x6A2F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1168, symBinAddr: 0x1A18C, symSize: 0x184 } - - { offsetInCU: 0x1204, offset: 0x6A35C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x12EC, symBinAddr: 0x1A310, symSize: 0x70 } - - { offsetInCU: 0x1229, offset: 0x6A381, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x135C, symBinAddr: 0x1A380, symSize: 0x434 } - - { offsetInCU: 0x12CA, offset: 0x6A422, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x1790, symBinAddr: 0x1A7B4, symSize: 0x20 } - - { offsetInCU: 0x12E8, offset: 0x6A440, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x17B0, symBinAddr: 0x1A7D4, symSize: 0x2C } - - { offsetInCU: 0x134B, offset: 0x6A4A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x17DC, symBinAddr: 0x1A800, symSize: 0x2C } - - { offsetInCU: 0x13B2, offset: 0x6A50A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x1808, symBinAddr: 0x1A82C, symSize: 0x30 } - - { offsetInCU: 0x141B, offset: 0x6A573, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfcTf4ggnnn_n', symObjAddr: 0x22E4, symBinAddr: 0x1B308, symSize: 0x1A4 } - - { offsetInCU: 0x168A, offset: 0x6A7E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1838, symBinAddr: 0x1A85C, symSize: 0x84 } - - { offsetInCU: 0x16B9, offset: 0x6A811, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x18BC, symBinAddr: 0x1A8E0, symSize: 0x5C } - - { offsetInCU: 0x1751, offset: 0x6A8A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1918, symBinAddr: 0x1A93C, symSize: 0x218 } - - { offsetInCU: 0x1996, offset: 0x6AAEE, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1B30, symBinAddr: 0x1AB54, symSize: 0xD4 } - - { offsetInCU: 0x1BD4, offset: 0x6AD2C, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1C04, symBinAddr: 0x1AC28, symSize: 0x12C } - - { offsetInCU: 0x1DCB, offset: 0x6AF23, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x1D30, symBinAddr: 0x1AD54, symSize: 0xB4 } - - { offsetInCU: 0x1F5D, offset: 0x6B0B5, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x2090, symBinAddr: 0x1B0B4, symSize: 0x64 } - - { offsetInCU: 0x1FF6, offset: 0x6B14E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x24C8, symBinAddr: 0x1B4AC, symSize: 0x20 } - - { offsetInCU: 0x200A, offset: 0x6B162, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x252C, symBinAddr: 0x1B4CC, symSize: 0x10 } - - { offsetInCU: 0x2187, offset: 0x6B2DF, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x1DE4, symBinAddr: 0x1AE08, symSize: 0x2AC } - - { offsetInCU: 0x23DB, offset: 0x6B533, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTg5Tf4nd_n', symObjAddr: 0x20F4, symBinAddr: 0x1B118, symSize: 0xD0 } - - { offsetInCU: 0x2474, offset: 0x6B5CC, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTg5Tf4gd_n', symObjAddr: 0x21C4, symBinAddr: 0x1B1E8, symSize: 0x110 } - - { offsetInCU: 0x134, offset: 0x6B960, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1B508, symSize: 0x33C } - - { offsetInCU: 0x222, offset: 0x6BA4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x33C, symBinAddr: 0x1B844, symSize: 0x334 } - - { offsetInCU: 0x654, offset: 0x6BE80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x754, symBinAddr: 0x1BC5C, symSize: 0x47C } - - { offsetInCU: 0x870, offset: 0x6C09C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xBD0, symBinAddr: 0x1C0D8, symSize: 0x138 } - - { offsetInCU: 0xA31, offset: 0x6C25D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xD5C, symBinAddr: 0x1C264, symSize: 0x6B0 } - - { offsetInCU: 0xE0C, offset: 0x6C638, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x140C, symBinAddr: 0x1C914, symSize: 0xA4 } - - { offsetInCU: 0xEB4, offset: 0x6C6E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x14B0, symBinAddr: 0x1C9B8, symSize: 0x250 } - - { offsetInCU: 0xF0D, offset: 0x6C739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x1700, symBinAddr: 0x1CC08, symSize: 0x20 } - - { offsetInCU: 0xF29, offset: 0x6C755, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1720, symBinAddr: 0x1CC28, symSize: 0x30 } - - { offsetInCU: 0x118A, offset: 0x6C9B6, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x670, symBinAddr: 0x1BB78, symSize: 0x20 } - - { offsetInCU: 0x119E, offset: 0x6C9CA, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x690, symBinAddr: 0x1BB98, symSize: 0x20 } - - { offsetInCU: 0x11CC, offset: 0x6C9F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x6B0, symBinAddr: 0x1BBB8, symSize: 0xA4 } - - { offsetInCU: 0x14EE, offset: 0x6CD1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x1750, symBinAddr: 0x1CC58, symSize: 0x78 } - - { offsetInCU: 0x151D, offset: 0x6CD49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x17C8, symBinAddr: 0x1CCD0, symSize: 0x20 } - - { offsetInCU: 0x1531, offset: 0x6CD5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x17E8, symBinAddr: 0x1CCF0, symSize: 0x30 } - - { offsetInCU: 0x1545, offset: 0x6CD71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1818, symBinAddr: 0x1CD20, symSize: 0x4 } - - { offsetInCU: 0x1559, offset: 0x6CD85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x183C, symBinAddr: 0x1CD24, symSize: 0x40 } - - { offsetInCU: 0x156D, offset: 0x6CD99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x187C, symBinAddr: 0x1CD64, symSize: 0x30 } - - { offsetInCU: 0x1581, offset: 0x6CDAD, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x18AC, symBinAddr: 0x1CD94, symSize: 0x168 } - - { offsetInCU: 0x1595, offset: 0x6CDC1, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1A14, symBinAddr: 0x1CEFC, symSize: 0x14 } - - { offsetInCU: 0x15A9, offset: 0x6CDD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1A28, symBinAddr: 0x1CF10, symSize: 0x40 } - - { offsetInCU: 0x15BD, offset: 0x6CDE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1A68, symBinAddr: 0x1CF50, symSize: 0x48 } - - { offsetInCU: 0x15D1, offset: 0x6CDFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1AB0, symBinAddr: 0x1CF98, symSize: 0x4C } - - { offsetInCU: 0x15E5, offset: 0x6CE11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1AFC, symBinAddr: 0x1CFE4, symSize: 0x10 } - - { offsetInCU: 0x1681, offset: 0x6CEAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1BAC, symBinAddr: 0x1D094, symSize: 0x2A0 } - - { offsetInCU: 0x18B5, offset: 0x6D0E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x1E4C, symBinAddr: 0x1D334, symSize: 0x214 } - - { offsetInCU: 0x19DE, offset: 0x6D20A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x2060, symBinAddr: 0x1D548, symSize: 0x478 } - - { offsetInCU: 0x1DC9, offset: 0x6D5F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x24D8, symBinAddr: 0x1D9C0, symSize: 0x85C } - - { offsetInCU: 0x22D1, offset: 0x6DAFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2D68, symBinAddr: 0x1E250, symSize: 0xC } - - { offsetInCU: 0x22F0, offset: 0x6DB1C, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x2D84, symBinAddr: 0x1E26C, symSize: 0x20 } - - { offsetInCU: 0x2319, offset: 0x6DB45, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2DA4, symBinAddr: 0x1E28C, symSize: 0x10 } - - { offsetInCU: 0x232D, offset: 0x6DB59, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2DB4, symBinAddr: 0x1E29C, symSize: 0x8 } - - { offsetInCU: 0x2341, offset: 0x6DB6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x2DE0, symBinAddr: 0x1E2C8, symSize: 0x18 } - - { offsetInCU: 0x2360, offset: 0x6DB8C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x2EA0, symBinAddr: 0x1E2E0, symSize: 0x14 } - - { offsetInCU: 0x2398, offset: 0x6DBC4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x2EB4, symBinAddr: 0x1E2F4, symSize: 0x14 } - - { offsetInCU: 0x23C5, offset: 0x6DBF1, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x2EC8, symBinAddr: 0x1E308, symSize: 0x78 } - - { offsetInCU: 0x243A, offset: 0x6DC66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x2F40, symBinAddr: 0x1E380, symSize: 0x594 } - - { offsetInCU: 0x2624, offset: 0x6DE50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x34D4, symBinAddr: 0x1E914, symSize: 0x55C } - - { offsetInCU: 0x2803, offset: 0x6E02F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3A30, symBinAddr: 0x1EE70, symSize: 0x44 } - - { offsetInCU: 0x2817, offset: 0x6E043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3A8C, symBinAddr: 0x1EEB4, symSize: 0x8 } - - { offsetInCU: 0x282B, offset: 0x6E057, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3AB8, symBinAddr: 0x1EEE0, symSize: 0x20 } - - { offsetInCU: 0x2864, offset: 0x6E090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3AD8, symBinAddr: 0x1EF00, symSize: 0x48 } - - { offsetInCU: 0x288D, offset: 0x6E0B9, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3B20, symBinAddr: 0x1EF48, symSize: 0x48 } - - { offsetInCU: 0x28A8, offset: 0x6E0D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3B68, symBinAddr: 0x1EF90, symSize: 0x24 } - - { offsetInCU: 0x28D8, offset: 0x6E104, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3BB4, symBinAddr: 0x1EFB4, symSize: 0x38 } - - { offsetInCU: 0x2901, offset: 0x6E12D, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3BEC, symBinAddr: 0x1EFEC, symSize: 0x3C } - - { offsetInCU: 0x2915, offset: 0x6E141, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3C30, symBinAddr: 0x1F030, symSize: 0x3C } - - { offsetInCU: 0x2929, offset: 0x6E155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3CEC, symBinAddr: 0x1F0EC, symSize: 0x24 } - - { offsetInCU: 0x293D, offset: 0x6E169, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3D10, symBinAddr: 0x1F110, symSize: 0x178 } - - { offsetInCU: 0x2AF2, offset: 0x6E31E, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x3E88, symBinAddr: 0x1F288, symSize: 0x40 } - - { offsetInCU: 0x2B06, offset: 0x6E332, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x3F48, symBinAddr: 0x1F348, symSize: 0x44 } - - { offsetInCU: 0x2B1A, offset: 0x6E346, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOs', symObjAddr: 0x3F8C, symBinAddr: 0x1F38C, symSize: 0x44 } - - { offsetInCU: 0x2B2E, offset: 0x6E35A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x40B0, symBinAddr: 0x1F4B0, symSize: 0xC } - - { offsetInCU: 0x2B42, offset: 0x6E36E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x4138, symBinAddr: 0x1F4CC, symSize: 0x18 } - - { offsetInCU: 0x2CAD, offset: 0x6E4D9, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1B0C, symBinAddr: 0x1CFF4, symSize: 0xA0 } - - { offsetInCU: 0x27, offset: 0x6E819, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x1F518, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x6E83D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x4750, symBinAddr: 0x62280, symSize: 0x0 } - - { offsetInCU: 0x76, offset: 0x6E868, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x168, symBinAddr: 0x1F680, symSize: 0x20 } - - { offsetInCU: 0x8A, offset: 0x6E87C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x188, symBinAddr: 0x1F6A0, symSize: 0x68 } - - { offsetInCU: 0xC1, offset: 0x6E8B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1F0, symBinAddr: 0x1F708, symSize: 0x74 } - - { offsetInCU: 0x108, offset: 0x6E8FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x264, symBinAddr: 0x1F77C, symSize: 0x6C } - - { offsetInCU: 0x13F, offset: 0x6E931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2D0, symBinAddr: 0x1F7E8, symSize: 0x4 } - - { offsetInCU: 0x16A, offset: 0x6E95C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2D4, symBinAddr: 0x1F7EC, symSize: 0x40 } - - { offsetInCU: 0x1A7, offset: 0x6E999, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x334, symBinAddr: 0x1F84C, symSize: 0x4C } - - { offsetInCU: 0x202, offset: 0x6E9F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x380, symBinAddr: 0x1F898, symSize: 0x148 } - - { offsetInCU: 0x3AA, offset: 0x6EB9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x508, symBinAddr: 0x1F9E0, symSize: 0x30 } - - { offsetInCU: 0x3D8, offset: 0x6EBCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x1F518, symSize: 0x40 } - - { offsetInCU: 0x3F8, offset: 0x6EBEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x40, symBinAddr: 0x1F558, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x6EC09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x50, symBinAddr: 0x1F568, symSize: 0x8 } - - { offsetInCU: 0x45C, offset: 0x6EC4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x118, symBinAddr: 0x1F630, symSize: 0x18 } - - { offsetInCU: 0x48D, offset: 0x6EC7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x130, symBinAddr: 0x1F648, symSize: 0xC } - - { offsetInCU: 0x4CB, offset: 0x6ECBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x13C, symBinAddr: 0x1F654, symSize: 0x2C } - - { offsetInCU: 0x50C, offset: 0x6ECFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x314, symBinAddr: 0x1F82C, symSize: 0x20 } - - { offsetInCU: 0x583, offset: 0x6ED75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x538, symBinAddr: 0x1FA10, symSize: 0x4 } - - { offsetInCU: 0x597, offset: 0x6ED89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x53C, symBinAddr: 0x1FA14, symSize: 0x44 } - - { offsetInCU: 0x5AB, offset: 0x6ED9D, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x580, symBinAddr: 0x1FA58, symSize: 0xC } - - { offsetInCU: 0x5BF, offset: 0x6EDB1, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x58C, symBinAddr: 0x1FA64, symSize: 0x4 } - - { offsetInCU: 0x5D3, offset: 0x6EDC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x590, symBinAddr: 0x1FA68, symSize: 0x90 } - - { offsetInCU: 0x5E7, offset: 0x6EDD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x620, symBinAddr: 0x1FAF8, symSize: 0xBC } - - { offsetInCU: 0x5FB, offset: 0x6EDED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6DC, symBinAddr: 0x1FBB4, symSize: 0x8 } - - { offsetInCU: 0x60F, offset: 0x6EE01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6E4, symBinAddr: 0x1FBBC, symSize: 0x4 } - - { offsetInCU: 0x623, offset: 0x6EE15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x6E8, symBinAddr: 0x1FBC0, symSize: 0x8 } - - { offsetInCU: 0x637, offset: 0x6EE29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x6F0, symBinAddr: 0x1FBC8, symSize: 0x10 } - - { offsetInCU: 0x64B, offset: 0x6EE3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x700, symBinAddr: 0x1FBD8, symSize: 0x4 } - - { offsetInCU: 0x699, offset: 0x6EE8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x58, symBinAddr: 0x1F570, symSize: 0x14 } - - { offsetInCU: 0x72A, offset: 0x6EF1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x6C, symBinAddr: 0x1F584, symSize: 0x44 } - - { offsetInCU: 0x7D9, offset: 0x6EFCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB0, symBinAddr: 0x1F5C8, symSize: 0x28 } - - { offsetInCU: 0x82C, offset: 0x6F01E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xD8, symBinAddr: 0x1F5F0, symSize: 0x40 } - - { offsetInCU: 0x99, offset: 0x6F255, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x1FBDC, symSize: 0x15C } - - { offsetInCU: 0x16F, offset: 0x6F32B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x15C, symBinAddr: 0x1FD38, symSize: 0x11C } - - { offsetInCU: 0x1BE, offset: 0x6F37A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x278, symBinAddr: 0x1FE54, symSize: 0x44 } - - { offsetInCU: 0x1DD, offset: 0x6F399, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2BC, symBinAddr: 0x1FE98, symSize: 0x48 } - - { offsetInCU: 0x21C, offset: 0x6F3D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x304, symBinAddr: 0x1FEE0, symSize: 0x44 } - - { offsetInCU: 0x24B, offset: 0x6F407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x348, symBinAddr: 0x1FF24, symSize: 0x54 } - - { offsetInCU: 0x26A, offset: 0x6F426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x39C, symBinAddr: 0x1FF78, symSize: 0x5C } - - { offsetInCU: 0x2A9, offset: 0x6F465, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x3F8, symBinAddr: 0x1FFD4, symSize: 0x44 } - - { offsetInCU: 0x2D8, offset: 0x6F494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x43C, symBinAddr: 0x20018, symSize: 0x48 } - - { offsetInCU: 0x2F7, offset: 0x6F4B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x484, symBinAddr: 0x20060, symSize: 0x50 } - - { offsetInCU: 0x336, offset: 0x6F4F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x4D4, symBinAddr: 0x200B0, symSize: 0x44 } - - { offsetInCU: 0x365, offset: 0x6F521, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x530, symBinAddr: 0x2010C, symSize: 0x44 } - - { offsetInCU: 0x394, offset: 0x6F550, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x610, symBinAddr: 0x201EC, symSize: 0x44 } - - { offsetInCU: 0x3C3, offset: 0x6F57F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x654, symBinAddr: 0x20230, symSize: 0x4 } - - { offsetInCU: 0x40C, offset: 0x6F5C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x658, symBinAddr: 0x20234, symSize: 0x110 } - - { offsetInCU: 0x518, offset: 0x6F6D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x768, symBinAddr: 0x20344, symSize: 0x14C } - - { offsetInCU: 0x59A, offset: 0x6F756, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x8B4, symBinAddr: 0x20490, symSize: 0x114 } - - { offsetInCU: 0x5DD, offset: 0x6F799, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x9C8, symBinAddr: 0x205A4, symSize: 0x20 } - - { offsetInCU: 0x5FB, offset: 0x6F7B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x9E8, symBinAddr: 0x205C4, symSize: 0x2C } - - { offsetInCU: 0x65E, offset: 0x6F81A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0xA14, symBinAddr: 0x205F0, symSize: 0x2C } - - { offsetInCU: 0x6C5, offset: 0x6F881, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0xA40, symBinAddr: 0x2061C, symSize: 0x30 } - - { offsetInCU: 0x79D, offset: 0x6F959, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0xA70, symBinAddr: 0x2064C, symSize: 0x3C } - - { offsetInCU: 0x7CC, offset: 0x6F988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xAAC, symBinAddr: 0x20688, symSize: 0x5C } - - { offsetInCU: 0x82A, offset: 0x6F9E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xB08, symBinAddr: 0x206E4, symSize: 0x218 } - - { offsetInCU: 0xA2D, offset: 0x6FBE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xD20, symBinAddr: 0x208FC, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x6FD66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x2092C, symSize: 0x14 } - - { offsetInCU: 0x4B, offset: 0x6FD8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x2092C, symSize: 0x14 } - - { offsetInCU: 0x6A, offset: 0x6FDA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x14, symBinAddr: 0x20940, symSize: 0x4 } - - { offsetInCU: 0xB6, offset: 0x6FDF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x104, symBinAddr: 0x20A30, symSize: 0x28 } - - { offsetInCU: 0xE7, offset: 0x6FE26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x12C, symBinAddr: 0x20A58, symSize: 0x18 } - - { offsetInCU: 0x110, offset: 0x6FE4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7F0, symBinAddr: 0x2111C, symSize: 0x2C } - - { offsetInCU: 0x169, offset: 0x6FEA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x144, symBinAddr: 0x20A70, symSize: 0x58 } - - { offsetInCU: 0x188, offset: 0x6FEC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x19C, symBinAddr: 0x20AC8, symSize: 0x14 } - - { offsetInCU: 0x1EA, offset: 0x6FF29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x29C, symBinAddr: 0x20BC8, symSize: 0x70 } - - { offsetInCU: 0x21B, offset: 0x6FF5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x30C, symBinAddr: 0x20C38, symSize: 0x18 } - - { offsetInCU: 0x2F9, offset: 0x70038, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x324, symBinAddr: 0x20C50, symSize: 0x220 } - - { offsetInCU: 0x590, offset: 0x702CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x554, symBinAddr: 0x20E80, symSize: 0x11C } - - { offsetInCU: 0x820, offset: 0x7055F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x670, symBinAddr: 0x20F9C, symSize: 0xC0 } - - { offsetInCU: 0x968, offset: 0x706A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x730, symBinAddr: 0x2105C, symSize: 0xC0 } - - { offsetInCU: 0xA95, offset: 0x707D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x81C, symBinAddr: 0x21148, symSize: 0x4 } - - { offsetInCU: 0xAA9, offset: 0x707E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x820, symBinAddr: 0x2114C, symSize: 0x44 } - - { offsetInCU: 0xABD, offset: 0x707FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x864, symBinAddr: 0x21190, symSize: 0x4 } - - { offsetInCU: 0xAD1, offset: 0x70810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x868, symBinAddr: 0x21194, symSize: 0x44 } - - { offsetInCU: 0xAE5, offset: 0x70824, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x8BC, symBinAddr: 0x211D8, symSize: 0x90 } - - { offsetInCU: 0xAF9, offset: 0x70838, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x94C, symBinAddr: 0x21268, symSize: 0xBC } - - { offsetInCU: 0xB0D, offset: 0x7084C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0xA08, symBinAddr: 0x21324, symSize: 0x8 } - - { offsetInCU: 0xB21, offset: 0x70860, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0xA10, symBinAddr: 0x2132C, symSize: 0x4 } - - { offsetInCU: 0xB35, offset: 0x70874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0xA14, symBinAddr: 0x21330, symSize: 0x8 } - - { offsetInCU: 0xB49, offset: 0x70888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0xA1C, symBinAddr: 0x21338, symSize: 0x10 } - - { offsetInCU: 0xB5D, offset: 0x7089C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0xA2C, symBinAddr: 0x21348, symSize: 0x90 } - - { offsetInCU: 0xB71, offset: 0x708B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xABC, symBinAddr: 0x213D8, symSize: 0xBC } - - { offsetInCU: 0xB85, offset: 0x708C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xB78, symBinAddr: 0x21494, symSize: 0x4 } - - { offsetInCU: 0xB99, offset: 0x708D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xB7C, symBinAddr: 0x21498, symSize: 0x10 } - - { offsetInCU: 0xBAD, offset: 0x708EC, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xBCC, symBinAddr: 0x214A8, symSize: 0x4C } - - { offsetInCU: 0xBE4, offset: 0x70923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x18, symBinAddr: 0x20944, symSize: 0x24 } - - { offsetInCU: 0xC86, offset: 0x709C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x3C, symBinAddr: 0x20968, symSize: 0x4C } - - { offsetInCU: 0xD5E, offset: 0x70A9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x209B4, symSize: 0x34 } - - { offsetInCU: 0xDDA, offset: 0x70B19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBC, symBinAddr: 0x209E8, symSize: 0x48 } - - { offsetInCU: 0xE95, offset: 0x70BD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B0, symBinAddr: 0x20ADC, symSize: 0x24 } - - { offsetInCU: 0xF37, offset: 0x70C76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x1D4, symBinAddr: 0x20B00, symSize: 0x4C } - - { offsetInCU: 0x100F, offset: 0x70D4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x220, symBinAddr: 0x20B4C, symSize: 0x34 } - - { offsetInCU: 0x108B, offset: 0x70DCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x254, symBinAddr: 0x20B80, symSize: 0x48 } - - { offsetInCU: 0xBF, offset: 0x710B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x214FC, symSize: 0x164 } - - { offsetInCU: 0x1E7, offset: 0x711DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x164, symBinAddr: 0x21660, symSize: 0x1CC } - - { offsetInCU: 0x397, offset: 0x7138A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x340, symBinAddr: 0x2183C, symSize: 0xC9C } - - { offsetInCU: 0xA4E, offset: 0x71A41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0xFDC, symBinAddr: 0x224D8, symSize: 0x34 } - - { offsetInCU: 0xC6B, offset: 0x71C5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1010, symBinAddr: 0x2250C, symSize: 0x20 } - - { offsetInCU: 0xC7F, offset: 0x71C72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1030, symBinAddr: 0x2252C, symSize: 0x44 } - - { offsetInCU: 0xC93, offset: 0x71C86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x10F8, symBinAddr: 0x22570, symSize: 0x34 } - - { offsetInCU: 0xCA7, offset: 0x71C9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x112C, symBinAddr: 0x225A4, symSize: 0x50 } - - { offsetInCU: 0xCBB, offset: 0x71CAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x117C, symBinAddr: 0x225F4, symSize: 0x34 } - - { offsetInCU: 0xCCF, offset: 0x71CC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x11B0, symBinAddr: 0x22628, symSize: 0x5C } - - { offsetInCU: 0xCE3, offset: 0x71CD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x12C0, symBinAddr: 0x22738, symSize: 0x50 } - - { offsetInCU: 0xCF7, offset: 0x71CEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1310, symBinAddr: 0x22788, symSize: 0x80 } - - { offsetInCU: 0xD0B, offset: 0x71CFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x1390, symBinAddr: 0x22808, symSize: 0x24 } - - { offsetInCU: 0x4B, offset: 0x71F70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x2282C, symSize: 0x3C } - - { offsetInCU: 0x6A, offset: 0x71F8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3C, symBinAddr: 0x22868, symSize: 0x4 } - - { offsetInCU: 0xAD, offset: 0x71FD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x84, symBinAddr: 0x228B0, symSize: 0x34 } - - { offsetInCU: 0xDE, offset: 0x72003, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xB8, symBinAddr: 0x228E4, symSize: 0xC } - - { offsetInCU: 0x128, offset: 0x7204D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0xD0, symBinAddr: 0x228FC, symSize: 0x4 } - - { offsetInCU: 0x151, offset: 0x72076, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x22C7C, symSize: 0x4C } - - { offsetInCU: 0x189, offset: 0x720AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x114, symBinAddr: 0x22940, symSize: 0x4 } - - { offsetInCU: 0x1B2, offset: 0x720D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x49C, symBinAddr: 0x22CC8, symSize: 0x4C } - - { offsetInCU: 0x1EA, offset: 0x7210F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x190, symBinAddr: 0x229BC, symSize: 0x4 } - - { offsetInCU: 0x220, offset: 0x72145, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1E4, symBinAddr: 0x22A10, symSize: 0x4 } - - { offsetInCU: 0x256, offset: 0x7217B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1EC, symBinAddr: 0x22A18, symSize: 0x4 } - - { offsetInCU: 0x28C, offset: 0x721B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x22C, symBinAddr: 0x22A58, symSize: 0x4 } - - { offsetInCU: 0x2CF, offset: 0x721F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x230, symBinAddr: 0x22A5C, symSize: 0x2C } - - { offsetInCU: 0x30D, offset: 0x72232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x268, symBinAddr: 0x22A94, symSize: 0x4 } - - { offsetInCU: 0x336, offset: 0x7225B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x534, symBinAddr: 0x22D60, symSize: 0x58 } - - { offsetInCU: 0x36E, offset: 0x72293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x288, symBinAddr: 0x22AB4, symSize: 0x4C } - - { offsetInCU: 0x38D, offset: 0x722B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2D4, symBinAddr: 0x22B00, symSize: 0x4 } - - { offsetInCU: 0x3D0, offset: 0x722F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2D8, symBinAddr: 0x22B04, symSize: 0x44 } - - { offsetInCU: 0x40E, offset: 0x72333, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x31C, symBinAddr: 0x22B48, symSize: 0x28 } - - { offsetInCU: 0x42D, offset: 0x72352, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x344, symBinAddr: 0x22B70, symSize: 0x4 } - - { offsetInCU: 0x470, offset: 0x72395, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x348, symBinAddr: 0x22B74, symSize: 0x20 } - - { offsetInCU: 0x4AE, offset: 0x723D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x368, symBinAddr: 0x22B94, symSize: 0x34 } - - { offsetInCU: 0x4CD, offset: 0x723F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x39C, symBinAddr: 0x22BC8, symSize: 0x4 } - - { offsetInCU: 0x510, offset: 0x72435, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x424, symBinAddr: 0x22C50, symSize: 0x2C } - - { offsetInCU: 0x542, offset: 0x72467, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0x58C, symBinAddr: 0x22DB8, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x7247B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0x590, symBinAddr: 0x22DBC, symSize: 0x44 } - - { offsetInCU: 0x56A, offset: 0x7248F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x5D4, symBinAddr: 0x22E00, symSize: 0x4 } - - { offsetInCU: 0x57E, offset: 0x724A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x5D8, symBinAddr: 0x22E04, symSize: 0x44 } - - { offsetInCU: 0x592, offset: 0x724B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x61C, symBinAddr: 0x22E48, symSize: 0x4 } - - { offsetInCU: 0x5A6, offset: 0x724CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x620, symBinAddr: 0x22E4C, symSize: 0x44 } - - { offsetInCU: 0x5BA, offset: 0x724DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x664, symBinAddr: 0x22E90, symSize: 0x4 } - - { offsetInCU: 0x5CE, offset: 0x724F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x668, symBinAddr: 0x22E94, symSize: 0x44 } - - { offsetInCU: 0x5E2, offset: 0x72507, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x6AC, symBinAddr: 0x22ED8, symSize: 0x4 } - - { offsetInCU: 0x5F6, offset: 0x7251B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x6B0, symBinAddr: 0x22EDC, symSize: 0x44 } - - { offsetInCU: 0x60A, offset: 0x7252F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x6F4, symBinAddr: 0x22F20, symSize: 0x4 } - - { offsetInCU: 0x61E, offset: 0x72543, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x6F8, symBinAddr: 0x22F24, symSize: 0x44 } - - { offsetInCU: 0x632, offset: 0x72557, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x73C, symBinAddr: 0x22F68, symSize: 0x4 } - - { offsetInCU: 0x646, offset: 0x7256B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x740, symBinAddr: 0x22F6C, symSize: 0x44 } - - { offsetInCU: 0x65A, offset: 0x7257F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x784, symBinAddr: 0x22FB0, symSize: 0x4 } - - { offsetInCU: 0x66E, offset: 0x72593, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x788, symBinAddr: 0x22FB4, symSize: 0x44 } - - { offsetInCU: 0x682, offset: 0x725A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x7CC, symBinAddr: 0x22FF8, symSize: 0x4 } - - { offsetInCU: 0x696, offset: 0x725BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x7D0, symBinAddr: 0x22FFC, symSize: 0x44 } - - { offsetInCU: 0x6AA, offset: 0x725CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x814, symBinAddr: 0x23040, symSize: 0x4 } - - { offsetInCU: 0x6BE, offset: 0x725E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x818, symBinAddr: 0x23044, symSize: 0x44 } - - { offsetInCU: 0x6D2, offset: 0x725F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x85C, symBinAddr: 0x23088, symSize: 0x4 } - - { offsetInCU: 0x6E6, offset: 0x7260B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x860, symBinAddr: 0x2308C, symSize: 0x44 } - - { offsetInCU: 0x6FA, offset: 0x7261F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x8A4, symBinAddr: 0x230D0, symSize: 0x10 } - - { offsetInCU: 0x70E, offset: 0x72633, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x8B4, symBinAddr: 0x230E0, symSize: 0x10 } - - { offsetInCU: 0x722, offset: 0x72647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x8C4, symBinAddr: 0x230F0, symSize: 0x10 } - - { offsetInCU: 0x736, offset: 0x7265B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x8D4, symBinAddr: 0x23100, symSize: 0x10 } - - { offsetInCU: 0x74A, offset: 0x7266F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x8E4, symBinAddr: 0x23110, symSize: 0x10 } - - { offsetInCU: 0x75E, offset: 0x72683, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x8F4, symBinAddr: 0x23120, symSize: 0x10 } - - { offsetInCU: 0x772, offset: 0x72697, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x904, symBinAddr: 0x23130, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x726AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x914, symBinAddr: 0x23140, symSize: 0x10 } - - { offsetInCU: 0x79A, offset: 0x726BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x924, symBinAddr: 0x23150, symSize: 0x10 } - - { offsetInCU: 0x7AE, offset: 0x726D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x934, symBinAddr: 0x23160, symSize: 0x10 } - - { offsetInCU: 0x7C2, offset: 0x726E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x944, symBinAddr: 0x23170, symSize: 0x10 } - - { offsetInCU: 0x7F9, offset: 0x7271E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x2286C, symSize: 0x14 } - - { offsetInCU: 0x84E, offset: 0x72773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x58, symBinAddr: 0x22884, symSize: 0x28 } - - { offsetInCU: 0x4F, offset: 0x72914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x23254, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x72932, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0x38, symBinAddr: 0x2328C, symSize: 0x44 } - - { offsetInCU: 0x9C, offset: 0x72961, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x94, symBinAddr: 0x232E8, symSize: 0x44 } - - { offsetInCU: 0xBB, offset: 0x72980, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0xD8, symBinAddr: 0x2332C, symSize: 0x48 } - - { offsetInCU: 0xDA, offset: 0x7299F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x120, symBinAddr: 0x23374, symSize: 0x50 } - - { offsetInCU: 0x119, offset: 0x729DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x170, symBinAddr: 0x233C4, symSize: 0x44 } - - { offsetInCU: 0x148, offset: 0x72A0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1B4, symBinAddr: 0x23408, symSize: 0x4 } - - { offsetInCU: 0x173, offset: 0x72A38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x254, symBinAddr: 0x234A8, symSize: 0x44 } - - { offsetInCU: 0x1A2, offset: 0x72A67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x298, symBinAddr: 0x234EC, symSize: 0xD4 } - - { offsetInCU: 0x1EB, offset: 0x72AB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x38C, symBinAddr: 0x235E0, symSize: 0x20 } - - { offsetInCU: 0x207, offset: 0x72ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x3AC, symBinAddr: 0x23600, symSize: 0x30 } - - { offsetInCU: 0x29A, offset: 0x72B5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x648, symBinAddr: 0x2389C, symSize: 0x48 } - - { offsetInCU: 0x2F6, offset: 0x72BBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x690, symBinAddr: 0x238E4, symSize: 0x4C } - - { offsetInCU: 0x346, offset: 0x72C0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x6DC, symBinAddr: 0x23930, symSize: 0x48 } - - { offsetInCU: 0x3D3, offset: 0x72C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x36C, symBinAddr: 0x235C0, symSize: 0x20 } - - { offsetInCU: 0x3E7, offset: 0x72CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x3DC, symBinAddr: 0x23630, symSize: 0x48 } - - { offsetInCU: 0x422, offset: 0x72CE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x424, symBinAddr: 0x23678, symSize: 0x84 } - - { offsetInCU: 0x4B7, offset: 0x72D7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x4A8, symBinAddr: 0x236FC, symSize: 0x18 } - - { offsetInCU: 0x4E8, offset: 0x72DAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x4C0, symBinAddr: 0x23714, symSize: 0xEC } - - { offsetInCU: 0x54D, offset: 0x72E12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x5AC, symBinAddr: 0x23800, symSize: 0x18 } - - { offsetInCU: 0x56A, offset: 0x72E2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x5C4, symBinAddr: 0x23818, symSize: 0x20 } - - { offsetInCU: 0x5A4, offset: 0x72E69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x5E4, symBinAddr: 0x23838, symSize: 0x64 } - - { offsetInCU: 0x5E1, offset: 0x72EA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x724, symBinAddr: 0x23978, symSize: 0x20 } - - { offsetInCU: 0x639, offset: 0x72EFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x744, symBinAddr: 0x23998, symSize: 0x24 } - - { offsetInCU: 0x68C, offset: 0x72F51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x768, symBinAddr: 0x239BC, symSize: 0x20 } - - { offsetInCU: 0x6CD, offset: 0x72F92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x788, symBinAddr: 0x239DC, symSize: 0x1C } - - { offsetInCU: 0x741, offset: 0x73006, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x7A4, symBinAddr: 0x239F8, symSize: 0x24 } - - { offsetInCU: 0x7CF, offset: 0x73094, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x7C8, symBinAddr: 0x23A1C, symSize: 0x68 } - - { offsetInCU: 0x971, offset: 0x73236, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x830, symBinAddr: 0x23A84, symSize: 0x494 } - - { offsetInCU: 0xC5E, offset: 0x73523, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xCE4, symBinAddr: 0x23F18, symSize: 0x148 } - - { offsetInCU: 0xD2C, offset: 0x735F1, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xE2C, symBinAddr: 0x24060, symSize: 0x2C } - - { offsetInCU: 0xD44, offset: 0x73609, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xE58, symBinAddr: 0x2408C, symSize: 0x90 } - - { offsetInCU: 0xD60, offset: 0x73625, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xEE8, symBinAddr: 0x2411C, symSize: 0xC8 } - - { offsetInCU: 0xE2B, offset: 0x736F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0xFB0, symBinAddr: 0x241E4, symSize: 0x1C0 } - - { offsetInCU: 0xEB0, offset: 0x73775, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1170, symBinAddr: 0x243A4, symSize: 0x4 } - - { offsetInCU: 0xED3, offset: 0x73798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1174, symBinAddr: 0x243A8, symSize: 0x4C } - - { offsetInCU: 0xF05, offset: 0x737CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x11C0, symBinAddr: 0x243F4, symSize: 0x8 } - - { offsetInCU: 0xF28, offset: 0x737ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x11C8, symBinAddr: 0x243FC, symSize: 0x60 } - - { offsetInCU: 0xF5A, offset: 0x7381F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x1228, symBinAddr: 0x2445C, symSize: 0xBC } - - { offsetInCU: 0xFEB, offset: 0x738B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x12E4, symBinAddr: 0x24518, symSize: 0x154 } - - { offsetInCU: 0x1035, offset: 0x738FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x1438, symBinAddr: 0x2466C, symSize: 0x8 } - - { offsetInCU: 0x1058, offset: 0x7391D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x1440, symBinAddr: 0x24674, symSize: 0x78 } - - { offsetInCU: 0x10AB, offset: 0x73970, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x14B8, symBinAddr: 0x246EC, symSize: 0x4C } - - { offsetInCU: 0x1128, offset: 0x739ED, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x182C, symBinAddr: 0x24A14, symSize: 0x3C } - - { offsetInCU: 0x113C, offset: 0x73A01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x188C, symBinAddr: 0x24A74, symSize: 0x8 } - - { offsetInCU: 0x1150, offset: 0x73A15, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1894, symBinAddr: 0x24A7C, symSize: 0x10 } - - { offsetInCU: 0x1164, offset: 0x73A29, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18A4, symBinAddr: 0x24A8C, symSize: 0x8 } - - { offsetInCU: 0x1196, offset: 0x73A5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x18AC, symBinAddr: 0x24A94, symSize: 0x12C } - - { offsetInCU: 0x1222, offset: 0x73AE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x19D8, symBinAddr: 0x24BC0, symSize: 0x19C } - - { offsetInCU: 0x1308, offset: 0x73BCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1B74, symBinAddr: 0x24D5C, symSize: 0x134 } - - { offsetInCU: 0x13A4, offset: 0x73C69, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1D10, symBinAddr: 0x24EB4, symSize: 0x14 } - - { offsetInCU: 0x13CD, offset: 0x73C92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1D24, symBinAddr: 0x24EC8, symSize: 0x24 } - - { offsetInCU: 0x229, offset: 0x740D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x24EFC, symSize: 0xA78 } - - { offsetInCU: 0xF9A, offset: 0x74E41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x14DC, symBinAddr: 0x263D8, symSize: 0x9DC } - - { offsetInCU: 0x1B46, offset: 0x759ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x1EB8, symBinAddr: 0x26DB4, symSize: 0x970 } - - { offsetInCU: 0x274A, offset: 0x765F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2828, symBinAddr: 0x27724, symSize: 0xB94 } - - { offsetInCU: 0x3709, offset: 0x775B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x33BC, symBinAddr: 0x282B8, symSize: 0xB50 } - - { offsetInCU: 0x468F, offset: 0x78536, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x3F24, symBinAddr: 0x28E20, symSize: 0xA88 } - - { offsetInCU: 0x5423, offset: 0x792CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x49AC, symBinAddr: 0x298A8, symSize: 0xA10 } - - { offsetInCU: 0x5FC4, offset: 0x79E6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x53BC, symBinAddr: 0x2A2B8, symSize: 0x190 } - - { offsetInCU: 0x60AA, offset: 0x79F51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x554C, symBinAddr: 0x2A448, symSize: 0x180 } - - { offsetInCU: 0x6149, offset: 0x79FF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x56CC, symBinAddr: 0x2A5C8, symSize: 0x128 } - - { offsetInCU: 0x62B2, offset: 0x7A159, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x57F4, symBinAddr: 0x2A6F0, symSize: 0x58 } - - { offsetInCU: 0x632C, offset: 0x7A1D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x586C, symBinAddr: 0x2A768, symSize: 0x6F8 } - - { offsetInCU: 0x6ABA, offset: 0x7A961, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x584C, symBinAddr: 0x2A748, symSize: 0x20 } - - { offsetInCU: 0x6D95, offset: 0x7AC3C, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x5F64, symBinAddr: 0x2AE60, symSize: 0x68 } - - { offsetInCU: 0x6E91, offset: 0x7AD38, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x5FCC, symBinAddr: 0x2AEC8, symSize: 0xFC } - - { offsetInCU: 0x70A8, offset: 0x7AF4F, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x60C8, symBinAddr: 0x2AFC4, symSize: 0x3E8 } - - { offsetInCU: 0x7496, offset: 0x7B33D, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x64B0, symBinAddr: 0x2B3AC, symSize: 0x12C } - - { offsetInCU: 0x763B, offset: 0x7B4E2, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x65DC, symBinAddr: 0x2B4D8, symSize: 0x294 } - - { offsetInCU: 0x7828, offset: 0x7B6CF, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x6870, symBinAddr: 0x2B76C, symSize: 0x154 } - - { offsetInCU: 0x798E, offset: 0x7B835, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x69C4, symBinAddr: 0x2B8C0, symSize: 0x300 } - - { offsetInCU: 0x7A1D, offset: 0x7B8C4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x6CC4, symBinAddr: 0x2BBC0, symSize: 0x14 } - - { offsetInCU: 0x7A56, offset: 0x7B8FD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x6CD8, symBinAddr: 0x2BBD4, symSize: 0xFC } - - { offsetInCU: 0x7B14, offset: 0x7B9BB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x6F0C, symBinAddr: 0x2BE08, symSize: 0x14 } - - { offsetInCU: 0x7B41, offset: 0x7B9E8, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x6FD8, symBinAddr: 0x2BEC4, symSize: 0x48 } - - { offsetInCU: 0x7B55, offset: 0x7B9FC, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x7060, symBinAddr: 0x2BF0C, symSize: 0x10 } - - { offsetInCU: 0x7B69, offset: 0x7BA10, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x7108, symBinAddr: 0x2BF9C, symSize: 0x40 } - - { offsetInCU: 0x7E32, offset: 0x7BCD9, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x6DD4, symBinAddr: 0x2BCD0, symSize: 0x138 } - - { offsetInCU: 0x4F, offset: 0x7C04F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x1138, symBinAddr: 0x5EF28, symSize: 0x0 } - - { offsetInCU: 0x87, offset: 0x7C087, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2C020, symSize: 0xB4 } - - { offsetInCU: 0xE0, offset: 0x7C0E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1D0, symBinAddr: 0x2C1F0, symSize: 0x5C } - - { offsetInCU: 0x10E, offset: 0x7C10E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x22C, symBinAddr: 0x2C24C, symSize: 0x4EC } - - { offsetInCU: 0x202, offset: 0x7C202, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x718, symBinAddr: 0x2C738, symSize: 0x7C } - - { offsetInCU: 0x264, offset: 0x7C264, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x2C860, symSize: 0x14 } - - { offsetInCU: 0x2F3, offset: 0x7C2F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x854, symBinAddr: 0x2C874, symSize: 0x44 } - - { offsetInCU: 0x3D6, offset: 0x7C3D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x898, symBinAddr: 0x2C8B8, symSize: 0x28 } - - { offsetInCU: 0x468, offset: 0x7C468, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x900, symBinAddr: 0x2C920, symSize: 0x1B4 } - - { offsetInCU: 0x4D3, offset: 0x7C4D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAB4, symBinAddr: 0x2CAD4, symSize: 0x4 } - - { offsetInCU: 0x4ED, offset: 0x7C4ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAB8, symBinAddr: 0x2CAD8, symSize: 0x1C } - - { offsetInCU: 0x570, offset: 0x7C570, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xD68, symBinAddr: 0x2CCF4, symSize: 0xAC } - - { offsetInCU: 0x63B, offset: 0x7C63B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE14, symBinAddr: 0x2CDA0, symSize: 0x110 } - - { offsetInCU: 0x705, offset: 0x7C705, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB4, symBinAddr: 0x2C0D4, symSize: 0x11C } - - { offsetInCU: 0x75C, offset: 0x7C75C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAD4, symBinAddr: 0x2CAF4, symSize: 0x20 } - - { offsetInCU: 0x770, offset: 0x7C770, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB04, symBinAddr: 0x2CB14, symSize: 0x90 } - - { offsetInCU: 0x784, offset: 0x7C784, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xB94, symBinAddr: 0x2CBA4, symSize: 0xBC } - - { offsetInCU: 0x798, offset: 0x7C798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC50, symBinAddr: 0x2CC60, symSize: 0x8 } - - { offsetInCU: 0x7AC, offset: 0x7C7AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC58, symBinAddr: 0x2CC68, symSize: 0x4 } - - { offsetInCU: 0x7C0, offset: 0x7C7C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC5C, symBinAddr: 0x2CC6C, symSize: 0x8 } - - { offsetInCU: 0x7D4, offset: 0x7C7D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC64, symBinAddr: 0x2CC74, symSize: 0x10 } - - { offsetInCU: 0x7E8, offset: 0x7C7E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xC74, symBinAddr: 0x2CC84, symSize: 0x4 } - - { offsetInCU: 0x7FC, offset: 0x7C7FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xC78, symBinAddr: 0x2CC88, symSize: 0x44 } - - { offsetInCU: 0x810, offset: 0x7C810, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCBC, symBinAddr: 0x2CCCC, symSize: 0x10 } - - { offsetInCU: 0x824, offset: 0x7C824, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xCCC, symBinAddr: 0x2CCDC, symSize: 0x8 } - - { offsetInCU: 0x838, offset: 0x7C838, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xCD4, symBinAddr: 0x2CCE4, symSize: 0x10 } - - { offsetInCU: 0x84C, offset: 0x7C84C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xF74, symBinAddr: 0x2CF00, symSize: 0xC } - - { offsetInCU: 0x860, offset: 0x7C860, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x1038, symBinAddr: 0x2CFC4, symSize: 0x8 } - - { offsetInCU: 0x874, offset: 0x7C874, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x1040, symBinAddr: 0x2CFCC, symSize: 0x10 } - - { offsetInCU: 0x913, offset: 0x7C913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x2C8E0, symSize: 0x40 } - - { offsetInCU: 0xAC6, offset: 0x7CAC6, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x794, symBinAddr: 0x2C7B4, symSize: 0xAC } - - { offsetInCU: 0x2B, offset: 0x7CB86, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2CFE4, symSize: 0x5C } - - { offsetInCU: 0x64, offset: 0x7CBBF, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2CFE4, symSize: 0x5C } - - { offsetInCU: 0xE7, offset: 0x7CC42, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x5C, symBinAddr: 0x2D040, symSize: 0x104 } - - { offsetInCU: 0x194, offset: 0x7CCEF, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x160, symBinAddr: 0x2D144, symSize: 0xB4 } - - { offsetInCU: 0x340, offset: 0x7CE9B, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x214, symBinAddr: 0x2D1F8, symSize: 0x150 } - - { offsetInCU: 0x519, offset: 0x7D074, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x374, symBinAddr: 0x2D358, symSize: 0x10 } - - { offsetInCU: 0x547, offset: 0x7D0A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x384, symBinAddr: 0x2D368, symSize: 0x24 } - - { offsetInCU: 0x5E1, offset: 0x7D13C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x3A8, symBinAddr: 0x2D38C, symSize: 0x44 } - - { offsetInCU: 0x6E9, offset: 0x7D244, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3EC, symBinAddr: 0x2D3D0, symSize: 0x14 } - - { offsetInCU: 0x745, offset: 0x7D2A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x400, symBinAddr: 0x2D3E4, symSize: 0x44 } - - { offsetInCU: 0x828, offset: 0x7D383, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x444, symBinAddr: 0x2D428, symSize: 0x28 } - - { offsetInCU: 0x8B1, offset: 0x7D40C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x4AC, symBinAddr: 0x2D490, symSize: 0x4 } - - { offsetInCU: 0x8C5, offset: 0x7D420, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4B0, symBinAddr: 0x2D494, symSize: 0x44 } - - { offsetInCU: 0x8D9, offset: 0x7D434, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x514, symBinAddr: 0x2D4E8, symSize: 0x90 } - - { offsetInCU: 0x8ED, offset: 0x7D448, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x5A4, symBinAddr: 0x2D578, symSize: 0xBC } - - { offsetInCU: 0x901, offset: 0x7D45C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x660, symBinAddr: 0x2D634, symSize: 0x8 } - - { offsetInCU: 0x915, offset: 0x7D470, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x668, symBinAddr: 0x2D63C, symSize: 0x4 } - - { offsetInCU: 0x929, offset: 0x7D484, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x66C, symBinAddr: 0x2D640, symSize: 0x8 } - - { offsetInCU: 0x93D, offset: 0x7D498, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x674, symBinAddr: 0x2D648, symSize: 0x10 } - - { offsetInCU: 0x951, offset: 0x7D4AC, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x684, symBinAddr: 0x2D658, symSize: 0xC } - - { offsetInCU: 0x965, offset: 0x7D4C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x690, symBinAddr: 0x2D664, symSize: 0x20 } - - { offsetInCU: 0x979, offset: 0x7D4D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x6B0, symBinAddr: 0x2D684, symSize: 0x28 } - - { offsetInCU: 0x98D, offset: 0x7D4E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x6D8, symBinAddr: 0x2D6AC, symSize: 0x8 } - - { offsetInCU: 0x9A1, offset: 0x7D4FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x6E0, symBinAddr: 0x2D6B4, symSize: 0x4 } - - { offsetInCU: 0x9B5, offset: 0x7D510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x6E4, symBinAddr: 0x2D6B8, symSize: 0x4 } - - { offsetInCU: 0x9C9, offset: 0x7D524, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x6E8, symBinAddr: 0x2D6BC, symSize: 0x10 } - - { offsetInCU: 0xA35, offset: 0x7D590, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x6F8, symBinAddr: 0x2D6CC, symSize: 0x224 } - - { offsetInCU: 0xCED, offset: 0x7D848, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x96C, symBinAddr: 0x2D8F0, symSize: 0x44 } - - { offsetInCU: 0xDAE, offset: 0x7D909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x364, symBinAddr: 0x2D348, symSize: 0x4 } - - { offsetInCU: 0xDCA, offset: 0x7D925, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x368, symBinAddr: 0x2D34C, symSize: 0x4 } - - { offsetInCU: 0xDE6, offset: 0x7D941, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x36C, symBinAddr: 0x2D350, symSize: 0x4 } - - { offsetInCU: 0xE02, offset: 0x7D95D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x370, symBinAddr: 0x2D354, symSize: 0x4 } - - { offsetInCU: 0xE4B, offset: 0x7D9A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x46C, symBinAddr: 0x2D450, symSize: 0x40 } - - { offsetInCU: 0xEE7, offset: 0x7DA42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x4F4, symBinAddr: 0x2D4D8, symSize: 0x4 } - - { offsetInCU: 0xF03, offset: 0x7DA5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x4F8, symBinAddr: 0x2D4DC, symSize: 0x4 } - - { offsetInCU: 0xF1F, offset: 0x7DA7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x4FC, symBinAddr: 0x2D4E0, symSize: 0x4 } - - { offsetInCU: 0xF3B, offset: 0x7DA96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x500, symBinAddr: 0x2D4E4, symSize: 0x4 } - - { offsetInCU: 0x2B, offset: 0x7DC96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2D934, symSize: 0x50 } - - { offsetInCU: 0x69, offset: 0x7DCD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x50, symBinAddr: 0x2D984, symSize: 0x4 } - - { offsetInCU: 0x92, offset: 0x7DCFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xF0, symBinAddr: 0x2DA24, symSize: 0xA0 } - - { offsetInCU: 0xC1, offset: 0x7DD2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x190, symBinAddr: 0x2DAC4, symSize: 0x34 } - - { offsetInCU: 0xE0, offset: 0x7DD4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x284, symBinAddr: 0x2DBB8, symSize: 0x2C } - - { offsetInCU: 0x111, offset: 0x7DD7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x2B0, symBinAddr: 0x2DBE4, symSize: 0xC } - - { offsetInCU: 0x12D, offset: 0x7DD98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2BC, symBinAddr: 0x2DBF0, symSize: 0x8 } - - { offsetInCU: 0x14A, offset: 0x7DDB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2D934, symSize: 0x50 } - - { offsetInCU: 0x1B0, offset: 0x7DE1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x54, symBinAddr: 0x2D988, symSize: 0x5C } - - { offsetInCU: 0x241, offset: 0x7DEAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x468, symBinAddr: 0x2DD9C, symSize: 0x28 } - - { offsetInCU: 0x272, offset: 0x7DEDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x490, symBinAddr: 0x2DDC4, symSize: 0x10 } - - { offsetInCU: 0x2A4, offset: 0x7DF0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x2DDD4, symSize: 0x34 } - - { offsetInCU: 0x2D0, offset: 0x7DF3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0xB0, symBinAddr: 0x2D9E4, symSize: 0x30 } - - { offsetInCU: 0x336, offset: 0x7DFA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xE0, symBinAddr: 0x2DA14, symSize: 0x10 } - - { offsetInCU: 0x385, offset: 0x7DFF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x2C4, symBinAddr: 0x2DBF8, symSize: 0x10 } - - { offsetInCU: 0x3B3, offset: 0x7E01E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x2D4, symBinAddr: 0x2DC08, symSize: 0x10 } - - { offsetInCU: 0x3E1, offset: 0x7E04C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x2E4, symBinAddr: 0x2DC18, symSize: 0x10 } - - { offsetInCU: 0x40F, offset: 0x7E07A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x2F4, symBinAddr: 0x2DC28, symSize: 0x4 } - - { offsetInCU: 0x423, offset: 0x7E08E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x2F8, symBinAddr: 0x2DC2C, symSize: 0x44 } - - { offsetInCU: 0x437, offset: 0x7E0A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x33C, symBinAddr: 0x2DC70, symSize: 0x4 } - - { offsetInCU: 0x481, offset: 0x7E0EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x340, symBinAddr: 0x2DC74, symSize: 0x14 } - - { offsetInCU: 0x4FA, offset: 0x7E165, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x354, symBinAddr: 0x2DC88, symSize: 0x14 } - - { offsetInCU: 0x573, offset: 0x7E1DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x368, symBinAddr: 0x2DC9C, symSize: 0x14 } - - { offsetInCU: 0x5EC, offset: 0x7E257, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x37C, symBinAddr: 0x2DCB0, symSize: 0x14 } - - { offsetInCU: 0x62F, offset: 0x7E29A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x390, symBinAddr: 0x2DCC4, symSize: 0x10 } - - { offsetInCU: 0x643, offset: 0x7E2AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x4E4, symBinAddr: 0x2DE08, symSize: 0x90 } - - { offsetInCU: 0x657, offset: 0x7E2C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x574, symBinAddr: 0x2DE98, symSize: 0xBC } - - { offsetInCU: 0x66B, offset: 0x7E2D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x630, symBinAddr: 0x2DF54, symSize: 0x8 } - - { offsetInCU: 0x67F, offset: 0x7E2EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x638, symBinAddr: 0x2DF5C, symSize: 0x4 } - - { offsetInCU: 0x693, offset: 0x7E2FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x63C, symBinAddr: 0x2DF60, symSize: 0x8 } - - { offsetInCU: 0x6A7, offset: 0x7E312, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x644, symBinAddr: 0x2DF68, symSize: 0x10 } - - { offsetInCU: 0x6BB, offset: 0x7E326, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x654, symBinAddr: 0x2DF78, symSize: 0x4 } - - { offsetInCU: 0x6CF, offset: 0x7E33A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x658, symBinAddr: 0x2DF7C, symSize: 0x44 } - - { offsetInCU: 0x712, offset: 0x7E37D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C4, symBinAddr: 0x2DAF8, symSize: 0x14 } - - { offsetInCU: 0x7A3, offset: 0x7E40E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1D8, symBinAddr: 0x2DB0C, symSize: 0x44 } - - { offsetInCU: 0x832, offset: 0x7E49D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x2DB50, symSize: 0x28 } - - { offsetInCU: 0x885, offset: 0x7E4F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x244, symBinAddr: 0x2DB78, symSize: 0x40 } - - { offsetInCU: 0x8F1, offset: 0x7E55C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3A0, symBinAddr: 0x2DCD4, symSize: 0x18 } - - { offsetInCU: 0x982, offset: 0x7E5ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3B8, symBinAddr: 0x2DCEC, symSize: 0x44 } - - { offsetInCU: 0xA63, offset: 0x7E6CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x3FC, symBinAddr: 0x2DD30, symSize: 0x2C } - - { offsetInCU: 0xAE8, offset: 0x7E753, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x428, symBinAddr: 0x2DD5C, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x7E926, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2DFC0, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x7E94A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2DFC0, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x7E975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2DFC8, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x7E995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2DFC8, symSize: 0x8 } - - { offsetInCU: 0x135, offset: 0x7EA34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2DFD0, symSize: 0xC4 } - - { offsetInCU: 0x2CE, offset: 0x7EBCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwCP', symObjAddr: 0xD4, symBinAddr: 0x2E094, symSize: 0x3C } - - { offsetInCU: 0x2E2, offset: 0x7EBE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0x110, symBinAddr: 0x2E0D0, symSize: 0x8 } - - { offsetInCU: 0x2F6, offset: 0x7EBF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwcp', symObjAddr: 0x118, symBinAddr: 0x2E0D8, symSize: 0x3C } - - { offsetInCU: 0x30A, offset: 0x7EC09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x154, symBinAddr: 0x2E114, symSize: 0x50 } - - { offsetInCU: 0x31E, offset: 0x7EC1D, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x1A4, symBinAddr: 0x2E164, symSize: 0xC } - - { offsetInCU: 0x332, offset: 0x7EC31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x1B0, symBinAddr: 0x2E170, symSize: 0x40 } - - { offsetInCU: 0x346, offset: 0x7EC45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x1F0, symBinAddr: 0x2E1B0, symSize: 0x5C } - - { offsetInCU: 0x35A, offset: 0x7EC59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x24C, symBinAddr: 0x2E20C, symSize: 0x50 } - - { offsetInCU: 0x36E, offset: 0x7EC6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x29C, symBinAddr: 0x2E25C, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x7EDA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2E26C, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x7EDCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2E26C, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x7EDF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E274, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x7EE15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E274, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x7EE37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x2E27C, symSize: 0x1C } - - { offsetInCU: 0x13B, offset: 0x7EEBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x2C, symBinAddr: 0x2E298, symSize: 0xE8 } - - { offsetInCU: 0x2B9, offset: 0x7F038, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x114, symBinAddr: 0x2E380, symSize: 0x110 } - - { offsetInCU: 0x3E9, offset: 0x7F168, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwCP', symObjAddr: 0x264, symBinAddr: 0x2E490, symSize: 0x4C } - - { offsetInCU: 0x3FD, offset: 0x7F17C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x2B0, symBinAddr: 0x2E4DC, symSize: 0x28 } - - { offsetInCU: 0x411, offset: 0x7F190, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwcp', symObjAddr: 0x2D8, symBinAddr: 0x2E504, symSize: 0x4C } - - { offsetInCU: 0x425, offset: 0x7F1A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x324, symBinAddr: 0x2E550, symSize: 0x7C } - - { offsetInCU: 0x439, offset: 0x7F1B8, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x3A0, symBinAddr: 0x2E5CC, symSize: 0x14 } - - { offsetInCU: 0x44D, offset: 0x7F1CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x3B4, symBinAddr: 0x2E5E0, symSize: 0x5C } - - { offsetInCU: 0x461, offset: 0x7F1E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x410, symBinAddr: 0x2E63C, symSize: 0x5C } - - { offsetInCU: 0x475, offset: 0x7F1F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x46C, symBinAddr: 0x2E698, symSize: 0x54 } - - { offsetInCU: 0x489, offset: 0x7F208, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x4C0, symBinAddr: 0x2E6EC, symSize: 0x10 } - - { offsetInCU: 0x4F, offset: 0x7F3C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2E6FC, symSize: 0x8 } - - { offsetInCU: 0x7A, offset: 0x7F3F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E704, symSize: 0x8 } - - { offsetInCU: 0x9A, offset: 0x7F412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E704, symSize: 0x8 } - - { offsetInCU: 0xAC, offset: 0x7F424, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8clientIDACSS_tcfCTf4gd_nTf4n_g', symObjAddr: 0xEB8, symBinAddr: 0x2F574, symSize: 0xF0 } - - { offsetInCU: 0x218, offset: 0x7F590, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2E70C, symSize: 0x2DC } - - { offsetInCU: 0x598, offset: 0x7F910, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x2EC, symBinAddr: 0x2E9E8, symSize: 0x338 } - - { offsetInCU: 0x9A3, offset: 0x7FD1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x624, symBinAddr: 0x2ED20, symSize: 0x278 } - - { offsetInCU: 0xD06, offset: 0x8007E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x89C, symBinAddr: 0x2EF98, symSize: 0x280 } - - { offsetInCU: 0x112E, offset: 0x804A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xB1C, symBinAddr: 0x2F218, symSize: 0x2C0 } - - { offsetInCU: 0x13ED, offset: 0x80765, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xDDC, symBinAddr: 0x2F4D8, symSize: 0x58 } - - { offsetInCU: 0x1409, offset: 0x80781, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0x1000, symBinAddr: 0x2F664, symSize: 0x30 } - - { offsetInCU: 0x141D, offset: 0x80795, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0x1080, symBinAddr: 0x2F694, symSize: 0x78 } - - { offsetInCU: 0x1431, offset: 0x807A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x10F8, symBinAddr: 0x2F70C, symSize: 0x140 } - - { offsetInCU: 0x1445, offset: 0x807BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x1238, symBinAddr: 0x2F84C, symSize: 0x1F0 } - - { offsetInCU: 0x1459, offset: 0x807D1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x1428, symBinAddr: 0x2FA3C, symSize: 0x34 } - - { offsetInCU: 0x146D, offset: 0x807E5, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x145C, symBinAddr: 0x2FA70, symSize: 0x3C } - - { offsetInCU: 0x1481, offset: 0x807F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x1498, symBinAddr: 0x2FAAC, symSize: 0x138 } - - { offsetInCU: 0x1495, offset: 0x8080D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x15D0, symBinAddr: 0x2FBE4, symSize: 0x48 } - - { offsetInCU: 0x14A9, offset: 0x80821, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x1618, symBinAddr: 0x2FC2C, symSize: 0x68 } - - { offsetInCU: 0x14BD, offset: 0x80835, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x1680, symBinAddr: 0x2FC94, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x809D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2FCA4, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x80A00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2FCAC, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x80A20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2FCAC, symSize: 0x8 } - - { offsetInCU: 0x122, offset: 0x80AAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2FCB4, symSize: 0xD8 } - - { offsetInCU: 0x31C, offset: 0x80CA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0xE8, symBinAddr: 0x2FD8C, symSize: 0x288 } - - { offsetInCU: 0x73F, offset: 0x810C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x370, symBinAddr: 0x30014, symSize: 0x4 } - - { offsetInCU: 0x75F, offset: 0x810E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x370, symBinAddr: 0x30014, symSize: 0x4 } - - { offsetInCU: 0x771, offset: 0x810FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV11descriptionSSvgTf4d_n', symObjAddr: 0x374, symBinAddr: 0x30018, symSize: 0x1C } - - { offsetInCU: 0x78F, offset: 0x81119, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x414, symBinAddr: 0x30078, symSize: 0x30 } - - { offsetInCU: 0x7A3, offset: 0x8112D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x444, symBinAddr: 0x300A8, symSize: 0x30 } - - { offsetInCU: 0x7B7, offset: 0x81141, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x474, symBinAddr: 0x300D8, symSize: 0x74 } - - { offsetInCU: 0x7CB, offset: 0x81155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x4E8, symBinAddr: 0x3014C, symSize: 0xAC } - - { offsetInCU: 0x7DF, offset: 0x81169, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x594, symBinAddr: 0x301F8, symSize: 0x1C } - - { offsetInCU: 0x7F3, offset: 0x8117D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x5B0, symBinAddr: 0x30214, symSize: 0x74 } - - { offsetInCU: 0x807, offset: 0x81191, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x624, symBinAddr: 0x30288, symSize: 0x5C } - - { offsetInCU: 0x81B, offset: 0x811A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x680, symBinAddr: 0x302E4, symSize: 0x60 } - - { offsetInCU: 0x82F, offset: 0x811B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x6E0, symBinAddr: 0x30344, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x81340, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30354, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x8135F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30354, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x8138A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3035C, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x813AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3035C, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x813CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30364, symSize: 0x4 } - - { offsetInCU: 0xD3, offset: 0x813EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30364, symSize: 0x4 } - - { offsetInCU: 0xE5, offset: 0x813FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqV11descriptionSSvgTf4d_n', symObjAddr: 0x14, symBinAddr: 0x30368, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x8141C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x24, symBinAddr: 0x30378, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x814E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30388, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x81507, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30388, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x81532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30390, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x81552, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30390, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x81574, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30398, symSize: 0x4 } - - { offsetInCU: 0xD3, offset: 0x81594, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30398, symSize: 0x4 } - - { offsetInCU: 0xE5, offset: 0x815A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespV11descriptionSSvgTf4d_n', symObjAddr: 0x14, symBinAddr: 0x3039C, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x815C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x24, symBinAddr: 0x303AC, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x816B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x303BC, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x816DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x303C4, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x816FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x303C4, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x817E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x303CC, symSize: 0x12C } - - { offsetInCU: 0x402, offset: 0x81A6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x304F8, symSize: 0x128 } - - { offsetInCU: 0x5B4, offset: 0x81C1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV11descriptionSSvg', symObjAddr: 0x264, symBinAddr: 0x30620, symSize: 0x88 } - - { offsetInCU: 0x60D, offset: 0x81C76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2EC, symBinAddr: 0x306A8, symSize: 0x38 } - - { offsetInCU: 0x683, offset: 0x81CEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x324, symBinAddr: 0x306E0, symSize: 0x1B8 } - - { offsetInCU: 0x81D, offset: 0x81E86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x5C8, symBinAddr: 0x30944, symSize: 0x30 } - - { offsetInCU: 0x831, offset: 0x81E9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x5F8, symBinAddr: 0x30974, symSize: 0x30 } - - { offsetInCU: 0x845, offset: 0x81EAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x628, symBinAddr: 0x309A4, symSize: 0x5C } - - { offsetInCU: 0x859, offset: 0x81EC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x684, symBinAddr: 0x30A00, symSize: 0x94 } - - { offsetInCU: 0x86D, offset: 0x81ED6, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x718, symBinAddr: 0x30A94, symSize: 0x14 } - - { offsetInCU: 0x881, offset: 0x81EEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x72C, symBinAddr: 0x30AA8, symSize: 0x64 } - - { offsetInCU: 0x895, offset: 0x81EFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x790, symBinAddr: 0x30B0C, symSize: 0x5C } - - { offsetInCU: 0x8A9, offset: 0x81F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x7EC, symBinAddr: 0x30B68, symSize: 0x5C } - - { offsetInCU: 0x8BD, offset: 0x81F26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x848, symBinAddr: 0x30BC4, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x82105, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30BD4, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x82130, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30BDC, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x82150, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30BDC, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x82239, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x30BE4, symSize: 0x12C } - - { offsetInCU: 0x402, offset: 0x824BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x30D10, symSize: 0x128 } - - { offsetInCU: 0x5B4, offset: 0x8266E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV11descriptionSSvg', symObjAddr: 0x264, symBinAddr: 0x30E38, symSize: 0x88 } - - { offsetInCU: 0x60D, offset: 0x826C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2EC, symBinAddr: 0x30EC0, symSize: 0x38 } - - { offsetInCU: 0x65C, offset: 0x82716, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x324, symBinAddr: 0x30EF8, symSize: 0xE0 } - - { offsetInCU: 0x77D, offset: 0x82837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x488, symBinAddr: 0x3101C, symSize: 0x30 } - - { offsetInCU: 0x791, offset: 0x8284B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x4B8, symBinAddr: 0x3104C, symSize: 0x30 } - - { offsetInCU: 0x7A5, offset: 0x8285F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x4E8, symBinAddr: 0x3107C, symSize: 0x5C } - - { offsetInCU: 0x7B9, offset: 0x82873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x544, symBinAddr: 0x310D8, symSize: 0x94 } - - { offsetInCU: 0x7CD, offset: 0x82887, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x5EC, symBinAddr: 0x3116C, symSize: 0x64 } - - { offsetInCU: 0x7E1, offset: 0x8289B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x650, symBinAddr: 0x311D0, symSize: 0x5C } - - { offsetInCU: 0x7F5, offset: 0x828AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x6AC, symBinAddr: 0x3122C, symSize: 0x5C } - - { offsetInCU: 0x809, offset: 0x828C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x708, symBinAddr: 0x31288, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x82A6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31298, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x82A8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31298, symSize: 0x8 } - - { offsetInCU: 0x6E, offset: 0x82AB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x312A0, symSize: 0x8 } - - { offsetInCU: 0x8E, offset: 0x82AD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x312A0, symSize: 0x8 } - - { offsetInCU: 0xBE, offset: 0x82B02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV5topic7payload3qos5msgidACSS_Says5UInt8VGAA0A7MQTTQoSOs6UInt16VtcfCTf4nnnnd_n', symObjAddr: 0x42C, symBinAddr: 0x316C4, symSize: 0x40 } - - { offsetInCU: 0x22F, offset: 0x82C73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x312A8, symSize: 0x124 } - - { offsetInCU: 0x44D, offset: 0x82E91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x134, symBinAddr: 0x313CC, symSize: 0x184 } - - { offsetInCU: 0x722, offset: 0x83166, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2B8, symBinAddr: 0x31550, symSize: 0x134 } - - { offsetInCU: 0x8B6, offset: 0x832FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3EC, symBinAddr: 0x31684, symSize: 0x40 } - - { offsetInCU: 0xA7B, offset: 0x834BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x46C, symBinAddr: 0x31704, symSize: 0x740 } - - { offsetInCU: 0x103C, offset: 0x83A80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xBAC, symBinAddr: 0x31E44, symSize: 0x48 } - - { offsetInCU: 0x1050, offset: 0x83A94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xC34, symBinAddr: 0x31E8C, symSize: 0x30 } - - { offsetInCU: 0x1064, offset: 0x83AA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xC64, symBinAddr: 0x31EBC, symSize: 0x48 } - - { offsetInCU: 0x1078, offset: 0x83ABC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xCAC, symBinAddr: 0x31F04, symSize: 0xB4 } - - { offsetInCU: 0x108C, offset: 0x83AD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xD60, symBinAddr: 0x31FB8, symSize: 0x104 } - - { offsetInCU: 0x10A0, offset: 0x83AE4, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xE64, symBinAddr: 0x320BC, symSize: 0x1C } - - { offsetInCU: 0x10B4, offset: 0x83AF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xE80, symBinAddr: 0x320D8, symSize: 0xB4 } - - { offsetInCU: 0x10C8, offset: 0x83B0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0xF34, symBinAddr: 0x3218C, symSize: 0x48 } - - { offsetInCU: 0x10DC, offset: 0x83B20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0xF7C, symBinAddr: 0x321D4, symSize: 0x58 } - - { offsetInCU: 0x10F0, offset: 0x83B34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0xFD4, symBinAddr: 0x3222C, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x83D7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3223C, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x83DA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32244, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x83DC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32244, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x83EAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x3224C, symSize: 0x12C } - - { offsetInCU: 0x402, offset: 0x84132, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x32378, symSize: 0x128 } - - { offsetInCU: 0x5B4, offset: 0x842E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV11descriptionSSvg', symObjAddr: 0x264, symBinAddr: 0x324A0, symSize: 0x88 } - - { offsetInCU: 0x60D, offset: 0x8433D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2EC, symBinAddr: 0x32528, symSize: 0x38 } - - { offsetInCU: 0x65C, offset: 0x8438C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x324, symBinAddr: 0x32560, symSize: 0xE0 } - - { offsetInCU: 0x77D, offset: 0x844AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x488, symBinAddr: 0x32684, symSize: 0x30 } - - { offsetInCU: 0x791, offset: 0x844C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x4B8, symBinAddr: 0x326B4, symSize: 0x30 } - - { offsetInCU: 0x7A5, offset: 0x844D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x4E8, symBinAddr: 0x326E4, symSize: 0x5C } - - { offsetInCU: 0x7B9, offset: 0x844E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x544, symBinAddr: 0x32740, symSize: 0x94 } - - { offsetInCU: 0x7CD, offset: 0x844FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x5EC, symBinAddr: 0x327D4, symSize: 0x64 } - - { offsetInCU: 0x7E1, offset: 0x84511, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x650, symBinAddr: 0x32838, symSize: 0x5C } - - { offsetInCU: 0x7F5, offset: 0x84525, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x6AC, symBinAddr: 0x32894, symSize: 0x5C } - - { offsetInCU: 0x809, offset: 0x84539, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x708, symBinAddr: 0x328F0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x84705, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32900, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x84730, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32908, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x84750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32908, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x84839, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32910, symSize: 0xF4 } - - { offsetInCU: 0x3ED, offset: 0x84AA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x104, symBinAddr: 0x32A04, symSize: 0x128 } - - { offsetInCU: 0x59F, offset: 0x84C59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV11descriptionSSvg', symObjAddr: 0x22C, symBinAddr: 0x32B2C, symSize: 0x88 } - - { offsetInCU: 0x5F8, offset: 0x84CB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2B4, symBinAddr: 0x32BB4, symSize: 0x38 } - - { offsetInCU: 0x61F, offset: 0x84CD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2EC, symBinAddr: 0x32BEC, symSize: 0xDC } - - { offsetInCU: 0x740, offset: 0x84DFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x44C, symBinAddr: 0x32D0C, symSize: 0x30 } - - { offsetInCU: 0x754, offset: 0x84E0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x47C, symBinAddr: 0x32D3C, symSize: 0x30 } - - { offsetInCU: 0x768, offset: 0x84E22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x4AC, symBinAddr: 0x32D6C, symSize: 0x64 } - - { offsetInCU: 0x77C, offset: 0x84E36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x510, symBinAddr: 0x32DD0, symSize: 0x94 } - - { offsetInCU: 0x790, offset: 0x84E4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x5B8, symBinAddr: 0x32E64, symSize: 0x6C } - - { offsetInCU: 0x7A4, offset: 0x84E5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x624, symBinAddr: 0x32ED0, symSize: 0x5C } - - { offsetInCU: 0x7B8, offset: 0x84E72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x680, symBinAddr: 0x32F2C, symSize: 0x5C } - - { offsetInCU: 0x7CC, offset: 0x84E86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x6DC, symBinAddr: 0x32F88, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8502E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32F98, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x85052, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32F98, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x8507D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32FA0, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x8509D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32FA0, symSize: 0x8 } - - { offsetInCU: 0xA9, offset: 0x850B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x32FA8, symSize: 0x88 } - - { offsetInCU: 0x102, offset: 0x85109, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x98, symBinAddr: 0x33030, symSize: 0x40 } - - { offsetInCU: 0x2E5, offset: 0x852EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xD8, symBinAddr: 0x33070, symSize: 0x528 } - - { offsetInCU: 0xA61, offset: 0x85A68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x600, symBinAddr: 0x33598, symSize: 0x30 } - - { offsetInCU: 0xA75, offset: 0x85A7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x630, symBinAddr: 0x335C8, symSize: 0x40 } - - { offsetInCU: 0xA89, offset: 0x85A90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x670, symBinAddr: 0x33608, symSize: 0x7C } - - { offsetInCU: 0xA9D, offset: 0x85AA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x6EC, symBinAddr: 0x33684, symSize: 0xBC } - - { offsetInCU: 0xAB1, offset: 0x85AB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x7C4, symBinAddr: 0x33740, symSize: 0x84 } - - { offsetInCU: 0xAC5, offset: 0x85ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x848, symBinAddr: 0x337C4, symSize: 0x48 } - - { offsetInCU: 0xAD9, offset: 0x85AE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x890, symBinAddr: 0x3380C, symSize: 0x4C } - - { offsetInCU: 0xAED, offset: 0x85AF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x8DC, symBinAddr: 0x33858, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x85D34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33868, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x85D5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33870, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x85D7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33870, symSize: 0x8 } - - { offsetInCU: 0xA8, offset: 0x85D91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV5msgid16subscriptionList16packetIdentifier0fI012userPropertyACs6UInt16V_SayAA16MqttSubscriptionCGAJSgs6UInt32VSgSDyS2SGtcfCTf4nnnnnd_n', symObjAddr: 0xCFC, symBinAddr: 0x34524, symSize: 0xC0 } - - { offsetInCU: 0x1C5, offset: 0x85EAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x33878, symSize: 0xAC } - - { offsetInCU: 0x45F, offset: 0x86148, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xBC, symBinAddr: 0x33924, symSize: 0x280 } - - { offsetInCU: 0x937, offset: 0x86620, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x33C, symBinAddr: 0x33BA4, symSize: 0x1B4 } - - { offsetInCU: 0xE03, offset: 0x86AEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x4F0, symBinAddr: 0x33D58, symSize: 0x5B0 } - - { offsetInCU: 0x12B6, offset: 0x86F9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xAA0, symBinAddr: 0x34308, symSize: 0x38 } - - { offsetInCU: 0x12D2, offset: 0x86FBB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xB18, symBinAddr: 0x34340, symSize: 0x1E4 } - - { offsetInCU: 0x132F, offset: 0x87018, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xE00, symBinAddr: 0x34628, symSize: 0x28 } - - { offsetInCU: 0x1343, offset: 0x8702C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xE38, symBinAddr: 0x34650, symSize: 0x30 } - - { offsetInCU: 0x1357, offset: 0x87040, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xE68, symBinAddr: 0x34680, symSize: 0x30 } - - { offsetInCU: 0x136B, offset: 0x87054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xE98, symBinAddr: 0x346B0, symSize: 0x84 } - - { offsetInCU: 0x137F, offset: 0x87068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xF1C, symBinAddr: 0x34734, symSize: 0xAC } - - { offsetInCU: 0x1393, offset: 0x8707C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0xFDC, symBinAddr: 0x347E0, symSize: 0x8C } - - { offsetInCU: 0x13A7, offset: 0x87090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0x1068, symBinAddr: 0x3486C, symSize: 0x5C } - - { offsetInCU: 0x13BB, offset: 0x870A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x10C4, symBinAddr: 0x348C8, symSize: 0x60 } - - { offsetInCU: 0x13CF, offset: 0x870B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x1124, symBinAddr: 0x34928, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x874B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34938, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x874D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34938, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x87500, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34940, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x87520, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34940, symSize: 0x8 } - - { offsetInCU: 0xBF, offset: 0x87549, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x34948, symSize: 0xAC } - - { offsetInCU: 0x157, offset: 0x875E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBC, symBinAddr: 0x349F4, symSize: 0x38 } - - { offsetInCU: 0x1BC, offset: 0x87646, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF4, symBinAddr: 0x34A2C, symSize: 0xE8 } - - { offsetInCU: 0x2DD, offset: 0x87767, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x1DC, symBinAddr: 0x34B14, symSize: 0x30 } - - { offsetInCU: 0x2F1, offset: 0x8777B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x20C, symBinAddr: 0x34B44, symSize: 0x38 } - - { offsetInCU: 0x305, offset: 0x8778F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x244, symBinAddr: 0x34B7C, symSize: 0x6C } - - { offsetInCU: 0x319, offset: 0x877A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x2B0, symBinAddr: 0x34BE8, symSize: 0xA4 } - - { offsetInCU: 0x32D, offset: 0x877B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x368, symBinAddr: 0x34C8C, symSize: 0x74 } - - { offsetInCU: 0x341, offset: 0x877CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x3DC, symBinAddr: 0x34D00, symSize: 0x48 } - - { offsetInCU: 0x355, offset: 0x877DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x424, symBinAddr: 0x34D48, symSize: 0x4C } - - { offsetInCU: 0x369, offset: 0x877F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x470, symBinAddr: 0x34D94, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x87921, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34DA4, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x87940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34DA4, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x8796B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34DAC, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x8798B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34DAC, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x879AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x34DB4, symSize: 0x1C } - - { offsetInCU: 0x21B, offset: 0x87B15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x2C, symBinAddr: 0x34DD0, symSize: 0x1A0 } - - { offsetInCU: 0x593, offset: 0x87E8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1CC, symBinAddr: 0x34F70, symSize: 0x88 } - - { offsetInCU: 0x720, offset: 0x8801A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x254, symBinAddr: 0x34FF8, symSize: 0x134 } - - { offsetInCU: 0xAC1, offset: 0x883BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x388, symBinAddr: 0x3512C, symSize: 0x500 } - - { offsetInCU: 0xF64, offset: 0x8885E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x8D8, symBinAddr: 0x3562C, symSize: 0x30 } - - { offsetInCU: 0xF78, offset: 0x88872, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0x908, symBinAddr: 0x3565C, symSize: 0x30 } - - { offsetInCU: 0xF8C, offset: 0x88886, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0x938, symBinAddr: 0x3568C, symSize: 0x64 } - - { offsetInCU: 0xFA0, offset: 0x8889A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0x99C, symBinAddr: 0x356F0, symSize: 0x8C } - - { offsetInCU: 0xFB4, offset: 0x888AE, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xA28, symBinAddr: 0x3577C, symSize: 0xC } - - { offsetInCU: 0xFC8, offset: 0x888C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xA34, symBinAddr: 0x35788, symSize: 0x6C } - - { offsetInCU: 0xFDC, offset: 0x888D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xAA0, symBinAddr: 0x357F4, symSize: 0x5C } - - { offsetInCU: 0xFF0, offset: 0x888EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xAFC, symBinAddr: 0x35850, symSize: 0x54 } - - { offsetInCU: 0x1004, offset: 0x888FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xB50, symBinAddr: 0x358A4, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x88C6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x18, symBinAddr: 0x358CC, symSize: 0x44 } - - { offsetInCU: 0x7A, offset: 0x88C9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x74, symBinAddr: 0x35928, symSize: 0x44 } - - { offsetInCU: 0xA9, offset: 0x88CCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x178, symBinAddr: 0x35A2C, symSize: 0x44 } - - { offsetInCU: 0xD8, offset: 0x88CFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x264, symBinAddr: 0x35B18, symSize: 0x44 } - - { offsetInCU: 0x107, offset: 0x88D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x2A8, symBinAddr: 0x35B5C, symSize: 0x4 } - - { offsetInCU: 0x1AA, offset: 0x88DCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x35B60, symSize: 0x2B8 } - - { offsetInCU: 0x618, offset: 0x8923A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x564, symBinAddr: 0x35E18, symSize: 0x20 } - - { offsetInCU: 0x636, offset: 0x89258, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x584, symBinAddr: 0x35E38, symSize: 0x68 } - - { offsetInCU: 0x671, offset: 0x89293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x5EC, symBinAddr: 0x35EA0, symSize: 0x74 } - - { offsetInCU: 0x6AC, offset: 0x892CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x660, symBinAddr: 0x35F14, symSize: 0x30 } - - { offsetInCU: 0x789, offset: 0x893AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x690, symBinAddr: 0x35F44, symSize: 0x60 } - - { offsetInCU: 0x7B8, offset: 0x893DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x6F0, symBinAddr: 0x35FA4, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x89567, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x18, symBinAddr: 0x35FE8, symSize: 0x44 } - - { offsetInCU: 0x7A, offset: 0x89596, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x74, symBinAddr: 0x36044, symSize: 0x44 } - - { offsetInCU: 0xA9, offset: 0x895C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x16C, symBinAddr: 0x3613C, symSize: 0x44 } - - { offsetInCU: 0xD8, offset: 0x895F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x25C, symBinAddr: 0x3622C, symSize: 0x44 } - - { offsetInCU: 0x107, offset: 0x89623, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x2B8, symBinAddr: 0x36288, symSize: 0x44 } - - { offsetInCU: 0x136, offset: 0x89652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x3A8, symBinAddr: 0x36378, symSize: 0x44 } - - { offsetInCU: 0x165, offset: 0x89681, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x404, symBinAddr: 0x363D4, symSize: 0x44 } - - { offsetInCU: 0x194, offset: 0x896B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x448, symBinAddr: 0x36418, symSize: 0x4 } - - { offsetInCU: 0x1BF, offset: 0x896DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x44C, symBinAddr: 0x3641C, symSize: 0x54 } - - { offsetInCU: 0x1DE, offset: 0x896FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x4A0, symBinAddr: 0x36470, symSize: 0x5C } - - { offsetInCU: 0x21D, offset: 0x89739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x4FC, symBinAddr: 0x364CC, symSize: 0x44 } - - { offsetInCU: 0x24C, offset: 0x89768, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x5E8, symBinAddr: 0x365B8, symSize: 0x44 } - - { offsetInCU: 0x389, offset: 0x898A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x62C, symBinAddr: 0x365FC, symSize: 0x6EC } - - { offsetInCU: 0xFB3, offset: 0x8A4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xD18, symBinAddr: 0x36CE8, symSize: 0x20 } - - { offsetInCU: 0xFD1, offset: 0x8A4ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xD38, symBinAddr: 0x36D08, symSize: 0xC8 } - - { offsetInCU: 0xFFE, offset: 0x8A51A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xE00, symBinAddr: 0x36DD0, symSize: 0x20 } - - { offsetInCU: 0x101A, offset: 0x8A536, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xE20, symBinAddr: 0x36DF0, symSize: 0x30 } - - { offsetInCU: 0x1154, offset: 0x8A670, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xE50, symBinAddr: 0x36E20, symSize: 0x4C } - - { offsetInCU: 0x1183, offset: 0x8A69F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0xE9C, symBinAddr: 0x36E6C, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8A86E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x36EAC, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8A88C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x36ECC, symSize: 0x48 } - - { offsetInCU: 0x88, offset: 0x8A8AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x36F14, symSize: 0x5C } - - { offsetInCU: 0xB1, offset: 0x8A8D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x36F70, symSize: 0x44 } - - { offsetInCU: 0xE0, offset: 0x8A903, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x120, symBinAddr: 0x36FCC, symSize: 0x44 } - - { offsetInCU: 0x10F, offset: 0x8A932, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x17C, symBinAddr: 0x37028, symSize: 0x44 } - - { offsetInCU: 0x13E, offset: 0x8A961, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1C0, symBinAddr: 0x3706C, symSize: 0x4C } - - { offsetInCU: 0x16D, offset: 0x8A990, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x20C, symBinAddr: 0x370B8, symSize: 0x50 } - - { offsetInCU: 0x192, offset: 0x8A9B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x25C, symBinAddr: 0x37108, symSize: 0x44 } - - { offsetInCU: 0x1C1, offset: 0x8A9E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x3714C, symSize: 0x4 } - - { offsetInCU: 0x1EC, offset: 0x8AA0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2A4, symBinAddr: 0x37150, symSize: 0x44 } - - { offsetInCU: 0x21B, offset: 0x8AA3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x2F4, symBinAddr: 0x371A0, symSize: 0x44 } - - { offsetInCU: 0x24A, offset: 0x8AA6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x3EC, symBinAddr: 0x37298, symSize: 0x44 } - - { offsetInCU: 0x279, offset: 0x8AA9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x448, symBinAddr: 0x372F4, symSize: 0x44 } - - { offsetInCU: 0x2A8, offset: 0x8AACB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x4A4, symBinAddr: 0x37350, symSize: 0x44 } - - { offsetInCU: 0x2D7, offset: 0x8AAFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x500, symBinAddr: 0x373AC, symSize: 0x44 } - - { offsetInCU: 0x306, offset: 0x8AB29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x544, symBinAddr: 0x373F0, symSize: 0x48 } - - { offsetInCU: 0x335, offset: 0x8AB58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x58C, symBinAddr: 0x37438, symSize: 0x50 } - - { offsetInCU: 0x374, offset: 0x8AB97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x5DC, symBinAddr: 0x37488, symSize: 0x44 } - - { offsetInCU: 0x393, offset: 0x8ABB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x620, symBinAddr: 0x374CC, symSize: 0x44 } - - { offsetInCU: 0x3C2, offset: 0x8ABE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x670, symBinAddr: 0x3751C, symSize: 0x44 } - - { offsetInCU: 0x3F1, offset: 0x8AC14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x6B4, symBinAddr: 0x37560, symSize: 0x44 } - - { offsetInCU: 0x420, offset: 0x8AC43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x704, symBinAddr: 0x375B0, symSize: 0x44 } - - { offsetInCU: 0x44F, offset: 0x8AC72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x748, symBinAddr: 0x375F4, symSize: 0x44 } - - { offsetInCU: 0x47E, offset: 0x8ACA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x7DC, symBinAddr: 0x37688, symSize: 0x44 } - - { offsetInCU: 0x4AD, offset: 0x8ACD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x8CC, symBinAddr: 0x37778, symSize: 0x44 } - - { offsetInCU: 0x4DC, offset: 0x8ACFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0x928, symBinAddr: 0x377D4, symSize: 0x44 } - - { offsetInCU: 0x50B, offset: 0x8AD2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0x984, symBinAddr: 0x37830, symSize: 0x44 } - - { offsetInCU: 0x53A, offset: 0x8AD5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xA88, symBinAddr: 0x37934, symSize: 0x44 } - - { offsetInCU: 0x569, offset: 0x8AD8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xACC, symBinAddr: 0x37978, symSize: 0x48 } - - { offsetInCU: 0x598, offset: 0x8ADBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xB14, symBinAddr: 0x379C0, symSize: 0x50 } - - { offsetInCU: 0x5C1, offset: 0x8ADE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xB64, symBinAddr: 0x37A10, symSize: 0x44 } - - { offsetInCU: 0x8F6, offset: 0x8B119, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xBA8, symBinAddr: 0x37A54, symSize: 0xABC } - - { offsetInCU: 0x1523, offset: 0x8BD46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x16D4, symBinAddr: 0x38580, symSize: 0x160 } - - { offsetInCU: 0x1550, offset: 0x8BD73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1834, symBinAddr: 0x386E0, symSize: 0x20 } - - { offsetInCU: 0x156C, offset: 0x8BD8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1854, symBinAddr: 0x38700, symSize: 0x30 } - - { offsetInCU: 0x1799, offset: 0x8BFBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x1884, symBinAddr: 0x38730, symSize: 0x9C } - - { offsetInCU: 0x17DE, offset: 0x8C001, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1920, symBinAddr: 0x387CC, symSize: 0x64 } - - { offsetInCU: 0x1836, offset: 0x8C059, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1984, symBinAddr: 0x38830, symSize: 0x34 } - - { offsetInCU: 0x1883, offset: 0x8C0A6, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19B8, symBinAddr: 0x38864, symSize: 0xE0 } - - { offsetInCU: 0x18CD, offset: 0x8C0F0, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1A98, symBinAddr: 0x38944, symSize: 0xA0 } - - { offsetInCU: 0x1905, offset: 0x8C128, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1B5C, symBinAddr: 0x38A08, symSize: 0x1C8 } - - { offsetInCU: 0x198B, offset: 0x8C1AE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1D24, symBinAddr: 0x38BD0, symSize: 0x1B8 } - - { offsetInCU: 0x1A2D, offset: 0x8C250, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x224C, symBinAddr: 0x390F8, symSize: 0x1C4 } - - { offsetInCU: 0x1ACF, offset: 0x8C2F2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2434, symBinAddr: 0x392E0, symSize: 0x3AC } - - { offsetInCU: 0x1BBF, offset: 0x8C3E2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x27E0, symBinAddr: 0x3968C, symSize: 0x390 } - - { offsetInCU: 0x1CCB, offset: 0x8C4EE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x31E0, symBinAddr: 0x3A08C, symSize: 0x398 } - - { offsetInCU: 0x1DCC, offset: 0x8C5EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x3578, symBinAddr: 0x3A424, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8C90B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A488, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8C92F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A488, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8C94D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3A4A8, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8C97C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3A4F4, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8C9A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3A544, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8C9D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3A588, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8C9FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3A58C, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x8CA2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3A5D0, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x8CA53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3A618, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x8CA82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3A65C, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x8CAB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3A6B0, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x8CADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3A70C, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x8CB09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3A750, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x8CB38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3A798, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x8CB77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3A7E8, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x8CB96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3A82C, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x8CBB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3A834, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x8CBDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3A8C0, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x8CBFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x458, symBinAddr: 0x3A8E0, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x8CD7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3A94C, symSize: 0x604 } - - { offsetInCU: 0xB78, offset: 0x8D45C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x488, symBinAddr: 0x3A910, symSize: 0x3C } - - { offsetInCU: 0xD5C, offset: 0x8D640, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xAC8, symBinAddr: 0x3AF50, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8D8A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3AF7C, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8D8C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3AF7C, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8D8E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3AF9C, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8D913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3AFE8, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8D938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3B038, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8D967, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3B07C, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8D992, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3B080, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x8D9C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3B0C4, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x8D9EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3B10C, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x8DA19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3B150, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x8DA48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3B1A4, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x8DA71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3B200, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x8DAA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3B244, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x8DACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3B28C, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x8DB0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3B2DC, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x8DB2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3B320, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x8DB49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3B328, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x8DB76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3B3B4, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x8DB92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x458, symBinAddr: 0x3B3D4, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x8DD15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3B440, symSize: 0x5F8 } - - { offsetInCU: 0xB80, offset: 0x8E3FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x488, symBinAddr: 0x3B404, symSize: 0x3C } - - { offsetInCU: 0xD7B, offset: 0x8E5F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xABC, symBinAddr: 0x3BA38, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8E87C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x3BA64, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8E89A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3BA84, symSize: 0x48 } - - { offsetInCU: 0x88, offset: 0x8E8B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3BACC, symSize: 0x5C } - - { offsetInCU: 0xB1, offset: 0x8E8E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3BB28, symSize: 0x44 } - - { offsetInCU: 0xE0, offset: 0x8E911, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0x108, symBinAddr: 0x3BB6C, symSize: 0x4C } - - { offsetInCU: 0x10F, offset: 0x8E940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x154, symBinAddr: 0x3BBB8, symSize: 0x50 } - - { offsetInCU: 0x134, offset: 0x8E965, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x1A4, symBinAddr: 0x3BC08, symSize: 0x44 } - - { offsetInCU: 0x163, offset: 0x8E994, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1E8, symBinAddr: 0x3BC4C, symSize: 0x54 } - - { offsetInCU: 0x192, offset: 0x8E9C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x23C, symBinAddr: 0x3BCA0, symSize: 0x50 } - - { offsetInCU: 0x1B7, offset: 0x8E9E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x28C, symBinAddr: 0x3BCF0, symSize: 0x44 } - - { offsetInCU: 0x1E6, offset: 0x8EA17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2E8, symBinAddr: 0x3BD4C, symSize: 0x44 } - - { offsetInCU: 0x215, offset: 0x8EA46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x32C, symBinAddr: 0x3BD90, symSize: 0x4 } - - { offsetInCU: 0x240, offset: 0x8EA71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x348, symBinAddr: 0x3BDAC, symSize: 0x44 } - - { offsetInCU: 0x26F, offset: 0x8EAA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3A4, symBinAddr: 0x3BE08, symSize: 0x44 } - - { offsetInCU: 0x29E, offset: 0x8EACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x490, symBinAddr: 0x3BEF4, symSize: 0x44 } - - { offsetInCU: 0x2BD, offset: 0x8EAEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x4EC, symBinAddr: 0x3BF50, symSize: 0x44 } - - { offsetInCU: 0x2EC, offset: 0x8EB1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x5F0, symBinAddr: 0x3C054, symSize: 0x44 } - - { offsetInCU: 0x31B, offset: 0x8EB4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x634, symBinAddr: 0x3C098, symSize: 0x54 } - - { offsetInCU: 0x33A, offset: 0x8EB6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x688, symBinAddr: 0x3C0EC, symSize: 0x5C } - - { offsetInCU: 0x363, offset: 0x8EB94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x6E4, symBinAddr: 0x3C148, symSize: 0x44 } - - { offsetInCU: 0x392, offset: 0x8EBC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x7D4, symBinAddr: 0x3C238, symSize: 0x44 } - - { offsetInCU: 0x3C1, offset: 0x8EBF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x8B4, symBinAddr: 0x3C318, symSize: 0x44 } - - { offsetInCU: 0x660, offset: 0x8EE91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x8F8, symBinAddr: 0x3C35C, symSize: 0xABC } - - { offsetInCU: 0x1147, offset: 0x8F978, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x1424, symBinAddr: 0x3CE88, symSize: 0xF8 } - - { offsetInCU: 0x1174, offset: 0x8F9A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x151C, symBinAddr: 0x3CF80, symSize: 0x20 } - - { offsetInCU: 0x1190, offset: 0x8F9C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x153C, symBinAddr: 0x3CFA0, symSize: 0x30 } - - { offsetInCU: 0x146F, offset: 0x8FCA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x156C, symBinAddr: 0x3CFD0, symSize: 0x74 } - - { offsetInCU: 0x149E, offset: 0x8FCCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x15E0, symBinAddr: 0x3D044, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8FFEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D090, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x90012, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D090, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3D0B0, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x9005F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3D0FC, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x90084, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3D14C, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x900B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3D190, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x900DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3D194, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x9010D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3D1D8, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x90136, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3D220, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x90165, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3D264, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x90194, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3D2B8, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x901BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3D314, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x901EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3D358, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x9021B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3D3A0, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x9025A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3D3F0, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x90279, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3D434, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x90295, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3D43C, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x902C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3D4C8, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x902DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x458, symBinAddr: 0x3D4E8, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x90461, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3D554, symSize: 0x604 } - - { offsetInCU: 0xB78, offset: 0x90B3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x488, symBinAddr: 0x3D518, symSize: 0x3C } - - { offsetInCU: 0xD5C, offset: 0x90D23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xAC8, symBinAddr: 0x3DB58, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90F85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DB84, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x90FA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DB84, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90FC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3DBA4, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x90FF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3DBF0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x9101B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3DC40, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x9104A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3DC84, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x91075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3DC88, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x910A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3DCCC, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x910CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3DD14, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x910FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3DD58, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x9112B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3DDAC, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x91154, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3DE08, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x91183, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3DE4C, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x911B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3DE94, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x911F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3DEE4, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x91210, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3DF28, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x9122C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3DF30, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x91259, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3DFBC, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x91275, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x458, symBinAddr: 0x3DFDC, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x913F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3E048, symSize: 0x5F8 } - - { offsetInCU: 0xB80, offset: 0x91ADE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x488, symBinAddr: 0x3E00C, symSize: 0x3C } - - { offsetInCU: 0xD64, offset: 0x91CC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xABC, symBinAddr: 0x3E640, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x91F24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3E66C, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x91F48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3E66C, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x91F66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x3E68C, symSize: 0x48 } - - { offsetInCU: 0x98, offset: 0x91F95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x3E6D4, symSize: 0x50 } - - { offsetInCU: 0xD7, offset: 0x91FD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x3E724, symSize: 0x44 } - - { offsetInCU: 0xF6, offset: 0x91FF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x3E768, symSize: 0x4 } - - { offsetInCU: 0x121, offset: 0x9201E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3E76C, symSize: 0x44 } - - { offsetInCU: 0x150, offset: 0x9204D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x3E7B0, symSize: 0x48 } - - { offsetInCU: 0x179, offset: 0x92076, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x3E7F8, symSize: 0x44 } - - { offsetInCU: 0x1A8, offset: 0x920A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x3E83C, symSize: 0x54 } - - { offsetInCU: 0x1D7, offset: 0x920D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x3E890, symSize: 0x5C } - - { offsetInCU: 0x200, offset: 0x920FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x3E8EC, symSize: 0x44 } - - { offsetInCU: 0x22F, offset: 0x9212C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x3E930, symSize: 0x48 } - - { offsetInCU: 0x25E, offset: 0x9215B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x3E978, symSize: 0x50 } - - { offsetInCU: 0x29D, offset: 0x9219A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x3E9C8, symSize: 0x44 } - - { offsetInCU: 0x2BC, offset: 0x921B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x3EA0C, symSize: 0x8 } - - { offsetInCU: 0x2D8, offset: 0x921D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x3EA14, symSize: 0x90 } - - { offsetInCU: 0x313, offset: 0x92210, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3EAA4, symSize: 0x9C } - - { offsetInCU: 0x34E, offset: 0x9224B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x4D4, symBinAddr: 0x3EB40, symSize: 0x30 } - - { offsetInCU: 0x4E3, offset: 0x923E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x550, symBinAddr: 0x3EBBC, symSize: 0x6CC } - - { offsetInCU: 0xD0D, offset: 0x92C0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x504, symBinAddr: 0x3EB70, symSize: 0x4C } - - { offsetInCU: 0xF5F, offset: 0x92E5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xC8C, symBinAddr: 0x3F2F8, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x930E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F324, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x9310B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F324, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x93129, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x3F344, symSize: 0x48 } - - { offsetInCU: 0x98, offset: 0x93158, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x3F38C, symSize: 0x50 } - - { offsetInCU: 0xD7, offset: 0x93197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x3F3DC, symSize: 0x44 } - - { offsetInCU: 0xF6, offset: 0x931B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x3F420, symSize: 0x4 } - - { offsetInCU: 0x121, offset: 0x931E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3F424, symSize: 0x44 } - - { offsetInCU: 0x150, offset: 0x93210, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x3F468, symSize: 0x48 } - - { offsetInCU: 0x179, offset: 0x93239, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x3F4B0, symSize: 0x44 } - - { offsetInCU: 0x1A8, offset: 0x93268, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x3F4F4, symSize: 0x54 } - - { offsetInCU: 0x1D7, offset: 0x93297, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x3F548, symSize: 0x5C } - - { offsetInCU: 0x200, offset: 0x932C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x3F5A4, symSize: 0x44 } - - { offsetInCU: 0x22F, offset: 0x932EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x3F5E8, symSize: 0x48 } - - { offsetInCU: 0x25E, offset: 0x9331E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x3F630, symSize: 0x50 } - - { offsetInCU: 0x29D, offset: 0x9335D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x3F680, symSize: 0x44 } - - { offsetInCU: 0x2BC, offset: 0x9337C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x3F6C4, symSize: 0x8 } - - { offsetInCU: 0x2D8, offset: 0x93398, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x3F6CC, symSize: 0x90 } - - { offsetInCU: 0x313, offset: 0x933D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3F75C, symSize: 0x9C } - - { offsetInCU: 0x34E, offset: 0x9340E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x4D4, symBinAddr: 0x3F7F8, symSize: 0x30 } - - { offsetInCU: 0x4E3, offset: 0x935A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x550, symBinAddr: 0x3F874, symSize: 0x6CC } - - { offsetInCU: 0xD0D, offset: 0x93DCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x504, symBinAddr: 0x3F828, symSize: 0x4C } - - { offsetInCU: 0xF7B, offset: 0x9403B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xC8C, symBinAddr: 0x3FFB0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x942F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x3FFDC, symSize: 0x48 } - - { offsetInCU: 0x7A, offset: 0x9431F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x48, symBinAddr: 0x40024, symSize: 0x5C } - - { offsetInCU: 0xB9, offset: 0x9435E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0xA4, symBinAddr: 0x40080, symSize: 0x44 } - - { offsetInCU: 0xE8, offset: 0x9438D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xE8, symBinAddr: 0x400C4, symSize: 0x4C } - - { offsetInCU: 0x107, offset: 0x943AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x134, symBinAddr: 0x40110, symSize: 0x50 } - - { offsetInCU: 0x142, offset: 0x943E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x184, symBinAddr: 0x40160, symSize: 0x44 } - - { offsetInCU: 0x171, offset: 0x94416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x401BC, symSize: 0x44 } - - { offsetInCU: 0x1A0, offset: 0x94445, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x224, symBinAddr: 0x40200, symSize: 0x4C } - - { offsetInCU: 0x1BF, offset: 0x94464, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x270, symBinAddr: 0x4024C, symSize: 0x50 } - - { offsetInCU: 0x1FA, offset: 0x9449F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2C0, symBinAddr: 0x4029C, symSize: 0x44 } - - { offsetInCU: 0x229, offset: 0x944CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x402E0, symSize: 0x4 } - - { offsetInCU: 0x254, offset: 0x944F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x320, symBinAddr: 0x402FC, symSize: 0x44 } - - { offsetInCU: 0x283, offset: 0x94528, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x37C, symBinAddr: 0x40358, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x94557, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x468, symBinAddr: 0x40444, symSize: 0x44 } - - { offsetInCU: 0x2E1, offset: 0x94586, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x4053C, symSize: 0x44 } - - { offsetInCU: 0x310, offset: 0x945B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x40640, symSize: 0x44 } - - { offsetInCU: 0x34E, offset: 0x945F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x6A8, symBinAddr: 0x40684, symSize: 0xE8 } - - { offsetInCU: 0x382, offset: 0x94627, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x790, symBinAddr: 0x4076C, symSize: 0xAC } - - { offsetInCU: 0x486, offset: 0x9472B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x83C, symBinAddr: 0x40818, symSize: 0x774 } - - { offsetInCU: 0x1204, offset: 0x954A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0xFB0, symBinAddr: 0x40F8C, symSize: 0x20 } - - { offsetInCU: 0x1222, offset: 0x954C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0xFD0, symBinAddr: 0x40FAC, symSize: 0x2C } - - { offsetInCU: 0x1285, offset: 0x9552A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0xFFC, symBinAddr: 0x40FD8, symSize: 0x2C } - - { offsetInCU: 0x12EC, offset: 0x95591, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x1028, symBinAddr: 0x41004, symSize: 0x30 } - - { offsetInCU: 0x1319, offset: 0x955BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfcTf4nnnngggngn_n', symObjAddr: 0x1558, symBinAddr: 0x41534, symSize: 0x314 } - - { offsetInCU: 0x15DE, offset: 0x95883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1058, symBinAddr: 0x41034, symSize: 0x60 } - - { offsetInCU: 0x1665, offset: 0x9590A, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x10B8, symBinAddr: 0x41094, symSize: 0x1C8 } - - { offsetInCU: 0x1772, offset: 0x95A17, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x1280, symBinAddr: 0x4125C, symSize: 0x1DC } - - { offsetInCU: 0x184D, offset: 0x95AF2, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS_Tg5Tf4nnd_n', symObjAddr: 0x145C, symBinAddr: 0x41438, symSize: 0x78 } - - { offsetInCU: 0x18A2, offset: 0x95B47, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x14D4, symBinAddr: 0x414B0, symSize: 0x84 } - - { offsetInCU: 0x18EC, offset: 0x95B91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0x187C, symBinAddr: 0x41848, symSize: 0x20 } - - { offsetInCU: 0x1900, offset: 0x95BA5, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x189C, symBinAddr: 0x41868, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x95F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x418C4, symSize: 0xF4 } - - { offsetInCU: 0x81, offset: 0x95F62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x418C4, symSize: 0xF4 } - - { offsetInCU: 0xF2, offset: 0x95FD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xF4, symBinAddr: 0x419B8, symSize: 0xF0 } - - { offsetInCU: 0x139, offset: 0x9601A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x1E4, symBinAddr: 0x41AA8, symSize: 0x48 } - - { offsetInCU: 0x155, offset: 0x96036, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x22C, symBinAddr: 0x41AF0, symSize: 0x50 } - - { offsetInCU: 0x171, offset: 0x96052, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x27C, symBinAddr: 0x41B40, symSize: 0x3C } - - { offsetInCU: 0x18D, offset: 0x9606E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x2B8, symBinAddr: 0x41B7C, symSize: 0x30 } - - { offsetInCU: 0x1A9, offset: 0x9608A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2E8, symBinAddr: 0x41BAC, symSize: 0x3C } - - { offsetInCU: 0x1C5, offset: 0x960A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x324, symBinAddr: 0x41BE8, symSize: 0x3C } - - { offsetInCU: 0x1E1, offset: 0x960C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x360, symBinAddr: 0x41C24, symSize: 0x30 } - - { offsetInCU: 0x1FD, offset: 0x960DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x390, symBinAddr: 0x41C54, symSize: 0x3C } - - { offsetInCU: 0x219, offset: 0x960FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x3CC, symBinAddr: 0x41C90, symSize: 0x3C } - - { offsetInCU: 0x235, offset: 0x96116, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x408, symBinAddr: 0x41CCC, symSize: 0x30 } - - { offsetInCU: 0x251, offset: 0x96132, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x438, symBinAddr: 0x41CFC, symSize: 0x3C } - - { offsetInCU: 0x26D, offset: 0x9614E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x474, symBinAddr: 0x41D38, symSize: 0x3C } - - { offsetInCU: 0x289, offset: 0x9616A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x4B0, symBinAddr: 0x41D74, symSize: 0x30 } - - { offsetInCU: 0x2A5, offset: 0x96186, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x4E0, symBinAddr: 0x41DA4, symSize: 0x3C } - - { offsetInCU: 0x2C1, offset: 0x961A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x51C, symBinAddr: 0x41DE0, symSize: 0x3C } - - { offsetInCU: 0x2DD, offset: 0x961BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x558, symBinAddr: 0x41E1C, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x961DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x55C, symBinAddr: 0x41E20, symSize: 0x30 } - - { offsetInCU: 0x315, offset: 0x961F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x58C, symBinAddr: 0x41E50, symSize: 0x3C } - - { offsetInCU: 0x331, offset: 0x96212, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x5C8, symBinAddr: 0x41E8C, symSize: 0x3C } - - { offsetInCU: 0x34D, offset: 0x9622E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x604, symBinAddr: 0x41EC8, symSize: 0xDC } - - { offsetInCU: 0x376, offset: 0x96257, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x6E0, symBinAddr: 0x41FA4, symSize: 0xE0 } - - { offsetInCU: 0x3A9, offset: 0x9628A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x7C0, symBinAddr: 0x42084, symSize: 0x268 } - - { offsetInCU: 0x55E, offset: 0x9643F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0xA28, symBinAddr: 0x422EC, symSize: 0x1C } - - { offsetInCU: 0x599, offset: 0x9647A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0xA44, symBinAddr: 0x42308, symSize: 0x24 } - - { offsetInCU: 0x6B9, offset: 0x9659A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0xA68, symBinAddr: 0x4232C, symSize: 0x20 } - - { offsetInCU: 0x5E, offset: 0x9671E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x42360, symSize: 0x60 } - - { offsetInCU: 0x92, offset: 0x96752, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x17C, symBinAddr: 0x424DC, symSize: 0x30 } - - { offsetInCU: 0xA6, offset: 0x96766, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x1AC, symBinAddr: 0x4250C, symSize: 0x78 } - - { offsetInCU: 0x100, offset: 0x967C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x224, symBinAddr: 0x42584, symSize: 0xBC } - - { offsetInCU: 0x15E, offset: 0x9681E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x2E0, symBinAddr: 0x42640, symSize: 0x60 } - - { offsetInCU: 0x186, offset: 0x96846, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x340, symBinAddr: 0x426A0, symSize: 0x140 } - - { offsetInCU: 0x1EE, offset: 0x968AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x480, symBinAddr: 0x427E0, symSize: 0x64 } - - { offsetInCU: 0x23A, offset: 0x968FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x4E4, symBinAddr: 0x42844, symSize: 0x90 } - - { offsetInCU: 0x298, offset: 0x96958, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x574, symBinAddr: 0x428D4, symSize: 0xC4 } - - { offsetInCU: 0x2D8, offset: 0x96998, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x638, symBinAddr: 0x42998, symSize: 0xDC } - - { offsetInCU: 0x309, offset: 0x969C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x714, symBinAddr: 0x42A74, symSize: 0x104 } - - { offsetInCU: 0x363, offset: 0x96A23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x818, symBinAddr: 0x42B78, symSize: 0xD8 } - - { offsetInCU: 0x3C1, offset: 0x96A81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0x8F0, symBinAddr: 0x42C50, symSize: 0xBC } - - { offsetInCU: 0x40D, offset: 0x96ACD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0x9AC, symBinAddr: 0x42D0C, symSize: 0x88 } - - { offsetInCU: 0x46B, offset: 0x96B2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xA34, symBinAddr: 0x42D94, symSize: 0x190 } - - { offsetInCU: 0x4C2, offset: 0x96B82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x42F24, symSize: 0xB0 } - - { offsetInCU: 0x50A, offset: 0x96BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xC74, symBinAddr: 0x42FD4, symSize: 0x24 } - - { offsetInCU: 0x545, offset: 0x96C05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xC98, symBinAddr: 0x42FF8, symSize: 0x2C } - - { offsetInCU: 0x58F, offset: 0x96C4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xD0C, symBinAddr: 0x4306C, symSize: 0xE4 } - - { offsetInCU: 0x5AB, offset: 0x96C6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xDF0, symBinAddr: 0x43150, symSize: 0x54 } - - { offsetInCU: 0x5C7, offset: 0x96C87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xE44, symBinAddr: 0x431A4, symSize: 0xA8 } - - { offsetInCU: 0x620, offset: 0x96CE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0xEEC, symBinAddr: 0x4324C, symSize: 0x30 } - - { offsetInCU: 0x669, offset: 0x96D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x11E0, symBinAddr: 0x43540, symSize: 0x3C } - - { offsetInCU: 0x69B, offset: 0x96D5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfcTf4ngn_n', symObjAddr: 0x1600, symBinAddr: 0x43960, symSize: 0x140 } - - { offsetInCU: 0x714, offset: 0x96DD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x17A0, symBinAddr: 0x43B00, symSize: 0x274 } - - { offsetInCU: 0x795, offset: 0x96E55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1740, symBinAddr: 0x43AA0, symSize: 0x20 } - - { offsetInCU: 0x7A9, offset: 0x96E69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1760, symBinAddr: 0x43AC0, symSize: 0x20 } - - { offsetInCU: 0x7BD, offset: 0x96E7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x43AE0, symSize: 0x20 } - - { offsetInCU: 0x7D1, offset: 0x96E91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x1A14, symBinAddr: 0x43D74, symSize: 0x18 } - - { offsetInCU: 0x7E5, offset: 0x96EA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x1A2C, symBinAddr: 0x43D8C, symSize: 0x20 } - - { offsetInCU: 0x7F9, offset: 0x96EB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1A4C, symBinAddr: 0x43DAC, symSize: 0x18 } - - { offsetInCU: 0x80D, offset: 0x96ECD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x1AAC, symBinAddr: 0x43E0C, symSize: 0xC } - - { offsetInCU: 0x821, offset: 0x96EE1, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1AB8, symBinAddr: 0x43E18, symSize: 0x10 } - - { offsetInCU: 0x835, offset: 0x96EF5, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1AC8, symBinAddr: 0x43E28, symSize: 0x8 } - - { offsetInCU: 0x849, offset: 0x96F09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1AD0, symBinAddr: 0x43E30, symSize: 0x10 } - - { offsetInCU: 0x85D, offset: 0x96F1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1AE0, symBinAddr: 0x43E40, symSize: 0x10 } - - { offsetInCU: 0x871, offset: 0x96F31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1AF0, symBinAddr: 0x43E50, symSize: 0x10 } - - { offsetInCU: 0x885, offset: 0x96F45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1B00, symBinAddr: 0x43E60, symSize: 0x10 } - - { offsetInCU: 0x899, offset: 0x96F59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1B10, symBinAddr: 0x43E70, symSize: 0x10 } - - { offsetInCU: 0x8AD, offset: 0x96F6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1B20, symBinAddr: 0x43E80, symSize: 0x4 } - - { offsetInCU: 0x8C1, offset: 0x96F81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1B24, symBinAddr: 0x43E84, symSize: 0x50 } - - { offsetInCU: 0x8D5, offset: 0x96F95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B74, symBinAddr: 0x43ED4, symSize: 0xC } - - { offsetInCU: 0x8E9, offset: 0x96FA9, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B80, symBinAddr: 0x43EE0, symSize: 0xC } - - { offsetInCU: 0x8FD, offset: 0x96FBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1DD0, symBinAddr: 0x44130, symSize: 0x7C } - - { offsetInCU: 0x911, offset: 0x96FD1, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E88, symBinAddr: 0x441AC, symSize: 0x2C } - - { offsetInCU: 0x939, offset: 0x96FF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0xF1C, symBinAddr: 0x4327C, symSize: 0x54 } - - { offsetInCU: 0x955, offset: 0x97015, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0xF70, symBinAddr: 0x432D0, symSize: 0x44 } - - { offsetInCU: 0x971, offset: 0x97031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0xFB4, symBinAddr: 0x43314, symSize: 0x4 } - - { offsetInCU: 0x98D, offset: 0x9704D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0xFB8, symBinAddr: 0x43318, symSize: 0x4 } - - { offsetInCU: 0x9BE, offset: 0x9707E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xFBC, symBinAddr: 0x4331C, symSize: 0x10 } - - { offsetInCU: 0x9DE, offset: 0x9709E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xFBC, symBinAddr: 0x4331C, symSize: 0x10 } - - { offsetInCU: 0x9EF, offset: 0x970AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0xFCC, symBinAddr: 0x4332C, symSize: 0x64 } - - { offsetInCU: 0xA0B, offset: 0x970CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x1030, symBinAddr: 0x43390, symSize: 0x68 } - - { offsetInCU: 0xA27, offset: 0x970E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1098, symBinAddr: 0x433F8, symSize: 0x50 } - - { offsetInCU: 0xA52, offset: 0x97112, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x1190, symBinAddr: 0x434F0, symSize: 0x50 } - - { offsetInCU: 0xA9E, offset: 0x9715E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x121C, symBinAddr: 0x4357C, symSize: 0x78 } - - { offsetInCU: 0xAF1, offset: 0x971B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x1294, symBinAddr: 0x435F4, symSize: 0x60 } - - { offsetInCU: 0xB2F, offset: 0x971EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x12F4, symBinAddr: 0x43654, symSize: 0x34 } - - { offsetInCU: 0xB4B, offset: 0x9720B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1328, symBinAddr: 0x43688, symSize: 0x8 } - - { offsetInCU: 0xB7C, offset: 0x9723C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x1330, symBinAddr: 0x43690, symSize: 0x5C } - - { offsetInCU: 0xBAD, offset: 0x9726D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x138C, symBinAddr: 0x436EC, symSize: 0x5C } - - { offsetInCU: 0xBC9, offset: 0x97289, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x13E8, symBinAddr: 0x43748, symSize: 0x70 } - - { offsetInCU: 0xBEC, offset: 0x972AC, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x15FC, symBinAddr: 0x4395C, symSize: 0x4 } - - { offsetInCU: 0xC15, offset: 0x972D5, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B8C, symBinAddr: 0x43EEC, symSize: 0x178 } -... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml deleted file mode 100644 index 63ae6f9..0000000 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml +++ /dev/null @@ -1,1630 +0,0 @@ ---- -triple: 'x86_64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT' -relocations: - - { offsetInCU: 0x34, offset: 0x55539, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x4E7C0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x5556E, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x4E7E8, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x555D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x2590, symSize: 0x10 } - - { offsetInCU: 0x6B, offset: 0x555EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x10, symBinAddr: 0x25A0, symSize: 0x10 } - - { offsetInCU: 0x94, offset: 0x55618, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x20, symBinAddr: 0x25B0, symSize: 0x80 } - - { offsetInCU: 0xB1, offset: 0x55635, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0xA0, symBinAddr: 0x2630, symSize: 0x100 } - - { offsetInCU: 0xFA, offset: 0x5567E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x250, symBinAddr: 0x27E0, symSize: 0x20 } - - { offsetInCU: 0x12B, offset: 0x556AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x2800, symSize: 0x10 } - - { offsetInCU: 0x147, offset: 0x556CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x280, symBinAddr: 0x2810, symSize: 0x10 } - - { offsetInCU: 0x163, offset: 0x556E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x8FC0, symBinAddr: 0xB530, symSize: 0x20 } - - { offsetInCU: 0x2BC, offset: 0x55840, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x290, symBinAddr: 0x2820, symSize: 0x180 } - - { offsetInCU: 0x407, offset: 0x5598B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x410, symBinAddr: 0x29A0, symSize: 0x10 } - - { offsetInCU: 0x42B, offset: 0x559AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x420, symBinAddr: 0x29B0, symSize: 0x40 } - - { offsetInCU: 0x44A, offset: 0x559CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x460, symBinAddr: 0x29F0, symSize: 0x50 } - - { offsetInCU: 0x489, offset: 0x55A0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x4B0, symBinAddr: 0x2A40, symSize: 0x70 } - - { offsetInCU: 0x4B6, offset: 0x55A3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x520, symBinAddr: 0x2AB0, symSize: 0x60 } - - { offsetInCU: 0x4E1, offset: 0x55A65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x600, symBinAddr: 0x2B90, symSize: 0x40 } - - { offsetInCU: 0x510, offset: 0x55A94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x690, symBinAddr: 0x2C20, symSize: 0x40 } - - { offsetInCU: 0x53F, offset: 0x55AC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x7A0, symBinAddr: 0x2D30, symSize: 0x40 } - - { offsetInCU: 0x56E, offset: 0x55AF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x830, symBinAddr: 0x2DC0, symSize: 0x40 } - - { offsetInCU: 0x59D, offset: 0x55B21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x950, symBinAddr: 0x2EE0, symSize: 0x40 } - - { offsetInCU: 0x5CC, offset: 0x55B50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x9E0, symBinAddr: 0x2F70, symSize: 0x40 } - - { offsetInCU: 0x5FB, offset: 0x55B7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0xA30, symBinAddr: 0x2FC0, symSize: 0x40 } - - { offsetInCU: 0x618, offset: 0x55B9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0xA70, symBinAddr: 0x3000, symSize: 0x50 } - - { offsetInCU: 0x655, offset: 0x55BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0xAC0, symBinAddr: 0x3050, symSize: 0x40 } - - { offsetInCU: 0x684, offset: 0x55C08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0xB00, symBinAddr: 0x3090, symSize: 0x10 } - - { offsetInCU: 0x6CF, offset: 0x55C53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0xB10, symBinAddr: 0x30A0, symSize: 0xB0 } - - { offsetInCU: 0x741, offset: 0x55CC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xBE0, symBinAddr: 0x3170, symSize: 0xF0 } - - { offsetInCU: 0x7B6, offset: 0x55D3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCF0, symBinAddr: 0x3280, symSize: 0x40 } - - { offsetInCU: 0x7D3, offset: 0x55D57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xD30, symBinAddr: 0x32C0, symSize: 0x50 } - - { offsetInCU: 0x810, offset: 0x55D94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD80, symBinAddr: 0x3310, symSize: 0x40 } - - { offsetInCU: 0x89B, offset: 0x55E1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xDD0, symBinAddr: 0x3360, symSize: 0x100 } - - { offsetInCU: 0x971, offset: 0x55EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0x1110, symBinAddr: 0x36A0, symSize: 0x30 } - - { offsetInCU: 0x9AC, offset: 0x55F30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x1140, symBinAddr: 0x36D0, symSize: 0x80 } - - { offsetInCU: 0x9F4, offset: 0x55F78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x11C0, symBinAddr: 0x3750, symSize: 0x40 } - - { offsetInCU: 0xA23, offset: 0x55FA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x1200, symBinAddr: 0x3790, symSize: 0x80 } - - { offsetInCU: 0xA80, offset: 0x56004, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x1290, symBinAddr: 0x3820, symSize: 0x30 } - - { offsetInCU: 0xAD0, offset: 0x56054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x12C0, symBinAddr: 0x3850, symSize: 0x30 } - - { offsetInCU: 0xB4F, offset: 0x560D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x12F0, symBinAddr: 0x3880, symSize: 0x40 } - - { offsetInCU: 0xBF6, offset: 0x5617A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1330, symBinAddr: 0x38C0, symSize: 0x30 } - - { offsetInCU: 0xCB0, offset: 0x56234, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1360, symBinAddr: 0x38F0, symSize: 0x20 } - - { offsetInCU: 0xD1E, offset: 0x562A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x13A0, symBinAddr: 0x3930, symSize: 0x40 } - - { offsetInCU: 0xD9B, offset: 0x5631F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1400, symBinAddr: 0x3990, symSize: 0x20 } - - { offsetInCU: 0xE09, offset: 0x5638D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1460, symBinAddr: 0x39F0, symSize: 0x40 } - - { offsetInCU: 0xE86, offset: 0x5640A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x1530, symBinAddr: 0x3AC0, symSize: 0x40 } - - { offsetInCU: 0xEB5, offset: 0x56439, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x1640, symBinAddr: 0x3BD0, symSize: 0x40 } - - { offsetInCU: 0xEE4, offset: 0x56468, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x16D0, symBinAddr: 0x3C60, symSize: 0x40 } - - { offsetInCU: 0xF13, offset: 0x56497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x17D0, symBinAddr: 0x3D60, symSize: 0x40 } - - { offsetInCU: 0xF42, offset: 0x564C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x1840, symBinAddr: 0x3DD0, symSize: 0x60 } - - { offsetInCU: 0xF7F, offset: 0x56503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x18A0, symBinAddr: 0x3E30, symSize: 0x60 } - - { offsetInCU: 0xFED, offset: 0x56571, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x1900, symBinAddr: 0x3E90, symSize: 0x70 } - - { offsetInCU: 0x1071, offset: 0x565F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x1970, symBinAddr: 0x3F00, symSize: 0x30 } - - { offsetInCU: 0x10D9, offset: 0x5665D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x19A0, symBinAddr: 0x3F30, symSize: 0x70 } - - { offsetInCU: 0x1138, offset: 0x566BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x1A10, symBinAddr: 0x3FA0, symSize: 0x70 } - - { offsetInCU: 0x1197, offset: 0x5671B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x1A80, symBinAddr: 0x4010, symSize: 0xA0 } - - { offsetInCU: 0x122D, offset: 0x567B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1B20, symBinAddr: 0x40B0, symSize: 0x80 } - - { offsetInCU: 0x12C3, offset: 0x56847, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1BA0, symBinAddr: 0x4130, symSize: 0xB0 } - - { offsetInCU: 0x1317, offset: 0x5689B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1C50, symBinAddr: 0x41E0, symSize: 0xC0 } - - { offsetInCU: 0x139C, offset: 0x56920, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1D10, symBinAddr: 0x42A0, symSize: 0x100 } - - { offsetInCU: 0x143B, offset: 0x569BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1E10, symBinAddr: 0x43A0, symSize: 0x140 } - - { offsetInCU: 0x14BF, offset: 0x56A43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1F50, symBinAddr: 0x44E0, symSize: 0xB0 } - - { offsetInCU: 0x1535, offset: 0x56AB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x20D0, symBinAddr: 0x4660, symSize: 0xF0 } - - { offsetInCU: 0x15AE, offset: 0x56B32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2310, symBinAddr: 0x48A0, symSize: 0x40 } - - { offsetInCU: 0x15DD, offset: 0x56B61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2350, symBinAddr: 0x48E0, symSize: 0x50 } - - { offsetInCU: 0x161D, offset: 0x56BA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x23A0, symBinAddr: 0x4930, symSize: 0x40 } - - { offsetInCU: 0x163C, offset: 0x56BC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2460, symBinAddr: 0x49F0, symSize: 0x10 } - - { offsetInCU: 0x1654, offset: 0x56BD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x2470, symBinAddr: 0x4A00, symSize: 0x10 } - - { offsetInCU: 0x168E, offset: 0x56C12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x24C0, symBinAddr: 0x4A50, symSize: 0x40 } - - { offsetInCU: 0x16BF, offset: 0x56C43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2500, symBinAddr: 0x4A90, symSize: 0x10 } - - { offsetInCU: 0x16D7, offset: 0x56C5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x2510, symBinAddr: 0x4AA0, symSize: 0x10 } - - { offsetInCU: 0x1720, offset: 0x56CA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2560, symBinAddr: 0x4AF0, symSize: 0x40 } - - { offsetInCU: 0x1751, offset: 0x56CD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x25A0, symBinAddr: 0x4B30, symSize: 0x10 } - - { offsetInCU: 0x1769, offset: 0x56CED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x25B0, symBinAddr: 0x4B40, symSize: 0x10 } - - { offsetInCU: 0x17A3, offset: 0x56D27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x2600, symBinAddr: 0x4B90, symSize: 0x40 } - - { offsetInCU: 0x17D4, offset: 0x56D58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2640, symBinAddr: 0x4BD0, symSize: 0x10 } - - { offsetInCU: 0x17EC, offset: 0x56D70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2690, symBinAddr: 0x4C20, symSize: 0x40 } - - { offsetInCU: 0x181D, offset: 0x56DA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x26D0, symBinAddr: 0x4C60, symSize: 0x10 } - - { offsetInCU: 0x1835, offset: 0x56DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x26E0, symBinAddr: 0x4C70, symSize: 0x10 } - - { offsetInCU: 0x187E, offset: 0x56E02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x2730, symBinAddr: 0x4CC0, symSize: 0x40 } - - { offsetInCU: 0x18AF, offset: 0x56E33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x2770, symBinAddr: 0x4D00, symSize: 0x10 } - - { offsetInCU: 0x18C7, offset: 0x56E4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x27C0, symBinAddr: 0x4D50, symSize: 0x40 } - - { offsetInCU: 0x18F8, offset: 0x56E7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x2800, symBinAddr: 0x4D90, symSize: 0x10 } - - { offsetInCU: 0x1910, offset: 0x56E94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2810, symBinAddr: 0x4DA0, symSize: 0x10 } - - { offsetInCU: 0x193B, offset: 0x56EBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x2860, symBinAddr: 0x4DF0, symSize: 0x40 } - - { offsetInCU: 0x196C, offset: 0x56EF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x28A0, symBinAddr: 0x4E30, symSize: 0x10 } - - { offsetInCU: 0x1984, offset: 0x56F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x28B0, symBinAddr: 0x4E40, symSize: 0x10 } - - { offsetInCU: 0x19AF, offset: 0x56F33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2900, symBinAddr: 0x4E90, symSize: 0x40 } - - { offsetInCU: 0x19E0, offset: 0x56F64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x2940, symBinAddr: 0x4ED0, symSize: 0x10 } - - { offsetInCU: 0x19F8, offset: 0x56F7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x2950, symBinAddr: 0x4EE0, symSize: 0x10 } - - { offsetInCU: 0x1A32, offset: 0x56FB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x29A0, symBinAddr: 0x4F30, symSize: 0x40 } - - { offsetInCU: 0x1A63, offset: 0x56FE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x29E0, symBinAddr: 0x4F70, symSize: 0x10 } - - { offsetInCU: 0x1A7B, offset: 0x56FFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x29F0, symBinAddr: 0x4F80, symSize: 0x10 } - - { offsetInCU: 0x1AC6, offset: 0x5704A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x2A40, symBinAddr: 0x4FD0, symSize: 0x40 } - - { offsetInCU: 0x1AF7, offset: 0x5707B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2A80, symBinAddr: 0x5010, symSize: 0x10 } - - { offsetInCU: 0x1B0F, offset: 0x57093, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2AD0, symBinAddr: 0x5060, symSize: 0x40 } - - { offsetInCU: 0x1B40, offset: 0x570C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2B10, symBinAddr: 0x50A0, symSize: 0x10 } - - { offsetInCU: 0x1B58, offset: 0x570DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2BF0, symBinAddr: 0x5180, symSize: 0x40 } - - { offsetInCU: 0x1B89, offset: 0x5710D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2C30, symBinAddr: 0x51C0, symSize: 0x60 } - - { offsetInCU: 0x1BA8, offset: 0x5712C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2C90, symBinAddr: 0x5220, symSize: 0x690 } - - { offsetInCU: 0x1DB8, offset: 0x5733C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x3320, symBinAddr: 0x58B0, symSize: 0x180 } - - { offsetInCU: 0x1E41, offset: 0x573C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x34A0, symBinAddr: 0x5A30, symSize: 0x20 } - - { offsetInCU: 0x1F40, offset: 0x574C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x36B0, symBinAddr: 0x5C40, symSize: 0x620 } - - { offsetInCU: 0x20FC, offset: 0x57680, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3CD0, symBinAddr: 0x6260, symSize: 0x20 } - - { offsetInCU: 0x2182, offset: 0x57706, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x3CF0, symBinAddr: 0x6280, symSize: 0x690 } - - { offsetInCU: 0x2498, offset: 0x57A1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4380, symBinAddr: 0x6910, symSize: 0xB0 } - - { offsetInCU: 0x254B, offset: 0x57ACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x4460, symBinAddr: 0x69F0, symSize: 0x10 } - - { offsetInCU: 0x25A4, offset: 0x57B28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19internal_disconnectyyF', symObjAddr: 0x4470, symBinAddr: 0x6A00, symSize: 0xD0 } - - { offsetInCU: 0x265C, offset: 0x57BE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x4540, symBinAddr: 0x6AD0, symSize: 0xF0 } - - { offsetInCU: 0x26D8, offset: 0x57C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x4630, symBinAddr: 0x6BC0, symSize: 0xA0 } - - { offsetInCU: 0x2764, offset: 0x57CE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x46D0, symBinAddr: 0x6C60, symSize: 0x180 } - - { offsetInCU: 0x28E9, offset: 0x57E6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x4850, symBinAddr: 0x6DE0, symSize: 0x710 } - - { offsetInCU: 0x2B64, offset: 0x580E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x4F60, symBinAddr: 0x74F0, symSize: 0x70 } - - { offsetInCU: 0x2BD1, offset: 0x58155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x4FD0, symBinAddr: 0x7560, symSize: 0xC0 } - - { offsetInCU: 0x2CBD, offset: 0x58241, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x5090, symBinAddr: 0x7620, symSize: 0x70 } - - { offsetInCU: 0x2D83, offset: 0x58307, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x5100, symBinAddr: 0x7690, symSize: 0xF0 } - - { offsetInCU: 0x2FF1, offset: 0x58575, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x51F0, symBinAddr: 0x7780, symSize: 0x120 } - - { offsetInCU: 0x31A8, offset: 0x5872C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x5310, symBinAddr: 0x78A0, symSize: 0xE0 } - - { offsetInCU: 0x32D2, offset: 0x58856, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x53F0, symBinAddr: 0x7980, symSize: 0x20 } - - { offsetInCU: 0x32F0, offset: 0x58874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x5410, symBinAddr: 0x79A0, symSize: 0x30 } - - { offsetInCU: 0x3353, offset: 0x588D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x5440, symBinAddr: 0x79D0, symSize: 0x30 } - - { offsetInCU: 0x33BA, offset: 0x5893E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x5470, symBinAddr: 0x7A00, symSize: 0x40 } - - { offsetInCU: 0x35A7, offset: 0x58B2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x78F0, symBinAddr: 0x9E60, symSize: 0x240 } - - { offsetInCU: 0x3747, offset: 0x58CCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubAckV_Tg5', symObjAddr: 0x7B30, symBinAddr: 0xA0A0, symSize: 0x240 } - - { offsetInCU: 0x38E7, offset: 0x58E6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRecV_Tg5', symObjAddr: 0x7D70, symBinAddr: 0xA2E0, symSize: 0x240 } - - { offsetInCU: 0x3A87, offset: 0x5900B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PubCompV_Tg5', symObjAddr: 0x7FB0, symBinAddr: 0xA520, symSize: 0x240 } - - { offsetInCU: 0x3C27, offset: 0x591AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x81F0, symBinAddr: 0xA760, symSize: 0x250 } - - { offsetInCU: 0x3DC7, offset: 0x5934B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x8440, symBinAddr: 0xA9B0, symSize: 0x200 } - - { offsetInCU: 0x3F67, offset: 0x594EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x8640, symBinAddr: 0xABB0, symSize: 0x240 } - - { offsetInCU: 0x4107, offset: 0x5968B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x8880, symBinAddr: 0xADF0, symSize: 0x2A0 } - - { offsetInCU: 0x42A9, offset: 0x5982D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x8B20, symBinAddr: 0xB090, symSize: 0x260 } - - { offsetInCU: 0x4449, offset: 0x599CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRelV_Tg5', symObjAddr: 0x8D80, symBinAddr: 0xB2F0, symSize: 0x240 } - - { offsetInCU: 0x4757, offset: 0x59CDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x580, symBinAddr: 0x2B10, symSize: 0x20 } - - { offsetInCU: 0x476F, offset: 0x59CF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x5A0, symBinAddr: 0x2B30, symSize: 0x20 } - - { offsetInCU: 0x4787, offset: 0x59D0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x640, symBinAddr: 0x2BD0, symSize: 0x10 } - - { offsetInCU: 0x479F, offset: 0x59D23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x7E0, symBinAddr: 0x2D70, symSize: 0x10 } - - { offsetInCU: 0x47B7, offset: 0x59D3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x870, symBinAddr: 0x2E00, symSize: 0x10 } - - { offsetInCU: 0x47CF, offset: 0x59D53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x990, symBinAddr: 0x2F20, symSize: 0x10 } - - { offsetInCU: 0x47E7, offset: 0x59D6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0xA20, symBinAddr: 0x2FB0, symSize: 0x10 } - - { offsetInCU: 0x489C, offset: 0x59E20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xDC0, symBinAddr: 0x3350, symSize: 0x10 } - - { offsetInCU: 0x48CB, offset: 0x59E4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xED0, symBinAddr: 0x3460, symSize: 0x240 } - - { offsetInCU: 0x494F, offset: 0x59ED3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x54C0, symBinAddr: 0x7A50, symSize: 0x50 } - - { offsetInCU: 0x4AA5, offset: 0x5A029, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x14E0, symBinAddr: 0x3A70, symSize: 0x10 } - - { offsetInCU: 0x4ABD, offset: 0x5A041, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1570, symBinAddr: 0x3B00, symSize: 0x10 } - - { offsetInCU: 0x4AD5, offset: 0x5A059, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1580, symBinAddr: 0x3B10, symSize: 0x10 } - - { offsetInCU: 0x4AED, offset: 0x5A071, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1680, symBinAddr: 0x3C10, symSize: 0x10 } - - { offsetInCU: 0x4B05, offset: 0x5A089, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1710, symBinAddr: 0x3CA0, symSize: 0x10 } - - { offsetInCU: 0x4B1D, offset: 0x5A0A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x1810, symBinAddr: 0x3DA0, symSize: 0x10 } - - { offsetInCU: 0x4B35, offset: 0x5A0B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1820, symBinAddr: 0x3DB0, symSize: 0x10 } - - { offsetInCU: 0x4B4D, offset: 0x5A0D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x1830, symBinAddr: 0x3DC0, symSize: 0x10 } - - { offsetInCU: 0x4C7F, offset: 0x5A203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x22D0, symBinAddr: 0x4860, symSize: 0x40 } - - { offsetInCU: 0x4CAE, offset: 0x5A232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x23E0, symBinAddr: 0x4970, symSize: 0x20 } - - { offsetInCU: 0x4CDD, offset: 0x5A261, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x2400, symBinAddr: 0x4990, symSize: 0x20 } - - { offsetInCU: 0x4D0C, offset: 0x5A290, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x2420, symBinAddr: 0x49B0, symSize: 0x20 } - - { offsetInCU: 0x4D3B, offset: 0x5A2BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x2440, symBinAddr: 0x49D0, symSize: 0x10 } - - { offsetInCU: 0x4D53, offset: 0x5A2D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x2450, symBinAddr: 0x49E0, symSize: 0x10 } - - { offsetInCU: 0x4DE8, offset: 0x5A36C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x34C0, symBinAddr: 0x5A50, symSize: 0x1F0 } - - { offsetInCU: 0x4F9F, offset: 0x5A523, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x4430, symBinAddr: 0x69C0, symSize: 0x30 } - - { offsetInCU: 0x5372, offset: 0x5A8F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x54B0, symBinAddr: 0x7A40, symSize: 0x10 } - - { offsetInCU: 0x53A5, offset: 0x5A929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5510, symBinAddr: 0x7AA0, symSize: 0x10 } - - { offsetInCU: 0x53D3, offset: 0x5A957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5520, symBinAddr: 0x7AB0, symSize: 0x1E0 } - - { offsetInCU: 0x54C7, offset: 0x5AA4B, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x5700, symBinAddr: 0x7C90, symSize: 0x40 } - - { offsetInCU: 0x54EA, offset: 0x5AA6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5740, symBinAddr: 0x7CD0, symSize: 0x1A0 } - - { offsetInCU: 0x55D0, offset: 0x5AB54, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x58E0, symBinAddr: 0x7E70, symSize: 0x60 } - - { offsetInCU: 0x55E8, offset: 0x5AB6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5940, symBinAddr: 0x7ED0, symSize: 0xB0 } - - { offsetInCU: 0x566E, offset: 0x5ABF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x59F0, symBinAddr: 0x7F80, symSize: 0x10 } - - { offsetInCU: 0x5755, offset: 0x5ACD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5A00, symBinAddr: 0x7F90, symSize: 0x270 } - - { offsetInCU: 0x5AE4, offset: 0x5B068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5C70, symBinAddr: 0x8200, symSize: 0x380 } - - { offsetInCU: 0x5D4B, offset: 0x5B2CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x5FF0, symBinAddr: 0x8580, symSize: 0xA0 } - - { offsetInCU: 0x5E31, offset: 0x5B3B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x6090, symBinAddr: 0x8620, symSize: 0x10 } - - { offsetInCU: 0x5E76, offset: 0x5B3FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x60A0, symBinAddr: 0x8630, symSize: 0x10 } - - { offsetInCU: 0x5E92, offset: 0x5B416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x60B0, symBinAddr: 0x8640, symSize: 0x10 } - - { offsetInCU: 0x5EAE, offset: 0x5B432, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x60C0, symBinAddr: 0x8650, symSize: 0x10 } - - { offsetInCU: 0x5ECA, offset: 0x5B44E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x60D0, symBinAddr: 0x8660, symSize: 0x10 } - - { offsetInCU: 0x5EE6, offset: 0x5B46A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x60E0, symBinAddr: 0x8670, symSize: 0x10 } - - { offsetInCU: 0x5F02, offset: 0x5B486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x60F0, symBinAddr: 0x8680, symSize: 0x220 } - - { offsetInCU: 0x5F8A, offset: 0x5B50E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x6310, symBinAddr: 0x88A0, symSize: 0x130 } - - { offsetInCU: 0x60A3, offset: 0x5B627, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x6440, symBinAddr: 0x89D0, symSize: 0x30 } - - { offsetInCU: 0x60E5, offset: 0x5B669, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x6470, symBinAddr: 0x8A00, symSize: 0x10 } - - { offsetInCU: 0x6127, offset: 0x5B6AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x6480, symBinAddr: 0x8A10, symSize: 0x10 } - - { offsetInCU: 0x6169, offset: 0x5B6ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x6490, symBinAddr: 0x8A20, symSize: 0x10 } - - { offsetInCU: 0x61AB, offset: 0x5B72F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x64A0, symBinAddr: 0x8A30, symSize: 0x10 } - - { offsetInCU: 0x61ED, offset: 0x5B771, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x64B0, symBinAddr: 0x8A40, symSize: 0x10 } - - { offsetInCU: 0x622F, offset: 0x5B7B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x64C0, symBinAddr: 0x8A50, symSize: 0x10 } - - { offsetInCU: 0x6271, offset: 0x5B7F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x64D0, symBinAddr: 0x8A60, symSize: 0x10 } - - { offsetInCU: 0x62B3, offset: 0x5B837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x64E0, symBinAddr: 0x8A70, symSize: 0x10 } - - { offsetInCU: 0x62E6, offset: 0x5B86A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x64F0, symBinAddr: 0x8A80, symSize: 0x10 } - - { offsetInCU: 0x62FE, offset: 0x5B882, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x6500, symBinAddr: 0x8A90, symSize: 0x20 } - - { offsetInCU: 0x6316, offset: 0x5B89A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x6520, symBinAddr: 0x8AB0, symSize: 0x20 } - - { offsetInCU: 0x632E, offset: 0x5B8B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x6540, symBinAddr: 0x8AD0, symSize: 0x10 } - - { offsetInCU: 0x6346, offset: 0x5B8CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x6550, symBinAddr: 0x8AE0, symSize: 0x10 } - - { offsetInCU: 0x635E, offset: 0x5B8E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x6560, symBinAddr: 0x8AF0, symSize: 0x10 } - - { offsetInCU: 0x6376, offset: 0x5B8FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x6570, symBinAddr: 0x8B00, symSize: 0x10 } - - { offsetInCU: 0x638E, offset: 0x5B912, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x6580, symBinAddr: 0x8B10, symSize: 0x10 } - - { offsetInCU: 0x63A6, offset: 0x5B92A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x6590, symBinAddr: 0x8B20, symSize: 0x30 } - - { offsetInCU: 0x63BE, offset: 0x5B942, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x65C0, symBinAddr: 0x8B50, symSize: 0x10 } - - { offsetInCU: 0x63D6, offset: 0x5B95A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x6610, symBinAddr: 0x8BA0, symSize: 0x10 } - - { offsetInCU: 0x63EE, offset: 0x5B972, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x6620, symBinAddr: 0x8BB0, symSize: 0x10 } - - { offsetInCU: 0x6406, offset: 0x5B98A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x6630, symBinAddr: 0x8BC0, symSize: 0x10 } - - { offsetInCU: 0x641E, offset: 0x5B9A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x6640, symBinAddr: 0x8BD0, symSize: 0x10 } - - { offsetInCU: 0x6436, offset: 0x5B9BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x6650, symBinAddr: 0x8BE0, symSize: 0x10 } - - { offsetInCU: 0x644E, offset: 0x5B9D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x6660, symBinAddr: 0x8BF0, symSize: 0x10 } - - { offsetInCU: 0x6466, offset: 0x5B9EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x6670, symBinAddr: 0x8C00, symSize: 0x10 } - - { offsetInCU: 0x647E, offset: 0x5BA02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6680, symBinAddr: 0x8C10, symSize: 0x10 } - - { offsetInCU: 0x6496, offset: 0x5BA1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x6690, symBinAddr: 0x8C20, symSize: 0x10 } - - { offsetInCU: 0x64AE, offset: 0x5BA32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x66A0, symBinAddr: 0x8C30, symSize: 0x10 } - - { offsetInCU: 0x6521, offset: 0x5BAA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x66B0, symBinAddr: 0x8C40, symSize: 0x160 } - - { offsetInCU: 0x659F, offset: 0x5BB23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x69C0, symBinAddr: 0x8F50, symSize: 0x20 } - - { offsetInCU: 0x65CE, offset: 0x5BB52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x69E0, symBinAddr: 0x8F70, symSize: 0x10 } - - { offsetInCU: 0x65E6, offset: 0x5BB6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x69F0, symBinAddr: 0x8F80, symSize: 0x10 } - - { offsetInCU: 0x65FE, offset: 0x5BB82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6A00, symBinAddr: 0x8F90, symSize: 0x10 } - - { offsetInCU: 0x6616, offset: 0x5BB9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x6A10, symBinAddr: 0x8FA0, symSize: 0x10 } - - { offsetInCU: 0x662E, offset: 0x5BBB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x6A20, symBinAddr: 0x8FB0, symSize: 0x10 } - - { offsetInCU: 0x6646, offset: 0x5BBCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x6A30, symBinAddr: 0x8FC0, symSize: 0x10 } - - { offsetInCU: 0x665E, offset: 0x5BBE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x6A40, symBinAddr: 0x8FD0, symSize: 0x10 } - - { offsetInCU: 0x6676, offset: 0x5BBFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x6A50, symBinAddr: 0x8FE0, symSize: 0x10 } - - { offsetInCU: 0x668E, offset: 0x5BC12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x6A60, symBinAddr: 0x8FF0, symSize: 0x10 } - - { offsetInCU: 0x66A6, offset: 0x5BC2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x6A70, symBinAddr: 0x9000, symSize: 0x10 } - - { offsetInCU: 0x66BE, offset: 0x5BC42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6A80, symBinAddr: 0x9010, symSize: 0x10 } - - { offsetInCU: 0x66D6, offset: 0x5BC5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x6A90, symBinAddr: 0x9020, symSize: 0x10 } - - { offsetInCU: 0x66EE, offset: 0x5BC72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x6AA0, symBinAddr: 0x9030, symSize: 0x10 } - - { offsetInCU: 0x6706, offset: 0x5BC8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6AB0, symBinAddr: 0x9040, symSize: 0x10 } - - { offsetInCU: 0x671E, offset: 0x5BCA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x6AC0, symBinAddr: 0x9050, symSize: 0x10 } - - { offsetInCU: 0x6736, offset: 0x5BCBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x6AD0, symBinAddr: 0x9060, symSize: 0x10 } - - { offsetInCU: 0x674E, offset: 0x5BCD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x6AE0, symBinAddr: 0x9070, symSize: 0x10 } - - { offsetInCU: 0x6766, offset: 0x5BCEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x6AF0, symBinAddr: 0x9080, symSize: 0x10 } - - { offsetInCU: 0x677E, offset: 0x5BD02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x6B00, symBinAddr: 0x9090, symSize: 0x10 } - - { offsetInCU: 0x6796, offset: 0x5BD1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x6B10, symBinAddr: 0x90A0, symSize: 0x10 } - - { offsetInCU: 0x67AE, offset: 0x5BD32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x6B20, symBinAddr: 0x90B0, symSize: 0x20 } - - { offsetInCU: 0x67F1, offset: 0x5BD75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x6B40, symBinAddr: 0x90D0, symSize: 0x10 } - - { offsetInCU: 0x6809, offset: 0x5BD8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6B50, symBinAddr: 0x90E0, symSize: 0x10 } - - { offsetInCU: 0x6821, offset: 0x5BDA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6B60, symBinAddr: 0x90F0, symSize: 0x10 } - - { offsetInCU: 0x6839, offset: 0x5BDBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x6B70, symBinAddr: 0x9100, symSize: 0x10 } - - { offsetInCU: 0x6851, offset: 0x5BDD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x6B80, symBinAddr: 0x9110, symSize: 0x10 } - - { offsetInCU: 0x6869, offset: 0x5BDED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x6B90, symBinAddr: 0x9120, symSize: 0x10 } - - { offsetInCU: 0x6881, offset: 0x5BE05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6BA0, symBinAddr: 0x9130, symSize: 0x10 } - - { offsetInCU: 0x6899, offset: 0x5BE1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6BB0, symBinAddr: 0x9140, symSize: 0x10 } - - { offsetInCU: 0x68B1, offset: 0x5BE35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x6BC0, symBinAddr: 0x9150, symSize: 0x10 } - - { offsetInCU: 0x68C9, offset: 0x5BE4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x6BD0, symBinAddr: 0x9160, symSize: 0x10 } - - { offsetInCU: 0x68E1, offset: 0x5BE65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x6BE0, symBinAddr: 0x9170, symSize: 0x10 } - - { offsetInCU: 0x68F9, offset: 0x5BE7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x6BF0, symBinAddr: 0x9180, symSize: 0x10 } - - { offsetInCU: 0x6911, offset: 0x5BE95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x6C00, symBinAddr: 0x9190, symSize: 0x10 } - - { offsetInCU: 0x6929, offset: 0x5BEAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x6C10, symBinAddr: 0x91A0, symSize: 0x10 } - - { offsetInCU: 0x6941, offset: 0x5BEC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6C20, symBinAddr: 0x91B0, symSize: 0x10 } - - { offsetInCU: 0x6959, offset: 0x5BEDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6C30, symBinAddr: 0x91C0, symSize: 0x10 } - - { offsetInCU: 0x6971, offset: 0x5BEF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x6C40, symBinAddr: 0x91D0, symSize: 0x10 } - - { offsetInCU: 0x6989, offset: 0x5BF0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6C50, symBinAddr: 0x91E0, symSize: 0x10 } - - { offsetInCU: 0x69A1, offset: 0x5BF25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x6C60, symBinAddr: 0x91F0, symSize: 0x10 } - - { offsetInCU: 0x69B9, offset: 0x5BF3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x6C70, symBinAddr: 0x9200, symSize: 0x10 } - - { offsetInCU: 0x69D1, offset: 0x5BF55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x6C80, symBinAddr: 0x9210, symSize: 0x10 } - - { offsetInCU: 0x69E9, offset: 0x5BF6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x6C90, symBinAddr: 0x9220, symSize: 0x20 } - - { offsetInCU: 0x6A01, offset: 0x5BF85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x6CB0, symBinAddr: 0x9240, symSize: 0x10 } - - { offsetInCU: 0x6A19, offset: 0x5BF9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x6CC0, symBinAddr: 0x9250, symSize: 0x10 } - - { offsetInCU: 0x6A31, offset: 0x5BFB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x6CD0, symBinAddr: 0x9260, symSize: 0x10 } - - { offsetInCU: 0x6A49, offset: 0x5BFCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6CE0, symBinAddr: 0x9270, symSize: 0x10 } - - { offsetInCU: 0x6A61, offset: 0x5BFE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6CF0, symBinAddr: 0x9280, symSize: 0x10 } - - { offsetInCU: 0x6A79, offset: 0x5BFFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6D00, symBinAddr: 0x9290, symSize: 0x10 } - - { offsetInCU: 0x6A91, offset: 0x5C015, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6D10, symBinAddr: 0x92A0, symSize: 0x10 } - - { offsetInCU: 0x6AA9, offset: 0x5C02D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x6D20, symBinAddr: 0x92B0, symSize: 0x10 } - - { offsetInCU: 0x6AC1, offset: 0x5C045, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x6D30, symBinAddr: 0x92C0, symSize: 0x10 } - - { offsetInCU: 0x6AD9, offset: 0x5C05D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x6D40, symBinAddr: 0x92D0, symSize: 0x10 } - - { offsetInCU: 0x6AF1, offset: 0x5C075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x6D50, symBinAddr: 0x92E0, symSize: 0x10 } - - { offsetInCU: 0x6B09, offset: 0x5C08D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x6D60, symBinAddr: 0x92F0, symSize: 0x10 } - - { offsetInCU: 0x6B21, offset: 0x5C0A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6D70, symBinAddr: 0x9300, symSize: 0x10 } - - { offsetInCU: 0x6B39, offset: 0x5C0BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x6D80, symBinAddr: 0x9310, symSize: 0x10 } - - { offsetInCU: 0x6B51, offset: 0x5C0D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x6D90, symBinAddr: 0x9320, symSize: 0x10 } - - { offsetInCU: 0x6B69, offset: 0x5C0ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6DA0, symBinAddr: 0x9330, symSize: 0x10 } - - { offsetInCU: 0x6B81, offset: 0x5C105, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6DB0, symBinAddr: 0x9340, symSize: 0x10 } - - { offsetInCU: 0x6B99, offset: 0x5C11D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x6DC0, symBinAddr: 0x9350, symSize: 0x10 } - - { offsetInCU: 0x6BB1, offset: 0x5C135, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x6DD0, symBinAddr: 0x9360, symSize: 0x10 } - - { offsetInCU: 0x6BC9, offset: 0x5C14D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x6DE0, symBinAddr: 0x9370, symSize: 0x20 } - - { offsetInCU: 0x6BE1, offset: 0x5C165, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x6E00, symBinAddr: 0x9390, symSize: 0x10 } - - { offsetInCU: 0x6BF9, offset: 0x5C17D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x6E10, symBinAddr: 0x93A0, symSize: 0x10 } - - { offsetInCU: 0x6C11, offset: 0x5C195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x6E20, symBinAddr: 0x93B0, symSize: 0x10 } - - { offsetInCU: 0x6C29, offset: 0x5C1AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x6E30, symBinAddr: 0x93C0, symSize: 0x10 } - - { offsetInCU: 0x6C41, offset: 0x5C1C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x6E40, symBinAddr: 0x93D0, symSize: 0x10 } - - { offsetInCU: 0x6C59, offset: 0x5C1DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x6E50, symBinAddr: 0x93E0, symSize: 0x10 } - - { offsetInCU: 0x6C71, offset: 0x5C1F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6E60, symBinAddr: 0x93F0, symSize: 0x10 } - - { offsetInCU: 0x6C89, offset: 0x5C20D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x6E70, symBinAddr: 0x9400, symSize: 0x10 } - - { offsetInCU: 0x6CA1, offset: 0x5C225, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x6E80, symBinAddr: 0x9410, symSize: 0x10 } - - { offsetInCU: 0x6CB9, offset: 0x5C23D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x6E90, symBinAddr: 0x9420, symSize: 0x10 } - - { offsetInCU: 0x6CD1, offset: 0x5C255, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x6EA0, symBinAddr: 0x9430, symSize: 0x10 } - - { offsetInCU: 0x6CE9, offset: 0x5C26D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6EB0, symBinAddr: 0x9440, symSize: 0x10 } - - { offsetInCU: 0x6D01, offset: 0x5C285, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6EC0, symBinAddr: 0x9450, symSize: 0x10 } - - { offsetInCU: 0x6D19, offset: 0x5C29D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x6ED0, symBinAddr: 0x9460, symSize: 0x10 } - - { offsetInCU: 0x6D31, offset: 0x5C2B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x6EE0, symBinAddr: 0x9470, symSize: 0x10 } - - { offsetInCU: 0x6D49, offset: 0x5C2CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x6EF0, symBinAddr: 0x9480, symSize: 0x10 } - - { offsetInCU: 0x6D61, offset: 0x5C2E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x6F00, symBinAddr: 0x9490, symSize: 0x20 } - - { offsetInCU: 0x6D79, offset: 0x5C2FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6F20, symBinAddr: 0x94B0, symSize: 0x10 } - - { offsetInCU: 0x6D91, offset: 0x5C315, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6F30, symBinAddr: 0x94C0, symSize: 0x10 } - - { offsetInCU: 0x6DA9, offset: 0x5C32D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6F40, symBinAddr: 0x94D0, symSize: 0x10 } - - { offsetInCU: 0x6DC1, offset: 0x5C345, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x6F50, symBinAddr: 0x94E0, symSize: 0x10 } - - { offsetInCU: 0x6DD9, offset: 0x5C35D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x6F60, symBinAddr: 0x94F0, symSize: 0x10 } - - { offsetInCU: 0x6DF1, offset: 0x5C375, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x6F70, symBinAddr: 0x9500, symSize: 0x10 } - - { offsetInCU: 0x6E09, offset: 0x5C38D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x6F80, symBinAddr: 0x9510, symSize: 0x20 } - - { offsetInCU: 0x6E21, offset: 0x5C3A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6FA0, symBinAddr: 0x9530, symSize: 0x10 } - - { offsetInCU: 0x6E39, offset: 0x5C3BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6FB0, symBinAddr: 0x9540, symSize: 0x10 } - - { offsetInCU: 0x6E51, offset: 0x5C3D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6FC0, symBinAddr: 0x9550, symSize: 0x10 } - - { offsetInCU: 0x6E69, offset: 0x5C3ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x6FD0, symBinAddr: 0x9560, symSize: 0x10 } - - { offsetInCU: 0x6E81, offset: 0x5C405, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x6FE0, symBinAddr: 0x9570, symSize: 0x10 } - - { offsetInCU: 0x6E99, offset: 0x5C41D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6FF0, symBinAddr: 0x9580, symSize: 0x10 } - - { offsetInCU: 0x6EB1, offset: 0x5C435, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x7000, symBinAddr: 0x9590, symSize: 0x10 } - - { offsetInCU: 0x6EC9, offset: 0x5C44D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x7010, symBinAddr: 0x95A0, symSize: 0x10 } - - { offsetInCU: 0x6EE1, offset: 0x5C465, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x7020, symBinAddr: 0x95B0, symSize: 0x10 } - - { offsetInCU: 0x6EF9, offset: 0x5C47D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x7030, symBinAddr: 0x95C0, symSize: 0x10 } - - { offsetInCU: 0x6F11, offset: 0x5C495, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x7040, symBinAddr: 0x95D0, symSize: 0x10 } - - { offsetInCU: 0x6F29, offset: 0x5C4AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x7050, symBinAddr: 0x95E0, symSize: 0x10 } - - { offsetInCU: 0x6FBA, offset: 0x5C53E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x70A0, symBinAddr: 0x9610, symSize: 0xE0 } - - { offsetInCU: 0x7149, offset: 0x5C6CD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x7180, symBinAddr: 0x96F0, symSize: 0xB0 } - - { offsetInCU: 0x728C, offset: 0x5C810, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x7320, symBinAddr: 0x9890, symSize: 0xC0 } - - { offsetInCU: 0x73D7, offset: 0x5C95B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x7400, symBinAddr: 0x9970, symSize: 0xD0 } - - { offsetInCU: 0x74EB, offset: 0x5CA6F, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x74D0, symBinAddr: 0x9A40, symSize: 0xA0 } - - { offsetInCU: 0x7572, offset: 0x5CAF6, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x7780, symBinAddr: 0x9CF0, symSize: 0x170 } - - { offsetInCU: 0x7600, offset: 0x5CB84, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x8FE0, symBinAddr: 0xB550, symSize: 0x40 } - - { offsetInCU: 0x7614, offset: 0x5CB98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x9050, symBinAddr: 0xB5C0, symSize: 0x10 } - - { offsetInCU: 0x7628, offset: 0x5CBAC, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x9060, symBinAddr: 0xB5D0, symSize: 0x30 } - - { offsetInCU: 0x763C, offset: 0x5CBC0, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x9090, symBinAddr: 0xB600, symSize: 0x30 } - - { offsetInCU: 0x7650, offset: 0x5CBD4, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x90C0, symBinAddr: 0xB630, symSize: 0x30 } - - { offsetInCU: 0x76BC, offset: 0x5CC40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x92D0, symBinAddr: 0xB840, symSize: 0x20 } - - { offsetInCU: 0x76D0, offset: 0x5CC54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x9320, symBinAddr: 0xB890, symSize: 0x10 } - - { offsetInCU: 0x76E4, offset: 0x5CC68, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x9330, symBinAddr: 0xB8A0, symSize: 0x20 } - - { offsetInCU: 0x76F8, offset: 0x5CC7C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x9350, symBinAddr: 0xB8C0, symSize: 0x10 } - - { offsetInCU: 0x770C, offset: 0x5CC90, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x9390, symBinAddr: 0xB900, symSize: 0x50 } - - { offsetInCU: 0x7720, offset: 0x5CCA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x93E0, symBinAddr: 0xB950, symSize: 0x10 } - - { offsetInCU: 0x77D9, offset: 0x5CD5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x9760, symBinAddr: 0xBCD0, symSize: 0x20 } - - { offsetInCU: 0x77ED, offset: 0x5CD71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x9780, symBinAddr: 0xBCF0, symSize: 0x80 } - - { offsetInCU: 0x7801, offset: 0x5CD85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x9800, symBinAddr: 0xBD70, symSize: 0x70 } - - { offsetInCU: 0x7815, offset: 0x5CD99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x98A0, symBinAddr: 0xBE10, symSize: 0x20 } - - { offsetInCU: 0x7829, offset: 0x5CDAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOs', symObjAddr: 0x98C0, symBinAddr: 0xBE30, symSize: 0x40 } - - { offsetInCU: 0x783D, offset: 0x5CDC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x9900, symBinAddr: 0xBE70, symSize: 0x10 } - - { offsetInCU: 0x786F, offset: 0x5CDF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x9910, symBinAddr: 0xBE80, symSize: 0x3D0 } - - { offsetInCU: 0x7A5A, offset: 0x5CFDE, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfC9CocoaMQTT5Frame_p_Tg5Tf4nnd_n', symObjAddr: 0x9D80, symBinAddr: 0xC2F0, symSize: 0x90 } - - { offsetInCU: 0x7AF4, offset: 0x5D078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x9E10, symBinAddr: 0xC380, symSize: 0x650 } - - { offsetInCU: 0x8025, offset: 0x5D5A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0xA460, symBinAddr: 0xC9D0, symSize: 0x4C0 } - - { offsetInCU: 0x83EF, offset: 0x5D973, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0xA920, symBinAddr: 0xCE90, symSize: 0x1B0 } - - { offsetInCU: 0x8526, offset: 0x5DAAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0xAAD0, symBinAddr: 0xD040, symSize: 0x130 } - - { offsetInCU: 0x8657, offset: 0x5DBDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0xAC00, symBinAddr: 0xD170, symSize: 0x120 } - - { offsetInCU: 0x878E, offset: 0x5DD12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0xAD20, symBinAddr: 0xD290, symSize: 0x1D0 } - - { offsetInCU: 0x898B, offset: 0x5DF0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xAEF0, symBinAddr: 0xD460, symSize: 0x750 } - - { offsetInCU: 0x900B, offset: 0x5E58F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xB6B0, symBinAddr: 0xDC20, symSize: 0x400 } - - { offsetInCU: 0x9385, offset: 0x5E909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xBAB0, symBinAddr: 0xE020, symSize: 0x120 } - - { offsetInCU: 0x943C, offset: 0x5E9C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xBBD0, symBinAddr: 0xE140, symSize: 0x10 } - - { offsetInCU: 0x9450, offset: 0x5E9D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xBBE0, symBinAddr: 0xE150, symSize: 0x30 } - - { offsetInCU: 0x9464, offset: 0x5E9E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xBC10, symBinAddr: 0xE180, symSize: 0x10 } - - { offsetInCU: 0x9478, offset: 0x5E9FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xBD20, symBinAddr: 0xE290, symSize: 0x20 } - - { offsetInCU: 0x948C, offset: 0x5EA10, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xBD50, symBinAddr: 0xE2C0, symSize: 0x40 } - - { offsetInCU: 0x94A0, offset: 0x5EA24, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xBD90, symBinAddr: 0xE300, symSize: 0x20 } - - { offsetInCU: 0x94B4, offset: 0x5EA38, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xBDB0, symBinAddr: 0xE320, symSize: 0x20 } - - { offsetInCU: 0x94C8, offset: 0x5EA4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xBDF0, symBinAddr: 0xE360, symSize: 0x10 } - - { offsetInCU: 0x94DC, offset: 0x5EA60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xBE20, symBinAddr: 0xE390, symSize: 0x10 } - - { offsetInCU: 0x94F0, offset: 0x5EA74, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xBE50, symBinAddr: 0xE3C0, symSize: 0x20 } - - { offsetInCU: 0x9504, offset: 0x5EA88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xBE70, symBinAddr: 0xE3E0, symSize: 0x10 } - - { offsetInCU: 0x9518, offset: 0x5EA9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xBFE0, symBinAddr: 0xE550, symSize: 0xE0 } - - { offsetInCU: 0x952C, offset: 0x5EAB0, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xC0C0, symBinAddr: 0xE630, symSize: 0x20 } - - { offsetInCU: 0x9540, offset: 0x5EAC4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xC0E0, symBinAddr: 0xE650, symSize: 0x60 } - - { offsetInCU: 0x9554, offset: 0x5EAD8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xC140, symBinAddr: 0xE6B0, symSize: 0x20 } - - { offsetInCU: 0x9568, offset: 0x5EAEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xC280, symBinAddr: 0xE7F0, symSize: 0x40 } - - { offsetInCU: 0x957C, offset: 0x5EB00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xC300, symBinAddr: 0xE870, symSize: 0x40 } - - { offsetInCU: 0x9590, offset: 0x5EB14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xC370, symBinAddr: 0xE8E0, symSize: 0x20 } - - { offsetInCU: 0x9609, offset: 0x5EB8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1A0, symBinAddr: 0x2730, symSize: 0x10 } - - { offsetInCU: 0x96A6, offset: 0x5EC2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x1B0, symBinAddr: 0x2740, symSize: 0x40 } - - { offsetInCU: 0x9735, offset: 0x5ECB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1F0, symBinAddr: 0x2780, symSize: 0x20 } - - { offsetInCU: 0x9788, offset: 0x5ED0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x210, symBinAddr: 0x27A0, symSize: 0x40 } - - { offsetInCU: 0x9BBD, offset: 0x5F141, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTg5Tf4gd_n', symObjAddr: 0x90F0, symBinAddr: 0xB660, symSize: 0xE0 } - - { offsetInCU: 0x9CF6, offset: 0x5F27A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x93F0, symBinAddr: 0xB960, symSize: 0x100 } - - { offsetInCU: 0x9E19, offset: 0x5F39D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x9610, symBinAddr: 0xBB80, symSize: 0xF0 } - - { offsetInCU: 0xE9, offset: 0x5FC6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x180, symBinAddr: 0xEF80, symSize: 0x50 } - - { offsetInCU: 0x118, offset: 0x5FC9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x1D0, symBinAddr: 0xEFD0, symSize: 0x20 } - - { offsetInCU: 0x135, offset: 0x5FCB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x1F0, symBinAddr: 0xEFF0, symSize: 0x10 } - - { offsetInCU: 0x178, offset: 0x5FCFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2B0, symBinAddr: 0xF0B0, symSize: 0x20 } - - { offsetInCU: 0x1A9, offset: 0x5FD2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2D0, symBinAddr: 0xF0D0, symSize: 0x10 } - - { offsetInCU: 0x1C5, offset: 0x5FD48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2E0, symBinAddr: 0xF0E0, symSize: 0x10 } - - { offsetInCU: 0x2B6, offset: 0x5FE39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x2F0, symBinAddr: 0xF0F0, symSize: 0x170 } - - { offsetInCU: 0x40D, offset: 0x5FF90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x460, symBinAddr: 0xF260, symSize: 0x40 } - - { offsetInCU: 0x42C, offset: 0x5FFAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x4A0, symBinAddr: 0xF2A0, symSize: 0x50 } - - { offsetInCU: 0x46B, offset: 0x5FFEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x4F0, symBinAddr: 0xF2F0, symSize: 0x70 } - - { offsetInCU: 0x498, offset: 0x6001B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x560, symBinAddr: 0xF360, symSize: 0x60 } - - { offsetInCU: 0x4C3, offset: 0x60046, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x600, symBinAddr: 0xF400, symSize: 0x40 } - - { offsetInCU: 0x4F2, offset: 0x60075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x680, symBinAddr: 0xF480, symSize: 0x40 } - - { offsetInCU: 0x521, offset: 0x600A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x790, symBinAddr: 0xF590, symSize: 0x40 } - - { offsetInCU: 0x550, offset: 0x600D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x810, symBinAddr: 0xF610, symSize: 0x40 } - - { offsetInCU: 0x57F, offset: 0x60102, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x920, symBinAddr: 0xF720, symSize: 0x40 } - - { offsetInCU: 0x5AE, offset: 0x60131, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0x9A0, symBinAddr: 0xF7A0, symSize: 0x40 } - - { offsetInCU: 0x5DD, offset: 0x60160, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0xA20, symBinAddr: 0xF820, symSize: 0x40 } - - { offsetInCU: 0x60C, offset: 0x6018F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0xA60, symBinAddr: 0xF860, symSize: 0x10 } - - { offsetInCU: 0x657, offset: 0x601DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0xA70, symBinAddr: 0xF870, symSize: 0xB0 } - - { offsetInCU: 0x6C9, offset: 0x6024C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xB40, symBinAddr: 0xF940, symSize: 0xF0 } - - { offsetInCU: 0x73E, offset: 0x602C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xC50, symBinAddr: 0xFA50, symSize: 0x40 } - - { offsetInCU: 0x75B, offset: 0x602DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xC90, symBinAddr: 0xFA90, symSize: 0x50 } - - { offsetInCU: 0x798, offset: 0x6031B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xCE0, symBinAddr: 0xFAE0, symSize: 0x40 } - - { offsetInCU: 0x823, offset: 0x603A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xD20, symBinAddr: 0xFB20, symSize: 0x100 } - - { offsetInCU: 0x8F9, offset: 0x6047C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0x1060, symBinAddr: 0xFE60, symSize: 0x30 } - - { offsetInCU: 0x934, offset: 0x604B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1090, symBinAddr: 0xFE90, symSize: 0x80 } - - { offsetInCU: 0x97C, offset: 0x604FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1110, symBinAddr: 0xFF10, symSize: 0x40 } - - { offsetInCU: 0x9AB, offset: 0x6052E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x1150, symBinAddr: 0xFF50, symSize: 0x80 } - - { offsetInCU: 0xA08, offset: 0x6058B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x11D0, symBinAddr: 0xFFD0, symSize: 0x30 } - - { offsetInCU: 0xA58, offset: 0x605DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x1200, symBinAddr: 0x10000, symSize: 0x30 } - - { offsetInCU: 0xAD7, offset: 0x6065A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x1230, symBinAddr: 0x10030, symSize: 0x40 } - - { offsetInCU: 0xB7E, offset: 0x60701, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1270, symBinAddr: 0x10070, symSize: 0x30 } - - { offsetInCU: 0xC38, offset: 0x607BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x12A0, symBinAddr: 0x100A0, symSize: 0x20 } - - { offsetInCU: 0xCA6, offset: 0x60829, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x12E0, symBinAddr: 0x100E0, symSize: 0x40 } - - { offsetInCU: 0xD23, offset: 0x608A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x1340, symBinAddr: 0x10140, symSize: 0x20 } - - { offsetInCU: 0xD91, offset: 0x60914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x13A0, symBinAddr: 0x101A0, symSize: 0x40 } - - { offsetInCU: 0xE0E, offset: 0x60991, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x1460, symBinAddr: 0x10260, symSize: 0x40 } - - { offsetInCU: 0xE3D, offset: 0x609C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x1550, symBinAddr: 0x10350, symSize: 0x40 } - - { offsetInCU: 0xE6C, offset: 0x609EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x15D0, symBinAddr: 0x103D0, symSize: 0x40 } - - { offsetInCU: 0xE9B, offset: 0x60A1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x16C0, symBinAddr: 0x104C0, symSize: 0x40 } - - { offsetInCU: 0xECA, offset: 0x60A4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x1740, symBinAddr: 0x10540, symSize: 0x40 } - - { offsetInCU: 0xEF9, offset: 0x60A7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x1840, symBinAddr: 0x10640, symSize: 0x40 } - - { offsetInCU: 0xF28, offset: 0x60AAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x1880, symBinAddr: 0x10680, symSize: 0x60 } - - { offsetInCU: 0xF65, offset: 0x60AE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x18E0, symBinAddr: 0x106E0, symSize: 0x60 } - - { offsetInCU: 0xFD3, offset: 0x60B56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1940, symBinAddr: 0x10740, symSize: 0x70 } - - { offsetInCU: 0x1057, offset: 0x60BDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x19B0, symBinAddr: 0x107B0, symSize: 0x30 } - - { offsetInCU: 0x10BF, offset: 0x60C42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x19E0, symBinAddr: 0x107E0, symSize: 0x70 } - - { offsetInCU: 0x111E, offset: 0x60CA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x1A50, symBinAddr: 0x10850, symSize: 0x70 } - - { offsetInCU: 0x117D, offset: 0x60D00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1AC0, symBinAddr: 0x108C0, symSize: 0xA0 } - - { offsetInCU: 0x1213, offset: 0x60D96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1B60, symBinAddr: 0x10960, symSize: 0x80 } - - { offsetInCU: 0x12A9, offset: 0x60E2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1BE0, symBinAddr: 0x109E0, symSize: 0xB0 } - - { offsetInCU: 0x12FF, offset: 0x60E82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1C90, symBinAddr: 0x10A90, symSize: 0xC0 } - - { offsetInCU: 0x1388, offset: 0x60F0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1D50, symBinAddr: 0x10B50, symSize: 0x100 } - - { offsetInCU: 0x142E, offset: 0x60FB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1E50, symBinAddr: 0x10C50, symSize: 0x140 } - - { offsetInCU: 0x14B7, offset: 0x6103A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x1F90, symBinAddr: 0x10D90, symSize: 0xB0 } - - { offsetInCU: 0x152D, offset: 0x610B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x2110, symBinAddr: 0x10F10, symSize: 0xF0 } - - { offsetInCU: 0x15A6, offset: 0x61129, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2310, symBinAddr: 0x11110, symSize: 0x40 } - - { offsetInCU: 0x15C3, offset: 0x61146, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2350, symBinAddr: 0x11150, symSize: 0x50 } - - { offsetInCU: 0x1603, offset: 0x61186, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x23A0, symBinAddr: 0x111A0, symSize: 0x40 } - - { offsetInCU: 0x1634, offset: 0x611B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x23E0, symBinAddr: 0x111E0, symSize: 0x10 } - - { offsetInCU: 0x164C, offset: 0x611CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x23F0, symBinAddr: 0x111F0, symSize: 0x10 } - - { offsetInCU: 0x1695, offset: 0x61218, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2440, symBinAddr: 0x11240, symSize: 0x40 } - - { offsetInCU: 0x16C6, offset: 0x61249, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x2480, symBinAddr: 0x11280, symSize: 0x10 } - - { offsetInCU: 0x16DE, offset: 0x61261, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x2490, symBinAddr: 0x11290, symSize: 0x10 } - - { offsetInCU: 0x1727, offset: 0x612AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x24E0, symBinAddr: 0x112E0, symSize: 0x40 } - - { offsetInCU: 0x1758, offset: 0x612DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2520, symBinAddr: 0x11320, symSize: 0x10 } - - { offsetInCU: 0x1770, offset: 0x612F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2530, symBinAddr: 0x11330, symSize: 0x10 } - - { offsetInCU: 0x17B9, offset: 0x6133C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2580, symBinAddr: 0x11380, symSize: 0x40 } - - { offsetInCU: 0x17EA, offset: 0x6136D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x25C0, symBinAddr: 0x113C0, symSize: 0x10 } - - { offsetInCU: 0x1802, offset: 0x61385, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2610, symBinAddr: 0x11410, symSize: 0x40 } - - { offsetInCU: 0x1833, offset: 0x613B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x2650, symBinAddr: 0x11450, symSize: 0x10 } - - { offsetInCU: 0x184B, offset: 0x613CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x2660, symBinAddr: 0x11460, symSize: 0x10 } - - { offsetInCU: 0x18A3, offset: 0x61426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x26B0, symBinAddr: 0x114B0, symSize: 0x40 } - - { offsetInCU: 0x18D4, offset: 0x61457, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x26F0, symBinAddr: 0x114F0, symSize: 0x10 } - - { offsetInCU: 0x18EC, offset: 0x6146F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2700, symBinAddr: 0x11500, symSize: 0x10 } - - { offsetInCU: 0x1944, offset: 0x614C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x2750, symBinAddr: 0x11550, symSize: 0x40 } - - { offsetInCU: 0x1975, offset: 0x614F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x2790, symBinAddr: 0x11590, symSize: 0x10 } - - { offsetInCU: 0x198D, offset: 0x61510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x27A0, symBinAddr: 0x115A0, symSize: 0x10 } - - { offsetInCU: 0x19D6, offset: 0x61559, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x27F0, symBinAddr: 0x115F0, symSize: 0x40 } - - { offsetInCU: 0x1A07, offset: 0x6158A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2830, symBinAddr: 0x11630, symSize: 0x10 } - - { offsetInCU: 0x1A1F, offset: 0x615A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2840, symBinAddr: 0x11640, symSize: 0x10 } - - { offsetInCU: 0x1A4A, offset: 0x615CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x2890, symBinAddr: 0x11690, symSize: 0x40 } - - { offsetInCU: 0x1A7B, offset: 0x615FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x28D0, symBinAddr: 0x116D0, symSize: 0x10 } - - { offsetInCU: 0x1A93, offset: 0x61616, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x28E0, symBinAddr: 0x116E0, symSize: 0x10 } - - { offsetInCU: 0x1ABE, offset: 0x61641, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2930, symBinAddr: 0x11730, symSize: 0x40 } - - { offsetInCU: 0x1AEF, offset: 0x61672, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2970, symBinAddr: 0x11770, symSize: 0x10 } - - { offsetInCU: 0x1B07, offset: 0x6168A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2980, symBinAddr: 0x11780, symSize: 0x10 } - - { offsetInCU: 0x1B41, offset: 0x616C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x29D0, symBinAddr: 0x117D0, symSize: 0x40 } - - { offsetInCU: 0x1B72, offset: 0x616F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x2A10, symBinAddr: 0x11810, symSize: 0x10 } - - { offsetInCU: 0x1B8A, offset: 0x6170D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x2A60, symBinAddr: 0x11860, symSize: 0x40 } - - { offsetInCU: 0x1BBB, offset: 0x6173E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2AA0, symBinAddr: 0x118A0, symSize: 0x10 } - - { offsetInCU: 0x1BD3, offset: 0x61756, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2AF0, symBinAddr: 0x118F0, symSize: 0x40 } - - { offsetInCU: 0x1C04, offset: 0x61787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2B30, symBinAddr: 0x11930, symSize: 0x10 } - - { offsetInCU: 0x1C1C, offset: 0x6179F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x2B40, symBinAddr: 0x11940, symSize: 0x10 } - - { offsetInCU: 0x1C67, offset: 0x617EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x2B90, symBinAddr: 0x11990, symSize: 0x40 } - - { offsetInCU: 0x1C98, offset: 0x6181B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2BD0, symBinAddr: 0x119D0, symSize: 0x10 } - - { offsetInCU: 0x1CB0, offset: 0x61833, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2C20, symBinAddr: 0x11A20, symSize: 0x40 } - - { offsetInCU: 0x1CE1, offset: 0x61864, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x2C60, symBinAddr: 0x11A60, symSize: 0x10 } - - { offsetInCU: 0x1CF9, offset: 0x6187C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x2C70, symBinAddr: 0x11A70, symSize: 0x10 } - - { offsetInCU: 0x1D33, offset: 0x618B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2D50, symBinAddr: 0x11B50, symSize: 0x40 } - - { offsetInCU: 0x1D64, offset: 0x618E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2D90, symBinAddr: 0x11B90, symSize: 0x60 } - - { offsetInCU: 0x1D83, offset: 0x61906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2DF0, symBinAddr: 0x11BF0, symSize: 0x9B0 } - - { offsetInCU: 0x206A, offset: 0x61BED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x37A0, symBinAddr: 0x125A0, symSize: 0x180 } - - { offsetInCU: 0x20F3, offset: 0x61C76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x3920, symBinAddr: 0x12720, symSize: 0x20 } - - { offsetInCU: 0x2210, offset: 0x61D93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3B80, symBinAddr: 0x12980, symSize: 0x670 } - - { offsetInCU: 0x23EB, offset: 0x61F6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x41F0, symBinAddr: 0x12FF0, symSize: 0x20 } - - { offsetInCU: 0x2471, offset: 0x61FF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x4210, symBinAddr: 0x13010, symSize: 0x690 } - - { offsetInCU: 0x2787, offset: 0x6230A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x48A0, symBinAddr: 0x136A0, symSize: 0xB0 } - - { offsetInCU: 0x283A, offset: 0x623BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x4950, symBinAddr: 0x13750, symSize: 0x10 } - - { offsetInCU: 0x2869, offset: 0x623EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x4960, symBinAddr: 0x13760, symSize: 0x10 } - - { offsetInCU: 0x28E0, offset: 0x62463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19internal_disconnectyyF', symObjAddr: 0x4970, symBinAddr: 0x13770, symSize: 0xD0 } - - { offsetInCU: 0x299F, offset: 0x62522, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x4A40, symBinAddr: 0x13840, symSize: 0x110 } - - { offsetInCU: 0x2A70, offset: 0x625F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x4B50, symBinAddr: 0x13950, symSize: 0xF0 } - - { offsetInCU: 0x2AEC, offset: 0x6266F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x4C40, symBinAddr: 0x13A40, symSize: 0xA0 } - - { offsetInCU: 0x2B87, offset: 0x6270A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4CE0, symBinAddr: 0x13AE0, symSize: 0xC0 } - - { offsetInCU: 0x2C90, offset: 0x62813, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4DA0, symBinAddr: 0x13BA0, symSize: 0x10 } - - { offsetInCU: 0x2CA4, offset: 0x62827, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x4DB0, symBinAddr: 0x13BB0, symSize: 0x60 } - - { offsetInCU: 0x2D11, offset: 0x62894, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x4E10, symBinAddr: 0x13C10, symSize: 0xC0 } - - { offsetInCU: 0x2EF7, offset: 0x62A7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4ED0, symBinAddr: 0x13CD0, symSize: 0x220 } - - { offsetInCU: 0x3172, offset: 0x62CF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x50F0, symBinAddr: 0x13EF0, symSize: 0xE0 } - - { offsetInCU: 0x32D4, offset: 0x62E57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x51D0, symBinAddr: 0x13FD0, symSize: 0xF0 } - - { offsetInCU: 0x34F5, offset: 0x63078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x52C0, symBinAddr: 0x140C0, symSize: 0x1F0 } - - { offsetInCU: 0x370E, offset: 0x63291, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x54B0, symBinAddr: 0x142B0, symSize: 0xC0 } - - { offsetInCU: 0x382A, offset: 0x633AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x5570, symBinAddr: 0x14370, symSize: 0xF0 } - - { offsetInCU: 0x38F3, offset: 0x63476, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x5660, symBinAddr: 0x14460, symSize: 0x20 } - - { offsetInCU: 0x3911, offset: 0x63494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x5680, symBinAddr: 0x14480, symSize: 0x30 } - - { offsetInCU: 0x3974, offset: 0x634F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x56B0, symBinAddr: 0x144B0, symSize: 0x30 } - - { offsetInCU: 0x39DB, offset: 0x6355E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x56E0, symBinAddr: 0x144E0, symSize: 0x40 } - - { offsetInCU: 0x3BC8, offset: 0x6374B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x7100, symBinAddr: 0x15E30, symSize: 0x250 } - - { offsetInCU: 0x3D68, offset: 0x638EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubAckV_Tg5', symObjAddr: 0x7350, symBinAddr: 0x16080, symSize: 0x240 } - - { offsetInCU: 0x3F08, offset: 0x63A8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRecV_Tg5', symObjAddr: 0x7590, symBinAddr: 0x162C0, symSize: 0x240 } - - { offsetInCU: 0x40A8, offset: 0x63C2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PubCompV_Tg5', symObjAddr: 0x77D0, symBinAddr: 0x16500, symSize: 0x240 } - - { offsetInCU: 0x4248, offset: 0x63DCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x7A10, symBinAddr: 0x16740, symSize: 0x240 } - - { offsetInCU: 0x43E8, offset: 0x63F6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x7C50, symBinAddr: 0x16980, symSize: 0x200 } - - { offsetInCU: 0x4588, offset: 0x6410B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x7E50, symBinAddr: 0x16B80, symSize: 0x240 } - - { offsetInCU: 0x4728, offset: 0x642AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x8090, symBinAddr: 0x16DC0, symSize: 0x2A0 } - - { offsetInCU: 0x48CA, offset: 0x6444D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x8330, symBinAddr: 0x17060, symSize: 0x290 } - - { offsetInCU: 0x4A6A, offset: 0x645ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x85C0, symBinAddr: 0x172F0, symSize: 0x260 } - - { offsetInCU: 0x4C0A, offset: 0x6478D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRelV_Tg5', symObjAddr: 0x8820, symBinAddr: 0x17550, symSize: 0x240 } - - { offsetInCU: 0x4EF7, offset: 0x64A7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xBE40, symBinAddr: 0x1AB20, symSize: 0x8C0 } - - { offsetInCU: 0x5425, offset: 0x64FA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xE20, symBinAddr: 0xFC20, symSize: 0x240 } - - { offsetInCU: 0x54A9, offset: 0x6502C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x5730, symBinAddr: 0x14530, symSize: 0x50 } - - { offsetInCU: 0x55D1, offset: 0x65154, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x8A60, symBinAddr: 0x17790, symSize: 0x3A0 } - - { offsetInCU: 0x5680, offset: 0x65203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x8E00, symBinAddr: 0x17B30, symSize: 0x3B0 } - - { offsetInCU: 0x572F, offset: 0x652B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x91B0, symBinAddr: 0x17EE0, symSize: 0x3B0 } - - { offsetInCU: 0x59AF, offset: 0x65532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x67B0, symBinAddr: 0x154E0, symSize: 0x1B0 } - - { offsetInCU: 0x5A15, offset: 0x65598, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6960, symBinAddr: 0x15690, symSize: 0xB0 } - - { offsetInCU: 0x5A84, offset: 0x65607, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x6A10, symBinAddr: 0x15740, symSize: 0x100 } - - { offsetInCU: 0x5CA6, offset: 0x65829, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x3940, symBinAddr: 0x12740, symSize: 0x240 } - - { offsetInCU: 0x6142, offset: 0x65CC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x5720, symBinAddr: 0x14520, symSize: 0x10 } - - { offsetInCU: 0x6175, offset: 0x65CF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5780, symBinAddr: 0x14580, symSize: 0x10 } - - { offsetInCU: 0x61A3, offset: 0x65D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5790, symBinAddr: 0x14590, symSize: 0x1E0 } - - { offsetInCU: 0x62A2, offset: 0x65E25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5970, symBinAddr: 0x14770, symSize: 0x1A0 } - - { offsetInCU: 0x6388, offset: 0x65F0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5B10, symBinAddr: 0x14910, symSize: 0xB0 } - - { offsetInCU: 0x640E, offset: 0x65F91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x5BC0, symBinAddr: 0x149C0, symSize: 0x10 } - - { offsetInCU: 0x64F5, offset: 0x66078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5BD0, symBinAddr: 0x149D0, symSize: 0x260 } - - { offsetInCU: 0x6884, offset: 0x66407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x5E30, symBinAddr: 0x14C30, symSize: 0x380 } - - { offsetInCU: 0x6AEB, offset: 0x6666E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x61B0, symBinAddr: 0x14FB0, symSize: 0xA0 } - - { offsetInCU: 0x6BD1, offset: 0x66754, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x6250, symBinAddr: 0x15050, symSize: 0x10 } - - { offsetInCU: 0x6C16, offset: 0x66799, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x6260, symBinAddr: 0x15060, symSize: 0x10 } - - { offsetInCU: 0x6C32, offset: 0x667B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x6270, symBinAddr: 0x15070, symSize: 0x10 } - - { offsetInCU: 0x6C4E, offset: 0x667D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x6280, symBinAddr: 0x15080, symSize: 0x10 } - - { offsetInCU: 0x6C6A, offset: 0x667ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x6290, symBinAddr: 0x15090, symSize: 0x10 } - - { offsetInCU: 0x6C86, offset: 0x66809, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x62A0, symBinAddr: 0x150A0, symSize: 0x10 } - - { offsetInCU: 0x6CA2, offset: 0x66825, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x62B0, symBinAddr: 0x150B0, symSize: 0x220 } - - { offsetInCU: 0x6D2A, offset: 0x668AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x64D0, symBinAddr: 0x152D0, symSize: 0x130 } - - { offsetInCU: 0x6E43, offset: 0x669C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x6600, symBinAddr: 0x15400, symSize: 0x20 } - - { offsetInCU: 0x6E85, offset: 0x66A08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x6620, symBinAddr: 0x15420, symSize: 0x10 } - - { offsetInCU: 0x6EC7, offset: 0x66A4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x6630, symBinAddr: 0x15430, symSize: 0x10 } - - { offsetInCU: 0x6F09, offset: 0x66A8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x6640, symBinAddr: 0x15440, symSize: 0x10 } - - { offsetInCU: 0x6F4B, offset: 0x66ACE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6650, symBinAddr: 0x15450, symSize: 0x10 } - - { offsetInCU: 0x6F8D, offset: 0x66B10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x6660, symBinAddr: 0x15460, symSize: 0x10 } - - { offsetInCU: 0x6FCF, offset: 0x66B52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6670, symBinAddr: 0x15470, symSize: 0x10 } - - { offsetInCU: 0x7011, offset: 0x66B94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x6680, symBinAddr: 0x15480, symSize: 0x10 } - - { offsetInCU: 0x7053, offset: 0x66BD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6690, symBinAddr: 0x15490, symSize: 0x10 } - - { offsetInCU: 0x7086, offset: 0x66C09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x6710, symBinAddr: 0x154D0, symSize: 0x10 } - - { offsetInCU: 0x70DC, offset: 0x66C5F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x6B50, symBinAddr: 0x15880, symSize: 0x210 } - - { offsetInCU: 0x7165, offset: 0x66CE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x9560, symBinAddr: 0x18290, symSize: 0xB0 } - - { offsetInCU: 0x71A7, offset: 0x66D2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x9610, symBinAddr: 0x18340, symSize: 0x90 } - - { offsetInCU: 0x71EF, offset: 0x66D72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x96A0, symBinAddr: 0x183D0, symSize: 0x20 } - - { offsetInCU: 0x7203, offset: 0x66D86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x96F0, symBinAddr: 0x18420, symSize: 0x10 } - - { offsetInCU: 0x7217, offset: 0x66D9A, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x9700, symBinAddr: 0x18430, symSize: 0x20 } - - { offsetInCU: 0x722B, offset: 0x66DAE, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x9720, symBinAddr: 0x18450, symSize: 0x10 } - - { offsetInCU: 0x723F, offset: 0x66DC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x97B0, symBinAddr: 0x18490, symSize: 0x10 } - - { offsetInCU: 0x7274, offset: 0x66DF7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x97C0, symBinAddr: 0x184A0, symSize: 0xC0 } - - { offsetInCU: 0x72EA, offset: 0x66E6D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x9880, symBinAddr: 0x18560, symSize: 0x80 } - - { offsetInCU: 0x7317, offset: 0x66E9A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x9900, symBinAddr: 0x185E0, symSize: 0x80 } - - { offsetInCU: 0x738D, offset: 0x66F10, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x9980, symBinAddr: 0x18660, symSize: 0x70 } - - { offsetInCU: 0x741E, offset: 0x66FA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x99F0, symBinAddr: 0x186D0, symSize: 0x690 } - - { offsetInCU: 0x79C5, offset: 0x67548, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0xA080, symBinAddr: 0x18D60, symSize: 0x420 } - - { offsetInCU: 0x7D7B, offset: 0x678FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0xA4A0, symBinAddr: 0x19180, symSize: 0x200 } - - { offsetInCU: 0x7EB5, offset: 0x67A38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0xA6A0, symBinAddr: 0x19380, symSize: 0x200 } - - { offsetInCU: 0x803E, offset: 0x67BC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0xA8A0, symBinAddr: 0x19580, symSize: 0x120 } - - { offsetInCU: 0x817C, offset: 0x67CFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0xA9C0, symBinAddr: 0x196A0, symSize: 0x210 } - - { offsetInCU: 0x83D7, offset: 0x67F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xABD0, symBinAddr: 0x198B0, symSize: 0x920 } - - { offsetInCU: 0x8A23, offset: 0x685A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xB4F0, symBinAddr: 0x1A1D0, symSize: 0x830 } - - { offsetInCU: 0x8E1F, offset: 0x689A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xBD20, symBinAddr: 0x1AA00, symSize: 0x120 } - - { offsetInCU: 0x8F5E, offset: 0x68AE1, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tg5Tf4d_n', symObjAddr: 0xC700, symBinAddr: 0x1B3E0, symSize: 0x50 } - - { offsetInCU: 0x8F8B, offset: 0x68B0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xC790, symBinAddr: 0x1B430, symSize: 0x10 } - - { offsetInCU: 0x8F9F, offset: 0x68B22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xC7A0, symBinAddr: 0x1B440, symSize: 0x10 } - - { offsetInCU: 0x8FB3, offset: 0x68B36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xC7B0, symBinAddr: 0x1B450, symSize: 0x30 } - - { offsetInCU: 0x8FC7, offset: 0x68B4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xC7E0, symBinAddr: 0x1B480, symSize: 0x10 } - - { offsetInCU: 0x8FDB, offset: 0x68B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xC7F0, symBinAddr: 0x1B490, symSize: 0x20 } - - { offsetInCU: 0x8FEF, offset: 0x68B72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xC8E0, symBinAddr: 0x1B580, symSize: 0x20 } - - { offsetInCU: 0x9003, offset: 0x68B86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0xC970, symBinAddr: 0x1B610, symSize: 0x20 } - - { offsetInCU: 0x9017, offset: 0x68B9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xC990, symBinAddr: 0x1B630, symSize: 0x20 } - - { offsetInCU: 0x902B, offset: 0x68BAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xCA60, symBinAddr: 0x1B6C0, symSize: 0x10 } - - { offsetInCU: 0x903F, offset: 0x68BC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xCA70, symBinAddr: 0x1B6D0, symSize: 0x10 } - - { offsetInCU: 0x9053, offset: 0x68BD6, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xCAA0, symBinAddr: 0x1B700, symSize: 0x20 } - - { offsetInCU: 0x9067, offset: 0x68BEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xCAC0, symBinAddr: 0x1B720, symSize: 0x10 } - - { offsetInCU: 0x9099, offset: 0x68C1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xCAD0, symBinAddr: 0x1B730, symSize: 0x2E0 } - - { offsetInCU: 0x9238, offset: 0x68DBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xD2B0, symBinAddr: 0x1BCA0, symSize: 0x20 } - - { offsetInCU: 0x924C, offset: 0x68DCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xD390, symBinAddr: 0x1BD40, symSize: 0x20 } - - { offsetInCU: 0x9260, offset: 0x68DE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xD3E0, symBinAddr: 0x1BD90, symSize: 0x20 } - - { offsetInCU: 0x9274, offset: 0x68DF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xD4E0, symBinAddr: 0x1BE50, symSize: 0x20 } - - { offsetInCU: 0x9317, offset: 0x68E9A, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xEE00, symSize: 0xE0 } - - { offsetInCU: 0x93D8, offset: 0x68F5B, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE0, symBinAddr: 0xEEE0, symSize: 0xA0 } - - { offsetInCU: 0x9487, offset: 0x6900A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x200, symBinAddr: 0xF000, symSize: 0x10 } - - { offsetInCU: 0x9518, offset: 0x6909B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x210, symBinAddr: 0xF010, symSize: 0x40 } - - { offsetInCU: 0x95A7, offset: 0x6912A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x250, symBinAddr: 0xF050, symSize: 0x20 } - - { offsetInCU: 0x95FA, offset: 0x6917D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x270, symBinAddr: 0xF070, symSize: 0x40 } - - { offsetInCU: 0x5A, offset: 0x69C3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x1C320, symSize: 0x70 } - - { offsetInCU: 0x8E, offset: 0x69C73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x70, symBinAddr: 0x1C390, symSize: 0x50 } - - { offsetInCU: 0xAC, offset: 0x69C91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0xC0, symBinAddr: 0x1C3E0, symSize: 0x30 } - - { offsetInCU: 0xC9, offset: 0x69CAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0xF0, symBinAddr: 0x1C410, symSize: 0x40 } - - { offsetInCU: 0x106, offset: 0x69CEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x130, symBinAddr: 0x1C450, symSize: 0x40 } - - { offsetInCU: 0x135, offset: 0x69D1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x170, symBinAddr: 0x1C490, symSize: 0x50 } - - { offsetInCU: 0x152, offset: 0x69D37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x1C0, symBinAddr: 0x1C4E0, symSize: 0x50 } - - { offsetInCU: 0x18F, offset: 0x69D74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x210, symBinAddr: 0x1C530, symSize: 0x40 } - - { offsetInCU: 0x1BE, offset: 0x69DA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x250, symBinAddr: 0x1C570, symSize: 0x40 } - - { offsetInCU: 0x1DB, offset: 0x69DC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x290, symBinAddr: 0x1C5B0, symSize: 0x50 } - - { offsetInCU: 0x218, offset: 0x69DFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x2E0, symBinAddr: 0x1C600, symSize: 0x40 } - - { offsetInCU: 0x247, offset: 0x69E2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x360, symBinAddr: 0x1C680, symSize: 0x40 } - - { offsetInCU: 0x276, offset: 0x69E5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x3E0, symBinAddr: 0x1C700, symSize: 0x40 } - - { offsetInCU: 0x2A5, offset: 0x69E8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x420, symBinAddr: 0x1C740, symSize: 0x10 } - - { offsetInCU: 0x2D0, offset: 0x69EB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x4E0, symBinAddr: 0x1C800, symSize: 0x40 } - - { offsetInCU: 0x2FF, offset: 0x69EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x1C880, symSize: 0x40 } - - { offsetInCU: 0x32E, offset: 0x69F13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x670, symBinAddr: 0x1C990, symSize: 0x40 } - - { offsetInCU: 0x35D, offset: 0x69F42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x6F0, symBinAddr: 0x1CA10, symSize: 0x40 } - - { offsetInCU: 0x38C, offset: 0x69F71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x800, symBinAddr: 0x1CB20, symSize: 0x40 } - - { offsetInCU: 0x3BB, offset: 0x69FA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x880, symBinAddr: 0x1CBA0, symSize: 0x40 } - - { offsetInCU: 0x3EA, offset: 0x69FCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0x980, symBinAddr: 0x1CCA0, symSize: 0x40 } - - { offsetInCU: 0x437, offset: 0x6A01C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0x9C0, symBinAddr: 0x1CCE0, symSize: 0xF0 } - - { offsetInCU: 0x613, offset: 0x6A1F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xAB0, symBinAddr: 0x1CDD0, symSize: 0x790 } - - { offsetInCU: 0x109F, offset: 0x6AC84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1240, symBinAddr: 0x1D560, symSize: 0x40 } - - { offsetInCU: 0x10B3, offset: 0x6AC98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1280, symBinAddr: 0x1D5A0, symSize: 0x1A0 } - - { offsetInCU: 0x1120, offset: 0x6AD05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x1420, symBinAddr: 0x1D740, symSize: 0x60 } - - { offsetInCU: 0x1145, offset: 0x6AD2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x1480, symBinAddr: 0x1D7A0, symSize: 0x4D0 } - - { offsetInCU: 0x11E6, offset: 0x6ADCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x1950, symBinAddr: 0x1DC70, symSize: 0x20 } - - { offsetInCU: 0x1204, offset: 0x6ADE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x1970, symBinAddr: 0x1DC90, symSize: 0x30 } - - { offsetInCU: 0x1267, offset: 0x6AE4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x19A0, symBinAddr: 0x1DCC0, symSize: 0x30 } - - { offsetInCU: 0x12CE, offset: 0x6AEB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x19D0, symBinAddr: 0x1DCF0, symSize: 0x30 } - - { offsetInCU: 0x1337, offset: 0x6AF1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfcTf4ggnnn_n', symObjAddr: 0x25D0, symBinAddr: 0x1E8F0, symSize: 0x1C0 } - - { offsetInCU: 0x1574, offset: 0x6B159, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1A00, symBinAddr: 0x1DD20, symSize: 0x80 } - - { offsetInCU: 0x15A3, offset: 0x6B188, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x1A80, symBinAddr: 0x1DDA0, symSize: 0x60 } - - { offsetInCU: 0x163B, offset: 0x6B220, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1AE0, symBinAddr: 0x1DE00, symSize: 0x200 } - - { offsetInCU: 0x189F, offset: 0x6B484, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1CE0, symBinAddr: 0x1E000, symSize: 0xC0 } - - { offsetInCU: 0x1A9C, offset: 0x6B681, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1DA0, symBinAddr: 0x1E0C0, symSize: 0x140 } - - { offsetInCU: 0x1C4D, offset: 0x6B832, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x1EE0, symBinAddr: 0x1E200, symSize: 0xC0 } - - { offsetInCU: 0x1E7B, offset: 0x6BA60, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x2380, symBinAddr: 0x1E6A0, symSize: 0x70 } - - { offsetInCU: 0x1F2A, offset: 0x6BB0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x27D0, symBinAddr: 0x1EAB0, symSize: 0x20 } - - { offsetInCU: 0x1F3E, offset: 0x6BB23, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x2830, symBinAddr: 0x1EAD0, symSize: 0x20 } - - { offsetInCU: 0x20D0, offset: 0x6BCB5, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x1FA0, symBinAddr: 0x1E2C0, symSize: 0x330 } - - { offsetInCU: 0x233A, offset: 0x6BF1F, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS_SD6ValuesVyS2S_GTg5Tf4gd_n', symObjAddr: 0x22D0, symBinAddr: 0x1E5F0, symSize: 0xB0 } - - { offsetInCU: 0x2426, offset: 0x6C00B, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTg5Tf4nd_n', symObjAddr: 0x23F0, symBinAddr: 0x1E710, symSize: 0xE0 } - - { offsetInCU: 0x24D3, offset: 0x6C0B8, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTg5Tf4gd_n', symObjAddr: 0x24D0, symBinAddr: 0x1E7F0, symSize: 0x100 } - - { offsetInCU: 0x134, offset: 0x6C46C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1EBA0, symSize: 0x390 } - - { offsetInCU: 0x21E, offset: 0x6C556, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x390, symBinAddr: 0x1EF30, symSize: 0x3A0 } - - { offsetInCU: 0x65F, offset: 0x6C997, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x800, symBinAddr: 0x1F3A0, symSize: 0x4D0 } - - { offsetInCU: 0x87D, offset: 0x6CBB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xCD0, symBinAddr: 0x1F870, symSize: 0x160 } - - { offsetInCU: 0xA29, offset: 0x6CD61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xE80, symBinAddr: 0x1FA20, symSize: 0x830 } - - { offsetInCU: 0xE15, offset: 0x6D14D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x16B0, symBinAddr: 0x20250, symSize: 0xB0 } - - { offsetInCU: 0xEBD, offset: 0x6D1F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x1760, symBinAddr: 0x20300, symSize: 0x240 } - - { offsetInCU: 0xF0E, offset: 0x6D246, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x19A0, symBinAddr: 0x20540, symSize: 0x20 } - - { offsetInCU: 0xF2A, offset: 0x6D262, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x19C0, symBinAddr: 0x20560, symSize: 0x30 } - - { offsetInCU: 0x1196, offset: 0x6D4CE, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x730, symBinAddr: 0x1F2D0, symSize: 0x20 } - - { offsetInCU: 0x11AA, offset: 0x6D4E2, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x750, symBinAddr: 0x1F2F0, symSize: 0x20 } - - { offsetInCU: 0x11D8, offset: 0x6D510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x770, symBinAddr: 0x1F310, symSize: 0x90 } - - { offsetInCU: 0x14AA, offset: 0x6D7E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x19F0, symBinAddr: 0x20590, symSize: 0x70 } - - { offsetInCU: 0x14D9, offset: 0x6D811, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x1A60, symBinAddr: 0x20600, symSize: 0x20 } - - { offsetInCU: 0x14ED, offset: 0x6D825, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x1A80, symBinAddr: 0x20620, symSize: 0x30 } - - { offsetInCU: 0x1501, offset: 0x6D839, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1AB0, symBinAddr: 0x20650, symSize: 0x10 } - - { offsetInCU: 0x1515, offset: 0x6D84D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1AF0, symBinAddr: 0x20660, symSize: 0x40 } - - { offsetInCU: 0x1529, offset: 0x6D861, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x1B30, symBinAddr: 0x206A0, symSize: 0x30 } - - { offsetInCU: 0x153D, offset: 0x6D875, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x1B60, symBinAddr: 0x206D0, symSize: 0x130 } - - { offsetInCU: 0x1551, offset: 0x6D889, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1C90, symBinAddr: 0x20800, symSize: 0x20 } - - { offsetInCU: 0x1565, offset: 0x6D89D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1CB0, symBinAddr: 0x20820, symSize: 0x40 } - - { offsetInCU: 0x1579, offset: 0x6D8B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1CF0, symBinAddr: 0x20860, symSize: 0x40 } - - { offsetInCU: 0x158D, offset: 0x6D8C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1D30, symBinAddr: 0x208A0, symSize: 0x50 } - - { offsetInCU: 0x15A1, offset: 0x6D8D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1D80, symBinAddr: 0x208F0, symSize: 0x10 } - - { offsetInCU: 0x163D, offset: 0x6D975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1E20, symBinAddr: 0x20990, symSize: 0x2C0 } - - { offsetInCU: 0x188D, offset: 0x6DBC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x20E0, symBinAddr: 0x20C50, symSize: 0x210 } - - { offsetInCU: 0x19AE, offset: 0x6DCE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x22F0, symBinAddr: 0x20E60, symSize: 0x460 } - - { offsetInCU: 0x1D65, offset: 0x6E09D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x2750, symBinAddr: 0x212C0, symSize: 0x8D0 } - - { offsetInCU: 0x2263, offset: 0x6E59B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x3060, symBinAddr: 0x21BD0, symSize: 0x20 } - - { offsetInCU: 0x2282, offset: 0x6E5BA, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x30A0, symBinAddr: 0x21C10, symSize: 0x20 } - - { offsetInCU: 0x22AB, offset: 0x6E5E3, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x30C0, symBinAddr: 0x21C30, symSize: 0x20 } - - { offsetInCU: 0x22BF, offset: 0x6E5F7, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x30E0, symBinAddr: 0x21C50, symSize: 0x10 } - - { offsetInCU: 0x22D3, offset: 0x6E60B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x3110, symBinAddr: 0x21C80, symSize: 0x10 } - - { offsetInCU: 0x22F2, offset: 0x6E62A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x31D0, symBinAddr: 0x21CD0, symSize: 0x20 } - - { offsetInCU: 0x232A, offset: 0x6E662, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x31F0, symBinAddr: 0x21CF0, symSize: 0x20 } - - { offsetInCU: 0x2357, offset: 0x6E68F, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x3210, symBinAddr: 0x21D10, symSize: 0x70 } - - { offsetInCU: 0x23A3, offset: 0x6E6DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x3280, symBinAddr: 0x21D80, symSize: 0x5C0 } - - { offsetInCU: 0x259E, offset: 0x6E8D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x3840, symBinAddr: 0x22340, symSize: 0x580 } - - { offsetInCU: 0x27AE, offset: 0x6EAE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3DC0, symBinAddr: 0x228C0, symSize: 0x30 } - - { offsetInCU: 0x27C2, offset: 0x6EAFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3E10, symBinAddr: 0x228F0, symSize: 0x10 } - - { offsetInCU: 0x27D6, offset: 0x6EB0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3E50, symBinAddr: 0x22930, symSize: 0x20 } - - { offsetInCU: 0x280F, offset: 0x6EB47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3E70, symBinAddr: 0x22950, symSize: 0x40 } - - { offsetInCU: 0x2838, offset: 0x6EB70, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3EB0, symBinAddr: 0x22990, symSize: 0x40 } - - { offsetInCU: 0x2853, offset: 0x6EB8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3EF0, symBinAddr: 0x229D0, symSize: 0x20 } - - { offsetInCU: 0x2883, offset: 0x6EBBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3F40, symBinAddr: 0x229F0, symSize: 0x30 } - - { offsetInCU: 0x28AC, offset: 0x6EBE4, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3F70, symBinAddr: 0x22A20, symSize: 0x30 } - - { offsetInCU: 0x28C0, offset: 0x6EBF8, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3FC0, symBinAddr: 0x22A70, symSize: 0x30 } - - { offsetInCU: 0x28D4, offset: 0x6EC0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x4060, symBinAddr: 0x22B10, symSize: 0x20 } - - { offsetInCU: 0x28E8, offset: 0x6EC20, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x4080, symBinAddr: 0x22B30, symSize: 0x1B0 } - - { offsetInCU: 0x2A80, offset: 0x6EDB8, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x4230, symBinAddr: 0x22CE0, symSize: 0x30 } - - { offsetInCU: 0x2A94, offset: 0x6EDCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x4300, symBinAddr: 0x22DB0, symSize: 0x40 } - - { offsetInCU: 0x2AA8, offset: 0x6EDE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOs', symObjAddr: 0x4340, symBinAddr: 0x22DF0, symSize: 0x40 } - - { offsetInCU: 0x2ABC, offset: 0x6EDF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x4490, symBinAddr: 0x22F40, symSize: 0x20 } - - { offsetInCU: 0x2AD0, offset: 0x6EE08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x4550, symBinAddr: 0x22F80, symSize: 0x10 } - - { offsetInCU: 0x2C35, offset: 0x6EF6D, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1D90, symBinAddr: 0x20900, symSize: 0x90 } - - { offsetInCU: 0x27, offset: 0x6F298, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x23060, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x6F2BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x4B18, symBinAddr: 0x69AF8, symSize: 0x0 } - - { offsetInCU: 0x76, offset: 0x6F2E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x170, symBinAddr: 0x231D0, symSize: 0x20 } - - { offsetInCU: 0x8A, offset: 0x6F2FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x190, symBinAddr: 0x231F0, symSize: 0x50 } - - { offsetInCU: 0xC1, offset: 0x6F332, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1E0, symBinAddr: 0x23240, symSize: 0x60 } - - { offsetInCU: 0x108, offset: 0x6F379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x240, symBinAddr: 0x232A0, symSize: 0x60 } - - { offsetInCU: 0x13F, offset: 0x6F3B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x23300, symSize: 0x10 } - - { offsetInCU: 0x16A, offset: 0x6F3DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2B0, symBinAddr: 0x23310, symSize: 0x40 } - - { offsetInCU: 0x1A7, offset: 0x6F418, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x310, symBinAddr: 0x23370, symSize: 0x40 } - - { offsetInCU: 0x202, offset: 0x6F473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x350, symBinAddr: 0x233B0, symSize: 0x140 } - - { offsetInCU: 0x3AA, offset: 0x6F61B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x4D0, symBinAddr: 0x234F0, symSize: 0x30 } - - { offsetInCU: 0x3D8, offset: 0x6F649, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x23060, symSize: 0x30 } - - { offsetInCU: 0x3F8, offset: 0x6F669, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x30, symBinAddr: 0x23090, symSize: 0x20 } - - { offsetInCU: 0x415, offset: 0x6F686, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x50, symBinAddr: 0x230B0, symSize: 0x10 } - - { offsetInCU: 0x458, offset: 0x6F6C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x110, symBinAddr: 0x23170, symSize: 0x20 } - - { offsetInCU: 0x489, offset: 0x6F6FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x130, symBinAddr: 0x23190, symSize: 0x10 } - - { offsetInCU: 0x4C7, offset: 0x6F738, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x140, symBinAddr: 0x231A0, symSize: 0x30 } - - { offsetInCU: 0x508, offset: 0x6F779, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x2F0, symBinAddr: 0x23350, symSize: 0x20 } - - { offsetInCU: 0x57F, offset: 0x6F7F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x500, symBinAddr: 0x23520, symSize: 0x10 } - - { offsetInCU: 0x593, offset: 0x6F804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x510, symBinAddr: 0x23530, symSize: 0x30 } - - { offsetInCU: 0x5A7, offset: 0x6F818, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x540, symBinAddr: 0x23560, symSize: 0x10 } - - { offsetInCU: 0x5BB, offset: 0x6F82C, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x550, symBinAddr: 0x23570, symSize: 0x10 } - - { offsetInCU: 0x5CF, offset: 0x6F840, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x560, symBinAddr: 0x23580, symSize: 0x80 } - - { offsetInCU: 0x5E3, offset: 0x6F854, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x5E0, symBinAddr: 0x23600, symSize: 0xD0 } - - { offsetInCU: 0x5F7, offset: 0x6F868, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6B0, symBinAddr: 0x236D0, symSize: 0x10 } - - { offsetInCU: 0x60B, offset: 0x6F87C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6C0, symBinAddr: 0x236E0, symSize: 0x10 } - - { offsetInCU: 0x61F, offset: 0x6F890, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x6D0, symBinAddr: 0x236F0, symSize: 0x10 } - - { offsetInCU: 0x633, offset: 0x6F8A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x6E0, symBinAddr: 0x23700, symSize: 0x10 } - - { offsetInCU: 0x647, offset: 0x6F8B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x6F0, symBinAddr: 0x23710, symSize: 0x6 } - - { offsetInCU: 0x695, offset: 0x6F906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x60, symBinAddr: 0x230C0, symSize: 0x10 } - - { offsetInCU: 0x726, offset: 0x6F997, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x70, symBinAddr: 0x230D0, symSize: 0x40 } - - { offsetInCU: 0x7D5, offset: 0x6FA46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB0, symBinAddr: 0x23110, symSize: 0x20 } - - { offsetInCU: 0x828, offset: 0x6FA99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xD0, symBinAddr: 0x23130, symSize: 0x40 } - - { offsetInCU: 0x99, offset: 0x6FCD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x23720, symSize: 0x170 } - - { offsetInCU: 0x182, offset: 0x6FDB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x170, symBinAddr: 0x23890, symSize: 0x130 } - - { offsetInCU: 0x1E6, offset: 0x6FE1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x2A0, symBinAddr: 0x239C0, symSize: 0x30 } - - { offsetInCU: 0x203, offset: 0x6FE3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2D0, symBinAddr: 0x239F0, symSize: 0x40 } - - { offsetInCU: 0x240, offset: 0x6FE77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x310, symBinAddr: 0x23A30, symSize: 0x40 } - - { offsetInCU: 0x26F, offset: 0x6FEA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x350, symBinAddr: 0x23A70, symSize: 0x50 } - - { offsetInCU: 0x28C, offset: 0x6FEC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x3A0, symBinAddr: 0x23AC0, symSize: 0x50 } - - { offsetInCU: 0x2C9, offset: 0x6FF00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x3F0, symBinAddr: 0x23B10, symSize: 0x40 } - - { offsetInCU: 0x2F8, offset: 0x6FF2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x430, symBinAddr: 0x23B50, symSize: 0x40 } - - { offsetInCU: 0x315, offset: 0x6FF4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x470, symBinAddr: 0x23B90, symSize: 0x50 } - - { offsetInCU: 0x352, offset: 0x6FF89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x4C0, symBinAddr: 0x23BE0, symSize: 0x40 } - - { offsetInCU: 0x381, offset: 0x6FFB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x540, symBinAddr: 0x23C60, symSize: 0x40 } - - { offsetInCU: 0x3B0, offset: 0x6FFE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x630, symBinAddr: 0x23D50, symSize: 0x40 } - - { offsetInCU: 0x3DF, offset: 0x70016, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x670, symBinAddr: 0x23D90, symSize: 0x10 } - - { offsetInCU: 0x428, offset: 0x7005F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x680, symBinAddr: 0x23DA0, symSize: 0xF0 } - - { offsetInCU: 0x532, offset: 0x70169, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x770, symBinAddr: 0x23E90, symSize: 0x160 } - - { offsetInCU: 0x5B6, offset: 0x701ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x8D0, symBinAddr: 0x23FF0, symSize: 0x120 } - - { offsetInCU: 0x5FB, offset: 0x70232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x9F0, symBinAddr: 0x24110, symSize: 0x20 } - - { offsetInCU: 0x619, offset: 0x70250, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0xA10, symBinAddr: 0x24130, symSize: 0x30 } - - { offsetInCU: 0x67C, offset: 0x702B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0xA40, symBinAddr: 0x24160, symSize: 0x30 } - - { offsetInCU: 0x6E3, offset: 0x7031A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0xA70, symBinAddr: 0x24190, symSize: 0x30 } - - { offsetInCU: 0x7F5, offset: 0x7042C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0xAA0, symBinAddr: 0x241C0, symSize: 0x30 } - - { offsetInCU: 0x824, offset: 0x7045B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xAD0, symBinAddr: 0x241F0, symSize: 0x60 } - - { offsetInCU: 0x882, offset: 0x704B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xB30, symBinAddr: 0x24250, symSize: 0x200 } - - { offsetInCU: 0xA8E, offset: 0x706C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xD30, symBinAddr: 0x24450, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x70842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x244B0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x70866, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x244B0, symSize: 0x20 } - - { offsetInCU: 0x68, offset: 0x70883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x20, symBinAddr: 0x244D0, symSize: 0x10 } - - { offsetInCU: 0xB4, offset: 0x708CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x245B0, symSize: 0x20 } - - { offsetInCU: 0xE5, offset: 0x70900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x120, symBinAddr: 0x245D0, symSize: 0x20 } - - { offsetInCU: 0x10E, offset: 0x70929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x8A0, symBinAddr: 0x24D50, symSize: 0x20 } - - { offsetInCU: 0x167, offset: 0x70982, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x140, symBinAddr: 0x245F0, symSize: 0x90 } - - { offsetInCU: 0x186, offset: 0x709A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x1D0, symBinAddr: 0x24680, symSize: 0x20 } - - { offsetInCU: 0x1E6, offset: 0x70A01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2C0, symBinAddr: 0x24770, symSize: 0x90 } - - { offsetInCU: 0x217, offset: 0x70A32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x350, symBinAddr: 0x24800, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x70B26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x370, symBinAddr: 0x24820, symSize: 0x250 } - - { offsetInCU: 0x5AC, offset: 0x70DC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x5C0, symBinAddr: 0x24A70, symSize: 0x150 } - - { offsetInCU: 0x848, offset: 0x71063, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x710, symBinAddr: 0x24BC0, symSize: 0xC0 } - - { offsetInCU: 0x98D, offset: 0x711A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x7D0, symBinAddr: 0x24C80, symSize: 0xD0 } - - { offsetInCU: 0xAB9, offset: 0x712D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x8C0, symBinAddr: 0x24D70, symSize: 0x10 } - - { offsetInCU: 0xACD, offset: 0x712E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x8D0, symBinAddr: 0x24D80, symSize: 0x30 } - - { offsetInCU: 0xAE1, offset: 0x712FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x900, symBinAddr: 0x24DB0, symSize: 0x10 } - - { offsetInCU: 0xAF5, offset: 0x71310, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x910, symBinAddr: 0x24DC0, symSize: 0x30 } - - { offsetInCU: 0xB09, offset: 0x71324, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x960, symBinAddr: 0x24DF0, symSize: 0x80 } - - { offsetInCU: 0xB1D, offset: 0x71338, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x9E0, symBinAddr: 0x24E70, symSize: 0xD0 } - - { offsetInCU: 0xB31, offset: 0x7134C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0xAB0, symBinAddr: 0x24F40, symSize: 0x10 } - - { offsetInCU: 0xB45, offset: 0x71360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0xAC0, symBinAddr: 0x24F50, symSize: 0x10 } - - { offsetInCU: 0xB59, offset: 0x71374, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0xAD0, symBinAddr: 0x24F60, symSize: 0x10 } - - { offsetInCU: 0xB6D, offset: 0x71388, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0xAE0, symBinAddr: 0x24F70, symSize: 0x10 } - - { offsetInCU: 0xB81, offset: 0x7139C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0xAF0, symBinAddr: 0x24F80, symSize: 0x80 } - - { offsetInCU: 0xB95, offset: 0x713B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xB70, symBinAddr: 0x25000, symSize: 0xD0 } - - { offsetInCU: 0xBA9, offset: 0x713C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xC40, symBinAddr: 0x250D0, symSize: 0x10 } - - { offsetInCU: 0xBBD, offset: 0x713D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xC50, symBinAddr: 0x250E0, symSize: 0x10 } - - { offsetInCU: 0xBD1, offset: 0x713EC, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xCA0, symBinAddr: 0x250F0, symSize: 0x40 } - - { offsetInCU: 0xBE5, offset: 0x71400, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGMa', symObjAddr: 0xCE0, symBinAddr: 0x25130, symSize: 0x30 } - - { offsetInCU: 0xC1C, offset: 0x71437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x30, symBinAddr: 0x244E0, symSize: 0x20 } - - { offsetInCU: 0xCD6, offset: 0x714F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x50, symBinAddr: 0x24500, symSize: 0x40 } - - { offsetInCU: 0xDAE, offset: 0x715C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x90, symBinAddr: 0x24540, symSize: 0x30 } - - { offsetInCU: 0xE2A, offset: 0x71645, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC0, symBinAddr: 0x24570, symSize: 0x40 } - - { offsetInCU: 0xEE5, offset: 0x71700, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1F0, symBinAddr: 0x246A0, symSize: 0x20 } - - { offsetInCU: 0xF9F, offset: 0x717BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x210, symBinAddr: 0x246C0, symSize: 0x40 } - - { offsetInCU: 0x1077, offset: 0x71892, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x250, symBinAddr: 0x24700, symSize: 0x30 } - - { offsetInCU: 0x10F3, offset: 0x7190E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x280, symBinAddr: 0x24730, symSize: 0x40 } - - { offsetInCU: 0xCA, offset: 0x71BFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x25180, symSize: 0x170 } - - { offsetInCU: 0x206, offset: 0x71D37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x170, symBinAddr: 0x252F0, symSize: 0x190 } - - { offsetInCU: 0x364, offset: 0x71E95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x370, symBinAddr: 0x254F0, symSize: 0xFC0 } - - { offsetInCU: 0xAC4, offset: 0x725F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0x1330, symBinAddr: 0x264B0, symSize: 0x40 } - - { offsetInCU: 0xCCB, offset: 0x727FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1370, symBinAddr: 0x264F0, symSize: 0x20 } - - { offsetInCU: 0xCDF, offset: 0x72810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1390, symBinAddr: 0x26510, symSize: 0x30 } - - { offsetInCU: 0xCF3, offset: 0x72824, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x1460, symBinAddr: 0x26540, symSize: 0x30 } - - { offsetInCU: 0xD07, offset: 0x72838, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x1490, symBinAddr: 0x26570, symSize: 0x50 } - - { offsetInCU: 0xD1B, offset: 0x7284C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x14E0, symBinAddr: 0x265C0, symSize: 0x40 } - - { offsetInCU: 0xD2F, offset: 0x72860, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x1520, symBinAddr: 0x26600, symSize: 0x60 } - - { offsetInCU: 0xD43, offset: 0x72874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x1620, symBinAddr: 0x26700, symSize: 0x50 } - - { offsetInCU: 0xD57, offset: 0x72888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1670, symBinAddr: 0x26750, symSize: 0x80 } - - { offsetInCU: 0xD6B, offset: 0x7289C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x16F0, symBinAddr: 0x267D0, symSize: 0x18 } - - { offsetInCU: 0xDDB, offset: 0x7290C, size: 0x8, addend: 0x0, symName: '_$sSa9repeating5countSayxGx_SitcfCs5UInt8V_Tg5', symObjAddr: 0x300, symBinAddr: 0x25480, symSize: 0x70 } - - { offsetInCU: 0x4B, offset: 0x72B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x267F0, symSize: 0x40 } - - { offsetInCU: 0x68, offset: 0x72B7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x40, symBinAddr: 0x26830, symSize: 0x10 } - - { offsetInCU: 0xAB, offset: 0x72BBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA0, symBinAddr: 0x26890, symSize: 0x30 } - - { offsetInCU: 0xDC, offset: 0x72BEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xD0, symBinAddr: 0x268C0, symSize: 0x10 } - - { offsetInCU: 0x126, offset: 0x72C39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x100, symBinAddr: 0x268F0, symSize: 0x10 } - - { offsetInCU: 0x14F, offset: 0x72C62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x5F0, symBinAddr: 0x26DE0, symSize: 0x340 } - - { offsetInCU: 0x185, offset: 0x72C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x170, symBinAddr: 0x26960, symSize: 0x10 } - - { offsetInCU: 0x1AE, offset: 0x72CC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x930, symBinAddr: 0x27120, symSize: 0x380 } - - { offsetInCU: 0x1E4, offset: 0x72CF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x200, symBinAddr: 0x269F0, symSize: 0x10 } - - { offsetInCU: 0x21A, offset: 0x72D2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x280, symBinAddr: 0x26A70, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x72D63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2A0, symBinAddr: 0x26A90, symSize: 0x10 } - - { offsetInCU: 0x286, offset: 0x72D99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x310, symBinAddr: 0x26B00, symSize: 0x10 } - - { offsetInCU: 0x2C9, offset: 0x72DDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x320, symBinAddr: 0x26B10, symSize: 0x30 } - - { offsetInCU: 0x307, offset: 0x72E1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x370, symBinAddr: 0x26B60, symSize: 0x10 } - - { offsetInCU: 0x330, offset: 0x72E43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0xD90, symBinAddr: 0x27580, symSize: 0x140 } - - { offsetInCU: 0x366, offset: 0x72E79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x3A0, symBinAddr: 0x26B90, symSize: 0xB0 } - - { offsetInCU: 0x383, offset: 0x72E96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x450, symBinAddr: 0x26C40, symSize: 0x10 } - - { offsetInCU: 0x3C6, offset: 0x72ED9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x460, symBinAddr: 0x26C50, symSize: 0x40 } - - { offsetInCU: 0x3FC, offset: 0x72F0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x4A0, symBinAddr: 0x26C90, symSize: 0x20 } - - { offsetInCU: 0x419, offset: 0x72F2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x4C0, symBinAddr: 0x26CB0, symSize: 0x10 } - - { offsetInCU: 0x45C, offset: 0x72F6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x4D0, symBinAddr: 0x26CC0, symSize: 0x20 } - - { offsetInCU: 0x49A, offset: 0x72FAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x4F0, symBinAddr: 0x26CE0, symSize: 0x40 } - - { offsetInCU: 0x4B7, offset: 0x72FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x530, symBinAddr: 0x26D20, symSize: 0x10 } - - { offsetInCU: 0x4FA, offset: 0x7300D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x5C0, symBinAddr: 0x26DB0, symSize: 0x30 } - - { offsetInCU: 0x52C, offset: 0x7303F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0xED0, symBinAddr: 0x276C0, symSize: 0x10 } - - { offsetInCU: 0x540, offset: 0x73053, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0xEE0, symBinAddr: 0x276D0, symSize: 0x30 } - - { offsetInCU: 0x554, offset: 0x73067, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0xF10, symBinAddr: 0x27700, symSize: 0x10 } - - { offsetInCU: 0x568, offset: 0x7307B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0xF20, symBinAddr: 0x27710, symSize: 0x30 } - - { offsetInCU: 0x57C, offset: 0x7308F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0xF50, symBinAddr: 0x27740, symSize: 0x10 } - - { offsetInCU: 0x590, offset: 0x730A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0xF60, symBinAddr: 0x27750, symSize: 0x30 } - - { offsetInCU: 0x5A4, offset: 0x730B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0xF90, symBinAddr: 0x27780, symSize: 0x10 } - - { offsetInCU: 0x5B8, offset: 0x730CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0xFA0, symBinAddr: 0x27790, symSize: 0x30 } - - { offsetInCU: 0x5CC, offset: 0x730DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0xFD0, symBinAddr: 0x277C0, symSize: 0x10 } - - { offsetInCU: 0x5E0, offset: 0x730F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0xFE0, symBinAddr: 0x277D0, symSize: 0x30 } - - { offsetInCU: 0x5F4, offset: 0x73107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x1010, symBinAddr: 0x27800, symSize: 0x10 } - - { offsetInCU: 0x608, offset: 0x7311B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x1020, symBinAddr: 0x27810, symSize: 0x30 } - - { offsetInCU: 0x61C, offset: 0x7312F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x1050, symBinAddr: 0x27840, symSize: 0x10 } - - { offsetInCU: 0x630, offset: 0x73143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x1060, symBinAddr: 0x27850, symSize: 0x30 } - - { offsetInCU: 0x644, offset: 0x73157, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x1090, symBinAddr: 0x27880, symSize: 0x10 } - - { offsetInCU: 0x658, offset: 0x7316B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x10A0, symBinAddr: 0x27890, symSize: 0x30 } - - { offsetInCU: 0x66C, offset: 0x7317F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x10D0, symBinAddr: 0x278C0, symSize: 0x10 } - - { offsetInCU: 0x680, offset: 0x73193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x10E0, symBinAddr: 0x278D0, symSize: 0x30 } - - { offsetInCU: 0x694, offset: 0x731A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x1110, symBinAddr: 0x27900, symSize: 0x10 } - - { offsetInCU: 0x6A8, offset: 0x731BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x1120, symBinAddr: 0x27910, symSize: 0x30 } - - { offsetInCU: 0x6BC, offset: 0x731CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x1150, symBinAddr: 0x27940, symSize: 0x10 } - - { offsetInCU: 0x6D0, offset: 0x731E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x1160, symBinAddr: 0x27950, symSize: 0x30 } - - { offsetInCU: 0x6E4, offset: 0x731F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x1190, symBinAddr: 0x27980, symSize: 0x10 } - - { offsetInCU: 0x6F8, offset: 0x7320B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x11A0, symBinAddr: 0x27990, symSize: 0x10 } - - { offsetInCU: 0x70C, offset: 0x7321F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x11B0, symBinAddr: 0x279A0, symSize: 0x10 } - - { offsetInCU: 0x720, offset: 0x73233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x11C0, symBinAddr: 0x279B0, symSize: 0x10 } - - { offsetInCU: 0x734, offset: 0x73247, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x11D0, symBinAddr: 0x279C0, symSize: 0x10 } - - { offsetInCU: 0x748, offset: 0x7325B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x11E0, symBinAddr: 0x279D0, symSize: 0x10 } - - { offsetInCU: 0x75C, offset: 0x7326F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x11F0, symBinAddr: 0x279E0, symSize: 0x10 } - - { offsetInCU: 0x770, offset: 0x73283, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x1200, symBinAddr: 0x279F0, symSize: 0x10 } - - { offsetInCU: 0x784, offset: 0x73297, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x1210, symBinAddr: 0x27A00, symSize: 0x10 } - - { offsetInCU: 0x798, offset: 0x732AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x1220, symBinAddr: 0x27A10, symSize: 0x10 } - - { offsetInCU: 0x7AC, offset: 0x732BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x1230, symBinAddr: 0x27A20, symSize: 0x10 } - - { offsetInCU: 0x7E3, offset: 0x732F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x26840, symSize: 0x10 } - - { offsetInCU: 0x838, offset: 0x7334B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x70, symBinAddr: 0x26860, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x734EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x27D40, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x7350A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0x60, symBinAddr: 0x27DA0, symSize: 0x40 } - - { offsetInCU: 0x9C, offset: 0x73539, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0xE0, symBinAddr: 0x27E20, symSize: 0x40 } - - { offsetInCU: 0xBB, offset: 0x73558, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x120, symBinAddr: 0x27E60, symSize: 0x40 } - - { offsetInCU: 0xD8, offset: 0x73575, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x160, symBinAddr: 0x27EA0, symSize: 0x50 } - - { offsetInCU: 0x115, offset: 0x735B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1B0, symBinAddr: 0x27EF0, symSize: 0x40 } - - { offsetInCU: 0x144, offset: 0x735E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1F0, symBinAddr: 0x27F30, symSize: 0x10 } - - { offsetInCU: 0x16F, offset: 0x7360C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x2B0, symBinAddr: 0x27FF0, symSize: 0x40 } - - { offsetInCU: 0x19E, offset: 0x7363B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x2F0, symBinAddr: 0x28030, symSize: 0xD0 } - - { offsetInCU: 0x1E7, offset: 0x73684, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x3E0, symBinAddr: 0x28120, symSize: 0x20 } - - { offsetInCU: 0x203, offset: 0x736A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x400, symBinAddr: 0x28140, symSize: 0x30 } - - { offsetInCU: 0x296, offset: 0x73733, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x6A0, symBinAddr: 0x283E0, symSize: 0x40 } - - { offsetInCU: 0x2F2, offset: 0x7378F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x6E0, symBinAddr: 0x28420, symSize: 0x40 } - - { offsetInCU: 0x34D, offset: 0x737EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x720, symBinAddr: 0x28460, symSize: 0x40 } - - { offsetInCU: 0x3DA, offset: 0x73877, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x3C0, symBinAddr: 0x28100, symSize: 0x20 } - - { offsetInCU: 0x3EE, offset: 0x7388B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x430, symBinAddr: 0x28170, symSize: 0x40 } - - { offsetInCU: 0x429, offset: 0x738C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x470, symBinAddr: 0x281B0, symSize: 0x90 } - - { offsetInCU: 0x4BE, offset: 0x7395B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x500, symBinAddr: 0x28240, symSize: 0x20 } - - { offsetInCU: 0x4EF, offset: 0x7398C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x520, symBinAddr: 0x28260, symSize: 0xD0 } - - { offsetInCU: 0x554, offset: 0x739F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x5F0, symBinAddr: 0x28330, symSize: 0x20 } - - { offsetInCU: 0x571, offset: 0x73A0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x610, symBinAddr: 0x28350, symSize: 0x30 } - - { offsetInCU: 0x5AA, offset: 0x73A47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x640, symBinAddr: 0x28380, symSize: 0x60 } - - { offsetInCU: 0x5E5, offset: 0x73A82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x760, symBinAddr: 0x284A0, symSize: 0x20 } - - { offsetInCU: 0x63D, offset: 0x73ADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x780, symBinAddr: 0x284C0, symSize: 0x20 } - - { offsetInCU: 0x690, offset: 0x73B2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x7A0, symBinAddr: 0x284E0, symSize: 0x20 } - - { offsetInCU: 0x6D1, offset: 0x73B6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x7C0, symBinAddr: 0x28500, symSize: 0x20 } - - { offsetInCU: 0x745, offset: 0x73BE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x7E0, symBinAddr: 0x28520, symSize: 0x30 } - - { offsetInCU: 0x7D6, offset: 0x73C73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x810, symBinAddr: 0x28550, symSize: 0x60 } - - { offsetInCU: 0x97B, offset: 0x73E18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x870, symBinAddr: 0x285B0, symSize: 0x4A0 } - - { offsetInCU: 0xC76, offset: 0x74113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xD40, symBinAddr: 0x28A50, symSize: 0x130 } - - { offsetInCU: 0xD4E, offset: 0x741EB, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xE70, symBinAddr: 0x28B80, symSize: 0x30 } - - { offsetInCU: 0xD66, offset: 0x74203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xEA0, symBinAddr: 0x28BB0, symSize: 0x80 } - - { offsetInCU: 0xD82, offset: 0x7421F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xF20, symBinAddr: 0x28C30, symSize: 0xC0 } - - { offsetInCU: 0xE4D, offset: 0x742EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0xFE0, symBinAddr: 0x28CF0, symSize: 0x1B0 } - - { offsetInCU: 0xEDC, offset: 0x74379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1190, symBinAddr: 0x28EA0, symSize: 0x10 } - - { offsetInCU: 0xEFF, offset: 0x7439C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x11A0, symBinAddr: 0x28EB0, symSize: 0x50 } - - { offsetInCU: 0xF31, offset: 0x743CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x11F0, symBinAddr: 0x28F00, symSize: 0x10 } - - { offsetInCU: 0xF54, offset: 0x743F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x1200, symBinAddr: 0x28F10, symSize: 0x60 } - - { offsetInCU: 0xF86, offset: 0x74423, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x1260, symBinAddr: 0x28F70, symSize: 0xB0 } - - { offsetInCU: 0x1017, offset: 0x744B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x1310, symBinAddr: 0x29020, symSize: 0x140 } - - { offsetInCU: 0x1061, offset: 0x744FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x1450, symBinAddr: 0x29160, symSize: 0x10 } - - { offsetInCU: 0x1084, offset: 0x74521, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x1460, symBinAddr: 0x29170, symSize: 0x70 } - - { offsetInCU: 0x10D7, offset: 0x74574, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x14D0, symBinAddr: 0x291E0, symSize: 0x50 } - - { offsetInCU: 0x1154, offset: 0x745F1, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x1860, symBinAddr: 0x29520, symSize: 0x30 } - - { offsetInCU: 0x1168, offset: 0x74605, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x18C0, symBinAddr: 0x29580, symSize: 0x10 } - - { offsetInCU: 0x117C, offset: 0x74619, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x18D0, symBinAddr: 0x29590, symSize: 0x20 } - - { offsetInCU: 0x1190, offset: 0x7462D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18F0, symBinAddr: 0x295B0, symSize: 0x10 } - - { offsetInCU: 0x11C2, offset: 0x7465F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x1900, symBinAddr: 0x295C0, symSize: 0x120 } - - { offsetInCU: 0x124E, offset: 0x746EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x1A20, symBinAddr: 0x296E0, symSize: 0x1B0 } - - { offsetInCU: 0x133E, offset: 0x747DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1BD0, symBinAddr: 0x29890, symSize: 0x120 } - - { offsetInCU: 0x13DA, offset: 0x74877, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1D50, symBinAddr: 0x299D0, symSize: 0x20 } - - { offsetInCU: 0x1403, offset: 0x748A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1D70, symBinAddr: 0x299F0, symSize: 0x20 } - - { offsetInCU: 0x229, offset: 0x74CDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x29A50, symSize: 0xBA0 } - - { offsetInCU: 0xEF1, offset: 0x759A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x1750, symBinAddr: 0x2B1A0, symSize: 0xB10 } - - { offsetInCU: 0x1A5D, offset: 0x76512, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x2260, symBinAddr: 0x2BCB0, symSize: 0xA70 } - - { offsetInCU: 0x2644, offset: 0x770F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2CD0, symBinAddr: 0x2C720, symSize: 0xD20 } - - { offsetInCU: 0x35B8, offset: 0x7806D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x39F0, symBinAddr: 0x2D440, symSize: 0xCB0 } - - { offsetInCU: 0x4507, offset: 0x78FBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x46C0, symBinAddr: 0x2E110, symSize: 0xB90 } - - { offsetInCU: 0x51F7, offset: 0x79CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x5250, symBinAddr: 0x2ECA0, symSize: 0xB50 } - - { offsetInCU: 0x5D6F, offset: 0x7A824, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x5DA0, symBinAddr: 0x2F7F0, symSize: 0x190 } - - { offsetInCU: 0x5E40, offset: 0x7A8F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x5F30, symBinAddr: 0x2F980, symSize: 0x180 } - - { offsetInCU: 0x5EEA, offset: 0x7A99F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x60B0, symBinAddr: 0x2FB00, symSize: 0x140 } - - { offsetInCU: 0x6053, offset: 0x7AB08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x61F0, symBinAddr: 0x2FC40, symSize: 0x60 } - - { offsetInCU: 0x60CB, offset: 0x7AB80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x6270, symBinAddr: 0x2FCC0, symSize: 0x820 } - - { offsetInCU: 0x676F, offset: 0x7B224, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x6250, symBinAddr: 0x2FCA0, symSize: 0x20 } - - { offsetInCU: 0x69FD, offset: 0x7B4B2, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6A90, symBinAddr: 0x304E0, symSize: 0x60 } - - { offsetInCU: 0x6B04, offset: 0x7B5B9, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6AF0, symBinAddr: 0x30540, symSize: 0xF0 } - - { offsetInCU: 0x6CFA, offset: 0x7B7AF, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6BE0, symBinAddr: 0x30630, symSize: 0x590 } - - { offsetInCU: 0x70D3, offset: 0x7BB88, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x7170, symBinAddr: 0x30BC0, symSize: 0x190 } - - { offsetInCU: 0x7271, offset: 0x7BD26, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x7300, symBinAddr: 0x30D50, symSize: 0x2E0 } - - { offsetInCU: 0x7472, offset: 0x7BF27, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x75E0, symBinAddr: 0x31030, symSize: 0x180 } - - { offsetInCU: 0x7602, offset: 0x7C0B7, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x7760, symBinAddr: 0x311B0, symSize: 0x3B0 } - - { offsetInCU: 0x76AC, offset: 0x7C161, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x7B10, symBinAddr: 0x31560, symSize: 0x20 } - - { offsetInCU: 0x76E5, offset: 0x7C19A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x7B30, symBinAddr: 0x31580, symSize: 0xB0 } - - { offsetInCU: 0x779E, offset: 0x7C253, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x7BE0, symBinAddr: 0x31630, symSize: 0x230 } - - { offsetInCU: 0x78A0, offset: 0x7C355, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x7E10, symBinAddr: 0x31860, symSize: 0x260 } - - { offsetInCU: 0x79A7, offset: 0x7C45C, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x8150, symBinAddr: 0x31BA0, symSize: 0x20 } - - { offsetInCU: 0x7A16, offset: 0x7C4CB, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayVyAByxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x8220, symBinAddr: 0x31C70, symSize: 0xB0 } - - { offsetInCU: 0x7AF8, offset: 0x7C5AD, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x82D0, symBinAddr: 0x31D20, symSize: 0x40 } - - { offsetInCU: 0x7B0C, offset: 0x7C5C1, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x8350, symBinAddr: 0x31D60, symSize: 0x20 } - - { offsetInCU: 0x7B20, offset: 0x7C5D5, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSnySiG_Tgq5Tf4nnd_n', symObjAddr: 0x8370, symBinAddr: 0x31D80, symSize: 0x90 } - - { offsetInCU: 0x7B56, offset: 0x7C60B, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x84E0, symBinAddr: 0x31EB0, symSize: 0x30 } - - { offsetInCU: 0x7B6A, offset: 0x7C61F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x8510, symBinAddr: 0x31EE0, symSize: 0x30 } - - { offsetInCU: 0x7B7E, offset: 0x7C633, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOr', symObjAddr: 0x8570, symBinAddr: 0x31F40, symSize: 0x20 } - - { offsetInCU: 0x7B92, offset: 0x7C647, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOs', symObjAddr: 0x8590, symBinAddr: 0x31F60, symSize: 0x1B } - - { offsetInCU: 0x7E76, offset: 0x7C92B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x8070, symBinAddr: 0x31AC0, symSize: 0xE0 } - - { offsetInCU: 0x4F, offset: 0x7CC99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x10F8, symBinAddr: 0x66550, symSize: 0x0 } - - { offsetInCU: 0x9F, offset: 0x7CCE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x327C0, symSize: 0x10 } - - { offsetInCU: 0x126, offset: 0x7CD70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x850, symBinAddr: 0x327D0, symSize: 0x40 } - - { offsetInCU: 0x20A, offset: 0x7CE54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x890, symBinAddr: 0x32810, symSize: 0x20 } - - { offsetInCU: 0x29C, offset: 0x7CEE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x31F80, symSize: 0xB0 } - - { offsetInCU: 0x30A, offset: 0x7CF54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1B0, symBinAddr: 0x32130, symSize: 0x50 } - - { offsetInCU: 0x336, offset: 0x7CF80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x200, symBinAddr: 0x32180, symSize: 0x530 } - - { offsetInCU: 0x424, offset: 0x7D06E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x730, symBinAddr: 0x326B0, symSize: 0x70 } - - { offsetInCU: 0x46E, offset: 0x7D0B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x8F0, symBinAddr: 0x32870, symSize: 0x1B0 } - - { offsetInCU: 0x4EE, offset: 0x7D138, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAA0, symBinAddr: 0x32A20, symSize: 0x10 } - - { offsetInCU: 0x508, offset: 0x7D152, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAB0, symBinAddr: 0x32A30, symSize: 0x20 } - - { offsetInCU: 0x58B, offset: 0x7D1D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xDB0, symBinAddr: 0x32CD0, symSize: 0xC0 } - - { offsetInCU: 0x659, offset: 0x7D2A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE70, symBinAddr: 0x32D90, symSize: 0x120 } - - { offsetInCU: 0x738, offset: 0x7D382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB0, symBinAddr: 0x32030, symSize: 0x100 } - - { offsetInCU: 0x78F, offset: 0x7D3D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAD0, symBinAddr: 0x32A50, symSize: 0x20 } - - { offsetInCU: 0x7A3, offset: 0x7D3ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB10, symBinAddr: 0x32A70, symSize: 0x80 } - - { offsetInCU: 0x7B7, offset: 0x7D401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xB90, symBinAddr: 0x32AF0, symSize: 0xD0 } - - { offsetInCU: 0x7CB, offset: 0x7D415, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC60, symBinAddr: 0x32BC0, symSize: 0x10 } - - { offsetInCU: 0x7DF, offset: 0x7D429, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC70, symBinAddr: 0x32BD0, symSize: 0x10 } - - { offsetInCU: 0x7F3, offset: 0x7D43D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC80, symBinAddr: 0x32BE0, symSize: 0x10 } - - { offsetInCU: 0x807, offset: 0x7D451, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC90, symBinAddr: 0x32BF0, symSize: 0x10 } - - { offsetInCU: 0x81B, offset: 0x7D465, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xCA0, symBinAddr: 0x32C00, symSize: 0x10 } - - { offsetInCU: 0x82F, offset: 0x7D479, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x32C10, symSize: 0x30 } - - { offsetInCU: 0x843, offset: 0x7D48D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCE0, symBinAddr: 0x32C40, symSize: 0x20 } - - { offsetInCU: 0x857, offset: 0x7D4A1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xD00, symBinAddr: 0x32C60, symSize: 0x10 } - - { offsetInCU: 0x86B, offset: 0x7D4B5, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xD10, symBinAddr: 0x32C70, symSize: 0x20 } - - { offsetInCU: 0x87F, offset: 0x7D4C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xFE0, symBinAddr: 0x32F00, symSize: 0x20 } - - { offsetInCU: 0x893, offset: 0x7D4DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x10A0, symBinAddr: 0x32FC0, symSize: 0x10 } - - { offsetInCU: 0x8A7, offset: 0x7D4F1, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x10B0, symBinAddr: 0x32FD0, symSize: 0x20 } - - { offsetInCU: 0x946, offset: 0x7D590, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8B0, symBinAddr: 0x32830, symSize: 0x40 } - - { offsetInCU: 0xAFA, offset: 0x7D744, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x7A0, symBinAddr: 0x32720, symSize: 0xA0 } - - { offsetInCU: 0x2B, offset: 0x7D804, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x33010, symSize: 0x60 } - - { offsetInCU: 0x64, offset: 0x7D83D, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x33010, symSize: 0x60 } - - { offsetInCU: 0xE7, offset: 0x7D8C0, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x60, symBinAddr: 0x33070, symSize: 0xF0 } - - { offsetInCU: 0x181, offset: 0x7D95A, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x150, symBinAddr: 0x33160, symSize: 0xD0 } - - { offsetInCU: 0x2FF, offset: 0x7DAD8, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x220, symBinAddr: 0x33230, symSize: 0x170 } - - { offsetInCU: 0x49A, offset: 0x7DC73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x3D0, symBinAddr: 0x333E0, symSize: 0x10 } - - { offsetInCU: 0x4C6, offset: 0x7DC9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x3E0, symBinAddr: 0x333F0, symSize: 0x20 } - - { offsetInCU: 0x560, offset: 0x7DD39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x400, symBinAddr: 0x33410, symSize: 0x40 } - - { offsetInCU: 0x669, offset: 0x7DE42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x440, symBinAddr: 0x33450, symSize: 0x10 } - - { offsetInCU: 0x6BD, offset: 0x7DE96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x450, symBinAddr: 0x33460, symSize: 0x40 } - - { offsetInCU: 0x7A1, offset: 0x7DF7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x490, symBinAddr: 0x334A0, symSize: 0x20 } - - { offsetInCU: 0x82A, offset: 0x7E003, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x4F0, symBinAddr: 0x33500, symSize: 0x10 } - - { offsetInCU: 0x83E, offset: 0x7E017, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x500, symBinAddr: 0x33510, symSize: 0x30 } - - { offsetInCU: 0x852, offset: 0x7E02B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x590, symBinAddr: 0x33580, symSize: 0x80 } - - { offsetInCU: 0x866, offset: 0x7E03F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x610, symBinAddr: 0x33600, symSize: 0xD0 } - - { offsetInCU: 0x87A, offset: 0x7E053, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x6E0, symBinAddr: 0x336D0, symSize: 0x10 } - - { offsetInCU: 0x88E, offset: 0x7E067, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x6F0, symBinAddr: 0x336E0, symSize: 0x10 } - - { offsetInCU: 0x8A2, offset: 0x7E07B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x700, symBinAddr: 0x336F0, symSize: 0x10 } - - { offsetInCU: 0x8B6, offset: 0x7E08F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x710, symBinAddr: 0x33700, symSize: 0x10 } - - { offsetInCU: 0x8CA, offset: 0x7E0A3, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x720, symBinAddr: 0x33710, symSize: 0x10 } - - { offsetInCU: 0x8DE, offset: 0x7E0B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x730, symBinAddr: 0x33720, symSize: 0x20 } - - { offsetInCU: 0x8F2, offset: 0x7E0CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x750, symBinAddr: 0x33740, symSize: 0x20 } - - { offsetInCU: 0x906, offset: 0x7E0DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x770, symBinAddr: 0x33760, symSize: 0x10 } - - { offsetInCU: 0x91A, offset: 0x7E0F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x780, symBinAddr: 0x33770, symSize: 0x10 } - - { offsetInCU: 0x92E, offset: 0x7E107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x790, symBinAddr: 0x33780, symSize: 0x10 } - - { offsetInCU: 0x942, offset: 0x7E11B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x7A0, symBinAddr: 0x33790, symSize: 0x10 } - - { offsetInCU: 0x9B9, offset: 0x7E192, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x7B0, symBinAddr: 0x337A0, symSize: 0x2A0 } - - { offsetInCU: 0xC56, offset: 0x7E42F, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAB0, symBinAddr: 0x33A40, symSize: 0x30 } - - { offsetInCU: 0xCF9, offset: 0x7E4D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x390, symBinAddr: 0x333A0, symSize: 0x10 } - - { offsetInCU: 0xD15, offset: 0x7E4EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x3A0, symBinAddr: 0x333B0, symSize: 0x10 } - - { offsetInCU: 0xD31, offset: 0x7E50A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x3B0, symBinAddr: 0x333C0, symSize: 0x10 } - - { offsetInCU: 0xD4D, offset: 0x7E526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x3C0, symBinAddr: 0x333D0, symSize: 0x10 } - - { offsetInCU: 0xD96, offset: 0x7E56F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4B0, symBinAddr: 0x334C0, symSize: 0x40 } - - { offsetInCU: 0xE33, offset: 0x7E60C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x530, symBinAddr: 0x33540, symSize: 0x10 } - - { offsetInCU: 0xE4F, offset: 0x7E628, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x540, symBinAddr: 0x33550, symSize: 0x10 } - - { offsetInCU: 0xE6B, offset: 0x7E644, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x550, symBinAddr: 0x33560, symSize: 0x10 } - - { offsetInCU: 0xE87, offset: 0x7E660, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x560, symBinAddr: 0x33570, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x7E85A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x33A70, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x7E898, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x20, symBinAddr: 0x33A90, symSize: 0x10 } - - { offsetInCU: 0x92, offset: 0x7E8C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xB0, symBinAddr: 0x33B20, symSize: 0x90 } - - { offsetInCU: 0xC1, offset: 0x7E8F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x140, symBinAddr: 0x33BB0, symSize: 0x50 } - - { offsetInCU: 0xDE, offset: 0x7E90D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x240, symBinAddr: 0x33CB0, symSize: 0x30 } - - { offsetInCU: 0x10F, offset: 0x7E93E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x33CE0, symSize: 0x10 } - - { offsetInCU: 0x12B, offset: 0x7E95A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x280, symBinAddr: 0x33CF0, symSize: 0x10 } - - { offsetInCU: 0x148, offset: 0x7E977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x33A70, symSize: 0x20 } - - { offsetInCU: 0x1B7, offset: 0x7E9E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x30, symBinAddr: 0x33AA0, symSize: 0x50 } - - { offsetInCU: 0x247, offset: 0x7EA76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x420, symBinAddr: 0x33E90, symSize: 0x20 } - - { offsetInCU: 0x278, offset: 0x7EAA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x440, symBinAddr: 0x33EB0, symSize: 0x10 } - - { offsetInCU: 0x2AA, offset: 0x7EAD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x33EC0, symSize: 0x30 } - - { offsetInCU: 0x2D6, offset: 0x7EB05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0x80, symBinAddr: 0x33AF0, symSize: 0x20 } - - { offsetInCU: 0x33C, offset: 0x7EB6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xA0, symBinAddr: 0x33B10, symSize: 0x10 } - - { offsetInCU: 0x389, offset: 0x7EBB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x290, symBinAddr: 0x33D00, symSize: 0x10 } - - { offsetInCU: 0x3B5, offset: 0x7EBE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x2A0, symBinAddr: 0x33D10, symSize: 0x10 } - - { offsetInCU: 0x3E1, offset: 0x7EC10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x2B0, symBinAddr: 0x33D20, symSize: 0x10 } - - { offsetInCU: 0x40D, offset: 0x7EC3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x2C0, symBinAddr: 0x33D30, symSize: 0x10 } - - { offsetInCU: 0x421, offset: 0x7EC50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x2D0, symBinAddr: 0x33D40, symSize: 0x30 } - - { offsetInCU: 0x435, offset: 0x7EC64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x300, symBinAddr: 0x33D70, symSize: 0x10 } - - { offsetInCU: 0x47F, offset: 0x7ECAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x310, symBinAddr: 0x33D80, symSize: 0x10 } - - { offsetInCU: 0x4F0, offset: 0x7ED1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x320, symBinAddr: 0x33D90, symSize: 0x10 } - - { offsetInCU: 0x561, offset: 0x7ED90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x330, symBinAddr: 0x33DA0, symSize: 0x10 } - - { offsetInCU: 0x5D2, offset: 0x7EE01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x340, symBinAddr: 0x33DB0, symSize: 0x10 } - - { offsetInCU: 0x60D, offset: 0x7EE3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x350, symBinAddr: 0x33DC0, symSize: 0x10 } - - { offsetInCU: 0x621, offset: 0x7EE50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x4A0, symBinAddr: 0x33EF0, symSize: 0x80 } - - { offsetInCU: 0x635, offset: 0x7EE64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x520, symBinAddr: 0x33F70, symSize: 0xD0 } - - { offsetInCU: 0x649, offset: 0x7EE78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x5F0, symBinAddr: 0x34040, symSize: 0x10 } - - { offsetInCU: 0x65D, offset: 0x7EE8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x600, symBinAddr: 0x34050, symSize: 0x10 } - - { offsetInCU: 0x671, offset: 0x7EEA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x610, symBinAddr: 0x34060, symSize: 0x10 } - - { offsetInCU: 0x685, offset: 0x7EEB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x620, symBinAddr: 0x34070, symSize: 0x10 } - - { offsetInCU: 0x699, offset: 0x7EEC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x630, symBinAddr: 0x34080, symSize: 0x10 } - - { offsetInCU: 0x6AD, offset: 0x7EEDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x640, symBinAddr: 0x34090, symSize: 0x2E } - - { offsetInCU: 0x6F0, offset: 0x7EF1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x190, symBinAddr: 0x33C00, symSize: 0x10 } - - { offsetInCU: 0x781, offset: 0x7EFB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1A0, symBinAddr: 0x33C10, symSize: 0x40 } - - { offsetInCU: 0x810, offset: 0x7F03F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1E0, symBinAddr: 0x33C50, symSize: 0x20 } - - { offsetInCU: 0x863, offset: 0x7F092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x33C70, symSize: 0x40 } - - { offsetInCU: 0x8CF, offset: 0x7F0FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x360, symBinAddr: 0x33DD0, symSize: 0x10 } - - { offsetInCU: 0x960, offset: 0x7F18F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x370, symBinAddr: 0x33DE0, symSize: 0x40 } - - { offsetInCU: 0xA41, offset: 0x7F270, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x3B0, symBinAddr: 0x33E20, symSize: 0x30 } - - { offsetInCU: 0xAC6, offset: 0x7F2F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x3E0, symBinAddr: 0x33E50, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x7F4C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x340C0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x7F4EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x340C0, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x7F517, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x340D0, symSize: 0x10 } - - { offsetInCU: 0x140, offset: 0x7F5E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x340E0, symSize: 0xE0 } - - { offsetInCU: 0x303, offset: 0x7F7A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwCP', symObjAddr: 0x100, symBinAddr: 0x341C0, symSize: 0x30 } - - { offsetInCU: 0x317, offset: 0x7F7B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0x130, symBinAddr: 0x341F0, symSize: 0x10 } - - { offsetInCU: 0x32B, offset: 0x7F7CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwcp', symObjAddr: 0x140, symBinAddr: 0x34200, symSize: 0x30 } - - { offsetInCU: 0x33F, offset: 0x7F7E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x170, symBinAddr: 0x34230, symSize: 0x50 } - - { offsetInCU: 0x353, offset: 0x7F7F4, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x1C0, symBinAddr: 0x34280, symSize: 0x10 } - - { offsetInCU: 0x367, offset: 0x7F808, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x1D0, symBinAddr: 0x34290, symSize: 0x30 } - - { offsetInCU: 0x37B, offset: 0x7F81C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x200, symBinAddr: 0x342C0, symSize: 0x50 } - - { offsetInCU: 0x38F, offset: 0x7F830, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x250, symBinAddr: 0x34310, symSize: 0x50 } - - { offsetInCU: 0x3A3, offset: 0x7F844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x2A0, symBinAddr: 0x34360, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x7F992, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34370, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x7F9B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34370, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x7F9E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x34380, symSize: 0x10 } - - { offsetInCU: 0xB8, offset: 0x7FA23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x34390, symSize: 0x20 } - - { offsetInCU: 0x125, offset: 0x7FA90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x40, symBinAddr: 0x343B0, symSize: 0xF0 } - - { offsetInCU: 0x26C, offset: 0x7FBD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x130, symBinAddr: 0x344A0, symSize: 0x120 } - - { offsetInCU: 0x39C, offset: 0x7FD07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwCP', symObjAddr: 0x290, symBinAddr: 0x345C0, symSize: 0x50 } - - { offsetInCU: 0x3B0, offset: 0x7FD1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x2E0, symBinAddr: 0x34610, symSize: 0x30 } - - { offsetInCU: 0x3C4, offset: 0x7FD2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwcp', symObjAddr: 0x310, symBinAddr: 0x34640, symSize: 0x50 } - - { offsetInCU: 0x3D8, offset: 0x7FD43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x360, symBinAddr: 0x34690, symSize: 0x70 } - - { offsetInCU: 0x3EC, offset: 0x7FD57, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x3D0, symBinAddr: 0x34700, symSize: 0x20 } - - { offsetInCU: 0x400, offset: 0x7FD6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x3F0, symBinAddr: 0x34720, symSize: 0x50 } - - { offsetInCU: 0x414, offset: 0x7FD7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x440, symBinAddr: 0x34770, symSize: 0x50 } - - { offsetInCU: 0x428, offset: 0x7FD93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x490, symBinAddr: 0x347C0, symSize: 0x50 } - - { offsetInCU: 0x43C, offset: 0x7FDA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x4E0, symBinAddr: 0x34810, symSize: 0xA } - - { offsetInCU: 0x4F, offset: 0x7FF57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34820, symSize: 0x10 } - - { offsetInCU: 0x7A, offset: 0x7FF82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x34830, symSize: 0x10 } - - { offsetInCU: 0xAC, offset: 0x7FFB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8clientIDACSS_tcfCTf4gd_nTf4n_g', symObjAddr: 0x1000, symBinAddr: 0x357E0, symSize: 0x100 } - - { offsetInCU: 0x1C6, offset: 0x800CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x34840, symSize: 0x330 } - - { offsetInCU: 0x56B, offset: 0x80473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x350, symBinAddr: 0x34B70, symSize: 0x3A0 } - - { offsetInCU: 0x968, offset: 0x80870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x6F0, symBinAddr: 0x34F10, symSize: 0x2C0 } - - { offsetInCU: 0xC92, offset: 0x80B9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x9B0, symBinAddr: 0x351D0, symSize: 0x2C0 } - - { offsetInCU: 0x1093, offset: 0x80F9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xC70, symBinAddr: 0x35490, symSize: 0x2E0 } - - { offsetInCU: 0x133A, offset: 0x81242, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xF50, symBinAddr: 0x35770, symSize: 0x40 } - - { offsetInCU: 0x1356, offset: 0x8125E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0x1160, symBinAddr: 0x358E0, symSize: 0x30 } - - { offsetInCU: 0x136A, offset: 0x81272, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0x11F0, symBinAddr: 0x35910, symSize: 0x90 } - - { offsetInCU: 0x137E, offset: 0x81286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x1280, symBinAddr: 0x359A0, symSize: 0x1A0 } - - { offsetInCU: 0x1392, offset: 0x8129A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x1420, symBinAddr: 0x35B40, symSize: 0x230 } - - { offsetInCU: 0x13A6, offset: 0x812AE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x1650, symBinAddr: 0x35D70, symSize: 0x30 } - - { offsetInCU: 0x13BA, offset: 0x812C2, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x1680, symBinAddr: 0x35DA0, symSize: 0x10 } - - { offsetInCU: 0x13CE, offset: 0x812D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x1690, symBinAddr: 0x35DB0, symSize: 0x1A0 } - - { offsetInCU: 0x13E2, offset: 0x812EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x1830, symBinAddr: 0x35F50, symSize: 0x40 } - - { offsetInCU: 0x13F6, offset: 0x812FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x1870, symBinAddr: 0x35F90, symSize: 0x70 } - - { offsetInCU: 0x140A, offset: 0x81312, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x18E0, symBinAddr: 0x36000, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x814D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36010, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x81501, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36020, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x815A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x36030, symSize: 0xF0 } - - { offsetInCU: 0x2FC, offset: 0x81787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0x110, symBinAddr: 0x36120, symSize: 0x2D0 } - - { offsetInCU: 0x6DB, offset: 0x81B66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3E0, symBinAddr: 0x363F0, symSize: 0x10 } - - { offsetInCU: 0x70D, offset: 0x81B98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV11descriptionSSvgTf4d_n', symObjAddr: 0x3F0, symBinAddr: 0x36400, symSize: 0x20 } - - { offsetInCU: 0x72B, offset: 0x81BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x480, symBinAddr: 0x36450, symSize: 0x30 } - - { offsetInCU: 0x73F, offset: 0x81BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x4B0, symBinAddr: 0x36480, symSize: 0x30 } - - { offsetInCU: 0x753, offset: 0x81BDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x4E0, symBinAddr: 0x364B0, symSize: 0x70 } - - { offsetInCU: 0x767, offset: 0x81BF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x550, symBinAddr: 0x36520, symSize: 0xA0 } - - { offsetInCU: 0x77B, offset: 0x81C06, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x5F0, symBinAddr: 0x365C0, symSize: 0x30 } - - { offsetInCU: 0x78F, offset: 0x81C1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x620, symBinAddr: 0x365F0, symSize: 0x70 } - - { offsetInCU: 0x7A3, offset: 0x81C2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x690, symBinAddr: 0x36660, symSize: 0x50 } - - { offsetInCU: 0x7B7, offset: 0x81C42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x6E0, symBinAddr: 0x366B0, symSize: 0x50 } - - { offsetInCU: 0x7CB, offset: 0x81C56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x730, symBinAddr: 0x36700, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x81DD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36710, symSize: 0x10 } - - { offsetInCU: 0x46, offset: 0x81DF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36710, symSize: 0x10 } - - { offsetInCU: 0x71, offset: 0x81E21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36720, symSize: 0x10 } - - { offsetInCU: 0xB3, offset: 0x81E63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x36730, symSize: 0x10 } - - { offsetInCU: 0xE5, offset: 0x81E95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqV11descriptionSSvgTf4d_n', symObjAddr: 0x30, symBinAddr: 0x36740, symSize: 0x20 } - - { offsetInCU: 0x103, offset: 0x81EB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x50, symBinAddr: 0x36760, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x81F7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36770, symSize: 0x10 } - - { offsetInCU: 0x46, offset: 0x81F9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36770, symSize: 0x10 } - - { offsetInCU: 0x71, offset: 0x81FC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36780, symSize: 0x10 } - - { offsetInCU: 0xB3, offset: 0x8200B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x36790, symSize: 0x10 } - - { offsetInCU: 0xE5, offset: 0x8203D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespV11descriptionSSvgTf4d_n', symObjAddr: 0x30, symBinAddr: 0x367A0, symSize: 0x20 } - - { offsetInCU: 0x103, offset: 0x8205B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x50, symBinAddr: 0x367C0, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x8214B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x367D0, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x82176, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x367E0, symSize: 0x10 } - - { offsetInCU: 0x156, offset: 0x82256, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x367F0, symSize: 0x130 } - - { offsetInCU: 0x3A7, offset: 0x824A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x36920, symSize: 0x160 } - - { offsetInCU: 0x53C, offset: 0x8263C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV11descriptionSSvg', symObjAddr: 0x2B0, symBinAddr: 0x36A80, symSize: 0x90 } - - { offsetInCU: 0x595, offset: 0x82695, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x340, symBinAddr: 0x36B10, symSize: 0x40 } - - { offsetInCU: 0x60B, offset: 0x8270B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x380, symBinAddr: 0x36B50, symSize: 0x230 } - - { offsetInCU: 0x7A5, offset: 0x828A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x620, symBinAddr: 0x36DB0, symSize: 0x30 } - - { offsetInCU: 0x7B9, offset: 0x828B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x650, symBinAddr: 0x36DE0, symSize: 0x30 } - - { offsetInCU: 0x7CD, offset: 0x828CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x680, symBinAddr: 0x36E10, symSize: 0x60 } - - { offsetInCU: 0x7E1, offset: 0x828E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x6E0, symBinAddr: 0x36E70, symSize: 0x90 } - - { offsetInCU: 0x7F5, offset: 0x828F5, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x770, symBinAddr: 0x36F00, symSize: 0x20 } - - { offsetInCU: 0x809, offset: 0x82909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x790, symBinAddr: 0x36F20, symSize: 0x60 } - - { offsetInCU: 0x81D, offset: 0x8291D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x7F0, symBinAddr: 0x36F80, symSize: 0x50 } - - { offsetInCU: 0x831, offset: 0x82931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x840, symBinAddr: 0x36FD0, symSize: 0x50 } - - { offsetInCU: 0x845, offset: 0x82945, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x890, symBinAddr: 0x37020, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x82B1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37030, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x82B49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x37040, symSize: 0x10 } - - { offsetInCU: 0x156, offset: 0x82C29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x37050, symSize: 0x130 } - - { offsetInCU: 0x3A7, offset: 0x82E7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x37180, symSize: 0x160 } - - { offsetInCU: 0x53C, offset: 0x8300F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV11descriptionSSvg', symObjAddr: 0x2B0, symBinAddr: 0x372E0, symSize: 0x90 } - - { offsetInCU: 0x595, offset: 0x83068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x340, symBinAddr: 0x37370, symSize: 0x40 } - - { offsetInCU: 0x5E4, offset: 0x830B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x380, symBinAddr: 0x373B0, symSize: 0x100 } - - { offsetInCU: 0x6C6, offset: 0x83199, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x4F0, symBinAddr: 0x374E0, symSize: 0x30 } - - { offsetInCU: 0x6DA, offset: 0x831AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x520, symBinAddr: 0x37510, symSize: 0x30 } - - { offsetInCU: 0x6EE, offset: 0x831C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x550, symBinAddr: 0x37540, symSize: 0x60 } - - { offsetInCU: 0x702, offset: 0x831D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x5B0, symBinAddr: 0x375A0, symSize: 0x90 } - - { offsetInCU: 0x716, offset: 0x831E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x660, symBinAddr: 0x37630, symSize: 0x60 } - - { offsetInCU: 0x72A, offset: 0x831FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x6C0, symBinAddr: 0x37690, symSize: 0x50 } - - { offsetInCU: 0x73E, offset: 0x83211, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x710, symBinAddr: 0x376E0, symSize: 0x50 } - - { offsetInCU: 0x752, offset: 0x83225, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x760, symBinAddr: 0x37730, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x833C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37740, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x833EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37740, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x83416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x37750, symSize: 0x10 } - - { offsetInCU: 0xA8, offset: 0x83448, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV5topic7payload3qos5msgidACSS_Says5UInt8VGAA0A7MQTTQoSOs6UInt16VtcfCTf4nnnnd_n', symObjAddr: 0x490, symBinAddr: 0x37BD0, symSize: 0x60 } - - { offsetInCU: 0x1F2, offset: 0x83592, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x37760, symSize: 0x120 } - - { offsetInCU: 0x3C2, offset: 0x83762, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x140, symBinAddr: 0x37880, symSize: 0x1B0 } - - { offsetInCU: 0x672, offset: 0x83A12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2F0, symBinAddr: 0x37A30, symSize: 0x140 } - - { offsetInCU: 0x806, offset: 0x83BA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x430, symBinAddr: 0x37B70, symSize: 0x60 } - - { offsetInCU: 0x9CB, offset: 0x83D6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x4F0, symBinAddr: 0x37C30, symSize: 0x7D0 } - - { offsetInCU: 0xF99, offset: 0x84339, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xCC0, symBinAddr: 0x38400, symSize: 0x40 } - - { offsetInCU: 0xFAD, offset: 0x8434D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xD40, symBinAddr: 0x38440, symSize: 0x30 } - - { offsetInCU: 0xFC1, offset: 0x84361, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xD70, symBinAddr: 0x38470, symSize: 0x50 } - - { offsetInCU: 0xFD5, offset: 0x84375, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xDC0, symBinAddr: 0x384C0, symSize: 0xD0 } - - { offsetInCU: 0xFE9, offset: 0x84389, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xE90, symBinAddr: 0x38590, symSize: 0x110 } - - { offsetInCU: 0xFFD, offset: 0x8439D, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xFA0, symBinAddr: 0x386A0, symSize: 0x40 } - - { offsetInCU: 0x1011, offset: 0x843B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xFE0, symBinAddr: 0x386E0, symSize: 0xC0 } - - { offsetInCU: 0x1025, offset: 0x843C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0x10A0, symBinAddr: 0x387A0, symSize: 0x40 } - - { offsetInCU: 0x1039, offset: 0x843D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0x10E0, symBinAddr: 0x387E0, symSize: 0x60 } - - { offsetInCU: 0x104D, offset: 0x843ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0x1140, symBinAddr: 0x38840, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x84655, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38850, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x84680, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x38860, symSize: 0x10 } - - { offsetInCU: 0x156, offset: 0x84760, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x38870, symSize: 0x130 } - - { offsetInCU: 0x3A7, offset: 0x849B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x389A0, symSize: 0x160 } - - { offsetInCU: 0x53C, offset: 0x84B46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV11descriptionSSvg', symObjAddr: 0x2B0, symBinAddr: 0x38B00, symSize: 0x90 } - - { offsetInCU: 0x595, offset: 0x84B9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x340, symBinAddr: 0x38B90, symSize: 0x40 } - - { offsetInCU: 0x5E4, offset: 0x84BEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x380, symBinAddr: 0x38BD0, symSize: 0x100 } - - { offsetInCU: 0x6C6, offset: 0x84CD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x4F0, symBinAddr: 0x38D00, symSize: 0x30 } - - { offsetInCU: 0x6DA, offset: 0x84CE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x520, symBinAddr: 0x38D30, symSize: 0x30 } - - { offsetInCU: 0x6EE, offset: 0x84CF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x550, symBinAddr: 0x38D60, symSize: 0x60 } - - { offsetInCU: 0x702, offset: 0x84D0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x5B0, symBinAddr: 0x38DC0, symSize: 0x90 } - - { offsetInCU: 0x716, offset: 0x84D20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x660, symBinAddr: 0x38E50, symSize: 0x60 } - - { offsetInCU: 0x72A, offset: 0x84D34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x6C0, symBinAddr: 0x38EB0, symSize: 0x50 } - - { offsetInCU: 0x73E, offset: 0x84D48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x710, symBinAddr: 0x38F00, symSize: 0x50 } - - { offsetInCU: 0x752, offset: 0x84D5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x760, symBinAddr: 0x38F50, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x84F22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38F60, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x84F4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x38F70, symSize: 0x10 } - - { offsetInCU: 0x156, offset: 0x8502D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x38F80, symSize: 0x100 } - - { offsetInCU: 0x392, offset: 0x85269, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x120, symBinAddr: 0x39080, symSize: 0x160 } - - { offsetInCU: 0x527, offset: 0x853FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV11descriptionSSvg', symObjAddr: 0x280, symBinAddr: 0x391E0, symSize: 0x90 } - - { offsetInCU: 0x580, offset: 0x85457, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0x39270, symSize: 0x40 } - - { offsetInCU: 0x5A7, offset: 0x8547E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x350, symBinAddr: 0x392B0, symSize: 0x100 } - - { offsetInCU: 0x689, offset: 0x85560, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x4C0, symBinAddr: 0x393E0, symSize: 0x30 } - - { offsetInCU: 0x69D, offset: 0x85574, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x4F0, symBinAddr: 0x39410, symSize: 0x30 } - - { offsetInCU: 0x6B1, offset: 0x85588, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x520, symBinAddr: 0x39440, symSize: 0x70 } - - { offsetInCU: 0x6C5, offset: 0x8559C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x590, symBinAddr: 0x394B0, symSize: 0x90 } - - { offsetInCU: 0x6D9, offset: 0x855B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x640, symBinAddr: 0x39540, symSize: 0x60 } - - { offsetInCU: 0x6ED, offset: 0x855C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x6A0, symBinAddr: 0x395A0, symSize: 0x50 } - - { offsetInCU: 0x701, offset: 0x855D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x6F0, symBinAddr: 0x395F0, symSize: 0x50 } - - { offsetInCU: 0x715, offset: 0x855EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x740, symBinAddr: 0x39640, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x8578E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x39650, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x857B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x39650, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x857DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x39660, symSize: 0x10 } - - { offsetInCU: 0xA9, offset: 0x85810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV11descriptionSSvg', symObjAddr: 0x20, symBinAddr: 0x39670, symSize: 0x90 } - - { offsetInCU: 0x102, offset: 0x85869, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xB0, symBinAddr: 0x39700, symSize: 0x40 } - - { offsetInCU: 0x2DA, offset: 0x85A41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF0, symBinAddr: 0x39740, symSize: 0x5A0 } - - { offsetInCU: 0xA53, offset: 0x861BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x690, symBinAddr: 0x39CE0, symSize: 0x30 } - - { offsetInCU: 0xA67, offset: 0x861CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x6C0, symBinAddr: 0x39D10, symSize: 0x40 } - - { offsetInCU: 0xA7B, offset: 0x861E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x700, symBinAddr: 0x39D50, symSize: 0x90 } - - { offsetInCU: 0xA8F, offset: 0x861F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x790, symBinAddr: 0x39DE0, symSize: 0xC0 } - - { offsetInCU: 0xAA3, offset: 0x8620A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x880, symBinAddr: 0x39EA0, symSize: 0x80 } - - { offsetInCU: 0xAB7, offset: 0x8621E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x900, symBinAddr: 0x39F20, symSize: 0x40 } - - { offsetInCU: 0xACB, offset: 0x86232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x940, symBinAddr: 0x39F60, symSize: 0x50 } - - { offsetInCU: 0xADF, offset: 0x86246, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x990, symBinAddr: 0x39FB0, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x8647A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x39FC0, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x864A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x39FD0, symSize: 0x10 } - - { offsetInCU: 0xA8, offset: 0x864D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV5msgid16subscriptionList16packetIdentifier0fI012userPropertyACs6UInt16V_SayAA16MqttSubscriptionCGAJSgs6UInt32VSgSDyS2SGtcfCTf4nnnnnd_n', symObjAddr: 0xE50, symBinAddr: 0x3ADD0, symSize: 0xE0 } - - { offsetInCU: 0x192, offset: 0x865C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x39FE0, symSize: 0xB0 } - - { offsetInCU: 0x3B5, offset: 0x867E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xD0, symBinAddr: 0x3A090, symSize: 0x270 } - - { offsetInCU: 0x800, offset: 0x86C2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x340, symBinAddr: 0x3A300, symSize: 0x210 } - - { offsetInCU: 0xCAD, offset: 0x870DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x550, symBinAddr: 0x3A510, symSize: 0x680 } - - { offsetInCU: 0x1165, offset: 0x87594, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBD0, symBinAddr: 0x3AB90, symSize: 0x40 } - - { offsetInCU: 0x1181, offset: 0x875B0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xC50, symBinAddr: 0x3ABD0, symSize: 0x200 } - - { offsetInCU: 0x11E7, offset: 0x87616, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xF60, symBinAddr: 0x3AEE0, symSize: 0x20 } - - { offsetInCU: 0x11FB, offset: 0x8762A, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xF80, symBinAddr: 0x3AF00, symSize: 0x20 } - - { offsetInCU: 0x120F, offset: 0x8763E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xFA0, symBinAddr: 0x3AF20, symSize: 0x30 } - - { offsetInCU: 0x1223, offset: 0x87652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xFD0, symBinAddr: 0x3AF50, symSize: 0x30 } - - { offsetInCU: 0x1237, offset: 0x87666, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0x1000, symBinAddr: 0x3AF80, symSize: 0x80 } - - { offsetInCU: 0x124B, offset: 0x8767A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0x1080, symBinAddr: 0x3B000, symSize: 0xA0 } - - { offsetInCU: 0x125F, offset: 0x8768E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0x1140, symBinAddr: 0x3B0A0, symSize: 0x80 } - - { offsetInCU: 0x1273, offset: 0x876A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0x11C0, symBinAddr: 0x3B120, symSize: 0x50 } - - { offsetInCU: 0x1287, offset: 0x876B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x1210, symBinAddr: 0x3B170, symSize: 0x50 } - - { offsetInCU: 0x129B, offset: 0x876CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x1260, symBinAddr: 0x3B1C0, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x87A9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3B1D0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x87ABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3B1D0, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x87AEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x3B1E0, symSize: 0x10 } - - { offsetInCU: 0xBF, offset: 0x87B33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x20, symBinAddr: 0x3B1F0, symSize: 0xC0 } - - { offsetInCU: 0x157, offset: 0x87BCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xE0, symBinAddr: 0x3B2B0, symSize: 0x40 } - - { offsetInCU: 0x1A6, offset: 0x87C1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x120, symBinAddr: 0x3B2F0, symSize: 0x120 } - - { offsetInCU: 0x280, offset: 0x87CF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x240, symBinAddr: 0x3B410, symSize: 0x30 } - - { offsetInCU: 0x294, offset: 0x87D08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x270, symBinAddr: 0x3B440, symSize: 0x40 } - - { offsetInCU: 0x2A8, offset: 0x87D1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x2B0, symBinAddr: 0x3B480, symSize: 0x70 } - - { offsetInCU: 0x2BC, offset: 0x87D30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x320, symBinAddr: 0x3B4F0, symSize: 0xA0 } - - { offsetInCU: 0x2D0, offset: 0x87D44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x3E0, symBinAddr: 0x3B590, symSize: 0x70 } - - { offsetInCU: 0x2E4, offset: 0x87D58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x450, symBinAddr: 0x3B600, symSize: 0x40 } - - { offsetInCU: 0x2F8, offset: 0x87D6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x490, symBinAddr: 0x3B640, symSize: 0x50 } - - { offsetInCU: 0x30C, offset: 0x87D80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x4E0, symBinAddr: 0x3B690, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x87E9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3B6A0, symSize: 0x10 } - - { offsetInCU: 0x46, offset: 0x87EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3B6A0, symSize: 0x10 } - - { offsetInCU: 0x71, offset: 0x87EE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x3B6B0, symSize: 0x10 } - - { offsetInCU: 0xB3, offset: 0x87F2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x3B6C0, symSize: 0x30 } - - { offsetInCU: 0x1C3, offset: 0x8803B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x50, symBinAddr: 0x3B6F0, symSize: 0x170 } - - { offsetInCU: 0x4A3, offset: 0x8831B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1C0, symBinAddr: 0x3B860, symSize: 0x90 } - - { offsetInCU: 0x603, offset: 0x8847B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x250, symBinAddr: 0x3B8F0, symSize: 0x150 } - - { offsetInCU: 0x996, offset: 0x8880E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x3A0, symBinAddr: 0x3BA40, symSize: 0x610 } - - { offsetInCU: 0xE3E, offset: 0x88CB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x9F0, symBinAddr: 0x3C050, symSize: 0x30 } - - { offsetInCU: 0xE52, offset: 0x88CCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0xA20, symBinAddr: 0x3C080, symSize: 0x30 } - - { offsetInCU: 0xE66, offset: 0x88CDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0xA50, symBinAddr: 0x3C0B0, symSize: 0x60 } - - { offsetInCU: 0xE7A, offset: 0x88CF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0xAB0, symBinAddr: 0x3C110, symSize: 0x80 } - - { offsetInCU: 0xE8E, offset: 0x88D06, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xB30, symBinAddr: 0x3C190, symSize: 0x20 } - - { offsetInCU: 0xEA2, offset: 0x88D1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xB50, symBinAddr: 0x3C1B0, symSize: 0x60 } - - { offsetInCU: 0xEB6, offset: 0x88D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xBB0, symBinAddr: 0x3C210, symSize: 0x50 } - - { offsetInCU: 0xECA, offset: 0x88D42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xC00, symBinAddr: 0x3C260, symSize: 0x50 } - - { offsetInCU: 0xEDE, offset: 0x88D56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xC50, symBinAddr: 0x3C2B0, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x89092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x40, symBinAddr: 0x3C300, symSize: 0x40 } - - { offsetInCU: 0x7A, offset: 0x890C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0xC0, symBinAddr: 0x3C380, symSize: 0x40 } - - { offsetInCU: 0xA9, offset: 0x890F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x1D0, symBinAddr: 0x3C490, symSize: 0x40 } - - { offsetInCU: 0xD8, offset: 0x8911F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x2D0, symBinAddr: 0x3C590, symSize: 0x40 } - - { offsetInCU: 0x107, offset: 0x8914E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x3C5D0, symSize: 0x10 } - - { offsetInCU: 0x1AA, offset: 0x891F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x320, symBinAddr: 0x3C5E0, symSize: 0x2F0 } - - { offsetInCU: 0x5DA, offset: 0x89621, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x610, symBinAddr: 0x3C8D0, symSize: 0x20 } - - { offsetInCU: 0x5F8, offset: 0x8963F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x630, symBinAddr: 0x3C8F0, symSize: 0x70 } - - { offsetInCU: 0x633, offset: 0x8967A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x6A0, symBinAddr: 0x3C960, symSize: 0x70 } - - { offsetInCU: 0x66E, offset: 0x896B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x710, symBinAddr: 0x3C9D0, symSize: 0x30 } - - { offsetInCU: 0x740, offset: 0x89787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x740, symBinAddr: 0x3CA00, symSize: 0x60 } - - { offsetInCU: 0x76F, offset: 0x897B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x7A0, symBinAddr: 0x3CA60, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8993D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x40, symBinAddr: 0x3CAF0, symSize: 0x40 } - - { offsetInCU: 0x7A, offset: 0x8996C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0xC0, symBinAddr: 0x3CB70, symSize: 0x40 } - - { offsetInCU: 0xA9, offset: 0x8999B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x1D0, symBinAddr: 0x3CC80, symSize: 0x40 } - - { offsetInCU: 0xD8, offset: 0x899CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x2E0, symBinAddr: 0x3CD90, symSize: 0x40 } - - { offsetInCU: 0x107, offset: 0x899F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x360, symBinAddr: 0x3CE10, symSize: 0x40 } - - { offsetInCU: 0x136, offset: 0x89A28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x470, symBinAddr: 0x3CF20, symSize: 0x40 } - - { offsetInCU: 0x165, offset: 0x89A57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x4F0, symBinAddr: 0x3CFA0, symSize: 0x40 } - - { offsetInCU: 0x194, offset: 0x89A86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x530, symBinAddr: 0x3CFE0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x89AB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x540, symBinAddr: 0x3CFF0, symSize: 0x50 } - - { offsetInCU: 0x1DC, offset: 0x89ACE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x590, symBinAddr: 0x3D040, symSize: 0x50 } - - { offsetInCU: 0x219, offset: 0x89B0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x5E0, symBinAddr: 0x3D090, symSize: 0x40 } - - { offsetInCU: 0x248, offset: 0x89B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x6E0, symBinAddr: 0x3D190, symSize: 0x40 } - - { offsetInCU: 0x385, offset: 0x89C77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x720, symBinAddr: 0x3D1D0, symSize: 0x790 } - - { offsetInCU: 0xE77, offset: 0x8A769, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xEB0, symBinAddr: 0x3D960, symSize: 0x20 } - - { offsetInCU: 0xE95, offset: 0x8A787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xED0, symBinAddr: 0x3D980, symSize: 0xD0 } - - { offsetInCU: 0xEC2, offset: 0x8A7B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xFA0, symBinAddr: 0x3DA50, symSize: 0x20 } - - { offsetInCU: 0xEDE, offset: 0x8A7D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xFC0, symBinAddr: 0x3DA70, symSize: 0x30 } - - { offsetInCU: 0xFC6, offset: 0x8A8B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xFF0, symBinAddr: 0x3DAA0, symSize: 0x40 } - - { offsetInCU: 0xFF5, offset: 0x8A8E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0x1030, symBinAddr: 0x3DAE0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8AABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DB80, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8AADD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3DBA0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x8AB0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x60, symBinAddr: 0x3DBE0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8AB31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xB0, symBinAddr: 0x3DC30, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x8AB60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x130, symBinAddr: 0x3DCB0, symSize: 0x40 } - - { offsetInCU: 0x11B, offset: 0x8AB8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x1B0, symBinAddr: 0x3DD30, symSize: 0x40 } - - { offsetInCU: 0x14A, offset: 0x8ABBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1F0, symBinAddr: 0x3DD70, symSize: 0x40 } - - { offsetInCU: 0x177, offset: 0x8ABEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x230, symBinAddr: 0x3DDB0, symSize: 0x50 } - - { offsetInCU: 0x19E, offset: 0x8AC12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x280, symBinAddr: 0x3DE00, symSize: 0x40 } - - { offsetInCU: 0x1CD, offset: 0x8AC41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2C0, symBinAddr: 0x3DE40, symSize: 0x10 } - - { offsetInCU: 0x1F8, offset: 0x8AC6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2D0, symBinAddr: 0x3DE50, symSize: 0x30 } - - { offsetInCU: 0x225, offset: 0x8AC99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x320, symBinAddr: 0x3DEA0, symSize: 0x40 } - - { offsetInCU: 0x254, offset: 0x8ACC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x430, symBinAddr: 0x3DFB0, symSize: 0x40 } - - { offsetInCU: 0x283, offset: 0x8ACF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x4B0, symBinAddr: 0x3E030, symSize: 0x40 } - - { offsetInCU: 0x2B2, offset: 0x8AD26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x530, symBinAddr: 0x3E0B0, symSize: 0x40 } - - { offsetInCU: 0x2E1, offset: 0x8AD55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x5B0, symBinAddr: 0x3E130, symSize: 0x40 } - - { offsetInCU: 0x310, offset: 0x8AD84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x5F0, symBinAddr: 0x3E170, symSize: 0x40 } - - { offsetInCU: 0x33D, offset: 0x8ADB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x630, symBinAddr: 0x3E1B0, symSize: 0x50 } - - { offsetInCU: 0x37A, offset: 0x8ADEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x680, symBinAddr: 0x3E200, symSize: 0x40 } - - { offsetInCU: 0x399, offset: 0x8AE0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x6C0, symBinAddr: 0x3E240, symSize: 0x30 } - - { offsetInCU: 0x3C6, offset: 0x8AE3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x710, symBinAddr: 0x3E290, symSize: 0x40 } - - { offsetInCU: 0x3F5, offset: 0x8AE69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x750, symBinAddr: 0x3E2D0, symSize: 0x30 } - - { offsetInCU: 0x422, offset: 0x8AE96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x7A0, symBinAddr: 0x3E320, symSize: 0x40 } - - { offsetInCU: 0x451, offset: 0x8AEC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x7E0, symBinAddr: 0x3E360, symSize: 0x30 } - - { offsetInCU: 0x47E, offset: 0x8AEF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x870, symBinAddr: 0x3E3F0, symSize: 0x40 } - - { offsetInCU: 0x4AD, offset: 0x8AF21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x980, symBinAddr: 0x3E500, symSize: 0x40 } - - { offsetInCU: 0x4DC, offset: 0x8AF50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0xA00, symBinAddr: 0x3E580, symSize: 0x40 } - - { offsetInCU: 0x50B, offset: 0x8AF7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0xA80, symBinAddr: 0x3E600, symSize: 0x40 } - - { offsetInCU: 0x53A, offset: 0x8AFAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xB90, symBinAddr: 0x3E710, symSize: 0x40 } - - { offsetInCU: 0x569, offset: 0x8AFDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xBD0, symBinAddr: 0x3E750, symSize: 0x40 } - - { offsetInCU: 0x596, offset: 0x8B00A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xC10, symBinAddr: 0x3E790, symSize: 0x50 } - - { offsetInCU: 0x5BD, offset: 0x8B031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xC60, symBinAddr: 0x3E7E0, symSize: 0x40 } - - { offsetInCU: 0x8D4, offset: 0x8B348, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xCA0, symBinAddr: 0x3E820, symSize: 0xC80 } - - { offsetInCU: 0x13C0, offset: 0x8BE34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x1920, symBinAddr: 0x3F4A0, symSize: 0x170 } - - { offsetInCU: 0x13ED, offset: 0x8BE61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1A90, symBinAddr: 0x3F610, symSize: 0x20 } - - { offsetInCU: 0x1409, offset: 0x8BE7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1AB0, symBinAddr: 0x3F630, symSize: 0x30 } - - { offsetInCU: 0x1630, offset: 0x8C0A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x1AE0, symBinAddr: 0x3F660, symSize: 0x90 } - - { offsetInCU: 0x1675, offset: 0x8C0E9, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1B70, symBinAddr: 0x3F6F0, symSize: 0x60 } - - { offsetInCU: 0x16CD, offset: 0x8C141, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1BD0, symBinAddr: 0x3F750, symSize: 0x30 } - - { offsetInCU: 0x171A, offset: 0x8C18E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1C00, symBinAddr: 0x3F780, symSize: 0xE0 } - - { offsetInCU: 0x1764, offset: 0x8C1D8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1CE0, symBinAddr: 0x3F860, symSize: 0x90 } - - { offsetInCU: 0x1794, offset: 0x8C208, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1DD0, symBinAddr: 0x3F950, symSize: 0x220 } - - { offsetInCU: 0x1812, offset: 0x8C286, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1FF0, symBinAddr: 0x3FB70, symSize: 0x210 } - - { offsetInCU: 0x18AC, offset: 0x8C320, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x2620, symBinAddr: 0x401A0, symSize: 0x220 } - - { offsetInCU: 0x1946, offset: 0x8C3BA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x28A0, symBinAddr: 0x40420, symSize: 0x3C0 } - - { offsetInCU: 0x1A4A, offset: 0x8C4BE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x2C60, symBinAddr: 0x407E0, symSize: 0x3B0 } - - { offsetInCU: 0x1B6A, offset: 0x8C5DE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x36F0, symBinAddr: 0x41270, symSize: 0x3B0 } - - { offsetInCU: 0x1C7F, offset: 0x8C6F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x3AA0, symBinAddr: 0x41620, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8CA0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x41750, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8CA33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x41750, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8CA51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x41770, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x8CA7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x417B0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8CAA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x41800, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x8CAD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x41840, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x8CAFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x41850, symSize: 0x30 } - - { offsetInCU: 0x144, offset: 0x8CB2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x41880, symSize: 0x40 } - - { offsetInCU: 0x16B, offset: 0x8CB53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x418C0, symSize: 0x40 } - - { offsetInCU: 0x19A, offset: 0x8CB82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x41900, symSize: 0x50 } - - { offsetInCU: 0x1C7, offset: 0x8CBAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x41950, symSize: 0x50 } - - { offsetInCU: 0x1EE, offset: 0x8CBD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x419A0, symSize: 0x40 } - - { offsetInCU: 0x21D, offset: 0x8CC05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x419E0, symSize: 0x40 } - - { offsetInCU: 0x24A, offset: 0x8CC32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x41A20, symSize: 0x50 } - - { offsetInCU: 0x287, offset: 0x8CC6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x41A70, symSize: 0x40 } - - { offsetInCU: 0x2A6, offset: 0x8CC8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x41AB0, symSize: 0x10 } - - { offsetInCU: 0x2C2, offset: 0x8CCAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x41AC0, symSize: 0xA0 } - - { offsetInCU: 0x2EF, offset: 0x8CCD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x41B60, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x8CCF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x430, symBinAddr: 0x41B80, symSize: 0x30 } - - { offsetInCU: 0x470, offset: 0x8CE58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x41BE0, symSize: 0x6B0 } - - { offsetInCU: 0xB5A, offset: 0x8D542, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x460, symBinAddr: 0x41BB0, symSize: 0x30 } - - { offsetInCU: 0xD49, offset: 0x8D731, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xB40, symBinAddr: 0x42290, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8D993, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x422E0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8D9B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x422E0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8D9D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x42300, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x8DA02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x42340, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8DA29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x42390, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x8DA58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x423D0, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x8DA83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x423E0, symSize: 0x30 } - - { offsetInCU: 0x144, offset: 0x8DAB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x42410, symSize: 0x40 } - - { offsetInCU: 0x16B, offset: 0x8DAD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x42450, symSize: 0x40 } - - { offsetInCU: 0x19A, offset: 0x8DB06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x42490, symSize: 0x50 } - - { offsetInCU: 0x1C7, offset: 0x8DB33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x424E0, symSize: 0x50 } - - { offsetInCU: 0x1EE, offset: 0x8DB5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x42530, symSize: 0x40 } - - { offsetInCU: 0x21D, offset: 0x8DB89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x42570, symSize: 0x40 } - - { offsetInCU: 0x24A, offset: 0x8DBB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x425B0, symSize: 0x50 } - - { offsetInCU: 0x287, offset: 0x8DBF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x42600, symSize: 0x40 } - - { offsetInCU: 0x2A6, offset: 0x8DC12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x42640, symSize: 0x10 } - - { offsetInCU: 0x2C2, offset: 0x8DC2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x370, symBinAddr: 0x42650, symSize: 0xA0 } - - { offsetInCU: 0x2EF, offset: 0x8DC5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x426F0, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x8DC77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x430, symBinAddr: 0x42710, symSize: 0x30 } - - { offsetInCU: 0x470, offset: 0x8DDDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x42770, symSize: 0x690 } - - { offsetInCU: 0xB72, offset: 0x8E4DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x460, symBinAddr: 0x42740, symSize: 0x30 } - - { offsetInCU: 0xD78, offset: 0x8E6E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xB20, symBinAddr: 0x42E00, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8E96A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x42E50, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8E988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x42E70, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x8E9B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x60, symBinAddr: 0x42EB0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8E9DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xB0, symBinAddr: 0x42F00, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x8EA0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xF0, symBinAddr: 0x42F40, symSize: 0x40 } - - { offsetInCU: 0x119, offset: 0x8EA38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x130, symBinAddr: 0x42F80, symSize: 0x50 } - - { offsetInCU: 0x140, offset: 0x8EA5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x180, symBinAddr: 0x42FD0, symSize: 0x40 } - - { offsetInCU: 0x16F, offset: 0x8EA8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1C0, symBinAddr: 0x43010, symSize: 0x40 } - - { offsetInCU: 0x19C, offset: 0x8EABB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x200, symBinAddr: 0x43050, symSize: 0x50 } - - { offsetInCU: 0x1C3, offset: 0x8EAE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x250, symBinAddr: 0x430A0, symSize: 0x40 } - - { offsetInCU: 0x1F2, offset: 0x8EB11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2D0, symBinAddr: 0x43120, symSize: 0x40 } - - { offsetInCU: 0x221, offset: 0x8EB40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x43160, symSize: 0x10 } - - { offsetInCU: 0x24C, offset: 0x8EB6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x360, symBinAddr: 0x431B0, symSize: 0x40 } - - { offsetInCU: 0x27B, offset: 0x8EB9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3E0, symBinAddr: 0x43230, symSize: 0x40 } - - { offsetInCU: 0x2AA, offset: 0x8EBC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x4E0, symBinAddr: 0x43330, symSize: 0x40 } - - { offsetInCU: 0x2C9, offset: 0x8EBE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x560, symBinAddr: 0x433B0, symSize: 0x40 } - - { offsetInCU: 0x2F8, offset: 0x8EC17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x670, symBinAddr: 0x434C0, symSize: 0x40 } - - { offsetInCU: 0x327, offset: 0x8EC46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x6B0, symBinAddr: 0x43500, symSize: 0x50 } - - { offsetInCU: 0x344, offset: 0x8EC63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x700, symBinAddr: 0x43550, symSize: 0x50 } - - { offsetInCU: 0x36B, offset: 0x8EC8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x750, symBinAddr: 0x435A0, symSize: 0x40 } - - { offsetInCU: 0x39A, offset: 0x8ECB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x860, symBinAddr: 0x436B0, symSize: 0x40 } - - { offsetInCU: 0x3C9, offset: 0x8ECE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x950, symBinAddr: 0x437A0, symSize: 0x40 } - - { offsetInCU: 0x64A, offset: 0x8EF69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x990, symBinAddr: 0x437E0, symSize: 0xC40 } - - { offsetInCU: 0x104B, offset: 0x8F96A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x15D0, symBinAddr: 0x44420, symSize: 0x110 } - - { offsetInCU: 0x1078, offset: 0x8F997, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x16E0, symBinAddr: 0x44530, symSize: 0x20 } - - { offsetInCU: 0x1094, offset: 0x8F9B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1700, symBinAddr: 0x44550, symSize: 0x30 } - - { offsetInCU: 0x1394, offset: 0x8FCB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x1730, symBinAddr: 0x44580, symSize: 0x70 } - - { offsetInCU: 0x13C3, offset: 0x8FCE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x17A0, symBinAddr: 0x445F0, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90007, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x446C0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x9002B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x446C0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90049, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x446E0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x90076, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x44720, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x9009D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x44770, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x900CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x447B0, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x900F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x447C0, symSize: 0x30 } - - { offsetInCU: 0x144, offset: 0x90124, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x447F0, symSize: 0x40 } - - { offsetInCU: 0x16B, offset: 0x9014B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x44830, symSize: 0x40 } - - { offsetInCU: 0x19A, offset: 0x9017A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x44870, symSize: 0x50 } - - { offsetInCU: 0x1C7, offset: 0x901A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x448C0, symSize: 0x50 } - - { offsetInCU: 0x1EE, offset: 0x901CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x44910, symSize: 0x40 } - - { offsetInCU: 0x21D, offset: 0x901FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x44950, symSize: 0x40 } - - { offsetInCU: 0x24A, offset: 0x9022A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x44990, symSize: 0x50 } - - { offsetInCU: 0x287, offset: 0x90267, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x449E0, symSize: 0x40 } - - { offsetInCU: 0x2A6, offset: 0x90286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x44A20, symSize: 0x10 } - - { offsetInCU: 0x2C2, offset: 0x902A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x370, symBinAddr: 0x44A30, symSize: 0xA0 } - - { offsetInCU: 0x2EF, offset: 0x902CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x44AD0, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x902EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x430, symBinAddr: 0x44AF0, symSize: 0x30 } - - { offsetInCU: 0x470, offset: 0x90450, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x44B50, symSize: 0x6B0 } - - { offsetInCU: 0xB5A, offset: 0x90B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x460, symBinAddr: 0x44B20, symSize: 0x30 } - - { offsetInCU: 0xD49, offset: 0x90D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xB40, symBinAddr: 0x45200, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90F8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x45250, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x90FAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x45250, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90FCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x45270, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x90FFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x452B0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x91021, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x45300, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x91050, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x45340, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x9107B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x45350, symSize: 0x30 } - - { offsetInCU: 0x144, offset: 0x910A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x45380, symSize: 0x40 } - - { offsetInCU: 0x16B, offset: 0x910CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x453C0, symSize: 0x40 } - - { offsetInCU: 0x19A, offset: 0x910FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x45400, symSize: 0x50 } - - { offsetInCU: 0x1C7, offset: 0x9112B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x45450, symSize: 0x50 } - - { offsetInCU: 0x1EE, offset: 0x91152, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x454A0, symSize: 0x40 } - - { offsetInCU: 0x21D, offset: 0x91181, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x454E0, symSize: 0x40 } - - { offsetInCU: 0x24A, offset: 0x911AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x45520, symSize: 0x50 } - - { offsetInCU: 0x287, offset: 0x911EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x45570, symSize: 0x40 } - - { offsetInCU: 0x2A6, offset: 0x9120A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x455B0, symSize: 0x10 } - - { offsetInCU: 0x2C2, offset: 0x91226, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x370, symBinAddr: 0x455C0, symSize: 0xA0 } - - { offsetInCU: 0x2EF, offset: 0x91253, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x45660, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x9126F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x430, symBinAddr: 0x45680, symSize: 0x30 } - - { offsetInCU: 0x470, offset: 0x913D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x456E0, symSize: 0x690 } - - { offsetInCU: 0xB72, offset: 0x91AD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x460, symBinAddr: 0x456B0, symSize: 0x30 } - - { offsetInCU: 0xD61, offset: 0x91CC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xB20, symBinAddr: 0x45D70, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x91F27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x45DC0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x91F4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x45DC0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x91F69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x45DE0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x91F96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x60, symBinAddr: 0x45E20, symSize: 0x50 } - - { offsetInCU: 0xD3, offset: 0x91FD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB0, symBinAddr: 0x45E70, symSize: 0x40 } - - { offsetInCU: 0xF2, offset: 0x91FF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x45EB0, symSize: 0x10 } - - { offsetInCU: 0x11D, offset: 0x9201D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x45EC0, symSize: 0x30 } - - { offsetInCU: 0x14A, offset: 0x9204A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x45EF0, symSize: 0x40 } - - { offsetInCU: 0x171, offset: 0x92071, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x45F30, symSize: 0x40 } - - { offsetInCU: 0x1A0, offset: 0x920A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x45F70, symSize: 0x50 } - - { offsetInCU: 0x1CD, offset: 0x920CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x45FC0, symSize: 0x50 } - - { offsetInCU: 0x1F4, offset: 0x920F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x46010, symSize: 0x40 } - - { offsetInCU: 0x223, offset: 0x92123, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x46050, symSize: 0x40 } - - { offsetInCU: 0x250, offset: 0x92150, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x46090, symSize: 0x50 } - - { offsetInCU: 0x28D, offset: 0x9218D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x460E0, symSize: 0x40 } - - { offsetInCU: 0x2AC, offset: 0x921AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x46120, symSize: 0x10 } - - { offsetInCU: 0x2C8, offset: 0x921C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x46130, symSize: 0xB0 } - - { offsetInCU: 0x2F5, offset: 0x921F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x420, symBinAddr: 0x461E0, symSize: 0x20 } - - { offsetInCU: 0x311, offset: 0x92211, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x440, symBinAddr: 0x46200, symSize: 0x30 } - - { offsetInCU: 0x46A, offset: 0x9236A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4B0, symBinAddr: 0x46270, symSize: 0x810 } - - { offsetInCU: 0xC60, offset: 0x92B60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x470, symBinAddr: 0x46230, symSize: 0x40 } - - { offsetInCU: 0xEB2, offset: 0x92DB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xCC0, symBinAddr: 0x46A80, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x93037, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x46AD0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x9305B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x46AD0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x93079, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x46AF0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x930A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x60, symBinAddr: 0x46B30, symSize: 0x50 } - - { offsetInCU: 0xD3, offset: 0x930E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB0, symBinAddr: 0x46B80, symSize: 0x40 } - - { offsetInCU: 0xF2, offset: 0x93102, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x46BC0, symSize: 0x10 } - - { offsetInCU: 0x11D, offset: 0x9312D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x46BD0, symSize: 0x30 } - - { offsetInCU: 0x14A, offset: 0x9315A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x46C00, symSize: 0x40 } - - { offsetInCU: 0x171, offset: 0x93181, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x46C40, symSize: 0x40 } - - { offsetInCU: 0x1A0, offset: 0x931B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x46C80, symSize: 0x50 } - - { offsetInCU: 0x1CD, offset: 0x931DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x46CD0, symSize: 0x50 } - - { offsetInCU: 0x1F4, offset: 0x93204, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x46D20, symSize: 0x40 } - - { offsetInCU: 0x223, offset: 0x93233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x46D60, symSize: 0x40 } - - { offsetInCU: 0x250, offset: 0x93260, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x46DA0, symSize: 0x50 } - - { offsetInCU: 0x28D, offset: 0x9329D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x46DF0, symSize: 0x40 } - - { offsetInCU: 0x2AC, offset: 0x932BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x46E30, symSize: 0x10 } - - { offsetInCU: 0x2C8, offset: 0x932D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x46E40, symSize: 0xB0 } - - { offsetInCU: 0x2F5, offset: 0x93305, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x420, symBinAddr: 0x46EF0, symSize: 0x20 } - - { offsetInCU: 0x311, offset: 0x93321, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x440, symBinAddr: 0x46F10, symSize: 0x30 } - - { offsetInCU: 0x46A, offset: 0x9347A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4B0, symBinAddr: 0x46F80, symSize: 0x820 } - - { offsetInCU: 0xC58, offset: 0x93C68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x470, symBinAddr: 0x46F40, symSize: 0x40 } - - { offsetInCU: 0xEC6, offset: 0x93ED6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xCD0, symBinAddr: 0x477A0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x94185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x477F0, symSize: 0x40 } - - { offsetInCU: 0x78, offset: 0x941B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x40, symBinAddr: 0x47830, symSize: 0x50 } - - { offsetInCU: 0xB5, offset: 0x941EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0x90, symBinAddr: 0x47880, symSize: 0x40 } - - { offsetInCU: 0xE4, offset: 0x9421E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xD0, symBinAddr: 0x478C0, symSize: 0x40 } - - { offsetInCU: 0x101, offset: 0x9423B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x110, symBinAddr: 0x47900, symSize: 0x50 } - - { offsetInCU: 0x13E, offset: 0x94278, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x160, symBinAddr: 0x47950, symSize: 0x40 } - - { offsetInCU: 0x16D, offset: 0x942A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x479D0, symSize: 0x40 } - - { offsetInCU: 0x19C, offset: 0x942D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x220, symBinAddr: 0x47A10, symSize: 0x40 } - - { offsetInCU: 0x1B9, offset: 0x942F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x260, symBinAddr: 0x47A50, symSize: 0x50 } - - { offsetInCU: 0x1F6, offset: 0x94330, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2B0, symBinAddr: 0x47AA0, symSize: 0x40 } - - { offsetInCU: 0x225, offset: 0x9435F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x2F0, symBinAddr: 0x47AE0, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x9438A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x340, symBinAddr: 0x47B30, symSize: 0x40 } - - { offsetInCU: 0x27F, offset: 0x943B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3C0, symBinAddr: 0x47BB0, symSize: 0x40 } - - { offsetInCU: 0x2AE, offset: 0x943E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x4C0, symBinAddr: 0x47CB0, symSize: 0x40 } - - { offsetInCU: 0x2DD, offset: 0x94417, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x5D0, symBinAddr: 0x47DC0, symSize: 0x40 } - - { offsetInCU: 0x30C, offset: 0x94446, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x6E0, symBinAddr: 0x47ED0, symSize: 0x40 } - - { offsetInCU: 0x34A, offset: 0x94484, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x720, symBinAddr: 0x47F10, symSize: 0x100 } - - { offsetInCU: 0x37E, offset: 0x944B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x820, symBinAddr: 0x48010, symSize: 0xC0 } - - { offsetInCU: 0x482, offset: 0x945BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x8E0, symBinAddr: 0x480D0, symSize: 0x7E0 } - - { offsetInCU: 0x10A9, offset: 0x951E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0x10C0, symBinAddr: 0x488B0, symSize: 0x20 } - - { offsetInCU: 0x10C7, offset: 0x95201, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0x10E0, symBinAddr: 0x488D0, symSize: 0x30 } - - { offsetInCU: 0x112A, offset: 0x95264, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x1110, symBinAddr: 0x48900, symSize: 0x30 } - - { offsetInCU: 0x1191, offset: 0x952CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x1140, symBinAddr: 0x48930, symSize: 0x30 } - - { offsetInCU: 0x11BE, offset: 0x952F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfcTf4nnnngggngn_n', symObjAddr: 0x11D0, symBinAddr: 0x489C0, symSize: 0x3C0 } - - { offsetInCU: 0x13F0, offset: 0x9552A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1170, symBinAddr: 0x48960, symSize: 0x60 } - - { offsetInCU: 0x141F, offset: 0x95559, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0x1590, symBinAddr: 0x48D80, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x95825, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x48E20, symSize: 0xF0 } - - { offsetInCU: 0x81, offset: 0x9587F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x48E20, symSize: 0xF0 } - - { offsetInCU: 0xFB, offset: 0x958F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xF0, symBinAddr: 0x48F10, symSize: 0xF0 } - - { offsetInCU: 0x142, offset: 0x95940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x1E0, symBinAddr: 0x49000, symSize: 0x40 } - - { offsetInCU: 0x15E, offset: 0x9595C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x220, symBinAddr: 0x49040, symSize: 0x40 } - - { offsetInCU: 0x17A, offset: 0x95978, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x260, symBinAddr: 0x49080, symSize: 0x30 } - - { offsetInCU: 0x196, offset: 0x95994, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x290, symBinAddr: 0x490B0, symSize: 0x30 } - - { offsetInCU: 0x1B2, offset: 0x959B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2C0, symBinAddr: 0x490E0, symSize: 0x30 } - - { offsetInCU: 0x1CE, offset: 0x959CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x2F0, symBinAddr: 0x49110, symSize: 0x30 } - - { offsetInCU: 0x1EA, offset: 0x959E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x320, symBinAddr: 0x49140, symSize: 0x30 } - - { offsetInCU: 0x206, offset: 0x95A04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x350, symBinAddr: 0x49170, symSize: 0x30 } - - { offsetInCU: 0x222, offset: 0x95A20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x380, symBinAddr: 0x491A0, symSize: 0x30 } - - { offsetInCU: 0x23E, offset: 0x95A3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x3B0, symBinAddr: 0x491D0, symSize: 0x30 } - - { offsetInCU: 0x25A, offset: 0x95A58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x3E0, symBinAddr: 0x49200, symSize: 0x30 } - - { offsetInCU: 0x276, offset: 0x95A74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x410, symBinAddr: 0x49230, symSize: 0x30 } - - { offsetInCU: 0x292, offset: 0x95A90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x440, symBinAddr: 0x49260, symSize: 0x30 } - - { offsetInCU: 0x2AE, offset: 0x95AAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x470, symBinAddr: 0x49290, symSize: 0x30 } - - { offsetInCU: 0x2CA, offset: 0x95AC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x4A0, symBinAddr: 0x492C0, symSize: 0x30 } - - { offsetInCU: 0x2E6, offset: 0x95AE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x4D0, symBinAddr: 0x492F0, symSize: 0x10 } - - { offsetInCU: 0x302, offset: 0x95B00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x4E0, symBinAddr: 0x49300, symSize: 0x30 } - - { offsetInCU: 0x31E, offset: 0x95B1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x510, symBinAddr: 0x49330, symSize: 0x30 } - - { offsetInCU: 0x33A, offset: 0x95B38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x540, symBinAddr: 0x49360, symSize: 0x30 } - - { offsetInCU: 0x356, offset: 0x95B54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x570, symBinAddr: 0x49390, symSize: 0xD0 } - - { offsetInCU: 0x37D, offset: 0x95B7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x640, symBinAddr: 0x49460, symSize: 0xE0 } - - { offsetInCU: 0x3AE, offset: 0x95BAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x720, symBinAddr: 0x49540, symSize: 0x250 } - - { offsetInCU: 0x54E, offset: 0x95D4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0x970, symBinAddr: 0x49790, symSize: 0x20 } - - { offsetInCU: 0x589, offset: 0x95D87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0x990, symBinAddr: 0x497B0, symSize: 0x20 } - - { offsetInCU: 0x69E, offset: 0x95E9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0x9B0, symBinAddr: 0x497D0, symSize: 0x20 } - - { offsetInCU: 0x5E, offset: 0x9601A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x49840, symSize: 0x50 } - - { offsetInCU: 0x92, offset: 0x9604E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x190, symBinAddr: 0x499D0, symSize: 0x30 } - - { offsetInCU: 0xA6, offset: 0x96062, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x1C0, symBinAddr: 0x49A00, symSize: 0x70 } - - { offsetInCU: 0x100, offset: 0x960BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x230, symBinAddr: 0x49A70, symSize: 0xB0 } - - { offsetInCU: 0x15E, offset: 0x9611A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x2E0, symBinAddr: 0x49B20, symSize: 0x50 } - - { offsetInCU: 0x186, offset: 0x96142, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x330, symBinAddr: 0x49B70, symSize: 0x120 } - - { offsetInCU: 0x1EE, offset: 0x961AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x450, symBinAddr: 0x49C90, symSize: 0x60 } - - { offsetInCU: 0x23A, offset: 0x961F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x4B0, symBinAddr: 0x49CF0, symSize: 0x80 } - - { offsetInCU: 0x298, offset: 0x96254, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x530, symBinAddr: 0x49D70, symSize: 0xC0 } - - { offsetInCU: 0x2D8, offset: 0x96294, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x5F0, symBinAddr: 0x49E30, symSize: 0xF0 } - - { offsetInCU: 0x309, offset: 0x962C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x6E0, symBinAddr: 0x49F20, symSize: 0xE0 } - - { offsetInCU: 0x363, offset: 0x9631F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x7C0, symBinAddr: 0x4A000, symSize: 0xC0 } - - { offsetInCU: 0x3C1, offset: 0x9637D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0x880, symBinAddr: 0x4A0C0, symSize: 0xB0 } - - { offsetInCU: 0x40D, offset: 0x963C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0x930, symBinAddr: 0x4A170, symSize: 0x70 } - - { offsetInCU: 0x46B, offset: 0x96427, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0x9A0, symBinAddr: 0x4A1E0, symSize: 0x180 } - - { offsetInCU: 0x4C6, offset: 0x96482, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xB20, symBinAddr: 0x4A360, symSize: 0xA0 } - - { offsetInCU: 0x50E, offset: 0x964CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xBC0, symBinAddr: 0x4A400, symSize: 0x20 } - - { offsetInCU: 0x549, offset: 0x96505, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xBE0, symBinAddr: 0x4A420, symSize: 0x30 } - - { offsetInCU: 0x593, offset: 0x9654F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xC80, symBinAddr: 0x4A4C0, symSize: 0xD0 } - - { offsetInCU: 0x5AF, offset: 0x9656B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xD50, symBinAddr: 0x4A590, symSize: 0x50 } - - { offsetInCU: 0x5CB, offset: 0x96587, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xDA0, symBinAddr: 0x4A5E0, symSize: 0xA0 } - - { offsetInCU: 0x622, offset: 0x965DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0xE40, symBinAddr: 0x4A680, symSize: 0x30 } - - { offsetInCU: 0x66B, offset: 0x96627, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x1140, symBinAddr: 0x4A980, symSize: 0x40 } - - { offsetInCU: 0x69D, offset: 0x96659, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfcTf4ngn_n', symObjAddr: 0x1520, symBinAddr: 0x4AD60, symSize: 0x110 } - - { offsetInCU: 0x716, offset: 0x966D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x1690, symBinAddr: 0x4AED0, symSize: 0x2C0 } - - { offsetInCU: 0x797, offset: 0x96753, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1630, symBinAddr: 0x4AE70, symSize: 0x20 } - - { offsetInCU: 0x7AB, offset: 0x96767, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1650, symBinAddr: 0x4AE90, symSize: 0x20 } - - { offsetInCU: 0x7BF, offset: 0x9677B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x1670, symBinAddr: 0x4AEB0, symSize: 0x20 } - - { offsetInCU: 0x7D3, offset: 0x9678F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x1950, symBinAddr: 0x4B190, symSize: 0x20 } - - { offsetInCU: 0x7E7, offset: 0x967A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x1970, symBinAddr: 0x4B1B0, symSize: 0x20 } - - { offsetInCU: 0x7FB, offset: 0x967B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1990, symBinAddr: 0x4B1D0, symSize: 0x20 } - - { offsetInCU: 0x80F, offset: 0x967CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x19F0, symBinAddr: 0x4B230, symSize: 0x20 } - - { offsetInCU: 0x823, offset: 0x967DF, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1A10, symBinAddr: 0x4B250, symSize: 0x20 } - - { offsetInCU: 0x837, offset: 0x967F3, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1A30, symBinAddr: 0x4B270, symSize: 0x10 } - - { offsetInCU: 0x84B, offset: 0x96807, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1A40, symBinAddr: 0x4B280, symSize: 0x20 } - - { offsetInCU: 0x85F, offset: 0x9681B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1A60, symBinAddr: 0x4B2A0, symSize: 0x20 } - - { offsetInCU: 0x873, offset: 0x9682F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1A80, symBinAddr: 0x4B2C0, symSize: 0x20 } - - { offsetInCU: 0x887, offset: 0x96843, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1AA0, symBinAddr: 0x4B2E0, symSize: 0x20 } - - { offsetInCU: 0x89B, offset: 0x96857, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1AC0, symBinAddr: 0x4B300, symSize: 0x20 } - - { offsetInCU: 0x8AF, offset: 0x9686B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1AE0, symBinAddr: 0x4B320, symSize: 0x10 } - - { offsetInCU: 0x8C3, offset: 0x9687F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1AF0, symBinAddr: 0x4B330, symSize: 0x50 } - - { offsetInCU: 0x8D7, offset: 0x96893, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B40, symBinAddr: 0x4B380, symSize: 0x10 } - - { offsetInCU: 0x8EB, offset: 0x968A7, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B50, symBinAddr: 0x4B390, symSize: 0x20 } - - { offsetInCU: 0x8FF, offset: 0x968BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1D90, symBinAddr: 0x4B5D0, symSize: 0x80 } - - { offsetInCU: 0x913, offset: 0x968CF, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E40, symBinAddr: 0x4B650, symSize: 0x30 } - - { offsetInCU: 0x93B, offset: 0x968F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0xE70, symBinAddr: 0x4A6B0, symSize: 0x50 } - - { offsetInCU: 0x957, offset: 0x96913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0xEC0, symBinAddr: 0x4A700, symSize: 0x40 } - - { offsetInCU: 0x973, offset: 0x9692F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0xF00, symBinAddr: 0x4A740, symSize: 0x10 } - - { offsetInCU: 0x98F, offset: 0x9694B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0xF10, symBinAddr: 0x4A750, symSize: 0x10 } - - { offsetInCU: 0x9C0, offset: 0x9697C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xF20, symBinAddr: 0x4A760, symSize: 0x10 } - - { offsetInCU: 0x9F1, offset: 0x969AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0xF30, symBinAddr: 0x4A770, symSize: 0x50 } - - { offsetInCU: 0xA0D, offset: 0x969C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0xF80, symBinAddr: 0x4A7C0, symSize: 0x60 } - - { offsetInCU: 0xA29, offset: 0x969E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0xFE0, symBinAddr: 0x4A820, symSize: 0x50 } - - { offsetInCU: 0xA54, offset: 0x96A10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x10F0, symBinAddr: 0x4A930, symSize: 0x50 } - - { offsetInCU: 0xAA0, offset: 0x96A5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x1180, symBinAddr: 0x4A9C0, symSize: 0x80 } - - { offsetInCU: 0xAEB, offset: 0x96AA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x1200, symBinAddr: 0x4AA40, symSize: 0x60 } - - { offsetInCU: 0xB29, offset: 0x96AE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x1260, symBinAddr: 0x4AAA0, symSize: 0x30 } - - { offsetInCU: 0xB45, offset: 0x96B01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1290, symBinAddr: 0x4AAD0, symSize: 0x10 } - - { offsetInCU: 0xB76, offset: 0x96B32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x12A0, symBinAddr: 0x4AAE0, symSize: 0x50 } - - { offsetInCU: 0xBA7, offset: 0x96B63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x12F0, symBinAddr: 0x4AB30, symSize: 0x50 } - - { offsetInCU: 0xBC3, offset: 0x96B7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x1340, symBinAddr: 0x4AB80, symSize: 0x60 } - - { offsetInCU: 0xBE6, offset: 0x96BA2, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x1510, symBinAddr: 0x4AD50, symSize: 0x10 } - - { offsetInCU: 0xC0F, offset: 0x96BCB, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B70, symBinAddr: 0x4B3B0, symSize: 0x150 } -... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS deleted file mode 100644 index 6c598b9..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml deleted file mode 100644 index b53af28..0000000 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml +++ /dev/null @@ -1,1831 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' -relocations: - - { offsetInCU: 0x34, offset: 0x5847B, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6B910, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x584B0, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6B948, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58515, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E0D0, symBinAddr: 0x85318, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x22D0, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5855C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x2314, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x58578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x2318, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x585D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x25D4, symSize: 0xDB0 } - - { offsetInCU: 0x45B, offset: 0x58921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x1170, symBinAddr: 0x3384, symSize: 0x384 } - - { offsetInCU: 0x4BE, offset: 0x58984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x14F4, symBinAddr: 0x3708, symSize: 0x20 } - - { offsetInCU: 0x4EB, offset: 0x589B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x16C0, symBinAddr: 0x38D4, symSize: 0x698 } - - { offsetInCU: 0x7EF, offset: 0x58CB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D58, symBinAddr: 0x3F6C, symSize: 0x3D4 } - - { offsetInCU: 0xAA5, offset: 0x58F6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x212C, symBinAddr: 0x4340, symSize: 0x914 } - - { offsetInCU: 0xF7B, offset: 0x59441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A40, symBinAddr: 0x4C54, symSize: 0x668 } - - { offsetInCU: 0x1375, offset: 0x5983B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x30A8, symBinAddr: 0x52BC, symSize: 0x3C18 } - - { offsetInCU: 0x2E6B, offset: 0x5B331, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6CD0, symBinAddr: 0x8ED4, symSize: 0x150 } - - { offsetInCU: 0x2F55, offset: 0x5B41B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6E20, symBinAddr: 0x9024, symSize: 0x304 } - - { offsetInCU: 0x3146, offset: 0x5B60C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7124, symBinAddr: 0x9328, symSize: 0x3C8 } - - { offsetInCU: 0x34AF, offset: 0x5B975, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x74EC, symBinAddr: 0x96F0, symSize: 0x2E4 } - - { offsetInCU: 0x3683, offset: 0x5BB49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x77D0, symBinAddr: 0x99D4, symSize: 0x240 } - - { offsetInCU: 0x3815, offset: 0x5BCDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x7A10, symBinAddr: 0x9C14, symSize: 0x244 } - - { offsetInCU: 0x39A7, offset: 0x5BE6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C54, symBinAddr: 0x9E58, symSize: 0x430 } - - { offsetInCU: 0x3B10, offset: 0x5BFD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x8084, symBinAddr: 0xA288, symSize: 0x650 } - - { offsetInCU: 0x3E23, offset: 0x5C2E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x86D4, symBinAddr: 0xA8D8, symSize: 0x224 } - - { offsetInCU: 0x4034, offset: 0x5C4FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9B20, symBinAddr: 0xBD24, symSize: 0x1514 } - - { offsetInCU: 0x5710, offset: 0x5DBD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x2254, symSize: 0x3C } - - { offsetInCU: 0x5740, offset: 0x5DC06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x2290, symSize: 0x40 } - - { offsetInCU: 0x5909, offset: 0x5DDCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1514, symBinAddr: 0x3728, symSize: 0x8 } - - { offsetInCU: 0x591D, offset: 0x5DDE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x151C, symBinAddr: 0x3730, symSize: 0x3C } - - { offsetInCU: 0x5931, offset: 0x5DDF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1558, symBinAddr: 0x376C, symSize: 0x168 } - - { offsetInCU: 0x5E77, offset: 0x5E33D, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x896C, symBinAddr: 0xAB70, symSize: 0xC } - - { offsetInCU: 0x5E8B, offset: 0x5E351, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8978, symBinAddr: 0xAB7C, symSize: 0x4 } - - { offsetInCU: 0x5E9F, offset: 0x5E365, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x897C, symBinAddr: 0xAB80, symSize: 0x20 } - - { offsetInCU: 0x5EB3, offset: 0x5E379, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x899C, symBinAddr: 0xABA0, symSize: 0x28 } - - { offsetInCU: 0x5FC4, offset: 0x5E48A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8ED4, symBinAddr: 0xB0D8, symSize: 0x2C } - - { offsetInCU: 0x5FD8, offset: 0x5E49E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F00, symBinAddr: 0xB104, symSize: 0x2C } - - { offsetInCU: 0x5FEC, offset: 0x5E4B2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8F6C, symBinAddr: 0xB170, symSize: 0x2C } - - { offsetInCU: 0x6000, offset: 0x5E4C6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8F98, symBinAddr: 0xB19C, symSize: 0x2C } - - { offsetInCU: 0x6035, offset: 0x5E4FB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x91B4, symBinAddr: 0xB3B8, symSize: 0x210 } - - { offsetInCU: 0x6087, offset: 0x5E54D, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x93C4, symBinAddr: 0xB5C8, symSize: 0x68 } - - { offsetInCU: 0x60E8, offset: 0x5E5AE, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x9588, symBinAddr: 0xB78C, symSize: 0x1DC } - - { offsetInCU: 0x6633, offset: 0x5EAF9, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB0A4, symBinAddr: 0xD2A8, symSize: 0x40 } - - { offsetInCU: 0x6647, offset: 0x5EB0D, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB0E4, symBinAddr: 0xD2E8, symSize: 0x20 } - - { offsetInCU: 0x665B, offset: 0x5EB21, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB104, symBinAddr: 0xD308, symSize: 0x10 } - - { offsetInCU: 0x666F, offset: 0x5EB35, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB114, symBinAddr: 0xD318, symSize: 0x3C } - - { offsetInCU: 0x6683, offset: 0x5EB49, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB1B0, symBinAddr: 0xD3B4, symSize: 0x44 } - - { offsetInCU: 0x6697, offset: 0x5EB5D, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB360, symBinAddr: 0xD564, symSize: 0x10 } - - { offsetInCU: 0x66AB, offset: 0x5EB71, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB370, symBinAddr: 0xD574, symSize: 0x10 } - - { offsetInCU: 0x66BF, offset: 0x5EB85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xB380, symBinAddr: 0xD584, symSize: 0x5C } - - { offsetInCU: 0x66D3, offset: 0x5EB99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xB3DC, symBinAddr: 0xD5E0, symSize: 0x30C } - - { offsetInCU: 0x66E7, offset: 0x5EBAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB6E8, symBinAddr: 0xD8EC, symSize: 0x240 } - - { offsetInCU: 0x66FB, offset: 0x5EBC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xB928, symBinAddr: 0xDB2C, symSize: 0x70 } - - { offsetInCU: 0x670F, offset: 0x5EBD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xB998, symBinAddr: 0xDB9C, symSize: 0x34 } - - { offsetInCU: 0x6723, offset: 0x5EBE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xB9CC, symBinAddr: 0xDBD0, symSize: 0x174 } - - { offsetInCU: 0x6737, offset: 0x5EBFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xBB40, symBinAddr: 0xDD44, symSize: 0xB4 } - - { offsetInCU: 0x674B, offset: 0x5EC11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xBBF4, symBinAddr: 0xDDF8, symSize: 0x10 } - - { offsetInCU: 0x675F, offset: 0x5EC25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xBC04, symBinAddr: 0xDE08, symSize: 0x34 } - - { offsetInCU: 0x6773, offset: 0x5EC39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xBCB8, symBinAddr: 0xDEBC, symSize: 0x5C } - - { offsetInCU: 0x6787, offset: 0x5EC4D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBDB8, symBinAddr: 0xDFBC, symSize: 0x2C } - - { offsetInCU: 0x679B, offset: 0x5EC61, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBDE4, symBinAddr: 0xDFE8, symSize: 0x2C } - - { offsetInCU: 0x67AF, offset: 0x5EC75, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBE10, symBinAddr: 0xE014, symSize: 0x2C } - - { offsetInCU: 0x67C3, offset: 0x5EC89, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBE3C, symBinAddr: 0xE040, symSize: 0x2C } - - { offsetInCU: 0x67D7, offset: 0x5EC9D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBE68, symBinAddr: 0xE06C, symSize: 0x2C } - - { offsetInCU: 0x67EB, offset: 0x5ECB1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBE94, symBinAddr: 0xE098, symSize: 0x2C } - - { offsetInCU: 0x67FF, offset: 0x5ECC5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBEC0, symBinAddr: 0xE0C4, symSize: 0x2C } - - { offsetInCU: 0x6C07, offset: 0x5F0CD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x89D8, symBinAddr: 0xABDC, symSize: 0x14 } - - { offsetInCU: 0x6C45, offset: 0x5F10B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x89F8, symBinAddr: 0xABFC, symSize: 0x8 } - - { offsetInCU: 0x6C94, offset: 0x5F15A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A00, symBinAddr: 0xAC04, symSize: 0x14 } - - { offsetInCU: 0x6D31, offset: 0x5F1F7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A14, symBinAddr: 0xAC18, symSize: 0x14 } - - { offsetInCU: 0x6DC6, offset: 0x5F28C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A28, symBinAddr: 0xAC2C, symSize: 0x14 } - - { offsetInCU: 0x6E63, offset: 0x5F329, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A3C, symBinAddr: 0xAC40, symSize: 0x30 } - - { offsetInCU: 0x6FD6, offset: 0x5F49C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8A6C, symBinAddr: 0xAC70, symSize: 0x2C } - - { offsetInCU: 0x7163, offset: 0x5F629, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8A98, symBinAddr: 0xAC9C, symSize: 0x24 } - - { offsetInCU: 0x724F, offset: 0x5F715, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8ABC, symBinAddr: 0xACC0, symSize: 0x14 } - - { offsetInCU: 0x72B5, offset: 0x5F77B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8AD0, symBinAddr: 0xACD4, symSize: 0x14 } - - { offsetInCU: 0x731B, offset: 0x5F7E1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8AE4, symBinAddr: 0xACE8, symSize: 0x14 } - - { offsetInCU: 0x7390, offset: 0x5F856, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8AF8, symBinAddr: 0xACFC, symSize: 0x14 } - - { offsetInCU: 0x7439, offset: 0x5F8FF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B0C, symBinAddr: 0xAD10, symSize: 0x14 } - - { offsetInCU: 0x74B0, offset: 0x5F976, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B20, symBinAddr: 0xAD24, symSize: 0x14 } - - { offsetInCU: 0x7568, offset: 0x5FA2E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B34, symBinAddr: 0xAD38, symSize: 0x14 } - - { offsetInCU: 0x7602, offset: 0x5FAC8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B48, symBinAddr: 0xAD4C, symSize: 0x10 } - - { offsetInCU: 0x766A, offset: 0x5FB30, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B58, symBinAddr: 0xAD5C, symSize: 0x28 } - - { offsetInCU: 0x7686, offset: 0x5FB4C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8B80, symBinAddr: 0xAD84, symSize: 0x14 } - - { offsetInCU: 0x7702, offset: 0x5FBC8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8BB0, symBinAddr: 0xADB4, symSize: 0x14 } - - { offsetInCU: 0x7733, offset: 0x5FBF9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8BC4, symBinAddr: 0xADC8, symSize: 0x14 } - - { offsetInCU: 0x7764, offset: 0x5FC2A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8BD8, symBinAddr: 0xADDC, symSize: 0x14 } - - { offsetInCU: 0x7795, offset: 0x5FC5B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8BEC, symBinAddr: 0xADF0, symSize: 0x30 } - - { offsetInCU: 0x77C4, offset: 0x5FC8A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C1C, symBinAddr: 0xAE20, symSize: 0x2C } - - { offsetInCU: 0x77F5, offset: 0x5FCBB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C48, symBinAddr: 0xAE4C, symSize: 0x24 } - - { offsetInCU: 0x7826, offset: 0x5FCEC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8C6C, symBinAddr: 0xAE70, symSize: 0x14 } - - { offsetInCU: 0x7857, offset: 0x5FD1D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8C80, symBinAddr: 0xAE84, symSize: 0x14 } - - { offsetInCU: 0x7888, offset: 0x5FD4E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8C94, symBinAddr: 0xAE98, symSize: 0x14 } - - { offsetInCU: 0x78B9, offset: 0x5FD7F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8CA8, symBinAddr: 0xAEAC, symSize: 0x14 } - - { offsetInCU: 0x78EA, offset: 0x5FDB0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8CBC, symBinAddr: 0xAEC0, symSize: 0x14 } - - { offsetInCU: 0x791B, offset: 0x5FDE1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8CD0, symBinAddr: 0xAED4, symSize: 0x14 } - - { offsetInCU: 0x794C, offset: 0x5FE12, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8CE4, symBinAddr: 0xAEE8, symSize: 0x14 } - - { offsetInCU: 0x797D, offset: 0x5FE43, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8CF8, symBinAddr: 0xAEFC, symSize: 0x10 } - - { offsetInCU: 0x79AE, offset: 0x5FE74, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D08, symBinAddr: 0xAF0C, symSize: 0x28 } - - { offsetInCU: 0x79CA, offset: 0x5FE90, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D30, symBinAddr: 0xAF34, symSize: 0x14 } - - { offsetInCU: 0x7A0A, offset: 0x5FED0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D50, symBinAddr: 0xAF54, symSize: 0x40 } - - { offsetInCU: 0x7A88, offset: 0x5FF4E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8D90, symBinAddr: 0xAF94, symSize: 0x70 } - - { offsetInCU: 0x7B1B, offset: 0x5FFE1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E48, symBinAddr: 0xB04C, symSize: 0x4 } - - { offsetInCU: 0x7B3B, offset: 0x60001, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E48, symBinAddr: 0xB04C, symSize: 0x4 } - - { offsetInCU: 0x7B5B, offset: 0x60021, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E4C, symBinAddr: 0xB050, symSize: 0x4 } - - { offsetInCU: 0x7B7B, offset: 0x60041, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E4C, symBinAddr: 0xB050, symSize: 0x4 } - - { offsetInCU: 0x7BA1, offset: 0x60067, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E50, symBinAddr: 0xB054, symSize: 0x40 } - - { offsetInCU: 0x7C10, offset: 0x600D6, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8E90, symBinAddr: 0xB094, symSize: 0x8 } - - { offsetInCU: 0x7C3B, offset: 0x60101, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8E98, symBinAddr: 0xB09C, symSize: 0x3C } - - { offsetInCU: 0x7C6C, offset: 0x60132, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FC4, symBinAddr: 0xB1C8, symSize: 0x14 } - - { offsetInCU: 0x7C9D, offset: 0x60163, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8FD8, symBinAddr: 0xB1DC, symSize: 0x3C } - - { offsetInCU: 0x7CDD, offset: 0x601A3, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9014, symBinAddr: 0xB218, symSize: 0x88 } - - { offsetInCU: 0x7D5E, offset: 0x60224, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9130, symBinAddr: 0xB334, symSize: 0x84 } - - { offsetInCU: 0x7D92, offset: 0x60258, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x9764, symBinAddr: 0xB968, symSize: 0xB0 } - - { offsetInCU: 0x7E7E, offset: 0x60344, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9814, symBinAddr: 0xBA18, symSize: 0x1F0 } - - { offsetInCU: 0x80AD, offset: 0x60573, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x80CD, offset: 0x60593, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x80E1, offset: 0x605A7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8101, offset: 0x605C7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8115, offset: 0x605DB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8129, offset: 0x605EF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x813D, offset: 0x60603, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8220, offset: 0x606E6, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8240, offset: 0x60706, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8254, offset: 0x6071A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8274, offset: 0x6073A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8288, offset: 0x6074E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x829C, offset: 0x60762, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x82B0, offset: 0x60776, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8357, offset: 0x6081D, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBEEC, symBinAddr: 0xE0F0, symSize: 0x80 } - - { offsetInCU: 0x83E8, offset: 0x608AE, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBF6C, symBinAddr: 0xE170, symSize: 0x90 } - - { offsetInCU: 0x85AA, offset: 0x60A70, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x90A8, symBinAddr: 0xB2AC, symSize: 0x10 } - - { offsetInCU: 0x85C6, offset: 0x60A8C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x90B8, symBinAddr: 0xB2BC, symSize: 0xC } - - { offsetInCU: 0x8630, offset: 0x60AF6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x90C4, symBinAddr: 0xB2C8, symSize: 0x44 } - - { offsetInCU: 0x8659, offset: 0x60B1F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x9108, symBinAddr: 0xB30C, symSize: 0x28 } - - { offsetInCU: 0x8694, offset: 0x60B5A, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x909C, symBinAddr: 0xB2A0, symSize: 0xC } - - { offsetInCU: 0x8772, offset: 0x60C38, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x89EC, symBinAddr: 0xABF0, symSize: 0xC } - - { offsetInCU: 0x87A4, offset: 0x60C6A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8B94, symBinAddr: 0xAD98, symSize: 0x10 } - - { offsetInCU: 0x87C0, offset: 0x60C86, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8BA4, symBinAddr: 0xADA8, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x60E8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xE230, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x60EB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xE230, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x60EE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xE240, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x61011, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xE26C, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x61025, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xE280, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x61065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xE290, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x610B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0xE2B0, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x6111A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0xE2C8, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x61194, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0xE2F4, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x611BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0xE2FC, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x611F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0xE320, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x6120C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0xE32C, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x61228, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2058, symBinAddr: 0x102B8, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x6126E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0xE388, symSize: 0x40C } - - { offsetInCU: 0x2F5, offset: 0x612C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1388, symBinAddr: 0xF5E8, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x612FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x13D8, symBinAddr: 0xF638, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x6131D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x242C, symBinAddr: 0x1068C, symSize: 0x144C } - - { offsetInCU: 0x381, offset: 0x6134F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x534, symBinAddr: 0xE794, symSize: 0x100 } - - { offsetInCU: 0x3CD, offset: 0x6139B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1428, symBinAddr: 0xF688, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x613EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1430, symBinAddr: 0xF690, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x614D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1470, symBinAddr: 0xF6D0, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61552, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xF730, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61572, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xF730, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x61592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14D4, symBinAddr: 0xF734, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x615C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x14FC, symBinAddr: 0xF75C, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x615DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1508, symBinAddr: 0xF768, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x615FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3878, symBinAddr: 0x11AD8, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x6163F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvgTf4d_n', symObjAddr: 0x38E4, symBinAddr: 0x11B44, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x61673, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1564, symBinAddr: 0xF7C4, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x616AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15B4, symBinAddr: 0xF814, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x616CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x38F0, symBinAddr: 0x11B50, symSize: 0x248 } - - { offsetInCU: 0x771, offset: 0x6173F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x634, symBinAddr: 0xE894, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x6176A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1604, symBinAddr: 0xF864, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x61795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x160C, symBinAddr: 0xF86C, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x617C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1630, symBinAddr: 0xF890, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x617E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x163C, symBinAddr: 0xF89C, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x617FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5A94, symBinAddr: 0x13CB0, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x61844, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x654, symBinAddr: 0xE8B4, symSize: 0x17C } - - { offsetInCU: 0x8CB, offset: 0x61899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1698, symBinAddr: 0xF8F8, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x618D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16E8, symBinAddr: 0xF948, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x618F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5C2C, symBinAddr: 0x13E48, symSize: 0x310 } - - { offsetInCU: 0x975, offset: 0x61943, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x7D0, symBinAddr: 0xEA30, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x6196E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1728, symBinAddr: 0xF988, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x61999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1730, symBinAddr: 0xF990, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x619CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1754, symBinAddr: 0xF9B4, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x619E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5F3C, symBinAddr: 0x14158, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x61A2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7F0, symBinAddr: 0xEA50, symSize: 0x154 } - - { offsetInCU: 0xAB3, offset: 0x61A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0xFA10, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x61AB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17F0, symBinAddr: 0xFA50, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x61ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6094, symBinAddr: 0x142B0, symSize: 0x2C8 } - - { offsetInCU: 0xB51, offset: 0x61B1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x944, symBinAddr: 0xEBA4, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x61B4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1828, symBinAddr: 0xFA88, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x61B75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1830, symBinAddr: 0xFA90, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x61BA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1854, symBinAddr: 0xFAB4, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x61BC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0xFAC0, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x61BDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x635C, symBinAddr: 0x14578, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x61C24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x964, symBinAddr: 0xEBC4, symSize: 0x1A4 } - - { offsetInCU: 0xCAB, offset: 0x61C79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18BC, symBinAddr: 0xFB1C, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x61CB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x192C, symBinAddr: 0xFB8C, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x61CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x64A4, symBinAddr: 0x146C0, symSize: 0x4D8 } - - { offsetInCU: 0xD55, offset: 0x61D23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xB08, symBinAddr: 0xED68, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x198C, symBinAddr: 0xFBEC, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x61D79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1994, symBinAddr: 0xFBF4, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x61DAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x19B8, symBinAddr: 0xFC18, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x61DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x19C4, symBinAddr: 0xFC24, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x61DE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6A48, symBinAddr: 0x14C64, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x61E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB28, symBinAddr: 0xED88, symSize: 0x1F4 } - - { offsetInCU: 0xEAF, offset: 0x61E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A20, symBinAddr: 0xFC80, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x61EB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A84, symBinAddr: 0xFCE4, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x61ED7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CBC, symBinAddr: 0x14ED8, symSize: 0x57C } - - { offsetInCU: 0xF59, offset: 0x61F27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xD1C, symBinAddr: 0xEF7C, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1AD4, symBinAddr: 0xFD34, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x62003, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1AEC, symBinAddr: 0xFD4C, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x620E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1B30, symBinAddr: 0xFD90, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x62158, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0xFDF8, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x62183, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0xFE00, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x621B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC4, symBinAddr: 0xFE24, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x621D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0xFE30, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x621EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x727C, symBinAddr: 0x15498, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x62232, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD34, symBinAddr: 0xEF94, symSize: 0x118 } - - { offsetInCU: 0x12B9, offset: 0x62287, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C2C, symBinAddr: 0xFE8C, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x622BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C58, symBinAddr: 0xFEB8, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x622E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7334, symBinAddr: 0x15550, symSize: 0x1A0 } - - { offsetInCU: 0x136F, offset: 0x6233D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xE4C, symBinAddr: 0xF0AC, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x62368, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1C74, symBinAddr: 0xFED4, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x62393, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C7C, symBinAddr: 0xFEDC, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x623C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1CA0, symBinAddr: 0xFF00, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x623E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1CAC, symBinAddr: 0xFF0C, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x623FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7518, symBinAddr: 0x15734, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x62442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE6C, symBinAddr: 0xF0CC, symSize: 0x1CC } - - { offsetInCU: 0x14C9, offset: 0x62497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D08, symBinAddr: 0xFF68, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x624CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1D60, symBinAddr: 0xFFC0, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x624F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x772C, symBinAddr: 0x15948, symSize: 0x360 } - - { offsetInCU: 0x1567, offset: 0x62535, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1038, symBinAddr: 0xF298, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62560, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DA8, symBinAddr: 0x10008, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x6258B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x10010, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x625BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DD4, symBinAddr: 0x10034, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x625D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0x10040, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x625F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7A8C, symBinAddr: 0x15CA8, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x6263A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1058, symBinAddr: 0xF2B8, symSize: 0x1EC } - - { offsetInCU: 0x16C1, offset: 0x6268F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E3C, symBinAddr: 0x1009C, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x626C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E84, symBinAddr: 0x100E4, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x626E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C60, symBinAddr: 0x15E7C, symSize: 0x380 } - - { offsetInCU: 0x176B, offset: 0x62739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1244, symBinAddr: 0xF4A4, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x62764, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F48, symBinAddr: 0x101A8, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x6278F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F50, symBinAddr: 0x101B0, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x627C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1F74, symBinAddr: 0x101D4, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x627DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F80, symBinAddr: 0x101E0, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x627F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8068, symBinAddr: 0x16284, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x6283E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x125C, symBinAddr: 0xF4BC, symSize: 0x12C } - - { offsetInCU: 0x18C5, offset: 0x62893, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FDC, symBinAddr: 0x1023C, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x628CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2020, symBinAddr: 0x10280, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x628ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8164, symBinAddr: 0x16380, symSize: 0x1CC } - - { offsetInCU: 0x195C, offset: 0x6292A, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3B78, symBinAddr: 0x11D98, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x6293E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3B9C, symBinAddr: 0x11DBC, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62952, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3BE0, symBinAddr: 0x11E00, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x62966, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3C00, symBinAddr: 0x11E20, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x6297A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3C44, symBinAddr: 0x11E64, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x6298E, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3C88, symBinAddr: 0x11EA8, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x629A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3C90, symBinAddr: 0x11EAC, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x629B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x3CE0, symBinAddr: 0x11EFC, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x629CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x3D6C, symBinAddr: 0x11F88, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x629DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x3D74, symBinAddr: 0x11F90, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x629F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x3D78, symBinAddr: 0x11F94, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x62A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x3D7C, symBinAddr: 0x11F98, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x62A1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x3D8C, symBinAddr: 0x11FA8, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x4654, symBinAddr: 0x12870, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62A42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x4664, symBinAddr: 0x12880, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x62A56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4668, symBinAddr: 0x12884, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x62A6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x46AC, symBinAddr: 0x128C8, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x62A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x46B0, symBinAddr: 0x128CC, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x62A92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x46F4, symBinAddr: 0x12910, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x62AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x46F8, symBinAddr: 0x12914, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x62ABA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x473C, symBinAddr: 0x12958, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x62ACE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4780, symBinAddr: 0x1299C, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x62AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x47C4, symBinAddr: 0x129E0, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x62AF6, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4808, symBinAddr: 0x12A24, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x62B0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x484C, symBinAddr: 0x12A68, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62B1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4890, symBinAddr: 0x12AAC, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62B32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x48D4, symBinAddr: 0x12AF0, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x62B46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x4918, symBinAddr: 0x12B34, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x62B5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x495C, symBinAddr: 0x12B78, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x49A0, symBinAddr: 0x12BBC, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x62B82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x49E4, symBinAddr: 0x12C00, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x62B96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4A28, symBinAddr: 0x12C44, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x62BAA, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4A6C, symBinAddr: 0x12C88, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x62BBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4A78, symBinAddr: 0x12C94, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x62BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4B08, symBinAddr: 0x12D24, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x62BE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4BC4, symBinAddr: 0x12DE0, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x62BFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4BCC, symBinAddr: 0x12DE8, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4BD0, symBinAddr: 0x12DEC, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62C22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4BD8, symBinAddr: 0x12DF4, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x62C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4BE8, symBinAddr: 0x12E04, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x62C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4C10, symBinAddr: 0x12E2C, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4C54, symBinAddr: 0x12E70, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62C72, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4CC8, symBinAddr: 0x12EE4, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x62C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4CDC, symBinAddr: 0x12EF8, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x62C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x4D28, symBinAddr: 0x12F44, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x62CAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x4D70, symBinAddr: 0x12F8C, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x62CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x4DB8, symBinAddr: 0x12FD4, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x62CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x4DC8, symBinAddr: 0x12FE4, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x62CEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x4E00, symBinAddr: 0x1301C, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x4E74, symBinAddr: 0x13090, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62D12, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4F30, symBinAddr: 0x1314C, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x62D26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x4F4C, symBinAddr: 0x13168, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x62D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x4FC8, symBinAddr: 0x131E4, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5010, symBinAddr: 0x1322C, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x5064, symBinAddr: 0x13280, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x62D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x5074, symBinAddr: 0x13290, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x62D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x509C, symBinAddr: 0x132B8, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x62D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x50D8, symBinAddr: 0x132F4, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x62DB2, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5144, symBinAddr: 0x13360, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x62DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5150, symBinAddr: 0x1336C, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x62DDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5194, symBinAddr: 0x133B0, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x62DEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x51DC, symBinAddr: 0x133F8, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62E02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x521C, symBinAddr: 0x13438, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x62E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x522C, symBinAddr: 0x13448, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x62E2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x527C, symBinAddr: 0x13498, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62E3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5328, symBinAddr: 0x13544, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62E52, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x543C, symBinAddr: 0x13658, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x62E66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5468, symBinAddr: 0x13684, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x62E7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x5504, symBinAddr: 0x13720, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x62E8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x554C, symBinAddr: 0x13768, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x62EA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x55A8, symBinAddr: 0x137C4, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x62EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x55B8, symBinAddr: 0x137D4, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x62ECA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5610, symBinAddr: 0x1382C, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x62EDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x56D4, symBinAddr: 0x138F0, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x62EF2, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5818, symBinAddr: 0x13A34, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62F06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x584C, symBinAddr: 0x13A68, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62F1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x5900, symBinAddr: 0x13B1C, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62F2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5948, symBinAddr: 0x13B64, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62F42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x59AC, symBinAddr: 0x13BC8, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62F56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x59BC, symBinAddr: 0x13BD8, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62F6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x59C0, symBinAddr: 0x13BDC, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62F7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5A04, symBinAddr: 0x13C20, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62F92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5A08, symBinAddr: 0x13C24, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62FA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5A4C, symBinAddr: 0x13C68, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62FBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5A50, symBinAddr: 0x13C6C, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62FCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x697C, symBinAddr: 0x14B98, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x62FE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x69C0, symBinAddr: 0x14BDC, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x62FF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6A04, symBinAddr: 0x14C20, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x6300A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7238, symBinAddr: 0x15454, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x6301E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x74D4, symBinAddr: 0x156F0, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x63032, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7FE0, symBinAddr: 0x161FC, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x63046, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8024, symBinAddr: 0x16240, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x6305A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8330, symBinAddr: 0x1654C, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x6306E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8374, symBinAddr: 0x16590, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x63082, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x83B8, symBinAddr: 0x165D4, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x63096, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x8460, symBinAddr: 0x1667C, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x630AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x84A4, symBinAddr: 0x166C0, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x630BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8534, symBinAddr: 0x16750, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x630D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x85F0, symBinAddr: 0x1680C, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x630E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x85F4, symBinAddr: 0x16810, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x630FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8604, symBinAddr: 0x16820, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x6310E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8694, symBinAddr: 0x168B0, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x63122, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8750, symBinAddr: 0x1696C, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x63136, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8754, symBinAddr: 0x16970, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x6314A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8764, symBinAddr: 0x16980, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x6315E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x87F4, symBinAddr: 0x16A10, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x63172, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x88B0, symBinAddr: 0x16ACC, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x63186, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x88B8, symBinAddr: 0x16AD4, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x6319A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x88BC, symBinAddr: 0x16AD8, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x631AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x88C8, symBinAddr: 0x16AE4, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x631C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x88D8, symBinAddr: 0x16AF4, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x631D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8968, symBinAddr: 0x16B84, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x631EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A24, symBinAddr: 0x16C40, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x631FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A28, symBinAddr: 0x16C44, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x63212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A40, symBinAddr: 0x16C5C, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x63226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A44, symBinAddr: 0x16C60, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x6323A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8A54, symBinAddr: 0x16C70, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x6324E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8A8C, symBinAddr: 0x16CA8, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x63262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8B00, symBinAddr: 0x16D1C, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x63276, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8BC4, symBinAddr: 0x16DE0, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x6328A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x8BE8, symBinAddr: 0x16E04, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x6329E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x8C5C, symBinAddr: 0x16E78, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x632B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x8CA4, symBinAddr: 0x16EC0, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x632C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x8CF8, symBinAddr: 0x16F14, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x632DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x8D08, symBinAddr: 0x16F24, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x632EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x8D40, symBinAddr: 0x16F5C, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x63302, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x8DA4, symBinAddr: 0x16FC0, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x63316, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8E50, symBinAddr: 0x1706C, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x6332A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x8E64, symBinAddr: 0x17080, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x6333E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x8EC8, symBinAddr: 0x170E4, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x63352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x8F10, symBinAddr: 0x1712C, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x63366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x8F60, symBinAddr: 0x1717C, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x6337A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x8F70, symBinAddr: 0x1718C, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x6338E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x8FA8, symBinAddr: 0x171C4, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x633A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9014, symBinAddr: 0x17230, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x633B6, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x90C8, symBinAddr: 0x172E4, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x633CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x90EC, symBinAddr: 0x17308, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x633DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9158, symBinAddr: 0x17374, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x633F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x91A0, symBinAddr: 0x173BC, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x63406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x91F0, symBinAddr: 0x1740C, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x6341A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9200, symBinAddr: 0x1741C, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x6342E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9204, symBinAddr: 0x17420, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x63442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9248, symBinAddr: 0x17464, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x63456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x924C, symBinAddr: 0x17468, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x6346A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9290, symBinAddr: 0x174AC, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x6347E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9294, symBinAddr: 0x174B0, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x63492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x92D8, symBinAddr: 0x174F4, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x92DC, symBinAddr: 0x174F8, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x634BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9320, symBinAddr: 0x1753C, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x634CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9324, symBinAddr: 0x17540, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x634E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9368, symBinAddr: 0x17584, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x634F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x936C, symBinAddr: 0x17588, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x6350A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x93B0, symBinAddr: 0x175CC, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x6351E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x93B4, symBinAddr: 0x175D0, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x93F8, symBinAddr: 0x17614, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x63546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x93FC, symBinAddr: 0x17618, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x6355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9440, symBinAddr: 0x1765C, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x6356E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9444, symBinAddr: 0x17660, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x63582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9488, symBinAddr: 0x176A4, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x63596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x948C, symBinAddr: 0x176A8, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x635AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94D0, symBinAddr: 0x176EC, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x635BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94D4, symBinAddr: 0x176F0, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x635D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9518, symBinAddr: 0x17734, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x635E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x951C, symBinAddr: 0x17738, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9560, symBinAddr: 0x1777C, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x6360E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9564, symBinAddr: 0x17780, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95A8, symBinAddr: 0x177C4, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x63636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95AC, symBinAddr: 0x177C8, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x6364A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x95F0, symBinAddr: 0x1780C, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x6365E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x95F4, symBinAddr: 0x17810, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9638, symBinAddr: 0x17854, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x63686, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x967C, symBinAddr: 0x17898, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x6369A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x96C0, symBinAddr: 0x178DC, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x636AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9704, symBinAddr: 0x17920, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x636C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9794, symBinAddr: 0x179B0, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x636D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9850, symBinAddr: 0x17A6C, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x636EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9854, symBinAddr: 0x17A70, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x636FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x99B8, symBinAddr: 0x17BD4, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x99BC, symBinAddr: 0x17BD8, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x63726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x99CC, symBinAddr: 0x17BE8, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x6373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9A5C, symBinAddr: 0x17C78, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x6374E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9B18, symBinAddr: 0x17D34, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9B1C, symBinAddr: 0x17D38, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x63776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B2C, symBinAddr: 0x17D48, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x6378A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9B30, symBinAddr: 0x17D4C, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x6379E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B74, symBinAddr: 0x17D90, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x637B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9B78, symBinAddr: 0x17D94, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x637C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9BBC, symBinAddr: 0x17DD8, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x637DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9BC0, symBinAddr: 0x17DDC, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x637EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C04, symBinAddr: 0x17E20, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C08, symBinAddr: 0x17E24, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x63816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9C4C, symBinAddr: 0x17E68, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x6382A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9C50, symBinAddr: 0x17E6C, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x6383E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C94, symBinAddr: 0x17EB0, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C98, symBinAddr: 0x17EB4, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x63866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CDC, symBinAddr: 0x17EF8, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x6387A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9CE0, symBinAddr: 0x17EFC, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x6388E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D24, symBinAddr: 0x17F40, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x638A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D28, symBinAddr: 0x17F44, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x638B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D6C, symBinAddr: 0x17F88, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x638CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D70, symBinAddr: 0x17F8C, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x6391A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0xE338, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x63936, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0xE360, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x6397F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1494, symBinAddr: 0xF6F4, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63A21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1514, symBinAddr: 0xF774, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63A3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x153C, symBinAddr: 0xF79C, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63A5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1648, symBinAddr: 0xF8A8, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x63A7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1670, symBinAddr: 0xF8D0, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x63A9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0xF9C0, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x63AB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0xF9E8, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x63ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x186C, symBinAddr: 0xFACC, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x63AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1894, symBinAddr: 0xFAF4, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x63B19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x19D0, symBinAddr: 0xFC30, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x63B35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0xFC58, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x63B7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1B58, symBinAddr: 0xFDB8, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BDC, symBinAddr: 0xFE3C, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x63C3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C04, symBinAddr: 0xFE64, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1CB8, symBinAddr: 0xFF18, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x63C7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0xFF40, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x63C9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DEC, symBinAddr: 0x1004C, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x63CB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E14, symBinAddr: 0x10074, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x63CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1F8C, symBinAddr: 0x101EC, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x63CF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FB4, symBinAddr: 0x10214, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x63EA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x180A8, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63F1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x180A8, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x1812C, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x18168, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63FD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x181BC, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x63FF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x181CC, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x6401E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x128, symBinAddr: 0x181D0, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x6403C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x13C, symBinAddr: 0x181E4, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x64076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x150, symBinAddr: 0x181F8, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x640A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x18208, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x640CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x1820C, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x640ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x18238, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x6412C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x1826C, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x6415A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x1827C, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x64185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x18280, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x641A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x18288, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x641DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x18290, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x6420B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x182A0, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x64236, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x182A4, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x64254, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x182AC, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x6428E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x182B4, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x642BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x182C4, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x642E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x182C8, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x64305, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x182F4, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x64344, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x18328, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x64372, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x18338, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x6439D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x1833C, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x643BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x18368, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x643FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x1839C, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x64428, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x183AC, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x64453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x183B0, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x64471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x183BC, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x644AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x183C8, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x644DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x183D8, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x64508, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x183DC, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x64526, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x183E8, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x64564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x183F4, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x64592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x18404, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x645BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x18408, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x645D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x18438, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x645E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x18478, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x645FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x1851C, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x6460E, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x18620, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x1864C, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x64636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x186E8, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x6464A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x18730, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x6465E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x18790, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64840, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x187A0, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x6486B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x18D44, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x64887, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x18FB4, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x648BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x18A4C, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x648EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x18F8C, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x64906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x1900C, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64932, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x19064, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x19168, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x64976, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x191F8, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x6498A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x192B4, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x6499E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x192B8, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x649B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x192C8, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x649C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x19358, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x649DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x19414, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x649EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x1941C, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x19420, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x64A16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x19428, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x64A2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x19438, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64A3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x1943C, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64A52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x19480, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x64A66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x19484, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x64BC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x194D0, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x64BF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x195E4, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64C1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC9printLogs33_05B95674BA567498C742095BB49A0405LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x199BC, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64D50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x19600, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x64DA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x19620, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x64DF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x196AC, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64E20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x196B0, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x64E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x196B4, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64E6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x19728, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x64EC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1972C, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x197BC, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x19820, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64FB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x198B0, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x65003, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x19940, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x65035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x199B4, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x65051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x199B8, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x650CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x19A68, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x651B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1A134, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x65207, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1A1A8, symSize: 0x294 } - - { offsetInCU: 0x7C0, offset: 0x65335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF6C, symBinAddr: 0x1A43C, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x653B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFD4, symBinAddr: 0x1A4A4, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x653F2, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1038, symBinAddr: 0x1A508, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x65406, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1048, symBinAddr: 0x1A518, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x6541A, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10DC, symBinAddr: 0x1A528, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x6542E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1124, symBinAddr: 0x1A570, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x65442, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1138, symBinAddr: 0x1A584, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x65456, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x117C, symBinAddr: 0x1A5C8, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x6546A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11BC, symBinAddr: 0x1A608, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x6547E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1380, symBinAddr: 0x1A7CC, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x65492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13B0, symBinAddr: 0x1A7FC, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x654A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x156C, symBinAddr: 0x1A9B8, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x6574D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AB8, symBinAddr: 0x83AB8, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x65767, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2AC0, symBinAddr: 0x83AC0, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65775, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1A9F8, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x657B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1AA2C, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x657E7, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1AA6C, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65812, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1AAA0, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65862, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1AAE0, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x6588D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1AB10, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x658B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1AB14, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x658D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1AB38, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x65904, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1AB4C, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x65995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1ABBC, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x659B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1ABBC, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x659FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1AC18, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x65A79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1AC84, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x65B03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1ADBC, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1AE18, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x65B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1AE78, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x65B7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1AEB4, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x65BED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1AFEC, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x65C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1B038, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x65C35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1B088, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x65C64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1B0C4, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x65C8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1B0CC, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x65CAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1B0FC, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x65CD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1B138, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x65D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1B1D0, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x65D47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x818, symBinAddr: 0x1B200, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65D70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x85C, symBinAddr: 0x1B244, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x65D9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1B280, symSize: 0x68 } - - { offsetInCU: 0x74C, offset: 0x65E4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1B2E8, symSize: 0xC0 } - - { offsetInCU: 0x7E5, offset: 0x65EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9C0, symBinAddr: 0x1B3A8, symSize: 0xC0 } - - { offsetInCU: 0x865, offset: 0x65F63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xC84, symBinAddr: 0x1B66C, symSize: 0x70 } - - { offsetInCU: 0x88F, offset: 0x65F8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xCF4, symBinAddr: 0x1B6DC, symSize: 0x30 } - - { offsetInCU: 0x8B4, offset: 0x65FB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xD24, symBinAddr: 0x1B70C, symSize: 0x188 } - - { offsetInCU: 0x969, offset: 0x66067, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xEAC, symBinAddr: 0x1B894, symSize: 0x14 } - - { offsetInCU: 0x9B6, offset: 0x660B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0xEC0, symBinAddr: 0x1B8A8, symSize: 0x64 } - - { offsetInCU: 0xA52, offset: 0x66150, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0xF54, symBinAddr: 0x1B93C, symSize: 0x6C } - - { offsetInCU: 0xB86, offset: 0x66284, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x18B8, symBinAddr: 0x1C2A0, symSize: 0x228 } - - { offsetInCU: 0xC17, offset: 0x66315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B44, symBinAddr: 0x1C52C, symSize: 0x190 } - - { offsetInCU: 0xD1D, offset: 0x6641B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1AC88, symSize: 0x88 } - - { offsetInCU: 0xD53, offset: 0x66451, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1AD10, symSize: 0xAC } - - { offsetInCU: 0xD93, offset: 0x66491, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1AE08, symSize: 0x10 } - - { offsetInCU: 0xDA7, offset: 0x664A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1AE68, symSize: 0x10 } - - { offsetInCU: 0xDBB, offset: 0x664B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1AEB8, symSize: 0x88 } - - { offsetInCU: 0xDF1, offset: 0x664EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1AF40, symSize: 0xAC } - - { offsetInCU: 0xE31, offset: 0x6652F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1B174, symSize: 0x5C } - - { offsetInCU: 0xE95, offset: 0x66593, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xA80, symBinAddr: 0x1B468, symSize: 0x204 } - - { offsetInCU: 0xF09, offset: 0x66607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x172C, symBinAddr: 0x1C114, symSize: 0x13C } - - { offsetInCU: 0xFD3, offset: 0x666D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0xF24, symBinAddr: 0x1B90C, symSize: 0x30 } - - { offsetInCU: 0x10C2, offset: 0x667C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x1894, symBinAddr: 0x1C27C, symSize: 0x24 } - - { offsetInCU: 0x1112, offset: 0x66810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1B9A8, symSize: 0x21C } - - { offsetInCU: 0x1304, offset: 0x66A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x11DC, symBinAddr: 0x1BBC4, symSize: 0xC } - - { offsetInCU: 0x135B, offset: 0x66A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1BBD0, symSize: 0x4 } - - { offsetInCU: 0x1377, offset: 0x66A75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1BBD0, symSize: 0x4 } - - { offsetInCU: 0x1390, offset: 0x66A8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1BBD0, symSize: 0x4 } - - { offsetInCU: 0x13A9, offset: 0x66AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11EC, symBinAddr: 0x1BBD4, symSize: 0x4 } - - { offsetInCU: 0x13C1, offset: 0x66ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11F0, symBinAddr: 0x1BBD8, symSize: 0xB8 } - - { offsetInCU: 0x1461, offset: 0x66B5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12E8, symBinAddr: 0x1BCD0, symSize: 0x4 } - - { offsetInCU: 0x1479, offset: 0x66B77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x251C, symBinAddr: 0x1CEF4, symSize: 0x7C } - - { offsetInCU: 0x1556, offset: 0x66C54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x12A8, symBinAddr: 0x1BC90, symSize: 0x40 } - - { offsetInCU: 0x158B, offset: 0x66C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x12F8, symBinAddr: 0x1BCE0, symSize: 0x98 } - - { offsetInCU: 0x1648, offset: 0x66D46, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x1440, symBinAddr: 0x1BE28, symSize: 0x198 } - - { offsetInCU: 0x1AF7, offset: 0x671F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x15D8, symBinAddr: 0x1BFC0, symSize: 0x13C } - - { offsetInCU: 0x1BF4, offset: 0x672F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1714, symBinAddr: 0x1C0FC, symSize: 0x18 } - - { offsetInCU: 0x1C08, offset: 0x67306, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1868, symBinAddr: 0x1C250, symSize: 0x2C } - - { offsetInCU: 0x1C20, offset: 0x6731E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1AE0, symBinAddr: 0x1C4C8, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x67332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1B24, symBinAddr: 0x1C50C, symSize: 0x20 } - - { offsetInCU: 0x1C48, offset: 0x67346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1CD4, symBinAddr: 0x1C6BC, symSize: 0x20 } - - { offsetInCU: 0x1C5C, offset: 0x6735A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1CF4, symBinAddr: 0x1C6DC, symSize: 0x4 } - - { offsetInCU: 0x1C70, offset: 0x6736E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x1C6E0, symSize: 0x44 } - - { offsetInCU: 0x1C84, offset: 0x67382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D3C, symBinAddr: 0x1C724, symSize: 0x4 } - - { offsetInCU: 0x1C98, offset: 0x67396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D40, symBinAddr: 0x1C728, symSize: 0x44 } - - { offsetInCU: 0x1CAC, offset: 0x673AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwCP', symObjAddr: 0x1E60, symBinAddr: 0x1C848, symSize: 0x5C } - - { offsetInCU: 0x1CC0, offset: 0x673BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1EBC, symBinAddr: 0x1C8A4, symSize: 0x18 } - - { offsetInCU: 0x1CD4, offset: 0x673D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1ED4, symBinAddr: 0x1C8BC, symSize: 0x14 } - - { offsetInCU: 0x1CE8, offset: 0x673E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1EE8, symBinAddr: 0x1C8D0, symSize: 0x18 } - - { offsetInCU: 0x1CFC, offset: 0x673FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwcp', symObjAddr: 0x1F00, symBinAddr: 0x1C8E8, symSize: 0x5C } - - { offsetInCU: 0x1D10, offset: 0x6740E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x1F5C, symBinAddr: 0x1C944, symSize: 0x6C } - - { offsetInCU: 0x1D24, offset: 0x67422, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1FC8, symBinAddr: 0x1C9B0, symSize: 0x14 } - - { offsetInCU: 0x1D38, offset: 0x67436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x1FDC, symBinAddr: 0x1C9C4, symSize: 0x50 } - - { offsetInCU: 0x1D4C, offset: 0x6744A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x202C, symBinAddr: 0x1CA14, symSize: 0x48 } - - { offsetInCU: 0x1D60, offset: 0x6745E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x2074, symBinAddr: 0x1CA5C, symSize: 0x48 } - - { offsetInCU: 0x1D74, offset: 0x67472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x20BC, symBinAddr: 0x1CAA4, symSize: 0x8 } - - { offsetInCU: 0x1D88, offset: 0x67486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x20C4, symBinAddr: 0x1CAAC, symSize: 0x4 } - - { offsetInCU: 0x1D9C, offset: 0x6749A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x20C8, symBinAddr: 0x1CAB0, symSize: 0x8 } - - { offsetInCU: 0x1DB0, offset: 0x674AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x20D0, symBinAddr: 0x1CAB8, symSize: 0x10 } - - { offsetInCU: 0x1DC4, offset: 0x674C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x21B8, symBinAddr: 0x1CB90, symSize: 0x90 } - - { offsetInCU: 0x1DD8, offset: 0x674D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2248, symBinAddr: 0x1CC20, symSize: 0xBC } - - { offsetInCU: 0x1DEC, offset: 0x674EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2304, symBinAddr: 0x1CCDC, symSize: 0x4 } - - { offsetInCU: 0x1E00, offset: 0x674FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2308, symBinAddr: 0x1CCE0, symSize: 0x10 } - - { offsetInCU: 0x1E14, offset: 0x67512, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x2318, symBinAddr: 0x1CCF0, symSize: 0x90 } - - { offsetInCU: 0x1E28, offset: 0x67526, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x23A8, symBinAddr: 0x1CD80, symSize: 0xBC } - - { offsetInCU: 0x1E3C, offset: 0x6753A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x2464, symBinAddr: 0x1CE3C, symSize: 0x8 } - - { offsetInCU: 0x1E50, offset: 0x6754E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x246C, symBinAddr: 0x1CE44, symSize: 0x4 } - - { offsetInCU: 0x1E64, offset: 0x67562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2470, symBinAddr: 0x1CE48, symSize: 0x8 } - - { offsetInCU: 0x1E78, offset: 0x67576, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2478, symBinAddr: 0x1CE50, symSize: 0x10 } - - { offsetInCU: 0x1E97, offset: 0x67595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x24B0, symBinAddr: 0x1CE88, symSize: 0x24 } - - { offsetInCU: 0x1EC0, offset: 0x675BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x25BC, symBinAddr: 0x1CF94, symSize: 0x8 } - - { offsetInCU: 0x1ED4, offset: 0x675D2, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x25C4, symBinAddr: 0x1CF9C, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x675E6, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x25D4, symBinAddr: 0x1CFAC, symSize: 0x8 } - - { offsetInCU: 0x1EFC, offset: 0x675FA, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2660, symBinAddr: 0x1CFB4, symSize: 0x3C } - - { offsetInCU: 0x1F7E, offset: 0x6767C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1A9E8, symSize: 0x4 } - - { offsetInCU: 0x1F9A, offset: 0x67698, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1A9EC, symSize: 0x4 } - - { offsetInCU: 0x1FB6, offset: 0x676B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1A9F0, symSize: 0x4 } - - { offsetInCU: 0x1FD2, offset: 0x676D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1A9F4, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x67AC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1D108, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x67AD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1D144, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67AEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1D1C8, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x67B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1D2F0, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x67B2F, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1D320, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x67B43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1D33C, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x67B57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1D3D8, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x67B6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1D43C, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x67B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1D498, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x67B93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1D4A8, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x67BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1D4D8, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67BBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1D500, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67BCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1D55C, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x67BE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1D5E0, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x67BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1D644, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x67C0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1D6A0, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x67C1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1D700, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x67C3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1D710, symSize: 0x10C } - - { offsetInCU: 0x20B, offset: 0x67C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x1DB68, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67CDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA68, symBinAddr: 0x1DB70, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x67DC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA8, symBinAddr: 0x1DBB0, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x67E42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1DC10, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x67E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1DC10, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x67E82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB0C, symBinAddr: 0x1DC14, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67EB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB34, symBinAddr: 0x1DC3C, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67ECF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB40, symBinAddr: 0x1DC48, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67EEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF18, symBinAddr: 0x1E020, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67F2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF84, symBinAddr: 0x1E08C, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67F63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x1DCA4, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67F9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE8, symBinAddr: 0x1DCF0, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF90, symBinAddr: 0x1E098, symSize: 0x144 } - - { offsetInCU: 0x58D, offset: 0x6800D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x714, symBinAddr: 0x1D81C, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x6805C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC28, symBinAddr: 0x1DD30, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x680C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x1DD48, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x6813C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC6C, symBinAddr: 0x1DD74, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x68167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC74, symBinAddr: 0x1DD7C, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x68198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC98, symBinAddr: 0x1DDA0, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x681B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1DDAC, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x681D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1224, symBinAddr: 0x1E2A8, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x68216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x734, symBinAddr: 0x1D83C, symSize: 0x1B8 } - - { offsetInCU: 0x7EB, offset: 0x6826B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1DE08, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x682A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD4C, symBinAddr: 0x1DE54, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x682C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1360, symBinAddr: 0x1E3E4, symSize: 0x254 } - - { offsetInCU: 0x895, offset: 0x68315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x8EC, symBinAddr: 0x1D9F4, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x68340, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE18, symBinAddr: 0x1DF20, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x6836B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE20, symBinAddr: 0x1DF28, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x6839C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE44, symBinAddr: 0x1DF4C, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x683B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CEC, symBinAddr: 0x1ED04, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x683FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x90C, symBinAddr: 0x1DA14, symSize: 0x154 } - - { offsetInCU: 0x9D3, offset: 0x68453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xEA0, symBinAddr: 0x1DFA8, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x6848A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEE0, symBinAddr: 0x1DFE8, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x684AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E44, symBinAddr: 0x1EE5C, symSize: 0x2A8 } - - { offsetInCU: 0xA80, offset: 0x68500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1138, symBinAddr: 0x1E1DC, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x68514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x119C, symBinAddr: 0x1E220, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x68528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x11E0, symBinAddr: 0x1E264, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x6853C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x15B4, symBinAddr: 0x1E638, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x68550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x163C, symBinAddr: 0x1E67C, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x68564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x172C, symBinAddr: 0x1E76C, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x68578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1788, symBinAddr: 0x1E7B8, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x6858C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1790, symBinAddr: 0x1E7C0, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x685A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1794, symBinAddr: 0x1E7C4, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x685B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x179C, symBinAddr: 0x1E7CC, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x685C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x1E7DC, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x685DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x1E82C, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x685F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x188C, symBinAddr: 0x1E8B8, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x68604, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1894, symBinAddr: 0x1E8C0, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x68618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1898, symBinAddr: 0x1E8C4, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x6862C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x189C, symBinAddr: 0x1E8C8, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x68640, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18AC, symBinAddr: 0x1E8D8, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x68654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x18E4, symBinAddr: 0x1E910, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x68668, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1948, symBinAddr: 0x1E974, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x6867C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A08, symBinAddr: 0x1EA20, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x68690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1A6C, symBinAddr: 0x1EA84, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x686A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1AC8, symBinAddr: 0x1EAE0, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x686B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B2C, symBinAddr: 0x1EB44, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x686CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B3C, symBinAddr: 0x1EB54, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x686E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B40, symBinAddr: 0x1EB58, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x686F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B84, symBinAddr: 0x1EB9C, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x68708, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B88, symBinAddr: 0x1EBA0, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x6871C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BCC, symBinAddr: 0x1EBE4, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x68730, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x1EBE8, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x68744, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C14, symBinAddr: 0x1EC2C, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x68758, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C18, symBinAddr: 0x1EC30, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x6876C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C5C, symBinAddr: 0x1EC74, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x68780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C60, symBinAddr: 0x1EC78, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x68794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CA4, symBinAddr: 0x1ECBC, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x687A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CA8, symBinAddr: 0x1ECC0, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x687BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x20EC, symBinAddr: 0x1F104, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x687D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x2284, symBinAddr: 0x1F29C, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x687E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2288, symBinAddr: 0x1F2A0, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x687F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2298, symBinAddr: 0x1F2B0, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x6880C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x229C, symBinAddr: 0x1F2B4, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x68820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22E0, symBinAddr: 0x1F2F8, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x68834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E4, symBinAddr: 0x1F2FC, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x68848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2328, symBinAddr: 0x1F340, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x6885C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x232C, symBinAddr: 0x1F344, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x688B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xACC, symBinAddr: 0x1DBD4, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x68953, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB4C, symBinAddr: 0x1DC54, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x6896F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB74, symBinAddr: 0x1DC7C, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x68991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCB0, symBinAddr: 0x1DDB8, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x689AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCD8, symBinAddr: 0x1DDE0, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x689CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE50, symBinAddr: 0x1DF58, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x689EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE78, symBinAddr: 0x1DF80, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x68B38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1F3B4, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x68B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1F3B4, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68B8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x1F8FC, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x68C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x1F924, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x68D1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x1F968, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x68D3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x1F968, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x68D7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x1F980, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x68E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x1F9C4, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x1F3CC, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68F5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x1F768, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68F71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x1F778, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68F91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x1F788, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68FAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x1F7B4, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x68FEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x1F7E8, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x6900C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x1F7F8, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x69037, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x1F7FC, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x69055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x1F804, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x6908F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x1F80C, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x690BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x1F81C, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x690F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x584, symBinAddr: 0x1F820, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x6910E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x598, symBinAddr: 0x1F834, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x69134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x1F848, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x69152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x1F874, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x6917D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x1F8A0, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x6919B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x1F8A8, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x691D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x1F8B0, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x691F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x1F8C0, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x69220, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x1F8C4, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x6923E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x1F8CC, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x6927A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x1F8D4, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x692A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x1F8E4, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x692D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x1F8E8, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x69301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x1F8F8, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x69343, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x1FA2C, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x69357, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x1FA30, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x6936B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x1FA74, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x6937F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x1FAA4, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x69393, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x1FB20, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x693A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x1FCA4, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x693C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x20038, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x693EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x20068, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x693FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x20094, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x69413, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x200C8, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x69427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x2010C, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x6943B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x202B8, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x6944F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x20300, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x69463, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x20378, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x69477, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x20388, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x6948B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x203BC, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x6949F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x203C4, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x694B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x203F8, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x694C7, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x2044C, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x694DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x20460, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x694EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x2049C, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x69503, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x204E4, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x69517, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x20524, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x6952B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x20534, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x6953F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x2056C, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x69553, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x205D8, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x69567, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x206B4, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x6957B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x206D0, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x6958F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x20744, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x695A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x207A0, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x695B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x20804, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x695CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x20814, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x695DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x2083C, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x695F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x20878, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x69607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x208E4, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x6961B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x20928, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x6962F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x20970, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x69643, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x209B0, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x69657, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x209C0, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x6966B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x20A14, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x6967F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x20A58, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x69693, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x20A68, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x696A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x20AF8, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x696BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x20BB4, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x696CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x20BBC, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x696E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x20BC0, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x696F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x20BCC, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x6974C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x1F9EC, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x69997, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x20BEC, symSize: 0x190 } - - { offsetInCU: 0x34F, offset: 0x69C78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x190, symBinAddr: 0x20D7C, symSize: 0x628 } - - { offsetInCU: 0x6AA, offset: 0x69FD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2D08, symBinAddr: 0x238F4, symSize: 0x6E8 } - - { offsetInCU: 0xBCE, offset: 0x6A4F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x840, symBinAddr: 0x2142C, symSize: 0x2220 } - - { offsetInCU: 0x1E29, offset: 0x6B752, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB708, symBinAddr: 0x2C2F4, symSize: 0x3C84 } - - { offsetInCU: 0x39B2, offset: 0x6D2DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xF38C, symBinAddr: 0x2FF78, symSize: 0x634 } - - { offsetInCU: 0x3F86, offset: 0x6D8AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tF', symObjAddr: 0xF9E8, symBinAddr: 0x305D4, symSize: 0x40 } - - { offsetInCU: 0x3FAE, offset: 0x6D8D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x1469C, symBinAddr: 0x35288, symSize: 0x3E0 } - - { offsetInCU: 0x413D, offset: 0x6DA66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x11108, symBinAddr: 0x31CF4, symSize: 0x271C } - - { offsetInCU: 0x5871, offset: 0x6F19A, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2A60, symBinAddr: 0x2364C, symSize: 0x2A8 } - - { offsetInCU: 0x5D25, offset: 0x6F64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x33F0, symBinAddr: 0x23FDC, symSize: 0x5D8 } - - { offsetInCU: 0x6058, offset: 0x6F981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x39C8, symBinAddr: 0x245B4, symSize: 0x394C } - - { offsetInCU: 0x7A52, offset: 0x7137B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7314, symBinAddr: 0x27F00, symSize: 0x278 } - - { offsetInCU: 0x7B69, offset: 0x71492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x7A10, symBinAddr: 0x285FC, symSize: 0x17AC } - - { offsetInCU: 0x84C3, offset: 0x71DEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x758C, symBinAddr: 0x28178, symSize: 0x118 } - - { offsetInCU: 0x852C, offset: 0x71E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x7800, symBinAddr: 0x283EC, symSize: 0x1E8 } - - { offsetInCU: 0x85F9, offset: 0x71F22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x79E8, symBinAddr: 0x285D4, symSize: 0x28 } - - { offsetInCU: 0x8836, offset: 0x7215F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x9210, symBinAddr: 0x29DFC, symSize: 0x754 } - - { offsetInCU: 0x8C47, offset: 0x72570, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA898, symBinAddr: 0x2B484, symSize: 0xE70 } - - { offsetInCU: 0x950F, offset: 0x72E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x9964, symBinAddr: 0x2A550, symSize: 0xB2C } - - { offsetInCU: 0x9F70, offset: 0x73899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xFE54, symBinAddr: 0x30A40, symSize: 0x12B4 } - - { offsetInCU: 0xAFC3, offset: 0x748EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x18310, symBinAddr: 0x38E2C, symSize: 0xBD0 } - - { offsetInCU: 0xBCEA, offset: 0x75613, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x13824, symBinAddr: 0x34410, symSize: 0xE78 } - - { offsetInCU: 0xC618, offset: 0x75F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x14A7C, symBinAddr: 0x35668, symSize: 0x1E8 } - - { offsetInCU: 0xC6AE, offset: 0x75FD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14C64, symBinAddr: 0x35850, symSize: 0x290 } - - { offsetInCU: 0xC79F, offset: 0x760C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14F04, symBinAddr: 0x35AF0, symSize: 0x90 } - - { offsetInCU: 0xC834, offset: 0x7615D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x14FE8, symBinAddr: 0x35BD4, symSize: 0x1004 } - - { offsetInCU: 0xD229, offset: 0x76B52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x15FEC, symBinAddr: 0x36BD8, symSize: 0x4C } - - { offsetInCU: 0xD245, offset: 0x76B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x16038, symBinAddr: 0x36C24, symSize: 0x150 } - - { offsetInCU: 0xD354, offset: 0x76C7D, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x16188, symBinAddr: 0x36D74, symSize: 0x54 } - - { offsetInCU: 0xD3CD, offset: 0x76CF6, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x16230, symBinAddr: 0x36DC8, symSize: 0x4C } - - { offsetInCU: 0xD451, offset: 0x76D7A, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x1627C, symBinAddr: 0x36E14, symSize: 0x50 } - - { offsetInCU: 0xD4CA, offset: 0x76DF3, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x162CC, symBinAddr: 0x36E64, symSize: 0x64 } - - { offsetInCU: 0xD50C, offset: 0x76E35, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x16330, symBinAddr: 0x36EC8, symSize: 0x30 } - - { offsetInCU: 0xD539, offset: 0x76E62, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16360, symBinAddr: 0x36EF8, symSize: 0x80 } - - { offsetInCU: 0xD5D7, offset: 0x76F00, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x163E0, symBinAddr: 0x36F78, symSize: 0x6C } - - { offsetInCU: 0xD671, offset: 0x76F9A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1644C, symBinAddr: 0x36FE4, symSize: 0x4C } - - { offsetInCU: 0xD6F5, offset: 0x7701E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x164C4, symBinAddr: 0x3705C, symSize: 0xE0 } - - { offsetInCU: 0xD73F, offset: 0x77068, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x165A4, symBinAddr: 0x3713C, symSize: 0xC4 } - - { offsetInCU: 0xD76C, offset: 0x77095, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16668, symBinAddr: 0x37200, symSize: 0x174 } - - { offsetInCU: 0xD820, offset: 0x77149, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x167DC, symBinAddr: 0x37374, symSize: 0x104 } - - { offsetInCU: 0xD9B3, offset: 0x772DC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x168E0, symBinAddr: 0x37478, symSize: 0x128 } - - { offsetInCU: 0xDB56, offset: 0x7747F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x16A08, symBinAddr: 0x375A0, symSize: 0x16C } - - { offsetInCU: 0xDD2B, offset: 0x77654, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x16B74, symBinAddr: 0x3770C, symSize: 0x174 } - - { offsetInCU: 0xDEE6, offset: 0x7780F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16CE8, symBinAddr: 0x37880, symSize: 0xFC } - - { offsetInCU: 0xE089, offset: 0x779B2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x16DE4, symBinAddr: 0x3797C, symSize: 0xFC } - - { offsetInCU: 0xE22C, offset: 0x77B55, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x16FE4, symBinAddr: 0x37B7C, symSize: 0xFC } - - { offsetInCU: 0xE356, offset: 0x77C7F, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x170E0, symBinAddr: 0x37C78, symSize: 0x40 } - - { offsetInCU: 0xE3A3, offset: 0x77CCC, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x17384, symBinAddr: 0x37F1C, symSize: 0x138 } - - { offsetInCU: 0xE442, offset: 0x77D6B, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x174BC, symBinAddr: 0x38054, symSize: 0xB4 } - - { offsetInCU: 0xE511, offset: 0x77E3A, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x177BC, symBinAddr: 0x38314, symSize: 0x18C } - - { offsetInCU: 0xE622, offset: 0x77F4B, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17948, symBinAddr: 0x384A0, symSize: 0xC0 } - - { offsetInCU: 0xE725, offset: 0x7804E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17C24, symBinAddr: 0x38740, symSize: 0x1A0 } - - { offsetInCU: 0xE87A, offset: 0x781A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17DC4, symBinAddr: 0x388E0, symSize: 0x380 } - - { offsetInCU: 0xEBA6, offset: 0x784CF, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18EE0, symBinAddr: 0x399FC, symSize: 0x198 } - - { offsetInCU: 0xECC2, offset: 0x785EB, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19078, symBinAddr: 0x39B94, symSize: 0xC0 } - - { offsetInCU: 0xEFF4, offset: 0x7891D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x19138, symBinAddr: 0x39C54, symSize: 0xD28 } - - { offsetInCU: 0x1026F, offset: 0x79B98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19E60, symBinAddr: 0x3A97C, symSize: 0x1C0 } - - { offsetInCU: 0x1041D, offset: 0x79D46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A020, symBinAddr: 0x3AB3C, symSize: 0x1A4 } - - { offsetInCU: 0x10510, offset: 0x79E39, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A1C4, symBinAddr: 0x3ACE0, symSize: 0x84 } - - { offsetInCU: 0x1071D, offset: 0x7A046, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1ACC8, symBinAddr: 0x3B7E4, symSize: 0x8 } - - { offsetInCU: 0x10731, offset: 0x7A05A, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1ADAC, symBinAddr: 0x3B8C8, symSize: 0x10 } - - { offsetInCU: 0x10745, offset: 0x7A06E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1ADBC, symBinAddr: 0x3B8D8, symSize: 0x14 } - - { offsetInCU: 0x10759, offset: 0x7A082, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1ADD0, symBinAddr: 0x3B8EC, symSize: 0x50 } - - { offsetInCU: 0x1076D, offset: 0x7A096, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1AE30, symBinAddr: 0x3B93C, symSize: 0x44 } - - { offsetInCU: 0x10781, offset: 0x7A0AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1AE74, symBinAddr: 0x3B980, symSize: 0x30C } - - { offsetInCU: 0x10795, offset: 0x7A0BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1B180, symBinAddr: 0x3BC8C, symSize: 0x240 } - - { offsetInCU: 0x107A9, offset: 0x7A0D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1B3C0, symBinAddr: 0x3BECC, symSize: 0x70 } - - { offsetInCU: 0x107BD, offset: 0x7A0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1B430, symBinAddr: 0x3BF3C, symSize: 0x34 } - - { offsetInCU: 0x107D1, offset: 0x7A0FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1B464, symBinAddr: 0x3BF70, symSize: 0x174 } - - { offsetInCU: 0x107E5, offset: 0x7A10E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1B5D8, symBinAddr: 0x3C0E4, symSize: 0xB4 } - - { offsetInCU: 0x1081A, offset: 0x7A143, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1BEA4, symBinAddr: 0x3C198, symSize: 0xC4 } - - { offsetInCU: 0x10890, offset: 0x7A1B9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BF68, symBinAddr: 0x3C25C, symSize: 0x78 } - - { offsetInCU: 0x108BD, offset: 0x7A1E6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BFE0, symBinAddr: 0x3C2D4, symSize: 0x80 } - - { offsetInCU: 0x10933, offset: 0x7A25C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C060, symBinAddr: 0x3C354, symSize: 0x68 } - - { offsetInCU: 0x10A57, offset: 0x7A380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C0C8, symBinAddr: 0x3C3BC, symSize: 0x644 } - - { offsetInCU: 0x10EFB, offset: 0x7A824, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1C71C, symBinAddr: 0x3CA10, symSize: 0x4C } - - { offsetInCU: 0x10F0F, offset: 0x7A838, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1C810, symBinAddr: 0x3CA7C, symSize: 0x8 } - - { offsetInCU: 0x10F23, offset: 0x7A84C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1C818, symBinAddr: 0x3CA84, symSize: 0x44 } - - { offsetInCU: 0x10F37, offset: 0x7A860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1C85C, symBinAddr: 0x3CAC8, symSize: 0x44 } - - { offsetInCU: 0x10F4B, offset: 0x7A874, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1C908, symBinAddr: 0x3CB30, symSize: 0x8 } - - { offsetInCU: 0x10F5F, offset: 0x7A888, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1C920, symBinAddr: 0x3CB38, symSize: 0x3C } - - { offsetInCU: 0x10F73, offset: 0x7A89C, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1C95C, symBinAddr: 0x3CB74, symSize: 0x34 } - - { offsetInCU: 0x10F87, offset: 0x7A8B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1CA10, symBinAddr: 0x3CC28, symSize: 0x44 } - - { offsetInCU: 0x10FBC, offset: 0x7A8E5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CB18, symBinAddr: 0x3CD30, symSize: 0x48 } - - { offsetInCU: 0x10FDB, offset: 0x7A904, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CB60, symBinAddr: 0x3CD78, symSize: 0x64 } - - { offsetInCU: 0x1101E, offset: 0x7A947, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CBC4, symBinAddr: 0x3CDDC, symSize: 0x80 } - - { offsetInCU: 0x110B3, offset: 0x7A9DC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CC44, symBinAddr: 0x3CE5C, symSize: 0x120 } - - { offsetInCU: 0x1119B, offset: 0x7AAC4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1CDAC, symBinAddr: 0x3CFC4, symSize: 0x48 } - - { offsetInCU: 0x111AF, offset: 0x7AAD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1CDF4, symBinAddr: 0x3D00C, symSize: 0x40 } - - { offsetInCU: 0x111C3, offset: 0x7AAEC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1CF08, symBinAddr: 0x3D120, symSize: 0x48 } - - { offsetInCU: 0x111D7, offset: 0x7AB00, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1CFD0, symBinAddr: 0x3D1E8, symSize: 0x18 } - - { offsetInCU: 0x111EB, offset: 0x7AB14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1CFE8, symBinAddr: 0x3D200, symSize: 0x10 } - - { offsetInCU: 0x111FF, offset: 0x7AB28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1CFF8, symBinAddr: 0x3D210, symSize: 0x34 } - - { offsetInCU: 0x11213, offset: 0x7AB3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D068, symBinAddr: 0x3D280, symSize: 0x30 } - - { offsetInCU: 0x112C9, offset: 0x7ABF2, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x7B8, symBinAddr: 0x213A4, symSize: 0x88 } - - { offsetInCU: 0x116A8, offset: 0x7AFD1, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xA490, symBinAddr: 0x2B07C, symSize: 0x408 } - - { offsetInCU: 0x11983, offset: 0x7B2AC, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xFCC8, symBinAddr: 0x308B4, symSize: 0x18C } - - { offsetInCU: 0x11BA1, offset: 0x7B4CA, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x14F94, symBinAddr: 0x35B80, symSize: 0x54 } - - { offsetInCU: 0x11D0E, offset: 0x7B637, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x17570, symBinAddr: 0x38108, symSize: 0x110 } - - { offsetInCU: 0x11E4F, offset: 0x7B778, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x176C0, symBinAddr: 0x38218, symSize: 0xFC } - - { offsetInCU: 0x11F50, offset: 0x7B879, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17A68, symBinAddr: 0x38584, symSize: 0x1BC } - - { offsetInCU: 0x1201E, offset: 0x7B947, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18144, symBinAddr: 0x38C60, symSize: 0x1CC } - - { offsetInCU: 0x122E1, offset: 0x7BC0A, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A424, symBinAddr: 0x3AF40, symSize: 0x1DC } - - { offsetInCU: 0x123CD, offset: 0x7BCF6, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A600, symBinAddr: 0x3B11C, symSize: 0x11C } - - { offsetInCU: 0x12514, offset: 0x7BE3D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1A71C, symBinAddr: 0x3B238, symSize: 0xFC } - - { offsetInCU: 0x1265B, offset: 0x7BF84, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1A818, symBinAddr: 0x3B334, symSize: 0xE4 } - - { offsetInCU: 0x12796, offset: 0x7C0BF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1A8FC, symBinAddr: 0x3B418, symSize: 0x114 } - - { offsetInCU: 0x128D7, offset: 0x7C200, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AA10, symBinAddr: 0x3B52C, symSize: 0xEC } - - { offsetInCU: 0x12A1E, offset: 0x7C347, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1ABE4, symBinAddr: 0x3B700, symSize: 0xE4 } - - { offsetInCU: 0x12B7D, offset: 0x7C4A6, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CA54, symBinAddr: 0x3CC6C, symSize: 0xC4 } - - { offsetInCU: 0x12E23, offset: 0x7C74C, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x76A4, symBinAddr: 0x28290, symSize: 0x15C } - - { offsetInCU: 0x27, offset: 0x7CCFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3D2E8, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7CD12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3D2E8, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7CD26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3D318, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7CD3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3D404, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7CD4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3D67C, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7CD62, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3DA98, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7CD76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3DAA0, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7CD8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3DCE8, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7CD9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3DD30, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7CDB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x3DDEC, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7D0E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x3E2A8, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7D193, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x3E4AC, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D61B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x3F0BC, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D83B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x3F5FC, symSize: 0x920 } - - { offsetInCU: 0xD3E, offset: 0x7DBD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x2154, symBinAddr: 0x3FF48, symSize: 0x20FC } - - { offsetInCU: 0x202F, offset: 0x7EEC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE414, symBinAddr: 0x4C208, symSize: 0x6B8 } - - { offsetInCU: 0x23FC, offset: 0x7F28F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4250, symBinAddr: 0x42044, symSize: 0x1190 } - - { offsetInCU: 0x2F50, offset: 0x7FDE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x53E0, symBinAddr: 0x431D4, symSize: 0xB94 } - - { offsetInCU: 0x377E, offset: 0x80611, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x5F74, symBinAddr: 0x43D68, symSize: 0x3DC } - - { offsetInCU: 0x3895, offset: 0x80728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6BD4, symBinAddr: 0x449C8, symSize: 0x1EC } - - { offsetInCU: 0x3B41, offset: 0x809D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x6DC0, symBinAddr: 0x44BB4, symSize: 0x914 } - - { offsetInCU: 0x42D4, offset: 0x81167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x76D4, symBinAddr: 0x454C8, symSize: 0x2A8 } - - { offsetInCU: 0x440C, offset: 0x8129F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x797C, symBinAddr: 0x45770, symSize: 0x628 } - - { offsetInCU: 0x47FD, offset: 0x81690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x7FA4, symBinAddr: 0x45D98, symSize: 0x658 } - - { offsetInCU: 0x4ABF, offset: 0x81952, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x85FC, symBinAddr: 0x463F0, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x81A10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x882C, symBinAddr: 0x46620, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x81A93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x8A58, symBinAddr: 0x4684C, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x81AC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x8AD8, symBinAddr: 0x468CC, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81AFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD05C, symBinAddr: 0x4AE50, symSize: 0x780 } - - { offsetInCU: 0x4FB4, offset: 0x81E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD7DC, symBinAddr: 0x4B5D0, symSize: 0x9BC } - - { offsetInCU: 0x52A3, offset: 0x82136, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE198, symBinAddr: 0x4BF8C, symSize: 0x218 } - - { offsetInCU: 0x5378, offset: 0x8220B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xEACC, symBinAddr: 0x4C8C0, symSize: 0x81C } - - { offsetInCU: 0x5683, offset: 0x82516, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF2E8, symBinAddr: 0x4D0DC, symSize: 0xBA8 } - - { offsetInCU: 0x5972, offset: 0x82805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xFE90, symBinAddr: 0x4DC84, symSize: 0x278 } - - { offsetInCU: 0x5A47, offset: 0x828DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x10108, symBinAddr: 0x4DEFC, symSize: 0x214 } - - { offsetInCU: 0x5F3D, offset: 0x82DD0, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2128, symBinAddr: 0x3FF1C, symSize: 0x2C } - - { offsetInCU: 0x623B, offset: 0x830CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x8AF4, symBinAddr: 0x468E8, symSize: 0x20 } - - { offsetInCU: 0x6294, offset: 0x83127, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8B14, symBinAddr: 0x46908, symSize: 0x8C } - - { offsetInCU: 0x632C, offset: 0x831BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x8BA0, symBinAddr: 0x46994, symSize: 0x1258 } - - { offsetInCU: 0x6AA4, offset: 0x83937, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0x9DF8, symBinAddr: 0x47BEC, symSize: 0x40 } - - { offsetInCU: 0x6AE8, offset: 0x8397B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0x9E38, symBinAddr: 0x47C2C, symSize: 0x58 } - - { offsetInCU: 0x6B13, offset: 0x839A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0x9E90, symBinAddr: 0x47C84, symSize: 0x54 } - - { offsetInCU: 0x6B55, offset: 0x839E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9EE4, symBinAddr: 0x47CD8, symSize: 0x64 } - - { offsetInCU: 0x6B88, offset: 0x83A1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x9F48, symBinAddr: 0x47D3C, symSize: 0x4 } - - { offsetInCU: 0x6BB3, offset: 0x83A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9F4C, symBinAddr: 0x47D40, symSize: 0x78 } - - { offsetInCU: 0x6BF5, offset: 0x83A88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9FC4, symBinAddr: 0x47DB8, symSize: 0x90 } - - { offsetInCU: 0x6C37, offset: 0x83ACA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA054, symBinAddr: 0x47E48, symSize: 0x6C } - - { offsetInCU: 0x6C6A, offset: 0x83AFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA0C0, symBinAddr: 0x47EB4, symSize: 0x4 } - - { offsetInCU: 0x6C86, offset: 0x83B19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA0C4, symBinAddr: 0x47EB8, symSize: 0x4 } - - { offsetInCU: 0x6CB1, offset: 0x83B44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA0C8, symBinAddr: 0x47EBC, symSize: 0x74 } - - { offsetInCU: 0x6CE4, offset: 0x83B77, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA13C, symBinAddr: 0x47F30, symSize: 0x4 } - - { offsetInCU: 0x6D03, offset: 0x83B96, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA140, symBinAddr: 0x47F34, symSize: 0x8 } - - { offsetInCU: 0x6D1F, offset: 0x83BB2, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA140, symBinAddr: 0x47F34, symSize: 0x8 } - - { offsetInCU: 0x6D30, offset: 0x83BC3, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA148, symBinAddr: 0x47F3C, symSize: 0xC8 } - - { offsetInCU: 0x6DCD, offset: 0x83C60, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA210, symBinAddr: 0x48004, symSize: 0xCC } - - { offsetInCU: 0x6E79, offset: 0x83D0C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA3D8, symBinAddr: 0x481CC, symSize: 0x1F4 } - - { offsetInCU: 0x6F05, offset: 0x83D98, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA5CC, symBinAddr: 0x483C0, symSize: 0x1C4 } - - { offsetInCU: 0x6FBD, offset: 0x83E50, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA790, symBinAddr: 0x48584, symSize: 0x3A0 } - - { offsetInCU: 0x70DD, offset: 0x83F70, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAB30, symBinAddr: 0x48924, symSize: 0x398 } - - { offsetInCU: 0x71F4, offset: 0x84087, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xAEC8, symBinAddr: 0x48CBC, symSize: 0x1E4 } - - { offsetInCU: 0x7285, offset: 0x84118, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB0AC, symBinAddr: 0x48EA0, symSize: 0x204 } - - { offsetInCU: 0x730B, offset: 0x8419E, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB2B0, symBinAddr: 0x490A4, symSize: 0x4C } - - { offsetInCU: 0x73C8, offset: 0x8425B, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB2FC, symBinAddr: 0x490F0, symSize: 0x90 } - - { offsetInCU: 0x7463, offset: 0x842F6, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB38C, symBinAddr: 0x49180, symSize: 0x40 } - - { offsetInCU: 0x74A0, offset: 0x84333, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB3CC, symBinAddr: 0x491C0, symSize: 0x18 } - - { offsetInCU: 0x74F2, offset: 0x84385, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB3E4, symBinAddr: 0x491D8, symSize: 0x3C } - - { offsetInCU: 0x751B, offset: 0x843AE, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB420, symBinAddr: 0x49214, symSize: 0x1C } - - { offsetInCU: 0x75EB, offset: 0x8447E, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB43C, symBinAddr: 0x49230, symSize: 0xE0 } - - { offsetInCU: 0x770E, offset: 0x845A1, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xB600, symBinAddr: 0x493F4, symSize: 0x294 } - - { offsetInCU: 0x7785, offset: 0x84618, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBB30, symBinAddr: 0x49924, symSize: 0x8C } - - { offsetInCU: 0x779D, offset: 0x84630, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBBBC, symBinAddr: 0x499B0, symSize: 0x4C } - - { offsetInCU: 0x77F2, offset: 0x84685, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBC08, symBinAddr: 0x499FC, symSize: 0x154 } - - { offsetInCU: 0x7860, offset: 0x846F3, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBD5C, symBinAddr: 0x49B50, symSize: 0xF0 } - - { offsetInCU: 0x7885, offset: 0x84718, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xBE4C, symBinAddr: 0x49C40, symSize: 0x214 } - - { offsetInCU: 0x78BE, offset: 0x84751, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC060, symBinAddr: 0x49E54, symSize: 0x78 } - - { offsetInCU: 0x78D6, offset: 0x84769, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC0D8, symBinAddr: 0x49ECC, symSize: 0x1C } - - { offsetInCU: 0x78EE, offset: 0x84781, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC0F4, symBinAddr: 0x49EE8, symSize: 0x1C } - - { offsetInCU: 0x7906, offset: 0x84799, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC110, symBinAddr: 0x49F04, symSize: 0x1C } - - { offsetInCU: 0x796B, offset: 0x847FE, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC12C, symBinAddr: 0x49F20, symSize: 0x104 } - - { offsetInCU: 0x7ACE, offset: 0x84961, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC230, symBinAddr: 0x4A024, symSize: 0x174 } - - { offsetInCU: 0x7C3E, offset: 0x84AD1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC3A4, symBinAddr: 0x4A198, symSize: 0x124 } - - { offsetInCU: 0x7D3E, offset: 0x84BD1, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC4C8, symBinAddr: 0x4A2BC, symSize: 0x120 } - - { offsetInCU: 0x7F8A, offset: 0x84E1D, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xC5E8, symBinAddr: 0x4A3DC, symSize: 0x36C } - - { offsetInCU: 0x8578, offset: 0x8540B, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC954, symBinAddr: 0x4A748, symSize: 0x290 } - - { offsetInCU: 0x8765, offset: 0x855F8, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xCBE4, symBinAddr: 0x4A9D8, symSize: 0x150 } - - { offsetInCU: 0x88CB, offset: 0x8575E, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xCD34, symBinAddr: 0x4AB28, symSize: 0x218 } - - { offsetInCU: 0x8917, offset: 0x857AA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xCF4C, symBinAddr: 0x4AD40, symSize: 0x14 } - - { offsetInCU: 0x8950, offset: 0x857E3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xCF60, symBinAddr: 0x4AD54, symSize: 0xFC } - - { offsetInCU: 0x8A0E, offset: 0x858A1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xE3B0, symBinAddr: 0x4C1A4, symSize: 0x64 } - - { offsetInCU: 0x8ABA, offset: 0x8594D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x1031C, symBinAddr: 0x4E110, symSize: 0xA78 } - - { offsetInCU: 0x9088, offset: 0x85F1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10D94, symBinAddr: 0x4EB88, symSize: 0x104 } - - { offsetInCU: 0x91F4, offset: 0x86087, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10E98, symBinAddr: 0x4EC8C, symSize: 0x2D5C } - - { offsetInCU: 0x98BA, offset: 0x8674D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x13BF4, symBinAddr: 0x519E8, symSize: 0x120 } - - { offsetInCU: 0x99CB, offset: 0x8685E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x13D14, symBinAddr: 0x51B08, symSize: 0x80 } - - { offsetInCU: 0x9A4E, offset: 0x868E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x13D94, symBinAddr: 0x51B88, symSize: 0x654 } - - { offsetInCU: 0x9DEA, offset: 0x86C7D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14448, symBinAddr: 0x521DC, symSize: 0x10 } - - { offsetInCU: 0x9DFE, offset: 0x86C91, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x14458, symBinAddr: 0x521EC, symSize: 0x10 } - - { offsetInCU: 0x9E12, offset: 0x86CA5, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x144AC, symBinAddr: 0x521FC, symSize: 0x48 } - - { offsetInCU: 0x9E26, offset: 0x86CB9, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x1455C, symBinAddr: 0x52244, symSize: 0x3C } - - { offsetInCU: 0x9E3A, offset: 0x86CCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x14598, symBinAddr: 0x52280, symSize: 0x44 } - - { offsetInCU: 0x9E4E, offset: 0x86CE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOf', symObjAddr: 0x145DC, symBinAddr: 0x522C4, symSize: 0x48 } - - { offsetInCU: 0x9E62, offset: 0x86CF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x1469C, symBinAddr: 0x52348, symSize: 0x8 } - - { offsetInCU: 0x9E76, offset: 0x86D09, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x146A4, symBinAddr: 0x52350, symSize: 0x10 } - - { offsetInCU: 0x9E8A, offset: 0x86D1D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x146B4, symBinAddr: 0x52360, symSize: 0x8 } - - { offsetInCU: 0x9E9E, offset: 0x86D31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x1473C, symBinAddr: 0x523A4, symSize: 0x30 } - - { offsetInCU: 0x9EF6, offset: 0x86D89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x147FC, symBinAddr: 0x52464, symSize: 0x24 } - - { offsetInCU: 0x9F32, offset: 0x86DC5, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14868, symBinAddr: 0x52488, symSize: 0x44 } - - { offsetInCU: 0x9F61, offset: 0x86DF4, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x3DDFC, symSize: 0x12C } - - { offsetInCU: 0x9F97, offset: 0x86E2A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x3DF28, symSize: 0x58 } - - { offsetInCU: 0xA077, offset: 0x86F0A, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x3DF80, symSize: 0x90 } - - { offsetInCU: 0xA0A0, offset: 0x86F33, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x3E010, symSize: 0xA0 } - - { offsetInCU: 0xA1CC, offset: 0x8705F, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x3E0B0, symSize: 0x9C } - - { offsetInCU: 0xA2DB, offset: 0x8716E, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x3E14C, symSize: 0x74 } - - { offsetInCU: 0xA360, offset: 0x871F3, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x3E1C0, symSize: 0x4 } - - { offsetInCU: 0xA382, offset: 0x87215, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x3E1C4, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x87C11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x52590, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x87C3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x53400, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x87C67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE78, symBinAddr: 0x53408, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x87C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE9C, symBinAddr: 0x5342C, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x87CB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEA8, symBinAddr: 0x53438, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x87CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5B80, symBinAddr: 0x58080, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x525B0, symSize: 0x17C } - - { offsetInCU: 0x1BC, offset: 0x87D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF04, symBinAddr: 0x53494, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x87DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF54, symBinAddr: 0x534E4, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x87DC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CAC, symBinAddr: 0x581AC, symSize: 0x132C } - - { offsetInCU: 0x267, offset: 0x87E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x19C, symBinAddr: 0x5272C, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x87E65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xFA4, symBinAddr: 0x53534, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x87ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xFBC, symBinAddr: 0x5354C, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFE8, symBinAddr: 0x53578, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xFF0, symBinAddr: 0x53580, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x87FA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1014, symBinAddr: 0x535A4, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x87FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1020, symBinAddr: 0x535B0, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x87FD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7ABC, symBinAddr: 0x595A4, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x8801F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BC, symBinAddr: 0x5274C, symSize: 0x264 } - - { offsetInCU: 0x4C5, offset: 0x88074, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x107C, symBinAddr: 0x5360C, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x880AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10CC, symBinAddr: 0x5365C, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x880CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C98, symBinAddr: 0x59780, symSize: 0xF38 } - - { offsetInCU: 0x569, offset: 0x88118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x420, symBinAddr: 0x529B0, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x88151, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x529D0, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x8817F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x529D0, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x881D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1140, symBinAddr: 0x536D0, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x88239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x11A4, symBinAddr: 0x53734, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x88255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x11CC, symBinAddr: 0x5375C, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x8828B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11D4, symBinAddr: 0x53764, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x88310, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x123C, symBinAddr: 0x537CC, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x8832C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1248, symBinAddr: 0x537D8, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x88349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x460, symBinAddr: 0x529F0, symSize: 0x190 } - - { offsetInCU: 0x7EF, offset: 0x8839E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x12A4, symBinAddr: 0x53834, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x883D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12EC, symBinAddr: 0x5387C, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x883F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DAC, symBinAddr: 0x5A894, symSize: 0x220 } - - { offsetInCU: 0x899, offset: 0x88448, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x5F0, symBinAddr: 0x52B80, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x88473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x132C, symBinAddr: 0x538BC, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x8849E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1334, symBinAddr: 0x538C4, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x884CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1358, symBinAddr: 0x538E8, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x884EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1364, symBinAddr: 0x538F4, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x88507, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8FCC, symBinAddr: 0x5AAB4, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x8854D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x610, symBinAddr: 0x52BA0, symSize: 0x268 } - - { offsetInCU: 0x9F3, offset: 0x885A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13C0, symBinAddr: 0x53950, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x885D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1420, symBinAddr: 0x539B0, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x885FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9278, symBinAddr: 0x5AD60, symSize: 0x538 } - - { offsetInCU: 0xA9D, offset: 0x8864C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x878, symBinAddr: 0x52E08, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x88697, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1478, symBinAddr: 0x53A08, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x88728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x53A20, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x8880B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D4, symBinAddr: 0x53A64, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x8887D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x153C, symBinAddr: 0x53ACC, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x888A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1544, symBinAddr: 0x53AD4, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x888D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1568, symBinAddr: 0x53AF8, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x888F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x53B04, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x88911, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x97B0, symBinAddr: 0x5B298, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x88957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x898, symBinAddr: 0x52E28, symSize: 0x118 } - - { offsetInCU: 0xDFD, offset: 0x889AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15D0, symBinAddr: 0x53B60, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x889E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15FC, symBinAddr: 0x53B8C, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x88A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9864, symBinAddr: 0x5B34C, symSize: 0x1A0 } - - { offsetInCU: 0xEA8, offset: 0x88A57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x9B0, symBinAddr: 0x52F40, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x88A82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x169C, symBinAddr: 0x53C2C, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x88AAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16A4, symBinAddr: 0x53C34, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x88ADE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16C8, symBinAddr: 0x53C58, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x88AFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16D4, symBinAddr: 0x53C64, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x88B16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9A04, symBinAddr: 0x5B4EC, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x88B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9D0, symBinAddr: 0x52F60, symSize: 0x214 } - - { offsetInCU: 0x1002, offset: 0x88BB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1730, symBinAddr: 0x53CC0, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x88BE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x53D30, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x88C0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9C38, symBinAddr: 0x5B720, symSize: 0x8C8 } - - { offsetInCU: 0x10A6, offset: 0x88C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBE4, symBinAddr: 0x53174, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x88C8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x53194, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x88CBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x53194, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88D05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x198C, symBinAddr: 0x53F1C, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x88D4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x19D0, symBinAddr: 0x53F60, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x88D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0x53F88, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x88D95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A00, symBinAddr: 0x53F90, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x88DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1A3C, symBinAddr: 0x53FCC, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A48, symBinAddr: 0x53FD8, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x88E32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA5CC, symBinAddr: 0x5C0B4, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x88E5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC24, symBinAddr: 0x531B4, symSize: 0x244 } - - { offsetInCU: 0x1304, offset: 0x88EB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA4, symBinAddr: 0x54034, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x88EEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AFC, symBinAddr: 0x5408C, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x88F0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA61C, symBinAddr: 0x5C104, symSize: 0x760 } - - { offsetInCU: 0x13D3, offset: 0x88F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1B4C, symBinAddr: 0x540DC, symSize: 0x1B8 } - - { offsetInCU: 0x142F, offset: 0x88FDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x1D04, symBinAddr: 0x54294, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x89025, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5948, symBinAddr: 0x57ECC, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x89090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x599C, symBinAddr: 0x57F20, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x890E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A1C, symBinAddr: 0x57FA0, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x89119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5A24, symBinAddr: 0x57FA8, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x89199, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5A84, symBinAddr: 0x58008, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x891B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x1D14, symBinAddr: 0x542A4, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x891CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x1D34, symBinAddr: 0x542C4, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x891DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x1E28, symBinAddr: 0x543B8, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x891F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x21AC, symBinAddr: 0x5473C, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x8920D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x2E04, symBinAddr: 0x55394, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x89236, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x2E34, symBinAddr: 0x553C4, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x8924A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x2E60, symBinAddr: 0x553F0, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x8925E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x2E8C, symBinAddr: 0x5541C, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x89272, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x2EB8, symBinAddr: 0x55448, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x89286, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2EE4, symBinAddr: 0x55474, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x8929A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x2EEC, symBinAddr: 0x5547C, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x892AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x32AC, symBinAddr: 0x5583C, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x892C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3308, symBinAddr: 0x55898, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x892D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x33F4, symBinAddr: 0x55984, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x892EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3404, symBinAddr: 0x55994, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x892FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x3434, symBinAddr: 0x559C4, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x89312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x3514, symBinAddr: 0x55AA4, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x89326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x384C, symBinAddr: 0x55DDC, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x8933A, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x40B0, symBinAddr: 0x56640, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x8934E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x40B8, symBinAddr: 0x56648, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x89362, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x441C, symBinAddr: 0x569AC, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x89376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x4478, symBinAddr: 0x56A08, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x8938A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x455C, symBinAddr: 0x56AEC, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x8939E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x456C, symBinAddr: 0x56AFC, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x893B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x4610, symBinAddr: 0x56BA0, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x893C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x479C, symBinAddr: 0x56D2C, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x893DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4B44, symBinAddr: 0x570D4, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x893EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4B88, symBinAddr: 0x57118, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x89402, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x4D04, symBinAddr: 0x57294, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x89416, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x4D60, symBinAddr: 0x572F0, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x8942A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x4DF4, symBinAddr: 0x57384, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x8943E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x4E04, symBinAddr: 0x57394, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x89452, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x4E6C, symBinAddr: 0x573FC, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x89466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x4F48, symBinAddr: 0x574D8, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x8947A, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x50B4, symBinAddr: 0x57644, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x8948E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x50E0, symBinAddr: 0x57670, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x894A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x51A4, symBinAddr: 0x57734, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x894B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x5200, symBinAddr: 0x57790, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x894CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x527C, symBinAddr: 0x5780C, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x894DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x528C, symBinAddr: 0x5781C, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x894F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x52D4, symBinAddr: 0x57864, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x89506, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x53B8, symBinAddr: 0x57948, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x8951A, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5550, symBinAddr: 0x57AE0, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x8952E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x5584, symBinAddr: 0x57B14, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x89542, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5680, symBinAddr: 0x57C10, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x89556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x56DC, symBinAddr: 0x57C6C, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x8956A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x5758, symBinAddr: 0x57CE8, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x8957E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x5768, symBinAddr: 0x57CF8, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x89592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5790, symBinAddr: 0x57D20, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x895A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x57CC, symBinAddr: 0x57D5C, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x895BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x5844, symBinAddr: 0x57DC8, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x895CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5888, symBinAddr: 0x57E0C, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x895E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x58E4, symBinAddr: 0x57E68, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x895F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x5938, symBinAddr: 0x57EBC, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x8960A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5A8C, symBinAddr: 0x58010, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x8961E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5A90, symBinAddr: 0x58014, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x89632, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5B58, symBinAddr: 0x58058, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x89646, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x6FD8, symBinAddr: 0x594D8, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x8965A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x701C, symBinAddr: 0x5951C, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x8966E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7A78, symBinAddr: 0x59560, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x89682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x5A6B8, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x89696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x8C14, symBinAddr: 0x5A6FC, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x896AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x8C58, symBinAddr: 0x5A740, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x896BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x8C9C, symBinAddr: 0x5A784, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x896D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x8CE0, symBinAddr: 0x5A7C8, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x896E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x8D24, symBinAddr: 0x5A80C, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x896FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x8D68, symBinAddr: 0x5A850, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x8970E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA500, symBinAddr: 0x5BFE8, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x89722, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xA544, symBinAddr: 0x5C02C, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x89736, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xA588, symBinAddr: 0x5C070, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x8974A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xAD7C, symBinAddr: 0x5C864, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x8975E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xADC0, symBinAddr: 0x5C8A8, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x89772, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xAE04, symBinAddr: 0x5C8EC, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x89786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xAE8C, symBinAddr: 0x5C974, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x8979A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xAED0, symBinAddr: 0x5C9B8, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x897AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xAF24, symBinAddr: 0x5C9FC, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x897C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xAFB4, symBinAddr: 0x5CA8C, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x897D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB070, symBinAddr: 0x5CB48, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x897EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB078, symBinAddr: 0x5CB50, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x897FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB07C, symBinAddr: 0x5CB54, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x89812, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB088, symBinAddr: 0x5CB60, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x89826, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB098, symBinAddr: 0x5CB70, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x8983A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB128, symBinAddr: 0x5CC00, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x8984E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB1E4, symBinAddr: 0x5CCBC, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x89862, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB1E8, symBinAddr: 0x5CCC0, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x89876, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB1F8, symBinAddr: 0x5CCD0, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x8988A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB288, symBinAddr: 0x5CD60, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x8989E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB344, symBinAddr: 0x5CE1C, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x898B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB348, symBinAddr: 0x5CE20, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x898C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB358, symBinAddr: 0x5CE30, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x898DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB3E8, symBinAddr: 0x5CEC0, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x898EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB4A4, symBinAddr: 0x5CF7C, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x89902, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB4A8, symBinAddr: 0x5CF80, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x89916, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB4B8, symBinAddr: 0x5CF90, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x8992A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB548, symBinAddr: 0x5D020, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x8993E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB604, symBinAddr: 0x5D0DC, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x89952, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB60C, symBinAddr: 0x5D0E4, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x89966, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB610, symBinAddr: 0x5D0E8, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x8997A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB618, symBinAddr: 0x5D0F0, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x8998E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB628, symBinAddr: 0x5D100, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x899A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB6B8, symBinAddr: 0x5D190, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x899B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB774, symBinAddr: 0x5D24C, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x899CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB778, symBinAddr: 0x5D250, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x899DE, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB788, symBinAddr: 0x5D260, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x899F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xB7AC, symBinAddr: 0x5D284, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x89A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xB7CC, symBinAddr: 0x5D2A4, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x89A1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xB80C, symBinAddr: 0x5D2E4, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x89A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB81C, symBinAddr: 0x5D2F4, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x89A42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB820, symBinAddr: 0x5D2F8, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x89A56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB864, symBinAddr: 0x5D33C, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x89A6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB868, symBinAddr: 0x5D340, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x89A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB8AC, symBinAddr: 0x5D384, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x89A92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB8B0, symBinAddr: 0x5D388, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x89AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB8F4, symBinAddr: 0x5D3CC, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x89ABA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB8F8, symBinAddr: 0x5D3D0, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x89ACE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB93C, symBinAddr: 0x5D414, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB940, symBinAddr: 0x5D418, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x89AF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB984, symBinAddr: 0x5D45C, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x89B0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB988, symBinAddr: 0x5D460, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x89B1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xB9CC, symBinAddr: 0x5D4A4, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x89B32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xB9D0, symBinAddr: 0x5D4A8, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x89B46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBA14, symBinAddr: 0x5D4EC, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x89B5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBA18, symBinAddr: 0x5D4F0, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x89B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBA5C, symBinAddr: 0x5D534, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x89B82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBA60, symBinAddr: 0x5D538, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x89B96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBAA4, symBinAddr: 0x5D57C, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x89BAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBAA8, symBinAddr: 0x5D580, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x89BBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBAEC, symBinAddr: 0x5D5C4, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x89BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAF0, symBinAddr: 0x5D5C8, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89BE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB34, symBinAddr: 0x5D60C, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x89BFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBB38, symBinAddr: 0x5D610, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x89C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB7C, symBinAddr: 0x5D654, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x89C22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB80, symBinAddr: 0x5D658, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x89C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBBC4, symBinAddr: 0x5D69C, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x89C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBBC8, symBinAddr: 0x5D6A0, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x89C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC0C, symBinAddr: 0x5D6E4, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x89C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC10, symBinAddr: 0x5D6E8, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x89C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC54, symBinAddr: 0x5D72C, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x89C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBC58, symBinAddr: 0x5D730, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x89CAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC9C, symBinAddr: 0x5D774, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x89CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBCA0, symBinAddr: 0x5D778, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x89CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCE4, symBinAddr: 0x5D7BC, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x89CEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCE8, symBinAddr: 0x5D7C0, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x89CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xBD2C, symBinAddr: 0x5D804, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89D12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xBD70, symBinAddr: 0x5D848, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89D26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xBE00, symBinAddr: 0x5D8D8, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x89D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xBEBC, symBinAddr: 0x5D994, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x89D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xBEC0, symBinAddr: 0x5D998, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x89D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBED0, symBinAddr: 0x5D9A8, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x89D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBED4, symBinAddr: 0x5D9AC, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x89D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF18, symBinAddr: 0x5D9F0, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x89D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF1C, symBinAddr: 0x5D9F4, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x89DB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF60, symBinAddr: 0x5DA38, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x89DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBF64, symBinAddr: 0x5DA3C, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89DF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xEB4, symBinAddr: 0x53444, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89E10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEDC, symBinAddr: 0x5346C, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x89E32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x102C, symBinAddr: 0x535BC, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x89E4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1054, symBinAddr: 0x535E4, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x89E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x111C, symBinAddr: 0x536AC, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x89E86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1128, symBinAddr: 0x536B8, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x89EA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1130, symBinAddr: 0x536C0, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x89EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1138, symBinAddr: 0x536C8, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89EE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1254, symBinAddr: 0x537E4, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x89EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x127C, symBinAddr: 0x5380C, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x89F1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x53900, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x89F3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1398, symBinAddr: 0x53928, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x89F83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14FC, symBinAddr: 0x53A8C, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x8A025, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1580, symBinAddr: 0x53B10, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x8A041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15A8, symBinAddr: 0x53B38, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x8A063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x53C70, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x8A07F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1708, symBinAddr: 0x53C98, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x8A0B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1808, symBinAddr: 0x53D98, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x8A168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1890, symBinAddr: 0x53E20, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x8A1E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x18F0, symBinAddr: 0x53E80, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x8A238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1930, symBinAddr: 0x53EC0, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x8A29A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x53FE4, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x8A2B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A7C, symBinAddr: 0x5400C, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x8A2ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5A48, symBinAddr: 0x57FCC, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x8A4F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DAE8, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8A51A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DAE8, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x8A538, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5DAF0, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x8A574, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5DAF8, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8A592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5DB08, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x8A5BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5DB0C, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x8A5DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5DB14, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x8A617, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5DB1C, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x8A645, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5DB2C, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x8A670, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5DB30, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x8A68E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5DB38, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x8A6C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5DB40, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A6F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5DB50, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A722, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5DB54, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A736, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5DBA8, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A74A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5DBEC, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DBFC, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A8A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DBFC, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A8F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5DC20, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8AA0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DC40, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8AA4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DC40, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8AA9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5DC64, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8ABB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DC84, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8ABFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DC84, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8AC48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5DCE4, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8AC5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5DCEC, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8AC70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5DD28, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8AD89, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DDA0, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8AE46, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DDA0, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8B03F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5E108, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8B1EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E150, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8B231, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E150, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8B27D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5E174, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8B3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5E194, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8B3E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5E228, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8B42D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x5EB60, symSize: 0x44 } - - { offsetInCU: 0x12D, offset: 0x8B49C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA74, symBinAddr: 0x5EBC8, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8B4B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA80, symBinAddr: 0x5EBD4, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8B4E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x5EBF8, symSize: 0x54 } - - { offsetInCU: 0x209, offset: 0x8B578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5E200, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8B5A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF8, symBinAddr: 0x5EC4C, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8B5CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x5ECF0, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8B5EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xBA8, symBinAddr: 0x5ECFC, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B8AB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x5EA94, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B927, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBCC, symBinAddr: 0x5ED20, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8BB7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC8, symBinAddr: 0x5F11C, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8BCFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1104, symBinAddr: 0x5F258, symSize: 0xA58 } - - { offsetInCU: 0xF95, offset: 0x8C304, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B5C, symBinAddr: 0x5FCB0, symSize: 0x654 } - - { offsetInCU: 0x1345, offset: 0x8C6B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x21B0, symBinAddr: 0x60304, symSize: 0x470 } - - { offsetInCU: 0x14E4, offset: 0x8C853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2620, symBinAddr: 0x60774, symSize: 0x618 } - - { offsetInCU: 0x1A13, offset: 0x8CD82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2C38, symBinAddr: 0x60D8C, symSize: 0x150 } - - { offsetInCU: 0x1B2D, offset: 0x8CE9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2D88, symBinAddr: 0x60EDC, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8CEDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3338, symBinAddr: 0x61430, symSize: 0x204 } - - { offsetInCU: 0x1C21, offset: 0x8CF90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x353C, symBinAddr: 0x61634, symSize: 0x23C } - - { offsetInCU: 0x1C86, offset: 0x8CFF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3778, symBinAddr: 0x61870, symSize: 0x238 } - - { offsetInCU: 0x1DAE, offset: 0x8D11D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39F4, symBinAddr: 0x61AA8, symSize: 0x29C } - - { offsetInCU: 0x1EED, offset: 0x8D25C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3C90, symBinAddr: 0x61D44, symSize: 0x188 } - - { offsetInCU: 0x1F33, offset: 0x8D2A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E18, symBinAddr: 0x61ECC, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8D5F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x428C, symBinAddr: 0x62340, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D6F2, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2E04, symBinAddr: 0x60F58, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D734, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2E08, symBinAddr: 0x60F5C, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D748, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2E0C, symBinAddr: 0x60F60, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D75C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2E50, symBinAddr: 0x60FA4, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D770, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2E54, symBinAddr: 0x60FA8, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D784, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x2EE4, symBinAddr: 0x60FF4, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D798, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x2EE8, symBinAddr: 0x60FF8, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D7AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x2F3C, symBinAddr: 0x6103C, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D7C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x2FCC, symBinAddr: 0x610CC, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D7D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3088, symBinAddr: 0x61188, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D7E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3090, symBinAddr: 0x61190, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D7FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x3094, symBinAddr: 0x61194, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x309C, symBinAddr: 0x6119C, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D824, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x30AC, symBinAddr: 0x611AC, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D838, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x313C, symBinAddr: 0x6123C, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D84C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x31F8, symBinAddr: 0x612F8, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3200, symBinAddr: 0x61300, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D874, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x3204, symBinAddr: 0x61304, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D888, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3210, symBinAddr: 0x61310, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D89C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3220, symBinAddr: 0x61320, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D8B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3248, symBinAddr: 0x61340, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D8C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3254, symBinAddr: 0x6134C, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D8D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3258, symBinAddr: 0x61350, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D8EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x329C, symBinAddr: 0x61394, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D900, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x32A8, symBinAddr: 0x613A0, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x32AC, symBinAddr: 0x613A4, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D928, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x32F0, symBinAddr: 0x613E8, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D947, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x32FC, symBinAddr: 0x613F4, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D97F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3310, symBinAddr: 0x61408, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D9B7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3324, symBinAddr: 0x6141C, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8DA1B, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x43A4, symBinAddr: 0x62458, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8DA2F, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4448, symBinAddr: 0x624A0, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8DA43, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4484, symBinAddr: 0x624DC, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8DA57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x44DC, symBinAddr: 0x62524, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8DA6B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x44E4, symBinAddr: 0x6252C, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8DA7F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x44F4, symBinAddr: 0x6253C, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8DA93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4554, symBinAddr: 0x62544, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8DAA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x4608, symBinAddr: 0x625F8, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8DAD6, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8DAEE, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8DB02, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8DB16, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8DB2A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8DB3E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x5E250, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8DBBC, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x5E274, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8DC4B, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x5E2F8, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8DCDA, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x5E37C, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8DD71, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x5E408, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8DE4B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x5E470, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8DF25, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x5E4D8, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8DF9A, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x5E544, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8DFF7, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x5E584, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8E054, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x5E5C4, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8E07D, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x5E608, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8E0D0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x5E670, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8E14C, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x5E6D4, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8E1DD, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x5E738, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8E343, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8E363, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8E383, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8E397, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8E3AB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8E3BF, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8E468, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5E844, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8E50F, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x5E8CC, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8E5B2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x5E94C, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8E69E, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8E6BE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8E6D2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E6E6, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E6FA, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E76A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x5EBA4, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA5C, symBinAddr: 0x5EBB0, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E7A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA64, symBinAddr: 0x5EBB8, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E7B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA6C, symBinAddr: 0x5EBC0, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E7D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB78, symBinAddr: 0x5ECCC, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E7EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB84, symBinAddr: 0x5ECD8, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E808, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x5ECE0, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E81C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB94, symBinAddr: 0x5ECE8, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8ECCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x62614, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8ECE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x6279C, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8ECF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x62840, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8ED0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x6299C, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8ED1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x62B84, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8ED33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x62C70, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8ED47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x62DF8, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8ED5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x62E90, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8ED6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x62F28, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8ED83, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x62FB0, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8ED97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x63004, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8EDAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x63124, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8EDBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x631A8, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8EDD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x6329C, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8EDE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x633FC, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8EDFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x634D8, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8EE0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x63620, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8EE23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x636B8, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8EE37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x63784, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8EE69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x6380C, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8EEB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x63D64, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8EF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A8, symBinAddr: 0x63D7C, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8EF98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D4, symBinAddr: 0x63DA8, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8EFC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17DC, symBinAddr: 0x63DB0, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8EFF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1800, symBinAddr: 0x63DD4, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8F010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x180C, symBinAddr: 0x63DE0, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8F02C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E30, symBinAddr: 0x65308, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8F072, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x6382C, symSize: 0x200 } - - { offsetInCU: 0x425, offset: 0x8F0B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1458, symBinAddr: 0x63A2C, symSize: 0x338 } - - { offsetInCU: 0x456, offset: 0x8F0E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1868, symBinAddr: 0x63E3C, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8F105, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x187C, symBinAddr: 0x63E50, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8F15D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x63E64, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8F188, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A64, symBinAddr: 0x64038, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8F1B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A6C, symBinAddr: 0x64040, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8F1E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A90, symBinAddr: 0x64064, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8F200, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A9C, symBinAddr: 0x64070, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8F21C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FEC, symBinAddr: 0x654C4, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8F262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x63E84, symSize: 0x1AC } - - { offsetInCU: 0x62B, offset: 0x8F2B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AF8, symBinAddr: 0x640CC, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8F2EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B44, symBinAddr: 0x64118, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8F311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3138, symBinAddr: 0x65610, symSize: 0x294 } - - { offsetInCU: 0x6D5, offset: 0x8F361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1B84, symBinAddr: 0x64158, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8F38C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2300, symBinAddr: 0x648D4, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8F3B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2308, symBinAddr: 0x648DC, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8F3E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x232C, symBinAddr: 0x64900, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8F404, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2338, symBinAddr: 0x6490C, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8F420, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33CC, symBinAddr: 0x658A4, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8F466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BA4, symBinAddr: 0x64178, symSize: 0x264 } - - { offsetInCU: 0x819, offset: 0x8F4A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E08, symBinAddr: 0x643DC, symSize: 0x474 } - - { offsetInCU: 0x84A, offset: 0x8F4D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2394, symBinAddr: 0x64968, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8F4F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A8, symBinAddr: 0x6497C, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8F51D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x23E0, symBinAddr: 0x64990, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8F531, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2444, symBinAddr: 0x649D4, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8F545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x250C, symBinAddr: 0x64A54, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8F559, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2594, symBinAddr: 0x64A98, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8F56D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x26C0, symBinAddr: 0x64BC4, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8F581, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2714, symBinAddr: 0x64C08, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8F595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x27A4, symBinAddr: 0x64C98, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8F5A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2860, symBinAddr: 0x64D54, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8F5BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2868, symBinAddr: 0x64D5C, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8F5D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x286C, symBinAddr: 0x64D60, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8F5E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2874, symBinAddr: 0x64D68, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8F5F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2884, symBinAddr: 0x64D78, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8F60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2914, symBinAddr: 0x64E08, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8F621, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x29D0, symBinAddr: 0x64EC4, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8F635, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x29D4, symBinAddr: 0x64EC8, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8F649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x29E4, symBinAddr: 0x64ED8, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8F65D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2A14, symBinAddr: 0x64F08, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8F671, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2A44, symBinAddr: 0x64F38, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8F685, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2AA0, symBinAddr: 0x64F94, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8F699, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2B50, symBinAddr: 0x65028, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8F6AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2BB4, symBinAddr: 0x6508C, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8F6C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2C10, symBinAddr: 0x650E8, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8F6D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2C70, symBinAddr: 0x65148, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F6E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2C80, symBinAddr: 0x65158, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F6FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2C84, symBinAddr: 0x6515C, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2CC8, symBinAddr: 0x651A0, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2CCC, symBinAddr: 0x651A4, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D10, symBinAddr: 0x651E8, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F74D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D14, symBinAddr: 0x651EC, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2D58, symBinAddr: 0x65230, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F775, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2D5C, symBinAddr: 0x65234, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F789, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DA0, symBinAddr: 0x65278, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F79D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA4, symBinAddr: 0x6527C, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F7B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE8, symBinAddr: 0x652C0, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F7C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DEC, symBinAddr: 0x652C4, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F7E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x36A4, symBinAddr: 0x65B7C, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F7F8, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x36E8, symBinAddr: 0x65BC0, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F80C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x37B4, symBinAddr: 0x65C8C, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3844, symBinAddr: 0x65D1C, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3900, symBinAddr: 0x65DD8, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3904, symBinAddr: 0x65DDC, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F85C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3914, symBinAddr: 0x65DEC, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3918, symBinAddr: 0x65DF0, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x395C, symBinAddr: 0x65E34, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3960, symBinAddr: 0x65E38, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F8AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39A4, symBinAddr: 0x65E7C, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F8C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39A8, symBinAddr: 0x65E80, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F8EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1818, symBinAddr: 0x63DEC, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F90A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x63E14, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F92C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AA8, symBinAddr: 0x6407C, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F948, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x640A4, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F96A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2344, symBinAddr: 0x64918, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F986, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x236C, symBinAddr: 0x64940, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8FAD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x65EEC, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8FAFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x65EEC, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8FB1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x65F18, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8FB59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x65F4C, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8FB77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x65F5C, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8FBA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x65F60, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8FBC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x65F8C, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8FBFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x65FC0, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8FC2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x65FD0, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8FC59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x65FD4, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8FC6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x66004, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8FC81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6602C, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8FC95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x66068, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8FCA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x660D4, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8FCBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x66118, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8FCD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x66160, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8FCE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x661A0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8FE2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x661B0, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8FE4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0SSvpZ', symObjAddr: 0x8F90, symBinAddr: 0x853C8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8FE69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8languageSSvpZ', symObjAddr: 0x8FA0, symBinAddr: 0x853D8, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8FE83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7versionSSvpZ', symObjAddr: 0x8FB0, symBinAddr: 0x853E8, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8FE9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8FC0, symBinAddr: 0x853F8, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8FEB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8FD0, symBinAddr: 0x85408, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8FED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8FE0, symBinAddr: 0x85418, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8FEEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8FF0, symBinAddr: 0x85428, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8FF05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x9000, symBinAddr: 0x85438, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8FF1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x9010, symBinAddr: 0x85448, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8FF39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x9020, symBinAddr: 0x85458, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8FF53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x9030, symBinAddr: 0x85468, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8FF6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x9040, symBinAddr: 0x85478, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8FF87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x9050, symBinAddr: 0x85488, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8FFA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x9060, symBinAddr: 0x85498, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8FFBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x9070, symBinAddr: 0x854A8, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8FFD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x9080, symBinAddr: 0x854B8, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8FFEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x9090, symBinAddr: 0x854C8, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x90009, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x90A0, symBinAddr: 0x854D8, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x90023, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x90B0, symBinAddr: 0x854E8, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x9003D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x90C0, symBinAddr: 0x854F8, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x90057, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x90D0, symBinAddr: 0x85508, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x90071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x90E0, symBinAddr: 0x85518, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x9008B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x90F0, symBinAddr: 0x85528, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x900A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x9100, symBinAddr: 0x85538, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x900BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x9110, symBinAddr: 0x85548, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x900D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x9120, symBinAddr: 0x85558, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x900F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x9130, symBinAddr: 0x85568, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x9010D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x9140, symBinAddr: 0x85578, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x90127, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x9150, symBinAddr: 0x85588, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x90141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x9160, symBinAddr: 0x85598, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x9015B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKeySSvpZ', symObjAddr: 0x9170, symBinAddr: 0x855A8, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x90175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKeySSvpZ', symObjAddr: 0x9180, symBinAddr: 0x855B8, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x9018F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvpZ', symObjAddr: 0x9190, symBinAddr: 0x855C8, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x901A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKeySSvpZ', symObjAddr: 0x91A0, symBinAddr: 0x855D8, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x901C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKeySSvpZ', symObjAddr: 0x91B0, symBinAddr: 0x855E8, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x901DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKeySSvpZ', symObjAddr: 0x91C0, symBinAddr: 0x855F8, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x901F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKeySSvpZ', symObjAddr: 0x91D0, symBinAddr: 0x85608, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x90211, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvpZ', symObjAddr: 0x91E0, symBinAddr: 0x85618, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x9022B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvpZ', symObjAddr: 0x91F0, symBinAddr: 0x85628, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x90245, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvpZ', symObjAddr: 0x9200, symBinAddr: 0x85638, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x9025F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkeySSvpZ', symObjAddr: 0x9210, symBinAddr: 0x85648, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x90279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvpZ', symObjAddr: 0x9220, symBinAddr: 0x85658, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x90293, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKeySSvpZ', symObjAddr: 0x9230, symBinAddr: 0x85668, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x902AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKeySSvpZ', symObjAddr: 0x9240, symBinAddr: 0x85678, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x902C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKeySSvpZ', symObjAddr: 0x9250, symBinAddr: 0x85688, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x902E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKeySSvpZ', symObjAddr: 0x9260, symBinAddr: 0x85698, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x902FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKeySSvpZ', symObjAddr: 0x9270, symBinAddr: 0x856A8, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x90315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKeySSvpZ', symObjAddr: 0x9280, symBinAddr: 0x856B8, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x9032F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x9290, symBinAddr: 0x856C8, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x90349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x92A0, symBinAddr: 0x856D8, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x90363, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x92B0, symBinAddr: 0x856E8, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x9037D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKeySSvpZ', symObjAddr: 0x92C0, symBinAddr: 0x856F8, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x90397, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKeySSvpZ', symObjAddr: 0x92D0, symBinAddr: 0x85708, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x903B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKeySSvpZ', symObjAddr: 0x92E0, symBinAddr: 0x85718, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x903CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x92F0, symBinAddr: 0x85728, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x903E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x9300, symBinAddr: 0x85738, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x903FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x9310, symBinAddr: 0x85748, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x90419, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x9320, symBinAddr: 0x85758, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x90433, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x9330, symBinAddr: 0x85768, symSize: 0x0 } - - { offsetInCU: 0x649, offset: 0x9044D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkeySSvpZ', symObjAddr: 0x9340, symBinAddr: 0x85778, symSize: 0x0 } - - { offsetInCU: 0x657, offset: 0x9045B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x661B0, symSize: 0x40 } - - { offsetInCU: 0x675, offset: 0x90479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x661F0, symSize: 0x40 } - - { offsetInCU: 0x693, offset: 0x90497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x66230, symSize: 0x40 } - - { offsetInCU: 0x6B1, offset: 0x904B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x66270, symSize: 0x40 } - - { offsetInCU: 0x6CF, offset: 0x904D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x662B0, symSize: 0x40 } - - { offsetInCU: 0x6F9, offset: 0x904FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x662F0, symSize: 0x14 } - - { offsetInCU: 0x714, offset: 0x90518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x66484, symSize: 0x108 } - - { offsetInCU: 0x766, offset: 0x9056A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x666C0, symSize: 0x8 } - - { offsetInCU: 0x782, offset: 0x90586, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x666C8, symSize: 0x18 } - - { offsetInCU: 0x79A, offset: 0x9059E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x666C8, symSize: 0x18 } - - { offsetInCU: 0x7AC, offset: 0x905B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x66304, symSize: 0x40 } - - { offsetInCU: 0x7CA, offset: 0x905CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x66344, symSize: 0x40 } - - { offsetInCU: 0x7E8, offset: 0x905EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x66384, symSize: 0x40 } - - { offsetInCU: 0x806, offset: 0x9060A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x663C4, symSize: 0x40 } - - { offsetInCU: 0x824, offset: 0x90628, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x66404, symSize: 0x40 } - - { offsetInCU: 0x842, offset: 0x90646, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x66444, symSize: 0x40 } - - { offsetInCU: 0x86B, offset: 0x9066F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x665B0, symSize: 0x4 } - - { offsetInCU: 0x87F, offset: 0x90683, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x665B4, symSize: 0x44 } - - { offsetInCU: 0x8A9, offset: 0x906AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x666E0, symSize: 0x90 } - - { offsetInCU: 0x8BD, offset: 0x906C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x66770, symSize: 0xBC } - - { offsetInCU: 0x8D1, offset: 0x906D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x6682C, symSize: 0x8 } - - { offsetInCU: 0x8E5, offset: 0x906E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x66834, symSize: 0x4 } - - { offsetInCU: 0x8F9, offset: 0x906FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x66838, symSize: 0x8 } - - { offsetInCU: 0x90D, offset: 0x90711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x66840, symSize: 0x10 } - - { offsetInCU: 0x921, offset: 0x90725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0_WZ', symObjAddr: 0x6B0, symBinAddr: 0x66850, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x9073F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8language_WZ', symObjAddr: 0x6CC, symBinAddr: 0x6686C, symSize: 0x20 } - - { offsetInCU: 0x955, offset: 0x90759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7version_WZ', symObjAddr: 0x6EC, symBinAddr: 0x6688C, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x90773, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x708, symBinAddr: 0x668A8, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x9078D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x724, symBinAddr: 0x668C4, symSize: 0x1C } - - { offsetInCU: 0x9A3, offset: 0x907A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x740, symBinAddr: 0x668E0, symSize: 0x1C } - - { offsetInCU: 0x9BD, offset: 0x907C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPassword_WZ', symObjAddr: 0x75C, symBinAddr: 0x668FC, symSize: 0x14 } - - { offsetInCU: 0x9DE, offset: 0x907E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x770, symBinAddr: 0x66910, symSize: 0x1C } - - { offsetInCU: 0x9F8, offset: 0x907FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x78C, symBinAddr: 0x6692C, symSize: 0x24 } - - { offsetInCU: 0xA12, offset: 0x90816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x7B0, symBinAddr: 0x66950, symSize: 0x20 } - - { offsetInCU: 0xA2C, offset: 0x90830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7D0, symBinAddr: 0x66970, symSize: 0x28 } - - { offsetInCU: 0xA46, offset: 0x9084A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7F8, symBinAddr: 0x66998, symSize: 0x24 } - - { offsetInCU: 0xA60, offset: 0x90864, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x81C, symBinAddr: 0x669BC, symSize: 0x24 } - - { offsetInCU: 0xA7A, offset: 0x9087E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x840, symBinAddr: 0x669E0, symSize: 0x20 } - - { offsetInCU: 0xA94, offset: 0x90898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x860, symBinAddr: 0x66A00, symSize: 0x28 } - - { offsetInCU: 0xAAE, offset: 0x908B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x888, symBinAddr: 0x66A28, symSize: 0x1C } - - { offsetInCU: 0xAC9, offset: 0x908CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKey_WZ', symObjAddr: 0x8A4, symBinAddr: 0x66A44, symSize: 0x18 } - - { offsetInCU: 0xAE3, offset: 0x908E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKey_WZ', symObjAddr: 0x8BC, symBinAddr: 0x66A5C, symSize: 0x18 } - - { offsetInCU: 0xAFD, offset: 0x90901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x66A74, symSize: 0x1C } - - { offsetInCU: 0xB17, offset: 0x9091B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x66A90, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x90935, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKey_WZ', symObjAddr: 0x90C, symBinAddr: 0x66AAC, symSize: 0x18 } - - { offsetInCU: 0xB4B, offset: 0x9094F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKey_WZ', symObjAddr: 0x924, symBinAddr: 0x66AC4, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x90969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKey_WZ', symObjAddr: 0x940, symBinAddr: 0x66AE0, symSize: 0x1C } - - { offsetInCU: 0xB7F, offset: 0x90983, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x66AFC, symSize: 0x1C } - - { offsetInCU: 0xB99, offset: 0x9099D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKey_WZ', symObjAddr: 0x978, symBinAddr: 0x66B18, symSize: 0x18 } - - { offsetInCU: 0xBB3, offset: 0x909B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKey_WZ', symObjAddr: 0x990, symBinAddr: 0x66B30, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x909D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x66B48, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x909EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKey_WZ', symObjAddr: 0x9C4, symBinAddr: 0x66B64, symSize: 0x18 } - - { offsetInCU: 0xC01, offset: 0x90A05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x66B7C, symSize: 0x1C } - - { offsetInCU: 0xC1B, offset: 0x90A1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9F8, symBinAddr: 0x66B98, symSize: 0x24 } - - { offsetInCU: 0xC35, offset: 0x90A39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKey_WZ', symObjAddr: 0xA1C, symBinAddr: 0x66BBC, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x90A53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKey_WZ', symObjAddr: 0xA34, symBinAddr: 0x66BD4, symSize: 0x18 } - - { offsetInCU: 0xC69, offset: 0x90A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKey_WZ', symObjAddr: 0xA4C, symBinAddr: 0x66BEC, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x90A87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x66C04, symSize: 0x1C } - - { offsetInCU: 0xC9D, offset: 0x90AA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKey_WZ', symObjAddr: 0xA80, symBinAddr: 0x66C20, symSize: 0x18 } - - { offsetInCU: 0xCB7, offset: 0x90ABB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKey_WZ', symObjAddr: 0xA98, symBinAddr: 0x66C38, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x90AD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x66C50, symSize: 0x1C } - - { offsetInCU: 0xCEB, offset: 0x90AEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkey_WZ', symObjAddr: 0xACC, symBinAddr: 0x66C6C, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x90B09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkey_WZ', symObjAddr: 0xAE4, symBinAddr: 0x66C84, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x90B23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekey_WZ', symObjAddr: 0xAFC, symBinAddr: 0x66C9C, symSize: 0x18 } - - { offsetInCU: 0xD39, offset: 0x90B3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkey_WZ', symObjAddr: 0xB14, symBinAddr: 0x66CB4, symSize: 0x18 } - - { offsetInCU: 0xD53, offset: 0x90B57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkey_WZ', symObjAddr: 0xB2C, symBinAddr: 0x66CCC, symSize: 0x20 } - - { offsetInCU: 0xD6D, offset: 0x90B71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKey_WZ', symObjAddr: 0xB4C, symBinAddr: 0x66CEC, symSize: 0x24 } - - { offsetInCU: 0xD87, offset: 0x90B8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x66D10, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x90BA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x66D2C, symSize: 0x1C } - - { offsetInCU: 0xDBB, offset: 0x90BBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x66D48, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x90BD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKey_WZ', symObjAddr: 0xBC4, symBinAddr: 0x66D64, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x90BF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x66D7C, symSize: 0x1C } - - { offsetInCU: 0xE09, offset: 0x90C0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBF8, symBinAddr: 0x66D98, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x90C27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xC10, symBinAddr: 0x66DB0, symSize: 0x18 } - - { offsetInCU: 0xE3D, offset: 0x90C41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC28, symBinAddr: 0x66DC8, symSize: 0x18 } - - { offsetInCU: 0xE57, offset: 0x90C5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x66DE0, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x90C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKey_WZ', symObjAddr: 0xC5C, symBinAddr: 0x66DFC, symSize: 0x24 } - - { offsetInCU: 0xE8B, offset: 0x90C8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x66E20, symSize: 0x1C } - - { offsetInCU: 0xEA5, offset: 0x90CA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKey_WZ', symObjAddr: 0xC9C, symBinAddr: 0x66E3C, symSize: 0x20 } - - { offsetInCU: 0xEBF, offset: 0x90CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCBC, symBinAddr: 0x66E5C, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x90CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCD4, symBinAddr: 0x66E74, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90CF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCEC, symBinAddr: 0x66E8C, symSize: 0x18 } - - { offsetInCU: 0xF0D, offset: 0x90D11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekey_WZ', symObjAddr: 0xD04, symBinAddr: 0x66EA4, symSize: 0x18 } - - { offsetInCU: 0xF27, offset: 0x90D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkey_WZ', symObjAddr: 0xD1C, symBinAddr: 0x66EBC, symSize: 0x18 } - - { offsetInCU: 0xF69, offset: 0x90D6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0xD34, symBinAddr: 0x66ED4, symSize: 0x288 } - - { offsetInCU: 0x10FC, offset: 0x90F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x6658C, symSize: 0x24 } - - { offsetInCU: 0x119E, offset: 0x90FA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x665F8, symSize: 0x4C } - - { offsetInCU: 0x1276, offset: 0x9107A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x66644, symSize: 0x34 } - - { offsetInCU: 0x12F2, offset: 0x910F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x66678, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x912BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6715C, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x91301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6715C, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x9134D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x67180, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x9148E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1B00, symBinAddr: 0x84D90, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x914D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x6727C, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x91556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x672BC, symSize: 0x3F8 } - - { offsetInCU: 0x302, offset: 0x91741, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x564, symBinAddr: 0x676C4, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x917A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C8, symBinAddr: 0x67728, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x9180D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x62C, symBinAddr: 0x6778C, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x91873, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x690, symBinAddr: 0x677F0, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x918D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6F4, symBinAddr: 0x67854, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x919D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x81C, symBinAddr: 0x67920, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x91A47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6795C, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x91A83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6795C, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x91AB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x868, symBinAddr: 0x6796C, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x91B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x9CC, symBinAddr: 0x67AD0, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x91B94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xA00, symBinAddr: 0x67B04, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x91C15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA54, symBinAddr: 0x67B58, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91CB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xAA0, symBinAddr: 0x67BA4, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x91D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB34, symBinAddr: 0x67C28, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x91E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA8, symBinAddr: 0x67C9C, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91ED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC2C, symBinAddr: 0x67D20, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91F62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC64, symBinAddr: 0x67D58, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91FF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC9C, symBinAddr: 0x67D90, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x92085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCD4, symBinAddr: 0x67DC8, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x9211A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD0C, symBinAddr: 0x67E00, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x921AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD44, symBinAddr: 0x67E38, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x92244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD7C, symBinAddr: 0x67E70, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x922D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDB4, symBinAddr: 0x67EA8, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x92344, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDEC, symBinAddr: 0x67EE0, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x923A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE30, symBinAddr: 0x67F24, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x9248B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xF68, symBinAddr: 0x6805C, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x92572, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1014, symBinAddr: 0x68108, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x9260D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x108C, symBinAddr: 0x68180, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x9263A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1110, symBinAddr: 0x68204, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x926E0, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x671E0, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x926F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x67230, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x92796, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5C0, symBinAddr: 0x67720, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x927AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x624, symBinAddr: 0x67784, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x927BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x688, symBinAddr: 0x677E8, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x927D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6EC, symBinAddr: 0x6784C, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x927E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x750, symBinAddr: 0x678B0, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x927FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x7B4, symBinAddr: 0x678B8, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x9280E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOf', symObjAddr: 0x7D4, symBinAddr: 0x678D8, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x9286F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1258, symBinAddr: 0x6834C, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x92883, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1260, symBinAddr: 0x68354, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x92897, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1270, symBinAddr: 0x68364, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x928D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x12A4, symBinAddr: 0x6836C, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x929DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15C4, symBinAddr: 0x6868C, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x92B2D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x671A0, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x92B49, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x671A4, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x92B65, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x671A8, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x92B81, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x671AC, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x92B9D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x671B0, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x92BB9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x671B4, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x92BD5, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x671B8, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92BF1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x671BC, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x92C0D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x671C0, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x92C29, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x671C4, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x92C45, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x671C8, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x92C61, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x671D4, symSize: 0xC } -... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml deleted file mode 100644 index f61dce2..0000000 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml +++ /dev/null @@ -1,1793 +0,0 @@ ---- -triple: 'x86_64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' -relocations: - - { offsetInCU: 0x34, offset: 0x59050, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x78E70, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x59085, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x78EA8, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x590EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x44A68, symBinAddr: 0x91310, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x59115, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xF0, symBinAddr: 0x2120, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x59131, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x130, symBinAddr: 0x2160, symSize: 0x10 } - - { offsetInCU: 0xB2, offset: 0x5914D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x140, symBinAddr: 0x2170, symSize: 0x320 } - - { offsetInCU: 0x109, offset: 0x591A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x460, symBinAddr: 0x2490, symSize: 0x1010 } - - { offsetInCU: 0x459, offset: 0x594F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x1470, symBinAddr: 0x34A0, symSize: 0x660 } - - { offsetInCU: 0x4DA, offset: 0x59575, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1AD0, symBinAddr: 0x3B00, symSize: 0x20 } - - { offsetInCU: 0x507, offset: 0x595A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D50, symBinAddr: 0x3D80, symSize: 0x770 } - - { offsetInCU: 0x7CC, offset: 0x59867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x24C0, symBinAddr: 0x44F0, symSize: 0x480 } - - { offsetInCU: 0xA80, offset: 0x59B1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2940, symBinAddr: 0x4970, symSize: 0xA40 } - - { offsetInCU: 0xEAC, offset: 0x59F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3380, symBinAddr: 0x53B0, symSize: 0x7A0 } - - { offsetInCU: 0x1290, offset: 0x5A32B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3B20, symBinAddr: 0x5B50, symSize: 0x4B00 } - - { offsetInCU: 0x2C6D, offset: 0x5BD08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8630, symBinAddr: 0xA650, symSize: 0x190 } - - { offsetInCU: 0x2D41, offset: 0x5BDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x87C0, symBinAddr: 0xA7E0, symSize: 0x3B0 } - - { offsetInCU: 0x2F2C, offset: 0x5BFC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8B70, symBinAddr: 0xAB90, symSize: 0x480 } - - { offsetInCU: 0x32BB, offset: 0x5C356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8FF0, symBinAddr: 0xB010, symSize: 0x360 } - - { offsetInCU: 0x3479, offset: 0x5C514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x9350, symBinAddr: 0xB370, symSize: 0x2A0 } - - { offsetInCU: 0x35F5, offset: 0x5C690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x95F0, symBinAddr: 0xB610, symSize: 0x2B0 } - - { offsetInCU: 0x3771, offset: 0x5C80C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x98A0, symBinAddr: 0xB8C0, symSize: 0x4A0 } - - { offsetInCU: 0x389B, offset: 0x5C936, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x9D40, symBinAddr: 0xBD60, symSize: 0x740 } - - { offsetInCU: 0x3B6F, offset: 0x5CC0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0xA480, symBinAddr: 0xC4A0, symSize: 0x250 } - - { offsetInCU: 0x3D84, offset: 0x5CE1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB9A0, symBinAddr: 0xD9C0, symSize: 0x1B60 } - - { offsetInCU: 0x5458, offset: 0x5E4F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x20B0, symSize: 0x40 } - - { offsetInCU: 0x5488, offset: 0x5E523, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0xC0, symBinAddr: 0x20F0, symSize: 0x30 } - - { offsetInCU: 0x5651, offset: 0x5E6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1AF0, symBinAddr: 0x3B20, symSize: 0x10 } - - { offsetInCU: 0x5665, offset: 0x5E700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1B00, symBinAddr: 0x3B30, symSize: 0x30 } - - { offsetInCU: 0x5679, offset: 0x5E714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1B30, symBinAddr: 0x3B60, symSize: 0x220 } - - { offsetInCU: 0x5BD5, offset: 0x5EC70, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0xA750, symBinAddr: 0xC770, symSize: 0x10 } - - { offsetInCU: 0x5BE9, offset: 0x5EC84, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0xA760, symBinAddr: 0xC780, symSize: 0x10 } - - { offsetInCU: 0x5BFD, offset: 0x5EC98, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0xA770, symBinAddr: 0xC790, symSize: 0x20 } - - { offsetInCU: 0x5C11, offset: 0x5ECAC, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0xA790, symBinAddr: 0xC7B0, symSize: 0x30 } - - { offsetInCU: 0x5D22, offset: 0x5EDBD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xAD00, symBinAddr: 0xCD20, symSize: 0x20 } - - { offsetInCU: 0x5D36, offset: 0x5EDD1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xAD20, symBinAddr: 0xCD40, symSize: 0x20 } - - { offsetInCU: 0x5D4A, offset: 0x5EDE5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xAD70, symBinAddr: 0xCD90, symSize: 0x20 } - - { offsetInCU: 0x5D5E, offset: 0x5EDF9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xAD90, symBinAddr: 0xCDB0, symSize: 0x20 } - - { offsetInCU: 0x5D93, offset: 0x5EE2E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xAF70, symBinAddr: 0xCF90, symSize: 0x230 } - - { offsetInCU: 0x5DF9, offset: 0x5EE94, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xB1A0, symBinAddr: 0xD1C0, symSize: 0x50 } - - { offsetInCU: 0x5E5A, offset: 0x5EEF5, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xB340, symBinAddr: 0xD360, symSize: 0x260 } - - { offsetInCU: 0x63D1, offset: 0x5F46C, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xD6A0, symBinAddr: 0xF6C0, symSize: 0x40 } - - { offsetInCU: 0x63E5, offset: 0x5F480, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xD6E0, symBinAddr: 0xF700, symSize: 0x30 } - - { offsetInCU: 0x63F9, offset: 0x5F494, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xD710, symBinAddr: 0xF730, symSize: 0x20 } - - { offsetInCU: 0x640D, offset: 0x5F4A8, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xD730, symBinAddr: 0xF750, symSize: 0x30 } - - { offsetInCU: 0x6421, offset: 0x5F4BC, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xD7B0, symBinAddr: 0xF7D0, symSize: 0x30 } - - { offsetInCU: 0x6435, offset: 0x5F4D0, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD950, symBinAddr: 0xF970, symSize: 0x20 } - - { offsetInCU: 0x6449, offset: 0x5F4E4, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD970, symBinAddr: 0xF990, symSize: 0x20 } - - { offsetInCU: 0x645D, offset: 0x5F4F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xD990, symBinAddr: 0xF9B0, symSize: 0x50 } - - { offsetInCU: 0x6471, offset: 0x5F50C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xD9E0, symBinAddr: 0xFA00, symSize: 0x180 } - - { offsetInCU: 0x6485, offset: 0x5F520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xDB60, symBinAddr: 0xFB80, symSize: 0x2D0 } - - { offsetInCU: 0x6499, offset: 0x5F534, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xDE30, symBinAddr: 0xFE50, symSize: 0x70 } - - { offsetInCU: 0x64AD, offset: 0x5F548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xDEA0, symBinAddr: 0xFEC0, symSize: 0x30 } - - { offsetInCU: 0x64C1, offset: 0x5F55C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xDED0, symBinAddr: 0xFEF0, symSize: 0xD0 } - - { offsetInCU: 0x64D5, offset: 0x5F570, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xDFA0, symBinAddr: 0xFFC0, symSize: 0xB0 } - - { offsetInCU: 0x64E9, offset: 0x5F584, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xE050, symBinAddr: 0x10070, symSize: 0x20 } - - { offsetInCU: 0x64FD, offset: 0x5F598, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xE070, symBinAddr: 0x10090, symSize: 0x30 } - - { offsetInCU: 0x6511, offset: 0x5F5AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xE100, symBinAddr: 0x10120, symSize: 0x50 } - - { offsetInCU: 0x6525, offset: 0x5F5C0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xE1F0, symBinAddr: 0x10210, symSize: 0x20 } - - { offsetInCU: 0x6539, offset: 0x5F5D4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xE210, symBinAddr: 0x10230, symSize: 0x20 } - - { offsetInCU: 0x654D, offset: 0x5F5E8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xE230, symBinAddr: 0x10250, symSize: 0x20 } - - { offsetInCU: 0x6561, offset: 0x5F5FC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xE250, symBinAddr: 0x10270, symSize: 0x20 } - - { offsetInCU: 0x6575, offset: 0x5F610, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xE270, symBinAddr: 0x10290, symSize: 0x20 } - - { offsetInCU: 0x6589, offset: 0x5F624, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xE290, symBinAddr: 0x102B0, symSize: 0x20 } - - { offsetInCU: 0x659D, offset: 0x5F638, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xE2B0, symBinAddr: 0x102D0, symSize: 0x20 } - - { offsetInCU: 0x698D, offset: 0x5FA28, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA7E0, symBinAddr: 0xC800, symSize: 0x10 } - - { offsetInCU: 0x69CB, offset: 0x5FA66, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA800, symBinAddr: 0xC820, symSize: 0x10 } - - { offsetInCU: 0x6A1A, offset: 0x5FAB5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA810, symBinAddr: 0xC830, symSize: 0x10 } - - { offsetInCU: 0x6AB7, offset: 0x5FB52, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA820, symBinAddr: 0xC840, symSize: 0x10 } - - { offsetInCU: 0x6B4C, offset: 0x5FBE7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA830, symBinAddr: 0xC850, symSize: 0x10 } - - { offsetInCU: 0x6BE9, offset: 0x5FC84, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA840, symBinAddr: 0xC860, symSize: 0x30 } - - { offsetInCU: 0x6D44, offset: 0x5FDDF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA870, symBinAddr: 0xC890, symSize: 0x30 } - - { offsetInCU: 0x6E41, offset: 0x5FEDC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA8A0, symBinAddr: 0xC8C0, symSize: 0x20 } - - { offsetInCU: 0x6F2D, offset: 0x5FFC8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA8C0, symBinAddr: 0xC8E0, symSize: 0x10 } - - { offsetInCU: 0x6F6B, offset: 0x60006, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA8D0, symBinAddr: 0xC8F0, symSize: 0x10 } - - { offsetInCU: 0x6FA9, offset: 0x60044, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA8E0, symBinAddr: 0xC900, symSize: 0x10 } - - { offsetInCU: 0x6FF6, offset: 0x60091, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA8F0, symBinAddr: 0xC910, symSize: 0x10 } - - { offsetInCU: 0x709F, offset: 0x6013A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA900, symBinAddr: 0xC920, symSize: 0x20 } - - { offsetInCU: 0x7116, offset: 0x601B1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA920, symBinAddr: 0xC940, symSize: 0x10 } - - { offsetInCU: 0x71CE, offset: 0x60269, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA930, symBinAddr: 0xC950, symSize: 0x20 } - - { offsetInCU: 0x7268, offset: 0x60303, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA950, symBinAddr: 0xC970, symSize: 0x10 } - - { offsetInCU: 0x72D0, offset: 0x6036B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA960, symBinAddr: 0xC980, symSize: 0x20 } - - { offsetInCU: 0x72EC, offset: 0x60387, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA980, symBinAddr: 0xC9A0, symSize: 0x10 } - - { offsetInCU: 0x7368, offset: 0x60403, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA9B0, symBinAddr: 0xC9D0, symSize: 0x10 } - - { offsetInCU: 0x7399, offset: 0x60434, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA9C0, symBinAddr: 0xC9E0, symSize: 0x10 } - - { offsetInCU: 0x73CA, offset: 0x60465, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA9D0, symBinAddr: 0xC9F0, symSize: 0x10 } - - { offsetInCU: 0x73FB, offset: 0x60496, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA9E0, symBinAddr: 0xCA00, symSize: 0x30 } - - { offsetInCU: 0x742A, offset: 0x604C5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xAA10, symBinAddr: 0xCA30, symSize: 0x30 } - - { offsetInCU: 0x745B, offset: 0x604F6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xAA40, symBinAddr: 0xCA60, symSize: 0x30 } - - { offsetInCU: 0x748C, offset: 0x60527, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xAA70, symBinAddr: 0xCA90, symSize: 0x10 } - - { offsetInCU: 0x74BD, offset: 0x60558, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xAA80, symBinAddr: 0xCAA0, symSize: 0x10 } - - { offsetInCU: 0x74EE, offset: 0x60589, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xAA90, symBinAddr: 0xCAB0, symSize: 0x10 } - - { offsetInCU: 0x751F, offset: 0x605BA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xAAA0, symBinAddr: 0xCAC0, symSize: 0x20 } - - { offsetInCU: 0x7550, offset: 0x605EB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xAAC0, symBinAddr: 0xCAE0, symSize: 0x20 } - - { offsetInCU: 0x7581, offset: 0x6061C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xAAE0, symBinAddr: 0xCB00, symSize: 0x10 } - - { offsetInCU: 0x75B2, offset: 0x6064D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xAAF0, symBinAddr: 0xCB10, symSize: 0x20 } - - { offsetInCU: 0x75E3, offset: 0x6067E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xAB10, symBinAddr: 0xCB30, symSize: 0x10 } - - { offsetInCU: 0x7614, offset: 0x606AF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xAB20, symBinAddr: 0xCB40, symSize: 0x20 } - - { offsetInCU: 0x7630, offset: 0x606CB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xAB40, symBinAddr: 0xCB60, symSize: 0x10 } - - { offsetInCU: 0x7670, offset: 0x6070B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAB70, symBinAddr: 0xCB90, symSize: 0x30 } - - { offsetInCU: 0x76EE, offset: 0x60789, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xABA0, symBinAddr: 0xCBC0, symSize: 0x60 } - - { offsetInCU: 0x7781, offset: 0x6081C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC60, symBinAddr: 0xCC80, symSize: 0x10 } - - { offsetInCU: 0x77C1, offset: 0x6085C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC70, symBinAddr: 0xCC90, symSize: 0x10 } - - { offsetInCU: 0x7807, offset: 0x608A2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xAC80, symBinAddr: 0xCCA0, symSize: 0x40 } - - { offsetInCU: 0x7876, offset: 0x60911, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xACC0, symBinAddr: 0xCCE0, symSize: 0x10 } - - { offsetInCU: 0x78A1, offset: 0x6093C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xACD0, symBinAddr: 0xCCF0, symSize: 0x30 } - - { offsetInCU: 0x78D2, offset: 0x6096D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xADB0, symBinAddr: 0xCDD0, symSize: 0x10 } - - { offsetInCU: 0x7903, offset: 0x6099E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xADC0, symBinAddr: 0xCDE0, symSize: 0x30 } - - { offsetInCU: 0x7943, offset: 0x609DE, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xADF0, symBinAddr: 0xCE10, symSize: 0x80 } - - { offsetInCU: 0x79DC, offset: 0x60A77, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xAF00, symBinAddr: 0xCF20, symSize: 0x70 } - - { offsetInCU: 0x7A1F, offset: 0x60ABA, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0xB5A0, symBinAddr: 0xD5C0, symSize: 0xA0 } - - { offsetInCU: 0x7B0B, offset: 0x60BA6, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xB640, symBinAddr: 0xD660, symSize: 0x220 } - - { offsetInCU: 0x7D39, offset: 0x60DD4, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xD500, symBinAddr: 0xF520, symSize: 0xD0 } - - { offsetInCU: 0x7E81, offset: 0x60F1C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xD5D0, symBinAddr: 0xF5F0, symSize: 0xD0 } - - { offsetInCU: 0x7FB4, offset: 0x6104F, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE2D0, symBinAddr: 0x102F0, symSize: 0x80 } - - { offsetInCU: 0x8045, offset: 0x610E0, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE350, symBinAddr: 0x10370, symSize: 0x80 } - - { offsetInCU: 0x8207, offset: 0x612A2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xAE80, symBinAddr: 0xCEA0, symSize: 0x10 } - - { offsetInCU: 0x8223, offset: 0x612BE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xAE90, symBinAddr: 0xCEB0, symSize: 0x10 } - - { offsetInCU: 0x828D, offset: 0x61328, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xAEA0, symBinAddr: 0xCEC0, symSize: 0x40 } - - { offsetInCU: 0x82B6, offset: 0x61351, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xAEE0, symBinAddr: 0xCF00, symSize: 0x20 } - - { offsetInCU: 0x82F1, offset: 0x6138C, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xAE70, symBinAddr: 0xCE90, symSize: 0x10 } - - { offsetInCU: 0x83CF, offset: 0x6146A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0xA7F0, symBinAddr: 0xC810, symSize: 0x10 } - - { offsetInCU: 0x83F2, offset: 0x6148D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA990, symBinAddr: 0xC9B0, symSize: 0x10 } - - { offsetInCU: 0x840E, offset: 0x614A9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA9A0, symBinAddr: 0xC9C0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x616B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10430, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x616DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10430, symSize: 0x20 } - - { offsetInCU: 0x79, offset: 0x6170B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0x10450, symSize: 0x14 } - - { offsetInCU: 0x43, offset: 0x6183A, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0x104A0, symSize: 0x10 } - - { offsetInCU: 0x57, offset: 0x6184E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0x104E0, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x6188E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0x104F0, symSize: 0x20 } - - { offsetInCU: 0xE4, offset: 0x618DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA0, symBinAddr: 0x10510, symSize: 0x10 } - - { offsetInCU: 0x142, offset: 0x61939, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC0, symBinAddr: 0x10530, symSize: 0x20 } - - { offsetInCU: 0x1BC, offset: 0x619B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0xF0, symBinAddr: 0x10560, symSize: 0x10 } - - { offsetInCU: 0x1E7, offset: 0x619DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x10570, symSize: 0x20 } - - { offsetInCU: 0x218, offset: 0x61A0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x120, symBinAddr: 0x10590, symSize: 0x10 } - - { offsetInCU: 0x234, offset: 0x61A2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x130, symBinAddr: 0x105A0, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x61A47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2240, symBinAddr: 0x126B0, symSize: 0x340 } - - { offsetInCU: 0x296, offset: 0x61A8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x180, symBinAddr: 0x105F0, symSize: 0x4C0 } - - { offsetInCU: 0x2EB, offset: 0x61AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0x119F0, symSize: 0x50 } - - { offsetInCU: 0x322, offset: 0x61B19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0x11A40, symSize: 0x50 } - - { offsetInCU: 0x345, offset: 0x61B3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2580, symBinAddr: 0x129F0, symSize: 0x14F0 } - - { offsetInCU: 0x377, offset: 0x61B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x10AB0, symSize: 0xE0 } - - { offsetInCU: 0x3C3, offset: 0x61BBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1620, symBinAddr: 0x11A90, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x61C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1630, symBinAddr: 0x11AA0, symSize: 0x30 } - - { offsetInCU: 0x4FB, offset: 0x61CF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1660, symBinAddr: 0x11AD0, symSize: 0x20 } - - { offsetInCU: 0x57C, offset: 0x61D73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16B0, symBinAddr: 0x11B20, symSize: 0x10 } - - { offsetInCU: 0x5BC, offset: 0x61DB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16C0, symBinAddr: 0x11B30, symSize: 0x20 } - - { offsetInCU: 0x5ED, offset: 0x61DE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x11B50, symSize: 0x10 } - - { offsetInCU: 0x609, offset: 0x61E00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x11B60, symSize: 0x10 } - - { offsetInCU: 0x625, offset: 0x61E1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3A70, symBinAddr: 0x13EE0, symSize: 0x60 } - - { offsetInCU: 0x669, offset: 0x61E60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvgTf4d_n', symObjAddr: 0x3AD0, symBinAddr: 0x13F40, symSize: 0x20 } - - { offsetInCU: 0x69D, offset: 0x61E94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x11BB0, symSize: 0x50 } - - { offsetInCU: 0x6D4, offset: 0x61ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x11C00, symSize: 0x50 } - - { offsetInCU: 0x6F7, offset: 0x61EEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3AF0, symBinAddr: 0x13F60, symSize: 0x3A0 } - - { offsetInCU: 0x769, offset: 0x61F60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x720, symBinAddr: 0x10B90, symSize: 0x20 } - - { offsetInCU: 0x792, offset: 0x61F89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x11C50, symSize: 0x10 } - - { offsetInCU: 0x7BD, offset: 0x61FB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x11C60, symSize: 0x20 } - - { offsetInCU: 0x7EE, offset: 0x61FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x11C80, symSize: 0x10 } - - { offsetInCU: 0x80A, offset: 0x62001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x11C90, symSize: 0x10 } - - { offsetInCU: 0x826, offset: 0x6201D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6310, symBinAddr: 0x16730, symSize: 0x160 } - - { offsetInCU: 0x86C, offset: 0x62063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x740, symBinAddr: 0x10BB0, symSize: 0x1A0 } - - { offsetInCU: 0x8C1, offset: 0x620B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x11CE0, symSize: 0x50 } - - { offsetInCU: 0x8F8, offset: 0x620EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x11D30, symSize: 0x50 } - - { offsetInCU: 0x91B, offset: 0x62112, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6470, symBinAddr: 0x16890, symSize: 0x320 } - - { offsetInCU: 0x96B, offset: 0x62162, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x8E0, symBinAddr: 0x10D50, symSize: 0x20 } - - { offsetInCU: 0x994, offset: 0x6218B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1910, symBinAddr: 0x11D80, symSize: 0x10 } - - { offsetInCU: 0x9BF, offset: 0x621B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1920, symBinAddr: 0x11D90, symSize: 0x20 } - - { offsetInCU: 0x9F0, offset: 0x621E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1940, symBinAddr: 0x11DB0, symSize: 0x10 } - - { offsetInCU: 0xA0C, offset: 0x62203, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6790, symBinAddr: 0x16BB0, symSize: 0x120 } - - { offsetInCU: 0xA52, offset: 0x62249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x900, symBinAddr: 0x10D70, symSize: 0x170 } - - { offsetInCU: 0xAA7, offset: 0x6229E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1990, symBinAddr: 0x11E00, symSize: 0x40 } - - { offsetInCU: 0xADE, offset: 0x622D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19D0, symBinAddr: 0x11E40, symSize: 0x40 } - - { offsetInCU: 0xB01, offset: 0x622F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x68B0, symBinAddr: 0x16CD0, symSize: 0x310 } - - { offsetInCU: 0xB45, offset: 0x6233C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xA70, symBinAddr: 0x10EE0, symSize: 0x20 } - - { offsetInCU: 0xB6E, offset: 0x62365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A10, symBinAddr: 0x11E80, symSize: 0x10 } - - { offsetInCU: 0xB99, offset: 0x62390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x11E90, symSize: 0x20 } - - { offsetInCU: 0xBCA, offset: 0x623C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x11EB0, symSize: 0x10 } - - { offsetInCU: 0xBE6, offset: 0x623DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x11EC0, symSize: 0x10 } - - { offsetInCU: 0xC02, offset: 0x623F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6BC0, symBinAddr: 0x16FE0, symSize: 0x120 } - - { offsetInCU: 0xC48, offset: 0x6243F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA90, symBinAddr: 0x10F00, symSize: 0x1D0 } - - { offsetInCU: 0xC9D, offset: 0x62494, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x11F10, symSize: 0x50 } - - { offsetInCU: 0xCD4, offset: 0x624CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AF0, symBinAddr: 0x11F60, symSize: 0x50 } - - { offsetInCU: 0xCF7, offset: 0x624EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x17100, symSize: 0x580 } - - { offsetInCU: 0xD47, offset: 0x6253E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xC60, symBinAddr: 0x110D0, symSize: 0x20 } - - { offsetInCU: 0xD70, offset: 0x62567, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x11FD0, symSize: 0x10 } - - { offsetInCU: 0xD9B, offset: 0x62592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B70, symBinAddr: 0x11FE0, symSize: 0x20 } - - { offsetInCU: 0xDCC, offset: 0x625C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B90, symBinAddr: 0x12000, symSize: 0x10 } - - { offsetInCU: 0xDE8, offset: 0x625DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x12010, symSize: 0x10 } - - { offsetInCU: 0xE04, offset: 0x625FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x72F0, symBinAddr: 0x17710, symSize: 0x210 } - - { offsetInCU: 0xE4A, offset: 0x62641, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC80, symBinAddr: 0x110F0, symSize: 0x230 } - - { offsetInCU: 0xE9F, offset: 0x62696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BF0, symBinAddr: 0x12060, symSize: 0x60 } - - { offsetInCU: 0xED6, offset: 0x626CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C50, symBinAddr: 0x120C0, symSize: 0x70 } - - { offsetInCU: 0xEF9, offset: 0x626F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7500, symBinAddr: 0x17920, symSize: 0x660 } - - { offsetInCU: 0xF49, offset: 0x62740, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xEB0, symBinAddr: 0x11320, symSize: 0x30 } - - { offsetInCU: 0xF94, offset: 0x6278B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1CC0, symBinAddr: 0x12130, symSize: 0x10 } - - { offsetInCU: 0x101D, offset: 0x62814, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1CD0, symBinAddr: 0x12140, symSize: 0x40 } - - { offsetInCU: 0x1101, offset: 0x628F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D10, symBinAddr: 0x12180, symSize: 0x20 } - - { offsetInCU: 0x1173, offset: 0x6296A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D70, symBinAddr: 0x121E0, symSize: 0x10 } - - { offsetInCU: 0x119E, offset: 0x62995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D80, symBinAddr: 0x121F0, symSize: 0x20 } - - { offsetInCU: 0x11CF, offset: 0x629C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DA0, symBinAddr: 0x12210, symSize: 0x10 } - - { offsetInCU: 0x11EB, offset: 0x629E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x12220, symSize: 0x10 } - - { offsetInCU: 0x1207, offset: 0x629FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B90, symBinAddr: 0x17FB0, symSize: 0xA0 } - - { offsetInCU: 0x124D, offset: 0x62A44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x11350, symSize: 0x110 } - - { offsetInCU: 0x12A2, offset: 0x62A99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E00, symBinAddr: 0x12270, symSize: 0x30 } - - { offsetInCU: 0x12D9, offset: 0x62AD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E30, symBinAddr: 0x122A0, symSize: 0x20 } - - { offsetInCU: 0x12FC, offset: 0x62AF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C30, symBinAddr: 0x18050, symSize: 0x180 } - - { offsetInCU: 0x1358, offset: 0x62B4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xFF0, symBinAddr: 0x11460, symSize: 0x20 } - - { offsetInCU: 0x1381, offset: 0x62B78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E50, symBinAddr: 0x122C0, symSize: 0x10 } - - { offsetInCU: 0x13AC, offset: 0x62BA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x122D0, symSize: 0x20 } - - { offsetInCU: 0x13DD, offset: 0x62BD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1E80, symBinAddr: 0x122F0, symSize: 0x10 } - - { offsetInCU: 0x13F9, offset: 0x62BF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E90, symBinAddr: 0x12300, symSize: 0x10 } - - { offsetInCU: 0x1415, offset: 0x62C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7DE0, symBinAddr: 0x18200, symSize: 0x1C0 } - - { offsetInCU: 0x145B, offset: 0x62C52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1010, symBinAddr: 0x11480, symSize: 0x1F0 } - - { offsetInCU: 0x14B0, offset: 0x62CA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EE0, symBinAddr: 0x12350, symSize: 0x50 } - - { offsetInCU: 0x14E7, offset: 0x62CDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F30, symBinAddr: 0x123A0, symSize: 0x50 } - - { offsetInCU: 0x150A, offset: 0x62D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x183C0, symSize: 0x3A0 } - - { offsetInCU: 0x154E, offset: 0x62D45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1200, symBinAddr: 0x11670, symSize: 0x20 } - - { offsetInCU: 0x1577, offset: 0x62D6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F80, symBinAddr: 0x123F0, symSize: 0x10 } - - { offsetInCU: 0x15A2, offset: 0x62D99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F90, symBinAddr: 0x12400, symSize: 0x20 } - - { offsetInCU: 0x15D3, offset: 0x62DCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FB0, symBinAddr: 0x12420, symSize: 0x10 } - - { offsetInCU: 0x15EF, offset: 0x62DE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FC0, symBinAddr: 0x12430, symSize: 0x10 } - - { offsetInCU: 0x160B, offset: 0x62E02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x18760, symSize: 0x190 } - - { offsetInCU: 0x1651, offset: 0x62E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1220, symBinAddr: 0x11690, symSize: 0x210 } - - { offsetInCU: 0x16A6, offset: 0x62E9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2010, symBinAddr: 0x12480, symSize: 0x50 } - - { offsetInCU: 0x16DD, offset: 0x62ED4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2060, symBinAddr: 0x124D0, symSize: 0x50 } - - { offsetInCU: 0x1700, offset: 0x62EF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x84D0, symBinAddr: 0x188F0, symSize: 0x3D0 } - - { offsetInCU: 0x1750, offset: 0x62F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1430, symBinAddr: 0x118A0, symSize: 0x20 } - - { offsetInCU: 0x1779, offset: 0x62F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2130, symBinAddr: 0x125A0, symSize: 0x10 } - - { offsetInCU: 0x17A4, offset: 0x62F9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x125B0, symSize: 0x20 } - - { offsetInCU: 0x17D5, offset: 0x62FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2160, symBinAddr: 0x125D0, symSize: 0x10 } - - { offsetInCU: 0x17F1, offset: 0x62FE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2170, symBinAddr: 0x125E0, symSize: 0x10 } - - { offsetInCU: 0x180D, offset: 0x63004, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8900, symBinAddr: 0x18D20, symSize: 0xE0 } - - { offsetInCU: 0x1853, offset: 0x6304A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1450, symBinAddr: 0x118C0, symSize: 0x130 } - - { offsetInCU: 0x18A8, offset: 0x6309F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x21C0, symBinAddr: 0x12630, symSize: 0x40 } - - { offsetInCU: 0x18DF, offset: 0x630D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2200, symBinAddr: 0x12670, symSize: 0x40 } - - { offsetInCU: 0x1902, offset: 0x630F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x89E0, symBinAddr: 0x18E00, symSize: 0x1C0 } - - { offsetInCU: 0x193F, offset: 0x63136, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3ED0, symBinAddr: 0x14300, symSize: 0x30 } - - { offsetInCU: 0x1953, offset: 0x6314A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3F00, symBinAddr: 0x14330, symSize: 0x30 } - - { offsetInCU: 0x1967, offset: 0x6315E, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F30, symBinAddr: 0x14360, symSize: 0x30 } - - { offsetInCU: 0x197B, offset: 0x63172, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3F60, symBinAddr: 0x14390, symSize: 0x30 } - - { offsetInCU: 0x198F, offset: 0x63186, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3F90, symBinAddr: 0x143C0, symSize: 0x30 } - - { offsetInCU: 0x19A3, offset: 0x6319A, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FC0, symBinAddr: 0x143F0, symSize: 0x10 } - - { offsetInCU: 0x19B7, offset: 0x631AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3FE0, symBinAddr: 0x14400, symSize: 0x50 } - - { offsetInCU: 0x19CB, offset: 0x631C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4030, symBinAddr: 0x14450, symSize: 0xA0 } - - { offsetInCU: 0x19DF, offset: 0x631D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x40D0, symBinAddr: 0x144F0, symSize: 0x10 } - - { offsetInCU: 0x19F3, offset: 0x631EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x40E0, symBinAddr: 0x14500, symSize: 0x10 } - - { offsetInCU: 0x1A07, offset: 0x631FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x40F0, symBinAddr: 0x14510, symSize: 0x10 } - - { offsetInCU: 0x1A1B, offset: 0x63212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4100, symBinAddr: 0x14520, symSize: 0x10 } - - { offsetInCU: 0x1A2F, offset: 0x63226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x4110, symBinAddr: 0x14530, symSize: 0x30 } - - { offsetInCU: 0x1A43, offset: 0x6323A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x4E60, symBinAddr: 0x15280, symSize: 0x10 } - - { offsetInCU: 0x1A57, offset: 0x6324E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x4E70, symBinAddr: 0x15290, symSize: 0x10 } - - { offsetInCU: 0x1A6B, offset: 0x63262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4E80, symBinAddr: 0x152A0, symSize: 0x30 } - - { offsetInCU: 0x1A7F, offset: 0x63276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4EB0, symBinAddr: 0x152D0, symSize: 0x10 } - - { offsetInCU: 0x1A93, offset: 0x6328A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4EC0, symBinAddr: 0x152E0, symSize: 0x30 } - - { offsetInCU: 0x1AA7, offset: 0x6329E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4EF0, symBinAddr: 0x15310, symSize: 0x10 } - - { offsetInCU: 0x1ABB, offset: 0x632B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4F00, symBinAddr: 0x15320, symSize: 0x30 } - - { offsetInCU: 0x1ACF, offset: 0x632C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x4F30, symBinAddr: 0x15350, symSize: 0x30 } - - { offsetInCU: 0x1AE3, offset: 0x632DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4F60, symBinAddr: 0x15380, symSize: 0x30 } - - { offsetInCU: 0x1AF7, offset: 0x632EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4F90, symBinAddr: 0x153B0, symSize: 0x30 } - - { offsetInCU: 0x1B0B, offset: 0x63302, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4FC0, symBinAddr: 0x153E0, symSize: 0x40 } - - { offsetInCU: 0x1B1F, offset: 0x63316, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x5000, symBinAddr: 0x15420, symSize: 0x30 } - - { offsetInCU: 0x1B33, offset: 0x6332A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x5030, symBinAddr: 0x15450, symSize: 0x30 } - - { offsetInCU: 0x1B47, offset: 0x6333E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x5060, symBinAddr: 0x15480, symSize: 0x30 } - - { offsetInCU: 0x1B5B, offset: 0x63352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x5090, symBinAddr: 0x154B0, symSize: 0x30 } - - { offsetInCU: 0x1B6F, offset: 0x63366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x50C0, symBinAddr: 0x154E0, symSize: 0x30 } - - { offsetInCU: 0x1B83, offset: 0x6337A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x50F0, symBinAddr: 0x15510, symSize: 0x30 } - - { offsetInCU: 0x1B97, offset: 0x6338E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x5120, symBinAddr: 0x15540, symSize: 0x30 } - - { offsetInCU: 0x1BAB, offset: 0x633A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x5150, symBinAddr: 0x15570, symSize: 0x30 } - - { offsetInCU: 0x1BBF, offset: 0x633B6, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x5180, symBinAddr: 0x155A0, symSize: 0x10 } - - { offsetInCU: 0x1BD3, offset: 0x633CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x5190, symBinAddr: 0x155B0, symSize: 0x80 } - - { offsetInCU: 0x1BE7, offset: 0x633DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x5210, symBinAddr: 0x15630, symSize: 0xD0 } - - { offsetInCU: 0x1BFB, offset: 0x633F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x52E0, symBinAddr: 0x15700, symSize: 0x10 } - - { offsetInCU: 0x1C0F, offset: 0x63406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x52F0, symBinAddr: 0x15710, symSize: 0x10 } - - { offsetInCU: 0x1C23, offset: 0x6341A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x5300, symBinAddr: 0x15720, symSize: 0x10 } - - { offsetInCU: 0x1C37, offset: 0x6342E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x5310, symBinAddr: 0x15730, symSize: 0x10 } - - { offsetInCU: 0x1C4B, offset: 0x63442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x5320, symBinAddr: 0x15740, symSize: 0x30 } - - { offsetInCU: 0x1C5F, offset: 0x63456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x5350, symBinAddr: 0x15770, symSize: 0x40 } - - { offsetInCU: 0x1C73, offset: 0x6346A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x5390, symBinAddr: 0x157B0, symSize: 0x70 } - - { offsetInCU: 0x1C87, offset: 0x6347E, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5400, symBinAddr: 0x15820, symSize: 0x20 } - - { offsetInCU: 0x1C9B, offset: 0x63492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x5420, symBinAddr: 0x15840, symSize: 0x50 } - - { offsetInCU: 0x1CAF, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x5470, symBinAddr: 0x15890, symSize: 0x40 } - - { offsetInCU: 0x1CC3, offset: 0x634BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x54B0, symBinAddr: 0x158D0, symSize: 0x40 } - - { offsetInCU: 0x1CD7, offset: 0x634CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x54F0, symBinAddr: 0x15910, symSize: 0x10 } - - { offsetInCU: 0x1CEB, offset: 0x634E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x5500, symBinAddr: 0x15920, symSize: 0x40 } - - { offsetInCU: 0x1CFF, offset: 0x634F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5540, symBinAddr: 0x15960, symSize: 0x80 } - - { offsetInCU: 0x1D13, offset: 0x6350A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x55C0, symBinAddr: 0x159E0, symSize: 0xB0 } - - { offsetInCU: 0x1D27, offset: 0x6351E, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5670, symBinAddr: 0x15A90, symSize: 0x30 } - - { offsetInCU: 0x1D3B, offset: 0x63532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x56A0, symBinAddr: 0x15AC0, symSize: 0x80 } - - { offsetInCU: 0x1D4F, offset: 0x63546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5720, symBinAddr: 0x15B40, symSize: 0x40 } - - { offsetInCU: 0x1D63, offset: 0x6355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5760, symBinAddr: 0x15B80, symSize: 0x50 } - - { offsetInCU: 0x1D77, offset: 0x6356E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x57B0, symBinAddr: 0x15BD0, symSize: 0x10 } - - { offsetInCU: 0x1D8B, offset: 0x63582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x57C0, symBinAddr: 0x15BE0, symSize: 0x30 } - - { offsetInCU: 0x1D9F, offset: 0x63596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x57F0, symBinAddr: 0x15C10, symSize: 0x40 } - - { offsetInCU: 0x1DB3, offset: 0x635AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5830, symBinAddr: 0x15C50, symSize: 0x60 } - - { offsetInCU: 0x1DC7, offset: 0x635BE, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5890, symBinAddr: 0x15CB0, symSize: 0x20 } - - { offsetInCU: 0x1DDB, offset: 0x635D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x58B0, symBinAddr: 0x15CD0, symSize: 0x50 } - - { offsetInCU: 0x1DEF, offset: 0x635E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5900, symBinAddr: 0x15D20, symSize: 0x40 } - - { offsetInCU: 0x1E03, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x5940, symBinAddr: 0x15D60, symSize: 0x50 } - - { offsetInCU: 0x1E17, offset: 0x6360E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5990, symBinAddr: 0x15DB0, symSize: 0x10 } - - { offsetInCU: 0x1E2B, offset: 0x63622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x59A0, symBinAddr: 0x15DC0, symSize: 0x50 } - - { offsetInCU: 0x1E3F, offset: 0x63636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x59F0, symBinAddr: 0x15E10, symSize: 0xE0 } - - { offsetInCU: 0x1E53, offset: 0x6364A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5AD0, symBinAddr: 0x15EF0, symSize: 0x110 } - - { offsetInCU: 0x1E67, offset: 0x6365E, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5BE0, symBinAddr: 0x16000, symSize: 0x50 } - - { offsetInCU: 0x1E7B, offset: 0x63672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5C30, symBinAddr: 0x16050, symSize: 0xD0 } - - { offsetInCU: 0x1E8F, offset: 0x63686, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x5D00, symBinAddr: 0x16120, symSize: 0x40 } - - { offsetInCU: 0x1EA3, offset: 0x6369A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x5D40, symBinAddr: 0x16160, symSize: 0x60 } - - { offsetInCU: 0x1EB7, offset: 0x636AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x5DA0, symBinAddr: 0x161C0, symSize: 0x10 } - - { offsetInCU: 0x1ECB, offset: 0x636C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x5DB0, symBinAddr: 0x161D0, symSize: 0x60 } - - { offsetInCU: 0x1EDF, offset: 0x636D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5E10, symBinAddr: 0x16230, symSize: 0x110 } - - { offsetInCU: 0x1EF3, offset: 0x636EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x5F20, symBinAddr: 0x16340, symSize: 0x160 } - - { offsetInCU: 0x1F07, offset: 0x636FE, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x6080, symBinAddr: 0x164A0, symSize: 0x10 } - - { offsetInCU: 0x1F1B, offset: 0x63712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x6090, symBinAddr: 0x164B0, symSize: 0x100 } - - { offsetInCU: 0x1F2F, offset: 0x63726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x6190, symBinAddr: 0x165B0, symSize: 0x40 } - - { offsetInCU: 0x1F43, offset: 0x6373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x61D0, symBinAddr: 0x165F0, symSize: 0x70 } - - { offsetInCU: 0x1F57, offset: 0x6374E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x6240, symBinAddr: 0x16660, symSize: 0x10 } - - { offsetInCU: 0x1F6B, offset: 0x63762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x6250, symBinAddr: 0x16670, symSize: 0x10 } - - { offsetInCU: 0x1F7F, offset: 0x63776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x6260, symBinAddr: 0x16680, symSize: 0x30 } - - { offsetInCU: 0x1F93, offset: 0x6378A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x6290, symBinAddr: 0x166B0, symSize: 0x10 } - - { offsetInCU: 0x1FA7, offset: 0x6379E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x62A0, symBinAddr: 0x166C0, symSize: 0x30 } - - { offsetInCU: 0x1FBB, offset: 0x637B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x62D0, symBinAddr: 0x166F0, symSize: 0x10 } - - { offsetInCU: 0x1FCF, offset: 0x637C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x62E0, symBinAddr: 0x16700, symSize: 0x30 } - - { offsetInCU: 0x1FE3, offset: 0x637DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7260, symBinAddr: 0x17680, symSize: 0x30 } - - { offsetInCU: 0x1FF7, offset: 0x637EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x7290, symBinAddr: 0x176B0, symSize: 0x30 } - - { offsetInCU: 0x200B, offset: 0x63802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x72C0, symBinAddr: 0x176E0, symSize: 0x30 } - - { offsetInCU: 0x201F, offset: 0x63816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7B60, symBinAddr: 0x17F80, symSize: 0x30 } - - { offsetInCU: 0x2033, offset: 0x6382A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7DB0, symBinAddr: 0x181D0, symSize: 0x30 } - - { offsetInCU: 0x2047, offset: 0x6383E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x88A0, symBinAddr: 0x18CC0, symSize: 0x30 } - - { offsetInCU: 0x205B, offset: 0x63852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x88D0, symBinAddr: 0x18CF0, symSize: 0x30 } - - { offsetInCU: 0x206F, offset: 0x63866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8BA0, symBinAddr: 0x18FC0, symSize: 0x30 } - - { offsetInCU: 0x2083, offset: 0x6387A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x18FF0, symSize: 0x30 } - - { offsetInCU: 0x2097, offset: 0x6388E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x8C00, symBinAddr: 0x19020, symSize: 0x30 } - - { offsetInCU: 0x20AB, offset: 0x638A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x8C90, symBinAddr: 0x190B0, symSize: 0x30 } - - { offsetInCU: 0x20BF, offset: 0x638B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8CC0, symBinAddr: 0x190E0, symSize: 0x80 } - - { offsetInCU: 0x20D3, offset: 0x638CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8D40, symBinAddr: 0x19160, symSize: 0xD0 } - - { offsetInCU: 0x20E7, offset: 0x638DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8E10, symBinAddr: 0x19230, symSize: 0x10 } - - { offsetInCU: 0x20FB, offset: 0x638F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8E20, symBinAddr: 0x19240, symSize: 0x10 } - - { offsetInCU: 0x210F, offset: 0x63906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8E30, symBinAddr: 0x19250, symSize: 0x80 } - - { offsetInCU: 0x2123, offset: 0x6391A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8EB0, symBinAddr: 0x192D0, symSize: 0xD0 } - - { offsetInCU: 0x2137, offset: 0x6392E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8F80, symBinAddr: 0x193A0, symSize: 0x10 } - - { offsetInCU: 0x214B, offset: 0x63942, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8F90, symBinAddr: 0x193B0, symSize: 0x10 } - - { offsetInCU: 0x215F, offset: 0x63956, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8FA0, symBinAddr: 0x193C0, symSize: 0x80 } - - { offsetInCU: 0x2173, offset: 0x6396A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9020, symBinAddr: 0x19440, symSize: 0xD0 } - - { offsetInCU: 0x2187, offset: 0x6397E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x90F0, symBinAddr: 0x19510, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x63992, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9100, symBinAddr: 0x19520, symSize: 0x10 } - - { offsetInCU: 0x21AF, offset: 0x639A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x9110, symBinAddr: 0x19530, symSize: 0x10 } - - { offsetInCU: 0x21C3, offset: 0x639BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9120, symBinAddr: 0x19540, symSize: 0x10 } - - { offsetInCU: 0x21D7, offset: 0x639CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9130, symBinAddr: 0x19550, symSize: 0x80 } - - { offsetInCU: 0x21EB, offset: 0x639E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x91B0, symBinAddr: 0x195D0, symSize: 0xD0 } - - { offsetInCU: 0x21FF, offset: 0x639F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9280, symBinAddr: 0x196A0, symSize: 0x10 } - - { offsetInCU: 0x2213, offset: 0x63A0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9290, symBinAddr: 0x196B0, symSize: 0x10 } - - { offsetInCU: 0x2227, offset: 0x63A1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x92C0, symBinAddr: 0x196E0, symSize: 0x10 } - - { offsetInCU: 0x223B, offset: 0x63A32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x92D0, symBinAddr: 0x196F0, symSize: 0x10 } - - { offsetInCU: 0x224F, offset: 0x63A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x92E0, symBinAddr: 0x19700, symSize: 0x40 } - - { offsetInCU: 0x2263, offset: 0x63A5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x9320, symBinAddr: 0x19740, symSize: 0x80 } - - { offsetInCU: 0x2277, offset: 0x63A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x93A0, symBinAddr: 0x197C0, symSize: 0xC0 } - - { offsetInCU: 0x228B, offset: 0x63A82, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9460, symBinAddr: 0x19880, symSize: 0x40 } - - { offsetInCU: 0x229F, offset: 0x63A96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x94A0, symBinAddr: 0x198C0, symSize: 0x90 } - - { offsetInCU: 0x22B3, offset: 0x63AAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x9530, symBinAddr: 0x19950, symSize: 0x40 } - - { offsetInCU: 0x22C7, offset: 0x63ABE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x9570, symBinAddr: 0x19990, symSize: 0x50 } - - { offsetInCU: 0x22DB, offset: 0x63AD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x95C0, symBinAddr: 0x199E0, symSize: 0x10 } - - { offsetInCU: 0x22EF, offset: 0x63AE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x95D0, symBinAddr: 0x199F0, symSize: 0x40 } - - { offsetInCU: 0x2303, offset: 0x63AFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x9610, symBinAddr: 0x19A30, symSize: 0x80 } - - { offsetInCU: 0x2317, offset: 0x63B0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x9690, symBinAddr: 0x19AB0, symSize: 0xA0 } - - { offsetInCU: 0x232B, offset: 0x63B22, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9730, symBinAddr: 0x19B50, symSize: 0x30 } - - { offsetInCU: 0x233F, offset: 0x63B36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x9760, symBinAddr: 0x19B80, symSize: 0x80 } - - { offsetInCU: 0x2353, offset: 0x63B4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x97E0, symBinAddr: 0x19C00, symSize: 0x40 } - - { offsetInCU: 0x2367, offset: 0x63B5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9820, symBinAddr: 0x19C40, symSize: 0x50 } - - { offsetInCU: 0x237B, offset: 0x63B72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x9870, symBinAddr: 0x19C90, symSize: 0x10 } - - { offsetInCU: 0x238F, offset: 0x63B86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x9880, symBinAddr: 0x19CA0, symSize: 0x40 } - - { offsetInCU: 0x23A3, offset: 0x63B9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x98C0, symBinAddr: 0x19CE0, symSize: 0x80 } - - { offsetInCU: 0x23B7, offset: 0x63BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9940, symBinAddr: 0x19D60, symSize: 0xB0 } - - { offsetInCU: 0x23CB, offset: 0x63BC2, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x99F0, symBinAddr: 0x19E10, symSize: 0x30 } - - { offsetInCU: 0x23DF, offset: 0x63BD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x9A20, symBinAddr: 0x19E40, symSize: 0x80 } - - { offsetInCU: 0x23F3, offset: 0x63BEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9AA0, symBinAddr: 0x19EC0, symSize: 0x40 } - - { offsetInCU: 0x2407, offset: 0x63BFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x9AE0, symBinAddr: 0x19F00, symSize: 0x50 } - - { offsetInCU: 0x241B, offset: 0x63C12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9B30, symBinAddr: 0x19F50, symSize: 0x10 } - - { offsetInCU: 0x242F, offset: 0x63C26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B40, symBinAddr: 0x19F60, symSize: 0x10 } - - { offsetInCU: 0x2443, offset: 0x63C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9B50, symBinAddr: 0x19F70, symSize: 0x30 } - - { offsetInCU: 0x2457, offset: 0x63C4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B80, symBinAddr: 0x19FA0, symSize: 0x10 } - - { offsetInCU: 0x246B, offset: 0x63C62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9B90, symBinAddr: 0x19FB0, symSize: 0x30 } - - { offsetInCU: 0x247F, offset: 0x63C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9BC0, symBinAddr: 0x19FE0, symSize: 0x10 } - - { offsetInCU: 0x2493, offset: 0x63C8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9BD0, symBinAddr: 0x19FF0, symSize: 0x30 } - - { offsetInCU: 0x24A7, offset: 0x63C9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9C00, symBinAddr: 0x1A020, symSize: 0x10 } - - { offsetInCU: 0x24BB, offset: 0x63CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9C10, symBinAddr: 0x1A030, symSize: 0x30 } - - { offsetInCU: 0x24CF, offset: 0x63CC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9C40, symBinAddr: 0x1A060, symSize: 0x10 } - - { offsetInCU: 0x24E3, offset: 0x63CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9C50, symBinAddr: 0x1A070, symSize: 0x30 } - - { offsetInCU: 0x24F7, offset: 0x63CEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C80, symBinAddr: 0x1A0A0, symSize: 0x10 } - - { offsetInCU: 0x250B, offset: 0x63D02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C90, symBinAddr: 0x1A0B0, symSize: 0x30 } - - { offsetInCU: 0x251F, offset: 0x63D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CC0, symBinAddr: 0x1A0E0, symSize: 0x10 } - - { offsetInCU: 0x2533, offset: 0x63D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9CD0, symBinAddr: 0x1A0F0, symSize: 0x30 } - - { offsetInCU: 0x2547, offset: 0x63D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D00, symBinAddr: 0x1A120, symSize: 0x10 } - - { offsetInCU: 0x255B, offset: 0x63D52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D10, symBinAddr: 0x1A130, symSize: 0x30 } - - { offsetInCU: 0x256F, offset: 0x63D66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D40, symBinAddr: 0x1A160, symSize: 0x10 } - - { offsetInCU: 0x2583, offset: 0x63D7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9D50, symBinAddr: 0x1A170, symSize: 0x30 } - - { offsetInCU: 0x2597, offset: 0x63D8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D80, symBinAddr: 0x1A1A0, symSize: 0x10 } - - { offsetInCU: 0x25AB, offset: 0x63DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x1A1B0, symSize: 0x30 } - - { offsetInCU: 0x25BF, offset: 0x63DB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9DC0, symBinAddr: 0x1A1E0, symSize: 0x10 } - - { offsetInCU: 0x25D3, offset: 0x63DCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x1A1F0, symSize: 0x30 } - - { offsetInCU: 0x25E7, offset: 0x63DDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E00, symBinAddr: 0x1A220, symSize: 0x10 } - - { offsetInCU: 0x25FB, offset: 0x63DF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E10, symBinAddr: 0x1A230, symSize: 0x30 } - - { offsetInCU: 0x260F, offset: 0x63E06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E40, symBinAddr: 0x1A260, symSize: 0x10 } - - { offsetInCU: 0x2623, offset: 0x63E1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9E50, symBinAddr: 0x1A270, symSize: 0x30 } - - { offsetInCU: 0x2637, offset: 0x63E2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E80, symBinAddr: 0x1A2A0, symSize: 0x10 } - - { offsetInCU: 0x264B, offset: 0x63E42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E90, symBinAddr: 0x1A2B0, symSize: 0x30 } - - { offsetInCU: 0x265F, offset: 0x63E56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EC0, symBinAddr: 0x1A2E0, symSize: 0x10 } - - { offsetInCU: 0x2673, offset: 0x63E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9ED0, symBinAddr: 0x1A2F0, symSize: 0x30 } - - { offsetInCU: 0x2687, offset: 0x63E7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9F00, symBinAddr: 0x1A320, symSize: 0x30 } - - { offsetInCU: 0x269B, offset: 0x63E92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9F30, symBinAddr: 0x1A350, symSize: 0x30 } - - { offsetInCU: 0x26AF, offset: 0x63EA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9F60, symBinAddr: 0x1A380, symSize: 0x30 } - - { offsetInCU: 0x26C3, offset: 0x63EBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9F90, symBinAddr: 0x1A3B0, symSize: 0x80 } - - { offsetInCU: 0x26D7, offset: 0x63ECE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA010, symBinAddr: 0x1A430, symSize: 0xD0 } - - { offsetInCU: 0x26EB, offset: 0x63EE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA0E0, symBinAddr: 0x1A500, symSize: 0x10 } - - { offsetInCU: 0x26FF, offset: 0x63EF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA0F0, symBinAddr: 0x1A510, symSize: 0x10 } - - { offsetInCU: 0x2713, offset: 0x63F0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA270, symBinAddr: 0x1A690, symSize: 0x10 } - - { offsetInCU: 0x2727, offset: 0x63F1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA280, symBinAddr: 0x1A6A0, symSize: 0x10 } - - { offsetInCU: 0x273B, offset: 0x63F32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0xA290, symBinAddr: 0x1A6B0, symSize: 0x80 } - - { offsetInCU: 0x274F, offset: 0x63F46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA310, symBinAddr: 0x1A730, symSize: 0xD0 } - - { offsetInCU: 0x2763, offset: 0x63F5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA3E0, symBinAddr: 0x1A800, symSize: 0x10 } - - { offsetInCU: 0x2777, offset: 0x63F6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA3F0, symBinAddr: 0x1A810, symSize: 0x10 } - - { offsetInCU: 0x278B, offset: 0x63F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA400, symBinAddr: 0x1A820, symSize: 0x10 } - - { offsetInCU: 0x279F, offset: 0x63F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA410, symBinAddr: 0x1A830, symSize: 0x30 } - - { offsetInCU: 0x27B3, offset: 0x63FAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA440, symBinAddr: 0x1A860, symSize: 0x10 } - - { offsetInCU: 0x27C7, offset: 0x63FBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA450, symBinAddr: 0x1A870, symSize: 0x30 } - - { offsetInCU: 0x27DB, offset: 0x63FD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA480, symBinAddr: 0x1A8A0, symSize: 0x10 } - - { offsetInCU: 0x27EF, offset: 0x63FE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA490, symBinAddr: 0x1A8B0, symSize: 0x30 } - - { offsetInCU: 0x2803, offset: 0x63FFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA4C0, symBinAddr: 0x1A8E0, symSize: 0x10 } - - { offsetInCU: 0x2817, offset: 0x6400E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA4D0, symBinAddr: 0x1A8F0, symSize: 0x30 } - - { offsetInCU: 0x282B, offset: 0x64022, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA500, symBinAddr: 0x1A920, symSize: 0x10 } - - { offsetInCU: 0x283F, offset: 0x64036, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA510, symBinAddr: 0x1A930, symSize: 0x30 } - - { offsetInCU: 0x2853, offset: 0x6404A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA540, symBinAddr: 0x1A960, symSize: 0x10 } - - { offsetInCU: 0x2867, offset: 0x6405E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA550, symBinAddr: 0x1A970, symSize: 0x30 } - - { offsetInCU: 0x287B, offset: 0x64072, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA580, symBinAddr: 0x1A9A0, symSize: 0x10 } - - { offsetInCU: 0x288F, offset: 0x64086, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA590, symBinAddr: 0x1A9B0, symSize: 0x30 } - - { offsetInCU: 0x28A3, offset: 0x6409A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA5C0, symBinAddr: 0x1A9E0, symSize: 0x10 } - - { offsetInCU: 0x28B7, offset: 0x640AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA5D0, symBinAddr: 0x1A9F0, symSize: 0x30 } - - { offsetInCU: 0x28CB, offset: 0x640C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA600, symBinAddr: 0x1AA20, symSize: 0x10 } - - { offsetInCU: 0x28DF, offset: 0x640D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA610, symBinAddr: 0x1AA30, symSize: 0x30 } - - { offsetInCU: 0x292F, offset: 0x64126, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x140, symBinAddr: 0x105B0, symSize: 0x20 } - - { offsetInCU: 0x294B, offset: 0x64142, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x160, symBinAddr: 0x105D0, symSize: 0x20 } - - { offsetInCU: 0x2994, offset: 0x6418B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1680, symBinAddr: 0x11AF0, symSize: 0x30 } - - { offsetInCU: 0x2A37, offset: 0x6422E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x11B70, symSize: 0x20 } - - { offsetInCU: 0x2A53, offset: 0x6424A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x11B90, symSize: 0x20 } - - { offsetInCU: 0x2A75, offset: 0x6426C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x11CA0, symSize: 0x20 } - - { offsetInCU: 0x2A91, offset: 0x64288, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x11CC0, symSize: 0x20 } - - { offsetInCU: 0x2AB3, offset: 0x642AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1950, symBinAddr: 0x11DC0, symSize: 0x20 } - - { offsetInCU: 0x2ACF, offset: 0x642C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1970, symBinAddr: 0x11DE0, symSize: 0x20 } - - { offsetInCU: 0x2AF1, offset: 0x642E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x11ED0, symSize: 0x20 } - - { offsetInCU: 0x2B0D, offset: 0x64304, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x11EF0, symSize: 0x20 } - - { offsetInCU: 0x2B2F, offset: 0x64326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x12020, symSize: 0x20 } - - { offsetInCU: 0x2B4B, offset: 0x64342, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1BD0, symBinAddr: 0x12040, symSize: 0x20 } - - { offsetInCU: 0x2B94, offset: 0x6438B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D30, symBinAddr: 0x121A0, symSize: 0x40 } - - { offsetInCU: 0x2C37, offset: 0x6442E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DC0, symBinAddr: 0x12230, symSize: 0x20 } - - { offsetInCU: 0x2C53, offset: 0x6444A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DE0, symBinAddr: 0x12250, symSize: 0x20 } - - { offsetInCU: 0x2C75, offset: 0x6446C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EA0, symBinAddr: 0x12310, symSize: 0x20 } - - { offsetInCU: 0x2C91, offset: 0x64488, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1EC0, symBinAddr: 0x12330, symSize: 0x20 } - - { offsetInCU: 0x2CB3, offset: 0x644AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x12440, symSize: 0x20 } - - { offsetInCU: 0x2CCF, offset: 0x644C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x12460, symSize: 0x20 } - - { offsetInCU: 0x2CF1, offset: 0x644E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2180, symBinAddr: 0x125F0, symSize: 0x20 } - - { offsetInCU: 0x2D0D, offset: 0x64504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x21A0, symBinAddr: 0x12610, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x646AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AD80, symSize: 0xA0 } - - { offsetInCU: 0xA5, offset: 0x6472D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AD80, symSize: 0xA0 } - - { offsetInCU: 0xFE, offset: 0x64786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0xA0, symBinAddr: 0x1AE20, symSize: 0x40 } - - { offsetInCU: 0x11C, offset: 0x647A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xE0, symBinAddr: 0x1AE60, symSize: 0x50 } - - { offsetInCU: 0x156, offset: 0x647DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x130, symBinAddr: 0x1AEB0, symSize: 0x10 } - - { offsetInCU: 0x174, offset: 0x647FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x1AEC0, symSize: 0x10 } - - { offsetInCU: 0x19F, offset: 0x64827, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x150, symBinAddr: 0x1AED0, symSize: 0x20 } - - { offsetInCU: 0x1BD, offset: 0x64845, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x170, symBinAddr: 0x1AEF0, symSize: 0x20 } - - { offsetInCU: 0x1F7, offset: 0x6487F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x190, symBinAddr: 0x1AF10, symSize: 0x20 } - - { offsetInCU: 0x225, offset: 0x648AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x1B0, symBinAddr: 0x1AF30, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x648D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x1C0, symBinAddr: 0x1AF40, symSize: 0x30 } - - { offsetInCU: 0x26E, offset: 0x648F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1F0, symBinAddr: 0x1AF70, symSize: 0x30 } - - { offsetInCU: 0x2AC, offset: 0x64934, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x220, symBinAddr: 0x1AFA0, symSize: 0x20 } - - { offsetInCU: 0x2DA, offset: 0x64962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x240, symBinAddr: 0x1AFC0, symSize: 0x10 } - - { offsetInCU: 0x305, offset: 0x6498D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x250, symBinAddr: 0x1AFD0, symSize: 0x10 } - - { offsetInCU: 0x323, offset: 0x649AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x260, symBinAddr: 0x1AFE0, symSize: 0x10 } - - { offsetInCU: 0x361, offset: 0x649E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x270, symBinAddr: 0x1AFF0, symSize: 0x20 } - - { offsetInCU: 0x38F, offset: 0x64A17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1B010, symSize: 0x10 } - - { offsetInCU: 0x3BA, offset: 0x64A42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x2A0, symBinAddr: 0x1B020, symSize: 0x10 } - - { offsetInCU: 0x3D8, offset: 0x64A60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x2B0, symBinAddr: 0x1B030, symSize: 0x10 } - - { offsetInCU: 0x416, offset: 0x64A9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x2C0, symBinAddr: 0x1B040, symSize: 0x20 } - - { offsetInCU: 0x444, offset: 0x64ACC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2E0, symBinAddr: 0x1B060, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x64AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2F0, symBinAddr: 0x1B070, symSize: 0x30 } - - { offsetInCU: 0x48D, offset: 0x64B15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x320, symBinAddr: 0x1B0A0, symSize: 0x30 } - - { offsetInCU: 0x4CB, offset: 0x64B53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x350, symBinAddr: 0x1B0D0, symSize: 0x20 } - - { offsetInCU: 0x4F9, offset: 0x64B81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x370, symBinAddr: 0x1B0F0, symSize: 0x10 } - - { offsetInCU: 0x524, offset: 0x64BAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x380, symBinAddr: 0x1B100, symSize: 0x30 } - - { offsetInCU: 0x542, offset: 0x64BCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x3B0, symBinAddr: 0x1B130, symSize: 0x30 } - - { offsetInCU: 0x580, offset: 0x64C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3E0, symBinAddr: 0x1B160, symSize: 0x20 } - - { offsetInCU: 0x5AE, offset: 0x64C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x400, symBinAddr: 0x1B180, symSize: 0x10 } - - { offsetInCU: 0x5D9, offset: 0x64C61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x410, symBinAddr: 0x1B190, symSize: 0x10 } - - { offsetInCU: 0x5F7, offset: 0x64C7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x420, symBinAddr: 0x1B1A0, symSize: 0x10 } - - { offsetInCU: 0x635, offset: 0x64CBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x430, symBinAddr: 0x1B1B0, symSize: 0x20 } - - { offsetInCU: 0x663, offset: 0x64CEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x450, symBinAddr: 0x1B1D0, symSize: 0x10 } - - { offsetInCU: 0x68E, offset: 0x64D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x460, symBinAddr: 0x1B1E0, symSize: 0x10 } - - { offsetInCU: 0x6AC, offset: 0x64D34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x470, symBinAddr: 0x1B1F0, symSize: 0x10 } - - { offsetInCU: 0x6EA, offset: 0x64D72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x480, symBinAddr: 0x1B200, symSize: 0x20 } - - { offsetInCU: 0x718, offset: 0x64DA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x4A0, symBinAddr: 0x1B220, symSize: 0x10 } - - { offsetInCU: 0x744, offset: 0x64DCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x4B0, symBinAddr: 0x1B230, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x64DE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x4E0, symBinAddr: 0x1B260, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x64DF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x520, symBinAddr: 0x1B2A0, symSize: 0xD0 } - - { offsetInCU: 0x780, offset: 0x64E08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x5F0, symBinAddr: 0x1B370, symSize: 0x100 } - - { offsetInCU: 0x794, offset: 0x64E1C, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6F0, symBinAddr: 0x1B470, symSize: 0x50 } - - { offsetInCU: 0x7A8, offset: 0x64E30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x740, symBinAddr: 0x1B4C0, symSize: 0xD0 } - - { offsetInCU: 0x7BC, offset: 0x64E44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x810, symBinAddr: 0x1B590, symSize: 0x40 } - - { offsetInCU: 0x7D0, offset: 0x64E58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x850, symBinAddr: 0x1B5D0, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64E6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x8B0, symBinAddr: 0x1B630, symSize: 0xA } - - { offsetInCU: 0x52, offset: 0x6504E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1B640, symSize: 0x350 } - - { offsetInCU: 0x7D, offset: 0x65079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x700, symBinAddr: 0x1BD40, symSize: 0x30 } - - { offsetInCU: 0x99, offset: 0x65095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x990, symBinAddr: 0x1BFD0, symSize: 0x50 } - - { offsetInCU: 0xD1, offset: 0x650CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1B990, symSize: 0x310 } - - { offsetInCU: 0xFC, offset: 0x650F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x960, symBinAddr: 0x1BFA0, symSize: 0x30 } - - { offsetInCU: 0x118, offset: 0x65114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x9E0, symBinAddr: 0x1C020, symSize: 0x50 } - - { offsetInCU: 0x144, offset: 0x65140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1C070, symSize: 0x120 } - - { offsetInCU: 0x174, offset: 0x65170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1C190, symSize: 0x80 } - - { offsetInCU: 0x188, offset: 0x65184, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1C210, symSize: 0xD0 } - - { offsetInCU: 0x19C, offset: 0x65198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1C2E0, symSize: 0x10 } - - { offsetInCU: 0x1B0, offset: 0x651AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1C2F0, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x651C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1C300, symSize: 0x80 } - - { offsetInCU: 0x1D8, offset: 0x651D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1C380, symSize: 0xD0 } - - { offsetInCU: 0x1EC, offset: 0x651E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1C450, symSize: 0x10 } - - { offsetInCU: 0x200, offset: 0x651FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1C460, symSize: 0x10 } - - { offsetInCU: 0x214, offset: 0x65210, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1C470, symSize: 0x10 } - - { offsetInCU: 0x228, offset: 0x65224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1C480, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x65238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1C490, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x6524C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1C4A0, symSize: 0x30 } - - { offsetInCU: 0x264, offset: 0x65260, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1C4D0, symSize: 0x10 } - - { offsetInCU: 0x278, offset: 0x65274, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1C4E0, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x653D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1C530, symSize: 0x2B0 } - - { offsetInCU: 0x7C, offset: 0x653FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1C7E0, symSize: 0x20 } - - { offsetInCU: 0xA9, offset: 0x6542C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC9printLogs33_05B95674BA567498C742095BB49A0405LL3msgySS_tFTf4nd_n', symObjAddr: 0x6D0, symBinAddr: 0x1CC00, symSize: 0xC0 } - - { offsetInCU: 0x1DB, offset: 0x6555E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1C800, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x655B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1C820, symSize: 0x90 } - - { offsetInCU: 0x284, offset: 0x65607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1C8B0, symSize: 0x10 } - - { offsetInCU: 0x2AD, offset: 0x65630, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1C8C0, symSize: 0x10 } - - { offsetInCU: 0x2D6, offset: 0x65659, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1C8D0, symSize: 0x10 } - - { offsetInCU: 0x2FF, offset: 0x65682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1C970, symSize: 0x10 } - - { offsetInCU: 0x351, offset: 0x656D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1C980, symSize: 0x80 } - - { offsetInCU: 0x3A9, offset: 0x6572C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1CA00, symSize: 0x60 } - - { offsetInCU: 0x3EA, offset: 0x6576D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1CA60, symSize: 0x90 } - - { offsetInCU: 0x446, offset: 0x657C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1CAF0, symSize: 0x80 } - - { offsetInCU: 0x494, offset: 0x65817, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1CB70, symSize: 0x70 } - - { offsetInCU: 0x4C6, offset: 0x65849, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1CBE0, symSize: 0x10 } - - { offsetInCU: 0x4E2, offset: 0x65865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6C0, symBinAddr: 0x1CBF0, symSize: 0x10 } - - { offsetInCU: 0x567, offset: 0x658EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x790, symBinAddr: 0x1CCC0, symSize: 0x910 } - - { offsetInCU: 0x678, offset: 0x659FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x10A0, symBinAddr: 0x1D5D0, symSize: 0x70 } - - { offsetInCU: 0x6CD, offset: 0x65A50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1110, symBinAddr: 0x1D640, symSize: 0x2A0 } - - { offsetInCU: 0x7E5, offset: 0x65B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x13B0, symBinAddr: 0x1D8E0, symSize: 0x60 } - - { offsetInCU: 0x824, offset: 0x65BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0x1410, symBinAddr: 0x1D940, symSize: 0x60 } - - { offsetInCU: 0x863, offset: 0x65BE6, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1470, symBinAddr: 0x1D9A0, symSize: 0x20 } - - { offsetInCU: 0x877, offset: 0x65BFA, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1490, symBinAddr: 0x1D9C0, symSize: 0x20 } - - { offsetInCU: 0x88B, offset: 0x65C0E, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1520, symBinAddr: 0x1D9E0, symSize: 0x40 } - - { offsetInCU: 0x89F, offset: 0x65C22, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1560, symBinAddr: 0x1DA20, symSize: 0x20 } - - { offsetInCU: 0x8B3, offset: 0x65C36, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1580, symBinAddr: 0x1DA40, symSize: 0x40 } - - { offsetInCU: 0x8C7, offset: 0x65C4A, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x15C0, symBinAddr: 0x1DA80, symSize: 0x30 } - - { offsetInCU: 0x8DB, offset: 0x65C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x15F0, symBinAddr: 0x1DAB0, symSize: 0x260 } - - { offsetInCU: 0x8EF, offset: 0x65C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1850, symBinAddr: 0x1DD10, symSize: 0x30 } - - { offsetInCU: 0x903, offset: 0x65C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x1880, symBinAddr: 0x1DD40, symSize: 0x260 } - - { offsetInCU: 0x917, offset: 0x65C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1AE0, symBinAddr: 0x1DFA0, symSize: 0x25 } - - { offsetInCU: 0x4F, offset: 0x65F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2A10, symBinAddr: 0x8FAB0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x65F5B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2A18, symBinAddr: 0x8FAB8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65F69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1E010, symSize: 0x30 } - - { offsetInCU: 0xB3, offset: 0x65FA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1E040, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x65FDB, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1E080, symSize: 0x30 } - - { offsetInCU: 0x114, offset: 0x66006, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1E0B0, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x66056, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1E0F0, symSize: 0x30 } - - { offsetInCU: 0x18F, offset: 0x66081, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x180, symBinAddr: 0x1E150, symSize: 0x10 } - - { offsetInCU: 0x1B8, offset: 0x660AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0x1E160, symSize: 0x30 } - - { offsetInCU: 0x1D3, offset: 0x660C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x1C0, symBinAddr: 0x1E190, symSize: 0x10 } - - { offsetInCU: 0x202, offset: 0x660F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x1D0, symBinAddr: 0x1E1A0, symSize: 0x20 } - - { offsetInCU: 0x293, offset: 0x66185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x240, symBinAddr: 0x1E210, symSize: 0x10 } - - { offsetInCU: 0x2F3, offset: 0x661E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2A0, symBinAddr: 0x1E270, symSize: 0x20 } - - { offsetInCU: 0x36D, offset: 0x6625F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0x1E2E0, symSize: 0x10 } - - { offsetInCU: 0x3F7, offset: 0x662E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x450, symBinAddr: 0x1E420, symSize: 0x40 } - - { offsetInCU: 0x414, offset: 0x66306, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x4B0, symBinAddr: 0x1E480, symSize: 0x50 } - - { offsetInCU: 0x43B, offset: 0x6632D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x520, symBinAddr: 0x1E4F0, symSize: 0x30 } - - { offsetInCU: 0x468, offset: 0x6635A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x550, symBinAddr: 0x1E520, symSize: 0x10 } - - { offsetInCU: 0x4DB, offset: 0x663CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x690, symBinAddr: 0x1E660, symSize: 0x40 } - - { offsetInCU: 0x4F8, offset: 0x663EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x6D0, symBinAddr: 0x1E6A0, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x66411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x720, symBinAddr: 0x1E6F0, symSize: 0x30 } - - { offsetInCU: 0x54C, offset: 0x6643E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x750, symBinAddr: 0x1E720, symSize: 0x10 } - - { offsetInCU: 0x577, offset: 0x66469, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x760, symBinAddr: 0x1E730, symSize: 0x30 } - - { offsetInCU: 0x594, offset: 0x66486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x790, symBinAddr: 0x1E760, symSize: 0x30 } - - { offsetInCU: 0x5BB, offset: 0x664AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x7C0, symBinAddr: 0x1E790, symSize: 0x30 } - - { offsetInCU: 0x612, offset: 0x66504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x840, symBinAddr: 0x1E810, symSize: 0x30 } - - { offsetInCU: 0x62F, offset: 0x66521, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x870, symBinAddr: 0x1E840, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x66548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x8B0, symBinAddr: 0x1E880, symSize: 0x30 } - - { offsetInCU: 0x683, offset: 0x66575, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0x8E0, symBinAddr: 0x1E8B0, symSize: 0x70 } - - { offsetInCU: 0x72E, offset: 0x66620, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0x950, symBinAddr: 0x1E920, symSize: 0xA0 } - - { offsetInCU: 0x7AB, offset: 0x6669D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9F0, symBinAddr: 0x1E9C0, symSize: 0xA0 } - - { offsetInCU: 0x80F, offset: 0x66701, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xC80, symBinAddr: 0x1EC50, symSize: 0x60 } - - { offsetInCU: 0x839, offset: 0x6672B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xCE0, symBinAddr: 0x1ECB0, symSize: 0x30 } - - { offsetInCU: 0x85E, offset: 0x66750, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xD10, symBinAddr: 0x1ECE0, symSize: 0x180 } - - { offsetInCU: 0x913, offset: 0x66805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1EE60, symSize: 0x10 } - - { offsetInCU: 0x960, offset: 0x66852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0xEA0, symBinAddr: 0x1EE70, symSize: 0x70 } - - { offsetInCU: 0x9FC, offset: 0x668EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0xF40, symBinAddr: 0x1EF10, symSize: 0x80 } - - { offsetInCU: 0xB12, offset: 0x66A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1900, symBinAddr: 0x1F8D0, symSize: 0x220 } - - { offsetInCU: 0xBA3, offset: 0x66A95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B70, symBinAddr: 0x1FB40, symSize: 0x170 } - - { offsetInCU: 0xCA8, offset: 0x66B9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x320, symBinAddr: 0x1E2F0, symSize: 0x80 } - - { offsetInCU: 0xCE0, offset: 0x66BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x3A0, symBinAddr: 0x1E370, symSize: 0xB0 } - - { offsetInCU: 0xD20, offset: 0x66C12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x490, symBinAddr: 0x1E460, symSize: 0x20 } - - { offsetInCU: 0xD34, offset: 0x66C26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x500, symBinAddr: 0x1E4D0, symSize: 0x20 } - - { offsetInCU: 0xD48, offset: 0x66C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x560, symBinAddr: 0x1E530, symSize: 0x80 } - - { offsetInCU: 0xD80, offset: 0x66C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x5E0, symBinAddr: 0x1E5B0, symSize: 0xB0 } - - { offsetInCU: 0xDC0, offset: 0x66CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x7F0, symBinAddr: 0x1E7C0, symSize: 0x50 } - - { offsetInCU: 0xE24, offset: 0x66D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xA90, symBinAddr: 0x1EA60, symSize: 0x1F0 } - - { offsetInCU: 0xE98, offset: 0x66D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1790, symBinAddr: 0x1F760, symSize: 0x120 } - - { offsetInCU: 0xF78, offset: 0x66E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0xF10, symBinAddr: 0x1EEE0, symSize: 0x30 } - - { offsetInCU: 0x1067, offset: 0x66F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x18E0, symBinAddr: 0x1F8B0, symSize: 0x20 } - - { offsetInCU: 0x10B7, offset: 0x66FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1EF90, symSize: 0x220 } - - { offsetInCU: 0x128D, offset: 0x6717F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x11E0, symBinAddr: 0x1F1B0, symSize: 0x10 } - - { offsetInCU: 0x12E4, offset: 0x671D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11F0, symBinAddr: 0x1F1C0, symSize: 0x10 } - - { offsetInCU: 0x1332, offset: 0x67224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1200, symBinAddr: 0x1F1D0, symSize: 0x10 } - - { offsetInCU: 0x134A, offset: 0x6723C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1210, symBinAddr: 0x1F1E0, symSize: 0xB0 } - - { offsetInCU: 0x13F0, offset: 0x672E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1300, symBinAddr: 0x1F2D0, symSize: 0x10 } - - { offsetInCU: 0x1408, offset: 0x672FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26E0, symBinAddr: 0x20690, symSize: 0x70 } - - { offsetInCU: 0x14E5, offset: 0x673D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x12C0, symBinAddr: 0x1F290, symSize: 0x40 } - - { offsetInCU: 0x1520, offset: 0x67412, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1330, symBinAddr: 0x1F300, symSize: 0x90 } - - { offsetInCU: 0x1617, offset: 0x67509, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x1480, symBinAddr: 0x1F450, symSize: 0x1D0 } - - { offsetInCU: 0x1CC0, offset: 0x67BB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x1650, symBinAddr: 0x1F620, symSize: 0x130 } - - { offsetInCU: 0x1DBD, offset: 0x67CAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x1F750, symSize: 0x10 } - - { offsetInCU: 0x1DD1, offset: 0x67CC3, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x18B0, symBinAddr: 0x1F880, symSize: 0x30 } - - { offsetInCU: 0x1DE9, offset: 0x67CDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1B20, symBinAddr: 0x1FAF0, symSize: 0x30 } - - { offsetInCU: 0x1DFD, offset: 0x67CEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1B50, symBinAddr: 0x1FB20, symSize: 0x20 } - - { offsetInCU: 0x1E11, offset: 0x67D03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1CE0, symBinAddr: 0x1FCB0, symSize: 0x20 } - - { offsetInCU: 0x1E25, offset: 0x67D17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1D00, symBinAddr: 0x1FCD0, symSize: 0x10 } - - { offsetInCU: 0x1E39, offset: 0x67D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1D10, symBinAddr: 0x1FCE0, symSize: 0x30 } - - { offsetInCU: 0x1E4D, offset: 0x67D3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D40, symBinAddr: 0x1FD10, symSize: 0x10 } - - { offsetInCU: 0x1E61, offset: 0x67D53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D50, symBinAddr: 0x1FD20, symSize: 0x30 } - - { offsetInCU: 0x1E75, offset: 0x67D67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwCP', symObjAddr: 0x1E90, symBinAddr: 0x1FE60, symSize: 0x60 } - - { offsetInCU: 0x1E89, offset: 0x67D7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1EF0, symBinAddr: 0x1FEC0, symSize: 0x20 } - - { offsetInCU: 0x1E9D, offset: 0x67D8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1F10, symBinAddr: 0x1FEE0, symSize: 0x20 } - - { offsetInCU: 0x1EB1, offset: 0x67DA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1F30, symBinAddr: 0x1FF00, symSize: 0x20 } - - { offsetInCU: 0x1EC5, offset: 0x67DB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwcp', symObjAddr: 0x1F50, symBinAddr: 0x1FF20, symSize: 0x60 } - - { offsetInCU: 0x1ED9, offset: 0x67DCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x1FB0, symBinAddr: 0x1FF80, symSize: 0x70 } - - { offsetInCU: 0x1EED, offset: 0x67DDF, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2020, symBinAddr: 0x1FFF0, symSize: 0x20 } - - { offsetInCU: 0x1F01, offset: 0x67DF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x2040, symBinAddr: 0x20010, symSize: 0x40 } - - { offsetInCU: 0x1F15, offset: 0x67E07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x2080, symBinAddr: 0x20050, symSize: 0x50 } - - { offsetInCU: 0x1F29, offset: 0x67E1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x20D0, symBinAddr: 0x200A0, symSize: 0x50 } - - { offsetInCU: 0x1F3D, offset: 0x67E2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x2120, symBinAddr: 0x200F0, symSize: 0x10 } - - { offsetInCU: 0x1F51, offset: 0x67E43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2130, symBinAddr: 0x20100, symSize: 0x10 } - - { offsetInCU: 0x1F65, offset: 0x67E57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2140, symBinAddr: 0x20110, symSize: 0x10 } - - { offsetInCU: 0x1F79, offset: 0x67E6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x2150, symBinAddr: 0x20120, symSize: 0x10 } - - { offsetInCU: 0x1F8D, offset: 0x67E7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2340, symBinAddr: 0x202F0, symSize: 0x80 } - - { offsetInCU: 0x1FA1, offset: 0x67E93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23C0, symBinAddr: 0x20370, symSize: 0xD0 } - - { offsetInCU: 0x1FB5, offset: 0x67EA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2490, symBinAddr: 0x20440, symSize: 0x10 } - - { offsetInCU: 0x1FC9, offset: 0x67EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x24A0, symBinAddr: 0x20450, symSize: 0x10 } - - { offsetInCU: 0x1FDD, offset: 0x67ECF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x24B0, symBinAddr: 0x20460, symSize: 0x80 } - - { offsetInCU: 0x1FF1, offset: 0x67EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2530, symBinAddr: 0x204E0, symSize: 0xD0 } - - { offsetInCU: 0x2005, offset: 0x67EF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x2600, symBinAddr: 0x205B0, symSize: 0x10 } - - { offsetInCU: 0x2019, offset: 0x67F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x2610, symBinAddr: 0x205C0, symSize: 0x10 } - - { offsetInCU: 0x202D, offset: 0x67F1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2620, symBinAddr: 0x205D0, symSize: 0x10 } - - { offsetInCU: 0x2041, offset: 0x67F33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2630, symBinAddr: 0x205E0, symSize: 0x10 } - - { offsetInCU: 0x2060, offset: 0x67F52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2670, symBinAddr: 0x20620, symSize: 0x20 } - - { offsetInCU: 0x2089, offset: 0x67F7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x2770, symBinAddr: 0x20720, symSize: 0x10 } - - { offsetInCU: 0x209D, offset: 0x67F8F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2780, symBinAddr: 0x20730, symSize: 0x20 } - - { offsetInCU: 0x20B1, offset: 0x67FA3, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x27A0, symBinAddr: 0x20750, symSize: 0x10 } - - { offsetInCU: 0x20C5, offset: 0x67FB7, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2830, symBinAddr: 0x20760, symSize: 0x30 } - - { offsetInCU: 0x2147, offset: 0x68039, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1DFD0, symSize: 0x10 } - - { offsetInCU: 0x2163, offset: 0x68055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1DFE0, symSize: 0x10 } - - { offsetInCU: 0x217F, offset: 0x68071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1DFF0, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x6808D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1E000, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x6852B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x20920, symSize: 0x30 } - - { offsetInCU: 0x57, offset: 0x6853F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x20950, symSize: 0x80 } - - { offsetInCU: 0x6B, offset: 0x68553, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x209D0, symSize: 0x130 } - - { offsetInCU: 0x86, offset: 0x6856E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x20B00, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x68597, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x20B30, symSize: 0x30 } - - { offsetInCU: 0xC3, offset: 0x685AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x20B60, symSize: 0xC0 } - - { offsetInCU: 0xD7, offset: 0x685BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x20C20, symSize: 0x50 } - - { offsetInCU: 0xEB, offset: 0x685D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x20C70, symSize: 0x50 } - - { offsetInCU: 0xFF, offset: 0x685E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x20CC0, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x685FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x20CD0, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x6860F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x20D00, symSize: 0x30 } - - { offsetInCU: 0x13B, offset: 0x68623, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x20D30, symSize: 0x60 } - - { offsetInCU: 0x14F, offset: 0x68637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x20D90, symSize: 0x80 } - - { offsetInCU: 0x163, offset: 0x6864B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x20E10, symSize: 0x60 } - - { offsetInCU: 0x177, offset: 0x6865F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x20E70, symSize: 0x50 } - - { offsetInCU: 0x18B, offset: 0x68673, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x20EC0, symSize: 0x50 } - - { offsetInCU: 0x19F, offset: 0x68687, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x20F10, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x686A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x20F20, symSize: 0x100 } - - { offsetInCU: 0x20B, offset: 0x686F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x21380, symSize: 0x10 } - - { offsetInCU: 0x25F, offset: 0x68747, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA70, symBinAddr: 0x21390, symSize: 0x30 } - - { offsetInCU: 0x343, offset: 0x6882B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA0, symBinAddr: 0x213C0, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x688AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF0, symBinAddr: 0x21410, symSize: 0x10 } - - { offsetInCU: 0x404, offset: 0x688EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB00, symBinAddr: 0x21420, symSize: 0x20 } - - { offsetInCU: 0x435, offset: 0x6891D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB20, symBinAddr: 0x21440, symSize: 0x10 } - - { offsetInCU: 0x451, offset: 0x68939, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB30, symBinAddr: 0x21450, symSize: 0x10 } - - { offsetInCU: 0x46D, offset: 0x68955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF00, symBinAddr: 0x21820, symSize: 0x60 } - - { offsetInCU: 0x4B1, offset: 0x68999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF60, symBinAddr: 0x21880, symSize: 0x20 } - - { offsetInCU: 0x4E5, offset: 0x689CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB80, symBinAddr: 0x214A0, symSize: 0x40 } - - { offsetInCU: 0x51C, offset: 0x68A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBC0, symBinAddr: 0x214E0, symSize: 0x40 } - - { offsetInCU: 0x53F, offset: 0x68A27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF80, symBinAddr: 0x218A0, symSize: 0x140 } - - { offsetInCU: 0x58F, offset: 0x68A77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x700, symBinAddr: 0x21020, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x68AC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC00, symBinAddr: 0x21520, symSize: 0x10 } - - { offsetInCU: 0x63A, offset: 0x68B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC20, symBinAddr: 0x21540, symSize: 0x20 } - - { offsetInCU: 0x6B4, offset: 0x68B9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC50, symBinAddr: 0x21570, symSize: 0x10 } - - { offsetInCU: 0x6DF, offset: 0x68BC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC60, symBinAddr: 0x21580, symSize: 0x20 } - - { offsetInCU: 0x710, offset: 0x68BF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC80, symBinAddr: 0x215A0, symSize: 0x10 } - - { offsetInCU: 0x72C, offset: 0x68C14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xC90, symBinAddr: 0x215B0, symSize: 0x10 } - - { offsetInCU: 0x748, offset: 0x68C30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x11F0, symBinAddr: 0x21A70, symSize: 0x110 } - - { offsetInCU: 0x78E, offset: 0x68C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x720, symBinAddr: 0x21040, symSize: 0x1B0 } - - { offsetInCU: 0x7E3, offset: 0x68CCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xCE0, symBinAddr: 0x21600, symSize: 0x40 } - - { offsetInCU: 0x81A, offset: 0x68D02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD20, symBinAddr: 0x21640, symSize: 0x40 } - - { offsetInCU: 0x83D, offset: 0x68D25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1300, symBinAddr: 0x21B80, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x68D75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x8D0, symBinAddr: 0x211F0, symSize: 0x20 } - - { offsetInCU: 0x8B6, offset: 0x68D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE00, symBinAddr: 0x21720, symSize: 0x10 } - - { offsetInCU: 0x8E1, offset: 0x68DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE10, symBinAddr: 0x21730, symSize: 0x20 } - - { offsetInCU: 0x912, offset: 0x68DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE30, symBinAddr: 0x21750, symSize: 0x10 } - - { offsetInCU: 0x92E, offset: 0x68E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CC0, symBinAddr: 0x224A0, symSize: 0x120 } - - { offsetInCU: 0x974, offset: 0x68E5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8F0, symBinAddr: 0x21210, symSize: 0x170 } - - { offsetInCU: 0x9C9, offset: 0x68EB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xE80, symBinAddr: 0x217A0, symSize: 0x40 } - - { offsetInCU: 0xA00, offset: 0x68EE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEC0, symBinAddr: 0x217E0, symSize: 0x40 } - - { offsetInCU: 0xA23, offset: 0x68F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1DE0, symBinAddr: 0x225C0, symSize: 0x2F0 } - - { offsetInCU: 0xA76, offset: 0x68F5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1130, symBinAddr: 0x219E0, symSize: 0x30 } - - { offsetInCU: 0xA8A, offset: 0x68F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x1190, symBinAddr: 0x21A10, symSize: 0x30 } - - { offsetInCU: 0xA9E, offset: 0x68F86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x11C0, symBinAddr: 0x21A40, symSize: 0x30 } - - { offsetInCU: 0xAB2, offset: 0x68F9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1550, symBinAddr: 0x21DD0, symSize: 0x30 } - - { offsetInCU: 0xAC6, offset: 0x68FAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x15C0, symBinAddr: 0x21E00, symSize: 0x30 } - - { offsetInCU: 0xADA, offset: 0x68FC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x1680, symBinAddr: 0x21EC0, symSize: 0x30 } - - { offsetInCU: 0xAEE, offset: 0x68FD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x16F0, symBinAddr: 0x21F10, symSize: 0x10 } - - { offsetInCU: 0xB02, offset: 0x68FEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1700, symBinAddr: 0x21F20, symSize: 0x10 } - - { offsetInCU: 0xB16, offset: 0x68FFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1710, symBinAddr: 0x21F30, symSize: 0x10 } - - { offsetInCU: 0xB2A, offset: 0x69012, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x1720, symBinAddr: 0x21F40, symSize: 0x10 } - - { offsetInCU: 0xB3E, offset: 0x69026, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1740, symBinAddr: 0x21F50, symSize: 0x50 } - - { offsetInCU: 0xB52, offset: 0x6903A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1790, symBinAddr: 0x21FA0, symSize: 0xA0 } - - { offsetInCU: 0xB66, offset: 0x6904E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1830, symBinAddr: 0x22040, symSize: 0x10 } - - { offsetInCU: 0xB7A, offset: 0x69062, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1840, symBinAddr: 0x22050, symSize: 0x10 } - - { offsetInCU: 0xB8E, offset: 0x69076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1850, symBinAddr: 0x22060, symSize: 0x10 } - - { offsetInCU: 0xBA2, offset: 0x6908A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x1860, symBinAddr: 0x22070, symSize: 0x10 } - - { offsetInCU: 0xBB6, offset: 0x6909E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x1870, symBinAddr: 0x22080, symSize: 0x40 } - - { offsetInCU: 0xBCA, offset: 0x690B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x18B0, symBinAddr: 0x220C0, symSize: 0x80 } - - { offsetInCU: 0xBDE, offset: 0x690C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1930, symBinAddr: 0x22140, symSize: 0xA0 } - - { offsetInCU: 0xBF2, offset: 0x690DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A00, symBinAddr: 0x221E0, symSize: 0x80 } - - { offsetInCU: 0xC06, offset: 0x690EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1A80, symBinAddr: 0x22260, symSize: 0x50 } - - { offsetInCU: 0xC1A, offset: 0x69102, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1AD0, symBinAddr: 0x222B0, symSize: 0x60 } - - { offsetInCU: 0xC2E, offset: 0x69116, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B30, symBinAddr: 0x22310, symSize: 0x10 } - - { offsetInCU: 0xC42, offset: 0x6912A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B40, symBinAddr: 0x22320, symSize: 0x10 } - - { offsetInCU: 0xC56, offset: 0x6913E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B50, symBinAddr: 0x22330, symSize: 0x30 } - - { offsetInCU: 0xC6A, offset: 0x69152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B80, symBinAddr: 0x22360, symSize: 0x10 } - - { offsetInCU: 0xC7E, offset: 0x69166, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x22370, symSize: 0x30 } - - { offsetInCU: 0xC92, offset: 0x6917A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BC0, symBinAddr: 0x223A0, symSize: 0x10 } - - { offsetInCU: 0xCA6, offset: 0x6918E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x223B0, symSize: 0x30 } - - { offsetInCU: 0xCBA, offset: 0x691A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C00, symBinAddr: 0x223E0, symSize: 0x10 } - - { offsetInCU: 0xCCE, offset: 0x691B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C10, symBinAddr: 0x223F0, symSize: 0x30 } - - { offsetInCU: 0xCE2, offset: 0x691CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C40, symBinAddr: 0x22420, symSize: 0x10 } - - { offsetInCU: 0xCF6, offset: 0x691DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C50, symBinAddr: 0x22430, symSize: 0x30 } - - { offsetInCU: 0xD0A, offset: 0x691F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C80, symBinAddr: 0x22460, symSize: 0x10 } - - { offsetInCU: 0xD1E, offset: 0x69206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C90, symBinAddr: 0x22470, symSize: 0x30 } - - { offsetInCU: 0xD32, offset: 0x6921A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x20D0, symBinAddr: 0x228B0, symSize: 0x30 } - - { offsetInCU: 0xD46, offset: 0x6922E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x2270, symBinAddr: 0x22A50, symSize: 0x10 } - - { offsetInCU: 0xD5A, offset: 0x69242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2280, symBinAddr: 0x22A60, symSize: 0x10 } - - { offsetInCU: 0xD6E, offset: 0x69256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2290, symBinAddr: 0x22A70, symSize: 0x10 } - - { offsetInCU: 0xD82, offset: 0x6926A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x22A0, symBinAddr: 0x22A80, symSize: 0x30 } - - { offsetInCU: 0xD96, offset: 0x6927E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22D0, symBinAddr: 0x22AB0, symSize: 0x10 } - - { offsetInCU: 0xDAA, offset: 0x69292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E0, symBinAddr: 0x22AC0, symSize: 0x30 } - - { offsetInCU: 0xDBE, offset: 0x692A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2310, symBinAddr: 0x22AF0, symSize: 0x10 } - - { offsetInCU: 0xDD2, offset: 0x692BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2320, symBinAddr: 0x22B00, symSize: 0x30 } - - { offsetInCU: 0xE27, offset: 0x6930F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAC0, symBinAddr: 0x213E0, symSize: 0x30 } - - { offsetInCU: 0xECA, offset: 0x693B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB40, symBinAddr: 0x21460, symSize: 0x20 } - - { offsetInCU: 0xEE6, offset: 0x693CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x21480, symSize: 0x20 } - - { offsetInCU: 0xF08, offset: 0x693F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCA0, symBinAddr: 0x215C0, symSize: 0x20 } - - { offsetInCU: 0xF24, offset: 0x6940C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCC0, symBinAddr: 0x215E0, symSize: 0x20 } - - { offsetInCU: 0xF46, offset: 0x6942E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE40, symBinAddr: 0x21760, symSize: 0x20 } - - { offsetInCU: 0xF62, offset: 0x6944A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE60, symBinAddr: 0x21780, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x69597, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22BA0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x695BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22BA0, symSize: 0x10 } - - { offsetInCU: 0x7A, offset: 0x695EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x810, symBinAddr: 0x232B0, symSize: 0x20 } - - { offsetInCU: 0x110, offset: 0x69680, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x830, symBinAddr: 0x232D0, symSize: 0x40 } - - { offsetInCU: 0x20B, offset: 0x6977B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x870, symBinAddr: 0x23310, symSize: 0x10 } - - { offsetInCU: 0x261, offset: 0x697D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x880, symBinAddr: 0x23320, symSize: 0x40 } - - { offsetInCU: 0x345, offset: 0x698B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x23360, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x69934, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x22BB0, symSize: 0x480 } - - { offsetInCU: 0x440, offset: 0x699B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOy', symObjAddr: 0x490, symBinAddr: 0x23030, symSize: 0x20 } - - { offsetInCU: 0x454, offset: 0x699C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOe', symObjAddr: 0x4E0, symBinAddr: 0x23050, symSize: 0x20 } - - { offsetInCU: 0x474, offset: 0x699E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x5D0, symBinAddr: 0x23070, symSize: 0x30 } - - { offsetInCU: 0x492, offset: 0x69A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x600, symBinAddr: 0x230A0, symSize: 0x30 } - - { offsetInCU: 0x4D0, offset: 0x69A40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x630, symBinAddr: 0x230D0, symSize: 0x10 } - - { offsetInCU: 0x4EE, offset: 0x69A5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x640, symBinAddr: 0x230E0, symSize: 0x10 } - - { offsetInCU: 0x519, offset: 0x69A89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x650, symBinAddr: 0x230F0, symSize: 0x10 } - - { offsetInCU: 0x537, offset: 0x69AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x660, symBinAddr: 0x23100, symSize: 0x10 } - - { offsetInCU: 0x575, offset: 0x69AE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x670, symBinAddr: 0x23110, symSize: 0x20 } - - { offsetInCU: 0x5A3, offset: 0x69B13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x690, symBinAddr: 0x23130, symSize: 0x10 } - - { offsetInCU: 0x5D6, offset: 0x69B46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x6A0, symBinAddr: 0x23140, symSize: 0x30 } - - { offsetInCU: 0x5F4, offset: 0x69B64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x6D0, symBinAddr: 0x23170, symSize: 0x20 } - - { offsetInCU: 0x61A, offset: 0x69B8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x6F0, symBinAddr: 0x23190, symSize: 0x30 } - - { offsetInCU: 0x638, offset: 0x69BA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x720, symBinAddr: 0x231C0, symSize: 0x30 } - - { offsetInCU: 0x663, offset: 0x69BD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x750, symBinAddr: 0x231F0, symSize: 0x10 } - - { offsetInCU: 0x681, offset: 0x69BF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x760, symBinAddr: 0x23200, symSize: 0x10 } - - { offsetInCU: 0x6BD, offset: 0x69C2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x770, symBinAddr: 0x23210, symSize: 0x10 } - - { offsetInCU: 0x6DB, offset: 0x69C4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x780, symBinAddr: 0x23220, symSize: 0x10 } - - { offsetInCU: 0x706, offset: 0x69C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x790, symBinAddr: 0x23230, symSize: 0x10 } - - { offsetInCU: 0x724, offset: 0x69C94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x7A0, symBinAddr: 0x23240, symSize: 0x10 } - - { offsetInCU: 0x760, offset: 0x69CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x7B0, symBinAddr: 0x23250, symSize: 0x20 } - - { offsetInCU: 0x78E, offset: 0x69CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x7D0, symBinAddr: 0x23270, symSize: 0x10 } - - { offsetInCU: 0x7B9, offset: 0x69D29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x7E0, symBinAddr: 0x23280, symSize: 0x20 } - - { offsetInCU: 0x7E7, offset: 0x69D57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x800, symBinAddr: 0x232A0, symSize: 0x10 } - - { offsetInCU: 0x829, offset: 0x69D99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x920, symBinAddr: 0x233C0, symSize: 0x10 } - - { offsetInCU: 0x83D, offset: 0x69DAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x930, symBinAddr: 0x233D0, symSize: 0x30 } - - { offsetInCU: 0x851, offset: 0x69DC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x960, symBinAddr: 0x23400, symSize: 0x30 } - - { offsetInCU: 0x865, offset: 0x69DD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x990, symBinAddr: 0x23430, symSize: 0x80 } - - { offsetInCU: 0x879, offset: 0x69DE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0xA10, symBinAddr: 0x234B0, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x69DFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0xC60, symBinAddr: 0x23700, symSize: 0x4F0 } - - { offsetInCU: 0x8A8, offset: 0x69E18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0x1150, symBinAddr: 0x23BF0, symSize: 0x30 } - - { offsetInCU: 0x8D1, offset: 0x69E41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0x1180, symBinAddr: 0x23C20, symSize: 0x20 } - - { offsetInCU: 0x8E5, offset: 0x69E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0x11A0, symBinAddr: 0x23C40, symSize: 0x30 } - - { offsetInCU: 0x8F9, offset: 0x69E69, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0x11D0, symBinAddr: 0x23C70, symSize: 0x10 } - - { offsetInCU: 0x90D, offset: 0x69E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x23C80, symSize: 0x340 } - - { offsetInCU: 0x921, offset: 0x69E91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x1520, symBinAddr: 0x23FC0, symSize: 0x40 } - - { offsetInCU: 0x935, offset: 0x69EA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1560, symBinAddr: 0x24000, symSize: 0x90 } - - { offsetInCU: 0x949, offset: 0x69EB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x24090, symSize: 0x10 } - - { offsetInCU: 0x95D, offset: 0x69ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwCP', symObjAddr: 0x1600, symBinAddr: 0x240A0, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x69EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1630, symBinAddr: 0x240D0, symSize: 0x10 } - - { offsetInCU: 0x985, offset: 0x69EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwcp', symObjAddr: 0x1640, symBinAddr: 0x240E0, symSize: 0x30 } - - { offsetInCU: 0x999, offset: 0x69F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x24110, symSize: 0x50 } - - { offsetInCU: 0x9AD, offset: 0x69F1D, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x16C0, symBinAddr: 0x24160, symSize: 0x20 } - - { offsetInCU: 0x9C1, offset: 0x69F31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x16E0, symBinAddr: 0x24180, symSize: 0x40 } - - { offsetInCU: 0x9D5, offset: 0x69F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1720, symBinAddr: 0x241C0, symSize: 0x40 } - - { offsetInCU: 0x9E9, offset: 0x69F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1760, symBinAddr: 0x24200, symSize: 0x50 } - - { offsetInCU: 0x9FD, offset: 0x69F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x17B0, symBinAddr: 0x24250, symSize: 0x10 } - - { offsetInCU: 0xA11, offset: 0x69F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x17C0, symBinAddr: 0x24260, symSize: 0x30 } - - { offsetInCU: 0xA25, offset: 0x69F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x17F0, symBinAddr: 0x24290, symSize: 0x80 } - - { offsetInCU: 0xA39, offset: 0x69FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x1870, symBinAddr: 0x24310, symSize: 0xE0 } - - { offsetInCU: 0xA4D, offset: 0x69FBD, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1950, symBinAddr: 0x243F0, symSize: 0x30 } - - { offsetInCU: 0xA61, offset: 0x69FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1980, symBinAddr: 0x24420, symSize: 0x90 } - - { offsetInCU: 0xA75, offset: 0x69FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1A10, symBinAddr: 0x244B0, symSize: 0x50 } - - { offsetInCU: 0xA89, offset: 0x69FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1A60, symBinAddr: 0x24500, symSize: 0x60 } - - { offsetInCU: 0xA9D, offset: 0x6A00D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1AC0, symBinAddr: 0x24560, symSize: 0x10 } - - { offsetInCU: 0xAB1, offset: 0x6A021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1AD0, symBinAddr: 0x24570, symSize: 0x30 } - - { offsetInCU: 0xAC5, offset: 0x6A035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x1B00, symBinAddr: 0x245A0, symSize: 0x40 } - - { offsetInCU: 0xAD9, offset: 0x6A049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x1B40, symBinAddr: 0x245E0, symSize: 0x60 } - - { offsetInCU: 0xAED, offset: 0x6A05D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1BC0, symBinAddr: 0x24640, symSize: 0x50 } - - { offsetInCU: 0xB01, offset: 0x6A071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1C10, symBinAddr: 0x24690, symSize: 0x40 } - - { offsetInCU: 0xB15, offset: 0x6A085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x1C50, symBinAddr: 0x246D0, symSize: 0x50 } - - { offsetInCU: 0xB29, offset: 0x6A099, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x1CA0, symBinAddr: 0x24720, symSize: 0x10 } - - { offsetInCU: 0xB3D, offset: 0x6A0AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1CC0, symBinAddr: 0x24730, symSize: 0x40 } - - { offsetInCU: 0xB51, offset: 0x6A0C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1D00, symBinAddr: 0x24770, symSize: 0x50 } - - { offsetInCU: 0xB65, offset: 0x6A0D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1D50, symBinAddr: 0x247C0, symSize: 0x10 } - - { offsetInCU: 0xB79, offset: 0x6A0E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x1D70, symBinAddr: 0x247D0, symSize: 0x80 } - - { offsetInCU: 0xB8D, offset: 0x6A0FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1DF0, symBinAddr: 0x24850, symSize: 0xD0 } - - { offsetInCU: 0xBA1, offset: 0x6A111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1EC0, symBinAddr: 0x24920, symSize: 0x10 } - - { offsetInCU: 0xBB5, offset: 0x6A125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1ED0, symBinAddr: 0x24930, symSize: 0x10 } - - { offsetInCU: 0xBC9, offset: 0x6A139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1EE0, symBinAddr: 0x24940, symSize: 0x10 } - - { offsetInCU: 0xBDD, offset: 0x6A14D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1EF0, symBinAddr: 0x24950, symSize: 0x10 } - - { offsetInCU: 0xC32, offset: 0x6A1A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x23380, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x6A3EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x249A0, symSize: 0x170 } - - { offsetInCU: 0x35A, offset: 0x6A6DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x170, symBinAddr: 0x24B10, symSize: 0x700 } - - { offsetInCU: 0x6C9, offset: 0x6AA49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x31D0, symBinAddr: 0x27B70, symSize: 0x7A0 } - - { offsetInCU: 0xC01, offset: 0x6AF81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x8F0, symBinAddr: 0x25290, symSize: 0x25F0 } - - { offsetInCU: 0x1C7D, offset: 0x6BFFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xDB60, symBinAddr: 0x32500, symSize: 0x42E0 } - - { offsetInCU: 0x3A21, offset: 0x6DDA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x11E40, symBinAddr: 0x367E0, symSize: 0x790 } - - { offsetInCU: 0x4011, offset: 0x6E391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tF', symObjAddr: 0x125D0, symBinAddr: 0x36F70, symSize: 0x40 } - - { offsetInCU: 0x4039, offset: 0x6E3B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x18080, symBinAddr: 0x3CA20, symSize: 0x450 } - - { offsetInCU: 0x41B2, offset: 0x6E532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x14200, symBinAddr: 0x38BA0, symSize: 0x2F60 } - - { offsetInCU: 0x57F9, offset: 0x6FB79, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2EE0, symBinAddr: 0x27880, symSize: 0x2F0 } - - { offsetInCU: 0x5C49, offset: 0x6FFC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x3970, symBinAddr: 0x28310, symSize: 0x6E0 } - - { offsetInCU: 0x5F7C, offset: 0x702FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x4050, symBinAddr: 0x289F0, symSize: 0x4C30 } - - { offsetInCU: 0x7AF6, offset: 0x71E76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x8C80, symBinAddr: 0x2D620, symSize: 0x2E0 } - - { offsetInCU: 0x7BF8, offset: 0x71F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x93E0, symBinAddr: 0x2DD80, symSize: 0x1BC0 } - - { offsetInCU: 0x84E4, offset: 0x72864, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x8F60, symBinAddr: 0x2D900, symSize: 0x120 } - - { offsetInCU: 0x854D, offset: 0x728CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x91A0, symBinAddr: 0x2DB40, symSize: 0x210 } - - { offsetInCU: 0x863A, offset: 0x729BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x93B0, symBinAddr: 0x2DD50, symSize: 0x30 } - - { offsetInCU: 0x8882, offset: 0x72C02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0xAFA0, symBinAddr: 0x2F940, symSize: 0x8B0 } - - { offsetInCU: 0x8CA7, offset: 0x73027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xC910, symBinAddr: 0x312B0, symSize: 0x1250 } - - { offsetInCU: 0x956F, offset: 0x738EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xB850, symBinAddr: 0x301F0, symSize: 0xC00 } - - { offsetInCU: 0xA03F, offset: 0x743BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x12A80, symBinAddr: 0x37420, symSize: 0x1780 } - - { offsetInCU: 0xAFD3, offset: 0x75353, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1C210, symBinAddr: 0x40AF0, symSize: 0xE00 } - - { offsetInCU: 0xBC15, offset: 0x75F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x17160, symBinAddr: 0x3BB00, symSize: 0xF20 } - - { offsetInCU: 0xC583, offset: 0x76903, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x184D0, symBinAddr: 0x3CE70, symSize: 0x1C0 } - - { offsetInCU: 0xC624, offset: 0x769A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x18690, symBinAddr: 0x3D030, symSize: 0x2D0 } - - { offsetInCU: 0xC72A, offset: 0x76AAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x18960, symBinAddr: 0x3D300, symSize: 0x80 } - - { offsetInCU: 0xC7A9, offset: 0x76B29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x18A50, symBinAddr: 0x3D3F0, symSize: 0x1260 } - - { offsetInCU: 0xD102, offset: 0x77482, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x19CB0, symBinAddr: 0x3E650, symSize: 0x50 } - - { offsetInCU: 0xD11E, offset: 0x7749E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x19D00, symBinAddr: 0x3E6A0, symSize: 0x160 } - - { offsetInCU: 0xD222, offset: 0x775A2, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x19E60, symBinAddr: 0x3E800, symSize: 0x50 } - - { offsetInCU: 0xD29B, offset: 0x7761B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x19F00, symBinAddr: 0x3E850, symSize: 0x40 } - - { offsetInCU: 0xD31F, offset: 0x7769F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x19F40, symBinAddr: 0x3E890, symSize: 0x40 } - - { offsetInCU: 0xD398, offset: 0x77718, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x19F80, symBinAddr: 0x3E8D0, symSize: 0x60 } - - { offsetInCU: 0xD3DA, offset: 0x7775A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19FE0, symBinAddr: 0x3E930, symSize: 0x30 } - - { offsetInCU: 0xD407, offset: 0x77787, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1A010, symBinAddr: 0x3E960, symSize: 0x80 } - - { offsetInCU: 0xD4A5, offset: 0x77825, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x1A090, symBinAddr: 0x3E9E0, symSize: 0x60 } - - { offsetInCU: 0xD52B, offset: 0x778AB, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1A0F0, symBinAddr: 0x3EA40, symSize: 0x50 } - - { offsetInCU: 0xD5AF, offset: 0x7792F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1A190, symBinAddr: 0x3EAE0, symSize: 0xE0 } - - { offsetInCU: 0xD5F9, offset: 0x77979, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1A270, symBinAddr: 0x3EBC0, symSize: 0xC0 } - - { offsetInCU: 0xD626, offset: 0x779A6, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1A330, symBinAddr: 0x3EC80, symSize: 0x180 } - - { offsetInCU: 0xD6DA, offset: 0x77A5A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x1A4B0, symBinAddr: 0x3EE00, symSize: 0x110 } - - { offsetInCU: 0xD86D, offset: 0x77BED, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x1A5C0, symBinAddr: 0x3EF10, symSize: 0x130 } - - { offsetInCU: 0xDA39, offset: 0x77DB9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x1A6F0, symBinAddr: 0x3F040, symSize: 0x180 } - - { offsetInCU: 0xDC0C, offset: 0x77F8C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x1A870, symBinAddr: 0x3F1C0, symSize: 0x1A0 } - - { offsetInCU: 0xDDF1, offset: 0x78171, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x1AA10, symBinAddr: 0x3F360, symSize: 0x110 } - - { offsetInCU: 0xDF94, offset: 0x78314, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x1AB20, symBinAddr: 0x3F470, symSize: 0x110 } - - { offsetInCU: 0xE137, offset: 0x784B7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1AD60, symBinAddr: 0x3F6B0, symSize: 0x110 } - - { offsetInCU: 0xE249, offset: 0x785C9, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1AE70, symBinAddr: 0x3F7C0, symSize: 0x40 } - - { offsetInCU: 0xE296, offset: 0x78616, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1B180, symBinAddr: 0x3FAD0, symSize: 0x180 } - - { offsetInCU: 0xE335, offset: 0x786B5, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1B300, symBinAddr: 0x3FC50, symSize: 0xD0 } - - { offsetInCU: 0xE404, offset: 0x78784, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1B5E0, symBinAddr: 0x3FEF0, symSize: 0x170 } - - { offsetInCU: 0xE515, offset: 0x78895, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x1B750, symBinAddr: 0x40060, symSize: 0xA0 } - - { offsetInCU: 0xE618, offset: 0x78998, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1BA70, symBinAddr: 0x40350, symSize: 0x1B0 } - - { offsetInCU: 0xE76D, offset: 0x78AED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1BC20, symBinAddr: 0x40500, symSize: 0x400 } - - { offsetInCU: 0xEA81, offset: 0x78E01, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1D010, symBinAddr: 0x418F0, symSize: 0x170 } - - { offsetInCU: 0xEB9D, offset: 0x78F1D, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x1D180, symBinAddr: 0x41A60, symSize: 0xA0 } - - { offsetInCU: 0xEF27, offset: 0x792A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1D220, symBinAddr: 0x41B00, symSize: 0x1130 } - - { offsetInCU: 0x102EF, offset: 0x7A66F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E350, symBinAddr: 0x42C30, symSize: 0x1E0 } - - { offsetInCU: 0x1048D, offset: 0x7A80D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E530, symBinAddr: 0x42E10, symSize: 0x1B0 } - - { offsetInCU: 0x10580, offset: 0x7A900, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1E6E0, symBinAddr: 0x42FC0, symSize: 0x90 } - - { offsetInCU: 0x10782, offset: 0x7AB02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1F240, symBinAddr: 0x43B20, symSize: 0x10 } - - { offsetInCU: 0x10796, offset: 0x7AB16, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1F310, symBinAddr: 0x43BF0, symSize: 0x20 } - - { offsetInCU: 0x107AA, offset: 0x7AB2A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1F330, symBinAddr: 0x43C10, symSize: 0x20 } - - { offsetInCU: 0x107BE, offset: 0x7AB3E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1F350, symBinAddr: 0x43C30, symSize: 0x60 } - - { offsetInCU: 0x107D2, offset: 0x7AB52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1F3D0, symBinAddr: 0x43C90, symSize: 0x30 } - - { offsetInCU: 0x107E6, offset: 0x7AB66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1F400, symBinAddr: 0x43CC0, symSize: 0x180 } - - { offsetInCU: 0x107FA, offset: 0x7AB7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1F580, symBinAddr: 0x43E40, symSize: 0x2D0 } - - { offsetInCU: 0x1080E, offset: 0x7AB8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1F850, symBinAddr: 0x44110, symSize: 0x70 } - - { offsetInCU: 0x10822, offset: 0x7ABA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1F8C0, symBinAddr: 0x44180, symSize: 0x30 } - - { offsetInCU: 0x10836, offset: 0x7ABB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1F8F0, symBinAddr: 0x441B0, symSize: 0xD0 } - - { offsetInCU: 0x1084A, offset: 0x7ABCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1F9C0, symBinAddr: 0x44280, symSize: 0xB0 } - - { offsetInCU: 0x1087F, offset: 0x7ABFF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x200E0, symBinAddr: 0x44330, symSize: 0xC0 } - - { offsetInCU: 0x108F5, offset: 0x7AC75, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x201A0, symBinAddr: 0x443F0, symSize: 0x80 } - - { offsetInCU: 0x10922, offset: 0x7ACA2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x20220, symBinAddr: 0x44470, symSize: 0x80 } - - { offsetInCU: 0x10998, offset: 0x7AD18, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x202A0, symBinAddr: 0x444F0, symSize: 0x70 } - - { offsetInCU: 0x10AB1, offset: 0x7AE31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x20310, symBinAddr: 0x44560, symSize: 0x800 } - - { offsetInCU: 0x10F6A, offset: 0x7B2EA, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x20B10, symBinAddr: 0x44D60, symSize: 0x40 } - - { offsetInCU: 0x10F7E, offset: 0x7B2FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x20C00, symBinAddr: 0x44DD0, symSize: 0x10 } - - { offsetInCU: 0x10F92, offset: 0x7B312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x20C10, symBinAddr: 0x44DE0, symSize: 0x30 } - - { offsetInCU: 0x10FA6, offset: 0x7B326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x20C40, symBinAddr: 0x44E10, symSize: 0x30 } - - { offsetInCU: 0x10FBA, offset: 0x7B33A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x20CE0, symBinAddr: 0x44E60, symSize: 0x20 } - - { offsetInCU: 0x10FCE, offset: 0x7B34E, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x20D20, symBinAddr: 0x44E80, symSize: 0x30 } - - { offsetInCU: 0x10FE2, offset: 0x7B362, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x20D50, symBinAddr: 0x44EB0, symSize: 0x30 } - - { offsetInCU: 0x10FF6, offset: 0x7B376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x20DE0, symBinAddr: 0x44F40, symSize: 0x30 } - - { offsetInCU: 0x1102B, offset: 0x7B3AB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x20EE0, symBinAddr: 0x45040, symSize: 0x40 } - - { offsetInCU: 0x1104A, offset: 0x7B3CA, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x20F20, symBinAddr: 0x45080, symSize: 0x60 } - - { offsetInCU: 0x1108D, offset: 0x7B40D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x20F80, symBinAddr: 0x450E0, symSize: 0x80 } - - { offsetInCU: 0x11122, offset: 0x7B4A2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x21000, symBinAddr: 0x45160, symSize: 0x120 } - - { offsetInCU: 0x1120A, offset: 0x7B58A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x21170, symBinAddr: 0x452D0, symSize: 0x40 } - - { offsetInCU: 0x1121E, offset: 0x7B59E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x211B0, symBinAddr: 0x45310, symSize: 0x50 } - - { offsetInCU: 0x11232, offset: 0x7B5B2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x212C0, symBinAddr: 0x45420, symSize: 0x40 } - - { offsetInCU: 0x11246, offset: 0x7B5C6, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x21360, symBinAddr: 0x454C0, symSize: 0x10 } - - { offsetInCU: 0x1125A, offset: 0x7B5DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x21370, symBinAddr: 0x454D0, symSize: 0x20 } - - { offsetInCU: 0x1126E, offset: 0x7B5EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x21390, symBinAddr: 0x454F0, symSize: 0x30 } - - { offsetInCU: 0x11282, offset: 0x7B602, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x21400, symBinAddr: 0x45560, symSize: 0x40 } - - { offsetInCU: 0x11338, offset: 0x7B6B8, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x870, symBinAddr: 0x25210, symSize: 0x80 } - - { offsetInCU: 0x11708, offset: 0x7BA88, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xC450, symBinAddr: 0x30DF0, symSize: 0x4C0 } - - { offsetInCU: 0x119EA, offset: 0x7BD6A, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x128D0, symBinAddr: 0x37270, symSize: 0x1B0 } - - { offsetInCU: 0x11C17, offset: 0x7BF97, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x189E0, symBinAddr: 0x3D380, symSize: 0x70 } - - { offsetInCU: 0x11D84, offset: 0x7C104, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x1B3D0, symBinAddr: 0x3FD20, symSize: 0xE0 } - - { offsetInCU: 0x11EB1, offset: 0x7C231, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x1B4F0, symBinAddr: 0x3FE00, symSize: 0xF0 } - - { offsetInCU: 0x11FB2, offset: 0x7C332, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1B840, symBinAddr: 0x40120, symSize: 0x230 } - - { offsetInCU: 0x12080, offset: 0x7C400, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1C020, symBinAddr: 0x40900, symSize: 0x1F0 } - - { offsetInCU: 0x1233C, offset: 0x7C6BC, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1E990, symBinAddr: 0x43270, symSize: 0x260 } - - { offsetInCU: 0x12422, offset: 0x7C7A2, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1EBF0, symBinAddr: 0x434D0, symSize: 0xF0 } - - { offsetInCU: 0x12555, offset: 0x7C8D5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1ECE0, symBinAddr: 0x435C0, symSize: 0xF0 } - - { offsetInCU: 0x1269C, offset: 0x7CA1C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1EDD0, symBinAddr: 0x436B0, symSize: 0xE0 } - - { offsetInCU: 0x127D7, offset: 0x7CB57, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1EEB0, symBinAddr: 0x43790, symSize: 0xF0 } - - { offsetInCU: 0x12904, offset: 0x7CC84, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1EFA0, symBinAddr: 0x43880, symSize: 0xE0 } - - { offsetInCU: 0x12A4B, offset: 0x7CDCB, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1F160, symBinAddr: 0x43A40, symSize: 0xE0 } - - { offsetInCU: 0x12BAA, offset: 0x7CF2A, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x20E10, symBinAddr: 0x44F70, symSize: 0xD0 } - - { offsetInCU: 0x12E50, offset: 0x7D1D0, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x9080, symBinAddr: 0x2DA20, symSize: 0x120 } - - { offsetInCU: 0x27, offset: 0x7D78A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x455D0, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7D7A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x455D0, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7D7B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x45600, symSize: 0x140 } - - { offsetInCU: 0x67, offset: 0x7D7CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x45740, symSize: 0x440 } - - { offsetInCU: 0x7B, offset: 0x7D7DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x45B80, symSize: 0x590 } - - { offsetInCU: 0x8F, offset: 0x7D7F2, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x46110, symSize: 0x10 } - - { offsetInCU: 0xA3, offset: 0x7D806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x46120, symSize: 0x440 } - - { offsetInCU: 0xB7, offset: 0x7D81A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x46560, symSize: 0x40 } - - { offsetInCU: 0xCB, offset: 0x7D82E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x465A0, symSize: 0x110 } - - { offsetInCU: 0xDF, offset: 0x7D842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x466B0, symSize: 0xA } - - { offsetInCU: 0x23B, offset: 0x7DB5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x480, symBinAddr: 0x46B30, symSize: 0x2D0 } - - { offsetInCU: 0x2F0, offset: 0x7DC13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x750, symBinAddr: 0x46E00, symSize: 0xE40 } - - { offsetInCU: 0x762, offset: 0x7E085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x1590, symBinAddr: 0x47C40, symSize: 0x690 } - - { offsetInCU: 0x982, offset: 0x7E2A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1C20, symBinAddr: 0x482D0, symSize: 0xB00 } - - { offsetInCU: 0xD14, offset: 0x7E637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x2750, symBinAddr: 0x48E00, symSize: 0x28F0 } - - { offsetInCU: 0x1EF3, offset: 0x7F816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x109F0, symBinAddr: 0x570A0, symSize: 0x7F0 } - - { offsetInCU: 0x2281, offset: 0x7FBA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x5040, symBinAddr: 0x4B6F0, symSize: 0x1620 } - - { offsetInCU: 0x2DF3, offset: 0x80716, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x6660, symBinAddr: 0x4CD10, symSize: 0xE80 } - - { offsetInCU: 0x3649, offset: 0x80F6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x74E0, symBinAddr: 0x4DB90, symSize: 0x430 } - - { offsetInCU: 0x3760, offset: 0x81083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8330, symBinAddr: 0x4E9E0, symSize: 0x210 } - - { offsetInCU: 0x3A1F, offset: 0x81342, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8540, symBinAddr: 0x4EBF0, symSize: 0xA50 } - - { offsetInCU: 0x4168, offset: 0x81A8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8F90, symBinAddr: 0x4F640, symSize: 0x2F0 } - - { offsetInCU: 0x42A0, offset: 0x81BC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9280, symBinAddr: 0x4F930, symSize: 0x710 } - - { offsetInCU: 0x4693, offset: 0x81FB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x9990, symBinAddr: 0x50040, symSize: 0x760 } - - { offsetInCU: 0x496D, offset: 0x82290, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA0F0, symBinAddr: 0x507A0, symSize: 0x260 } - - { offsetInCU: 0x4A41, offset: 0x82364, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA350, symBinAddr: 0x50A00, symSize: 0x270 } - - { offsetInCU: 0x4ADA, offset: 0x823FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0xA5C0, symBinAddr: 0x50C70, symSize: 0xC0 } - - { offsetInCU: 0x4B07, offset: 0x8242A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0xA680, symBinAddr: 0x50D30, symSize: 0x20 } - - { offsetInCU: 0x4B43, offset: 0x82466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xF3F0, symBinAddr: 0x55AA0, symSize: 0x8F0 } - - { offsetInCU: 0x4E8E, offset: 0x827B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xFCE0, symBinAddr: 0x56390, symSize: 0xA60 } - - { offsetInCU: 0x517D, offset: 0x82AA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0x10740, symBinAddr: 0x56DF0, symSize: 0x240 } - - { offsetInCU: 0x5228, offset: 0x82B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x111E0, symBinAddr: 0x57890, symSize: 0x960 } - - { offsetInCU: 0x5533, offset: 0x82E56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11B40, symBinAddr: 0x581F0, symSize: 0xBC0 } - - { offsetInCU: 0x5822, offset: 0x83145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x12700, symBinAddr: 0x58DB0, symSize: 0x2C0 } - - { offsetInCU: 0x58CD, offset: 0x831F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x129C0, symBinAddr: 0x59070, symSize: 0x210 } - - { offsetInCU: 0x5D83, offset: 0x836A6, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2720, symBinAddr: 0x48DD0, symSize: 0x30 } - - { offsetInCU: 0x609A, offset: 0x839BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0xA6A0, symBinAddr: 0x50D50, symSize: 0x20 } - - { offsetInCU: 0x60F3, offset: 0x83A16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xA6C0, symBinAddr: 0x50D70, symSize: 0x90 } - - { offsetInCU: 0x61A1, offset: 0x83AC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0xA750, symBinAddr: 0x50E00, symSize: 0x15D0 } - - { offsetInCU: 0x685C, offset: 0x8417F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xBD20, symBinAddr: 0x523D0, symSize: 0x40 } - - { offsetInCU: 0x68A0, offset: 0x841C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xBD60, symBinAddr: 0x52410, symSize: 0x50 } - - { offsetInCU: 0x68CB, offset: 0x841EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xBDB0, symBinAddr: 0x52460, symSize: 0x50 } - - { offsetInCU: 0x690D, offset: 0x84230, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBE00, symBinAddr: 0x524B0, symSize: 0x60 } - - { offsetInCU: 0x6940, offset: 0x84263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xBE60, symBinAddr: 0x52510, symSize: 0x10 } - - { offsetInCU: 0x696B, offset: 0x8428E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBE70, symBinAddr: 0x52520, symSize: 0x70 } - - { offsetInCU: 0x69AD, offset: 0x842D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xBEE0, symBinAddr: 0x52590, symSize: 0x90 } - - { offsetInCU: 0x69EF, offset: 0x84312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xBF70, symBinAddr: 0x52620, symSize: 0x70 } - - { offsetInCU: 0x6A22, offset: 0x84345, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xBFE0, symBinAddr: 0x52690, symSize: 0x10 } - - { offsetInCU: 0x6A3E, offset: 0x84361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xBFF0, symBinAddr: 0x526A0, symSize: 0x10 } - - { offsetInCU: 0x6A69, offset: 0x8438C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xC000, symBinAddr: 0x526B0, symSize: 0x70 } - - { offsetInCU: 0x6A9C, offset: 0x843BF, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xC070, symBinAddr: 0x52720, symSize: 0x10 } - - { offsetInCU: 0x6ABB, offset: 0x843DE, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xC080, symBinAddr: 0x52730, symSize: 0x10 } - - { offsetInCU: 0x6AE8, offset: 0x8440B, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xC090, symBinAddr: 0x52740, symSize: 0xC0 } - - { offsetInCU: 0x6B70, offset: 0x84493, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xC150, symBinAddr: 0x52800, symSize: 0xC0 } - - { offsetInCU: 0x6C28, offset: 0x8454B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xC2E0, symBinAddr: 0x52990, symSize: 0x260 } - - { offsetInCU: 0x6CA0, offset: 0x845C3, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xC540, symBinAddr: 0x52BF0, symSize: 0x220 } - - { offsetInCU: 0x6D50, offset: 0x84673, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xC760, symBinAddr: 0x52E10, symSize: 0x3C0 } - - { offsetInCU: 0x6E5C, offset: 0x8477F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xCB20, symBinAddr: 0x531D0, symSize: 0x3B0 } - - { offsetInCU: 0x6F92, offset: 0x848B5, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xCED0, symBinAddr: 0x53580, symSize: 0x220 } - - { offsetInCU: 0x701B, offset: 0x8493E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xD0F0, symBinAddr: 0x537A0, symSize: 0x220 } - - { offsetInCU: 0x7099, offset: 0x849BC, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xD310, symBinAddr: 0x539C0, symSize: 0x40 } - - { offsetInCU: 0x7161, offset: 0x84A84, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xD350, symBinAddr: 0x53A00, symSize: 0xA0 } - - { offsetInCU: 0x721A, offset: 0x84B3D, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xD3F0, symBinAddr: 0x53AA0, symSize: 0x40 } - - { offsetInCU: 0x7257, offset: 0x84B7A, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xD430, symBinAddr: 0x53AE0, symSize: 0x20 } - - { offsetInCU: 0x7280, offset: 0x84BA3, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xD450, symBinAddr: 0x53B00, symSize: 0x30 } - - { offsetInCU: 0x72A9, offset: 0x84BCC, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xD480, symBinAddr: 0x53B30, symSize: 0x20 } - - { offsetInCU: 0x730D, offset: 0x84C30, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xD4A0, symBinAddr: 0x53B50, symSize: 0x120 } - - { offsetInCU: 0x73B2, offset: 0x84CD5, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xD6E0, symBinAddr: 0x53D90, symSize: 0x2C0 } - - { offsetInCU: 0x7429, offset: 0x84D4C, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xDC50, symBinAddr: 0x54300, symSize: 0x80 } - - { offsetInCU: 0x7441, offset: 0x84D64, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xDCD0, symBinAddr: 0x54380, symSize: 0x60 } - - { offsetInCU: 0x7496, offset: 0x84DB9, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xDD30, symBinAddr: 0x543E0, symSize: 0x170 } - - { offsetInCU: 0x7504, offset: 0x84E27, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xDEA0, symBinAddr: 0x54550, symSize: 0x100 } - - { offsetInCU: 0x7529, offset: 0x84E4C, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xDFA0, symBinAddr: 0x54650, symSize: 0x2D0 } - - { offsetInCU: 0x7562, offset: 0x84E85, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xE270, symBinAddr: 0x54920, symSize: 0xA0 } - - { offsetInCU: 0x757A, offset: 0x84E9D, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xE310, symBinAddr: 0x549C0, symSize: 0x20 } - - { offsetInCU: 0x7592, offset: 0x84EB5, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE330, symBinAddr: 0x549E0, symSize: 0x20 } - - { offsetInCU: 0x75AA, offset: 0x84ECD, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE350, symBinAddr: 0x54A00, symSize: 0x20 } - - { offsetInCU: 0x761A, offset: 0x84F3D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xE370, symBinAddr: 0x54A20, symSize: 0x110 } - - { offsetInCU: 0x7793, offset: 0x850B6, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE480, symBinAddr: 0x54B30, symSize: 0x1A0 } - - { offsetInCU: 0x7938, offset: 0x8525B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE620, symBinAddr: 0x54CD0, symSize: 0x130 } - - { offsetInCU: 0x7A38, offset: 0x8535B, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xE750, symBinAddr: 0x54E00, symSize: 0x100 } - - { offsetInCU: 0x7C84, offset: 0x855A7, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xE850, symBinAddr: 0x54F00, symSize: 0x440 } - - { offsetInCU: 0x82B1, offset: 0x85BD4, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xEC90, symBinAddr: 0x55340, symSize: 0x2D0 } - - { offsetInCU: 0x84B2, offset: 0x85DD5, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xEF60, symBinAddr: 0x55610, symSize: 0x160 } - - { offsetInCU: 0x8642, offset: 0x85F65, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xF0C0, symBinAddr: 0x55770, symSize: 0x200 } - - { offsetInCU: 0x86CD, offset: 0x85FF0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xF2C0, symBinAddr: 0x55970, symSize: 0x20 } - - { offsetInCU: 0x8706, offset: 0x86029, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xF2E0, symBinAddr: 0x55990, symSize: 0x110 } - - { offsetInCU: 0x87BC, offset: 0x860DF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x10980, symBinAddr: 0x57030, symSize: 0x70 } - - { offsetInCU: 0x8868, offset: 0x8618B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x12BD0, symBinAddr: 0x59280, symSize: 0xB50 } - - { offsetInCU: 0x8DE3, offset: 0x86706, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x13720, symBinAddr: 0x59DD0, symSize: 0x130 } - - { offsetInCU: 0x8F4F, offset: 0x86872, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13850, symBinAddr: 0x59F00, symSize: 0x32B0 } - - { offsetInCU: 0x9615, offset: 0x86F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x16B00, symBinAddr: 0x5D1B0, symSize: 0x130 } - - { offsetInCU: 0x9726, offset: 0x87049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x16C30, symBinAddr: 0x5D2E0, symSize: 0x90 } - - { offsetInCU: 0x97A9, offset: 0x870CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x16CC0, symBinAddr: 0x5D370, symSize: 0x7E0 } - - { offsetInCU: 0x9B59, offset: 0x8747C, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x17510, symBinAddr: 0x5DB50, symSize: 0x20 } - - { offsetInCU: 0x9B6D, offset: 0x87490, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x17530, symBinAddr: 0x5DB70, symSize: 0x20 } - - { offsetInCU: 0x9B81, offset: 0x874A4, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x17580, symBinAddr: 0x5DB90, symSize: 0x40 } - - { offsetInCU: 0x9B95, offset: 0x874B8, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x17640, symBinAddr: 0x5DBD0, symSize: 0x30 } - - { offsetInCU: 0x9BA9, offset: 0x874CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x17670, symBinAddr: 0x5DC00, symSize: 0x30 } - - { offsetInCU: 0x9BBD, offset: 0x874E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOf', symObjAddr: 0x176A0, symBinAddr: 0x5DC30, symSize: 0x40 } - - { offsetInCU: 0x9BD1, offset: 0x874F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x17740, symBinAddr: 0x5DCA0, symSize: 0x10 } - - { offsetInCU: 0x9BE5, offset: 0x87508, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x17750, symBinAddr: 0x5DCB0, symSize: 0x20 } - - { offsetInCU: 0x9BF9, offset: 0x8751C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x17770, symBinAddr: 0x5DCD0, symSize: 0x10 } - - { offsetInCU: 0x9C0D, offset: 0x87530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x17800, symBinAddr: 0x5DD20, symSize: 0x40 } - - { offsetInCU: 0x9C65, offset: 0x87588, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x178C0, symBinAddr: 0x5DDE0, symSize: 0x20 } - - { offsetInCU: 0x9CA1, offset: 0x875C4, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x17920, symBinAddr: 0x5DE00, symSize: 0x30 } - - { offsetInCU: 0x9CD0, offset: 0x875F3, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x466C0, symSize: 0x110 } - - { offsetInCU: 0x9D06, offset: 0x87629, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x110, symBinAddr: 0x467D0, symSize: 0x50 } - - { offsetInCU: 0x9DE6, offset: 0x87709, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x160, symBinAddr: 0x46820, symSize: 0x90 } - - { offsetInCU: 0x9E09, offset: 0x8772C, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x1F0, symBinAddr: 0x468B0, symSize: 0xA0 } - - { offsetInCU: 0x9F1A, offset: 0x8783D, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x290, symBinAddr: 0x46950, symSize: 0x90 } - - { offsetInCU: 0xA014, offset: 0x87937, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x320, symBinAddr: 0x469E0, symSize: 0x60 } - - { offsetInCU: 0xA070, offset: 0x87993, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x380, symBinAddr: 0x46A40, symSize: 0x10 } - - { offsetInCU: 0xA098, offset: 0x879BB, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3A0, symBinAddr: 0x46A50, symSize: 0xE0 } - - { offsetInCU: 0x62, offset: 0x883D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x5DF40, symSize: 0x20 } - - { offsetInCU: 0x8B, offset: 0x883FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1000, symBinAddr: 0x5EF40, symSize: 0x10 } - - { offsetInCU: 0xB6, offset: 0x88426, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1010, symBinAddr: 0x5EF50, symSize: 0x20 } - - { offsetInCU: 0xE7, offset: 0x88457, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1030, symBinAddr: 0x5EF70, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x88473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1040, symBinAddr: 0x5EF80, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x8848F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B80, symBinAddr: 0x64A00, symSize: 0xE0 } - - { offsetInCU: 0x165, offset: 0x884D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x5DF60, symSize: 0x190 } - - { offsetInCU: 0x1BA, offset: 0x8852A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1090, symBinAddr: 0x5EFD0, symSize: 0x50 } - - { offsetInCU: 0x1F1, offset: 0x88561, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E0, symBinAddr: 0x5F020, symSize: 0x50 } - - { offsetInCU: 0x214, offset: 0x88584, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6C60, symBinAddr: 0x64AE0, symSize: 0x13C0 } - - { offsetInCU: 0x265, offset: 0x885D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x1B0, symBinAddr: 0x5E0F0, symSize: 0x20 } - - { offsetInCU: 0x2B2, offset: 0x88622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1130, symBinAddr: 0x5F070, symSize: 0x10 } - - { offsetInCU: 0x310, offset: 0x88680, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1150, symBinAddr: 0x5F090, symSize: 0x20 } - - { offsetInCU: 0x38A, offset: 0x886FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1180, symBinAddr: 0x5F0C0, symSize: 0x10 } - - { offsetInCU: 0x3B5, offset: 0x88725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1190, symBinAddr: 0x5F0D0, symSize: 0x20 } - - { offsetInCU: 0x3E6, offset: 0x88756, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x11B0, symBinAddr: 0x5F0F0, symSize: 0x10 } - - { offsetInCU: 0x402, offset: 0x88772, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11C0, symBinAddr: 0x5F100, symSize: 0x10 } - - { offsetInCU: 0x41E, offset: 0x8878E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8A90, symBinAddr: 0x65F30, symSize: 0x190 } - - { offsetInCU: 0x464, offset: 0x887D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D0, symBinAddr: 0x5E110, symSize: 0x2B0 } - - { offsetInCU: 0x4B9, offset: 0x88829, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1210, symBinAddr: 0x5F150, symSize: 0x50 } - - { offsetInCU: 0x4F0, offset: 0x88860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1260, symBinAddr: 0x5F1A0, symSize: 0x50 } - - { offsetInCU: 0x513, offset: 0x88883, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8C20, symBinAddr: 0x660C0, symSize: 0x1180 } - - { offsetInCU: 0x55D, offset: 0x888CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x480, symBinAddr: 0x5E3C0, symSize: 0x20 } - - { offsetInCU: 0x594, offset: 0x88904, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x4A0, symBinAddr: 0x5E3E0, symSize: 0x20 } - - { offsetInCU: 0x612, offset: 0x88982, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x12F0, symBinAddr: 0x5F230, symSize: 0x70 } - - { offsetInCU: 0x678, offset: 0x889E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1360, symBinAddr: 0x5F2A0, symSize: 0x30 } - - { offsetInCU: 0x694, offset: 0x88A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5F2D0, symSize: 0x10 } - - { offsetInCU: 0x6CA, offset: 0x88A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A0, symBinAddr: 0x5F2E0, symSize: 0x60 } - - { offsetInCU: 0x74F, offset: 0x88ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1400, symBinAddr: 0x5F340, symSize: 0x10 } - - { offsetInCU: 0x76B, offset: 0x88ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1410, symBinAddr: 0x5F350, symSize: 0x10 } - - { offsetInCU: 0x788, offset: 0x88AF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x4C0, symBinAddr: 0x5E400, symSize: 0x190 } - - { offsetInCU: 0x7DD, offset: 0x88B4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1460, symBinAddr: 0x5F3A0, symSize: 0x50 } - - { offsetInCU: 0x814, offset: 0x88B84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x14B0, symBinAddr: 0x5F3F0, symSize: 0x50 } - - { offsetInCU: 0x837, offset: 0x88BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9EF0, symBinAddr: 0x67390, symSize: 0x210 } - - { offsetInCU: 0x887, offset: 0x88BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x650, symBinAddr: 0x5E590, symSize: 0x20 } - - { offsetInCU: 0x8B0, offset: 0x88C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1500, symBinAddr: 0x5F440, symSize: 0x10 } - - { offsetInCU: 0x8DB, offset: 0x88C4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1510, symBinAddr: 0x5F450, symSize: 0x20 } - - { offsetInCU: 0x90C, offset: 0x88C7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1530, symBinAddr: 0x5F470, symSize: 0x10 } - - { offsetInCU: 0x928, offset: 0x88C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1540, symBinAddr: 0x5F480, symSize: 0x10 } - - { offsetInCU: 0x944, offset: 0x88CB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA100, symBinAddr: 0x675A0, symSize: 0x240 } - - { offsetInCU: 0x98A, offset: 0x88CFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x670, symBinAddr: 0x5E5B0, symSize: 0x2A0 } - - { offsetInCU: 0x9DF, offset: 0x88D4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1590, symBinAddr: 0x5F4D0, symSize: 0x50 } - - { offsetInCU: 0xA16, offset: 0x88D86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15E0, symBinAddr: 0x5F520, symSize: 0x50 } - - { offsetInCU: 0xA39, offset: 0x88DA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA340, symBinAddr: 0x677E0, symSize: 0x5E0 } - - { offsetInCU: 0xA89, offset: 0x88DF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x910, symBinAddr: 0x5E850, symSize: 0x30 } - - { offsetInCU: 0xAD8, offset: 0x88E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1630, symBinAddr: 0x5F570, symSize: 0x10 } - - { offsetInCU: 0xB61, offset: 0x88ED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1640, symBinAddr: 0x5F580, symSize: 0x40 } - - { offsetInCU: 0xC45, offset: 0x88FB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1680, symBinAddr: 0x5F5C0, symSize: 0x20 } - - { offsetInCU: 0xCB7, offset: 0x89027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x5F620, symSize: 0x10 } - - { offsetInCU: 0xCE2, offset: 0x89052, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x5F630, symSize: 0x20 } - - { offsetInCU: 0xD13, offset: 0x89083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1710, symBinAddr: 0x5F650, symSize: 0x10 } - - { offsetInCU: 0xD2F, offset: 0x8909F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1720, symBinAddr: 0x5F660, symSize: 0x10 } - - { offsetInCU: 0xD4B, offset: 0x890BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA920, symBinAddr: 0x67DC0, symSize: 0xA0 } - - { offsetInCU: 0xD91, offset: 0x89101, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x940, symBinAddr: 0x5E880, symSize: 0x110 } - - { offsetInCU: 0xDE6, offset: 0x89156, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5F6B0, symSize: 0x30 } - - { offsetInCU: 0xE1D, offset: 0x8918D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x5F6E0, symSize: 0x20 } - - { offsetInCU: 0xE40, offset: 0x891B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA9C0, symBinAddr: 0x67E60, symSize: 0x180 } - - { offsetInCU: 0xE91, offset: 0x89201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0xA50, symBinAddr: 0x5E990, symSize: 0x20 } - - { offsetInCU: 0xEBA, offset: 0x8922A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x5F780, symSize: 0x10 } - - { offsetInCU: 0xEE5, offset: 0x89255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x5F790, symSize: 0x20 } - - { offsetInCU: 0xF16, offset: 0x89286, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x5F7B0, symSize: 0x10 } - - { offsetInCU: 0xF32, offset: 0x892A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x5F7C0, symSize: 0x10 } - - { offsetInCU: 0xF4E, offset: 0x892BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAB40, symBinAddr: 0x67FE0, symSize: 0x1E0 } - - { offsetInCU: 0xF94, offset: 0x89304, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA70, symBinAddr: 0x5E9B0, symSize: 0x250 } - - { offsetInCU: 0xFE9, offset: 0x89359, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x5F810, symSize: 0x50 } - - { offsetInCU: 0x1020, offset: 0x89390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1920, symBinAddr: 0x5F860, symSize: 0x50 } - - { offsetInCU: 0x1043, offset: 0x893B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAD20, symBinAddr: 0x681C0, symSize: 0x840 } - - { offsetInCU: 0x108D, offset: 0x893FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xCC0, symBinAddr: 0x5EC00, symSize: 0x20 } - - { offsetInCU: 0x10C4, offset: 0x89434, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCE0, symBinAddr: 0x5EC20, symSize: 0x20 } - - { offsetInCU: 0x1137, offset: 0x894A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5FA00, symSize: 0x40 } - - { offsetInCU: 0x117D, offset: 0x894ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5FA40, symSize: 0x30 } - - { offsetInCU: 0x1191, offset: 0x89501, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1B30, symBinAddr: 0x5FA70, symSize: 0x10 } - - { offsetInCU: 0x11C7, offset: 0x89537, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5FA80, symSize: 0x30 } - - { offsetInCU: 0x122C, offset: 0x8959C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1B70, symBinAddr: 0x5FAB0, symSize: 0x10 } - - { offsetInCU: 0x1248, offset: 0x895B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B80, symBinAddr: 0x5FAC0, symSize: 0x10 } - - { offsetInCU: 0x1264, offset: 0x895D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xB5F0, symBinAddr: 0x68A90, symSize: 0x50 } - - { offsetInCU: 0x1290, offset: 0x89600, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x5EC40, symSize: 0x2E0 } - - { offsetInCU: 0x12E5, offset: 0x89655, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x5FB10, symSize: 0x50 } - - { offsetInCU: 0x131C, offset: 0x8968C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C20, symBinAddr: 0x5FB60, symSize: 0x50 } - - { offsetInCU: 0x133F, offset: 0x896AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB640, symBinAddr: 0x68AE0, symSize: 0x950 } - - { offsetInCU: 0x13B4, offset: 0x89724, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1C70, symBinAddr: 0x5FBB0, symSize: 0x1D0 } - - { offsetInCU: 0x1410, offset: 0x89780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x1E40, symBinAddr: 0x5FD80, symSize: 0x20 } - - { offsetInCU: 0x1455, offset: 0x897C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6930, symBinAddr: 0x64850, symSize: 0x50 } - - { offsetInCU: 0x14C0, offset: 0x89830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6980, symBinAddr: 0x648A0, symSize: 0x80 } - - { offsetInCU: 0x1514, offset: 0x89884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6A00, symBinAddr: 0x64920, symSize: 0x10 } - - { offsetInCU: 0x154A, offset: 0x898BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6A10, symBinAddr: 0x64930, symSize: 0x20 } - - { offsetInCU: 0x15CB, offset: 0x8993B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6A60, symBinAddr: 0x64980, symSize: 0x10 } - - { offsetInCU: 0x15E8, offset: 0x89958, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x1E60, symBinAddr: 0x5FDA0, symSize: 0x20 } - - { offsetInCU: 0x15FC, offset: 0x8996C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x1E80, symBinAddr: 0x5FDC0, symSize: 0x140 } - - { offsetInCU: 0x1610, offset: 0x89980, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x1FC0, symBinAddr: 0x5FF00, symSize: 0x500 } - - { offsetInCU: 0x1624, offset: 0x89994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x24C0, symBinAddr: 0x60400, symSize: 0xED0 } - - { offsetInCU: 0x163F, offset: 0x899AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x3390, symBinAddr: 0x612D0, symSize: 0x30 } - - { offsetInCU: 0x1668, offset: 0x899D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x33C0, symBinAddr: 0x61300, symSize: 0x20 } - - { offsetInCU: 0x167C, offset: 0x899EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x33E0, symBinAddr: 0x61320, symSize: 0x20 } - - { offsetInCU: 0x1690, offset: 0x89A00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x3400, symBinAddr: 0x61340, symSize: 0x20 } - - { offsetInCU: 0x16A4, offset: 0x89A14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x3420, symBinAddr: 0x61360, symSize: 0x20 } - - { offsetInCU: 0x16B8, offset: 0x89A28, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3440, symBinAddr: 0x61380, symSize: 0x10 } - - { offsetInCU: 0x16CC, offset: 0x89A3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x3450, symBinAddr: 0x61390, symSize: 0x580 } - - { offsetInCU: 0x16E0, offset: 0x89A50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x39D0, symBinAddr: 0x61910, symSize: 0x50 } - - { offsetInCU: 0x16F4, offset: 0x89A64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3A20, symBinAddr: 0x61960, symSize: 0x140 } - - { offsetInCU: 0x1708, offset: 0x89A78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x3B60, symBinAddr: 0x61AA0, symSize: 0x10 } - - { offsetInCU: 0x171C, offset: 0x89A8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3B70, symBinAddr: 0x61AB0, symSize: 0x30 } - - { offsetInCU: 0x1730, offset: 0x89AA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x3BA0, symBinAddr: 0x61AE0, symSize: 0x120 } - - { offsetInCU: 0x1744, offset: 0x89AB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x3CC0, symBinAddr: 0x61C00, symSize: 0x480 } - - { offsetInCU: 0x1758, offset: 0x89AC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x4140, symBinAddr: 0x62080, symSize: 0x9D0 } - - { offsetInCU: 0x176C, offset: 0x89ADC, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4B10, symBinAddr: 0x62A50, symSize: 0x10 } - - { offsetInCU: 0x1780, offset: 0x89AF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4B20, symBinAddr: 0x62A60, symSize: 0x500 } - - { offsetInCU: 0x1794, offset: 0x89B04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x5020, symBinAddr: 0x62F60, symSize: 0x50 } - - { offsetInCU: 0x17A8, offset: 0x89B18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x5070, symBinAddr: 0x62FB0, symSize: 0x130 } - - { offsetInCU: 0x17BC, offset: 0x89B2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x51A0, symBinAddr: 0x630E0, symSize: 0x10 } - - { offsetInCU: 0x17D0, offset: 0x89B40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x51B0, symBinAddr: 0x630F0, symSize: 0xC0 } - - { offsetInCU: 0x17E4, offset: 0x89B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x5270, symBinAddr: 0x631B0, symSize: 0x240 } - - { offsetInCU: 0x17F8, offset: 0x89B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x54B0, symBinAddr: 0x633F0, symSize: 0x450 } - - { offsetInCU: 0x180C, offset: 0x89B7C, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5900, symBinAddr: 0x63840, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x89B90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x5910, symBinAddr: 0x63850, symSize: 0x250 } - - { offsetInCU: 0x1834, offset: 0x89BA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x5B60, symBinAddr: 0x63AA0, symSize: 0x50 } - - { offsetInCU: 0x1848, offset: 0x89BB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x5BB0, symBinAddr: 0x63AF0, symSize: 0xA0 } - - { offsetInCU: 0x185C, offset: 0x89BCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x5C50, symBinAddr: 0x63B90, symSize: 0x10 } - - { offsetInCU: 0x1870, offset: 0x89BE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x5C60, symBinAddr: 0x63BA0, symSize: 0x70 } - - { offsetInCU: 0x1884, offset: 0x89BF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x5CD0, symBinAddr: 0x63C10, symSize: 0x150 } - - { offsetInCU: 0x1898, offset: 0x89C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x5E20, symBinAddr: 0x63D60, symSize: 0x190 } - - { offsetInCU: 0x18AC, offset: 0x89C1C, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5FB0, symBinAddr: 0x63EF0, symSize: 0x10 } - - { offsetInCU: 0x18C0, offset: 0x89C30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5FC0, symBinAddr: 0x63F00, symSize: 0x130 } - - { offsetInCU: 0x18D4, offset: 0x89C44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x60F0, symBinAddr: 0x64030, symSize: 0x50 } - - { offsetInCU: 0x18E8, offset: 0x89C58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x6140, symBinAddr: 0x64080, symSize: 0x80 } - - { offsetInCU: 0x18FC, offset: 0x89C6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x61C0, symBinAddr: 0x64100, symSize: 0x10 } - - { offsetInCU: 0x1910, offset: 0x89C80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x61D0, symBinAddr: 0x64110, symSize: 0x50 } - - { offsetInCU: 0x1924, offset: 0x89C94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x6220, symBinAddr: 0x64160, symSize: 0x120 } - - { offsetInCU: 0x1938, offset: 0x89CA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x6340, symBinAddr: 0x64280, symSize: 0x1C0 } - - { offsetInCU: 0x194C, offset: 0x89CBC, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6500, symBinAddr: 0x64440, symSize: 0x10 } - - { offsetInCU: 0x1960, offset: 0x89CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x6510, symBinAddr: 0x64450, symSize: 0x150 } - - { offsetInCU: 0x1974, offset: 0x89CE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x6660, symBinAddr: 0x645A0, symSize: 0x50 } - - { offsetInCU: 0x1988, offset: 0x89CF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x66B0, symBinAddr: 0x645F0, symSize: 0x80 } - - { offsetInCU: 0x199C, offset: 0x89D0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x6730, symBinAddr: 0x64670, symSize: 0x10 } - - { offsetInCU: 0x19B0, offset: 0x89D20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x6740, symBinAddr: 0x64680, symSize: 0x30 } - - { offsetInCU: 0x19C4, offset: 0x89D34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x6770, symBinAddr: 0x646B0, symSize: 0x40 } - - { offsetInCU: 0x19D8, offset: 0x89D48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x67B0, symBinAddr: 0x646F0, symSize: 0x60 } - - { offsetInCU: 0x19EC, offset: 0x89D5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x6830, symBinAddr: 0x64750, symSize: 0x50 } - - { offsetInCU: 0x1A00, offset: 0x89D70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x6880, symBinAddr: 0x647A0, symSize: 0x50 } - - { offsetInCU: 0x1A14, offset: 0x89D84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x68D0, symBinAddr: 0x647F0, symSize: 0x50 } - - { offsetInCU: 0x1A28, offset: 0x89D98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x6920, symBinAddr: 0x64840, symSize: 0x10 } - - { offsetInCU: 0x1A3C, offset: 0x89DAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x6A70, symBinAddr: 0x64990, symSize: 0x10 } - - { offsetInCU: 0x1A50, offset: 0x89DC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x6A80, symBinAddr: 0x649A0, symSize: 0x30 } - - { offsetInCU: 0x1A64, offset: 0x89DD4, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6B50, symBinAddr: 0x649D0, symSize: 0x30 } - - { offsetInCU: 0x1A78, offset: 0x89DE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x8020, symBinAddr: 0x65EA0, symSize: 0x30 } - - { offsetInCU: 0x1A8C, offset: 0x89DFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x8050, symBinAddr: 0x65ED0, symSize: 0x30 } - - { offsetInCU: 0x1AA0, offset: 0x89E10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x8A60, symBinAddr: 0x65F00, symSize: 0x30 } - - { offsetInCU: 0x1AB4, offset: 0x89E24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x9DA0, symBinAddr: 0x67240, symSize: 0x30 } - - { offsetInCU: 0x1AC8, offset: 0x89E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x67270, symSize: 0x30 } - - { offsetInCU: 0x1ADC, offset: 0x89E4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x9E00, symBinAddr: 0x672A0, symSize: 0x30 } - - { offsetInCU: 0x1AF0, offset: 0x89E60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x9E30, symBinAddr: 0x672D0, symSize: 0x30 } - - { offsetInCU: 0x1B04, offset: 0x89E74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x9E60, symBinAddr: 0x67300, symSize: 0x30 } - - { offsetInCU: 0x1B18, offset: 0x89E88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x9E90, symBinAddr: 0x67330, symSize: 0x30 } - - { offsetInCU: 0x1B2C, offset: 0x89E9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x9EC0, symBinAddr: 0x67360, symSize: 0x30 } - - { offsetInCU: 0x1B40, offset: 0x89EB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xB560, symBinAddr: 0x68A00, symSize: 0x30 } - - { offsetInCU: 0x1B54, offset: 0x89EC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xB590, symBinAddr: 0x68A30, symSize: 0x30 } - - { offsetInCU: 0x1B68, offset: 0x89ED8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xB5C0, symBinAddr: 0x68A60, symSize: 0x30 } - - { offsetInCU: 0x1B7C, offset: 0x89EEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xBF90, symBinAddr: 0x69430, symSize: 0x30 } - - { offsetInCU: 0x1B90, offset: 0x89F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xBFC0, symBinAddr: 0x69460, symSize: 0x30 } - - { offsetInCU: 0x1BA4, offset: 0x89F14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xBFF0, symBinAddr: 0x69490, symSize: 0x30 } - - { offsetInCU: 0x1BB8, offset: 0x89F28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xC050, symBinAddr: 0x694F0, symSize: 0x30 } - - { offsetInCU: 0x1BCC, offset: 0x89F3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xC080, symBinAddr: 0x69520, symSize: 0x30 } - - { offsetInCU: 0x1BE0, offset: 0x89F50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC0D0, symBinAddr: 0x69550, symSize: 0x80 } - - { offsetInCU: 0x1BF4, offset: 0x89F64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC150, symBinAddr: 0x695D0, symSize: 0xD0 } - - { offsetInCU: 0x1C08, offset: 0x89F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xC220, symBinAddr: 0x696A0, symSize: 0x10 } - - { offsetInCU: 0x1C1C, offset: 0x89F8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC230, symBinAddr: 0x696B0, symSize: 0x10 } - - { offsetInCU: 0x1C30, offset: 0x89FA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xC240, symBinAddr: 0x696C0, symSize: 0x10 } - - { offsetInCU: 0x1C44, offset: 0x89FB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC250, symBinAddr: 0x696D0, symSize: 0x10 } - - { offsetInCU: 0x1C58, offset: 0x89FC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC260, symBinAddr: 0x696E0, symSize: 0x80 } - - { offsetInCU: 0x1C6C, offset: 0x89FDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC2E0, symBinAddr: 0x69760, symSize: 0xD0 } - - { offsetInCU: 0x1C80, offset: 0x89FF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC3B0, symBinAddr: 0x69830, symSize: 0x10 } - - { offsetInCU: 0x1C94, offset: 0x8A004, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC3C0, symBinAddr: 0x69840, symSize: 0x10 } - - { offsetInCU: 0x1CA8, offset: 0x8A018, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xC3D0, symBinAddr: 0x69850, symSize: 0x80 } - - { offsetInCU: 0x1CBC, offset: 0x8A02C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xC450, symBinAddr: 0x698D0, symSize: 0xD0 } - - { offsetInCU: 0x1CD0, offset: 0x8A040, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xC520, symBinAddr: 0x699A0, symSize: 0x10 } - - { offsetInCU: 0x1CE4, offset: 0x8A054, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xC530, symBinAddr: 0x699B0, symSize: 0x10 } - - { offsetInCU: 0x1CF8, offset: 0x8A068, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC540, symBinAddr: 0x699C0, symSize: 0x80 } - - { offsetInCU: 0x1D0C, offset: 0x8A07C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC5C0, symBinAddr: 0x69A40, symSize: 0xD0 } - - { offsetInCU: 0x1D20, offset: 0x8A090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC690, symBinAddr: 0x69B10, symSize: 0x10 } - - { offsetInCU: 0x1D34, offset: 0x8A0A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC6A0, symBinAddr: 0x69B20, symSize: 0x10 } - - { offsetInCU: 0x1D48, offset: 0x8A0B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC6B0, symBinAddr: 0x69B30, symSize: 0x80 } - - { offsetInCU: 0x1D5C, offset: 0x8A0CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC730, symBinAddr: 0x69BB0, symSize: 0xD0 } - - { offsetInCU: 0x1D70, offset: 0x8A0E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xC800, symBinAddr: 0x69C80, symSize: 0x10 } - - { offsetInCU: 0x1D84, offset: 0x8A0F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC810, symBinAddr: 0x69C90, symSize: 0x10 } - - { offsetInCU: 0x1D98, offset: 0x8A108, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xC820, symBinAddr: 0x69CA0, symSize: 0x10 } - - { offsetInCU: 0x1DAC, offset: 0x8A11C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC830, symBinAddr: 0x69CB0, symSize: 0x10 } - - { offsetInCU: 0x1DC0, offset: 0x8A130, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC840, symBinAddr: 0x69CC0, symSize: 0x80 } - - { offsetInCU: 0x1DD4, offset: 0x8A144, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC8C0, symBinAddr: 0x69D40, symSize: 0xD0 } - - { offsetInCU: 0x1DE8, offset: 0x8A158, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC990, symBinAddr: 0x69E10, symSize: 0x10 } - - { offsetInCU: 0x1DFC, offset: 0x8A16C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC9A0, symBinAddr: 0x69E20, symSize: 0x10 } - - { offsetInCU: 0x1E10, offset: 0x8A180, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xC9B0, symBinAddr: 0x69E30, symSize: 0x30 } - - { offsetInCU: 0x1E24, offset: 0x8A194, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xC9E0, symBinAddr: 0x69E60, symSize: 0x20 } - - { offsetInCU: 0x1E38, offset: 0x8A1A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xCA00, symBinAddr: 0x69E80, symSize: 0x40 } - - { offsetInCU: 0x1E4C, offset: 0x8A1BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xCA40, symBinAddr: 0x69EC0, symSize: 0x10 } - - { offsetInCU: 0x1E60, offset: 0x8A1D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCA50, symBinAddr: 0x69ED0, symSize: 0x10 } - - { offsetInCU: 0x1E74, offset: 0x8A1E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCA60, symBinAddr: 0x69EE0, symSize: 0x30 } - - { offsetInCU: 0x1E88, offset: 0x8A1F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCA90, symBinAddr: 0x69F10, symSize: 0x10 } - - { offsetInCU: 0x1E9C, offset: 0x8A20C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCAA0, symBinAddr: 0x69F20, symSize: 0x30 } - - { offsetInCU: 0x1EB0, offset: 0x8A220, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCAD0, symBinAddr: 0x69F50, symSize: 0x10 } - - { offsetInCU: 0x1EC4, offset: 0x8A234, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCAE0, symBinAddr: 0x69F60, symSize: 0x30 } - - { offsetInCU: 0x1ED8, offset: 0x8A248, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xCB10, symBinAddr: 0x69F90, symSize: 0x10 } - - { offsetInCU: 0x1EEC, offset: 0x8A25C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xCB20, symBinAddr: 0x69FA0, symSize: 0x30 } - - { offsetInCU: 0x1F00, offset: 0x8A270, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCB50, symBinAddr: 0x69FD0, symSize: 0x10 } - - { offsetInCU: 0x1F14, offset: 0x8A284, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCB60, symBinAddr: 0x69FE0, symSize: 0x30 } - - { offsetInCU: 0x1F28, offset: 0x8A298, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCB90, symBinAddr: 0x6A010, symSize: 0x10 } - - { offsetInCU: 0x1F3C, offset: 0x8A2AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCBA0, symBinAddr: 0x6A020, symSize: 0x30 } - - { offsetInCU: 0x1F50, offset: 0x8A2C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCBD0, symBinAddr: 0x6A050, symSize: 0x10 } - - { offsetInCU: 0x1F64, offset: 0x8A2D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCBE0, symBinAddr: 0x6A060, symSize: 0x30 } - - { offsetInCU: 0x1F78, offset: 0x8A2E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC10, symBinAddr: 0x6A090, symSize: 0x10 } - - { offsetInCU: 0x1F8C, offset: 0x8A2FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCC20, symBinAddr: 0x6A0A0, symSize: 0x30 } - - { offsetInCU: 0x1FA0, offset: 0x8A310, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCC50, symBinAddr: 0x6A0D0, symSize: 0x10 } - - { offsetInCU: 0x1FB4, offset: 0x8A324, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCC60, symBinAddr: 0x6A0E0, symSize: 0x30 } - - { offsetInCU: 0x1FC8, offset: 0x8A338, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC90, symBinAddr: 0x6A110, symSize: 0x10 } - - { offsetInCU: 0x1FDC, offset: 0x8A34C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCCA0, symBinAddr: 0x6A120, symSize: 0x30 } - - { offsetInCU: 0x1FF0, offset: 0x8A360, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCCD0, symBinAddr: 0x6A150, symSize: 0x10 } - - { offsetInCU: 0x2004, offset: 0x8A374, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCCE0, symBinAddr: 0x6A160, symSize: 0x30 } - - { offsetInCU: 0x2018, offset: 0x8A388, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD10, symBinAddr: 0x6A190, symSize: 0x10 } - - { offsetInCU: 0x202C, offset: 0x8A39C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xCD20, symBinAddr: 0x6A1A0, symSize: 0x30 } - - { offsetInCU: 0x2040, offset: 0x8A3B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCD50, symBinAddr: 0x6A1D0, symSize: 0x10 } - - { offsetInCU: 0x2054, offset: 0x8A3C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCD60, symBinAddr: 0x6A1E0, symSize: 0x30 } - - { offsetInCU: 0x2068, offset: 0x8A3D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD90, symBinAddr: 0x6A210, symSize: 0x10 } - - { offsetInCU: 0x207C, offset: 0x8A3EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCDA0, symBinAddr: 0x6A220, symSize: 0x30 } - - { offsetInCU: 0x2090, offset: 0x8A400, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCDD0, symBinAddr: 0x6A250, symSize: 0x10 } - - { offsetInCU: 0x20A4, offset: 0x8A414, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCDE0, symBinAddr: 0x6A260, symSize: 0x30 } - - { offsetInCU: 0x20B8, offset: 0x8A428, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE10, symBinAddr: 0x6A290, symSize: 0x10 } - - { offsetInCU: 0x20CC, offset: 0x8A43C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCE20, symBinAddr: 0x6A2A0, symSize: 0x30 } - - { offsetInCU: 0x20E0, offset: 0x8A450, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCE50, symBinAddr: 0x6A2D0, symSize: 0x10 } - - { offsetInCU: 0x20F4, offset: 0x8A464, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCE60, symBinAddr: 0x6A2E0, symSize: 0x30 } - - { offsetInCU: 0x2108, offset: 0x8A478, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE90, symBinAddr: 0x6A310, symSize: 0x10 } - - { offsetInCU: 0x211C, offset: 0x8A48C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCEA0, symBinAddr: 0x6A320, symSize: 0x30 } - - { offsetInCU: 0x2130, offset: 0x8A4A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xCED0, symBinAddr: 0x6A350, symSize: 0x30 } - - { offsetInCU: 0x2144, offset: 0x8A4B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xCF00, symBinAddr: 0x6A380, symSize: 0x80 } - - { offsetInCU: 0x2158, offset: 0x8A4C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xCF80, symBinAddr: 0x6A400, symSize: 0xD0 } - - { offsetInCU: 0x216C, offset: 0x8A4DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xD050, symBinAddr: 0x6A4D0, symSize: 0x10 } - - { offsetInCU: 0x2180, offset: 0x8A4F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xD060, symBinAddr: 0x6A4E0, symSize: 0x10 } - - { offsetInCU: 0x2194, offset: 0x8A504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD070, symBinAddr: 0x6A4F0, symSize: 0x10 } - - { offsetInCU: 0x21A8, offset: 0x8A518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD080, symBinAddr: 0x6A500, symSize: 0x30 } - - { offsetInCU: 0x21BC, offset: 0x8A52C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD0B0, symBinAddr: 0x6A530, symSize: 0x10 } - - { offsetInCU: 0x21D0, offset: 0x8A540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD0C0, symBinAddr: 0x6A540, symSize: 0x30 } - - { offsetInCU: 0x21E4, offset: 0x8A554, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD0F0, symBinAddr: 0x6A570, symSize: 0x10 } - - { offsetInCU: 0x21F8, offset: 0x8A568, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD100, symBinAddr: 0x6A580, symSize: 0x30 } - - { offsetInCU: 0x2226, offset: 0x8A596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1050, symBinAddr: 0x5EF90, symSize: 0x20 } - - { offsetInCU: 0x2242, offset: 0x8A5B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1070, symBinAddr: 0x5EFB0, symSize: 0x20 } - - { offsetInCU: 0x2264, offset: 0x8A5D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11D0, symBinAddr: 0x5F110, symSize: 0x20 } - - { offsetInCU: 0x2280, offset: 0x8A5F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11F0, symBinAddr: 0x5F130, symSize: 0x20 } - - { offsetInCU: 0x229C, offset: 0x8A60C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x12B0, symBinAddr: 0x5F1F0, symSize: 0x10 } - - { offsetInCU: 0x22B8, offset: 0x8A628, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12C0, symBinAddr: 0x5F200, symSize: 0x10 } - - { offsetInCU: 0x22D4, offset: 0x8A644, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x12D0, symBinAddr: 0x5F210, symSize: 0x10 } - - { offsetInCU: 0x22F0, offset: 0x8A660, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x12E0, symBinAddr: 0x5F220, symSize: 0x10 } - - { offsetInCU: 0x2312, offset: 0x8A682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1420, symBinAddr: 0x5F360, symSize: 0x20 } - - { offsetInCU: 0x232E, offset: 0x8A69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1440, symBinAddr: 0x5F380, symSize: 0x20 } - - { offsetInCU: 0x2350, offset: 0x8A6C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1550, symBinAddr: 0x5F490, symSize: 0x20 } - - { offsetInCU: 0x236C, offset: 0x8A6DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x5F4B0, symSize: 0x20 } - - { offsetInCU: 0x23B5, offset: 0x8A725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x16A0, symBinAddr: 0x5F5E0, symSize: 0x40 } - - { offsetInCU: 0x2458, offset: 0x8A7C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1730, symBinAddr: 0x5F670, symSize: 0x20 } - - { offsetInCU: 0x2474, offset: 0x8A7E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x5F690, symSize: 0x20 } - - { offsetInCU: 0x2496, offset: 0x8A806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x5F7D0, symSize: 0x20 } - - { offsetInCU: 0x24B2, offset: 0x8A822, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5F7F0, symSize: 0x20 } - - { offsetInCU: 0x24EC, offset: 0x8A85C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1970, symBinAddr: 0x5F8B0, symSize: 0x80 } - - { offsetInCU: 0x25BB, offset: 0x8A92B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5F930, symSize: 0x50 } - - { offsetInCU: 0x2639, offset: 0x8A9A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A40, symBinAddr: 0x5F980, symSize: 0x30 } - - { offsetInCU: 0x268B, offset: 0x8A9FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A70, symBinAddr: 0x5F9B0, symSize: 0x50 } - - { offsetInCU: 0x26ED, offset: 0x8AA5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1B90, symBinAddr: 0x5FAD0, symSize: 0x20 } - - { offsetInCU: 0x2709, offset: 0x8AA79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x5FAF0, symSize: 0x20 } - - { offsetInCU: 0x2740, offset: 0x8AAB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6A30, symBinAddr: 0x64950, symSize: 0x30 } - - { offsetInCU: 0x27, offset: 0x8ACBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6A750, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x8ACDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6A750, symSize: 0x10 } - - { offsetInCU: 0x69, offset: 0x8ACFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x6A760, symSize: 0x10 } - - { offsetInCU: 0xA5, offset: 0x8AD38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x6A770, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8AD56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x6A780, symSize: 0x10 } - - { offsetInCU: 0xEE, offset: 0x8AD81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x6A790, symSize: 0x10 } - - { offsetInCU: 0x10C, offset: 0x8AD9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x6A7A0, symSize: 0x10 } - - { offsetInCU: 0x148, offset: 0x8ADDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x6A7B0, symSize: 0x20 } - - { offsetInCU: 0x176, offset: 0x8AE09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x6A7D0, symSize: 0x10 } - - { offsetInCU: 0x1A1, offset: 0x8AE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x6A7E0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x8AE52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x6A7F0, symSize: 0x10 } - - { offsetInCU: 0x1FD, offset: 0x8AE90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x6A800, symSize: 0x20 } - - { offsetInCU: 0x22B, offset: 0x8AEBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x6A820, symSize: 0x10 } - - { offsetInCU: 0x257, offset: 0x8AEEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x6A830, symSize: 0x40 } - - { offsetInCU: 0x26B, offset: 0x8AEFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x6A870, symSize: 0x50 } - - { offsetInCU: 0x27F, offset: 0x8AF12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x6A8C0, symSize: 0xA } - - { offsetInCU: 0x2B, offset: 0x8B02E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A8D0, symSize: 0x30 } - - { offsetInCU: 0x6D, offset: 0x8B070, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A8D0, symSize: 0x30 } - - { offsetInCU: 0xB9, offset: 0x8B0BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x6A900, symSize: 0x14 } - - { offsetInCU: 0x27, offset: 0x8B1D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6A920, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B217, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6A920, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8B263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6A940, symSize: 0x14 } - - { offsetInCU: 0x2B, offset: 0x8B380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A960, symSize: 0x50 } - - { offsetInCU: 0x6D, offset: 0x8B3C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A960, symSize: 0x50 } - - { offsetInCU: 0xB9, offset: 0x8B40E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x6A9B0, symSize: 0x10 } - - { offsetInCU: 0xCD, offset: 0x8B422, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x6A9C0, symSize: 0x30 } - - { offsetInCU: 0xE1, offset: 0x8B436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x6A9F0, symSize: 0x69 } - - { offsetInCU: 0x27, offset: 0x8B54F, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AA60, symSize: 0x430 } - - { offsetInCU: 0xD9, offset: 0x8B601, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AA60, symSize: 0x430 } - - { offsetInCU: 0x2B2, offset: 0x8B7DA, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x6AE90, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x8B984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6AED0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B9C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6AED0, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8BA12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6AEF0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x8BB53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x6AF10, symSize: 0x70 } - - { offsetInCU: 0x7A, offset: 0x8BB7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x6AFB0, symSize: 0x30 } - - { offsetInCU: 0xBE, offset: 0x8BBC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x9D0, symBinAddr: 0x6B8A0, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8BC31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA50, symBinAddr: 0x6B920, symSize: 0x20 } - - { offsetInCU: 0x149, offset: 0x8BC4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA70, symBinAddr: 0x6B940, symSize: 0x20 } - - { offsetInCU: 0x177, offset: 0x8BC7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA90, symBinAddr: 0x6B960, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8BD0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x6AF80, symSize: 0x30 } - - { offsetInCU: 0x230, offset: 0x8BD34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAE0, symBinAddr: 0x6B9B0, symSize: 0x70 } - - { offsetInCU: 0x25B, offset: 0x8BD5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xB90, symBinAddr: 0x6BA60, symSize: 0x20 } - - { offsetInCU: 0x277, offset: 0x8BD7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xBB0, symBinAddr: 0x6BA80, symSize: 0x20 } - - { offsetInCU: 0x4CA, offset: 0x8BFCE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x8E0, symBinAddr: 0x6B7B0, symSize: 0xF0 } - - { offsetInCU: 0x546, offset: 0x8C04A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBD0, symBinAddr: 0x6BAA0, symSize: 0x490 } - - { offsetInCU: 0x79D, offset: 0x8C2A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1060, symBinAddr: 0x6BF30, symSize: 0x150 } - - { offsetInCU: 0x921, offset: 0x8C425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x11B0, symBinAddr: 0x6C080, symSize: 0x9A0 } - - { offsetInCU: 0xECB, offset: 0x8C9CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B50, symBinAddr: 0x6CA20, symSize: 0x7A0 } - - { offsetInCU: 0x127B, offset: 0x8CD7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x22F0, symBinAddr: 0x6D1C0, symSize: 0x540 } - - { offsetInCU: 0x141A, offset: 0x8CF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2830, symBinAddr: 0x6D700, symSize: 0x680 } - - { offsetInCU: 0x191F, offset: 0x8D423, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2EB0, symBinAddr: 0x6DD80, symSize: 0x130 } - - { offsetInCU: 0x1A0F, offset: 0x8D513, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2FE0, symBinAddr: 0x6DEB0, symSize: 0x30 } - - { offsetInCU: 0x1A52, offset: 0x8D556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3620, symBinAddr: 0x6E480, symSize: 0x200 } - - { offsetInCU: 0x1B03, offset: 0x8D607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3820, symBinAddr: 0x6E680, symSize: 0x220 } - - { offsetInCU: 0x1B68, offset: 0x8D66C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3A40, symBinAddr: 0x6E8A0, symSize: 0x240 } - - { offsetInCU: 0x1C90, offset: 0x8D794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3CB0, symBinAddr: 0x6EAE0, symSize: 0x290 } - - { offsetInCU: 0x1DCF, offset: 0x8D8D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3F40, symBinAddr: 0x6ED70, symSize: 0x170 } - - { offsetInCU: 0x1E15, offset: 0x8D919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x40B0, symBinAddr: 0x6EEE0, symSize: 0x570 } - - { offsetInCU: 0x2166, offset: 0x8DC6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4620, symBinAddr: 0x6F450, symSize: 0xD0 } - - { offsetInCU: 0x224C, offset: 0x8DD50, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x3080, symBinAddr: 0x6DF50, symSize: 0x10 } - - { offsetInCU: 0x228E, offset: 0x8DD92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3090, symBinAddr: 0x6DF60, symSize: 0x10 } - - { offsetInCU: 0x22A2, offset: 0x8DDA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x30A0, symBinAddr: 0x6DF70, symSize: 0x30 } - - { offsetInCU: 0x22B6, offset: 0x8DDBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x30D0, symBinAddr: 0x6DFA0, symSize: 0x10 } - - { offsetInCU: 0x22CA, offset: 0x8DDCE, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x30E0, symBinAddr: 0x6DFB0, symSize: 0x40 } - - { offsetInCU: 0x22DE, offset: 0x8DDE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x3160, symBinAddr: 0x6DFF0, symSize: 0x10 } - - { offsetInCU: 0x22F2, offset: 0x8DDF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x3170, symBinAddr: 0x6E000, symSize: 0x30 } - - { offsetInCU: 0x2306, offset: 0x8DE0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x31C0, symBinAddr: 0x6E030, symSize: 0x80 } - - { offsetInCU: 0x231A, offset: 0x8DE1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x3240, symBinAddr: 0x6E0B0, symSize: 0xD0 } - - { offsetInCU: 0x232E, offset: 0x8DE32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3310, symBinAddr: 0x6E180, symSize: 0x10 } - - { offsetInCU: 0x2342, offset: 0x8DE46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3320, symBinAddr: 0x6E190, symSize: 0x10 } - - { offsetInCU: 0x2356, offset: 0x8DE5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x3330, symBinAddr: 0x6E1A0, symSize: 0x10 } - - { offsetInCU: 0x236A, offset: 0x8DE6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x3340, symBinAddr: 0x6E1B0, symSize: 0x10 } - - { offsetInCU: 0x237E, offset: 0x8DE82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x3350, symBinAddr: 0x6E1C0, symSize: 0x80 } - - { offsetInCU: 0x2392, offset: 0x8DE96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x33D0, symBinAddr: 0x6E240, symSize: 0xD0 } - - { offsetInCU: 0x23A6, offset: 0x8DEAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x34A0, symBinAddr: 0x6E310, symSize: 0x10 } - - { offsetInCU: 0x23BA, offset: 0x8DEBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x34B0, symBinAddr: 0x6E320, symSize: 0x10 } - - { offsetInCU: 0x23CE, offset: 0x8DED2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x34C0, symBinAddr: 0x6E330, symSize: 0x10 } - - { offsetInCU: 0x23E2, offset: 0x8DEE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x34D0, symBinAddr: 0x6E340, symSize: 0x10 } - - { offsetInCU: 0x23F6, offset: 0x8DEFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x34E0, symBinAddr: 0x6E350, symSize: 0x20 } - - { offsetInCU: 0x240A, offset: 0x8DF0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3510, symBinAddr: 0x6E370, symSize: 0x10 } - - { offsetInCU: 0x241E, offset: 0x8DF22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3520, symBinAddr: 0x6E380, symSize: 0x10 } - - { offsetInCU: 0x2432, offset: 0x8DF36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3530, symBinAddr: 0x6E390, symSize: 0x30 } - - { offsetInCU: 0x2446, offset: 0x8DF4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x3560, symBinAddr: 0x6E3C0, symSize: 0x10 } - - { offsetInCU: 0x245A, offset: 0x8DF5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x3570, symBinAddr: 0x6E3D0, symSize: 0x10 } - - { offsetInCU: 0x246E, offset: 0x8DF72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3580, symBinAddr: 0x6E3E0, symSize: 0x30 } - - { offsetInCU: 0x2482, offset: 0x8DF86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x35B0, symBinAddr: 0x6E410, symSize: 0x10 } - - { offsetInCU: 0x24A1, offset: 0x8DFA5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x35C0, symBinAddr: 0x6E420, symSize: 0x20 } - - { offsetInCU: 0x24D9, offset: 0x8DFDD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x35E0, symBinAddr: 0x6E440, symSize: 0x20 } - - { offsetInCU: 0x2511, offset: 0x8E015, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3600, symBinAddr: 0x6E460, symSize: 0x20 } - - { offsetInCU: 0x2575, offset: 0x8E079, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x4750, symBinAddr: 0x6F580, symSize: 0x40 } - - { offsetInCU: 0x2589, offset: 0x8E08D, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x47F0, symBinAddr: 0x6F5C0, symSize: 0x30 } - - { offsetInCU: 0x259D, offset: 0x8E0A1, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4820, symBinAddr: 0x6F5F0, symSize: 0x30 } - - { offsetInCU: 0x25B1, offset: 0x8E0B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4890, symBinAddr: 0x6F640, symSize: 0x20 } - - { offsetInCU: 0x25C5, offset: 0x8E0C9, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x48B0, symBinAddr: 0x6F660, symSize: 0x20 } - - { offsetInCU: 0x25D9, offset: 0x8E0DD, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x48D0, symBinAddr: 0x6F680, symSize: 0x10 } - - { offsetInCU: 0x25ED, offset: 0x8E0F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4940, symBinAddr: 0x6F690, symSize: 0x20 } - - { offsetInCU: 0x2601, offset: 0x8E105, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x49F0, symBinAddr: 0x6F740, symSize: 0x10 } - - { offsetInCU: 0x2630, offset: 0x8E134, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x110, symBinAddr: 0x6AFE0, symSize: 0x10 } - - { offsetInCU: 0x2698, offset: 0x8E19C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x6AFF0, symSize: 0x30 } - - { offsetInCU: 0x2716, offset: 0x8E21A, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x150, symBinAddr: 0x6B020, symSize: 0x70 } - - { offsetInCU: 0x27A5, offset: 0x8E2A9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x1C0, symBinAddr: 0x6B090, symSize: 0x70 } - - { offsetInCU: 0x2834, offset: 0x8E338, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x230, symBinAddr: 0x6B100, symSize: 0x90 } - - { offsetInCU: 0x28CB, offset: 0x8E3CF, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x2C0, symBinAddr: 0x6B190, symSize: 0x60 } - - { offsetInCU: 0x29A5, offset: 0x8E4A9, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x320, symBinAddr: 0x6B1F0, symSize: 0x60 } - - { offsetInCU: 0x2A7F, offset: 0x8E583, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x380, symBinAddr: 0x6B250, symSize: 0x60 } - - { offsetInCU: 0x2AF4, offset: 0x8E5F8, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x3E0, symBinAddr: 0x6B2B0, symSize: 0x40 } - - { offsetInCU: 0x2B51, offset: 0x8E655, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x420, symBinAddr: 0x6B2F0, symSize: 0x40 } - - { offsetInCU: 0x2BAE, offset: 0x8E6B2, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x460, symBinAddr: 0x6B330, symSize: 0x40 } - - { offsetInCU: 0x2BD7, offset: 0x8E6DB, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x4A0, symBinAddr: 0x6B370, symSize: 0x60 } - - { offsetInCU: 0x2C2A, offset: 0x8E72E, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x500, symBinAddr: 0x6B3D0, symSize: 0x60 } - - { offsetInCU: 0x2CA6, offset: 0x8E7AA, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x560, symBinAddr: 0x6B430, symSize: 0x60 } - - { offsetInCU: 0x2D37, offset: 0x8E83B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5C0, symBinAddr: 0x6B490, symSize: 0xB0 } - - { offsetInCU: 0x2EB0, offset: 0x8E9B4, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x670, symBinAddr: 0x6B540, symSize: 0x50 } - - { offsetInCU: 0x2F7C, offset: 0x8EA80, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6C0, symBinAddr: 0x6B590, symSize: 0x90 } - - { offsetInCU: 0x2FFC, offset: 0x8EB00, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x750, symBinAddr: 0x6B620, symSize: 0x80 } - - { offsetInCU: 0x3076, offset: 0x8EB7A, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7D0, symBinAddr: 0x6B6A0, symSize: 0xD0 } - - { offsetInCU: 0x3153, offset: 0x8EC57, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8A0, symBinAddr: 0x6B770, symSize: 0x40 } - - { offsetInCU: 0x31E4, offset: 0x8ECE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA10, symBinAddr: 0x6B8E0, symSize: 0x10 } - - { offsetInCU: 0x3200, offset: 0x8ED04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA20, symBinAddr: 0x6B8F0, symSize: 0x10 } - - { offsetInCU: 0x321C, offset: 0x8ED20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA30, symBinAddr: 0x6B900, symSize: 0x10 } - - { offsetInCU: 0x3230, offset: 0x8ED34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA40, symBinAddr: 0x6B910, symSize: 0x10 } - - { offsetInCU: 0x324A, offset: 0x8ED4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x6BA20, symSize: 0x10 } - - { offsetInCU: 0x3266, offset: 0x8ED6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB60, symBinAddr: 0x6BA30, symSize: 0x10 } - - { offsetInCU: 0x3282, offset: 0x8ED86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB70, symBinAddr: 0x6BA40, symSize: 0x10 } - - { offsetInCU: 0x3296, offset: 0x8ED9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB80, symBinAddr: 0x6BA50, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x8F235, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6F780, symSize: 0x1A0 } - - { offsetInCU: 0x57, offset: 0x8F249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6F920, symSize: 0x90 } - - { offsetInCU: 0x6B, offset: 0x8F25D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6F9B0, symSize: 0x170 } - - { offsetInCU: 0x7F, offset: 0x8F271, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6FB20, symSize: 0x1F0 } - - { offsetInCU: 0x93, offset: 0x8F285, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6FD10, symSize: 0xE0 } - - { offsetInCU: 0xA7, offset: 0x8F299, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x6FDF0, symSize: 0x1C0 } - - { offsetInCU: 0xBB, offset: 0x8F2AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x6FFB0, symSize: 0x20 } - - { offsetInCU: 0xCF, offset: 0x8F2C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x70040, symSize: 0x20 } - - { offsetInCU: 0xE3, offset: 0x8F2D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x700E0, symSize: 0x90 } - - { offsetInCU: 0xF7, offset: 0x8F2E9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x70170, symSize: 0x50 } - - { offsetInCU: 0x10B, offset: 0x8F2FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x701C0, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8F311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x702E0, symSize: 0x70 } - - { offsetInCU: 0x133, offset: 0x8F325, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x70350, symSize: 0xF0 } - - { offsetInCU: 0x147, offset: 0x8F339, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x70440, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8F34D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x705A0, symSize: 0xC0 } - - { offsetInCU: 0x16F, offset: 0x8F361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x70660, symSize: 0x150 } - - { offsetInCU: 0x183, offset: 0x8F375, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x707B0, symSize: 0x20 } - - { offsetInCU: 0x197, offset: 0x8F389, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x70840, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x8F39D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x70900, symSize: 0x80 } - - { offsetInCU: 0x1DD, offset: 0x8F3CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1240, symBinAddr: 0x70980, symSize: 0x20 } - - { offsetInCU: 0x22A, offset: 0x8F41C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x70ED0, symSize: 0x10 } - - { offsetInCU: 0x288, offset: 0x8F47A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17B0, symBinAddr: 0x70EF0, symSize: 0x20 } - - { offsetInCU: 0x302, offset: 0x8F4F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x70F20, symSize: 0x10 } - - { offsetInCU: 0x32D, offset: 0x8F51F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x70F30, symSize: 0x20 } - - { offsetInCU: 0x35E, offset: 0x8F550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x70F50, symSize: 0x10 } - - { offsetInCU: 0x37A, offset: 0x8F56C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x70F60, symSize: 0x10 } - - { offsetInCU: 0x396, offset: 0x8F588, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E80, symBinAddr: 0x72490, symSize: 0x160 } - - { offsetInCU: 0x3DC, offset: 0x8F5CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1260, symBinAddr: 0x709A0, symSize: 0x1F0 } - - { offsetInCU: 0x41B, offset: 0x8F60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1450, symBinAddr: 0x70B90, symSize: 0x340 } - - { offsetInCU: 0x44C, offset: 0x8F63E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x70FB0, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x8F661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1880, symBinAddr: 0x70FC0, symSize: 0x10 } - - { offsetInCU: 0x4C7, offset: 0x8F6B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x70FD0, symSize: 0x20 } - - { offsetInCU: 0x4F0, offset: 0x8F6E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x711C0, symSize: 0x10 } - - { offsetInCU: 0x51B, offset: 0x8F70D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x711D0, symSize: 0x20 } - - { offsetInCU: 0x54C, offset: 0x8F73E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB0, symBinAddr: 0x711F0, symSize: 0x10 } - - { offsetInCU: 0x568, offset: 0x8F75A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x71200, symSize: 0x10 } - - { offsetInCU: 0x584, offset: 0x8F776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FE0, symBinAddr: 0x725F0, symSize: 0x120 } - - { offsetInCU: 0x5CA, offset: 0x8F7BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x70FF0, symSize: 0x1B0 } - - { offsetInCU: 0x61F, offset: 0x8F811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B10, symBinAddr: 0x71250, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x8F848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B50, symBinAddr: 0x71290, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x8F86B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3100, symBinAddr: 0x72710, symSize: 0x2B0 } - - { offsetInCU: 0x6C9, offset: 0x8F8BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1B90, symBinAddr: 0x712D0, symSize: 0x20 } - - { offsetInCU: 0x6F2, offset: 0x8F8E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23C0, symBinAddr: 0x71B00, symSize: 0x10 } - - { offsetInCU: 0x71D, offset: 0x8F90F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23D0, symBinAddr: 0x71B10, symSize: 0x20 } - - { offsetInCU: 0x74E, offset: 0x8F940, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23F0, symBinAddr: 0x71B30, symSize: 0x10 } - - { offsetInCU: 0x76A, offset: 0x8F95C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2400, symBinAddr: 0x71B40, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x8F978, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33B0, symBinAddr: 0x729C0, symSize: 0x250 } - - { offsetInCU: 0x7CC, offset: 0x8F9BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BB0, symBinAddr: 0x712F0, symSize: 0x2B0 } - - { offsetInCU: 0x80B, offset: 0x8F9FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E60, symBinAddr: 0x715A0, symSize: 0x4E0 } - - { offsetInCU: 0x83C, offset: 0x8FA2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2450, symBinAddr: 0x71B90, symSize: 0x10 } - - { offsetInCU: 0x85F, offset: 0x8FA51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2460, symBinAddr: 0x71BA0, symSize: 0x10 } - - { offsetInCU: 0x883, offset: 0x8FA75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x24A0, symBinAddr: 0x71BB0, symSize: 0x30 } - - { offsetInCU: 0x897, offset: 0x8FA89, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2500, symBinAddr: 0x71BE0, symSize: 0x30 } - - { offsetInCU: 0x8AB, offset: 0x8FA9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x25A0, symBinAddr: 0x71C40, symSize: 0x30 } - - { offsetInCU: 0x8BF, offset: 0x8FAB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2610, symBinAddr: 0x71C70, symSize: 0x30 } - - { offsetInCU: 0x8D3, offset: 0x8FAC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x2700, symBinAddr: 0x71D60, symSize: 0x30 } - - { offsetInCU: 0x8E7, offset: 0x8FAD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2750, symBinAddr: 0x71D90, symSize: 0x80 } - - { offsetInCU: 0x8FB, offset: 0x8FAED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x27D0, symBinAddr: 0x71E10, symSize: 0xD0 } - - { offsetInCU: 0x90F, offset: 0x8FB01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x28A0, symBinAddr: 0x71EE0, symSize: 0x10 } - - { offsetInCU: 0x923, offset: 0x8FB15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x28B0, symBinAddr: 0x71EF0, symSize: 0x10 } - - { offsetInCU: 0x937, offset: 0x8FB29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x28C0, symBinAddr: 0x71F00, symSize: 0x10 } - - { offsetInCU: 0x94B, offset: 0x8FB3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x28D0, symBinAddr: 0x71F10, symSize: 0x10 } - - { offsetInCU: 0x95F, offset: 0x8FB51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x28E0, symBinAddr: 0x71F20, symSize: 0x80 } - - { offsetInCU: 0x973, offset: 0x8FB65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2960, symBinAddr: 0x71FA0, symSize: 0xD0 } - - { offsetInCU: 0x987, offset: 0x8FB79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2A30, symBinAddr: 0x72070, symSize: 0x10 } - - { offsetInCU: 0x99B, offset: 0x8FB8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2A40, symBinAddr: 0x72080, symSize: 0x10 } - - { offsetInCU: 0x9AF, offset: 0x8FBA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2A50, symBinAddr: 0x72090, symSize: 0x30 } - - { offsetInCU: 0x9C3, offset: 0x8FBB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2A80, symBinAddr: 0x720C0, symSize: 0x30 } - - { offsetInCU: 0x9D7, offset: 0x8FBC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2AB0, symBinAddr: 0x720F0, symSize: 0x70 } - - { offsetInCU: 0x9EB, offset: 0x8FBDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2B20, symBinAddr: 0x72160, symSize: 0x90 } - - { offsetInCU: 0x9FF, offset: 0x8FBF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2BE0, symBinAddr: 0x721F0, symSize: 0x70 } - - { offsetInCU: 0xA13, offset: 0x8FC05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2C50, symBinAddr: 0x72260, symSize: 0x50 } - - { offsetInCU: 0xA27, offset: 0x8FC19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2CA0, symBinAddr: 0x722B0, symSize: 0x50 } - - { offsetInCU: 0xA3B, offset: 0x8FC2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2CF0, symBinAddr: 0x72300, symSize: 0x10 } - - { offsetInCU: 0xA4F, offset: 0x8FC41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D00, symBinAddr: 0x72310, symSize: 0x10 } - - { offsetInCU: 0xA63, offset: 0x8FC55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x72320, symSize: 0x30 } - - { offsetInCU: 0xA77, offset: 0x8FC69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D40, symBinAddr: 0x72350, symSize: 0x10 } - - { offsetInCU: 0xA8B, offset: 0x8FC7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D50, symBinAddr: 0x72360, symSize: 0x30 } - - { offsetInCU: 0xA9F, offset: 0x8FC91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D80, symBinAddr: 0x72390, symSize: 0x10 } - - { offsetInCU: 0xAB3, offset: 0x8FCA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D90, symBinAddr: 0x723A0, symSize: 0x30 } - - { offsetInCU: 0xAC7, offset: 0x8FCB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DC0, symBinAddr: 0x723D0, symSize: 0x10 } - - { offsetInCU: 0xADB, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DD0, symBinAddr: 0x723E0, symSize: 0x30 } - - { offsetInCU: 0xAEF, offset: 0x8FCE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E00, symBinAddr: 0x72410, symSize: 0x10 } - - { offsetInCU: 0xB03, offset: 0x8FCF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E10, symBinAddr: 0x72420, symSize: 0x30 } - - { offsetInCU: 0xB17, offset: 0x8FD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E40, symBinAddr: 0x72450, symSize: 0x10 } - - { offsetInCU: 0xB2B, offset: 0x8FD1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E50, symBinAddr: 0x72460, symSize: 0x30 } - - { offsetInCU: 0xB4A, offset: 0x8FD3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3600, symBinAddr: 0x72C10, symSize: 0x30 } - - { offsetInCU: 0xB5E, offset: 0x8FD50, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3630, symBinAddr: 0x72C40, symSize: 0x40 } - - { offsetInCU: 0xB72, offset: 0x8FD64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x36E0, symBinAddr: 0x72CF0, symSize: 0x80 } - - { offsetInCU: 0xB86, offset: 0x8FD78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3760, symBinAddr: 0x72D70, symSize: 0xD0 } - - { offsetInCU: 0xB9A, offset: 0x8FD8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3830, symBinAddr: 0x72E40, symSize: 0x10 } - - { offsetInCU: 0xBAE, offset: 0x8FDA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3840, symBinAddr: 0x72E50, symSize: 0x10 } - - { offsetInCU: 0xBC2, offset: 0x8FDB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3850, symBinAddr: 0x72E60, symSize: 0x10 } - - { offsetInCU: 0xBD6, offset: 0x8FDC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3860, symBinAddr: 0x72E70, symSize: 0x30 } - - { offsetInCU: 0xBEA, offset: 0x8FDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3890, symBinAddr: 0x72EA0, symSize: 0x10 } - - { offsetInCU: 0xBFE, offset: 0x8FDF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x38A0, symBinAddr: 0x72EB0, symSize: 0x30 } - - { offsetInCU: 0xC12, offset: 0x8FE04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x38D0, symBinAddr: 0x72EE0, symSize: 0x10 } - - { offsetInCU: 0xC26, offset: 0x8FE18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x38E0, symBinAddr: 0x72EF0, symSize: 0x30 } - - { offsetInCU: 0xC54, offset: 0x8FE46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x70F70, symSize: 0x20 } - - { offsetInCU: 0xC70, offset: 0x8FE62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x70F90, symSize: 0x20 } - - { offsetInCU: 0xC92, offset: 0x8FE84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x71210, symSize: 0x20 } - - { offsetInCU: 0xCAE, offset: 0x8FEA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF0, symBinAddr: 0x71230, symSize: 0x20 } - - { offsetInCU: 0xCD0, offset: 0x8FEC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x71B50, symSize: 0x20 } - - { offsetInCU: 0xCEC, offset: 0x8FEDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2430, symBinAddr: 0x71B70, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90030, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x72FC0, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x90054, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x72FC0, symSize: 0x30 } - - { offsetInCU: 0x69, offset: 0x90072, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x72FF0, symSize: 0x30 } - - { offsetInCU: 0xA7, offset: 0x900B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x73020, symSize: 0x10 } - - { offsetInCU: 0xC5, offset: 0x900CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x73030, symSize: 0x10 } - - { offsetInCU: 0xF0, offset: 0x900F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x73040, symSize: 0x30 } - - { offsetInCU: 0x10E, offset: 0x90117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x73070, symSize: 0x30 } - - { offsetInCU: 0x14C, offset: 0x90155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x730A0, symSize: 0x20 } - - { offsetInCU: 0x17A, offset: 0x90183, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x730C0, symSize: 0x10 } - - { offsetInCU: 0x1A6, offset: 0x901AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x730D0, symSize: 0x30 } - - { offsetInCU: 0x1BA, offset: 0x901C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x73100, symSize: 0x30 } - - { offsetInCU: 0x1CE, offset: 0x901D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x73130, symSize: 0x40 } - - { offsetInCU: 0x1E2, offset: 0x901EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x73170, symSize: 0x60 } - - { offsetInCU: 0x1F6, offset: 0x901FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x731D0, symSize: 0x50 } - - { offsetInCU: 0x20A, offset: 0x90213, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x73220, symSize: 0x40 } - - { offsetInCU: 0x21E, offset: 0x90227, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x73260, symSize: 0x50 } - - { offsetInCU: 0x232, offset: 0x9023B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x732B0, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x90381, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x732C0, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x903A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0SSvpZ', symObjAddr: 0xA780, symBinAddr: 0x913C0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x903BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8languageSSvpZ', symObjAddr: 0xA790, symBinAddr: 0x913D0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x903D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7versionSSvpZ', symObjAddr: 0xA7A0, symBinAddr: 0x913E0, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x903F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0xA7B0, symBinAddr: 0x913F0, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x9040D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0xA7C0, symBinAddr: 0x91400, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x90427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0xA7D0, symBinAddr: 0x91410, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x90441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0xA7E0, symBinAddr: 0x91420, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x9045B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0xA7F0, symBinAddr: 0x91430, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x90475, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0xA800, symBinAddr: 0x91440, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x9048F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0xA810, symBinAddr: 0x91450, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x904A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0xA820, symBinAddr: 0x91460, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x904C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0xA830, symBinAddr: 0x91470, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x904DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0xA840, symBinAddr: 0x91480, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x904F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0xA850, symBinAddr: 0x91490, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x90511, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0xA860, symBinAddr: 0x914A0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x9052B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0xA870, symBinAddr: 0x914B0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x90545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKeySSvpZ', symObjAddr: 0xA880, symBinAddr: 0x914C0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x9055F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKeySSvpZ', symObjAddr: 0xA890, symBinAddr: 0x914D0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x90579, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKeySSvpZ', symObjAddr: 0xA8A0, symBinAddr: 0x914E0, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x90593, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKeySSvpZ', symObjAddr: 0xA8B0, symBinAddr: 0x914F0, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x905AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKeySSvpZ', symObjAddr: 0xA8C0, symBinAddr: 0x91500, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x905C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKeySSvpZ', symObjAddr: 0xA8D0, symBinAddr: 0x91510, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x905E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKeySSvpZ', symObjAddr: 0xA8E0, symBinAddr: 0x91520, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x905FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0xA8F0, symBinAddr: 0x91530, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x90615, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0xA900, symBinAddr: 0x91540, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x9062F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvpZ', symObjAddr: 0xA910, symBinAddr: 0x91550, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x90649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0xA920, symBinAddr: 0x91560, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x90663, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKeySSvpZ', symObjAddr: 0xA930, symBinAddr: 0x91570, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x9067D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkeySSvpZ', symObjAddr: 0xA940, symBinAddr: 0x91580, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x90697, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0xA950, symBinAddr: 0x91590, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x906B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKeySSvpZ', symObjAddr: 0xA960, symBinAddr: 0x915A0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x906CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKeySSvpZ', symObjAddr: 0xA970, symBinAddr: 0x915B0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x906E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvpZ', symObjAddr: 0xA980, symBinAddr: 0x915C0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x906FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKeySSvpZ', symObjAddr: 0xA990, symBinAddr: 0x915D0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x90719, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKeySSvpZ', symObjAddr: 0xA9A0, symBinAddr: 0x915E0, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x90733, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKeySSvpZ', symObjAddr: 0xA9B0, symBinAddr: 0x915F0, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x9074D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKeySSvpZ', symObjAddr: 0xA9C0, symBinAddr: 0x91600, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x90767, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvpZ', symObjAddr: 0xA9D0, symBinAddr: 0x91610, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x90781, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvpZ', symObjAddr: 0xA9E0, symBinAddr: 0x91620, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x9079B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvpZ', symObjAddr: 0xA9F0, symBinAddr: 0x91630, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x907B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkeySSvpZ', symObjAddr: 0xAA00, symBinAddr: 0x91640, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x907CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvpZ', symObjAddr: 0xAA10, symBinAddr: 0x91650, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x907E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKeySSvpZ', symObjAddr: 0xAA20, symBinAddr: 0x91660, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x90803, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKeySSvpZ', symObjAddr: 0xAA30, symBinAddr: 0x91670, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x9081D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKeySSvpZ', symObjAddr: 0xAA40, symBinAddr: 0x91680, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x90837, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKeySSvpZ', symObjAddr: 0xAA50, symBinAddr: 0x91690, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x90851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKeySSvpZ', symObjAddr: 0xAA60, symBinAddr: 0x916A0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x9086B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKeySSvpZ', symObjAddr: 0xAA70, symBinAddr: 0x916B0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x90885, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0xAA80, symBinAddr: 0x916C0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x9089F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0xAA90, symBinAddr: 0x916D0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x908B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0xAAA0, symBinAddr: 0x916E0, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x908D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKeySSvpZ', symObjAddr: 0xAAB0, symBinAddr: 0x916F0, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x908ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKeySSvpZ', symObjAddr: 0xAAC0, symBinAddr: 0x91700, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x90907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKeySSvpZ', symObjAddr: 0xAAD0, symBinAddr: 0x91710, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x90921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKeySSvpZ', symObjAddr: 0xAAE0, symBinAddr: 0x91720, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x9093B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0xAAF0, symBinAddr: 0x91730, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x90955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0xAB00, symBinAddr: 0x91740, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x9096F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0xAB10, symBinAddr: 0x91750, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x90989, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekeySSvpZ', symObjAddr: 0xAB20, symBinAddr: 0x91760, symSize: 0x0 } - - { offsetInCU: 0x649, offset: 0x909A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkeySSvpZ', symObjAddr: 0xAB30, symBinAddr: 0x91770, symSize: 0x0 } - - { offsetInCU: 0x657, offset: 0x909B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x732C0, symSize: 0x30 } - - { offsetInCU: 0x675, offset: 0x909CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvau', symObjAddr: 0x30, symBinAddr: 0x732F0, symSize: 0x30 } - - { offsetInCU: 0x693, offset: 0x909ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvau', symObjAddr: 0x60, symBinAddr: 0x73320, symSize: 0x30 } - - { offsetInCU: 0x6B1, offset: 0x90A0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvau', symObjAddr: 0x90, symBinAddr: 0x73350, symSize: 0x30 } - - { offsetInCU: 0x6CF, offset: 0x90A29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvau', symObjAddr: 0xC0, symBinAddr: 0x73380, symSize: 0x30 } - - { offsetInCU: 0x6F9, offset: 0x90A53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0xF0, symBinAddr: 0x733B0, symSize: 0x20 } - - { offsetInCU: 0x714, offset: 0x90A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x230, symBinAddr: 0x734F0, symSize: 0x410 } - - { offsetInCU: 0x768, offset: 0x90AC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x750, symBinAddr: 0x73A10, symSize: 0x10 } - - { offsetInCU: 0x784, offset: 0x90ADE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x760, symBinAddr: 0x73A20, symSize: 0x20 } - - { offsetInCU: 0x7AE, offset: 0x90B08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvau', symObjAddr: 0x110, symBinAddr: 0x733D0, symSize: 0x30 } - - { offsetInCU: 0x7CC, offset: 0x90B26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvau', symObjAddr: 0x140, symBinAddr: 0x73400, symSize: 0x30 } - - { offsetInCU: 0x7EA, offset: 0x90B44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x170, symBinAddr: 0x73430, symSize: 0x30 } - - { offsetInCU: 0x808, offset: 0x90B62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x1A0, symBinAddr: 0x73460, symSize: 0x30 } - - { offsetInCU: 0x826, offset: 0x90B80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x1D0, symBinAddr: 0x73490, symSize: 0x30 } - - { offsetInCU: 0x844, offset: 0x90B9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvau', symObjAddr: 0x200, symBinAddr: 0x734C0, symSize: 0x30 } - - { offsetInCU: 0x86D, offset: 0x90BC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x660, symBinAddr: 0x73920, symSize: 0x10 } - - { offsetInCU: 0x881, offset: 0x90BDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x73930, symSize: 0x30 } - - { offsetInCU: 0x8AB, offset: 0x90C05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x7A0, symBinAddr: 0x73A40, symSize: 0x80 } - - { offsetInCU: 0x8BF, offset: 0x90C19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x820, symBinAddr: 0x73AC0, symSize: 0xD0 } - - { offsetInCU: 0x8D3, offset: 0x90C2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x8F0, symBinAddr: 0x73B90, symSize: 0x10 } - - { offsetInCU: 0x8E7, offset: 0x90C41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x900, symBinAddr: 0x73BA0, symSize: 0x10 } - - { offsetInCU: 0x8FB, offset: 0x90C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x910, symBinAddr: 0x73BB0, symSize: 0x10 } - - { offsetInCU: 0x90F, offset: 0x90C69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x920, symBinAddr: 0x73BC0, symSize: 0x10 } - - { offsetInCU: 0x923, offset: 0x90C7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0_WZ', symObjAddr: 0x930, symBinAddr: 0x73BD0, symSize: 0x30 } - - { offsetInCU: 0x93D, offset: 0x90C97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8language_WZ', symObjAddr: 0x960, symBinAddr: 0x73C00, symSize: 0x30 } - - { offsetInCU: 0x957, offset: 0x90CB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7version_WZ', symObjAddr: 0x990, symBinAddr: 0x73C30, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x90CCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x9C0, symBinAddr: 0x73C60, symSize: 0x30 } - - { offsetInCU: 0x98B, offset: 0x90CE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x9F0, symBinAddr: 0x73C90, symSize: 0x30 } - - { offsetInCU: 0x9A5, offset: 0x90CFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0xA20, symBinAddr: 0x73CC0, symSize: 0x30 } - - { offsetInCU: 0x9BF, offset: 0x90D19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPassword_WZ', symObjAddr: 0xA50, symBinAddr: 0x73CF0, symSize: 0x30 } - - { offsetInCU: 0x9E0, offset: 0x90D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0xA80, symBinAddr: 0x73D20, symSize: 0x30 } - - { offsetInCU: 0x9FA, offset: 0x90D54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0xAB0, symBinAddr: 0x73D50, symSize: 0x30 } - - { offsetInCU: 0xA14, offset: 0x90D6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6option_WZ', symObjAddr: 0xAE0, symBinAddr: 0x73D80, symSize: 0x30 } - - { offsetInCU: 0xA2E, offset: 0x90D88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0xB10, symBinAddr: 0x73DB0, symSize: 0x30 } - - { offsetInCU: 0xA48, offset: 0x90DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0xB40, symBinAddr: 0x73DE0, symSize: 0x30 } - - { offsetInCU: 0xA62, offset: 0x90DBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x73E10, symSize: 0x30 } - - { offsetInCU: 0xA7C, offset: 0x90DD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6device_WZ', symObjAddr: 0xBA0, symBinAddr: 0x73E40, symSize: 0x30 } - - { offsetInCU: 0xA96, offset: 0x90DF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0xBD0, symBinAddr: 0x73E70, symSize: 0x30 } - - { offsetInCU: 0xAB0, offset: 0x90E0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0xC00, symBinAddr: 0x73EA0, symSize: 0x30 } - - { offsetInCU: 0xACB, offset: 0x90E25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKey_WZ', symObjAddr: 0xC30, symBinAddr: 0x73ED0, symSize: 0x30 } - - { offsetInCU: 0xAE5, offset: 0x90E3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKey_WZ', symObjAddr: 0xC60, symBinAddr: 0x73F00, symSize: 0x30 } - - { offsetInCU: 0xAFF, offset: 0x90E59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKey_WZ', symObjAddr: 0xC90, symBinAddr: 0x73F30, symSize: 0x30 } - - { offsetInCU: 0xB19, offset: 0x90E73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKey_WZ', symObjAddr: 0xCC0, symBinAddr: 0x73F60, symSize: 0x30 } - - { offsetInCU: 0xB33, offset: 0x90E8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKey_WZ', symObjAddr: 0xCF0, symBinAddr: 0x73F90, symSize: 0x30 } - - { offsetInCU: 0xB4D, offset: 0x90EA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKey_WZ', symObjAddr: 0xD20, symBinAddr: 0x73FC0, symSize: 0x30 } - - { offsetInCU: 0xB67, offset: 0x90EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKey_WZ', symObjAddr: 0xD50, symBinAddr: 0x73FF0, symSize: 0x30 } - - { offsetInCU: 0xB81, offset: 0x90EDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0xD80, symBinAddr: 0x74020, symSize: 0x30 } - - { offsetInCU: 0xB9B, offset: 0x90EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKey_WZ', symObjAddr: 0xDB0, symBinAddr: 0x74050, symSize: 0x30 } - - { offsetInCU: 0xBB5, offset: 0x90F0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKey_WZ', symObjAddr: 0xDE0, symBinAddr: 0x74080, symSize: 0x30 } - - { offsetInCU: 0xBCF, offset: 0x90F29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKey_WZ', symObjAddr: 0xE10, symBinAddr: 0x740B0, symSize: 0x30 } - - { offsetInCU: 0xBE9, offset: 0x90F43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKey_WZ', symObjAddr: 0xE40, symBinAddr: 0x740E0, symSize: 0x30 } - - { offsetInCU: 0xC03, offset: 0x90F5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkey_WZ', symObjAddr: 0xE70, symBinAddr: 0x74110, symSize: 0x30 } - - { offsetInCU: 0xC1D, offset: 0x90F77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKey_WZ', symObjAddr: 0xEA0, symBinAddr: 0x74140, symSize: 0x30 } - - { offsetInCU: 0xC37, offset: 0x90F91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKey_WZ', symObjAddr: 0xED0, symBinAddr: 0x74170, symSize: 0x30 } - - { offsetInCU: 0xC51, offset: 0x90FAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKey_WZ', symObjAddr: 0xF00, symBinAddr: 0x741A0, symSize: 0x30 } - - { offsetInCU: 0xC6B, offset: 0x90FC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKey_WZ', symObjAddr: 0xF30, symBinAddr: 0x741D0, symSize: 0x30 } - - { offsetInCU: 0xC85, offset: 0x90FDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKey_WZ', symObjAddr: 0xF60, symBinAddr: 0x74200, symSize: 0x30 } - - { offsetInCU: 0xC9F, offset: 0x90FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKey_WZ', symObjAddr: 0xF90, symBinAddr: 0x74230, symSize: 0x30 } - - { offsetInCU: 0xCB9, offset: 0x91013, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKey_WZ', symObjAddr: 0xFC0, symBinAddr: 0x74260, symSize: 0x30 } - - { offsetInCU: 0xCD3, offset: 0x9102D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKey_WZ', symObjAddr: 0xFF0, symBinAddr: 0x74290, symSize: 0x30 } - - { offsetInCU: 0xCED, offset: 0x91047, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkey_WZ', symObjAddr: 0x1020, symBinAddr: 0x742C0, symSize: 0x30 } - - { offsetInCU: 0xD07, offset: 0x91061, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkey_WZ', symObjAddr: 0x1050, symBinAddr: 0x742F0, symSize: 0x30 } - - { offsetInCU: 0xD21, offset: 0x9107B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekey_WZ', symObjAddr: 0x1080, symBinAddr: 0x74320, symSize: 0x30 } - - { offsetInCU: 0xD3B, offset: 0x91095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkey_WZ', symObjAddr: 0x10B0, symBinAddr: 0x74350, symSize: 0x30 } - - { offsetInCU: 0xD55, offset: 0x910AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkey_WZ', symObjAddr: 0x10E0, symBinAddr: 0x74380, symSize: 0x30 } - - { offsetInCU: 0xD6F, offset: 0x910C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKey_WZ', symObjAddr: 0x1110, symBinAddr: 0x743B0, symSize: 0x30 } - - { offsetInCU: 0xD89, offset: 0x910E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKey_WZ', symObjAddr: 0x1140, symBinAddr: 0x743E0, symSize: 0x30 } - - { offsetInCU: 0xDA3, offset: 0x910FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKey_WZ', symObjAddr: 0x1170, symBinAddr: 0x74410, symSize: 0x30 } - - { offsetInCU: 0xDBD, offset: 0x91117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKey_WZ', symObjAddr: 0x11A0, symBinAddr: 0x74440, symSize: 0x30 } - - { offsetInCU: 0xDD7, offset: 0x91131, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKey_WZ', symObjAddr: 0x11D0, symBinAddr: 0x74470, symSize: 0x30 } - - { offsetInCU: 0xDF1, offset: 0x9114B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKey_WZ', symObjAddr: 0x1200, symBinAddr: 0x744A0, symSize: 0x30 } - - { offsetInCU: 0xE0B, offset: 0x91165, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKey_WZ', symObjAddr: 0x1230, symBinAddr: 0x744D0, symSize: 0x30 } - - { offsetInCU: 0xE25, offset: 0x9117F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0x1260, symBinAddr: 0x74500, symSize: 0x30 } - - { offsetInCU: 0xE3F, offset: 0x91199, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKey_WZ', symObjAddr: 0x1290, symBinAddr: 0x74530, symSize: 0x30 } - - { offsetInCU: 0xE59, offset: 0x911B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKey_WZ', symObjAddr: 0x12C0, symBinAddr: 0x74560, symSize: 0x30 } - - { offsetInCU: 0xE73, offset: 0x911CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKey_WZ', symObjAddr: 0x12F0, symBinAddr: 0x74590, symSize: 0x30 } - - { offsetInCU: 0xE8D, offset: 0x911E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKey_WZ', symObjAddr: 0x1320, symBinAddr: 0x745C0, symSize: 0x30 } - - { offsetInCU: 0xEA7, offset: 0x91201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKey_WZ', symObjAddr: 0x1350, symBinAddr: 0x745F0, symSize: 0x30 } - - { offsetInCU: 0xEC1, offset: 0x9121B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKey_WZ', symObjAddr: 0x1380, symBinAddr: 0x74620, symSize: 0x30 } - - { offsetInCU: 0xEDB, offset: 0x91235, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0x13B0, symBinAddr: 0x74650, symSize: 0x30 } - - { offsetInCU: 0xEF5, offset: 0x9124F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekey_WZ', symObjAddr: 0x13E0, symBinAddr: 0x74680, symSize: 0x30 } - - { offsetInCU: 0xF0F, offset: 0x91269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekey_WZ', symObjAddr: 0x1410, symBinAddr: 0x746B0, symSize: 0x30 } - - { offsetInCU: 0xF29, offset: 0x91283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkey_WZ', symObjAddr: 0x1440, symBinAddr: 0x746E0, symSize: 0x30 } - - { offsetInCU: 0xF97, offset: 0x912F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x1470, symBinAddr: 0x74710, symSize: 0x2B6 } - - { offsetInCU: 0x1226, offset: 0x91580, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x640, symBinAddr: 0x73900, symSize: 0x20 } - - { offsetInCU: 0x12E0, offset: 0x9163A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6A0, symBinAddr: 0x73960, symSize: 0x40 } - - { offsetInCU: 0x13B8, offset: 0x91712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E0, symBinAddr: 0x739A0, symSize: 0x30 } - - { offsetInCU: 0x1434, offset: 0x9178E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x710, symBinAddr: 0x739D0, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0x91957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x749D0, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x91999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x749D0, symSize: 0x20 } - - { offsetInCU: 0xB9, offset: 0x919E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x749F0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x91B26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1FD8, symBinAddr: 0x90D88, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x91B6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0x1B0, symBinAddr: 0x74BC0, symSize: 0x30 } - - { offsetInCU: 0x117, offset: 0x91BEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1E0, symBinAddr: 0x74BF0, symSize: 0x570 } - - { offsetInCU: 0x306, offset: 0x91DDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x790, symBinAddr: 0x75160, symSize: 0x50 } - - { offsetInCU: 0x375, offset: 0x91E4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x7F0, symBinAddr: 0x751C0, symSize: 0x50 } - - { offsetInCU: 0x3E4, offset: 0x91EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x850, symBinAddr: 0x75220, symSize: 0x50 } - - { offsetInCU: 0x453, offset: 0x91F2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x8B0, symBinAddr: 0x75280, symSize: 0x50 } - - { offsetInCU: 0x4C2, offset: 0x91F99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x910, symBinAddr: 0x752E0, symSize: 0x50 } - - { offsetInCU: 0x5C8, offset: 0x9209F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xA20, symBinAddr: 0x753A0, symSize: 0x40 } - - { offsetInCU: 0x639, offset: 0x92110, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xA60, symBinAddr: 0x753E0, symSize: 0x10 } - - { offsetInCU: 0x686, offset: 0x9215D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA70, symBinAddr: 0x753F0, symSize: 0x50 } - - { offsetInCU: 0x707, offset: 0x921DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0xBE0, symBinAddr: 0x75560, symSize: 0x30 } - - { offsetInCU: 0x768, offset: 0x9223F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xC10, symBinAddr: 0x75590, symSize: 0x50 } - - { offsetInCU: 0x7E9, offset: 0x922C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xC60, symBinAddr: 0x755E0, symSize: 0x40 } - - { offsetInCU: 0x884, offset: 0x9235B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xCA0, symBinAddr: 0x75620, symSize: 0x80 } - - { offsetInCU: 0x933, offset: 0x9240A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xD40, symBinAddr: 0x756A0, symSize: 0x70 } - - { offsetInCU: 0x9F6, offset: 0x924CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xDB0, symBinAddr: 0x75710, symSize: 0x80 } - - { offsetInCU: 0xAA5, offset: 0x9257C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xE30, symBinAddr: 0x75790, symSize: 0x30 } - - { offsetInCU: 0xB34, offset: 0x9260B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE60, symBinAddr: 0x757C0, symSize: 0x30 } - - { offsetInCU: 0xBC3, offset: 0x9269A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE90, symBinAddr: 0x757F0, symSize: 0x40 } - - { offsetInCU: 0xC53, offset: 0x9272A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xED0, symBinAddr: 0x75830, symSize: 0x40 } - - { offsetInCU: 0xCE6, offset: 0x927BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF10, symBinAddr: 0x75870, symSize: 0x40 } - - { offsetInCU: 0xD79, offset: 0x92850, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF50, symBinAddr: 0x758B0, symSize: 0x40 } - - { offsetInCU: 0xE0C, offset: 0x928E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF90, symBinAddr: 0x758F0, symSize: 0x40 } - - { offsetInCU: 0xE9F, offset: 0x92976, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xFD0, symBinAddr: 0x75930, symSize: 0x30 } - - { offsetInCU: 0xF08, offset: 0x929DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x1000, symBinAddr: 0x75960, symSize: 0x40 } - - { offsetInCU: 0xF69, offset: 0x92A40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x1040, symBinAddr: 0x759A0, symSize: 0x130 } - - { offsetInCU: 0x1050, offset: 0x92B27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0x1170, symBinAddr: 0x75AD0, symSize: 0xB0 } - - { offsetInCU: 0x1137, offset: 0x92C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1220, symBinAddr: 0x75B80, symSize: 0x90 } - - { offsetInCU: 0x11D2, offset: 0x92CA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x12B0, symBinAddr: 0x75C10, symSize: 0xF0 } - - { offsetInCU: 0x11FF, offset: 0x92CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x13A0, symBinAddr: 0x75D00, symSize: 0x20 } - - { offsetInCU: 0x12A5, offset: 0x92D7C, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xE0, symBinAddr: 0x74AF0, symSize: 0x50 } - - { offsetInCU: 0x12BD, offset: 0x92D94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x130, symBinAddr: 0x74B40, symSize: 0x80 } - - { offsetInCU: 0x135B, offset: 0x92E32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x7E0, symBinAddr: 0x751B0, symSize: 0x10 } - - { offsetInCU: 0x136F, offset: 0x92E46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x840, symBinAddr: 0x75210, symSize: 0x10 } - - { offsetInCU: 0x1383, offset: 0x92E5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x8A0, symBinAddr: 0x75270, symSize: 0x10 } - - { offsetInCU: 0x1397, offset: 0x92E6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x900, symBinAddr: 0x752D0, symSize: 0x10 } - - { offsetInCU: 0x13AB, offset: 0x92E82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x960, symBinAddr: 0x75330, symSize: 0x10 } - - { offsetInCU: 0x13BF, offset: 0x92E96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x9C0, symBinAddr: 0x75340, symSize: 0x20 } - - { offsetInCU: 0x13D3, offset: 0x92EAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOf', symObjAddr: 0x9E0, symBinAddr: 0x75360, symSize: 0x40 } - - { offsetInCU: 0x1434, offset: 0x92F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x16D0, symBinAddr: 0x76030, symSize: 0x10 } - - { offsetInCU: 0x1448, offset: 0x92F1F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16E0, symBinAddr: 0x76040, symSize: 0x20 } - - { offsetInCU: 0x145C, offset: 0x92F33, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1700, symBinAddr: 0x76060, symSize: 0x10 } - - { offsetInCU: 0x1492, offset: 0x92F69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1780, symBinAddr: 0x76070, symSize: 0x390 } - - { offsetInCU: 0x156A, offset: 0x93041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1B10, symBinAddr: 0x76400, symSize: 0x450 } - - { offsetInCU: 0x1686, offset: 0x9315D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x74A10, symSize: 0x10 } - - { offsetInCU: 0x16A2, offset: 0x93179, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x10, symBinAddr: 0x74A20, symSize: 0x10 } - - { offsetInCU: 0x16BE, offset: 0x93195, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x20, symBinAddr: 0x74A30, symSize: 0x10 } - - { offsetInCU: 0x16DA, offset: 0x931B1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0x30, symBinAddr: 0x74A40, symSize: 0x10 } - - { offsetInCU: 0x16F6, offset: 0x931CD, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x40, symBinAddr: 0x74A50, symSize: 0x10 } - - { offsetInCU: 0x1712, offset: 0x931E9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x74A60, symSize: 0x10 } - - { offsetInCU: 0x172E, offset: 0x93205, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x60, symBinAddr: 0x74A70, symSize: 0x10 } - - { offsetInCU: 0x174A, offset: 0x93221, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x70, symBinAddr: 0x74A80, symSize: 0x10 } - - { offsetInCU: 0x1766, offset: 0x9323D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x80, symBinAddr: 0x74A90, symSize: 0x10 } - - { offsetInCU: 0x1782, offset: 0x93259, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x90, symBinAddr: 0x74AA0, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x93275, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0xA0, symBinAddr: 0x74AB0, symSize: 0x20 } - - { offsetInCU: 0x17BA, offset: 0x93291, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0xC0, symBinAddr: 0x74AD0, symSize: 0x20 } -... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket b/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket deleted file mode 100644 index dbcc0d0..0000000 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS deleted file mode 100755 index a2f48d1..0000000 Binary files a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json deleted file mode 100644 index 169ab97..0000000 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json +++ /dev/null @@ -1,22932 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS12ReachabilityC", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2_AWS.DebugConfig", - "usr": "s:15IoTConnect2_AWS11DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2_AWS.MqttConfig", - "usr": "s:15IoTConnect2_AWS10MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS11DebugConfigV", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS10MqttConfigV", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PREQA", - "printedName": "PREQA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "POC", - "printedName": "POC", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS0A4TCPfO", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS9SSLOptionV", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS11CommandTypeO", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS9SDKClientC", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", - "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4310, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34350, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34392, - "length": 48, - "value": "\"twinPropertySubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34421, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34515, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34565, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34614, - "length": 48, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34643, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34661, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34737, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34787, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34891, - "length": 11, - "value": "\"subForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34988, - "length": 11, - "value": "\"pubForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 89, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2295, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2315, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2406, - "length": 92, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2448, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2477, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2497, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2549, - "length": 93, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2580, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2413, - "length": 26, - "value": "\"SDKClient initialize AWS\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS deleted file mode 100644 index 8c3d4b1..0000000 Binary files a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml deleted file mode 100644 index 6c2b159..0000000 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml +++ /dev/null @@ -1,1833 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' -relocations: - - { offsetInCU: 0x34, offset: 0x57F7E, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6D7D0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x57FB3, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6D808, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58018, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E128, symBinAddr: 0x88A20, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58043, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x407C, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5805F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x40C0, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x5807B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x40C4, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x580D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x4380, symSize: 0xDC0 } - - { offsetInCU: 0x45B, offset: 0x58424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x1180, symBinAddr: 0x5140, symSize: 0x384 } - - { offsetInCU: 0x4BE, offset: 0x58487, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1504, symBinAddr: 0x54C4, symSize: 0x20 } - - { offsetInCU: 0x4EB, offset: 0x584B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x16D0, symBinAddr: 0x5690, symSize: 0x6C8 } - - { offsetInCU: 0x7EF, offset: 0x587B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D98, symBinAddr: 0x5D58, symSize: 0x3E4 } - - { offsetInCU: 0xAA5, offset: 0x58A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x217C, symBinAddr: 0x613C, symSize: 0x914 } - - { offsetInCU: 0xF7B, offset: 0x58F44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A90, symBinAddr: 0x6A50, symSize: 0x678 } - - { offsetInCU: 0x1375, offset: 0x5933E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3108, symBinAddr: 0x70C8, symSize: 0x3C18 } - - { offsetInCU: 0x2E6B, offset: 0x5AE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6D30, symBinAddr: 0xACE0, symSize: 0x150 } - - { offsetInCU: 0x2F55, offset: 0x5AF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6E80, symBinAddr: 0xAE30, symSize: 0x304 } - - { offsetInCU: 0x3146, offset: 0x5B10F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7184, symBinAddr: 0xB134, symSize: 0x3C8 } - - { offsetInCU: 0x34AF, offset: 0x5B478, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x754C, symBinAddr: 0xB4FC, symSize: 0x2E4 } - - { offsetInCU: 0x3683, offset: 0x5B64C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x7830, symBinAddr: 0xB7E0, symSize: 0x240 } - - { offsetInCU: 0x3815, offset: 0x5B7DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x7A70, symBinAddr: 0xBA20, symSize: 0x244 } - - { offsetInCU: 0x39A7, offset: 0x5B970, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7CB4, symBinAddr: 0xBC64, symSize: 0x430 } - - { offsetInCU: 0x3B10, offset: 0x5BAD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x80E4, symBinAddr: 0xC094, symSize: 0x650 } - - { offsetInCU: 0x3E23, offset: 0x5BDEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x8734, symBinAddr: 0xC6E4, symSize: 0x224 } - - { offsetInCU: 0x4034, offset: 0x5BFFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9B80, symBinAddr: 0xDB30, symSize: 0x15A8 } - - { offsetInCU: 0x5710, offset: 0x5D6D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4000, symSize: 0x3C } - - { offsetInCU: 0x5740, offset: 0x5D709, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x403C, symSize: 0x40 } - - { offsetInCU: 0x5909, offset: 0x5D8D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1524, symBinAddr: 0x54E4, symSize: 0x8 } - - { offsetInCU: 0x591D, offset: 0x5D8E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x152C, symBinAddr: 0x54EC, symSize: 0x3C } - - { offsetInCU: 0x5931, offset: 0x5D8FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1568, symBinAddr: 0x5528, symSize: 0x168 } - - { offsetInCU: 0x5E77, offset: 0x5DE40, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x89CC, symBinAddr: 0xC97C, symSize: 0xC } - - { offsetInCU: 0x5E8B, offset: 0x5DE54, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x89D8, symBinAddr: 0xC988, symSize: 0x4 } - - { offsetInCU: 0x5E9F, offset: 0x5DE68, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x89DC, symBinAddr: 0xC98C, symSize: 0x20 } - - { offsetInCU: 0x5EB3, offset: 0x5DE7C, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x89FC, symBinAddr: 0xC9AC, symSize: 0x28 } - - { offsetInCU: 0x5FC4, offset: 0x5DF8D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8F34, symBinAddr: 0xCEE4, symSize: 0x2C } - - { offsetInCU: 0x5FD8, offset: 0x5DFA1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F60, symBinAddr: 0xCF10, symSize: 0x2C } - - { offsetInCU: 0x5FEC, offset: 0x5DFB5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8FCC, symBinAddr: 0xCF7C, symSize: 0x2C } - - { offsetInCU: 0x6000, offset: 0x5DFC9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8FF8, symBinAddr: 0xCFA8, symSize: 0x2C } - - { offsetInCU: 0x6035, offset: 0x5DFFE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x9214, symBinAddr: 0xD1C4, symSize: 0x210 } - - { offsetInCU: 0x6087, offset: 0x5E050, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x9424, symBinAddr: 0xD3D4, symSize: 0x68 } - - { offsetInCU: 0x60E8, offset: 0x5E0B1, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x95E8, symBinAddr: 0xD598, symSize: 0x1DC } - - { offsetInCU: 0x6633, offset: 0x5E5FC, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB198, symBinAddr: 0xF148, symSize: 0x40 } - - { offsetInCU: 0x6647, offset: 0x5E610, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB1D8, symBinAddr: 0xF188, symSize: 0x20 } - - { offsetInCU: 0x665B, offset: 0x5E624, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB1F8, symBinAddr: 0xF1A8, symSize: 0x10 } - - { offsetInCU: 0x666F, offset: 0x5E638, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB208, symBinAddr: 0xF1B8, symSize: 0x3C } - - { offsetInCU: 0x6683, offset: 0x5E64C, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB2A4, symBinAddr: 0xF254, symSize: 0x44 } - - { offsetInCU: 0x6697, offset: 0x5E660, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB454, symBinAddr: 0xF404, symSize: 0x10 } - - { offsetInCU: 0x66AB, offset: 0x5E674, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB464, symBinAddr: 0xF414, symSize: 0x10 } - - { offsetInCU: 0x66BF, offset: 0x5E688, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xB474, symBinAddr: 0xF424, symSize: 0x5C } - - { offsetInCU: 0x66D3, offset: 0x5E69C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xB4D0, symBinAddr: 0xF480, symSize: 0x30C } - - { offsetInCU: 0x66E7, offset: 0x5E6B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB7DC, symBinAddr: 0xF78C, symSize: 0x240 } - - { offsetInCU: 0x66FB, offset: 0x5E6C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xBA1C, symBinAddr: 0xF9CC, symSize: 0x70 } - - { offsetInCU: 0x670F, offset: 0x5E6D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xBA8C, symBinAddr: 0xFA3C, symSize: 0x34 } - - { offsetInCU: 0x6723, offset: 0x5E6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xBAC0, symBinAddr: 0xFA70, symSize: 0x174 } - - { offsetInCU: 0x6737, offset: 0x5E700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xBC34, symBinAddr: 0xFBE4, symSize: 0xB4 } - - { offsetInCU: 0x674B, offset: 0x5E714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xBCE8, symBinAddr: 0xFC98, symSize: 0x10 } - - { offsetInCU: 0x675F, offset: 0x5E728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xBCF8, symBinAddr: 0xFCA8, symSize: 0x34 } - - { offsetInCU: 0x6773, offset: 0x5E73C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xBDAC, symBinAddr: 0xFD5C, symSize: 0x5C } - - { offsetInCU: 0x6787, offset: 0x5E750, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBEAC, symBinAddr: 0xFE5C, symSize: 0x2C } - - { offsetInCU: 0x679B, offset: 0x5E764, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBED8, symBinAddr: 0xFE88, symSize: 0x2C } - - { offsetInCU: 0x67AF, offset: 0x5E778, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBF04, symBinAddr: 0xFEB4, symSize: 0x2C } - - { offsetInCU: 0x67C3, offset: 0x5E78C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBF30, symBinAddr: 0xFEE0, symSize: 0x2C } - - { offsetInCU: 0x67D7, offset: 0x5E7A0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBF5C, symBinAddr: 0xFF0C, symSize: 0x2C } - - { offsetInCU: 0x67EB, offset: 0x5E7B4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBF88, symBinAddr: 0xFF38, symSize: 0x2C } - - { offsetInCU: 0x67FF, offset: 0x5E7C8, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBFB4, symBinAddr: 0xFF64, symSize: 0x2C } - - { offsetInCU: 0x6C07, offset: 0x5EBD0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8A38, symBinAddr: 0xC9E8, symSize: 0x14 } - - { offsetInCU: 0x6C45, offset: 0x5EC0E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8A58, symBinAddr: 0xCA08, symSize: 0x8 } - - { offsetInCU: 0x6C94, offset: 0x5EC5D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A60, symBinAddr: 0xCA10, symSize: 0x14 } - - { offsetInCU: 0x6D31, offset: 0x5ECFA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A74, symBinAddr: 0xCA24, symSize: 0x14 } - - { offsetInCU: 0x6DC6, offset: 0x5ED8F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A88, symBinAddr: 0xCA38, symSize: 0x14 } - - { offsetInCU: 0x6E63, offset: 0x5EE2C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A9C, symBinAddr: 0xCA4C, symSize: 0x30 } - - { offsetInCU: 0x6FD6, offset: 0x5EF9F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8ACC, symBinAddr: 0xCA7C, symSize: 0x2C } - - { offsetInCU: 0x7163, offset: 0x5F12C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8AF8, symBinAddr: 0xCAA8, symSize: 0x24 } - - { offsetInCU: 0x724F, offset: 0x5F218, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8B1C, symBinAddr: 0xCACC, symSize: 0x14 } - - { offsetInCU: 0x72B5, offset: 0x5F27E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8B30, symBinAddr: 0xCAE0, symSize: 0x14 } - - { offsetInCU: 0x731B, offset: 0x5F2E4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8B44, symBinAddr: 0xCAF4, symSize: 0x14 } - - { offsetInCU: 0x7390, offset: 0x5F359, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8B58, symBinAddr: 0xCB08, symSize: 0x14 } - - { offsetInCU: 0x7439, offset: 0x5F402, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B6C, symBinAddr: 0xCB1C, symSize: 0x14 } - - { offsetInCU: 0x74B0, offset: 0x5F479, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B80, symBinAddr: 0xCB30, symSize: 0x14 } - - { offsetInCU: 0x7568, offset: 0x5F531, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B94, symBinAddr: 0xCB44, symSize: 0x14 } - - { offsetInCU: 0x7602, offset: 0x5F5CB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8BA8, symBinAddr: 0xCB58, symSize: 0x10 } - - { offsetInCU: 0x766A, offset: 0x5F633, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8BB8, symBinAddr: 0xCB68, symSize: 0x28 } - - { offsetInCU: 0x7686, offset: 0x5F64F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8BE0, symBinAddr: 0xCB90, symSize: 0x14 } - - { offsetInCU: 0x7702, offset: 0x5F6CB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8C10, symBinAddr: 0xCBC0, symSize: 0x14 } - - { offsetInCU: 0x7733, offset: 0x5F6FC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8C24, symBinAddr: 0xCBD4, symSize: 0x14 } - - { offsetInCU: 0x7764, offset: 0x5F72D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8C38, symBinAddr: 0xCBE8, symSize: 0x14 } - - { offsetInCU: 0x7795, offset: 0x5F75E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8C4C, symBinAddr: 0xCBFC, symSize: 0x30 } - - { offsetInCU: 0x77C4, offset: 0x5F78D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C7C, symBinAddr: 0xCC2C, symSize: 0x2C } - - { offsetInCU: 0x77F5, offset: 0x5F7BE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8CA8, symBinAddr: 0xCC58, symSize: 0x24 } - - { offsetInCU: 0x7826, offset: 0x5F7EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8CCC, symBinAddr: 0xCC7C, symSize: 0x14 } - - { offsetInCU: 0x7857, offset: 0x5F820, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8CE0, symBinAddr: 0xCC90, symSize: 0x14 } - - { offsetInCU: 0x7888, offset: 0x5F851, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8CF4, symBinAddr: 0xCCA4, symSize: 0x14 } - - { offsetInCU: 0x78B9, offset: 0x5F882, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8D08, symBinAddr: 0xCCB8, symSize: 0x14 } - - { offsetInCU: 0x78EA, offset: 0x5F8B3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8D1C, symBinAddr: 0xCCCC, symSize: 0x14 } - - { offsetInCU: 0x791B, offset: 0x5F8E4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8D30, symBinAddr: 0xCCE0, symSize: 0x14 } - - { offsetInCU: 0x794C, offset: 0x5F915, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8D44, symBinAddr: 0xCCF4, symSize: 0x14 } - - { offsetInCU: 0x797D, offset: 0x5F946, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8D58, symBinAddr: 0xCD08, symSize: 0x10 } - - { offsetInCU: 0x79AE, offset: 0x5F977, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D68, symBinAddr: 0xCD18, symSize: 0x28 } - - { offsetInCU: 0x79CA, offset: 0x5F993, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D90, symBinAddr: 0xCD40, symSize: 0x14 } - - { offsetInCU: 0x7A0A, offset: 0x5F9D3, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8DB0, symBinAddr: 0xCD60, symSize: 0x40 } - - { offsetInCU: 0x7A88, offset: 0x5FA51, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8DF0, symBinAddr: 0xCDA0, symSize: 0x70 } - - { offsetInCU: 0x7B1B, offset: 0x5FAE4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EA8, symBinAddr: 0xCE58, symSize: 0x4 } - - { offsetInCU: 0x7B3B, offset: 0x5FB04, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EA8, symBinAddr: 0xCE58, symSize: 0x4 } - - { offsetInCU: 0x7B5B, offset: 0x5FB24, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EAC, symBinAddr: 0xCE5C, symSize: 0x4 } - - { offsetInCU: 0x7B7B, offset: 0x5FB44, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EAC, symBinAddr: 0xCE5C, symSize: 0x4 } - - { offsetInCU: 0x7BA1, offset: 0x5FB6A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8EB0, symBinAddr: 0xCE60, symSize: 0x40 } - - { offsetInCU: 0x7C10, offset: 0x5FBD9, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8EF0, symBinAddr: 0xCEA0, symSize: 0x8 } - - { offsetInCU: 0x7C3B, offset: 0x5FC04, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8EF8, symBinAddr: 0xCEA8, symSize: 0x3C } - - { offsetInCU: 0x7C6C, offset: 0x5FC35, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9024, symBinAddr: 0xCFD4, symSize: 0x14 } - - { offsetInCU: 0x7C9D, offset: 0x5FC66, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x9038, symBinAddr: 0xCFE8, symSize: 0x3C } - - { offsetInCU: 0x7CDD, offset: 0x5FCA6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9074, symBinAddr: 0xD024, symSize: 0x88 } - - { offsetInCU: 0x7D5E, offset: 0x5FD27, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9190, symBinAddr: 0xD140, symSize: 0x84 } - - { offsetInCU: 0x7D92, offset: 0x5FD5B, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x97C4, symBinAddr: 0xD774, symSize: 0xB0 } - - { offsetInCU: 0x7E7E, offset: 0x5FE47, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9874, symBinAddr: 0xD824, symSize: 0x1F0 } - - { offsetInCU: 0x80AD, offset: 0x60076, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x80CD, offset: 0x60096, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x80E1, offset: 0x600AA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8101, offset: 0x600CA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8115, offset: 0x600DE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8129, offset: 0x600F2, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x813D, offset: 0x60106, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8220, offset: 0x601E9, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8240, offset: 0x60209, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8254, offset: 0x6021D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8274, offset: 0x6023D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8288, offset: 0x60251, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x829C, offset: 0x60265, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x82B0, offset: 0x60279, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8357, offset: 0x60320, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBFE0, symBinAddr: 0xFF90, symSize: 0x80 } - - { offsetInCU: 0x83E8, offset: 0x603B1, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xC060, symBinAddr: 0x10010, symSize: 0x90 } - - { offsetInCU: 0x85AA, offset: 0x60573, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x9108, symBinAddr: 0xD0B8, symSize: 0x10 } - - { offsetInCU: 0x85C6, offset: 0x6058F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x9118, symBinAddr: 0xD0C8, symSize: 0xC } - - { offsetInCU: 0x8630, offset: 0x605F9, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x9124, symBinAddr: 0xD0D4, symSize: 0x44 } - - { offsetInCU: 0x8659, offset: 0x60622, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x9168, symBinAddr: 0xD118, symSize: 0x28 } - - { offsetInCU: 0x8694, offset: 0x6065D, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x90FC, symBinAddr: 0xD0AC, symSize: 0xC } - - { offsetInCU: 0x8772, offset: 0x6073B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8A4C, symBinAddr: 0xC9FC, symSize: 0xC } - - { offsetInCU: 0x87A4, offset: 0x6076D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8BF4, symBinAddr: 0xCBA4, symSize: 0x10 } - - { offsetInCU: 0x87C0, offset: 0x60789, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8C04, symBinAddr: 0xCBB4, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x60991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100D0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x609B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100D0, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x609E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x100E0, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x60B14, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x1010C, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x60B28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x10120, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x60B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x10130, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x60BB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x10150, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x60C1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0x10168, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x60C97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0x10194, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x60CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0x1019C, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x60CF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0x101C0, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x60D0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0x101CC, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x60D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x20F8, symBinAddr: 0x121F8, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x60D71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0x10228, symSize: 0x41C } - - { offsetInCU: 0x2F5, offset: 0x60DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1428, symBinAddr: 0x11528, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x60DFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1478, symBinAddr: 0x11578, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x60E20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x24CC, symBinAddr: 0x125CC, symSize: 0x145C } - - { offsetInCU: 0x381, offset: 0x60E52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x544, symBinAddr: 0x10644, symSize: 0x110 } - - { offsetInCU: 0x3CD, offset: 0x60E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14C8, symBinAddr: 0x115C8, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x60EF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x14D0, symBinAddr: 0x115D0, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x60FD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x11610, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11670, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61075, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11670, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x61095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x11674, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x610C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x159C, symBinAddr: 0x1169C, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x610E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15A8, symBinAddr: 0x116A8, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x610FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3928, symBinAddr: 0x13A28, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x61142, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvgTf4d_n', symObjAddr: 0x3994, symBinAddr: 0x13A94, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x61176, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1604, symBinAddr: 0x11704, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x611AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1654, symBinAddr: 0x11754, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x611D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x39A0, symBinAddr: 0x13AA0, symSize: 0x258 } - - { offsetInCU: 0x771, offset: 0x61242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x654, symBinAddr: 0x10754, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x6126D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16A4, symBinAddr: 0x117A4, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x61298, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16AC, symBinAddr: 0x117AC, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x612C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16D0, symBinAddr: 0x117D0, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x612E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16DC, symBinAddr: 0x117DC, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x61301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5B54, symBinAddr: 0x15C10, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x61347, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x674, symBinAddr: 0x10774, symSize: 0x18C } - - { offsetInCU: 0x8CB, offset: 0x6139C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1738, symBinAddr: 0x11838, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x613D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1788, symBinAddr: 0x11888, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x613F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x15DA8, symSize: 0x320 } - - { offsetInCU: 0x975, offset: 0x61446, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x800, symBinAddr: 0x10900, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x61471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17C8, symBinAddr: 0x118C8, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x6149C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17D0, symBinAddr: 0x118D0, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x614CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x17F4, symBinAddr: 0x118F4, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x614E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x600C, symBinAddr: 0x160C8, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x6152F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x820, symBinAddr: 0x10920, symSize: 0x164 } - - { offsetInCU: 0xAB3, offset: 0x61584, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1850, symBinAddr: 0x11950, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x615BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1890, symBinAddr: 0x11990, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x615DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6164, symBinAddr: 0x16220, symSize: 0x2D8 } - - { offsetInCU: 0xB51, offset: 0x61622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x984, symBinAddr: 0x10A84, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x6164D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18C8, symBinAddr: 0x119C8, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x61678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x119D0, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x616A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18F4, symBinAddr: 0x119F4, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x616C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1900, symBinAddr: 0x11A00, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x616E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x643C, symBinAddr: 0x164F8, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x61727, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9A4, symBinAddr: 0x10AA4, symSize: 0x1B4 } - - { offsetInCU: 0xCAB, offset: 0x6177C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x195C, symBinAddr: 0x11A5C, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x617B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19CC, symBinAddr: 0x11ACC, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x617D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6584, symBinAddr: 0x16640, symSize: 0x4E8 } - - { offsetInCU: 0xD55, offset: 0x61826, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xB58, symBinAddr: 0x10C58, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x11B2C, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x6187C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A34, symBinAddr: 0x11B34, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x618AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A58, symBinAddr: 0x11B58, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x618C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A64, symBinAddr: 0x11B64, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x618E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B38, symBinAddr: 0x16BF4, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x6192B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB78, symBinAddr: 0x10C78, symSize: 0x204 } - - { offsetInCU: 0xEAF, offset: 0x61980, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x11BC0, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x619B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B24, symBinAddr: 0x11C24, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x619DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6DAC, symBinAddr: 0x16E68, symSize: 0x58C } - - { offsetInCU: 0xF59, offset: 0x61A2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xD7C, symBinAddr: 0x10E7C, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61A75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B74, symBinAddr: 0x11C74, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x61B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1B8C, symBinAddr: 0x11C8C, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x61BE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1BD0, symBinAddr: 0x11CD0, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x61C5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x11D38, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x61C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C40, symBinAddr: 0x11D40, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x61CB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1C64, symBinAddr: 0x11D64, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x61CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C70, symBinAddr: 0x11D70, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x61CEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x737C, symBinAddr: 0x17438, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x61D35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD94, symBinAddr: 0x10E94, symSize: 0x128 } - - { offsetInCU: 0x12B9, offset: 0x61D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1CCC, symBinAddr: 0x11DCC, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x61DC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CF8, symBinAddr: 0x11DF8, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x61DE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7434, symBinAddr: 0x174F0, symSize: 0x1B0 } - - { offsetInCU: 0x136F, offset: 0x61E40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xEBC, symBinAddr: 0x10FBC, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x61E6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1D14, symBinAddr: 0x11E14, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x61E96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D1C, symBinAddr: 0x11E1C, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x61EC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D40, symBinAddr: 0x11E40, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x61EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D4C, symBinAddr: 0x11E4C, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x61EFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7628, symBinAddr: 0x176E4, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x61F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEDC, symBinAddr: 0x10FDC, symSize: 0x1DC } - - { offsetInCU: 0x14C9, offset: 0x61F9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DA8, symBinAddr: 0x11EA8, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x61FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E00, symBinAddr: 0x11F00, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x61FF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x783C, symBinAddr: 0x178F8, symSize: 0x370 } - - { offsetInCU: 0x1567, offset: 0x62038, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x10B8, symBinAddr: 0x111B8, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1E48, symBinAddr: 0x11F48, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x6208E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E50, symBinAddr: 0x11F50, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x620BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E74, symBinAddr: 0x11F74, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x620DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x11F80, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x620F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7BAC, symBinAddr: 0x17C68, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x6213D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10D8, symBinAddr: 0x111D8, symSize: 0x1FC } - - { offsetInCU: 0x16C1, offset: 0x62192, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EDC, symBinAddr: 0x11FDC, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x621C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F24, symBinAddr: 0x12024, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x621EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D80, symBinAddr: 0x17E3C, symSize: 0x390 } - - { offsetInCU: 0x176B, offset: 0x6223C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x12D4, symBinAddr: 0x113D4, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x62267, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FE8, symBinAddr: 0x120E8, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x62292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FF0, symBinAddr: 0x120F0, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x622C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2014, symBinAddr: 0x12114, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x622DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2020, symBinAddr: 0x12120, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x622FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8198, symBinAddr: 0x18254, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x62341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12EC, symBinAddr: 0x113EC, symSize: 0x13C } - - { offsetInCU: 0x18C5, offset: 0x62396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x207C, symBinAddr: 0x1217C, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x623CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x20C0, symBinAddr: 0x121C0, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x623F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8294, symBinAddr: 0x18350, symSize: 0x1DC } - - { offsetInCU: 0x195C, offset: 0x6242D, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3C38, symBinAddr: 0x13CF8, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x62441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3C5C, symBinAddr: 0x13D1C, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62455, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3CA0, symBinAddr: 0x13D60, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x62469, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3CC0, symBinAddr: 0x13D80, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x6247D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3D04, symBinAddr: 0x13DC4, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x62491, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3D48, symBinAddr: 0x13E08, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x624A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3D50, symBinAddr: 0x13E0C, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x624B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x3DA0, symBinAddr: 0x13E5C, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x624CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x3E2C, symBinAddr: 0x13EE8, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x624E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x3E34, symBinAddr: 0x13EF0, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x624F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x3E38, symBinAddr: 0x13EF4, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x62509, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x3E3C, symBinAddr: 0x13EF8, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x6251D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x3E4C, symBinAddr: 0x13F08, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62531, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x4714, symBinAddr: 0x147D0, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x4724, symBinAddr: 0x147E0, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x62559, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4728, symBinAddr: 0x147E4, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x6256D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x476C, symBinAddr: 0x14828, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x62581, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4770, symBinAddr: 0x1482C, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x62595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x47B4, symBinAddr: 0x14870, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x625A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x47B8, symBinAddr: 0x14874, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x625BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x47FC, symBinAddr: 0x148B8, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x625D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4840, symBinAddr: 0x148FC, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x625E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4884, symBinAddr: 0x14940, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x625F9, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x48C8, symBinAddr: 0x14984, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x6260D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x490C, symBinAddr: 0x149C8, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62621, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4950, symBinAddr: 0x14A0C, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62635, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x4994, symBinAddr: 0x14A50, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x62649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x49D8, symBinAddr: 0x14A94, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x6265D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x14AD8, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62671, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x4A60, symBinAddr: 0x14B1C, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x62685, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x14B60, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x62699, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x14BA4, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x626AD, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4B2C, symBinAddr: 0x14BE8, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x626C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4B38, symBinAddr: 0x14BF4, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x626D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4BC8, symBinAddr: 0x14C84, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x626E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4C84, symBinAddr: 0x14D40, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x626FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4C8C, symBinAddr: 0x14D48, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4C90, symBinAddr: 0x14D4C, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4C98, symBinAddr: 0x14D54, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x62739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4CA8, symBinAddr: 0x14D64, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x6274D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4CD0, symBinAddr: 0x14D8C, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4D14, symBinAddr: 0x14DD0, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62775, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4D88, symBinAddr: 0x14E44, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x62789, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4D9C, symBinAddr: 0x14E58, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x6279D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x4DE8, symBinAddr: 0x14EA4, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x627B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x4E30, symBinAddr: 0x14EEC, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x627C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x4E78, symBinAddr: 0x14F34, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x627D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x4E88, symBinAddr: 0x14F44, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x627ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x4EC0, symBinAddr: 0x14F7C, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x4F34, symBinAddr: 0x14FF0, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62815, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4FF0, symBinAddr: 0x150AC, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x62829, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x500C, symBinAddr: 0x150C8, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x6283D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5088, symBinAddr: 0x15144, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x50D0, symBinAddr: 0x1518C, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x5124, symBinAddr: 0x151E0, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x62879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x5134, symBinAddr: 0x151F0, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x6288D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x515C, symBinAddr: 0x15218, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x628A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5198, symBinAddr: 0x15254, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x628B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5204, symBinAddr: 0x152C0, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x628C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5210, symBinAddr: 0x152CC, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x628DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5254, symBinAddr: 0x15310, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x628F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x529C, symBinAddr: 0x15358, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62905, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x52DC, symBinAddr: 0x15398, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x62919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x52EC, symBinAddr: 0x153A8, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x6292D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x533C, symBinAddr: 0x153F8, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x53E8, symBinAddr: 0x154A4, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62955, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x54FC, symBinAddr: 0x155B8, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x62969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5528, symBinAddr: 0x155E4, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x6297D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x55C4, symBinAddr: 0x15680, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x62991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x560C, symBinAddr: 0x156C8, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x629A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x5668, symBinAddr: 0x15724, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x629B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x5678, symBinAddr: 0x15734, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x629CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x56D0, symBinAddr: 0x1578C, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x629E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x5794, symBinAddr: 0x15850, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x629F5, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x58D8, symBinAddr: 0x15994, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62A09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x590C, symBinAddr: 0x159C8, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62A1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x59C0, symBinAddr: 0x15A7C, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62A31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5A08, symBinAddr: 0x15AC4, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x5A6C, symBinAddr: 0x15B28, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5A7C, symBinAddr: 0x15B38, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x5A80, symBinAddr: 0x15B3C, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5AC4, symBinAddr: 0x15B80, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62A95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5AC8, symBinAddr: 0x15B84, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62AA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5B0C, symBinAddr: 0x15BC8, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62ABD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5B10, symBinAddr: 0x15BCC, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62AD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x6A6C, symBinAddr: 0x16B28, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x62AE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x6AB0, symBinAddr: 0x16B6C, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x62AF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6AF4, symBinAddr: 0x16BB0, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x62B0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7338, symBinAddr: 0x173F4, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x62B21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x75E4, symBinAddr: 0x176A0, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x62B35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8110, symBinAddr: 0x181CC, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x62B49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8154, symBinAddr: 0x18210, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x62B5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8470, symBinAddr: 0x1852C, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x62B71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x84B4, symBinAddr: 0x18570, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x62B85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x84F8, symBinAddr: 0x185B4, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x62B99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x85A0, symBinAddr: 0x1865C, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x62BAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x85E4, symBinAddr: 0x186A0, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x62BC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8674, symBinAddr: 0x18730, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x62BD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8730, symBinAddr: 0x187EC, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x62BE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8734, symBinAddr: 0x187F0, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x62BFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8744, symBinAddr: 0x18800, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x62C11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x87D4, symBinAddr: 0x18890, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x62C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8890, symBinAddr: 0x1894C, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x62C39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8894, symBinAddr: 0x18950, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x62C4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x88A4, symBinAddr: 0x18960, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x62C61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8934, symBinAddr: 0x189F0, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x62C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x89F0, symBinAddr: 0x18AAC, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x62C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x89F8, symBinAddr: 0x18AB4, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x62C9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x89FC, symBinAddr: 0x18AB8, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x62CB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A08, symBinAddr: 0x18AC4, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x62CC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8A18, symBinAddr: 0x18AD4, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x62CD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8AA8, symBinAddr: 0x18B64, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x62CED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8B64, symBinAddr: 0x18C20, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x62D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8B68, symBinAddr: 0x18C24, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x62D15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8B80, symBinAddr: 0x18C3C, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x62D29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8B84, symBinAddr: 0x18C40, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x62D3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8B94, symBinAddr: 0x18C50, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x62D51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8BCC, symBinAddr: 0x18C88, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x62D65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8C40, symBinAddr: 0x18CFC, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x62D79, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8D04, symBinAddr: 0x18DC0, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x62D8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x8D28, symBinAddr: 0x18DE4, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x62DA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x8D9C, symBinAddr: 0x18E58, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x62DB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x8DE4, symBinAddr: 0x18EA0, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x62DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x8E38, symBinAddr: 0x18EF4, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x62DDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x8E48, symBinAddr: 0x18F04, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x62DF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x8E80, symBinAddr: 0x18F3C, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x62E05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x8EE4, symBinAddr: 0x18FA0, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x62E19, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8F90, symBinAddr: 0x1904C, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x62E2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x8FA4, symBinAddr: 0x19060, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x62E41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x9008, symBinAddr: 0x190C4, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x62E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9050, symBinAddr: 0x1910C, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x62E69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x90A0, symBinAddr: 0x1915C, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x62E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x90B0, symBinAddr: 0x1916C, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x62E91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x90E8, symBinAddr: 0x191A4, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x62EA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9154, symBinAddr: 0x19210, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x62EB9, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9208, symBinAddr: 0x192C4, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x62ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x922C, symBinAddr: 0x192E8, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x62EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9298, symBinAddr: 0x19354, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x62EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x92E0, symBinAddr: 0x1939C, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x62F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9330, symBinAddr: 0x193EC, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x62F1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9340, symBinAddr: 0x193FC, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x62F31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9344, symBinAddr: 0x19400, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x62F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9388, symBinAddr: 0x19444, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x62F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x938C, symBinAddr: 0x19448, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x62F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x93D0, symBinAddr: 0x1948C, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x62F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x93D4, symBinAddr: 0x19490, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x62F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9418, symBinAddr: 0x194D4, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x62FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x941C, symBinAddr: 0x194D8, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x62FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9460, symBinAddr: 0x1951C, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x62FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9464, symBinAddr: 0x19520, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x62FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x94A8, symBinAddr: 0x19564, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x62FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x94AC, symBinAddr: 0x19568, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x6300D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94F0, symBinAddr: 0x195AC, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x63021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94F4, symBinAddr: 0x195B0, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9538, symBinAddr: 0x195F4, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x63049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x953C, symBinAddr: 0x195F8, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x6305D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9580, symBinAddr: 0x1963C, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x63071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9584, symBinAddr: 0x19640, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x63085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95C8, symBinAddr: 0x19684, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x63099, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95CC, symBinAddr: 0x19688, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x630AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9610, symBinAddr: 0x196CC, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x630C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9614, symBinAddr: 0x196D0, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x630D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9658, symBinAddr: 0x19714, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x630E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x965C, symBinAddr: 0x19718, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x630FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96A0, symBinAddr: 0x1975C, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x63111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96A4, symBinAddr: 0x19760, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x96E8, symBinAddr: 0x197A4, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x63139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x96EC, symBinAddr: 0x197A8, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x6314D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9730, symBinAddr: 0x197EC, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x63161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9734, symBinAddr: 0x197F0, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9778, symBinAddr: 0x19834, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x63189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x97BC, symBinAddr: 0x19878, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x6319D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9800, symBinAddr: 0x198BC, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x631B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9844, symBinAddr: 0x19900, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x631C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x98D4, symBinAddr: 0x19990, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x631D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9990, symBinAddr: 0x19A4C, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x631ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9994, symBinAddr: 0x19A50, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x63201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9AF8, symBinAddr: 0x19BB4, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63215, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9AFC, symBinAddr: 0x19BB8, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x63229, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9B0C, symBinAddr: 0x19BC8, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x6323D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9B9C, symBinAddr: 0x19C58, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x63251, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9C58, symBinAddr: 0x19D14, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63265, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9C5C, symBinAddr: 0x19D18, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x63279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9C6C, symBinAddr: 0x19D28, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x6328D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9C70, symBinAddr: 0x19D2C, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x632A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9CB4, symBinAddr: 0x19D70, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x632B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9CB8, symBinAddr: 0x19D74, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x632C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9CFC, symBinAddr: 0x19DB8, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x632DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9D00, symBinAddr: 0x19DBC, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x632F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D44, symBinAddr: 0x19E00, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63305, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D48, symBinAddr: 0x19E04, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x63319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D8C, symBinAddr: 0x19E48, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x6332D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x19E4C, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x63341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9DD4, symBinAddr: 0x19E90, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63355, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9DD8, symBinAddr: 0x19E94, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x63369, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E1C, symBinAddr: 0x19ED8, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x6337D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9E20, symBinAddr: 0x19EDC, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x63391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E64, symBinAddr: 0x19F20, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x633A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E68, symBinAddr: 0x19F24, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x633B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EAC, symBinAddr: 0x19F68, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x633CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9EB0, symBinAddr: 0x19F6C, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x6341D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0x101D8, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x63439, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0x10200, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x63482, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1534, symBinAddr: 0x11634, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63524, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15B4, symBinAddr: 0x116B4, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15DC, symBinAddr: 0x116DC, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0x117E8, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1710, symBinAddr: 0x11810, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x635A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x11900, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x635BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1828, symBinAddr: 0x11928, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x635DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x190C, symBinAddr: 0x11A0C, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1934, symBinAddr: 0x11A34, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x6361C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A70, symBinAddr: 0x11B70, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x63638, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A98, symBinAddr: 0x11B98, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x63681, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1BF8, symBinAddr: 0x11CF8, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63723, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C7C, symBinAddr: 0x11D7C, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x6373F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1CA4, symBinAddr: 0x11DA4, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1D58, symBinAddr: 0x11E58, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x6377D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1D80, symBinAddr: 0x11E80, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x6379F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E8C, symBinAddr: 0x11F8C, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x637BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1EB4, symBinAddr: 0x11FB4, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x637DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x202C, symBinAddr: 0x1212C, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x637F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2054, symBinAddr: 0x12154, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x639A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A088, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63A22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A088, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63A7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x1A10C, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63A99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x1A148, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x1A19C, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x63AF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x1A1AC, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x63B21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x128, symBinAddr: 0x1A1B0, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x63B3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x13C, symBinAddr: 0x1A1C4, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x63B79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x150, symBinAddr: 0x1A1D8, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x63BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x1A1E8, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x1A1EC, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x63BF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x1A218, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x63C2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x1A24C, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x63C5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x1A25C, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x63C88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x1A260, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x63CA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x1A268, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x63CE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x1A270, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x63D0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x1A280, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x63D39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x1A284, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x63D57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x1A28C, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x63D91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x1A294, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x63DBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x1A2A4, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x63DEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x1A2A8, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x63E08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x1A2D4, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x63E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x1A308, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x63E75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1A318, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x63EA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x1A31C, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x63EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x1A348, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x63EFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x1A37C, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x63F2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x1A38C, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x63F56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x1A390, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x63F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x1A39C, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x63FB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x1A3A8, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x63FE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1A3B8, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x6400B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x1A3BC, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x64029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x1A3C8, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x64067, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x1A3D4, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x64095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x1A3E4, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x640C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x1A3E8, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x640D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x1A418, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x640E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x1A458, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x640FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x1A4FC, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x64111, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x1A600, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x1A62C, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x64139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x1A6C8, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x6414D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x1A710, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x1A770, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64343, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1A780, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x6436E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x1AD24, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x6438A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x1AF94, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x643C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1AA2C, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x643ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x1AF6C, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x64409, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x1AFEC, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64435, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x1B044, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64465, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x1B148, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x64479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x1B1D8, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x6448D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x1B294, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x644A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x1B298, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x644B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x1B2A8, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x644C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x1B338, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x644DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x1B3F4, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x644F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x1B3FC, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64505, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x1B400, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x64519, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x1B408, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x6452D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x1B418, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64541, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x1B41C, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x1B460, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x64569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x1B464, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x646C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1B4B0, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x646F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1B5C4, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64721, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC9printLogs33_05B95674BA567498C742095BB49A0405LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x1B99C, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x1B5E0, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x648A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x1B600, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x648FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x1B68C, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64923, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x1B690, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x6494A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x1B694, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64971, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x1B708, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x649C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1B70C, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64A1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x1B79C, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64A5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x1B800, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64AB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x1B890, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x64B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x1B920, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x64B38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x1B994, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x64B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x1B998, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x64BCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x1BA48, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x64CB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1C114, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x64D0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1C188, symSize: 0x2A4 } - - { offsetInCU: 0x7C0, offset: 0x64E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF7C, symBinAddr: 0x1C42C, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x64EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFE4, symBinAddr: 0x1C494, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x64EF5, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1048, symBinAddr: 0x1C4F8, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x64F09, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1058, symBinAddr: 0x1C508, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x64F1D, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10EC, symBinAddr: 0x1C518, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x64F31, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1134, symBinAddr: 0x1C560, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x64F45, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1148, symBinAddr: 0x1C574, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x64F59, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x118C, symBinAddr: 0x1C5B8, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x64F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11CC, symBinAddr: 0x1C5F8, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x64F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1390, symBinAddr: 0x1C7BC, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x64F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13C0, symBinAddr: 0x1C7EC, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x64FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x157C, symBinAddr: 0x1C9A8, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x65250, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x29C8, symBinAddr: 0x871C0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x6526A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x29D0, symBinAddr: 0x871C8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65278, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1C9E8, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x652B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1CA1C, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x652EA, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1CA5C, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65315, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1CA90, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1CAD0, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x65390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1CB00, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x653B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1CB04, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x653D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1CB28, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x65407, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1CB3C, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x65498, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CBAC, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x654B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CBAC, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x65502, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1CC08, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x6557C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1CC74, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x65606, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1CDAC, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1CE08, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x6564E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1CE68, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x6567D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1CEA4, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x656F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1CFDC, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x6570F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1D028, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x65738, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1D078, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x65767, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1D0B4, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x65792, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1D0BC, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x657AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1D0EC, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x657D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1D128, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x6582D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1D1C0, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x6584A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x818, symBinAddr: 0x1D1F0, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65873, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x85C, symBinAddr: 0x1D234, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x658A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1D270, symSize: 0x68 } - - { offsetInCU: 0x710, offset: 0x65911, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1D2D8, symSize: 0x4 } - - { offsetInCU: 0x779, offset: 0x6597A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x904, symBinAddr: 0x1D2DC, symSize: 0x128 } - - { offsetInCU: 0x853, offset: 0x65A54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xC50, symBinAddr: 0x1D628, symSize: 0x70 } - - { offsetInCU: 0x87D, offset: 0x65A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xCC0, symBinAddr: 0x1D698, symSize: 0x30 } - - { offsetInCU: 0x8A2, offset: 0x65AA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xCF0, symBinAddr: 0x1D6C8, symSize: 0x198 } - - { offsetInCU: 0x957, offset: 0x65B58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xE88, symBinAddr: 0x1D860, symSize: 0x14 } - - { offsetInCU: 0x9A4, offset: 0x65BA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0xE9C, symBinAddr: 0x1D874, symSize: 0x64 } - - { offsetInCU: 0xA40, offset: 0x65C41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0xF30, symBinAddr: 0x1D908, symSize: 0x6C } - - { offsetInCU: 0xB74, offset: 0x65D75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x17D4, symBinAddr: 0x1E1AC, symSize: 0x258 } - - { offsetInCU: 0xC05, offset: 0x65E06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1A90, symBinAddr: 0x1E468, symSize: 0x1A0 } - - { offsetInCU: 0xCED, offset: 0x65EEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1CC78, symSize: 0x88 } - - { offsetInCU: 0xD23, offset: 0x65F24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1CD00, symSize: 0xAC } - - { offsetInCU: 0xD63, offset: 0x65F64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1CDF8, symSize: 0x10 } - - { offsetInCU: 0xD77, offset: 0x65F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1CE58, symSize: 0x10 } - - { offsetInCU: 0xD8B, offset: 0x65F8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1CEA8, symSize: 0x88 } - - { offsetInCU: 0xDC1, offset: 0x65FC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1CF30, symSize: 0xAC } - - { offsetInCU: 0xE01, offset: 0x66002, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1D164, symSize: 0x5C } - - { offsetInCU: 0xEA2, offset: 0x660A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xA2C, symBinAddr: 0x1D404, symSize: 0x224 } - - { offsetInCU: 0xF16, offset: 0x66117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1648, symBinAddr: 0x1E020, symSize: 0x13C } - - { offsetInCU: 0xFE0, offset: 0x661E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0xF00, symBinAddr: 0x1D8D8, symSize: 0x30 } - - { offsetInCU: 0x10CF, offset: 0x662D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x17B0, symBinAddr: 0x1E188, symSize: 0x24 } - - { offsetInCU: 0x111F, offset: 0x66320, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0xF9C, symBinAddr: 0x1D974, symSize: 0x22C } - - { offsetInCU: 0x1311, offset: 0x66512, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x11C8, symBinAddr: 0x1DBA0, symSize: 0xC } - - { offsetInCU: 0x1368, offset: 0x66569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DBAC, symSize: 0x4 } - - { offsetInCU: 0x1384, offset: 0x66585, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DBAC, symSize: 0x4 } - - { offsetInCU: 0x139D, offset: 0x6659E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DBAC, symSize: 0x4 } - - { offsetInCU: 0x13B6, offset: 0x665B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11D8, symBinAddr: 0x1DBB0, symSize: 0x4 } - - { offsetInCU: 0x13CE, offset: 0x665CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11DC, symBinAddr: 0x1DBB4, symSize: 0xB8 } - - { offsetInCU: 0x146E, offset: 0x6666F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12D4, symBinAddr: 0x1DCAC, symSize: 0x4 } - - { offsetInCU: 0x1486, offset: 0x66687, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2478, symBinAddr: 0x1EE40, symSize: 0x7C } - - { offsetInCU: 0x1563, offset: 0x66764, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x1294, symBinAddr: 0x1DC6C, symSize: 0x40 } - - { offsetInCU: 0x1598, offset: 0x66799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg', symObjAddr: 0x12D8, symBinAddr: 0x1DCB0, symSize: 0x2C } - - { offsetInCU: 0x15E3, offset: 0x667E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1304, symBinAddr: 0x1DCDC, symSize: 0x2C } - - { offsetInCU: 0x162E, offset: 0x6682F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1330, symBinAddr: 0x1DD08, symSize: 0x2C } - - { offsetInCU: 0x16BB, offset: 0x668BC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x135C, symBinAddr: 0x1DD34, symSize: 0x198 } - - { offsetInCU: 0x1B6A, offset: 0x66D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x14F4, symBinAddr: 0x1DECC, symSize: 0x13C } - - { offsetInCU: 0x1C67, offset: 0x66E68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1630, symBinAddr: 0x1E008, symSize: 0x18 } - - { offsetInCU: 0x1C7B, offset: 0x66E7C, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1784, symBinAddr: 0x1E15C, symSize: 0x2C } - - { offsetInCU: 0x1C93, offset: 0x66E94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1A2C, symBinAddr: 0x1E404, symSize: 0x44 } - - { offsetInCU: 0x1CA7, offset: 0x66EA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1A70, symBinAddr: 0x1E448, symSize: 0x20 } - - { offsetInCU: 0x1CBB, offset: 0x66EBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1C30, symBinAddr: 0x1E608, symSize: 0x20 } - - { offsetInCU: 0x1CCF, offset: 0x66ED0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1C50, symBinAddr: 0x1E628, symSize: 0x4 } - - { offsetInCU: 0x1CE3, offset: 0x66EE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1C54, symBinAddr: 0x1E62C, symSize: 0x44 } - - { offsetInCU: 0x1CF7, offset: 0x66EF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1C98, symBinAddr: 0x1E670, symSize: 0x4 } - - { offsetInCU: 0x1D0B, offset: 0x66F0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1C9C, symBinAddr: 0x1E674, symSize: 0x44 } - - { offsetInCU: 0x1D1F, offset: 0x66F20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwCP', symObjAddr: 0x1DBC, symBinAddr: 0x1E794, symSize: 0x5C } - - { offsetInCU: 0x1D33, offset: 0x66F34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1E18, symBinAddr: 0x1E7F0, symSize: 0x18 } - - { offsetInCU: 0x1D47, offset: 0x66F48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1E30, symBinAddr: 0x1E808, symSize: 0x14 } - - { offsetInCU: 0x1D5B, offset: 0x66F5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1E44, symBinAddr: 0x1E81C, symSize: 0x18 } - - { offsetInCU: 0x1D6F, offset: 0x66F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwcp', symObjAddr: 0x1E5C, symBinAddr: 0x1E834, symSize: 0x5C } - - { offsetInCU: 0x1D83, offset: 0x66F84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x1EB8, symBinAddr: 0x1E890, symSize: 0x6C } - - { offsetInCU: 0x1D97, offset: 0x66F98, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1F24, symBinAddr: 0x1E8FC, symSize: 0x14 } - - { offsetInCU: 0x1DAB, offset: 0x66FAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x1F38, symBinAddr: 0x1E910, symSize: 0x50 } - - { offsetInCU: 0x1DBF, offset: 0x66FC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x1F88, symBinAddr: 0x1E960, symSize: 0x48 } - - { offsetInCU: 0x1DD3, offset: 0x66FD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x1FD0, symBinAddr: 0x1E9A8, symSize: 0x48 } - - { offsetInCU: 0x1DE7, offset: 0x66FE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x2018, symBinAddr: 0x1E9F0, symSize: 0x8 } - - { offsetInCU: 0x1DFB, offset: 0x66FFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2020, symBinAddr: 0x1E9F8, symSize: 0x4 } - - { offsetInCU: 0x1E0F, offset: 0x67010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2024, symBinAddr: 0x1E9FC, symSize: 0x8 } - - { offsetInCU: 0x1E23, offset: 0x67024, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x202C, symBinAddr: 0x1EA04, symSize: 0x10 } - - { offsetInCU: 0x1E37, offset: 0x67038, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2114, symBinAddr: 0x1EADC, symSize: 0x90 } - - { offsetInCU: 0x1E4B, offset: 0x6704C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x21A4, symBinAddr: 0x1EB6C, symSize: 0xBC } - - { offsetInCU: 0x1E5F, offset: 0x67060, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2260, symBinAddr: 0x1EC28, symSize: 0x4 } - - { offsetInCU: 0x1E73, offset: 0x67074, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2264, symBinAddr: 0x1EC2C, symSize: 0x10 } - - { offsetInCU: 0x1E87, offset: 0x67088, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x2274, symBinAddr: 0x1EC3C, symSize: 0x90 } - - { offsetInCU: 0x1E9B, offset: 0x6709C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2304, symBinAddr: 0x1ECCC, symSize: 0xBC } - - { offsetInCU: 0x1EAF, offset: 0x670B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x23C0, symBinAddr: 0x1ED88, symSize: 0x8 } - - { offsetInCU: 0x1EC3, offset: 0x670C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x23C8, symBinAddr: 0x1ED90, symSize: 0x4 } - - { offsetInCU: 0x1ED7, offset: 0x670D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x23CC, symBinAddr: 0x1ED94, symSize: 0x8 } - - { offsetInCU: 0x1EEB, offset: 0x670EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x23D4, symBinAddr: 0x1ED9C, symSize: 0x10 } - - { offsetInCU: 0x1F0A, offset: 0x6710B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x240C, symBinAddr: 0x1EDD4, symSize: 0x24 } - - { offsetInCU: 0x1F33, offset: 0x67134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x2518, symBinAddr: 0x1EEE0, symSize: 0x8 } - - { offsetInCU: 0x1F47, offset: 0x67148, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2520, symBinAddr: 0x1EEE8, symSize: 0x10 } - - { offsetInCU: 0x1F5B, offset: 0x6715C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2530, symBinAddr: 0x1EEF8, symSize: 0x8 } - - { offsetInCU: 0x1F6F, offset: 0x67170, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x25BC, symBinAddr: 0x1EF00, symSize: 0x3C } - - { offsetInCU: 0x1FF1, offset: 0x671F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1C9D8, symSize: 0x4 } - - { offsetInCU: 0x200D, offset: 0x6720E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1C9DC, symSize: 0x4 } - - { offsetInCU: 0x2029, offset: 0x6722A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1C9E0, symSize: 0x4 } - - { offsetInCU: 0x2045, offset: 0x67246, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1C9E4, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x67639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1F004, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x6764D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F040, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F0C4, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x6767C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1F1EC, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x676A5, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1F21C, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x676B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1F238, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x676CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1F2D4, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x676E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1F338, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x676F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1F394, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x67709, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1F3A4, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x6771D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1F3D4, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1F3FC, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67745, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1F458, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x67759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1F4DC, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x6776D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1F540, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x67781, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1F59C, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x67795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1F5FC, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x677B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1F60C, symSize: 0x11C } - - { offsetInCU: 0x20B, offset: 0x67801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA90, symBinAddr: 0x1FA94, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA98, symBinAddr: 0x1FA9C, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x67938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAD8, symBinAddr: 0x1FADC, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x679B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB3C, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x679D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB3C, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x679F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB3C, symBinAddr: 0x1FB40, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67A29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB64, symBinAddr: 0x1FB68, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB70, symBinAddr: 0x1FB74, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67A61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF48, symBinAddr: 0x1FF4C, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67AA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xFB4, symBinAddr: 0x1FFB8, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67AD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBCC, symBinAddr: 0x1FBD0, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67B10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC18, symBinAddr: 0x1FC1C, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC0, symBinAddr: 0x1FFC4, symSize: 0x154 } - - { offsetInCU: 0x58D, offset: 0x67B83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x724, symBinAddr: 0x1F728, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x67BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC58, symBinAddr: 0x1FC5C, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x67C38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC70, symBinAddr: 0x1FC74, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x67CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC9C, symBinAddr: 0x1FCA0, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x67CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1FCA8, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x67D0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCC8, symBinAddr: 0x1FCCC, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x67D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCD4, symBinAddr: 0x1FCD8, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x67D46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1264, symBinAddr: 0x201E4, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x67D8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x744, symBinAddr: 0x1F748, symSize: 0x1C8 } - - { offsetInCU: 0x7EB, offset: 0x67DE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD30, symBinAddr: 0x1FD34, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x67E18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD7C, symBinAddr: 0x1FD80, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x67E3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13A0, symBinAddr: 0x20320, symSize: 0x264 } - - { offsetInCU: 0x895, offset: 0x67E8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x90C, symBinAddr: 0x1F910, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x67EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE48, symBinAddr: 0x1FE4C, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x67EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE50, symBinAddr: 0x1FE54, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x67F12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE74, symBinAddr: 0x1FE78, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x67F2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x20C50, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x67F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x92C, symBinAddr: 0x1F930, symSize: 0x164 } - - { offsetInCU: 0x9D3, offset: 0x67FC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xED0, symBinAddr: 0x1FED4, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x68000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF10, symBinAddr: 0x1FF14, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x68023, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E94, symBinAddr: 0x20DA8, symSize: 0x2B8 } - - { offsetInCU: 0xA80, offset: 0x68076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1178, symBinAddr: 0x20118, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x6808A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x11DC, symBinAddr: 0x2015C, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x6809E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x201A0, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x680B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x20584, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x680C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x205C8, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x680DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x206B8, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x680EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x20704, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x68102, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x2070C, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x68116, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x20710, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x6812A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x20718, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x6813E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x20728, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x68152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x20778, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x68166, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x20804, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x6817A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x2080C, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x6818E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x20810, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x681A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x20814, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x681B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x20824, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x681CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x2085C, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x681DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x208C0, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x681F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x2096C, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x68206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x209D0, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x6821A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x20A2C, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x6822E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x20A90, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x68242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x20AA0, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x68256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x20AA4, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x6826A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x20AE8, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x6827E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x20AEC, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x68292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x20B30, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x682A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x20B34, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x682BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x20B78, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x682CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x20B7C, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x682E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x20BC0, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x682F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x20BC4, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x6830A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x20C08, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x6831E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x20C0C, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x68332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x21060, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x68346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x211F8, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x6835A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x211FC, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x6836E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x2120C, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x68382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x21210, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x68396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x21254, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x683AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x21258, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x683BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x2129C, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x683D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x212A0, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x68427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAFC, symBinAddr: 0x1FB00, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x684C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB7C, symBinAddr: 0x1FB80, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x684E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBA4, symBinAddr: 0x1FBA8, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x68507, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCE0, symBinAddr: 0x1FCE4, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x68523, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD08, symBinAddr: 0x1FD0C, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x68545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE80, symBinAddr: 0x1FE84, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x68561, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEA8, symBinAddr: 0x1FEAC, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x686AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x21310, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x686D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x21310, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68705, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x21858, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x6879B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x21880, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x68895, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x218C4, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x688B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x218C4, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x688F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x218DC, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x689D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x21920, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68A57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x21328, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68AD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x216C4, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68AE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x216D4, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68B07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x216E4, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68B25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x21710, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x68B64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x21744, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x68B82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x21754, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x68BAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x21758, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x68BCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x21760, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x68C05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x21768, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x68C33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x21778, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x68C66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x584, symBinAddr: 0x2177C, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x68C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x598, symBinAddr: 0x21790, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x68CAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x217A4, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x68CC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x217D0, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x68CF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x217FC, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x68D11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x21804, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x68D4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x2180C, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x68D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x2181C, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x68D96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x21820, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x68DB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x21828, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x68DF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x21830, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x68E1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x21840, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x68E49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x21844, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x68E77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x21854, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x68EB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x21988, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x68ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x2198C, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x68EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x219D0, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x68EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x21A00, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x68F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x21A7C, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x68F1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x21C00, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x68F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x21F94, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x68F61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x21FC4, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x68F75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x21FF0, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x68F89, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x22024, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x68F9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x22068, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x68FB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x22214, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x68FC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x2225C, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x68FD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x222D4, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x68FED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x222E4, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x69001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x22318, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x69015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x22320, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x69029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x22354, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x6903D, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x223A8, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x69051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x223BC, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x69065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x223F8, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x69079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x22440, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x6908D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x22480, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x690A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x22490, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x690B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x224C8, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x690C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x22534, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x690DD, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x22610, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x690F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x2262C, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x69105, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x226A0, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x69119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x226FC, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x6912D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x22760, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x69141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x22770, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x69155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x22798, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x69169, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x227D4, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x6917D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x22840, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x69191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x22884, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x691A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x228CC, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x691B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x2290C, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x691CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x2291C, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x691E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x22970, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x691F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x229B4, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x69209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x229C4, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x6921D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x22A54, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x69231, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x22B10, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x69245, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x22B18, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x69259, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x22B1C, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x6926D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x22B28, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x692C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x21948, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x6950D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x22B48, symSize: 0x1A0 } - - { offsetInCU: 0x34F, offset: 0x697EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x1A0, symBinAddr: 0x22CE8, symSize: 0x628 } - - { offsetInCU: 0x6AA, offset: 0x69B49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2D3C, symBinAddr: 0x25884, symSize: 0x6F8 } - - { offsetInCU: 0xBCE, offset: 0x6A06D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x850, symBinAddr: 0x23398, symSize: 0x2244 } - - { offsetInCU: 0x1E29, offset: 0x6B2C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB7FC, symBinAddr: 0x2E344, symSize: 0x3CB4 } - - { offsetInCU: 0x39B2, offset: 0x6CE51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xF4B0, symBinAddr: 0x31FF8, symSize: 0x634 } - - { offsetInCU: 0x3F86, offset: 0x6D425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tF', symObjAddr: 0xFB0C, symBinAddr: 0x32654, symSize: 0x40 } - - { offsetInCU: 0x3FAE, offset: 0x6D44D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x1490C, symBinAddr: 0x37454, symSize: 0x3E0 } - - { offsetInCU: 0x413D, offset: 0x6D5DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x1123C, symBinAddr: 0x33D84, symSize: 0x276C } - - { offsetInCU: 0x5871, offset: 0x6ED10, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2A94, symBinAddr: 0x255DC, symSize: 0x2A8 } - - { offsetInCU: 0x5D25, offset: 0x6F1C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x3434, symBinAddr: 0x25F7C, symSize: 0x5D8 } - - { offsetInCU: 0x6058, offset: 0x6F4F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3A0C, symBinAddr: 0x26554, symSize: 0x395C } - - { offsetInCU: 0x7A52, offset: 0x70EF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7368, symBinAddr: 0x29EB0, symSize: 0x278 } - - { offsetInCU: 0x7B69, offset: 0x71008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x7A74, symBinAddr: 0x2A5BC, symSize: 0x17AC } - - { offsetInCU: 0x84C3, offset: 0x71962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x75E0, symBinAddr: 0x2A128, symSize: 0x118 } - - { offsetInCU: 0x852C, offset: 0x719CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x7864, symBinAddr: 0x2A3AC, symSize: 0x1E8 } - - { offsetInCU: 0x85F9, offset: 0x71A98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x7A4C, symBinAddr: 0x2A594, symSize: 0x28 } - - { offsetInCU: 0x8836, offset: 0x71CD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x9274, symBinAddr: 0x2BDBC, symSize: 0x754 } - - { offsetInCU: 0x8C47, offset: 0x720E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA97C, symBinAddr: 0x2D4C4, symSize: 0xE80 } - - { offsetInCU: 0x950F, offset: 0x729AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x99C8, symBinAddr: 0x2C510, symSize: 0xBAC } - - { offsetInCU: 0x9F70, offset: 0x7340F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xFF78, symBinAddr: 0x32AC0, symSize: 0x12C4 } - - { offsetInCU: 0xAFC3, offset: 0x74462, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x185D0, symBinAddr: 0x3B048, symSize: 0xBD0 } - - { offsetInCU: 0xBCEA, offset: 0x75189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x139A8, symBinAddr: 0x364F0, symSize: 0xF64 } - - { offsetInCU: 0xC618, offset: 0x75AB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x14CEC, symBinAddr: 0x37834, symSize: 0x208 } - - { offsetInCU: 0xC6AE, offset: 0x75B4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14EF4, symBinAddr: 0x37A3C, symSize: 0x290 } - - { offsetInCU: 0xC79F, offset: 0x75C3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x15194, symBinAddr: 0x37CDC, symSize: 0xA0 } - - { offsetInCU: 0xC834, offset: 0x75CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x15288, symBinAddr: 0x37DD0, symSize: 0x1024 } - - { offsetInCU: 0xD229, offset: 0x766C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x162AC, symBinAddr: 0x38DF4, symSize: 0x4C } - - { offsetInCU: 0xD245, offset: 0x766E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x162F8, symBinAddr: 0x38E40, symSize: 0x150 } - - { offsetInCU: 0xD354, offset: 0x767F3, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x16448, symBinAddr: 0x38F90, symSize: 0x54 } - - { offsetInCU: 0xD3CD, offset: 0x7686C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x164F0, symBinAddr: 0x38FE4, symSize: 0x4C } - - { offsetInCU: 0xD451, offset: 0x768F0, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x1653C, symBinAddr: 0x39030, symSize: 0x50 } - - { offsetInCU: 0xD4CA, offset: 0x76969, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1658C, symBinAddr: 0x39080, symSize: 0x64 } - - { offsetInCU: 0xD50C, offset: 0x769AB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x165F0, symBinAddr: 0x390E4, symSize: 0x30 } - - { offsetInCU: 0xD539, offset: 0x769D8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16620, symBinAddr: 0x39114, symSize: 0x80 } - - { offsetInCU: 0xD5D7, offset: 0x76A76, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x166A0, symBinAddr: 0x39194, symSize: 0x6C } - - { offsetInCU: 0xD671, offset: 0x76B10, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1670C, symBinAddr: 0x39200, symSize: 0x4C } - - { offsetInCU: 0xD6F5, offset: 0x76B94, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x16784, symBinAddr: 0x39278, symSize: 0xE0 } - - { offsetInCU: 0xD73F, offset: 0x76BDE, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x16864, symBinAddr: 0x39358, symSize: 0xC4 } - - { offsetInCU: 0xD76C, offset: 0x76C0B, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16928, symBinAddr: 0x3941C, symSize: 0x174 } - - { offsetInCU: 0xD820, offset: 0x76CBF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x16A9C, symBinAddr: 0x39590, symSize: 0x104 } - - { offsetInCU: 0xD9B3, offset: 0x76E52, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x16BA0, symBinAddr: 0x39694, symSize: 0x128 } - - { offsetInCU: 0xDB56, offset: 0x76FF5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x16CC8, symBinAddr: 0x397BC, symSize: 0x16C } - - { offsetInCU: 0xDD2B, offset: 0x771CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x16E34, symBinAddr: 0x39928, symSize: 0x174 } - - { offsetInCU: 0xDEE6, offset: 0x77385, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16FA8, symBinAddr: 0x39A9C, symSize: 0xFC } - - { offsetInCU: 0xE089, offset: 0x77528, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x170A4, symBinAddr: 0x39B98, symSize: 0xFC } - - { offsetInCU: 0xE22C, offset: 0x776CB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x172A4, symBinAddr: 0x39D98, symSize: 0xFC } - - { offsetInCU: 0xE356, offset: 0x777F5, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x173A0, symBinAddr: 0x39E94, symSize: 0x40 } - - { offsetInCU: 0xE3A3, offset: 0x77842, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x17644, symBinAddr: 0x3A138, symSize: 0x138 } - - { offsetInCU: 0xE442, offset: 0x778E1, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1777C, symBinAddr: 0x3A270, symSize: 0xB4 } - - { offsetInCU: 0xE511, offset: 0x779B0, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x17A7C, symBinAddr: 0x3A530, symSize: 0x18C } - - { offsetInCU: 0xE622, offset: 0x77AC1, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17C08, symBinAddr: 0x3A6BC, symSize: 0xC0 } - - { offsetInCU: 0xE725, offset: 0x77BC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17EE4, symBinAddr: 0x3A95C, symSize: 0x1A0 } - - { offsetInCU: 0xE87A, offset: 0x77D19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x18084, symBinAddr: 0x3AAFC, symSize: 0x380 } - - { offsetInCU: 0xEBA6, offset: 0x78045, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x191A0, symBinAddr: 0x3BC18, symSize: 0x198 } - - { offsetInCU: 0xECC2, offset: 0x78161, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19338, symBinAddr: 0x3BDB0, symSize: 0xC0 } - - { offsetInCU: 0xEFF4, offset: 0x78493, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x193F8, symBinAddr: 0x3BE70, symSize: 0xD38 } - - { offsetInCU: 0x1026F, offset: 0x7970E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A130, symBinAddr: 0x3CBA8, symSize: 0x1C0 } - - { offsetInCU: 0x1041D, offset: 0x798BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A2F0, symBinAddr: 0x3CD68, symSize: 0x1A4 } - - { offsetInCU: 0x10510, offset: 0x799AF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A494, symBinAddr: 0x3CF0C, symSize: 0x84 } - - { offsetInCU: 0x1071D, offset: 0x79BBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1AFB8, symBinAddr: 0x3DA30, symSize: 0x8 } - - { offsetInCU: 0x10731, offset: 0x79BD0, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1B09C, symBinAddr: 0x3DB14, symSize: 0x10 } - - { offsetInCU: 0x10745, offset: 0x79BE4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1B0AC, symBinAddr: 0x3DB24, symSize: 0x14 } - - { offsetInCU: 0x10759, offset: 0x79BF8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1B0C0, symBinAddr: 0x3DB38, symSize: 0x50 } - - { offsetInCU: 0x1076D, offset: 0x79C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1B120, symBinAddr: 0x3DB88, symSize: 0x44 } - - { offsetInCU: 0x10781, offset: 0x79C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1B164, symBinAddr: 0x3DBCC, symSize: 0x30C } - - { offsetInCU: 0x10795, offset: 0x79C34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1B470, symBinAddr: 0x3DED8, symSize: 0x240 } - - { offsetInCU: 0x107A9, offset: 0x79C48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1B6B0, symBinAddr: 0x3E118, symSize: 0x70 } - - { offsetInCU: 0x107BD, offset: 0x79C5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1B720, symBinAddr: 0x3E188, symSize: 0x34 } - - { offsetInCU: 0x107D1, offset: 0x79C70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1B754, symBinAddr: 0x3E1BC, symSize: 0x174 } - - { offsetInCU: 0x107E5, offset: 0x79C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1B8C8, symBinAddr: 0x3E330, symSize: 0xB4 } - - { offsetInCU: 0x1081A, offset: 0x79CB9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1C194, symBinAddr: 0x3E3E4, symSize: 0xC4 } - - { offsetInCU: 0x10890, offset: 0x79D2F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C258, symBinAddr: 0x3E4A8, symSize: 0x78 } - - { offsetInCU: 0x108BD, offset: 0x79D5C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C2D0, symBinAddr: 0x3E520, symSize: 0x80 } - - { offsetInCU: 0x10933, offset: 0x79DD2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C350, symBinAddr: 0x3E5A0, symSize: 0x68 } - - { offsetInCU: 0x10A57, offset: 0x79EF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C3B8, symBinAddr: 0x3E608, symSize: 0x664 } - - { offsetInCU: 0x10EFB, offset: 0x7A39A, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1CA2C, symBinAddr: 0x3EC7C, symSize: 0x4C } - - { offsetInCU: 0x10F0F, offset: 0x7A3AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1CB20, symBinAddr: 0x3ECE8, symSize: 0x8 } - - { offsetInCU: 0x10F23, offset: 0x7A3C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1CB28, symBinAddr: 0x3ECF0, symSize: 0x44 } - - { offsetInCU: 0x10F37, offset: 0x7A3D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1CB6C, symBinAddr: 0x3ED34, symSize: 0x44 } - - { offsetInCU: 0x10F4B, offset: 0x7A3EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1CC18, symBinAddr: 0x3ED9C, symSize: 0x8 } - - { offsetInCU: 0x10F5F, offset: 0x7A3FE, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1CC30, symBinAddr: 0x3EDA4, symSize: 0x3C } - - { offsetInCU: 0x10F73, offset: 0x7A412, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1CC6C, symBinAddr: 0x3EDE0, symSize: 0x34 } - - { offsetInCU: 0x10F87, offset: 0x7A426, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1CD20, symBinAddr: 0x3EE94, symSize: 0x44 } - - { offsetInCU: 0x10FBC, offset: 0x7A45B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CE28, symBinAddr: 0x3EF9C, symSize: 0x48 } - - { offsetInCU: 0x10FDB, offset: 0x7A47A, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CE70, symBinAddr: 0x3EFE4, symSize: 0x64 } - - { offsetInCU: 0x1101E, offset: 0x7A4BD, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CED4, symBinAddr: 0x3F048, symSize: 0x80 } - - { offsetInCU: 0x110B3, offset: 0x7A552, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CF54, symBinAddr: 0x3F0C8, symSize: 0x120 } - - { offsetInCU: 0x1119B, offset: 0x7A63A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1D0BC, symBinAddr: 0x3F230, symSize: 0x48 } - - { offsetInCU: 0x111AF, offset: 0x7A64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1D104, symBinAddr: 0x3F278, symSize: 0x40 } - - { offsetInCU: 0x111C3, offset: 0x7A662, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1D218, symBinAddr: 0x3F38C, symSize: 0x48 } - - { offsetInCU: 0x111D7, offset: 0x7A676, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1D2E0, symBinAddr: 0x3F454, symSize: 0x18 } - - { offsetInCU: 0x111EB, offset: 0x7A68A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1D2F8, symBinAddr: 0x3F46C, symSize: 0x10 } - - { offsetInCU: 0x111FF, offset: 0x7A69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1D308, symBinAddr: 0x3F47C, symSize: 0x34 } - - { offsetInCU: 0x11213, offset: 0x7A6B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D378, symBinAddr: 0x3F4EC, symSize: 0x30 } - - { offsetInCU: 0x112C9, offset: 0x7A768, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x7C8, symBinAddr: 0x23310, symSize: 0x88 } - - { offsetInCU: 0x116A8, offset: 0x7AB47, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xA574, symBinAddr: 0x2D0BC, symSize: 0x408 } - - { offsetInCU: 0x11983, offset: 0x7AE22, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xFDEC, symBinAddr: 0x32934, symSize: 0x18C } - - { offsetInCU: 0x11BA1, offset: 0x7B040, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x15234, symBinAddr: 0x37D7C, symSize: 0x54 } - - { offsetInCU: 0x11D0E, offset: 0x7B1AD, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x17830, symBinAddr: 0x3A324, symSize: 0x110 } - - { offsetInCU: 0x11E4F, offset: 0x7B2EE, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x17980, symBinAddr: 0x3A434, symSize: 0xFC } - - { offsetInCU: 0x11F50, offset: 0x7B3EF, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17D28, symBinAddr: 0x3A7A0, symSize: 0x1BC } - - { offsetInCU: 0x1201E, offset: 0x7B4BD, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18404, symBinAddr: 0x3AE7C, symSize: 0x1CC } - - { offsetInCU: 0x122E1, offset: 0x7B780, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A714, symBinAddr: 0x3D18C, symSize: 0x1DC } - - { offsetInCU: 0x123CD, offset: 0x7B86C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A8F0, symBinAddr: 0x3D368, symSize: 0x11C } - - { offsetInCU: 0x12514, offset: 0x7B9B3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1AA0C, symBinAddr: 0x3D484, symSize: 0xFC } - - { offsetInCU: 0x1265B, offset: 0x7BAFA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1AB08, symBinAddr: 0x3D580, symSize: 0xE4 } - - { offsetInCU: 0x12796, offset: 0x7BC35, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1ABEC, symBinAddr: 0x3D664, symSize: 0x114 } - - { offsetInCU: 0x128D7, offset: 0x7BD76, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AD00, symBinAddr: 0x3D778, symSize: 0xEC } - - { offsetInCU: 0x12A1E, offset: 0x7BEBD, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1AED4, symBinAddr: 0x3D94C, symSize: 0xE4 } - - { offsetInCU: 0x12B7D, offset: 0x7C01C, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CD64, symBinAddr: 0x3EED8, symSize: 0xC4 } - - { offsetInCU: 0x12E23, offset: 0x7C2C2, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x76F8, symBinAddr: 0x2A240, symSize: 0x16C } - - { offsetInCU: 0x27, offset: 0x7C870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F554, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7C888, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F554, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7C89C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3F584, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7C8B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3F670, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7C8C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3F8E8, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7C8D8, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3FD04, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7C8EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3FD0C, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7C900, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3FF54, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7C914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3FF9C, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7C928, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x40058, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7CC5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x40514, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7CD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x40718, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x41328, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D3B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x41868, symSize: 0x9B0 } - - { offsetInCU: 0xD3E, offset: 0x7D747, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x21E4, symBinAddr: 0x42244, symSize: 0x21A4 } - - { offsetInCU: 0x202F, offset: 0x7EA38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE918, symBinAddr: 0x4E978, symSize: 0x6F8 } - - { offsetInCU: 0x23FC, offset: 0x7EE05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4388, symBinAddr: 0x443E8, symSize: 0x1288 } - - { offsetInCU: 0x2F50, offset: 0x7F959, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x5610, symBinAddr: 0x45670, symSize: 0xBF4 } - - { offsetInCU: 0x377E, offset: 0x80187, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x6204, symBinAddr: 0x46264, symSize: 0x418 } - - { offsetInCU: 0x3895, offset: 0x8029E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6F14, symBinAddr: 0x46F74, symSize: 0x20C } - - { offsetInCU: 0x3B41, offset: 0x8054A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7120, symBinAddr: 0x47180, symSize: 0x924 } - - { offsetInCU: 0x42D4, offset: 0x80CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7A44, symBinAddr: 0x47AA4, symSize: 0x2E8 } - - { offsetInCU: 0x440C, offset: 0x80E15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7D2C, symBinAddr: 0x47D8C, symSize: 0x658 } - - { offsetInCU: 0x47FD, offset: 0x81206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x8384, symBinAddr: 0x483E4, symSize: 0x688 } - - { offsetInCU: 0x4ABF, offset: 0x814C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8A0C, symBinAddr: 0x48A6C, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x81586, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8C3C, symBinAddr: 0x48C9C, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x81609, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x8E68, symBinAddr: 0x48EC8, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x81636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x8EE8, symBinAddr: 0x48F48, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD4AC, symBinAddr: 0x4D50C, symSize: 0x7CC } - - { offsetInCU: 0x4FB0, offset: 0x819B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xDC78, symBinAddr: 0x4DCD8, symSize: 0xA24 } - - { offsetInCU: 0x529F, offset: 0x81CA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE69C, symBinAddr: 0x4E6FC, symSize: 0x218 } - - { offsetInCU: 0x5374, offset: 0x81D7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xF010, symBinAddr: 0x4F070, symSize: 0x86C } - - { offsetInCU: 0x567F, offset: 0x82088, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF87C, symBinAddr: 0x4F8DC, symSize: 0xC18 } - - { offsetInCU: 0x596E, offset: 0x82377, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x10494, symBinAddr: 0x504F4, symSize: 0x278 } - - { offsetInCU: 0x5A43, offset: 0x8244C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x1070C, symBinAddr: 0x5076C, symSize: 0x214 } - - { offsetInCU: 0x5F39, offset: 0x82942, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x21B8, symBinAddr: 0x42218, symSize: 0x2C } - - { offsetInCU: 0x6237, offset: 0x82C40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x8F04, symBinAddr: 0x48F64, symSize: 0x20 } - - { offsetInCU: 0x6290, offset: 0x82C99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8F24, symBinAddr: 0x48F84, symSize: 0x8C } - - { offsetInCU: 0x6328, offset: 0x82D31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x8FB0, symBinAddr: 0x49010, symSize: 0x1298 } - - { offsetInCU: 0x6AA0, offset: 0x834A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xA248, symBinAddr: 0x4A2A8, symSize: 0x40 } - - { offsetInCU: 0x6AE4, offset: 0x834ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xA288, symBinAddr: 0x4A2E8, symSize: 0x58 } - - { offsetInCU: 0x6B0F, offset: 0x83518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xA2E0, symBinAddr: 0x4A340, symSize: 0x54 } - - { offsetInCU: 0x6B51, offset: 0x8355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA334, symBinAddr: 0x4A394, symSize: 0x64 } - - { offsetInCU: 0x6B84, offset: 0x8358D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA398, symBinAddr: 0x4A3F8, symSize: 0x4 } - - { offsetInCU: 0x6BAF, offset: 0x835B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA39C, symBinAddr: 0x4A3FC, symSize: 0x78 } - - { offsetInCU: 0x6BF1, offset: 0x835FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA414, symBinAddr: 0x4A474, symSize: 0x90 } - - { offsetInCU: 0x6C33, offset: 0x8363C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA4A4, symBinAddr: 0x4A504, symSize: 0x6C } - - { offsetInCU: 0x6C66, offset: 0x8366F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA510, symBinAddr: 0x4A570, symSize: 0x4 } - - { offsetInCU: 0x6C82, offset: 0x8368B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA514, symBinAddr: 0x4A574, symSize: 0x4 } - - { offsetInCU: 0x6CAD, offset: 0x836B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA518, symBinAddr: 0x4A578, symSize: 0x74 } - - { offsetInCU: 0x6CE0, offset: 0x836E9, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA58C, symBinAddr: 0x4A5EC, symSize: 0x4 } - - { offsetInCU: 0x6CFF, offset: 0x83708, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA590, symBinAddr: 0x4A5F0, symSize: 0x8 } - - { offsetInCU: 0x6D1B, offset: 0x83724, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA590, symBinAddr: 0x4A5F0, symSize: 0x8 } - - { offsetInCU: 0x6D2C, offset: 0x83735, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA598, symBinAddr: 0x4A5F8, symSize: 0xC8 } - - { offsetInCU: 0x6DC9, offset: 0x837D2, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA660, symBinAddr: 0x4A6C0, symSize: 0xCC } - - { offsetInCU: 0x6E75, offset: 0x8387E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA828, symBinAddr: 0x4A888, symSize: 0x1F4 } - - { offsetInCU: 0x6F01, offset: 0x8390A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xAA1C, symBinAddr: 0x4AA7C, symSize: 0x1C4 } - - { offsetInCU: 0x6FB9, offset: 0x839C2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xABE0, symBinAddr: 0x4AC40, symSize: 0x3A0 } - - { offsetInCU: 0x70D9, offset: 0x83AE2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAF80, symBinAddr: 0x4AFE0, symSize: 0x398 } - - { offsetInCU: 0x71F0, offset: 0x83BF9, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB318, symBinAddr: 0x4B378, symSize: 0x1E4 } - - { offsetInCU: 0x7281, offset: 0x83C8A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB4FC, symBinAddr: 0x4B55C, symSize: 0x204 } - - { offsetInCU: 0x7307, offset: 0x83D10, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB700, symBinAddr: 0x4B760, symSize: 0x4C } - - { offsetInCU: 0x73C4, offset: 0x83DCD, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB74C, symBinAddr: 0x4B7AC, symSize: 0x90 } - - { offsetInCU: 0x745F, offset: 0x83E68, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB7DC, symBinAddr: 0x4B83C, symSize: 0x40 } - - { offsetInCU: 0x749C, offset: 0x83EA5, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB81C, symBinAddr: 0x4B87C, symSize: 0x18 } - - { offsetInCU: 0x74EE, offset: 0x83EF7, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB834, symBinAddr: 0x4B894, symSize: 0x3C } - - { offsetInCU: 0x7517, offset: 0x83F20, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB870, symBinAddr: 0x4B8D0, symSize: 0x1C } - - { offsetInCU: 0x75E7, offset: 0x83FF0, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB88C, symBinAddr: 0x4B8EC, symSize: 0xE0 } - - { offsetInCU: 0x770A, offset: 0x84113, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xBA50, symBinAddr: 0x4BAB0, symSize: 0x294 } - - { offsetInCU: 0x7781, offset: 0x8418A, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBF80, symBinAddr: 0x4BFE0, symSize: 0x8C } - - { offsetInCU: 0x7799, offset: 0x841A2, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xC00C, symBinAddr: 0x4C06C, symSize: 0x4C } - - { offsetInCU: 0x77EE, offset: 0x841F7, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xC058, symBinAddr: 0x4C0B8, symSize: 0x154 } - - { offsetInCU: 0x785C, offset: 0x84265, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC1AC, symBinAddr: 0x4C20C, symSize: 0xF0 } - - { offsetInCU: 0x7881, offset: 0x8428A, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC29C, symBinAddr: 0x4C2FC, symSize: 0x214 } - - { offsetInCU: 0x78BA, offset: 0x842C3, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC4B0, symBinAddr: 0x4C510, symSize: 0x78 } - - { offsetInCU: 0x78D2, offset: 0x842DB, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC528, symBinAddr: 0x4C588, symSize: 0x1C } - - { offsetInCU: 0x78EA, offset: 0x842F3, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC544, symBinAddr: 0x4C5A4, symSize: 0x1C } - - { offsetInCU: 0x7902, offset: 0x8430B, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC560, symBinAddr: 0x4C5C0, symSize: 0x1C } - - { offsetInCU: 0x7967, offset: 0x84370, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC57C, symBinAddr: 0x4C5DC, symSize: 0x104 } - - { offsetInCU: 0x7ACA, offset: 0x844D3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC680, symBinAddr: 0x4C6E0, symSize: 0x174 } - - { offsetInCU: 0x7C3A, offset: 0x84643, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC7F4, symBinAddr: 0x4C854, symSize: 0x124 } - - { offsetInCU: 0x7D3A, offset: 0x84743, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC918, symBinAddr: 0x4C978, symSize: 0x120 } - - { offsetInCU: 0x7F86, offset: 0x8498F, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xCA38, symBinAddr: 0x4CA98, symSize: 0x36C } - - { offsetInCU: 0x8574, offset: 0x84F7D, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xCDA4, symBinAddr: 0x4CE04, symSize: 0x290 } - - { offsetInCU: 0x8761, offset: 0x8516A, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xD034, symBinAddr: 0x4D094, symSize: 0x150 } - - { offsetInCU: 0x88C7, offset: 0x852D0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xD184, symBinAddr: 0x4D1E4, symSize: 0x218 } - - { offsetInCU: 0x8913, offset: 0x8531C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD39C, symBinAddr: 0x4D3FC, symSize: 0x14 } - - { offsetInCU: 0x894C, offset: 0x85355, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD3B0, symBinAddr: 0x4D410, symSize: 0xFC } - - { offsetInCU: 0x8A0A, offset: 0x85413, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xE8B4, symBinAddr: 0x4E914, symSize: 0x64 } - - { offsetInCU: 0x8AB6, offset: 0x854BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x10920, symBinAddr: 0x50980, symSize: 0xA78 } - - { offsetInCU: 0x9084, offset: 0x85A8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x11398, symBinAddr: 0x513F8, symSize: 0x104 } - - { offsetInCU: 0x91F0, offset: 0x85BF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x1149C, symBinAddr: 0x514FC, symSize: 0x2D8C } - - { offsetInCU: 0x98B6, offset: 0x862BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x14228, symBinAddr: 0x54288, symSize: 0x120 } - - { offsetInCU: 0x99C7, offset: 0x863D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x14348, symBinAddr: 0x543A8, symSize: 0x80 } - - { offsetInCU: 0x9A4A, offset: 0x86453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x143C8, symBinAddr: 0x54428, symSize: 0x654 } - - { offsetInCU: 0x9DE6, offset: 0x867EF, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14A7C, symBinAddr: 0x54A7C, symSize: 0x10 } - - { offsetInCU: 0x9DFA, offset: 0x86803, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x14A8C, symBinAddr: 0x54A8C, symSize: 0x10 } - - { offsetInCU: 0x9E0E, offset: 0x86817, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x14AE0, symBinAddr: 0x54A9C, symSize: 0x48 } - - { offsetInCU: 0x9E22, offset: 0x8682B, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x14B90, symBinAddr: 0x54AE4, symSize: 0x3C } - - { offsetInCU: 0x9E36, offset: 0x8683F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x14BCC, symBinAddr: 0x54B20, symSize: 0x44 } - - { offsetInCU: 0x9E4A, offset: 0x86853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOf', symObjAddr: 0x14C10, symBinAddr: 0x54B64, symSize: 0x48 } - - { offsetInCU: 0x9E5E, offset: 0x86867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x14CD0, symBinAddr: 0x54BE8, symSize: 0x8 } - - { offsetInCU: 0x9E72, offset: 0x8687B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14CD8, symBinAddr: 0x54BF0, symSize: 0x10 } - - { offsetInCU: 0x9E86, offset: 0x8688F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14CE8, symBinAddr: 0x54C00, symSize: 0x8 } - - { offsetInCU: 0x9E9A, offset: 0x868A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14D70, symBinAddr: 0x54C44, symSize: 0x30 } - - { offsetInCU: 0x9EF2, offset: 0x868FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x14E30, symBinAddr: 0x54D04, symSize: 0x24 } - - { offsetInCU: 0x9F2E, offset: 0x86937, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14E9C, symBinAddr: 0x54D28, symSize: 0x44 } - - { offsetInCU: 0x9F5D, offset: 0x86966, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x40068, symSize: 0x12C } - - { offsetInCU: 0x9F93, offset: 0x8699C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x40194, symSize: 0x58 } - - { offsetInCU: 0xA073, offset: 0x86A7C, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x401EC, symSize: 0x90 } - - { offsetInCU: 0xA09C, offset: 0x86AA5, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x4027C, symSize: 0xA0 } - - { offsetInCU: 0xA1C8, offset: 0x86BD1, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x4031C, symSize: 0x9C } - - { offsetInCU: 0xA2D7, offset: 0x86CE0, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x403B8, symSize: 0x74 } - - { offsetInCU: 0xA35C, offset: 0x86D65, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x4042C, symSize: 0x4 } - - { offsetInCU: 0xA37E, offset: 0x86D87, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x40430, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x87783, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x54E30, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x877AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEE0, symBinAddr: 0x55D10, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x877D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE8, symBinAddr: 0x55D18, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x8780A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF0C, symBinAddr: 0x55D3C, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x87826, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF18, symBinAddr: 0x55D48, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x87842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5C00, symBinAddr: 0x5A9A0, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87888, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x54E50, symSize: 0x18C } - - { offsetInCU: 0x1BC, offset: 0x878DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF74, symBinAddr: 0x55DA4, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x87914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC4, symBinAddr: 0x55DF4, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x87937, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5D2C, symBinAddr: 0x5AACC, symSize: 0x133C } - - { offsetInCU: 0x267, offset: 0x87988, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x1AC, symBinAddr: 0x54FDC, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x879D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1014, symBinAddr: 0x55E44, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x87A3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x102C, symBinAddr: 0x55E5C, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87AB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1058, symBinAddr: 0x55E88, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1060, symBinAddr: 0x55E90, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x87B13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1084, symBinAddr: 0x55EB4, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x87B2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1090, symBinAddr: 0x55EC0, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x87B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B4C, symBinAddr: 0x5BED4, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x87B91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CC, symBinAddr: 0x54FFC, symSize: 0x274 } - - { offsetInCU: 0x4C5, offset: 0x87BE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x10EC, symBinAddr: 0x55F1C, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x87C1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x113C, symBinAddr: 0x55F6C, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x87C40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D28, symBinAddr: 0x5C0B0, symSize: 0xF48 } - - { offsetInCU: 0x569, offset: 0x87C8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x440, symBinAddr: 0x55270, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x87CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x55290, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x87CF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x55290, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x87D45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x55FE0, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x87DAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1214, symBinAddr: 0x56044, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x87DC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x123C, symBinAddr: 0x5606C, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x87DFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1244, symBinAddr: 0x56074, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x87E82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x12AC, symBinAddr: 0x560DC, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x87E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x12B8, symBinAddr: 0x560E8, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x87EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x480, symBinAddr: 0x552B0, symSize: 0x1A0 } - - { offsetInCU: 0x7EF, offset: 0x87F10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1314, symBinAddr: 0x56144, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x87F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x135C, symBinAddr: 0x5618C, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x87F6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8E4C, symBinAddr: 0x5D1D4, symSize: 0x230 } - - { offsetInCU: 0x899, offset: 0x87FBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x620, symBinAddr: 0x55450, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x87FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x139C, symBinAddr: 0x561CC, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x88010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A4, symBinAddr: 0x561D4, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x88041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x13C8, symBinAddr: 0x561F8, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x8805D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x13D4, symBinAddr: 0x56204, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x88079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x907C, symBinAddr: 0x5D404, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x880BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x55470, symSize: 0x278 } - - { offsetInCU: 0x9F3, offset: 0x88114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1430, symBinAddr: 0x56260, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x8814B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1490, symBinAddr: 0x562C0, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x8816E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9328, symBinAddr: 0x5D6B0, symSize: 0x548 } - - { offsetInCU: 0xA9D, offset: 0x881BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x8B8, symBinAddr: 0x556E8, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x88209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14E8, symBinAddr: 0x56318, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x8829A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1500, symBinAddr: 0x56330, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x8837D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1544, symBinAddr: 0x56374, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x883EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x15AC, symBinAddr: 0x563DC, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x8841A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15B4, symBinAddr: 0x563E4, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x8844B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15D8, symBinAddr: 0x56408, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x88467, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15E4, symBinAddr: 0x56414, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x88483, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9870, symBinAddr: 0x5DBF8, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x884C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8D8, symBinAddr: 0x55708, symSize: 0x128 } - - { offsetInCU: 0xDFD, offset: 0x8851E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1640, symBinAddr: 0x56470, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x88555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x166C, symBinAddr: 0x5649C, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x88578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9924, symBinAddr: 0x5DCAC, symSize: 0x1B0 } - - { offsetInCU: 0xEA8, offset: 0x885C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0xA00, symBinAddr: 0x55830, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x885F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x170C, symBinAddr: 0x5653C, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x8861F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1714, symBinAddr: 0x56544, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x88650, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1738, symBinAddr: 0x56568, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x8866C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1744, symBinAddr: 0x56574, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x88688, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9AD4, symBinAddr: 0x5DE5C, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x886CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA20, symBinAddr: 0x55850, symSize: 0x224 } - - { offsetInCU: 0x1002, offset: 0x88723, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x565D0, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x8875A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1810, symBinAddr: 0x56640, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x8877D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9D08, symBinAddr: 0x5E090, symSize: 0x8D8 } - - { offsetInCU: 0x10A6, offset: 0x887C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC44, symBinAddr: 0x55A74, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x88800, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55A94, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x8882E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55A94, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88877, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x19FC, symBinAddr: 0x5682C, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x888BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1A40, symBinAddr: 0x56870, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x888D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1A68, symBinAddr: 0x56898, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x88907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A70, symBinAddr: 0x568A0, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x8896C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1AAC, symBinAddr: 0x568DC, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88988, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AB8, symBinAddr: 0x568E8, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x889A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA6AC, symBinAddr: 0x5EA34, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x889D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC84, symBinAddr: 0x55AB4, symSize: 0x254 } - - { offsetInCU: 0x1304, offset: 0x88A25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B14, symBinAddr: 0x56944, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x88A5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B6C, symBinAddr: 0x5699C, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x88A7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA6FC, symBinAddr: 0x5EA84, symSize: 0x770 } - - { offsetInCU: 0x13D3, offset: 0x88AF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1BBC, symBinAddr: 0x569EC, symSize: 0x1C8 } - - { offsetInCU: 0x142F, offset: 0x88B50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x1D84, symBinAddr: 0x56BB4, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x88B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x59C8, symBinAddr: 0x5A7EC, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x88C02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5A1C, symBinAddr: 0x5A840, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x88C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A9C, symBinAddr: 0x5A8C0, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x88C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5AA4, symBinAddr: 0x5A8C8, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x88D0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5B04, symBinAddr: 0x5A928, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x88D28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x1D94, symBinAddr: 0x56BC4, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x88D3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x1DB4, symBinAddr: 0x56BE4, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x88D50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x1EA8, symBinAddr: 0x56CD8, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x88D64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x222C, symBinAddr: 0x5705C, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x88D7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x2E84, symBinAddr: 0x57CB4, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x88DA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x2EB4, symBinAddr: 0x57CE4, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x88DBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x2EE0, symBinAddr: 0x57D10, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x88DD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x2F0C, symBinAddr: 0x57D3C, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x88DE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x2F38, symBinAddr: 0x57D68, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x88DF8, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2F64, symBinAddr: 0x57D94, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x88E0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x2F6C, symBinAddr: 0x57D9C, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x88E20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x332C, symBinAddr: 0x5815C, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x88E34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3388, symBinAddr: 0x581B8, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x88E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x3474, symBinAddr: 0x582A4, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x88E5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3484, symBinAddr: 0x582B4, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x88E70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x34B4, symBinAddr: 0x582E4, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x88E84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x3594, symBinAddr: 0x583C4, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x88E98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x38CC, symBinAddr: 0x586FC, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x88EAC, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4130, symBinAddr: 0x58F60, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x88EC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4138, symBinAddr: 0x58F68, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x88ED4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x449C, symBinAddr: 0x592CC, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x88EE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x44F8, symBinAddr: 0x59328, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x88EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x45DC, symBinAddr: 0x5940C, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x88F10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x45EC, symBinAddr: 0x5941C, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x88F24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x4690, symBinAddr: 0x594C0, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x88F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x481C, symBinAddr: 0x5964C, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x88F4C, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4BC4, symBinAddr: 0x599F4, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x88F60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4C08, symBinAddr: 0x59A38, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x88F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x4D84, symBinAddr: 0x59BB4, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x88F88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x4DE0, symBinAddr: 0x59C10, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x88F9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x4E74, symBinAddr: 0x59CA4, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x88FB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x4E84, symBinAddr: 0x59CB4, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x88FC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x4EEC, symBinAddr: 0x59D1C, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x88FD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x4FC8, symBinAddr: 0x59DF8, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x88FEC, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5134, symBinAddr: 0x59F64, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x89000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5160, symBinAddr: 0x59F90, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x89014, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x5224, symBinAddr: 0x5A054, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x89028, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x5280, symBinAddr: 0x5A0B0, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x8903C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x52FC, symBinAddr: 0x5A12C, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x89050, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x530C, symBinAddr: 0x5A13C, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x89064, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x5354, symBinAddr: 0x5A184, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x89078, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x5438, symBinAddr: 0x5A268, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x8908C, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x55D0, symBinAddr: 0x5A400, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x890A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x5604, symBinAddr: 0x5A434, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x890B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5700, symBinAddr: 0x5A530, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x890C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x575C, symBinAddr: 0x5A58C, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x890DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x57D8, symBinAddr: 0x5A608, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x890F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x57E8, symBinAddr: 0x5A618, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x89104, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5810, symBinAddr: 0x5A640, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x89118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x584C, symBinAddr: 0x5A67C, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x8912C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x58C4, symBinAddr: 0x5A6E8, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x89140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5908, symBinAddr: 0x5A72C, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x89154, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x5964, symBinAddr: 0x5A788, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x89168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x59B8, symBinAddr: 0x5A7DC, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x8917C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5B0C, symBinAddr: 0x5A930, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x89190, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5B10, symBinAddr: 0x5A934, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x891A4, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5BD8, symBinAddr: 0x5A978, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x891B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x7068, symBinAddr: 0x5BE08, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x891CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x70AC, symBinAddr: 0x5BE4C, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x891E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7B08, symBinAddr: 0x5BE90, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x891F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x8C70, symBinAddr: 0x5CFF8, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x89208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x8CB4, symBinAddr: 0x5D03C, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x8921C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x8CF8, symBinAddr: 0x5D080, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x89230, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x8D3C, symBinAddr: 0x5D0C4, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x89244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x8D80, symBinAddr: 0x5D108, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x89258, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x8DC4, symBinAddr: 0x5D14C, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x8926C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x8E08, symBinAddr: 0x5D190, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x89280, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA5E0, symBinAddr: 0x5E968, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x89294, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xA624, symBinAddr: 0x5E9AC, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x892A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xA668, symBinAddr: 0x5E9F0, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x892BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xAE6C, symBinAddr: 0x5F1F4, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x892D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xAEB0, symBinAddr: 0x5F238, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x892E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xAEF4, symBinAddr: 0x5F27C, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x892F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xAF7C, symBinAddr: 0x5F304, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x8930C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xAFC0, symBinAddr: 0x5F348, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x89320, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB014, symBinAddr: 0x5F38C, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x89334, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB0A4, symBinAddr: 0x5F41C, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x89348, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB160, symBinAddr: 0x5F4D8, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x8935C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB168, symBinAddr: 0x5F4E0, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x89370, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB16C, symBinAddr: 0x5F4E4, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x89384, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB178, symBinAddr: 0x5F4F0, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x89398, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB188, symBinAddr: 0x5F500, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x893AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB218, symBinAddr: 0x5F590, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x893C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB2D4, symBinAddr: 0x5F64C, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x893D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB2D8, symBinAddr: 0x5F650, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x893E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB2E8, symBinAddr: 0x5F660, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x893FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB378, symBinAddr: 0x5F6F0, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x89410, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB434, symBinAddr: 0x5F7AC, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x89424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB438, symBinAddr: 0x5F7B0, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x89438, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB448, symBinAddr: 0x5F7C0, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x8944C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB4D8, symBinAddr: 0x5F850, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x89460, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB594, symBinAddr: 0x5F90C, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x89474, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB598, symBinAddr: 0x5F910, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x89488, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB5A8, symBinAddr: 0x5F920, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x8949C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB638, symBinAddr: 0x5F9B0, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x894B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB6F4, symBinAddr: 0x5FA6C, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x894C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB6FC, symBinAddr: 0x5FA74, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x894D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB700, symBinAddr: 0x5FA78, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x894EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB708, symBinAddr: 0x5FA80, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x89500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB718, symBinAddr: 0x5FA90, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x89514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB7A8, symBinAddr: 0x5FB20, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x89528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB864, symBinAddr: 0x5FBDC, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x8953C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB868, symBinAddr: 0x5FBE0, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x89550, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB878, symBinAddr: 0x5FBF0, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x89564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xB89C, symBinAddr: 0x5FC14, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x89578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xB8BC, symBinAddr: 0x5FC34, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x8958C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xB8FC, symBinAddr: 0x5FC74, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x895A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB90C, symBinAddr: 0x5FC84, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x895B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB910, symBinAddr: 0x5FC88, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x895C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB954, symBinAddr: 0x5FCCC, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x895DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB958, symBinAddr: 0x5FCD0, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x895F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB99C, symBinAddr: 0x5FD14, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x89604, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB9A0, symBinAddr: 0x5FD18, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x89618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB9E4, symBinAddr: 0x5FD5C, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x8962C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB9E8, symBinAddr: 0x5FD60, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x89640, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBA2C, symBinAddr: 0x5FDA4, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBA30, symBinAddr: 0x5FDA8, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x89668, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBA74, symBinAddr: 0x5FDEC, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x8967C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBA78, symBinAddr: 0x5FDF0, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x89690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBABC, symBinAddr: 0x5FE34, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x896A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAC0, symBinAddr: 0x5FE38, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x896B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB04, symBinAddr: 0x5FE7C, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x896CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB08, symBinAddr: 0x5FE80, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x896E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB4C, symBinAddr: 0x5FEC4, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x896F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB50, symBinAddr: 0x5FEC8, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x89708, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB94, symBinAddr: 0x5FF0C, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x8971C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB98, symBinAddr: 0x5FF10, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x89730, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBBDC, symBinAddr: 0x5FF54, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x89744, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBBE0, symBinAddr: 0x5FF58, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89758, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC24, symBinAddr: 0x5FF9C, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x8976C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBC28, symBinAddr: 0x5FFA0, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x89780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC6C, symBinAddr: 0x5FFE4, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x89794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC70, symBinAddr: 0x5FFE8, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x897A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCB4, symBinAddr: 0x6002C, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x897BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCB8, symBinAddr: 0x60030, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x897D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBCFC, symBinAddr: 0x60074, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x897E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD00, symBinAddr: 0x60078, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x897F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBD44, symBinAddr: 0x600BC, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x8980C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBD48, symBinAddr: 0x600C0, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x89820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBD8C, symBinAddr: 0x60104, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x89834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD90, symBinAddr: 0x60108, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x89848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBDD4, symBinAddr: 0x6014C, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x8985C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBDD8, symBinAddr: 0x60150, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x89870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xBE1C, symBinAddr: 0x60194, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xBE60, symBinAddr: 0x601D8, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xBEF0, symBinAddr: 0x60268, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x898AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xBFAC, symBinAddr: 0x60324, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x898C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xBFB0, symBinAddr: 0x60328, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x898D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBFC0, symBinAddr: 0x60338, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x898E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBFC4, symBinAddr: 0x6033C, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x898FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC008, symBinAddr: 0x60380, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x89910, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC00C, symBinAddr: 0x60384, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x89924, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC050, symBinAddr: 0x603C8, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x89938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC054, symBinAddr: 0x603CC, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89966, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF24, symBinAddr: 0x55D54, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89982, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x55D7C, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x899A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x109C, symBinAddr: 0x55ECC, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x899C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x10C4, symBinAddr: 0x55EF4, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x899DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x118C, symBinAddr: 0x55FBC, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x899F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1198, symBinAddr: 0x55FC8, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x89A14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x11A0, symBinAddr: 0x55FD0, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x89A30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x11A8, symBinAddr: 0x55FD8, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89A52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x12C4, symBinAddr: 0x560F4, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x89A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x12EC, symBinAddr: 0x5611C, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x89A90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x13E0, symBinAddr: 0x56210, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x89AAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1408, symBinAddr: 0x56238, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x89AF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x156C, symBinAddr: 0x5639C, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x89B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15F0, symBinAddr: 0x56420, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x89BB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1618, symBinAddr: 0x56448, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x89BD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x56580, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x89BF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1778, symBinAddr: 0x565A8, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x89C2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1878, symBinAddr: 0x566A8, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x89CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1900, symBinAddr: 0x56730, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x89D58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1960, symBinAddr: 0x56790, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x89DAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x19A0, symBinAddr: 0x567D0, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x89E0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1AC4, symBinAddr: 0x568F4, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x89E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1AEC, symBinAddr: 0x5691C, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x89E5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5AC8, symBinAddr: 0x5A8EC, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x8A068, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x60478, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8A08C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x60478, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x8A0AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x60480, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x8A0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x60488, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8A104, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x60498, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x8A12F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x6049C, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x8A14D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x604A4, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x8A189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x604AC, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x8A1B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x604BC, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x8A1E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x604C0, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x8A200, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x604C8, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x8A23A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x604D0, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A268, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x604E0, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A294, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x604E4, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A2A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x60538, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A2BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x6057C, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A3D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6058C, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A41A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6058C, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x605B0, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8A57F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x605D0, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8A5C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x605D0, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8A60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x605F4, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8A72A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x60614, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8A76C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x60614, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8A7BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x60674, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8A7CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x6067C, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8A7E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x606B8, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8A8FB, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x60730, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8A9B8, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x60730, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8ABB1, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x60A98, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8AD61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60AE0, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8ADA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60AE0, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8ADEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x60B04, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8AF30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x60B24, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8AF5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x60BB8, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8AF9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x614F0, symSize: 0x44 } - - { offsetInCU: 0x12D, offset: 0x8B00E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA74, symBinAddr: 0x61558, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8B02A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA80, symBinAddr: 0x61564, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8B058, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x61588, symSize: 0x54 } - - { offsetInCU: 0x209, offset: 0x8B0EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x60B90, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8B115, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF8, symBinAddr: 0x615DC, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8B140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x61680, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8B15C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xBA8, symBinAddr: 0x6168C, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B41D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x61424, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B499, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBCC, symBinAddr: 0x616B0, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8B6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC8, symBinAddr: 0x61AAC, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8B870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1104, symBinAddr: 0x61BE8, symSize: 0xAB0 } - - { offsetInCU: 0xF95, offset: 0x8BE76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1BB4, symBinAddr: 0x62698, symSize: 0x694 } - - { offsetInCU: 0x1345, offset: 0x8C226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2248, symBinAddr: 0x62D2C, symSize: 0x4B0 } - - { offsetInCU: 0x14E4, offset: 0x8C3C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x26F8, symBinAddr: 0x631DC, symSize: 0x668 } - - { offsetInCU: 0x1A13, offset: 0x8C8F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2D60, symBinAddr: 0x63844, symSize: 0x160 } - - { offsetInCU: 0x1B2D, offset: 0x8CA0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2EC0, symBinAddr: 0x639A4, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8CA51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3470, symBinAddr: 0x63EF8, symSize: 0x224 } - - { offsetInCU: 0x1C21, offset: 0x8CB02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3694, symBinAddr: 0x6411C, symSize: 0x25C } - - { offsetInCU: 0x1C86, offset: 0x8CB67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x38F0, symBinAddr: 0x64378, symSize: 0x248 } - - { offsetInCU: 0x1DAE, offset: 0x8CC8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3B7C, symBinAddr: 0x645C0, symSize: 0x2BC } - - { offsetInCU: 0x1EED, offset: 0x8CDCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3E38, symBinAddr: 0x6487C, symSize: 0x1A8 } - - { offsetInCU: 0x1F33, offset: 0x8CE14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3FE0, symBinAddr: 0x64A24, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8D168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4454, symBinAddr: 0x64E98, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D264, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2F3C, symBinAddr: 0x63A20, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D2A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2F40, symBinAddr: 0x63A24, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D2BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2F44, symBinAddr: 0x63A28, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D2CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2F88, symBinAddr: 0x63A6C, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D2E2, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2F8C, symBinAddr: 0x63A70, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D2F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x301C, symBinAddr: 0x63ABC, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D30A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x3020, symBinAddr: 0x63AC0, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D31E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x3074, symBinAddr: 0x63B04, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x3104, symBinAddr: 0x63B94, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x31C0, symBinAddr: 0x63C50, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D35A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x31C8, symBinAddr: 0x63C58, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D36E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x31CC, symBinAddr: 0x63C5C, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x31D4, symBinAddr: 0x63C64, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x31E4, symBinAddr: 0x63C74, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D3AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x3274, symBinAddr: 0x63D04, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x3330, symBinAddr: 0x63DC0, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D3D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3338, symBinAddr: 0x63DC8, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D3E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x333C, symBinAddr: 0x63DCC, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D3FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3348, symBinAddr: 0x63DD8, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D40E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3358, symBinAddr: 0x63DE8, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D422, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3380, symBinAddr: 0x63E08, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x338C, symBinAddr: 0x63E14, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D44A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3390, symBinAddr: 0x63E18, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D45E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x33D4, symBinAddr: 0x63E5C, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x33E0, symBinAddr: 0x63E68, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x33E4, symBinAddr: 0x63E6C, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D49A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3428, symBinAddr: 0x63EB0, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D4B9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3434, symBinAddr: 0x63EBC, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D4F1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3448, symBinAddr: 0x63ED0, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D529, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x345C, symBinAddr: 0x63EE4, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8D58D, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x456C, symBinAddr: 0x64FB0, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8D5A1, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4610, symBinAddr: 0x64FF8, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8D5B5, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x464C, symBinAddr: 0x65034, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8D5C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x46A4, symBinAddr: 0x6507C, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8D5DD, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x46AC, symBinAddr: 0x65084, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8D5F1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x46BC, symBinAddr: 0x65094, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8D605, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x471C, symBinAddr: 0x6509C, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8D619, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x47D0, symBinAddr: 0x65150, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8D648, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8D660, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8D674, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8D688, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8D69C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8D6B0, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x60BE0, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8D72E, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x60C04, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8D7BD, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x60C88, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8D84C, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x60D0C, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8D8E3, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x60D98, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8D9BD, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x60E00, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8DA97, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x60E68, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8DB0C, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x60ED4, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8DB69, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x60F14, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8DBC6, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x60F54, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8DBEF, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x60F98, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8DC42, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x61000, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8DCBE, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x61064, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8DD4F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x610C8, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8DEB5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8DED5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8DEF5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8DF09, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8DF1D, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8DF31, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8DFDA, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x611D4, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8E081, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x6125C, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8E124, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x612DC, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8E210, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8E230, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8E244, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E258, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E26C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E2DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x61534, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E2F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA5C, symBinAddr: 0x61540, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E314, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA64, symBinAddr: 0x61548, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E328, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA6C, symBinAddr: 0x61550, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E342, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB78, symBinAddr: 0x6165C, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E35E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB84, symBinAddr: 0x61668, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E37A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x61670, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E38E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB94, symBinAddr: 0x61678, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8E841, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6516C, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8E855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x652F4, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8E869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x65398, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8E87D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x654F4, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8E891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x656DC, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8E8A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x657C8, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8E8B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x65950, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8E8CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x659E8, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8E8E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x65A80, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8E8F5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x65B08, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8E909, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x65B5C, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8E91D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x65C7C, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8E931, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x65D00, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8E945, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x65DF4, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8E959, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x65F54, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8E96D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x66030, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8E981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x66178, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8E995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x66210, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8E9A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x662DC, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8E9DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x66364, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8EA2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x668FC, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8EA90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17E8, symBinAddr: 0x66914, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8EB0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1814, symBinAddr: 0x66940, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8EB35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x181C, symBinAddr: 0x66948, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8EB66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1840, symBinAddr: 0x6696C, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8EB82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x184C, symBinAddr: 0x66978, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8EB9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2EBC, symBinAddr: 0x67EEC, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8EBE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x66384, symSize: 0x210 } - - { offsetInCU: 0x425, offset: 0x8EC23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1468, symBinAddr: 0x66594, symSize: 0x368 } - - { offsetInCU: 0x456, offset: 0x8EC54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18A8, symBinAddr: 0x669D4, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8EC77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18BC, symBinAddr: 0x669E8, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8ECCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x18D0, symBinAddr: 0x669FC, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8ECFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x66BE0, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8ED25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1ABC, symBinAddr: 0x66BE8, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8ED56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x66C0C, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8ED72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AEC, symBinAddr: 0x66C18, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8ED8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3078, symBinAddr: 0x680A8, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8EDD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x66A1C, symSize: 0x1BC } - - { offsetInCU: 0x62B, offset: 0x8EE29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B48, symBinAddr: 0x66C74, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8EE60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B94, symBinAddr: 0x66CC0, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8EE83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31C4, symBinAddr: 0x681F4, symSize: 0x2A4 } - - { offsetInCU: 0x6D5, offset: 0x8EED3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1BD4, symBinAddr: 0x66D00, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8EEFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x238C, symBinAddr: 0x674B8, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8EF29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2394, symBinAddr: 0x674C0, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8EF5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23B8, symBinAddr: 0x674E4, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8EF76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23C4, symBinAddr: 0x674F0, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8EF92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3468, symBinAddr: 0x68498, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8EFD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BF4, symBinAddr: 0x66D20, symSize: 0x274 } - - { offsetInCU: 0x819, offset: 0x8F017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E68, symBinAddr: 0x66F94, symSize: 0x4A0 } - - { offsetInCU: 0x84A, offset: 0x8F048, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2420, symBinAddr: 0x6754C, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8F06B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2434, symBinAddr: 0x67560, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8F08F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x246C, symBinAddr: 0x67574, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8F0A3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24D0, symBinAddr: 0x675B8, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8F0B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2598, symBinAddr: 0x67638, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8F0CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2620, symBinAddr: 0x6767C, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8F0DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x274C, symBinAddr: 0x677A8, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8F0F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x27A0, symBinAddr: 0x677EC, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8F107, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2830, symBinAddr: 0x6787C, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8F11B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x28EC, symBinAddr: 0x67938, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8F12F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x28F4, symBinAddr: 0x67940, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8F143, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x28F8, symBinAddr: 0x67944, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8F157, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2900, symBinAddr: 0x6794C, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8F16B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2910, symBinAddr: 0x6795C, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8F17F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x29A0, symBinAddr: 0x679EC, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8F193, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2A5C, symBinAddr: 0x67AA8, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8F1A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2A60, symBinAddr: 0x67AAC, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8F1BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2A70, symBinAddr: 0x67ABC, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8F1CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2AA0, symBinAddr: 0x67AEC, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8F1E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2AD0, symBinAddr: 0x67B1C, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8F1F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2B2C, symBinAddr: 0x67B78, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8F20B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2BDC, symBinAddr: 0x67C0C, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8F21F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2C40, symBinAddr: 0x67C70, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8F233, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2C9C, symBinAddr: 0x67CCC, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8F247, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2CFC, symBinAddr: 0x67D2C, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F25B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D0C, symBinAddr: 0x67D3C, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F26F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x67D40, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D54, symBinAddr: 0x67D84, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F297, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D58, symBinAddr: 0x67D88, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F2AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D9C, symBinAddr: 0x67DCC, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F2BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA0, symBinAddr: 0x67DD0, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F2D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE4, symBinAddr: 0x67E14, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F2E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DE8, symBinAddr: 0x67E18, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F2FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E2C, symBinAddr: 0x67E5C, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F30F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E30, symBinAddr: 0x67E60, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F323, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E74, symBinAddr: 0x67EA4, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F337, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E78, symBinAddr: 0x67EA8, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3740, symBinAddr: 0x68770, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F36A, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3784, symBinAddr: 0x687B4, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F37E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x3850, symBinAddr: 0x68880, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F392, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x38E0, symBinAddr: 0x68910, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F3A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x399C, symBinAddr: 0x689CC, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F3BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x39A0, symBinAddr: 0x689D0, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F3CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x39B0, symBinAddr: 0x689E0, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F3E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x39B4, symBinAddr: 0x689E4, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F3F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x39F8, symBinAddr: 0x68A28, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F40A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39FC, symBinAddr: 0x68A2C, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F41E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3A40, symBinAddr: 0x68A70, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F432, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3A44, symBinAddr: 0x68A74, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F460, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1858, symBinAddr: 0x66984, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F47C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1880, symBinAddr: 0x669AC, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F49E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AF8, symBinAddr: 0x66C24, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F4BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x66C4C, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F4DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23D0, symBinAddr: 0x674FC, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F4F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x23F8, symBinAddr: 0x67524, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8F64A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x68AE0, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8F66E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x68AE0, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8F68C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x68B0C, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8F6CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x68B40, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8F6E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x68B50, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8F714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x68B54, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8F732, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x68B80, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8F771, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x68BB4, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8F79F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x68BC4, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8F7CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x68BC8, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8F7DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x68BF8, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8F7F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x68C20, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8F807, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x68C5C, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8F81B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x68CC8, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8F82F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x68D0C, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8F843, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x68D54, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8F857, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x68D94, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8F99D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68DA4, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8F9C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0SSvpZ', symObjAddr: 0x8E88, symBinAddr: 0x88AD0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8F9DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8languageSSvpZ', symObjAddr: 0x8E98, symBinAddr: 0x88AE0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8F9F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7versionSSvpZ', symObjAddr: 0x8EA8, symBinAddr: 0x88AF0, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8FA0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8EB8, symBinAddr: 0x88B00, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8FA29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8EC8, symBinAddr: 0x88B10, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8FA43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8ED8, symBinAddr: 0x88B20, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8FA5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8EE8, symBinAddr: 0x88B30, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8FA77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x8EF8, symBinAddr: 0x88B40, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8FA91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x8F08, symBinAddr: 0x88B50, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8FAAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x8F18, symBinAddr: 0x88B60, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8FAC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x8F28, symBinAddr: 0x88B70, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8FADF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x8F38, symBinAddr: 0x88B80, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8FAF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x8F48, symBinAddr: 0x88B90, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8FB13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x8F58, symBinAddr: 0x88BA0, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8FB2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x8F68, symBinAddr: 0x88BB0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8FB47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x8F78, symBinAddr: 0x88BC0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8FB61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x8F88, symBinAddr: 0x88BD0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x8FB7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x8F98, symBinAddr: 0x88BE0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x8FB95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x8FA8, symBinAddr: 0x88BF0, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x8FBAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x8FB8, symBinAddr: 0x88C00, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x8FBC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x8FC8, symBinAddr: 0x88C10, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x8FBE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x8FD8, symBinAddr: 0x88C20, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x8FBFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x8FE8, symBinAddr: 0x88C30, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x8FC17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x8FF8, symBinAddr: 0x88C40, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x8FC31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x9008, symBinAddr: 0x88C50, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x8FC4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x9018, symBinAddr: 0x88C60, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x8FC65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x9028, symBinAddr: 0x88C70, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x8FC7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x9038, symBinAddr: 0x88C80, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x8FC99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x9048, symBinAddr: 0x88C90, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x8FCB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x9058, symBinAddr: 0x88CA0, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKeySSvpZ', symObjAddr: 0x9068, symBinAddr: 0x88CB0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x8FCE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKeySSvpZ', symObjAddr: 0x9078, symBinAddr: 0x88CC0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x8FD01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvpZ', symObjAddr: 0x9088, symBinAddr: 0x88CD0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x8FD1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKeySSvpZ', symObjAddr: 0x9098, symBinAddr: 0x88CE0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x8FD35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKeySSvpZ', symObjAddr: 0x90A8, symBinAddr: 0x88CF0, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x8FD4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKeySSvpZ', symObjAddr: 0x90B8, symBinAddr: 0x88D00, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x8FD69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKeySSvpZ', symObjAddr: 0x90C8, symBinAddr: 0x88D10, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x8FD83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvpZ', symObjAddr: 0x90D8, symBinAddr: 0x88D20, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x8FD9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvpZ', symObjAddr: 0x90E8, symBinAddr: 0x88D30, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x8FDB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvpZ', symObjAddr: 0x90F8, symBinAddr: 0x88D40, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x8FDD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkeySSvpZ', symObjAddr: 0x9108, symBinAddr: 0x88D50, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x8FDEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvpZ', symObjAddr: 0x9118, symBinAddr: 0x88D60, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x8FE05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKeySSvpZ', symObjAddr: 0x9128, symBinAddr: 0x88D70, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x8FE1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKeySSvpZ', symObjAddr: 0x9138, symBinAddr: 0x88D80, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x8FE39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKeySSvpZ', symObjAddr: 0x9148, symBinAddr: 0x88D90, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x8FE53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKeySSvpZ', symObjAddr: 0x9158, symBinAddr: 0x88DA0, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x8FE6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKeySSvpZ', symObjAddr: 0x9168, symBinAddr: 0x88DB0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x8FE87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKeySSvpZ', symObjAddr: 0x9178, symBinAddr: 0x88DC0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x8FEA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x9188, symBinAddr: 0x88DD0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x8FEBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x9198, symBinAddr: 0x88DE0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x8FED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x91A8, symBinAddr: 0x88DF0, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x8FEEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKeySSvpZ', symObjAddr: 0x91B8, symBinAddr: 0x88E00, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x8FF09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKeySSvpZ', symObjAddr: 0x91C8, symBinAddr: 0x88E10, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x8FF23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKeySSvpZ', symObjAddr: 0x91D8, symBinAddr: 0x88E20, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x8FF3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x91E8, symBinAddr: 0x88E30, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x8FF57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x91F8, symBinAddr: 0x88E40, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x8FF71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x9208, symBinAddr: 0x88E50, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x8FF8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x9218, symBinAddr: 0x88E60, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x8FFA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x9228, symBinAddr: 0x88E70, symSize: 0x0 } - - { offsetInCU: 0x649, offset: 0x8FFBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkeySSvpZ', symObjAddr: 0x9238, symBinAddr: 0x88E80, symSize: 0x0 } - - { offsetInCU: 0x657, offset: 0x8FFCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68DA4, symSize: 0x40 } - - { offsetInCU: 0x675, offset: 0x8FFEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x68DE4, symSize: 0x40 } - - { offsetInCU: 0x693, offset: 0x90009, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x68E24, symSize: 0x40 } - - { offsetInCU: 0x6B1, offset: 0x90027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x68E64, symSize: 0x40 } - - { offsetInCU: 0x6CF, offset: 0x90045, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x68EA4, symSize: 0x40 } - - { offsetInCU: 0x6F9, offset: 0x9006F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x68EE4, symSize: 0x14 } - - { offsetInCU: 0x714, offset: 0x9008A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x69078, symSize: 0x108 } - - { offsetInCU: 0x766, offset: 0x900DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x692B4, symSize: 0x8 } - - { offsetInCU: 0x782, offset: 0x900F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x692BC, symSize: 0x18 } - - { offsetInCU: 0x79A, offset: 0x90110, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x692BC, symSize: 0x18 } - - { offsetInCU: 0x7AC, offset: 0x90122, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x68EF8, symSize: 0x40 } - - { offsetInCU: 0x7CA, offset: 0x90140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x68F38, symSize: 0x40 } - - { offsetInCU: 0x7E8, offset: 0x9015E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x68F78, symSize: 0x40 } - - { offsetInCU: 0x806, offset: 0x9017C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x68FB8, symSize: 0x40 } - - { offsetInCU: 0x824, offset: 0x9019A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x68FF8, symSize: 0x40 } - - { offsetInCU: 0x842, offset: 0x901B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x69038, symSize: 0x40 } - - { offsetInCU: 0x86B, offset: 0x901E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x691A4, symSize: 0x4 } - - { offsetInCU: 0x87F, offset: 0x901F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x691A8, symSize: 0x44 } - - { offsetInCU: 0x8A9, offset: 0x9021F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x692D4, symSize: 0x90 } - - { offsetInCU: 0x8BD, offset: 0x90233, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x69364, symSize: 0xBC } - - { offsetInCU: 0x8D1, offset: 0x90247, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x69420, symSize: 0x8 } - - { offsetInCU: 0x8E5, offset: 0x9025B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x69428, symSize: 0x4 } - - { offsetInCU: 0x8F9, offset: 0x9026F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x6942C, symSize: 0x8 } - - { offsetInCU: 0x90D, offset: 0x90283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x69434, symSize: 0x10 } - - { offsetInCU: 0x921, offset: 0x90297, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0_WZ', symObjAddr: 0x6B0, symBinAddr: 0x69444, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x902B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8language_WZ', symObjAddr: 0x6CC, symBinAddr: 0x69460, symSize: 0x20 } - - { offsetInCU: 0x955, offset: 0x902CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7version_WZ', symObjAddr: 0x6EC, symBinAddr: 0x69480, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x902E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x708, symBinAddr: 0x6949C, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x902FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x724, symBinAddr: 0x694B8, symSize: 0x1C } - - { offsetInCU: 0x9A3, offset: 0x90319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x740, symBinAddr: 0x694D4, symSize: 0x1C } - - { offsetInCU: 0x9BD, offset: 0x90333, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPassword_WZ', symObjAddr: 0x75C, symBinAddr: 0x694F0, symSize: 0x14 } - - { offsetInCU: 0x9DE, offset: 0x90354, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x770, symBinAddr: 0x69504, symSize: 0x1C } - - { offsetInCU: 0x9F8, offset: 0x9036E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x78C, symBinAddr: 0x69520, symSize: 0x24 } - - { offsetInCU: 0xA12, offset: 0x90388, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x7B0, symBinAddr: 0x69544, symSize: 0x20 } - - { offsetInCU: 0xA2C, offset: 0x903A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7D0, symBinAddr: 0x69564, symSize: 0x28 } - - { offsetInCU: 0xA46, offset: 0x903BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7F8, symBinAddr: 0x6958C, symSize: 0x24 } - - { offsetInCU: 0xA60, offset: 0x903D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x81C, symBinAddr: 0x695B0, symSize: 0x24 } - - { offsetInCU: 0xA7A, offset: 0x903F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x840, symBinAddr: 0x695D4, symSize: 0x20 } - - { offsetInCU: 0xA94, offset: 0x9040A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x860, symBinAddr: 0x695F4, symSize: 0x28 } - - { offsetInCU: 0xAAE, offset: 0x90424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x888, symBinAddr: 0x6961C, symSize: 0x1C } - - { offsetInCU: 0xAC9, offset: 0x9043F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKey_WZ', symObjAddr: 0x8A4, symBinAddr: 0x69638, symSize: 0x18 } - - { offsetInCU: 0xAE3, offset: 0x90459, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKey_WZ', symObjAddr: 0x8BC, symBinAddr: 0x69650, symSize: 0x18 } - - { offsetInCU: 0xAFD, offset: 0x90473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x69668, symSize: 0x1C } - - { offsetInCU: 0xB17, offset: 0x9048D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x69684, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x904A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKey_WZ', symObjAddr: 0x90C, symBinAddr: 0x696A0, symSize: 0x18 } - - { offsetInCU: 0xB4B, offset: 0x904C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKey_WZ', symObjAddr: 0x924, symBinAddr: 0x696B8, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x904DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKey_WZ', symObjAddr: 0x940, symBinAddr: 0x696D4, symSize: 0x1C } - - { offsetInCU: 0xB7F, offset: 0x904F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x696F0, symSize: 0x1C } - - { offsetInCU: 0xB99, offset: 0x9050F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKey_WZ', symObjAddr: 0x978, symBinAddr: 0x6970C, symSize: 0x18 } - - { offsetInCU: 0xBB3, offset: 0x90529, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKey_WZ', symObjAddr: 0x990, symBinAddr: 0x69724, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x90543, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x6973C, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x9055D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKey_WZ', symObjAddr: 0x9C4, symBinAddr: 0x69758, symSize: 0x18 } - - { offsetInCU: 0xC01, offset: 0x90577, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x69770, symSize: 0x1C } - - { offsetInCU: 0xC1B, offset: 0x90591, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9F8, symBinAddr: 0x6978C, symSize: 0x24 } - - { offsetInCU: 0xC35, offset: 0x905AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKey_WZ', symObjAddr: 0xA1C, symBinAddr: 0x697B0, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x905C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKey_WZ', symObjAddr: 0xA34, symBinAddr: 0x697C8, symSize: 0x18 } - - { offsetInCU: 0xC69, offset: 0x905DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKey_WZ', symObjAddr: 0xA4C, symBinAddr: 0x697E0, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x905F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x697F8, symSize: 0x1C } - - { offsetInCU: 0xC9D, offset: 0x90613, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKey_WZ', symObjAddr: 0xA80, symBinAddr: 0x69814, symSize: 0x18 } - - { offsetInCU: 0xCB7, offset: 0x9062D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKey_WZ', symObjAddr: 0xA98, symBinAddr: 0x6982C, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x90647, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x69844, symSize: 0x1C } - - { offsetInCU: 0xCEB, offset: 0x90661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkey_WZ', symObjAddr: 0xACC, symBinAddr: 0x69860, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x9067B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkey_WZ', symObjAddr: 0xAE4, symBinAddr: 0x69878, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x90695, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekey_WZ', symObjAddr: 0xAFC, symBinAddr: 0x69890, symSize: 0x18 } - - { offsetInCU: 0xD39, offset: 0x906AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkey_WZ', symObjAddr: 0xB14, symBinAddr: 0x698A8, symSize: 0x18 } - - { offsetInCU: 0xD53, offset: 0x906C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkey_WZ', symObjAddr: 0xB2C, symBinAddr: 0x698C0, symSize: 0x20 } - - { offsetInCU: 0xD6D, offset: 0x906E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKey_WZ', symObjAddr: 0xB4C, symBinAddr: 0x698E0, symSize: 0x24 } - - { offsetInCU: 0xD87, offset: 0x906FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x69904, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x90717, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x69920, symSize: 0x1C } - - { offsetInCU: 0xDBB, offset: 0x90731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x6993C, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x9074B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKey_WZ', symObjAddr: 0xBC4, symBinAddr: 0x69958, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x90765, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x69970, symSize: 0x1C } - - { offsetInCU: 0xE09, offset: 0x9077F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBF8, symBinAddr: 0x6998C, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x90799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xC10, symBinAddr: 0x699A4, symSize: 0x18 } - - { offsetInCU: 0xE3D, offset: 0x907B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC28, symBinAddr: 0x699BC, symSize: 0x18 } - - { offsetInCU: 0xE57, offset: 0x907CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x699D4, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x907E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKey_WZ', symObjAddr: 0xC5C, symBinAddr: 0x699F0, symSize: 0x24 } - - { offsetInCU: 0xE8B, offset: 0x90801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x69A14, symSize: 0x1C } - - { offsetInCU: 0xEA5, offset: 0x9081B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKey_WZ', symObjAddr: 0xC9C, symBinAddr: 0x69A30, symSize: 0x20 } - - { offsetInCU: 0xEBF, offset: 0x90835, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCBC, symBinAddr: 0x69A50, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x9084F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCD4, symBinAddr: 0x69A68, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCEC, symBinAddr: 0x69A80, symSize: 0x18 } - - { offsetInCU: 0xF0D, offset: 0x90883, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekey_WZ', symObjAddr: 0xD04, symBinAddr: 0x69A98, symSize: 0x18 } - - { offsetInCU: 0xF27, offset: 0x9089D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkey_WZ', symObjAddr: 0xD1C, symBinAddr: 0x69AB0, symSize: 0x18 } - - { offsetInCU: 0xF69, offset: 0x908DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0xD34, symBinAddr: 0x69AC8, symSize: 0x288 } - - { offsetInCU: 0x10FC, offset: 0x90A72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x69180, symSize: 0x24 } - - { offsetInCU: 0x119E, offset: 0x90B14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x691EC, symSize: 0x4C } - - { offsetInCU: 0x1276, offset: 0x90BEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x69238, symSize: 0x34 } - - { offsetInCU: 0x12F2, offset: 0x90C68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x6926C, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x90E31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69D50, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x90E73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69D50, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x90EBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x69D74, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x91000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1B00, symBinAddr: 0x88498, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x91049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x69E70, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x910C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x69EB0, symSize: 0x3F8 } - - { offsetInCU: 0x302, offset: 0x912B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x564, symBinAddr: 0x6A2B8, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x91319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C8, symBinAddr: 0x6A31C, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x9137F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x62C, symBinAddr: 0x6A380, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x913E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x690, symBinAddr: 0x6A3E4, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x9144B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6F4, symBinAddr: 0x6A448, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x91548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x81C, symBinAddr: 0x6A514, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x915B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6A550, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x915F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6A550, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x91624, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x868, symBinAddr: 0x6A560, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x916A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x9CC, symBinAddr: 0x6A6C4, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x91706, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xA00, symBinAddr: 0x6A6F8, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x91787, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA54, symBinAddr: 0x6A74C, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91822, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xAA0, symBinAddr: 0x6A798, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x918D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB34, symBinAddr: 0x6A81C, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x91994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA8, symBinAddr: 0x6A890, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91A43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC2C, symBinAddr: 0x6A914, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91AD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC64, symBinAddr: 0x6A94C, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91B65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC9C, symBinAddr: 0x6A984, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x91BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCD4, symBinAddr: 0x6A9BC, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x91C8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD0C, symBinAddr: 0x6A9F4, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x91D21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD44, symBinAddr: 0x6AA2C, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x91DB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD7C, symBinAddr: 0x6AA64, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x91E4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDB4, symBinAddr: 0x6AA9C, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x91EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDEC, symBinAddr: 0x6AAD4, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x91F17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE30, symBinAddr: 0x6AB18, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x91FFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xF68, symBinAddr: 0x6AC50, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x920E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1014, symBinAddr: 0x6ACFC, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x9217F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x108C, symBinAddr: 0x6AD74, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x921AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1110, symBinAddr: 0x6ADF8, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x92252, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x69DD4, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x9226A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x69E24, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x92308, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5C0, symBinAddr: 0x6A314, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x9231C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x624, symBinAddr: 0x6A378, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x92330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x688, symBinAddr: 0x6A3DC, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x92344, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6EC, symBinAddr: 0x6A440, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x92358, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x750, symBinAddr: 0x6A4A4, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x9236C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x7B4, symBinAddr: 0x6A4AC, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x92380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOf', symObjAddr: 0x7D4, symBinAddr: 0x6A4CC, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x923E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1258, symBinAddr: 0x6AF40, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x923F5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1260, symBinAddr: 0x6AF48, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x92409, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1270, symBinAddr: 0x6AF58, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x9244A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x12A4, symBinAddr: 0x6AF60, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x9254C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15C4, symBinAddr: 0x6B280, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x9269F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x69D94, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x926BB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x69D98, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x926D7, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x69D9C, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x926F3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x69DA0, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x9270F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x69DA4, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x9272B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x69DA8, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x92747, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x69DAC, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92763, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x69DB0, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x9277F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x69DB4, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x9279B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x69DB8, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x927B7, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x69DBC, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x927D3, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x69DC8, symSize: 0xC } -... diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS deleted file mode 100755 index a9beaf7..0000000 Binary files a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json deleted file mode 100644 index 04360c8..0000000 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,22932 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS12ReachabilityC", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2_AWS.DebugConfig", - "usr": "s:15IoTConnect2_AWS11DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2_AWS.MqttConfig", - "usr": "s:15IoTConnect2_AWS10MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS11DebugConfigV", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS10MqttConfigV", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PREQA", - "printedName": "PREQA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "POC", - "printedName": "POC", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS0A4TCPfO", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS9SSLOptionV", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS11CommandTypeO", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS9SDKClientC", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", - "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34350, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34392, - "length": 48, - "value": "\"twinPropertySubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34421, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34515, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34565, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34614, - "length": 48, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34643, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34661, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34737, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34787, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34891, - "length": 11, - "value": "\"subForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34988, - "length": 11, - "value": "\"pubForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 89, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2295, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2315, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2406, - "length": 92, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2448, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2477, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2497, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2549, - "length": 93, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2580, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2413, - "length": 26, - "value": "\"SDKClient initialize AWS\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json deleted file mode 100644 index 04360c8..0000000 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,22932 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS12ReachabilityC", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2_AWS.DebugConfig", - "usr": "s:15IoTConnect2_AWS11DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2_AWS.MqttConfig", - "usr": "s:15IoTConnect2_AWS10MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS11DebugConfigV", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS10MqttConfigV", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PREQA", - "printedName": "PREQA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "POC", - "printedName": "POC", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS0A4TCPfO", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS9SSLOptionV", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS11CommandTypeO", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS9SDKClientC", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", - "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34350, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34392, - "length": 48, - "value": "\"twinPropertySubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34421, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34515, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34565, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34614, - "length": 48, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34643, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34661, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34737, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34787, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34891, - "length": 11, - "value": "\"subForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34988, - "length": 11, - "value": "\"pubForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 89, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2295, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2315, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2406, - "length": 92, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2448, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2477, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2497, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2549, - "length": 93, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2580, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2413, - "length": 26, - "value": "\"SDKClient initialize AWS\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS deleted file mode 100644 index 6c598b9..0000000 Binary files a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml deleted file mode 100644 index b53af28..0000000 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml +++ /dev/null @@ -1,1831 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' -relocations: - - { offsetInCU: 0x34, offset: 0x5847B, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6B910, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x584B0, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6B948, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58515, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E0D0, symBinAddr: 0x85318, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x22D0, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5855C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x2314, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x58578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x2318, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x585D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x25D4, symSize: 0xDB0 } - - { offsetInCU: 0x45B, offset: 0x58921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x1170, symBinAddr: 0x3384, symSize: 0x384 } - - { offsetInCU: 0x4BE, offset: 0x58984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x14F4, symBinAddr: 0x3708, symSize: 0x20 } - - { offsetInCU: 0x4EB, offset: 0x589B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x16C0, symBinAddr: 0x38D4, symSize: 0x698 } - - { offsetInCU: 0x7EF, offset: 0x58CB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D58, symBinAddr: 0x3F6C, symSize: 0x3D4 } - - { offsetInCU: 0xAA5, offset: 0x58F6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x212C, symBinAddr: 0x4340, symSize: 0x914 } - - { offsetInCU: 0xF7B, offset: 0x59441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A40, symBinAddr: 0x4C54, symSize: 0x668 } - - { offsetInCU: 0x1375, offset: 0x5983B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x30A8, symBinAddr: 0x52BC, symSize: 0x3C18 } - - { offsetInCU: 0x2E6B, offset: 0x5B331, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6CD0, symBinAddr: 0x8ED4, symSize: 0x150 } - - { offsetInCU: 0x2F55, offset: 0x5B41B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6E20, symBinAddr: 0x9024, symSize: 0x304 } - - { offsetInCU: 0x3146, offset: 0x5B60C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7124, symBinAddr: 0x9328, symSize: 0x3C8 } - - { offsetInCU: 0x34AF, offset: 0x5B975, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x74EC, symBinAddr: 0x96F0, symSize: 0x2E4 } - - { offsetInCU: 0x3683, offset: 0x5BB49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x77D0, symBinAddr: 0x99D4, symSize: 0x240 } - - { offsetInCU: 0x3815, offset: 0x5BCDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x7A10, symBinAddr: 0x9C14, symSize: 0x244 } - - { offsetInCU: 0x39A7, offset: 0x5BE6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C54, symBinAddr: 0x9E58, symSize: 0x430 } - - { offsetInCU: 0x3B10, offset: 0x5BFD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x8084, symBinAddr: 0xA288, symSize: 0x650 } - - { offsetInCU: 0x3E23, offset: 0x5C2E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x86D4, symBinAddr: 0xA8D8, symSize: 0x224 } - - { offsetInCU: 0x4034, offset: 0x5C4FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9B20, symBinAddr: 0xBD24, symSize: 0x1514 } - - { offsetInCU: 0x5710, offset: 0x5DBD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x2254, symSize: 0x3C } - - { offsetInCU: 0x5740, offset: 0x5DC06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x2290, symSize: 0x40 } - - { offsetInCU: 0x5909, offset: 0x5DDCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1514, symBinAddr: 0x3728, symSize: 0x8 } - - { offsetInCU: 0x591D, offset: 0x5DDE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x151C, symBinAddr: 0x3730, symSize: 0x3C } - - { offsetInCU: 0x5931, offset: 0x5DDF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1558, symBinAddr: 0x376C, symSize: 0x168 } - - { offsetInCU: 0x5E77, offset: 0x5E33D, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x896C, symBinAddr: 0xAB70, symSize: 0xC } - - { offsetInCU: 0x5E8B, offset: 0x5E351, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8978, symBinAddr: 0xAB7C, symSize: 0x4 } - - { offsetInCU: 0x5E9F, offset: 0x5E365, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x897C, symBinAddr: 0xAB80, symSize: 0x20 } - - { offsetInCU: 0x5EB3, offset: 0x5E379, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x899C, symBinAddr: 0xABA0, symSize: 0x28 } - - { offsetInCU: 0x5FC4, offset: 0x5E48A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8ED4, symBinAddr: 0xB0D8, symSize: 0x2C } - - { offsetInCU: 0x5FD8, offset: 0x5E49E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F00, symBinAddr: 0xB104, symSize: 0x2C } - - { offsetInCU: 0x5FEC, offset: 0x5E4B2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8F6C, symBinAddr: 0xB170, symSize: 0x2C } - - { offsetInCU: 0x6000, offset: 0x5E4C6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8F98, symBinAddr: 0xB19C, symSize: 0x2C } - - { offsetInCU: 0x6035, offset: 0x5E4FB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x91B4, symBinAddr: 0xB3B8, symSize: 0x210 } - - { offsetInCU: 0x6087, offset: 0x5E54D, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x93C4, symBinAddr: 0xB5C8, symSize: 0x68 } - - { offsetInCU: 0x60E8, offset: 0x5E5AE, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x9588, symBinAddr: 0xB78C, symSize: 0x1DC } - - { offsetInCU: 0x6633, offset: 0x5EAF9, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB0A4, symBinAddr: 0xD2A8, symSize: 0x40 } - - { offsetInCU: 0x6647, offset: 0x5EB0D, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB0E4, symBinAddr: 0xD2E8, symSize: 0x20 } - - { offsetInCU: 0x665B, offset: 0x5EB21, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB104, symBinAddr: 0xD308, symSize: 0x10 } - - { offsetInCU: 0x666F, offset: 0x5EB35, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB114, symBinAddr: 0xD318, symSize: 0x3C } - - { offsetInCU: 0x6683, offset: 0x5EB49, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB1B0, symBinAddr: 0xD3B4, symSize: 0x44 } - - { offsetInCU: 0x6697, offset: 0x5EB5D, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB360, symBinAddr: 0xD564, symSize: 0x10 } - - { offsetInCU: 0x66AB, offset: 0x5EB71, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB370, symBinAddr: 0xD574, symSize: 0x10 } - - { offsetInCU: 0x66BF, offset: 0x5EB85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xB380, symBinAddr: 0xD584, symSize: 0x5C } - - { offsetInCU: 0x66D3, offset: 0x5EB99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xB3DC, symBinAddr: 0xD5E0, symSize: 0x30C } - - { offsetInCU: 0x66E7, offset: 0x5EBAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB6E8, symBinAddr: 0xD8EC, symSize: 0x240 } - - { offsetInCU: 0x66FB, offset: 0x5EBC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xB928, symBinAddr: 0xDB2C, symSize: 0x70 } - - { offsetInCU: 0x670F, offset: 0x5EBD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xB998, symBinAddr: 0xDB9C, symSize: 0x34 } - - { offsetInCU: 0x6723, offset: 0x5EBE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xB9CC, symBinAddr: 0xDBD0, symSize: 0x174 } - - { offsetInCU: 0x6737, offset: 0x5EBFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xBB40, symBinAddr: 0xDD44, symSize: 0xB4 } - - { offsetInCU: 0x674B, offset: 0x5EC11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xBBF4, symBinAddr: 0xDDF8, symSize: 0x10 } - - { offsetInCU: 0x675F, offset: 0x5EC25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xBC04, symBinAddr: 0xDE08, symSize: 0x34 } - - { offsetInCU: 0x6773, offset: 0x5EC39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xBCB8, symBinAddr: 0xDEBC, symSize: 0x5C } - - { offsetInCU: 0x6787, offset: 0x5EC4D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBDB8, symBinAddr: 0xDFBC, symSize: 0x2C } - - { offsetInCU: 0x679B, offset: 0x5EC61, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBDE4, symBinAddr: 0xDFE8, symSize: 0x2C } - - { offsetInCU: 0x67AF, offset: 0x5EC75, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBE10, symBinAddr: 0xE014, symSize: 0x2C } - - { offsetInCU: 0x67C3, offset: 0x5EC89, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBE3C, symBinAddr: 0xE040, symSize: 0x2C } - - { offsetInCU: 0x67D7, offset: 0x5EC9D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBE68, symBinAddr: 0xE06C, symSize: 0x2C } - - { offsetInCU: 0x67EB, offset: 0x5ECB1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBE94, symBinAddr: 0xE098, symSize: 0x2C } - - { offsetInCU: 0x67FF, offset: 0x5ECC5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBEC0, symBinAddr: 0xE0C4, symSize: 0x2C } - - { offsetInCU: 0x6C07, offset: 0x5F0CD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x89D8, symBinAddr: 0xABDC, symSize: 0x14 } - - { offsetInCU: 0x6C45, offset: 0x5F10B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x89F8, symBinAddr: 0xABFC, symSize: 0x8 } - - { offsetInCU: 0x6C94, offset: 0x5F15A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A00, symBinAddr: 0xAC04, symSize: 0x14 } - - { offsetInCU: 0x6D31, offset: 0x5F1F7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A14, symBinAddr: 0xAC18, symSize: 0x14 } - - { offsetInCU: 0x6DC6, offset: 0x5F28C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A28, symBinAddr: 0xAC2C, symSize: 0x14 } - - { offsetInCU: 0x6E63, offset: 0x5F329, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A3C, symBinAddr: 0xAC40, symSize: 0x30 } - - { offsetInCU: 0x6FD6, offset: 0x5F49C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8A6C, symBinAddr: 0xAC70, symSize: 0x2C } - - { offsetInCU: 0x7163, offset: 0x5F629, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8A98, symBinAddr: 0xAC9C, symSize: 0x24 } - - { offsetInCU: 0x724F, offset: 0x5F715, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8ABC, symBinAddr: 0xACC0, symSize: 0x14 } - - { offsetInCU: 0x72B5, offset: 0x5F77B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8AD0, symBinAddr: 0xACD4, symSize: 0x14 } - - { offsetInCU: 0x731B, offset: 0x5F7E1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8AE4, symBinAddr: 0xACE8, symSize: 0x14 } - - { offsetInCU: 0x7390, offset: 0x5F856, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8AF8, symBinAddr: 0xACFC, symSize: 0x14 } - - { offsetInCU: 0x7439, offset: 0x5F8FF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B0C, symBinAddr: 0xAD10, symSize: 0x14 } - - { offsetInCU: 0x74B0, offset: 0x5F976, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B20, symBinAddr: 0xAD24, symSize: 0x14 } - - { offsetInCU: 0x7568, offset: 0x5FA2E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B34, symBinAddr: 0xAD38, symSize: 0x14 } - - { offsetInCU: 0x7602, offset: 0x5FAC8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B48, symBinAddr: 0xAD4C, symSize: 0x10 } - - { offsetInCU: 0x766A, offset: 0x5FB30, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B58, symBinAddr: 0xAD5C, symSize: 0x28 } - - { offsetInCU: 0x7686, offset: 0x5FB4C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8B80, symBinAddr: 0xAD84, symSize: 0x14 } - - { offsetInCU: 0x7702, offset: 0x5FBC8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8BB0, symBinAddr: 0xADB4, symSize: 0x14 } - - { offsetInCU: 0x7733, offset: 0x5FBF9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8BC4, symBinAddr: 0xADC8, symSize: 0x14 } - - { offsetInCU: 0x7764, offset: 0x5FC2A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8BD8, symBinAddr: 0xADDC, symSize: 0x14 } - - { offsetInCU: 0x7795, offset: 0x5FC5B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8BEC, symBinAddr: 0xADF0, symSize: 0x30 } - - { offsetInCU: 0x77C4, offset: 0x5FC8A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C1C, symBinAddr: 0xAE20, symSize: 0x2C } - - { offsetInCU: 0x77F5, offset: 0x5FCBB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C48, symBinAddr: 0xAE4C, symSize: 0x24 } - - { offsetInCU: 0x7826, offset: 0x5FCEC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8C6C, symBinAddr: 0xAE70, symSize: 0x14 } - - { offsetInCU: 0x7857, offset: 0x5FD1D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8C80, symBinAddr: 0xAE84, symSize: 0x14 } - - { offsetInCU: 0x7888, offset: 0x5FD4E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8C94, symBinAddr: 0xAE98, symSize: 0x14 } - - { offsetInCU: 0x78B9, offset: 0x5FD7F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8CA8, symBinAddr: 0xAEAC, symSize: 0x14 } - - { offsetInCU: 0x78EA, offset: 0x5FDB0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8CBC, symBinAddr: 0xAEC0, symSize: 0x14 } - - { offsetInCU: 0x791B, offset: 0x5FDE1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8CD0, symBinAddr: 0xAED4, symSize: 0x14 } - - { offsetInCU: 0x794C, offset: 0x5FE12, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8CE4, symBinAddr: 0xAEE8, symSize: 0x14 } - - { offsetInCU: 0x797D, offset: 0x5FE43, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8CF8, symBinAddr: 0xAEFC, symSize: 0x10 } - - { offsetInCU: 0x79AE, offset: 0x5FE74, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D08, symBinAddr: 0xAF0C, symSize: 0x28 } - - { offsetInCU: 0x79CA, offset: 0x5FE90, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D30, symBinAddr: 0xAF34, symSize: 0x14 } - - { offsetInCU: 0x7A0A, offset: 0x5FED0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D50, symBinAddr: 0xAF54, symSize: 0x40 } - - { offsetInCU: 0x7A88, offset: 0x5FF4E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8D90, symBinAddr: 0xAF94, symSize: 0x70 } - - { offsetInCU: 0x7B1B, offset: 0x5FFE1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E48, symBinAddr: 0xB04C, symSize: 0x4 } - - { offsetInCU: 0x7B3B, offset: 0x60001, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E48, symBinAddr: 0xB04C, symSize: 0x4 } - - { offsetInCU: 0x7B5B, offset: 0x60021, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E4C, symBinAddr: 0xB050, symSize: 0x4 } - - { offsetInCU: 0x7B7B, offset: 0x60041, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E4C, symBinAddr: 0xB050, symSize: 0x4 } - - { offsetInCU: 0x7BA1, offset: 0x60067, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E50, symBinAddr: 0xB054, symSize: 0x40 } - - { offsetInCU: 0x7C10, offset: 0x600D6, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8E90, symBinAddr: 0xB094, symSize: 0x8 } - - { offsetInCU: 0x7C3B, offset: 0x60101, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8E98, symBinAddr: 0xB09C, symSize: 0x3C } - - { offsetInCU: 0x7C6C, offset: 0x60132, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FC4, symBinAddr: 0xB1C8, symSize: 0x14 } - - { offsetInCU: 0x7C9D, offset: 0x60163, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8FD8, symBinAddr: 0xB1DC, symSize: 0x3C } - - { offsetInCU: 0x7CDD, offset: 0x601A3, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9014, symBinAddr: 0xB218, symSize: 0x88 } - - { offsetInCU: 0x7D5E, offset: 0x60224, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9130, symBinAddr: 0xB334, symSize: 0x84 } - - { offsetInCU: 0x7D92, offset: 0x60258, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x9764, symBinAddr: 0xB968, symSize: 0xB0 } - - { offsetInCU: 0x7E7E, offset: 0x60344, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9814, symBinAddr: 0xBA18, symSize: 0x1F0 } - - { offsetInCU: 0x80AD, offset: 0x60573, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x80CD, offset: 0x60593, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x80E1, offset: 0x605A7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8101, offset: 0x605C7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8115, offset: 0x605DB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8129, offset: 0x605EF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x813D, offset: 0x60603, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8220, offset: 0x606E6, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8240, offset: 0x60706, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8254, offset: 0x6071A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8274, offset: 0x6073A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8288, offset: 0x6074E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x829C, offset: 0x60762, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x82B0, offset: 0x60776, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8357, offset: 0x6081D, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBEEC, symBinAddr: 0xE0F0, symSize: 0x80 } - - { offsetInCU: 0x83E8, offset: 0x608AE, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBF6C, symBinAddr: 0xE170, symSize: 0x90 } - - { offsetInCU: 0x85AA, offset: 0x60A70, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x90A8, symBinAddr: 0xB2AC, symSize: 0x10 } - - { offsetInCU: 0x85C6, offset: 0x60A8C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x90B8, symBinAddr: 0xB2BC, symSize: 0xC } - - { offsetInCU: 0x8630, offset: 0x60AF6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x90C4, symBinAddr: 0xB2C8, symSize: 0x44 } - - { offsetInCU: 0x8659, offset: 0x60B1F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x9108, symBinAddr: 0xB30C, symSize: 0x28 } - - { offsetInCU: 0x8694, offset: 0x60B5A, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x909C, symBinAddr: 0xB2A0, symSize: 0xC } - - { offsetInCU: 0x8772, offset: 0x60C38, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x89EC, symBinAddr: 0xABF0, symSize: 0xC } - - { offsetInCU: 0x87A4, offset: 0x60C6A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8B94, symBinAddr: 0xAD98, symSize: 0x10 } - - { offsetInCU: 0x87C0, offset: 0x60C86, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8BA4, symBinAddr: 0xADA8, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x60E8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xE230, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x60EB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xE230, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x60EE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xE240, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x61011, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xE26C, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x61025, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xE280, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x61065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xE290, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x610B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0xE2B0, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x6111A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0xE2C8, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x61194, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0xE2F4, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x611BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0xE2FC, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x611F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0xE320, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x6120C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0xE32C, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x61228, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2058, symBinAddr: 0x102B8, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x6126E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0xE388, symSize: 0x40C } - - { offsetInCU: 0x2F5, offset: 0x612C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1388, symBinAddr: 0xF5E8, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x612FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x13D8, symBinAddr: 0xF638, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x6131D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x242C, symBinAddr: 0x1068C, symSize: 0x144C } - - { offsetInCU: 0x381, offset: 0x6134F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x534, symBinAddr: 0xE794, symSize: 0x100 } - - { offsetInCU: 0x3CD, offset: 0x6139B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1428, symBinAddr: 0xF688, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x613EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1430, symBinAddr: 0xF690, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x614D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1470, symBinAddr: 0xF6D0, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61552, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xF730, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61572, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xF730, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x61592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14D4, symBinAddr: 0xF734, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x615C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x14FC, symBinAddr: 0xF75C, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x615DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1508, symBinAddr: 0xF768, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x615FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3878, symBinAddr: 0x11AD8, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x6163F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvgTf4d_n', symObjAddr: 0x38E4, symBinAddr: 0x11B44, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x61673, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1564, symBinAddr: 0xF7C4, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x616AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15B4, symBinAddr: 0xF814, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x616CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x38F0, symBinAddr: 0x11B50, symSize: 0x248 } - - { offsetInCU: 0x771, offset: 0x6173F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x634, symBinAddr: 0xE894, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x6176A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1604, symBinAddr: 0xF864, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x61795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x160C, symBinAddr: 0xF86C, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x617C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1630, symBinAddr: 0xF890, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x617E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x163C, symBinAddr: 0xF89C, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x617FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5A94, symBinAddr: 0x13CB0, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x61844, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x654, symBinAddr: 0xE8B4, symSize: 0x17C } - - { offsetInCU: 0x8CB, offset: 0x61899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1698, symBinAddr: 0xF8F8, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x618D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16E8, symBinAddr: 0xF948, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x618F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5C2C, symBinAddr: 0x13E48, symSize: 0x310 } - - { offsetInCU: 0x975, offset: 0x61943, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x7D0, symBinAddr: 0xEA30, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x6196E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1728, symBinAddr: 0xF988, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x61999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1730, symBinAddr: 0xF990, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x619CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1754, symBinAddr: 0xF9B4, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x619E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5F3C, symBinAddr: 0x14158, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x61A2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7F0, symBinAddr: 0xEA50, symSize: 0x154 } - - { offsetInCU: 0xAB3, offset: 0x61A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0xFA10, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x61AB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17F0, symBinAddr: 0xFA50, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x61ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6094, symBinAddr: 0x142B0, symSize: 0x2C8 } - - { offsetInCU: 0xB51, offset: 0x61B1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x944, symBinAddr: 0xEBA4, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x61B4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1828, symBinAddr: 0xFA88, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x61B75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1830, symBinAddr: 0xFA90, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x61BA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1854, symBinAddr: 0xFAB4, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x61BC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0xFAC0, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x61BDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x635C, symBinAddr: 0x14578, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x61C24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x964, symBinAddr: 0xEBC4, symSize: 0x1A4 } - - { offsetInCU: 0xCAB, offset: 0x61C79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18BC, symBinAddr: 0xFB1C, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x61CB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x192C, symBinAddr: 0xFB8C, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x61CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x64A4, symBinAddr: 0x146C0, symSize: 0x4D8 } - - { offsetInCU: 0xD55, offset: 0x61D23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xB08, symBinAddr: 0xED68, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x198C, symBinAddr: 0xFBEC, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x61D79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1994, symBinAddr: 0xFBF4, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x61DAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x19B8, symBinAddr: 0xFC18, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x61DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x19C4, symBinAddr: 0xFC24, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x61DE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6A48, symBinAddr: 0x14C64, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x61E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB28, symBinAddr: 0xED88, symSize: 0x1F4 } - - { offsetInCU: 0xEAF, offset: 0x61E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A20, symBinAddr: 0xFC80, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x61EB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A84, symBinAddr: 0xFCE4, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x61ED7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CBC, symBinAddr: 0x14ED8, symSize: 0x57C } - - { offsetInCU: 0xF59, offset: 0x61F27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xD1C, symBinAddr: 0xEF7C, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1AD4, symBinAddr: 0xFD34, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x62003, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1AEC, symBinAddr: 0xFD4C, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x620E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1B30, symBinAddr: 0xFD90, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x62158, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0xFDF8, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x62183, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0xFE00, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x621B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC4, symBinAddr: 0xFE24, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x621D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0xFE30, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x621EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x727C, symBinAddr: 0x15498, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x62232, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD34, symBinAddr: 0xEF94, symSize: 0x118 } - - { offsetInCU: 0x12B9, offset: 0x62287, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C2C, symBinAddr: 0xFE8C, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x622BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C58, symBinAddr: 0xFEB8, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x622E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7334, symBinAddr: 0x15550, symSize: 0x1A0 } - - { offsetInCU: 0x136F, offset: 0x6233D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xE4C, symBinAddr: 0xF0AC, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x62368, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1C74, symBinAddr: 0xFED4, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x62393, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C7C, symBinAddr: 0xFEDC, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x623C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1CA0, symBinAddr: 0xFF00, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x623E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1CAC, symBinAddr: 0xFF0C, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x623FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7518, symBinAddr: 0x15734, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x62442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE6C, symBinAddr: 0xF0CC, symSize: 0x1CC } - - { offsetInCU: 0x14C9, offset: 0x62497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D08, symBinAddr: 0xFF68, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x624CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1D60, symBinAddr: 0xFFC0, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x624F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x772C, symBinAddr: 0x15948, symSize: 0x360 } - - { offsetInCU: 0x1567, offset: 0x62535, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1038, symBinAddr: 0xF298, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62560, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DA8, symBinAddr: 0x10008, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x6258B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x10010, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x625BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DD4, symBinAddr: 0x10034, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x625D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0x10040, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x625F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7A8C, symBinAddr: 0x15CA8, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x6263A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1058, symBinAddr: 0xF2B8, symSize: 0x1EC } - - { offsetInCU: 0x16C1, offset: 0x6268F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E3C, symBinAddr: 0x1009C, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x626C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E84, symBinAddr: 0x100E4, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x626E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C60, symBinAddr: 0x15E7C, symSize: 0x380 } - - { offsetInCU: 0x176B, offset: 0x62739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1244, symBinAddr: 0xF4A4, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x62764, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F48, symBinAddr: 0x101A8, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x6278F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F50, symBinAddr: 0x101B0, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x627C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1F74, symBinAddr: 0x101D4, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x627DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F80, symBinAddr: 0x101E0, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x627F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8068, symBinAddr: 0x16284, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x6283E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x125C, symBinAddr: 0xF4BC, symSize: 0x12C } - - { offsetInCU: 0x18C5, offset: 0x62893, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FDC, symBinAddr: 0x1023C, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x628CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2020, symBinAddr: 0x10280, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x628ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8164, symBinAddr: 0x16380, symSize: 0x1CC } - - { offsetInCU: 0x195C, offset: 0x6292A, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3B78, symBinAddr: 0x11D98, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x6293E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3B9C, symBinAddr: 0x11DBC, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62952, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3BE0, symBinAddr: 0x11E00, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x62966, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3C00, symBinAddr: 0x11E20, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x6297A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3C44, symBinAddr: 0x11E64, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x6298E, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3C88, symBinAddr: 0x11EA8, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x629A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3C90, symBinAddr: 0x11EAC, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x629B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x3CE0, symBinAddr: 0x11EFC, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x629CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x3D6C, symBinAddr: 0x11F88, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x629DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x3D74, symBinAddr: 0x11F90, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x629F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x3D78, symBinAddr: 0x11F94, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x62A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x3D7C, symBinAddr: 0x11F98, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x62A1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x3D8C, symBinAddr: 0x11FA8, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x4654, symBinAddr: 0x12870, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62A42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x4664, symBinAddr: 0x12880, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x62A56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4668, symBinAddr: 0x12884, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x62A6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x46AC, symBinAddr: 0x128C8, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x62A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x46B0, symBinAddr: 0x128CC, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x62A92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x46F4, symBinAddr: 0x12910, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x62AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x46F8, symBinAddr: 0x12914, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x62ABA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x473C, symBinAddr: 0x12958, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x62ACE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4780, symBinAddr: 0x1299C, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x62AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x47C4, symBinAddr: 0x129E0, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x62AF6, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4808, symBinAddr: 0x12A24, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x62B0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x484C, symBinAddr: 0x12A68, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62B1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4890, symBinAddr: 0x12AAC, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62B32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x48D4, symBinAddr: 0x12AF0, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x62B46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x4918, symBinAddr: 0x12B34, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x62B5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x495C, symBinAddr: 0x12B78, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x49A0, symBinAddr: 0x12BBC, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x62B82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x49E4, symBinAddr: 0x12C00, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x62B96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4A28, symBinAddr: 0x12C44, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x62BAA, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4A6C, symBinAddr: 0x12C88, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x62BBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4A78, symBinAddr: 0x12C94, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x62BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4B08, symBinAddr: 0x12D24, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x62BE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4BC4, symBinAddr: 0x12DE0, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x62BFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4BCC, symBinAddr: 0x12DE8, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4BD0, symBinAddr: 0x12DEC, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62C22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4BD8, symBinAddr: 0x12DF4, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x62C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4BE8, symBinAddr: 0x12E04, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x62C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4C10, symBinAddr: 0x12E2C, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4C54, symBinAddr: 0x12E70, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62C72, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4CC8, symBinAddr: 0x12EE4, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x62C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4CDC, symBinAddr: 0x12EF8, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x62C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x4D28, symBinAddr: 0x12F44, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x62CAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x4D70, symBinAddr: 0x12F8C, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x62CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x4DB8, symBinAddr: 0x12FD4, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x62CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x4DC8, symBinAddr: 0x12FE4, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x62CEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x4E00, symBinAddr: 0x1301C, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x4E74, symBinAddr: 0x13090, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62D12, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4F30, symBinAddr: 0x1314C, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x62D26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x4F4C, symBinAddr: 0x13168, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x62D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x4FC8, symBinAddr: 0x131E4, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5010, symBinAddr: 0x1322C, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x5064, symBinAddr: 0x13280, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x62D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x5074, symBinAddr: 0x13290, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x62D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x509C, symBinAddr: 0x132B8, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x62D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x50D8, symBinAddr: 0x132F4, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x62DB2, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5144, symBinAddr: 0x13360, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x62DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5150, symBinAddr: 0x1336C, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x62DDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5194, symBinAddr: 0x133B0, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x62DEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x51DC, symBinAddr: 0x133F8, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62E02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x521C, symBinAddr: 0x13438, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x62E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x522C, symBinAddr: 0x13448, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x62E2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x527C, symBinAddr: 0x13498, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62E3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5328, symBinAddr: 0x13544, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62E52, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x543C, symBinAddr: 0x13658, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x62E66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5468, symBinAddr: 0x13684, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x62E7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x5504, symBinAddr: 0x13720, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x62E8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x554C, symBinAddr: 0x13768, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x62EA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x55A8, symBinAddr: 0x137C4, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x62EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x55B8, symBinAddr: 0x137D4, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x62ECA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5610, symBinAddr: 0x1382C, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x62EDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x56D4, symBinAddr: 0x138F0, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x62EF2, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5818, symBinAddr: 0x13A34, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62F06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x584C, symBinAddr: 0x13A68, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62F1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x5900, symBinAddr: 0x13B1C, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62F2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5948, symBinAddr: 0x13B64, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62F42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x59AC, symBinAddr: 0x13BC8, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62F56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x59BC, symBinAddr: 0x13BD8, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62F6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x59C0, symBinAddr: 0x13BDC, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62F7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5A04, symBinAddr: 0x13C20, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62F92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5A08, symBinAddr: 0x13C24, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62FA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5A4C, symBinAddr: 0x13C68, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62FBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5A50, symBinAddr: 0x13C6C, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62FCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x697C, symBinAddr: 0x14B98, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x62FE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x69C0, symBinAddr: 0x14BDC, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x62FF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6A04, symBinAddr: 0x14C20, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x6300A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7238, symBinAddr: 0x15454, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x6301E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x74D4, symBinAddr: 0x156F0, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x63032, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7FE0, symBinAddr: 0x161FC, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x63046, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8024, symBinAddr: 0x16240, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x6305A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8330, symBinAddr: 0x1654C, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x6306E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8374, symBinAddr: 0x16590, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x63082, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x83B8, symBinAddr: 0x165D4, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x63096, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x8460, symBinAddr: 0x1667C, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x630AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x84A4, symBinAddr: 0x166C0, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x630BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8534, symBinAddr: 0x16750, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x630D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x85F0, symBinAddr: 0x1680C, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x630E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x85F4, symBinAddr: 0x16810, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x630FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8604, symBinAddr: 0x16820, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x6310E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8694, symBinAddr: 0x168B0, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x63122, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8750, symBinAddr: 0x1696C, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x63136, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8754, symBinAddr: 0x16970, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x6314A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8764, symBinAddr: 0x16980, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x6315E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x87F4, symBinAddr: 0x16A10, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x63172, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x88B0, symBinAddr: 0x16ACC, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x63186, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x88B8, symBinAddr: 0x16AD4, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x6319A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x88BC, symBinAddr: 0x16AD8, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x631AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x88C8, symBinAddr: 0x16AE4, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x631C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x88D8, symBinAddr: 0x16AF4, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x631D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8968, symBinAddr: 0x16B84, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x631EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A24, symBinAddr: 0x16C40, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x631FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A28, symBinAddr: 0x16C44, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x63212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A40, symBinAddr: 0x16C5C, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x63226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A44, symBinAddr: 0x16C60, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x6323A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8A54, symBinAddr: 0x16C70, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x6324E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8A8C, symBinAddr: 0x16CA8, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x63262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8B00, symBinAddr: 0x16D1C, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x63276, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8BC4, symBinAddr: 0x16DE0, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x6328A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x8BE8, symBinAddr: 0x16E04, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x6329E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x8C5C, symBinAddr: 0x16E78, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x632B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x8CA4, symBinAddr: 0x16EC0, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x632C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x8CF8, symBinAddr: 0x16F14, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x632DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x8D08, symBinAddr: 0x16F24, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x632EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x8D40, symBinAddr: 0x16F5C, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x63302, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x8DA4, symBinAddr: 0x16FC0, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x63316, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8E50, symBinAddr: 0x1706C, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x6332A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x8E64, symBinAddr: 0x17080, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x6333E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x8EC8, symBinAddr: 0x170E4, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x63352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x8F10, symBinAddr: 0x1712C, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x63366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x8F60, symBinAddr: 0x1717C, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x6337A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x8F70, symBinAddr: 0x1718C, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x6338E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x8FA8, symBinAddr: 0x171C4, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x633A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9014, symBinAddr: 0x17230, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x633B6, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x90C8, symBinAddr: 0x172E4, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x633CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x90EC, symBinAddr: 0x17308, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x633DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9158, symBinAddr: 0x17374, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x633F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x91A0, symBinAddr: 0x173BC, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x63406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x91F0, symBinAddr: 0x1740C, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x6341A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9200, symBinAddr: 0x1741C, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x6342E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9204, symBinAddr: 0x17420, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x63442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9248, symBinAddr: 0x17464, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x63456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x924C, symBinAddr: 0x17468, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x6346A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9290, symBinAddr: 0x174AC, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x6347E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9294, symBinAddr: 0x174B0, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x63492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x92D8, symBinAddr: 0x174F4, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x92DC, symBinAddr: 0x174F8, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x634BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9320, symBinAddr: 0x1753C, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x634CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9324, symBinAddr: 0x17540, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x634E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9368, symBinAddr: 0x17584, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x634F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x936C, symBinAddr: 0x17588, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x6350A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x93B0, symBinAddr: 0x175CC, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x6351E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x93B4, symBinAddr: 0x175D0, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x93F8, symBinAddr: 0x17614, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x63546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x93FC, symBinAddr: 0x17618, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x6355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9440, symBinAddr: 0x1765C, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x6356E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9444, symBinAddr: 0x17660, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x63582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9488, symBinAddr: 0x176A4, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x63596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x948C, symBinAddr: 0x176A8, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x635AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94D0, symBinAddr: 0x176EC, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x635BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94D4, symBinAddr: 0x176F0, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x635D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9518, symBinAddr: 0x17734, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x635E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x951C, symBinAddr: 0x17738, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9560, symBinAddr: 0x1777C, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x6360E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9564, symBinAddr: 0x17780, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95A8, symBinAddr: 0x177C4, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x63636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95AC, symBinAddr: 0x177C8, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x6364A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x95F0, symBinAddr: 0x1780C, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x6365E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x95F4, symBinAddr: 0x17810, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9638, symBinAddr: 0x17854, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x63686, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x967C, symBinAddr: 0x17898, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x6369A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x96C0, symBinAddr: 0x178DC, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x636AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9704, symBinAddr: 0x17920, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x636C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9794, symBinAddr: 0x179B0, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x636D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9850, symBinAddr: 0x17A6C, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x636EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9854, symBinAddr: 0x17A70, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x636FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x99B8, symBinAddr: 0x17BD4, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x99BC, symBinAddr: 0x17BD8, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x63726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x99CC, symBinAddr: 0x17BE8, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x6373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9A5C, symBinAddr: 0x17C78, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x6374E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9B18, symBinAddr: 0x17D34, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9B1C, symBinAddr: 0x17D38, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x63776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B2C, symBinAddr: 0x17D48, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x6378A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9B30, symBinAddr: 0x17D4C, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x6379E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B74, symBinAddr: 0x17D90, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x637B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9B78, symBinAddr: 0x17D94, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x637C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9BBC, symBinAddr: 0x17DD8, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x637DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9BC0, symBinAddr: 0x17DDC, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x637EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C04, symBinAddr: 0x17E20, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C08, symBinAddr: 0x17E24, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x63816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9C4C, symBinAddr: 0x17E68, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x6382A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9C50, symBinAddr: 0x17E6C, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x6383E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C94, symBinAddr: 0x17EB0, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C98, symBinAddr: 0x17EB4, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x63866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CDC, symBinAddr: 0x17EF8, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x6387A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9CE0, symBinAddr: 0x17EFC, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x6388E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D24, symBinAddr: 0x17F40, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x638A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D28, symBinAddr: 0x17F44, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x638B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D6C, symBinAddr: 0x17F88, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x638CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D70, symBinAddr: 0x17F8C, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x6391A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0xE338, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x63936, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0xE360, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x6397F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1494, symBinAddr: 0xF6F4, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63A21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1514, symBinAddr: 0xF774, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63A3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x153C, symBinAddr: 0xF79C, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63A5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1648, symBinAddr: 0xF8A8, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x63A7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1670, symBinAddr: 0xF8D0, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x63A9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0xF9C0, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x63AB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0xF9E8, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x63ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x186C, symBinAddr: 0xFACC, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x63AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1894, symBinAddr: 0xFAF4, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x63B19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x19D0, symBinAddr: 0xFC30, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x63B35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0xFC58, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x63B7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1B58, symBinAddr: 0xFDB8, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BDC, symBinAddr: 0xFE3C, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x63C3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C04, symBinAddr: 0xFE64, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1CB8, symBinAddr: 0xFF18, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x63C7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0xFF40, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x63C9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DEC, symBinAddr: 0x1004C, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x63CB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E14, symBinAddr: 0x10074, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x63CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1F8C, symBinAddr: 0x101EC, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x63CF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FB4, symBinAddr: 0x10214, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x63EA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x180A8, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63F1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x180A8, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x1812C, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x18168, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63FD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x181BC, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x63FF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x181CC, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x6401E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x128, symBinAddr: 0x181D0, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x6403C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x13C, symBinAddr: 0x181E4, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x64076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x150, symBinAddr: 0x181F8, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x640A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x18208, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x640CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x1820C, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x640ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x18238, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x6412C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x1826C, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x6415A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x1827C, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x64185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x18280, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x641A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x18288, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x641DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x18290, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x6420B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x182A0, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x64236, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x182A4, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x64254, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x182AC, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x6428E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x182B4, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x642BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x182C4, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x642E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x182C8, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x64305, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x182F4, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x64344, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x18328, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x64372, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x18338, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x6439D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x1833C, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x643BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x18368, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x643FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x1839C, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x64428, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x183AC, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x64453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x183B0, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x64471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x183BC, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x644AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x183C8, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x644DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x183D8, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x64508, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x183DC, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x64526, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x183E8, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x64564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x183F4, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x64592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x18404, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x645BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x18408, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x645D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x18438, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x645E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x18478, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x645FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x1851C, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x6460E, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x18620, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x1864C, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x64636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x186E8, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x6464A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x18730, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x6465E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x18790, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64840, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x187A0, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x6486B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x18D44, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x64887, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x18FB4, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x648BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x18A4C, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x648EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x18F8C, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x64906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x1900C, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64932, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x19064, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x19168, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x64976, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x191F8, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x6498A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x192B4, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x6499E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x192B8, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x649B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x192C8, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x649C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x19358, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x649DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x19414, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x649EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x1941C, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x19420, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x64A16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x19428, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x64A2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x19438, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64A3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x1943C, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64A52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x19480, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x64A66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x19484, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x64BC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x194D0, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x64BF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x195E4, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64C1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC9printLogs33_05B95674BA567498C742095BB49A0405LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x199BC, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64D50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x19600, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x64DA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x19620, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x64DF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x196AC, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64E20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x196B0, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x64E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x196B4, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64E6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x19728, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x64EC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1972C, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x197BC, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x19820, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64FB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x198B0, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x65003, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x19940, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x65035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x199B4, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x65051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x199B8, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x650CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x19A68, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x651B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1A134, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x65207, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1A1A8, symSize: 0x294 } - - { offsetInCU: 0x7C0, offset: 0x65335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF6C, symBinAddr: 0x1A43C, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x653B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFD4, symBinAddr: 0x1A4A4, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x653F2, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1038, symBinAddr: 0x1A508, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x65406, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1048, symBinAddr: 0x1A518, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x6541A, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10DC, symBinAddr: 0x1A528, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x6542E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1124, symBinAddr: 0x1A570, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x65442, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1138, symBinAddr: 0x1A584, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x65456, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x117C, symBinAddr: 0x1A5C8, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x6546A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11BC, symBinAddr: 0x1A608, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x6547E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1380, symBinAddr: 0x1A7CC, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x65492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13B0, symBinAddr: 0x1A7FC, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x654A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x156C, symBinAddr: 0x1A9B8, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x6574D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AB8, symBinAddr: 0x83AB8, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x65767, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2AC0, symBinAddr: 0x83AC0, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65775, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1A9F8, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x657B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1AA2C, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x657E7, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1AA6C, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65812, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1AAA0, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65862, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1AAE0, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x6588D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1AB10, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x658B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1AB14, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x658D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1AB38, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x65904, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1AB4C, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x65995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1ABBC, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x659B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1ABBC, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x659FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1AC18, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x65A79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1AC84, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x65B03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1ADBC, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1AE18, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x65B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1AE78, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x65B7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1AEB4, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x65BED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1AFEC, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x65C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1B038, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x65C35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1B088, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x65C64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1B0C4, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x65C8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1B0CC, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x65CAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1B0FC, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x65CD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1B138, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x65D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1B1D0, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x65D47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x818, symBinAddr: 0x1B200, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65D70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x85C, symBinAddr: 0x1B244, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x65D9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1B280, symSize: 0x68 } - - { offsetInCU: 0x74C, offset: 0x65E4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1B2E8, symSize: 0xC0 } - - { offsetInCU: 0x7E5, offset: 0x65EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9C0, symBinAddr: 0x1B3A8, symSize: 0xC0 } - - { offsetInCU: 0x865, offset: 0x65F63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xC84, symBinAddr: 0x1B66C, symSize: 0x70 } - - { offsetInCU: 0x88F, offset: 0x65F8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xCF4, symBinAddr: 0x1B6DC, symSize: 0x30 } - - { offsetInCU: 0x8B4, offset: 0x65FB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xD24, symBinAddr: 0x1B70C, symSize: 0x188 } - - { offsetInCU: 0x969, offset: 0x66067, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xEAC, symBinAddr: 0x1B894, symSize: 0x14 } - - { offsetInCU: 0x9B6, offset: 0x660B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0xEC0, symBinAddr: 0x1B8A8, symSize: 0x64 } - - { offsetInCU: 0xA52, offset: 0x66150, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0xF54, symBinAddr: 0x1B93C, symSize: 0x6C } - - { offsetInCU: 0xB86, offset: 0x66284, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x18B8, symBinAddr: 0x1C2A0, symSize: 0x228 } - - { offsetInCU: 0xC17, offset: 0x66315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B44, symBinAddr: 0x1C52C, symSize: 0x190 } - - { offsetInCU: 0xD1D, offset: 0x6641B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1AC88, symSize: 0x88 } - - { offsetInCU: 0xD53, offset: 0x66451, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1AD10, symSize: 0xAC } - - { offsetInCU: 0xD93, offset: 0x66491, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1AE08, symSize: 0x10 } - - { offsetInCU: 0xDA7, offset: 0x664A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1AE68, symSize: 0x10 } - - { offsetInCU: 0xDBB, offset: 0x664B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1AEB8, symSize: 0x88 } - - { offsetInCU: 0xDF1, offset: 0x664EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1AF40, symSize: 0xAC } - - { offsetInCU: 0xE31, offset: 0x6652F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1B174, symSize: 0x5C } - - { offsetInCU: 0xE95, offset: 0x66593, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xA80, symBinAddr: 0x1B468, symSize: 0x204 } - - { offsetInCU: 0xF09, offset: 0x66607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x172C, symBinAddr: 0x1C114, symSize: 0x13C } - - { offsetInCU: 0xFD3, offset: 0x666D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0xF24, symBinAddr: 0x1B90C, symSize: 0x30 } - - { offsetInCU: 0x10C2, offset: 0x667C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x1894, symBinAddr: 0x1C27C, symSize: 0x24 } - - { offsetInCU: 0x1112, offset: 0x66810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1B9A8, symSize: 0x21C } - - { offsetInCU: 0x1304, offset: 0x66A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x11DC, symBinAddr: 0x1BBC4, symSize: 0xC } - - { offsetInCU: 0x135B, offset: 0x66A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1BBD0, symSize: 0x4 } - - { offsetInCU: 0x1377, offset: 0x66A75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1BBD0, symSize: 0x4 } - - { offsetInCU: 0x1390, offset: 0x66A8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1BBD0, symSize: 0x4 } - - { offsetInCU: 0x13A9, offset: 0x66AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11EC, symBinAddr: 0x1BBD4, symSize: 0x4 } - - { offsetInCU: 0x13C1, offset: 0x66ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11F0, symBinAddr: 0x1BBD8, symSize: 0xB8 } - - { offsetInCU: 0x1461, offset: 0x66B5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12E8, symBinAddr: 0x1BCD0, symSize: 0x4 } - - { offsetInCU: 0x1479, offset: 0x66B77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x251C, symBinAddr: 0x1CEF4, symSize: 0x7C } - - { offsetInCU: 0x1556, offset: 0x66C54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x12A8, symBinAddr: 0x1BC90, symSize: 0x40 } - - { offsetInCU: 0x158B, offset: 0x66C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x12F8, symBinAddr: 0x1BCE0, symSize: 0x98 } - - { offsetInCU: 0x1648, offset: 0x66D46, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x1440, symBinAddr: 0x1BE28, symSize: 0x198 } - - { offsetInCU: 0x1AF7, offset: 0x671F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x15D8, symBinAddr: 0x1BFC0, symSize: 0x13C } - - { offsetInCU: 0x1BF4, offset: 0x672F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1714, symBinAddr: 0x1C0FC, symSize: 0x18 } - - { offsetInCU: 0x1C08, offset: 0x67306, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1868, symBinAddr: 0x1C250, symSize: 0x2C } - - { offsetInCU: 0x1C20, offset: 0x6731E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1AE0, symBinAddr: 0x1C4C8, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x67332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1B24, symBinAddr: 0x1C50C, symSize: 0x20 } - - { offsetInCU: 0x1C48, offset: 0x67346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1CD4, symBinAddr: 0x1C6BC, symSize: 0x20 } - - { offsetInCU: 0x1C5C, offset: 0x6735A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1CF4, symBinAddr: 0x1C6DC, symSize: 0x4 } - - { offsetInCU: 0x1C70, offset: 0x6736E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x1C6E0, symSize: 0x44 } - - { offsetInCU: 0x1C84, offset: 0x67382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D3C, symBinAddr: 0x1C724, symSize: 0x4 } - - { offsetInCU: 0x1C98, offset: 0x67396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D40, symBinAddr: 0x1C728, symSize: 0x44 } - - { offsetInCU: 0x1CAC, offset: 0x673AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwCP', symObjAddr: 0x1E60, symBinAddr: 0x1C848, symSize: 0x5C } - - { offsetInCU: 0x1CC0, offset: 0x673BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1EBC, symBinAddr: 0x1C8A4, symSize: 0x18 } - - { offsetInCU: 0x1CD4, offset: 0x673D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1ED4, symBinAddr: 0x1C8BC, symSize: 0x14 } - - { offsetInCU: 0x1CE8, offset: 0x673E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1EE8, symBinAddr: 0x1C8D0, symSize: 0x18 } - - { offsetInCU: 0x1CFC, offset: 0x673FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwcp', symObjAddr: 0x1F00, symBinAddr: 0x1C8E8, symSize: 0x5C } - - { offsetInCU: 0x1D10, offset: 0x6740E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x1F5C, symBinAddr: 0x1C944, symSize: 0x6C } - - { offsetInCU: 0x1D24, offset: 0x67422, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1FC8, symBinAddr: 0x1C9B0, symSize: 0x14 } - - { offsetInCU: 0x1D38, offset: 0x67436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x1FDC, symBinAddr: 0x1C9C4, symSize: 0x50 } - - { offsetInCU: 0x1D4C, offset: 0x6744A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x202C, symBinAddr: 0x1CA14, symSize: 0x48 } - - { offsetInCU: 0x1D60, offset: 0x6745E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x2074, symBinAddr: 0x1CA5C, symSize: 0x48 } - - { offsetInCU: 0x1D74, offset: 0x67472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x20BC, symBinAddr: 0x1CAA4, symSize: 0x8 } - - { offsetInCU: 0x1D88, offset: 0x67486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x20C4, symBinAddr: 0x1CAAC, symSize: 0x4 } - - { offsetInCU: 0x1D9C, offset: 0x6749A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x20C8, symBinAddr: 0x1CAB0, symSize: 0x8 } - - { offsetInCU: 0x1DB0, offset: 0x674AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x20D0, symBinAddr: 0x1CAB8, symSize: 0x10 } - - { offsetInCU: 0x1DC4, offset: 0x674C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x21B8, symBinAddr: 0x1CB90, symSize: 0x90 } - - { offsetInCU: 0x1DD8, offset: 0x674D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2248, symBinAddr: 0x1CC20, symSize: 0xBC } - - { offsetInCU: 0x1DEC, offset: 0x674EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2304, symBinAddr: 0x1CCDC, symSize: 0x4 } - - { offsetInCU: 0x1E00, offset: 0x674FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2308, symBinAddr: 0x1CCE0, symSize: 0x10 } - - { offsetInCU: 0x1E14, offset: 0x67512, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x2318, symBinAddr: 0x1CCF0, symSize: 0x90 } - - { offsetInCU: 0x1E28, offset: 0x67526, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x23A8, symBinAddr: 0x1CD80, symSize: 0xBC } - - { offsetInCU: 0x1E3C, offset: 0x6753A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x2464, symBinAddr: 0x1CE3C, symSize: 0x8 } - - { offsetInCU: 0x1E50, offset: 0x6754E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x246C, symBinAddr: 0x1CE44, symSize: 0x4 } - - { offsetInCU: 0x1E64, offset: 0x67562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2470, symBinAddr: 0x1CE48, symSize: 0x8 } - - { offsetInCU: 0x1E78, offset: 0x67576, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2478, symBinAddr: 0x1CE50, symSize: 0x10 } - - { offsetInCU: 0x1E97, offset: 0x67595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x24B0, symBinAddr: 0x1CE88, symSize: 0x24 } - - { offsetInCU: 0x1EC0, offset: 0x675BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x25BC, symBinAddr: 0x1CF94, symSize: 0x8 } - - { offsetInCU: 0x1ED4, offset: 0x675D2, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x25C4, symBinAddr: 0x1CF9C, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x675E6, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x25D4, symBinAddr: 0x1CFAC, symSize: 0x8 } - - { offsetInCU: 0x1EFC, offset: 0x675FA, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2660, symBinAddr: 0x1CFB4, symSize: 0x3C } - - { offsetInCU: 0x1F7E, offset: 0x6767C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1A9E8, symSize: 0x4 } - - { offsetInCU: 0x1F9A, offset: 0x67698, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1A9EC, symSize: 0x4 } - - { offsetInCU: 0x1FB6, offset: 0x676B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1A9F0, symSize: 0x4 } - - { offsetInCU: 0x1FD2, offset: 0x676D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1A9F4, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x67AC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1D108, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x67AD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1D144, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67AEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1D1C8, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x67B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1D2F0, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x67B2F, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1D320, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x67B43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1D33C, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x67B57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1D3D8, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x67B6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1D43C, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x67B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1D498, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x67B93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1D4A8, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x67BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1D4D8, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67BBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1D500, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67BCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1D55C, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x67BE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1D5E0, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x67BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1D644, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x67C0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1D6A0, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x67C1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1D700, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x67C3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1D710, symSize: 0x10C } - - { offsetInCU: 0x20B, offset: 0x67C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x1DB68, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67CDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA68, symBinAddr: 0x1DB70, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x67DC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA8, symBinAddr: 0x1DBB0, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x67E42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1DC10, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x67E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1DC10, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x67E82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB0C, symBinAddr: 0x1DC14, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67EB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB34, symBinAddr: 0x1DC3C, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67ECF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB40, symBinAddr: 0x1DC48, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67EEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF18, symBinAddr: 0x1E020, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67F2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF84, symBinAddr: 0x1E08C, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67F63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x1DCA4, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67F9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE8, symBinAddr: 0x1DCF0, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF90, symBinAddr: 0x1E098, symSize: 0x144 } - - { offsetInCU: 0x58D, offset: 0x6800D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x714, symBinAddr: 0x1D81C, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x6805C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC28, symBinAddr: 0x1DD30, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x680C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x1DD48, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x6813C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC6C, symBinAddr: 0x1DD74, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x68167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC74, symBinAddr: 0x1DD7C, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x68198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC98, symBinAddr: 0x1DDA0, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x681B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1DDAC, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x681D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1224, symBinAddr: 0x1E2A8, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x68216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x734, symBinAddr: 0x1D83C, symSize: 0x1B8 } - - { offsetInCU: 0x7EB, offset: 0x6826B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1DE08, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x682A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD4C, symBinAddr: 0x1DE54, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x682C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1360, symBinAddr: 0x1E3E4, symSize: 0x254 } - - { offsetInCU: 0x895, offset: 0x68315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x8EC, symBinAddr: 0x1D9F4, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x68340, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE18, symBinAddr: 0x1DF20, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x6836B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE20, symBinAddr: 0x1DF28, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x6839C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE44, symBinAddr: 0x1DF4C, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x683B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CEC, symBinAddr: 0x1ED04, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x683FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x90C, symBinAddr: 0x1DA14, symSize: 0x154 } - - { offsetInCU: 0x9D3, offset: 0x68453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xEA0, symBinAddr: 0x1DFA8, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x6848A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEE0, symBinAddr: 0x1DFE8, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x684AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E44, symBinAddr: 0x1EE5C, symSize: 0x2A8 } - - { offsetInCU: 0xA80, offset: 0x68500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1138, symBinAddr: 0x1E1DC, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x68514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x119C, symBinAddr: 0x1E220, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x68528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x11E0, symBinAddr: 0x1E264, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x6853C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x15B4, symBinAddr: 0x1E638, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x68550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x163C, symBinAddr: 0x1E67C, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x68564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x172C, symBinAddr: 0x1E76C, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x68578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1788, symBinAddr: 0x1E7B8, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x6858C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1790, symBinAddr: 0x1E7C0, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x685A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1794, symBinAddr: 0x1E7C4, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x685B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x179C, symBinAddr: 0x1E7CC, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x685C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x1E7DC, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x685DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x1E82C, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x685F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x188C, symBinAddr: 0x1E8B8, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x68604, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1894, symBinAddr: 0x1E8C0, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x68618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1898, symBinAddr: 0x1E8C4, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x6862C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x189C, symBinAddr: 0x1E8C8, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x68640, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18AC, symBinAddr: 0x1E8D8, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x68654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x18E4, symBinAddr: 0x1E910, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x68668, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1948, symBinAddr: 0x1E974, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x6867C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A08, symBinAddr: 0x1EA20, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x68690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1A6C, symBinAddr: 0x1EA84, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x686A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1AC8, symBinAddr: 0x1EAE0, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x686B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B2C, symBinAddr: 0x1EB44, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x686CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B3C, symBinAddr: 0x1EB54, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x686E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B40, symBinAddr: 0x1EB58, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x686F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B84, symBinAddr: 0x1EB9C, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x68708, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B88, symBinAddr: 0x1EBA0, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x6871C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BCC, symBinAddr: 0x1EBE4, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x68730, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x1EBE8, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x68744, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C14, symBinAddr: 0x1EC2C, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x68758, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C18, symBinAddr: 0x1EC30, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x6876C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C5C, symBinAddr: 0x1EC74, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x68780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C60, symBinAddr: 0x1EC78, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x68794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CA4, symBinAddr: 0x1ECBC, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x687A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CA8, symBinAddr: 0x1ECC0, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x687BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x20EC, symBinAddr: 0x1F104, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x687D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x2284, symBinAddr: 0x1F29C, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x687E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2288, symBinAddr: 0x1F2A0, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x687F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2298, symBinAddr: 0x1F2B0, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x6880C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x229C, symBinAddr: 0x1F2B4, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x68820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22E0, symBinAddr: 0x1F2F8, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x68834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E4, symBinAddr: 0x1F2FC, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x68848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2328, symBinAddr: 0x1F340, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x6885C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x232C, symBinAddr: 0x1F344, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x688B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xACC, symBinAddr: 0x1DBD4, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x68953, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB4C, symBinAddr: 0x1DC54, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x6896F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB74, symBinAddr: 0x1DC7C, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x68991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCB0, symBinAddr: 0x1DDB8, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x689AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCD8, symBinAddr: 0x1DDE0, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x689CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE50, symBinAddr: 0x1DF58, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x689EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE78, symBinAddr: 0x1DF80, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x68B38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1F3B4, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x68B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1F3B4, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68B8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x1F8FC, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x68C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x1F924, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x68D1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x1F968, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x68D3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x1F968, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x68D7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x1F980, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x68E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x1F9C4, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x1F3CC, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68F5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x1F768, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68F71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x1F778, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68F91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x1F788, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68FAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x1F7B4, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x68FEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x1F7E8, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x6900C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x1F7F8, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x69037, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x1F7FC, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x69055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x1F804, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x6908F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x1F80C, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x690BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x1F81C, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x690F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x584, symBinAddr: 0x1F820, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x6910E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x598, symBinAddr: 0x1F834, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x69134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x1F848, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x69152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x1F874, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x6917D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x1F8A0, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x6919B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x1F8A8, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x691D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x1F8B0, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x691F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x1F8C0, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x69220, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x1F8C4, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x6923E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x1F8CC, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x6927A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x1F8D4, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x692A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x1F8E4, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x692D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x1F8E8, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x69301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x1F8F8, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x69343, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x1FA2C, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x69357, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x1FA30, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x6936B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x1FA74, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x6937F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x1FAA4, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x69393, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x1FB20, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x693A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x1FCA4, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x693C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x20038, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x693EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x20068, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x693FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x20094, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x69413, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x200C8, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x69427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x2010C, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x6943B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x202B8, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x6944F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x20300, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x69463, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x20378, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x69477, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x20388, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x6948B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x203BC, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x6949F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x203C4, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x694B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x203F8, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x694C7, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x2044C, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x694DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x20460, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x694EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x2049C, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x69503, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x204E4, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x69517, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x20524, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x6952B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x20534, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x6953F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x2056C, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x69553, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x205D8, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x69567, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x206B4, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x6957B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x206D0, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x6958F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x20744, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x695A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x207A0, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x695B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x20804, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x695CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x20814, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x695DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x2083C, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x695F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x20878, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x69607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x208E4, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x6961B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x20928, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x6962F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x20970, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x69643, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x209B0, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x69657, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x209C0, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x6966B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x20A14, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x6967F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x20A58, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x69693, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x20A68, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x696A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x20AF8, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x696BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x20BB4, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x696CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x20BBC, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x696E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x20BC0, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x696F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x20BCC, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x6974C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x1F9EC, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x69997, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x20BEC, symSize: 0x190 } - - { offsetInCU: 0x34F, offset: 0x69C78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x190, symBinAddr: 0x20D7C, symSize: 0x628 } - - { offsetInCU: 0x6AA, offset: 0x69FD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2D08, symBinAddr: 0x238F4, symSize: 0x6E8 } - - { offsetInCU: 0xBCE, offset: 0x6A4F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x840, symBinAddr: 0x2142C, symSize: 0x2220 } - - { offsetInCU: 0x1E29, offset: 0x6B752, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB708, symBinAddr: 0x2C2F4, symSize: 0x3C84 } - - { offsetInCU: 0x39B2, offset: 0x6D2DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xF38C, symBinAddr: 0x2FF78, symSize: 0x634 } - - { offsetInCU: 0x3F86, offset: 0x6D8AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tF', symObjAddr: 0xF9E8, symBinAddr: 0x305D4, symSize: 0x40 } - - { offsetInCU: 0x3FAE, offset: 0x6D8D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x1469C, symBinAddr: 0x35288, symSize: 0x3E0 } - - { offsetInCU: 0x413D, offset: 0x6DA66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x11108, symBinAddr: 0x31CF4, symSize: 0x271C } - - { offsetInCU: 0x5871, offset: 0x6F19A, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2A60, symBinAddr: 0x2364C, symSize: 0x2A8 } - - { offsetInCU: 0x5D25, offset: 0x6F64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x33F0, symBinAddr: 0x23FDC, symSize: 0x5D8 } - - { offsetInCU: 0x6058, offset: 0x6F981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x39C8, symBinAddr: 0x245B4, symSize: 0x394C } - - { offsetInCU: 0x7A52, offset: 0x7137B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7314, symBinAddr: 0x27F00, symSize: 0x278 } - - { offsetInCU: 0x7B69, offset: 0x71492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x7A10, symBinAddr: 0x285FC, symSize: 0x17AC } - - { offsetInCU: 0x84C3, offset: 0x71DEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x758C, symBinAddr: 0x28178, symSize: 0x118 } - - { offsetInCU: 0x852C, offset: 0x71E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x7800, symBinAddr: 0x283EC, symSize: 0x1E8 } - - { offsetInCU: 0x85F9, offset: 0x71F22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x79E8, symBinAddr: 0x285D4, symSize: 0x28 } - - { offsetInCU: 0x8836, offset: 0x7215F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x9210, symBinAddr: 0x29DFC, symSize: 0x754 } - - { offsetInCU: 0x8C47, offset: 0x72570, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA898, symBinAddr: 0x2B484, symSize: 0xE70 } - - { offsetInCU: 0x950F, offset: 0x72E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x9964, symBinAddr: 0x2A550, symSize: 0xB2C } - - { offsetInCU: 0x9F70, offset: 0x73899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xFE54, symBinAddr: 0x30A40, symSize: 0x12B4 } - - { offsetInCU: 0xAFC3, offset: 0x748EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x18310, symBinAddr: 0x38E2C, symSize: 0xBD0 } - - { offsetInCU: 0xBCEA, offset: 0x75613, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x13824, symBinAddr: 0x34410, symSize: 0xE78 } - - { offsetInCU: 0xC618, offset: 0x75F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x14A7C, symBinAddr: 0x35668, symSize: 0x1E8 } - - { offsetInCU: 0xC6AE, offset: 0x75FD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14C64, symBinAddr: 0x35850, symSize: 0x290 } - - { offsetInCU: 0xC79F, offset: 0x760C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14F04, symBinAddr: 0x35AF0, symSize: 0x90 } - - { offsetInCU: 0xC834, offset: 0x7615D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x14FE8, symBinAddr: 0x35BD4, symSize: 0x1004 } - - { offsetInCU: 0xD229, offset: 0x76B52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x15FEC, symBinAddr: 0x36BD8, symSize: 0x4C } - - { offsetInCU: 0xD245, offset: 0x76B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x16038, symBinAddr: 0x36C24, symSize: 0x150 } - - { offsetInCU: 0xD354, offset: 0x76C7D, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x16188, symBinAddr: 0x36D74, symSize: 0x54 } - - { offsetInCU: 0xD3CD, offset: 0x76CF6, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x16230, symBinAddr: 0x36DC8, symSize: 0x4C } - - { offsetInCU: 0xD451, offset: 0x76D7A, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x1627C, symBinAddr: 0x36E14, symSize: 0x50 } - - { offsetInCU: 0xD4CA, offset: 0x76DF3, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x162CC, symBinAddr: 0x36E64, symSize: 0x64 } - - { offsetInCU: 0xD50C, offset: 0x76E35, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x16330, symBinAddr: 0x36EC8, symSize: 0x30 } - - { offsetInCU: 0xD539, offset: 0x76E62, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16360, symBinAddr: 0x36EF8, symSize: 0x80 } - - { offsetInCU: 0xD5D7, offset: 0x76F00, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x163E0, symBinAddr: 0x36F78, symSize: 0x6C } - - { offsetInCU: 0xD671, offset: 0x76F9A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1644C, symBinAddr: 0x36FE4, symSize: 0x4C } - - { offsetInCU: 0xD6F5, offset: 0x7701E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x164C4, symBinAddr: 0x3705C, symSize: 0xE0 } - - { offsetInCU: 0xD73F, offset: 0x77068, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x165A4, symBinAddr: 0x3713C, symSize: 0xC4 } - - { offsetInCU: 0xD76C, offset: 0x77095, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16668, symBinAddr: 0x37200, symSize: 0x174 } - - { offsetInCU: 0xD820, offset: 0x77149, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x167DC, symBinAddr: 0x37374, symSize: 0x104 } - - { offsetInCU: 0xD9B3, offset: 0x772DC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x168E0, symBinAddr: 0x37478, symSize: 0x128 } - - { offsetInCU: 0xDB56, offset: 0x7747F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x16A08, symBinAddr: 0x375A0, symSize: 0x16C } - - { offsetInCU: 0xDD2B, offset: 0x77654, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x16B74, symBinAddr: 0x3770C, symSize: 0x174 } - - { offsetInCU: 0xDEE6, offset: 0x7780F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16CE8, symBinAddr: 0x37880, symSize: 0xFC } - - { offsetInCU: 0xE089, offset: 0x779B2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x16DE4, symBinAddr: 0x3797C, symSize: 0xFC } - - { offsetInCU: 0xE22C, offset: 0x77B55, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x16FE4, symBinAddr: 0x37B7C, symSize: 0xFC } - - { offsetInCU: 0xE356, offset: 0x77C7F, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x170E0, symBinAddr: 0x37C78, symSize: 0x40 } - - { offsetInCU: 0xE3A3, offset: 0x77CCC, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x17384, symBinAddr: 0x37F1C, symSize: 0x138 } - - { offsetInCU: 0xE442, offset: 0x77D6B, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x174BC, symBinAddr: 0x38054, symSize: 0xB4 } - - { offsetInCU: 0xE511, offset: 0x77E3A, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x177BC, symBinAddr: 0x38314, symSize: 0x18C } - - { offsetInCU: 0xE622, offset: 0x77F4B, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17948, symBinAddr: 0x384A0, symSize: 0xC0 } - - { offsetInCU: 0xE725, offset: 0x7804E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17C24, symBinAddr: 0x38740, symSize: 0x1A0 } - - { offsetInCU: 0xE87A, offset: 0x781A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17DC4, symBinAddr: 0x388E0, symSize: 0x380 } - - { offsetInCU: 0xEBA6, offset: 0x784CF, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18EE0, symBinAddr: 0x399FC, symSize: 0x198 } - - { offsetInCU: 0xECC2, offset: 0x785EB, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19078, symBinAddr: 0x39B94, symSize: 0xC0 } - - { offsetInCU: 0xEFF4, offset: 0x7891D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x19138, symBinAddr: 0x39C54, symSize: 0xD28 } - - { offsetInCU: 0x1026F, offset: 0x79B98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19E60, symBinAddr: 0x3A97C, symSize: 0x1C0 } - - { offsetInCU: 0x1041D, offset: 0x79D46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A020, symBinAddr: 0x3AB3C, symSize: 0x1A4 } - - { offsetInCU: 0x10510, offset: 0x79E39, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A1C4, symBinAddr: 0x3ACE0, symSize: 0x84 } - - { offsetInCU: 0x1071D, offset: 0x7A046, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1ACC8, symBinAddr: 0x3B7E4, symSize: 0x8 } - - { offsetInCU: 0x10731, offset: 0x7A05A, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1ADAC, symBinAddr: 0x3B8C8, symSize: 0x10 } - - { offsetInCU: 0x10745, offset: 0x7A06E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1ADBC, symBinAddr: 0x3B8D8, symSize: 0x14 } - - { offsetInCU: 0x10759, offset: 0x7A082, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1ADD0, symBinAddr: 0x3B8EC, symSize: 0x50 } - - { offsetInCU: 0x1076D, offset: 0x7A096, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1AE30, symBinAddr: 0x3B93C, symSize: 0x44 } - - { offsetInCU: 0x10781, offset: 0x7A0AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1AE74, symBinAddr: 0x3B980, symSize: 0x30C } - - { offsetInCU: 0x10795, offset: 0x7A0BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1B180, symBinAddr: 0x3BC8C, symSize: 0x240 } - - { offsetInCU: 0x107A9, offset: 0x7A0D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1B3C0, symBinAddr: 0x3BECC, symSize: 0x70 } - - { offsetInCU: 0x107BD, offset: 0x7A0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1B430, symBinAddr: 0x3BF3C, symSize: 0x34 } - - { offsetInCU: 0x107D1, offset: 0x7A0FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1B464, symBinAddr: 0x3BF70, symSize: 0x174 } - - { offsetInCU: 0x107E5, offset: 0x7A10E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1B5D8, symBinAddr: 0x3C0E4, symSize: 0xB4 } - - { offsetInCU: 0x1081A, offset: 0x7A143, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1BEA4, symBinAddr: 0x3C198, symSize: 0xC4 } - - { offsetInCU: 0x10890, offset: 0x7A1B9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BF68, symBinAddr: 0x3C25C, symSize: 0x78 } - - { offsetInCU: 0x108BD, offset: 0x7A1E6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BFE0, symBinAddr: 0x3C2D4, symSize: 0x80 } - - { offsetInCU: 0x10933, offset: 0x7A25C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C060, symBinAddr: 0x3C354, symSize: 0x68 } - - { offsetInCU: 0x10A57, offset: 0x7A380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C0C8, symBinAddr: 0x3C3BC, symSize: 0x644 } - - { offsetInCU: 0x10EFB, offset: 0x7A824, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1C71C, symBinAddr: 0x3CA10, symSize: 0x4C } - - { offsetInCU: 0x10F0F, offset: 0x7A838, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1C810, symBinAddr: 0x3CA7C, symSize: 0x8 } - - { offsetInCU: 0x10F23, offset: 0x7A84C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1C818, symBinAddr: 0x3CA84, symSize: 0x44 } - - { offsetInCU: 0x10F37, offset: 0x7A860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1C85C, symBinAddr: 0x3CAC8, symSize: 0x44 } - - { offsetInCU: 0x10F4B, offset: 0x7A874, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1C908, symBinAddr: 0x3CB30, symSize: 0x8 } - - { offsetInCU: 0x10F5F, offset: 0x7A888, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1C920, symBinAddr: 0x3CB38, symSize: 0x3C } - - { offsetInCU: 0x10F73, offset: 0x7A89C, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1C95C, symBinAddr: 0x3CB74, symSize: 0x34 } - - { offsetInCU: 0x10F87, offset: 0x7A8B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1CA10, symBinAddr: 0x3CC28, symSize: 0x44 } - - { offsetInCU: 0x10FBC, offset: 0x7A8E5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CB18, symBinAddr: 0x3CD30, symSize: 0x48 } - - { offsetInCU: 0x10FDB, offset: 0x7A904, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CB60, symBinAddr: 0x3CD78, symSize: 0x64 } - - { offsetInCU: 0x1101E, offset: 0x7A947, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CBC4, symBinAddr: 0x3CDDC, symSize: 0x80 } - - { offsetInCU: 0x110B3, offset: 0x7A9DC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CC44, symBinAddr: 0x3CE5C, symSize: 0x120 } - - { offsetInCU: 0x1119B, offset: 0x7AAC4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1CDAC, symBinAddr: 0x3CFC4, symSize: 0x48 } - - { offsetInCU: 0x111AF, offset: 0x7AAD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1CDF4, symBinAddr: 0x3D00C, symSize: 0x40 } - - { offsetInCU: 0x111C3, offset: 0x7AAEC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1CF08, symBinAddr: 0x3D120, symSize: 0x48 } - - { offsetInCU: 0x111D7, offset: 0x7AB00, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1CFD0, symBinAddr: 0x3D1E8, symSize: 0x18 } - - { offsetInCU: 0x111EB, offset: 0x7AB14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1CFE8, symBinAddr: 0x3D200, symSize: 0x10 } - - { offsetInCU: 0x111FF, offset: 0x7AB28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1CFF8, symBinAddr: 0x3D210, symSize: 0x34 } - - { offsetInCU: 0x11213, offset: 0x7AB3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D068, symBinAddr: 0x3D280, symSize: 0x30 } - - { offsetInCU: 0x112C9, offset: 0x7ABF2, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x7B8, symBinAddr: 0x213A4, symSize: 0x88 } - - { offsetInCU: 0x116A8, offset: 0x7AFD1, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xA490, symBinAddr: 0x2B07C, symSize: 0x408 } - - { offsetInCU: 0x11983, offset: 0x7B2AC, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xFCC8, symBinAddr: 0x308B4, symSize: 0x18C } - - { offsetInCU: 0x11BA1, offset: 0x7B4CA, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x14F94, symBinAddr: 0x35B80, symSize: 0x54 } - - { offsetInCU: 0x11D0E, offset: 0x7B637, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x17570, symBinAddr: 0x38108, symSize: 0x110 } - - { offsetInCU: 0x11E4F, offset: 0x7B778, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x176C0, symBinAddr: 0x38218, symSize: 0xFC } - - { offsetInCU: 0x11F50, offset: 0x7B879, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17A68, symBinAddr: 0x38584, symSize: 0x1BC } - - { offsetInCU: 0x1201E, offset: 0x7B947, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18144, symBinAddr: 0x38C60, symSize: 0x1CC } - - { offsetInCU: 0x122E1, offset: 0x7BC0A, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A424, symBinAddr: 0x3AF40, symSize: 0x1DC } - - { offsetInCU: 0x123CD, offset: 0x7BCF6, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A600, symBinAddr: 0x3B11C, symSize: 0x11C } - - { offsetInCU: 0x12514, offset: 0x7BE3D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1A71C, symBinAddr: 0x3B238, symSize: 0xFC } - - { offsetInCU: 0x1265B, offset: 0x7BF84, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1A818, symBinAddr: 0x3B334, symSize: 0xE4 } - - { offsetInCU: 0x12796, offset: 0x7C0BF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1A8FC, symBinAddr: 0x3B418, symSize: 0x114 } - - { offsetInCU: 0x128D7, offset: 0x7C200, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AA10, symBinAddr: 0x3B52C, symSize: 0xEC } - - { offsetInCU: 0x12A1E, offset: 0x7C347, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1ABE4, symBinAddr: 0x3B700, symSize: 0xE4 } - - { offsetInCU: 0x12B7D, offset: 0x7C4A6, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CA54, symBinAddr: 0x3CC6C, symSize: 0xC4 } - - { offsetInCU: 0x12E23, offset: 0x7C74C, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x76A4, symBinAddr: 0x28290, symSize: 0x15C } - - { offsetInCU: 0x27, offset: 0x7CCFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3D2E8, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7CD12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3D2E8, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7CD26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3D318, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7CD3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3D404, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7CD4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3D67C, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7CD62, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3DA98, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7CD76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3DAA0, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7CD8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3DCE8, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7CD9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3DD30, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7CDB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x3DDEC, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7D0E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x3E2A8, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7D193, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x3E4AC, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D61B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x3F0BC, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D83B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x3F5FC, symSize: 0x920 } - - { offsetInCU: 0xD3E, offset: 0x7DBD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x2154, symBinAddr: 0x3FF48, symSize: 0x20FC } - - { offsetInCU: 0x202F, offset: 0x7EEC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE414, symBinAddr: 0x4C208, symSize: 0x6B8 } - - { offsetInCU: 0x23FC, offset: 0x7F28F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4250, symBinAddr: 0x42044, symSize: 0x1190 } - - { offsetInCU: 0x2F50, offset: 0x7FDE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x53E0, symBinAddr: 0x431D4, symSize: 0xB94 } - - { offsetInCU: 0x377E, offset: 0x80611, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x5F74, symBinAddr: 0x43D68, symSize: 0x3DC } - - { offsetInCU: 0x3895, offset: 0x80728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6BD4, symBinAddr: 0x449C8, symSize: 0x1EC } - - { offsetInCU: 0x3B41, offset: 0x809D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x6DC0, symBinAddr: 0x44BB4, symSize: 0x914 } - - { offsetInCU: 0x42D4, offset: 0x81167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x76D4, symBinAddr: 0x454C8, symSize: 0x2A8 } - - { offsetInCU: 0x440C, offset: 0x8129F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x797C, symBinAddr: 0x45770, symSize: 0x628 } - - { offsetInCU: 0x47FD, offset: 0x81690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x7FA4, symBinAddr: 0x45D98, symSize: 0x658 } - - { offsetInCU: 0x4ABF, offset: 0x81952, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x85FC, symBinAddr: 0x463F0, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x81A10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x882C, symBinAddr: 0x46620, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x81A93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x8A58, symBinAddr: 0x4684C, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x81AC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x8AD8, symBinAddr: 0x468CC, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81AFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD05C, symBinAddr: 0x4AE50, symSize: 0x780 } - - { offsetInCU: 0x4FB4, offset: 0x81E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD7DC, symBinAddr: 0x4B5D0, symSize: 0x9BC } - - { offsetInCU: 0x52A3, offset: 0x82136, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE198, symBinAddr: 0x4BF8C, symSize: 0x218 } - - { offsetInCU: 0x5378, offset: 0x8220B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xEACC, symBinAddr: 0x4C8C0, symSize: 0x81C } - - { offsetInCU: 0x5683, offset: 0x82516, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF2E8, symBinAddr: 0x4D0DC, symSize: 0xBA8 } - - { offsetInCU: 0x5972, offset: 0x82805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xFE90, symBinAddr: 0x4DC84, symSize: 0x278 } - - { offsetInCU: 0x5A47, offset: 0x828DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x10108, symBinAddr: 0x4DEFC, symSize: 0x214 } - - { offsetInCU: 0x5F3D, offset: 0x82DD0, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2128, symBinAddr: 0x3FF1C, symSize: 0x2C } - - { offsetInCU: 0x623B, offset: 0x830CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x8AF4, symBinAddr: 0x468E8, symSize: 0x20 } - - { offsetInCU: 0x6294, offset: 0x83127, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8B14, symBinAddr: 0x46908, symSize: 0x8C } - - { offsetInCU: 0x632C, offset: 0x831BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x8BA0, symBinAddr: 0x46994, symSize: 0x1258 } - - { offsetInCU: 0x6AA4, offset: 0x83937, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0x9DF8, symBinAddr: 0x47BEC, symSize: 0x40 } - - { offsetInCU: 0x6AE8, offset: 0x8397B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0x9E38, symBinAddr: 0x47C2C, symSize: 0x58 } - - { offsetInCU: 0x6B13, offset: 0x839A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0x9E90, symBinAddr: 0x47C84, symSize: 0x54 } - - { offsetInCU: 0x6B55, offset: 0x839E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9EE4, symBinAddr: 0x47CD8, symSize: 0x64 } - - { offsetInCU: 0x6B88, offset: 0x83A1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x9F48, symBinAddr: 0x47D3C, symSize: 0x4 } - - { offsetInCU: 0x6BB3, offset: 0x83A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9F4C, symBinAddr: 0x47D40, symSize: 0x78 } - - { offsetInCU: 0x6BF5, offset: 0x83A88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9FC4, symBinAddr: 0x47DB8, symSize: 0x90 } - - { offsetInCU: 0x6C37, offset: 0x83ACA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA054, symBinAddr: 0x47E48, symSize: 0x6C } - - { offsetInCU: 0x6C6A, offset: 0x83AFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA0C0, symBinAddr: 0x47EB4, symSize: 0x4 } - - { offsetInCU: 0x6C86, offset: 0x83B19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA0C4, symBinAddr: 0x47EB8, symSize: 0x4 } - - { offsetInCU: 0x6CB1, offset: 0x83B44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA0C8, symBinAddr: 0x47EBC, symSize: 0x74 } - - { offsetInCU: 0x6CE4, offset: 0x83B77, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA13C, symBinAddr: 0x47F30, symSize: 0x4 } - - { offsetInCU: 0x6D03, offset: 0x83B96, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA140, symBinAddr: 0x47F34, symSize: 0x8 } - - { offsetInCU: 0x6D1F, offset: 0x83BB2, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA140, symBinAddr: 0x47F34, symSize: 0x8 } - - { offsetInCU: 0x6D30, offset: 0x83BC3, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA148, symBinAddr: 0x47F3C, symSize: 0xC8 } - - { offsetInCU: 0x6DCD, offset: 0x83C60, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA210, symBinAddr: 0x48004, symSize: 0xCC } - - { offsetInCU: 0x6E79, offset: 0x83D0C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA3D8, symBinAddr: 0x481CC, symSize: 0x1F4 } - - { offsetInCU: 0x6F05, offset: 0x83D98, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA5CC, symBinAddr: 0x483C0, symSize: 0x1C4 } - - { offsetInCU: 0x6FBD, offset: 0x83E50, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA790, symBinAddr: 0x48584, symSize: 0x3A0 } - - { offsetInCU: 0x70DD, offset: 0x83F70, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAB30, symBinAddr: 0x48924, symSize: 0x398 } - - { offsetInCU: 0x71F4, offset: 0x84087, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xAEC8, symBinAddr: 0x48CBC, symSize: 0x1E4 } - - { offsetInCU: 0x7285, offset: 0x84118, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB0AC, symBinAddr: 0x48EA0, symSize: 0x204 } - - { offsetInCU: 0x730B, offset: 0x8419E, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB2B0, symBinAddr: 0x490A4, symSize: 0x4C } - - { offsetInCU: 0x73C8, offset: 0x8425B, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB2FC, symBinAddr: 0x490F0, symSize: 0x90 } - - { offsetInCU: 0x7463, offset: 0x842F6, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB38C, symBinAddr: 0x49180, symSize: 0x40 } - - { offsetInCU: 0x74A0, offset: 0x84333, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB3CC, symBinAddr: 0x491C0, symSize: 0x18 } - - { offsetInCU: 0x74F2, offset: 0x84385, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB3E4, symBinAddr: 0x491D8, symSize: 0x3C } - - { offsetInCU: 0x751B, offset: 0x843AE, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB420, symBinAddr: 0x49214, symSize: 0x1C } - - { offsetInCU: 0x75EB, offset: 0x8447E, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB43C, symBinAddr: 0x49230, symSize: 0xE0 } - - { offsetInCU: 0x770E, offset: 0x845A1, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xB600, symBinAddr: 0x493F4, symSize: 0x294 } - - { offsetInCU: 0x7785, offset: 0x84618, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBB30, symBinAddr: 0x49924, symSize: 0x8C } - - { offsetInCU: 0x779D, offset: 0x84630, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBBBC, symBinAddr: 0x499B0, symSize: 0x4C } - - { offsetInCU: 0x77F2, offset: 0x84685, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBC08, symBinAddr: 0x499FC, symSize: 0x154 } - - { offsetInCU: 0x7860, offset: 0x846F3, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBD5C, symBinAddr: 0x49B50, symSize: 0xF0 } - - { offsetInCU: 0x7885, offset: 0x84718, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xBE4C, symBinAddr: 0x49C40, symSize: 0x214 } - - { offsetInCU: 0x78BE, offset: 0x84751, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC060, symBinAddr: 0x49E54, symSize: 0x78 } - - { offsetInCU: 0x78D6, offset: 0x84769, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC0D8, symBinAddr: 0x49ECC, symSize: 0x1C } - - { offsetInCU: 0x78EE, offset: 0x84781, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC0F4, symBinAddr: 0x49EE8, symSize: 0x1C } - - { offsetInCU: 0x7906, offset: 0x84799, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC110, symBinAddr: 0x49F04, symSize: 0x1C } - - { offsetInCU: 0x796B, offset: 0x847FE, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC12C, symBinAddr: 0x49F20, symSize: 0x104 } - - { offsetInCU: 0x7ACE, offset: 0x84961, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC230, symBinAddr: 0x4A024, symSize: 0x174 } - - { offsetInCU: 0x7C3E, offset: 0x84AD1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC3A4, symBinAddr: 0x4A198, symSize: 0x124 } - - { offsetInCU: 0x7D3E, offset: 0x84BD1, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC4C8, symBinAddr: 0x4A2BC, symSize: 0x120 } - - { offsetInCU: 0x7F8A, offset: 0x84E1D, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xC5E8, symBinAddr: 0x4A3DC, symSize: 0x36C } - - { offsetInCU: 0x8578, offset: 0x8540B, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC954, symBinAddr: 0x4A748, symSize: 0x290 } - - { offsetInCU: 0x8765, offset: 0x855F8, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xCBE4, symBinAddr: 0x4A9D8, symSize: 0x150 } - - { offsetInCU: 0x88CB, offset: 0x8575E, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xCD34, symBinAddr: 0x4AB28, symSize: 0x218 } - - { offsetInCU: 0x8917, offset: 0x857AA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xCF4C, symBinAddr: 0x4AD40, symSize: 0x14 } - - { offsetInCU: 0x8950, offset: 0x857E3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xCF60, symBinAddr: 0x4AD54, symSize: 0xFC } - - { offsetInCU: 0x8A0E, offset: 0x858A1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xE3B0, symBinAddr: 0x4C1A4, symSize: 0x64 } - - { offsetInCU: 0x8ABA, offset: 0x8594D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x1031C, symBinAddr: 0x4E110, symSize: 0xA78 } - - { offsetInCU: 0x9088, offset: 0x85F1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10D94, symBinAddr: 0x4EB88, symSize: 0x104 } - - { offsetInCU: 0x91F4, offset: 0x86087, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10E98, symBinAddr: 0x4EC8C, symSize: 0x2D5C } - - { offsetInCU: 0x98BA, offset: 0x8674D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x13BF4, symBinAddr: 0x519E8, symSize: 0x120 } - - { offsetInCU: 0x99CB, offset: 0x8685E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x13D14, symBinAddr: 0x51B08, symSize: 0x80 } - - { offsetInCU: 0x9A4E, offset: 0x868E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x13D94, symBinAddr: 0x51B88, symSize: 0x654 } - - { offsetInCU: 0x9DEA, offset: 0x86C7D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14448, symBinAddr: 0x521DC, symSize: 0x10 } - - { offsetInCU: 0x9DFE, offset: 0x86C91, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x14458, symBinAddr: 0x521EC, symSize: 0x10 } - - { offsetInCU: 0x9E12, offset: 0x86CA5, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x144AC, symBinAddr: 0x521FC, symSize: 0x48 } - - { offsetInCU: 0x9E26, offset: 0x86CB9, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x1455C, symBinAddr: 0x52244, symSize: 0x3C } - - { offsetInCU: 0x9E3A, offset: 0x86CCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x14598, symBinAddr: 0x52280, symSize: 0x44 } - - { offsetInCU: 0x9E4E, offset: 0x86CE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOf', symObjAddr: 0x145DC, symBinAddr: 0x522C4, symSize: 0x48 } - - { offsetInCU: 0x9E62, offset: 0x86CF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x1469C, symBinAddr: 0x52348, symSize: 0x8 } - - { offsetInCU: 0x9E76, offset: 0x86D09, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x146A4, symBinAddr: 0x52350, symSize: 0x10 } - - { offsetInCU: 0x9E8A, offset: 0x86D1D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x146B4, symBinAddr: 0x52360, symSize: 0x8 } - - { offsetInCU: 0x9E9E, offset: 0x86D31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x1473C, symBinAddr: 0x523A4, symSize: 0x30 } - - { offsetInCU: 0x9EF6, offset: 0x86D89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x147FC, symBinAddr: 0x52464, symSize: 0x24 } - - { offsetInCU: 0x9F32, offset: 0x86DC5, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14868, symBinAddr: 0x52488, symSize: 0x44 } - - { offsetInCU: 0x9F61, offset: 0x86DF4, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x3DDFC, symSize: 0x12C } - - { offsetInCU: 0x9F97, offset: 0x86E2A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x3DF28, symSize: 0x58 } - - { offsetInCU: 0xA077, offset: 0x86F0A, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x3DF80, symSize: 0x90 } - - { offsetInCU: 0xA0A0, offset: 0x86F33, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x3E010, symSize: 0xA0 } - - { offsetInCU: 0xA1CC, offset: 0x8705F, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x3E0B0, symSize: 0x9C } - - { offsetInCU: 0xA2DB, offset: 0x8716E, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x3E14C, symSize: 0x74 } - - { offsetInCU: 0xA360, offset: 0x871F3, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x3E1C0, symSize: 0x4 } - - { offsetInCU: 0xA382, offset: 0x87215, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x3E1C4, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x87C11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x52590, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x87C3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x53400, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x87C67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE78, symBinAddr: 0x53408, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x87C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE9C, symBinAddr: 0x5342C, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x87CB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEA8, symBinAddr: 0x53438, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x87CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5B80, symBinAddr: 0x58080, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x525B0, symSize: 0x17C } - - { offsetInCU: 0x1BC, offset: 0x87D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF04, symBinAddr: 0x53494, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x87DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF54, symBinAddr: 0x534E4, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x87DC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CAC, symBinAddr: 0x581AC, symSize: 0x132C } - - { offsetInCU: 0x267, offset: 0x87E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x19C, symBinAddr: 0x5272C, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x87E65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xFA4, symBinAddr: 0x53534, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x87ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xFBC, symBinAddr: 0x5354C, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFE8, symBinAddr: 0x53578, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xFF0, symBinAddr: 0x53580, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x87FA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1014, symBinAddr: 0x535A4, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x87FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1020, symBinAddr: 0x535B0, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x87FD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7ABC, symBinAddr: 0x595A4, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x8801F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BC, symBinAddr: 0x5274C, symSize: 0x264 } - - { offsetInCU: 0x4C5, offset: 0x88074, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x107C, symBinAddr: 0x5360C, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x880AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10CC, symBinAddr: 0x5365C, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x880CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C98, symBinAddr: 0x59780, symSize: 0xF38 } - - { offsetInCU: 0x569, offset: 0x88118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x420, symBinAddr: 0x529B0, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x88151, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x529D0, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x8817F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x529D0, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x881D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1140, symBinAddr: 0x536D0, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x88239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x11A4, symBinAddr: 0x53734, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x88255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x11CC, symBinAddr: 0x5375C, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x8828B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11D4, symBinAddr: 0x53764, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x88310, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x123C, symBinAddr: 0x537CC, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x8832C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1248, symBinAddr: 0x537D8, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x88349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x460, symBinAddr: 0x529F0, symSize: 0x190 } - - { offsetInCU: 0x7EF, offset: 0x8839E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x12A4, symBinAddr: 0x53834, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x883D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12EC, symBinAddr: 0x5387C, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x883F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DAC, symBinAddr: 0x5A894, symSize: 0x220 } - - { offsetInCU: 0x899, offset: 0x88448, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x5F0, symBinAddr: 0x52B80, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x88473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x132C, symBinAddr: 0x538BC, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x8849E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1334, symBinAddr: 0x538C4, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x884CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1358, symBinAddr: 0x538E8, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x884EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1364, symBinAddr: 0x538F4, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x88507, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8FCC, symBinAddr: 0x5AAB4, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x8854D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x610, symBinAddr: 0x52BA0, symSize: 0x268 } - - { offsetInCU: 0x9F3, offset: 0x885A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13C0, symBinAddr: 0x53950, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x885D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1420, symBinAddr: 0x539B0, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x885FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9278, symBinAddr: 0x5AD60, symSize: 0x538 } - - { offsetInCU: 0xA9D, offset: 0x8864C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x878, symBinAddr: 0x52E08, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x88697, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1478, symBinAddr: 0x53A08, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x88728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x53A20, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x8880B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D4, symBinAddr: 0x53A64, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x8887D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x153C, symBinAddr: 0x53ACC, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x888A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1544, symBinAddr: 0x53AD4, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x888D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1568, symBinAddr: 0x53AF8, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x888F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x53B04, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x88911, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x97B0, symBinAddr: 0x5B298, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x88957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x898, symBinAddr: 0x52E28, symSize: 0x118 } - - { offsetInCU: 0xDFD, offset: 0x889AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15D0, symBinAddr: 0x53B60, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x889E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15FC, symBinAddr: 0x53B8C, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x88A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9864, symBinAddr: 0x5B34C, symSize: 0x1A0 } - - { offsetInCU: 0xEA8, offset: 0x88A57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x9B0, symBinAddr: 0x52F40, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x88A82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x169C, symBinAddr: 0x53C2C, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x88AAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16A4, symBinAddr: 0x53C34, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x88ADE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16C8, symBinAddr: 0x53C58, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x88AFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16D4, symBinAddr: 0x53C64, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x88B16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9A04, symBinAddr: 0x5B4EC, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x88B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9D0, symBinAddr: 0x52F60, symSize: 0x214 } - - { offsetInCU: 0x1002, offset: 0x88BB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1730, symBinAddr: 0x53CC0, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x88BE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x53D30, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x88C0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9C38, symBinAddr: 0x5B720, symSize: 0x8C8 } - - { offsetInCU: 0x10A6, offset: 0x88C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBE4, symBinAddr: 0x53174, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x88C8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x53194, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x88CBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x53194, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88D05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x198C, symBinAddr: 0x53F1C, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x88D4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x19D0, symBinAddr: 0x53F60, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x88D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0x53F88, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x88D95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A00, symBinAddr: 0x53F90, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x88DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1A3C, symBinAddr: 0x53FCC, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A48, symBinAddr: 0x53FD8, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x88E32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA5CC, symBinAddr: 0x5C0B4, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x88E5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC24, symBinAddr: 0x531B4, symSize: 0x244 } - - { offsetInCU: 0x1304, offset: 0x88EB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA4, symBinAddr: 0x54034, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x88EEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AFC, symBinAddr: 0x5408C, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x88F0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA61C, symBinAddr: 0x5C104, symSize: 0x760 } - - { offsetInCU: 0x13D3, offset: 0x88F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1B4C, symBinAddr: 0x540DC, symSize: 0x1B8 } - - { offsetInCU: 0x142F, offset: 0x88FDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x1D04, symBinAddr: 0x54294, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x89025, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5948, symBinAddr: 0x57ECC, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x89090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x599C, symBinAddr: 0x57F20, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x890E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A1C, symBinAddr: 0x57FA0, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x89119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5A24, symBinAddr: 0x57FA8, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x89199, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5A84, symBinAddr: 0x58008, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x891B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x1D14, symBinAddr: 0x542A4, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x891CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x1D34, symBinAddr: 0x542C4, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x891DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x1E28, symBinAddr: 0x543B8, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x891F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x21AC, symBinAddr: 0x5473C, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x8920D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x2E04, symBinAddr: 0x55394, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x89236, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x2E34, symBinAddr: 0x553C4, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x8924A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x2E60, symBinAddr: 0x553F0, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x8925E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x2E8C, symBinAddr: 0x5541C, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x89272, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x2EB8, symBinAddr: 0x55448, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x89286, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2EE4, symBinAddr: 0x55474, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x8929A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x2EEC, symBinAddr: 0x5547C, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x892AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x32AC, symBinAddr: 0x5583C, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x892C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3308, symBinAddr: 0x55898, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x892D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x33F4, symBinAddr: 0x55984, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x892EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3404, symBinAddr: 0x55994, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x892FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x3434, symBinAddr: 0x559C4, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x89312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x3514, symBinAddr: 0x55AA4, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x89326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x384C, symBinAddr: 0x55DDC, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x8933A, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x40B0, symBinAddr: 0x56640, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x8934E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x40B8, symBinAddr: 0x56648, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x89362, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x441C, symBinAddr: 0x569AC, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x89376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x4478, symBinAddr: 0x56A08, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x8938A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x455C, symBinAddr: 0x56AEC, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x8939E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x456C, symBinAddr: 0x56AFC, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x893B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x4610, symBinAddr: 0x56BA0, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x893C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x479C, symBinAddr: 0x56D2C, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x893DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4B44, symBinAddr: 0x570D4, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x893EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4B88, symBinAddr: 0x57118, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x89402, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x4D04, symBinAddr: 0x57294, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x89416, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x4D60, symBinAddr: 0x572F0, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x8942A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x4DF4, symBinAddr: 0x57384, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x8943E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x4E04, symBinAddr: 0x57394, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x89452, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x4E6C, symBinAddr: 0x573FC, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x89466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x4F48, symBinAddr: 0x574D8, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x8947A, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x50B4, symBinAddr: 0x57644, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x8948E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x50E0, symBinAddr: 0x57670, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x894A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x51A4, symBinAddr: 0x57734, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x894B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x5200, symBinAddr: 0x57790, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x894CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x527C, symBinAddr: 0x5780C, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x894DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x528C, symBinAddr: 0x5781C, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x894F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x52D4, symBinAddr: 0x57864, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x89506, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x53B8, symBinAddr: 0x57948, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x8951A, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5550, symBinAddr: 0x57AE0, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x8952E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x5584, symBinAddr: 0x57B14, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x89542, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5680, symBinAddr: 0x57C10, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x89556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x56DC, symBinAddr: 0x57C6C, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x8956A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x5758, symBinAddr: 0x57CE8, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x8957E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x5768, symBinAddr: 0x57CF8, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x89592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5790, symBinAddr: 0x57D20, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x895A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x57CC, symBinAddr: 0x57D5C, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x895BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x5844, symBinAddr: 0x57DC8, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x895CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5888, symBinAddr: 0x57E0C, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x895E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x58E4, symBinAddr: 0x57E68, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x895F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x5938, symBinAddr: 0x57EBC, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x8960A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5A8C, symBinAddr: 0x58010, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x8961E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5A90, symBinAddr: 0x58014, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x89632, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5B58, symBinAddr: 0x58058, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x89646, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x6FD8, symBinAddr: 0x594D8, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x8965A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x701C, symBinAddr: 0x5951C, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x8966E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7A78, symBinAddr: 0x59560, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x89682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x5A6B8, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x89696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x8C14, symBinAddr: 0x5A6FC, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x896AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x8C58, symBinAddr: 0x5A740, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x896BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x8C9C, symBinAddr: 0x5A784, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x896D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x8CE0, symBinAddr: 0x5A7C8, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x896E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x8D24, symBinAddr: 0x5A80C, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x896FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x8D68, symBinAddr: 0x5A850, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x8970E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA500, symBinAddr: 0x5BFE8, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x89722, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xA544, symBinAddr: 0x5C02C, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x89736, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xA588, symBinAddr: 0x5C070, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x8974A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xAD7C, symBinAddr: 0x5C864, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x8975E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xADC0, symBinAddr: 0x5C8A8, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x89772, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xAE04, symBinAddr: 0x5C8EC, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x89786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xAE8C, symBinAddr: 0x5C974, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x8979A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xAED0, symBinAddr: 0x5C9B8, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x897AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xAF24, symBinAddr: 0x5C9FC, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x897C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xAFB4, symBinAddr: 0x5CA8C, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x897D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB070, symBinAddr: 0x5CB48, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x897EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB078, symBinAddr: 0x5CB50, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x897FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB07C, symBinAddr: 0x5CB54, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x89812, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB088, symBinAddr: 0x5CB60, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x89826, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB098, symBinAddr: 0x5CB70, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x8983A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB128, symBinAddr: 0x5CC00, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x8984E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB1E4, symBinAddr: 0x5CCBC, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x89862, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB1E8, symBinAddr: 0x5CCC0, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x89876, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB1F8, symBinAddr: 0x5CCD0, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x8988A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB288, symBinAddr: 0x5CD60, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x8989E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB344, symBinAddr: 0x5CE1C, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x898B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB348, symBinAddr: 0x5CE20, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x898C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB358, symBinAddr: 0x5CE30, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x898DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB3E8, symBinAddr: 0x5CEC0, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x898EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB4A4, symBinAddr: 0x5CF7C, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x89902, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB4A8, symBinAddr: 0x5CF80, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x89916, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB4B8, symBinAddr: 0x5CF90, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x8992A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB548, symBinAddr: 0x5D020, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x8993E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB604, symBinAddr: 0x5D0DC, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x89952, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB60C, symBinAddr: 0x5D0E4, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x89966, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB610, symBinAddr: 0x5D0E8, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x8997A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB618, symBinAddr: 0x5D0F0, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x8998E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB628, symBinAddr: 0x5D100, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x899A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB6B8, symBinAddr: 0x5D190, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x899B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB774, symBinAddr: 0x5D24C, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x899CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB778, symBinAddr: 0x5D250, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x899DE, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB788, symBinAddr: 0x5D260, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x899F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xB7AC, symBinAddr: 0x5D284, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x89A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xB7CC, symBinAddr: 0x5D2A4, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x89A1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xB80C, symBinAddr: 0x5D2E4, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x89A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB81C, symBinAddr: 0x5D2F4, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x89A42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB820, symBinAddr: 0x5D2F8, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x89A56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB864, symBinAddr: 0x5D33C, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x89A6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB868, symBinAddr: 0x5D340, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x89A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB8AC, symBinAddr: 0x5D384, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x89A92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB8B0, symBinAddr: 0x5D388, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x89AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB8F4, symBinAddr: 0x5D3CC, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x89ABA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB8F8, symBinAddr: 0x5D3D0, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x89ACE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB93C, symBinAddr: 0x5D414, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB940, symBinAddr: 0x5D418, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x89AF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB984, symBinAddr: 0x5D45C, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x89B0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB988, symBinAddr: 0x5D460, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x89B1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xB9CC, symBinAddr: 0x5D4A4, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x89B32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xB9D0, symBinAddr: 0x5D4A8, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x89B46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBA14, symBinAddr: 0x5D4EC, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x89B5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBA18, symBinAddr: 0x5D4F0, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x89B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBA5C, symBinAddr: 0x5D534, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x89B82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBA60, symBinAddr: 0x5D538, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x89B96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBAA4, symBinAddr: 0x5D57C, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x89BAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBAA8, symBinAddr: 0x5D580, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x89BBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBAEC, symBinAddr: 0x5D5C4, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x89BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAF0, symBinAddr: 0x5D5C8, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89BE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB34, symBinAddr: 0x5D60C, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x89BFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBB38, symBinAddr: 0x5D610, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x89C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB7C, symBinAddr: 0x5D654, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x89C22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB80, symBinAddr: 0x5D658, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x89C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBBC4, symBinAddr: 0x5D69C, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x89C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBBC8, symBinAddr: 0x5D6A0, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x89C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC0C, symBinAddr: 0x5D6E4, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x89C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC10, symBinAddr: 0x5D6E8, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x89C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC54, symBinAddr: 0x5D72C, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x89C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBC58, symBinAddr: 0x5D730, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x89CAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC9C, symBinAddr: 0x5D774, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x89CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBCA0, symBinAddr: 0x5D778, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x89CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCE4, symBinAddr: 0x5D7BC, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x89CEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCE8, symBinAddr: 0x5D7C0, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x89CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xBD2C, symBinAddr: 0x5D804, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89D12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xBD70, symBinAddr: 0x5D848, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89D26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xBE00, symBinAddr: 0x5D8D8, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x89D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xBEBC, symBinAddr: 0x5D994, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x89D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xBEC0, symBinAddr: 0x5D998, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x89D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBED0, symBinAddr: 0x5D9A8, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x89D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBED4, symBinAddr: 0x5D9AC, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x89D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF18, symBinAddr: 0x5D9F0, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x89D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF1C, symBinAddr: 0x5D9F4, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x89DB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF60, symBinAddr: 0x5DA38, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x89DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBF64, symBinAddr: 0x5DA3C, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89DF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xEB4, symBinAddr: 0x53444, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89E10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEDC, symBinAddr: 0x5346C, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x89E32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x102C, symBinAddr: 0x535BC, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x89E4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1054, symBinAddr: 0x535E4, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x89E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x111C, symBinAddr: 0x536AC, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x89E86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1128, symBinAddr: 0x536B8, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x89EA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1130, symBinAddr: 0x536C0, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x89EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1138, symBinAddr: 0x536C8, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89EE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1254, symBinAddr: 0x537E4, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x89EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x127C, symBinAddr: 0x5380C, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x89F1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x53900, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x89F3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1398, symBinAddr: 0x53928, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x89F83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14FC, symBinAddr: 0x53A8C, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x8A025, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1580, symBinAddr: 0x53B10, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x8A041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15A8, symBinAddr: 0x53B38, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x8A063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x53C70, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x8A07F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1708, symBinAddr: 0x53C98, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x8A0B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1808, symBinAddr: 0x53D98, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x8A168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1890, symBinAddr: 0x53E20, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x8A1E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x18F0, symBinAddr: 0x53E80, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x8A238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1930, symBinAddr: 0x53EC0, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x8A29A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x53FE4, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x8A2B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A7C, symBinAddr: 0x5400C, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x8A2ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5A48, symBinAddr: 0x57FCC, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x8A4F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DAE8, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8A51A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DAE8, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x8A538, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5DAF0, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x8A574, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5DAF8, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8A592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5DB08, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x8A5BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5DB0C, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x8A5DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5DB14, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x8A617, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5DB1C, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x8A645, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5DB2C, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x8A670, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5DB30, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x8A68E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5DB38, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x8A6C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5DB40, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A6F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5DB50, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A722, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5DB54, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A736, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5DBA8, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A74A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5DBEC, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DBFC, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A8A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DBFC, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A8F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5DC20, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8AA0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DC40, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8AA4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DC40, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8AA9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5DC64, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8ABB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DC84, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8ABFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DC84, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8AC48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5DCE4, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8AC5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5DCEC, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8AC70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5DD28, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8AD89, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DDA0, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8AE46, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DDA0, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8B03F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5E108, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8B1EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E150, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8B231, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E150, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8B27D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5E174, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8B3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5E194, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8B3E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5E228, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8B42D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x5EB60, symSize: 0x44 } - - { offsetInCU: 0x12D, offset: 0x8B49C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA74, symBinAddr: 0x5EBC8, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8B4B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA80, symBinAddr: 0x5EBD4, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8B4E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x5EBF8, symSize: 0x54 } - - { offsetInCU: 0x209, offset: 0x8B578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5E200, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8B5A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF8, symBinAddr: 0x5EC4C, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8B5CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x5ECF0, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8B5EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xBA8, symBinAddr: 0x5ECFC, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B8AB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x5EA94, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B927, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBCC, symBinAddr: 0x5ED20, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8BB7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC8, symBinAddr: 0x5F11C, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8BCFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1104, symBinAddr: 0x5F258, symSize: 0xA58 } - - { offsetInCU: 0xF95, offset: 0x8C304, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B5C, symBinAddr: 0x5FCB0, symSize: 0x654 } - - { offsetInCU: 0x1345, offset: 0x8C6B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x21B0, symBinAddr: 0x60304, symSize: 0x470 } - - { offsetInCU: 0x14E4, offset: 0x8C853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2620, symBinAddr: 0x60774, symSize: 0x618 } - - { offsetInCU: 0x1A13, offset: 0x8CD82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2C38, symBinAddr: 0x60D8C, symSize: 0x150 } - - { offsetInCU: 0x1B2D, offset: 0x8CE9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2D88, symBinAddr: 0x60EDC, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8CEDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3338, symBinAddr: 0x61430, symSize: 0x204 } - - { offsetInCU: 0x1C21, offset: 0x8CF90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x353C, symBinAddr: 0x61634, symSize: 0x23C } - - { offsetInCU: 0x1C86, offset: 0x8CFF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3778, symBinAddr: 0x61870, symSize: 0x238 } - - { offsetInCU: 0x1DAE, offset: 0x8D11D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39F4, symBinAddr: 0x61AA8, symSize: 0x29C } - - { offsetInCU: 0x1EED, offset: 0x8D25C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3C90, symBinAddr: 0x61D44, symSize: 0x188 } - - { offsetInCU: 0x1F33, offset: 0x8D2A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E18, symBinAddr: 0x61ECC, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8D5F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x428C, symBinAddr: 0x62340, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D6F2, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2E04, symBinAddr: 0x60F58, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D734, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2E08, symBinAddr: 0x60F5C, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D748, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2E0C, symBinAddr: 0x60F60, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D75C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2E50, symBinAddr: 0x60FA4, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D770, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2E54, symBinAddr: 0x60FA8, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D784, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x2EE4, symBinAddr: 0x60FF4, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D798, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x2EE8, symBinAddr: 0x60FF8, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D7AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x2F3C, symBinAddr: 0x6103C, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D7C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x2FCC, symBinAddr: 0x610CC, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D7D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3088, symBinAddr: 0x61188, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D7E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3090, symBinAddr: 0x61190, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D7FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x3094, symBinAddr: 0x61194, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x309C, symBinAddr: 0x6119C, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D824, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x30AC, symBinAddr: 0x611AC, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D838, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x313C, symBinAddr: 0x6123C, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D84C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x31F8, symBinAddr: 0x612F8, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3200, symBinAddr: 0x61300, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D874, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x3204, symBinAddr: 0x61304, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D888, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3210, symBinAddr: 0x61310, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D89C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3220, symBinAddr: 0x61320, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D8B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3248, symBinAddr: 0x61340, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D8C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3254, symBinAddr: 0x6134C, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D8D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3258, symBinAddr: 0x61350, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D8EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x329C, symBinAddr: 0x61394, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D900, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x32A8, symBinAddr: 0x613A0, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x32AC, symBinAddr: 0x613A4, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D928, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x32F0, symBinAddr: 0x613E8, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D947, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x32FC, symBinAddr: 0x613F4, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D97F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3310, symBinAddr: 0x61408, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D9B7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3324, symBinAddr: 0x6141C, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8DA1B, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x43A4, symBinAddr: 0x62458, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8DA2F, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4448, symBinAddr: 0x624A0, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8DA43, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4484, symBinAddr: 0x624DC, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8DA57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x44DC, symBinAddr: 0x62524, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8DA6B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x44E4, symBinAddr: 0x6252C, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8DA7F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x44F4, symBinAddr: 0x6253C, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8DA93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4554, symBinAddr: 0x62544, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8DAA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x4608, symBinAddr: 0x625F8, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8DAD6, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8DAEE, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8DB02, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8DB16, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8DB2A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8DB3E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x5E250, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8DBBC, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x5E274, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8DC4B, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x5E2F8, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8DCDA, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x5E37C, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8DD71, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x5E408, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8DE4B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x5E470, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8DF25, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x5E4D8, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8DF9A, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x5E544, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8DFF7, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x5E584, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8E054, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x5E5C4, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8E07D, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x5E608, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8E0D0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x5E670, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8E14C, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x5E6D4, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8E1DD, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x5E738, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8E343, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8E363, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8E383, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8E397, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8E3AB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8E3BF, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8E468, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5E844, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8E50F, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x5E8CC, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8E5B2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x5E94C, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8E69E, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8E6BE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8E6D2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E6E6, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E6FA, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E76A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x5EBA4, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA5C, symBinAddr: 0x5EBB0, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E7A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA64, symBinAddr: 0x5EBB8, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E7B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA6C, symBinAddr: 0x5EBC0, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E7D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB78, symBinAddr: 0x5ECCC, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E7EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB84, symBinAddr: 0x5ECD8, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E808, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x5ECE0, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E81C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB94, symBinAddr: 0x5ECE8, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8ECCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x62614, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8ECE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x6279C, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8ECF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x62840, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8ED0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x6299C, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8ED1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x62B84, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8ED33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x62C70, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8ED47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x62DF8, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8ED5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x62E90, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8ED6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x62F28, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8ED83, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x62FB0, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8ED97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x63004, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8EDAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x63124, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8EDBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x631A8, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8EDD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x6329C, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8EDE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x633FC, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8EDFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x634D8, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8EE0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x63620, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8EE23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x636B8, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8EE37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x63784, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8EE69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x6380C, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8EEB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x63D64, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8EF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A8, symBinAddr: 0x63D7C, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8EF98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D4, symBinAddr: 0x63DA8, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8EFC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17DC, symBinAddr: 0x63DB0, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8EFF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1800, symBinAddr: 0x63DD4, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8F010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x180C, symBinAddr: 0x63DE0, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8F02C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E30, symBinAddr: 0x65308, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8F072, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x6382C, symSize: 0x200 } - - { offsetInCU: 0x425, offset: 0x8F0B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1458, symBinAddr: 0x63A2C, symSize: 0x338 } - - { offsetInCU: 0x456, offset: 0x8F0E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1868, symBinAddr: 0x63E3C, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8F105, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x187C, symBinAddr: 0x63E50, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8F15D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x63E64, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8F188, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A64, symBinAddr: 0x64038, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8F1B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A6C, symBinAddr: 0x64040, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8F1E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A90, symBinAddr: 0x64064, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8F200, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A9C, symBinAddr: 0x64070, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8F21C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FEC, symBinAddr: 0x654C4, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8F262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x63E84, symSize: 0x1AC } - - { offsetInCU: 0x62B, offset: 0x8F2B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AF8, symBinAddr: 0x640CC, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8F2EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B44, symBinAddr: 0x64118, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8F311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3138, symBinAddr: 0x65610, symSize: 0x294 } - - { offsetInCU: 0x6D5, offset: 0x8F361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1B84, symBinAddr: 0x64158, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8F38C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2300, symBinAddr: 0x648D4, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8F3B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2308, symBinAddr: 0x648DC, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8F3E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x232C, symBinAddr: 0x64900, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8F404, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2338, symBinAddr: 0x6490C, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8F420, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33CC, symBinAddr: 0x658A4, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8F466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BA4, symBinAddr: 0x64178, symSize: 0x264 } - - { offsetInCU: 0x819, offset: 0x8F4A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E08, symBinAddr: 0x643DC, symSize: 0x474 } - - { offsetInCU: 0x84A, offset: 0x8F4D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2394, symBinAddr: 0x64968, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8F4F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A8, symBinAddr: 0x6497C, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8F51D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x23E0, symBinAddr: 0x64990, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8F531, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2444, symBinAddr: 0x649D4, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8F545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x250C, symBinAddr: 0x64A54, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8F559, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2594, symBinAddr: 0x64A98, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8F56D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x26C0, symBinAddr: 0x64BC4, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8F581, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2714, symBinAddr: 0x64C08, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8F595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x27A4, symBinAddr: 0x64C98, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8F5A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2860, symBinAddr: 0x64D54, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8F5BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2868, symBinAddr: 0x64D5C, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8F5D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x286C, symBinAddr: 0x64D60, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8F5E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2874, symBinAddr: 0x64D68, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8F5F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2884, symBinAddr: 0x64D78, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8F60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2914, symBinAddr: 0x64E08, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8F621, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x29D0, symBinAddr: 0x64EC4, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8F635, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x29D4, symBinAddr: 0x64EC8, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8F649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x29E4, symBinAddr: 0x64ED8, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8F65D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2A14, symBinAddr: 0x64F08, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8F671, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2A44, symBinAddr: 0x64F38, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8F685, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2AA0, symBinAddr: 0x64F94, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8F699, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2B50, symBinAddr: 0x65028, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8F6AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2BB4, symBinAddr: 0x6508C, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8F6C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2C10, symBinAddr: 0x650E8, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8F6D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2C70, symBinAddr: 0x65148, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F6E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2C80, symBinAddr: 0x65158, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F6FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2C84, symBinAddr: 0x6515C, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2CC8, symBinAddr: 0x651A0, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2CCC, symBinAddr: 0x651A4, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D10, symBinAddr: 0x651E8, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F74D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D14, symBinAddr: 0x651EC, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2D58, symBinAddr: 0x65230, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F775, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2D5C, symBinAddr: 0x65234, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F789, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DA0, symBinAddr: 0x65278, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F79D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA4, symBinAddr: 0x6527C, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F7B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE8, symBinAddr: 0x652C0, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F7C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DEC, symBinAddr: 0x652C4, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F7E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x36A4, symBinAddr: 0x65B7C, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F7F8, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x36E8, symBinAddr: 0x65BC0, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F80C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x37B4, symBinAddr: 0x65C8C, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3844, symBinAddr: 0x65D1C, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3900, symBinAddr: 0x65DD8, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3904, symBinAddr: 0x65DDC, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F85C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3914, symBinAddr: 0x65DEC, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3918, symBinAddr: 0x65DF0, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x395C, symBinAddr: 0x65E34, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3960, symBinAddr: 0x65E38, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F8AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39A4, symBinAddr: 0x65E7C, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F8C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39A8, symBinAddr: 0x65E80, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F8EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1818, symBinAddr: 0x63DEC, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F90A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x63E14, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F92C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AA8, symBinAddr: 0x6407C, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F948, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x640A4, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F96A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2344, symBinAddr: 0x64918, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F986, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x236C, symBinAddr: 0x64940, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8FAD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x65EEC, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8FAFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x65EEC, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8FB1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x65F18, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8FB59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x65F4C, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8FB77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x65F5C, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8FBA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x65F60, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8FBC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x65F8C, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8FBFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x65FC0, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8FC2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x65FD0, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8FC59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x65FD4, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8FC6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x66004, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8FC81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6602C, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8FC95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x66068, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8FCA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x660D4, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8FCBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x66118, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8FCD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x66160, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8FCE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x661A0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8FE2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x661B0, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8FE4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0SSvpZ', symObjAddr: 0x8F90, symBinAddr: 0x853C8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8FE69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8languageSSvpZ', symObjAddr: 0x8FA0, symBinAddr: 0x853D8, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8FE83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7versionSSvpZ', symObjAddr: 0x8FB0, symBinAddr: 0x853E8, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8FE9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8FC0, symBinAddr: 0x853F8, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8FEB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8FD0, symBinAddr: 0x85408, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8FED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8FE0, symBinAddr: 0x85418, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8FEEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8FF0, symBinAddr: 0x85428, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8FF05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x9000, symBinAddr: 0x85438, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8FF1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x9010, symBinAddr: 0x85448, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8FF39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x9020, symBinAddr: 0x85458, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8FF53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x9030, symBinAddr: 0x85468, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8FF6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x9040, symBinAddr: 0x85478, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8FF87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x9050, symBinAddr: 0x85488, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8FFA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x9060, symBinAddr: 0x85498, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8FFBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x9070, symBinAddr: 0x854A8, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8FFD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x9080, symBinAddr: 0x854B8, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8FFEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x9090, symBinAddr: 0x854C8, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x90009, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x90A0, symBinAddr: 0x854D8, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x90023, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x90B0, symBinAddr: 0x854E8, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x9003D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x90C0, symBinAddr: 0x854F8, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x90057, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x90D0, symBinAddr: 0x85508, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x90071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x90E0, symBinAddr: 0x85518, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x9008B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x90F0, symBinAddr: 0x85528, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x900A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x9100, symBinAddr: 0x85538, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x900BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x9110, symBinAddr: 0x85548, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x900D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x9120, symBinAddr: 0x85558, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x900F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x9130, symBinAddr: 0x85568, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x9010D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x9140, symBinAddr: 0x85578, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x90127, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x9150, symBinAddr: 0x85588, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x90141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x9160, symBinAddr: 0x85598, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x9015B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKeySSvpZ', symObjAddr: 0x9170, symBinAddr: 0x855A8, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x90175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKeySSvpZ', symObjAddr: 0x9180, symBinAddr: 0x855B8, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x9018F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvpZ', symObjAddr: 0x9190, symBinAddr: 0x855C8, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x901A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKeySSvpZ', symObjAddr: 0x91A0, symBinAddr: 0x855D8, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x901C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKeySSvpZ', symObjAddr: 0x91B0, symBinAddr: 0x855E8, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x901DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKeySSvpZ', symObjAddr: 0x91C0, symBinAddr: 0x855F8, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x901F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKeySSvpZ', symObjAddr: 0x91D0, symBinAddr: 0x85608, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x90211, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvpZ', symObjAddr: 0x91E0, symBinAddr: 0x85618, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x9022B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvpZ', symObjAddr: 0x91F0, symBinAddr: 0x85628, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x90245, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvpZ', symObjAddr: 0x9200, symBinAddr: 0x85638, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x9025F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkeySSvpZ', symObjAddr: 0x9210, symBinAddr: 0x85648, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x90279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvpZ', symObjAddr: 0x9220, symBinAddr: 0x85658, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x90293, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKeySSvpZ', symObjAddr: 0x9230, symBinAddr: 0x85668, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x902AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKeySSvpZ', symObjAddr: 0x9240, symBinAddr: 0x85678, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x902C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKeySSvpZ', symObjAddr: 0x9250, symBinAddr: 0x85688, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x902E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKeySSvpZ', symObjAddr: 0x9260, symBinAddr: 0x85698, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x902FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKeySSvpZ', symObjAddr: 0x9270, symBinAddr: 0x856A8, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x90315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKeySSvpZ', symObjAddr: 0x9280, symBinAddr: 0x856B8, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x9032F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x9290, symBinAddr: 0x856C8, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x90349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x92A0, symBinAddr: 0x856D8, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x90363, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x92B0, symBinAddr: 0x856E8, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x9037D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKeySSvpZ', symObjAddr: 0x92C0, symBinAddr: 0x856F8, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x90397, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKeySSvpZ', symObjAddr: 0x92D0, symBinAddr: 0x85708, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x903B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKeySSvpZ', symObjAddr: 0x92E0, symBinAddr: 0x85718, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x903CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x92F0, symBinAddr: 0x85728, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x903E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x9300, symBinAddr: 0x85738, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x903FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x9310, symBinAddr: 0x85748, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x90419, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x9320, symBinAddr: 0x85758, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x90433, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x9330, symBinAddr: 0x85768, symSize: 0x0 } - - { offsetInCU: 0x649, offset: 0x9044D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkeySSvpZ', symObjAddr: 0x9340, symBinAddr: 0x85778, symSize: 0x0 } - - { offsetInCU: 0x657, offset: 0x9045B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x661B0, symSize: 0x40 } - - { offsetInCU: 0x675, offset: 0x90479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x661F0, symSize: 0x40 } - - { offsetInCU: 0x693, offset: 0x90497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x66230, symSize: 0x40 } - - { offsetInCU: 0x6B1, offset: 0x904B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x66270, symSize: 0x40 } - - { offsetInCU: 0x6CF, offset: 0x904D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x662B0, symSize: 0x40 } - - { offsetInCU: 0x6F9, offset: 0x904FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x662F0, symSize: 0x14 } - - { offsetInCU: 0x714, offset: 0x90518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x66484, symSize: 0x108 } - - { offsetInCU: 0x766, offset: 0x9056A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x666C0, symSize: 0x8 } - - { offsetInCU: 0x782, offset: 0x90586, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x666C8, symSize: 0x18 } - - { offsetInCU: 0x79A, offset: 0x9059E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x666C8, symSize: 0x18 } - - { offsetInCU: 0x7AC, offset: 0x905B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x66304, symSize: 0x40 } - - { offsetInCU: 0x7CA, offset: 0x905CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x66344, symSize: 0x40 } - - { offsetInCU: 0x7E8, offset: 0x905EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x66384, symSize: 0x40 } - - { offsetInCU: 0x806, offset: 0x9060A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x663C4, symSize: 0x40 } - - { offsetInCU: 0x824, offset: 0x90628, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x66404, symSize: 0x40 } - - { offsetInCU: 0x842, offset: 0x90646, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x66444, symSize: 0x40 } - - { offsetInCU: 0x86B, offset: 0x9066F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x665B0, symSize: 0x4 } - - { offsetInCU: 0x87F, offset: 0x90683, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x665B4, symSize: 0x44 } - - { offsetInCU: 0x8A9, offset: 0x906AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x666E0, symSize: 0x90 } - - { offsetInCU: 0x8BD, offset: 0x906C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x66770, symSize: 0xBC } - - { offsetInCU: 0x8D1, offset: 0x906D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x6682C, symSize: 0x8 } - - { offsetInCU: 0x8E5, offset: 0x906E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x66834, symSize: 0x4 } - - { offsetInCU: 0x8F9, offset: 0x906FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x66838, symSize: 0x8 } - - { offsetInCU: 0x90D, offset: 0x90711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x66840, symSize: 0x10 } - - { offsetInCU: 0x921, offset: 0x90725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0_WZ', symObjAddr: 0x6B0, symBinAddr: 0x66850, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x9073F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8language_WZ', symObjAddr: 0x6CC, symBinAddr: 0x6686C, symSize: 0x20 } - - { offsetInCU: 0x955, offset: 0x90759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7version_WZ', symObjAddr: 0x6EC, symBinAddr: 0x6688C, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x90773, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x708, symBinAddr: 0x668A8, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x9078D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x724, symBinAddr: 0x668C4, symSize: 0x1C } - - { offsetInCU: 0x9A3, offset: 0x907A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x740, symBinAddr: 0x668E0, symSize: 0x1C } - - { offsetInCU: 0x9BD, offset: 0x907C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPassword_WZ', symObjAddr: 0x75C, symBinAddr: 0x668FC, symSize: 0x14 } - - { offsetInCU: 0x9DE, offset: 0x907E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x770, symBinAddr: 0x66910, symSize: 0x1C } - - { offsetInCU: 0x9F8, offset: 0x907FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x78C, symBinAddr: 0x6692C, symSize: 0x24 } - - { offsetInCU: 0xA12, offset: 0x90816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x7B0, symBinAddr: 0x66950, symSize: 0x20 } - - { offsetInCU: 0xA2C, offset: 0x90830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7D0, symBinAddr: 0x66970, symSize: 0x28 } - - { offsetInCU: 0xA46, offset: 0x9084A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7F8, symBinAddr: 0x66998, symSize: 0x24 } - - { offsetInCU: 0xA60, offset: 0x90864, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x81C, symBinAddr: 0x669BC, symSize: 0x24 } - - { offsetInCU: 0xA7A, offset: 0x9087E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x840, symBinAddr: 0x669E0, symSize: 0x20 } - - { offsetInCU: 0xA94, offset: 0x90898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x860, symBinAddr: 0x66A00, symSize: 0x28 } - - { offsetInCU: 0xAAE, offset: 0x908B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x888, symBinAddr: 0x66A28, symSize: 0x1C } - - { offsetInCU: 0xAC9, offset: 0x908CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKey_WZ', symObjAddr: 0x8A4, symBinAddr: 0x66A44, symSize: 0x18 } - - { offsetInCU: 0xAE3, offset: 0x908E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKey_WZ', symObjAddr: 0x8BC, symBinAddr: 0x66A5C, symSize: 0x18 } - - { offsetInCU: 0xAFD, offset: 0x90901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x66A74, symSize: 0x1C } - - { offsetInCU: 0xB17, offset: 0x9091B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x66A90, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x90935, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKey_WZ', symObjAddr: 0x90C, symBinAddr: 0x66AAC, symSize: 0x18 } - - { offsetInCU: 0xB4B, offset: 0x9094F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKey_WZ', symObjAddr: 0x924, symBinAddr: 0x66AC4, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x90969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKey_WZ', symObjAddr: 0x940, symBinAddr: 0x66AE0, symSize: 0x1C } - - { offsetInCU: 0xB7F, offset: 0x90983, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x66AFC, symSize: 0x1C } - - { offsetInCU: 0xB99, offset: 0x9099D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKey_WZ', symObjAddr: 0x978, symBinAddr: 0x66B18, symSize: 0x18 } - - { offsetInCU: 0xBB3, offset: 0x909B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKey_WZ', symObjAddr: 0x990, symBinAddr: 0x66B30, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x909D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x66B48, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x909EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKey_WZ', symObjAddr: 0x9C4, symBinAddr: 0x66B64, symSize: 0x18 } - - { offsetInCU: 0xC01, offset: 0x90A05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x66B7C, symSize: 0x1C } - - { offsetInCU: 0xC1B, offset: 0x90A1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9F8, symBinAddr: 0x66B98, symSize: 0x24 } - - { offsetInCU: 0xC35, offset: 0x90A39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKey_WZ', symObjAddr: 0xA1C, symBinAddr: 0x66BBC, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x90A53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKey_WZ', symObjAddr: 0xA34, symBinAddr: 0x66BD4, symSize: 0x18 } - - { offsetInCU: 0xC69, offset: 0x90A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKey_WZ', symObjAddr: 0xA4C, symBinAddr: 0x66BEC, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x90A87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x66C04, symSize: 0x1C } - - { offsetInCU: 0xC9D, offset: 0x90AA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKey_WZ', symObjAddr: 0xA80, symBinAddr: 0x66C20, symSize: 0x18 } - - { offsetInCU: 0xCB7, offset: 0x90ABB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKey_WZ', symObjAddr: 0xA98, symBinAddr: 0x66C38, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x90AD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x66C50, symSize: 0x1C } - - { offsetInCU: 0xCEB, offset: 0x90AEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkey_WZ', symObjAddr: 0xACC, symBinAddr: 0x66C6C, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x90B09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkey_WZ', symObjAddr: 0xAE4, symBinAddr: 0x66C84, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x90B23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekey_WZ', symObjAddr: 0xAFC, symBinAddr: 0x66C9C, symSize: 0x18 } - - { offsetInCU: 0xD39, offset: 0x90B3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkey_WZ', symObjAddr: 0xB14, symBinAddr: 0x66CB4, symSize: 0x18 } - - { offsetInCU: 0xD53, offset: 0x90B57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkey_WZ', symObjAddr: 0xB2C, symBinAddr: 0x66CCC, symSize: 0x20 } - - { offsetInCU: 0xD6D, offset: 0x90B71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKey_WZ', symObjAddr: 0xB4C, symBinAddr: 0x66CEC, symSize: 0x24 } - - { offsetInCU: 0xD87, offset: 0x90B8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x66D10, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x90BA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x66D2C, symSize: 0x1C } - - { offsetInCU: 0xDBB, offset: 0x90BBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x66D48, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x90BD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKey_WZ', symObjAddr: 0xBC4, symBinAddr: 0x66D64, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x90BF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x66D7C, symSize: 0x1C } - - { offsetInCU: 0xE09, offset: 0x90C0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBF8, symBinAddr: 0x66D98, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x90C27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xC10, symBinAddr: 0x66DB0, symSize: 0x18 } - - { offsetInCU: 0xE3D, offset: 0x90C41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC28, symBinAddr: 0x66DC8, symSize: 0x18 } - - { offsetInCU: 0xE57, offset: 0x90C5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x66DE0, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x90C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKey_WZ', symObjAddr: 0xC5C, symBinAddr: 0x66DFC, symSize: 0x24 } - - { offsetInCU: 0xE8B, offset: 0x90C8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x66E20, symSize: 0x1C } - - { offsetInCU: 0xEA5, offset: 0x90CA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKey_WZ', symObjAddr: 0xC9C, symBinAddr: 0x66E3C, symSize: 0x20 } - - { offsetInCU: 0xEBF, offset: 0x90CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCBC, symBinAddr: 0x66E5C, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x90CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCD4, symBinAddr: 0x66E74, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90CF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCEC, symBinAddr: 0x66E8C, symSize: 0x18 } - - { offsetInCU: 0xF0D, offset: 0x90D11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekey_WZ', symObjAddr: 0xD04, symBinAddr: 0x66EA4, symSize: 0x18 } - - { offsetInCU: 0xF27, offset: 0x90D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkey_WZ', symObjAddr: 0xD1C, symBinAddr: 0x66EBC, symSize: 0x18 } - - { offsetInCU: 0xF69, offset: 0x90D6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0xD34, symBinAddr: 0x66ED4, symSize: 0x288 } - - { offsetInCU: 0x10FC, offset: 0x90F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x6658C, symSize: 0x24 } - - { offsetInCU: 0x119E, offset: 0x90FA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x665F8, symSize: 0x4C } - - { offsetInCU: 0x1276, offset: 0x9107A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x66644, symSize: 0x34 } - - { offsetInCU: 0x12F2, offset: 0x910F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x66678, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x912BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6715C, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x91301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6715C, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x9134D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x67180, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x9148E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1B00, symBinAddr: 0x84D90, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x914D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x6727C, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x91556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x672BC, symSize: 0x3F8 } - - { offsetInCU: 0x302, offset: 0x91741, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x564, symBinAddr: 0x676C4, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x917A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C8, symBinAddr: 0x67728, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x9180D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x62C, symBinAddr: 0x6778C, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x91873, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x690, symBinAddr: 0x677F0, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x918D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6F4, symBinAddr: 0x67854, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x919D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x81C, symBinAddr: 0x67920, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x91A47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6795C, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x91A83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6795C, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x91AB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x868, symBinAddr: 0x6796C, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x91B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x9CC, symBinAddr: 0x67AD0, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x91B94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xA00, symBinAddr: 0x67B04, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x91C15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA54, symBinAddr: 0x67B58, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91CB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xAA0, symBinAddr: 0x67BA4, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x91D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB34, symBinAddr: 0x67C28, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x91E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA8, symBinAddr: 0x67C9C, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91ED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC2C, symBinAddr: 0x67D20, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91F62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC64, symBinAddr: 0x67D58, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91FF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC9C, symBinAddr: 0x67D90, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x92085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCD4, symBinAddr: 0x67DC8, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x9211A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD0C, symBinAddr: 0x67E00, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x921AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD44, symBinAddr: 0x67E38, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x92244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD7C, symBinAddr: 0x67E70, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x922D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDB4, symBinAddr: 0x67EA8, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x92344, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDEC, symBinAddr: 0x67EE0, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x923A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE30, symBinAddr: 0x67F24, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x9248B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xF68, symBinAddr: 0x6805C, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x92572, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1014, symBinAddr: 0x68108, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x9260D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x108C, symBinAddr: 0x68180, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x9263A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1110, symBinAddr: 0x68204, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x926E0, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x671E0, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x926F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x67230, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x92796, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5C0, symBinAddr: 0x67720, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x927AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x624, symBinAddr: 0x67784, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x927BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x688, symBinAddr: 0x677E8, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x927D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6EC, symBinAddr: 0x6784C, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x927E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x750, symBinAddr: 0x678B0, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x927FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x7B4, symBinAddr: 0x678B8, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x9280E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOf', symObjAddr: 0x7D4, symBinAddr: 0x678D8, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x9286F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1258, symBinAddr: 0x6834C, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x92883, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1260, symBinAddr: 0x68354, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x92897, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1270, symBinAddr: 0x68364, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x928D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x12A4, symBinAddr: 0x6836C, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x929DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15C4, symBinAddr: 0x6868C, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x92B2D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x671A0, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x92B49, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x671A4, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x92B65, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x671A8, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x92B81, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x671AC, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x92B9D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x671B0, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x92BB9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x671B4, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x92BD5, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x671B8, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92BF1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x671BC, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x92C0D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x671C0, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x92C29, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x671C4, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x92C45, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x671C8, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x92C61, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x671D4, symSize: 0xC } -... diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml b/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml deleted file mode 100644 index f61dce2..0000000 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml +++ /dev/null @@ -1,1793 +0,0 @@ ---- -triple: 'x86_64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' -relocations: - - { offsetInCU: 0x34, offset: 0x59050, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x78E70, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x59085, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x78EA8, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x590EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x44A68, symBinAddr: 0x91310, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x59115, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xF0, symBinAddr: 0x2120, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x59131, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x130, symBinAddr: 0x2160, symSize: 0x10 } - - { offsetInCU: 0xB2, offset: 0x5914D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x140, symBinAddr: 0x2170, symSize: 0x320 } - - { offsetInCU: 0x109, offset: 0x591A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x460, symBinAddr: 0x2490, symSize: 0x1010 } - - { offsetInCU: 0x459, offset: 0x594F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x1470, symBinAddr: 0x34A0, symSize: 0x660 } - - { offsetInCU: 0x4DA, offset: 0x59575, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1AD0, symBinAddr: 0x3B00, symSize: 0x20 } - - { offsetInCU: 0x507, offset: 0x595A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D50, symBinAddr: 0x3D80, symSize: 0x770 } - - { offsetInCU: 0x7CC, offset: 0x59867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x24C0, symBinAddr: 0x44F0, symSize: 0x480 } - - { offsetInCU: 0xA80, offset: 0x59B1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2940, symBinAddr: 0x4970, symSize: 0xA40 } - - { offsetInCU: 0xEAC, offset: 0x59F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3380, symBinAddr: 0x53B0, symSize: 0x7A0 } - - { offsetInCU: 0x1290, offset: 0x5A32B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3B20, symBinAddr: 0x5B50, symSize: 0x4B00 } - - { offsetInCU: 0x2C6D, offset: 0x5BD08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8630, symBinAddr: 0xA650, symSize: 0x190 } - - { offsetInCU: 0x2D41, offset: 0x5BDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x87C0, symBinAddr: 0xA7E0, symSize: 0x3B0 } - - { offsetInCU: 0x2F2C, offset: 0x5BFC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8B70, symBinAddr: 0xAB90, symSize: 0x480 } - - { offsetInCU: 0x32BB, offset: 0x5C356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8FF0, symBinAddr: 0xB010, symSize: 0x360 } - - { offsetInCU: 0x3479, offset: 0x5C514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x9350, symBinAddr: 0xB370, symSize: 0x2A0 } - - { offsetInCU: 0x35F5, offset: 0x5C690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x95F0, symBinAddr: 0xB610, symSize: 0x2B0 } - - { offsetInCU: 0x3771, offset: 0x5C80C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x98A0, symBinAddr: 0xB8C0, symSize: 0x4A0 } - - { offsetInCU: 0x389B, offset: 0x5C936, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x9D40, symBinAddr: 0xBD60, symSize: 0x740 } - - { offsetInCU: 0x3B6F, offset: 0x5CC0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0xA480, symBinAddr: 0xC4A0, symSize: 0x250 } - - { offsetInCU: 0x3D84, offset: 0x5CE1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB9A0, symBinAddr: 0xD9C0, symSize: 0x1B60 } - - { offsetInCU: 0x5458, offset: 0x5E4F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x20B0, symSize: 0x40 } - - { offsetInCU: 0x5488, offset: 0x5E523, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0xC0, symBinAddr: 0x20F0, symSize: 0x30 } - - { offsetInCU: 0x5651, offset: 0x5E6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1AF0, symBinAddr: 0x3B20, symSize: 0x10 } - - { offsetInCU: 0x5665, offset: 0x5E700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1B00, symBinAddr: 0x3B30, symSize: 0x30 } - - { offsetInCU: 0x5679, offset: 0x5E714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1B30, symBinAddr: 0x3B60, symSize: 0x220 } - - { offsetInCU: 0x5BD5, offset: 0x5EC70, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0xA750, symBinAddr: 0xC770, symSize: 0x10 } - - { offsetInCU: 0x5BE9, offset: 0x5EC84, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0xA760, symBinAddr: 0xC780, symSize: 0x10 } - - { offsetInCU: 0x5BFD, offset: 0x5EC98, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0xA770, symBinAddr: 0xC790, symSize: 0x20 } - - { offsetInCU: 0x5C11, offset: 0x5ECAC, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0xA790, symBinAddr: 0xC7B0, symSize: 0x30 } - - { offsetInCU: 0x5D22, offset: 0x5EDBD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xAD00, symBinAddr: 0xCD20, symSize: 0x20 } - - { offsetInCU: 0x5D36, offset: 0x5EDD1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xAD20, symBinAddr: 0xCD40, symSize: 0x20 } - - { offsetInCU: 0x5D4A, offset: 0x5EDE5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xAD70, symBinAddr: 0xCD90, symSize: 0x20 } - - { offsetInCU: 0x5D5E, offset: 0x5EDF9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xAD90, symBinAddr: 0xCDB0, symSize: 0x20 } - - { offsetInCU: 0x5D93, offset: 0x5EE2E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xAF70, symBinAddr: 0xCF90, symSize: 0x230 } - - { offsetInCU: 0x5DF9, offset: 0x5EE94, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xB1A0, symBinAddr: 0xD1C0, symSize: 0x50 } - - { offsetInCU: 0x5E5A, offset: 0x5EEF5, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xB340, symBinAddr: 0xD360, symSize: 0x260 } - - { offsetInCU: 0x63D1, offset: 0x5F46C, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xD6A0, symBinAddr: 0xF6C0, symSize: 0x40 } - - { offsetInCU: 0x63E5, offset: 0x5F480, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xD6E0, symBinAddr: 0xF700, symSize: 0x30 } - - { offsetInCU: 0x63F9, offset: 0x5F494, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xD710, symBinAddr: 0xF730, symSize: 0x20 } - - { offsetInCU: 0x640D, offset: 0x5F4A8, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xD730, symBinAddr: 0xF750, symSize: 0x30 } - - { offsetInCU: 0x6421, offset: 0x5F4BC, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xD7B0, symBinAddr: 0xF7D0, symSize: 0x30 } - - { offsetInCU: 0x6435, offset: 0x5F4D0, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD950, symBinAddr: 0xF970, symSize: 0x20 } - - { offsetInCU: 0x6449, offset: 0x5F4E4, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD970, symBinAddr: 0xF990, symSize: 0x20 } - - { offsetInCU: 0x645D, offset: 0x5F4F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xD990, symBinAddr: 0xF9B0, symSize: 0x50 } - - { offsetInCU: 0x6471, offset: 0x5F50C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xD9E0, symBinAddr: 0xFA00, symSize: 0x180 } - - { offsetInCU: 0x6485, offset: 0x5F520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xDB60, symBinAddr: 0xFB80, symSize: 0x2D0 } - - { offsetInCU: 0x6499, offset: 0x5F534, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xDE30, symBinAddr: 0xFE50, symSize: 0x70 } - - { offsetInCU: 0x64AD, offset: 0x5F548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xDEA0, symBinAddr: 0xFEC0, symSize: 0x30 } - - { offsetInCU: 0x64C1, offset: 0x5F55C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xDED0, symBinAddr: 0xFEF0, symSize: 0xD0 } - - { offsetInCU: 0x64D5, offset: 0x5F570, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xDFA0, symBinAddr: 0xFFC0, symSize: 0xB0 } - - { offsetInCU: 0x64E9, offset: 0x5F584, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xE050, symBinAddr: 0x10070, symSize: 0x20 } - - { offsetInCU: 0x64FD, offset: 0x5F598, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xE070, symBinAddr: 0x10090, symSize: 0x30 } - - { offsetInCU: 0x6511, offset: 0x5F5AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xE100, symBinAddr: 0x10120, symSize: 0x50 } - - { offsetInCU: 0x6525, offset: 0x5F5C0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xE1F0, symBinAddr: 0x10210, symSize: 0x20 } - - { offsetInCU: 0x6539, offset: 0x5F5D4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xE210, symBinAddr: 0x10230, symSize: 0x20 } - - { offsetInCU: 0x654D, offset: 0x5F5E8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xE230, symBinAddr: 0x10250, symSize: 0x20 } - - { offsetInCU: 0x6561, offset: 0x5F5FC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xE250, symBinAddr: 0x10270, symSize: 0x20 } - - { offsetInCU: 0x6575, offset: 0x5F610, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xE270, symBinAddr: 0x10290, symSize: 0x20 } - - { offsetInCU: 0x6589, offset: 0x5F624, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xE290, symBinAddr: 0x102B0, symSize: 0x20 } - - { offsetInCU: 0x659D, offset: 0x5F638, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xE2B0, symBinAddr: 0x102D0, symSize: 0x20 } - - { offsetInCU: 0x698D, offset: 0x5FA28, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA7E0, symBinAddr: 0xC800, symSize: 0x10 } - - { offsetInCU: 0x69CB, offset: 0x5FA66, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA800, symBinAddr: 0xC820, symSize: 0x10 } - - { offsetInCU: 0x6A1A, offset: 0x5FAB5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA810, symBinAddr: 0xC830, symSize: 0x10 } - - { offsetInCU: 0x6AB7, offset: 0x5FB52, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA820, symBinAddr: 0xC840, symSize: 0x10 } - - { offsetInCU: 0x6B4C, offset: 0x5FBE7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA830, symBinAddr: 0xC850, symSize: 0x10 } - - { offsetInCU: 0x6BE9, offset: 0x5FC84, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA840, symBinAddr: 0xC860, symSize: 0x30 } - - { offsetInCU: 0x6D44, offset: 0x5FDDF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA870, symBinAddr: 0xC890, symSize: 0x30 } - - { offsetInCU: 0x6E41, offset: 0x5FEDC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA8A0, symBinAddr: 0xC8C0, symSize: 0x20 } - - { offsetInCU: 0x6F2D, offset: 0x5FFC8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA8C0, symBinAddr: 0xC8E0, symSize: 0x10 } - - { offsetInCU: 0x6F6B, offset: 0x60006, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA8D0, symBinAddr: 0xC8F0, symSize: 0x10 } - - { offsetInCU: 0x6FA9, offset: 0x60044, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA8E0, symBinAddr: 0xC900, symSize: 0x10 } - - { offsetInCU: 0x6FF6, offset: 0x60091, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA8F0, symBinAddr: 0xC910, symSize: 0x10 } - - { offsetInCU: 0x709F, offset: 0x6013A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA900, symBinAddr: 0xC920, symSize: 0x20 } - - { offsetInCU: 0x7116, offset: 0x601B1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA920, symBinAddr: 0xC940, symSize: 0x10 } - - { offsetInCU: 0x71CE, offset: 0x60269, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA930, symBinAddr: 0xC950, symSize: 0x20 } - - { offsetInCU: 0x7268, offset: 0x60303, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA950, symBinAddr: 0xC970, symSize: 0x10 } - - { offsetInCU: 0x72D0, offset: 0x6036B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA960, symBinAddr: 0xC980, symSize: 0x20 } - - { offsetInCU: 0x72EC, offset: 0x60387, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA980, symBinAddr: 0xC9A0, symSize: 0x10 } - - { offsetInCU: 0x7368, offset: 0x60403, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA9B0, symBinAddr: 0xC9D0, symSize: 0x10 } - - { offsetInCU: 0x7399, offset: 0x60434, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA9C0, symBinAddr: 0xC9E0, symSize: 0x10 } - - { offsetInCU: 0x73CA, offset: 0x60465, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA9D0, symBinAddr: 0xC9F0, symSize: 0x10 } - - { offsetInCU: 0x73FB, offset: 0x60496, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA9E0, symBinAddr: 0xCA00, symSize: 0x30 } - - { offsetInCU: 0x742A, offset: 0x604C5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xAA10, symBinAddr: 0xCA30, symSize: 0x30 } - - { offsetInCU: 0x745B, offset: 0x604F6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xAA40, symBinAddr: 0xCA60, symSize: 0x30 } - - { offsetInCU: 0x748C, offset: 0x60527, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xAA70, symBinAddr: 0xCA90, symSize: 0x10 } - - { offsetInCU: 0x74BD, offset: 0x60558, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xAA80, symBinAddr: 0xCAA0, symSize: 0x10 } - - { offsetInCU: 0x74EE, offset: 0x60589, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xAA90, symBinAddr: 0xCAB0, symSize: 0x10 } - - { offsetInCU: 0x751F, offset: 0x605BA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xAAA0, symBinAddr: 0xCAC0, symSize: 0x20 } - - { offsetInCU: 0x7550, offset: 0x605EB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xAAC0, symBinAddr: 0xCAE0, symSize: 0x20 } - - { offsetInCU: 0x7581, offset: 0x6061C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xAAE0, symBinAddr: 0xCB00, symSize: 0x10 } - - { offsetInCU: 0x75B2, offset: 0x6064D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xAAF0, symBinAddr: 0xCB10, symSize: 0x20 } - - { offsetInCU: 0x75E3, offset: 0x6067E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xAB10, symBinAddr: 0xCB30, symSize: 0x10 } - - { offsetInCU: 0x7614, offset: 0x606AF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xAB20, symBinAddr: 0xCB40, symSize: 0x20 } - - { offsetInCU: 0x7630, offset: 0x606CB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xAB40, symBinAddr: 0xCB60, symSize: 0x10 } - - { offsetInCU: 0x7670, offset: 0x6070B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAB70, symBinAddr: 0xCB90, symSize: 0x30 } - - { offsetInCU: 0x76EE, offset: 0x60789, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xABA0, symBinAddr: 0xCBC0, symSize: 0x60 } - - { offsetInCU: 0x7781, offset: 0x6081C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC60, symBinAddr: 0xCC80, symSize: 0x10 } - - { offsetInCU: 0x77C1, offset: 0x6085C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC70, symBinAddr: 0xCC90, symSize: 0x10 } - - { offsetInCU: 0x7807, offset: 0x608A2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xAC80, symBinAddr: 0xCCA0, symSize: 0x40 } - - { offsetInCU: 0x7876, offset: 0x60911, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xACC0, symBinAddr: 0xCCE0, symSize: 0x10 } - - { offsetInCU: 0x78A1, offset: 0x6093C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xACD0, symBinAddr: 0xCCF0, symSize: 0x30 } - - { offsetInCU: 0x78D2, offset: 0x6096D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xADB0, symBinAddr: 0xCDD0, symSize: 0x10 } - - { offsetInCU: 0x7903, offset: 0x6099E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xADC0, symBinAddr: 0xCDE0, symSize: 0x30 } - - { offsetInCU: 0x7943, offset: 0x609DE, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xADF0, symBinAddr: 0xCE10, symSize: 0x80 } - - { offsetInCU: 0x79DC, offset: 0x60A77, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xAF00, symBinAddr: 0xCF20, symSize: 0x70 } - - { offsetInCU: 0x7A1F, offset: 0x60ABA, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0xB5A0, symBinAddr: 0xD5C0, symSize: 0xA0 } - - { offsetInCU: 0x7B0B, offset: 0x60BA6, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xB640, symBinAddr: 0xD660, symSize: 0x220 } - - { offsetInCU: 0x7D39, offset: 0x60DD4, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xD500, symBinAddr: 0xF520, symSize: 0xD0 } - - { offsetInCU: 0x7E81, offset: 0x60F1C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xD5D0, symBinAddr: 0xF5F0, symSize: 0xD0 } - - { offsetInCU: 0x7FB4, offset: 0x6104F, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE2D0, symBinAddr: 0x102F0, symSize: 0x80 } - - { offsetInCU: 0x8045, offset: 0x610E0, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE350, symBinAddr: 0x10370, symSize: 0x80 } - - { offsetInCU: 0x8207, offset: 0x612A2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xAE80, symBinAddr: 0xCEA0, symSize: 0x10 } - - { offsetInCU: 0x8223, offset: 0x612BE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xAE90, symBinAddr: 0xCEB0, symSize: 0x10 } - - { offsetInCU: 0x828D, offset: 0x61328, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xAEA0, symBinAddr: 0xCEC0, symSize: 0x40 } - - { offsetInCU: 0x82B6, offset: 0x61351, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xAEE0, symBinAddr: 0xCF00, symSize: 0x20 } - - { offsetInCU: 0x82F1, offset: 0x6138C, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xAE70, symBinAddr: 0xCE90, symSize: 0x10 } - - { offsetInCU: 0x83CF, offset: 0x6146A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0xA7F0, symBinAddr: 0xC810, symSize: 0x10 } - - { offsetInCU: 0x83F2, offset: 0x6148D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA990, symBinAddr: 0xC9B0, symSize: 0x10 } - - { offsetInCU: 0x840E, offset: 0x614A9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA9A0, symBinAddr: 0xC9C0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x616B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10430, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x616DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10430, symSize: 0x20 } - - { offsetInCU: 0x79, offset: 0x6170B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0x10450, symSize: 0x14 } - - { offsetInCU: 0x43, offset: 0x6183A, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0x104A0, symSize: 0x10 } - - { offsetInCU: 0x57, offset: 0x6184E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0x104E0, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x6188E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0x104F0, symSize: 0x20 } - - { offsetInCU: 0xE4, offset: 0x618DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA0, symBinAddr: 0x10510, symSize: 0x10 } - - { offsetInCU: 0x142, offset: 0x61939, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC0, symBinAddr: 0x10530, symSize: 0x20 } - - { offsetInCU: 0x1BC, offset: 0x619B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0xF0, symBinAddr: 0x10560, symSize: 0x10 } - - { offsetInCU: 0x1E7, offset: 0x619DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x10570, symSize: 0x20 } - - { offsetInCU: 0x218, offset: 0x61A0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x120, symBinAddr: 0x10590, symSize: 0x10 } - - { offsetInCU: 0x234, offset: 0x61A2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x130, symBinAddr: 0x105A0, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x61A47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2240, symBinAddr: 0x126B0, symSize: 0x340 } - - { offsetInCU: 0x296, offset: 0x61A8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x180, symBinAddr: 0x105F0, symSize: 0x4C0 } - - { offsetInCU: 0x2EB, offset: 0x61AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0x119F0, symSize: 0x50 } - - { offsetInCU: 0x322, offset: 0x61B19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0x11A40, symSize: 0x50 } - - { offsetInCU: 0x345, offset: 0x61B3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2580, symBinAddr: 0x129F0, symSize: 0x14F0 } - - { offsetInCU: 0x377, offset: 0x61B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x10AB0, symSize: 0xE0 } - - { offsetInCU: 0x3C3, offset: 0x61BBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1620, symBinAddr: 0x11A90, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x61C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1630, symBinAddr: 0x11AA0, symSize: 0x30 } - - { offsetInCU: 0x4FB, offset: 0x61CF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1660, symBinAddr: 0x11AD0, symSize: 0x20 } - - { offsetInCU: 0x57C, offset: 0x61D73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16B0, symBinAddr: 0x11B20, symSize: 0x10 } - - { offsetInCU: 0x5BC, offset: 0x61DB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16C0, symBinAddr: 0x11B30, symSize: 0x20 } - - { offsetInCU: 0x5ED, offset: 0x61DE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x11B50, symSize: 0x10 } - - { offsetInCU: 0x609, offset: 0x61E00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x11B60, symSize: 0x10 } - - { offsetInCU: 0x625, offset: 0x61E1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3A70, symBinAddr: 0x13EE0, symSize: 0x60 } - - { offsetInCU: 0x669, offset: 0x61E60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvgTf4d_n', symObjAddr: 0x3AD0, symBinAddr: 0x13F40, symSize: 0x20 } - - { offsetInCU: 0x69D, offset: 0x61E94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x11BB0, symSize: 0x50 } - - { offsetInCU: 0x6D4, offset: 0x61ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x11C00, symSize: 0x50 } - - { offsetInCU: 0x6F7, offset: 0x61EEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3AF0, symBinAddr: 0x13F60, symSize: 0x3A0 } - - { offsetInCU: 0x769, offset: 0x61F60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x720, symBinAddr: 0x10B90, symSize: 0x20 } - - { offsetInCU: 0x792, offset: 0x61F89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x11C50, symSize: 0x10 } - - { offsetInCU: 0x7BD, offset: 0x61FB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x11C60, symSize: 0x20 } - - { offsetInCU: 0x7EE, offset: 0x61FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x11C80, symSize: 0x10 } - - { offsetInCU: 0x80A, offset: 0x62001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x11C90, symSize: 0x10 } - - { offsetInCU: 0x826, offset: 0x6201D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6310, symBinAddr: 0x16730, symSize: 0x160 } - - { offsetInCU: 0x86C, offset: 0x62063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x740, symBinAddr: 0x10BB0, symSize: 0x1A0 } - - { offsetInCU: 0x8C1, offset: 0x620B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x11CE0, symSize: 0x50 } - - { offsetInCU: 0x8F8, offset: 0x620EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x11D30, symSize: 0x50 } - - { offsetInCU: 0x91B, offset: 0x62112, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6470, symBinAddr: 0x16890, symSize: 0x320 } - - { offsetInCU: 0x96B, offset: 0x62162, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x8E0, symBinAddr: 0x10D50, symSize: 0x20 } - - { offsetInCU: 0x994, offset: 0x6218B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1910, symBinAddr: 0x11D80, symSize: 0x10 } - - { offsetInCU: 0x9BF, offset: 0x621B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1920, symBinAddr: 0x11D90, symSize: 0x20 } - - { offsetInCU: 0x9F0, offset: 0x621E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1940, symBinAddr: 0x11DB0, symSize: 0x10 } - - { offsetInCU: 0xA0C, offset: 0x62203, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6790, symBinAddr: 0x16BB0, symSize: 0x120 } - - { offsetInCU: 0xA52, offset: 0x62249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x900, symBinAddr: 0x10D70, symSize: 0x170 } - - { offsetInCU: 0xAA7, offset: 0x6229E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1990, symBinAddr: 0x11E00, symSize: 0x40 } - - { offsetInCU: 0xADE, offset: 0x622D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19D0, symBinAddr: 0x11E40, symSize: 0x40 } - - { offsetInCU: 0xB01, offset: 0x622F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x68B0, symBinAddr: 0x16CD0, symSize: 0x310 } - - { offsetInCU: 0xB45, offset: 0x6233C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xA70, symBinAddr: 0x10EE0, symSize: 0x20 } - - { offsetInCU: 0xB6E, offset: 0x62365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A10, symBinAddr: 0x11E80, symSize: 0x10 } - - { offsetInCU: 0xB99, offset: 0x62390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x11E90, symSize: 0x20 } - - { offsetInCU: 0xBCA, offset: 0x623C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x11EB0, symSize: 0x10 } - - { offsetInCU: 0xBE6, offset: 0x623DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x11EC0, symSize: 0x10 } - - { offsetInCU: 0xC02, offset: 0x623F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6BC0, symBinAddr: 0x16FE0, symSize: 0x120 } - - { offsetInCU: 0xC48, offset: 0x6243F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA90, symBinAddr: 0x10F00, symSize: 0x1D0 } - - { offsetInCU: 0xC9D, offset: 0x62494, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x11F10, symSize: 0x50 } - - { offsetInCU: 0xCD4, offset: 0x624CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AF0, symBinAddr: 0x11F60, symSize: 0x50 } - - { offsetInCU: 0xCF7, offset: 0x624EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x17100, symSize: 0x580 } - - { offsetInCU: 0xD47, offset: 0x6253E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xC60, symBinAddr: 0x110D0, symSize: 0x20 } - - { offsetInCU: 0xD70, offset: 0x62567, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x11FD0, symSize: 0x10 } - - { offsetInCU: 0xD9B, offset: 0x62592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B70, symBinAddr: 0x11FE0, symSize: 0x20 } - - { offsetInCU: 0xDCC, offset: 0x625C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B90, symBinAddr: 0x12000, symSize: 0x10 } - - { offsetInCU: 0xDE8, offset: 0x625DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x12010, symSize: 0x10 } - - { offsetInCU: 0xE04, offset: 0x625FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x72F0, symBinAddr: 0x17710, symSize: 0x210 } - - { offsetInCU: 0xE4A, offset: 0x62641, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC80, symBinAddr: 0x110F0, symSize: 0x230 } - - { offsetInCU: 0xE9F, offset: 0x62696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BF0, symBinAddr: 0x12060, symSize: 0x60 } - - { offsetInCU: 0xED6, offset: 0x626CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C50, symBinAddr: 0x120C0, symSize: 0x70 } - - { offsetInCU: 0xEF9, offset: 0x626F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7500, symBinAddr: 0x17920, symSize: 0x660 } - - { offsetInCU: 0xF49, offset: 0x62740, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xEB0, symBinAddr: 0x11320, symSize: 0x30 } - - { offsetInCU: 0xF94, offset: 0x6278B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1CC0, symBinAddr: 0x12130, symSize: 0x10 } - - { offsetInCU: 0x101D, offset: 0x62814, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1CD0, symBinAddr: 0x12140, symSize: 0x40 } - - { offsetInCU: 0x1101, offset: 0x628F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D10, symBinAddr: 0x12180, symSize: 0x20 } - - { offsetInCU: 0x1173, offset: 0x6296A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D70, symBinAddr: 0x121E0, symSize: 0x10 } - - { offsetInCU: 0x119E, offset: 0x62995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D80, symBinAddr: 0x121F0, symSize: 0x20 } - - { offsetInCU: 0x11CF, offset: 0x629C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DA0, symBinAddr: 0x12210, symSize: 0x10 } - - { offsetInCU: 0x11EB, offset: 0x629E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x12220, symSize: 0x10 } - - { offsetInCU: 0x1207, offset: 0x629FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B90, symBinAddr: 0x17FB0, symSize: 0xA0 } - - { offsetInCU: 0x124D, offset: 0x62A44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x11350, symSize: 0x110 } - - { offsetInCU: 0x12A2, offset: 0x62A99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E00, symBinAddr: 0x12270, symSize: 0x30 } - - { offsetInCU: 0x12D9, offset: 0x62AD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E30, symBinAddr: 0x122A0, symSize: 0x20 } - - { offsetInCU: 0x12FC, offset: 0x62AF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C30, symBinAddr: 0x18050, symSize: 0x180 } - - { offsetInCU: 0x1358, offset: 0x62B4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xFF0, symBinAddr: 0x11460, symSize: 0x20 } - - { offsetInCU: 0x1381, offset: 0x62B78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E50, symBinAddr: 0x122C0, symSize: 0x10 } - - { offsetInCU: 0x13AC, offset: 0x62BA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x122D0, symSize: 0x20 } - - { offsetInCU: 0x13DD, offset: 0x62BD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1E80, symBinAddr: 0x122F0, symSize: 0x10 } - - { offsetInCU: 0x13F9, offset: 0x62BF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E90, symBinAddr: 0x12300, symSize: 0x10 } - - { offsetInCU: 0x1415, offset: 0x62C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7DE0, symBinAddr: 0x18200, symSize: 0x1C0 } - - { offsetInCU: 0x145B, offset: 0x62C52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1010, symBinAddr: 0x11480, symSize: 0x1F0 } - - { offsetInCU: 0x14B0, offset: 0x62CA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EE0, symBinAddr: 0x12350, symSize: 0x50 } - - { offsetInCU: 0x14E7, offset: 0x62CDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F30, symBinAddr: 0x123A0, symSize: 0x50 } - - { offsetInCU: 0x150A, offset: 0x62D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x183C0, symSize: 0x3A0 } - - { offsetInCU: 0x154E, offset: 0x62D45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1200, symBinAddr: 0x11670, symSize: 0x20 } - - { offsetInCU: 0x1577, offset: 0x62D6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F80, symBinAddr: 0x123F0, symSize: 0x10 } - - { offsetInCU: 0x15A2, offset: 0x62D99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F90, symBinAddr: 0x12400, symSize: 0x20 } - - { offsetInCU: 0x15D3, offset: 0x62DCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FB0, symBinAddr: 0x12420, symSize: 0x10 } - - { offsetInCU: 0x15EF, offset: 0x62DE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FC0, symBinAddr: 0x12430, symSize: 0x10 } - - { offsetInCU: 0x160B, offset: 0x62E02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x18760, symSize: 0x190 } - - { offsetInCU: 0x1651, offset: 0x62E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1220, symBinAddr: 0x11690, symSize: 0x210 } - - { offsetInCU: 0x16A6, offset: 0x62E9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2010, symBinAddr: 0x12480, symSize: 0x50 } - - { offsetInCU: 0x16DD, offset: 0x62ED4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2060, symBinAddr: 0x124D0, symSize: 0x50 } - - { offsetInCU: 0x1700, offset: 0x62EF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x84D0, symBinAddr: 0x188F0, symSize: 0x3D0 } - - { offsetInCU: 0x1750, offset: 0x62F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1430, symBinAddr: 0x118A0, symSize: 0x20 } - - { offsetInCU: 0x1779, offset: 0x62F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2130, symBinAddr: 0x125A0, symSize: 0x10 } - - { offsetInCU: 0x17A4, offset: 0x62F9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x125B0, symSize: 0x20 } - - { offsetInCU: 0x17D5, offset: 0x62FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2160, symBinAddr: 0x125D0, symSize: 0x10 } - - { offsetInCU: 0x17F1, offset: 0x62FE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2170, symBinAddr: 0x125E0, symSize: 0x10 } - - { offsetInCU: 0x180D, offset: 0x63004, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8900, symBinAddr: 0x18D20, symSize: 0xE0 } - - { offsetInCU: 0x1853, offset: 0x6304A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1450, symBinAddr: 0x118C0, symSize: 0x130 } - - { offsetInCU: 0x18A8, offset: 0x6309F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x21C0, symBinAddr: 0x12630, symSize: 0x40 } - - { offsetInCU: 0x18DF, offset: 0x630D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2200, symBinAddr: 0x12670, symSize: 0x40 } - - { offsetInCU: 0x1902, offset: 0x630F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x89E0, symBinAddr: 0x18E00, symSize: 0x1C0 } - - { offsetInCU: 0x193F, offset: 0x63136, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3ED0, symBinAddr: 0x14300, symSize: 0x30 } - - { offsetInCU: 0x1953, offset: 0x6314A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3F00, symBinAddr: 0x14330, symSize: 0x30 } - - { offsetInCU: 0x1967, offset: 0x6315E, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F30, symBinAddr: 0x14360, symSize: 0x30 } - - { offsetInCU: 0x197B, offset: 0x63172, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3F60, symBinAddr: 0x14390, symSize: 0x30 } - - { offsetInCU: 0x198F, offset: 0x63186, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3F90, symBinAddr: 0x143C0, symSize: 0x30 } - - { offsetInCU: 0x19A3, offset: 0x6319A, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FC0, symBinAddr: 0x143F0, symSize: 0x10 } - - { offsetInCU: 0x19B7, offset: 0x631AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3FE0, symBinAddr: 0x14400, symSize: 0x50 } - - { offsetInCU: 0x19CB, offset: 0x631C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4030, symBinAddr: 0x14450, symSize: 0xA0 } - - { offsetInCU: 0x19DF, offset: 0x631D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x40D0, symBinAddr: 0x144F0, symSize: 0x10 } - - { offsetInCU: 0x19F3, offset: 0x631EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x40E0, symBinAddr: 0x14500, symSize: 0x10 } - - { offsetInCU: 0x1A07, offset: 0x631FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x40F0, symBinAddr: 0x14510, symSize: 0x10 } - - { offsetInCU: 0x1A1B, offset: 0x63212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4100, symBinAddr: 0x14520, symSize: 0x10 } - - { offsetInCU: 0x1A2F, offset: 0x63226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x4110, symBinAddr: 0x14530, symSize: 0x30 } - - { offsetInCU: 0x1A43, offset: 0x6323A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x4E60, symBinAddr: 0x15280, symSize: 0x10 } - - { offsetInCU: 0x1A57, offset: 0x6324E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x4E70, symBinAddr: 0x15290, symSize: 0x10 } - - { offsetInCU: 0x1A6B, offset: 0x63262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4E80, symBinAddr: 0x152A0, symSize: 0x30 } - - { offsetInCU: 0x1A7F, offset: 0x63276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4EB0, symBinAddr: 0x152D0, symSize: 0x10 } - - { offsetInCU: 0x1A93, offset: 0x6328A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4EC0, symBinAddr: 0x152E0, symSize: 0x30 } - - { offsetInCU: 0x1AA7, offset: 0x6329E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4EF0, symBinAddr: 0x15310, symSize: 0x10 } - - { offsetInCU: 0x1ABB, offset: 0x632B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4F00, symBinAddr: 0x15320, symSize: 0x30 } - - { offsetInCU: 0x1ACF, offset: 0x632C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x4F30, symBinAddr: 0x15350, symSize: 0x30 } - - { offsetInCU: 0x1AE3, offset: 0x632DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4F60, symBinAddr: 0x15380, symSize: 0x30 } - - { offsetInCU: 0x1AF7, offset: 0x632EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4F90, symBinAddr: 0x153B0, symSize: 0x30 } - - { offsetInCU: 0x1B0B, offset: 0x63302, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4FC0, symBinAddr: 0x153E0, symSize: 0x40 } - - { offsetInCU: 0x1B1F, offset: 0x63316, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x5000, symBinAddr: 0x15420, symSize: 0x30 } - - { offsetInCU: 0x1B33, offset: 0x6332A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x5030, symBinAddr: 0x15450, symSize: 0x30 } - - { offsetInCU: 0x1B47, offset: 0x6333E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x5060, symBinAddr: 0x15480, symSize: 0x30 } - - { offsetInCU: 0x1B5B, offset: 0x63352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x5090, symBinAddr: 0x154B0, symSize: 0x30 } - - { offsetInCU: 0x1B6F, offset: 0x63366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x50C0, symBinAddr: 0x154E0, symSize: 0x30 } - - { offsetInCU: 0x1B83, offset: 0x6337A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x50F0, symBinAddr: 0x15510, symSize: 0x30 } - - { offsetInCU: 0x1B97, offset: 0x6338E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x5120, symBinAddr: 0x15540, symSize: 0x30 } - - { offsetInCU: 0x1BAB, offset: 0x633A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x5150, symBinAddr: 0x15570, symSize: 0x30 } - - { offsetInCU: 0x1BBF, offset: 0x633B6, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x5180, symBinAddr: 0x155A0, symSize: 0x10 } - - { offsetInCU: 0x1BD3, offset: 0x633CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x5190, symBinAddr: 0x155B0, symSize: 0x80 } - - { offsetInCU: 0x1BE7, offset: 0x633DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x5210, symBinAddr: 0x15630, symSize: 0xD0 } - - { offsetInCU: 0x1BFB, offset: 0x633F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x52E0, symBinAddr: 0x15700, symSize: 0x10 } - - { offsetInCU: 0x1C0F, offset: 0x63406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x52F0, symBinAddr: 0x15710, symSize: 0x10 } - - { offsetInCU: 0x1C23, offset: 0x6341A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x5300, symBinAddr: 0x15720, symSize: 0x10 } - - { offsetInCU: 0x1C37, offset: 0x6342E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x5310, symBinAddr: 0x15730, symSize: 0x10 } - - { offsetInCU: 0x1C4B, offset: 0x63442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x5320, symBinAddr: 0x15740, symSize: 0x30 } - - { offsetInCU: 0x1C5F, offset: 0x63456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x5350, symBinAddr: 0x15770, symSize: 0x40 } - - { offsetInCU: 0x1C73, offset: 0x6346A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x5390, symBinAddr: 0x157B0, symSize: 0x70 } - - { offsetInCU: 0x1C87, offset: 0x6347E, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5400, symBinAddr: 0x15820, symSize: 0x20 } - - { offsetInCU: 0x1C9B, offset: 0x63492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x5420, symBinAddr: 0x15840, symSize: 0x50 } - - { offsetInCU: 0x1CAF, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x5470, symBinAddr: 0x15890, symSize: 0x40 } - - { offsetInCU: 0x1CC3, offset: 0x634BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x54B0, symBinAddr: 0x158D0, symSize: 0x40 } - - { offsetInCU: 0x1CD7, offset: 0x634CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x54F0, symBinAddr: 0x15910, symSize: 0x10 } - - { offsetInCU: 0x1CEB, offset: 0x634E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x5500, symBinAddr: 0x15920, symSize: 0x40 } - - { offsetInCU: 0x1CFF, offset: 0x634F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5540, symBinAddr: 0x15960, symSize: 0x80 } - - { offsetInCU: 0x1D13, offset: 0x6350A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x55C0, symBinAddr: 0x159E0, symSize: 0xB0 } - - { offsetInCU: 0x1D27, offset: 0x6351E, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5670, symBinAddr: 0x15A90, symSize: 0x30 } - - { offsetInCU: 0x1D3B, offset: 0x63532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x56A0, symBinAddr: 0x15AC0, symSize: 0x80 } - - { offsetInCU: 0x1D4F, offset: 0x63546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5720, symBinAddr: 0x15B40, symSize: 0x40 } - - { offsetInCU: 0x1D63, offset: 0x6355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5760, symBinAddr: 0x15B80, symSize: 0x50 } - - { offsetInCU: 0x1D77, offset: 0x6356E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x57B0, symBinAddr: 0x15BD0, symSize: 0x10 } - - { offsetInCU: 0x1D8B, offset: 0x63582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x57C0, symBinAddr: 0x15BE0, symSize: 0x30 } - - { offsetInCU: 0x1D9F, offset: 0x63596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x57F0, symBinAddr: 0x15C10, symSize: 0x40 } - - { offsetInCU: 0x1DB3, offset: 0x635AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5830, symBinAddr: 0x15C50, symSize: 0x60 } - - { offsetInCU: 0x1DC7, offset: 0x635BE, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5890, symBinAddr: 0x15CB0, symSize: 0x20 } - - { offsetInCU: 0x1DDB, offset: 0x635D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x58B0, symBinAddr: 0x15CD0, symSize: 0x50 } - - { offsetInCU: 0x1DEF, offset: 0x635E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5900, symBinAddr: 0x15D20, symSize: 0x40 } - - { offsetInCU: 0x1E03, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x5940, symBinAddr: 0x15D60, symSize: 0x50 } - - { offsetInCU: 0x1E17, offset: 0x6360E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5990, symBinAddr: 0x15DB0, symSize: 0x10 } - - { offsetInCU: 0x1E2B, offset: 0x63622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x59A0, symBinAddr: 0x15DC0, symSize: 0x50 } - - { offsetInCU: 0x1E3F, offset: 0x63636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x59F0, symBinAddr: 0x15E10, symSize: 0xE0 } - - { offsetInCU: 0x1E53, offset: 0x6364A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5AD0, symBinAddr: 0x15EF0, symSize: 0x110 } - - { offsetInCU: 0x1E67, offset: 0x6365E, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5BE0, symBinAddr: 0x16000, symSize: 0x50 } - - { offsetInCU: 0x1E7B, offset: 0x63672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5C30, symBinAddr: 0x16050, symSize: 0xD0 } - - { offsetInCU: 0x1E8F, offset: 0x63686, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x5D00, symBinAddr: 0x16120, symSize: 0x40 } - - { offsetInCU: 0x1EA3, offset: 0x6369A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x5D40, symBinAddr: 0x16160, symSize: 0x60 } - - { offsetInCU: 0x1EB7, offset: 0x636AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x5DA0, symBinAddr: 0x161C0, symSize: 0x10 } - - { offsetInCU: 0x1ECB, offset: 0x636C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x5DB0, symBinAddr: 0x161D0, symSize: 0x60 } - - { offsetInCU: 0x1EDF, offset: 0x636D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5E10, symBinAddr: 0x16230, symSize: 0x110 } - - { offsetInCU: 0x1EF3, offset: 0x636EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x5F20, symBinAddr: 0x16340, symSize: 0x160 } - - { offsetInCU: 0x1F07, offset: 0x636FE, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x6080, symBinAddr: 0x164A0, symSize: 0x10 } - - { offsetInCU: 0x1F1B, offset: 0x63712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x6090, symBinAddr: 0x164B0, symSize: 0x100 } - - { offsetInCU: 0x1F2F, offset: 0x63726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x6190, symBinAddr: 0x165B0, symSize: 0x40 } - - { offsetInCU: 0x1F43, offset: 0x6373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x61D0, symBinAddr: 0x165F0, symSize: 0x70 } - - { offsetInCU: 0x1F57, offset: 0x6374E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x6240, symBinAddr: 0x16660, symSize: 0x10 } - - { offsetInCU: 0x1F6B, offset: 0x63762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x6250, symBinAddr: 0x16670, symSize: 0x10 } - - { offsetInCU: 0x1F7F, offset: 0x63776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x6260, symBinAddr: 0x16680, symSize: 0x30 } - - { offsetInCU: 0x1F93, offset: 0x6378A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x6290, symBinAddr: 0x166B0, symSize: 0x10 } - - { offsetInCU: 0x1FA7, offset: 0x6379E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x62A0, symBinAddr: 0x166C0, symSize: 0x30 } - - { offsetInCU: 0x1FBB, offset: 0x637B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x62D0, symBinAddr: 0x166F0, symSize: 0x10 } - - { offsetInCU: 0x1FCF, offset: 0x637C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x62E0, symBinAddr: 0x16700, symSize: 0x30 } - - { offsetInCU: 0x1FE3, offset: 0x637DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7260, symBinAddr: 0x17680, symSize: 0x30 } - - { offsetInCU: 0x1FF7, offset: 0x637EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x7290, symBinAddr: 0x176B0, symSize: 0x30 } - - { offsetInCU: 0x200B, offset: 0x63802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x72C0, symBinAddr: 0x176E0, symSize: 0x30 } - - { offsetInCU: 0x201F, offset: 0x63816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7B60, symBinAddr: 0x17F80, symSize: 0x30 } - - { offsetInCU: 0x2033, offset: 0x6382A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7DB0, symBinAddr: 0x181D0, symSize: 0x30 } - - { offsetInCU: 0x2047, offset: 0x6383E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x88A0, symBinAddr: 0x18CC0, symSize: 0x30 } - - { offsetInCU: 0x205B, offset: 0x63852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x88D0, symBinAddr: 0x18CF0, symSize: 0x30 } - - { offsetInCU: 0x206F, offset: 0x63866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8BA0, symBinAddr: 0x18FC0, symSize: 0x30 } - - { offsetInCU: 0x2083, offset: 0x6387A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x18FF0, symSize: 0x30 } - - { offsetInCU: 0x2097, offset: 0x6388E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x8C00, symBinAddr: 0x19020, symSize: 0x30 } - - { offsetInCU: 0x20AB, offset: 0x638A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x8C90, symBinAddr: 0x190B0, symSize: 0x30 } - - { offsetInCU: 0x20BF, offset: 0x638B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8CC0, symBinAddr: 0x190E0, symSize: 0x80 } - - { offsetInCU: 0x20D3, offset: 0x638CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8D40, symBinAddr: 0x19160, symSize: 0xD0 } - - { offsetInCU: 0x20E7, offset: 0x638DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8E10, symBinAddr: 0x19230, symSize: 0x10 } - - { offsetInCU: 0x20FB, offset: 0x638F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8E20, symBinAddr: 0x19240, symSize: 0x10 } - - { offsetInCU: 0x210F, offset: 0x63906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8E30, symBinAddr: 0x19250, symSize: 0x80 } - - { offsetInCU: 0x2123, offset: 0x6391A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8EB0, symBinAddr: 0x192D0, symSize: 0xD0 } - - { offsetInCU: 0x2137, offset: 0x6392E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8F80, symBinAddr: 0x193A0, symSize: 0x10 } - - { offsetInCU: 0x214B, offset: 0x63942, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8F90, symBinAddr: 0x193B0, symSize: 0x10 } - - { offsetInCU: 0x215F, offset: 0x63956, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8FA0, symBinAddr: 0x193C0, symSize: 0x80 } - - { offsetInCU: 0x2173, offset: 0x6396A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9020, symBinAddr: 0x19440, symSize: 0xD0 } - - { offsetInCU: 0x2187, offset: 0x6397E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x90F0, symBinAddr: 0x19510, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x63992, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9100, symBinAddr: 0x19520, symSize: 0x10 } - - { offsetInCU: 0x21AF, offset: 0x639A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x9110, symBinAddr: 0x19530, symSize: 0x10 } - - { offsetInCU: 0x21C3, offset: 0x639BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9120, symBinAddr: 0x19540, symSize: 0x10 } - - { offsetInCU: 0x21D7, offset: 0x639CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9130, symBinAddr: 0x19550, symSize: 0x80 } - - { offsetInCU: 0x21EB, offset: 0x639E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x91B0, symBinAddr: 0x195D0, symSize: 0xD0 } - - { offsetInCU: 0x21FF, offset: 0x639F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9280, symBinAddr: 0x196A0, symSize: 0x10 } - - { offsetInCU: 0x2213, offset: 0x63A0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9290, symBinAddr: 0x196B0, symSize: 0x10 } - - { offsetInCU: 0x2227, offset: 0x63A1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x92C0, symBinAddr: 0x196E0, symSize: 0x10 } - - { offsetInCU: 0x223B, offset: 0x63A32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x92D0, symBinAddr: 0x196F0, symSize: 0x10 } - - { offsetInCU: 0x224F, offset: 0x63A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x92E0, symBinAddr: 0x19700, symSize: 0x40 } - - { offsetInCU: 0x2263, offset: 0x63A5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x9320, symBinAddr: 0x19740, symSize: 0x80 } - - { offsetInCU: 0x2277, offset: 0x63A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x93A0, symBinAddr: 0x197C0, symSize: 0xC0 } - - { offsetInCU: 0x228B, offset: 0x63A82, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9460, symBinAddr: 0x19880, symSize: 0x40 } - - { offsetInCU: 0x229F, offset: 0x63A96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x94A0, symBinAddr: 0x198C0, symSize: 0x90 } - - { offsetInCU: 0x22B3, offset: 0x63AAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x9530, symBinAddr: 0x19950, symSize: 0x40 } - - { offsetInCU: 0x22C7, offset: 0x63ABE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x9570, symBinAddr: 0x19990, symSize: 0x50 } - - { offsetInCU: 0x22DB, offset: 0x63AD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x95C0, symBinAddr: 0x199E0, symSize: 0x10 } - - { offsetInCU: 0x22EF, offset: 0x63AE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x95D0, symBinAddr: 0x199F0, symSize: 0x40 } - - { offsetInCU: 0x2303, offset: 0x63AFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x9610, symBinAddr: 0x19A30, symSize: 0x80 } - - { offsetInCU: 0x2317, offset: 0x63B0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x9690, symBinAddr: 0x19AB0, symSize: 0xA0 } - - { offsetInCU: 0x232B, offset: 0x63B22, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9730, symBinAddr: 0x19B50, symSize: 0x30 } - - { offsetInCU: 0x233F, offset: 0x63B36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x9760, symBinAddr: 0x19B80, symSize: 0x80 } - - { offsetInCU: 0x2353, offset: 0x63B4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x97E0, symBinAddr: 0x19C00, symSize: 0x40 } - - { offsetInCU: 0x2367, offset: 0x63B5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9820, symBinAddr: 0x19C40, symSize: 0x50 } - - { offsetInCU: 0x237B, offset: 0x63B72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x9870, symBinAddr: 0x19C90, symSize: 0x10 } - - { offsetInCU: 0x238F, offset: 0x63B86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x9880, symBinAddr: 0x19CA0, symSize: 0x40 } - - { offsetInCU: 0x23A3, offset: 0x63B9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x98C0, symBinAddr: 0x19CE0, symSize: 0x80 } - - { offsetInCU: 0x23B7, offset: 0x63BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9940, symBinAddr: 0x19D60, symSize: 0xB0 } - - { offsetInCU: 0x23CB, offset: 0x63BC2, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x99F0, symBinAddr: 0x19E10, symSize: 0x30 } - - { offsetInCU: 0x23DF, offset: 0x63BD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x9A20, symBinAddr: 0x19E40, symSize: 0x80 } - - { offsetInCU: 0x23F3, offset: 0x63BEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9AA0, symBinAddr: 0x19EC0, symSize: 0x40 } - - { offsetInCU: 0x2407, offset: 0x63BFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x9AE0, symBinAddr: 0x19F00, symSize: 0x50 } - - { offsetInCU: 0x241B, offset: 0x63C12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9B30, symBinAddr: 0x19F50, symSize: 0x10 } - - { offsetInCU: 0x242F, offset: 0x63C26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B40, symBinAddr: 0x19F60, symSize: 0x10 } - - { offsetInCU: 0x2443, offset: 0x63C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9B50, symBinAddr: 0x19F70, symSize: 0x30 } - - { offsetInCU: 0x2457, offset: 0x63C4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B80, symBinAddr: 0x19FA0, symSize: 0x10 } - - { offsetInCU: 0x246B, offset: 0x63C62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9B90, symBinAddr: 0x19FB0, symSize: 0x30 } - - { offsetInCU: 0x247F, offset: 0x63C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9BC0, symBinAddr: 0x19FE0, symSize: 0x10 } - - { offsetInCU: 0x2493, offset: 0x63C8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9BD0, symBinAddr: 0x19FF0, symSize: 0x30 } - - { offsetInCU: 0x24A7, offset: 0x63C9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9C00, symBinAddr: 0x1A020, symSize: 0x10 } - - { offsetInCU: 0x24BB, offset: 0x63CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9C10, symBinAddr: 0x1A030, symSize: 0x30 } - - { offsetInCU: 0x24CF, offset: 0x63CC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9C40, symBinAddr: 0x1A060, symSize: 0x10 } - - { offsetInCU: 0x24E3, offset: 0x63CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9C50, symBinAddr: 0x1A070, symSize: 0x30 } - - { offsetInCU: 0x24F7, offset: 0x63CEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C80, symBinAddr: 0x1A0A0, symSize: 0x10 } - - { offsetInCU: 0x250B, offset: 0x63D02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C90, symBinAddr: 0x1A0B0, symSize: 0x30 } - - { offsetInCU: 0x251F, offset: 0x63D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CC0, symBinAddr: 0x1A0E0, symSize: 0x10 } - - { offsetInCU: 0x2533, offset: 0x63D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9CD0, symBinAddr: 0x1A0F0, symSize: 0x30 } - - { offsetInCU: 0x2547, offset: 0x63D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D00, symBinAddr: 0x1A120, symSize: 0x10 } - - { offsetInCU: 0x255B, offset: 0x63D52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D10, symBinAddr: 0x1A130, symSize: 0x30 } - - { offsetInCU: 0x256F, offset: 0x63D66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D40, symBinAddr: 0x1A160, symSize: 0x10 } - - { offsetInCU: 0x2583, offset: 0x63D7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9D50, symBinAddr: 0x1A170, symSize: 0x30 } - - { offsetInCU: 0x2597, offset: 0x63D8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D80, symBinAddr: 0x1A1A0, symSize: 0x10 } - - { offsetInCU: 0x25AB, offset: 0x63DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x1A1B0, symSize: 0x30 } - - { offsetInCU: 0x25BF, offset: 0x63DB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9DC0, symBinAddr: 0x1A1E0, symSize: 0x10 } - - { offsetInCU: 0x25D3, offset: 0x63DCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x1A1F0, symSize: 0x30 } - - { offsetInCU: 0x25E7, offset: 0x63DDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E00, symBinAddr: 0x1A220, symSize: 0x10 } - - { offsetInCU: 0x25FB, offset: 0x63DF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E10, symBinAddr: 0x1A230, symSize: 0x30 } - - { offsetInCU: 0x260F, offset: 0x63E06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E40, symBinAddr: 0x1A260, symSize: 0x10 } - - { offsetInCU: 0x2623, offset: 0x63E1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9E50, symBinAddr: 0x1A270, symSize: 0x30 } - - { offsetInCU: 0x2637, offset: 0x63E2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E80, symBinAddr: 0x1A2A0, symSize: 0x10 } - - { offsetInCU: 0x264B, offset: 0x63E42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E90, symBinAddr: 0x1A2B0, symSize: 0x30 } - - { offsetInCU: 0x265F, offset: 0x63E56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EC0, symBinAddr: 0x1A2E0, symSize: 0x10 } - - { offsetInCU: 0x2673, offset: 0x63E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9ED0, symBinAddr: 0x1A2F0, symSize: 0x30 } - - { offsetInCU: 0x2687, offset: 0x63E7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9F00, symBinAddr: 0x1A320, symSize: 0x30 } - - { offsetInCU: 0x269B, offset: 0x63E92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9F30, symBinAddr: 0x1A350, symSize: 0x30 } - - { offsetInCU: 0x26AF, offset: 0x63EA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9F60, symBinAddr: 0x1A380, symSize: 0x30 } - - { offsetInCU: 0x26C3, offset: 0x63EBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9F90, symBinAddr: 0x1A3B0, symSize: 0x80 } - - { offsetInCU: 0x26D7, offset: 0x63ECE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA010, symBinAddr: 0x1A430, symSize: 0xD0 } - - { offsetInCU: 0x26EB, offset: 0x63EE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA0E0, symBinAddr: 0x1A500, symSize: 0x10 } - - { offsetInCU: 0x26FF, offset: 0x63EF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA0F0, symBinAddr: 0x1A510, symSize: 0x10 } - - { offsetInCU: 0x2713, offset: 0x63F0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA270, symBinAddr: 0x1A690, symSize: 0x10 } - - { offsetInCU: 0x2727, offset: 0x63F1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA280, symBinAddr: 0x1A6A0, symSize: 0x10 } - - { offsetInCU: 0x273B, offset: 0x63F32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0xA290, symBinAddr: 0x1A6B0, symSize: 0x80 } - - { offsetInCU: 0x274F, offset: 0x63F46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA310, symBinAddr: 0x1A730, symSize: 0xD0 } - - { offsetInCU: 0x2763, offset: 0x63F5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA3E0, symBinAddr: 0x1A800, symSize: 0x10 } - - { offsetInCU: 0x2777, offset: 0x63F6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA3F0, symBinAddr: 0x1A810, symSize: 0x10 } - - { offsetInCU: 0x278B, offset: 0x63F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA400, symBinAddr: 0x1A820, symSize: 0x10 } - - { offsetInCU: 0x279F, offset: 0x63F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA410, symBinAddr: 0x1A830, symSize: 0x30 } - - { offsetInCU: 0x27B3, offset: 0x63FAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA440, symBinAddr: 0x1A860, symSize: 0x10 } - - { offsetInCU: 0x27C7, offset: 0x63FBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA450, symBinAddr: 0x1A870, symSize: 0x30 } - - { offsetInCU: 0x27DB, offset: 0x63FD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA480, symBinAddr: 0x1A8A0, symSize: 0x10 } - - { offsetInCU: 0x27EF, offset: 0x63FE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA490, symBinAddr: 0x1A8B0, symSize: 0x30 } - - { offsetInCU: 0x2803, offset: 0x63FFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA4C0, symBinAddr: 0x1A8E0, symSize: 0x10 } - - { offsetInCU: 0x2817, offset: 0x6400E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA4D0, symBinAddr: 0x1A8F0, symSize: 0x30 } - - { offsetInCU: 0x282B, offset: 0x64022, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA500, symBinAddr: 0x1A920, symSize: 0x10 } - - { offsetInCU: 0x283F, offset: 0x64036, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA510, symBinAddr: 0x1A930, symSize: 0x30 } - - { offsetInCU: 0x2853, offset: 0x6404A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA540, symBinAddr: 0x1A960, symSize: 0x10 } - - { offsetInCU: 0x2867, offset: 0x6405E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA550, symBinAddr: 0x1A970, symSize: 0x30 } - - { offsetInCU: 0x287B, offset: 0x64072, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA580, symBinAddr: 0x1A9A0, symSize: 0x10 } - - { offsetInCU: 0x288F, offset: 0x64086, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA590, symBinAddr: 0x1A9B0, symSize: 0x30 } - - { offsetInCU: 0x28A3, offset: 0x6409A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA5C0, symBinAddr: 0x1A9E0, symSize: 0x10 } - - { offsetInCU: 0x28B7, offset: 0x640AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA5D0, symBinAddr: 0x1A9F0, symSize: 0x30 } - - { offsetInCU: 0x28CB, offset: 0x640C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA600, symBinAddr: 0x1AA20, symSize: 0x10 } - - { offsetInCU: 0x28DF, offset: 0x640D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA610, symBinAddr: 0x1AA30, symSize: 0x30 } - - { offsetInCU: 0x292F, offset: 0x64126, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x140, symBinAddr: 0x105B0, symSize: 0x20 } - - { offsetInCU: 0x294B, offset: 0x64142, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x160, symBinAddr: 0x105D0, symSize: 0x20 } - - { offsetInCU: 0x2994, offset: 0x6418B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1680, symBinAddr: 0x11AF0, symSize: 0x30 } - - { offsetInCU: 0x2A37, offset: 0x6422E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x11B70, symSize: 0x20 } - - { offsetInCU: 0x2A53, offset: 0x6424A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x11B90, symSize: 0x20 } - - { offsetInCU: 0x2A75, offset: 0x6426C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x11CA0, symSize: 0x20 } - - { offsetInCU: 0x2A91, offset: 0x64288, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x11CC0, symSize: 0x20 } - - { offsetInCU: 0x2AB3, offset: 0x642AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1950, symBinAddr: 0x11DC0, symSize: 0x20 } - - { offsetInCU: 0x2ACF, offset: 0x642C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1970, symBinAddr: 0x11DE0, symSize: 0x20 } - - { offsetInCU: 0x2AF1, offset: 0x642E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x11ED0, symSize: 0x20 } - - { offsetInCU: 0x2B0D, offset: 0x64304, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x11EF0, symSize: 0x20 } - - { offsetInCU: 0x2B2F, offset: 0x64326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x12020, symSize: 0x20 } - - { offsetInCU: 0x2B4B, offset: 0x64342, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1BD0, symBinAddr: 0x12040, symSize: 0x20 } - - { offsetInCU: 0x2B94, offset: 0x6438B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D30, symBinAddr: 0x121A0, symSize: 0x40 } - - { offsetInCU: 0x2C37, offset: 0x6442E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DC0, symBinAddr: 0x12230, symSize: 0x20 } - - { offsetInCU: 0x2C53, offset: 0x6444A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DE0, symBinAddr: 0x12250, symSize: 0x20 } - - { offsetInCU: 0x2C75, offset: 0x6446C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EA0, symBinAddr: 0x12310, symSize: 0x20 } - - { offsetInCU: 0x2C91, offset: 0x64488, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1EC0, symBinAddr: 0x12330, symSize: 0x20 } - - { offsetInCU: 0x2CB3, offset: 0x644AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x12440, symSize: 0x20 } - - { offsetInCU: 0x2CCF, offset: 0x644C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x12460, symSize: 0x20 } - - { offsetInCU: 0x2CF1, offset: 0x644E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2180, symBinAddr: 0x125F0, symSize: 0x20 } - - { offsetInCU: 0x2D0D, offset: 0x64504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x21A0, symBinAddr: 0x12610, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x646AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AD80, symSize: 0xA0 } - - { offsetInCU: 0xA5, offset: 0x6472D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AD80, symSize: 0xA0 } - - { offsetInCU: 0xFE, offset: 0x64786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0xA0, symBinAddr: 0x1AE20, symSize: 0x40 } - - { offsetInCU: 0x11C, offset: 0x647A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xE0, symBinAddr: 0x1AE60, symSize: 0x50 } - - { offsetInCU: 0x156, offset: 0x647DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x130, symBinAddr: 0x1AEB0, symSize: 0x10 } - - { offsetInCU: 0x174, offset: 0x647FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x1AEC0, symSize: 0x10 } - - { offsetInCU: 0x19F, offset: 0x64827, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x150, symBinAddr: 0x1AED0, symSize: 0x20 } - - { offsetInCU: 0x1BD, offset: 0x64845, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x170, symBinAddr: 0x1AEF0, symSize: 0x20 } - - { offsetInCU: 0x1F7, offset: 0x6487F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x190, symBinAddr: 0x1AF10, symSize: 0x20 } - - { offsetInCU: 0x225, offset: 0x648AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x1B0, symBinAddr: 0x1AF30, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x648D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x1C0, symBinAddr: 0x1AF40, symSize: 0x30 } - - { offsetInCU: 0x26E, offset: 0x648F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1F0, symBinAddr: 0x1AF70, symSize: 0x30 } - - { offsetInCU: 0x2AC, offset: 0x64934, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x220, symBinAddr: 0x1AFA0, symSize: 0x20 } - - { offsetInCU: 0x2DA, offset: 0x64962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x240, symBinAddr: 0x1AFC0, symSize: 0x10 } - - { offsetInCU: 0x305, offset: 0x6498D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x250, symBinAddr: 0x1AFD0, symSize: 0x10 } - - { offsetInCU: 0x323, offset: 0x649AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x260, symBinAddr: 0x1AFE0, symSize: 0x10 } - - { offsetInCU: 0x361, offset: 0x649E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x270, symBinAddr: 0x1AFF0, symSize: 0x20 } - - { offsetInCU: 0x38F, offset: 0x64A17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1B010, symSize: 0x10 } - - { offsetInCU: 0x3BA, offset: 0x64A42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x2A0, symBinAddr: 0x1B020, symSize: 0x10 } - - { offsetInCU: 0x3D8, offset: 0x64A60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x2B0, symBinAddr: 0x1B030, symSize: 0x10 } - - { offsetInCU: 0x416, offset: 0x64A9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x2C0, symBinAddr: 0x1B040, symSize: 0x20 } - - { offsetInCU: 0x444, offset: 0x64ACC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2E0, symBinAddr: 0x1B060, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x64AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2F0, symBinAddr: 0x1B070, symSize: 0x30 } - - { offsetInCU: 0x48D, offset: 0x64B15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x320, symBinAddr: 0x1B0A0, symSize: 0x30 } - - { offsetInCU: 0x4CB, offset: 0x64B53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x350, symBinAddr: 0x1B0D0, symSize: 0x20 } - - { offsetInCU: 0x4F9, offset: 0x64B81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x370, symBinAddr: 0x1B0F0, symSize: 0x10 } - - { offsetInCU: 0x524, offset: 0x64BAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x380, symBinAddr: 0x1B100, symSize: 0x30 } - - { offsetInCU: 0x542, offset: 0x64BCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x3B0, symBinAddr: 0x1B130, symSize: 0x30 } - - { offsetInCU: 0x580, offset: 0x64C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3E0, symBinAddr: 0x1B160, symSize: 0x20 } - - { offsetInCU: 0x5AE, offset: 0x64C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x400, symBinAddr: 0x1B180, symSize: 0x10 } - - { offsetInCU: 0x5D9, offset: 0x64C61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x410, symBinAddr: 0x1B190, symSize: 0x10 } - - { offsetInCU: 0x5F7, offset: 0x64C7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x420, symBinAddr: 0x1B1A0, symSize: 0x10 } - - { offsetInCU: 0x635, offset: 0x64CBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x430, symBinAddr: 0x1B1B0, symSize: 0x20 } - - { offsetInCU: 0x663, offset: 0x64CEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x450, symBinAddr: 0x1B1D0, symSize: 0x10 } - - { offsetInCU: 0x68E, offset: 0x64D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x460, symBinAddr: 0x1B1E0, symSize: 0x10 } - - { offsetInCU: 0x6AC, offset: 0x64D34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x470, symBinAddr: 0x1B1F0, symSize: 0x10 } - - { offsetInCU: 0x6EA, offset: 0x64D72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x480, symBinAddr: 0x1B200, symSize: 0x20 } - - { offsetInCU: 0x718, offset: 0x64DA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x4A0, symBinAddr: 0x1B220, symSize: 0x10 } - - { offsetInCU: 0x744, offset: 0x64DCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x4B0, symBinAddr: 0x1B230, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x64DE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x4E0, symBinAddr: 0x1B260, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x64DF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x520, symBinAddr: 0x1B2A0, symSize: 0xD0 } - - { offsetInCU: 0x780, offset: 0x64E08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x5F0, symBinAddr: 0x1B370, symSize: 0x100 } - - { offsetInCU: 0x794, offset: 0x64E1C, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6F0, symBinAddr: 0x1B470, symSize: 0x50 } - - { offsetInCU: 0x7A8, offset: 0x64E30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x740, symBinAddr: 0x1B4C0, symSize: 0xD0 } - - { offsetInCU: 0x7BC, offset: 0x64E44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x810, symBinAddr: 0x1B590, symSize: 0x40 } - - { offsetInCU: 0x7D0, offset: 0x64E58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x850, symBinAddr: 0x1B5D0, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64E6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x8B0, symBinAddr: 0x1B630, symSize: 0xA } - - { offsetInCU: 0x52, offset: 0x6504E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1B640, symSize: 0x350 } - - { offsetInCU: 0x7D, offset: 0x65079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x700, symBinAddr: 0x1BD40, symSize: 0x30 } - - { offsetInCU: 0x99, offset: 0x65095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x990, symBinAddr: 0x1BFD0, symSize: 0x50 } - - { offsetInCU: 0xD1, offset: 0x650CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1B990, symSize: 0x310 } - - { offsetInCU: 0xFC, offset: 0x650F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x960, symBinAddr: 0x1BFA0, symSize: 0x30 } - - { offsetInCU: 0x118, offset: 0x65114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x9E0, symBinAddr: 0x1C020, symSize: 0x50 } - - { offsetInCU: 0x144, offset: 0x65140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1C070, symSize: 0x120 } - - { offsetInCU: 0x174, offset: 0x65170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1C190, symSize: 0x80 } - - { offsetInCU: 0x188, offset: 0x65184, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1C210, symSize: 0xD0 } - - { offsetInCU: 0x19C, offset: 0x65198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1C2E0, symSize: 0x10 } - - { offsetInCU: 0x1B0, offset: 0x651AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1C2F0, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x651C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1C300, symSize: 0x80 } - - { offsetInCU: 0x1D8, offset: 0x651D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1C380, symSize: 0xD0 } - - { offsetInCU: 0x1EC, offset: 0x651E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1C450, symSize: 0x10 } - - { offsetInCU: 0x200, offset: 0x651FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1C460, symSize: 0x10 } - - { offsetInCU: 0x214, offset: 0x65210, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1C470, symSize: 0x10 } - - { offsetInCU: 0x228, offset: 0x65224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1C480, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x65238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1C490, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x6524C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1C4A0, symSize: 0x30 } - - { offsetInCU: 0x264, offset: 0x65260, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1C4D0, symSize: 0x10 } - - { offsetInCU: 0x278, offset: 0x65274, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1C4E0, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x653D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1C530, symSize: 0x2B0 } - - { offsetInCU: 0x7C, offset: 0x653FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1C7E0, symSize: 0x20 } - - { offsetInCU: 0xA9, offset: 0x6542C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC9printLogs33_05B95674BA567498C742095BB49A0405LL3msgySS_tFTf4nd_n', symObjAddr: 0x6D0, symBinAddr: 0x1CC00, symSize: 0xC0 } - - { offsetInCU: 0x1DB, offset: 0x6555E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1C800, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x655B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1C820, symSize: 0x90 } - - { offsetInCU: 0x284, offset: 0x65607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1C8B0, symSize: 0x10 } - - { offsetInCU: 0x2AD, offset: 0x65630, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1C8C0, symSize: 0x10 } - - { offsetInCU: 0x2D6, offset: 0x65659, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1C8D0, symSize: 0x10 } - - { offsetInCU: 0x2FF, offset: 0x65682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1C970, symSize: 0x10 } - - { offsetInCU: 0x351, offset: 0x656D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1C980, symSize: 0x80 } - - { offsetInCU: 0x3A9, offset: 0x6572C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1CA00, symSize: 0x60 } - - { offsetInCU: 0x3EA, offset: 0x6576D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1CA60, symSize: 0x90 } - - { offsetInCU: 0x446, offset: 0x657C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1CAF0, symSize: 0x80 } - - { offsetInCU: 0x494, offset: 0x65817, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1CB70, symSize: 0x70 } - - { offsetInCU: 0x4C6, offset: 0x65849, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1CBE0, symSize: 0x10 } - - { offsetInCU: 0x4E2, offset: 0x65865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6C0, symBinAddr: 0x1CBF0, symSize: 0x10 } - - { offsetInCU: 0x567, offset: 0x658EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x790, symBinAddr: 0x1CCC0, symSize: 0x910 } - - { offsetInCU: 0x678, offset: 0x659FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x10A0, symBinAddr: 0x1D5D0, symSize: 0x70 } - - { offsetInCU: 0x6CD, offset: 0x65A50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1110, symBinAddr: 0x1D640, symSize: 0x2A0 } - - { offsetInCU: 0x7E5, offset: 0x65B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x13B0, symBinAddr: 0x1D8E0, symSize: 0x60 } - - { offsetInCU: 0x824, offset: 0x65BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0x1410, symBinAddr: 0x1D940, symSize: 0x60 } - - { offsetInCU: 0x863, offset: 0x65BE6, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1470, symBinAddr: 0x1D9A0, symSize: 0x20 } - - { offsetInCU: 0x877, offset: 0x65BFA, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1490, symBinAddr: 0x1D9C0, symSize: 0x20 } - - { offsetInCU: 0x88B, offset: 0x65C0E, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1520, symBinAddr: 0x1D9E0, symSize: 0x40 } - - { offsetInCU: 0x89F, offset: 0x65C22, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1560, symBinAddr: 0x1DA20, symSize: 0x20 } - - { offsetInCU: 0x8B3, offset: 0x65C36, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1580, symBinAddr: 0x1DA40, symSize: 0x40 } - - { offsetInCU: 0x8C7, offset: 0x65C4A, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x15C0, symBinAddr: 0x1DA80, symSize: 0x30 } - - { offsetInCU: 0x8DB, offset: 0x65C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x15F0, symBinAddr: 0x1DAB0, symSize: 0x260 } - - { offsetInCU: 0x8EF, offset: 0x65C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1850, symBinAddr: 0x1DD10, symSize: 0x30 } - - { offsetInCU: 0x903, offset: 0x65C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x1880, symBinAddr: 0x1DD40, symSize: 0x260 } - - { offsetInCU: 0x917, offset: 0x65C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1AE0, symBinAddr: 0x1DFA0, symSize: 0x25 } - - { offsetInCU: 0x4F, offset: 0x65F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2A10, symBinAddr: 0x8FAB0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x65F5B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2A18, symBinAddr: 0x8FAB8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65F69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1E010, symSize: 0x30 } - - { offsetInCU: 0xB3, offset: 0x65FA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1E040, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x65FDB, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1E080, symSize: 0x30 } - - { offsetInCU: 0x114, offset: 0x66006, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1E0B0, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x66056, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1E0F0, symSize: 0x30 } - - { offsetInCU: 0x18F, offset: 0x66081, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x180, symBinAddr: 0x1E150, symSize: 0x10 } - - { offsetInCU: 0x1B8, offset: 0x660AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0x1E160, symSize: 0x30 } - - { offsetInCU: 0x1D3, offset: 0x660C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x1C0, symBinAddr: 0x1E190, symSize: 0x10 } - - { offsetInCU: 0x202, offset: 0x660F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x1D0, symBinAddr: 0x1E1A0, symSize: 0x20 } - - { offsetInCU: 0x293, offset: 0x66185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x240, symBinAddr: 0x1E210, symSize: 0x10 } - - { offsetInCU: 0x2F3, offset: 0x661E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2A0, symBinAddr: 0x1E270, symSize: 0x20 } - - { offsetInCU: 0x36D, offset: 0x6625F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0x1E2E0, symSize: 0x10 } - - { offsetInCU: 0x3F7, offset: 0x662E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x450, symBinAddr: 0x1E420, symSize: 0x40 } - - { offsetInCU: 0x414, offset: 0x66306, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x4B0, symBinAddr: 0x1E480, symSize: 0x50 } - - { offsetInCU: 0x43B, offset: 0x6632D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x520, symBinAddr: 0x1E4F0, symSize: 0x30 } - - { offsetInCU: 0x468, offset: 0x6635A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x550, symBinAddr: 0x1E520, symSize: 0x10 } - - { offsetInCU: 0x4DB, offset: 0x663CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x690, symBinAddr: 0x1E660, symSize: 0x40 } - - { offsetInCU: 0x4F8, offset: 0x663EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x6D0, symBinAddr: 0x1E6A0, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x66411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x720, symBinAddr: 0x1E6F0, symSize: 0x30 } - - { offsetInCU: 0x54C, offset: 0x6643E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x750, symBinAddr: 0x1E720, symSize: 0x10 } - - { offsetInCU: 0x577, offset: 0x66469, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x760, symBinAddr: 0x1E730, symSize: 0x30 } - - { offsetInCU: 0x594, offset: 0x66486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x790, symBinAddr: 0x1E760, symSize: 0x30 } - - { offsetInCU: 0x5BB, offset: 0x664AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x7C0, symBinAddr: 0x1E790, symSize: 0x30 } - - { offsetInCU: 0x612, offset: 0x66504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x840, symBinAddr: 0x1E810, symSize: 0x30 } - - { offsetInCU: 0x62F, offset: 0x66521, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x870, symBinAddr: 0x1E840, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x66548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x8B0, symBinAddr: 0x1E880, symSize: 0x30 } - - { offsetInCU: 0x683, offset: 0x66575, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0x8E0, symBinAddr: 0x1E8B0, symSize: 0x70 } - - { offsetInCU: 0x72E, offset: 0x66620, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0x950, symBinAddr: 0x1E920, symSize: 0xA0 } - - { offsetInCU: 0x7AB, offset: 0x6669D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9F0, symBinAddr: 0x1E9C0, symSize: 0xA0 } - - { offsetInCU: 0x80F, offset: 0x66701, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xC80, symBinAddr: 0x1EC50, symSize: 0x60 } - - { offsetInCU: 0x839, offset: 0x6672B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xCE0, symBinAddr: 0x1ECB0, symSize: 0x30 } - - { offsetInCU: 0x85E, offset: 0x66750, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xD10, symBinAddr: 0x1ECE0, symSize: 0x180 } - - { offsetInCU: 0x913, offset: 0x66805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1EE60, symSize: 0x10 } - - { offsetInCU: 0x960, offset: 0x66852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0xEA0, symBinAddr: 0x1EE70, symSize: 0x70 } - - { offsetInCU: 0x9FC, offset: 0x668EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0xF40, symBinAddr: 0x1EF10, symSize: 0x80 } - - { offsetInCU: 0xB12, offset: 0x66A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1900, symBinAddr: 0x1F8D0, symSize: 0x220 } - - { offsetInCU: 0xBA3, offset: 0x66A95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B70, symBinAddr: 0x1FB40, symSize: 0x170 } - - { offsetInCU: 0xCA8, offset: 0x66B9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x320, symBinAddr: 0x1E2F0, symSize: 0x80 } - - { offsetInCU: 0xCE0, offset: 0x66BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x3A0, symBinAddr: 0x1E370, symSize: 0xB0 } - - { offsetInCU: 0xD20, offset: 0x66C12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x490, symBinAddr: 0x1E460, symSize: 0x20 } - - { offsetInCU: 0xD34, offset: 0x66C26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x500, symBinAddr: 0x1E4D0, symSize: 0x20 } - - { offsetInCU: 0xD48, offset: 0x66C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x560, symBinAddr: 0x1E530, symSize: 0x80 } - - { offsetInCU: 0xD80, offset: 0x66C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x5E0, symBinAddr: 0x1E5B0, symSize: 0xB0 } - - { offsetInCU: 0xDC0, offset: 0x66CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x7F0, symBinAddr: 0x1E7C0, symSize: 0x50 } - - { offsetInCU: 0xE24, offset: 0x66D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xA90, symBinAddr: 0x1EA60, symSize: 0x1F0 } - - { offsetInCU: 0xE98, offset: 0x66D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1790, symBinAddr: 0x1F760, symSize: 0x120 } - - { offsetInCU: 0xF78, offset: 0x66E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0xF10, symBinAddr: 0x1EEE0, symSize: 0x30 } - - { offsetInCU: 0x1067, offset: 0x66F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x18E0, symBinAddr: 0x1F8B0, symSize: 0x20 } - - { offsetInCU: 0x10B7, offset: 0x66FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1EF90, symSize: 0x220 } - - { offsetInCU: 0x128D, offset: 0x6717F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x11E0, symBinAddr: 0x1F1B0, symSize: 0x10 } - - { offsetInCU: 0x12E4, offset: 0x671D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11F0, symBinAddr: 0x1F1C0, symSize: 0x10 } - - { offsetInCU: 0x1332, offset: 0x67224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1200, symBinAddr: 0x1F1D0, symSize: 0x10 } - - { offsetInCU: 0x134A, offset: 0x6723C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1210, symBinAddr: 0x1F1E0, symSize: 0xB0 } - - { offsetInCU: 0x13F0, offset: 0x672E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1300, symBinAddr: 0x1F2D0, symSize: 0x10 } - - { offsetInCU: 0x1408, offset: 0x672FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26E0, symBinAddr: 0x20690, symSize: 0x70 } - - { offsetInCU: 0x14E5, offset: 0x673D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x12C0, symBinAddr: 0x1F290, symSize: 0x40 } - - { offsetInCU: 0x1520, offset: 0x67412, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1330, symBinAddr: 0x1F300, symSize: 0x90 } - - { offsetInCU: 0x1617, offset: 0x67509, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x1480, symBinAddr: 0x1F450, symSize: 0x1D0 } - - { offsetInCU: 0x1CC0, offset: 0x67BB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x1650, symBinAddr: 0x1F620, symSize: 0x130 } - - { offsetInCU: 0x1DBD, offset: 0x67CAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x1F750, symSize: 0x10 } - - { offsetInCU: 0x1DD1, offset: 0x67CC3, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x18B0, symBinAddr: 0x1F880, symSize: 0x30 } - - { offsetInCU: 0x1DE9, offset: 0x67CDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1B20, symBinAddr: 0x1FAF0, symSize: 0x30 } - - { offsetInCU: 0x1DFD, offset: 0x67CEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1B50, symBinAddr: 0x1FB20, symSize: 0x20 } - - { offsetInCU: 0x1E11, offset: 0x67D03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1CE0, symBinAddr: 0x1FCB0, symSize: 0x20 } - - { offsetInCU: 0x1E25, offset: 0x67D17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1D00, symBinAddr: 0x1FCD0, symSize: 0x10 } - - { offsetInCU: 0x1E39, offset: 0x67D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1D10, symBinAddr: 0x1FCE0, symSize: 0x30 } - - { offsetInCU: 0x1E4D, offset: 0x67D3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D40, symBinAddr: 0x1FD10, symSize: 0x10 } - - { offsetInCU: 0x1E61, offset: 0x67D53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D50, symBinAddr: 0x1FD20, symSize: 0x30 } - - { offsetInCU: 0x1E75, offset: 0x67D67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwCP', symObjAddr: 0x1E90, symBinAddr: 0x1FE60, symSize: 0x60 } - - { offsetInCU: 0x1E89, offset: 0x67D7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1EF0, symBinAddr: 0x1FEC0, symSize: 0x20 } - - { offsetInCU: 0x1E9D, offset: 0x67D8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1F10, symBinAddr: 0x1FEE0, symSize: 0x20 } - - { offsetInCU: 0x1EB1, offset: 0x67DA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1F30, symBinAddr: 0x1FF00, symSize: 0x20 } - - { offsetInCU: 0x1EC5, offset: 0x67DB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwcp', symObjAddr: 0x1F50, symBinAddr: 0x1FF20, symSize: 0x60 } - - { offsetInCU: 0x1ED9, offset: 0x67DCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x1FB0, symBinAddr: 0x1FF80, symSize: 0x70 } - - { offsetInCU: 0x1EED, offset: 0x67DDF, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2020, symBinAddr: 0x1FFF0, symSize: 0x20 } - - { offsetInCU: 0x1F01, offset: 0x67DF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x2040, symBinAddr: 0x20010, symSize: 0x40 } - - { offsetInCU: 0x1F15, offset: 0x67E07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x2080, symBinAddr: 0x20050, symSize: 0x50 } - - { offsetInCU: 0x1F29, offset: 0x67E1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x20D0, symBinAddr: 0x200A0, symSize: 0x50 } - - { offsetInCU: 0x1F3D, offset: 0x67E2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x2120, symBinAddr: 0x200F0, symSize: 0x10 } - - { offsetInCU: 0x1F51, offset: 0x67E43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2130, symBinAddr: 0x20100, symSize: 0x10 } - - { offsetInCU: 0x1F65, offset: 0x67E57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2140, symBinAddr: 0x20110, symSize: 0x10 } - - { offsetInCU: 0x1F79, offset: 0x67E6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x2150, symBinAddr: 0x20120, symSize: 0x10 } - - { offsetInCU: 0x1F8D, offset: 0x67E7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2340, symBinAddr: 0x202F0, symSize: 0x80 } - - { offsetInCU: 0x1FA1, offset: 0x67E93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23C0, symBinAddr: 0x20370, symSize: 0xD0 } - - { offsetInCU: 0x1FB5, offset: 0x67EA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2490, symBinAddr: 0x20440, symSize: 0x10 } - - { offsetInCU: 0x1FC9, offset: 0x67EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x24A0, symBinAddr: 0x20450, symSize: 0x10 } - - { offsetInCU: 0x1FDD, offset: 0x67ECF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x24B0, symBinAddr: 0x20460, symSize: 0x80 } - - { offsetInCU: 0x1FF1, offset: 0x67EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2530, symBinAddr: 0x204E0, symSize: 0xD0 } - - { offsetInCU: 0x2005, offset: 0x67EF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x2600, symBinAddr: 0x205B0, symSize: 0x10 } - - { offsetInCU: 0x2019, offset: 0x67F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x2610, symBinAddr: 0x205C0, symSize: 0x10 } - - { offsetInCU: 0x202D, offset: 0x67F1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2620, symBinAddr: 0x205D0, symSize: 0x10 } - - { offsetInCU: 0x2041, offset: 0x67F33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2630, symBinAddr: 0x205E0, symSize: 0x10 } - - { offsetInCU: 0x2060, offset: 0x67F52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2670, symBinAddr: 0x20620, symSize: 0x20 } - - { offsetInCU: 0x2089, offset: 0x67F7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x2770, symBinAddr: 0x20720, symSize: 0x10 } - - { offsetInCU: 0x209D, offset: 0x67F8F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2780, symBinAddr: 0x20730, symSize: 0x20 } - - { offsetInCU: 0x20B1, offset: 0x67FA3, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x27A0, symBinAddr: 0x20750, symSize: 0x10 } - - { offsetInCU: 0x20C5, offset: 0x67FB7, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2830, symBinAddr: 0x20760, symSize: 0x30 } - - { offsetInCU: 0x2147, offset: 0x68039, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1DFD0, symSize: 0x10 } - - { offsetInCU: 0x2163, offset: 0x68055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1DFE0, symSize: 0x10 } - - { offsetInCU: 0x217F, offset: 0x68071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1DFF0, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x6808D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1E000, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x6852B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x20920, symSize: 0x30 } - - { offsetInCU: 0x57, offset: 0x6853F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x20950, symSize: 0x80 } - - { offsetInCU: 0x6B, offset: 0x68553, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x209D0, symSize: 0x130 } - - { offsetInCU: 0x86, offset: 0x6856E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x20B00, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x68597, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x20B30, symSize: 0x30 } - - { offsetInCU: 0xC3, offset: 0x685AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x20B60, symSize: 0xC0 } - - { offsetInCU: 0xD7, offset: 0x685BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x20C20, symSize: 0x50 } - - { offsetInCU: 0xEB, offset: 0x685D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x20C70, symSize: 0x50 } - - { offsetInCU: 0xFF, offset: 0x685E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x20CC0, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x685FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x20CD0, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x6860F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x20D00, symSize: 0x30 } - - { offsetInCU: 0x13B, offset: 0x68623, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x20D30, symSize: 0x60 } - - { offsetInCU: 0x14F, offset: 0x68637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x20D90, symSize: 0x80 } - - { offsetInCU: 0x163, offset: 0x6864B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x20E10, symSize: 0x60 } - - { offsetInCU: 0x177, offset: 0x6865F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x20E70, symSize: 0x50 } - - { offsetInCU: 0x18B, offset: 0x68673, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x20EC0, symSize: 0x50 } - - { offsetInCU: 0x19F, offset: 0x68687, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x20F10, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x686A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x20F20, symSize: 0x100 } - - { offsetInCU: 0x20B, offset: 0x686F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x21380, symSize: 0x10 } - - { offsetInCU: 0x25F, offset: 0x68747, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA70, symBinAddr: 0x21390, symSize: 0x30 } - - { offsetInCU: 0x343, offset: 0x6882B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA0, symBinAddr: 0x213C0, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x688AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF0, symBinAddr: 0x21410, symSize: 0x10 } - - { offsetInCU: 0x404, offset: 0x688EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB00, symBinAddr: 0x21420, symSize: 0x20 } - - { offsetInCU: 0x435, offset: 0x6891D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB20, symBinAddr: 0x21440, symSize: 0x10 } - - { offsetInCU: 0x451, offset: 0x68939, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB30, symBinAddr: 0x21450, symSize: 0x10 } - - { offsetInCU: 0x46D, offset: 0x68955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF00, symBinAddr: 0x21820, symSize: 0x60 } - - { offsetInCU: 0x4B1, offset: 0x68999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF60, symBinAddr: 0x21880, symSize: 0x20 } - - { offsetInCU: 0x4E5, offset: 0x689CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB80, symBinAddr: 0x214A0, symSize: 0x40 } - - { offsetInCU: 0x51C, offset: 0x68A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBC0, symBinAddr: 0x214E0, symSize: 0x40 } - - { offsetInCU: 0x53F, offset: 0x68A27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF80, symBinAddr: 0x218A0, symSize: 0x140 } - - { offsetInCU: 0x58F, offset: 0x68A77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x700, symBinAddr: 0x21020, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x68AC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC00, symBinAddr: 0x21520, symSize: 0x10 } - - { offsetInCU: 0x63A, offset: 0x68B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC20, symBinAddr: 0x21540, symSize: 0x20 } - - { offsetInCU: 0x6B4, offset: 0x68B9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC50, symBinAddr: 0x21570, symSize: 0x10 } - - { offsetInCU: 0x6DF, offset: 0x68BC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC60, symBinAddr: 0x21580, symSize: 0x20 } - - { offsetInCU: 0x710, offset: 0x68BF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC80, symBinAddr: 0x215A0, symSize: 0x10 } - - { offsetInCU: 0x72C, offset: 0x68C14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xC90, symBinAddr: 0x215B0, symSize: 0x10 } - - { offsetInCU: 0x748, offset: 0x68C30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x11F0, symBinAddr: 0x21A70, symSize: 0x110 } - - { offsetInCU: 0x78E, offset: 0x68C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x720, symBinAddr: 0x21040, symSize: 0x1B0 } - - { offsetInCU: 0x7E3, offset: 0x68CCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xCE0, symBinAddr: 0x21600, symSize: 0x40 } - - { offsetInCU: 0x81A, offset: 0x68D02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD20, symBinAddr: 0x21640, symSize: 0x40 } - - { offsetInCU: 0x83D, offset: 0x68D25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1300, symBinAddr: 0x21B80, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x68D75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x8D0, symBinAddr: 0x211F0, symSize: 0x20 } - - { offsetInCU: 0x8B6, offset: 0x68D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE00, symBinAddr: 0x21720, symSize: 0x10 } - - { offsetInCU: 0x8E1, offset: 0x68DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE10, symBinAddr: 0x21730, symSize: 0x20 } - - { offsetInCU: 0x912, offset: 0x68DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE30, symBinAddr: 0x21750, symSize: 0x10 } - - { offsetInCU: 0x92E, offset: 0x68E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CC0, symBinAddr: 0x224A0, symSize: 0x120 } - - { offsetInCU: 0x974, offset: 0x68E5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8F0, symBinAddr: 0x21210, symSize: 0x170 } - - { offsetInCU: 0x9C9, offset: 0x68EB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xE80, symBinAddr: 0x217A0, symSize: 0x40 } - - { offsetInCU: 0xA00, offset: 0x68EE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEC0, symBinAddr: 0x217E0, symSize: 0x40 } - - { offsetInCU: 0xA23, offset: 0x68F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1DE0, symBinAddr: 0x225C0, symSize: 0x2F0 } - - { offsetInCU: 0xA76, offset: 0x68F5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1130, symBinAddr: 0x219E0, symSize: 0x30 } - - { offsetInCU: 0xA8A, offset: 0x68F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x1190, symBinAddr: 0x21A10, symSize: 0x30 } - - { offsetInCU: 0xA9E, offset: 0x68F86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x11C0, symBinAddr: 0x21A40, symSize: 0x30 } - - { offsetInCU: 0xAB2, offset: 0x68F9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1550, symBinAddr: 0x21DD0, symSize: 0x30 } - - { offsetInCU: 0xAC6, offset: 0x68FAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x15C0, symBinAddr: 0x21E00, symSize: 0x30 } - - { offsetInCU: 0xADA, offset: 0x68FC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x1680, symBinAddr: 0x21EC0, symSize: 0x30 } - - { offsetInCU: 0xAEE, offset: 0x68FD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x16F0, symBinAddr: 0x21F10, symSize: 0x10 } - - { offsetInCU: 0xB02, offset: 0x68FEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1700, symBinAddr: 0x21F20, symSize: 0x10 } - - { offsetInCU: 0xB16, offset: 0x68FFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1710, symBinAddr: 0x21F30, symSize: 0x10 } - - { offsetInCU: 0xB2A, offset: 0x69012, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x1720, symBinAddr: 0x21F40, symSize: 0x10 } - - { offsetInCU: 0xB3E, offset: 0x69026, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1740, symBinAddr: 0x21F50, symSize: 0x50 } - - { offsetInCU: 0xB52, offset: 0x6903A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1790, symBinAddr: 0x21FA0, symSize: 0xA0 } - - { offsetInCU: 0xB66, offset: 0x6904E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1830, symBinAddr: 0x22040, symSize: 0x10 } - - { offsetInCU: 0xB7A, offset: 0x69062, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1840, symBinAddr: 0x22050, symSize: 0x10 } - - { offsetInCU: 0xB8E, offset: 0x69076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1850, symBinAddr: 0x22060, symSize: 0x10 } - - { offsetInCU: 0xBA2, offset: 0x6908A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x1860, symBinAddr: 0x22070, symSize: 0x10 } - - { offsetInCU: 0xBB6, offset: 0x6909E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x1870, symBinAddr: 0x22080, symSize: 0x40 } - - { offsetInCU: 0xBCA, offset: 0x690B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x18B0, symBinAddr: 0x220C0, symSize: 0x80 } - - { offsetInCU: 0xBDE, offset: 0x690C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1930, symBinAddr: 0x22140, symSize: 0xA0 } - - { offsetInCU: 0xBF2, offset: 0x690DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A00, symBinAddr: 0x221E0, symSize: 0x80 } - - { offsetInCU: 0xC06, offset: 0x690EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1A80, symBinAddr: 0x22260, symSize: 0x50 } - - { offsetInCU: 0xC1A, offset: 0x69102, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1AD0, symBinAddr: 0x222B0, symSize: 0x60 } - - { offsetInCU: 0xC2E, offset: 0x69116, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B30, symBinAddr: 0x22310, symSize: 0x10 } - - { offsetInCU: 0xC42, offset: 0x6912A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B40, symBinAddr: 0x22320, symSize: 0x10 } - - { offsetInCU: 0xC56, offset: 0x6913E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B50, symBinAddr: 0x22330, symSize: 0x30 } - - { offsetInCU: 0xC6A, offset: 0x69152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B80, symBinAddr: 0x22360, symSize: 0x10 } - - { offsetInCU: 0xC7E, offset: 0x69166, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x22370, symSize: 0x30 } - - { offsetInCU: 0xC92, offset: 0x6917A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BC0, symBinAddr: 0x223A0, symSize: 0x10 } - - { offsetInCU: 0xCA6, offset: 0x6918E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x223B0, symSize: 0x30 } - - { offsetInCU: 0xCBA, offset: 0x691A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C00, symBinAddr: 0x223E0, symSize: 0x10 } - - { offsetInCU: 0xCCE, offset: 0x691B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C10, symBinAddr: 0x223F0, symSize: 0x30 } - - { offsetInCU: 0xCE2, offset: 0x691CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C40, symBinAddr: 0x22420, symSize: 0x10 } - - { offsetInCU: 0xCF6, offset: 0x691DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C50, symBinAddr: 0x22430, symSize: 0x30 } - - { offsetInCU: 0xD0A, offset: 0x691F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C80, symBinAddr: 0x22460, symSize: 0x10 } - - { offsetInCU: 0xD1E, offset: 0x69206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C90, symBinAddr: 0x22470, symSize: 0x30 } - - { offsetInCU: 0xD32, offset: 0x6921A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x20D0, symBinAddr: 0x228B0, symSize: 0x30 } - - { offsetInCU: 0xD46, offset: 0x6922E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x2270, symBinAddr: 0x22A50, symSize: 0x10 } - - { offsetInCU: 0xD5A, offset: 0x69242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2280, symBinAddr: 0x22A60, symSize: 0x10 } - - { offsetInCU: 0xD6E, offset: 0x69256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2290, symBinAddr: 0x22A70, symSize: 0x10 } - - { offsetInCU: 0xD82, offset: 0x6926A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x22A0, symBinAddr: 0x22A80, symSize: 0x30 } - - { offsetInCU: 0xD96, offset: 0x6927E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22D0, symBinAddr: 0x22AB0, symSize: 0x10 } - - { offsetInCU: 0xDAA, offset: 0x69292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E0, symBinAddr: 0x22AC0, symSize: 0x30 } - - { offsetInCU: 0xDBE, offset: 0x692A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2310, symBinAddr: 0x22AF0, symSize: 0x10 } - - { offsetInCU: 0xDD2, offset: 0x692BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2320, symBinAddr: 0x22B00, symSize: 0x30 } - - { offsetInCU: 0xE27, offset: 0x6930F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAC0, symBinAddr: 0x213E0, symSize: 0x30 } - - { offsetInCU: 0xECA, offset: 0x693B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB40, symBinAddr: 0x21460, symSize: 0x20 } - - { offsetInCU: 0xEE6, offset: 0x693CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x21480, symSize: 0x20 } - - { offsetInCU: 0xF08, offset: 0x693F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCA0, symBinAddr: 0x215C0, symSize: 0x20 } - - { offsetInCU: 0xF24, offset: 0x6940C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCC0, symBinAddr: 0x215E0, symSize: 0x20 } - - { offsetInCU: 0xF46, offset: 0x6942E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE40, symBinAddr: 0x21760, symSize: 0x20 } - - { offsetInCU: 0xF62, offset: 0x6944A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE60, symBinAddr: 0x21780, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x69597, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22BA0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x695BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22BA0, symSize: 0x10 } - - { offsetInCU: 0x7A, offset: 0x695EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x810, symBinAddr: 0x232B0, symSize: 0x20 } - - { offsetInCU: 0x110, offset: 0x69680, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x830, symBinAddr: 0x232D0, symSize: 0x40 } - - { offsetInCU: 0x20B, offset: 0x6977B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x870, symBinAddr: 0x23310, symSize: 0x10 } - - { offsetInCU: 0x261, offset: 0x697D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x880, symBinAddr: 0x23320, symSize: 0x40 } - - { offsetInCU: 0x345, offset: 0x698B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x23360, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x69934, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x22BB0, symSize: 0x480 } - - { offsetInCU: 0x440, offset: 0x699B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOy', symObjAddr: 0x490, symBinAddr: 0x23030, symSize: 0x20 } - - { offsetInCU: 0x454, offset: 0x699C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOe', symObjAddr: 0x4E0, symBinAddr: 0x23050, symSize: 0x20 } - - { offsetInCU: 0x474, offset: 0x699E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x5D0, symBinAddr: 0x23070, symSize: 0x30 } - - { offsetInCU: 0x492, offset: 0x69A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x600, symBinAddr: 0x230A0, symSize: 0x30 } - - { offsetInCU: 0x4D0, offset: 0x69A40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x630, symBinAddr: 0x230D0, symSize: 0x10 } - - { offsetInCU: 0x4EE, offset: 0x69A5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x640, symBinAddr: 0x230E0, symSize: 0x10 } - - { offsetInCU: 0x519, offset: 0x69A89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x650, symBinAddr: 0x230F0, symSize: 0x10 } - - { offsetInCU: 0x537, offset: 0x69AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x660, symBinAddr: 0x23100, symSize: 0x10 } - - { offsetInCU: 0x575, offset: 0x69AE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x670, symBinAddr: 0x23110, symSize: 0x20 } - - { offsetInCU: 0x5A3, offset: 0x69B13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x690, symBinAddr: 0x23130, symSize: 0x10 } - - { offsetInCU: 0x5D6, offset: 0x69B46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x6A0, symBinAddr: 0x23140, symSize: 0x30 } - - { offsetInCU: 0x5F4, offset: 0x69B64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x6D0, symBinAddr: 0x23170, symSize: 0x20 } - - { offsetInCU: 0x61A, offset: 0x69B8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x6F0, symBinAddr: 0x23190, symSize: 0x30 } - - { offsetInCU: 0x638, offset: 0x69BA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x720, symBinAddr: 0x231C0, symSize: 0x30 } - - { offsetInCU: 0x663, offset: 0x69BD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x750, symBinAddr: 0x231F0, symSize: 0x10 } - - { offsetInCU: 0x681, offset: 0x69BF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x760, symBinAddr: 0x23200, symSize: 0x10 } - - { offsetInCU: 0x6BD, offset: 0x69C2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x770, symBinAddr: 0x23210, symSize: 0x10 } - - { offsetInCU: 0x6DB, offset: 0x69C4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x780, symBinAddr: 0x23220, symSize: 0x10 } - - { offsetInCU: 0x706, offset: 0x69C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x790, symBinAddr: 0x23230, symSize: 0x10 } - - { offsetInCU: 0x724, offset: 0x69C94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x7A0, symBinAddr: 0x23240, symSize: 0x10 } - - { offsetInCU: 0x760, offset: 0x69CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x7B0, symBinAddr: 0x23250, symSize: 0x20 } - - { offsetInCU: 0x78E, offset: 0x69CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x7D0, symBinAddr: 0x23270, symSize: 0x10 } - - { offsetInCU: 0x7B9, offset: 0x69D29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x7E0, symBinAddr: 0x23280, symSize: 0x20 } - - { offsetInCU: 0x7E7, offset: 0x69D57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x800, symBinAddr: 0x232A0, symSize: 0x10 } - - { offsetInCU: 0x829, offset: 0x69D99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x920, symBinAddr: 0x233C0, symSize: 0x10 } - - { offsetInCU: 0x83D, offset: 0x69DAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x930, symBinAddr: 0x233D0, symSize: 0x30 } - - { offsetInCU: 0x851, offset: 0x69DC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x960, symBinAddr: 0x23400, symSize: 0x30 } - - { offsetInCU: 0x865, offset: 0x69DD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x990, symBinAddr: 0x23430, symSize: 0x80 } - - { offsetInCU: 0x879, offset: 0x69DE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0xA10, symBinAddr: 0x234B0, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x69DFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0xC60, symBinAddr: 0x23700, symSize: 0x4F0 } - - { offsetInCU: 0x8A8, offset: 0x69E18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0x1150, symBinAddr: 0x23BF0, symSize: 0x30 } - - { offsetInCU: 0x8D1, offset: 0x69E41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0x1180, symBinAddr: 0x23C20, symSize: 0x20 } - - { offsetInCU: 0x8E5, offset: 0x69E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0x11A0, symBinAddr: 0x23C40, symSize: 0x30 } - - { offsetInCU: 0x8F9, offset: 0x69E69, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0x11D0, symBinAddr: 0x23C70, symSize: 0x10 } - - { offsetInCU: 0x90D, offset: 0x69E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x23C80, symSize: 0x340 } - - { offsetInCU: 0x921, offset: 0x69E91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x1520, symBinAddr: 0x23FC0, symSize: 0x40 } - - { offsetInCU: 0x935, offset: 0x69EA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1560, symBinAddr: 0x24000, symSize: 0x90 } - - { offsetInCU: 0x949, offset: 0x69EB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x24090, symSize: 0x10 } - - { offsetInCU: 0x95D, offset: 0x69ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwCP', symObjAddr: 0x1600, symBinAddr: 0x240A0, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x69EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1630, symBinAddr: 0x240D0, symSize: 0x10 } - - { offsetInCU: 0x985, offset: 0x69EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwcp', symObjAddr: 0x1640, symBinAddr: 0x240E0, symSize: 0x30 } - - { offsetInCU: 0x999, offset: 0x69F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x24110, symSize: 0x50 } - - { offsetInCU: 0x9AD, offset: 0x69F1D, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x16C0, symBinAddr: 0x24160, symSize: 0x20 } - - { offsetInCU: 0x9C1, offset: 0x69F31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x16E0, symBinAddr: 0x24180, symSize: 0x40 } - - { offsetInCU: 0x9D5, offset: 0x69F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1720, symBinAddr: 0x241C0, symSize: 0x40 } - - { offsetInCU: 0x9E9, offset: 0x69F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1760, symBinAddr: 0x24200, symSize: 0x50 } - - { offsetInCU: 0x9FD, offset: 0x69F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x17B0, symBinAddr: 0x24250, symSize: 0x10 } - - { offsetInCU: 0xA11, offset: 0x69F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x17C0, symBinAddr: 0x24260, symSize: 0x30 } - - { offsetInCU: 0xA25, offset: 0x69F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x17F0, symBinAddr: 0x24290, symSize: 0x80 } - - { offsetInCU: 0xA39, offset: 0x69FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x1870, symBinAddr: 0x24310, symSize: 0xE0 } - - { offsetInCU: 0xA4D, offset: 0x69FBD, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1950, symBinAddr: 0x243F0, symSize: 0x30 } - - { offsetInCU: 0xA61, offset: 0x69FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1980, symBinAddr: 0x24420, symSize: 0x90 } - - { offsetInCU: 0xA75, offset: 0x69FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1A10, symBinAddr: 0x244B0, symSize: 0x50 } - - { offsetInCU: 0xA89, offset: 0x69FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1A60, symBinAddr: 0x24500, symSize: 0x60 } - - { offsetInCU: 0xA9D, offset: 0x6A00D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1AC0, symBinAddr: 0x24560, symSize: 0x10 } - - { offsetInCU: 0xAB1, offset: 0x6A021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1AD0, symBinAddr: 0x24570, symSize: 0x30 } - - { offsetInCU: 0xAC5, offset: 0x6A035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x1B00, symBinAddr: 0x245A0, symSize: 0x40 } - - { offsetInCU: 0xAD9, offset: 0x6A049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x1B40, symBinAddr: 0x245E0, symSize: 0x60 } - - { offsetInCU: 0xAED, offset: 0x6A05D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1BC0, symBinAddr: 0x24640, symSize: 0x50 } - - { offsetInCU: 0xB01, offset: 0x6A071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1C10, symBinAddr: 0x24690, symSize: 0x40 } - - { offsetInCU: 0xB15, offset: 0x6A085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x1C50, symBinAddr: 0x246D0, symSize: 0x50 } - - { offsetInCU: 0xB29, offset: 0x6A099, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x1CA0, symBinAddr: 0x24720, symSize: 0x10 } - - { offsetInCU: 0xB3D, offset: 0x6A0AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1CC0, symBinAddr: 0x24730, symSize: 0x40 } - - { offsetInCU: 0xB51, offset: 0x6A0C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1D00, symBinAddr: 0x24770, symSize: 0x50 } - - { offsetInCU: 0xB65, offset: 0x6A0D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1D50, symBinAddr: 0x247C0, symSize: 0x10 } - - { offsetInCU: 0xB79, offset: 0x6A0E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x1D70, symBinAddr: 0x247D0, symSize: 0x80 } - - { offsetInCU: 0xB8D, offset: 0x6A0FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1DF0, symBinAddr: 0x24850, symSize: 0xD0 } - - { offsetInCU: 0xBA1, offset: 0x6A111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1EC0, symBinAddr: 0x24920, symSize: 0x10 } - - { offsetInCU: 0xBB5, offset: 0x6A125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1ED0, symBinAddr: 0x24930, symSize: 0x10 } - - { offsetInCU: 0xBC9, offset: 0x6A139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1EE0, symBinAddr: 0x24940, symSize: 0x10 } - - { offsetInCU: 0xBDD, offset: 0x6A14D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1EF0, symBinAddr: 0x24950, symSize: 0x10 } - - { offsetInCU: 0xC32, offset: 0x6A1A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x23380, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x6A3EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x249A0, symSize: 0x170 } - - { offsetInCU: 0x35A, offset: 0x6A6DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x170, symBinAddr: 0x24B10, symSize: 0x700 } - - { offsetInCU: 0x6C9, offset: 0x6AA49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x31D0, symBinAddr: 0x27B70, symSize: 0x7A0 } - - { offsetInCU: 0xC01, offset: 0x6AF81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x8F0, symBinAddr: 0x25290, symSize: 0x25F0 } - - { offsetInCU: 0x1C7D, offset: 0x6BFFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xDB60, symBinAddr: 0x32500, symSize: 0x42E0 } - - { offsetInCU: 0x3A21, offset: 0x6DDA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x11E40, symBinAddr: 0x367E0, symSize: 0x790 } - - { offsetInCU: 0x4011, offset: 0x6E391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tF', symObjAddr: 0x125D0, symBinAddr: 0x36F70, symSize: 0x40 } - - { offsetInCU: 0x4039, offset: 0x6E3B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x18080, symBinAddr: 0x3CA20, symSize: 0x450 } - - { offsetInCU: 0x41B2, offset: 0x6E532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x14200, symBinAddr: 0x38BA0, symSize: 0x2F60 } - - { offsetInCU: 0x57F9, offset: 0x6FB79, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2EE0, symBinAddr: 0x27880, symSize: 0x2F0 } - - { offsetInCU: 0x5C49, offset: 0x6FFC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x3970, symBinAddr: 0x28310, symSize: 0x6E0 } - - { offsetInCU: 0x5F7C, offset: 0x702FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x4050, symBinAddr: 0x289F0, symSize: 0x4C30 } - - { offsetInCU: 0x7AF6, offset: 0x71E76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x8C80, symBinAddr: 0x2D620, symSize: 0x2E0 } - - { offsetInCU: 0x7BF8, offset: 0x71F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x93E0, symBinAddr: 0x2DD80, symSize: 0x1BC0 } - - { offsetInCU: 0x84E4, offset: 0x72864, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x8F60, symBinAddr: 0x2D900, symSize: 0x120 } - - { offsetInCU: 0x854D, offset: 0x728CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x91A0, symBinAddr: 0x2DB40, symSize: 0x210 } - - { offsetInCU: 0x863A, offset: 0x729BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x93B0, symBinAddr: 0x2DD50, symSize: 0x30 } - - { offsetInCU: 0x8882, offset: 0x72C02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0xAFA0, symBinAddr: 0x2F940, symSize: 0x8B0 } - - { offsetInCU: 0x8CA7, offset: 0x73027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xC910, symBinAddr: 0x312B0, symSize: 0x1250 } - - { offsetInCU: 0x956F, offset: 0x738EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xB850, symBinAddr: 0x301F0, symSize: 0xC00 } - - { offsetInCU: 0xA03F, offset: 0x743BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x12A80, symBinAddr: 0x37420, symSize: 0x1780 } - - { offsetInCU: 0xAFD3, offset: 0x75353, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1C210, symBinAddr: 0x40AF0, symSize: 0xE00 } - - { offsetInCU: 0xBC15, offset: 0x75F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x17160, symBinAddr: 0x3BB00, symSize: 0xF20 } - - { offsetInCU: 0xC583, offset: 0x76903, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x184D0, symBinAddr: 0x3CE70, symSize: 0x1C0 } - - { offsetInCU: 0xC624, offset: 0x769A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x18690, symBinAddr: 0x3D030, symSize: 0x2D0 } - - { offsetInCU: 0xC72A, offset: 0x76AAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x18960, symBinAddr: 0x3D300, symSize: 0x80 } - - { offsetInCU: 0xC7A9, offset: 0x76B29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x18A50, symBinAddr: 0x3D3F0, symSize: 0x1260 } - - { offsetInCU: 0xD102, offset: 0x77482, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x19CB0, symBinAddr: 0x3E650, symSize: 0x50 } - - { offsetInCU: 0xD11E, offset: 0x7749E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x19D00, symBinAddr: 0x3E6A0, symSize: 0x160 } - - { offsetInCU: 0xD222, offset: 0x775A2, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x19E60, symBinAddr: 0x3E800, symSize: 0x50 } - - { offsetInCU: 0xD29B, offset: 0x7761B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x19F00, symBinAddr: 0x3E850, symSize: 0x40 } - - { offsetInCU: 0xD31F, offset: 0x7769F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x19F40, symBinAddr: 0x3E890, symSize: 0x40 } - - { offsetInCU: 0xD398, offset: 0x77718, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x19F80, symBinAddr: 0x3E8D0, symSize: 0x60 } - - { offsetInCU: 0xD3DA, offset: 0x7775A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19FE0, symBinAddr: 0x3E930, symSize: 0x30 } - - { offsetInCU: 0xD407, offset: 0x77787, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1A010, symBinAddr: 0x3E960, symSize: 0x80 } - - { offsetInCU: 0xD4A5, offset: 0x77825, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x1A090, symBinAddr: 0x3E9E0, symSize: 0x60 } - - { offsetInCU: 0xD52B, offset: 0x778AB, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1A0F0, symBinAddr: 0x3EA40, symSize: 0x50 } - - { offsetInCU: 0xD5AF, offset: 0x7792F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1A190, symBinAddr: 0x3EAE0, symSize: 0xE0 } - - { offsetInCU: 0xD5F9, offset: 0x77979, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1A270, symBinAddr: 0x3EBC0, symSize: 0xC0 } - - { offsetInCU: 0xD626, offset: 0x779A6, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1A330, symBinAddr: 0x3EC80, symSize: 0x180 } - - { offsetInCU: 0xD6DA, offset: 0x77A5A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x1A4B0, symBinAddr: 0x3EE00, symSize: 0x110 } - - { offsetInCU: 0xD86D, offset: 0x77BED, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x1A5C0, symBinAddr: 0x3EF10, symSize: 0x130 } - - { offsetInCU: 0xDA39, offset: 0x77DB9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x1A6F0, symBinAddr: 0x3F040, symSize: 0x180 } - - { offsetInCU: 0xDC0C, offset: 0x77F8C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x1A870, symBinAddr: 0x3F1C0, symSize: 0x1A0 } - - { offsetInCU: 0xDDF1, offset: 0x78171, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x1AA10, symBinAddr: 0x3F360, symSize: 0x110 } - - { offsetInCU: 0xDF94, offset: 0x78314, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x1AB20, symBinAddr: 0x3F470, symSize: 0x110 } - - { offsetInCU: 0xE137, offset: 0x784B7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1AD60, symBinAddr: 0x3F6B0, symSize: 0x110 } - - { offsetInCU: 0xE249, offset: 0x785C9, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1AE70, symBinAddr: 0x3F7C0, symSize: 0x40 } - - { offsetInCU: 0xE296, offset: 0x78616, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1B180, symBinAddr: 0x3FAD0, symSize: 0x180 } - - { offsetInCU: 0xE335, offset: 0x786B5, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1B300, symBinAddr: 0x3FC50, symSize: 0xD0 } - - { offsetInCU: 0xE404, offset: 0x78784, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1B5E0, symBinAddr: 0x3FEF0, symSize: 0x170 } - - { offsetInCU: 0xE515, offset: 0x78895, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x1B750, symBinAddr: 0x40060, symSize: 0xA0 } - - { offsetInCU: 0xE618, offset: 0x78998, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1BA70, symBinAddr: 0x40350, symSize: 0x1B0 } - - { offsetInCU: 0xE76D, offset: 0x78AED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1BC20, symBinAddr: 0x40500, symSize: 0x400 } - - { offsetInCU: 0xEA81, offset: 0x78E01, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1D010, symBinAddr: 0x418F0, symSize: 0x170 } - - { offsetInCU: 0xEB9D, offset: 0x78F1D, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x1D180, symBinAddr: 0x41A60, symSize: 0xA0 } - - { offsetInCU: 0xEF27, offset: 0x792A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1D220, symBinAddr: 0x41B00, symSize: 0x1130 } - - { offsetInCU: 0x102EF, offset: 0x7A66F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E350, symBinAddr: 0x42C30, symSize: 0x1E0 } - - { offsetInCU: 0x1048D, offset: 0x7A80D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E530, symBinAddr: 0x42E10, symSize: 0x1B0 } - - { offsetInCU: 0x10580, offset: 0x7A900, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1E6E0, symBinAddr: 0x42FC0, symSize: 0x90 } - - { offsetInCU: 0x10782, offset: 0x7AB02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1F240, symBinAddr: 0x43B20, symSize: 0x10 } - - { offsetInCU: 0x10796, offset: 0x7AB16, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1F310, symBinAddr: 0x43BF0, symSize: 0x20 } - - { offsetInCU: 0x107AA, offset: 0x7AB2A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1F330, symBinAddr: 0x43C10, symSize: 0x20 } - - { offsetInCU: 0x107BE, offset: 0x7AB3E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1F350, symBinAddr: 0x43C30, symSize: 0x60 } - - { offsetInCU: 0x107D2, offset: 0x7AB52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1F3D0, symBinAddr: 0x43C90, symSize: 0x30 } - - { offsetInCU: 0x107E6, offset: 0x7AB66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1F400, symBinAddr: 0x43CC0, symSize: 0x180 } - - { offsetInCU: 0x107FA, offset: 0x7AB7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1F580, symBinAddr: 0x43E40, symSize: 0x2D0 } - - { offsetInCU: 0x1080E, offset: 0x7AB8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1F850, symBinAddr: 0x44110, symSize: 0x70 } - - { offsetInCU: 0x10822, offset: 0x7ABA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1F8C0, symBinAddr: 0x44180, symSize: 0x30 } - - { offsetInCU: 0x10836, offset: 0x7ABB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1F8F0, symBinAddr: 0x441B0, symSize: 0xD0 } - - { offsetInCU: 0x1084A, offset: 0x7ABCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1F9C0, symBinAddr: 0x44280, symSize: 0xB0 } - - { offsetInCU: 0x1087F, offset: 0x7ABFF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x200E0, symBinAddr: 0x44330, symSize: 0xC0 } - - { offsetInCU: 0x108F5, offset: 0x7AC75, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x201A0, symBinAddr: 0x443F0, symSize: 0x80 } - - { offsetInCU: 0x10922, offset: 0x7ACA2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x20220, symBinAddr: 0x44470, symSize: 0x80 } - - { offsetInCU: 0x10998, offset: 0x7AD18, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x202A0, symBinAddr: 0x444F0, symSize: 0x70 } - - { offsetInCU: 0x10AB1, offset: 0x7AE31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x20310, symBinAddr: 0x44560, symSize: 0x800 } - - { offsetInCU: 0x10F6A, offset: 0x7B2EA, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x20B10, symBinAddr: 0x44D60, symSize: 0x40 } - - { offsetInCU: 0x10F7E, offset: 0x7B2FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x20C00, symBinAddr: 0x44DD0, symSize: 0x10 } - - { offsetInCU: 0x10F92, offset: 0x7B312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x20C10, symBinAddr: 0x44DE0, symSize: 0x30 } - - { offsetInCU: 0x10FA6, offset: 0x7B326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x20C40, symBinAddr: 0x44E10, symSize: 0x30 } - - { offsetInCU: 0x10FBA, offset: 0x7B33A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x20CE0, symBinAddr: 0x44E60, symSize: 0x20 } - - { offsetInCU: 0x10FCE, offset: 0x7B34E, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x20D20, symBinAddr: 0x44E80, symSize: 0x30 } - - { offsetInCU: 0x10FE2, offset: 0x7B362, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x20D50, symBinAddr: 0x44EB0, symSize: 0x30 } - - { offsetInCU: 0x10FF6, offset: 0x7B376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x20DE0, symBinAddr: 0x44F40, symSize: 0x30 } - - { offsetInCU: 0x1102B, offset: 0x7B3AB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x20EE0, symBinAddr: 0x45040, symSize: 0x40 } - - { offsetInCU: 0x1104A, offset: 0x7B3CA, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x20F20, symBinAddr: 0x45080, symSize: 0x60 } - - { offsetInCU: 0x1108D, offset: 0x7B40D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x20F80, symBinAddr: 0x450E0, symSize: 0x80 } - - { offsetInCU: 0x11122, offset: 0x7B4A2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x21000, symBinAddr: 0x45160, symSize: 0x120 } - - { offsetInCU: 0x1120A, offset: 0x7B58A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x21170, symBinAddr: 0x452D0, symSize: 0x40 } - - { offsetInCU: 0x1121E, offset: 0x7B59E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x211B0, symBinAddr: 0x45310, symSize: 0x50 } - - { offsetInCU: 0x11232, offset: 0x7B5B2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x212C0, symBinAddr: 0x45420, symSize: 0x40 } - - { offsetInCU: 0x11246, offset: 0x7B5C6, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x21360, symBinAddr: 0x454C0, symSize: 0x10 } - - { offsetInCU: 0x1125A, offset: 0x7B5DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x21370, symBinAddr: 0x454D0, symSize: 0x20 } - - { offsetInCU: 0x1126E, offset: 0x7B5EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x21390, symBinAddr: 0x454F0, symSize: 0x30 } - - { offsetInCU: 0x11282, offset: 0x7B602, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x21400, symBinAddr: 0x45560, symSize: 0x40 } - - { offsetInCU: 0x11338, offset: 0x7B6B8, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x870, symBinAddr: 0x25210, symSize: 0x80 } - - { offsetInCU: 0x11708, offset: 0x7BA88, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xC450, symBinAddr: 0x30DF0, symSize: 0x4C0 } - - { offsetInCU: 0x119EA, offset: 0x7BD6A, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x128D0, symBinAddr: 0x37270, symSize: 0x1B0 } - - { offsetInCU: 0x11C17, offset: 0x7BF97, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x189E0, symBinAddr: 0x3D380, symSize: 0x70 } - - { offsetInCU: 0x11D84, offset: 0x7C104, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x1B3D0, symBinAddr: 0x3FD20, symSize: 0xE0 } - - { offsetInCU: 0x11EB1, offset: 0x7C231, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x1B4F0, symBinAddr: 0x3FE00, symSize: 0xF0 } - - { offsetInCU: 0x11FB2, offset: 0x7C332, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1B840, symBinAddr: 0x40120, symSize: 0x230 } - - { offsetInCU: 0x12080, offset: 0x7C400, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1C020, symBinAddr: 0x40900, symSize: 0x1F0 } - - { offsetInCU: 0x1233C, offset: 0x7C6BC, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1E990, symBinAddr: 0x43270, symSize: 0x260 } - - { offsetInCU: 0x12422, offset: 0x7C7A2, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1EBF0, symBinAddr: 0x434D0, symSize: 0xF0 } - - { offsetInCU: 0x12555, offset: 0x7C8D5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1ECE0, symBinAddr: 0x435C0, symSize: 0xF0 } - - { offsetInCU: 0x1269C, offset: 0x7CA1C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1EDD0, symBinAddr: 0x436B0, symSize: 0xE0 } - - { offsetInCU: 0x127D7, offset: 0x7CB57, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1EEB0, symBinAddr: 0x43790, symSize: 0xF0 } - - { offsetInCU: 0x12904, offset: 0x7CC84, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1EFA0, symBinAddr: 0x43880, symSize: 0xE0 } - - { offsetInCU: 0x12A4B, offset: 0x7CDCB, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1F160, symBinAddr: 0x43A40, symSize: 0xE0 } - - { offsetInCU: 0x12BAA, offset: 0x7CF2A, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x20E10, symBinAddr: 0x44F70, symSize: 0xD0 } - - { offsetInCU: 0x12E50, offset: 0x7D1D0, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x9080, symBinAddr: 0x2DA20, symSize: 0x120 } - - { offsetInCU: 0x27, offset: 0x7D78A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x455D0, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7D7A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x455D0, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7D7B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x45600, symSize: 0x140 } - - { offsetInCU: 0x67, offset: 0x7D7CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x45740, symSize: 0x440 } - - { offsetInCU: 0x7B, offset: 0x7D7DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x45B80, symSize: 0x590 } - - { offsetInCU: 0x8F, offset: 0x7D7F2, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x46110, symSize: 0x10 } - - { offsetInCU: 0xA3, offset: 0x7D806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x46120, symSize: 0x440 } - - { offsetInCU: 0xB7, offset: 0x7D81A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x46560, symSize: 0x40 } - - { offsetInCU: 0xCB, offset: 0x7D82E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x465A0, symSize: 0x110 } - - { offsetInCU: 0xDF, offset: 0x7D842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x466B0, symSize: 0xA } - - { offsetInCU: 0x23B, offset: 0x7DB5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x480, symBinAddr: 0x46B30, symSize: 0x2D0 } - - { offsetInCU: 0x2F0, offset: 0x7DC13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x750, symBinAddr: 0x46E00, symSize: 0xE40 } - - { offsetInCU: 0x762, offset: 0x7E085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x1590, symBinAddr: 0x47C40, symSize: 0x690 } - - { offsetInCU: 0x982, offset: 0x7E2A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1C20, symBinAddr: 0x482D0, symSize: 0xB00 } - - { offsetInCU: 0xD14, offset: 0x7E637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x2750, symBinAddr: 0x48E00, symSize: 0x28F0 } - - { offsetInCU: 0x1EF3, offset: 0x7F816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x109F0, symBinAddr: 0x570A0, symSize: 0x7F0 } - - { offsetInCU: 0x2281, offset: 0x7FBA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x5040, symBinAddr: 0x4B6F0, symSize: 0x1620 } - - { offsetInCU: 0x2DF3, offset: 0x80716, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x6660, symBinAddr: 0x4CD10, symSize: 0xE80 } - - { offsetInCU: 0x3649, offset: 0x80F6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x74E0, symBinAddr: 0x4DB90, symSize: 0x430 } - - { offsetInCU: 0x3760, offset: 0x81083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8330, symBinAddr: 0x4E9E0, symSize: 0x210 } - - { offsetInCU: 0x3A1F, offset: 0x81342, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8540, symBinAddr: 0x4EBF0, symSize: 0xA50 } - - { offsetInCU: 0x4168, offset: 0x81A8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8F90, symBinAddr: 0x4F640, symSize: 0x2F0 } - - { offsetInCU: 0x42A0, offset: 0x81BC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9280, symBinAddr: 0x4F930, symSize: 0x710 } - - { offsetInCU: 0x4693, offset: 0x81FB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x9990, symBinAddr: 0x50040, symSize: 0x760 } - - { offsetInCU: 0x496D, offset: 0x82290, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA0F0, symBinAddr: 0x507A0, symSize: 0x260 } - - { offsetInCU: 0x4A41, offset: 0x82364, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA350, symBinAddr: 0x50A00, symSize: 0x270 } - - { offsetInCU: 0x4ADA, offset: 0x823FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0xA5C0, symBinAddr: 0x50C70, symSize: 0xC0 } - - { offsetInCU: 0x4B07, offset: 0x8242A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0xA680, symBinAddr: 0x50D30, symSize: 0x20 } - - { offsetInCU: 0x4B43, offset: 0x82466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xF3F0, symBinAddr: 0x55AA0, symSize: 0x8F0 } - - { offsetInCU: 0x4E8E, offset: 0x827B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xFCE0, symBinAddr: 0x56390, symSize: 0xA60 } - - { offsetInCU: 0x517D, offset: 0x82AA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0x10740, symBinAddr: 0x56DF0, symSize: 0x240 } - - { offsetInCU: 0x5228, offset: 0x82B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x111E0, symBinAddr: 0x57890, symSize: 0x960 } - - { offsetInCU: 0x5533, offset: 0x82E56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11B40, symBinAddr: 0x581F0, symSize: 0xBC0 } - - { offsetInCU: 0x5822, offset: 0x83145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x12700, symBinAddr: 0x58DB0, symSize: 0x2C0 } - - { offsetInCU: 0x58CD, offset: 0x831F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x129C0, symBinAddr: 0x59070, symSize: 0x210 } - - { offsetInCU: 0x5D83, offset: 0x836A6, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2720, symBinAddr: 0x48DD0, symSize: 0x30 } - - { offsetInCU: 0x609A, offset: 0x839BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0xA6A0, symBinAddr: 0x50D50, symSize: 0x20 } - - { offsetInCU: 0x60F3, offset: 0x83A16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xA6C0, symBinAddr: 0x50D70, symSize: 0x90 } - - { offsetInCU: 0x61A1, offset: 0x83AC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0xA750, symBinAddr: 0x50E00, symSize: 0x15D0 } - - { offsetInCU: 0x685C, offset: 0x8417F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xBD20, symBinAddr: 0x523D0, symSize: 0x40 } - - { offsetInCU: 0x68A0, offset: 0x841C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xBD60, symBinAddr: 0x52410, symSize: 0x50 } - - { offsetInCU: 0x68CB, offset: 0x841EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xBDB0, symBinAddr: 0x52460, symSize: 0x50 } - - { offsetInCU: 0x690D, offset: 0x84230, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBE00, symBinAddr: 0x524B0, symSize: 0x60 } - - { offsetInCU: 0x6940, offset: 0x84263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xBE60, symBinAddr: 0x52510, symSize: 0x10 } - - { offsetInCU: 0x696B, offset: 0x8428E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBE70, symBinAddr: 0x52520, symSize: 0x70 } - - { offsetInCU: 0x69AD, offset: 0x842D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xBEE0, symBinAddr: 0x52590, symSize: 0x90 } - - { offsetInCU: 0x69EF, offset: 0x84312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xBF70, symBinAddr: 0x52620, symSize: 0x70 } - - { offsetInCU: 0x6A22, offset: 0x84345, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xBFE0, symBinAddr: 0x52690, symSize: 0x10 } - - { offsetInCU: 0x6A3E, offset: 0x84361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xBFF0, symBinAddr: 0x526A0, symSize: 0x10 } - - { offsetInCU: 0x6A69, offset: 0x8438C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xC000, symBinAddr: 0x526B0, symSize: 0x70 } - - { offsetInCU: 0x6A9C, offset: 0x843BF, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xC070, symBinAddr: 0x52720, symSize: 0x10 } - - { offsetInCU: 0x6ABB, offset: 0x843DE, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xC080, symBinAddr: 0x52730, symSize: 0x10 } - - { offsetInCU: 0x6AE8, offset: 0x8440B, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xC090, symBinAddr: 0x52740, symSize: 0xC0 } - - { offsetInCU: 0x6B70, offset: 0x84493, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xC150, symBinAddr: 0x52800, symSize: 0xC0 } - - { offsetInCU: 0x6C28, offset: 0x8454B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xC2E0, symBinAddr: 0x52990, symSize: 0x260 } - - { offsetInCU: 0x6CA0, offset: 0x845C3, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xC540, symBinAddr: 0x52BF0, symSize: 0x220 } - - { offsetInCU: 0x6D50, offset: 0x84673, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xC760, symBinAddr: 0x52E10, symSize: 0x3C0 } - - { offsetInCU: 0x6E5C, offset: 0x8477F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xCB20, symBinAddr: 0x531D0, symSize: 0x3B0 } - - { offsetInCU: 0x6F92, offset: 0x848B5, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xCED0, symBinAddr: 0x53580, symSize: 0x220 } - - { offsetInCU: 0x701B, offset: 0x8493E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xD0F0, symBinAddr: 0x537A0, symSize: 0x220 } - - { offsetInCU: 0x7099, offset: 0x849BC, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xD310, symBinAddr: 0x539C0, symSize: 0x40 } - - { offsetInCU: 0x7161, offset: 0x84A84, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xD350, symBinAddr: 0x53A00, symSize: 0xA0 } - - { offsetInCU: 0x721A, offset: 0x84B3D, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xD3F0, symBinAddr: 0x53AA0, symSize: 0x40 } - - { offsetInCU: 0x7257, offset: 0x84B7A, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xD430, symBinAddr: 0x53AE0, symSize: 0x20 } - - { offsetInCU: 0x7280, offset: 0x84BA3, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xD450, symBinAddr: 0x53B00, symSize: 0x30 } - - { offsetInCU: 0x72A9, offset: 0x84BCC, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xD480, symBinAddr: 0x53B30, symSize: 0x20 } - - { offsetInCU: 0x730D, offset: 0x84C30, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xD4A0, symBinAddr: 0x53B50, symSize: 0x120 } - - { offsetInCU: 0x73B2, offset: 0x84CD5, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xD6E0, symBinAddr: 0x53D90, symSize: 0x2C0 } - - { offsetInCU: 0x7429, offset: 0x84D4C, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xDC50, symBinAddr: 0x54300, symSize: 0x80 } - - { offsetInCU: 0x7441, offset: 0x84D64, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xDCD0, symBinAddr: 0x54380, symSize: 0x60 } - - { offsetInCU: 0x7496, offset: 0x84DB9, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xDD30, symBinAddr: 0x543E0, symSize: 0x170 } - - { offsetInCU: 0x7504, offset: 0x84E27, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xDEA0, symBinAddr: 0x54550, symSize: 0x100 } - - { offsetInCU: 0x7529, offset: 0x84E4C, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xDFA0, symBinAddr: 0x54650, symSize: 0x2D0 } - - { offsetInCU: 0x7562, offset: 0x84E85, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xE270, symBinAddr: 0x54920, symSize: 0xA0 } - - { offsetInCU: 0x757A, offset: 0x84E9D, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xE310, symBinAddr: 0x549C0, symSize: 0x20 } - - { offsetInCU: 0x7592, offset: 0x84EB5, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE330, symBinAddr: 0x549E0, symSize: 0x20 } - - { offsetInCU: 0x75AA, offset: 0x84ECD, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE350, symBinAddr: 0x54A00, symSize: 0x20 } - - { offsetInCU: 0x761A, offset: 0x84F3D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xE370, symBinAddr: 0x54A20, symSize: 0x110 } - - { offsetInCU: 0x7793, offset: 0x850B6, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE480, symBinAddr: 0x54B30, symSize: 0x1A0 } - - { offsetInCU: 0x7938, offset: 0x8525B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE620, symBinAddr: 0x54CD0, symSize: 0x130 } - - { offsetInCU: 0x7A38, offset: 0x8535B, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xE750, symBinAddr: 0x54E00, symSize: 0x100 } - - { offsetInCU: 0x7C84, offset: 0x855A7, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xE850, symBinAddr: 0x54F00, symSize: 0x440 } - - { offsetInCU: 0x82B1, offset: 0x85BD4, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xEC90, symBinAddr: 0x55340, symSize: 0x2D0 } - - { offsetInCU: 0x84B2, offset: 0x85DD5, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xEF60, symBinAddr: 0x55610, symSize: 0x160 } - - { offsetInCU: 0x8642, offset: 0x85F65, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xF0C0, symBinAddr: 0x55770, symSize: 0x200 } - - { offsetInCU: 0x86CD, offset: 0x85FF0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xF2C0, symBinAddr: 0x55970, symSize: 0x20 } - - { offsetInCU: 0x8706, offset: 0x86029, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xF2E0, symBinAddr: 0x55990, symSize: 0x110 } - - { offsetInCU: 0x87BC, offset: 0x860DF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x10980, symBinAddr: 0x57030, symSize: 0x70 } - - { offsetInCU: 0x8868, offset: 0x8618B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x12BD0, symBinAddr: 0x59280, symSize: 0xB50 } - - { offsetInCU: 0x8DE3, offset: 0x86706, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x13720, symBinAddr: 0x59DD0, symSize: 0x130 } - - { offsetInCU: 0x8F4F, offset: 0x86872, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13850, symBinAddr: 0x59F00, symSize: 0x32B0 } - - { offsetInCU: 0x9615, offset: 0x86F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x16B00, symBinAddr: 0x5D1B0, symSize: 0x130 } - - { offsetInCU: 0x9726, offset: 0x87049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x16C30, symBinAddr: 0x5D2E0, symSize: 0x90 } - - { offsetInCU: 0x97A9, offset: 0x870CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x16CC0, symBinAddr: 0x5D370, symSize: 0x7E0 } - - { offsetInCU: 0x9B59, offset: 0x8747C, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x17510, symBinAddr: 0x5DB50, symSize: 0x20 } - - { offsetInCU: 0x9B6D, offset: 0x87490, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x17530, symBinAddr: 0x5DB70, symSize: 0x20 } - - { offsetInCU: 0x9B81, offset: 0x874A4, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x17580, symBinAddr: 0x5DB90, symSize: 0x40 } - - { offsetInCU: 0x9B95, offset: 0x874B8, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x17640, symBinAddr: 0x5DBD0, symSize: 0x30 } - - { offsetInCU: 0x9BA9, offset: 0x874CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x17670, symBinAddr: 0x5DC00, symSize: 0x30 } - - { offsetInCU: 0x9BBD, offset: 0x874E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOf', symObjAddr: 0x176A0, symBinAddr: 0x5DC30, symSize: 0x40 } - - { offsetInCU: 0x9BD1, offset: 0x874F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x17740, symBinAddr: 0x5DCA0, symSize: 0x10 } - - { offsetInCU: 0x9BE5, offset: 0x87508, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x17750, symBinAddr: 0x5DCB0, symSize: 0x20 } - - { offsetInCU: 0x9BF9, offset: 0x8751C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x17770, symBinAddr: 0x5DCD0, symSize: 0x10 } - - { offsetInCU: 0x9C0D, offset: 0x87530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x17800, symBinAddr: 0x5DD20, symSize: 0x40 } - - { offsetInCU: 0x9C65, offset: 0x87588, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x178C0, symBinAddr: 0x5DDE0, symSize: 0x20 } - - { offsetInCU: 0x9CA1, offset: 0x875C4, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x17920, symBinAddr: 0x5DE00, symSize: 0x30 } - - { offsetInCU: 0x9CD0, offset: 0x875F3, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x466C0, symSize: 0x110 } - - { offsetInCU: 0x9D06, offset: 0x87629, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x110, symBinAddr: 0x467D0, symSize: 0x50 } - - { offsetInCU: 0x9DE6, offset: 0x87709, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x160, symBinAddr: 0x46820, symSize: 0x90 } - - { offsetInCU: 0x9E09, offset: 0x8772C, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x1F0, symBinAddr: 0x468B0, symSize: 0xA0 } - - { offsetInCU: 0x9F1A, offset: 0x8783D, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x290, symBinAddr: 0x46950, symSize: 0x90 } - - { offsetInCU: 0xA014, offset: 0x87937, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x320, symBinAddr: 0x469E0, symSize: 0x60 } - - { offsetInCU: 0xA070, offset: 0x87993, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x380, symBinAddr: 0x46A40, symSize: 0x10 } - - { offsetInCU: 0xA098, offset: 0x879BB, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3A0, symBinAddr: 0x46A50, symSize: 0xE0 } - - { offsetInCU: 0x62, offset: 0x883D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x5DF40, symSize: 0x20 } - - { offsetInCU: 0x8B, offset: 0x883FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1000, symBinAddr: 0x5EF40, symSize: 0x10 } - - { offsetInCU: 0xB6, offset: 0x88426, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1010, symBinAddr: 0x5EF50, symSize: 0x20 } - - { offsetInCU: 0xE7, offset: 0x88457, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1030, symBinAddr: 0x5EF70, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x88473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1040, symBinAddr: 0x5EF80, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x8848F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B80, symBinAddr: 0x64A00, symSize: 0xE0 } - - { offsetInCU: 0x165, offset: 0x884D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x5DF60, symSize: 0x190 } - - { offsetInCU: 0x1BA, offset: 0x8852A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1090, symBinAddr: 0x5EFD0, symSize: 0x50 } - - { offsetInCU: 0x1F1, offset: 0x88561, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E0, symBinAddr: 0x5F020, symSize: 0x50 } - - { offsetInCU: 0x214, offset: 0x88584, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6C60, symBinAddr: 0x64AE0, symSize: 0x13C0 } - - { offsetInCU: 0x265, offset: 0x885D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x1B0, symBinAddr: 0x5E0F0, symSize: 0x20 } - - { offsetInCU: 0x2B2, offset: 0x88622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1130, symBinAddr: 0x5F070, symSize: 0x10 } - - { offsetInCU: 0x310, offset: 0x88680, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1150, symBinAddr: 0x5F090, symSize: 0x20 } - - { offsetInCU: 0x38A, offset: 0x886FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1180, symBinAddr: 0x5F0C0, symSize: 0x10 } - - { offsetInCU: 0x3B5, offset: 0x88725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1190, symBinAddr: 0x5F0D0, symSize: 0x20 } - - { offsetInCU: 0x3E6, offset: 0x88756, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x11B0, symBinAddr: 0x5F0F0, symSize: 0x10 } - - { offsetInCU: 0x402, offset: 0x88772, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11C0, symBinAddr: 0x5F100, symSize: 0x10 } - - { offsetInCU: 0x41E, offset: 0x8878E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8A90, symBinAddr: 0x65F30, symSize: 0x190 } - - { offsetInCU: 0x464, offset: 0x887D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D0, symBinAddr: 0x5E110, symSize: 0x2B0 } - - { offsetInCU: 0x4B9, offset: 0x88829, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1210, symBinAddr: 0x5F150, symSize: 0x50 } - - { offsetInCU: 0x4F0, offset: 0x88860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1260, symBinAddr: 0x5F1A0, symSize: 0x50 } - - { offsetInCU: 0x513, offset: 0x88883, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8C20, symBinAddr: 0x660C0, symSize: 0x1180 } - - { offsetInCU: 0x55D, offset: 0x888CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x480, symBinAddr: 0x5E3C0, symSize: 0x20 } - - { offsetInCU: 0x594, offset: 0x88904, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x4A0, symBinAddr: 0x5E3E0, symSize: 0x20 } - - { offsetInCU: 0x612, offset: 0x88982, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x12F0, symBinAddr: 0x5F230, symSize: 0x70 } - - { offsetInCU: 0x678, offset: 0x889E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1360, symBinAddr: 0x5F2A0, symSize: 0x30 } - - { offsetInCU: 0x694, offset: 0x88A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5F2D0, symSize: 0x10 } - - { offsetInCU: 0x6CA, offset: 0x88A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A0, symBinAddr: 0x5F2E0, symSize: 0x60 } - - { offsetInCU: 0x74F, offset: 0x88ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1400, symBinAddr: 0x5F340, symSize: 0x10 } - - { offsetInCU: 0x76B, offset: 0x88ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1410, symBinAddr: 0x5F350, symSize: 0x10 } - - { offsetInCU: 0x788, offset: 0x88AF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x4C0, symBinAddr: 0x5E400, symSize: 0x190 } - - { offsetInCU: 0x7DD, offset: 0x88B4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1460, symBinAddr: 0x5F3A0, symSize: 0x50 } - - { offsetInCU: 0x814, offset: 0x88B84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x14B0, symBinAddr: 0x5F3F0, symSize: 0x50 } - - { offsetInCU: 0x837, offset: 0x88BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9EF0, symBinAddr: 0x67390, symSize: 0x210 } - - { offsetInCU: 0x887, offset: 0x88BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x650, symBinAddr: 0x5E590, symSize: 0x20 } - - { offsetInCU: 0x8B0, offset: 0x88C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1500, symBinAddr: 0x5F440, symSize: 0x10 } - - { offsetInCU: 0x8DB, offset: 0x88C4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1510, symBinAddr: 0x5F450, symSize: 0x20 } - - { offsetInCU: 0x90C, offset: 0x88C7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1530, symBinAddr: 0x5F470, symSize: 0x10 } - - { offsetInCU: 0x928, offset: 0x88C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1540, symBinAddr: 0x5F480, symSize: 0x10 } - - { offsetInCU: 0x944, offset: 0x88CB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA100, symBinAddr: 0x675A0, symSize: 0x240 } - - { offsetInCU: 0x98A, offset: 0x88CFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x670, symBinAddr: 0x5E5B0, symSize: 0x2A0 } - - { offsetInCU: 0x9DF, offset: 0x88D4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1590, symBinAddr: 0x5F4D0, symSize: 0x50 } - - { offsetInCU: 0xA16, offset: 0x88D86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15E0, symBinAddr: 0x5F520, symSize: 0x50 } - - { offsetInCU: 0xA39, offset: 0x88DA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA340, symBinAddr: 0x677E0, symSize: 0x5E0 } - - { offsetInCU: 0xA89, offset: 0x88DF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x910, symBinAddr: 0x5E850, symSize: 0x30 } - - { offsetInCU: 0xAD8, offset: 0x88E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1630, symBinAddr: 0x5F570, symSize: 0x10 } - - { offsetInCU: 0xB61, offset: 0x88ED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1640, symBinAddr: 0x5F580, symSize: 0x40 } - - { offsetInCU: 0xC45, offset: 0x88FB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1680, symBinAddr: 0x5F5C0, symSize: 0x20 } - - { offsetInCU: 0xCB7, offset: 0x89027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x5F620, symSize: 0x10 } - - { offsetInCU: 0xCE2, offset: 0x89052, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x5F630, symSize: 0x20 } - - { offsetInCU: 0xD13, offset: 0x89083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1710, symBinAddr: 0x5F650, symSize: 0x10 } - - { offsetInCU: 0xD2F, offset: 0x8909F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1720, symBinAddr: 0x5F660, symSize: 0x10 } - - { offsetInCU: 0xD4B, offset: 0x890BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA920, symBinAddr: 0x67DC0, symSize: 0xA0 } - - { offsetInCU: 0xD91, offset: 0x89101, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x940, symBinAddr: 0x5E880, symSize: 0x110 } - - { offsetInCU: 0xDE6, offset: 0x89156, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5F6B0, symSize: 0x30 } - - { offsetInCU: 0xE1D, offset: 0x8918D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x5F6E0, symSize: 0x20 } - - { offsetInCU: 0xE40, offset: 0x891B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA9C0, symBinAddr: 0x67E60, symSize: 0x180 } - - { offsetInCU: 0xE91, offset: 0x89201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0xA50, symBinAddr: 0x5E990, symSize: 0x20 } - - { offsetInCU: 0xEBA, offset: 0x8922A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x5F780, symSize: 0x10 } - - { offsetInCU: 0xEE5, offset: 0x89255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x5F790, symSize: 0x20 } - - { offsetInCU: 0xF16, offset: 0x89286, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x5F7B0, symSize: 0x10 } - - { offsetInCU: 0xF32, offset: 0x892A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x5F7C0, symSize: 0x10 } - - { offsetInCU: 0xF4E, offset: 0x892BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAB40, symBinAddr: 0x67FE0, symSize: 0x1E0 } - - { offsetInCU: 0xF94, offset: 0x89304, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA70, symBinAddr: 0x5E9B0, symSize: 0x250 } - - { offsetInCU: 0xFE9, offset: 0x89359, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x5F810, symSize: 0x50 } - - { offsetInCU: 0x1020, offset: 0x89390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1920, symBinAddr: 0x5F860, symSize: 0x50 } - - { offsetInCU: 0x1043, offset: 0x893B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAD20, symBinAddr: 0x681C0, symSize: 0x840 } - - { offsetInCU: 0x108D, offset: 0x893FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xCC0, symBinAddr: 0x5EC00, symSize: 0x20 } - - { offsetInCU: 0x10C4, offset: 0x89434, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCE0, symBinAddr: 0x5EC20, symSize: 0x20 } - - { offsetInCU: 0x1137, offset: 0x894A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5FA00, symSize: 0x40 } - - { offsetInCU: 0x117D, offset: 0x894ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5FA40, symSize: 0x30 } - - { offsetInCU: 0x1191, offset: 0x89501, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1B30, symBinAddr: 0x5FA70, symSize: 0x10 } - - { offsetInCU: 0x11C7, offset: 0x89537, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5FA80, symSize: 0x30 } - - { offsetInCU: 0x122C, offset: 0x8959C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1B70, symBinAddr: 0x5FAB0, symSize: 0x10 } - - { offsetInCU: 0x1248, offset: 0x895B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B80, symBinAddr: 0x5FAC0, symSize: 0x10 } - - { offsetInCU: 0x1264, offset: 0x895D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xB5F0, symBinAddr: 0x68A90, symSize: 0x50 } - - { offsetInCU: 0x1290, offset: 0x89600, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x5EC40, symSize: 0x2E0 } - - { offsetInCU: 0x12E5, offset: 0x89655, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x5FB10, symSize: 0x50 } - - { offsetInCU: 0x131C, offset: 0x8968C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C20, symBinAddr: 0x5FB60, symSize: 0x50 } - - { offsetInCU: 0x133F, offset: 0x896AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB640, symBinAddr: 0x68AE0, symSize: 0x950 } - - { offsetInCU: 0x13B4, offset: 0x89724, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1C70, symBinAddr: 0x5FBB0, symSize: 0x1D0 } - - { offsetInCU: 0x1410, offset: 0x89780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x1E40, symBinAddr: 0x5FD80, symSize: 0x20 } - - { offsetInCU: 0x1455, offset: 0x897C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6930, symBinAddr: 0x64850, symSize: 0x50 } - - { offsetInCU: 0x14C0, offset: 0x89830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6980, symBinAddr: 0x648A0, symSize: 0x80 } - - { offsetInCU: 0x1514, offset: 0x89884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6A00, symBinAddr: 0x64920, symSize: 0x10 } - - { offsetInCU: 0x154A, offset: 0x898BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6A10, symBinAddr: 0x64930, symSize: 0x20 } - - { offsetInCU: 0x15CB, offset: 0x8993B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6A60, symBinAddr: 0x64980, symSize: 0x10 } - - { offsetInCU: 0x15E8, offset: 0x89958, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x1E60, symBinAddr: 0x5FDA0, symSize: 0x20 } - - { offsetInCU: 0x15FC, offset: 0x8996C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x1E80, symBinAddr: 0x5FDC0, symSize: 0x140 } - - { offsetInCU: 0x1610, offset: 0x89980, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x1FC0, symBinAddr: 0x5FF00, symSize: 0x500 } - - { offsetInCU: 0x1624, offset: 0x89994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x24C0, symBinAddr: 0x60400, symSize: 0xED0 } - - { offsetInCU: 0x163F, offset: 0x899AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x3390, symBinAddr: 0x612D0, symSize: 0x30 } - - { offsetInCU: 0x1668, offset: 0x899D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x33C0, symBinAddr: 0x61300, symSize: 0x20 } - - { offsetInCU: 0x167C, offset: 0x899EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x33E0, symBinAddr: 0x61320, symSize: 0x20 } - - { offsetInCU: 0x1690, offset: 0x89A00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x3400, symBinAddr: 0x61340, symSize: 0x20 } - - { offsetInCU: 0x16A4, offset: 0x89A14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x3420, symBinAddr: 0x61360, symSize: 0x20 } - - { offsetInCU: 0x16B8, offset: 0x89A28, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3440, symBinAddr: 0x61380, symSize: 0x10 } - - { offsetInCU: 0x16CC, offset: 0x89A3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x3450, symBinAddr: 0x61390, symSize: 0x580 } - - { offsetInCU: 0x16E0, offset: 0x89A50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x39D0, symBinAddr: 0x61910, symSize: 0x50 } - - { offsetInCU: 0x16F4, offset: 0x89A64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3A20, symBinAddr: 0x61960, symSize: 0x140 } - - { offsetInCU: 0x1708, offset: 0x89A78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x3B60, symBinAddr: 0x61AA0, symSize: 0x10 } - - { offsetInCU: 0x171C, offset: 0x89A8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3B70, symBinAddr: 0x61AB0, symSize: 0x30 } - - { offsetInCU: 0x1730, offset: 0x89AA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x3BA0, symBinAddr: 0x61AE0, symSize: 0x120 } - - { offsetInCU: 0x1744, offset: 0x89AB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x3CC0, symBinAddr: 0x61C00, symSize: 0x480 } - - { offsetInCU: 0x1758, offset: 0x89AC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x4140, symBinAddr: 0x62080, symSize: 0x9D0 } - - { offsetInCU: 0x176C, offset: 0x89ADC, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4B10, symBinAddr: 0x62A50, symSize: 0x10 } - - { offsetInCU: 0x1780, offset: 0x89AF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4B20, symBinAddr: 0x62A60, symSize: 0x500 } - - { offsetInCU: 0x1794, offset: 0x89B04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x5020, symBinAddr: 0x62F60, symSize: 0x50 } - - { offsetInCU: 0x17A8, offset: 0x89B18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x5070, symBinAddr: 0x62FB0, symSize: 0x130 } - - { offsetInCU: 0x17BC, offset: 0x89B2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x51A0, symBinAddr: 0x630E0, symSize: 0x10 } - - { offsetInCU: 0x17D0, offset: 0x89B40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x51B0, symBinAddr: 0x630F0, symSize: 0xC0 } - - { offsetInCU: 0x17E4, offset: 0x89B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x5270, symBinAddr: 0x631B0, symSize: 0x240 } - - { offsetInCU: 0x17F8, offset: 0x89B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x54B0, symBinAddr: 0x633F0, symSize: 0x450 } - - { offsetInCU: 0x180C, offset: 0x89B7C, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5900, symBinAddr: 0x63840, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x89B90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x5910, symBinAddr: 0x63850, symSize: 0x250 } - - { offsetInCU: 0x1834, offset: 0x89BA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x5B60, symBinAddr: 0x63AA0, symSize: 0x50 } - - { offsetInCU: 0x1848, offset: 0x89BB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x5BB0, symBinAddr: 0x63AF0, symSize: 0xA0 } - - { offsetInCU: 0x185C, offset: 0x89BCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x5C50, symBinAddr: 0x63B90, symSize: 0x10 } - - { offsetInCU: 0x1870, offset: 0x89BE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x5C60, symBinAddr: 0x63BA0, symSize: 0x70 } - - { offsetInCU: 0x1884, offset: 0x89BF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x5CD0, symBinAddr: 0x63C10, symSize: 0x150 } - - { offsetInCU: 0x1898, offset: 0x89C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x5E20, symBinAddr: 0x63D60, symSize: 0x190 } - - { offsetInCU: 0x18AC, offset: 0x89C1C, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5FB0, symBinAddr: 0x63EF0, symSize: 0x10 } - - { offsetInCU: 0x18C0, offset: 0x89C30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5FC0, symBinAddr: 0x63F00, symSize: 0x130 } - - { offsetInCU: 0x18D4, offset: 0x89C44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x60F0, symBinAddr: 0x64030, symSize: 0x50 } - - { offsetInCU: 0x18E8, offset: 0x89C58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x6140, symBinAddr: 0x64080, symSize: 0x80 } - - { offsetInCU: 0x18FC, offset: 0x89C6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x61C0, symBinAddr: 0x64100, symSize: 0x10 } - - { offsetInCU: 0x1910, offset: 0x89C80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x61D0, symBinAddr: 0x64110, symSize: 0x50 } - - { offsetInCU: 0x1924, offset: 0x89C94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x6220, symBinAddr: 0x64160, symSize: 0x120 } - - { offsetInCU: 0x1938, offset: 0x89CA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x6340, symBinAddr: 0x64280, symSize: 0x1C0 } - - { offsetInCU: 0x194C, offset: 0x89CBC, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6500, symBinAddr: 0x64440, symSize: 0x10 } - - { offsetInCU: 0x1960, offset: 0x89CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x6510, symBinAddr: 0x64450, symSize: 0x150 } - - { offsetInCU: 0x1974, offset: 0x89CE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x6660, symBinAddr: 0x645A0, symSize: 0x50 } - - { offsetInCU: 0x1988, offset: 0x89CF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x66B0, symBinAddr: 0x645F0, symSize: 0x80 } - - { offsetInCU: 0x199C, offset: 0x89D0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x6730, symBinAddr: 0x64670, symSize: 0x10 } - - { offsetInCU: 0x19B0, offset: 0x89D20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x6740, symBinAddr: 0x64680, symSize: 0x30 } - - { offsetInCU: 0x19C4, offset: 0x89D34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x6770, symBinAddr: 0x646B0, symSize: 0x40 } - - { offsetInCU: 0x19D8, offset: 0x89D48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x67B0, symBinAddr: 0x646F0, symSize: 0x60 } - - { offsetInCU: 0x19EC, offset: 0x89D5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x6830, symBinAddr: 0x64750, symSize: 0x50 } - - { offsetInCU: 0x1A00, offset: 0x89D70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x6880, symBinAddr: 0x647A0, symSize: 0x50 } - - { offsetInCU: 0x1A14, offset: 0x89D84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x68D0, symBinAddr: 0x647F0, symSize: 0x50 } - - { offsetInCU: 0x1A28, offset: 0x89D98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x6920, symBinAddr: 0x64840, symSize: 0x10 } - - { offsetInCU: 0x1A3C, offset: 0x89DAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x6A70, symBinAddr: 0x64990, symSize: 0x10 } - - { offsetInCU: 0x1A50, offset: 0x89DC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x6A80, symBinAddr: 0x649A0, symSize: 0x30 } - - { offsetInCU: 0x1A64, offset: 0x89DD4, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6B50, symBinAddr: 0x649D0, symSize: 0x30 } - - { offsetInCU: 0x1A78, offset: 0x89DE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x8020, symBinAddr: 0x65EA0, symSize: 0x30 } - - { offsetInCU: 0x1A8C, offset: 0x89DFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x8050, symBinAddr: 0x65ED0, symSize: 0x30 } - - { offsetInCU: 0x1AA0, offset: 0x89E10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x8A60, symBinAddr: 0x65F00, symSize: 0x30 } - - { offsetInCU: 0x1AB4, offset: 0x89E24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x9DA0, symBinAddr: 0x67240, symSize: 0x30 } - - { offsetInCU: 0x1AC8, offset: 0x89E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x67270, symSize: 0x30 } - - { offsetInCU: 0x1ADC, offset: 0x89E4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x9E00, symBinAddr: 0x672A0, symSize: 0x30 } - - { offsetInCU: 0x1AF0, offset: 0x89E60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x9E30, symBinAddr: 0x672D0, symSize: 0x30 } - - { offsetInCU: 0x1B04, offset: 0x89E74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x9E60, symBinAddr: 0x67300, symSize: 0x30 } - - { offsetInCU: 0x1B18, offset: 0x89E88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x9E90, symBinAddr: 0x67330, symSize: 0x30 } - - { offsetInCU: 0x1B2C, offset: 0x89E9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x9EC0, symBinAddr: 0x67360, symSize: 0x30 } - - { offsetInCU: 0x1B40, offset: 0x89EB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xB560, symBinAddr: 0x68A00, symSize: 0x30 } - - { offsetInCU: 0x1B54, offset: 0x89EC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xB590, symBinAddr: 0x68A30, symSize: 0x30 } - - { offsetInCU: 0x1B68, offset: 0x89ED8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xB5C0, symBinAddr: 0x68A60, symSize: 0x30 } - - { offsetInCU: 0x1B7C, offset: 0x89EEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xBF90, symBinAddr: 0x69430, symSize: 0x30 } - - { offsetInCU: 0x1B90, offset: 0x89F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xBFC0, symBinAddr: 0x69460, symSize: 0x30 } - - { offsetInCU: 0x1BA4, offset: 0x89F14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xBFF0, symBinAddr: 0x69490, symSize: 0x30 } - - { offsetInCU: 0x1BB8, offset: 0x89F28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xC050, symBinAddr: 0x694F0, symSize: 0x30 } - - { offsetInCU: 0x1BCC, offset: 0x89F3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xC080, symBinAddr: 0x69520, symSize: 0x30 } - - { offsetInCU: 0x1BE0, offset: 0x89F50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC0D0, symBinAddr: 0x69550, symSize: 0x80 } - - { offsetInCU: 0x1BF4, offset: 0x89F64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC150, symBinAddr: 0x695D0, symSize: 0xD0 } - - { offsetInCU: 0x1C08, offset: 0x89F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xC220, symBinAddr: 0x696A0, symSize: 0x10 } - - { offsetInCU: 0x1C1C, offset: 0x89F8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC230, symBinAddr: 0x696B0, symSize: 0x10 } - - { offsetInCU: 0x1C30, offset: 0x89FA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xC240, symBinAddr: 0x696C0, symSize: 0x10 } - - { offsetInCU: 0x1C44, offset: 0x89FB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC250, symBinAddr: 0x696D0, symSize: 0x10 } - - { offsetInCU: 0x1C58, offset: 0x89FC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC260, symBinAddr: 0x696E0, symSize: 0x80 } - - { offsetInCU: 0x1C6C, offset: 0x89FDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC2E0, symBinAddr: 0x69760, symSize: 0xD0 } - - { offsetInCU: 0x1C80, offset: 0x89FF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC3B0, symBinAddr: 0x69830, symSize: 0x10 } - - { offsetInCU: 0x1C94, offset: 0x8A004, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC3C0, symBinAddr: 0x69840, symSize: 0x10 } - - { offsetInCU: 0x1CA8, offset: 0x8A018, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xC3D0, symBinAddr: 0x69850, symSize: 0x80 } - - { offsetInCU: 0x1CBC, offset: 0x8A02C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xC450, symBinAddr: 0x698D0, symSize: 0xD0 } - - { offsetInCU: 0x1CD0, offset: 0x8A040, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xC520, symBinAddr: 0x699A0, symSize: 0x10 } - - { offsetInCU: 0x1CE4, offset: 0x8A054, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xC530, symBinAddr: 0x699B0, symSize: 0x10 } - - { offsetInCU: 0x1CF8, offset: 0x8A068, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC540, symBinAddr: 0x699C0, symSize: 0x80 } - - { offsetInCU: 0x1D0C, offset: 0x8A07C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC5C0, symBinAddr: 0x69A40, symSize: 0xD0 } - - { offsetInCU: 0x1D20, offset: 0x8A090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC690, symBinAddr: 0x69B10, symSize: 0x10 } - - { offsetInCU: 0x1D34, offset: 0x8A0A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC6A0, symBinAddr: 0x69B20, symSize: 0x10 } - - { offsetInCU: 0x1D48, offset: 0x8A0B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC6B0, symBinAddr: 0x69B30, symSize: 0x80 } - - { offsetInCU: 0x1D5C, offset: 0x8A0CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC730, symBinAddr: 0x69BB0, symSize: 0xD0 } - - { offsetInCU: 0x1D70, offset: 0x8A0E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xC800, symBinAddr: 0x69C80, symSize: 0x10 } - - { offsetInCU: 0x1D84, offset: 0x8A0F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC810, symBinAddr: 0x69C90, symSize: 0x10 } - - { offsetInCU: 0x1D98, offset: 0x8A108, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xC820, symBinAddr: 0x69CA0, symSize: 0x10 } - - { offsetInCU: 0x1DAC, offset: 0x8A11C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC830, symBinAddr: 0x69CB0, symSize: 0x10 } - - { offsetInCU: 0x1DC0, offset: 0x8A130, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC840, symBinAddr: 0x69CC0, symSize: 0x80 } - - { offsetInCU: 0x1DD4, offset: 0x8A144, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC8C0, symBinAddr: 0x69D40, symSize: 0xD0 } - - { offsetInCU: 0x1DE8, offset: 0x8A158, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC990, symBinAddr: 0x69E10, symSize: 0x10 } - - { offsetInCU: 0x1DFC, offset: 0x8A16C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC9A0, symBinAddr: 0x69E20, symSize: 0x10 } - - { offsetInCU: 0x1E10, offset: 0x8A180, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xC9B0, symBinAddr: 0x69E30, symSize: 0x30 } - - { offsetInCU: 0x1E24, offset: 0x8A194, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xC9E0, symBinAddr: 0x69E60, symSize: 0x20 } - - { offsetInCU: 0x1E38, offset: 0x8A1A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xCA00, symBinAddr: 0x69E80, symSize: 0x40 } - - { offsetInCU: 0x1E4C, offset: 0x8A1BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xCA40, symBinAddr: 0x69EC0, symSize: 0x10 } - - { offsetInCU: 0x1E60, offset: 0x8A1D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCA50, symBinAddr: 0x69ED0, symSize: 0x10 } - - { offsetInCU: 0x1E74, offset: 0x8A1E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCA60, symBinAddr: 0x69EE0, symSize: 0x30 } - - { offsetInCU: 0x1E88, offset: 0x8A1F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCA90, symBinAddr: 0x69F10, symSize: 0x10 } - - { offsetInCU: 0x1E9C, offset: 0x8A20C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCAA0, symBinAddr: 0x69F20, symSize: 0x30 } - - { offsetInCU: 0x1EB0, offset: 0x8A220, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCAD0, symBinAddr: 0x69F50, symSize: 0x10 } - - { offsetInCU: 0x1EC4, offset: 0x8A234, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCAE0, symBinAddr: 0x69F60, symSize: 0x30 } - - { offsetInCU: 0x1ED8, offset: 0x8A248, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xCB10, symBinAddr: 0x69F90, symSize: 0x10 } - - { offsetInCU: 0x1EEC, offset: 0x8A25C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xCB20, symBinAddr: 0x69FA0, symSize: 0x30 } - - { offsetInCU: 0x1F00, offset: 0x8A270, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCB50, symBinAddr: 0x69FD0, symSize: 0x10 } - - { offsetInCU: 0x1F14, offset: 0x8A284, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCB60, symBinAddr: 0x69FE0, symSize: 0x30 } - - { offsetInCU: 0x1F28, offset: 0x8A298, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCB90, symBinAddr: 0x6A010, symSize: 0x10 } - - { offsetInCU: 0x1F3C, offset: 0x8A2AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCBA0, symBinAddr: 0x6A020, symSize: 0x30 } - - { offsetInCU: 0x1F50, offset: 0x8A2C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCBD0, symBinAddr: 0x6A050, symSize: 0x10 } - - { offsetInCU: 0x1F64, offset: 0x8A2D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCBE0, symBinAddr: 0x6A060, symSize: 0x30 } - - { offsetInCU: 0x1F78, offset: 0x8A2E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC10, symBinAddr: 0x6A090, symSize: 0x10 } - - { offsetInCU: 0x1F8C, offset: 0x8A2FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCC20, symBinAddr: 0x6A0A0, symSize: 0x30 } - - { offsetInCU: 0x1FA0, offset: 0x8A310, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCC50, symBinAddr: 0x6A0D0, symSize: 0x10 } - - { offsetInCU: 0x1FB4, offset: 0x8A324, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCC60, symBinAddr: 0x6A0E0, symSize: 0x30 } - - { offsetInCU: 0x1FC8, offset: 0x8A338, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC90, symBinAddr: 0x6A110, symSize: 0x10 } - - { offsetInCU: 0x1FDC, offset: 0x8A34C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCCA0, symBinAddr: 0x6A120, symSize: 0x30 } - - { offsetInCU: 0x1FF0, offset: 0x8A360, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCCD0, symBinAddr: 0x6A150, symSize: 0x10 } - - { offsetInCU: 0x2004, offset: 0x8A374, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCCE0, symBinAddr: 0x6A160, symSize: 0x30 } - - { offsetInCU: 0x2018, offset: 0x8A388, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD10, symBinAddr: 0x6A190, symSize: 0x10 } - - { offsetInCU: 0x202C, offset: 0x8A39C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xCD20, symBinAddr: 0x6A1A0, symSize: 0x30 } - - { offsetInCU: 0x2040, offset: 0x8A3B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCD50, symBinAddr: 0x6A1D0, symSize: 0x10 } - - { offsetInCU: 0x2054, offset: 0x8A3C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCD60, symBinAddr: 0x6A1E0, symSize: 0x30 } - - { offsetInCU: 0x2068, offset: 0x8A3D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD90, symBinAddr: 0x6A210, symSize: 0x10 } - - { offsetInCU: 0x207C, offset: 0x8A3EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCDA0, symBinAddr: 0x6A220, symSize: 0x30 } - - { offsetInCU: 0x2090, offset: 0x8A400, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCDD0, symBinAddr: 0x6A250, symSize: 0x10 } - - { offsetInCU: 0x20A4, offset: 0x8A414, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCDE0, symBinAddr: 0x6A260, symSize: 0x30 } - - { offsetInCU: 0x20B8, offset: 0x8A428, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE10, symBinAddr: 0x6A290, symSize: 0x10 } - - { offsetInCU: 0x20CC, offset: 0x8A43C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCE20, symBinAddr: 0x6A2A0, symSize: 0x30 } - - { offsetInCU: 0x20E0, offset: 0x8A450, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCE50, symBinAddr: 0x6A2D0, symSize: 0x10 } - - { offsetInCU: 0x20F4, offset: 0x8A464, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCE60, symBinAddr: 0x6A2E0, symSize: 0x30 } - - { offsetInCU: 0x2108, offset: 0x8A478, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE90, symBinAddr: 0x6A310, symSize: 0x10 } - - { offsetInCU: 0x211C, offset: 0x8A48C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCEA0, symBinAddr: 0x6A320, symSize: 0x30 } - - { offsetInCU: 0x2130, offset: 0x8A4A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xCED0, symBinAddr: 0x6A350, symSize: 0x30 } - - { offsetInCU: 0x2144, offset: 0x8A4B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xCF00, symBinAddr: 0x6A380, symSize: 0x80 } - - { offsetInCU: 0x2158, offset: 0x8A4C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xCF80, symBinAddr: 0x6A400, symSize: 0xD0 } - - { offsetInCU: 0x216C, offset: 0x8A4DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xD050, symBinAddr: 0x6A4D0, symSize: 0x10 } - - { offsetInCU: 0x2180, offset: 0x8A4F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xD060, symBinAddr: 0x6A4E0, symSize: 0x10 } - - { offsetInCU: 0x2194, offset: 0x8A504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD070, symBinAddr: 0x6A4F0, symSize: 0x10 } - - { offsetInCU: 0x21A8, offset: 0x8A518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD080, symBinAddr: 0x6A500, symSize: 0x30 } - - { offsetInCU: 0x21BC, offset: 0x8A52C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD0B0, symBinAddr: 0x6A530, symSize: 0x10 } - - { offsetInCU: 0x21D0, offset: 0x8A540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD0C0, symBinAddr: 0x6A540, symSize: 0x30 } - - { offsetInCU: 0x21E4, offset: 0x8A554, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD0F0, symBinAddr: 0x6A570, symSize: 0x10 } - - { offsetInCU: 0x21F8, offset: 0x8A568, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD100, symBinAddr: 0x6A580, symSize: 0x30 } - - { offsetInCU: 0x2226, offset: 0x8A596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1050, symBinAddr: 0x5EF90, symSize: 0x20 } - - { offsetInCU: 0x2242, offset: 0x8A5B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1070, symBinAddr: 0x5EFB0, symSize: 0x20 } - - { offsetInCU: 0x2264, offset: 0x8A5D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11D0, symBinAddr: 0x5F110, symSize: 0x20 } - - { offsetInCU: 0x2280, offset: 0x8A5F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11F0, symBinAddr: 0x5F130, symSize: 0x20 } - - { offsetInCU: 0x229C, offset: 0x8A60C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x12B0, symBinAddr: 0x5F1F0, symSize: 0x10 } - - { offsetInCU: 0x22B8, offset: 0x8A628, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12C0, symBinAddr: 0x5F200, symSize: 0x10 } - - { offsetInCU: 0x22D4, offset: 0x8A644, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x12D0, symBinAddr: 0x5F210, symSize: 0x10 } - - { offsetInCU: 0x22F0, offset: 0x8A660, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x12E0, symBinAddr: 0x5F220, symSize: 0x10 } - - { offsetInCU: 0x2312, offset: 0x8A682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1420, symBinAddr: 0x5F360, symSize: 0x20 } - - { offsetInCU: 0x232E, offset: 0x8A69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1440, symBinAddr: 0x5F380, symSize: 0x20 } - - { offsetInCU: 0x2350, offset: 0x8A6C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1550, symBinAddr: 0x5F490, symSize: 0x20 } - - { offsetInCU: 0x236C, offset: 0x8A6DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x5F4B0, symSize: 0x20 } - - { offsetInCU: 0x23B5, offset: 0x8A725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x16A0, symBinAddr: 0x5F5E0, symSize: 0x40 } - - { offsetInCU: 0x2458, offset: 0x8A7C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1730, symBinAddr: 0x5F670, symSize: 0x20 } - - { offsetInCU: 0x2474, offset: 0x8A7E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x5F690, symSize: 0x20 } - - { offsetInCU: 0x2496, offset: 0x8A806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x5F7D0, symSize: 0x20 } - - { offsetInCU: 0x24B2, offset: 0x8A822, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5F7F0, symSize: 0x20 } - - { offsetInCU: 0x24EC, offset: 0x8A85C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1970, symBinAddr: 0x5F8B0, symSize: 0x80 } - - { offsetInCU: 0x25BB, offset: 0x8A92B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5F930, symSize: 0x50 } - - { offsetInCU: 0x2639, offset: 0x8A9A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A40, symBinAddr: 0x5F980, symSize: 0x30 } - - { offsetInCU: 0x268B, offset: 0x8A9FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A70, symBinAddr: 0x5F9B0, symSize: 0x50 } - - { offsetInCU: 0x26ED, offset: 0x8AA5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1B90, symBinAddr: 0x5FAD0, symSize: 0x20 } - - { offsetInCU: 0x2709, offset: 0x8AA79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x5FAF0, symSize: 0x20 } - - { offsetInCU: 0x2740, offset: 0x8AAB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6A30, symBinAddr: 0x64950, symSize: 0x30 } - - { offsetInCU: 0x27, offset: 0x8ACBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6A750, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x8ACDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6A750, symSize: 0x10 } - - { offsetInCU: 0x69, offset: 0x8ACFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x6A760, symSize: 0x10 } - - { offsetInCU: 0xA5, offset: 0x8AD38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x6A770, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8AD56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x6A780, symSize: 0x10 } - - { offsetInCU: 0xEE, offset: 0x8AD81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x6A790, symSize: 0x10 } - - { offsetInCU: 0x10C, offset: 0x8AD9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x6A7A0, symSize: 0x10 } - - { offsetInCU: 0x148, offset: 0x8ADDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x6A7B0, symSize: 0x20 } - - { offsetInCU: 0x176, offset: 0x8AE09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x6A7D0, symSize: 0x10 } - - { offsetInCU: 0x1A1, offset: 0x8AE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x6A7E0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x8AE52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x6A7F0, symSize: 0x10 } - - { offsetInCU: 0x1FD, offset: 0x8AE90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x6A800, symSize: 0x20 } - - { offsetInCU: 0x22B, offset: 0x8AEBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x6A820, symSize: 0x10 } - - { offsetInCU: 0x257, offset: 0x8AEEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x6A830, symSize: 0x40 } - - { offsetInCU: 0x26B, offset: 0x8AEFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x6A870, symSize: 0x50 } - - { offsetInCU: 0x27F, offset: 0x8AF12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x6A8C0, symSize: 0xA } - - { offsetInCU: 0x2B, offset: 0x8B02E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A8D0, symSize: 0x30 } - - { offsetInCU: 0x6D, offset: 0x8B070, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A8D0, symSize: 0x30 } - - { offsetInCU: 0xB9, offset: 0x8B0BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x6A900, symSize: 0x14 } - - { offsetInCU: 0x27, offset: 0x8B1D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6A920, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B217, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6A920, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8B263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6A940, symSize: 0x14 } - - { offsetInCU: 0x2B, offset: 0x8B380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A960, symSize: 0x50 } - - { offsetInCU: 0x6D, offset: 0x8B3C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A960, symSize: 0x50 } - - { offsetInCU: 0xB9, offset: 0x8B40E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x6A9B0, symSize: 0x10 } - - { offsetInCU: 0xCD, offset: 0x8B422, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x6A9C0, symSize: 0x30 } - - { offsetInCU: 0xE1, offset: 0x8B436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x6A9F0, symSize: 0x69 } - - { offsetInCU: 0x27, offset: 0x8B54F, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AA60, symSize: 0x430 } - - { offsetInCU: 0xD9, offset: 0x8B601, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AA60, symSize: 0x430 } - - { offsetInCU: 0x2B2, offset: 0x8B7DA, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x6AE90, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x8B984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6AED0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B9C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6AED0, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8BA12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6AEF0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x8BB53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x6AF10, symSize: 0x70 } - - { offsetInCU: 0x7A, offset: 0x8BB7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x6AFB0, symSize: 0x30 } - - { offsetInCU: 0xBE, offset: 0x8BBC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x9D0, symBinAddr: 0x6B8A0, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8BC31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA50, symBinAddr: 0x6B920, symSize: 0x20 } - - { offsetInCU: 0x149, offset: 0x8BC4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA70, symBinAddr: 0x6B940, symSize: 0x20 } - - { offsetInCU: 0x177, offset: 0x8BC7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA90, symBinAddr: 0x6B960, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8BD0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x6AF80, symSize: 0x30 } - - { offsetInCU: 0x230, offset: 0x8BD34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAE0, symBinAddr: 0x6B9B0, symSize: 0x70 } - - { offsetInCU: 0x25B, offset: 0x8BD5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xB90, symBinAddr: 0x6BA60, symSize: 0x20 } - - { offsetInCU: 0x277, offset: 0x8BD7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xBB0, symBinAddr: 0x6BA80, symSize: 0x20 } - - { offsetInCU: 0x4CA, offset: 0x8BFCE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x8E0, symBinAddr: 0x6B7B0, symSize: 0xF0 } - - { offsetInCU: 0x546, offset: 0x8C04A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBD0, symBinAddr: 0x6BAA0, symSize: 0x490 } - - { offsetInCU: 0x79D, offset: 0x8C2A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1060, symBinAddr: 0x6BF30, symSize: 0x150 } - - { offsetInCU: 0x921, offset: 0x8C425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x11B0, symBinAddr: 0x6C080, symSize: 0x9A0 } - - { offsetInCU: 0xECB, offset: 0x8C9CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B50, symBinAddr: 0x6CA20, symSize: 0x7A0 } - - { offsetInCU: 0x127B, offset: 0x8CD7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x22F0, symBinAddr: 0x6D1C0, symSize: 0x540 } - - { offsetInCU: 0x141A, offset: 0x8CF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2830, symBinAddr: 0x6D700, symSize: 0x680 } - - { offsetInCU: 0x191F, offset: 0x8D423, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2EB0, symBinAddr: 0x6DD80, symSize: 0x130 } - - { offsetInCU: 0x1A0F, offset: 0x8D513, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2FE0, symBinAddr: 0x6DEB0, symSize: 0x30 } - - { offsetInCU: 0x1A52, offset: 0x8D556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3620, symBinAddr: 0x6E480, symSize: 0x200 } - - { offsetInCU: 0x1B03, offset: 0x8D607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3820, symBinAddr: 0x6E680, symSize: 0x220 } - - { offsetInCU: 0x1B68, offset: 0x8D66C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3A40, symBinAddr: 0x6E8A0, symSize: 0x240 } - - { offsetInCU: 0x1C90, offset: 0x8D794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3CB0, symBinAddr: 0x6EAE0, symSize: 0x290 } - - { offsetInCU: 0x1DCF, offset: 0x8D8D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3F40, symBinAddr: 0x6ED70, symSize: 0x170 } - - { offsetInCU: 0x1E15, offset: 0x8D919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x40B0, symBinAddr: 0x6EEE0, symSize: 0x570 } - - { offsetInCU: 0x2166, offset: 0x8DC6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4620, symBinAddr: 0x6F450, symSize: 0xD0 } - - { offsetInCU: 0x224C, offset: 0x8DD50, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x3080, symBinAddr: 0x6DF50, symSize: 0x10 } - - { offsetInCU: 0x228E, offset: 0x8DD92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3090, symBinAddr: 0x6DF60, symSize: 0x10 } - - { offsetInCU: 0x22A2, offset: 0x8DDA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x30A0, symBinAddr: 0x6DF70, symSize: 0x30 } - - { offsetInCU: 0x22B6, offset: 0x8DDBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x30D0, symBinAddr: 0x6DFA0, symSize: 0x10 } - - { offsetInCU: 0x22CA, offset: 0x8DDCE, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x30E0, symBinAddr: 0x6DFB0, symSize: 0x40 } - - { offsetInCU: 0x22DE, offset: 0x8DDE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x3160, symBinAddr: 0x6DFF0, symSize: 0x10 } - - { offsetInCU: 0x22F2, offset: 0x8DDF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x3170, symBinAddr: 0x6E000, symSize: 0x30 } - - { offsetInCU: 0x2306, offset: 0x8DE0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x31C0, symBinAddr: 0x6E030, symSize: 0x80 } - - { offsetInCU: 0x231A, offset: 0x8DE1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x3240, symBinAddr: 0x6E0B0, symSize: 0xD0 } - - { offsetInCU: 0x232E, offset: 0x8DE32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3310, symBinAddr: 0x6E180, symSize: 0x10 } - - { offsetInCU: 0x2342, offset: 0x8DE46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3320, symBinAddr: 0x6E190, symSize: 0x10 } - - { offsetInCU: 0x2356, offset: 0x8DE5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x3330, symBinAddr: 0x6E1A0, symSize: 0x10 } - - { offsetInCU: 0x236A, offset: 0x8DE6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x3340, symBinAddr: 0x6E1B0, symSize: 0x10 } - - { offsetInCU: 0x237E, offset: 0x8DE82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x3350, symBinAddr: 0x6E1C0, symSize: 0x80 } - - { offsetInCU: 0x2392, offset: 0x8DE96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x33D0, symBinAddr: 0x6E240, symSize: 0xD0 } - - { offsetInCU: 0x23A6, offset: 0x8DEAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x34A0, symBinAddr: 0x6E310, symSize: 0x10 } - - { offsetInCU: 0x23BA, offset: 0x8DEBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x34B0, symBinAddr: 0x6E320, symSize: 0x10 } - - { offsetInCU: 0x23CE, offset: 0x8DED2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x34C0, symBinAddr: 0x6E330, symSize: 0x10 } - - { offsetInCU: 0x23E2, offset: 0x8DEE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x34D0, symBinAddr: 0x6E340, symSize: 0x10 } - - { offsetInCU: 0x23F6, offset: 0x8DEFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x34E0, symBinAddr: 0x6E350, symSize: 0x20 } - - { offsetInCU: 0x240A, offset: 0x8DF0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3510, symBinAddr: 0x6E370, symSize: 0x10 } - - { offsetInCU: 0x241E, offset: 0x8DF22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3520, symBinAddr: 0x6E380, symSize: 0x10 } - - { offsetInCU: 0x2432, offset: 0x8DF36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3530, symBinAddr: 0x6E390, symSize: 0x30 } - - { offsetInCU: 0x2446, offset: 0x8DF4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x3560, symBinAddr: 0x6E3C0, symSize: 0x10 } - - { offsetInCU: 0x245A, offset: 0x8DF5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x3570, symBinAddr: 0x6E3D0, symSize: 0x10 } - - { offsetInCU: 0x246E, offset: 0x8DF72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3580, symBinAddr: 0x6E3E0, symSize: 0x30 } - - { offsetInCU: 0x2482, offset: 0x8DF86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x35B0, symBinAddr: 0x6E410, symSize: 0x10 } - - { offsetInCU: 0x24A1, offset: 0x8DFA5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x35C0, symBinAddr: 0x6E420, symSize: 0x20 } - - { offsetInCU: 0x24D9, offset: 0x8DFDD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x35E0, symBinAddr: 0x6E440, symSize: 0x20 } - - { offsetInCU: 0x2511, offset: 0x8E015, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3600, symBinAddr: 0x6E460, symSize: 0x20 } - - { offsetInCU: 0x2575, offset: 0x8E079, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x4750, symBinAddr: 0x6F580, symSize: 0x40 } - - { offsetInCU: 0x2589, offset: 0x8E08D, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x47F0, symBinAddr: 0x6F5C0, symSize: 0x30 } - - { offsetInCU: 0x259D, offset: 0x8E0A1, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4820, symBinAddr: 0x6F5F0, symSize: 0x30 } - - { offsetInCU: 0x25B1, offset: 0x8E0B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4890, symBinAddr: 0x6F640, symSize: 0x20 } - - { offsetInCU: 0x25C5, offset: 0x8E0C9, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x48B0, symBinAddr: 0x6F660, symSize: 0x20 } - - { offsetInCU: 0x25D9, offset: 0x8E0DD, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x48D0, symBinAddr: 0x6F680, symSize: 0x10 } - - { offsetInCU: 0x25ED, offset: 0x8E0F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4940, symBinAddr: 0x6F690, symSize: 0x20 } - - { offsetInCU: 0x2601, offset: 0x8E105, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x49F0, symBinAddr: 0x6F740, symSize: 0x10 } - - { offsetInCU: 0x2630, offset: 0x8E134, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x110, symBinAddr: 0x6AFE0, symSize: 0x10 } - - { offsetInCU: 0x2698, offset: 0x8E19C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x6AFF0, symSize: 0x30 } - - { offsetInCU: 0x2716, offset: 0x8E21A, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x150, symBinAddr: 0x6B020, symSize: 0x70 } - - { offsetInCU: 0x27A5, offset: 0x8E2A9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x1C0, symBinAddr: 0x6B090, symSize: 0x70 } - - { offsetInCU: 0x2834, offset: 0x8E338, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x230, symBinAddr: 0x6B100, symSize: 0x90 } - - { offsetInCU: 0x28CB, offset: 0x8E3CF, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x2C0, symBinAddr: 0x6B190, symSize: 0x60 } - - { offsetInCU: 0x29A5, offset: 0x8E4A9, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x320, symBinAddr: 0x6B1F0, symSize: 0x60 } - - { offsetInCU: 0x2A7F, offset: 0x8E583, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x380, symBinAddr: 0x6B250, symSize: 0x60 } - - { offsetInCU: 0x2AF4, offset: 0x8E5F8, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x3E0, symBinAddr: 0x6B2B0, symSize: 0x40 } - - { offsetInCU: 0x2B51, offset: 0x8E655, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x420, symBinAddr: 0x6B2F0, symSize: 0x40 } - - { offsetInCU: 0x2BAE, offset: 0x8E6B2, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x460, symBinAddr: 0x6B330, symSize: 0x40 } - - { offsetInCU: 0x2BD7, offset: 0x8E6DB, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x4A0, symBinAddr: 0x6B370, symSize: 0x60 } - - { offsetInCU: 0x2C2A, offset: 0x8E72E, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x500, symBinAddr: 0x6B3D0, symSize: 0x60 } - - { offsetInCU: 0x2CA6, offset: 0x8E7AA, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x560, symBinAddr: 0x6B430, symSize: 0x60 } - - { offsetInCU: 0x2D37, offset: 0x8E83B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5C0, symBinAddr: 0x6B490, symSize: 0xB0 } - - { offsetInCU: 0x2EB0, offset: 0x8E9B4, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x670, symBinAddr: 0x6B540, symSize: 0x50 } - - { offsetInCU: 0x2F7C, offset: 0x8EA80, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6C0, symBinAddr: 0x6B590, symSize: 0x90 } - - { offsetInCU: 0x2FFC, offset: 0x8EB00, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x750, symBinAddr: 0x6B620, symSize: 0x80 } - - { offsetInCU: 0x3076, offset: 0x8EB7A, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7D0, symBinAddr: 0x6B6A0, symSize: 0xD0 } - - { offsetInCU: 0x3153, offset: 0x8EC57, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8A0, symBinAddr: 0x6B770, symSize: 0x40 } - - { offsetInCU: 0x31E4, offset: 0x8ECE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA10, symBinAddr: 0x6B8E0, symSize: 0x10 } - - { offsetInCU: 0x3200, offset: 0x8ED04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA20, symBinAddr: 0x6B8F0, symSize: 0x10 } - - { offsetInCU: 0x321C, offset: 0x8ED20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA30, symBinAddr: 0x6B900, symSize: 0x10 } - - { offsetInCU: 0x3230, offset: 0x8ED34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA40, symBinAddr: 0x6B910, symSize: 0x10 } - - { offsetInCU: 0x324A, offset: 0x8ED4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x6BA20, symSize: 0x10 } - - { offsetInCU: 0x3266, offset: 0x8ED6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB60, symBinAddr: 0x6BA30, symSize: 0x10 } - - { offsetInCU: 0x3282, offset: 0x8ED86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB70, symBinAddr: 0x6BA40, symSize: 0x10 } - - { offsetInCU: 0x3296, offset: 0x8ED9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB80, symBinAddr: 0x6BA50, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x8F235, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6F780, symSize: 0x1A0 } - - { offsetInCU: 0x57, offset: 0x8F249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6F920, symSize: 0x90 } - - { offsetInCU: 0x6B, offset: 0x8F25D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6F9B0, symSize: 0x170 } - - { offsetInCU: 0x7F, offset: 0x8F271, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6FB20, symSize: 0x1F0 } - - { offsetInCU: 0x93, offset: 0x8F285, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6FD10, symSize: 0xE0 } - - { offsetInCU: 0xA7, offset: 0x8F299, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x6FDF0, symSize: 0x1C0 } - - { offsetInCU: 0xBB, offset: 0x8F2AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x6FFB0, symSize: 0x20 } - - { offsetInCU: 0xCF, offset: 0x8F2C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x70040, symSize: 0x20 } - - { offsetInCU: 0xE3, offset: 0x8F2D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x700E0, symSize: 0x90 } - - { offsetInCU: 0xF7, offset: 0x8F2E9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x70170, symSize: 0x50 } - - { offsetInCU: 0x10B, offset: 0x8F2FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x701C0, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8F311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x702E0, symSize: 0x70 } - - { offsetInCU: 0x133, offset: 0x8F325, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x70350, symSize: 0xF0 } - - { offsetInCU: 0x147, offset: 0x8F339, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x70440, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8F34D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x705A0, symSize: 0xC0 } - - { offsetInCU: 0x16F, offset: 0x8F361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x70660, symSize: 0x150 } - - { offsetInCU: 0x183, offset: 0x8F375, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x707B0, symSize: 0x20 } - - { offsetInCU: 0x197, offset: 0x8F389, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x70840, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x8F39D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x70900, symSize: 0x80 } - - { offsetInCU: 0x1DD, offset: 0x8F3CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1240, symBinAddr: 0x70980, symSize: 0x20 } - - { offsetInCU: 0x22A, offset: 0x8F41C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x70ED0, symSize: 0x10 } - - { offsetInCU: 0x288, offset: 0x8F47A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17B0, symBinAddr: 0x70EF0, symSize: 0x20 } - - { offsetInCU: 0x302, offset: 0x8F4F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x70F20, symSize: 0x10 } - - { offsetInCU: 0x32D, offset: 0x8F51F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x70F30, symSize: 0x20 } - - { offsetInCU: 0x35E, offset: 0x8F550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x70F50, symSize: 0x10 } - - { offsetInCU: 0x37A, offset: 0x8F56C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x70F60, symSize: 0x10 } - - { offsetInCU: 0x396, offset: 0x8F588, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E80, symBinAddr: 0x72490, symSize: 0x160 } - - { offsetInCU: 0x3DC, offset: 0x8F5CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1260, symBinAddr: 0x709A0, symSize: 0x1F0 } - - { offsetInCU: 0x41B, offset: 0x8F60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1450, symBinAddr: 0x70B90, symSize: 0x340 } - - { offsetInCU: 0x44C, offset: 0x8F63E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x70FB0, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x8F661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1880, symBinAddr: 0x70FC0, symSize: 0x10 } - - { offsetInCU: 0x4C7, offset: 0x8F6B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x70FD0, symSize: 0x20 } - - { offsetInCU: 0x4F0, offset: 0x8F6E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x711C0, symSize: 0x10 } - - { offsetInCU: 0x51B, offset: 0x8F70D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x711D0, symSize: 0x20 } - - { offsetInCU: 0x54C, offset: 0x8F73E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB0, symBinAddr: 0x711F0, symSize: 0x10 } - - { offsetInCU: 0x568, offset: 0x8F75A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x71200, symSize: 0x10 } - - { offsetInCU: 0x584, offset: 0x8F776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FE0, symBinAddr: 0x725F0, symSize: 0x120 } - - { offsetInCU: 0x5CA, offset: 0x8F7BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x70FF0, symSize: 0x1B0 } - - { offsetInCU: 0x61F, offset: 0x8F811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B10, symBinAddr: 0x71250, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x8F848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B50, symBinAddr: 0x71290, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x8F86B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3100, symBinAddr: 0x72710, symSize: 0x2B0 } - - { offsetInCU: 0x6C9, offset: 0x8F8BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1B90, symBinAddr: 0x712D0, symSize: 0x20 } - - { offsetInCU: 0x6F2, offset: 0x8F8E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23C0, symBinAddr: 0x71B00, symSize: 0x10 } - - { offsetInCU: 0x71D, offset: 0x8F90F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23D0, symBinAddr: 0x71B10, symSize: 0x20 } - - { offsetInCU: 0x74E, offset: 0x8F940, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23F0, symBinAddr: 0x71B30, symSize: 0x10 } - - { offsetInCU: 0x76A, offset: 0x8F95C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2400, symBinAddr: 0x71B40, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x8F978, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33B0, symBinAddr: 0x729C0, symSize: 0x250 } - - { offsetInCU: 0x7CC, offset: 0x8F9BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BB0, symBinAddr: 0x712F0, symSize: 0x2B0 } - - { offsetInCU: 0x80B, offset: 0x8F9FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E60, symBinAddr: 0x715A0, symSize: 0x4E0 } - - { offsetInCU: 0x83C, offset: 0x8FA2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2450, symBinAddr: 0x71B90, symSize: 0x10 } - - { offsetInCU: 0x85F, offset: 0x8FA51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2460, symBinAddr: 0x71BA0, symSize: 0x10 } - - { offsetInCU: 0x883, offset: 0x8FA75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x24A0, symBinAddr: 0x71BB0, symSize: 0x30 } - - { offsetInCU: 0x897, offset: 0x8FA89, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2500, symBinAddr: 0x71BE0, symSize: 0x30 } - - { offsetInCU: 0x8AB, offset: 0x8FA9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x25A0, symBinAddr: 0x71C40, symSize: 0x30 } - - { offsetInCU: 0x8BF, offset: 0x8FAB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2610, symBinAddr: 0x71C70, symSize: 0x30 } - - { offsetInCU: 0x8D3, offset: 0x8FAC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x2700, symBinAddr: 0x71D60, symSize: 0x30 } - - { offsetInCU: 0x8E7, offset: 0x8FAD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2750, symBinAddr: 0x71D90, symSize: 0x80 } - - { offsetInCU: 0x8FB, offset: 0x8FAED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x27D0, symBinAddr: 0x71E10, symSize: 0xD0 } - - { offsetInCU: 0x90F, offset: 0x8FB01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x28A0, symBinAddr: 0x71EE0, symSize: 0x10 } - - { offsetInCU: 0x923, offset: 0x8FB15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x28B0, symBinAddr: 0x71EF0, symSize: 0x10 } - - { offsetInCU: 0x937, offset: 0x8FB29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x28C0, symBinAddr: 0x71F00, symSize: 0x10 } - - { offsetInCU: 0x94B, offset: 0x8FB3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x28D0, symBinAddr: 0x71F10, symSize: 0x10 } - - { offsetInCU: 0x95F, offset: 0x8FB51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x28E0, symBinAddr: 0x71F20, symSize: 0x80 } - - { offsetInCU: 0x973, offset: 0x8FB65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2960, symBinAddr: 0x71FA0, symSize: 0xD0 } - - { offsetInCU: 0x987, offset: 0x8FB79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2A30, symBinAddr: 0x72070, symSize: 0x10 } - - { offsetInCU: 0x99B, offset: 0x8FB8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2A40, symBinAddr: 0x72080, symSize: 0x10 } - - { offsetInCU: 0x9AF, offset: 0x8FBA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2A50, symBinAddr: 0x72090, symSize: 0x30 } - - { offsetInCU: 0x9C3, offset: 0x8FBB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2A80, symBinAddr: 0x720C0, symSize: 0x30 } - - { offsetInCU: 0x9D7, offset: 0x8FBC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2AB0, symBinAddr: 0x720F0, symSize: 0x70 } - - { offsetInCU: 0x9EB, offset: 0x8FBDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2B20, symBinAddr: 0x72160, symSize: 0x90 } - - { offsetInCU: 0x9FF, offset: 0x8FBF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2BE0, symBinAddr: 0x721F0, symSize: 0x70 } - - { offsetInCU: 0xA13, offset: 0x8FC05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2C50, symBinAddr: 0x72260, symSize: 0x50 } - - { offsetInCU: 0xA27, offset: 0x8FC19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2CA0, symBinAddr: 0x722B0, symSize: 0x50 } - - { offsetInCU: 0xA3B, offset: 0x8FC2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2CF0, symBinAddr: 0x72300, symSize: 0x10 } - - { offsetInCU: 0xA4F, offset: 0x8FC41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D00, symBinAddr: 0x72310, symSize: 0x10 } - - { offsetInCU: 0xA63, offset: 0x8FC55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x72320, symSize: 0x30 } - - { offsetInCU: 0xA77, offset: 0x8FC69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D40, symBinAddr: 0x72350, symSize: 0x10 } - - { offsetInCU: 0xA8B, offset: 0x8FC7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D50, symBinAddr: 0x72360, symSize: 0x30 } - - { offsetInCU: 0xA9F, offset: 0x8FC91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D80, symBinAddr: 0x72390, symSize: 0x10 } - - { offsetInCU: 0xAB3, offset: 0x8FCA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D90, symBinAddr: 0x723A0, symSize: 0x30 } - - { offsetInCU: 0xAC7, offset: 0x8FCB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DC0, symBinAddr: 0x723D0, symSize: 0x10 } - - { offsetInCU: 0xADB, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DD0, symBinAddr: 0x723E0, symSize: 0x30 } - - { offsetInCU: 0xAEF, offset: 0x8FCE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E00, symBinAddr: 0x72410, symSize: 0x10 } - - { offsetInCU: 0xB03, offset: 0x8FCF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E10, symBinAddr: 0x72420, symSize: 0x30 } - - { offsetInCU: 0xB17, offset: 0x8FD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E40, symBinAddr: 0x72450, symSize: 0x10 } - - { offsetInCU: 0xB2B, offset: 0x8FD1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E50, symBinAddr: 0x72460, symSize: 0x30 } - - { offsetInCU: 0xB4A, offset: 0x8FD3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3600, symBinAddr: 0x72C10, symSize: 0x30 } - - { offsetInCU: 0xB5E, offset: 0x8FD50, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3630, symBinAddr: 0x72C40, symSize: 0x40 } - - { offsetInCU: 0xB72, offset: 0x8FD64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x36E0, symBinAddr: 0x72CF0, symSize: 0x80 } - - { offsetInCU: 0xB86, offset: 0x8FD78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3760, symBinAddr: 0x72D70, symSize: 0xD0 } - - { offsetInCU: 0xB9A, offset: 0x8FD8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3830, symBinAddr: 0x72E40, symSize: 0x10 } - - { offsetInCU: 0xBAE, offset: 0x8FDA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3840, symBinAddr: 0x72E50, symSize: 0x10 } - - { offsetInCU: 0xBC2, offset: 0x8FDB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3850, symBinAddr: 0x72E60, symSize: 0x10 } - - { offsetInCU: 0xBD6, offset: 0x8FDC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3860, symBinAddr: 0x72E70, symSize: 0x30 } - - { offsetInCU: 0xBEA, offset: 0x8FDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3890, symBinAddr: 0x72EA0, symSize: 0x10 } - - { offsetInCU: 0xBFE, offset: 0x8FDF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x38A0, symBinAddr: 0x72EB0, symSize: 0x30 } - - { offsetInCU: 0xC12, offset: 0x8FE04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x38D0, symBinAddr: 0x72EE0, symSize: 0x10 } - - { offsetInCU: 0xC26, offset: 0x8FE18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x38E0, symBinAddr: 0x72EF0, symSize: 0x30 } - - { offsetInCU: 0xC54, offset: 0x8FE46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x70F70, symSize: 0x20 } - - { offsetInCU: 0xC70, offset: 0x8FE62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x70F90, symSize: 0x20 } - - { offsetInCU: 0xC92, offset: 0x8FE84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x71210, symSize: 0x20 } - - { offsetInCU: 0xCAE, offset: 0x8FEA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF0, symBinAddr: 0x71230, symSize: 0x20 } - - { offsetInCU: 0xCD0, offset: 0x8FEC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x71B50, symSize: 0x20 } - - { offsetInCU: 0xCEC, offset: 0x8FEDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2430, symBinAddr: 0x71B70, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90030, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x72FC0, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x90054, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x72FC0, symSize: 0x30 } - - { offsetInCU: 0x69, offset: 0x90072, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x72FF0, symSize: 0x30 } - - { offsetInCU: 0xA7, offset: 0x900B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x73020, symSize: 0x10 } - - { offsetInCU: 0xC5, offset: 0x900CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x73030, symSize: 0x10 } - - { offsetInCU: 0xF0, offset: 0x900F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x73040, symSize: 0x30 } - - { offsetInCU: 0x10E, offset: 0x90117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x73070, symSize: 0x30 } - - { offsetInCU: 0x14C, offset: 0x90155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x730A0, symSize: 0x20 } - - { offsetInCU: 0x17A, offset: 0x90183, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x730C0, symSize: 0x10 } - - { offsetInCU: 0x1A6, offset: 0x901AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x730D0, symSize: 0x30 } - - { offsetInCU: 0x1BA, offset: 0x901C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x73100, symSize: 0x30 } - - { offsetInCU: 0x1CE, offset: 0x901D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x73130, symSize: 0x40 } - - { offsetInCU: 0x1E2, offset: 0x901EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x73170, symSize: 0x60 } - - { offsetInCU: 0x1F6, offset: 0x901FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x731D0, symSize: 0x50 } - - { offsetInCU: 0x20A, offset: 0x90213, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x73220, symSize: 0x40 } - - { offsetInCU: 0x21E, offset: 0x90227, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x73260, symSize: 0x50 } - - { offsetInCU: 0x232, offset: 0x9023B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x732B0, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x90381, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x732C0, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x903A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0SSvpZ', symObjAddr: 0xA780, symBinAddr: 0x913C0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x903BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8languageSSvpZ', symObjAddr: 0xA790, symBinAddr: 0x913D0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x903D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7versionSSvpZ', symObjAddr: 0xA7A0, symBinAddr: 0x913E0, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x903F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0xA7B0, symBinAddr: 0x913F0, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x9040D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0xA7C0, symBinAddr: 0x91400, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x90427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0xA7D0, symBinAddr: 0x91410, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x90441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0xA7E0, symBinAddr: 0x91420, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x9045B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0xA7F0, symBinAddr: 0x91430, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x90475, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0xA800, symBinAddr: 0x91440, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x9048F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0xA810, symBinAddr: 0x91450, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x904A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0xA820, symBinAddr: 0x91460, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x904C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0xA830, symBinAddr: 0x91470, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x904DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0xA840, symBinAddr: 0x91480, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x904F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0xA850, symBinAddr: 0x91490, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x90511, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0xA860, symBinAddr: 0x914A0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x9052B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0xA870, symBinAddr: 0x914B0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x90545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKeySSvpZ', symObjAddr: 0xA880, symBinAddr: 0x914C0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x9055F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKeySSvpZ', symObjAddr: 0xA890, symBinAddr: 0x914D0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x90579, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKeySSvpZ', symObjAddr: 0xA8A0, symBinAddr: 0x914E0, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x90593, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKeySSvpZ', symObjAddr: 0xA8B0, symBinAddr: 0x914F0, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x905AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKeySSvpZ', symObjAddr: 0xA8C0, symBinAddr: 0x91500, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x905C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKeySSvpZ', symObjAddr: 0xA8D0, symBinAddr: 0x91510, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x905E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKeySSvpZ', symObjAddr: 0xA8E0, symBinAddr: 0x91520, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x905FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0xA8F0, symBinAddr: 0x91530, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x90615, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0xA900, symBinAddr: 0x91540, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x9062F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvpZ', symObjAddr: 0xA910, symBinAddr: 0x91550, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x90649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0xA920, symBinAddr: 0x91560, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x90663, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKeySSvpZ', symObjAddr: 0xA930, symBinAddr: 0x91570, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x9067D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkeySSvpZ', symObjAddr: 0xA940, symBinAddr: 0x91580, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x90697, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0xA950, symBinAddr: 0x91590, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x906B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKeySSvpZ', symObjAddr: 0xA960, symBinAddr: 0x915A0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x906CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKeySSvpZ', symObjAddr: 0xA970, symBinAddr: 0x915B0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x906E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvpZ', symObjAddr: 0xA980, symBinAddr: 0x915C0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x906FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKeySSvpZ', symObjAddr: 0xA990, symBinAddr: 0x915D0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x90719, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKeySSvpZ', symObjAddr: 0xA9A0, symBinAddr: 0x915E0, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x90733, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKeySSvpZ', symObjAddr: 0xA9B0, symBinAddr: 0x915F0, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x9074D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKeySSvpZ', symObjAddr: 0xA9C0, symBinAddr: 0x91600, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x90767, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvpZ', symObjAddr: 0xA9D0, symBinAddr: 0x91610, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x90781, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvpZ', symObjAddr: 0xA9E0, symBinAddr: 0x91620, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x9079B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvpZ', symObjAddr: 0xA9F0, symBinAddr: 0x91630, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x907B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkeySSvpZ', symObjAddr: 0xAA00, symBinAddr: 0x91640, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x907CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvpZ', symObjAddr: 0xAA10, symBinAddr: 0x91650, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x907E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKeySSvpZ', symObjAddr: 0xAA20, symBinAddr: 0x91660, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x90803, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKeySSvpZ', symObjAddr: 0xAA30, symBinAddr: 0x91670, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x9081D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKeySSvpZ', symObjAddr: 0xAA40, symBinAddr: 0x91680, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x90837, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKeySSvpZ', symObjAddr: 0xAA50, symBinAddr: 0x91690, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x90851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKeySSvpZ', symObjAddr: 0xAA60, symBinAddr: 0x916A0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x9086B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKeySSvpZ', symObjAddr: 0xAA70, symBinAddr: 0x916B0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x90885, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0xAA80, symBinAddr: 0x916C0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x9089F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0xAA90, symBinAddr: 0x916D0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x908B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0xAAA0, symBinAddr: 0x916E0, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x908D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKeySSvpZ', symObjAddr: 0xAAB0, symBinAddr: 0x916F0, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x908ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKeySSvpZ', symObjAddr: 0xAAC0, symBinAddr: 0x91700, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x90907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKeySSvpZ', symObjAddr: 0xAAD0, symBinAddr: 0x91710, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x90921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKeySSvpZ', symObjAddr: 0xAAE0, symBinAddr: 0x91720, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x9093B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0xAAF0, symBinAddr: 0x91730, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x90955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0xAB00, symBinAddr: 0x91740, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x9096F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0xAB10, symBinAddr: 0x91750, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x90989, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekeySSvpZ', symObjAddr: 0xAB20, symBinAddr: 0x91760, symSize: 0x0 } - - { offsetInCU: 0x649, offset: 0x909A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkeySSvpZ', symObjAddr: 0xAB30, symBinAddr: 0x91770, symSize: 0x0 } - - { offsetInCU: 0x657, offset: 0x909B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x732C0, symSize: 0x30 } - - { offsetInCU: 0x675, offset: 0x909CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvau', symObjAddr: 0x30, symBinAddr: 0x732F0, symSize: 0x30 } - - { offsetInCU: 0x693, offset: 0x909ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvau', symObjAddr: 0x60, symBinAddr: 0x73320, symSize: 0x30 } - - { offsetInCU: 0x6B1, offset: 0x90A0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvau', symObjAddr: 0x90, symBinAddr: 0x73350, symSize: 0x30 } - - { offsetInCU: 0x6CF, offset: 0x90A29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvau', symObjAddr: 0xC0, symBinAddr: 0x73380, symSize: 0x30 } - - { offsetInCU: 0x6F9, offset: 0x90A53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0xF0, symBinAddr: 0x733B0, symSize: 0x20 } - - { offsetInCU: 0x714, offset: 0x90A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x230, symBinAddr: 0x734F0, symSize: 0x410 } - - { offsetInCU: 0x768, offset: 0x90AC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x750, symBinAddr: 0x73A10, symSize: 0x10 } - - { offsetInCU: 0x784, offset: 0x90ADE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x760, symBinAddr: 0x73A20, symSize: 0x20 } - - { offsetInCU: 0x7AE, offset: 0x90B08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvau', symObjAddr: 0x110, symBinAddr: 0x733D0, symSize: 0x30 } - - { offsetInCU: 0x7CC, offset: 0x90B26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvau', symObjAddr: 0x140, symBinAddr: 0x73400, symSize: 0x30 } - - { offsetInCU: 0x7EA, offset: 0x90B44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x170, symBinAddr: 0x73430, symSize: 0x30 } - - { offsetInCU: 0x808, offset: 0x90B62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x1A0, symBinAddr: 0x73460, symSize: 0x30 } - - { offsetInCU: 0x826, offset: 0x90B80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x1D0, symBinAddr: 0x73490, symSize: 0x30 } - - { offsetInCU: 0x844, offset: 0x90B9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvau', symObjAddr: 0x200, symBinAddr: 0x734C0, symSize: 0x30 } - - { offsetInCU: 0x86D, offset: 0x90BC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x660, symBinAddr: 0x73920, symSize: 0x10 } - - { offsetInCU: 0x881, offset: 0x90BDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x73930, symSize: 0x30 } - - { offsetInCU: 0x8AB, offset: 0x90C05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x7A0, symBinAddr: 0x73A40, symSize: 0x80 } - - { offsetInCU: 0x8BF, offset: 0x90C19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x820, symBinAddr: 0x73AC0, symSize: 0xD0 } - - { offsetInCU: 0x8D3, offset: 0x90C2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x8F0, symBinAddr: 0x73B90, symSize: 0x10 } - - { offsetInCU: 0x8E7, offset: 0x90C41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x900, symBinAddr: 0x73BA0, symSize: 0x10 } - - { offsetInCU: 0x8FB, offset: 0x90C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x910, symBinAddr: 0x73BB0, symSize: 0x10 } - - { offsetInCU: 0x90F, offset: 0x90C69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x920, symBinAddr: 0x73BC0, symSize: 0x10 } - - { offsetInCU: 0x923, offset: 0x90C7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0_WZ', symObjAddr: 0x930, symBinAddr: 0x73BD0, symSize: 0x30 } - - { offsetInCU: 0x93D, offset: 0x90C97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8language_WZ', symObjAddr: 0x960, symBinAddr: 0x73C00, symSize: 0x30 } - - { offsetInCU: 0x957, offset: 0x90CB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7version_WZ', symObjAddr: 0x990, symBinAddr: 0x73C30, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x90CCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x9C0, symBinAddr: 0x73C60, symSize: 0x30 } - - { offsetInCU: 0x98B, offset: 0x90CE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x9F0, symBinAddr: 0x73C90, symSize: 0x30 } - - { offsetInCU: 0x9A5, offset: 0x90CFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0xA20, symBinAddr: 0x73CC0, symSize: 0x30 } - - { offsetInCU: 0x9BF, offset: 0x90D19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPassword_WZ', symObjAddr: 0xA50, symBinAddr: 0x73CF0, symSize: 0x30 } - - { offsetInCU: 0x9E0, offset: 0x90D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0xA80, symBinAddr: 0x73D20, symSize: 0x30 } - - { offsetInCU: 0x9FA, offset: 0x90D54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0xAB0, symBinAddr: 0x73D50, symSize: 0x30 } - - { offsetInCU: 0xA14, offset: 0x90D6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6option_WZ', symObjAddr: 0xAE0, symBinAddr: 0x73D80, symSize: 0x30 } - - { offsetInCU: 0xA2E, offset: 0x90D88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0xB10, symBinAddr: 0x73DB0, symSize: 0x30 } - - { offsetInCU: 0xA48, offset: 0x90DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0xB40, symBinAddr: 0x73DE0, symSize: 0x30 } - - { offsetInCU: 0xA62, offset: 0x90DBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x73E10, symSize: 0x30 } - - { offsetInCU: 0xA7C, offset: 0x90DD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6device_WZ', symObjAddr: 0xBA0, symBinAddr: 0x73E40, symSize: 0x30 } - - { offsetInCU: 0xA96, offset: 0x90DF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0xBD0, symBinAddr: 0x73E70, symSize: 0x30 } - - { offsetInCU: 0xAB0, offset: 0x90E0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0xC00, symBinAddr: 0x73EA0, symSize: 0x30 } - - { offsetInCU: 0xACB, offset: 0x90E25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKey_WZ', symObjAddr: 0xC30, symBinAddr: 0x73ED0, symSize: 0x30 } - - { offsetInCU: 0xAE5, offset: 0x90E3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKey_WZ', symObjAddr: 0xC60, symBinAddr: 0x73F00, symSize: 0x30 } - - { offsetInCU: 0xAFF, offset: 0x90E59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKey_WZ', symObjAddr: 0xC90, symBinAddr: 0x73F30, symSize: 0x30 } - - { offsetInCU: 0xB19, offset: 0x90E73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKey_WZ', symObjAddr: 0xCC0, symBinAddr: 0x73F60, symSize: 0x30 } - - { offsetInCU: 0xB33, offset: 0x90E8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKey_WZ', symObjAddr: 0xCF0, symBinAddr: 0x73F90, symSize: 0x30 } - - { offsetInCU: 0xB4D, offset: 0x90EA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKey_WZ', symObjAddr: 0xD20, symBinAddr: 0x73FC0, symSize: 0x30 } - - { offsetInCU: 0xB67, offset: 0x90EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKey_WZ', symObjAddr: 0xD50, symBinAddr: 0x73FF0, symSize: 0x30 } - - { offsetInCU: 0xB81, offset: 0x90EDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0xD80, symBinAddr: 0x74020, symSize: 0x30 } - - { offsetInCU: 0xB9B, offset: 0x90EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKey_WZ', symObjAddr: 0xDB0, symBinAddr: 0x74050, symSize: 0x30 } - - { offsetInCU: 0xBB5, offset: 0x90F0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKey_WZ', symObjAddr: 0xDE0, symBinAddr: 0x74080, symSize: 0x30 } - - { offsetInCU: 0xBCF, offset: 0x90F29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKey_WZ', symObjAddr: 0xE10, symBinAddr: 0x740B0, symSize: 0x30 } - - { offsetInCU: 0xBE9, offset: 0x90F43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKey_WZ', symObjAddr: 0xE40, symBinAddr: 0x740E0, symSize: 0x30 } - - { offsetInCU: 0xC03, offset: 0x90F5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkey_WZ', symObjAddr: 0xE70, symBinAddr: 0x74110, symSize: 0x30 } - - { offsetInCU: 0xC1D, offset: 0x90F77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKey_WZ', symObjAddr: 0xEA0, symBinAddr: 0x74140, symSize: 0x30 } - - { offsetInCU: 0xC37, offset: 0x90F91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKey_WZ', symObjAddr: 0xED0, symBinAddr: 0x74170, symSize: 0x30 } - - { offsetInCU: 0xC51, offset: 0x90FAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKey_WZ', symObjAddr: 0xF00, symBinAddr: 0x741A0, symSize: 0x30 } - - { offsetInCU: 0xC6B, offset: 0x90FC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKey_WZ', symObjAddr: 0xF30, symBinAddr: 0x741D0, symSize: 0x30 } - - { offsetInCU: 0xC85, offset: 0x90FDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKey_WZ', symObjAddr: 0xF60, symBinAddr: 0x74200, symSize: 0x30 } - - { offsetInCU: 0xC9F, offset: 0x90FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKey_WZ', symObjAddr: 0xF90, symBinAddr: 0x74230, symSize: 0x30 } - - { offsetInCU: 0xCB9, offset: 0x91013, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKey_WZ', symObjAddr: 0xFC0, symBinAddr: 0x74260, symSize: 0x30 } - - { offsetInCU: 0xCD3, offset: 0x9102D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKey_WZ', symObjAddr: 0xFF0, symBinAddr: 0x74290, symSize: 0x30 } - - { offsetInCU: 0xCED, offset: 0x91047, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkey_WZ', symObjAddr: 0x1020, symBinAddr: 0x742C0, symSize: 0x30 } - - { offsetInCU: 0xD07, offset: 0x91061, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkey_WZ', symObjAddr: 0x1050, symBinAddr: 0x742F0, symSize: 0x30 } - - { offsetInCU: 0xD21, offset: 0x9107B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekey_WZ', symObjAddr: 0x1080, symBinAddr: 0x74320, symSize: 0x30 } - - { offsetInCU: 0xD3B, offset: 0x91095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkey_WZ', symObjAddr: 0x10B0, symBinAddr: 0x74350, symSize: 0x30 } - - { offsetInCU: 0xD55, offset: 0x910AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkey_WZ', symObjAddr: 0x10E0, symBinAddr: 0x74380, symSize: 0x30 } - - { offsetInCU: 0xD6F, offset: 0x910C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKey_WZ', symObjAddr: 0x1110, symBinAddr: 0x743B0, symSize: 0x30 } - - { offsetInCU: 0xD89, offset: 0x910E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKey_WZ', symObjAddr: 0x1140, symBinAddr: 0x743E0, symSize: 0x30 } - - { offsetInCU: 0xDA3, offset: 0x910FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKey_WZ', symObjAddr: 0x1170, symBinAddr: 0x74410, symSize: 0x30 } - - { offsetInCU: 0xDBD, offset: 0x91117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKey_WZ', symObjAddr: 0x11A0, symBinAddr: 0x74440, symSize: 0x30 } - - { offsetInCU: 0xDD7, offset: 0x91131, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKey_WZ', symObjAddr: 0x11D0, symBinAddr: 0x74470, symSize: 0x30 } - - { offsetInCU: 0xDF1, offset: 0x9114B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKey_WZ', symObjAddr: 0x1200, symBinAddr: 0x744A0, symSize: 0x30 } - - { offsetInCU: 0xE0B, offset: 0x91165, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKey_WZ', symObjAddr: 0x1230, symBinAddr: 0x744D0, symSize: 0x30 } - - { offsetInCU: 0xE25, offset: 0x9117F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0x1260, symBinAddr: 0x74500, symSize: 0x30 } - - { offsetInCU: 0xE3F, offset: 0x91199, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKey_WZ', symObjAddr: 0x1290, symBinAddr: 0x74530, symSize: 0x30 } - - { offsetInCU: 0xE59, offset: 0x911B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKey_WZ', symObjAddr: 0x12C0, symBinAddr: 0x74560, symSize: 0x30 } - - { offsetInCU: 0xE73, offset: 0x911CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKey_WZ', symObjAddr: 0x12F0, symBinAddr: 0x74590, symSize: 0x30 } - - { offsetInCU: 0xE8D, offset: 0x911E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKey_WZ', symObjAddr: 0x1320, symBinAddr: 0x745C0, symSize: 0x30 } - - { offsetInCU: 0xEA7, offset: 0x91201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKey_WZ', symObjAddr: 0x1350, symBinAddr: 0x745F0, symSize: 0x30 } - - { offsetInCU: 0xEC1, offset: 0x9121B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKey_WZ', symObjAddr: 0x1380, symBinAddr: 0x74620, symSize: 0x30 } - - { offsetInCU: 0xEDB, offset: 0x91235, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0x13B0, symBinAddr: 0x74650, symSize: 0x30 } - - { offsetInCU: 0xEF5, offset: 0x9124F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekey_WZ', symObjAddr: 0x13E0, symBinAddr: 0x74680, symSize: 0x30 } - - { offsetInCU: 0xF0F, offset: 0x91269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekey_WZ', symObjAddr: 0x1410, symBinAddr: 0x746B0, symSize: 0x30 } - - { offsetInCU: 0xF29, offset: 0x91283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkey_WZ', symObjAddr: 0x1440, symBinAddr: 0x746E0, symSize: 0x30 } - - { offsetInCU: 0xF97, offset: 0x912F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x1470, symBinAddr: 0x74710, symSize: 0x2B6 } - - { offsetInCU: 0x1226, offset: 0x91580, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x640, symBinAddr: 0x73900, symSize: 0x20 } - - { offsetInCU: 0x12E0, offset: 0x9163A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6A0, symBinAddr: 0x73960, symSize: 0x40 } - - { offsetInCU: 0x13B8, offset: 0x91712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E0, symBinAddr: 0x739A0, symSize: 0x30 } - - { offsetInCU: 0x1434, offset: 0x9178E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x710, symBinAddr: 0x739D0, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0x91957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x749D0, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x91999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x749D0, symSize: 0x20 } - - { offsetInCU: 0xB9, offset: 0x919E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x749F0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x91B26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1FD8, symBinAddr: 0x90D88, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x91B6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0x1B0, symBinAddr: 0x74BC0, symSize: 0x30 } - - { offsetInCU: 0x117, offset: 0x91BEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1E0, symBinAddr: 0x74BF0, symSize: 0x570 } - - { offsetInCU: 0x306, offset: 0x91DDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x790, symBinAddr: 0x75160, symSize: 0x50 } - - { offsetInCU: 0x375, offset: 0x91E4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x7F0, symBinAddr: 0x751C0, symSize: 0x50 } - - { offsetInCU: 0x3E4, offset: 0x91EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x850, symBinAddr: 0x75220, symSize: 0x50 } - - { offsetInCU: 0x453, offset: 0x91F2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x8B0, symBinAddr: 0x75280, symSize: 0x50 } - - { offsetInCU: 0x4C2, offset: 0x91F99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x910, symBinAddr: 0x752E0, symSize: 0x50 } - - { offsetInCU: 0x5C8, offset: 0x9209F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xA20, symBinAddr: 0x753A0, symSize: 0x40 } - - { offsetInCU: 0x639, offset: 0x92110, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xA60, symBinAddr: 0x753E0, symSize: 0x10 } - - { offsetInCU: 0x686, offset: 0x9215D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA70, symBinAddr: 0x753F0, symSize: 0x50 } - - { offsetInCU: 0x707, offset: 0x921DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0xBE0, symBinAddr: 0x75560, symSize: 0x30 } - - { offsetInCU: 0x768, offset: 0x9223F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xC10, symBinAddr: 0x75590, symSize: 0x50 } - - { offsetInCU: 0x7E9, offset: 0x922C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xC60, symBinAddr: 0x755E0, symSize: 0x40 } - - { offsetInCU: 0x884, offset: 0x9235B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xCA0, symBinAddr: 0x75620, symSize: 0x80 } - - { offsetInCU: 0x933, offset: 0x9240A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xD40, symBinAddr: 0x756A0, symSize: 0x70 } - - { offsetInCU: 0x9F6, offset: 0x924CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xDB0, symBinAddr: 0x75710, symSize: 0x80 } - - { offsetInCU: 0xAA5, offset: 0x9257C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xE30, symBinAddr: 0x75790, symSize: 0x30 } - - { offsetInCU: 0xB34, offset: 0x9260B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE60, symBinAddr: 0x757C0, symSize: 0x30 } - - { offsetInCU: 0xBC3, offset: 0x9269A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE90, symBinAddr: 0x757F0, symSize: 0x40 } - - { offsetInCU: 0xC53, offset: 0x9272A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xED0, symBinAddr: 0x75830, symSize: 0x40 } - - { offsetInCU: 0xCE6, offset: 0x927BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF10, symBinAddr: 0x75870, symSize: 0x40 } - - { offsetInCU: 0xD79, offset: 0x92850, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF50, symBinAddr: 0x758B0, symSize: 0x40 } - - { offsetInCU: 0xE0C, offset: 0x928E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF90, symBinAddr: 0x758F0, symSize: 0x40 } - - { offsetInCU: 0xE9F, offset: 0x92976, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xFD0, symBinAddr: 0x75930, symSize: 0x30 } - - { offsetInCU: 0xF08, offset: 0x929DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x1000, symBinAddr: 0x75960, symSize: 0x40 } - - { offsetInCU: 0xF69, offset: 0x92A40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x1040, symBinAddr: 0x759A0, symSize: 0x130 } - - { offsetInCU: 0x1050, offset: 0x92B27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0x1170, symBinAddr: 0x75AD0, symSize: 0xB0 } - - { offsetInCU: 0x1137, offset: 0x92C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1220, symBinAddr: 0x75B80, symSize: 0x90 } - - { offsetInCU: 0x11D2, offset: 0x92CA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x12B0, symBinAddr: 0x75C10, symSize: 0xF0 } - - { offsetInCU: 0x11FF, offset: 0x92CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x13A0, symBinAddr: 0x75D00, symSize: 0x20 } - - { offsetInCU: 0x12A5, offset: 0x92D7C, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xE0, symBinAddr: 0x74AF0, symSize: 0x50 } - - { offsetInCU: 0x12BD, offset: 0x92D94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x130, symBinAddr: 0x74B40, symSize: 0x80 } - - { offsetInCU: 0x135B, offset: 0x92E32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x7E0, symBinAddr: 0x751B0, symSize: 0x10 } - - { offsetInCU: 0x136F, offset: 0x92E46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x840, symBinAddr: 0x75210, symSize: 0x10 } - - { offsetInCU: 0x1383, offset: 0x92E5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x8A0, symBinAddr: 0x75270, symSize: 0x10 } - - { offsetInCU: 0x1397, offset: 0x92E6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x900, symBinAddr: 0x752D0, symSize: 0x10 } - - { offsetInCU: 0x13AB, offset: 0x92E82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x960, symBinAddr: 0x75330, symSize: 0x10 } - - { offsetInCU: 0x13BF, offset: 0x92E96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x9C0, symBinAddr: 0x75340, symSize: 0x20 } - - { offsetInCU: 0x13D3, offset: 0x92EAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOf', symObjAddr: 0x9E0, symBinAddr: 0x75360, symSize: 0x40 } - - { offsetInCU: 0x1434, offset: 0x92F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x16D0, symBinAddr: 0x76030, symSize: 0x10 } - - { offsetInCU: 0x1448, offset: 0x92F1F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16E0, symBinAddr: 0x76040, symSize: 0x20 } - - { offsetInCU: 0x145C, offset: 0x92F33, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1700, symBinAddr: 0x76060, symSize: 0x10 } - - { offsetInCU: 0x1492, offset: 0x92F69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1780, symBinAddr: 0x76070, symSize: 0x390 } - - { offsetInCU: 0x156A, offset: 0x93041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1B10, symBinAddr: 0x76400, symSize: 0x450 } - - { offsetInCU: 0x1686, offset: 0x9315D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x74A10, symSize: 0x10 } - - { offsetInCU: 0x16A2, offset: 0x93179, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x10, symBinAddr: 0x74A20, symSize: 0x10 } - - { offsetInCU: 0x16BE, offset: 0x93195, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x20, symBinAddr: 0x74A30, symSize: 0x10 } - - { offsetInCU: 0x16DA, offset: 0x931B1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0x30, symBinAddr: 0x74A40, symSize: 0x10 } - - { offsetInCU: 0x16F6, offset: 0x931CD, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x40, symBinAddr: 0x74A50, symSize: 0x10 } - - { offsetInCU: 0x1712, offset: 0x931E9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x74A60, symSize: 0x10 } - - { offsetInCU: 0x172E, offset: 0x93205, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x60, symBinAddr: 0x74A70, symSize: 0x10 } - - { offsetInCU: 0x174A, offset: 0x93221, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x70, symBinAddr: 0x74A80, symSize: 0x10 } - - { offsetInCU: 0x1766, offset: 0x9323D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x80, symBinAddr: 0x74A90, symSize: 0x10 } - - { offsetInCU: 0x1782, offset: 0x93259, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x90, symBinAddr: 0x74AA0, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x93275, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0xA0, symBinAddr: 0x74AB0, symSize: 0x20 } - - { offsetInCU: 0x17BA, offset: 0x93291, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0xC0, symBinAddr: 0x74AD0, symSize: 0x20 } -... diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Info.plist index f29fb35..85cfa23 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Info.plist +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Info.plist @@ -5,7 +5,7 @@ ArchiveVersion 2 CreationDate - 2024-03-04T04:03:50Z + 2024-05-22T07:19:22Z Name IoTConnect2 SchemeName diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT index 874f124..4233696 100755 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h index 64ef097..70ea37c 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef COCOAMQTT_SWIFT_H #define COCOAMQTT_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist index 3e8e5e2..012b301 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc index 099542a..e7394b5 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule index 762c560..13af0de 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios.swiftmodule differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Headers/IoTConnect2-Swift.h b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Headers/IoTConnect2-Swift.h index ba3a321..b667505 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Headers/IoTConnect2-Swift.h +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Headers/IoTConnect2-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_SWIFT_H #define IOTCONNECT2_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Info.plist index 8294295..e73c25b 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Info.plist and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/IoTConnect2 b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/IoTConnect2 index b908287..cffc3a8 100755 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/IoTConnect2 and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json index ae72034..bc01c39 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json @@ -4526,6 +4526,39 @@ "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -4564,39 +4597,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -5982,6 +5982,39 @@ "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -6020,39 +6053,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -7428,6 +7428,7 @@ "mangledName": "$sSS", "moduleName": "Swift", "declAttributes": [ + "EagerMove", "Frozen" ], "isExternal": true, @@ -8030,12679 +8031,1416 @@ { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 3942, + "offset": 10618, "length": 2, "value": "\"\"" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" + "offset": 10638, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4877, + "offset": 20991, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5639, + "offset": 161, "length": 5, - "value": "\"ios\"" + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" + "offset": 161, + "length": 5, + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" + "offset": 317, + "length": 7, + "value": "\"https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" + "offset": 352, + "length": 6, + "value": "\"http\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7487, + "offset": 454, "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" + "value": "\"Accept\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" + "offset": 562, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8203, + "offset": 521, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8609, + "offset": 559, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" + "offset": 1136, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" + "offset": 1136, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" + "offset": 1447, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4310, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", "kind": "StringLiteral", - "offset": 19497, - "length": 12, + "offset": 17309, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 19846, + "offset": 438, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "BooleanLiteral", - "offset": 19859, + "offset": 477, "length": 5, "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "IntegerLiteral", - "offset": 20283, + "offset": 751, "length": 1, "value": "0" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "BooleanLiteral", - "offset": 20424, + "offset": 845, "length": 5, "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 20716, + "offset": 1708, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 20975, + "offset": 19292, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 21361, + "offset": 33318, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 5, + "value": "\"DEV\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4310, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35224, - "length": 79, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35302, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" + "offset": 327, + "length": 4, + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" + "offset": 282, + "length": 5, + "value": "\"DEV\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, + "offset": 327, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" + "offset": 470, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" + "offset": 511, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", @@ -20712,284 +9450,102 @@ "value": "\"log:mqtt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", @@ -21287,1506 +9843,1261 @@ }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2702, - "length": 61, - "value": "\"\"" + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2721, - "length": 1, - "value": "\"\/api\/v\"" + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2751, - "length": 1, - "value": "\"\/env\/\"" + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2762, - "length": 2, - "value": "\"\"" + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" + "offset": 274, + "length": 3, + "value": "103" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" + "offset": 310, + "length": 3, + "value": "104" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" + "offset": 439, + "length": 3, + "value": "108" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" + "offset": 469, + "length": 3, + "value": "109" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" + "offset": 501, + "length": 3, + "value": "110" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" + "offset": 532, + "length": 3, + "value": "111" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" + "offset": 568, + "length": 3, + "value": "112" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" + "offset": 610, + "length": 3, + "value": "113" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" + "offset": 650, + "length": 3, + "value": "115" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" + "offset": 698, + "length": 3, + "value": "116" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" + "offset": 743, + "length": 3, + "value": "117" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" + "offset": 786, + "length": 3, + "value": "199" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" + "offset": 828, + "length": 3, + "value": "200" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" + "offset": 873, + "length": 3, + "value": "201" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" + "offset": 913, + "length": 3, + "value": "202" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" + "offset": 942, + "length": 3, + "value": "203" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" + "offset": 974, + "length": 3, + "value": "204" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" + "offset": 1006, + "length": 3, + "value": "205" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" + "offset": 1035, + "length": 3, + "value": "221" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" + "offset": 1064, + "length": 3, + "value": "222" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" + "offset": 2960, + "length": 5, + "value": "\"2.1\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4520, + "offset": 3033, "length": 6, - "value": "\"rule\"" + "value": "\"http\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4874, + "offset": 3338, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4909, + "offset": 3369, "length": 1, "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5045, + "offset": 3593, "length": 1, - "value": "5" + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5079, + "offset": 3621, "length": 1, - "value": "6" + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5113, + "offset": 3649, "length": 1, - "value": "7" + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5147, + "offset": 3677, "length": 1, - "value": "8" + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5181, + "offset": 3723, "length": 1, - "value": "9" + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" + "offset": 3751, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" + "offset": 3783, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5908, + "offset": 4203, "length": 6, - "value": "\"edge\"" + "value": "\"cpId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" + "offset": 4279, + "length": 8, + "value": "\"option\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" + "offset": 4319, + "length": 11, + "value": "\"attribute\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" + "offset": 4360, + "length": 9, + "value": "\"setting\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" + "offset": 4403, + "length": 10, + "value": "\"protocol\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" + "offset": 4442, + "length": 8, + "value": "\"device\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" + "offset": 4520, + "length": 6, + "value": "\"rule\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6921, + "offset": 5301, "length": 4, - "value": "\"cv\"" + "value": "\"dt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" + "offset": 5331, + "length": 3, + "value": "\"d\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" + "offset": 5359, + "length": 5, + "value": "\"ack\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7047, + "offset": 5390, "length": 6, - "value": "\"guid\"" + "value": "\"type\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" + "offset": 5424, + "length": 4, + "value": "\"st\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7138, + "offset": 5457, "length": 5, - "value": "\"ack\"" + "value": "\"msg\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" + "offset": 5487, + "length": 5, + "value": "\"cid\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7226, + "offset": 5550, "length": 4, "value": "\"ec\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7268, + "offset": 5580, "length": 4, - "value": "\"rg\"" + "value": "\"ct\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" + "offset": 5610, + "length": 6, + "value": "\"meta\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" + "offset": 5642, + "length": 5, + "value": "\"has\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" + "offset": 5673, + "length": 3, + "value": "\"p\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7441, + "offset": 5726, "length": 4, - "value": "\"mt\"" + "value": "\"df\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7483, + "offset": 5756, "length": 4, - "value": "\"dn\"" + "value": "\"cd\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, + "offset": 5786, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" + "value": "\"at\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2266, + "offset": 5817, "length": 5, - "value": "\"\"" + "value": "\"gtw\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" + "offset": 5848, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" + "offset": 5877, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" + "offset": 5908, + "length": 6, + "value": "\"edge\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" + "offset": 5940, + "length": 4, + "value": "\"pf\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" + "offset": 5971, + "length": 5, + "value": "\"hwv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2310, + "offset": 6003, "length": 5, - "value": "\"\"" + "value": "\"swv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" + "offset": 6033, + "length": 3, + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" + "offset": 6089, + "length": 6, + "value": "\"cpId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" + "offset": 6167, + "length": 3, + "value": "\"t\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" + "offset": 6201, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2822, + "offset": 6236, "length": 3, - "value": "\"\/\"" + "value": "\"d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" + "offset": 6270, + "length": 5, + "value": "\"sdk\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" + "offset": 6306, + "length": 3, + "value": "\"l\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 3064, + "offset": 6374, "length": 3, - "value": "\"\/\"" + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2465, - "length": 22, - "value": "\"SDKClient initialize\"" + "offset": 6408, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" + "offset": 6445, + "length": 4, + "value": "\"id\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" + "offset": 6480, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" + "offset": 6515, + "length": 4, + "value": "\"dt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" + "offset": 6550, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" + "offset": 6622, + "length": 9, + "value": "\"desired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" + "offset": 6662, + "length": 6, + "value": "\"time\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" + "offset": 6735, + "length": 5, + "value": "\"has\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" + "offset": 6844, + "length": 3, + "value": "\"r\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 6878, + "length": 5, + "value": "\"ota\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" + "offset": 6963, + "length": 4, + "value": "\"sg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" + "offset": 7047, + "length": 6, + "value": "\"guid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" + "offset": 7138, + "length": 5, + "value": "\"ack\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" + "offset": 7226, + "length": 4, + "value": "\"ec\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" + "offset": 7310, + "length": 4, + "value": "\"dv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" + "offset": 7483, + "length": 4, + "value": "\"dn\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" + "offset": 5275, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" + "offset": 5523, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 5543, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "IntegerLiteral", - "offset": 12454, + "offset": 9694, "length": 1, "value": "0" } diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface index 57e65f9..4959cbd 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc index 1876c65..cea9dad 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface index 57e65f9..4959cbd 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftmodule b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftmodule index 83998cb..2b52153 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftmodule and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftmodule differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist index 8c75cc4..71a8ef8 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket index 3022e4c..2644c1e 100755 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Info.plist index d504527..797651c 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Info.plist and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Pods_IoTConnect2 b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Pods_IoTConnect2 index c34db37..b7daf48 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Pods_IoTConnect2 and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Pods_IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT index f175441..09b59dc 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml index 66b6c15..47db217 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml @@ -2,1664 +2,1707 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT' relocations: - - { offsetInCU: 0x34, offset: 0x5447A, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x4ABB0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x544AF, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x4ABD8, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x54514, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x4 } - - { offsetInCU: 0x6B, offset: 0x54530, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x4, symBinAddr: 0x4004, symSize: 0x4 } - - { offsetInCU: 0x94, offset: 0x54559, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x8, symBinAddr: 0x4008, symSize: 0x28 } - - { offsetInCU: 0xB3, offset: 0x54578, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x30, symBinAddr: 0x4030, symSize: 0x110 } - - { offsetInCU: 0xFC, offset: 0x545C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x200, symBinAddr: 0x4200, symSize: 0x20 } - - { offsetInCU: 0x12D, offset: 0x545F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x220, symBinAddr: 0x4220, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x5460E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x22C, symBinAddr: 0x422C, symSize: 0x8 } - - { offsetInCU: 0x165, offset: 0x5462A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x851C, symBinAddr: 0xC508, symSize: 0x14 } - - { offsetInCU: 0x2C0, offset: 0x54785, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x234, symBinAddr: 0x4234, symSize: 0x14C } - - { offsetInCU: 0x40B, offset: 0x548D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x380, symBinAddr: 0x4380, symSize: 0x8 } - - { offsetInCU: 0x42F, offset: 0x548F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x388, symBinAddr: 0x4388, symSize: 0x48 } - - { offsetInCU: 0x44E, offset: 0x54913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x3D0, symBinAddr: 0x43D0, symSize: 0x58 } - - { offsetInCU: 0x48D, offset: 0x54952, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x428, symBinAddr: 0x4428, symSize: 0x70 } - - { offsetInCU: 0x4BC, offset: 0x54981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x498, symBinAddr: 0x4498, symSize: 0x6C } - - { offsetInCU: 0x4E7, offset: 0x549AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x54C, symBinAddr: 0x454C, symSize: 0x44 } - - { offsetInCU: 0x516, offset: 0x549DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x5B0, symBinAddr: 0x45B0, symSize: 0x44 } - - { offsetInCU: 0x545, offset: 0x54A0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x6B4, symBinAddr: 0x46B4, symSize: 0x44 } - - { offsetInCU: 0x574, offset: 0x54A39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x71C, symBinAddr: 0x471C, symSize: 0x44 } - - { offsetInCU: 0x5A3, offset: 0x54A68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x482C, symSize: 0x44 } - - { offsetInCU: 0x5D2, offset: 0x54A97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x890, symBinAddr: 0x4890, symSize: 0x44 } - - { offsetInCU: 0x601, offset: 0x54AC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x8DC, symBinAddr: 0x48DC, symSize: 0x50 } - - { offsetInCU: 0x620, offset: 0x54AE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0x92C, symBinAddr: 0x492C, symSize: 0x50 } - - { offsetInCU: 0x65F, offset: 0x54B24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0x97C, symBinAddr: 0x497C, symSize: 0x44 } - - { offsetInCU: 0x68E, offset: 0x54B53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0x9C0, symBinAddr: 0x49C0, symSize: 0x4 } - - { offsetInCU: 0x6D9, offset: 0x54B9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0x9C4, symBinAddr: 0x49C4, symSize: 0xC0 } - - { offsetInCU: 0x749, offset: 0x54C0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xA90, symBinAddr: 0x4A90, symSize: 0xF4 } - - { offsetInCU: 0x7BC, offset: 0x54C81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xB90, symBinAddr: 0x4B90, symSize: 0x44 } - - { offsetInCU: 0x7DB, offset: 0x54CA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xBD4, symBinAddr: 0x4BD4, symSize: 0x50 } - - { offsetInCU: 0x81A, offset: 0x54CDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC24, symBinAddr: 0x4C24, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x54D6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xC70, symBinAddr: 0x4C70, symSize: 0x118 } - - { offsetInCU: 0x97B, offset: 0x54E40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0xFD8, symBinAddr: 0x4FD8, symSize: 0x44 } - - { offsetInCU: 0x9B8, offset: 0x54E7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x101C, symBinAddr: 0x501C, symSize: 0x90 } - - { offsetInCU: 0xA00, offset: 0x54EC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x10AC, symBinAddr: 0x50AC, symSize: 0x48 } - - { offsetInCU: 0xA2F, offset: 0x54EF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x10F4, symBinAddr: 0x50F4, symSize: 0x80 } - - { offsetInCU: 0xA8C, offset: 0x54F51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x1178, symBinAddr: 0x5178, symSize: 0x20 } - - { offsetInCU: 0xAAC, offset: 0x54F71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x1178, symBinAddr: 0x5178, symSize: 0x20 } - - { offsetInCU: 0xADC, offset: 0x54FA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x1198, symBinAddr: 0x5198, symSize: 0x20 } - - { offsetInCU: 0xB05, offset: 0x54FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x1198, symBinAddr: 0x5198, symSize: 0x20 } - - { offsetInCU: 0xB5D, offset: 0x55022, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x11B8, symBinAddr: 0x51B8, symSize: 0x34 } - - { offsetInCU: 0xBEB, offset: 0x550B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } - - { offsetInCU: 0xC19, offset: 0x550DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } - - { offsetInCU: 0xC2D, offset: 0x550F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } - - { offsetInCU: 0xC81, offset: 0x55146, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x120C, symBinAddr: 0x520C, symSize: 0x20 } - - { offsetInCU: 0xCA1, offset: 0x55166, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x120C, symBinAddr: 0x520C, symSize: 0x20 } - - { offsetInCU: 0xCEF, offset: 0x551B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x1238, symBinAddr: 0x5238, symSize: 0x34 } - - { offsetInCU: 0xD53, offset: 0x55218, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1278, symBinAddr: 0x5278, symSize: 0x20 } - - { offsetInCU: 0xD73, offset: 0x55238, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1278, symBinAddr: 0x5278, symSize: 0x20 } - - { offsetInCU: 0xDC1, offset: 0x55286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x12BC, symBinAddr: 0x52BC, symSize: 0x34 } - - { offsetInCU: 0xE25, offset: 0x552EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x1334, symBinAddr: 0x5334, symSize: 0x44 } - - { offsetInCU: 0xE54, offset: 0x55319, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x1424, symBinAddr: 0x5424, symSize: 0x44 } - - { offsetInCU: 0xE83, offset: 0x55348, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1488, symBinAddr: 0x5488, symSize: 0x44 } - - { offsetInCU: 0xEB2, offset: 0x55377, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1570, symBinAddr: 0x5570, symSize: 0x44 } - - { offsetInCU: 0xEE1, offset: 0x553A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x15CC, symBinAddr: 0x55CC, symSize: 0x78 } - - { offsetInCU: 0xF1E, offset: 0x553E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x1644, symBinAddr: 0x5644, symSize: 0x7C } - - { offsetInCU: 0xF8C, offset: 0x55451, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x16C0, symBinAddr: 0x56C0, symSize: 0x90 } - - { offsetInCU: 0x1010, offset: 0x554D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x1750, symBinAddr: 0x5750, symSize: 0x24 } - - { offsetInCU: 0x1065, offset: 0x5552A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x1774, symBinAddr: 0x5774, symSize: 0x88 } - - { offsetInCU: 0x10C2, offset: 0x55587, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x17FC, symBinAddr: 0x57FC, symSize: 0x7C } - - { offsetInCU: 0x1121, offset: 0x555E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x1878, symBinAddr: 0x5878, symSize: 0xA8 } - - { offsetInCU: 0x11A9, offset: 0x5566E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1920, symBinAddr: 0x5920, symSize: 0x80 } - - { offsetInCU: 0x1220, offset: 0x556E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x19A0, symBinAddr: 0x59A0, symSize: 0xC8 } - - { offsetInCU: 0x1272, offset: 0x55737, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1A68, symBinAddr: 0x5A68, symSize: 0xD4 } - - { offsetInCU: 0x12F7, offset: 0x557BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1B3C, symBinAddr: 0x5B3C, symSize: 0xFC } - - { offsetInCU: 0x1394, offset: 0x55859, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1C38, symBinAddr: 0x5C38, symSize: 0x130 } - - { offsetInCU: 0x1418, offset: 0x558DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1D68, symBinAddr: 0x5D68, symSize: 0xC0 } - - { offsetInCU: 0x148C, offset: 0x55951, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x1EF4, symBinAddr: 0x5EF4, symSize: 0xF4 } - - { offsetInCU: 0x1503, offset: 0x559C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2108, symBinAddr: 0x6108, symSize: 0x48 } - - { offsetInCU: 0x1534, offset: 0x559F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2150, symBinAddr: 0x6150, symSize: 0x50 } - - { offsetInCU: 0x1576, offset: 0x55A3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x21A0, symBinAddr: 0x61A0, symSize: 0x44 } - - { offsetInCU: 0x1595, offset: 0x55A5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2260, symBinAddr: 0x6260, symSize: 0x10 } - - { offsetInCU: 0x15AD, offset: 0x55A72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x2270, symBinAddr: 0x6270, symSize: 0x4 } - - { offsetInCU: 0x15E7, offset: 0x55AAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x228C, symBinAddr: 0x628C, symSize: 0x44 } - - { offsetInCU: 0x1618, offset: 0x55ADD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x22D0, symBinAddr: 0x62D0, symSize: 0x10 } - - { offsetInCU: 0x1630, offset: 0x55AF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x22E0, symBinAddr: 0x62E0, symSize: 0x4 } - - { offsetInCU: 0x1679, offset: 0x55B3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x22FC, symBinAddr: 0x62FC, symSize: 0x44 } - - { offsetInCU: 0x16AA, offset: 0x55B6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2340, symBinAddr: 0x6340, symSize: 0x10 } - - { offsetInCU: 0x16C2, offset: 0x55B87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x2350, symBinAddr: 0x6350, symSize: 0x4 } - - { offsetInCU: 0x16FC, offset: 0x55BC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x236C, symBinAddr: 0x636C, symSize: 0x44 } - - { offsetInCU: 0x172D, offset: 0x55BF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x23B0, symBinAddr: 0x63B0, symSize: 0x10 } - - { offsetInCU: 0x1745, offset: 0x55C0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x23D8, symBinAddr: 0x63D8, symSize: 0x44 } - - { offsetInCU: 0x1776, offset: 0x55C3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x241C, symBinAddr: 0x641C, symSize: 0x10 } - - { offsetInCU: 0x178E, offset: 0x55C53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x242C, symBinAddr: 0x642C, symSize: 0x4 } - - { offsetInCU: 0x17D7, offset: 0x55C9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x2448, symBinAddr: 0x6448, symSize: 0x44 } - - { offsetInCU: 0x1808, offset: 0x55CCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x248C, symBinAddr: 0x648C, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x55CE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x24B4, symBinAddr: 0x64B4, symSize: 0x44 } - - { offsetInCU: 0x1851, offset: 0x55D16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x24F8, symBinAddr: 0x64F8, symSize: 0x10 } - - { offsetInCU: 0x1869, offset: 0x55D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2508, symBinAddr: 0x6508, symSize: 0x4 } - - { offsetInCU: 0x1894, offset: 0x55D59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x2524, symBinAddr: 0x6524, symSize: 0x44 } - - { offsetInCU: 0x18C5, offset: 0x55D8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x2568, symBinAddr: 0x6568, symSize: 0x10 } - - { offsetInCU: 0x18DD, offset: 0x55DA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x2578, symBinAddr: 0x6578, symSize: 0x4 } - - { offsetInCU: 0x1908, offset: 0x55DCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2594, symBinAddr: 0x6594, symSize: 0x44 } - - { offsetInCU: 0x1939, offset: 0x55DFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x25D8, symBinAddr: 0x65D8, symSize: 0x10 } - - { offsetInCU: 0x1951, offset: 0x55E16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x25E8, symBinAddr: 0x65E8, symSize: 0x4 } - - { offsetInCU: 0x198B, offset: 0x55E50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x2604, symBinAddr: 0x6604, symSize: 0x44 } - - { offsetInCU: 0x19BC, offset: 0x55E81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x2648, symBinAddr: 0x6648, symSize: 0x10 } - - { offsetInCU: 0x19D4, offset: 0x55E99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x2658, symBinAddr: 0x6658, symSize: 0x4 } - - { offsetInCU: 0x1A1F, offset: 0x55EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x2674, symBinAddr: 0x6674, symSize: 0x44 } - - { offsetInCU: 0x1A50, offset: 0x55F15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x26B8, symBinAddr: 0x66B8, symSize: 0x10 } - - { offsetInCU: 0x1A68, offset: 0x55F2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x26E0, symBinAddr: 0x66E0, symSize: 0x44 } - - { offsetInCU: 0x1A99, offset: 0x55F5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2724, symBinAddr: 0x6724, symSize: 0x10 } - - { offsetInCU: 0x1AB1, offset: 0x55F76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x27F4, symBinAddr: 0x67F4, symSize: 0x44 } - - { offsetInCU: 0x1AE2, offset: 0x55FA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2838, symBinAddr: 0x6838, symSize: 0x70 } - - { offsetInCU: 0x1B01, offset: 0x55FC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x28A8, symBinAddr: 0x68A8, symSize: 0x5FC } - - { offsetInCU: 0x1D11, offset: 0x561D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x2EA4, symBinAddr: 0x6EA4, symSize: 0x178 } - - { offsetInCU: 0x1D70, offset: 0x56235, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x301C, symBinAddr: 0x701C, symSize: 0x24 } - - { offsetInCU: 0x1E6F, offset: 0x56334, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x326C, symBinAddr: 0x726C, symSize: 0x518 } - - { offsetInCU: 0x202F, offset: 0x564F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3784, symBinAddr: 0x7784, symSize: 0x8 } - - { offsetInCU: 0x20B5, offset: 0x5657A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x378C, symBinAddr: 0x778C, symSize: 0x68C } - - { offsetInCU: 0x23AB, offset: 0x56870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x3E18, symBinAddr: 0x7E18, symSize: 0xC0 } - - { offsetInCU: 0x245E, offset: 0x56923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x3F04, symBinAddr: 0x7F04, symSize: 0x4 } - - { offsetInCU: 0x24B7, offset: 0x5697C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19internal_disconnectyyF', symObjAddr: 0x3F08, symBinAddr: 0x7F08, symSize: 0xD4 } - - { offsetInCU: 0x256D, offset: 0x56A32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x3FDC, symBinAddr: 0x7FDC, symSize: 0x100 } - - { offsetInCU: 0x25E9, offset: 0x56AAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x40DC, symBinAddr: 0x80DC, symSize: 0xB0 } - - { offsetInCU: 0x2675, offset: 0x56B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x418C, symBinAddr: 0x818C, symSize: 0x17C } - - { offsetInCU: 0x27E3, offset: 0x56CA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x4308, symBinAddr: 0x8308, symSize: 0x5EC } - - { offsetInCU: 0x2A2F, offset: 0x56EF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x48F4, symBinAddr: 0x88F4, symSize: 0x7C } - - { offsetInCU: 0x2A9C, offset: 0x56F61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x4970, symBinAddr: 0x8970, symSize: 0xBC } - - { offsetInCU: 0x2B88, offset: 0x5704D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4A2C, symBinAddr: 0x8A2C, symSize: 0x78 } - - { offsetInCU: 0x2C50, offset: 0x57115, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x4AA4, symBinAddr: 0x8AA4, symSize: 0xF8 } - - { offsetInCU: 0x2E9D, offset: 0x57362, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x4B9C, symBinAddr: 0x8B9C, symSize: 0x134 } - - { offsetInCU: 0x305A, offset: 0x5751F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x4CD0, symBinAddr: 0x8CD0, symSize: 0xF0 } - - { offsetInCU: 0x318C, offset: 0x57651, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4DC0, symBinAddr: 0x8DC0, symSize: 0x20 } - - { offsetInCU: 0x31AA, offset: 0x5766F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4DE0, symBinAddr: 0x8DE0, symSize: 0x2C } - - { offsetInCU: 0x320D, offset: 0x576D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4E0C, symBinAddr: 0x8E0C, symSize: 0x2C } - - { offsetInCU: 0x3274, offset: 0x57739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4E38, symBinAddr: 0x8E38, symSize: 0x44 } - - { offsetInCU: 0x3463, offset: 0x57928, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x6F1C, symBinAddr: 0xAF08, symSize: 0x24C } - - { offsetInCU: 0x3637, offset: 0x57AFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubAckV_Tg5', symObjAddr: 0x7168, symBinAddr: 0xB154, symSize: 0x22C } - - { offsetInCU: 0x380B, offset: 0x57CD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRecV_Tg5', symObjAddr: 0x7394, symBinAddr: 0xB380, symSize: 0x22C } - - { offsetInCU: 0x39DF, offset: 0x57EA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PubCompV_Tg5', symObjAddr: 0x75C0, symBinAddr: 0xB5AC, symSize: 0x22C } - - { offsetInCU: 0x3BB3, offset: 0x58078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x77EC, symBinAddr: 0xB7D8, symSize: 0x234 } - - { offsetInCU: 0x3D87, offset: 0x5824C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x7A20, symBinAddr: 0xBA0C, symSize: 0x200 } - - { offsetInCU: 0x3F5B, offset: 0x58420, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x7C20, symBinAddr: 0xBC0C, symSize: 0x22C } - - { offsetInCU: 0x412F, offset: 0x585F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x7E4C, symBinAddr: 0xBE38, symSize: 0x270 } - - { offsetInCU: 0x4303, offset: 0x587C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x80BC, symBinAddr: 0xC0A8, symSize: 0x234 } - - { offsetInCU: 0x44D7, offset: 0x5899C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRelV_Tg5', symObjAddr: 0x82F0, symBinAddr: 0xC2DC, symSize: 0x22C } - - { offsetInCU: 0x4819, offset: 0x58CDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x504, symBinAddr: 0x4504, symSize: 0x14 } - - { offsetInCU: 0x4831, offset: 0x58CF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x518, symBinAddr: 0x4518, symSize: 0x1C } - - { offsetInCU: 0x4849, offset: 0x58D0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x590, symBinAddr: 0x4590, symSize: 0x8 } - - { offsetInCU: 0x4861, offset: 0x58D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x6F8, symBinAddr: 0x46F8, symSize: 0xC } - - { offsetInCU: 0x4879, offset: 0x58D3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x760, symBinAddr: 0x4760, symSize: 0xC } - - { offsetInCU: 0x4891, offset: 0x58D56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x870, symBinAddr: 0x4870, symSize: 0x8 } - - { offsetInCU: 0x48A9, offset: 0x58D6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x8D4, symBinAddr: 0x48D4, symSize: 0x8 } - - { offsetInCU: 0x495E, offset: 0x58E23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xC68, symBinAddr: 0x4C68, symSize: 0x8 } - - { offsetInCU: 0x498D, offset: 0x58E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xD88, symBinAddr: 0x4D88, symSize: 0x250 } - - { offsetInCU: 0x4A11, offset: 0x58ED6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4E84, symBinAddr: 0x8E84, symSize: 0x5C } - - { offsetInCU: 0x4B67, offset: 0x5902C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x8 } - - { offsetInCU: 0x4B7F, offset: 0x59044, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1378, symBinAddr: 0x5378, symSize: 0x8 } - - { offsetInCU: 0x4B97, offset: 0x5905C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1380, symBinAddr: 0x5380, symSize: 0x8 } - - { offsetInCU: 0x4BAF, offset: 0x59074, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1468, symBinAddr: 0x5468, symSize: 0x8 } - - { offsetInCU: 0x4BC7, offset: 0x5908C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x14CC, symBinAddr: 0x54CC, symSize: 0x8 } - - { offsetInCU: 0x4BDF, offset: 0x590A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x15B4, symBinAddr: 0x55B4, symSize: 0x8 } - - { offsetInCU: 0x4BF7, offset: 0x590BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x15BC, symBinAddr: 0x55BC, symSize: 0x8 } - - { offsetInCU: 0x4C0F, offset: 0x590D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x15C4, symBinAddr: 0x55C4, symSize: 0x8 } - - { offsetInCU: 0x4D41, offset: 0x59206, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x20CC, symBinAddr: 0x60CC, symSize: 0x3C } - - { offsetInCU: 0x4D70, offset: 0x59235, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x21E4, symBinAddr: 0x61E4, symSize: 0x24 } - - { offsetInCU: 0x4D9F, offset: 0x59264, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x2208, symBinAddr: 0x6208, symSize: 0x24 } - - { offsetInCU: 0x4DCE, offset: 0x59293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x222C, symBinAddr: 0x622C, symSize: 0x24 } - - { offsetInCU: 0x4DFD, offset: 0x592C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x2250, symBinAddr: 0x6250, symSize: 0x8 } - - { offsetInCU: 0x4E15, offset: 0x592DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x2258, symBinAddr: 0x6258, symSize: 0x8 } - - { offsetInCU: 0x4E7C, offset: 0x59341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x3040, symBinAddr: 0x7040, symSize: 0x22C } - - { offsetInCU: 0x5033, offset: 0x594F8, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x3ED8, symBinAddr: 0x7ED8, symSize: 0x2C } - - { offsetInCU: 0x5406, offset: 0x598CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4E7C, symBinAddr: 0x8E7C, symSize: 0x8 } - - { offsetInCU: 0x5439, offset: 0x598FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4EE0, symBinAddr: 0x8EE0, symSize: 0x4 } - - { offsetInCU: 0x5467, offset: 0x5992C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x4EE4, symBinAddr: 0x8EE4, symSize: 0x1F0 } - - { offsetInCU: 0x555B, offset: 0x59A20, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x50D4, symBinAddr: 0x90D4, symSize: 0x3C } - - { offsetInCU: 0x557E, offset: 0x59A43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5110, symBinAddr: 0x9110, symSize: 0x1B0 } - - { offsetInCU: 0x5664, offset: 0x59B29, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x52C0, symBinAddr: 0x92C0, symSize: 0x64 } - - { offsetInCU: 0x567C, offset: 0x59B41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5324, symBinAddr: 0x9324, symSize: 0xC4 } - - { offsetInCU: 0x5702, offset: 0x59BC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x53E8, symBinAddr: 0x93E8, symSize: 0x4 } - - { offsetInCU: 0x57E9, offset: 0x59CAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x53EC, symBinAddr: 0x93EC, symSize: 0x268 } - - { offsetInCU: 0x5B74, offset: 0x5A039, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5654, symBinAddr: 0x9654, symSize: 0x390 } - - { offsetInCU: 0x5DBB, offset: 0x5A280, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x59E4, symBinAddr: 0x99E4, symSize: 0xB0 } - - { offsetInCU: 0x5EA1, offset: 0x5A366, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5A94, symBinAddr: 0x9A94, symSize: 0x4 } - - { offsetInCU: 0x5EC1, offset: 0x5A386, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5A94, symBinAddr: 0x9A94, symSize: 0x4 } - - { offsetInCU: 0x5EE6, offset: 0x5A3AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5A98, symBinAddr: 0x9A98, symSize: 0x4 } - - { offsetInCU: 0x5F02, offset: 0x5A3C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5A9C, symBinAddr: 0x9A9C, symSize: 0x4 } - - { offsetInCU: 0x5F1E, offset: 0x5A3E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x5AA0, symBinAddr: 0x9AA0, symSize: 0x4 } - - { offsetInCU: 0x5F3A, offset: 0x5A3FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5AA4, symBinAddr: 0x9AA4, symSize: 0x4 } - - { offsetInCU: 0x5F56, offset: 0x5A41B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x5AA8, symBinAddr: 0x9AA8, symSize: 0x4 } - - { offsetInCU: 0x5F72, offset: 0x5A437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5AAC, symBinAddr: 0x9AAC, symSize: 0x234 } - - { offsetInCU: 0x5FFA, offset: 0x5A4BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5CE0, symBinAddr: 0x9CE0, symSize: 0x140 } - - { offsetInCU: 0x60E8, offset: 0x5A5AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5E20, symBinAddr: 0x9E20, symSize: 0x2C } - - { offsetInCU: 0x612A, offset: 0x5A5EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5E4C, symBinAddr: 0x9E4C, symSize: 0x8 } - - { offsetInCU: 0x616C, offset: 0x5A631, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5E54, symBinAddr: 0x9E54, symSize: 0x8 } - - { offsetInCU: 0x61AE, offset: 0x5A673, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5E5C, symBinAddr: 0x9E5C, symSize: 0x8 } - - { offsetInCU: 0x61F0, offset: 0x5A6B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5E64, symBinAddr: 0x9E64, symSize: 0x8 } - - { offsetInCU: 0x6232, offset: 0x5A6F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5E6C, symBinAddr: 0x9E6C, symSize: 0x8 } - - { offsetInCU: 0x6274, offset: 0x5A739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5E74, symBinAddr: 0x9E74, symSize: 0x8 } - - { offsetInCU: 0x62B6, offset: 0x5A77B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5E7C, symBinAddr: 0x9E7C, symSize: 0x8 } - - { offsetInCU: 0x62F8, offset: 0x5A7BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5E84, symBinAddr: 0x9E84, symSize: 0x4 } - - { offsetInCU: 0x6318, offset: 0x5A7DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5E84, symBinAddr: 0x9E84, symSize: 0x4 } - - { offsetInCU: 0x632B, offset: 0x5A7F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5E88, symBinAddr: 0x9E88, symSize: 0x8 } - - { offsetInCU: 0x6343, offset: 0x5A808, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5E90, symBinAddr: 0x9E90, symSize: 0x10 } - - { offsetInCU: 0x635B, offset: 0x5A820, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5EA0, symBinAddr: 0x9EA0, symSize: 0x1C } - - { offsetInCU: 0x6373, offset: 0x5A838, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5EBC, symBinAddr: 0x9EBC, symSize: 0x8 } - - { offsetInCU: 0x638B, offset: 0x5A850, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x5EC4, symBinAddr: 0x9EC4, symSize: 0xC } - - { offsetInCU: 0x63A3, offset: 0x5A868, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x5ED0, symBinAddr: 0x9ED0, symSize: 0xC } - - { offsetInCU: 0x63BB, offset: 0x5A880, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x5EDC, symBinAddr: 0x9EDC, symSize: 0x8 } - - { offsetInCU: 0x63D3, offset: 0x5A898, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x5EE4, symBinAddr: 0x9EE4, symSize: 0x8 } - - { offsetInCU: 0x63EB, offset: 0x5A8B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x5EEC, symBinAddr: 0x9EEC, symSize: 0x38 } - - { offsetInCU: 0x6403, offset: 0x5A8C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x5F24, symBinAddr: 0x9F24, symSize: 0x8 } - - { offsetInCU: 0x641B, offset: 0x5A8E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x5F54, symBinAddr: 0x9F54, symSize: 0x8 } - - { offsetInCU: 0x6433, offset: 0x5A8F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5F5C, symBinAddr: 0x9F5C, symSize: 0x8 } - - { offsetInCU: 0x644B, offset: 0x5A910, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x5F64, symBinAddr: 0x9F64, symSize: 0x8 } - - { offsetInCU: 0x6463, offset: 0x5A928, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5F6C, symBinAddr: 0x9F6C, symSize: 0x8 } - - { offsetInCU: 0x647B, offset: 0x5A940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5F74, symBinAddr: 0x9F74, symSize: 0x8 } - - { offsetInCU: 0x6493, offset: 0x5A958, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x5F7C, symBinAddr: 0x9F7C, symSize: 0x8 } - - { offsetInCU: 0x64AB, offset: 0x5A970, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x5F84, symBinAddr: 0x9F84, symSize: 0x8 } - - { offsetInCU: 0x64C3, offset: 0x5A988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5F8C, symBinAddr: 0x9F8C, symSize: 0x8 } - - { offsetInCU: 0x64DB, offset: 0x5A9A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5F94, symBinAddr: 0x9F94, symSize: 0x8 } - - { offsetInCU: 0x64F3, offset: 0x5A9B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x5F9C, symBinAddr: 0x9F9C, symSize: 0x8 } - - { offsetInCU: 0x6566, offset: 0x5AA2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x5FA4, symBinAddr: 0x9FA4, symSize: 0x184 } - - { offsetInCU: 0x65E4, offset: 0x5AAA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x62DC, symBinAddr: 0xA2DC, symSize: 0x24 } - - { offsetInCU: 0x6613, offset: 0x5AAD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6300, symBinAddr: 0xA300, symSize: 0x8 } - - { offsetInCU: 0x662B, offset: 0x5AAF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x6308, symBinAddr: 0xA308, symSize: 0x8 } - - { offsetInCU: 0x6643, offset: 0x5AB08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6310, symBinAddr: 0xA310, symSize: 0x8 } - - { offsetInCU: 0x665B, offset: 0x5AB20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x6318, symBinAddr: 0xA318, symSize: 0x8 } - - { offsetInCU: 0x6673, offset: 0x5AB38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x6320, symBinAddr: 0xA320, symSize: 0x8 } - - { offsetInCU: 0x668B, offset: 0x5AB50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x6328, symBinAddr: 0xA328, symSize: 0x8 } - - { offsetInCU: 0x66A3, offset: 0x5AB68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x6330, symBinAddr: 0xA330, symSize: 0x18 } - - { offsetInCU: 0x66BB, offset: 0x5AB80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x6348, symBinAddr: 0xA348, symSize: 0x1C } - - { offsetInCU: 0x66D3, offset: 0x5AB98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x6364, symBinAddr: 0xA364, symSize: 0xC } - - { offsetInCU: 0x66EB, offset: 0x5ABB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x6370, symBinAddr: 0xA370, symSize: 0xC } - - { offsetInCU: 0x6703, offset: 0x5ABC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x637C, symBinAddr: 0xA37C, symSize: 0x8 } - - { offsetInCU: 0x671B, offset: 0x5ABE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x6384, symBinAddr: 0xA384, symSize: 0x8 } - - { offsetInCU: 0x6733, offset: 0x5ABF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x638C, symBinAddr: 0xA38C, symSize: 0x8 } - - { offsetInCU: 0x674B, offset: 0x5AC10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6394, symBinAddr: 0xA394, symSize: 0x8 } - - { offsetInCU: 0x6763, offset: 0x5AC28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x639C, symBinAddr: 0xA39C, symSize: 0x8 } - - { offsetInCU: 0x677B, offset: 0x5AC40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x63A4, symBinAddr: 0xA3A4, symSize: 0x8 } - - { offsetInCU: 0x6793, offset: 0x5AC58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x63AC, symBinAddr: 0xA3AC, symSize: 0x8 } - - { offsetInCU: 0x67AB, offset: 0x5AC70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x63B4, symBinAddr: 0xA3B4, symSize: 0x8 } - - { offsetInCU: 0x67C3, offset: 0x5AC88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x63BC, symBinAddr: 0xA3BC, symSize: 0x8 } - - { offsetInCU: 0x67DB, offset: 0x5ACA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x63C4, symBinAddr: 0xA3C4, symSize: 0x8 } - - { offsetInCU: 0x67F3, offset: 0x5ACB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x63CC, symBinAddr: 0xA3CC, symSize: 0x24 } - - { offsetInCU: 0x6836, offset: 0x5ACFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x63F0, symBinAddr: 0xA3F0, symSize: 0xC } - - { offsetInCU: 0x684E, offset: 0x5AD13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x63FC, symBinAddr: 0xA3FC, symSize: 0xC } - - { offsetInCU: 0x6866, offset: 0x5AD2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6408, symBinAddr: 0xA408, symSize: 0x8 } - - { offsetInCU: 0x687E, offset: 0x5AD43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x6410, symBinAddr: 0xA410, symSize: 0xC } - - { offsetInCU: 0x6896, offset: 0x5AD5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x641C, symBinAddr: 0xA41C, symSize: 0x8 } - - { offsetInCU: 0x68AE, offset: 0x5AD73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x6424, symBinAddr: 0xA424, symSize: 0x8 } - - { offsetInCU: 0x68C6, offset: 0x5AD8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x642C, symBinAddr: 0xA42C, symSize: 0xC } - - { offsetInCU: 0x68DE, offset: 0x5ADA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6438, symBinAddr: 0xA438, symSize: 0x8 } - - { offsetInCU: 0x68F6, offset: 0x5ADBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x6440, symBinAddr: 0xA440, symSize: 0xC } - - { offsetInCU: 0x690E, offset: 0x5ADD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x644C, symBinAddr: 0xA44C, symSize: 0x10 } - - { offsetInCU: 0x6926, offset: 0x5ADEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x645C, symBinAddr: 0xA45C, symSize: 0x8 } - - { offsetInCU: 0x693E, offset: 0x5AE03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x6464, symBinAddr: 0xA464, symSize: 0x1C } - - { offsetInCU: 0x6956, offset: 0x5AE1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x6480, symBinAddr: 0xA480, symSize: 0xC } - - { offsetInCU: 0x696E, offset: 0x5AE33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x648C, symBinAddr: 0xA48C, symSize: 0xC } - - { offsetInCU: 0x6986, offset: 0x5AE4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6498, symBinAddr: 0xA498, symSize: 0x8 } - - { offsetInCU: 0x699E, offset: 0x5AE63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x64A0, symBinAddr: 0xA4A0, symSize: 0x8 } - - { offsetInCU: 0x69B6, offset: 0x5AE7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x64A8, symBinAddr: 0xA4A8, symSize: 0x8 } - - { offsetInCU: 0x69CE, offset: 0x5AE93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x64B0, symBinAddr: 0xA4B0, symSize: 0x8 } - - { offsetInCU: 0x69E6, offset: 0x5AEAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x64B8, symBinAddr: 0xA4B8, symSize: 0xC } - - { offsetInCU: 0x69FE, offset: 0x5AEC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x64C4, symBinAddr: 0xA4C4, symSize: 0xC } - - { offsetInCU: 0x6A16, offset: 0x5AEDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x64D0, symBinAddr: 0xA4D0, symSize: 0xC } - - { offsetInCU: 0x6A2E, offset: 0x5AEF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x64DC, symBinAddr: 0xA4DC, symSize: 0xC } - - { offsetInCU: 0x6A46, offset: 0x5AF0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x64E8, symBinAddr: 0xA4E8, symSize: 0x8 } - - { offsetInCU: 0x6A5E, offset: 0x5AF23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x64F0, symBinAddr: 0xA4F0, symSize: 0x8 } - - { offsetInCU: 0x6A76, offset: 0x5AF3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x64F8, symBinAddr: 0xA4F8, symSize: 0x8 } - - { offsetInCU: 0x6A8E, offset: 0x5AF53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6500, symBinAddr: 0xA500, symSize: 0x10 } - - { offsetInCU: 0x6AA6, offset: 0x5AF6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6510, symBinAddr: 0xA510, symSize: 0x8 } - - { offsetInCU: 0x6ABE, offset: 0x5AF83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6518, symBinAddr: 0xA518, symSize: 0xC } - - { offsetInCU: 0x6AD6, offset: 0x5AF9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6524, symBinAddr: 0xA524, symSize: 0x8 } - - { offsetInCU: 0x6AEE, offset: 0x5AFB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x652C, symBinAddr: 0xA52C, symSize: 0x8 } - - { offsetInCU: 0x6B06, offset: 0x5AFCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x6534, symBinAddr: 0xA534, symSize: 0x8 } - - { offsetInCU: 0x6B1E, offset: 0x5AFE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x653C, symBinAddr: 0xA53C, symSize: 0x8 } - - { offsetInCU: 0x6B36, offset: 0x5AFFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x6544, symBinAddr: 0xA544, symSize: 0x8 } - - { offsetInCU: 0x6B4E, offset: 0x5B013, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x654C, symBinAddr: 0xA54C, symSize: 0xC } - - { offsetInCU: 0x6B66, offset: 0x5B02B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6558, symBinAddr: 0xA558, symSize: 0x8 } - - { offsetInCU: 0x6B7E, offset: 0x5B043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x6560, symBinAddr: 0xA560, symSize: 0xC } - - { offsetInCU: 0x6B96, offset: 0x5B05B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x656C, symBinAddr: 0xA56C, symSize: 0xC } - - { offsetInCU: 0x6BAE, offset: 0x5B073, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6578, symBinAddr: 0xA578, symSize: 0x8 } - - { offsetInCU: 0x6BC6, offset: 0x5B08B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6580, symBinAddr: 0xA580, symSize: 0x8 } - - { offsetInCU: 0x6BDE, offset: 0x5B0A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x6588, symBinAddr: 0xA588, symSize: 0x8 } - - { offsetInCU: 0x6BF6, offset: 0x5B0BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x6590, symBinAddr: 0xA590, symSize: 0xC } - - { offsetInCU: 0x6C0E, offset: 0x5B0D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x659C, symBinAddr: 0xA59C, symSize: 0xC } - - { offsetInCU: 0x6C26, offset: 0x5B0EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x65A8, symBinAddr: 0xA5A8, symSize: 0x8 } - - { offsetInCU: 0x6C3E, offset: 0x5B103, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x65B0, symBinAddr: 0xA5B0, symSize: 0x8 } - - { offsetInCU: 0x6C56, offset: 0x5B11B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x65B8, symBinAddr: 0xA5B8, symSize: 0x8 } - - { offsetInCU: 0x6C6E, offset: 0x5B133, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x65C0, symBinAddr: 0xA5C0, symSize: 0x8 } - - { offsetInCU: 0x6C86, offset: 0x5B14B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x65C8, symBinAddr: 0xA5C8, symSize: 0x8 } - - { offsetInCU: 0x6C9E, offset: 0x5B163, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x65D0, symBinAddr: 0xA5D0, symSize: 0xC } - - { offsetInCU: 0x6CB6, offset: 0x5B17B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x65DC, symBinAddr: 0xA5DC, symSize: 0x8 } - - { offsetInCU: 0x6CCE, offset: 0x5B193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x65E4, symBinAddr: 0xA5E4, symSize: 0x8 } - - { offsetInCU: 0x6CE6, offset: 0x5B1AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x65EC, symBinAddr: 0xA5EC, symSize: 0x8 } - - { offsetInCU: 0x6CFE, offset: 0x5B1C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x65F4, symBinAddr: 0xA5F4, symSize: 0x8 } - - { offsetInCU: 0x6D16, offset: 0x5B1DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x65FC, symBinAddr: 0xA5FC, symSize: 0x8 } - - { offsetInCU: 0x6D2E, offset: 0x5B1F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6604, symBinAddr: 0xA604, symSize: 0xC } - - { offsetInCU: 0x6D46, offset: 0x5B20B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6610, symBinAddr: 0xA610, symSize: 0x8 } - - { offsetInCU: 0x6D5E, offset: 0x5B223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x6618, symBinAddr: 0xA618, symSize: 0x8 } - - { offsetInCU: 0x6D76, offset: 0x5B23B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x6620, symBinAddr: 0xA620, symSize: 0x8 } - - { offsetInCU: 0x6D8E, offset: 0x5B253, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x6628, symBinAddr: 0xA628, symSize: 0x8 } - - { offsetInCU: 0x6DA6, offset: 0x5B26B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x6630, symBinAddr: 0xA630, symSize: 0xC } - - { offsetInCU: 0x6DBE, offset: 0x5B283, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x663C, symBinAddr: 0xA63C, symSize: 0x8 } - - { offsetInCU: 0x6DD6, offset: 0x5B29B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6644, symBinAddr: 0xA644, symSize: 0xC } - - { offsetInCU: 0x6DEE, offset: 0x5B2B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6650, symBinAddr: 0xA650, symSize: 0x8 } - - { offsetInCU: 0x6E06, offset: 0x5B2CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x6658, symBinAddr: 0xA658, symSize: 0x8 } - - { offsetInCU: 0x6E1E, offset: 0x5B2E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x6660, symBinAddr: 0xA660, symSize: 0x8 } - - { offsetInCU: 0x6E36, offset: 0x5B2FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x6668, symBinAddr: 0xA668, symSize: 0x8 } - - { offsetInCU: 0x6E4E, offset: 0x5B313, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x6670, symBinAddr: 0xA670, symSize: 0xC } - - { offsetInCU: 0x6E66, offset: 0x5B32B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x667C, symBinAddr: 0xA67C, symSize: 0x8 } - - { offsetInCU: 0x6E7E, offset: 0x5B343, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6684, symBinAddr: 0xA684, symSize: 0xC } - - { offsetInCU: 0x6E96, offset: 0x5B35B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6690, symBinAddr: 0xA690, symSize: 0x8 } - - { offsetInCU: 0x6EAE, offset: 0x5B373, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x6698, symBinAddr: 0xA698, symSize: 0xC } - - { offsetInCU: 0x6EC6, offset: 0x5B38B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x66A4, symBinAddr: 0xA6A4, symSize: 0xC } - - { offsetInCU: 0x6EDE, offset: 0x5B3A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x66B0, symBinAddr: 0xA6B0, symSize: 0x8 } - - { offsetInCU: 0x6EF6, offset: 0x5B3BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x66B8, symBinAddr: 0xA6B8, symSize: 0x8 } - - { offsetInCU: 0x6F0E, offset: 0x5B3D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x66C0, symBinAddr: 0xA6C0, symSize: 0xC } - - { offsetInCU: 0x6F26, offset: 0x5B3EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x66CC, symBinAddr: 0xA6CC, symSize: 0x8 } - - { offsetInCU: 0x6F3E, offset: 0x5B403, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x66D4, symBinAddr: 0xA6D4, symSize: 0x8 } - - { offsetInCU: 0x6F56, offset: 0x5B41B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x66DC, symBinAddr: 0xA6DC, symSize: 0x8 } - - { offsetInCU: 0x6F6E, offset: 0x5B433, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x66E4, symBinAddr: 0xA6E4, symSize: 0x8 } - - { offsetInCU: 0x6FFF, offset: 0x5B4C4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x670C, symBinAddr: 0xA6F8, symSize: 0xE4 } - - { offsetInCU: 0x718E, offset: 0x5B653, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x67F0, symBinAddr: 0xA7DC, symSize: 0xBC } - - { offsetInCU: 0x72E9, offset: 0x5B7AE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x697C, symBinAddr: 0xA968, symSize: 0xC4 } - - { offsetInCU: 0x7434, offset: 0x5B8F9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x6A4C, symBinAddr: 0xAA38, symSize: 0xCC } - - { offsetInCU: 0x7548, offset: 0x5BA0D, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x6B18, symBinAddr: 0xAB04, symSize: 0xA4 } - - { offsetInCU: 0x75CF, offset: 0x5BA94, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x6DCC, symBinAddr: 0xADB8, symSize: 0x150 } - - { offsetInCU: 0x7673, offset: 0x5BB38, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x8530, symBinAddr: 0xC51C, symSize: 0x40 } - - { offsetInCU: 0x7687, offset: 0x5BB4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x8594, symBinAddr: 0xC580, symSize: 0x8 } - - { offsetInCU: 0x769B, offset: 0x5BB60, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x859C, symBinAddr: 0xC588, symSize: 0x24 } - - { offsetInCU: 0x76AF, offset: 0x5BB74, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x85C0, symBinAddr: 0xC5AC, symSize: 0x20 } - - { offsetInCU: 0x76C3, offset: 0x5BB88, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x85E0, symBinAddr: 0xC5CC, symSize: 0x28 } - - { offsetInCU: 0x772F, offset: 0x5BBF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x87F8, symBinAddr: 0xC7E4, symSize: 0x20 } - - { offsetInCU: 0x7743, offset: 0x5BC08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8850, symBinAddr: 0xC83C, symSize: 0x8 } - - { offsetInCU: 0x7757, offset: 0x5BC1C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8858, symBinAddr: 0xC844, symSize: 0x10 } - - { offsetInCU: 0x776B, offset: 0x5BC30, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8868, symBinAddr: 0xC854, symSize: 0x8 } - - { offsetInCU: 0x777F, offset: 0x5BC44, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x88B0, symBinAddr: 0xC89C, symSize: 0x54 } - - { offsetInCU: 0x7793, offset: 0x5BC58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8904, symBinAddr: 0xC8F0, symSize: 0x8 } - - { offsetInCU: 0x784C, offset: 0x5BD11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x8C4C, symBinAddr: 0xCC38, symSize: 0x10 } - - { offsetInCU: 0x7860, offset: 0x5BD25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x8C5C, symBinAddr: 0xCC48, symSize: 0x6C } - - { offsetInCU: 0x7874, offset: 0x5BD39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x8CC8, symBinAddr: 0xCCB4, symSize: 0x6C } - - { offsetInCU: 0x7888, offset: 0x5BD4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8D58, symBinAddr: 0xCD44, symSize: 0xC } - - { offsetInCU: 0x789C, offset: 0x5BD61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOs', symObjAddr: 0x8D64, symBinAddr: 0xCD50, symSize: 0x44 } - - { offsetInCU: 0x78B0, offset: 0x5BD75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x8DA8, symBinAddr: 0xCD94, symSize: 0x8 } - - { offsetInCU: 0x78E2, offset: 0x5BDA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x8DB0, symBinAddr: 0xCD9C, symSize: 0x350 } - - { offsetInCU: 0x7AC2, offset: 0x5BF87, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfC9CocoaMQTT5Frame_p_Tg5Tf4nnd_n', symObjAddr: 0x9184, symBinAddr: 0xD170, symSize: 0x84 } - - { offsetInCU: 0x7B5C, offset: 0x5C021, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x9208, symBinAddr: 0xD1F4, symSize: 0x5FC } - - { offsetInCU: 0x809B, offset: 0x5C560, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x9804, symBinAddr: 0xD7F0, symSize: 0x4A8 } - - { offsetInCU: 0x8462, offset: 0x5C927, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9CAC, symBinAddr: 0xDC98, symSize: 0x1C0 } - - { offsetInCU: 0x858F, offset: 0x5CA54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9E6C, symBinAddr: 0xDE58, symSize: 0x130 } - - { offsetInCU: 0x86B5, offset: 0x5CB7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9F9C, symBinAddr: 0xDF88, symSize: 0x134 } - - { offsetInCU: 0x87E0, offset: 0x5CCA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0xA0D0, symBinAddr: 0xE0BC, symSize: 0x1D8 } - - { offsetInCU: 0x89F4, offset: 0x5CEB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA2A8, symBinAddr: 0xE294, symSize: 0x678 } - - { offsetInCU: 0x906F, offset: 0x5D534, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA984, symBinAddr: 0xE970, symSize: 0x39C } - - { offsetInCU: 0x93D1, offset: 0x5D896, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAD20, symBinAddr: 0xED0C, symSize: 0x140 } - - { offsetInCU: 0x9488, offset: 0x5D94D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xAE60, symBinAddr: 0xEE4C, symSize: 0x4 } - - { offsetInCU: 0x949C, offset: 0x5D961, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xAE64, symBinAddr: 0xEE50, symSize: 0x44 } - - { offsetInCU: 0x94B0, offset: 0x5D975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xAEA8, symBinAddr: 0xEE94, symSize: 0x10 } - - { offsetInCU: 0x94C4, offset: 0x5D989, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xAFA8, symBinAddr: 0xEF94, symSize: 0x24 } - - { offsetInCU: 0x94D8, offset: 0x5D99D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xAFD0, symBinAddr: 0xEFBC, symSize: 0x44 } - - { offsetInCU: 0x94EC, offset: 0x5D9B1, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xB014, symBinAddr: 0xF000, symSize: 0x28 } - - { offsetInCU: 0x9500, offset: 0x5D9C5, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xB03C, symBinAddr: 0xF028, symSize: 0x28 } - - { offsetInCU: 0x9514, offset: 0x5D9D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xB06C, symBinAddr: 0xF058, symSize: 0x8 } - - { offsetInCU: 0x9528, offset: 0x5D9ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xB098, symBinAddr: 0xF084, symSize: 0x8 } - - { offsetInCU: 0x953C, offset: 0x5DA01, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xB0B0, symBinAddr: 0xF09C, symSize: 0x8 } - - { offsetInCU: 0x9550, offset: 0x5DA15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xB0B8, symBinAddr: 0xF0A4, symSize: 0x8 } - - { offsetInCU: 0x9564, offset: 0x5DA29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xB210, symBinAddr: 0xF1FC, symSize: 0xC0 } - - { offsetInCU: 0x9578, offset: 0x5DA3D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xB2D0, symBinAddr: 0xF2BC, symSize: 0x14 } - - { offsetInCU: 0x958C, offset: 0x5DA51, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xB2E4, symBinAddr: 0xF2D0, symSize: 0x50 } - - { offsetInCU: 0x95A0, offset: 0x5DA65, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xB334, symBinAddr: 0xF320, symSize: 0x14 } - - { offsetInCU: 0x95B4, offset: 0x5DA79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xB42C, symBinAddr: 0xF418, symSize: 0x44 } - - { offsetInCU: 0x95C8, offset: 0x5DA8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xB4A4, symBinAddr: 0xF490, symSize: 0x44 } - - { offsetInCU: 0x95DC, offset: 0x5DAA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xB514, symBinAddr: 0xF500, symSize: 0xC } - - { offsetInCU: 0x9655, offset: 0x5DB1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x140, symBinAddr: 0x4140, symSize: 0x14 } - - { offsetInCU: 0x96F2, offset: 0x5DBB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x154, symBinAddr: 0x4154, symSize: 0x44 } - - { offsetInCU: 0x9781, offset: 0x5DC46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x198, symBinAddr: 0x4198, symSize: 0x28 } - - { offsetInCU: 0x97D4, offset: 0x5DC99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C0, symBinAddr: 0x41C0, symSize: 0x40 } - - { offsetInCU: 0x9BFA, offset: 0x5E0BF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTg5Tf4gd_n', symObjAddr: 0x8608, symBinAddr: 0xC5F4, symSize: 0xEC } - - { offsetInCU: 0x9D33, offset: 0x5E1F8, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x890C, symBinAddr: 0xC8F8, symSize: 0x104 } - - { offsetInCU: 0x9E56, offset: 0x5E31B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x8B20, symBinAddr: 0xCB0C, symSize: 0xF4 } - - { offsetInCU: 0xE9, offset: 0x5EBD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0xF7E8, symSize: 0x64 } - - { offsetInCU: 0x118, offset: 0x5EC05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x1F4, symBinAddr: 0xF84C, symSize: 0x28 } - - { offsetInCU: 0x137, offset: 0x5EC24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x21C, symBinAddr: 0xF874, symSize: 0x4 } - - { offsetInCU: 0x17A, offset: 0x5EC67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2E0, symBinAddr: 0xF938, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x5EC98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x300, symBinAddr: 0xF958, symSize: 0xC } - - { offsetInCU: 0x1C7, offset: 0x5ECB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x30C, symBinAddr: 0xF964, symSize: 0x8 } - - { offsetInCU: 0x2B8, offset: 0x5EDA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x314, symBinAddr: 0xF96C, symSize: 0x148 } - - { offsetInCU: 0x40F, offset: 0x5EEFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x45C, symBinAddr: 0xFAB4, symSize: 0x48 } - - { offsetInCU: 0x42E, offset: 0x5EF1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x4A4, symBinAddr: 0xFAFC, symSize: 0x58 } - - { offsetInCU: 0x46D, offset: 0x5EF5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x4FC, symBinAddr: 0xFB54, symSize: 0x70 } - - { offsetInCU: 0x49C, offset: 0x5EF89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x56C, symBinAddr: 0xFBC4, symSize: 0x6C } - - { offsetInCU: 0x4C7, offset: 0x5EFB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x5F0, symBinAddr: 0xFC48, symSize: 0x44 } - - { offsetInCU: 0x4F6, offset: 0x5EFE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x64C, symBinAddr: 0xFCA4, symSize: 0x44 } - - { offsetInCU: 0x525, offset: 0x5F012, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x750, symBinAddr: 0xFDA8, symSize: 0x44 } - - { offsetInCU: 0x554, offset: 0x5F041, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x7AC, symBinAddr: 0xFE04, symSize: 0x44 } - - { offsetInCU: 0x583, offset: 0x5F070, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x8B0, symBinAddr: 0xFF08, symSize: 0x44 } - - { offsetInCU: 0x5B2, offset: 0x5F09F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0x90C, symBinAddr: 0xFF64, symSize: 0x44 } - - { offsetInCU: 0x5E1, offset: 0x5F0CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0x968, symBinAddr: 0xFFC0, symSize: 0x44 } - - { offsetInCU: 0x610, offset: 0x5F0FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0x9AC, symBinAddr: 0x10004, symSize: 0x4 } - - { offsetInCU: 0x65B, offset: 0x5F148, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0x9B0, symBinAddr: 0x10008, symSize: 0xC0 } - - { offsetInCU: 0x6CB, offset: 0x5F1B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xA7C, symBinAddr: 0x100D4, symSize: 0xF4 } - - { offsetInCU: 0x73E, offset: 0x5F22B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xB7C, symBinAddr: 0x101D4, symSize: 0x44 } - - { offsetInCU: 0x75D, offset: 0x5F24A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xBC0, symBinAddr: 0x10218, symSize: 0x50 } - - { offsetInCU: 0x79C, offset: 0x5F289, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC10, symBinAddr: 0x10268, symSize: 0x44 } - - { offsetInCU: 0x827, offset: 0x5F314, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xC54, symBinAddr: 0x102AC, symSize: 0x118 } - - { offsetInCU: 0x8FD, offset: 0x5F3EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0xFBC, symBinAddr: 0x10614, symSize: 0x44 } - - { offsetInCU: 0x93A, offset: 0x5F427, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1000, symBinAddr: 0x10658, symSize: 0x90 } - - { offsetInCU: 0x982, offset: 0x5F46F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1090, symBinAddr: 0x106E8, symSize: 0x48 } - - { offsetInCU: 0x9B1, offset: 0x5F49E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x10D8, symBinAddr: 0x10730, symSize: 0x80 } - - { offsetInCU: 0xA0E, offset: 0x5F4FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1158, symBinAddr: 0x107B0, symSize: 0x20 } - - { offsetInCU: 0xA2E, offset: 0x5F51B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1158, symBinAddr: 0x107B0, symSize: 0x20 } - - { offsetInCU: 0xA5E, offset: 0x5F54B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x1178, symBinAddr: 0x107D0, symSize: 0x20 } - - { offsetInCU: 0xA87, offset: 0x5F574, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x1178, symBinAddr: 0x107D0, symSize: 0x20 } - - { offsetInCU: 0xADF, offset: 0x5F5CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x1198, symBinAddr: 0x107F0, symSize: 0x34 } - - { offsetInCU: 0xB6D, offset: 0x5F65A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11CC, symBinAddr: 0x10824, symSize: 0x20 } - - { offsetInCU: 0xB9B, offset: 0x5F688, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11CC, symBinAddr: 0x10824, symSize: 0x20 } - - { offsetInCU: 0xBAF, offset: 0x5F69C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11CC, symBinAddr: 0x10824, symSize: 0x20 } - - { offsetInCU: 0xC03, offset: 0x5F6F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x11EC, symBinAddr: 0x10844, symSize: 0x20 } - - { offsetInCU: 0xC23, offset: 0x5F710, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x11EC, symBinAddr: 0x10844, symSize: 0x20 } - - { offsetInCU: 0xC71, offset: 0x5F75E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x1218, symBinAddr: 0x10870, symSize: 0x34 } - - { offsetInCU: 0xCD5, offset: 0x5F7C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x1258, symBinAddr: 0x108B0, symSize: 0x20 } - - { offsetInCU: 0xCF5, offset: 0x5F7E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x1258, symBinAddr: 0x108B0, symSize: 0x20 } - - { offsetInCU: 0xD43, offset: 0x5F830, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x129C, symBinAddr: 0x108F4, symSize: 0x34 } - - { offsetInCU: 0xDA7, offset: 0x5F894, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x130C, symBinAddr: 0x10964, symSize: 0x44 } - - { offsetInCU: 0xDD6, offset: 0x5F8C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x13EC, symBinAddr: 0x10A44, symSize: 0x44 } - - { offsetInCU: 0xE05, offset: 0x5F8F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1448, symBinAddr: 0x10AA0, symSize: 0x44 } - - { offsetInCU: 0xE34, offset: 0x5F921, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1528, symBinAddr: 0x10B80, symSize: 0x44 } - - { offsetInCU: 0xE63, offset: 0x5F950, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x1584, symBinAddr: 0x10BDC, symSize: 0x44 } - - { offsetInCU: 0xE92, offset: 0x5F97F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x1678, symBinAddr: 0x10CD0, symSize: 0x44 } - - { offsetInCU: 0xEC1, offset: 0x5F9AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x16BC, symBinAddr: 0x10D14, symSize: 0x78 } - - { offsetInCU: 0xEFE, offset: 0x5F9EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x1734, symBinAddr: 0x10D8C, symSize: 0x7C } - - { offsetInCU: 0xF6C, offset: 0x5FA59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x17B0, symBinAddr: 0x10E08, symSize: 0x90 } - - { offsetInCU: 0xFF0, offset: 0x5FADD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x1840, symBinAddr: 0x10E98, symSize: 0x24 } - - { offsetInCU: 0x1045, offset: 0x5FB32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1864, symBinAddr: 0x10EBC, symSize: 0x88 } - - { offsetInCU: 0x10A2, offset: 0x5FB8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x18EC, symBinAddr: 0x10F44, symSize: 0x7C } - - { offsetInCU: 0x1101, offset: 0x5FBEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1968, symBinAddr: 0x10FC0, symSize: 0xA8 } - - { offsetInCU: 0x1189, offset: 0x5FC76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1A10, symBinAddr: 0x11068, symSize: 0x80 } - - { offsetInCU: 0x1200, offset: 0x5FCED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1A90, symBinAddr: 0x110E8, symSize: 0xC8 } - - { offsetInCU: 0x1254, offset: 0x5FD41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1B58, symBinAddr: 0x111B0, symSize: 0xD4 } - - { offsetInCU: 0x12DD, offset: 0x5FDCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1C2C, symBinAddr: 0x11284, symSize: 0xFC } - - { offsetInCU: 0x1381, offset: 0x5FE6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1D28, symBinAddr: 0x11380, symSize: 0x130 } - - { offsetInCU: 0x140A, offset: 0x5FEF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x1E58, symBinAddr: 0x114B0, symSize: 0xC0 } - - { offsetInCU: 0x147E, offset: 0x5FF6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x1FE4, symBinAddr: 0x1163C, symSize: 0xF4 } - - { offsetInCU: 0x14F5, offset: 0x5FFE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x21BC, symBinAddr: 0x11814, symSize: 0x48 } - - { offsetInCU: 0x1514, offset: 0x60001, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2204, symBinAddr: 0x1185C, symSize: 0x50 } - - { offsetInCU: 0x1556, offset: 0x60043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2254, symBinAddr: 0x118AC, symSize: 0x44 } - - { offsetInCU: 0x1587, offset: 0x60074, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x2298, symBinAddr: 0x118F0, symSize: 0x10 } - - { offsetInCU: 0x159F, offset: 0x6008C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x22A8, symBinAddr: 0x11900, symSize: 0x4 } - - { offsetInCU: 0x15E8, offset: 0x600D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x22C4, symBinAddr: 0x1191C, symSize: 0x44 } - - { offsetInCU: 0x1619, offset: 0x60106, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x2308, symBinAddr: 0x11960, symSize: 0x10 } - - { offsetInCU: 0x1631, offset: 0x6011E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x2318, symBinAddr: 0x11970, symSize: 0x4 } - - { offsetInCU: 0x167A, offset: 0x60167, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x2334, symBinAddr: 0x1198C, symSize: 0x44 } - - { offsetInCU: 0x16AB, offset: 0x60198, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2378, symBinAddr: 0x119D0, symSize: 0x10 } - - { offsetInCU: 0x16C3, offset: 0x601B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2388, symBinAddr: 0x119E0, symSize: 0x4 } - - { offsetInCU: 0x170C, offset: 0x601F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x23A4, symBinAddr: 0x119FC, symSize: 0x44 } - - { offsetInCU: 0x173D, offset: 0x6022A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x23E8, symBinAddr: 0x11A40, symSize: 0x10 } - - { offsetInCU: 0x1755, offset: 0x60242, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2410, symBinAddr: 0x11A68, symSize: 0x44 } - - { offsetInCU: 0x1786, offset: 0x60273, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x2454, symBinAddr: 0x11AAC, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x6028B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x2464, symBinAddr: 0x11ABC, symSize: 0x4 } - - { offsetInCU: 0x17F6, offset: 0x602E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x2480, symBinAddr: 0x11AD8, symSize: 0x44 } - - { offsetInCU: 0x1827, offset: 0x60314, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x24C4, symBinAddr: 0x11B1C, symSize: 0x10 } - - { offsetInCU: 0x183F, offset: 0x6032C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x24D4, symBinAddr: 0x11B2C, symSize: 0x4 } - - { offsetInCU: 0x1897, offset: 0x60384, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x24F0, symBinAddr: 0x11B48, symSize: 0x44 } - - { offsetInCU: 0x18C8, offset: 0x603B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x2534, symBinAddr: 0x11B8C, symSize: 0x10 } - - { offsetInCU: 0x18E0, offset: 0x603CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x2544, symBinAddr: 0x11B9C, symSize: 0x4 } - - { offsetInCU: 0x1929, offset: 0x60416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x2560, symBinAddr: 0x11BB8, symSize: 0x44 } - - { offsetInCU: 0x195A, offset: 0x60447, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x25A4, symBinAddr: 0x11BFC, symSize: 0x10 } - - { offsetInCU: 0x1972, offset: 0x6045F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x25B4, symBinAddr: 0x11C0C, symSize: 0x4 } - - { offsetInCU: 0x199D, offset: 0x6048A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x25D0, symBinAddr: 0x11C28, symSize: 0x44 } - - { offsetInCU: 0x19CE, offset: 0x604BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x2614, symBinAddr: 0x11C6C, symSize: 0x10 } - - { offsetInCU: 0x19E6, offset: 0x604D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x2624, symBinAddr: 0x11C7C, symSize: 0x4 } - - { offsetInCU: 0x1A11, offset: 0x604FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2640, symBinAddr: 0x11C98, symSize: 0x44 } - - { offsetInCU: 0x1A42, offset: 0x6052F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2684, symBinAddr: 0x11CDC, symSize: 0x10 } - - { offsetInCU: 0x1A5A, offset: 0x60547, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2694, symBinAddr: 0x11CEC, symSize: 0x4 } - - { offsetInCU: 0x1A94, offset: 0x60581, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x26B0, symBinAddr: 0x11D08, symSize: 0x44 } - - { offsetInCU: 0x1AC5, offset: 0x605B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x26F4, symBinAddr: 0x11D4C, symSize: 0x10 } - - { offsetInCU: 0x1ADD, offset: 0x605CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x271C, symBinAddr: 0x11D74, symSize: 0x44 } - - { offsetInCU: 0x1B0E, offset: 0x605FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2760, symBinAddr: 0x11DB8, symSize: 0x10 } - - { offsetInCU: 0x1B26, offset: 0x60613, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2788, symBinAddr: 0x11DE0, symSize: 0x44 } - - { offsetInCU: 0x1B57, offset: 0x60644, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x27CC, symBinAddr: 0x11E24, symSize: 0x10 } - - { offsetInCU: 0x1B6F, offset: 0x6065C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x27DC, symBinAddr: 0x11E34, symSize: 0x4 } - - { offsetInCU: 0x1BBA, offset: 0x606A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x27F8, symBinAddr: 0x11E50, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x606D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x283C, symBinAddr: 0x11E94, symSize: 0x10 } - - { offsetInCU: 0x1C03, offset: 0x606F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2864, symBinAddr: 0x11EBC, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x60721, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x28A8, symBinAddr: 0x11F00, symSize: 0x10 } - - { offsetInCU: 0x1C4C, offset: 0x60739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x28B8, symBinAddr: 0x11F10, symSize: 0x4 } - - { offsetInCU: 0x1C86, offset: 0x60773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x297C, symBinAddr: 0x11FD4, symSize: 0x44 } - - { offsetInCU: 0x1CB7, offset: 0x607A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x29C0, symBinAddr: 0x12018, symSize: 0x70 } - - { offsetInCU: 0x1CD6, offset: 0x607C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2A30, symBinAddr: 0x12088, symSize: 0x92C } - - { offsetInCU: 0x1FCF, offset: 0x60ABC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x335C, symBinAddr: 0x129B4, symSize: 0x178 } - - { offsetInCU: 0x202E, offset: 0x60B1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x34D4, symBinAddr: 0x12B2C, symSize: 0x24 } - - { offsetInCU: 0x214B, offset: 0x60C38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3780, symBinAddr: 0x12DD8, symSize: 0x534 } - - { offsetInCU: 0x232A, offset: 0x60E17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3CB4, symBinAddr: 0x1330C, symSize: 0x8 } - - { offsetInCU: 0x23B0, offset: 0x60E9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3CBC, symBinAddr: 0x13314, symSize: 0x68C } - - { offsetInCU: 0x26A6, offset: 0x61193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4348, symBinAddr: 0x139A0, symSize: 0xC0 } - - { offsetInCU: 0x2759, offset: 0x61246, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x4408, symBinAddr: 0x13A60, symSize: 0x4 } - - { offsetInCU: 0x2788, offset: 0x61275, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x440C, symBinAddr: 0x13A64, symSize: 0x4 } - - { offsetInCU: 0x27FF, offset: 0x612EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19internal_disconnectyyF', symObjAddr: 0x4410, symBinAddr: 0x13A68, symSize: 0xD0 } - - { offsetInCU: 0x28BC, offset: 0x613A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x44E0, symBinAddr: 0x13B38, symSize: 0x114 } - - { offsetInCU: 0x298D, offset: 0x6147A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x45F4, symBinAddr: 0x13C4C, symSize: 0x100 } - - { offsetInCU: 0x2A09, offset: 0x614F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x46F4, symBinAddr: 0x13D4C, symSize: 0xB0 } - - { offsetInCU: 0x2AA4, offset: 0x61591, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x47A4, symBinAddr: 0x13DFC, symSize: 0xD8 } - - { offsetInCU: 0x2BB2, offset: 0x6169F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x487C, symBinAddr: 0x13ED4, symSize: 0x8 } - - { offsetInCU: 0x2BC6, offset: 0x616B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x4884, symBinAddr: 0x13EDC, symSize: 0x6C } - - { offsetInCU: 0x2C33, offset: 0x61720, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x48F0, symBinAddr: 0x13F48, symSize: 0xC4 } - - { offsetInCU: 0x2E19, offset: 0x61906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x49B4, symBinAddr: 0x1400C, symSize: 0x204 } - - { offsetInCU: 0x308C, offset: 0x61B79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4BB8, symBinAddr: 0x14210, symSize: 0xE0 } - - { offsetInCU: 0x31F3, offset: 0x61CE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4C98, symBinAddr: 0x142F0, symSize: 0xE8 } - - { offsetInCU: 0x3413, offset: 0x61F00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4D80, symBinAddr: 0x143D8, symSize: 0x1E8 } - - { offsetInCU: 0x362D, offset: 0x6211A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4F68, symBinAddr: 0x145C0, symSize: 0xD4 } - - { offsetInCU: 0x3751, offset: 0x6223E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x503C, symBinAddr: 0x14694, symSize: 0x10C } - - { offsetInCU: 0x381A, offset: 0x62307, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x5148, symBinAddr: 0x147A0, symSize: 0x20 } - - { offsetInCU: 0x3838, offset: 0x62325, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x5168, symBinAddr: 0x147C0, symSize: 0x2C } - - { offsetInCU: 0x389B, offset: 0x62388, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x5194, symBinAddr: 0x147EC, symSize: 0x2C } - - { offsetInCU: 0x3902, offset: 0x623EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x51C0, symBinAddr: 0x14818, symSize: 0x44 } - - { offsetInCU: 0x3AF1, offset: 0x625DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x6AF8, symBinAddr: 0x160A4, symSize: 0x234 } - - { offsetInCU: 0x3CC5, offset: 0x627B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubAckV_Tg5', symObjAddr: 0x6D2C, symBinAddr: 0x162D8, symSize: 0x22C } - - { offsetInCU: 0x3E99, offset: 0x62986, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRecV_Tg5', symObjAddr: 0x6F58, symBinAddr: 0x16504, symSize: 0x22C } - - { offsetInCU: 0x406D, offset: 0x62B5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PubCompV_Tg5', symObjAddr: 0x7184, symBinAddr: 0x16730, symSize: 0x22C } - - { offsetInCU: 0x4241, offset: 0x62D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x73B0, symBinAddr: 0x1695C, symSize: 0x24C } - - { offsetInCU: 0x4415, offset: 0x62F02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x75FC, symBinAddr: 0x16BA8, symSize: 0x200 } - - { offsetInCU: 0x45E9, offset: 0x630D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x77FC, symBinAddr: 0x16DA8, symSize: 0x22C } - - { offsetInCU: 0x47BD, offset: 0x632AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x7A28, symBinAddr: 0x16FD4, symSize: 0x270 } - - { offsetInCU: 0x4991, offset: 0x6347E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x7C98, symBinAddr: 0x17244, symSize: 0x25C } - - { offsetInCU: 0x4B65, offset: 0x63652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x7EF4, symBinAddr: 0x174A0, symSize: 0x234 } - - { offsetInCU: 0x4D39, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRelV_Tg5', symObjAddr: 0x8128, symBinAddr: 0x176D4, symSize: 0x22C } - - { offsetInCU: 0x505A, offset: 0x63B47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xB460, symBinAddr: 0x1A9B8, symSize: 0x770 } - - { offsetInCU: 0x553E, offset: 0x6402B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xD6C, symBinAddr: 0x103C4, symSize: 0x250 } - - { offsetInCU: 0x55C2, offset: 0x640AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x520C, symBinAddr: 0x14864, symSize: 0x5C } - - { offsetInCU: 0x56EA, offset: 0x641D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x8354, symBinAddr: 0x17900, symSize: 0x340 } - - { offsetInCU: 0x5795, offset: 0x64282, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x8694, symBinAddr: 0x17C40, symSize: 0x344 } - - { offsetInCU: 0x5840, offset: 0x6432D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x89D8, symBinAddr: 0x17F84, symSize: 0x344 } - - { offsetInCU: 0x5ABC, offset: 0x645A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6230, symBinAddr: 0x157DC, symSize: 0x1B8 } - - { offsetInCU: 0x5B22, offset: 0x6460F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x63E8, symBinAddr: 0x15994, symSize: 0xC4 } - - { offsetInCU: 0x5B91, offset: 0x6467E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x64AC, symBinAddr: 0x15A58, symSize: 0x108 } - - { offsetInCU: 0x5D56, offset: 0x64843, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x34F8, symBinAddr: 0x12B50, symSize: 0x288 } - - { offsetInCU: 0x61F2, offset: 0x64CDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x5204, symBinAddr: 0x1485C, symSize: 0x8 } - - { offsetInCU: 0x6225, offset: 0x64D12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5268, symBinAddr: 0x148C0, symSize: 0x4 } - - { offsetInCU: 0x6253, offset: 0x64D40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x526C, symBinAddr: 0x148C4, symSize: 0x1F0 } - - { offsetInCU: 0x6352, offset: 0x64E3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x545C, symBinAddr: 0x14AB4, symSize: 0x1B0 } - - { offsetInCU: 0x6438, offset: 0x64F25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x560C, symBinAddr: 0x14C64, symSize: 0xC4 } - - { offsetInCU: 0x64BE, offset: 0x64FAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x56D0, symBinAddr: 0x14D28, symSize: 0x4 } - - { offsetInCU: 0x65A5, offset: 0x65092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x56D4, symBinAddr: 0x14D2C, symSize: 0x258 } - - { offsetInCU: 0x6930, offset: 0x6541D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x592C, symBinAddr: 0x14F84, symSize: 0x390 } - - { offsetInCU: 0x6B77, offset: 0x65664, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5CBC, symBinAddr: 0x15314, symSize: 0xB0 } - - { offsetInCU: 0x6C5D, offset: 0x6574A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5D6C, symBinAddr: 0x153C4, symSize: 0x4 } - - { offsetInCU: 0x6C7D, offset: 0x6576A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5D6C, symBinAddr: 0x153C4, symSize: 0x4 } - - { offsetInCU: 0x6CA2, offset: 0x6578F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5D70, symBinAddr: 0x153C8, symSize: 0x4 } - - { offsetInCU: 0x6CBE, offset: 0x657AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5D74, symBinAddr: 0x153CC, symSize: 0x4 } - - { offsetInCU: 0x6CDA, offset: 0x657C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5D78, symBinAddr: 0x153D0, symSize: 0x4 } - - { offsetInCU: 0x6CF6, offset: 0x657E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5D7C, symBinAddr: 0x153D4, symSize: 0x4 } - - { offsetInCU: 0x6D12, offset: 0x657FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5D80, symBinAddr: 0x153D8, symSize: 0x4 } - - { offsetInCU: 0x6D2E, offset: 0x6581B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5D84, symBinAddr: 0x153DC, symSize: 0x234 } - - { offsetInCU: 0x6DB6, offset: 0x658A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5FB8, symBinAddr: 0x15610, symSize: 0x140 } - - { offsetInCU: 0x6EA4, offset: 0x65991, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x60F8, symBinAddr: 0x15750, symSize: 0x24 } - - { offsetInCU: 0x6EE6, offset: 0x659D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x611C, symBinAddr: 0x15774, symSize: 0x8 } - - { offsetInCU: 0x6F28, offset: 0x65A15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x6124, symBinAddr: 0x1577C, symSize: 0x8 } - - { offsetInCU: 0x6F6A, offset: 0x65A57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x612C, symBinAddr: 0x15784, symSize: 0x8 } - - { offsetInCU: 0x6FAC, offset: 0x65A99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6134, symBinAddr: 0x1578C, symSize: 0x8 } - - { offsetInCU: 0x6FEE, offset: 0x65ADB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x613C, symBinAddr: 0x15794, symSize: 0x8 } - - { offsetInCU: 0x7030, offset: 0x65B1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6144, symBinAddr: 0x1579C, symSize: 0x8 } - - { offsetInCU: 0x7072, offset: 0x65B5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x614C, symBinAddr: 0x157A4, symSize: 0x8 } - - { offsetInCU: 0x70B4, offset: 0x65BA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6154, symBinAddr: 0x157AC, symSize: 0x4 } - - { offsetInCU: 0x70D4, offset: 0x65BC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6154, symBinAddr: 0x157AC, symSize: 0x4 } - - { offsetInCU: 0x70E7, offset: 0x65BD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x61BC, symBinAddr: 0x157D4, symSize: 0x8 } - - { offsetInCU: 0x713D, offset: 0x65C2A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x65C8, symBinAddr: 0x15B74, symSize: 0x1DC } - - { offsetInCU: 0x71E4, offset: 0x65CD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x8D1C, symBinAddr: 0x182C8, symSize: 0xAC } - - { offsetInCU: 0x7226, offset: 0x65D13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x8DC8, symBinAddr: 0x18374, symSize: 0x94 } - - { offsetInCU: 0x7268, offset: 0x65D55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x8E5C, symBinAddr: 0x18408, symSize: 0x20 } - - { offsetInCU: 0x727C, offset: 0x65D69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8EB4, symBinAddr: 0x18460, symSize: 0x8 } - - { offsetInCU: 0x7290, offset: 0x65D7D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8EBC, symBinAddr: 0x18468, symSize: 0x10 } - - { offsetInCU: 0x72A4, offset: 0x65D91, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8ECC, symBinAddr: 0x18478, symSize: 0x8 } - - { offsetInCU: 0x72B8, offset: 0x65DA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8F68, symBinAddr: 0x184C0, symSize: 0x8 } - - { offsetInCU: 0x72ED, offset: 0x65DDA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x8F70, symBinAddr: 0x184C8, symSize: 0xC4 } - - { offsetInCU: 0x7363, offset: 0x65E50, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x9034, symBinAddr: 0x1858C, symSize: 0x78 } - - { offsetInCU: 0x7390, offset: 0x65E7D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x90AC, symBinAddr: 0x18604, symSize: 0x80 } - - { offsetInCU: 0x7406, offset: 0x65EF3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x912C, symBinAddr: 0x18684, symSize: 0x68 } - - { offsetInCU: 0x7497, offset: 0x65F84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x9194, symBinAddr: 0x186EC, symSize: 0x634 } - - { offsetInCU: 0x7A24, offset: 0x66511, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x97C8, symBinAddr: 0x18D20, symSize: 0x420 } - - { offsetInCU: 0x7DCD, offset: 0x668BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9BE8, symBinAddr: 0x19140, symSize: 0x20C } - - { offsetInCU: 0x7EFA, offset: 0x669E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9DF4, symBinAddr: 0x1934C, symSize: 0x20C } - - { offsetInCU: 0x8076, offset: 0x66B63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0xA000, symBinAddr: 0x19558, symSize: 0x130 } - - { offsetInCU: 0x81A8, offset: 0x66C95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0xA130, symBinAddr: 0x19688, symSize: 0x220 } - - { offsetInCU: 0x8401, offset: 0x66EEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA350, symBinAddr: 0x198A8, symSize: 0x8B4 } - - { offsetInCU: 0x8A44, offset: 0x67531, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xAC04, symBinAddr: 0x1A15C, symSize: 0x71C } - - { offsetInCU: 0x8E32, offset: 0x6791F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xB320, symBinAddr: 0x1A878, symSize: 0x140 } - - { offsetInCU: 0x8F71, offset: 0x67A5E, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tg5Tf4d_n', symObjAddr: 0xBBD0, symBinAddr: 0x1B128, symSize: 0x54 } - - { offsetInCU: 0x8F9E, offset: 0x67A8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xBC68, symBinAddr: 0x1B17C, symSize: 0x8 } - - { offsetInCU: 0x8FB2, offset: 0x67A9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xBC70, symBinAddr: 0x1B184, symSize: 0x4 } - - { offsetInCU: 0x8FC6, offset: 0x67AB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xBC74, symBinAddr: 0x1B188, symSize: 0x44 } - - { offsetInCU: 0x8FDA, offset: 0x67AC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xBCB8, symBinAddr: 0x1B1CC, symSize: 0x10 } - - { offsetInCU: 0x8FEE, offset: 0x67ADB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xBCC8, symBinAddr: 0x1B1DC, symSize: 0x24 } - - { offsetInCU: 0x9002, offset: 0x67AEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xBDB4, symBinAddr: 0x1B2C8, symSize: 0x10 } - - { offsetInCU: 0x9016, offset: 0x67B03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0xBE34, symBinAddr: 0x1B348, symSize: 0x18 } - - { offsetInCU: 0x902A, offset: 0x67B17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xBE4C, symBinAddr: 0x1B360, symSize: 0x10 } - - { offsetInCU: 0x903E, offset: 0x67B2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xBEDC, symBinAddr: 0x1B3AC, symSize: 0x8 } - - { offsetInCU: 0x9052, offset: 0x67B3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xBEE4, symBinAddr: 0x1B3B4, symSize: 0x8 } - - { offsetInCU: 0x9066, offset: 0x67B53, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xBEFC, symBinAddr: 0x1B3CC, symSize: 0x8 } - - { offsetInCU: 0x907A, offset: 0x67B67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xBF04, symBinAddr: 0x1B3D4, symSize: 0x8 } - - { offsetInCU: 0x90AC, offset: 0x67B99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xBF0C, symBinAddr: 0x1B3DC, symSize: 0x288 } - - { offsetInCU: 0x9249, offset: 0x67D36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xC5F4, symBinAddr: 0x1B8B4, symSize: 0x10 } - - { offsetInCU: 0x925D, offset: 0x67D4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xC6A8, symBinAddr: 0x1B924, symSize: 0x10 } - - { offsetInCU: 0x9271, offset: 0x67D5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xC6DC, symBinAddr: 0x1B958, symSize: 0xC } - - { offsetInCU: 0x9285, offset: 0x67D72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xC7B4, symBinAddr: 0x1B9EC, symSize: 0xC } - - { offsetInCU: 0x9328, offset: 0x67E15, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xF658, symSize: 0xE4 } - - { offsetInCU: 0x93E9, offset: 0x67ED6, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE4, symBinAddr: 0xF73C, symSize: 0xAC } - - { offsetInCU: 0x9498, offset: 0x67F85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x220, symBinAddr: 0xF878, symSize: 0x14 } - - { offsetInCU: 0x9529, offset: 0x68016, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x234, symBinAddr: 0xF88C, symSize: 0x44 } - - { offsetInCU: 0x95B8, offset: 0x680A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x278, symBinAddr: 0xF8D0, symSize: 0x28 } - - { offsetInCU: 0x960B, offset: 0x680F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2A0, symBinAddr: 0xF8F8, symSize: 0x40 } - - { offsetInCU: 0x5A, offset: 0x68B97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x1BB24, symSize: 0x88 } - - { offsetInCU: 0x8E, offset: 0x68BCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x88, symBinAddr: 0x1BBAC, symSize: 0x60 } - - { offsetInCU: 0xAC, offset: 0x68BE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0xE8, symBinAddr: 0x1BC0C, symSize: 0x44 } - - { offsetInCU: 0xCB, offset: 0x68C08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x12C, symBinAddr: 0x1BC50, symSize: 0x48 } - - { offsetInCU: 0x10A, offset: 0x68C47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x174, symBinAddr: 0x1BC98, symSize: 0x44 } - - { offsetInCU: 0x139, offset: 0x68C76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x1B8, symBinAddr: 0x1BCDC, symSize: 0x54 } - - { offsetInCU: 0x158, offset: 0x68C95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x20C, symBinAddr: 0x1BD30, symSize: 0x5C } - - { offsetInCU: 0x197, offset: 0x68CD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x268, symBinAddr: 0x1BD8C, symSize: 0x44 } - - { offsetInCU: 0x1C6, offset: 0x68D03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x1BDD0, symSize: 0x48 } - - { offsetInCU: 0x1E5, offset: 0x68D22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x2F4, symBinAddr: 0x1BE18, symSize: 0x50 } - - { offsetInCU: 0x224, offset: 0x68D61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x344, symBinAddr: 0x1BE68, symSize: 0x44 } - - { offsetInCU: 0x253, offset: 0x68D90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x3A0, symBinAddr: 0x1BEC4, symSize: 0x44 } - - { offsetInCU: 0x282, offset: 0x68DBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x3FC, symBinAddr: 0x1BF20, symSize: 0x44 } - - { offsetInCU: 0x2B1, offset: 0x68DEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x440, symBinAddr: 0x1BF64, symSize: 0x4 } - - { offsetInCU: 0x2DC, offset: 0x68E19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x4E0, symBinAddr: 0x1C004, symSize: 0x44 } - - { offsetInCU: 0x30B, offset: 0x68E48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x53C, symBinAddr: 0x1C060, symSize: 0x44 } - - { offsetInCU: 0x33A, offset: 0x68E77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x634, symBinAddr: 0x1C158, symSize: 0x44 } - - { offsetInCU: 0x369, offset: 0x68EA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x690, symBinAddr: 0x1C1B4, symSize: 0x44 } - - { offsetInCU: 0x398, offset: 0x68ED5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x794, symBinAddr: 0x1C2B8, symSize: 0x44 } - - { offsetInCU: 0x3C7, offset: 0x68F04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x7F0, symBinAddr: 0x1C314, symSize: 0x44 } - - { offsetInCU: 0x3F6, offset: 0x68F33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0x8DC, symBinAddr: 0x1C400, symSize: 0x44 } - - { offsetInCU: 0x443, offset: 0x68F80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0x920, symBinAddr: 0x1C444, symSize: 0x110 } - - { offsetInCU: 0x621, offset: 0x6915E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xA30, symBinAddr: 0x1C554, symSize: 0x74C } - - { offsetInCU: 0x1187, offset: 0x69CC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x117C, symBinAddr: 0x1CCA0, symSize: 0x44 } - - { offsetInCU: 0x119B, offset: 0x69CD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x11C0, symBinAddr: 0x1CCE4, symSize: 0x184 } - - { offsetInCU: 0x1206, offset: 0x69D43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x1344, symBinAddr: 0x1CE68, symSize: 0x70 } - - { offsetInCU: 0x122B, offset: 0x69D68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x13B4, symBinAddr: 0x1CED8, symSize: 0x434 } - - { offsetInCU: 0x12CC, offset: 0x69E09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x17E8, symBinAddr: 0x1D30C, symSize: 0x20 } - - { offsetInCU: 0x12EA, offset: 0x69E27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x1808, symBinAddr: 0x1D32C, symSize: 0x2C } - - { offsetInCU: 0x134D, offset: 0x69E8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x1834, symBinAddr: 0x1D358, symSize: 0x2C } - - { offsetInCU: 0x13B4, offset: 0x69EF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x1860, symBinAddr: 0x1D384, symSize: 0x30 } - - { offsetInCU: 0x141D, offset: 0x69F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfcTf4ggnnn_n', symObjAddr: 0x2414, symBinAddr: 0x1DF38, symSize: 0x1A4 } - - { offsetInCU: 0x168C, offset: 0x6A1C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1890, symBinAddr: 0x1D3B4, symSize: 0x84 } - - { offsetInCU: 0x16BB, offset: 0x6A1F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x1914, symBinAddr: 0x1D438, symSize: 0x5C } - - { offsetInCU: 0x1753, offset: 0x6A290, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1970, symBinAddr: 0x1D494, symSize: 0x218 } - - { offsetInCU: 0x1998, offset: 0x6A4D5, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1B88, symBinAddr: 0x1D6AC, symSize: 0xD4 } - - { offsetInCU: 0x1BD6, offset: 0x6A713, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1C5C, symBinAddr: 0x1D780, symSize: 0x12C } - - { offsetInCU: 0x1DE3, offset: 0x6A920, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x1D88, symBinAddr: 0x1D8AC, symSize: 0xC4 } - - { offsetInCU: 0x1FED, offset: 0x6AB2A, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x21B0, symBinAddr: 0x1DCD4, symSize: 0x68 } - - { offsetInCU: 0x2091, offset: 0x6ABCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x25F8, symBinAddr: 0x1E0DC, symSize: 0x20 } - - { offsetInCU: 0x20A5, offset: 0x6ABE2, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x265C, symBinAddr: 0x1E0FC, symSize: 0x10 } - - { offsetInCU: 0x2228, offset: 0x6AD65, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x1E4C, symBinAddr: 0x1D970, symSize: 0x2AC } - - { offsetInCU: 0x249A, offset: 0x6AFD7, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS_SD6ValuesVyS2S_GTg5Tf4gd_n', symObjAddr: 0x20F8, symBinAddr: 0x1DC1C, symSize: 0xB8 } - - { offsetInCU: 0x2586, offset: 0x6B0C3, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTg5Tf4nd_n', symObjAddr: 0x2218, symBinAddr: 0x1DD3C, symSize: 0xDC } - - { offsetInCU: 0x261F, offset: 0x6B15C, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTg5Tf4gd_n', symObjAddr: 0x22F4, symBinAddr: 0x1DE18, symSize: 0x110 } - - { offsetInCU: 0x134, offset: 0x6B510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1E138, symSize: 0x34C } - - { offsetInCU: 0x21A, offset: 0x6B5F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x34C, symBinAddr: 0x1E484, symSize: 0x334 } - - { offsetInCU: 0x64C, offset: 0x6BA28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x764, symBinAddr: 0x1E89C, symSize: 0x48C } - - { offsetInCU: 0x860, offset: 0x6BC3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xBF0, symBinAddr: 0x1ED28, symSize: 0x138 } - - { offsetInCU: 0xA21, offset: 0x6BDFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xD7C, symBinAddr: 0x1EEB4, symSize: 0x6AC } - - { offsetInCU: 0xDFC, offset: 0x6C1D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x1428, symBinAddr: 0x1F560, symSize: 0xB8 } - - { offsetInCU: 0xEA4, offset: 0x6C280, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x14E0, symBinAddr: 0x1F618, symSize: 0x264 } - - { offsetInCU: 0xEF5, offset: 0x6C2D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x1744, symBinAddr: 0x1F87C, symSize: 0x20 } - - { offsetInCU: 0xF11, offset: 0x6C2ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1764, symBinAddr: 0x1F89C, symSize: 0x30 } - - { offsetInCU: 0x1172, offset: 0x6C54E, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x680, symBinAddr: 0x1E7B8, symSize: 0x20 } - - { offsetInCU: 0x1186, offset: 0x6C562, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x6A0, symBinAddr: 0x1E7D8, symSize: 0x20 } - - { offsetInCU: 0x11B4, offset: 0x6C590, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x6C0, symBinAddr: 0x1E7F8, symSize: 0xA4 } - - { offsetInCU: 0x14D6, offset: 0x6C8B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x1794, symBinAddr: 0x1F8CC, symSize: 0x78 } - - { offsetInCU: 0x1505, offset: 0x6C8E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x180C, symBinAddr: 0x1F944, symSize: 0x20 } - - { offsetInCU: 0x1519, offset: 0x6C8F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x182C, symBinAddr: 0x1F964, symSize: 0x30 } - - { offsetInCU: 0x152D, offset: 0x6C909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x185C, symBinAddr: 0x1F994, symSize: 0x4 } - - { offsetInCU: 0x1541, offset: 0x6C91D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1880, symBinAddr: 0x1F998, symSize: 0x40 } - - { offsetInCU: 0x1555, offset: 0x6C931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x18C0, symBinAddr: 0x1F9D8, symSize: 0x30 } - - { offsetInCU: 0x1569, offset: 0x6C945, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x18F0, symBinAddr: 0x1FA08, symSize: 0x168 } - - { offsetInCU: 0x157D, offset: 0x6C959, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1A58, symBinAddr: 0x1FB70, symSize: 0x14 } - - { offsetInCU: 0x1591, offset: 0x6C96D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1A6C, symBinAddr: 0x1FB84, symSize: 0x40 } - - { offsetInCU: 0x15A5, offset: 0x6C981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1AAC, symBinAddr: 0x1FBC4, symSize: 0x48 } - - { offsetInCU: 0x15B9, offset: 0x6C995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1AF4, symBinAddr: 0x1FC0C, symSize: 0x4C } - - { offsetInCU: 0x15CD, offset: 0x6C9A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1B40, symBinAddr: 0x1FC58, symSize: 0x10 } - - { offsetInCU: 0x1669, offset: 0x6CA45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1BF0, symBinAddr: 0x1FD08, symSize: 0x2A0 } - - { offsetInCU: 0x189D, offset: 0x6CC79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x1E90, symBinAddr: 0x1FFA8, symSize: 0x224 } - - { offsetInCU: 0x19BE, offset: 0x6CD9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x20B4, symBinAddr: 0x201CC, symSize: 0x478 } - - { offsetInCU: 0x1DA9, offset: 0x6D185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x252C, symBinAddr: 0x20644, symSize: 0x85C } - - { offsetInCU: 0x22B1, offset: 0x6D68D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2DBC, symBinAddr: 0x20ED4, symSize: 0xC } - - { offsetInCU: 0x22D0, offset: 0x6D6AC, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x2DD8, symBinAddr: 0x20EF0, symSize: 0x20 } - - { offsetInCU: 0x22F9, offset: 0x6D6D5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2DF8, symBinAddr: 0x20F10, symSize: 0x10 } - - { offsetInCU: 0x230D, offset: 0x6D6E9, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2E08, symBinAddr: 0x20F20, symSize: 0x8 } - - { offsetInCU: 0x2321, offset: 0x6D6FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x2E34, symBinAddr: 0x20F4C, symSize: 0x18 } - - { offsetInCU: 0x2340, offset: 0x6D71C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x2EF0, symBinAddr: 0x20FA4, symSize: 0x14 } - - { offsetInCU: 0x2378, offset: 0x6D754, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x2F04, symBinAddr: 0x20FB8, symSize: 0x14 } - - { offsetInCU: 0x23A5, offset: 0x6D781, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x2F18, symBinAddr: 0x20FCC, symSize: 0x78 } - - { offsetInCU: 0x241A, offset: 0x6D7F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x2F90, symBinAddr: 0x21044, symSize: 0x5A4 } - - { offsetInCU: 0x25FC, offset: 0x6D9D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x3534, symBinAddr: 0x215E8, symSize: 0x56C } - - { offsetInCU: 0x27D3, offset: 0x6DBAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3AA0, symBinAddr: 0x21B54, symSize: 0x44 } - - { offsetInCU: 0x27E7, offset: 0x6DBC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3AFC, symBinAddr: 0x21B98, symSize: 0x8 } - - { offsetInCU: 0x27FB, offset: 0x6DBD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3B28, symBinAddr: 0x21BC4, symSize: 0x20 } - - { offsetInCU: 0x2834, offset: 0x6DC10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3B48, symBinAddr: 0x21BE4, symSize: 0x48 } - - { offsetInCU: 0x285D, offset: 0x6DC39, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3B90, symBinAddr: 0x21C2C, symSize: 0x48 } - - { offsetInCU: 0x2878, offset: 0x6DC54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3BD8, symBinAddr: 0x21C74, symSize: 0x24 } - - { offsetInCU: 0x28A8, offset: 0x6DC84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3C24, symBinAddr: 0x21C98, symSize: 0x38 } - - { offsetInCU: 0x28D1, offset: 0x6DCAD, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3C5C, symBinAddr: 0x21CD0, symSize: 0x3C } - - { offsetInCU: 0x28E5, offset: 0x6DCC1, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3CA0, symBinAddr: 0x21D14, symSize: 0x3C } - - { offsetInCU: 0x28F9, offset: 0x6DCD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3D68, symBinAddr: 0x21DDC, symSize: 0x24 } - - { offsetInCU: 0x290D, offset: 0x6DCE9, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3D8C, symBinAddr: 0x21E00, symSize: 0x190 } - - { offsetInCU: 0x2AC2, offset: 0x6DE9E, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x3F1C, symBinAddr: 0x21F90, symSize: 0x40 } - - { offsetInCU: 0x2AD6, offset: 0x6DEB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x3FDC, symBinAddr: 0x22050, symSize: 0x44 } - - { offsetInCU: 0x2AEA, offset: 0x6DEC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOs', symObjAddr: 0x4020, symBinAddr: 0x22094, symSize: 0x44 } - - { offsetInCU: 0x2AFE, offset: 0x6DEDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x4144, symBinAddr: 0x221B8, symSize: 0xC } - - { offsetInCU: 0x2B12, offset: 0x6DEEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x41CC, symBinAddr: 0x221D4, symSize: 0x18 } - - { offsetInCU: 0x2C7D, offset: 0x6E059, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1B50, symBinAddr: 0x1FC68, symSize: 0xA0 } - - { offsetInCU: 0x27, offset: 0x6E399, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x22220, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x6E3BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x46A8, symBinAddr: 0x69F08, symSize: 0x0 } - - { offsetInCU: 0x76, offset: 0x6E3E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x168, symBinAddr: 0x22388, symSize: 0x20 } - - { offsetInCU: 0x8A, offset: 0x6E3FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x188, symBinAddr: 0x223A8, symSize: 0x68 } - - { offsetInCU: 0xC1, offset: 0x6E433, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1F0, symBinAddr: 0x22410, symSize: 0x74 } - - { offsetInCU: 0x108, offset: 0x6E47A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x264, symBinAddr: 0x22484, symSize: 0x6C } - - { offsetInCU: 0x13F, offset: 0x6E4B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2D0, symBinAddr: 0x224F0, symSize: 0x4 } - - { offsetInCU: 0x16A, offset: 0x6E4DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2D4, symBinAddr: 0x224F4, symSize: 0x40 } - - { offsetInCU: 0x1A7, offset: 0x6E519, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x334, symBinAddr: 0x22554, symSize: 0x4C } - - { offsetInCU: 0x202, offset: 0x6E574, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x380, symBinAddr: 0x225A0, symSize: 0x148 } - - { offsetInCU: 0x3AA, offset: 0x6E71C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x508, symBinAddr: 0x226E8, symSize: 0x30 } - - { offsetInCU: 0x3D8, offset: 0x6E74A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x22220, symSize: 0x40 } - - { offsetInCU: 0x3F8, offset: 0x6E76A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x40, symBinAddr: 0x22260, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x6E789, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x50, symBinAddr: 0x22270, symSize: 0x8 } - - { offsetInCU: 0x45C, offset: 0x6E7CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x118, symBinAddr: 0x22338, symSize: 0x18 } - - { offsetInCU: 0x48D, offset: 0x6E7FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x130, symBinAddr: 0x22350, symSize: 0xC } - - { offsetInCU: 0x4CB, offset: 0x6E83D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x13C, symBinAddr: 0x2235C, symSize: 0x2C } - - { offsetInCU: 0x50C, offset: 0x6E87E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x314, symBinAddr: 0x22534, symSize: 0x20 } - - { offsetInCU: 0x583, offset: 0x6E8F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x538, symBinAddr: 0x22718, symSize: 0x4 } - - { offsetInCU: 0x597, offset: 0x6E909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x53C, symBinAddr: 0x2271C, symSize: 0x44 } - - { offsetInCU: 0x5AB, offset: 0x6E91D, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x580, symBinAddr: 0x22760, symSize: 0xC } - - { offsetInCU: 0x5BF, offset: 0x6E931, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x58C, symBinAddr: 0x2276C, symSize: 0x4 } - - { offsetInCU: 0x5D3, offset: 0x6E945, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x590, symBinAddr: 0x22770, symSize: 0x90 } - - { offsetInCU: 0x5E7, offset: 0x6E959, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x620, symBinAddr: 0x22800, symSize: 0xBC } - - { offsetInCU: 0x5FB, offset: 0x6E96D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6DC, symBinAddr: 0x228BC, symSize: 0x8 } - - { offsetInCU: 0x60F, offset: 0x6E981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6E4, symBinAddr: 0x228C4, symSize: 0x4 } - - { offsetInCU: 0x623, offset: 0x6E995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x6E8, symBinAddr: 0x228C8, symSize: 0x8 } - - { offsetInCU: 0x637, offset: 0x6E9A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x6F0, symBinAddr: 0x228D0, symSize: 0x10 } - - { offsetInCU: 0x64B, offset: 0x6E9BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x700, symBinAddr: 0x228E0, symSize: 0x4 } - - { offsetInCU: 0x699, offset: 0x6EA0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x58, symBinAddr: 0x22278, symSize: 0x14 } - - { offsetInCU: 0x72A, offset: 0x6EA9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x6C, symBinAddr: 0x2228C, symSize: 0x44 } - - { offsetInCU: 0x7D9, offset: 0x6EB4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB0, symBinAddr: 0x222D0, symSize: 0x28 } - - { offsetInCU: 0x82C, offset: 0x6EB9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xD8, symBinAddr: 0x222F8, symSize: 0x40 } - - { offsetInCU: 0x99, offset: 0x6EDD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x228E4, symSize: 0x15C } - - { offsetInCU: 0x16F, offset: 0x6EEAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x15C, symBinAddr: 0x22A40, symSize: 0x11C } - - { offsetInCU: 0x1BE, offset: 0x6EEFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x278, symBinAddr: 0x22B5C, symSize: 0x44 } - - { offsetInCU: 0x1DD, offset: 0x6EF19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2BC, symBinAddr: 0x22BA0, symSize: 0x48 } - - { offsetInCU: 0x21C, offset: 0x6EF58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x304, symBinAddr: 0x22BE8, symSize: 0x44 } - - { offsetInCU: 0x24B, offset: 0x6EF87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x348, symBinAddr: 0x22C2C, symSize: 0x54 } - - { offsetInCU: 0x26A, offset: 0x6EFA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x39C, symBinAddr: 0x22C80, symSize: 0x5C } - - { offsetInCU: 0x2A9, offset: 0x6EFE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x3F8, symBinAddr: 0x22CDC, symSize: 0x44 } - - { offsetInCU: 0x2D8, offset: 0x6F014, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x43C, symBinAddr: 0x22D20, symSize: 0x48 } - - { offsetInCU: 0x2F7, offset: 0x6F033, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x484, symBinAddr: 0x22D68, symSize: 0x50 } - - { offsetInCU: 0x336, offset: 0x6F072, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x4D4, symBinAddr: 0x22DB8, symSize: 0x44 } - - { offsetInCU: 0x365, offset: 0x6F0A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x530, symBinAddr: 0x22E14, symSize: 0x44 } - - { offsetInCU: 0x394, offset: 0x6F0D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x610, symBinAddr: 0x22EF4, symSize: 0x44 } - - { offsetInCU: 0x3C3, offset: 0x6F0FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x654, symBinAddr: 0x22F38, symSize: 0x4 } - - { offsetInCU: 0x40C, offset: 0x6F148, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x658, symBinAddr: 0x22F3C, symSize: 0x110 } - - { offsetInCU: 0x518, offset: 0x6F254, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x768, symBinAddr: 0x2304C, symSize: 0x14C } - - { offsetInCU: 0x59A, offset: 0x6F2D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x8B4, symBinAddr: 0x23198, symSize: 0x114 } - - { offsetInCU: 0x5DD, offset: 0x6F319, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x9C8, symBinAddr: 0x232AC, symSize: 0x20 } - - { offsetInCU: 0x5FB, offset: 0x6F337, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x9E8, symBinAddr: 0x232CC, symSize: 0x2C } - - { offsetInCU: 0x65E, offset: 0x6F39A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0xA14, symBinAddr: 0x232F8, symSize: 0x2C } - - { offsetInCU: 0x6C5, offset: 0x6F401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0xA40, symBinAddr: 0x23324, symSize: 0x30 } - - { offsetInCU: 0x79D, offset: 0x6F4D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0xA70, symBinAddr: 0x23354, symSize: 0x3C } - - { offsetInCU: 0x7CC, offset: 0x6F508, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xAAC, symBinAddr: 0x23390, symSize: 0x5C } - - { offsetInCU: 0x82A, offset: 0x6F566, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xB08, symBinAddr: 0x233EC, symSize: 0x218 } - - { offsetInCU: 0xA2D, offset: 0x6F769, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xD20, symBinAddr: 0x23604, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x6F8E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x23634, symSize: 0x14 } - - { offsetInCU: 0x4B, offset: 0x6F90A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x23634, symSize: 0x14 } - - { offsetInCU: 0x6A, offset: 0x6F929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x14, symBinAddr: 0x23648, symSize: 0x4 } - - { offsetInCU: 0xB6, offset: 0x6F975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x104, symBinAddr: 0x23738, symSize: 0x28 } - - { offsetInCU: 0xE7, offset: 0x6F9A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x12C, symBinAddr: 0x23760, symSize: 0x18 } - - { offsetInCU: 0x110, offset: 0x6F9CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x23E34, symSize: 0x2C } - - { offsetInCU: 0x169, offset: 0x6FA28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x144, symBinAddr: 0x23778, symSize: 0x58 } - - { offsetInCU: 0x188, offset: 0x6FA47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x19C, symBinAddr: 0x237D0, symSize: 0x14 } - - { offsetInCU: 0x1EA, offset: 0x6FAA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x29C, symBinAddr: 0x238D0, symSize: 0x70 } - - { offsetInCU: 0x21B, offset: 0x6FADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x30C, symBinAddr: 0x23940, symSize: 0x18 } - - { offsetInCU: 0x2F9, offset: 0x6FBB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x324, symBinAddr: 0x23958, symSize: 0x220 } - - { offsetInCU: 0x590, offset: 0x6FE4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x554, symBinAddr: 0x23B88, symSize: 0x120 } - - { offsetInCU: 0x818, offset: 0x700D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x674, symBinAddr: 0x23CA8, symSize: 0xC0 } - - { offsetInCU: 0x960, offset: 0x7021F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x734, symBinAddr: 0x23D68, symSize: 0xCC } - - { offsetInCU: 0xA8D, offset: 0x7034C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x82C, symBinAddr: 0x23E60, symSize: 0x4 } - - { offsetInCU: 0xAA1, offset: 0x70360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x830, symBinAddr: 0x23E64, symSize: 0x44 } - - { offsetInCU: 0xAB5, offset: 0x70374, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x874, symBinAddr: 0x23EA8, symSize: 0x4 } - - { offsetInCU: 0xAC9, offset: 0x70388, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x878, symBinAddr: 0x23EAC, symSize: 0x44 } - - { offsetInCU: 0xADD, offset: 0x7039C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x8CC, symBinAddr: 0x23EF0, symSize: 0x90 } - - { offsetInCU: 0xAF1, offset: 0x703B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x95C, symBinAddr: 0x23F80, symSize: 0xBC } - - { offsetInCU: 0xB05, offset: 0x703C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0xA18, symBinAddr: 0x2403C, symSize: 0x8 } - - { offsetInCU: 0xB19, offset: 0x703D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0xA20, symBinAddr: 0x24044, symSize: 0x4 } - - { offsetInCU: 0xB2D, offset: 0x703EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0xA24, symBinAddr: 0x24048, symSize: 0x8 } - - { offsetInCU: 0xB41, offset: 0x70400, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0xA2C, symBinAddr: 0x24050, symSize: 0x10 } - - { offsetInCU: 0xB55, offset: 0x70414, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0xA3C, symBinAddr: 0x24060, symSize: 0x90 } - - { offsetInCU: 0xB69, offset: 0x70428, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xACC, symBinAddr: 0x240F0, symSize: 0xBC } - - { offsetInCU: 0xB7D, offset: 0x7043C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xB88, symBinAddr: 0x241AC, symSize: 0x4 } - - { offsetInCU: 0xB91, offset: 0x70450, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xB8C, symBinAddr: 0x241B0, symSize: 0x10 } - - { offsetInCU: 0xBA5, offset: 0x70464, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xBDC, symBinAddr: 0x241C0, symSize: 0x48 } - - { offsetInCU: 0xBB9, offset: 0x70478, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGMa', symObjAddr: 0xC24, symBinAddr: 0x24208, symSize: 0x54 } - - { offsetInCU: 0xBF0, offset: 0x704AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x18, symBinAddr: 0x2364C, symSize: 0x24 } - - { offsetInCU: 0xC92, offset: 0x70551, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x3C, symBinAddr: 0x23670, symSize: 0x4C } - - { offsetInCU: 0xD6A, offset: 0x70629, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x236BC, symSize: 0x34 } - - { offsetInCU: 0xDE6, offset: 0x706A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBC, symBinAddr: 0x236F0, symSize: 0x48 } - - { offsetInCU: 0xEA1, offset: 0x70760, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B0, symBinAddr: 0x237E4, symSize: 0x24 } - - { offsetInCU: 0xF43, offset: 0x70802, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x1D4, symBinAddr: 0x23808, symSize: 0x4C } - - { offsetInCU: 0x101B, offset: 0x708DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x220, symBinAddr: 0x23854, symSize: 0x34 } - - { offsetInCU: 0x1097, offset: 0x70956, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x254, symBinAddr: 0x23888, symSize: 0x48 } - - { offsetInCU: 0xBF, offset: 0x70C3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x24264, symSize: 0x16C } - - { offsetInCU: 0x1E7, offset: 0x70D66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x16C, symBinAddr: 0x243D0, symSize: 0x180 } - - { offsetInCU: 0x347, offset: 0x70EC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x37C, symBinAddr: 0x245E0, symSize: 0xCAC } - - { offsetInCU: 0x9FE, offset: 0x7157D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0x1028, symBinAddr: 0x2528C, symSize: 0x34 } - - { offsetInCU: 0xC1B, offset: 0x7179A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x105C, symBinAddr: 0x252C0, symSize: 0x20 } - - { offsetInCU: 0xC2F, offset: 0x717AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x107C, symBinAddr: 0x252E0, symSize: 0x44 } - - { offsetInCU: 0xC43, offset: 0x717C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x1144, symBinAddr: 0x25324, symSize: 0x34 } - - { offsetInCU: 0xC57, offset: 0x717D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x1178, symBinAddr: 0x25358, symSize: 0x50 } - - { offsetInCU: 0xC6B, offset: 0x717EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x11C8, symBinAddr: 0x253A8, symSize: 0x34 } - - { offsetInCU: 0xC7F, offset: 0x717FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x11FC, symBinAddr: 0x253DC, symSize: 0x5C } - - { offsetInCU: 0xC93, offset: 0x71812, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x130C, symBinAddr: 0x254EC, symSize: 0x50 } - - { offsetInCU: 0xCA7, offset: 0x71826, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x135C, symBinAddr: 0x2553C, symSize: 0x80 } - - { offsetInCU: 0xCBB, offset: 0x7183A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x13DC, symBinAddr: 0x255BC, symSize: 0x24 } - - { offsetInCU: 0xD2B, offset: 0x718AA, size: 0x8, addend: 0x0, symName: '_$sSa9repeating5countSayxGx_SitcfCs5UInt8V_Tg5', symObjAddr: 0x30C, symBinAddr: 0x24570, symSize: 0x70 } - - { offsetInCU: 0x4B, offset: 0x71AFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x255E0, symSize: 0x3C } - - { offsetInCU: 0x6A, offset: 0x71B1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3C, symBinAddr: 0x2561C, symSize: 0x4 } - - { offsetInCU: 0xAD, offset: 0x71B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x84, symBinAddr: 0x25664, symSize: 0x34 } - - { offsetInCU: 0xDE, offset: 0x71B8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xB8, symBinAddr: 0x25698, symSize: 0xC } - - { offsetInCU: 0x128, offset: 0x71BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0xD0, symBinAddr: 0x256B0, symSize: 0x4 } - - { offsetInCU: 0x151, offset: 0x71C02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x25A30, symSize: 0x4C } - - { offsetInCU: 0x189, offset: 0x71C3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x114, symBinAddr: 0x256F4, symSize: 0x4 } - - { offsetInCU: 0x1B2, offset: 0x71C63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x49C, symBinAddr: 0x25A7C, symSize: 0x4C } - - { offsetInCU: 0x1EA, offset: 0x71C9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x190, symBinAddr: 0x25770, symSize: 0x4 } - - { offsetInCU: 0x220, offset: 0x71CD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1E4, symBinAddr: 0x257C4, symSize: 0x4 } - - { offsetInCU: 0x256, offset: 0x71D07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1EC, symBinAddr: 0x257CC, symSize: 0x4 } - - { offsetInCU: 0x28C, offset: 0x71D3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x22C, symBinAddr: 0x2580C, symSize: 0x4 } - - { offsetInCU: 0x2CF, offset: 0x71D80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x230, symBinAddr: 0x25810, symSize: 0x2C } - - { offsetInCU: 0x30D, offset: 0x71DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x268, symBinAddr: 0x25848, symSize: 0x4 } - - { offsetInCU: 0x336, offset: 0x71DE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x534, symBinAddr: 0x25B14, symSize: 0x58 } - - { offsetInCU: 0x36E, offset: 0x71E1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x288, symBinAddr: 0x25868, symSize: 0x4C } - - { offsetInCU: 0x38D, offset: 0x71E3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2D4, symBinAddr: 0x258B4, symSize: 0x4 } - - { offsetInCU: 0x3D0, offset: 0x71E81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2D8, symBinAddr: 0x258B8, symSize: 0x44 } - - { offsetInCU: 0x40E, offset: 0x71EBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x31C, symBinAddr: 0x258FC, symSize: 0x28 } - - { offsetInCU: 0x42D, offset: 0x71EDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x344, symBinAddr: 0x25924, symSize: 0x4 } - - { offsetInCU: 0x470, offset: 0x71F21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x348, symBinAddr: 0x25928, symSize: 0x20 } - - { offsetInCU: 0x4AE, offset: 0x71F5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x368, symBinAddr: 0x25948, symSize: 0x34 } - - { offsetInCU: 0x4CD, offset: 0x71F7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x39C, symBinAddr: 0x2597C, symSize: 0x4 } - - { offsetInCU: 0x510, offset: 0x71FC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x424, symBinAddr: 0x25A04, symSize: 0x2C } - - { offsetInCU: 0x542, offset: 0x71FF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0x58C, symBinAddr: 0x25B6C, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x72007, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0x590, symBinAddr: 0x25B70, symSize: 0x44 } - - { offsetInCU: 0x56A, offset: 0x7201B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x5D4, symBinAddr: 0x25BB4, symSize: 0x4 } - - { offsetInCU: 0x57E, offset: 0x7202F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x5D8, symBinAddr: 0x25BB8, symSize: 0x44 } - - { offsetInCU: 0x592, offset: 0x72043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x61C, symBinAddr: 0x25BFC, symSize: 0x4 } - - { offsetInCU: 0x5A6, offset: 0x72057, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x620, symBinAddr: 0x25C00, symSize: 0x44 } - - { offsetInCU: 0x5BA, offset: 0x7206B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x664, symBinAddr: 0x25C44, symSize: 0x4 } - - { offsetInCU: 0x5CE, offset: 0x7207F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x668, symBinAddr: 0x25C48, symSize: 0x44 } - - { offsetInCU: 0x5E2, offset: 0x72093, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x6AC, symBinAddr: 0x25C8C, symSize: 0x4 } - - { offsetInCU: 0x5F6, offset: 0x720A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x6B0, symBinAddr: 0x25C90, symSize: 0x44 } - - { offsetInCU: 0x60A, offset: 0x720BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x6F4, symBinAddr: 0x25CD4, symSize: 0x4 } - - { offsetInCU: 0x61E, offset: 0x720CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x6F8, symBinAddr: 0x25CD8, symSize: 0x44 } - - { offsetInCU: 0x632, offset: 0x720E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x73C, symBinAddr: 0x25D1C, symSize: 0x4 } - - { offsetInCU: 0x646, offset: 0x720F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x740, symBinAddr: 0x25D20, symSize: 0x44 } - - { offsetInCU: 0x65A, offset: 0x7210B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x784, symBinAddr: 0x25D64, symSize: 0x4 } - - { offsetInCU: 0x66E, offset: 0x7211F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x788, symBinAddr: 0x25D68, symSize: 0x44 } - - { offsetInCU: 0x682, offset: 0x72133, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x7CC, symBinAddr: 0x25DAC, symSize: 0x4 } - - { offsetInCU: 0x696, offset: 0x72147, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x7D0, symBinAddr: 0x25DB0, symSize: 0x44 } - - { offsetInCU: 0x6AA, offset: 0x7215B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x814, symBinAddr: 0x25DF4, symSize: 0x4 } - - { offsetInCU: 0x6BE, offset: 0x7216F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x818, symBinAddr: 0x25DF8, symSize: 0x44 } - - { offsetInCU: 0x6D2, offset: 0x72183, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x85C, symBinAddr: 0x25E3C, symSize: 0x4 } - - { offsetInCU: 0x6E6, offset: 0x72197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x860, symBinAddr: 0x25E40, symSize: 0x44 } - - { offsetInCU: 0x6FA, offset: 0x721AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x8A4, symBinAddr: 0x25E84, symSize: 0x10 } - - { offsetInCU: 0x70E, offset: 0x721BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x8B4, symBinAddr: 0x25E94, symSize: 0x10 } - - { offsetInCU: 0x722, offset: 0x721D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x8C4, symBinAddr: 0x25EA4, symSize: 0x10 } - - { offsetInCU: 0x736, offset: 0x721E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x8D4, symBinAddr: 0x25EB4, symSize: 0x10 } - - { offsetInCU: 0x74A, offset: 0x721FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x8E4, symBinAddr: 0x25EC4, symSize: 0x10 } - - { offsetInCU: 0x75E, offset: 0x7220F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x8F4, symBinAddr: 0x25ED4, symSize: 0x10 } - - { offsetInCU: 0x772, offset: 0x72223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x904, symBinAddr: 0x25EE4, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x72237, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x914, symBinAddr: 0x25EF4, symSize: 0x10 } - - { offsetInCU: 0x79A, offset: 0x7224B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x924, symBinAddr: 0x25F04, symSize: 0x10 } - - { offsetInCU: 0x7AE, offset: 0x7225F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x934, symBinAddr: 0x25F14, symSize: 0x10 } - - { offsetInCU: 0x7C2, offset: 0x72273, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x944, symBinAddr: 0x25F24, symSize: 0x10 } - - { offsetInCU: 0x7F9, offset: 0x722AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x25620, symSize: 0x14 } - - { offsetInCU: 0x84E, offset: 0x722FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x58, symBinAddr: 0x25638, symSize: 0x28 } - - { offsetInCU: 0x4F, offset: 0x724A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x26008, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x724BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0x38, symBinAddr: 0x26040, symSize: 0x44 } - - { offsetInCU: 0x9C, offset: 0x724ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x94, symBinAddr: 0x2609C, symSize: 0x44 } - - { offsetInCU: 0xBB, offset: 0x7250C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0xD8, symBinAddr: 0x260E0, symSize: 0x48 } - - { offsetInCU: 0xDA, offset: 0x7252B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x120, symBinAddr: 0x26128, symSize: 0x50 } - - { offsetInCU: 0x119, offset: 0x7256A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x170, symBinAddr: 0x26178, symSize: 0x44 } - - { offsetInCU: 0x148, offset: 0x72599, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1B4, symBinAddr: 0x261BC, symSize: 0x4 } - - { offsetInCU: 0x173, offset: 0x725C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x254, symBinAddr: 0x2625C, symSize: 0x44 } - - { offsetInCU: 0x1A2, offset: 0x725F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x298, symBinAddr: 0x262A0, symSize: 0xD4 } - - { offsetInCU: 0x1EB, offset: 0x7263C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x38C, symBinAddr: 0x26394, symSize: 0x20 } - - { offsetInCU: 0x207, offset: 0x72658, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x3AC, symBinAddr: 0x263B4, symSize: 0x30 } - - { offsetInCU: 0x29A, offset: 0x726EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x648, symBinAddr: 0x26650, symSize: 0x48 } - - { offsetInCU: 0x2F6, offset: 0x72747, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x690, symBinAddr: 0x26698, symSize: 0x4C } - - { offsetInCU: 0x346, offset: 0x72797, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x6DC, symBinAddr: 0x266E4, symSize: 0x48 } - - { offsetInCU: 0x3D3, offset: 0x72824, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x36C, symBinAddr: 0x26374, symSize: 0x20 } - - { offsetInCU: 0x3E7, offset: 0x72838, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x3DC, symBinAddr: 0x263E4, symSize: 0x48 } - - { offsetInCU: 0x422, offset: 0x72873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x424, symBinAddr: 0x2642C, symSize: 0x84 } - - { offsetInCU: 0x4B7, offset: 0x72908, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x4A8, symBinAddr: 0x264B0, symSize: 0x18 } - - { offsetInCU: 0x4E8, offset: 0x72939, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x4C0, symBinAddr: 0x264C8, symSize: 0xEC } - - { offsetInCU: 0x54D, offset: 0x7299E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x5AC, symBinAddr: 0x265B4, symSize: 0x18 } - - { offsetInCU: 0x56A, offset: 0x729BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x5C4, symBinAddr: 0x265CC, symSize: 0x20 } - - { offsetInCU: 0x5A4, offset: 0x729F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x5E4, symBinAddr: 0x265EC, symSize: 0x64 } - - { offsetInCU: 0x5E1, offset: 0x72A32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x724, symBinAddr: 0x2672C, symSize: 0x20 } - - { offsetInCU: 0x639, offset: 0x72A8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x744, symBinAddr: 0x2674C, symSize: 0x24 } - - { offsetInCU: 0x68C, offset: 0x72ADD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x768, symBinAddr: 0x26770, symSize: 0x20 } - - { offsetInCU: 0x6CD, offset: 0x72B1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x788, symBinAddr: 0x26790, symSize: 0x1C } - - { offsetInCU: 0x741, offset: 0x72B92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x7A4, symBinAddr: 0x267AC, symSize: 0x24 } - - { offsetInCU: 0x7CF, offset: 0x72C20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x7C8, symBinAddr: 0x267D0, symSize: 0x68 } - - { offsetInCU: 0x971, offset: 0x72DC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x830, symBinAddr: 0x26838, symSize: 0x4A4 } - - { offsetInCU: 0xC5E, offset: 0x730AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xCF4, symBinAddr: 0x26CDC, symSize: 0x148 } - - { offsetInCU: 0xD2C, offset: 0x7317D, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xE3C, symBinAddr: 0x26E24, symSize: 0x2C } - - { offsetInCU: 0xD44, offset: 0x73195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xE68, symBinAddr: 0x26E50, symSize: 0x90 } - - { offsetInCU: 0xD60, offset: 0x731B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xEF8, symBinAddr: 0x26EE0, symSize: 0xC8 } - - { offsetInCU: 0xE2B, offset: 0x7327C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0xFC0, symBinAddr: 0x26FA8, symSize: 0x1C0 } - - { offsetInCU: 0xEB0, offset: 0x73301, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1180, symBinAddr: 0x27168, symSize: 0x4 } - - { offsetInCU: 0xED3, offset: 0x73324, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1184, symBinAddr: 0x2716C, symSize: 0x4C } - - { offsetInCU: 0xF05, offset: 0x73356, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x11D0, symBinAddr: 0x271B8, symSize: 0x8 } - - { offsetInCU: 0xF28, offset: 0x73379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x11D8, symBinAddr: 0x271C0, symSize: 0x60 } - - { offsetInCU: 0xF5A, offset: 0x733AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x1238, symBinAddr: 0x27220, symSize: 0xBC } - - { offsetInCU: 0xFEB, offset: 0x7343C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x12F4, symBinAddr: 0x272DC, symSize: 0x154 } - - { offsetInCU: 0x1035, offset: 0x73486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x1448, symBinAddr: 0x27430, symSize: 0x8 } - - { offsetInCU: 0x1058, offset: 0x734A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x1450, symBinAddr: 0x27438, symSize: 0x78 } - - { offsetInCU: 0x10AB, offset: 0x734FC, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x14C8, symBinAddr: 0x274B0, symSize: 0x4C } - - { offsetInCU: 0x1128, offset: 0x73579, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x183C, symBinAddr: 0x277D8, symSize: 0x3C } - - { offsetInCU: 0x113C, offset: 0x7358D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x189C, symBinAddr: 0x27838, symSize: 0x8 } - - { offsetInCU: 0x1150, offset: 0x735A1, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x18A4, symBinAddr: 0x27840, symSize: 0x10 } - - { offsetInCU: 0x1164, offset: 0x735B5, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18B4, symBinAddr: 0x27850, symSize: 0x8 } - - { offsetInCU: 0x1196, offset: 0x735E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x18BC, symBinAddr: 0x27858, symSize: 0x12C } - - { offsetInCU: 0x1222, offset: 0x73673, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x19E8, symBinAddr: 0x27984, symSize: 0x19C } - - { offsetInCU: 0x1308, offset: 0x73759, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1B84, symBinAddr: 0x27B20, symSize: 0x134 } - - { offsetInCU: 0x13A4, offset: 0x737F5, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1D20, symBinAddr: 0x27C78, symSize: 0x14 } - - { offsetInCU: 0x13CD, offset: 0x7381E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1D34, symBinAddr: 0x27C8C, symSize: 0x24 } - - { offsetInCU: 0x229, offset: 0x73C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x27CC0, symSize: 0xA8C } - - { offsetInCU: 0xF9A, offset: 0x749CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x1520, symBinAddr: 0x291E0, symSize: 0xA1C } - - { offsetInCU: 0x1B46, offset: 0x75579, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x1F3C, symBinAddr: 0x29BFC, symSize: 0x9C4 } - - { offsetInCU: 0x274A, offset: 0x7617D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2900, symBinAddr: 0x2A5C0, symSize: 0xBE0 } - - { offsetInCU: 0x370A, offset: 0x7713D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x34E0, symBinAddr: 0x2B1A0, symSize: 0xB70 } - - { offsetInCU: 0x4690, offset: 0x780C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x4068, symBinAddr: 0x2BD28, symSize: 0xAA0 } - - { offsetInCU: 0x5424, offset: 0x78E57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x4B08, symBinAddr: 0x2C7C8, symSize: 0xA38 } - - { offsetInCU: 0x5FB5, offset: 0x799E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x5540, symBinAddr: 0x2D200, symSize: 0x190 } - - { offsetInCU: 0x609B, offset: 0x79ACE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x56D0, symBinAddr: 0x2D390, symSize: 0x180 } - - { offsetInCU: 0x613A, offset: 0x79B6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x5850, symBinAddr: 0x2D510, symSize: 0x128 } - - { offsetInCU: 0x62A3, offset: 0x79CD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x5978, symBinAddr: 0x2D638, symSize: 0x58 } - - { offsetInCU: 0x631D, offset: 0x79D50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x59F0, symBinAddr: 0x2D6B0, symSize: 0x6C8 } - - { offsetInCU: 0x6A10, offset: 0x7A443, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x59D0, symBinAddr: 0x2D690, symSize: 0x20 } - - { offsetInCU: 0x6CA9, offset: 0x7A6DC, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x60B8, symBinAddr: 0x2DD78, symSize: 0x68 } - - { offsetInCU: 0x6DB0, offset: 0x7A7E3, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6120, symBinAddr: 0x2DDE0, symSize: 0x104 } - - { offsetInCU: 0x6FC7, offset: 0x7A9FA, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6224, symBinAddr: 0x2DEE4, symSize: 0x3FC } - - { offsetInCU: 0x73C5, offset: 0x7ADF8, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x6620, symBinAddr: 0x2E2E0, symSize: 0x12C } - - { offsetInCU: 0x756A, offset: 0x7AF9D, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x674C, symBinAddr: 0x2E40C, symSize: 0x294 } - - { offsetInCU: 0x7757, offset: 0x7B18A, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x69E0, symBinAddr: 0x2E6A0, symSize: 0x154 } - - { offsetInCU: 0x78BD, offset: 0x7B2F0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x6B34, symBinAddr: 0x2E7F4, symSize: 0x300 } - - { offsetInCU: 0x794C, offset: 0x7B37F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x6E34, symBinAddr: 0x2EAF4, symSize: 0x14 } - - { offsetInCU: 0x7985, offset: 0x7B3B8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x6E48, symBinAddr: 0x2EB08, symSize: 0xB4 } - - { offsetInCU: 0x7A46, offset: 0x7B479, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x6EFC, symBinAddr: 0x2EBBC, symSize: 0x1C8 } - - { offsetInCU: 0x7B48, offset: 0x7B57B, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x70C4, symBinAddr: 0x2ED84, symSize: 0x1DC } - - { offsetInCU: 0x7C4F, offset: 0x7B682, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x7384, symBinAddr: 0x2F044, symSize: 0x14 } - - { offsetInCU: 0x7CBE, offset: 0x7B6F1, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayVyAByxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x744C, symBinAddr: 0x2F10C, symSize: 0xB8 } - - { offsetInCU: 0x7DA0, offset: 0x7B7D3, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x7504, symBinAddr: 0x2F1C4, symSize: 0x48 } - - { offsetInCU: 0x7DB4, offset: 0x7B7E7, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x758C, symBinAddr: 0x2F20C, symSize: 0x10 } - - { offsetInCU: 0x7DC8, offset: 0x7B7FB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSnySiG_Tgq5Tf4nnd_n', symObjAddr: 0x759C, symBinAddr: 0x2F21C, symSize: 0x7C } - - { offsetInCU: 0x7DFE, offset: 0x7B831, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x76C0, symBinAddr: 0x2F318, symSize: 0x3C } - - { offsetInCU: 0x7E12, offset: 0x7B845, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x76FC, symBinAddr: 0x2F354, symSize: 0x40 } - - { offsetInCU: 0x7E26, offset: 0x7B859, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOr', symObjAddr: 0x7780, symBinAddr: 0x2F3D8, symSize: 0x28 } - - { offsetInCU: 0x7E3A, offset: 0x7B86D, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOs', symObjAddr: 0x77A8, symBinAddr: 0x2F400, symSize: 0x28 } - - { offsetInCU: 0x810F, offset: 0x7BB42, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x72A0, symBinAddr: 0x2EF60, symSize: 0xE4 } - - { offsetInCU: 0x4F, offset: 0x7BEB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x1160, symBinAddr: 0x66968, symSize: 0x0 } - - { offsetInCU: 0x87, offset: 0x7BEE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2F428, symSize: 0xB4 } - - { offsetInCU: 0xE0, offset: 0x7BF41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1D0, symBinAddr: 0x2F5F8, symSize: 0x5C } - - { offsetInCU: 0x10E, offset: 0x7BF6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x22C, symBinAddr: 0x2F654, symSize: 0x4FC } - - { offsetInCU: 0x1FA, offset: 0x7C05B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x728, symBinAddr: 0x2FB50, symSize: 0x7C } - - { offsetInCU: 0x25C, offset: 0x7C0BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x860, symBinAddr: 0x2FC88, symSize: 0x14 } - - { offsetInCU: 0x2EB, offset: 0x7C14C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x874, symBinAddr: 0x2FC9C, symSize: 0x44 } - - { offsetInCU: 0x3CE, offset: 0x7C22F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8B8, symBinAddr: 0x2FCE0, symSize: 0x28 } - - { offsetInCU: 0x460, offset: 0x7C2C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x920, symBinAddr: 0x2FD48, symSize: 0x1B4 } - - { offsetInCU: 0x4CB, offset: 0x7C32C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAD4, symBinAddr: 0x2FEFC, symSize: 0x4 } - - { offsetInCU: 0x4E5, offset: 0x7C346, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAD8, symBinAddr: 0x2FF00, symSize: 0x1C } - - { offsetInCU: 0x568, offset: 0x7C3C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xD84, symBinAddr: 0x3015C, symSize: 0xAC } - - { offsetInCU: 0x633, offset: 0x7C494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE30, symBinAddr: 0x30208, symSize: 0x110 } - - { offsetInCU: 0x6FD, offset: 0x7C55E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB4, symBinAddr: 0x2F4DC, symSize: 0x11C } - - { offsetInCU: 0x754, offset: 0x7C5B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAF4, symBinAddr: 0x2FF1C, symSize: 0x20 } - - { offsetInCU: 0x768, offset: 0x7C5C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB24, symBinAddr: 0x2FF3C, symSize: 0x90 } - - { offsetInCU: 0x77C, offset: 0x7C5DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xBB4, symBinAddr: 0x2FFCC, symSize: 0xBC } - - { offsetInCU: 0x790, offset: 0x7C5F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC70, symBinAddr: 0x30088, symSize: 0x8 } - - { offsetInCU: 0x7A4, offset: 0x7C605, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC78, symBinAddr: 0x30090, symSize: 0x4 } - - { offsetInCU: 0x7B8, offset: 0x7C619, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC7C, symBinAddr: 0x30094, symSize: 0x8 } - - { offsetInCU: 0x7CC, offset: 0x7C62D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC84, symBinAddr: 0x3009C, symSize: 0x10 } - - { offsetInCU: 0x7E0, offset: 0x7C641, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xC94, symBinAddr: 0x300AC, symSize: 0x4 } - - { offsetInCU: 0x7F4, offset: 0x7C655, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xC98, symBinAddr: 0x300B0, symSize: 0x44 } - - { offsetInCU: 0x808, offset: 0x7C669, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCDC, symBinAddr: 0x300F4, symSize: 0x10 } - - { offsetInCU: 0x81C, offset: 0x7C67D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xCEC, symBinAddr: 0x30104, symSize: 0x8 } - - { offsetInCU: 0x830, offset: 0x7C691, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xCF4, symBinAddr: 0x3010C, symSize: 0x10 } - - { offsetInCU: 0x844, offset: 0x7C6A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xF90, symBinAddr: 0x30368, symSize: 0xC } - - { offsetInCU: 0x858, offset: 0x7C6B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x1060, symBinAddr: 0x30438, symSize: 0x8 } - - { offsetInCU: 0x86C, offset: 0x7C6CD, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x1068, symBinAddr: 0x30440, symSize: 0x10 } - - { offsetInCU: 0x90B, offset: 0x7C76C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x2FD08, symSize: 0x40 } - - { offsetInCU: 0xABE, offset: 0x7C91F, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x7A4, symBinAddr: 0x2FBCC, symSize: 0xBC } - - { offsetInCU: 0x2B, offset: 0x7C9DF, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x30458, symSize: 0x5C } - - { offsetInCU: 0x64, offset: 0x7CA18, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x30458, symSize: 0x5C } - - { offsetInCU: 0xE7, offset: 0x7CA9B, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x5C, symBinAddr: 0x304B4, symSize: 0x104 } - - { offsetInCU: 0x194, offset: 0x7CB48, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x160, symBinAddr: 0x305B8, symSize: 0xB4 } - - { offsetInCU: 0x340, offset: 0x7CCF4, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x214, symBinAddr: 0x3066C, symSize: 0x150 } - - { offsetInCU: 0x519, offset: 0x7CECD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x374, symBinAddr: 0x307CC, symSize: 0x10 } - - { offsetInCU: 0x547, offset: 0x7CEFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x384, symBinAddr: 0x307DC, symSize: 0x24 } - - { offsetInCU: 0x5E1, offset: 0x7CF95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x3A8, symBinAddr: 0x30800, symSize: 0x44 } - - { offsetInCU: 0x6E9, offset: 0x7D09D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3EC, symBinAddr: 0x30844, symSize: 0x14 } - - { offsetInCU: 0x745, offset: 0x7D0F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x400, symBinAddr: 0x30858, symSize: 0x44 } - - { offsetInCU: 0x828, offset: 0x7D1DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x444, symBinAddr: 0x3089C, symSize: 0x28 } - - { offsetInCU: 0x8B1, offset: 0x7D265, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x4AC, symBinAddr: 0x30904, symSize: 0x4 } - - { offsetInCU: 0x8C5, offset: 0x7D279, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4B0, symBinAddr: 0x30908, symSize: 0x44 } - - { offsetInCU: 0x8D9, offset: 0x7D28D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x514, symBinAddr: 0x3095C, symSize: 0x90 } - - { offsetInCU: 0x8ED, offset: 0x7D2A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x5A4, symBinAddr: 0x309EC, symSize: 0xBC } - - { offsetInCU: 0x901, offset: 0x7D2B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x660, symBinAddr: 0x30AA8, symSize: 0x8 } - - { offsetInCU: 0x915, offset: 0x7D2C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x668, symBinAddr: 0x30AB0, symSize: 0x4 } - - { offsetInCU: 0x929, offset: 0x7D2DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x66C, symBinAddr: 0x30AB4, symSize: 0x8 } - - { offsetInCU: 0x93D, offset: 0x7D2F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x674, symBinAddr: 0x30ABC, symSize: 0x10 } - - { offsetInCU: 0x951, offset: 0x7D305, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x684, symBinAddr: 0x30ACC, symSize: 0xC } - - { offsetInCU: 0x965, offset: 0x7D319, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x690, symBinAddr: 0x30AD8, symSize: 0x20 } - - { offsetInCU: 0x979, offset: 0x7D32D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x6B0, symBinAddr: 0x30AF8, symSize: 0x28 } - - { offsetInCU: 0x98D, offset: 0x7D341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x6D8, symBinAddr: 0x30B20, symSize: 0x8 } - - { offsetInCU: 0x9A1, offset: 0x7D355, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x6E0, symBinAddr: 0x30B28, symSize: 0x4 } - - { offsetInCU: 0x9B5, offset: 0x7D369, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x6E4, symBinAddr: 0x30B2C, symSize: 0x4 } - - { offsetInCU: 0x9C9, offset: 0x7D37D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x6E8, symBinAddr: 0x30B30, symSize: 0x10 } - - { offsetInCU: 0xA35, offset: 0x7D3E9, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x6F8, symBinAddr: 0x30B40, symSize: 0x258 } - - { offsetInCU: 0xCED, offset: 0x7D6A1, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x9A0, symBinAddr: 0x30D98, symSize: 0x44 } - - { offsetInCU: 0xDAE, offset: 0x7D762, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x364, symBinAddr: 0x307BC, symSize: 0x4 } - - { offsetInCU: 0xDCA, offset: 0x7D77E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x368, symBinAddr: 0x307C0, symSize: 0x4 } - - { offsetInCU: 0xDE6, offset: 0x7D79A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x36C, symBinAddr: 0x307C4, symSize: 0x4 } - - { offsetInCU: 0xE02, offset: 0x7D7B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x370, symBinAddr: 0x307C8, symSize: 0x4 } - - { offsetInCU: 0xE4B, offset: 0x7D7FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x46C, symBinAddr: 0x308C4, symSize: 0x40 } - - { offsetInCU: 0xEE7, offset: 0x7D89B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x4F4, symBinAddr: 0x3094C, symSize: 0x4 } - - { offsetInCU: 0xF03, offset: 0x7D8B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x4F8, symBinAddr: 0x30950, symSize: 0x4 } - - { offsetInCU: 0xF1F, offset: 0x7D8D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x4FC, symBinAddr: 0x30954, symSize: 0x4 } - - { offsetInCU: 0xF3B, offset: 0x7D8EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x500, symBinAddr: 0x30958, symSize: 0x4 } - - { offsetInCU: 0x2B, offset: 0x7DAEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x30DDC, symSize: 0x50 } - - { offsetInCU: 0x69, offset: 0x7DB2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x50, symBinAddr: 0x30E2C, symSize: 0x4 } - - { offsetInCU: 0x92, offset: 0x7DB56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xF0, symBinAddr: 0x30ECC, symSize: 0xA0 } - - { offsetInCU: 0xC1, offset: 0x7DB85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x190, symBinAddr: 0x30F6C, symSize: 0x34 } - - { offsetInCU: 0xE0, offset: 0x7DBA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x284, symBinAddr: 0x31060, symSize: 0x2C } - - { offsetInCU: 0x111, offset: 0x7DBD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x2B0, symBinAddr: 0x3108C, symSize: 0xC } - - { offsetInCU: 0x12D, offset: 0x7DBF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2BC, symBinAddr: 0x31098, symSize: 0x8 } - - { offsetInCU: 0x14A, offset: 0x7DC0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x30DDC, symSize: 0x50 } - - { offsetInCU: 0x1B0, offset: 0x7DC74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x54, symBinAddr: 0x30E30, symSize: 0x5C } - - { offsetInCU: 0x241, offset: 0x7DD05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x468, symBinAddr: 0x31244, symSize: 0x28 } - - { offsetInCU: 0x272, offset: 0x7DD36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x490, symBinAddr: 0x3126C, symSize: 0x10 } - - { offsetInCU: 0x2A4, offset: 0x7DD68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x3127C, symSize: 0x34 } - - { offsetInCU: 0x2D0, offset: 0x7DD94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0xB0, symBinAddr: 0x30E8C, symSize: 0x30 } - - { offsetInCU: 0x336, offset: 0x7DDFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xE0, symBinAddr: 0x30EBC, symSize: 0x10 } - - { offsetInCU: 0x385, offset: 0x7DE49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x2C4, symBinAddr: 0x310A0, symSize: 0x10 } - - { offsetInCU: 0x3B3, offset: 0x7DE77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x2D4, symBinAddr: 0x310B0, symSize: 0x10 } - - { offsetInCU: 0x3E1, offset: 0x7DEA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x2E4, symBinAddr: 0x310C0, symSize: 0x10 } - - { offsetInCU: 0x40F, offset: 0x7DED3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x2F4, symBinAddr: 0x310D0, symSize: 0x4 } - - { offsetInCU: 0x423, offset: 0x7DEE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x2F8, symBinAddr: 0x310D4, symSize: 0x44 } - - { offsetInCU: 0x437, offset: 0x7DEFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x33C, symBinAddr: 0x31118, symSize: 0x4 } - - { offsetInCU: 0x481, offset: 0x7DF45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x340, symBinAddr: 0x3111C, symSize: 0x14 } - - { offsetInCU: 0x4FA, offset: 0x7DFBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x354, symBinAddr: 0x31130, symSize: 0x14 } - - { offsetInCU: 0x573, offset: 0x7E037, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x368, symBinAddr: 0x31144, symSize: 0x14 } - - { offsetInCU: 0x5EC, offset: 0x7E0B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x37C, symBinAddr: 0x31158, symSize: 0x14 } - - { offsetInCU: 0x62F, offset: 0x7E0F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x390, symBinAddr: 0x3116C, symSize: 0x10 } - - { offsetInCU: 0x643, offset: 0x7E107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x4E4, symBinAddr: 0x312B0, symSize: 0x90 } - - { offsetInCU: 0x657, offset: 0x7E11B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x574, symBinAddr: 0x31340, symSize: 0xBC } - - { offsetInCU: 0x66B, offset: 0x7E12F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x630, symBinAddr: 0x313FC, symSize: 0x8 } - - { offsetInCU: 0x67F, offset: 0x7E143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x638, symBinAddr: 0x31404, symSize: 0x4 } - - { offsetInCU: 0x693, offset: 0x7E157, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x63C, symBinAddr: 0x31408, symSize: 0x8 } - - { offsetInCU: 0x6A7, offset: 0x7E16B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x644, symBinAddr: 0x31410, symSize: 0x10 } - - { offsetInCU: 0x6BB, offset: 0x7E17F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x654, symBinAddr: 0x31420, symSize: 0x4 } - - { offsetInCU: 0x6CF, offset: 0x7E193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x658, symBinAddr: 0x31424, symSize: 0x44 } - - { offsetInCU: 0x712, offset: 0x7E1D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C4, symBinAddr: 0x30FA0, symSize: 0x14 } - - { offsetInCU: 0x7A3, offset: 0x7E267, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1D8, symBinAddr: 0x30FB4, symSize: 0x44 } - - { offsetInCU: 0x832, offset: 0x7E2F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x30FF8, symSize: 0x28 } - - { offsetInCU: 0x885, offset: 0x7E349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x244, symBinAddr: 0x31020, symSize: 0x40 } - - { offsetInCU: 0x8F1, offset: 0x7E3B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3A0, symBinAddr: 0x3117C, symSize: 0x18 } - - { offsetInCU: 0x982, offset: 0x7E446, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3B8, symBinAddr: 0x31194, symSize: 0x44 } - - { offsetInCU: 0xA63, offset: 0x7E527, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x3FC, symBinAddr: 0x311D8, symSize: 0x2C } - - { offsetInCU: 0xAE8, offset: 0x7E5AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x428, symBinAddr: 0x31204, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x7E77F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31468, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x7E7A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31468, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x7E7CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31470, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x7E7EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31470, symSize: 0x8 } - - { offsetInCU: 0x14B, offset: 0x7E8A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x31478, symSize: 0xD4 } - - { offsetInCU: 0x323, offset: 0x7EA7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwCP', symObjAddr: 0xE4, symBinAddr: 0x3154C, symSize: 0x3C } - - { offsetInCU: 0x337, offset: 0x7EA8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0x120, symBinAddr: 0x31588, symSize: 0x8 } - - { offsetInCU: 0x34B, offset: 0x7EAA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwcp', symObjAddr: 0x128, symBinAddr: 0x31590, symSize: 0x3C } - - { offsetInCU: 0x35F, offset: 0x7EAB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x164, symBinAddr: 0x315CC, symSize: 0x50 } - - { offsetInCU: 0x373, offset: 0x7EACB, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x1B4, symBinAddr: 0x3161C, symSize: 0xC } - - { offsetInCU: 0x387, offset: 0x7EADF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x1C0, symBinAddr: 0x31628, symSize: 0x40 } - - { offsetInCU: 0x39B, offset: 0x7EAF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x200, symBinAddr: 0x31668, symSize: 0x5C } - - { offsetInCU: 0x3AF, offset: 0x7EB07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x25C, symBinAddr: 0x316C4, symSize: 0x50 } - - { offsetInCU: 0x3C3, offset: 0x7EB1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x2AC, symBinAddr: 0x31714, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x7EC6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31724, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x7EC93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31724, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x7ECBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3172C, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x7ECDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3172C, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x7ED00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x31734, symSize: 0x1C } - - { offsetInCU: 0x13B, offset: 0x7ED83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x2C, symBinAddr: 0x31750, symSize: 0xE8 } - - { offsetInCU: 0x2B9, offset: 0x7EF01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x114, symBinAddr: 0x31838, symSize: 0x110 } - - { offsetInCU: 0x3E9, offset: 0x7F031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwCP', symObjAddr: 0x264, symBinAddr: 0x31948, symSize: 0x4C } - - { offsetInCU: 0x3FD, offset: 0x7F045, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x2B0, symBinAddr: 0x31994, symSize: 0x28 } - - { offsetInCU: 0x411, offset: 0x7F059, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwcp', symObjAddr: 0x2D8, symBinAddr: 0x319BC, symSize: 0x4C } - - { offsetInCU: 0x425, offset: 0x7F06D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x324, symBinAddr: 0x31A08, symSize: 0x7C } - - { offsetInCU: 0x439, offset: 0x7F081, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x3A0, symBinAddr: 0x31A84, symSize: 0x14 } - - { offsetInCU: 0x44D, offset: 0x7F095, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x3B4, symBinAddr: 0x31A98, symSize: 0x5C } - - { offsetInCU: 0x461, offset: 0x7F0A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x410, symBinAddr: 0x31AF4, symSize: 0x5C } - - { offsetInCU: 0x475, offset: 0x7F0BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x46C, symBinAddr: 0x31B50, symSize: 0x54 } - - { offsetInCU: 0x489, offset: 0x7F0D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x4C0, symBinAddr: 0x31BA4, symSize: 0x10 } - - { offsetInCU: 0x4F, offset: 0x7F290, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31BB4, symSize: 0x8 } - - { offsetInCU: 0x7A, offset: 0x7F2BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31BBC, symSize: 0x8 } - - { offsetInCU: 0x9A, offset: 0x7F2DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31BBC, symSize: 0x8 } - - { offsetInCU: 0xAC, offset: 0x7F2ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8clientIDACSS_tcfCTf4gd_nTf4n_g', symObjAddr: 0xEF8, symBinAddr: 0x32A6C, symSize: 0xF0 } - - { offsetInCU: 0x218, offset: 0x7F459, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x31BC4, symSize: 0x2E8 } - - { offsetInCU: 0x5A6, offset: 0x7F7E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x2F8, symBinAddr: 0x31EAC, symSize: 0x34C } - - { offsetInCU: 0x9F0, offset: 0x7FC31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x644, symBinAddr: 0x321F8, symSize: 0x288 } - - { offsetInCU: 0xD53, offset: 0x7FF94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x8CC, symBinAddr: 0x32480, symSize: 0x290 } - - { offsetInCU: 0x117B, offset: 0x803BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xB5C, symBinAddr: 0x32710, symSize: 0x2C0 } - - { offsetInCU: 0x143A, offset: 0x8067B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xE1C, symBinAddr: 0x329D0, symSize: 0x58 } - - { offsetInCU: 0x1456, offset: 0x80697, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0x1040, symBinAddr: 0x32B5C, symSize: 0x30 } - - { offsetInCU: 0x146A, offset: 0x806AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0x10C0, symBinAddr: 0x32B8C, symSize: 0x78 } - - { offsetInCU: 0x147E, offset: 0x806BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x1138, symBinAddr: 0x32C04, symSize: 0x140 } - - { offsetInCU: 0x1492, offset: 0x806D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x1278, symBinAddr: 0x32D44, symSize: 0x1F0 } - - { offsetInCU: 0x14A6, offset: 0x806E7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x1468, symBinAddr: 0x32F34, symSize: 0x34 } - - { offsetInCU: 0x14BA, offset: 0x806FB, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x149C, symBinAddr: 0x32F68, symSize: 0x3C } - - { offsetInCU: 0x14CE, offset: 0x8070F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x14D8, symBinAddr: 0x32FA4, symSize: 0x138 } - - { offsetInCU: 0x14E2, offset: 0x80723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x1610, symBinAddr: 0x330DC, symSize: 0x48 } - - { offsetInCU: 0x14F6, offset: 0x80737, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x1658, symBinAddr: 0x33124, symSize: 0x68 } - - { offsetInCU: 0x150A, offset: 0x8074B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x16C0, symBinAddr: 0x3318C, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x80906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3319C, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x80931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x331A4, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x80951, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x331A4, symSize: 0x8 } - - { offsetInCU: 0x122, offset: 0x809DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x331AC, symSize: 0xE4 } - - { offsetInCU: 0x31C, offset: 0x80BD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0xF4, symBinAddr: 0x33290, symSize: 0x2C4 } - - { offsetInCU: 0x737, offset: 0x80FF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3B8, symBinAddr: 0x33554, symSize: 0x4 } - - { offsetInCU: 0x757, offset: 0x81012, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3B8, symBinAddr: 0x33554, symSize: 0x4 } - - { offsetInCU: 0x769, offset: 0x81024, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV11descriptionSSvgTf4d_n', symObjAddr: 0x3BC, symBinAddr: 0x33558, symSize: 0x1C } - - { offsetInCU: 0x787, offset: 0x81042, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x45C, symBinAddr: 0x335B8, symSize: 0x30 } - - { offsetInCU: 0x79B, offset: 0x81056, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x48C, symBinAddr: 0x335E8, symSize: 0x30 } - - { offsetInCU: 0x7AF, offset: 0x8106A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x4BC, symBinAddr: 0x33618, symSize: 0x74 } - - { offsetInCU: 0x7C3, offset: 0x8107E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x530, symBinAddr: 0x3368C, symSize: 0xAC } - - { offsetInCU: 0x7D7, offset: 0x81092, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x5DC, symBinAddr: 0x33738, symSize: 0x1C } - - { offsetInCU: 0x7EB, offset: 0x810A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x5F8, symBinAddr: 0x33754, symSize: 0x74 } - - { offsetInCU: 0x7FF, offset: 0x810BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x66C, symBinAddr: 0x337C8, symSize: 0x5C } - - { offsetInCU: 0x813, offset: 0x810CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x6C8, symBinAddr: 0x33824, symSize: 0x60 } - - { offsetInCU: 0x827, offset: 0x810E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x728, symBinAddr: 0x33884, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x81269, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33894, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x81288, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33894, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x812B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3389C, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x812D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3389C, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x812F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x338A4, symSize: 0x4 } - - { offsetInCU: 0xD3, offset: 0x81315, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x338A4, symSize: 0x4 } - - { offsetInCU: 0xE5, offset: 0x81327, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqV11descriptionSSvgTf4d_n', symObjAddr: 0x14, symBinAddr: 0x338A8, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x81345, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x24, symBinAddr: 0x338B8, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x81411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x338C8, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x81430, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x338C8, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x8145B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x338D0, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x8147B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x338D0, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x8149D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x338D8, symSize: 0x4 } - - { offsetInCU: 0xD3, offset: 0x814BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x338D8, symSize: 0x4 } - - { offsetInCU: 0xE5, offset: 0x814CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespV11descriptionSSvgTf4d_n', symObjAddr: 0x14, symBinAddr: 0x338DC, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x814ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x24, symBinAddr: 0x338EC, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x815DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x338FC, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x81608, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33904, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x81628, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33904, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x81711, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x3390C, symSize: 0x12C } - - { offsetInCU: 0x40D, offset: 0x8199F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x33A38, symSize: 0x158 } - - { offsetInCU: 0x5CB, offset: 0x81B5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV11descriptionSSvg', symObjAddr: 0x294, symBinAddr: 0x33B90, symSize: 0x88 } - - { offsetInCU: 0x624, offset: 0x81BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x31C, symBinAddr: 0x33C18, symSize: 0x38 } - - { offsetInCU: 0x69A, offset: 0x81C2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x354, symBinAddr: 0x33C50, symSize: 0x1B8 } - - { offsetInCU: 0x834, offset: 0x81DC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x5F8, symBinAddr: 0x33EB4, symSize: 0x30 } - - { offsetInCU: 0x848, offset: 0x81DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x628, symBinAddr: 0x33EE4, symSize: 0x30 } - - { offsetInCU: 0x85C, offset: 0x81DEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x658, symBinAddr: 0x33F14, symSize: 0x5C } - - { offsetInCU: 0x870, offset: 0x81E02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x6B4, symBinAddr: 0x33F70, symSize: 0x94 } - - { offsetInCU: 0x884, offset: 0x81E16, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x748, symBinAddr: 0x34004, symSize: 0x14 } - - { offsetInCU: 0x898, offset: 0x81E2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x75C, symBinAddr: 0x34018, symSize: 0x64 } - - { offsetInCU: 0x8AC, offset: 0x81E3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x7C0, symBinAddr: 0x3407C, symSize: 0x5C } - - { offsetInCU: 0x8C0, offset: 0x81E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x81C, symBinAddr: 0x340D8, symSize: 0x5C } - - { offsetInCU: 0x8D4, offset: 0x81E66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x878, symBinAddr: 0x34134, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x82045, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34144, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x82070, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3414C, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x82090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3414C, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x82179, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x34154, symSize: 0x12C } - - { offsetInCU: 0x40D, offset: 0x82407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x34280, symSize: 0x158 } - - { offsetInCU: 0x5CB, offset: 0x825C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV11descriptionSSvg', symObjAddr: 0x294, symBinAddr: 0x343D8, symSize: 0x88 } - - { offsetInCU: 0x624, offset: 0x8261E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x31C, symBinAddr: 0x34460, symSize: 0x38 } - - { offsetInCU: 0x673, offset: 0x8266D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x354, symBinAddr: 0x34498, symSize: 0xE0 } - - { offsetInCU: 0x794, offset: 0x8278E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x4B8, symBinAddr: 0x345BC, symSize: 0x30 } - - { offsetInCU: 0x7A8, offset: 0x827A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x4E8, symBinAddr: 0x345EC, symSize: 0x30 } - - { offsetInCU: 0x7BC, offset: 0x827B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x518, symBinAddr: 0x3461C, symSize: 0x5C } - - { offsetInCU: 0x7D0, offset: 0x827CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x574, symBinAddr: 0x34678, symSize: 0x94 } - - { offsetInCU: 0x7E4, offset: 0x827DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x61C, symBinAddr: 0x3470C, symSize: 0x64 } - - { offsetInCU: 0x7F8, offset: 0x827F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x680, symBinAddr: 0x34770, symSize: 0x5C } - - { offsetInCU: 0x80C, offset: 0x82806, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x6DC, symBinAddr: 0x347CC, symSize: 0x5C } - - { offsetInCU: 0x820, offset: 0x8281A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x738, symBinAddr: 0x34828, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x829C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34838, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x829E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34838, symSize: 0x8 } - - { offsetInCU: 0x6E, offset: 0x82A09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34840, symSize: 0x8 } - - { offsetInCU: 0x8E, offset: 0x82A29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34840, symSize: 0x8 } - - { offsetInCU: 0xBE, offset: 0x82A59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV5topic7payload3qos5msgidACSS_Says5UInt8VGAA0A7MQTTQoSOs6UInt16VtcfCTf4nnnnd_n', symObjAddr: 0x430, symBinAddr: 0x34C68, symSize: 0x40 } - - { offsetInCU: 0x22F, offset: 0x82BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x34848, symSize: 0x124 } - - { offsetInCU: 0x463, offset: 0x82DFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x134, symBinAddr: 0x3496C, symSize: 0x188 } - - { offsetInCU: 0x777, offset: 0x83112, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2BC, symBinAddr: 0x34AF4, symSize: 0x134 } - - { offsetInCU: 0x90B, offset: 0x832A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3F0, symBinAddr: 0x34C28, symSize: 0x40 } - - { offsetInCU: 0xAD0, offset: 0x8346B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x470, symBinAddr: 0x34CA8, symSize: 0x748 } - - { offsetInCU: 0x1091, offset: 0x83A2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xBB8, symBinAddr: 0x353F0, symSize: 0x48 } - - { offsetInCU: 0x10A5, offset: 0x83A40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xC40, symBinAddr: 0x35438, symSize: 0x30 } - - { offsetInCU: 0x10B9, offset: 0x83A54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xC70, symBinAddr: 0x35468, symSize: 0x48 } - - { offsetInCU: 0x10CD, offset: 0x83A68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xCB8, symBinAddr: 0x354B0, symSize: 0xB4 } - - { offsetInCU: 0x10E1, offset: 0x83A7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xD6C, symBinAddr: 0x35564, symSize: 0x104 } - - { offsetInCU: 0x10F5, offset: 0x83A90, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xE70, symBinAddr: 0x35668, symSize: 0x1C } - - { offsetInCU: 0x1109, offset: 0x83AA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xE8C, symBinAddr: 0x35684, symSize: 0xB4 } - - { offsetInCU: 0x111D, offset: 0x83AB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0xF40, symBinAddr: 0x35738, symSize: 0x48 } - - { offsetInCU: 0x1131, offset: 0x83ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0xF88, symBinAddr: 0x35780, symSize: 0x58 } - - { offsetInCU: 0x1145, offset: 0x83AE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0xFE0, symBinAddr: 0x357D8, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x83D42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x357E8, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x83D6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x357F0, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x83D8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x357F0, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x83E76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x357F8, symSize: 0x12C } - - { offsetInCU: 0x40D, offset: 0x84104, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x35924, symSize: 0x158 } - - { offsetInCU: 0x5CB, offset: 0x842C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV11descriptionSSvg', symObjAddr: 0x294, symBinAddr: 0x35A7C, symSize: 0x88 } - - { offsetInCU: 0x624, offset: 0x8431B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x31C, symBinAddr: 0x35B04, symSize: 0x38 } - - { offsetInCU: 0x673, offset: 0x8436A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x354, symBinAddr: 0x35B3C, symSize: 0xE0 } - - { offsetInCU: 0x794, offset: 0x8448B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x4B8, symBinAddr: 0x35C60, symSize: 0x30 } - - { offsetInCU: 0x7A8, offset: 0x8449F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x4E8, symBinAddr: 0x35C90, symSize: 0x30 } - - { offsetInCU: 0x7BC, offset: 0x844B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x518, symBinAddr: 0x35CC0, symSize: 0x5C } - - { offsetInCU: 0x7D0, offset: 0x844C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x574, symBinAddr: 0x35D1C, symSize: 0x94 } - - { offsetInCU: 0x7E4, offset: 0x844DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x61C, symBinAddr: 0x35DB0, symSize: 0x64 } - - { offsetInCU: 0x7F8, offset: 0x844EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x680, symBinAddr: 0x35E14, symSize: 0x5C } - - { offsetInCU: 0x80C, offset: 0x84503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x6DC, symBinAddr: 0x35E70, symSize: 0x5C } - - { offsetInCU: 0x820, offset: 0x84517, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x738, symBinAddr: 0x35ECC, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x846E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35EDC, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x8470E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35EE4, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x8472E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35EE4, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x84817, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x35EEC, symSize: 0xF4 } - - { offsetInCU: 0x3F8, offset: 0x84A90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x104, symBinAddr: 0x35FE0, symSize: 0x158 } - - { offsetInCU: 0x5B6, offset: 0x84C4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV11descriptionSSvg', symObjAddr: 0x25C, symBinAddr: 0x36138, symSize: 0x88 } - - { offsetInCU: 0x60F, offset: 0x84CA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2E4, symBinAddr: 0x361C0, symSize: 0x38 } - - { offsetInCU: 0x636, offset: 0x84CCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x31C, symBinAddr: 0x361F8, symSize: 0xDC } - - { offsetInCU: 0x757, offset: 0x84DEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x47C, symBinAddr: 0x36318, symSize: 0x30 } - - { offsetInCU: 0x76B, offset: 0x84E03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x4AC, symBinAddr: 0x36348, symSize: 0x30 } - - { offsetInCU: 0x77F, offset: 0x84E17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x4DC, symBinAddr: 0x36378, symSize: 0x64 } - - { offsetInCU: 0x793, offset: 0x84E2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x540, symBinAddr: 0x363DC, symSize: 0x94 } - - { offsetInCU: 0x7A7, offset: 0x84E3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x5E8, symBinAddr: 0x36470, symSize: 0x6C } - - { offsetInCU: 0x7BB, offset: 0x84E53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x654, symBinAddr: 0x364DC, symSize: 0x5C } - - { offsetInCU: 0x7CF, offset: 0x84E67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x6B0, symBinAddr: 0x36538, symSize: 0x5C } - - { offsetInCU: 0x7E3, offset: 0x84E7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x70C, symBinAddr: 0x36594, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x85023, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x365A4, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x85047, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x365A4, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x85072, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x365AC, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x85092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x365AC, symSize: 0x8 } - - { offsetInCU: 0xA9, offset: 0x850A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x365B4, symSize: 0x88 } - - { offsetInCU: 0x102, offset: 0x850FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x98, symBinAddr: 0x3663C, symSize: 0x40 } - - { offsetInCU: 0x2E5, offset: 0x852E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xD8, symBinAddr: 0x3667C, symSize: 0x54C } - - { offsetInCU: 0xA61, offset: 0x85A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x624, symBinAddr: 0x36BC8, symSize: 0x30 } - - { offsetInCU: 0xA75, offset: 0x85A71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x654, symBinAddr: 0x36BF8, symSize: 0x40 } - - { offsetInCU: 0xA89, offset: 0x85A85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x694, symBinAddr: 0x36C38, symSize: 0x7C } - - { offsetInCU: 0xA9D, offset: 0x85A99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x710, symBinAddr: 0x36CB4, symSize: 0xBC } - - { offsetInCU: 0xAB1, offset: 0x85AAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x7E8, symBinAddr: 0x36D70, symSize: 0x84 } - - { offsetInCU: 0xAC5, offset: 0x85AC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x86C, symBinAddr: 0x36DF4, symSize: 0x48 } - - { offsetInCU: 0xAD9, offset: 0x85AD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x8B4, symBinAddr: 0x36E3C, symSize: 0x4C } - - { offsetInCU: 0xAED, offset: 0x85AE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x900, symBinAddr: 0x36E88, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x85D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36E98, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x85D54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36EA0, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x85D74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36EA0, symSize: 0x8 } - - { offsetInCU: 0xA8, offset: 0x85D86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV5msgid16subscriptionList16packetIdentifier0fI012userPropertyACs6UInt16V_SayAA16MqttSubscriptionCGAJSgs6UInt32VSgSDyS2SGtcfCTf4nnnnnd_n', symObjAddr: 0xD1C, symBinAddr: 0x37B74, symSize: 0xC0 } - - { offsetInCU: 0x1C5, offset: 0x85EA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x36EA8, symSize: 0xAC } - - { offsetInCU: 0x41D, offset: 0x860FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xBC, symBinAddr: 0x36F54, symSize: 0x26C } - - { offsetInCU: 0x898, offset: 0x86576, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x328, symBinAddr: 0x371C0, symSize: 0x1E8 } - - { offsetInCU: 0xD64, offset: 0x86A42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x510, symBinAddr: 0x373A8, symSize: 0x5B0 } - - { offsetInCU: 0x1217, offset: 0x86EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xAC0, symBinAddr: 0x37958, symSize: 0x38 } - - { offsetInCU: 0x1233, offset: 0x86F11, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xB38, symBinAddr: 0x37990, symSize: 0x1E4 } - - { offsetInCU: 0x1290, offset: 0x86F6E, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xE20, symBinAddr: 0x37C78, symSize: 0x28 } - - { offsetInCU: 0x12A4, offset: 0x86F82, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xE48, symBinAddr: 0x37CA0, symSize: 0x28 } - - { offsetInCU: 0x12B8, offset: 0x86F96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xE70, symBinAddr: 0x37CC8, symSize: 0x30 } - - { offsetInCU: 0x12CC, offset: 0x86FAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xEA0, symBinAddr: 0x37CF8, symSize: 0x30 } - - { offsetInCU: 0x12E0, offset: 0x86FBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xED0, symBinAddr: 0x37D28, symSize: 0x84 } - - { offsetInCU: 0x12F4, offset: 0x86FD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xF54, symBinAddr: 0x37DAC, symSize: 0xAC } - - { offsetInCU: 0x1308, offset: 0x86FE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0x1014, symBinAddr: 0x37E58, symSize: 0x8C } - - { offsetInCU: 0x131C, offset: 0x86FFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0x10A0, symBinAddr: 0x37EE4, symSize: 0x5C } - - { offsetInCU: 0x1330, offset: 0x8700E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x10FC, symBinAddr: 0x37F40, symSize: 0x60 } - - { offsetInCU: 0x1344, offset: 0x87022, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x115C, symBinAddr: 0x37FA0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x87408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37FB0, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8742C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37FB0, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x87457, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x37FB8, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x87477, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x37FB8, symSize: 0x8 } - - { offsetInCU: 0xBF, offset: 0x874A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x37FC0, symSize: 0xAC } - - { offsetInCU: 0x157, offset: 0x87538, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBC, symBinAddr: 0x3806C, symSize: 0x38 } - - { offsetInCU: 0x1BC, offset: 0x8759D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF4, symBinAddr: 0x380A4, symSize: 0x114 } - - { offsetInCU: 0x2D5, offset: 0x876B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x208, symBinAddr: 0x381B8, symSize: 0x30 } - - { offsetInCU: 0x2E9, offset: 0x876CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x238, symBinAddr: 0x381E8, symSize: 0x38 } - - { offsetInCU: 0x2FD, offset: 0x876DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x270, symBinAddr: 0x38220, symSize: 0x6C } - - { offsetInCU: 0x311, offset: 0x876F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x2DC, symBinAddr: 0x3828C, symSize: 0xA4 } - - { offsetInCU: 0x325, offset: 0x87706, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x394, symBinAddr: 0x38330, symSize: 0x74 } - - { offsetInCU: 0x339, offset: 0x8771A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x408, symBinAddr: 0x383A4, symSize: 0x48 } - - { offsetInCU: 0x34D, offset: 0x8772E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x450, symBinAddr: 0x383EC, symSize: 0x4C } - - { offsetInCU: 0x361, offset: 0x87742, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x49C, symBinAddr: 0x38438, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x87870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38448, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x8788F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38448, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x878BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x38450, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x878DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x38450, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x878FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x38458, symSize: 0x1C } - - { offsetInCU: 0x1CE, offset: 0x87A17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x2C, symBinAddr: 0x38474, symSize: 0x174 } - - { offsetInCU: 0x4E8, offset: 0x87D31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1A0, symBinAddr: 0x385E8, symSize: 0x88 } - - { offsetInCU: 0x675, offset: 0x87EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x228, symBinAddr: 0x38670, symSize: 0x144 } - - { offsetInCU: 0xA16, offset: 0x8825F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x36C, symBinAddr: 0x387B4, symSize: 0x500 } - - { offsetInCU: 0xEB9, offset: 0x88702, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x8AC, symBinAddr: 0x38CB4, symSize: 0x30 } - - { offsetInCU: 0xECD, offset: 0x88716, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0x8DC, symBinAddr: 0x38CE4, symSize: 0x30 } - - { offsetInCU: 0xEE1, offset: 0x8872A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0x90C, symBinAddr: 0x38D14, symSize: 0x64 } - - { offsetInCU: 0xEF5, offset: 0x8873E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0x970, symBinAddr: 0x38D78, symSize: 0x8C } - - { offsetInCU: 0xF09, offset: 0x88752, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x9FC, symBinAddr: 0x38E04, symSize: 0xC } - - { offsetInCU: 0xF1D, offset: 0x88766, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xA08, symBinAddr: 0x38E10, symSize: 0x6C } - - { offsetInCU: 0xF31, offset: 0x8877A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xA74, symBinAddr: 0x38E7C, symSize: 0x5C } - - { offsetInCU: 0xF45, offset: 0x8878E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xAD0, symBinAddr: 0x38ED8, symSize: 0x54 } - - { offsetInCU: 0xF59, offset: 0x887A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xB24, symBinAddr: 0x38F2C, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x88AF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x18, symBinAddr: 0x38F54, symSize: 0x44 } - - { offsetInCU: 0x7A, offset: 0x88B22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x74, symBinAddr: 0x38FB0, symSize: 0x44 } - - { offsetInCU: 0xA9, offset: 0x88B51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x178, symBinAddr: 0x390B4, symSize: 0x44 } - - { offsetInCU: 0xD8, offset: 0x88B80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x264, symBinAddr: 0x391A0, symSize: 0x44 } - - { offsetInCU: 0x107, offset: 0x88BAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x2A8, symBinAddr: 0x391E4, symSize: 0x4 } - - { offsetInCU: 0x1AA, offset: 0x88C52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x391E8, symSize: 0x2F8 } - - { offsetInCU: 0x62C, offset: 0x890D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x5A4, symBinAddr: 0x394E0, symSize: 0x20 } - - { offsetInCU: 0x64A, offset: 0x890F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x5C4, symBinAddr: 0x39500, symSize: 0x68 } - - { offsetInCU: 0x685, offset: 0x8912D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x62C, symBinAddr: 0x39568, symSize: 0x74 } - - { offsetInCU: 0x6C0, offset: 0x89168, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x6A0, symBinAddr: 0x395DC, symSize: 0x30 } - - { offsetInCU: 0x7A8, offset: 0x89250, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x6D0, symBinAddr: 0x3960C, symSize: 0x60 } - - { offsetInCU: 0x7D7, offset: 0x8927F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x730, symBinAddr: 0x3966C, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8940C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x18, symBinAddr: 0x396B0, symSize: 0x44 } - - { offsetInCU: 0x7A, offset: 0x8943B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x74, symBinAddr: 0x3970C, symSize: 0x44 } - - { offsetInCU: 0xA9, offset: 0x8946A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x16C, symBinAddr: 0x39804, symSize: 0x44 } - - { offsetInCU: 0xD8, offset: 0x89499, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x25C, symBinAddr: 0x398F4, symSize: 0x44 } - - { offsetInCU: 0x107, offset: 0x894C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x2B8, symBinAddr: 0x39950, symSize: 0x44 } - - { offsetInCU: 0x136, offset: 0x894F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x3A8, symBinAddr: 0x39A40, symSize: 0x44 } - - { offsetInCU: 0x165, offset: 0x89526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x404, symBinAddr: 0x39A9C, symSize: 0x44 } - - { offsetInCU: 0x194, offset: 0x89555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x448, symBinAddr: 0x39AE0, symSize: 0x4 } - - { offsetInCU: 0x1BF, offset: 0x89580, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x44C, symBinAddr: 0x39AE4, symSize: 0x54 } - - { offsetInCU: 0x1DE, offset: 0x8959F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x4A0, symBinAddr: 0x39B38, symSize: 0x5C } - - { offsetInCU: 0x21D, offset: 0x895DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x4FC, symBinAddr: 0x39B94, symSize: 0x44 } - - { offsetInCU: 0x24C, offset: 0x8960D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x5E8, symBinAddr: 0x39C80, symSize: 0x44 } - - { offsetInCU: 0x389, offset: 0x8974A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x62C, symBinAddr: 0x39CC4, symSize: 0x758 } - - { offsetInCU: 0x1009, offset: 0x8A3CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xD84, symBinAddr: 0x3A41C, symSize: 0x20 } - - { offsetInCU: 0x1027, offset: 0x8A3E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xDA4, symBinAddr: 0x3A43C, symSize: 0xC8 } - - { offsetInCU: 0x1054, offset: 0x8A415, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xE6C, symBinAddr: 0x3A504, symSize: 0x20 } - - { offsetInCU: 0x1070, offset: 0x8A431, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xE8C, symBinAddr: 0x3A524, symSize: 0x30 } - - { offsetInCU: 0x11AA, offset: 0x8A56B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xEBC, symBinAddr: 0x3A554, symSize: 0x4C } - - { offsetInCU: 0x11D9, offset: 0x8A59A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0xF08, symBinAddr: 0x3A5A0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8A778, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A5E0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8A796, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3A600, symSize: 0x48 } - - { offsetInCU: 0x88, offset: 0x8A7B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3A648, symSize: 0x5C } - - { offsetInCU: 0xB1, offset: 0x8A7DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3A6A4, symSize: 0x44 } - - { offsetInCU: 0xE0, offset: 0x8A80D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x120, symBinAddr: 0x3A700, symSize: 0x44 } - - { offsetInCU: 0x10F, offset: 0x8A83C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x17C, symBinAddr: 0x3A75C, symSize: 0x44 } - - { offsetInCU: 0x13E, offset: 0x8A86B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1C0, symBinAddr: 0x3A7A0, symSize: 0x4C } - - { offsetInCU: 0x16D, offset: 0x8A89A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x20C, symBinAddr: 0x3A7EC, symSize: 0x50 } - - { offsetInCU: 0x192, offset: 0x8A8BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x25C, symBinAddr: 0x3A83C, symSize: 0x44 } - - { offsetInCU: 0x1C1, offset: 0x8A8EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x3A880, symSize: 0x4 } - - { offsetInCU: 0x1EC, offset: 0x8A919, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2A4, symBinAddr: 0x3A884, symSize: 0x44 } - - { offsetInCU: 0x21B, offset: 0x8A948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x2F4, symBinAddr: 0x3A8D4, symSize: 0x44 } - - { offsetInCU: 0x24A, offset: 0x8A977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x3EC, symBinAddr: 0x3A9CC, symSize: 0x44 } - - { offsetInCU: 0x279, offset: 0x8A9A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x448, symBinAddr: 0x3AA28, symSize: 0x44 } - - { offsetInCU: 0x2A8, offset: 0x8A9D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x4A4, symBinAddr: 0x3AA84, symSize: 0x44 } - - { offsetInCU: 0x2D7, offset: 0x8AA04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x500, symBinAddr: 0x3AAE0, symSize: 0x44 } - - { offsetInCU: 0x306, offset: 0x8AA33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x544, symBinAddr: 0x3AB24, symSize: 0x48 } - - { offsetInCU: 0x335, offset: 0x8AA62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x58C, symBinAddr: 0x3AB6C, symSize: 0x50 } - - { offsetInCU: 0x374, offset: 0x8AAA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x5DC, symBinAddr: 0x3ABBC, symSize: 0x44 } - - { offsetInCU: 0x393, offset: 0x8AAC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x620, symBinAddr: 0x3AC00, symSize: 0x44 } - - { offsetInCU: 0x3C2, offset: 0x8AAEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x670, symBinAddr: 0x3AC50, symSize: 0x44 } - - { offsetInCU: 0x3F1, offset: 0x8AB1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x6B4, symBinAddr: 0x3AC94, symSize: 0x44 } - - { offsetInCU: 0x420, offset: 0x8AB4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x704, symBinAddr: 0x3ACE4, symSize: 0x44 } - - { offsetInCU: 0x44F, offset: 0x8AB7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x748, symBinAddr: 0x3AD28, symSize: 0x44 } - - { offsetInCU: 0x47E, offset: 0x8ABAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x7DC, symBinAddr: 0x3ADBC, symSize: 0x44 } - - { offsetInCU: 0x4AD, offset: 0x8ABDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x8CC, symBinAddr: 0x3AEAC, symSize: 0x44 } - - { offsetInCU: 0x4DC, offset: 0x8AC09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0x928, symBinAddr: 0x3AF08, symSize: 0x44 } - - { offsetInCU: 0x50B, offset: 0x8AC38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0x984, symBinAddr: 0x3AF64, symSize: 0x44 } - - { offsetInCU: 0x53A, offset: 0x8AC67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xA88, symBinAddr: 0x3B068, symSize: 0x44 } - - { offsetInCU: 0x569, offset: 0x8AC96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xACC, symBinAddr: 0x3B0AC, symSize: 0x48 } - - { offsetInCU: 0x598, offset: 0x8ACC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xB14, symBinAddr: 0x3B0F4, symSize: 0x50 } - - { offsetInCU: 0x5C1, offset: 0x8ACEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xB64, symBinAddr: 0x3B144, symSize: 0x44 } - - { offsetInCU: 0x8F6, offset: 0x8B023, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xBA8, symBinAddr: 0x3B188, symSize: 0xABC } - - { offsetInCU: 0x1523, offset: 0x8BC50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x16D4, symBinAddr: 0x3BCB4, symSize: 0x174 } - - { offsetInCU: 0x1552, offset: 0x8BC7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1848, symBinAddr: 0x3BE28, symSize: 0x20 } - - { offsetInCU: 0x156E, offset: 0x8BC9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1868, symBinAddr: 0x3BE48, symSize: 0x30 } - - { offsetInCU: 0x179B, offset: 0x8BEC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x1898, symBinAddr: 0x3BE78, symSize: 0x9C } - - { offsetInCU: 0x17E0, offset: 0x8BF0D, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1934, symBinAddr: 0x3BF14, symSize: 0x64 } - - { offsetInCU: 0x1838, offset: 0x8BF65, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1998, symBinAddr: 0x3BF78, symSize: 0x34 } - - { offsetInCU: 0x1885, offset: 0x8BFB2, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19CC, symBinAddr: 0x3BFAC, symSize: 0xE0 } - - { offsetInCU: 0x18CF, offset: 0x8BFFC, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1AAC, symBinAddr: 0x3C08C, symSize: 0xA0 } - - { offsetInCU: 0x1907, offset: 0x8C034, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1B70, symBinAddr: 0x3C150, symSize: 0x1C8 } - - { offsetInCU: 0x198D, offset: 0x8C0BA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1D38, symBinAddr: 0x3C318, symSize: 0x1B8 } - - { offsetInCU: 0x1A2F, offset: 0x8C15C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x2260, symBinAddr: 0x3C840, symSize: 0x1C4 } - - { offsetInCU: 0x1AD1, offset: 0x8C1FE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2448, symBinAddr: 0x3CA28, symSize: 0x3AC } - - { offsetInCU: 0x1BC1, offset: 0x8C2EE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x27F4, symBinAddr: 0x3CDD4, symSize: 0x390 } - - { offsetInCU: 0x1CCD, offset: 0x8C3FA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x31F4, symBinAddr: 0x3D7D4, symSize: 0x398 } - - { offsetInCU: 0x1DCE, offset: 0x8C4FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x358C, symBinAddr: 0x3DB6C, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8C817, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DBD0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8C83B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DBD0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8C859, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3DBF0, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8C888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3DC3C, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8C8AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3DC8C, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8C8DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3DCD0, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8C907, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3DCD4, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x8C936, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3DD18, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x8C95F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3DD60, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x8C98E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3DDA4, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x8C9BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3DDF8, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x8C9E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3DE54, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x8CA15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3DE98, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x8CA44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3DEE0, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x8CA83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3DF30, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x8CAA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3DF74, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x8CABE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3DF7C, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x8CAEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3E008, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x8CB07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x458, symBinAddr: 0x3E028, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x8CC8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3E094, symSize: 0x604 } - - { offsetInCU: 0xB78, offset: 0x8D368, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x488, symBinAddr: 0x3E058, symSize: 0x3C } - - { offsetInCU: 0xD5C, offset: 0x8D54C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xAC8, symBinAddr: 0x3E698, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8D7AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3E6C4, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8D7D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3E6C4, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8D7F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3E6E4, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8D81F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3E730, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8D844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3E780, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8D873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3E7C4, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8D89E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3E7C8, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x8D8CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3E80C, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x8D8F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3E854, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x8D925, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3E898, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x8D954, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3E8EC, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x8D97D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3E948, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x8D9AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3E98C, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x8D9DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3E9D4, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x8DA1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3EA24, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x8DA39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3EA68, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x8DA55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3EA70, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x8DA82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3EAFC, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x8DA9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x458, symBinAddr: 0x3EB1C, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x8DC21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3EB88, symSize: 0x5F8 } - - { offsetInCU: 0xB80, offset: 0x8E307, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x488, symBinAddr: 0x3EB4C, symSize: 0x3C } - - { offsetInCU: 0xD7B, offset: 0x8E502, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xABC, symBinAddr: 0x3F180, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8E788, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F1AC, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8E7A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3F1CC, symSize: 0x48 } - - { offsetInCU: 0x88, offset: 0x8E7C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3F214, symSize: 0x5C } - - { offsetInCU: 0xB1, offset: 0x8E7EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3F270, symSize: 0x44 } - - { offsetInCU: 0xE0, offset: 0x8E81D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0x108, symBinAddr: 0x3F2B4, symSize: 0x4C } - - { offsetInCU: 0x10F, offset: 0x8E84C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x154, symBinAddr: 0x3F300, symSize: 0x50 } - - { offsetInCU: 0x134, offset: 0x8E871, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x1A4, symBinAddr: 0x3F350, symSize: 0x44 } - - { offsetInCU: 0x163, offset: 0x8E8A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1E8, symBinAddr: 0x3F394, symSize: 0x54 } - - { offsetInCU: 0x192, offset: 0x8E8CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x23C, symBinAddr: 0x3F3E8, symSize: 0x50 } - - { offsetInCU: 0x1B7, offset: 0x8E8F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x28C, symBinAddr: 0x3F438, symSize: 0x44 } - - { offsetInCU: 0x1E6, offset: 0x8E923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2E8, symBinAddr: 0x3F494, symSize: 0x44 } - - { offsetInCU: 0x215, offset: 0x8E952, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x32C, symBinAddr: 0x3F4D8, symSize: 0x4 } - - { offsetInCU: 0x240, offset: 0x8E97D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x348, symBinAddr: 0x3F4F4, symSize: 0x44 } - - { offsetInCU: 0x26F, offset: 0x8E9AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3A4, symBinAddr: 0x3F550, symSize: 0x44 } - - { offsetInCU: 0x29E, offset: 0x8E9DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x490, symBinAddr: 0x3F63C, symSize: 0x44 } - - { offsetInCU: 0x2BD, offset: 0x8E9FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x4EC, symBinAddr: 0x3F698, symSize: 0x44 } - - { offsetInCU: 0x2EC, offset: 0x8EA29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x5F0, symBinAddr: 0x3F79C, symSize: 0x44 } - - { offsetInCU: 0x31B, offset: 0x8EA58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x634, symBinAddr: 0x3F7E0, symSize: 0x54 } - - { offsetInCU: 0x33A, offset: 0x8EA77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x688, symBinAddr: 0x3F834, symSize: 0x5C } - - { offsetInCU: 0x363, offset: 0x8EAA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x6E4, symBinAddr: 0x3F890, symSize: 0x44 } - - { offsetInCU: 0x392, offset: 0x8EACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x7D4, symBinAddr: 0x3F980, symSize: 0x44 } - - { offsetInCU: 0x3C1, offset: 0x8EAFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x8B4, symBinAddr: 0x3FA60, symSize: 0x44 } - - { offsetInCU: 0x660, offset: 0x8ED9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x8F8, symBinAddr: 0x3FAA4, symSize: 0xAE8 } - - { offsetInCU: 0x114B, offset: 0x8F888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x1450, symBinAddr: 0x405FC, symSize: 0xF8 } - - { offsetInCU: 0x1178, offset: 0x8F8B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x1548, symBinAddr: 0x406F4, symSize: 0x20 } - - { offsetInCU: 0x1194, offset: 0x8F8D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1568, symBinAddr: 0x40714, symSize: 0x30 } - - { offsetInCU: 0x1473, offset: 0x8FBB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x1598, symBinAddr: 0x40744, symSize: 0x74 } - - { offsetInCU: 0x14A2, offset: 0x8FBDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x160C, symBinAddr: 0x407B8, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8FEFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x40804, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8FF22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x40804, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8FF40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x40824, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8FF6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x40870, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8FF94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x408C0, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8FFC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x40904, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8FFEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x40908, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x9001D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x4094C, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x90046, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x40994, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x90075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x409D8, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x900A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x40A2C, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x900CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x40A88, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x900FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x40ACC, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x9012B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x40B14, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x9016A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x40B64, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x90189, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x40BA8, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x901A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x40BB0, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x901D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x40C3C, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x901EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x458, symBinAddr: 0x40C5C, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x90371, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x40CC8, symSize: 0x604 } - - { offsetInCU: 0xB78, offset: 0x90A4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x488, symBinAddr: 0x40C8C, symSize: 0x3C } - - { offsetInCU: 0xD5C, offset: 0x90C33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xAC8, symBinAddr: 0x412CC, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90E95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x412F8, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x90EB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x412F8, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90ED7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x41318, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x90F06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x41364, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x90F2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x413B4, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x90F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x413F8, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x90F85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x413FC, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x90FB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x41440, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x90FDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x41488, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x9100C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x414CC, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x9103B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x41520, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x91064, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x4157C, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x91093, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x415C0, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x910C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x41608, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x91101, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x41658, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x91120, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x4169C, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x9113C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x416A4, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x91169, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x41730, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x91185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x458, symBinAddr: 0x41750, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x91308, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x417BC, symSize: 0x5F8 } - - { offsetInCU: 0xB80, offset: 0x919EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x488, symBinAddr: 0x41780, symSize: 0x3C } - - { offsetInCU: 0xD64, offset: 0x91BD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xABC, symBinAddr: 0x41DB4, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x91E34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x41DE0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x91E58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x41DE0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x91E76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x41E00, symSize: 0x48 } - - { offsetInCU: 0x98, offset: 0x91EA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x41E48, symSize: 0x50 } - - { offsetInCU: 0xD7, offset: 0x91EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x41E98, symSize: 0x44 } - - { offsetInCU: 0xF6, offset: 0x91F03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x41EDC, symSize: 0x4 } - - { offsetInCU: 0x121, offset: 0x91F2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x41EE0, symSize: 0x44 } - - { offsetInCU: 0x150, offset: 0x91F5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x41F24, symSize: 0x48 } - - { offsetInCU: 0x179, offset: 0x91F86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x41F6C, symSize: 0x44 } - - { offsetInCU: 0x1A8, offset: 0x91FB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x41FB0, symSize: 0x54 } - - { offsetInCU: 0x1D7, offset: 0x91FE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x42004, symSize: 0x5C } - - { offsetInCU: 0x200, offset: 0x9200D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x42060, symSize: 0x44 } - - { offsetInCU: 0x22F, offset: 0x9203C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x420A4, symSize: 0x48 } - - { offsetInCU: 0x25E, offset: 0x9206B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x420EC, symSize: 0x50 } - - { offsetInCU: 0x29D, offset: 0x920AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x4213C, symSize: 0x44 } - - { offsetInCU: 0x2BC, offset: 0x920C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x42180, symSize: 0x8 } - - { offsetInCU: 0x2D8, offset: 0x920E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x42188, symSize: 0xA4 } - - { offsetInCU: 0x307, offset: 0x92114, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x44C, symBinAddr: 0x4222C, symSize: 0x20 } - - { offsetInCU: 0x323, offset: 0x92130, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x46C, symBinAddr: 0x4224C, symSize: 0x30 } - - { offsetInCU: 0x4B8, offset: 0x922C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4E8, symBinAddr: 0x422C8, symSize: 0x6CC } - - { offsetInCU: 0xCE2, offset: 0x92AEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x49C, symBinAddr: 0x4227C, symSize: 0x4C } - - { offsetInCU: 0xF34, offset: 0x92D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xC24, symBinAddr: 0x42A04, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x92FCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x42A30, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x92FF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x42A30, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x9300E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x42A50, symSize: 0x48 } - - { offsetInCU: 0x98, offset: 0x9303D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x42A98, symSize: 0x50 } - - { offsetInCU: 0xD7, offset: 0x9307C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x42AE8, symSize: 0x44 } - - { offsetInCU: 0xF6, offset: 0x9309B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x42B2C, symSize: 0x4 } - - { offsetInCU: 0x121, offset: 0x930C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x42B30, symSize: 0x44 } - - { offsetInCU: 0x150, offset: 0x930F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x42B74, symSize: 0x48 } - - { offsetInCU: 0x179, offset: 0x9311E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x42BBC, symSize: 0x44 } - - { offsetInCU: 0x1A8, offset: 0x9314D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x42C00, symSize: 0x54 } - - { offsetInCU: 0x1D7, offset: 0x9317C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x42C54, symSize: 0x5C } - - { offsetInCU: 0x200, offset: 0x931A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x42CB0, symSize: 0x44 } - - { offsetInCU: 0x22F, offset: 0x931D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x42CF4, symSize: 0x48 } - - { offsetInCU: 0x25E, offset: 0x93203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x42D3C, symSize: 0x50 } - - { offsetInCU: 0x29D, offset: 0x93242, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x42D8C, symSize: 0x44 } - - { offsetInCU: 0x2BC, offset: 0x93261, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x42DD0, symSize: 0x8 } - - { offsetInCU: 0x2D8, offset: 0x9327D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x42DD8, symSize: 0xA4 } - - { offsetInCU: 0x307, offset: 0x932AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x44C, symBinAddr: 0x42E7C, symSize: 0x20 } - - { offsetInCU: 0x323, offset: 0x932C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x46C, symBinAddr: 0x42E9C, symSize: 0x30 } - - { offsetInCU: 0x4B8, offset: 0x9345D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4E8, symBinAddr: 0x42F18, symSize: 0x6CC } - - { offsetInCU: 0xCE2, offset: 0x93C87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x49C, symBinAddr: 0x42ECC, symSize: 0x4C } - - { offsetInCU: 0xF50, offset: 0x93EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xC24, symBinAddr: 0x43654, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x941AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x43680, symSize: 0x48 } - - { offsetInCU: 0x7A, offset: 0x941D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x48, symBinAddr: 0x436C8, symSize: 0x5C } - - { offsetInCU: 0xB9, offset: 0x94218, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0xA4, symBinAddr: 0x43724, symSize: 0x44 } - - { offsetInCU: 0xE8, offset: 0x94247, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xE8, symBinAddr: 0x43768, symSize: 0x4C } - - { offsetInCU: 0x107, offset: 0x94266, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x134, symBinAddr: 0x437B4, symSize: 0x50 } - - { offsetInCU: 0x142, offset: 0x942A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x184, symBinAddr: 0x43804, symSize: 0x44 } - - { offsetInCU: 0x171, offset: 0x942D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x43860, symSize: 0x44 } - - { offsetInCU: 0x1A0, offset: 0x942FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x224, symBinAddr: 0x438A4, symSize: 0x4C } - - { offsetInCU: 0x1BF, offset: 0x9431E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x270, symBinAddr: 0x438F0, symSize: 0x50 } - - { offsetInCU: 0x1FA, offset: 0x94359, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2C0, symBinAddr: 0x43940, symSize: 0x44 } - - { offsetInCU: 0x229, offset: 0x94388, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x43984, symSize: 0x4 } - - { offsetInCU: 0x254, offset: 0x943B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x320, symBinAddr: 0x439A0, symSize: 0x44 } - - { offsetInCU: 0x283, offset: 0x943E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x37C, symBinAddr: 0x439FC, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x94411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x468, symBinAddr: 0x43AE8, symSize: 0x44 } - - { offsetInCU: 0x2E1, offset: 0x94440, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x43BE0, symSize: 0x44 } - - { offsetInCU: 0x310, offset: 0x9446F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x43CE4, symSize: 0x44 } - - { offsetInCU: 0x34E, offset: 0x944AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x6A8, symBinAddr: 0x43D28, symSize: 0xE8 } - - { offsetInCU: 0x382, offset: 0x944E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x790, symBinAddr: 0x43E10, symSize: 0xAC } - - { offsetInCU: 0x486, offset: 0x945E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x83C, symBinAddr: 0x43EBC, symSize: 0x778 } - - { offsetInCU: 0x11C4, offset: 0x95323, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0xFB4, symBinAddr: 0x44634, symSize: 0x20 } - - { offsetInCU: 0x11E2, offset: 0x95341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0xFD4, symBinAddr: 0x44654, symSize: 0x2C } - - { offsetInCU: 0x1245, offset: 0x953A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x1000, symBinAddr: 0x44680, symSize: 0x2C } - - { offsetInCU: 0x12AC, offset: 0x9540B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x102C, symBinAddr: 0x446AC, symSize: 0x30 } - - { offsetInCU: 0x12D9, offset: 0x95438, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfcTf4nnnngggngn_n', symObjAddr: 0x10BC, symBinAddr: 0x4473C, symSize: 0x314 } - - { offsetInCU: 0x1551, offset: 0x956B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x105C, symBinAddr: 0x446DC, symSize: 0x60 } - - { offsetInCU: 0x1580, offset: 0x956DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0x13D0, symBinAddr: 0x44A50, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x959B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x44A90, symSize: 0xF4 } - - { offsetInCU: 0x81, offset: 0x95A0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x44A90, symSize: 0xF4 } - - { offsetInCU: 0xF2, offset: 0x95A7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xF4, symBinAddr: 0x44B84, symSize: 0xF0 } - - { offsetInCU: 0x139, offset: 0x95AC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x1E4, symBinAddr: 0x44C74, symSize: 0x48 } - - { offsetInCU: 0x155, offset: 0x95ADF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x22C, symBinAddr: 0x44CBC, symSize: 0x50 } - - { offsetInCU: 0x171, offset: 0x95AFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x27C, symBinAddr: 0x44D0C, symSize: 0x3C } - - { offsetInCU: 0x18D, offset: 0x95B17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x2B8, symBinAddr: 0x44D48, symSize: 0x30 } - - { offsetInCU: 0x1A9, offset: 0x95B33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2E8, symBinAddr: 0x44D78, symSize: 0x3C } - - { offsetInCU: 0x1C5, offset: 0x95B4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x324, symBinAddr: 0x44DB4, symSize: 0x3C } - - { offsetInCU: 0x1E1, offset: 0x95B6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x360, symBinAddr: 0x44DF0, symSize: 0x30 } - - { offsetInCU: 0x1FD, offset: 0x95B87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x390, symBinAddr: 0x44E20, symSize: 0x3C } - - { offsetInCU: 0x219, offset: 0x95BA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x3CC, symBinAddr: 0x44E5C, symSize: 0x3C } - - { offsetInCU: 0x235, offset: 0x95BBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x408, symBinAddr: 0x44E98, symSize: 0x30 } - - { offsetInCU: 0x251, offset: 0x95BDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x438, symBinAddr: 0x44EC8, symSize: 0x3C } - - { offsetInCU: 0x26D, offset: 0x95BF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x474, symBinAddr: 0x44F04, symSize: 0x3C } - - { offsetInCU: 0x289, offset: 0x95C13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x4B0, symBinAddr: 0x44F40, symSize: 0x30 } - - { offsetInCU: 0x2A5, offset: 0x95C2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x4E0, symBinAddr: 0x44F70, symSize: 0x3C } - - { offsetInCU: 0x2C1, offset: 0x95C4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x51C, symBinAddr: 0x44FAC, symSize: 0x3C } - - { offsetInCU: 0x2DD, offset: 0x95C67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x558, symBinAddr: 0x44FE8, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x95C83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x55C, symBinAddr: 0x44FEC, symSize: 0x30 } - - { offsetInCU: 0x315, offset: 0x95C9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x58C, symBinAddr: 0x4501C, symSize: 0x3C } - - { offsetInCU: 0x331, offset: 0x95CBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x5C8, symBinAddr: 0x45058, symSize: 0x3C } - - { offsetInCU: 0x34D, offset: 0x95CD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x604, symBinAddr: 0x45094, symSize: 0xDC } - - { offsetInCU: 0x376, offset: 0x95D00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x6E0, symBinAddr: 0x45170, symSize: 0xE0 } - - { offsetInCU: 0x3A9, offset: 0x95D33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x7C0, symBinAddr: 0x45250, symSize: 0x26C } - - { offsetInCU: 0x55E, offset: 0x95EE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0xA2C, symBinAddr: 0x454BC, symSize: 0x1C } - - { offsetInCU: 0x599, offset: 0x95F23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0xA48, symBinAddr: 0x454D8, symSize: 0x24 } - - { offsetInCU: 0x6B9, offset: 0x96043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0xA6C, symBinAddr: 0x454FC, symSize: 0x20 } - - { offsetInCU: 0x5E, offset: 0x961C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x45530, symSize: 0x60 } - - { offsetInCU: 0x92, offset: 0x961FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x17C, symBinAddr: 0x456AC, symSize: 0x30 } - - { offsetInCU: 0xA6, offset: 0x9620F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x1AC, symBinAddr: 0x456DC, symSize: 0x78 } - - { offsetInCU: 0x100, offset: 0x96269, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x224, symBinAddr: 0x45754, symSize: 0xBC } - - { offsetInCU: 0x15E, offset: 0x962C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x2E0, symBinAddr: 0x45810, symSize: 0x60 } - - { offsetInCU: 0x186, offset: 0x962EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x340, symBinAddr: 0x45870, symSize: 0x140 } - - { offsetInCU: 0x1EE, offset: 0x96357, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x480, symBinAddr: 0x459B0, symSize: 0x64 } - - { offsetInCU: 0x23A, offset: 0x963A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x4E4, symBinAddr: 0x45A14, symSize: 0x90 } - - { offsetInCU: 0x298, offset: 0x96401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x574, symBinAddr: 0x45AA4, symSize: 0xC4 } - - { offsetInCU: 0x2D8, offset: 0x96441, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x638, symBinAddr: 0x45B68, symSize: 0xDC } - - { offsetInCU: 0x309, offset: 0x96472, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x714, symBinAddr: 0x45C44, symSize: 0x104 } - - { offsetInCU: 0x363, offset: 0x964CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x818, symBinAddr: 0x45D48, symSize: 0xD8 } - - { offsetInCU: 0x3C1, offset: 0x9652A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0x8F0, symBinAddr: 0x45E20, symSize: 0xBC } - - { offsetInCU: 0x40D, offset: 0x96576, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0x9AC, symBinAddr: 0x45EDC, symSize: 0x88 } - - { offsetInCU: 0x46B, offset: 0x965D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xA34, symBinAddr: 0x45F64, symSize: 0x190 } - - { offsetInCU: 0x4C2, offset: 0x9662B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x460F4, symSize: 0xB0 } - - { offsetInCU: 0x50A, offset: 0x96673, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xC74, symBinAddr: 0x461A4, symSize: 0x24 } - - { offsetInCU: 0x545, offset: 0x966AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xC98, symBinAddr: 0x461C8, symSize: 0x2C } - - { offsetInCU: 0x58F, offset: 0x966F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xD0C, symBinAddr: 0x4623C, symSize: 0xE4 } - - { offsetInCU: 0x5AB, offset: 0x96714, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xDF0, symBinAddr: 0x46320, symSize: 0x54 } - - { offsetInCU: 0x5C7, offset: 0x96730, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xE44, symBinAddr: 0x46374, symSize: 0xA8 } - - { offsetInCU: 0x620, offset: 0x96789, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0xEEC, symBinAddr: 0x4641C, symSize: 0x30 } - - { offsetInCU: 0x669, offset: 0x967D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x11E0, symBinAddr: 0x46710, symSize: 0x3C } - - { offsetInCU: 0x69B, offset: 0x96804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfcTf4ngn_n', symObjAddr: 0x1600, symBinAddr: 0x46B30, symSize: 0x140 } - - { offsetInCU: 0x714, offset: 0x9687D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x17A0, symBinAddr: 0x46CD0, symSize: 0x274 } - - { offsetInCU: 0x795, offset: 0x968FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1740, symBinAddr: 0x46C70, symSize: 0x20 } - - { offsetInCU: 0x7A9, offset: 0x96912, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1760, symBinAddr: 0x46C90, symSize: 0x20 } - - { offsetInCU: 0x7BD, offset: 0x96926, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x46CB0, symSize: 0x20 } - - { offsetInCU: 0x7D1, offset: 0x9693A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x1A14, symBinAddr: 0x46F44, symSize: 0x18 } - - { offsetInCU: 0x7E5, offset: 0x9694E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x1A2C, symBinAddr: 0x46F5C, symSize: 0x20 } - - { offsetInCU: 0x7F9, offset: 0x96962, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1A4C, symBinAddr: 0x46F7C, symSize: 0x18 } - - { offsetInCU: 0x80D, offset: 0x96976, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x1AAC, symBinAddr: 0x46FDC, symSize: 0xC } - - { offsetInCU: 0x821, offset: 0x9698A, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1AB8, symBinAddr: 0x46FE8, symSize: 0x10 } - - { offsetInCU: 0x835, offset: 0x9699E, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1AC8, symBinAddr: 0x46FF8, symSize: 0x8 } - - { offsetInCU: 0x849, offset: 0x969B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1AD0, symBinAddr: 0x47000, symSize: 0x10 } - - { offsetInCU: 0x85D, offset: 0x969C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1AE0, symBinAddr: 0x47010, symSize: 0x10 } - - { offsetInCU: 0x871, offset: 0x969DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1AF0, symBinAddr: 0x47020, symSize: 0x10 } - - { offsetInCU: 0x885, offset: 0x969EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1B00, symBinAddr: 0x47030, symSize: 0x10 } - - { offsetInCU: 0x899, offset: 0x96A02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1B10, symBinAddr: 0x47040, symSize: 0x10 } - - { offsetInCU: 0x8AD, offset: 0x96A16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1B20, symBinAddr: 0x47050, symSize: 0x4 } - - { offsetInCU: 0x8C1, offset: 0x96A2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1B24, symBinAddr: 0x47054, symSize: 0x50 } - - { offsetInCU: 0x8D5, offset: 0x96A3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B74, symBinAddr: 0x470A4, symSize: 0xC } - - { offsetInCU: 0x8E9, offset: 0x96A52, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B80, symBinAddr: 0x470B0, symSize: 0xC } - - { offsetInCU: 0x8FD, offset: 0x96A66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1DD0, symBinAddr: 0x47300, symSize: 0x7C } - - { offsetInCU: 0x911, offset: 0x96A7A, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E88, symBinAddr: 0x4737C, symSize: 0x2C } - - { offsetInCU: 0x939, offset: 0x96AA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0xF1C, symBinAddr: 0x4644C, symSize: 0x54 } - - { offsetInCU: 0x955, offset: 0x96ABE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0xF70, symBinAddr: 0x464A0, symSize: 0x44 } - - { offsetInCU: 0x971, offset: 0x96ADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0xFB4, symBinAddr: 0x464E4, symSize: 0x4 } - - { offsetInCU: 0x98D, offset: 0x96AF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0xFB8, symBinAddr: 0x464E8, symSize: 0x4 } - - { offsetInCU: 0x9BE, offset: 0x96B27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xFBC, symBinAddr: 0x464EC, symSize: 0x10 } - - { offsetInCU: 0x9DE, offset: 0x96B47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xFBC, symBinAddr: 0x464EC, symSize: 0x10 } - - { offsetInCU: 0x9EF, offset: 0x96B58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0xFCC, symBinAddr: 0x464FC, symSize: 0x64 } - - { offsetInCU: 0xA0B, offset: 0x96B74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x1030, symBinAddr: 0x46560, symSize: 0x68 } - - { offsetInCU: 0xA27, offset: 0x96B90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1098, symBinAddr: 0x465C8, symSize: 0x50 } - - { offsetInCU: 0xA52, offset: 0x96BBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x1190, symBinAddr: 0x466C0, symSize: 0x50 } - - { offsetInCU: 0xA9E, offset: 0x96C07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x121C, symBinAddr: 0x4674C, symSize: 0x78 } - - { offsetInCU: 0xAF1, offset: 0x96C5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x1294, symBinAddr: 0x467C4, symSize: 0x60 } - - { offsetInCU: 0xB2F, offset: 0x96C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x12F4, symBinAddr: 0x46824, symSize: 0x34 } - - { offsetInCU: 0xB4B, offset: 0x96CB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1328, symBinAddr: 0x46858, symSize: 0x8 } - - { offsetInCU: 0xB7C, offset: 0x96CE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x1330, symBinAddr: 0x46860, symSize: 0x5C } - - { offsetInCU: 0xBAD, offset: 0x96D16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x138C, symBinAddr: 0x468BC, symSize: 0x5C } - - { offsetInCU: 0xBC9, offset: 0x96D32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x13E8, symBinAddr: 0x46918, symSize: 0x70 } - - { offsetInCU: 0xBEC, offset: 0x96D55, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x15FC, symBinAddr: 0x46B2C, symSize: 0x4 } - - { offsetInCU: 0xC15, offset: 0x96D7E, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B8C, symBinAddr: 0x470BC, symSize: 0x178 } + - { offsetInCU: 0x34, offset: 0x54E65, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x49290, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x54E9A, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x492B8, symSize: 0x0 } + - { offsetInCU: 0xAB, offset: 0x54F5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x208, symBinAddr: 0x4208, symSize: 0x30 } + - { offsetInCU: 0xDC, offset: 0x54F8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x238, symBinAddr: 0x4238, symSize: 0xC } + - { offsetInCU: 0xF8, offset: 0x54FA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x244, symBinAddr: 0x4244, symSize: 0x8 } + - { offsetInCU: 0x114, offset: 0x54FC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7BC0, symBinAddr: 0xBBAC, symSize: 0x14 } + - { offsetInCU: 0x19A, offset: 0x5504A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7BD4, symBinAddr: 0xBBC0, symSize: 0x28 } + - { offsetInCU: 0x28C, offset: 0x5513C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x24C, symBinAddr: 0x424C, symSize: 0x108 } + - { offsetInCU: 0x3BA, offset: 0x5526A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x354, symBinAddr: 0x4354, symSize: 0x8 } + - { offsetInCU: 0x635, offset: 0x554E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xCE4, symBinAddr: 0x4CE4, symSize: 0x118 } + - { offsetInCU: 0xB39, offset: 0x559E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x23BC, symBinAddr: 0x63BC, symSize: 0x10 } + - { offsetInCU: 0xB51, offset: 0x55A01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x23CC, symBinAddr: 0x63CC, symSize: 0x4 } + - { offsetInCU: 0xBA2, offset: 0x55A52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2434, symBinAddr: 0x6434, symSize: 0x10 } + - { offsetInCU: 0xBBA, offset: 0x55A6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x2444, symBinAddr: 0x6444, symSize: 0x4 } + - { offsetInCU: 0xC1A, offset: 0x55ACA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x24AC, symBinAddr: 0x64AC, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x55AE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x24BC, symBinAddr: 0x64BC, symSize: 0x4 } + - { offsetInCU: 0xC83, offset: 0x55B33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2524, symBinAddr: 0x6524, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x55B62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x2598, symBinAddr: 0x6598, symSize: 0x10 } + - { offsetInCU: 0xCCA, offset: 0x55B7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x25A8, symBinAddr: 0x65A8, symSize: 0x4 } + - { offsetInCU: 0xD2A, offset: 0x55BDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x2610, symBinAddr: 0x6610, symSize: 0x10 } + - { offsetInCU: 0xD59, offset: 0x55C09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x2684, symBinAddr: 0x6684, symSize: 0x10 } + - { offsetInCU: 0xD71, offset: 0x55C21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2694, symBinAddr: 0x6694, symSize: 0x4 } + - { offsetInCU: 0xDB3, offset: 0x55C63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x26FC, symBinAddr: 0x66FC, symSize: 0x10 } + - { offsetInCU: 0xDCB, offset: 0x55C7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x270C, symBinAddr: 0x670C, symSize: 0x4 } + - { offsetInCU: 0xE0D, offset: 0x55CBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x2774, symBinAddr: 0x6774, symSize: 0x10 } + - { offsetInCU: 0xE25, offset: 0x55CD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x2784, symBinAddr: 0x6784, symSize: 0x4 } + - { offsetInCU: 0xE76, offset: 0x55D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x27EC, symBinAddr: 0x67EC, symSize: 0x10 } + - { offsetInCU: 0xE8E, offset: 0x55D3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x27FC, symBinAddr: 0x67FC, symSize: 0x4 } + - { offsetInCU: 0xEF0, offset: 0x55DA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2864, symBinAddr: 0x6864, symSize: 0x10 } + - { offsetInCU: 0xF1F, offset: 0x55DCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x28D8, symBinAddr: 0x68D8, symSize: 0x10 } + - { offsetInCU: 0xFBB, offset: 0x55E6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x3154, symBinAddr: 0x7154, symSize: 0x24 } + - { offsetInCU: 0x12B8, offset: 0x56168, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4C30, symBinAddr: 0x8C30, symSize: 0x2C } + - { offsetInCU: 0x131F, offset: 0x561CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4C5C, symBinAddr: 0x8C5C, symSize: 0x44 } + - { offsetInCU: 0x141D, offset: 0x562CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x6C54, symBinAddr: 0xAC40, symSize: 0x24C } + - { offsetInCU: 0x15F1, offset: 0x564A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x70BC, symBinAddr: 0xB0A8, symSize: 0x234 } + - { offsetInCU: 0x17C5, offset: 0x56675, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x72F0, symBinAddr: 0xB2DC, symSize: 0x200 } + - { offsetInCU: 0x1999, offset: 0x56849, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x74F0, symBinAddr: 0xB4DC, symSize: 0x22C } + - { offsetInCU: 0x1B6D, offset: 0x56A1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x771C, symBinAddr: 0xB708, symSize: 0x270 } + - { offsetInCU: 0x1D41, offset: 0x56BF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x798C, symBinAddr: 0xB978, symSize: 0x234 } + - { offsetInCU: 0x2006, offset: 0x56EB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x4D8, symBinAddr: 0x44D8, symSize: 0x14 } + - { offsetInCU: 0x201E, offset: 0x56ECE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x4EC, symBinAddr: 0x44EC, symSize: 0x1C } + - { offsetInCU: 0x2036, offset: 0x56EE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x56C, symBinAddr: 0x456C, symSize: 0x8 } + - { offsetInCU: 0x204E, offset: 0x56EFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x6F8, symBinAddr: 0x46F8, symSize: 0xC } + - { offsetInCU: 0x2066, offset: 0x56F16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x760, symBinAddr: 0x4760, symSize: 0xC } + - { offsetInCU: 0x207E, offset: 0x56F2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x870, symBinAddr: 0x4870, symSize: 0x8 } + - { offsetInCU: 0x2096, offset: 0x56F46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x948, symBinAddr: 0x4948, symSize: 0x8 } + - { offsetInCU: 0x2124, offset: 0x56FD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xCDC, symBinAddr: 0x4CDC, symSize: 0x8 } + - { offsetInCU: 0x2285, offset: 0x57135, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x13A8, symBinAddr: 0x53A8, symSize: 0x8 } + - { offsetInCU: 0x229D, offset: 0x5714D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1480, symBinAddr: 0x5480, symSize: 0x8 } + - { offsetInCU: 0x22B5, offset: 0x57165, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1488, symBinAddr: 0x5488, symSize: 0x8 } + - { offsetInCU: 0x22CD, offset: 0x5717D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1560, symBinAddr: 0x5560, symSize: 0x8 } + - { offsetInCU: 0x22E5, offset: 0x57195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1638, symBinAddr: 0x5638, symSize: 0x8 } + - { offsetInCU: 0x22FD, offset: 0x571AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x1710, symBinAddr: 0x5710, symSize: 0x8 } + - { offsetInCU: 0x2315, offset: 0x571C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1718, symBinAddr: 0x5718, symSize: 0x8 } + - { offsetInCU: 0x232D, offset: 0x571DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x1720, symBinAddr: 0x5720, symSize: 0x8 } + - { offsetInCU: 0x240C, offset: 0x572BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x2228, symBinAddr: 0x6228, symSize: 0x3C } + - { offsetInCU: 0x243B, offset: 0x572EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x2340, symBinAddr: 0x6340, symSize: 0x24 } + - { offsetInCU: 0x246A, offset: 0x5731A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x2364, symBinAddr: 0x6364, symSize: 0x24 } + - { offsetInCU: 0x2499, offset: 0x57349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x2388, symBinAddr: 0x6388, symSize: 0x24 } + - { offsetInCU: 0x24C8, offset: 0x57378, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x23AC, symBinAddr: 0x63AC, symSize: 0x8 } + - { offsetInCU: 0x24E0, offset: 0x57390, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x23B4, symBinAddr: 0x63B4, symSize: 0x8 } + - { offsetInCU: 0x2567, offset: 0x57417, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x3178, symBinAddr: 0x7178, symSize: 0x22C } + - { offsetInCU: 0x26EA, offset: 0x5759A, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x3E10, symBinAddr: 0x7E10, symSize: 0x2C } + - { offsetInCU: 0x2A6F, offset: 0x5791F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4CA0, symBinAddr: 0x8CA0, symSize: 0x8 } + - { offsetInCU: 0x2AEF, offset: 0x5799F, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x4EF4, symBinAddr: 0x8EF4, symSize: 0x3C } + - { offsetInCU: 0x2B3D, offset: 0x579ED, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x50DC, symBinAddr: 0x90DC, symSize: 0x64 } + - { offsetInCU: 0x2CF4, offset: 0x57BA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x58A0, symBinAddr: 0x98A0, symSize: 0x4 } + - { offsetInCU: 0x2D14, offset: 0x57BC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x58A0, symBinAddr: 0x98A0, symSize: 0x4 } + - { offsetInCU: 0x2D39, offset: 0x57BE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x58A4, symBinAddr: 0x98A4, symSize: 0x4 } + - { offsetInCU: 0x2D55, offset: 0x57C05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x58A8, symBinAddr: 0x98A8, symSize: 0x4 } + - { offsetInCU: 0x2D71, offset: 0x57C21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x58AC, symBinAddr: 0x98AC, symSize: 0x4 } + - { offsetInCU: 0x2D8D, offset: 0x57C3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x58B0, symBinAddr: 0x98B0, symSize: 0x4 } + - { offsetInCU: 0x2DA9, offset: 0x57C59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x58B4, symBinAddr: 0x98B4, symSize: 0x4 } + - { offsetInCU: 0x2DC5, offset: 0x57C75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x58B8, symBinAddr: 0x98B8, symSize: 0x234 } + - { offsetInCU: 0x2E4D, offset: 0x57CFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5AEC, symBinAddr: 0x9AEC, symSize: 0x140 } + - { offsetInCU: 0x2F5A, offset: 0x57E0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5C2C, symBinAddr: 0x9C2C, symSize: 0x2C } + - { offsetInCU: 0x2FAB, offset: 0x57E5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5C58, symBinAddr: 0x9C58, symSize: 0x8 } + - { offsetInCU: 0x3008, offset: 0x57EB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5C60, symBinAddr: 0x9C60, symSize: 0x8 } + - { offsetInCU: 0x3065, offset: 0x57F15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5C68, symBinAddr: 0x9C68, symSize: 0x8 } + - { offsetInCU: 0x30C2, offset: 0x57F72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5C70, symBinAddr: 0x9C70, symSize: 0x8 } + - { offsetInCU: 0x311F, offset: 0x57FCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5C78, symBinAddr: 0x9C78, symSize: 0x8 } + - { offsetInCU: 0x317C, offset: 0x5802C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5C80, symBinAddr: 0x9C80, symSize: 0x8 } + - { offsetInCU: 0x31D9, offset: 0x58089, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5C88, symBinAddr: 0x9C88, symSize: 0x8 } + - { offsetInCU: 0x3230, offset: 0x580E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5C90, symBinAddr: 0x9C90, symSize: 0x4 } + - { offsetInCU: 0x3250, offset: 0x58100, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5C90, symBinAddr: 0x9C90, symSize: 0x4 } + - { offsetInCU: 0x3263, offset: 0x58113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5C94, symBinAddr: 0x9C94, symSize: 0x8 } + - { offsetInCU: 0x327B, offset: 0x5812B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5C9C, symBinAddr: 0x9C9C, symSize: 0x10 } + - { offsetInCU: 0x3293, offset: 0x58143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5CAC, symBinAddr: 0x9CAC, symSize: 0x1C } + - { offsetInCU: 0x32AB, offset: 0x5815B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5CC8, symBinAddr: 0x9CC8, symSize: 0x8 } + - { offsetInCU: 0x32C3, offset: 0x58173, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x5CD0, symBinAddr: 0x9CD0, symSize: 0xC } + - { offsetInCU: 0x32DB, offset: 0x5818B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x5CDC, symBinAddr: 0x9CDC, symSize: 0xC } + - { offsetInCU: 0x32F3, offset: 0x581A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x5CE8, symBinAddr: 0x9CE8, symSize: 0x8 } + - { offsetInCU: 0x330B, offset: 0x581BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x5CF0, symBinAddr: 0x9CF0, symSize: 0x8 } + - { offsetInCU: 0x3323, offset: 0x581D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x5CF8, symBinAddr: 0x9CF8, symSize: 0x38 } + - { offsetInCU: 0x333B, offset: 0x581EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x5D30, symBinAddr: 0x9D30, symSize: 0x8 } + - { offsetInCU: 0x3353, offset: 0x58203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x5D60, symBinAddr: 0x9D60, symSize: 0x8 } + - { offsetInCU: 0x336B, offset: 0x5821B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5D68, symBinAddr: 0x9D68, symSize: 0x8 } + - { offsetInCU: 0x3383, offset: 0x58233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x5D70, symBinAddr: 0x9D70, symSize: 0x8 } + - { offsetInCU: 0x339B, offset: 0x5824B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5D78, symBinAddr: 0x9D78, symSize: 0x8 } + - { offsetInCU: 0x33B3, offset: 0x58263, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5D80, symBinAddr: 0x9D80, symSize: 0x8 } + - { offsetInCU: 0x33CB, offset: 0x5827B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x5D88, symBinAddr: 0x9D88, symSize: 0x8 } + - { offsetInCU: 0x33E3, offset: 0x58293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x5D90, symBinAddr: 0x9D90, symSize: 0x8 } + - { offsetInCU: 0x33FB, offset: 0x582AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5D98, symBinAddr: 0x9D98, symSize: 0x8 } + - { offsetInCU: 0x3413, offset: 0x582C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5DA0, symBinAddr: 0x9DA0, symSize: 0x8 } + - { offsetInCU: 0x342B, offset: 0x582DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x5DA8, symBinAddr: 0x9DA8, symSize: 0x8 } + - { offsetInCU: 0x3443, offset: 0x582F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x5F78, symBinAddr: 0x9F78, symSize: 0x24 } + - { offsetInCU: 0x3472, offset: 0x58322, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5F9C, symBinAddr: 0x9F9C, symSize: 0x8 } + - { offsetInCU: 0x348A, offset: 0x5833A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x5FA4, symBinAddr: 0x9FA4, symSize: 0x8 } + - { offsetInCU: 0x34A2, offset: 0x58352, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x5FAC, symBinAddr: 0x9FAC, symSize: 0x8 } + - { offsetInCU: 0x34BA, offset: 0x5836A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x5FB4, symBinAddr: 0x9FB4, symSize: 0x8 } + - { offsetInCU: 0x34D2, offset: 0x58382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x5FBC, symBinAddr: 0x9FBC, symSize: 0x8 } + - { offsetInCU: 0x34EA, offset: 0x5839A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x5FC4, symBinAddr: 0x9FC4, symSize: 0x8 } + - { offsetInCU: 0x3502, offset: 0x583B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x5FCC, symBinAddr: 0x9FCC, symSize: 0x18 } + - { offsetInCU: 0x351A, offset: 0x583CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x5FE4, symBinAddr: 0x9FE4, symSize: 0x1C } + - { offsetInCU: 0x3532, offset: 0x583E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x6000, symBinAddr: 0xA000, symSize: 0xC } + - { offsetInCU: 0x354A, offset: 0x583FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x600C, symBinAddr: 0xA00C, symSize: 0xC } + - { offsetInCU: 0x3562, offset: 0x58412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6018, symBinAddr: 0xA018, symSize: 0x8 } + - { offsetInCU: 0x357A, offset: 0x5842A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x6020, symBinAddr: 0xA020, symSize: 0x8 } + - { offsetInCU: 0x3592, offset: 0x58442, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x6028, symBinAddr: 0xA028, symSize: 0x8 } + - { offsetInCU: 0x35AA, offset: 0x5845A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6030, symBinAddr: 0xA030, symSize: 0x8 } + - { offsetInCU: 0x35C2, offset: 0x58472, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x6038, symBinAddr: 0xA038, symSize: 0x8 } + - { offsetInCU: 0x35DA, offset: 0x5848A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x6040, symBinAddr: 0xA040, symSize: 0x8 } + - { offsetInCU: 0x35F2, offset: 0x584A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x6048, symBinAddr: 0xA048, symSize: 0x8 } + - { offsetInCU: 0x360A, offset: 0x584BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x6050, symBinAddr: 0xA050, symSize: 0x8 } + - { offsetInCU: 0x3622, offset: 0x584D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x6058, symBinAddr: 0xA058, symSize: 0x8 } + - { offsetInCU: 0x363A, offset: 0x584EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x6060, symBinAddr: 0xA060, symSize: 0x8 } + - { offsetInCU: 0x3652, offset: 0x58502, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x6068, symBinAddr: 0xA068, symSize: 0x24 } + - { offsetInCU: 0x3695, offset: 0x58545, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x608C, symBinAddr: 0xA08C, symSize: 0xC } + - { offsetInCU: 0x36AD, offset: 0x5855D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6098, symBinAddr: 0xA098, symSize: 0xC } + - { offsetInCU: 0x36C5, offset: 0x58575, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x60A4, symBinAddr: 0xA0A4, symSize: 0x8 } + - { offsetInCU: 0x36DD, offset: 0x5858D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x60AC, symBinAddr: 0xA0AC, symSize: 0xC } + - { offsetInCU: 0x36F5, offset: 0x585A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x60B8, symBinAddr: 0xA0B8, symSize: 0x8 } + - { offsetInCU: 0x370D, offset: 0x585BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x60C0, symBinAddr: 0xA0C0, symSize: 0x8 } + - { offsetInCU: 0x3725, offset: 0x585D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x60C8, symBinAddr: 0xA0C8, symSize: 0xC } + - { offsetInCU: 0x373D, offset: 0x585ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x60D4, symBinAddr: 0xA0D4, symSize: 0x8 } + - { offsetInCU: 0x3755, offset: 0x58605, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x60DC, symBinAddr: 0xA0DC, symSize: 0xC } + - { offsetInCU: 0x376D, offset: 0x5861D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x60E8, symBinAddr: 0xA0E8, symSize: 0x10 } + - { offsetInCU: 0x3785, offset: 0x58635, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x60F8, symBinAddr: 0xA0F8, symSize: 0x8 } + - { offsetInCU: 0x379D, offset: 0x5864D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x6100, symBinAddr: 0xA100, symSize: 0x1C } + - { offsetInCU: 0x37B5, offset: 0x58665, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x611C, symBinAddr: 0xA11C, symSize: 0xC } + - { offsetInCU: 0x37CD, offset: 0x5867D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x6128, symBinAddr: 0xA128, symSize: 0xC } + - { offsetInCU: 0x37E5, offset: 0x58695, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6134, symBinAddr: 0xA134, symSize: 0x8 } + - { offsetInCU: 0x37FD, offset: 0x586AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x613C, symBinAddr: 0xA13C, symSize: 0x8 } + - { offsetInCU: 0x3815, offset: 0x586C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x6144, symBinAddr: 0xA144, symSize: 0x8 } + - { offsetInCU: 0x382D, offset: 0x586DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x614C, symBinAddr: 0xA14C, symSize: 0x8 } + - { offsetInCU: 0x3845, offset: 0x586F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x6154, symBinAddr: 0xA154, symSize: 0xC } + - { offsetInCU: 0x385D, offset: 0x5870D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x6160, symBinAddr: 0xA160, symSize: 0xC } + - { offsetInCU: 0x3875, offset: 0x58725, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x616C, symBinAddr: 0xA16C, symSize: 0xC } + - { offsetInCU: 0x388D, offset: 0x5873D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x6178, symBinAddr: 0xA178, symSize: 0xC } + - { offsetInCU: 0x38A5, offset: 0x58755, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x6184, symBinAddr: 0xA184, symSize: 0x8 } + - { offsetInCU: 0x38BD, offset: 0x5876D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x618C, symBinAddr: 0xA18C, symSize: 0x8 } + - { offsetInCU: 0x38D5, offset: 0x58785, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x6194, symBinAddr: 0xA194, symSize: 0x8 } + - { offsetInCU: 0x38ED, offset: 0x5879D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x619C, symBinAddr: 0xA19C, symSize: 0x10 } + - { offsetInCU: 0x3905, offset: 0x587B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x61AC, symBinAddr: 0xA1AC, symSize: 0x8 } + - { offsetInCU: 0x391D, offset: 0x587CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x61B4, symBinAddr: 0xA1B4, symSize: 0xC } + - { offsetInCU: 0x3935, offset: 0x587E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x61C0, symBinAddr: 0xA1C0, symSize: 0x8 } + - { offsetInCU: 0x394D, offset: 0x587FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x61C8, symBinAddr: 0xA1C8, symSize: 0x8 } + - { offsetInCU: 0x3965, offset: 0x58815, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x61D0, symBinAddr: 0xA1D0, symSize: 0x8 } + - { offsetInCU: 0x397D, offset: 0x5882D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x61D8, symBinAddr: 0xA1D8, symSize: 0x8 } + - { offsetInCU: 0x3995, offset: 0x58845, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x61E0, symBinAddr: 0xA1E0, symSize: 0x8 } + - { offsetInCU: 0x39AD, offset: 0x5885D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x61E8, symBinAddr: 0xA1E8, symSize: 0xC } + - { offsetInCU: 0x39C5, offset: 0x58875, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x61F4, symBinAddr: 0xA1F4, symSize: 0x8 } + - { offsetInCU: 0x39DD, offset: 0x5888D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x61FC, symBinAddr: 0xA1FC, symSize: 0xC } + - { offsetInCU: 0x39F5, offset: 0x588A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x6208, symBinAddr: 0xA208, symSize: 0xC } + - { offsetInCU: 0x3A0D, offset: 0x588BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6214, symBinAddr: 0xA214, symSize: 0x8 } + - { offsetInCU: 0x3A25, offset: 0x588D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x621C, symBinAddr: 0xA21C, symSize: 0x8 } + - { offsetInCU: 0x3A3D, offset: 0x588ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x6224, symBinAddr: 0xA224, symSize: 0x8 } + - { offsetInCU: 0x3A55, offset: 0x58905, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x622C, symBinAddr: 0xA22C, symSize: 0xC } + - { offsetInCU: 0x3A6D, offset: 0x5891D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x6238, symBinAddr: 0xA238, symSize: 0xC } + - { offsetInCU: 0x3A85, offset: 0x58935, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x6244, symBinAddr: 0xA244, symSize: 0x8 } + - { offsetInCU: 0x3A9D, offset: 0x5894D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x624C, symBinAddr: 0xA24C, symSize: 0x8 } + - { offsetInCU: 0x3AB5, offset: 0x58965, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x6254, symBinAddr: 0xA254, symSize: 0x8 } + - { offsetInCU: 0x3ACD, offset: 0x5897D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x625C, symBinAddr: 0xA25C, symSize: 0x8 } + - { offsetInCU: 0x3AE5, offset: 0x58995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x6264, symBinAddr: 0xA264, symSize: 0x8 } + - { offsetInCU: 0x3AFD, offset: 0x589AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x626C, symBinAddr: 0xA26C, symSize: 0xC } + - { offsetInCU: 0x3B15, offset: 0x589C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6278, symBinAddr: 0xA278, symSize: 0x8 } + - { offsetInCU: 0x3B2D, offset: 0x589DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x6280, symBinAddr: 0xA280, symSize: 0x8 } + - { offsetInCU: 0x3B45, offset: 0x589F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x6288, symBinAddr: 0xA288, symSize: 0x8 } + - { offsetInCU: 0x3B5D, offset: 0x58A0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x6290, symBinAddr: 0xA290, symSize: 0x8 } + - { offsetInCU: 0x3B75, offset: 0x58A25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x6298, symBinAddr: 0xA298, symSize: 0x8 } + - { offsetInCU: 0x3B8D, offset: 0x58A3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x62A0, symBinAddr: 0xA2A0, symSize: 0xC } + - { offsetInCU: 0x3BA5, offset: 0x58A55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x62AC, symBinAddr: 0xA2AC, symSize: 0x8 } + - { offsetInCU: 0x3BBD, offset: 0x58A6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x62B4, symBinAddr: 0xA2B4, symSize: 0x8 } + - { offsetInCU: 0x3BD5, offset: 0x58A85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x62BC, symBinAddr: 0xA2BC, symSize: 0x8 } + - { offsetInCU: 0x3BED, offset: 0x58A9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x62C4, symBinAddr: 0xA2C4, symSize: 0x8 } + - { offsetInCU: 0x3C05, offset: 0x58AB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x62CC, symBinAddr: 0xA2CC, symSize: 0xC } + - { offsetInCU: 0x3C1D, offset: 0x58ACD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x62D8, symBinAddr: 0xA2D8, symSize: 0x8 } + - { offsetInCU: 0x3C35, offset: 0x58AE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x62E0, symBinAddr: 0xA2E0, symSize: 0xC } + - { offsetInCU: 0x3C4D, offset: 0x58AFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x62EC, symBinAddr: 0xA2EC, symSize: 0x8 } + - { offsetInCU: 0x3C65, offset: 0x58B15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x62F4, symBinAddr: 0xA2F4, symSize: 0x8 } + - { offsetInCU: 0x3C7D, offset: 0x58B2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x62FC, symBinAddr: 0xA2FC, symSize: 0x8 } + - { offsetInCU: 0x3C95, offset: 0x58B45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x6304, symBinAddr: 0xA304, symSize: 0x8 } + - { offsetInCU: 0x3CAD, offset: 0x58B5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x630C, symBinAddr: 0xA30C, symSize: 0xC } + - { offsetInCU: 0x3CC5, offset: 0x58B75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6318, symBinAddr: 0xA318, symSize: 0x8 } + - { offsetInCU: 0x3CDD, offset: 0x58B8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6320, symBinAddr: 0xA320, symSize: 0xC } + - { offsetInCU: 0x3CF5, offset: 0x58BA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x632C, symBinAddr: 0xA32C, symSize: 0x8 } + - { offsetInCU: 0x3D0D, offset: 0x58BBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x6334, symBinAddr: 0xA334, symSize: 0xC } + - { offsetInCU: 0x3D25, offset: 0x58BD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x6340, symBinAddr: 0xA340, symSize: 0xC } + - { offsetInCU: 0x3D3D, offset: 0x58BED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x634C, symBinAddr: 0xA34C, symSize: 0x8 } + - { offsetInCU: 0x3D55, offset: 0x58C05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6354, symBinAddr: 0xA354, symSize: 0x8 } + - { offsetInCU: 0x3D6D, offset: 0x58C1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x635C, symBinAddr: 0xA35C, symSize: 0xC } + - { offsetInCU: 0x3D85, offset: 0x58C35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6368, symBinAddr: 0xA368, symSize: 0x8 } + - { offsetInCU: 0x3D9D, offset: 0x58C4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x6370, symBinAddr: 0xA370, symSize: 0x8 } + - { offsetInCU: 0x3DB5, offset: 0x58C65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x6378, symBinAddr: 0xA378, symSize: 0x8 } + - { offsetInCU: 0x3DCD, offset: 0x58C7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x6380, symBinAddr: 0xA380, symSize: 0x8 } + - { offsetInCU: 0x4201, offset: 0x590B1, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x6AF4, symBinAddr: 0xAAE0, symSize: 0x160 } + - { offsetInCU: 0x42D3, offset: 0x59183, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x7BFC, symBinAddr: 0xBBE8, symSize: 0x40 } + - { offsetInCU: 0x42E7, offset: 0x59197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x7C60, symBinAddr: 0xBC4C, symSize: 0x8 } + - { offsetInCU: 0x42FB, offset: 0x591AB, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x7C68, symBinAddr: 0xBC54, symSize: 0x24 } + - { offsetInCU: 0x430F, offset: 0x591BF, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x7C8C, symBinAddr: 0xBC78, symSize: 0x20 } + - { offsetInCU: 0x4323, offset: 0x591D3, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x7CAC, symBinAddr: 0xBC98, symSize: 0x28 } + - { offsetInCU: 0x43DA, offset: 0x5928A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x7EDC, symBinAddr: 0xBEC8, symSize: 0x20 } + - { offsetInCU: 0x43EE, offset: 0x5929E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOb', symObjAddr: 0x7EFC, symBinAddr: 0xBEE8, symSize: 0x18 } + - { offsetInCU: 0x4402, offset: 0x592B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x7F4C, symBinAddr: 0xBF38, symSize: 0x8 } + - { offsetInCU: 0x4416, offset: 0x592C6, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x7F54, symBinAddr: 0xBF40, symSize: 0x10 } + - { offsetInCU: 0x442A, offset: 0x592DA, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x7F64, symBinAddr: 0xBF50, symSize: 0x8 } + - { offsetInCU: 0x443E, offset: 0x592EE, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x7FAC, symBinAddr: 0xBF98, symSize: 0x54 } + - { offsetInCU: 0x4452, offset: 0x59302, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8000, symBinAddr: 0xBFEC, symSize: 0x8 } + - { offsetInCU: 0x4466, offset: 0x59316, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x8034, symBinAddr: 0xC020, symSize: 0x10 } + - { offsetInCU: 0x447A, offset: 0x5932A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x8044, symBinAddr: 0xC030, symSize: 0x6C } + - { offsetInCU: 0x448E, offset: 0x5933E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x80B0, symBinAddr: 0xC09C, symSize: 0x6C } + - { offsetInCU: 0x44A2, offset: 0x59352, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8140, symBinAddr: 0xC12C, symSize: 0xC } + - { offsetInCU: 0x44B6, offset: 0x59366, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x814C, symBinAddr: 0xC138, symSize: 0x8 } + - { offsetInCU: 0x49F5, offset: 0x598A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xA560, symBinAddr: 0xE54C, symSize: 0x4 } + - { offsetInCU: 0x4A09, offset: 0x598B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xA564, symBinAddr: 0xE550, symSize: 0x44 } + - { offsetInCU: 0x4A1D, offset: 0x598CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xA5A8, symBinAddr: 0xE594, symSize: 0x10 } + - { offsetInCU: 0x4A31, offset: 0x598E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xA624, symBinAddr: 0xE610, symSize: 0x24 } + - { offsetInCU: 0x4A45, offset: 0x598F5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xA64C, symBinAddr: 0xE638, symSize: 0x44 } + - { offsetInCU: 0x4A59, offset: 0x59909, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xA690, symBinAddr: 0xE67C, symSize: 0x28 } + - { offsetInCU: 0x4A6D, offset: 0x5991D, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xA6B8, symBinAddr: 0xE6A4, symSize: 0x28 } + - { offsetInCU: 0x4A81, offset: 0x59931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xA6E8, symBinAddr: 0xE6D4, symSize: 0x8 } + - { offsetInCU: 0x4A95, offset: 0x59945, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xA714, symBinAddr: 0xE700, symSize: 0x8 } + - { offsetInCU: 0x4AA9, offset: 0x59959, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xA72C, symBinAddr: 0xE718, symSize: 0x8 } + - { offsetInCU: 0x4ABD, offset: 0x5996D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xA734, symBinAddr: 0xE720, symSize: 0x8 } + - { offsetInCU: 0x4AD1, offset: 0x59981, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xA88C, symBinAddr: 0xE878, symSize: 0x14 } + - { offsetInCU: 0x4AE5, offset: 0x59995, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xA8A0, symBinAddr: 0xE88C, symSize: 0x44 } + - { offsetInCU: 0x4AF9, offset: 0x599A9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xA8E4, symBinAddr: 0xE8D0, symSize: 0x14 } + - { offsetInCU: 0x4B0D, offset: 0x599BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xA974, symBinAddr: 0xE960, symSize: 0xC0 } + - { offsetInCU: 0x4B21, offset: 0x599D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xAA9C, symBinAddr: 0xEA88, symSize: 0x44 } + - { offsetInCU: 0x4B35, offset: 0x599E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xAB14, symBinAddr: 0xEB00, symSize: 0x44 } + - { offsetInCU: 0x4B49, offset: 0x599F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xAB84, symBinAddr: 0xEB70, symSize: 0xC } + - { offsetInCU: 0x4BBC, offset: 0x59A6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x148, symBinAddr: 0x4148, symSize: 0x14 } + - { offsetInCU: 0x4C78, offset: 0x59B28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x15C, symBinAddr: 0x415C, symSize: 0x44 } + - { offsetInCU: 0x4D07, offset: 0x59BB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A0, symBinAddr: 0x41A0, symSize: 0x28 } + - { offsetInCU: 0x4D5A, offset: 0x59C0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C8, symBinAddr: 0x41C8, symSize: 0x40 } + - { offsetInCU: 0x52DF, offset: 0x5A18F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTgm5Tf4g_n', symObjAddr: 0x7CD4, symBinAddr: 0xBCC0, symSize: 0xF8 } + - { offsetInCU: 0x5439, offset: 0x5A2E9, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x8270, symBinAddr: 0xC25C, symSize: 0x104 } + - { offsetInCU: 0x59E8, offset: 0x5A898, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x4 } + - { offsetInCU: 0x59FC, offset: 0x5A8AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x4, symBinAddr: 0x4004, symSize: 0x4 } + - { offsetInCU: 0x5A1D, offset: 0x5A8CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x8, symBinAddr: 0x4008, symSize: 0x28 } + - { offsetInCU: 0x5A38, offset: 0x5A8E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x30, symBinAddr: 0x4030, symSize: 0x118 } + - { offsetInCU: 0x5B23, offset: 0x5A9D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x35C, symBinAddr: 0x435C, symSize: 0x48 } + - { offsetInCU: 0x5B42, offset: 0x5A9F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x3A4, symBinAddr: 0x43A4, symSize: 0x58 } + - { offsetInCU: 0x5B77, offset: 0x5AA27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x3FC, symBinAddr: 0x43FC, symSize: 0x70 } + - { offsetInCU: 0x5B9C, offset: 0x5AA4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x46C, symBinAddr: 0x446C, symSize: 0x6C } + - { offsetInCU: 0x5BBD, offset: 0x5AA6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x528, symBinAddr: 0x4528, symSize: 0x44 } + - { offsetInCU: 0x5BE2, offset: 0x5AA92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvg', symObjAddr: 0x574, symBinAddr: 0x4574, symSize: 0x44 } + - { offsetInCU: 0x5C01, offset: 0x5AAB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvs', symObjAddr: 0x5B8, symBinAddr: 0x45B8, symSize: 0x48 } + - { offsetInCU: 0x5C36, offset: 0x5AAE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x600, symBinAddr: 0x4600, symSize: 0x44 } + - { offsetInCU: 0x5C5B, offset: 0x5AB0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x6B4, symBinAddr: 0x46B4, symSize: 0x44 } + - { offsetInCU: 0x5C80, offset: 0x5AB30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x71C, symBinAddr: 0x471C, symSize: 0x44 } + - { offsetInCU: 0x5CA5, offset: 0x5AB55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x482C, symSize: 0x44 } + - { offsetInCU: 0x5CCA, offset: 0x5AB7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvg', symObjAddr: 0x878, symBinAddr: 0x4878, symSize: 0x44 } + - { offsetInCU: 0x5CE9, offset: 0x5AB99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvs', symObjAddr: 0x8BC, symBinAddr: 0x48BC, symSize: 0x48 } + - { offsetInCU: 0x5D1A, offset: 0x5ABCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x904, symBinAddr: 0x4904, symSize: 0x44 } + - { offsetInCU: 0x5D3F, offset: 0x5ABEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x950, symBinAddr: 0x4950, symSize: 0x50 } + - { offsetInCU: 0x5D5E, offset: 0x5AC0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0x9A0, symBinAddr: 0x49A0, symSize: 0x50 } + - { offsetInCU: 0x5D93, offset: 0x5AC43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0x9F0, symBinAddr: 0x49F0, symSize: 0x44 } + - { offsetInCU: 0x5DB8, offset: 0x5AC68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0xA34, symBinAddr: 0x4A34, symSize: 0x4 } + - { offsetInCU: 0x5E0C, offset: 0x5ACBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0xA38, symBinAddr: 0x4A38, symSize: 0xC0 } + - { offsetInCU: 0x5E7B, offset: 0x5AD2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xB04, symBinAddr: 0x4B04, symSize: 0xF4 } + - { offsetInCU: 0x5EED, offset: 0x5AD9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xC04, symBinAddr: 0x4C04, symSize: 0x44 } + - { offsetInCU: 0x5F0C, offset: 0x5ADBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xC48, symBinAddr: 0x4C48, symSize: 0x50 } + - { offsetInCU: 0x5F41, offset: 0x5ADF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC98, symBinAddr: 0x4C98, symSize: 0x44 } + - { offsetInCU: 0x5FCF, offset: 0x5AE7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xDFC, symBinAddr: 0x4DFC, symSize: 0x250 } + - { offsetInCU: 0x6048, offset: 0x5AEF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4CA8, symBinAddr: 0x8CA8, symSize: 0x5C } + - { offsetInCU: 0x6087, offset: 0x5AF37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0x104C, symBinAddr: 0x504C, symSize: 0x44 } + - { offsetInCU: 0x60BA, offset: 0x5AF6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x1090, symBinAddr: 0x5090, symSize: 0x90 } + - { offsetInCU: 0x6102, offset: 0x5AFB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x1120, symBinAddr: 0x5120, symSize: 0x48 } + - { offsetInCU: 0x6127, offset: 0x5AFD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x1168, symBinAddr: 0x5168, symSize: 0x80 } + - { offsetInCU: 0x6189, offset: 0x5B039, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } + - { offsetInCU: 0x61A9, offset: 0x5B059, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x11EC, symBinAddr: 0x51EC, symSize: 0x20 } + - { offsetInCU: 0x6207, offset: 0x5B0B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x120C, symBinAddr: 0x520C, symSize: 0x20 } + - { offsetInCU: 0x623C, offset: 0x5B0EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x120C, symBinAddr: 0x520C, symSize: 0x20 } + - { offsetInCU: 0x6292, offset: 0x5B142, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x122C, symBinAddr: 0x522C, symSize: 0x34 } + - { offsetInCU: 0x62F5, offset: 0x5B1A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1260, symBinAddr: 0x5260, symSize: 0x20 } + - { offsetInCU: 0x6319, offset: 0x5B1C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1260, symBinAddr: 0x5260, symSize: 0x20 } + - { offsetInCU: 0x632D, offset: 0x5B1DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1260, symBinAddr: 0x5260, symSize: 0x20 } + - { offsetInCU: 0x6354, offset: 0x5B204, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1280, symBinAddr: 0x5280, symSize: 0x20 } + - { offsetInCU: 0x6374, offset: 0x5B224, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1280, symBinAddr: 0x5280, symSize: 0x20 } + - { offsetInCU: 0x63D2, offset: 0x5B282, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x12A0, symBinAddr: 0x52A0, symSize: 0x20 } + - { offsetInCU: 0x6406, offset: 0x5B2B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x12A0, symBinAddr: 0x52A0, symSize: 0x20 } + - { offsetInCU: 0x645B, offset: 0x5B30B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x12C0, symBinAddr: 0x52C0, symSize: 0x34 } + - { offsetInCU: 0x64BE, offset: 0x5B36E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12F4, symBinAddr: 0x52F4, symSize: 0x20 } + - { offsetInCU: 0x64E2, offset: 0x5B392, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12F4, symBinAddr: 0x52F4, symSize: 0x20 } + - { offsetInCU: 0x64F6, offset: 0x5B3A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12F4, symBinAddr: 0x52F4, symSize: 0x20 } + - { offsetInCU: 0x651D, offset: 0x5B3CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x20 } + - { offsetInCU: 0x653D, offset: 0x5B3ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x20 } + - { offsetInCU: 0x6596, offset: 0x5B446, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x1334, symBinAddr: 0x5334, symSize: 0x20 } + - { offsetInCU: 0x65CA, offset: 0x5B47A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x1334, symBinAddr: 0x5334, symSize: 0x20 } + - { offsetInCU: 0x661F, offset: 0x5B4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1354, symBinAddr: 0x5354, symSize: 0x34 } + - { offsetInCU: 0x6682, offset: 0x5B532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1388, symBinAddr: 0x5388, symSize: 0x20 } + - { offsetInCU: 0x66A6, offset: 0x5B556, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1388, symBinAddr: 0x5388, symSize: 0x20 } + - { offsetInCU: 0x66BA, offset: 0x5B56A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1388, symBinAddr: 0x5388, symSize: 0x20 } + - { offsetInCU: 0x66CD, offset: 0x5B57D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvg', symObjAddr: 0x13B0, symBinAddr: 0x53B0, symSize: 0x44 } + - { offsetInCU: 0x66EC, offset: 0x5B59C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvs', symObjAddr: 0x13F4, symBinAddr: 0x53F4, symSize: 0x48 } + - { offsetInCU: 0x6721, offset: 0x5B5D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x143C, symBinAddr: 0x543C, symSize: 0x44 } + - { offsetInCU: 0x6746, offset: 0x5B5F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvg', symObjAddr: 0x1490, symBinAddr: 0x5490, symSize: 0x44 } + - { offsetInCU: 0x6765, offset: 0x5B615, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvs', symObjAddr: 0x14D4, symBinAddr: 0x54D4, symSize: 0x48 } + - { offsetInCU: 0x6796, offset: 0x5B646, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x151C, symBinAddr: 0x551C, symSize: 0x44 } + - { offsetInCU: 0x67BB, offset: 0x5B66B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1568, symBinAddr: 0x5568, symSize: 0x44 } + - { offsetInCU: 0x67DA, offset: 0x5B68A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x15AC, symBinAddr: 0x55AC, symSize: 0x48 } + - { offsetInCU: 0x680F, offset: 0x5B6BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x15F4, symBinAddr: 0x55F4, symSize: 0x44 } + - { offsetInCU: 0x6834, offset: 0x5B6E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1640, symBinAddr: 0x5640, symSize: 0x44 } + - { offsetInCU: 0x6853, offset: 0x5B703, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1684, symBinAddr: 0x5684, symSize: 0x48 } + - { offsetInCU: 0x6888, offset: 0x5B738, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x16CC, symBinAddr: 0x56CC, symSize: 0x44 } + - { offsetInCU: 0x68CC, offset: 0x5B77C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x1728, symBinAddr: 0x5728, symSize: 0x78 } + - { offsetInCU: 0x6937, offset: 0x5B7E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x17A0, symBinAddr: 0x57A0, symSize: 0x7C } + - { offsetInCU: 0x69AF, offset: 0x5B85F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x181C, symBinAddr: 0x581C, symSize: 0x90 } + - { offsetInCU: 0x6A08, offset: 0x5B8B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x18AC, symBinAddr: 0x58AC, symSize: 0x24 } + - { offsetInCU: 0x6A29, offset: 0x5B8D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x18D0, symBinAddr: 0x58D0, symSize: 0x88 } + - { offsetInCU: 0x6A7B, offset: 0x5B92B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x1958, symBinAddr: 0x5958, symSize: 0x7C } + - { offsetInCU: 0x6ADC, offset: 0x5B98C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x19D4, symBinAddr: 0x59D4, symSize: 0xA8 } + - { offsetInCU: 0x6B30, offset: 0x5B9E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1A7C, symBinAddr: 0x5A7C, symSize: 0x80 } + - { offsetInCU: 0x6B8F, offset: 0x5BA3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1AFC, symBinAddr: 0x5AFC, symSize: 0xC8 } + - { offsetInCU: 0x6C0F, offset: 0x5BABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1BC4, symBinAddr: 0x5BC4, symSize: 0xD4 } + - { offsetInCU: 0x6C92, offset: 0x5BB42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1C98, symBinAddr: 0x5C98, symSize: 0xFC } + - { offsetInCU: 0x6D24, offset: 0x5BBD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1D94, symBinAddr: 0x5D94, symSize: 0x130 } + - { offsetInCU: 0x6DC7, offset: 0x5BC77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1EC4, symBinAddr: 0x5EC4, symSize: 0xC0 } + - { offsetInCU: 0x6E39, offset: 0x5BCE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x2050, symBinAddr: 0x6050, symSize: 0xF4 } + - { offsetInCU: 0x6EAE, offset: 0x5BD5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2264, symBinAddr: 0x6264, symSize: 0x48 } + - { offsetInCU: 0x6ED4, offset: 0x5BD84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x22AC, symBinAddr: 0x62AC, symSize: 0x50 } + - { offsetInCU: 0x6F0B, offset: 0x5BDBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x22FC, symBinAddr: 0x62FC, symSize: 0x44 } + - { offsetInCU: 0x6F2A, offset: 0x5BDDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x23F0, symBinAddr: 0x63F0, symSize: 0x44 } + - { offsetInCU: 0x6F50, offset: 0x5BE00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2468, symBinAddr: 0x6468, symSize: 0x44 } + - { offsetInCU: 0x6F76, offset: 0x5BE26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x24E0, symBinAddr: 0x64E0, symSize: 0x44 } + - { offsetInCU: 0x6F9C, offset: 0x5BE4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2554, symBinAddr: 0x6554, symSize: 0x44 } + - { offsetInCU: 0x6FC2, offset: 0x5BE72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x25CC, symBinAddr: 0x65CC, symSize: 0x44 } + - { offsetInCU: 0x6FE8, offset: 0x5BE98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x2640, symBinAddr: 0x6640, symSize: 0x44 } + - { offsetInCU: 0x700E, offset: 0x5BEBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x26B8, symBinAddr: 0x66B8, symSize: 0x44 } + - { offsetInCU: 0x7034, offset: 0x5BEE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2730, symBinAddr: 0x6730, symSize: 0x44 } + - { offsetInCU: 0x705A, offset: 0x5BF0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x27A8, symBinAddr: 0x67A8, symSize: 0x44 } + - { offsetInCU: 0x7080, offset: 0x5BF30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x2820, symBinAddr: 0x6820, symSize: 0x44 } + - { offsetInCU: 0x70A6, offset: 0x5BF56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2894, symBinAddr: 0x6894, symSize: 0x44 } + - { offsetInCU: 0x70CC, offset: 0x5BF7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x29B4, symBinAddr: 0x69B4, symSize: 0x44 } + - { offsetInCU: 0x70F8, offset: 0x5BFA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x29F8, symBinAddr: 0x69F8, symSize: 0x70 } + - { offsetInCU: 0x713E, offset: 0x5BFEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2A68, symBinAddr: 0x6A68, symSize: 0x574 } + - { offsetInCU: 0x734B, offset: 0x5C1FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x2FDC, symBinAddr: 0x6FDC, symSize: 0x178 } + - { offsetInCU: 0x747B, offset: 0x5C32B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x33A4, symBinAddr: 0x73A4, symSize: 0x338 } + - { offsetInCU: 0x761F, offset: 0x5C4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x36DC, symBinAddr: 0x76DC, symSize: 0x8 } + - { offsetInCU: 0x771D, offset: 0x5C5CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x36E4, symBinAddr: 0x76E4, symSize: 0x66C } + - { offsetInCU: 0x7A03, offset: 0x5C8B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x3D50, symBinAddr: 0x7D50, symSize: 0xC0 } + - { offsetInCU: 0x7AEB, offset: 0x5C99B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x3E3C, symBinAddr: 0x7E3C, symSize: 0xC8 } + - { offsetInCU: 0x7BB6, offset: 0x5CA66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x3F04, symBinAddr: 0x7F04, symSize: 0x100 } + - { offsetInCU: 0x7C32, offset: 0x5CAE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x4004, symBinAddr: 0x8004, symSize: 0xB0 } + - { offsetInCU: 0x7D21, offset: 0x5CBD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x40B4, symBinAddr: 0x80B4, symSize: 0x148 } + - { offsetInCU: 0x7ECC, offset: 0x5CD7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x41FC, symBinAddr: 0x81FC, symSize: 0x51C } + - { offsetInCU: 0x80F7, offset: 0x5CFA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x4718, symBinAddr: 0x8718, symSize: 0x7C } + - { offsetInCU: 0x8164, offset: 0x5D014, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x4794, symBinAddr: 0x8794, symSize: 0xBC } + - { offsetInCU: 0x8296, offset: 0x5D146, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4850, symBinAddr: 0x8850, symSize: 0x78 } + - { offsetInCU: 0x8367, offset: 0x5D217, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x48C8, symBinAddr: 0x88C8, symSize: 0xF8 } + - { offsetInCU: 0x8587, offset: 0x5D437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x49C0, symBinAddr: 0x89C0, symSize: 0x134 } + - { offsetInCU: 0x8739, offset: 0x5D5E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x4AF4, symBinAddr: 0x8AF4, symSize: 0xF0 } + - { offsetInCU: 0x886B, offset: 0x5D71B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4BE4, symBinAddr: 0x8BE4, symSize: 0x20 } + - { offsetInCU: 0x887F, offset: 0x5D72F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4C04, symBinAddr: 0x8C04, symSize: 0x2C } + - { offsetInCU: 0x88DF, offset: 0x5D78F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4D04, symBinAddr: 0x8D04, symSize: 0x4 } + - { offsetInCU: 0x8953, offset: 0x5D803, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x4D08, symBinAddr: 0x8D08, symSize: 0x1EC } + - { offsetInCU: 0x8A48, offset: 0x5D8F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x4F30, symBinAddr: 0x8F30, symSize: 0x1AC } + - { offsetInCU: 0x8B23, offset: 0x5D9D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5140, symBinAddr: 0x9140, symSize: 0xC4 } + - { offsetInCU: 0x8B9E, offset: 0x5DA4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x5204, symBinAddr: 0x9204, symSize: 0x4 } + - { offsetInCU: 0x8C85, offset: 0x5DB35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5208, symBinAddr: 0x9208, symSize: 0x258 } + - { offsetInCU: 0x90BC, offset: 0x5DF6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5460, symBinAddr: 0x9460, symSize: 0x390 } + - { offsetInCU: 0x92E3, offset: 0x5E193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x57F0, symBinAddr: 0x97F0, symSize: 0xB0 } + - { offsetInCU: 0x94A7, offset: 0x5E357, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5UInt8V_Tg5', symObjAddr: 0x639C, symBinAddr: 0xA388, symSize: 0xB4 } + - { offsetInCU: 0x9590, offset: 0x5E440, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x6450, symBinAddr: 0xA43C, symSize: 0xE4 } + - { offsetInCU: 0x9679, offset: 0x5E529, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x6534, symBinAddr: 0xA520, symSize: 0xB4 } + - { offsetInCU: 0x9762, offset: 0x5E612, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x6600, symBinAddr: 0xA5EC, symSize: 0xBC } + - { offsetInCU: 0x984B, offset: 0x5E6FB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x677C, symBinAddr: 0xA768, symSize: 0xC4 } + - { offsetInCU: 0x9918, offset: 0x5E7C8, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x6840, symBinAddr: 0xA82C, symSize: 0xA4 } + - { offsetInCU: 0x9B37, offset: 0x5E9E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x8374, symBinAddr: 0xC360, symSize: 0x330 } + - { offsetInCU: 0x9D8C, offset: 0x5EC3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x86A4, symBinAddr: 0xC690, symSize: 0x68C } + - { offsetInCU: 0xA312, offset: 0x5F1C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x8D30, symBinAddr: 0xCD1C, symSize: 0x468 } + - { offsetInCU: 0xA6CD, offset: 0x5F57D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9198, symBinAddr: 0xD184, symSize: 0x224 } + - { offsetInCU: 0xA832, offset: 0x5F6E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x93BC, symBinAddr: 0xD3A8, symSize: 0x190 } + - { offsetInCU: 0xA959, offset: 0x5F809, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x954C, symBinAddr: 0xD538, symSize: 0x1A0 } + - { offsetInCU: 0xAAB4, offset: 0x5F964, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x96EC, symBinAddr: 0xD6D8, symSize: 0x23C } + - { offsetInCU: 0xAD26, offset: 0x5FBD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0x9928, symBinAddr: 0xD914, symSize: 0x75C } + - { offsetInCU: 0xB3EA, offset: 0x6029A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA084, symBinAddr: 0xE070, symSize: 0x39C } + - { offsetInCU: 0xB741, offset: 0x605F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xA420, symBinAddr: 0xE40C, symSize: 0x140 } + - { offsetInCU: 0x19A, offset: 0x608A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x31C, symBinAddr: 0xEFE4, symSize: 0x20 } + - { offsetInCU: 0x1CB, offset: 0x608DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x33C, symBinAddr: 0xF004, symSize: 0xC } + - { offsetInCU: 0x1E7, offset: 0x608F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x348, symBinAddr: 0xF010, symSize: 0xA0 } + - { offsetInCU: 0x248, offset: 0x60957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x3E8, symBinAddr: 0xF0B0, symSize: 0x104 } + - { offsetInCU: 0x5BE, offset: 0x60CCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xDC8, symBinAddr: 0xFA90, symSize: 0x118 } + - { offsetInCU: 0xB1E, offset: 0x6122D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x2530, symBinAddr: 0x111F8, symSize: 0x10 } + - { offsetInCU: 0xB36, offset: 0x61245, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2540, symBinAddr: 0x11208, symSize: 0x4 } + - { offsetInCU: 0xB96, offset: 0x612A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x25A8, symBinAddr: 0x11270, symSize: 0x10 } + - { offsetInCU: 0xBAE, offset: 0x612BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x25B8, symBinAddr: 0x11280, symSize: 0x4 } + - { offsetInCU: 0xC0E, offset: 0x6131D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2620, symBinAddr: 0x112E8, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x61335, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2630, symBinAddr: 0x112F8, symSize: 0x4 } + - { offsetInCU: 0xC86, offset: 0x61395, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2698, symBinAddr: 0x11360, symSize: 0x10 } + - { offsetInCU: 0xCB5, offset: 0x613C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x270C, symBinAddr: 0x113D4, symSize: 0x10 } + - { offsetInCU: 0xCCD, offset: 0x613DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x271C, symBinAddr: 0x113E4, symSize: 0x4 } + - { offsetInCU: 0xD3C, offset: 0x6144B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x2784, symBinAddr: 0x1144C, symSize: 0x10 } + - { offsetInCU: 0xD54, offset: 0x61463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2794, symBinAddr: 0x1145C, symSize: 0x4 } + - { offsetInCU: 0xDC3, offset: 0x614D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x27FC, symBinAddr: 0x114C4, symSize: 0x10 } + - { offsetInCU: 0xDDB, offset: 0x614EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x280C, symBinAddr: 0x114D4, symSize: 0x4 } + - { offsetInCU: 0xE3B, offset: 0x6154A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2874, symBinAddr: 0x1153C, symSize: 0x10 } + - { offsetInCU: 0xE53, offset: 0x61562, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2884, symBinAddr: 0x1154C, symSize: 0x4 } + - { offsetInCU: 0xE95, offset: 0x615A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x28EC, symBinAddr: 0x115B4, symSize: 0x10 } + - { offsetInCU: 0xEAD, offset: 0x615BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x28FC, symBinAddr: 0x115C4, symSize: 0x4 } + - { offsetInCU: 0xEEF, offset: 0x615FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2964, symBinAddr: 0x1162C, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x61616, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2974, symBinAddr: 0x1163C, symSize: 0x4 } + - { offsetInCU: 0xF58, offset: 0x61667, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x29DC, symBinAddr: 0x116A4, symSize: 0x10 } + - { offsetInCU: 0xF87, offset: 0x61696, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2A50, symBinAddr: 0x11718, symSize: 0x10 } + - { offsetInCU: 0xFB6, offset: 0x616C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2AC4, symBinAddr: 0x1178C, symSize: 0x10 } + - { offsetInCU: 0xFCE, offset: 0x616DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x2AD4, symBinAddr: 0x1179C, symSize: 0x4 } + - { offsetInCU: 0x1030, offset: 0x6173F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2B3C, symBinAddr: 0x11804, symSize: 0x10 } + - { offsetInCU: 0x105F, offset: 0x6176E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x2BB0, symBinAddr: 0x11878, symSize: 0x10 } + - { offsetInCU: 0x1077, offset: 0x61786, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x2BC0, symBinAddr: 0x11888, symSize: 0x4 } + - { offsetInCU: 0x1135, offset: 0x61844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x3678, symBinAddr: 0x12340, symSize: 0x24 } + - { offsetInCU: 0x14D6, offset: 0x61BE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x5070, symBinAddr: 0x13D38, symSize: 0x2C } + - { offsetInCU: 0x153D, offset: 0x61C4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x509C, symBinAddr: 0x13D64, symSize: 0x44 } + - { offsetInCU: 0x163B, offset: 0x61D4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x6A90, symBinAddr: 0x156AC, symSize: 0x234 } + - { offsetInCU: 0x180F, offset: 0x61F1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x6EE0, symBinAddr: 0x15AFC, symSize: 0x24C } + - { offsetInCU: 0x19E3, offset: 0x620F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x712C, symBinAddr: 0x15D48, symSize: 0x200 } + - { offsetInCU: 0x1BB7, offset: 0x622C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x732C, symBinAddr: 0x15F48, symSize: 0x22C } + - { offsetInCU: 0x1D8B, offset: 0x6249A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x7558, symBinAddr: 0x16174, symSize: 0x270 } + - { offsetInCU: 0x1F5F, offset: 0x6266E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x77C8, symBinAddr: 0x163E4, symSize: 0x25C } + - { offsetInCU: 0x2133, offset: 0x62842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x7A24, symBinAddr: 0x16640, symSize: 0x234 } + - { offsetInCU: 0x2514, offset: 0x62C23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x7C58, symBinAddr: 0x16874, symSize: 0x340 } + - { offsetInCU: 0x25BF, offset: 0x62CCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x7F98, symBinAddr: 0x16BB4, symSize: 0x344 } + - { offsetInCU: 0x266A, offset: 0x62D79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x82DC, symBinAddr: 0x16EF8, symSize: 0x344 } + - { offsetInCU: 0x288D, offset: 0x62F9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x369C, symBinAddr: 0x12364, symSize: 0x288 } + - { offsetInCU: 0x2C9F, offset: 0x633AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x50E0, symBinAddr: 0x13DA8, symSize: 0x8 } + - { offsetInCU: 0x2ECE, offset: 0x635DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5C40, symBinAddr: 0x14908, symSize: 0x4 } + - { offsetInCU: 0x2EEE, offset: 0x635FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5C40, symBinAddr: 0x14908, symSize: 0x4 } + - { offsetInCU: 0x2F13, offset: 0x63622, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5C44, symBinAddr: 0x1490C, symSize: 0x4 } + - { offsetInCU: 0x2F2F, offset: 0x6363E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5C48, symBinAddr: 0x14910, symSize: 0x4 } + - { offsetInCU: 0x2F4B, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5C4C, symBinAddr: 0x14914, symSize: 0x4 } + - { offsetInCU: 0x2F67, offset: 0x63676, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5C50, symBinAddr: 0x14918, symSize: 0x4 } + - { offsetInCU: 0x2F83, offset: 0x63692, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5C54, symBinAddr: 0x1491C, symSize: 0x4 } + - { offsetInCU: 0x2F9F, offset: 0x636AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5C58, symBinAddr: 0x14920, symSize: 0x234 } + - { offsetInCU: 0x3027, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5E8C, symBinAddr: 0x14B54, symSize: 0x140 } + - { offsetInCU: 0x3134, offset: 0x63843, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5FCC, symBinAddr: 0x14C94, symSize: 0x24 } + - { offsetInCU: 0x322B, offset: 0x6393A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x5FF0, symBinAddr: 0x14CB8, symSize: 0x8 } + - { offsetInCU: 0x327C, offset: 0x6398B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x5FF8, symBinAddr: 0x14CC0, symSize: 0x40 } + - { offsetInCU: 0x32CD, offset: 0x639DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x6038, symBinAddr: 0x14D00, symSize: 0x40 } + - { offsetInCU: 0x331E, offset: 0x63A2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6078, symBinAddr: 0x14D40, symSize: 0x8 } + - { offsetInCU: 0x336F, offset: 0x63A7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x6080, symBinAddr: 0x14D48, symSize: 0x8 } + - { offsetInCU: 0x33C0, offset: 0x63ACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6088, symBinAddr: 0x14D50, symSize: 0x8 } + - { offsetInCU: 0x3411, offset: 0x63B20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x6090, symBinAddr: 0x14D58, symSize: 0x8 } + - { offsetInCU: 0x3468, offset: 0x63B77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6098, symBinAddr: 0x14D60, symSize: 0x4 } + - { offsetInCU: 0x3488, offset: 0x63B97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6098, symBinAddr: 0x14D60, symSize: 0x4 } + - { offsetInCU: 0x349B, offset: 0x63BAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x6100, symBinAddr: 0x14D88, symSize: 0x8 } + - { offsetInCU: 0x34CA, offset: 0x63BD9, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tgm5', symObjAddr: 0x64F8, symBinAddr: 0x15114, symSize: 0x54 } + - { offsetInCU: 0x35A5, offset: 0x63CB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x8620, symBinAddr: 0x1723C, symSize: 0xAC } + - { offsetInCU: 0x35E7, offset: 0x63CF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x86CC, symBinAddr: 0x172E8, symSize: 0x94 } + - { offsetInCU: 0x3629, offset: 0x63D38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x8760, symBinAddr: 0x1737C, symSize: 0x20 } + - { offsetInCU: 0x363D, offset: 0x63D4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x87D0, symBinAddr: 0x173D4, symSize: 0x8 } + - { offsetInCU: 0x3651, offset: 0x63D60, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x87D8, symBinAddr: 0x173DC, symSize: 0x10 } + - { offsetInCU: 0x3665, offset: 0x63D74, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x87E8, symBinAddr: 0x173EC, symSize: 0x8 } + - { offsetInCU: 0x3679, offset: 0x63D88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8884, symBinAddr: 0x17434, symSize: 0x8 } + - { offsetInCU: 0x36CC, offset: 0x63DDB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x888C, symBinAddr: 0x1743C, symSize: 0xC4 } + - { offsetInCU: 0x3742, offset: 0x63E51, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8950, symBinAddr: 0x17500, symSize: 0x78 } + - { offsetInCU: 0x376F, offset: 0x63E7E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x89C8, symBinAddr: 0x17578, symSize: 0x80 } + - { offsetInCU: 0x3803, offset: 0x63F12, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x8A48, symBinAddr: 0x175F8, symSize: 0x68 } + - { offsetInCU: 0x3C95, offset: 0x643A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xB45C, symBinAddr: 0x1A00C, symSize: 0x8 } + - { offsetInCU: 0x3CA9, offset: 0x643B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xB464, symBinAddr: 0x1A014, symSize: 0x4 } + - { offsetInCU: 0x3CBD, offset: 0x643CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xB468, symBinAddr: 0x1A018, symSize: 0x44 } + - { offsetInCU: 0x3CD1, offset: 0x643E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xB4AC, symBinAddr: 0x1A05C, symSize: 0x10 } + - { offsetInCU: 0x3CE5, offset: 0x643F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xB4BC, symBinAddr: 0x1A06C, symSize: 0x24 } + - { offsetInCU: 0x3CF9, offset: 0x64408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xB5A8, symBinAddr: 0x1A158, symSize: 0x10 } + - { offsetInCU: 0x3D0D, offset: 0x6441C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xB628, symBinAddr: 0x1A1D8, symSize: 0x10 } + - { offsetInCU: 0x3D21, offset: 0x64430, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xB6B8, symBinAddr: 0x1A224, symSize: 0x8 } + - { offsetInCU: 0x3D35, offset: 0x64444, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xB6C0, symBinAddr: 0x1A22C, symSize: 0x8 } + - { offsetInCU: 0x3D49, offset: 0x64458, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xB6D8, symBinAddr: 0x1A244, symSize: 0x8 } + - { offsetInCU: 0x3D5D, offset: 0x6446C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xB6E0, symBinAddr: 0x1A24C, symSize: 0x8 } + - { offsetInCU: 0x3DA3, offset: 0x644B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xBDBC, symBinAddr: 0x1A724, symSize: 0x10 } + - { offsetInCU: 0x3DB7, offset: 0x644C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xBE70, symBinAddr: 0x1A794, symSize: 0x10 } + - { offsetInCU: 0x3DCB, offset: 0x644DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xBEA4, symBinAddr: 0x1A7C8, symSize: 0xC } + - { offsetInCU: 0x3DDF, offset: 0x644EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xBF7C, symBinAddr: 0x1A85C, symSize: 0xC } + - { offsetInCU: 0x3F1A, offset: 0x64629, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x25C, symBinAddr: 0xEF24, symSize: 0x14 } + - { offsetInCU: 0x3FCA, offset: 0x646D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x270, symBinAddr: 0xEF38, symSize: 0x44 } + - { offsetInCU: 0x4059, offset: 0x64768, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2B4, symBinAddr: 0xEF7C, symSize: 0x28 } + - { offsetInCU: 0x40AC, offset: 0x647BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2DC, symBinAddr: 0xEFA4, symSize: 0x40 } + - { offsetInCU: 0x49EB, offset: 0x650FA, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xECC8, symSize: 0xE4 } + - { offsetInCU: 0x4ABA, offset: 0x651C9, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE4, symBinAddr: 0xEDAC, symSize: 0xAC } + - { offsetInCU: 0x4B52, offset: 0x65261, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0xEE58, symSize: 0xA0 } + - { offsetInCU: 0x4B77, offset: 0x65286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x230, symBinAddr: 0xEEF8, symSize: 0x28 } + - { offsetInCU: 0x4B96, offset: 0x652A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x258, symBinAddr: 0xEF20, symSize: 0x4 } + - { offsetInCU: 0x4C84, offset: 0x65393, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x4EC, symBinAddr: 0xF1B4, symSize: 0x48 } + - { offsetInCU: 0x4CA3, offset: 0x653B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x534, symBinAddr: 0xF1FC, symSize: 0x58 } + - { offsetInCU: 0x4CD8, offset: 0x653E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x58C, symBinAddr: 0xF254, symSize: 0x70 } + - { offsetInCU: 0x4CFD, offset: 0x6540C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x5FC, symBinAddr: 0xF2C4, symSize: 0x6C } + - { offsetInCU: 0x4D1E, offset: 0x6542D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x688, symBinAddr: 0xF350, symSize: 0x44 } + - { offsetInCU: 0x4D43, offset: 0x65452, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvg', symObjAddr: 0x6CC, symBinAddr: 0xF394, symSize: 0x44 } + - { offsetInCU: 0x4D62, offset: 0x65471, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvs', symObjAddr: 0x710, symBinAddr: 0xF3D8, symSize: 0x48 } + - { offsetInCU: 0x4D97, offset: 0x654A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x758, symBinAddr: 0xF420, symSize: 0x44 } + - { offsetInCU: 0x4DBC, offset: 0x654CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x80C, symBinAddr: 0xF4D4, symSize: 0x44 } + - { offsetInCU: 0x4DE1, offset: 0x654F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x868, symBinAddr: 0xF530, symSize: 0x44 } + - { offsetInCU: 0x4E06, offset: 0x65515, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x96C, symBinAddr: 0xF634, symSize: 0x44 } + - { offsetInCU: 0x4E2B, offset: 0x6553A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvg', symObjAddr: 0x9B0, symBinAddr: 0xF678, symSize: 0x44 } + - { offsetInCU: 0x4E4A, offset: 0x65559, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvs', symObjAddr: 0x9F4, symBinAddr: 0xF6BC, symSize: 0x48 } + - { offsetInCU: 0x4E7B, offset: 0x6558A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0xA3C, symBinAddr: 0xF704, symSize: 0x44 } + - { offsetInCU: 0x4EA0, offset: 0x655AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvg', symObjAddr: 0xA80, symBinAddr: 0xF748, symSize: 0x50 } + - { offsetInCU: 0x4EBF, offset: 0x655CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0xADC, symBinAddr: 0xF7A4, symSize: 0x44 } + - { offsetInCU: 0x4EE4, offset: 0x655F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0xB20, symBinAddr: 0xF7E8, symSize: 0x4 } + - { offsetInCU: 0x4F38, offset: 0x65647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0xB24, symBinAddr: 0xF7EC, symSize: 0xC0 } + - { offsetInCU: 0x4FA7, offset: 0x656B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xBF0, symBinAddr: 0xF8B8, symSize: 0xF4 } + - { offsetInCU: 0x5019, offset: 0x65728, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCF0, symBinAddr: 0xF9B8, symSize: 0x44 } + - { offsetInCU: 0x5038, offset: 0x65747, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xD34, symBinAddr: 0xF9FC, symSize: 0x50 } + - { offsetInCU: 0x506D, offset: 0x6577C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD84, symBinAddr: 0xFA4C, symSize: 0x44 } + - { offsetInCU: 0x50FB, offset: 0x6580A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xEE0, symBinAddr: 0xFBA8, symSize: 0x250 } + - { offsetInCU: 0x5174, offset: 0x65883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x50E8, symBinAddr: 0x13DB0, symSize: 0x5C } + - { offsetInCU: 0x51B3, offset: 0x658C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0x1130, symBinAddr: 0xFDF8, symSize: 0x44 } + - { offsetInCU: 0x51E6, offset: 0x658F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1174, symBinAddr: 0xFE3C, symSize: 0x90 } + - { offsetInCU: 0x522E, offset: 0x6593D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1204, symBinAddr: 0xFECC, symSize: 0x48 } + - { offsetInCU: 0x5253, offset: 0x65962, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x124C, symBinAddr: 0xFF14, symSize: 0x80 } + - { offsetInCU: 0x52B5, offset: 0x659C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x12CC, symBinAddr: 0xFF94, symSize: 0x20 } + - { offsetInCU: 0x52D5, offset: 0x659E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x12CC, symBinAddr: 0xFF94, symSize: 0x20 } + - { offsetInCU: 0x5333, offset: 0x65A42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x12EC, symBinAddr: 0xFFB4, symSize: 0x20 } + - { offsetInCU: 0x5368, offset: 0x65A77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x12EC, symBinAddr: 0xFFB4, symSize: 0x20 } + - { offsetInCU: 0x53BE, offset: 0x65ACD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x130C, symBinAddr: 0xFFD4, symSize: 0x34 } + - { offsetInCU: 0x5421, offset: 0x65B30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1340, symBinAddr: 0x10008, symSize: 0x20 } + - { offsetInCU: 0x5445, offset: 0x65B54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1340, symBinAddr: 0x10008, symSize: 0x20 } + - { offsetInCU: 0x5459, offset: 0x65B68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1340, symBinAddr: 0x10008, symSize: 0x20 } + - { offsetInCU: 0x5480, offset: 0x65B8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1360, symBinAddr: 0x10028, symSize: 0x20 } + - { offsetInCU: 0x54A0, offset: 0x65BAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1360, symBinAddr: 0x10028, symSize: 0x20 } + - { offsetInCU: 0x54FE, offset: 0x65C0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1380, symBinAddr: 0x10048, symSize: 0x20 } + - { offsetInCU: 0x5532, offset: 0x65C41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1380, symBinAddr: 0x10048, symSize: 0x20 } + - { offsetInCU: 0x5587, offset: 0x65C96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x13A0, symBinAddr: 0x10068, symSize: 0x34 } + - { offsetInCU: 0x55EA, offset: 0x65CF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13D4, symBinAddr: 0x1009C, symSize: 0x20 } + - { offsetInCU: 0x560E, offset: 0x65D1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13D4, symBinAddr: 0x1009C, symSize: 0x20 } + - { offsetInCU: 0x5622, offset: 0x65D31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13D4, symBinAddr: 0x1009C, symSize: 0x20 } + - { offsetInCU: 0x5649, offset: 0x65D58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13F4, symBinAddr: 0x100BC, symSize: 0x20 } + - { offsetInCU: 0x5669, offset: 0x65D78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13F4, symBinAddr: 0x100BC, symSize: 0x20 } + - { offsetInCU: 0x56C2, offset: 0x65DD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x1414, symBinAddr: 0x100DC, symSize: 0x20 } + - { offsetInCU: 0x56F6, offset: 0x65E05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x1414, symBinAddr: 0x100DC, symSize: 0x20 } + - { offsetInCU: 0x574B, offset: 0x65E5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x1434, symBinAddr: 0x100FC, symSize: 0x34 } + - { offsetInCU: 0x57AE, offset: 0x65EBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1468, symBinAddr: 0x10130, symSize: 0x20 } + - { offsetInCU: 0x57D2, offset: 0x65EE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1468, symBinAddr: 0x10130, symSize: 0x20 } + - { offsetInCU: 0x57E6, offset: 0x65EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1468, symBinAddr: 0x10130, symSize: 0x20 } + - { offsetInCU: 0x57F9, offset: 0x65F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvg', symObjAddr: 0x1488, symBinAddr: 0x10150, symSize: 0x44 } + - { offsetInCU: 0x5818, offset: 0x65F27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvs', symObjAddr: 0x14CC, symBinAddr: 0x10194, symSize: 0x48 } + - { offsetInCU: 0x584D, offset: 0x65F5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x1514, symBinAddr: 0x101DC, symSize: 0x44 } + - { offsetInCU: 0x5872, offset: 0x65F81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvg', symObjAddr: 0x1558, symBinAddr: 0x10220, symSize: 0x44 } + - { offsetInCU: 0x5891, offset: 0x65FA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvs', symObjAddr: 0x159C, symBinAddr: 0x10264, symSize: 0x48 } + - { offsetInCU: 0x58C2, offset: 0x65FD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x15E4, symBinAddr: 0x102AC, symSize: 0x44 } + - { offsetInCU: 0x58E7, offset: 0x65FF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1628, symBinAddr: 0x102F0, symSize: 0x44 } + - { offsetInCU: 0x5906, offset: 0x66015, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x166C, symBinAddr: 0x10334, symSize: 0x48 } + - { offsetInCU: 0x593B, offset: 0x6604A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x16B4, symBinAddr: 0x1037C, symSize: 0x44 } + - { offsetInCU: 0x5960, offset: 0x6606F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x16F8, symBinAddr: 0x103C0, symSize: 0x44 } + - { offsetInCU: 0x597F, offset: 0x6608E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x173C, symBinAddr: 0x10404, symSize: 0x48 } + - { offsetInCU: 0x59B4, offset: 0x660C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1784, symBinAddr: 0x1044C, symSize: 0x44 } + - { offsetInCU: 0x59D9, offset: 0x660E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvg', symObjAddr: 0x17C8, symBinAddr: 0x10490, symSize: 0x50 } + - { offsetInCU: 0x59F8, offset: 0x66107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x1824, symBinAddr: 0x104EC, symSize: 0x44 } + - { offsetInCU: 0x5A1D, offset: 0x6612C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvg', symObjAddr: 0x1868, symBinAddr: 0x10530, symSize: 0x50 } + - { offsetInCU: 0x5A42, offset: 0x66151, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x1910, symBinAddr: 0x105D8, symSize: 0x44 } + - { offsetInCU: 0x5A86, offset: 0x66195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x1954, symBinAddr: 0x1061C, symSize: 0x78 } + - { offsetInCU: 0x5AF1, offset: 0x66200, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x19CC, symBinAddr: 0x10694, symSize: 0x7C } + - { offsetInCU: 0x5B69, offset: 0x66278, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1A48, symBinAddr: 0x10710, symSize: 0x90 } + - { offsetInCU: 0x5BC2, offset: 0x662D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x1AD8, symBinAddr: 0x107A0, symSize: 0x24 } + - { offsetInCU: 0x5BE3, offset: 0x662F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1AFC, symBinAddr: 0x107C4, symSize: 0x88 } + - { offsetInCU: 0x5C35, offset: 0x66344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x1B84, symBinAddr: 0x1084C, symSize: 0x7C } + - { offsetInCU: 0x5C96, offset: 0x663A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1C00, symBinAddr: 0x108C8, symSize: 0xA8 } + - { offsetInCU: 0x5CEA, offset: 0x663F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1CA8, symBinAddr: 0x10970, symSize: 0x80 } + - { offsetInCU: 0x5D49, offset: 0x66458, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1D28, symBinAddr: 0x109F0, symSize: 0xC8 } + - { offsetInCU: 0x5DCB, offset: 0x664DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1DF0, symBinAddr: 0x10AB8, symSize: 0xD4 } + - { offsetInCU: 0x5E51, offset: 0x66560, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1EC4, symBinAddr: 0x10B8C, symSize: 0xFC } + - { offsetInCU: 0x5EE8, offset: 0x665F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1FC0, symBinAddr: 0x10C88, symSize: 0x130 } + - { offsetInCU: 0x5F8F, offset: 0x6669E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x20F0, symBinAddr: 0x10DB8, symSize: 0xC0 } + - { offsetInCU: 0x6001, offset: 0x66710, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x227C, symBinAddr: 0x10F44, symSize: 0xF4 } + - { offsetInCU: 0x6076, offset: 0x66785, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2454, symBinAddr: 0x1111C, symSize: 0x48 } + - { offsetInCU: 0x6095, offset: 0x667A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x249C, symBinAddr: 0x11164, symSize: 0x50 } + - { offsetInCU: 0x60CC, offset: 0x667DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x24EC, symBinAddr: 0x111B4, symSize: 0x44 } + - { offsetInCU: 0x60F2, offset: 0x66801, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2564, symBinAddr: 0x1122C, symSize: 0x44 } + - { offsetInCU: 0x6118, offset: 0x66827, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x25DC, symBinAddr: 0x112A4, symSize: 0x44 } + - { offsetInCU: 0x613E, offset: 0x6684D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2654, symBinAddr: 0x1131C, symSize: 0x44 } + - { offsetInCU: 0x6164, offset: 0x66873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x26C8, symBinAddr: 0x11390, symSize: 0x44 } + - { offsetInCU: 0x618A, offset: 0x66899, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x2740, symBinAddr: 0x11408, symSize: 0x44 } + - { offsetInCU: 0x61B0, offset: 0x668BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x27B8, symBinAddr: 0x11480, symSize: 0x44 } + - { offsetInCU: 0x61D6, offset: 0x668E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x2830, symBinAddr: 0x114F8, symSize: 0x44 } + - { offsetInCU: 0x61FC, offset: 0x6690B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x28A8, symBinAddr: 0x11570, symSize: 0x44 } + - { offsetInCU: 0x6222, offset: 0x66931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2920, symBinAddr: 0x115E8, symSize: 0x44 } + - { offsetInCU: 0x6248, offset: 0x66957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x2998, symBinAddr: 0x11660, symSize: 0x44 } + - { offsetInCU: 0x626E, offset: 0x6697D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x2A0C, symBinAddr: 0x116D4, symSize: 0x44 } + - { offsetInCU: 0x6294, offset: 0x669A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2A80, symBinAddr: 0x11748, symSize: 0x44 } + - { offsetInCU: 0x62BA, offset: 0x669C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x2AF8, symBinAddr: 0x117C0, symSize: 0x44 } + - { offsetInCU: 0x62E0, offset: 0x669EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2B6C, symBinAddr: 0x11834, symSize: 0x44 } + - { offsetInCU: 0x6306, offset: 0x66A15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2C90, symBinAddr: 0x11958, symSize: 0x44 } + - { offsetInCU: 0x6332, offset: 0x66A41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2CD4, symBinAddr: 0x1199C, symSize: 0x70 } + - { offsetInCU: 0x63E4, offset: 0x66AF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2D44, symBinAddr: 0x11A0C, symSize: 0x7BC } + - { offsetInCU: 0x66DA, offset: 0x66DE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x3500, symBinAddr: 0x121C8, symSize: 0x178 } + - { offsetInCU: 0x681E, offset: 0x66F2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3924, symBinAddr: 0x125EC, symSize: 0x390 } + - { offsetInCU: 0x69E1, offset: 0x670F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3CB4, symBinAddr: 0x1297C, symSize: 0x8 } + - { offsetInCU: 0x6AD9, offset: 0x671E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3CBC, symBinAddr: 0x12984, symSize: 0x66C } + - { offsetInCU: 0x6DBF, offset: 0x674CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4328, symBinAddr: 0x12FF0, symSize: 0xC0 } + - { offsetInCU: 0x6EA2, offset: 0x675B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x43E8, symBinAddr: 0x130B0, symSize: 0xC4 } + - { offsetInCU: 0x6F4D, offset: 0x6765C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x44AC, symBinAddr: 0x13174, symSize: 0x4 } + - { offsetInCU: 0x6F8F, offset: 0x6769E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x44B0, symBinAddr: 0x13178, symSize: 0x100 } + - { offsetInCU: 0x7075, offset: 0x67784, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x45B0, symBinAddr: 0x13278, symSize: 0x100 } + - { offsetInCU: 0x70F1, offset: 0x67800, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x46B0, symBinAddr: 0x13378, symSize: 0xB0 } + - { offsetInCU: 0x7192, offset: 0x678A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4760, symBinAddr: 0x13428, symSize: 0xC4 } + - { offsetInCU: 0x7287, offset: 0x67996, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4824, symBinAddr: 0x134EC, symSize: 0x8 } + - { offsetInCU: 0x729B, offset: 0x679AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x482C, symBinAddr: 0x134F4, symSize: 0x6C } + - { offsetInCU: 0x7308, offset: 0x67A17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x4898, symBinAddr: 0x13560, symSize: 0xC4 } + - { offsetInCU: 0x747D, offset: 0x67B8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x495C, symBinAddr: 0x13624, symSize: 0x124 } + - { offsetInCU: 0x7602, offset: 0x67D11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4A80, symBinAddr: 0x13748, symSize: 0xF4 } + - { offsetInCU: 0x7782, offset: 0x67E91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4B74, symBinAddr: 0x1383C, symSize: 0x114 } + - { offsetInCU: 0x7A0F, offset: 0x6811E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4C88, symBinAddr: 0x13950, symSize: 0x1BC } + - { offsetInCU: 0x7C0A, offset: 0x68319, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4E44, symBinAddr: 0x13B0C, symSize: 0xD4 } + - { offsetInCU: 0x7D2E, offset: 0x6843D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x4F18, symBinAddr: 0x13BE0, symSize: 0x10C } + - { offsetInCU: 0x7DEC, offset: 0x684FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x5024, symBinAddr: 0x13CEC, symSize: 0x20 } + - { offsetInCU: 0x7E00, offset: 0x6850F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x5044, symBinAddr: 0x13D0C, symSize: 0x2C } + - { offsetInCU: 0x7E60, offset: 0x6856F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5144, symBinAddr: 0x13E0C, symSize: 0x4 } + - { offsetInCU: 0x7EB0, offset: 0x685BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5148, symBinAddr: 0x13E10, symSize: 0x1EC } + - { offsetInCU: 0x7FA5, offset: 0x686B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5334, symBinAddr: 0x13FFC, symSize: 0x1AC } + - { offsetInCU: 0x8080, offset: 0x6878F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x54E0, symBinAddr: 0x141A8, symSize: 0xC4 } + - { offsetInCU: 0x80FB, offset: 0x6880A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x55A4, symBinAddr: 0x1426C, symSize: 0x4 } + - { offsetInCU: 0x81DC, offset: 0x688EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x55A8, symBinAddr: 0x14270, symSize: 0x258 } + - { offsetInCU: 0x860D, offset: 0x68D1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x5800, symBinAddr: 0x144C8, symSize: 0x390 } + - { offsetInCU: 0x8834, offset: 0x68F43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5B90, symBinAddr: 0x14858, symSize: 0xB0 } + - { offsetInCU: 0x89B3, offset: 0x690C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6174, symBinAddr: 0x14D90, symSize: 0x1B8 } + - { offsetInCU: 0x8A15, offset: 0x69124, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x632C, symBinAddr: 0x14F48, symSize: 0xC4 } + - { offsetInCU: 0x8A84, offset: 0x69193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x63F0, symBinAddr: 0x1500C, symSize: 0x108 } + - { offsetInCU: 0x8B25, offset: 0x69234, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x6560, symBinAddr: 0x1517C, symSize: 0x1DC } + - { offsetInCU: 0x8D74, offset: 0x69483, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x8AB0, symBinAddr: 0x17660, symSize: 0x6BC } + - { offsetInCU: 0x9347, offset: 0x69A56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x916C, symBinAddr: 0x17D1C, symSize: 0x3F8 } + - { offsetInCU: 0x968D, offset: 0x69D9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x97BC, symBinAddr: 0x1836C, symSize: 0x19C } + - { offsetInCU: 0x97FB, offset: 0x69F0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9958, symBinAddr: 0x18508, symSize: 0x270 } + - { offsetInCU: 0x9ADD, offset: 0x6A1EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0x9BC8, symBinAddr: 0x18778, symSize: 0x9C4 } + - { offsetInCU: 0xA17F, offset: 0x6A88E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA58C, symBinAddr: 0x1913C, symSize: 0x6F8 } + - { offsetInCU: 0xA696, offset: 0x6ADA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAC84, symBinAddr: 0x19834, symSize: 0x140 } + - { offsetInCU: 0xA7EB, offset: 0x6AEFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xADC4, symBinAddr: 0x19974, symSize: 0x698 } + - { offsetInCU: 0xAC90, offset: 0x6B39F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xB6E8, symBinAddr: 0x1A254, symSize: 0x29C } + - { offsetInCU: 0x4DE, offset: 0x6BAE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x1928, symBinAddr: 0x1C2BC, symSize: 0x2C } + - { offsetInCU: 0x7ED, offset: 0x6BDF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1984, symBinAddr: 0x1C318, symSize: 0x84 } + - { offsetInCU: 0x81C, offset: 0x6BE22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x1A08, symBinAddr: 0x1C39C, symSize: 0x58 } + - { offsetInCU: 0x99D, offset: 0x6BFA3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfC9CocoaMQTT5Frame_p_Tgm5', symObjAddr: 0x1E88, symBinAddr: 0x1C81C, symSize: 0x88 } + - { offsetInCU: 0xA87, offset: 0x6C08D, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x20C4, symBinAddr: 0x1CA58, symSize: 0xCC } + - { offsetInCU: 0xBE1, offset: 0x6C1E7, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0x2190, symBinAddr: 0x1CB24, symSize: 0x6C } + - { offsetInCU: 0xCA1, offset: 0x6C2A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x24E8, symBinAddr: 0x1CE3C, symSize: 0x20 } + - { offsetInCU: 0xD32, offset: 0x6C338, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x2760, symBinAddr: 0x1D070, symSize: 0x8 } + - { offsetInCU: 0xD78, offset: 0x6C37E, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTgm5', symObjAddr: 0x0, symBinAddr: 0x1A994, symSize: 0xDC } + - { offsetInCU: 0xFFA, offset: 0x6C600, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x21FC, symBinAddr: 0x1CB90, symSize: 0x2AC } + - { offsetInCU: 0x12CB, offset: 0x6C8D1, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS_SD6ValuesVyS2S_GTgm5Tf4g_n', symObjAddr: 0x2508, symBinAddr: 0x1CE5C, symSize: 0xE0 } + - { offsetInCU: 0x139D, offset: 0x6C9A3, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTgm5Tf4g_n', symObjAddr: 0x25E8, symBinAddr: 0x1CF3C, symSize: 0x124 } + - { offsetInCU: 0x1578, offset: 0x6CB7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0xDC, symBinAddr: 0x1AA70, symSize: 0x70 } + - { offsetInCU: 0x158C, offset: 0x6CB92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x14C, symBinAddr: 0x1AAE0, symSize: 0x60 } + - { offsetInCU: 0x15A0, offset: 0x6CBA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x1AC, symBinAddr: 0x1AB40, symSize: 0x44 } + - { offsetInCU: 0x15C5, offset: 0x6CBCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x1F0, symBinAddr: 0x1AB84, symSize: 0x48 } + - { offsetInCU: 0x15FA, offset: 0x6CC00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x238, symBinAddr: 0x1ABCC, symSize: 0x44 } + - { offsetInCU: 0x161F, offset: 0x6CC25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x27C, symBinAddr: 0x1AC10, symSize: 0x54 } + - { offsetInCU: 0x163E, offset: 0x6CC44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x2D0, symBinAddr: 0x1AC64, symSize: 0x5C } + - { offsetInCU: 0x1673, offset: 0x6CC79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x32C, symBinAddr: 0x1ACC0, symSize: 0x44 } + - { offsetInCU: 0x1698, offset: 0x6CC9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x370, symBinAddr: 0x1AD04, symSize: 0x48 } + - { offsetInCU: 0x16B7, offset: 0x6CCBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x3B8, symBinAddr: 0x1AD4C, symSize: 0x50 } + - { offsetInCU: 0x16EC, offset: 0x6CCF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x408, symBinAddr: 0x1AD9C, symSize: 0x44 } + - { offsetInCU: 0x1711, offset: 0x6CD17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvg', symObjAddr: 0x44C, symBinAddr: 0x1ADE0, symSize: 0x44 } + - { offsetInCU: 0x1736, offset: 0x6CD3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvs', symObjAddr: 0x490, symBinAddr: 0x1AE24, symSize: 0x48 } + - { offsetInCU: 0x1767, offset: 0x6CD6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x4D8, symBinAddr: 0x1AE6C, symSize: 0x44 } + - { offsetInCU: 0x178C, offset: 0x6CD92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvg', symObjAddr: 0x51C, symBinAddr: 0x1AEB0, symSize: 0x44 } + - { offsetInCU: 0x17B1, offset: 0x6CDB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvs', symObjAddr: 0x560, symBinAddr: 0x1AEF4, symSize: 0x48 } + - { offsetInCU: 0x17E2, offset: 0x6CDE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x5A8, symBinAddr: 0x1AF3C, symSize: 0x44 } + - { offsetInCU: 0x1807, offset: 0x6CE0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x5EC, symBinAddr: 0x1AF80, symSize: 0x4 } + - { offsetInCU: 0x1828, offset: 0x6CE2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvg', symObjAddr: 0x5F0, symBinAddr: 0x1AF84, symSize: 0x44 } + - { offsetInCU: 0x1847, offset: 0x6CE4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvs', symObjAddr: 0x634, symBinAddr: 0x1AFC8, symSize: 0x48 } + - { offsetInCU: 0x1878, offset: 0x6CE7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x67C, symBinAddr: 0x1B010, symSize: 0x44 } + - { offsetInCU: 0x189D, offset: 0x6CEA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x6D8, symBinAddr: 0x1B06C, symSize: 0x44 } + - { offsetInCU: 0x18C2, offset: 0x6CEC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x7D0, symBinAddr: 0x1B164, symSize: 0x44 } + - { offsetInCU: 0x18E7, offset: 0x6CEED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x1B1C0, symSize: 0x44 } + - { offsetInCU: 0x190C, offset: 0x6CF12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x930, symBinAddr: 0x1B2C4, symSize: 0x44 } + - { offsetInCU: 0x1931, offset: 0x6CF37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x98C, symBinAddr: 0x1B320, symSize: 0x44 } + - { offsetInCU: 0x1956, offset: 0x6CF5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0xA78, symBinAddr: 0x1B40C, symSize: 0x44 } + - { offsetInCU: 0x19D9, offset: 0x6CFDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0xABC, symBinAddr: 0x1B450, symSize: 0x110 } + - { offsetInCU: 0x1C13, offset: 0x6D219, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xBCC, symBinAddr: 0x1B560, symSize: 0x704 } + - { offsetInCU: 0x27F2, offset: 0x6DDF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x12D0, symBinAddr: 0x1BC64, symSize: 0x178 } + - { offsetInCU: 0x2892, offset: 0x6DE98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1448, symBinAddr: 0x1BDDC, symSize: 0x13C } + - { offsetInCU: 0x28F3, offset: 0x6DEF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x1584, symBinAddr: 0x1BF18, symSize: 0x70 } + - { offsetInCU: 0x2907, offset: 0x6DF0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x15F4, symBinAddr: 0x1BF88, symSize: 0x2E8 } + - { offsetInCU: 0x2998, offset: 0x6DF9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x18DC, symBinAddr: 0x1C270, symSize: 0x20 } + - { offsetInCU: 0x29AC, offset: 0x6DFB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x18FC, symBinAddr: 0x1C290, symSize: 0x2C } + - { offsetInCU: 0x2A05, offset: 0x6E00B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x1954, symBinAddr: 0x1C2E8, symSize: 0x30 } + - { offsetInCU: 0x2AA6, offset: 0x6E0AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1A60, symBinAddr: 0x1C3F4, symSize: 0x218 } + - { offsetInCU: 0x2CB3, offset: 0x6E2B9, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1C78, symBinAddr: 0x1C60C, symSize: 0xD0 } + - { offsetInCU: 0x2EC4, offset: 0x6E4CA, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1D48, symBinAddr: 0x1C6DC, symSize: 0x128 } + - { offsetInCU: 0x20B, offset: 0x6E94A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xD64, symBinAddr: 0x1DE08, symSize: 0x6C8 } + - { offsetInCU: 0x5F2, offset: 0x6ED31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x142C, symBinAddr: 0x1E4D0, symSize: 0xB8 } + - { offsetInCU: 0x6B0, offset: 0x6EDEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x1748, symBinAddr: 0x1E7EC, symSize: 0x20 } + - { offsetInCU: 0x8B6, offset: 0x6EFF5, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x668, symBinAddr: 0x1D70C, symSize: 0x20 } + - { offsetInCU: 0x8CA, offset: 0x6F009, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x688, symBinAddr: 0x1D72C, symSize: 0x20 } + - { offsetInCU: 0xA79, offset: 0x6F1B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x1798, symBinAddr: 0x1E83C, symSize: 0x78 } + - { offsetInCU: 0xAA8, offset: 0x6F1E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x1810, symBinAddr: 0x1E8B4, symSize: 0x20 } + - { offsetInCU: 0xABC, offset: 0x6F1FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x1830, symBinAddr: 0x1E8D4, symSize: 0x30 } + - { offsetInCU: 0xAD0, offset: 0x6F20F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1860, symBinAddr: 0x1E904, symSize: 0x4 } + - { offsetInCU: 0xAE4, offset: 0x6F223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1884, symBinAddr: 0x1E908, symSize: 0x40 } + - { offsetInCU: 0xAF8, offset: 0x6F237, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x18C4, symBinAddr: 0x1E948, symSize: 0x30 } + - { offsetInCU: 0xB0C, offset: 0x6F24B, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x18F4, symBinAddr: 0x1E978, symSize: 0x168 } + - { offsetInCU: 0xB20, offset: 0x6F25F, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1A5C, symBinAddr: 0x1EAE0, symSize: 0x14 } + - { offsetInCU: 0xB34, offset: 0x6F273, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1A70, symBinAddr: 0x1EAF4, symSize: 0x40 } + - { offsetInCU: 0xB48, offset: 0x6F287, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1AB0, symBinAddr: 0x1EB34, symSize: 0x48 } + - { offsetInCU: 0xB5C, offset: 0x6F29B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1AF8, symBinAddr: 0x1EB7C, symSize: 0x4C } + - { offsetInCU: 0xB70, offset: 0x6F2AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1B44, symBinAddr: 0x1EBC8, symSize: 0x10 } + - { offsetInCU: 0xDA5, offset: 0x6F4E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x24EC, symBinAddr: 0x1F570, symSize: 0x840 } + - { offsetInCU: 0x12CA, offset: 0x6FA09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2D60, symBinAddr: 0x1FDE4, symSize: 0xC } + - { offsetInCU: 0x12E9, offset: 0x6FA28, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x2D7C, symBinAddr: 0x1FE00, symSize: 0x20 } + - { offsetInCU: 0x1312, offset: 0x6FA51, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2D9C, symBinAddr: 0x1FE20, symSize: 0x10 } + - { offsetInCU: 0x1326, offset: 0x6FA65, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2DAC, symBinAddr: 0x1FE30, symSize: 0x8 } + - { offsetInCU: 0x133A, offset: 0x6FA79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x2DD8, symBinAddr: 0x1FE5C, symSize: 0x18 } + - { offsetInCU: 0x138E, offset: 0x6FACD, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x2EBC, symBinAddr: 0x1FEDC, symSize: 0x78 } + - { offsetInCU: 0x1408, offset: 0x6FB47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x2F34, symBinAddr: 0x1FF54, symSize: 0x5A0 } + - { offsetInCU: 0x15E7, offset: 0x6FD26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x34D4, symBinAddr: 0x204F4, symSize: 0x56C } + - { offsetInCU: 0x17A9, offset: 0x6FEE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3A40, symBinAddr: 0x20A60, symSize: 0x44 } + - { offsetInCU: 0x17BD, offset: 0x6FEFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0x3A84, symBinAddr: 0x20AA4, symSize: 0x18 } + - { offsetInCU: 0x17D1, offset: 0x6FF10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3A9C, symBinAddr: 0x20ABC, symSize: 0x8 } + - { offsetInCU: 0x17E5, offset: 0x6FF24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3AC8, symBinAddr: 0x20AE8, symSize: 0x20 } + - { offsetInCU: 0x181E, offset: 0x6FF5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3AE8, symBinAddr: 0x20B08, symSize: 0x48 } + - { offsetInCU: 0x1847, offset: 0x6FF86, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3B30, symBinAddr: 0x20B50, symSize: 0x48 } + - { offsetInCU: 0x1862, offset: 0x6FFA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3B78, symBinAddr: 0x20B98, symSize: 0x24 } + - { offsetInCU: 0x1892, offset: 0x6FFD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3BC4, symBinAddr: 0x20BBC, symSize: 0x38 } + - { offsetInCU: 0x18BB, offset: 0x6FFFA, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3BFC, symBinAddr: 0x20BF4, symSize: 0x3C } + - { offsetInCU: 0x18CF, offset: 0x7000E, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3C40, symBinAddr: 0x20C38, symSize: 0x3C } + - { offsetInCU: 0x18E3, offset: 0x70022, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3D08, symBinAddr: 0x20D00, symSize: 0x24 } + - { offsetInCU: 0x18F7, offset: 0x70036, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3D2C, symBinAddr: 0x20D24, symSize: 0x1A4 } + - { offsetInCU: 0x1AFF, offset: 0x7023E, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x3ED0, symBinAddr: 0x20EC8, symSize: 0x40 } + - { offsetInCU: 0x1B13, offset: 0x70252, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x3F90, symBinAddr: 0x20F88, symSize: 0x44 } + - { offsetInCU: 0x1B27, offset: 0x70266, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x40B4, symBinAddr: 0x210AC, symSize: 0xC } + - { offsetInCU: 0x1B3B, offset: 0x7027A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x413C, symBinAddr: 0x210C8, symSize: 0x18 } + - { offsetInCU: 0x1FA2, offset: 0x706E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1D0A4, symSize: 0x338 } + - { offsetInCU: 0x207E, offset: 0x707BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x338, symBinAddr: 0x1D3DC, symSize: 0x330 } + - { offsetInCU: 0x2552, offset: 0x70C91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x6A8, symBinAddr: 0x1D74C, symSize: 0xA4 } + - { offsetInCU: 0x26F8, offset: 0x70E37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x74C, symBinAddr: 0x1D7F0, symSize: 0x48C } + - { offsetInCU: 0x28ED, offset: 0x7102C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xBD8, symBinAddr: 0x1DC7C, symSize: 0x138 } + - { offsetInCU: 0x2BB6, offset: 0x712F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x14E4, symBinAddr: 0x1E588, symSize: 0x264 } + - { offsetInCU: 0x2BFD, offset: 0x7133C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1768, symBinAddr: 0x1E80C, symSize: 0x30 } + - { offsetInCU: 0x2C3C, offset: 0x7137B, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1B54, symBinAddr: 0x1EBD8, symSize: 0xA0 } + - { offsetInCU: 0x2DA9, offset: 0x714E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1BF4, symBinAddr: 0x1EC78, symSize: 0x264 } + - { offsetInCU: 0x2FA9, offset: 0x716E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x1E58, symBinAddr: 0x1EEDC, symSize: 0x224 } + - { offsetInCU: 0x30AE, offset: 0x717ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x207C, symBinAddr: 0x1F100, symSize: 0x470 } + - { offsetInCU: 0x3498, offset: 0x71BD7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x2E94, symBinAddr: 0x1FEB4, symSize: 0x14 } + - { offsetInCU: 0x34C8, offset: 0x71C07, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x2EA8, symBinAddr: 0x1FEC8, symSize: 0x14 } + - { offsetInCU: 0x27, offset: 0x71CDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x21114, symSize: 0x40 } + - { offsetInCU: 0x4B, offset: 0x71CFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x48B0, symBinAddr: 0x65F08, symSize: 0x0 } + - { offsetInCU: 0xF3, offset: 0x71DA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x318, symBinAddr: 0x2142C, symSize: 0x4C } + - { offsetInCU: 0x17D, offset: 0x71E31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x21114, symSize: 0x40 } + - { offsetInCU: 0x1CA, offset: 0x71E7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x10C, symBinAddr: 0x21220, symSize: 0x28 } + - { offsetInCU: 0x1FB, offset: 0x71EAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x134, symBinAddr: 0x21248, symSize: 0xC } + - { offsetInCU: 0x217, offset: 0x71ECB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x4E0, symBinAddr: 0x215F4, symSize: 0x10 } + - { offsetInCU: 0x26E, offset: 0x71F22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x140, symBinAddr: 0x21254, symSize: 0x2C } + - { offsetInCU: 0x334, offset: 0x71FE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x4DC, symBinAddr: 0x215F0, symSize: 0x4 } + - { offsetInCU: 0x35F, offset: 0x72013, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x4F0, symBinAddr: 0x21604, symSize: 0x20 } + - { offsetInCU: 0x373, offset: 0x72027, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x550, symBinAddr: 0x21624, symSize: 0x4 } + - { offsetInCU: 0x387, offset: 0x7203B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x554, symBinAddr: 0x21628, symSize: 0x44 } + - { offsetInCU: 0x39B, offset: 0x7204F, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x598, symBinAddr: 0x2166C, symSize: 0xC } + - { offsetInCU: 0x3AF, offset: 0x72063, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x5A4, symBinAddr: 0x21678, symSize: 0x4 } + - { offsetInCU: 0x3C3, offset: 0x72077, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x5A8, symBinAddr: 0x2167C, symSize: 0x90 } + - { offsetInCU: 0x3D7, offset: 0x7208B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x638, symBinAddr: 0x2170C, symSize: 0xBC } + - { offsetInCU: 0x3EB, offset: 0x7209F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6F4, symBinAddr: 0x217C8, symSize: 0x8 } + - { offsetInCU: 0x3FF, offset: 0x720B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6FC, symBinAddr: 0x217D0, symSize: 0x4 } + - { offsetInCU: 0x413, offset: 0x720C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x700, symBinAddr: 0x217D4, symSize: 0x8 } + - { offsetInCU: 0x427, offset: 0x720DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x708, symBinAddr: 0x217DC, symSize: 0x10 } + - { offsetInCU: 0x464, offset: 0x72118, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x4C, symBinAddr: 0x21160, symSize: 0x14 } + - { offsetInCU: 0x514, offset: 0x721C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x60, symBinAddr: 0x21174, symSize: 0x44 } + - { offsetInCU: 0x5C3, offset: 0x72277, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA4, symBinAddr: 0x211B8, symSize: 0x28 } + - { offsetInCU: 0x616, offset: 0x722CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xCC, symBinAddr: 0x211E0, symSize: 0x40 } + - { offsetInCU: 0x7A4, offset: 0x72458, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x40, symBinAddr: 0x21154, symSize: 0x4 } + - { offsetInCU: 0x7B8, offset: 0x7246C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x44, symBinAddr: 0x21158, symSize: 0x8 } + - { offsetInCU: 0x817, offset: 0x724CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x16C, symBinAddr: 0x21280, symSize: 0x20 } + - { offsetInCU: 0x831, offset: 0x724E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x18C, symBinAddr: 0x212A0, symSize: 0x68 } + - { offsetInCU: 0x85E, offset: 0x72512, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1F4, symBinAddr: 0x21308, symSize: 0x74 } + - { offsetInCU: 0x89B, offset: 0x7254F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x268, symBinAddr: 0x2137C, symSize: 0x6C } + - { offsetInCU: 0x8C8, offset: 0x7257C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2D4, symBinAddr: 0x213E8, symSize: 0x4 } + - { offsetInCU: 0x8E9, offset: 0x7259D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2D8, symBinAddr: 0x213EC, symSize: 0x40 } + - { offsetInCU: 0x985, offset: 0x72639, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x364, symBinAddr: 0x21478, symSize: 0x148 } + - { offsetInCU: 0xB0E, offset: 0x727C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x4AC, symBinAddr: 0x215C0, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x72820, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x217EC, symSize: 0x120 } + - { offsetInCU: 0x2AE, offset: 0x72AA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0x980, symBinAddr: 0x2216C, symSize: 0x2C } + - { offsetInCU: 0x3BD, offset: 0x72BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0x9DC, symBinAddr: 0x221C8, symSize: 0x3C } + - { offsetInCU: 0x3EC, offset: 0x72BE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xA18, symBinAddr: 0x22204, symSize: 0x58 } + - { offsetInCU: 0x473, offset: 0x72C6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xC88, symBinAddr: 0x22474, symSize: 0x20 } + - { offsetInCU: 0x6C5, offset: 0x72EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x217EC, symSize: 0x120 } + - { offsetInCU: 0x78C, offset: 0x72F85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x120, symBinAddr: 0x2190C, symSize: 0xF0 } + - { offsetInCU: 0x7D1, offset: 0x72FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x210, symBinAddr: 0x219FC, symSize: 0x44 } + - { offsetInCU: 0x7F6, offset: 0x72FEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x254, symBinAddr: 0x21A40, symSize: 0x48 } + - { offsetInCU: 0x82B, offset: 0x73024, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x29C, symBinAddr: 0x21A88, symSize: 0x44 } + - { offsetInCU: 0x850, offset: 0x73049, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x2E0, symBinAddr: 0x21ACC, symSize: 0x54 } + - { offsetInCU: 0x86F, offset: 0x73068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x334, symBinAddr: 0x21B20, symSize: 0x5C } + - { offsetInCU: 0x8A4, offset: 0x7309D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x390, symBinAddr: 0x21B7C, symSize: 0x44 } + - { offsetInCU: 0x8C9, offset: 0x730C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x3D4, symBinAddr: 0x21BC0, symSize: 0x48 } + - { offsetInCU: 0x8E8, offset: 0x730E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x41C, symBinAddr: 0x21C08, symSize: 0x50 } + - { offsetInCU: 0x91D, offset: 0x73116, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x46C, symBinAddr: 0x21C58, symSize: 0x44 } + - { offsetInCU: 0x942, offset: 0x7313B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvg', symObjAddr: 0x4B0, symBinAddr: 0x21C9C, symSize: 0x44 } + - { offsetInCU: 0x967, offset: 0x73160, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvs', symObjAddr: 0x4F4, symBinAddr: 0x21CE0, symSize: 0x48 } + - { offsetInCU: 0x998, offset: 0x73191, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x53C, symBinAddr: 0x21D28, symSize: 0x44 } + - { offsetInCU: 0x9BD, offset: 0x731B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvg', symObjAddr: 0x580, symBinAddr: 0x21D6C, symSize: 0x44 } + - { offsetInCU: 0x9E2, offset: 0x731DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvs', symObjAddr: 0x5C4, symBinAddr: 0x21DB0, symSize: 0x48 } + - { offsetInCU: 0xA13, offset: 0x7320C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x60C, symBinAddr: 0x21DF8, symSize: 0x44 } + - { offsetInCU: 0xA38, offset: 0x73231, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x650, symBinAddr: 0x21E3C, symSize: 0x4 } + - { offsetInCU: 0xAB2, offset: 0x732AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x654, symBinAddr: 0x21E40, symSize: 0x110 } + - { offsetInCU: 0xBB4, offset: 0x733AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x764, symBinAddr: 0x21F50, symSize: 0x104 } + - { offsetInCU: 0xC36, offset: 0x7342F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x868, symBinAddr: 0x22054, symSize: 0xCC } + - { offsetInCU: 0xC79, offset: 0x73472, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x934, symBinAddr: 0x22120, symSize: 0x20 } + - { offsetInCU: 0xC8D, offset: 0x73486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x954, symBinAddr: 0x22140, symSize: 0x2C } + - { offsetInCU: 0xCE6, offset: 0x734DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0x9AC, symBinAddr: 0x22198, symSize: 0x30 } + - { offsetInCU: 0xD82, offset: 0x7357B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xA70, symBinAddr: 0x2225C, symSize: 0x218 } + - { offsetInCU: 0x27, offset: 0x73786, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x224A4, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x737E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x104, symBinAddr: 0x225A8, symSize: 0x28 } + - { offsetInCU: 0xB8, offset: 0x73817, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x12C, symBinAddr: 0x225D0, symSize: 0x18 } + - { offsetInCU: 0xE1, offset: 0x73840, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x764, symBinAddr: 0x22C08, symSize: 0x2C } + - { offsetInCU: 0x180, offset: 0x738DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x248, symBinAddr: 0x226EC, symSize: 0x28 } + - { offsetInCU: 0x1B1, offset: 0x73910, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x22714, symSize: 0x18 } + - { offsetInCU: 0x1DA, offset: 0x73939, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x790, symBinAddr: 0x22C34, symSize: 0x58 } + - { offsetInCU: 0x305, offset: 0x73A64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x288, symBinAddr: 0x2272C, symSize: 0x220 } + - { offsetInCU: 0x5E2, offset: 0x73D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x4B8, symBinAddr: 0x2295C, symSize: 0x120 } + - { offsetInCU: 0x86A, offset: 0x73FC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x5D8, symBinAddr: 0x22A7C, symSize: 0xC0 } + - { offsetInCU: 0x9B2, offset: 0x74111, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x698, symBinAddr: 0x22B3C, symSize: 0xCC } + - { offsetInCU: 0xADF, offset: 0x7423E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x7E8, symBinAddr: 0x22C8C, symSize: 0x4 } + - { offsetInCU: 0xAF3, offset: 0x74252, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x7EC, symBinAddr: 0x22C90, symSize: 0x44 } + - { offsetInCU: 0xB07, offset: 0x74266, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x830, symBinAddr: 0x22CD4, symSize: 0x4 } + - { offsetInCU: 0xB1B, offset: 0x7427A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x834, symBinAddr: 0x22CD8, symSize: 0x44 } + - { offsetInCU: 0xB2F, offset: 0x7428E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x888, symBinAddr: 0x22D1C, symSize: 0x90 } + - { offsetInCU: 0xB43, offset: 0x742A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x918, symBinAddr: 0x22DAC, symSize: 0xBC } + - { offsetInCU: 0xB57, offset: 0x742B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0x9D4, symBinAddr: 0x22E68, symSize: 0x8 } + - { offsetInCU: 0xB6B, offset: 0x742CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0x9DC, symBinAddr: 0x22E70, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x742DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0x9E0, symBinAddr: 0x22E74, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x742F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0x9E8, symBinAddr: 0x22E7C, symSize: 0x10 } + - { offsetInCU: 0xBA7, offset: 0x74306, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0x9F8, symBinAddr: 0x22E8C, symSize: 0x90 } + - { offsetInCU: 0xBBB, offset: 0x7431A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xA88, symBinAddr: 0x22F1C, symSize: 0xBC } + - { offsetInCU: 0xBCF, offset: 0x7432E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xB44, symBinAddr: 0x22FD8, symSize: 0x4 } + - { offsetInCU: 0xBE3, offset: 0x74342, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xB48, symBinAddr: 0x22FDC, symSize: 0x10 } + - { offsetInCU: 0xBF7, offset: 0x74356, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xB98, symBinAddr: 0x22FEC, symSize: 0x48 } + - { offsetInCU: 0xC0B, offset: 0x7436A, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGMa', symObjAddr: 0xBE0, symBinAddr: 0x23034, symSize: 0x54 } + - { offsetInCU: 0xC48, offset: 0x743A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x18, symBinAddr: 0x224BC, symSize: 0x24 } + - { offsetInCU: 0xD42, offset: 0x744A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x3C, symBinAddr: 0x224E0, symSize: 0x4C } + - { offsetInCU: 0xE1A, offset: 0x74579, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x2252C, symSize: 0x34 } + - { offsetInCU: 0xE96, offset: 0x745F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBC, symBinAddr: 0x22560, symSize: 0x48 } + - { offsetInCU: 0xF51, offset: 0x746B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C, symBinAddr: 0x22600, symSize: 0x24 } + - { offsetInCU: 0x1045, offset: 0x747A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x180, symBinAddr: 0x22624, symSize: 0x4C } + - { offsetInCU: 0x111D, offset: 0x7487C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CC, symBinAddr: 0x22670, symSize: 0x34 } + - { offsetInCU: 0x1199, offset: 0x748F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x226A4, symSize: 0x48 } + - { offsetInCU: 0x13B7, offset: 0x74B16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x224A4, symSize: 0x14 } + - { offsetInCU: 0x13DC, offset: 0x74B3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x14, symBinAddr: 0x224B8, symSize: 0x4 } + - { offsetInCU: 0x1436, offset: 0x74B95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x144, symBinAddr: 0x225E8, symSize: 0x4 } + - { offsetInCU: 0x144A, offset: 0x74BA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x148, symBinAddr: 0x225EC, symSize: 0x14 } + - { offsetInCU: 0x3C4, offset: 0x75073, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1064, symBinAddr: 0x240F4, symSize: 0x20 } + - { offsetInCU: 0x3D8, offset: 0x75087, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1084, symBinAddr: 0x24114, symSize: 0x44 } + - { offsetInCU: 0x3EC, offset: 0x7509B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x114C, symBinAddr: 0x24158, symSize: 0x34 } + - { offsetInCU: 0x400, offset: 0x750AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x1180, symBinAddr: 0x2418C, symSize: 0x50 } + - { offsetInCU: 0x414, offset: 0x750C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x11D0, symBinAddr: 0x241DC, symSize: 0x34 } + - { offsetInCU: 0x428, offset: 0x750D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x1204, symBinAddr: 0x24210, symSize: 0x5C } + - { offsetInCU: 0x43C, offset: 0x750EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x1314, symBinAddr: 0x24320, symSize: 0x50 } + - { offsetInCU: 0x450, offset: 0x750FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1364, symBinAddr: 0x24370, symSize: 0x80 } + - { offsetInCU: 0x464, offset: 0x75113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x13E4, symBinAddr: 0x243F0, symSize: 0x24 } + - { offsetInCU: 0x4E0, offset: 0x7518F, size: 0x8, addend: 0x0, symName: '_$sSa9repeating5countSayxGx_SitcfCs5UInt8V_Tgm5', symObjAddr: 0x30C, symBinAddr: 0x2339C, symSize: 0x78 } + - { offsetInCU: 0x724, offset: 0x753D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x23090, symSize: 0x16C } + - { offsetInCU: 0x88F, offset: 0x7553E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x16C, symBinAddr: 0x231FC, symSize: 0x180 } + - { offsetInCU: 0xAE5, offset: 0x75794, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x384, symBinAddr: 0x23414, symSize: 0xCAC } + - { offsetInCU: 0x10BC, offset: 0x75D6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0x1030, symBinAddr: 0x240C0, symSize: 0x34 } + - { offsetInCU: 0x78, offset: 0x75E60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x84, symBinAddr: 0x24498, symSize: 0x34 } + - { offsetInCU: 0xA9, offset: 0x75E91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xB8, symBinAddr: 0x244CC, symSize: 0xC } + - { offsetInCU: 0x12A, offset: 0x75F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xDC, symBinAddr: 0x244F0, symSize: 0x30 } + - { offsetInCU: 0x15B, offset: 0x75F43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x24864, symSize: 0x4C } + - { offsetInCU: 0x1C0, offset: 0x75FA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x24560, symSize: 0x30 } + - { offsetInCU: 0x1F1, offset: 0x75FD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x248B4, symSize: 0x4C } + - { offsetInCU: 0x256, offset: 0x7603E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x1B4, symBinAddr: 0x245C8, symSize: 0x30 } + - { offsetInCU: 0x303, offset: 0x760EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x248, symBinAddr: 0x2465C, symSize: 0x30 } + - { offsetInCU: 0x36E, offset: 0x76156, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x290, symBinAddr: 0x246A4, symSize: 0x30 } + - { offsetInCU: 0x39F, offset: 0x76187, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x538, symBinAddr: 0x2494C, symSize: 0x58 } + - { offsetInCU: 0x404, offset: 0x761EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2D8, symBinAddr: 0x246EC, symSize: 0x30 } + - { offsetInCU: 0x435, offset: 0x7621D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x590, symBinAddr: 0x249A4, symSize: 0x4C } + - { offsetInCU: 0x49A, offset: 0x76282, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x33C, symBinAddr: 0x24750, symSize: 0x20 } + - { offsetInCU: 0x505, offset: 0x762ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x420, symBinAddr: 0x24834, symSize: 0x30 } + - { offsetInCU: 0x537, offset: 0x7631F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0x5DC, symBinAddr: 0x249F0, symSize: 0x4 } + - { offsetInCU: 0x54B, offset: 0x76333, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0x5E0, symBinAddr: 0x249F4, symSize: 0x44 } + - { offsetInCU: 0x55F, offset: 0x76347, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x624, symBinAddr: 0x24A38, symSize: 0x4 } + - { offsetInCU: 0x573, offset: 0x7635B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x628, symBinAddr: 0x24A3C, symSize: 0x44 } + - { offsetInCU: 0x587, offset: 0x7636F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x66C, symBinAddr: 0x24A80, symSize: 0x4 } + - { offsetInCU: 0x59B, offset: 0x76383, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x24A84, symSize: 0x44 } + - { offsetInCU: 0x5AF, offset: 0x76397, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x6B4, symBinAddr: 0x24AC8, symSize: 0x4 } + - { offsetInCU: 0x5C3, offset: 0x763AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x6B8, symBinAddr: 0x24ACC, symSize: 0x44 } + - { offsetInCU: 0x5D7, offset: 0x763BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x6FC, symBinAddr: 0x24B10, symSize: 0x4 } + - { offsetInCU: 0x5EB, offset: 0x763D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x700, symBinAddr: 0x24B14, symSize: 0x44 } + - { offsetInCU: 0x5FF, offset: 0x763E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x744, symBinAddr: 0x24B58, symSize: 0x4 } + - { offsetInCU: 0x613, offset: 0x763FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x748, symBinAddr: 0x24B5C, symSize: 0x44 } + - { offsetInCU: 0x627, offset: 0x7640F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x78C, symBinAddr: 0x24BA0, symSize: 0x4 } + - { offsetInCU: 0x63B, offset: 0x76423, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x790, symBinAddr: 0x24BA4, symSize: 0x44 } + - { offsetInCU: 0x64F, offset: 0x76437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x7D4, symBinAddr: 0x24BE8, symSize: 0x4 } + - { offsetInCU: 0x663, offset: 0x7644B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x7D8, symBinAddr: 0x24BEC, symSize: 0x44 } + - { offsetInCU: 0x677, offset: 0x7645F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x81C, symBinAddr: 0x24C30, symSize: 0x4 } + - { offsetInCU: 0x68B, offset: 0x76473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x820, symBinAddr: 0x24C34, symSize: 0x44 } + - { offsetInCU: 0x69F, offset: 0x76487, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x864, symBinAddr: 0x24C78, symSize: 0x4 } + - { offsetInCU: 0x6B3, offset: 0x7649B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x868, symBinAddr: 0x24C7C, symSize: 0x44 } + - { offsetInCU: 0x6C7, offset: 0x764AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x8AC, symBinAddr: 0x24CC0, symSize: 0x4 } + - { offsetInCU: 0x6DB, offset: 0x764C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x8B0, symBinAddr: 0x24CC4, symSize: 0x44 } + - { offsetInCU: 0x6EF, offset: 0x764D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x8F4, symBinAddr: 0x24D08, symSize: 0x10 } + - { offsetInCU: 0x703, offset: 0x764EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x904, symBinAddr: 0x24D18, symSize: 0x10 } + - { offsetInCU: 0x717, offset: 0x764FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x914, symBinAddr: 0x24D28, symSize: 0x10 } + - { offsetInCU: 0x72B, offset: 0x76513, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x924, symBinAddr: 0x24D38, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x76527, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x934, symBinAddr: 0x24D48, symSize: 0x10 } + - { offsetInCU: 0x753, offset: 0x7653B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x944, symBinAddr: 0x24D58, symSize: 0x10 } + - { offsetInCU: 0x767, offset: 0x7654F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x954, symBinAddr: 0x24D68, symSize: 0x10 } + - { offsetInCU: 0x77B, offset: 0x76563, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x964, symBinAddr: 0x24D78, symSize: 0x10 } + - { offsetInCU: 0x78F, offset: 0x76577, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x974, symBinAddr: 0x24D88, symSize: 0x10 } + - { offsetInCU: 0x7A3, offset: 0x7658B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x984, symBinAddr: 0x24D98, symSize: 0x10 } + - { offsetInCU: 0x7B7, offset: 0x7659F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x994, symBinAddr: 0x24DA8, symSize: 0x10 } + - { offsetInCU: 0x7F4, offset: 0x765DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x24454, symSize: 0x14 } + - { offsetInCU: 0x859, offset: 0x76641, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x58, symBinAddr: 0x2446C, symSize: 0x28 } + - { offsetInCU: 0x96F, offset: 0x76757, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x24414, symSize: 0x3C } + - { offsetInCU: 0x98E, offset: 0x76776, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3C, symBinAddr: 0x24450, symSize: 0x4 } + - { offsetInCU: 0x9DA, offset: 0x767C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0xD0, symBinAddr: 0x244E4, symSize: 0x4 } + - { offsetInCU: 0xA08, offset: 0x767F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x140, symBinAddr: 0x24554, symSize: 0x4 } + - { offsetInCU: 0xA36, offset: 0x7681E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1A8, symBinAddr: 0x245BC, symSize: 0x4 } + - { offsetInCU: 0xA64, offset: 0x7684C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1E8, symBinAddr: 0x245FC, symSize: 0x4 } + - { offsetInCU: 0xA85, offset: 0x7686D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1F8, symBinAddr: 0x2460C, symSize: 0x4 } + - { offsetInCU: 0xAA6, offset: 0x7688E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x23C, symBinAddr: 0x24650, symSize: 0x4 } + - { offsetInCU: 0xADF, offset: 0x768C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x284, symBinAddr: 0x24698, symSize: 0x4 } + - { offsetInCU: 0xB0D, offset: 0x768F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2CC, symBinAddr: 0x246E0, symSize: 0x4 } + - { offsetInCU: 0xB41, offset: 0x76929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x308, symBinAddr: 0x2471C, symSize: 0x28 } + - { offsetInCU: 0xB60, offset: 0x76948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x330, symBinAddr: 0x24744, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x76981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x35C, symBinAddr: 0x24770, symSize: 0x34 } + - { offsetInCU: 0xBB8, offset: 0x769A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x390, symBinAddr: 0x247A4, symSize: 0x4 } + - { offsetInCU: 0x1AD, offset: 0x76BB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x460, symBinAddr: 0x25298, symSize: 0x20 } + - { offsetInCU: 0x210, offset: 0x76C1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x720, symBinAddr: 0x25558, symSize: 0x48 } + - { offsetInCU: 0x24D, offset: 0x76C57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x768, symBinAddr: 0x255A0, symSize: 0x4C } + - { offsetInCU: 0x28A, offset: 0x76C94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x7B4, symBinAddr: 0x255EC, symSize: 0x48 } + - { offsetInCU: 0x2C8, offset: 0x76CD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x440, symBinAddr: 0x25278, symSize: 0x20 } + - { offsetInCU: 0x2DC, offset: 0x76CE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x4B0, symBinAddr: 0x252E8, symSize: 0x48 } + - { offsetInCU: 0x3E8, offset: 0x76DF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x7FC, symBinAddr: 0x25634, symSize: 0x20 } + - { offsetInCU: 0x404, offset: 0x76E0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x81C, symBinAddr: 0x25654, symSize: 0x24 } + - { offsetInCU: 0x457, offset: 0x76E61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x840, symBinAddr: 0x25678, symSize: 0x20 } + - { offsetInCU: 0x47A, offset: 0x76E84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x860, symBinAddr: 0x25698, symSize: 0x1C } + - { offsetInCU: 0x4B7, offset: 0x76EC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x87C, symBinAddr: 0x256B4, symSize: 0x24 } + - { offsetInCU: 0x50D, offset: 0x76F17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x8A0, symBinAddr: 0x256D8, symSize: 0x68 } + - { offsetInCU: 0x6DE, offset: 0x770E8, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xEF8, symBinAddr: 0x25D10, symSize: 0x2C } + - { offsetInCU: 0x6F6, offset: 0x77100, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xF24, symBinAddr: 0x25D3C, symSize: 0x84 } + - { offsetInCU: 0x742, offset: 0x7714C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0x1070, symBinAddr: 0x25E88, symSize: 0x1C0 } + - { offsetInCU: 0x7D6, offset: 0x771E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1234, symBinAddr: 0x2604C, symSize: 0x4C } + - { offsetInCU: 0x826, offset: 0x77230, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x1288, symBinAddr: 0x260A0, symSize: 0x54 } + - { offsetInCU: 0x87D, offset: 0x77287, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x1398, symBinAddr: 0x261B0, symSize: 0x158 } + - { offsetInCU: 0x8E5, offset: 0x772EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x14F8, symBinAddr: 0x26310, symSize: 0x68 } + - { offsetInCU: 0x96B, offset: 0x77375, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x18D4, symBinAddr: 0x266A0, symSize: 0x3C } + - { offsetInCU: 0x97F, offset: 0x77389, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x1934, symBinAddr: 0x26700, symSize: 0x8 } + - { offsetInCU: 0x993, offset: 0x7739D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x193C, symBinAddr: 0x26708, symSize: 0x10 } + - { offsetInCU: 0x9A7, offset: 0x773B1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x194C, symBinAddr: 0x26718, symSize: 0x8 } + - { offsetInCU: 0xA25, offset: 0x7742F, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1DB8, symBinAddr: 0x26B40, symSize: 0x14 } + - { offsetInCU: 0xA4E, offset: 0x77458, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1DCC, symBinAddr: 0x26B54, symSize: 0x24 } + - { offsetInCU: 0xCE0, offset: 0x776EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x24E38, symSize: 0x20 } + - { offsetInCU: 0xCF4, offset: 0x776FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvg', symObjAddr: 0x20, symBinAddr: 0x24E58, symSize: 0x44 } + - { offsetInCU: 0xD19, offset: 0x77723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvs', symObjAddr: 0x64, symBinAddr: 0x24E9C, symSize: 0x48 } + - { offsetInCU: 0xD4A, offset: 0x77754, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0xAC, symBinAddr: 0x24EE4, symSize: 0x44 } + - { offsetInCU: 0xD6F, offset: 0x77779, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvg', symObjAddr: 0xF0, symBinAddr: 0x24F28, symSize: 0x44 } + - { offsetInCU: 0xD8E, offset: 0x77798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvs', symObjAddr: 0x134, symBinAddr: 0x24F6C, symSize: 0x48 } + - { offsetInCU: 0xDB3, offset: 0x777BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x17C, symBinAddr: 0x24FB4, symSize: 0x44 } + - { offsetInCU: 0xDD2, offset: 0x777DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1C0, symBinAddr: 0x24FF8, symSize: 0x48 } + - { offsetInCU: 0xDF1, offset: 0x777FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x208, symBinAddr: 0x25040, symSize: 0x50 } + - { offsetInCU: 0xE26, offset: 0x77830, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x258, symBinAddr: 0x25090, symSize: 0x44 } + - { offsetInCU: 0xE4B, offset: 0x77855, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x29C, symBinAddr: 0x250D4, symSize: 0x4 } + - { offsetInCU: 0xE6C, offset: 0x77876, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvg', symObjAddr: 0x2A0, symBinAddr: 0x250D8, symSize: 0x44 } + - { offsetInCU: 0xE8B, offset: 0x77895, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvs', symObjAddr: 0x2E4, symBinAddr: 0x2511C, symSize: 0x48 } + - { offsetInCU: 0xEBC, offset: 0x778C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x32C, symBinAddr: 0x25164, symSize: 0x44 } + - { offsetInCU: 0xEEF, offset: 0x778F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x370, symBinAddr: 0x251A8, symSize: 0xD0 } + - { offsetInCU: 0xF36, offset: 0x77940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x480, symBinAddr: 0x252B8, symSize: 0x30 } + - { offsetInCU: 0xF97, offset: 0x779A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x4F8, symBinAddr: 0x25330, symSize: 0x88 } + - { offsetInCU: 0x1022, offset: 0x77A2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x580, symBinAddr: 0x253B8, symSize: 0x18 } + - { offsetInCU: 0x1053, offset: 0x77A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x598, symBinAddr: 0x253D0, symSize: 0xEC } + - { offsetInCU: 0x10A8, offset: 0x77AB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x684, symBinAddr: 0x254BC, symSize: 0x18 } + - { offsetInCU: 0x10C5, offset: 0x77ACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x69C, symBinAddr: 0x254D4, symSize: 0x20 } + - { offsetInCU: 0x10FF, offset: 0x77B09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x6BC, symBinAddr: 0x254F4, symSize: 0x64 } + - { offsetInCU: 0x1377, offset: 0x77D81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x908, symBinAddr: 0x25740, symSize: 0x488 } + - { offsetInCU: 0x164D, offset: 0x78057, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xDB0, symBinAddr: 0x25BC8, symSize: 0x148 } + - { offsetInCU: 0x1729, offset: 0x78133, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xFA8, symBinAddr: 0x25DC0, symSize: 0xC8 } + - { offsetInCU: 0x17F3, offset: 0x781FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1230, symBinAddr: 0x26048, symSize: 0x4 } + - { offsetInCU: 0x180E, offset: 0x78218, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x1280, symBinAddr: 0x26098, symSize: 0x8 } + - { offsetInCU: 0x1829, offset: 0x78233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x12DC, symBinAddr: 0x260F4, symSize: 0xBC } + - { offsetInCU: 0x18B0, offset: 0x782BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x14F0, symBinAddr: 0x26308, symSize: 0x8 } + - { offsetInCU: 0x18E0, offset: 0x782EA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x1560, symBinAddr: 0x26378, symSize: 0x4C } + - { offsetInCU: 0x1979, offset: 0x78383, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x1954, symBinAddr: 0x26720, symSize: 0x12C } + - { offsetInCU: 0x1A02, offset: 0x7840C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x1A80, symBinAddr: 0x2684C, symSize: 0x19C } + - { offsetInCU: 0x1AC9, offset: 0x784D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1C1C, symBinAddr: 0x269E8, symSize: 0x134 } + - { offsetInCU: 0x970, offset: 0x78EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x59D0, symBinAddr: 0x2C558, symSize: 0x20 } + - { offsetInCU: 0xD1C, offset: 0x79290, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x60C8, symBinAddr: 0x2CC50, symSize: 0x68 } + - { offsetInCU: 0xE07, offset: 0x7937B, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6130, symBinAddr: 0x2CCB8, symSize: 0x104 } + - { offsetInCU: 0x10E0, offset: 0x79654, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6234, symBinAddr: 0x2CDBC, symSize: 0x3FC } + - { offsetInCU: 0x1589, offset: 0x79AFD, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x6630, symBinAddr: 0x2D1B8, symSize: 0x12C } + - { offsetInCU: 0x17B4, offset: 0x79D28, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x675C, symBinAddr: 0x2D2E4, symSize: 0x284 } + - { offsetInCU: 0x1B8B, offset: 0x7A0FF, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x69E0, symBinAddr: 0x2D568, symSize: 0x14C } + - { offsetInCU: 0x1D85, offset: 0x7A2F9, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x6B2C, symBinAddr: 0x2D6B4, symSize: 0x2FC } + - { offsetInCU: 0x1F36, offset: 0x7A4AA, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSnySiG_Tgmq5', symObjAddr: 0x6EF0, symBinAddr: 0x2DA78, symSize: 0x80 } + - { offsetInCU: 0x2136, offset: 0x7A6AA, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayVyAByxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x74C0, symBinAddr: 0x2E048, symSize: 0xD8 } + - { offsetInCU: 0x2204, offset: 0x7A778, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x7598, symBinAddr: 0x2E120, symSize: 0x48 } + - { offsetInCU: 0x2218, offset: 0x7A78C, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x7620, symBinAddr: 0x2E168, symSize: 0x10 } + - { offsetInCU: 0x222C, offset: 0x7A7A0, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x76D0, symBinAddr: 0x2E1F8, symSize: 0x3C } + - { offsetInCU: 0x2240, offset: 0x7A7B4, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x770C, symBinAddr: 0x2E234, symSize: 0x40 } + - { offsetInCU: 0x2254, offset: 0x7A7C8, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOr', symObjAddr: 0x7790, symBinAddr: 0x2E2B8, symSize: 0x28 } + - { offsetInCU: 0x2268, offset: 0x7A7DC, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOs', symObjAddr: 0x77B8, symBinAddr: 0x2E2E0, symSize: 0x28 } + - { offsetInCU: 0x2941, offset: 0x7AEB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x26B88, symSize: 0xA8C } + - { offsetInCU: 0x35C5, offset: 0x7BB39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x1520, symBinAddr: 0x280A8, symSize: 0xA1C } + - { offsetInCU: 0x40A1, offset: 0x7C615, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x1F3C, symBinAddr: 0x28AC4, symSize: 0x9C4 } + - { offsetInCU: 0x4B50, offset: 0x7D0C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2900, symBinAddr: 0x29488, symSize: 0xBDC } + - { offsetInCU: 0x59BE, offset: 0x7DF32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x34DC, symBinAddr: 0x2A064, symSize: 0xB74 } + - { offsetInCU: 0x682A, offset: 0x7ED9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x4068, symBinAddr: 0x2ABF0, symSize: 0xAA0 } + - { offsetInCU: 0x74F2, offset: 0x7FA66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x4B08, symBinAddr: 0x2B690, symSize: 0xA38 } + - { offsetInCU: 0x8027, offset: 0x8059B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x5540, symBinAddr: 0x2C0C8, symSize: 0x190 } + - { offsetInCU: 0x8122, offset: 0x80696, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x56D0, symBinAddr: 0x2C258, symSize: 0x180 } + - { offsetInCU: 0x81EA, offset: 0x8075E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x5850, symBinAddr: 0x2C3D8, symSize: 0x128 } + - { offsetInCU: 0x8345, offset: 0x808B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x5978, symBinAddr: 0x2C500, symSize: 0x58 } + - { offsetInCU: 0x8525, offset: 0x80A99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x59F0, symBinAddr: 0x2C578, symSize: 0x6D8 } + - { offsetInCU: 0x8D6B, offset: 0x812DF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x6E28, symBinAddr: 0x2D9B0, symSize: 0x14 } + - { offsetInCU: 0x8D8D, offset: 0x81301, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x6E3C, symBinAddr: 0x2D9C4, symSize: 0xB4 } + - { offsetInCU: 0x8E0E, offset: 0x81382, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x6F70, symBinAddr: 0x2DAF8, symSize: 0x1C8 } + - { offsetInCU: 0x8F00, offset: 0x81474, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x7138, symBinAddr: 0x2DCC0, symSize: 0x1DC } + - { offsetInCU: 0x9010, offset: 0x81584, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x7314, symBinAddr: 0x2DE9C, symSize: 0xE4 } + - { offsetInCU: 0x909E, offset: 0x81612, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x73F8, symBinAddr: 0x2DF80, symSize: 0x14 } + - { offsetInCU: 0x4F, offset: 0x81707, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x1168, symBinAddr: 0x62960, symSize: 0x0 } + - { offsetInCU: 0x7F, offset: 0x81737, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2E308, symSize: 0xB4 } + - { offsetInCU: 0x11E, offset: 0x817D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x860, symBinAddr: 0x2EB68, symSize: 0x14 } + - { offsetInCU: 0x19C, offset: 0x81854, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x874, symBinAddr: 0x2EB7C, symSize: 0x44 } + - { offsetInCU: 0x27F, offset: 0x81937, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8B8, symBinAddr: 0x2EBC0, symSize: 0x28 } + - { offsetInCU: 0x31F, offset: 0x819D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAD4, symBinAddr: 0x2EDDC, symSize: 0x4 } + - { offsetInCU: 0x399, offset: 0x81A51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xD88, symBinAddr: 0x2F040, symSize: 0xAC } + - { offsetInCU: 0x464, offset: 0x81B1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE34, symBinAddr: 0x2F0EC, symSize: 0x110 } + - { offsetInCU: 0x52E, offset: 0x81BE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB4, symBinAddr: 0x2E3BC, symSize: 0x11C } + - { offsetInCU: 0x58F, offset: 0x81C47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAF8, symBinAddr: 0x2EE00, symSize: 0x20 } + - { offsetInCU: 0x5A3, offset: 0x81C5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB28, symBinAddr: 0x2EE20, symSize: 0x90 } + - { offsetInCU: 0x5B7, offset: 0x81C6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xBB8, symBinAddr: 0x2EEB0, symSize: 0xBC } + - { offsetInCU: 0x5CB, offset: 0x81C83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC74, symBinAddr: 0x2EF6C, symSize: 0x8 } + - { offsetInCU: 0x5DF, offset: 0x81C97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC7C, symBinAddr: 0x2EF74, symSize: 0x4 } + - { offsetInCU: 0x5F3, offset: 0x81CAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC80, symBinAddr: 0x2EF78, symSize: 0x8 } + - { offsetInCU: 0x607, offset: 0x81CBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC88, symBinAddr: 0x2EF80, symSize: 0x10 } + - { offsetInCU: 0x61B, offset: 0x81CD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xC98, symBinAddr: 0x2EF90, symSize: 0x4 } + - { offsetInCU: 0x62F, offset: 0x81CE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xC9C, symBinAddr: 0x2EF94, symSize: 0x44 } + - { offsetInCU: 0x643, offset: 0x81CFB, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCE0, symBinAddr: 0x2EFD8, symSize: 0x10 } + - { offsetInCU: 0x657, offset: 0x81D0F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xCF0, symBinAddr: 0x2EFE8, symSize: 0x8 } + - { offsetInCU: 0x66B, offset: 0x81D23, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xCF8, symBinAddr: 0x2EFF0, symSize: 0x10 } + - { offsetInCU: 0x67F, offset: 0x81D37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xF94, symBinAddr: 0x2F24C, symSize: 0xC } + - { offsetInCU: 0x693, offset: 0x81D4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x1064, symBinAddr: 0x2F31C, symSize: 0x8 } + - { offsetInCU: 0x6A7, offset: 0x81D5F, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x106C, symBinAddr: 0x2F324, symSize: 0x10 } + - { offsetInCU: 0x769, offset: 0x81E21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x2EBE8, symSize: 0x40 } + - { offsetInCU: 0x922, offset: 0x81FDA, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x7A4, symBinAddr: 0x2EAAC, symSize: 0xBC } + - { offsetInCU: 0x979, offset: 0x82031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1D0, symBinAddr: 0x2E4D8, symSize: 0x5C } + - { offsetInCU: 0x99D, offset: 0x82055, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x22C, symBinAddr: 0x2E534, symSize: 0x4FC } + - { offsetInCU: 0xA89, offset: 0x82141, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x728, symBinAddr: 0x2EA30, symSize: 0x7C } + - { offsetInCU: 0xB5F, offset: 0x82217, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x920, symBinAddr: 0x2EC28, symSize: 0x1B4 } + - { offsetInCU: 0xBC0, offset: 0x82278, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAD8, symBinAddr: 0x2EDE0, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x8233C, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2F33C, symSize: 0x5C } + - { offsetInCU: 0x232, offset: 0x82543, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x2F718, symSize: 0x14 } + - { offsetInCU: 0x274, offset: 0x82585, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x3F0, symBinAddr: 0x2F72C, symSize: 0x44 } + - { offsetInCU: 0x357, offset: 0x82668, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x434, symBinAddr: 0x2F770, symSize: 0x28 } + - { offsetInCU: 0x3EA, offset: 0x826FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x49C, symBinAddr: 0x2F7D8, symSize: 0x4 } + - { offsetInCU: 0x3FE, offset: 0x8270F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4A0, symBinAddr: 0x2F7DC, symSize: 0x44 } + - { offsetInCU: 0x412, offset: 0x82723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x504, symBinAddr: 0x2F830, symSize: 0x90 } + - { offsetInCU: 0x426, offset: 0x82737, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x594, symBinAddr: 0x2F8C0, symSize: 0xBC } + - { offsetInCU: 0x43A, offset: 0x8274B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x650, symBinAddr: 0x2F97C, symSize: 0x8 } + - { offsetInCU: 0x44E, offset: 0x8275F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x658, symBinAddr: 0x2F984, symSize: 0x4 } + - { offsetInCU: 0x462, offset: 0x82773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x65C, symBinAddr: 0x2F988, symSize: 0x8 } + - { offsetInCU: 0x476, offset: 0x82787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x664, symBinAddr: 0x2F990, symSize: 0x10 } + - { offsetInCU: 0x48A, offset: 0x8279B, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x674, symBinAddr: 0x2F9A0, symSize: 0xC } + - { offsetInCU: 0x49E, offset: 0x827AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x680, symBinAddr: 0x2F9AC, symSize: 0x20 } + - { offsetInCU: 0x4B2, offset: 0x827C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x6A0, symBinAddr: 0x2F9CC, symSize: 0x28 } + - { offsetInCU: 0x4C6, offset: 0x827D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x6C8, symBinAddr: 0x2F9F4, symSize: 0x8 } + - { offsetInCU: 0x4DA, offset: 0x827EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x6D0, symBinAddr: 0x2F9FC, symSize: 0x4 } + - { offsetInCU: 0x4EE, offset: 0x827FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x6D4, symBinAddr: 0x2FA00, symSize: 0x4 } + - { offsetInCU: 0x502, offset: 0x82813, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x6D8, symBinAddr: 0x2FA04, symSize: 0x10 } + - { offsetInCU: 0x692, offset: 0x829A3, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x988, symBinAddr: 0x2FC6C, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x82AB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x354, symBinAddr: 0x2F690, symSize: 0x4 } + - { offsetInCU: 0x7BB, offset: 0x82ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x358, symBinAddr: 0x2F694, symSize: 0x4 } + - { offsetInCU: 0x7D7, offset: 0x82AE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x35C, symBinAddr: 0x2F698, symSize: 0x4 } + - { offsetInCU: 0x7F3, offset: 0x82B04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x360, symBinAddr: 0x2F69C, symSize: 0x4 } + - { offsetInCU: 0x846, offset: 0x82B57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x45C, symBinAddr: 0x2F798, symSize: 0x40 } + - { offsetInCU: 0x8E2, offset: 0x82BF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x4E4, symBinAddr: 0x2F820, symSize: 0x4 } + - { offsetInCU: 0x8FE, offset: 0x82C0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x4E8, symBinAddr: 0x2F824, symSize: 0x4 } + - { offsetInCU: 0x91A, offset: 0x82C2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x4EC, symBinAddr: 0x2F828, symSize: 0x4 } + - { offsetInCU: 0x936, offset: 0x82C47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x4F0, symBinAddr: 0x2F82C, symSize: 0x4 } + - { offsetInCU: 0xAE7, offset: 0x82DF8, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2F33C, symSize: 0x5C } + - { offsetInCU: 0xB67, offset: 0x82E78, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x5C, symBinAddr: 0x2F398, symSize: 0x104 } + - { offsetInCU: 0xBFA, offset: 0x82F0B, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x160, symBinAddr: 0x2F49C, symSize: 0xB4 } + - { offsetInCU: 0xD96, offset: 0x830A7, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x214, symBinAddr: 0x2F550, symSize: 0x140 } + - { offsetInCU: 0xF65, offset: 0x83276, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x364, symBinAddr: 0x2F6A0, symSize: 0x10 } + - { offsetInCU: 0xFA1, offset: 0x832B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x374, symBinAddr: 0x2F6B0, symSize: 0x24 } + - { offsetInCU: 0x1030, offset: 0x83341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x398, symBinAddr: 0x2F6D4, symSize: 0x44 } + - { offsetInCU: 0x1184, offset: 0x83495, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x6E8, symBinAddr: 0x2FA14, symSize: 0x258 } + - { offsetInCU: 0x2B, offset: 0x83769, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2FCB0, symSize: 0x28 } + - { offsetInCU: 0x93, offset: 0x837D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x250, symBinAddr: 0x2FF00, symSize: 0x30 } + - { offsetInCU: 0xC4, offset: 0x83802, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x280, symBinAddr: 0x2FF30, symSize: 0xC } + - { offsetInCU: 0xE0, offset: 0x8381E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x28C, symBinAddr: 0x2FF3C, symSize: 0xA0 } + - { offsetInCU: 0x10A, offset: 0x83848, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4E0, symBinAddr: 0x30190, symSize: 0x34 } + - { offsetInCU: 0x1AF, offset: 0x838ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x474, symBinAddr: 0x30124, symSize: 0x28 } + - { offsetInCU: 0x1E0, offset: 0x8391E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x49C, symBinAddr: 0x3014C, symSize: 0x10 } + - { offsetInCU: 0x212, offset: 0x83950, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4AC, symBinAddr: 0x3015C, symSize: 0x34 } + - { offsetInCU: 0x303, offset: 0x83A41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x35C, symBinAddr: 0x3000C, symSize: 0x14 } + - { offsetInCU: 0x346, offset: 0x83A84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x370, symBinAddr: 0x30020, symSize: 0x14 } + - { offsetInCU: 0x389, offset: 0x83AC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x384, symBinAddr: 0x30034, symSize: 0x14 } + - { offsetInCU: 0x3CC, offset: 0x83B0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x398, symBinAddr: 0x30048, symSize: 0x14 } + - { offsetInCU: 0x40F, offset: 0x83B4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x514, symBinAddr: 0x301C4, symSize: 0x4 } + - { offsetInCU: 0x423, offset: 0x83B61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x518, symBinAddr: 0x301C8, symSize: 0x44 } + - { offsetInCU: 0x437, offset: 0x83B75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x55C, symBinAddr: 0x3020C, symSize: 0x4 } + - { offsetInCU: 0x44B, offset: 0x83B89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x560, symBinAddr: 0x30210, symSize: 0x10 } + - { offsetInCU: 0x45F, offset: 0x83B9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x580, symBinAddr: 0x30220, symSize: 0x90 } + - { offsetInCU: 0x473, offset: 0x83BB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x610, symBinAddr: 0x302B0, symSize: 0xBC } + - { offsetInCU: 0x487, offset: 0x83BC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x6CC, symBinAddr: 0x3036C, symSize: 0x8 } + - { offsetInCU: 0x49B, offset: 0x83BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x6D4, symBinAddr: 0x30374, symSize: 0x4 } + - { offsetInCU: 0x4AF, offset: 0x83BED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x6D8, symBinAddr: 0x30378, symSize: 0x8 } + - { offsetInCU: 0x4C3, offset: 0x83C01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x6E0, symBinAddr: 0x30380, symSize: 0x10 } + - { offsetInCU: 0x4D7, offset: 0x83C15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x6F0, symBinAddr: 0x30390, symSize: 0x4 } + - { offsetInCU: 0x4EB, offset: 0x83C29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x6F4, symBinAddr: 0x30394, symSize: 0x44 } + - { offsetInCU: 0x52E, offset: 0x83C6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x190, symBinAddr: 0x2FE40, symSize: 0x14 } + - { offsetInCU: 0x5D8, offset: 0x83D16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1A4, symBinAddr: 0x2FE54, symSize: 0x44 } + - { offsetInCU: 0x667, offset: 0x83DA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1E8, symBinAddr: 0x2FE98, symSize: 0x28 } + - { offsetInCU: 0x6BA, offset: 0x83DF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x210, symBinAddr: 0x2FEC0, symSize: 0x40 } + - { offsetInCU: 0x726, offset: 0x83E64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3AC, symBinAddr: 0x3005C, symSize: 0x18 } + - { offsetInCU: 0x7D0, offset: 0x83F0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3C4, symBinAddr: 0x30074, symSize: 0x44 } + - { offsetInCU: 0x8B1, offset: 0x83FEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x408, symBinAddr: 0x300B8, symSize: 0x2C } + - { offsetInCU: 0x936, offset: 0x84074, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x434, symBinAddr: 0x300E4, symSize: 0x40 } + - { offsetInCU: 0xA9A, offset: 0x841D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2FCB0, symSize: 0x28 } + - { offsetInCU: 0xAF8, offset: 0x84236, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x28, symBinAddr: 0x2FCD8, symSize: 0x4 } + - { offsetInCU: 0xB1F, offset: 0x8425D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x2C, symBinAddr: 0x2FCDC, symSize: 0x5C } + - { offsetInCU: 0xB6F, offset: 0x842AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0x88, symBinAddr: 0x2FD38, symSize: 0x30 } + - { offsetInCU: 0xBCB, offset: 0x84309, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xB8, symBinAddr: 0x2FD68, symSize: 0x10 } + - { offsetInCU: 0xBF9, offset: 0x84337, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xC8, symBinAddr: 0x2FD78, symSize: 0xA0 } + - { offsetInCU: 0xC18, offset: 0x84356, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x168, symBinAddr: 0x2FE18, symSize: 0x28 } + - { offsetInCU: 0xC68, offset: 0x843A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x32C, symBinAddr: 0x2FFDC, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x843D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x33C, symBinAddr: 0x2FFEC, symSize: 0x10 } + - { offsetInCU: 0xCC4, offset: 0x84402, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x34C, symBinAddr: 0x2FFFC, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x845A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x303D8, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x845DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x303E0, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x845FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x303E0, symSize: 0x8 } + - { offsetInCU: 0x1B8, offset: 0x84714, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0xE8, symBinAddr: 0x304C0, symSize: 0x8 } + - { offsetInCU: 0x1CC, offset: 0x84728, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x130, symBinAddr: 0x30508, symSize: 0x50 } + - { offsetInCU: 0x1E0, offset: 0x8473C, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x180, symBinAddr: 0x30558, symSize: 0xC } + - { offsetInCU: 0x1F4, offset: 0x84750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x18C, symBinAddr: 0x30564, symSize: 0x40 } + - { offsetInCU: 0x208, offset: 0x84764, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x1CC, symBinAddr: 0x305A4, symSize: 0x5C } + - { offsetInCU: 0x21C, offset: 0x84778, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x228, symBinAddr: 0x30600, symSize: 0x50 } + - { offsetInCU: 0x230, offset: 0x8478C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x278, symBinAddr: 0x30650, symSize: 0x10 } + - { offsetInCU: 0x3E7, offset: 0x84943, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x303E8, symSize: 0xD4 } + - { offsetInCU: 0x4B, offset: 0x84B5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30660, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x84B91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30668, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x84BB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30668, symSize: 0x8 } + - { offsetInCU: 0xC7, offset: 0x84BD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30670, symSize: 0x1C } + - { offsetInCU: 0x156, offset: 0x84C67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x2C, symBinAddr: 0x3068C, symSize: 0xE4 } + - { offsetInCU: 0x2EC, offset: 0x84DFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x110, symBinAddr: 0x30770, symSize: 0x110 } + - { offsetInCU: 0x407, offset: 0x84F18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x264, symBinAddr: 0x30884, symSize: 0x28 } + - { offsetInCU: 0x41B, offset: 0x84F2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x2DC, symBinAddr: 0x308FC, symSize: 0x7C } + - { offsetInCU: 0x42F, offset: 0x84F40, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x358, symBinAddr: 0x30978, symSize: 0x14 } + - { offsetInCU: 0x443, offset: 0x84F54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x36C, symBinAddr: 0x3098C, symSize: 0x5C } + - { offsetInCU: 0x457, offset: 0x84F68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x3C8, symBinAddr: 0x309E8, symSize: 0x5C } + - { offsetInCU: 0x46B, offset: 0x84F7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x424, symBinAddr: 0x30A44, symSize: 0x54 } + - { offsetInCU: 0x47F, offset: 0x84F90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x478, symBinAddr: 0x30A98, symSize: 0x10 } + - { offsetInCU: 0x4F, offset: 0x85227, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30AA8, symSize: 0x8 } + - { offsetInCU: 0x84, offset: 0x8525C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30AB0, symSize: 0x8 } + - { offsetInCU: 0xA4, offset: 0x8527C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30AB0, symSize: 0x8 } + - { offsetInCU: 0x383, offset: 0x8555B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xE20, symBinAddr: 0x318C8, symSize: 0x58 } + - { offsetInCU: 0x39F, offset: 0x85577, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0xEFC, symBinAddr: 0x31964, symSize: 0x30 } + - { offsetInCU: 0x3B3, offset: 0x8558B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0xF70, symBinAddr: 0x31994, symSize: 0x78 } + - { offsetInCU: 0x3C7, offset: 0x8559F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x102C, symBinAddr: 0x31A0C, symSize: 0x140 } + - { offsetInCU: 0x3DB, offset: 0x855B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x116C, symBinAddr: 0x31B4C, symSize: 0x1F0 } + - { offsetInCU: 0x3EF, offset: 0x855C7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x135C, symBinAddr: 0x31D3C, symSize: 0x34 } + - { offsetInCU: 0x403, offset: 0x855DB, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x1390, symBinAddr: 0x31D70, symSize: 0x3C } + - { offsetInCU: 0x417, offset: 0x855EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x13CC, symBinAddr: 0x31DAC, symSize: 0x138 } + - { offsetInCU: 0x42B, offset: 0x85603, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x1504, symBinAddr: 0x31EE4, symSize: 0x48 } + - { offsetInCU: 0x43F, offset: 0x85617, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x154C, symBinAddr: 0x31F2C, symSize: 0x68 } + - { offsetInCU: 0x453, offset: 0x8562B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x15B4, symBinAddr: 0x31F94, symSize: 0x10 } + - { offsetInCU: 0x746, offset: 0x8591E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x30AB8, symSize: 0x2F0 } + - { offsetInCU: 0xBD0, offset: 0x85DA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x300, symBinAddr: 0x30DA8, symSize: 0x354 } + - { offsetInCU: 0x110B, offset: 0x862E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x654, symBinAddr: 0x310FC, symSize: 0x284 } + - { offsetInCU: 0x1552, offset: 0x8672A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x8D8, symBinAddr: 0x31380, symSize: 0x28C } + - { offsetInCU: 0x1A1A, offset: 0x86BF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xB64, symBinAddr: 0x3160C, symSize: 0x2BC } + - { offsetInCU: 0x4B, offset: 0x86ECD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31FA4, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x86F02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31FAC, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x86F22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31FAC, symSize: 0x8 } + - { offsetInCU: 0x204, offset: 0x87086, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3B8, symBinAddr: 0x3235C, symSize: 0x1C } + - { offsetInCU: 0x220, offset: 0x870A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x458, symBinAddr: 0x323BC, symSize: 0x30 } + - { offsetInCU: 0x234, offset: 0x870B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x488, symBinAddr: 0x323EC, symSize: 0x30 } + - { offsetInCU: 0x248, offset: 0x870CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x4B8, symBinAddr: 0x3241C, symSize: 0x74 } + - { offsetInCU: 0x25C, offset: 0x870DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x52C, symBinAddr: 0x32490, symSize: 0xAC } + - { offsetInCU: 0x270, offset: 0x870F2, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x5D8, symBinAddr: 0x3253C, symSize: 0x1C } + - { offsetInCU: 0x284, offset: 0x87106, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x5F4, symBinAddr: 0x32558, symSize: 0x74 } + - { offsetInCU: 0x298, offset: 0x8711A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x668, symBinAddr: 0x325CC, symSize: 0x5C } + - { offsetInCU: 0x2AC, offset: 0x8712E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x6C4, symBinAddr: 0x32628, symSize: 0x60 } + - { offsetInCU: 0x2C0, offset: 0x87142, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x724, symBinAddr: 0x32688, symSize: 0x10 } + - { offsetInCU: 0x472, offset: 0x872F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x31FB4, symSize: 0xE4 } + - { offsetInCU: 0x615, offset: 0x87497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0xF4, symBinAddr: 0x32098, symSize: 0x2C4 } + - { offsetInCU: 0x27, offset: 0x878D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32698, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x878F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32698, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x87928, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x326A0, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x87948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x326A0, symSize: 0x8 } + - { offsetInCU: 0xAE, offset: 0x8795B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x326A8, symSize: 0x10 } + - { offsetInCU: 0xCA, offset: 0x87977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x20, symBinAddr: 0x326B8, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x87A4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x326C8, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x87A69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x326C8, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x87A9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x326D0, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x87ABE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x326D0, symSize: 0x8 } + - { offsetInCU: 0xAE, offset: 0x87AD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x326D8, symSize: 0x10 } + - { offsetInCU: 0xCA, offset: 0x87AED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x20, symBinAddr: 0x326E8, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x87BE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x326F8, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x87C19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32700, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x87C39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32700, symSize: 0x8 } + - { offsetInCU: 0x26D, offset: 0x87E06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x290, symBinAddr: 0x32988, symSize: 0x88 } + - { offsetInCU: 0x337, offset: 0x87ED0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x318, symBinAddr: 0x32A10, symSize: 0x118 } + - { offsetInCU: 0x497, offset: 0x88030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x4B4, symBinAddr: 0x32B6C, symSize: 0x30 } + - { offsetInCU: 0x4AB, offset: 0x88044, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x4E4, symBinAddr: 0x32B9C, symSize: 0x30 } + - { offsetInCU: 0x4BF, offset: 0x88058, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x514, symBinAddr: 0x32BCC, symSize: 0x5C } + - { offsetInCU: 0x4D3, offset: 0x8806C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x570, symBinAddr: 0x32C28, symSize: 0x94 } + - { offsetInCU: 0x4E7, offset: 0x88080, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x604, symBinAddr: 0x32CBC, symSize: 0x14 } + - { offsetInCU: 0x4FB, offset: 0x88094, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x618, symBinAddr: 0x32CD0, symSize: 0x64 } + - { offsetInCU: 0x50F, offset: 0x880A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x67C, symBinAddr: 0x32D34, symSize: 0x5C } + - { offsetInCU: 0x523, offset: 0x880BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x6D8, symBinAddr: 0x32D90, symSize: 0x5C } + - { offsetInCU: 0x537, offset: 0x880D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x734, symBinAddr: 0x32DEC, symSize: 0x10 } + - { offsetInCU: 0x755, offset: 0x882EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32708, symSize: 0x128 } + - { offsetInCU: 0x968, offset: 0x88501, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x32830, symSize: 0x158 } + - { offsetInCU: 0x4B, offset: 0x8875B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32DFC, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x88790, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32E04, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x887B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32E04, symSize: 0x8 } + - { offsetInCU: 0x26D, offset: 0x8897D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x290, symBinAddr: 0x3308C, symSize: 0x88 } + - { offsetInCU: 0x31D, offset: 0x88A2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x318, symBinAddr: 0x33114, symSize: 0xD4 } + - { offsetInCU: 0x42E, offset: 0x88B3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x470, symBinAddr: 0x3322C, symSize: 0x30 } + - { offsetInCU: 0x442, offset: 0x88B52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x4A0, symBinAddr: 0x3325C, symSize: 0x30 } + - { offsetInCU: 0x456, offset: 0x88B66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x4D0, symBinAddr: 0x3328C, symSize: 0x5C } + - { offsetInCU: 0x46A, offset: 0x88B7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x52C, symBinAddr: 0x332E8, symSize: 0x94 } + - { offsetInCU: 0x47E, offset: 0x88B8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x5D4, symBinAddr: 0x3337C, symSize: 0x64 } + - { offsetInCU: 0x492, offset: 0x88BA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x638, symBinAddr: 0x333E0, symSize: 0x5C } + - { offsetInCU: 0x4A6, offset: 0x88BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x694, symBinAddr: 0x3343C, symSize: 0x5C } + - { offsetInCU: 0x4BA, offset: 0x88BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x6F0, symBinAddr: 0x33498, symSize: 0x10 } + - { offsetInCU: 0x6D8, offset: 0x88DE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32E0C, symSize: 0x128 } + - { offsetInCU: 0x8EB, offset: 0x88FFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x32F34, symSize: 0x158 } + - { offsetInCU: 0x27, offset: 0x8921C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x334A8, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x89240, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x334A8, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x89275, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x334B0, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x89295, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x334B0, symSize: 0x8 } + - { offsetInCU: 0x2BA, offset: 0x894AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3F0, symBinAddr: 0x33898, symSize: 0x40 } + - { offsetInCU: 0x469, offset: 0x8965E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x430, symBinAddr: 0x338D8, symSize: 0x824 } + - { offsetInCU: 0xA7F, offset: 0x89C74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xC54, symBinAddr: 0x340FC, symSize: 0x48 } + - { offsetInCU: 0xA93, offset: 0x89C88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xCDC, symBinAddr: 0x34144, symSize: 0x30 } + - { offsetInCU: 0xAA7, offset: 0x89C9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xD0C, symBinAddr: 0x34174, symSize: 0x48 } + - { offsetInCU: 0xABB, offset: 0x89CB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xD54, symBinAddr: 0x341BC, symSize: 0xB4 } + - { offsetInCU: 0xACF, offset: 0x89CC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xE08, symBinAddr: 0x34270, symSize: 0x104 } + - { offsetInCU: 0xAE3, offset: 0x89CD8, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xF0C, symBinAddr: 0x34374, symSize: 0x1C } + - { offsetInCU: 0xAF7, offset: 0x89CEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xF28, symBinAddr: 0x34390, symSize: 0xB4 } + - { offsetInCU: 0xB0B, offset: 0x89D00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0xFDC, symBinAddr: 0x34444, symSize: 0x48 } + - { offsetInCU: 0xB1F, offset: 0x89D14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0x1024, symBinAddr: 0x3448C, symSize: 0x58 } + - { offsetInCU: 0xB33, offset: 0x89D28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0x107C, symBinAddr: 0x344E4, symSize: 0x10 } + - { offsetInCU: 0xEA9, offset: 0x8A09E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x334B8, symSize: 0x128 } + - { offsetInCU: 0x114A, offset: 0x8A33F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x335E0, symSize: 0x184 } + - { offsetInCU: 0x14DE, offset: 0x8A6D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2BC, symBinAddr: 0x33764, symSize: 0x134 } + - { offsetInCU: 0x4B, offset: 0x8AA08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x344F4, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8AA3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x344FC, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8AA5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x344FC, symSize: 0x8 } + - { offsetInCU: 0x26D, offset: 0x8AC2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x290, symBinAddr: 0x34784, symSize: 0x88 } + - { offsetInCU: 0x31D, offset: 0x8ACDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x318, symBinAddr: 0x3480C, symSize: 0xD4 } + - { offsetInCU: 0x42E, offset: 0x8ADEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x470, symBinAddr: 0x34924, symSize: 0x30 } + - { offsetInCU: 0x442, offset: 0x8ADFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x4A0, symBinAddr: 0x34954, symSize: 0x30 } + - { offsetInCU: 0x456, offset: 0x8AE13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x4D0, symBinAddr: 0x34984, symSize: 0x5C } + - { offsetInCU: 0x46A, offset: 0x8AE27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x52C, symBinAddr: 0x349E0, symSize: 0x94 } + - { offsetInCU: 0x47E, offset: 0x8AE3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x5D4, symBinAddr: 0x34A74, symSize: 0x64 } + - { offsetInCU: 0x492, offset: 0x8AE4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x638, symBinAddr: 0x34AD8, symSize: 0x5C } + - { offsetInCU: 0x4A6, offset: 0x8AE63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x694, symBinAddr: 0x34B34, symSize: 0x5C } + - { offsetInCU: 0x4BA, offset: 0x8AE77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x6F0, symBinAddr: 0x34B90, symSize: 0x10 } + - { offsetInCU: 0x6D8, offset: 0x8B095, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x34504, symSize: 0x128 } + - { offsetInCU: 0x8EB, offset: 0x8B2A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x3462C, symSize: 0x158 } + - { offsetInCU: 0x4B, offset: 0x8B4ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34BA0, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8B522, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34BA8, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8B542, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34BA8, symSize: 0x8 } + - { offsetInCU: 0x26D, offset: 0x8B70F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x258, symBinAddr: 0x34DF8, symSize: 0x88 } + - { offsetInCU: 0x2E1, offset: 0x8B783, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2E0, symBinAddr: 0x34E80, symSize: 0xD0 } + - { offsetInCU: 0x3F2, offset: 0x8B894, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x434, symBinAddr: 0x34F94, symSize: 0x30 } + - { offsetInCU: 0x406, offset: 0x8B8A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x464, symBinAddr: 0x34FC4, symSize: 0x30 } + - { offsetInCU: 0x41A, offset: 0x8B8BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x494, symBinAddr: 0x34FF4, symSize: 0x64 } + - { offsetInCU: 0x42E, offset: 0x8B8D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x4F8, symBinAddr: 0x35058, symSize: 0x94 } + - { offsetInCU: 0x442, offset: 0x8B8E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x5A0, symBinAddr: 0x350EC, symSize: 0x6C } + - { offsetInCU: 0x456, offset: 0x8B8F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x60C, symBinAddr: 0x35158, symSize: 0x5C } + - { offsetInCU: 0x46A, offset: 0x8B90C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x668, symBinAddr: 0x351B4, symSize: 0x5C } + - { offsetInCU: 0x47E, offset: 0x8B920, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x6C4, symBinAddr: 0x35210, symSize: 0x10 } + - { offsetInCU: 0x695, offset: 0x8BB37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x34BB0, symSize: 0xF0 } + - { offsetInCU: 0x893, offset: 0x8BD35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x100, symBinAddr: 0x34CA0, symSize: 0x158 } + - { offsetInCU: 0x27, offset: 0x8BF57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35220, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8BF7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35220, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8BFB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35228, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8BFD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35228, symSize: 0x8 } + - { offsetInCU: 0xC9, offset: 0x8BFF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x35230, symSize: 0x88 } + - { offsetInCU: 0x35A, offset: 0x8C28A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x98, symBinAddr: 0x352B8, symSize: 0x500 } + - { offsetInCU: 0xAD8, offset: 0x8CA08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x598, symBinAddr: 0x357B8, symSize: 0x30 } + - { offsetInCU: 0xAEC, offset: 0x8CA1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x5C8, symBinAddr: 0x357E8, symSize: 0x40 } + - { offsetInCU: 0xB00, offset: 0x8CA30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x608, symBinAddr: 0x35828, symSize: 0x7C } + - { offsetInCU: 0xB14, offset: 0x8CA44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x684, symBinAddr: 0x358A4, symSize: 0xBC } + - { offsetInCU: 0xB28, offset: 0x8CA58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x75C, symBinAddr: 0x35960, symSize: 0x84 } + - { offsetInCU: 0xB3C, offset: 0x8CA6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x7E0, symBinAddr: 0x359E4, symSize: 0x48 } + - { offsetInCU: 0xB50, offset: 0x8CA80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x828, symBinAddr: 0x35A2C, symSize: 0x4C } + - { offsetInCU: 0xB64, offset: 0x8CA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x874, symBinAddr: 0x35A78, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8CEC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35A88, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8CEFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35A90, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8CF1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x35A90, symSize: 0x8 } + - { offsetInCU: 0x515, offset: 0x8D391, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xAB4, symBinAddr: 0x3653C, symSize: 0x38 } + - { offsetInCU: 0x546, offset: 0x8D3C2, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xD40, symBinAddr: 0x36788, symSize: 0x28 } + - { offsetInCU: 0x55A, offset: 0x8D3D6, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xD68, symBinAddr: 0x367B0, symSize: 0x28 } + - { offsetInCU: 0x56E, offset: 0x8D3EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xD90, symBinAddr: 0x367D8, symSize: 0x30 } + - { offsetInCU: 0x582, offset: 0x8D3FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xDC0, symBinAddr: 0x36808, symSize: 0x30 } + - { offsetInCU: 0x596, offset: 0x8D412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xDF0, symBinAddr: 0x36838, symSize: 0x84 } + - { offsetInCU: 0x5AA, offset: 0x8D426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xE74, symBinAddr: 0x368BC, symSize: 0xAC } + - { offsetInCU: 0x5BE, offset: 0x8D43A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0xF34, symBinAddr: 0x36968, symSize: 0x8C } + - { offsetInCU: 0x5D2, offset: 0x8D44E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0xFC0, symBinAddr: 0x369F4, symSize: 0x5C } + - { offsetInCU: 0x5E6, offset: 0x8D462, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x101C, symBinAddr: 0x36A50, symSize: 0x60 } + - { offsetInCU: 0x5FA, offset: 0x8D476, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x107C, symBinAddr: 0x36AB0, symSize: 0x10 } + - { offsetInCU: 0xA48, offset: 0x8D8C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x35A98, symSize: 0xAC } + - { offsetInCU: 0xBFB, offset: 0x8DA77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xBC, symBinAddr: 0x35B44, symSize: 0x26C } + - { offsetInCU: 0x1047, offset: 0x8DEC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x328, symBinAddr: 0x35DB0, symSize: 0x1E8 } + - { offsetInCU: 0x14B6, offset: 0x8E332, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x510, symBinAddr: 0x35F98, symSize: 0x5A4 } + - { offsetInCU: 0x195E, offset: 0x8E7DA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xB2C, symBinAddr: 0x36574, symSize: 0x1D0 } + - { offsetInCU: 0x27, offset: 0x8E881, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36AC0, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8E8A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36AC0, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8E8DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36AC8, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8E8FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36AC8, symSize: 0x8 } + - { offsetInCU: 0xDE, offset: 0x8E938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBC, symBinAddr: 0x36B7C, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x8E9CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF4, symBinAddr: 0x36BB4, symSize: 0x108 } + - { offsetInCU: 0x27E, offset: 0x8EAD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x1FC, symBinAddr: 0x36CBC, symSize: 0x30 } + - { offsetInCU: 0x292, offset: 0x8EAEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x22C, symBinAddr: 0x36CEC, symSize: 0x38 } + - { offsetInCU: 0x2A6, offset: 0x8EB00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x264, symBinAddr: 0x36D24, symSize: 0x6C } + - { offsetInCU: 0x2BA, offset: 0x8EB14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x2D0, symBinAddr: 0x36D90, symSize: 0xA4 } + - { offsetInCU: 0x2CE, offset: 0x8EB28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x388, symBinAddr: 0x36E34, symSize: 0x74 } + - { offsetInCU: 0x2E2, offset: 0x8EB3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x3FC, symBinAddr: 0x36EA8, symSize: 0x48 } + - { offsetInCU: 0x2F6, offset: 0x8EB50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x444, symBinAddr: 0x36EF0, symSize: 0x4C } + - { offsetInCU: 0x30A, offset: 0x8EB64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x490, symBinAddr: 0x36F3C, symSize: 0x10 } + - { offsetInCU: 0x445, offset: 0x8EC9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x36AD0, symSize: 0xAC } + - { offsetInCU: 0x27, offset: 0x8ED8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36F4C, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x8EDAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36F4C, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x8EDE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36F54, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x8EE00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x36F54, symSize: 0x8 } + - { offsetInCU: 0xC2, offset: 0x8EE27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x36F5C, symSize: 0x1C } + - { offsetInCU: 0x255, offset: 0x8EFBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x2C, symBinAddr: 0x36F78, symSize: 0x18C } + - { offsetInCU: 0x57D, offset: 0x8F2E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1B8, symBinAddr: 0x37104, symSize: 0x88 } + - { offsetInCU: 0x70F, offset: 0x8F474, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x240, symBinAddr: 0x3718C, symSize: 0x158 } + - { offsetInCU: 0xAA9, offset: 0x8F80E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x398, symBinAddr: 0x372E4, symSize: 0x4F8 } + - { offsetInCU: 0xF3E, offset: 0x8FCA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x8D0, symBinAddr: 0x377DC, symSize: 0x30 } + - { offsetInCU: 0xF52, offset: 0x8FCB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0x900, symBinAddr: 0x3780C, symSize: 0x30 } + - { offsetInCU: 0xF66, offset: 0x8FCCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0x930, symBinAddr: 0x3783C, symSize: 0x64 } + - { offsetInCU: 0xF7A, offset: 0x8FCDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0x994, symBinAddr: 0x378A0, symSize: 0x8C } + - { offsetInCU: 0xF8E, offset: 0x8FCF3, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xA20, symBinAddr: 0x3792C, symSize: 0xC } + - { offsetInCU: 0xFA2, offset: 0x8FD07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xA2C, symBinAddr: 0x37938, symSize: 0x6C } + - { offsetInCU: 0xFB6, offset: 0x8FD1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xA98, symBinAddr: 0x379A4, symSize: 0x5C } + - { offsetInCU: 0xFCA, offset: 0x8FD2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xAF4, symBinAddr: 0x37A00, symSize: 0x54 } + - { offsetInCU: 0xFDE, offset: 0x8FD43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xB48, symBinAddr: 0x37A54, symSize: 0x10 } + - { offsetInCU: 0x153, offset: 0x9042A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x62C, symBinAddr: 0x38090, symSize: 0x74 } + - { offsetInCU: 0x2AF, offset: 0x90586, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x6D0, symBinAddr: 0x38134, symSize: 0x60 } + - { offsetInCU: 0x2DE, offset: 0x905B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x730, symBinAddr: 0x38194, symSize: 0x20 } + - { offsetInCU: 0x41D, offset: 0x906F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x18, symBinAddr: 0x37A7C, symSize: 0x44 } + - { offsetInCU: 0x442, offset: 0x90719, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x74, symBinAddr: 0x37AD8, symSize: 0x44 } + - { offsetInCU: 0x467, offset: 0x9073E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x178, symBinAddr: 0x37BDC, symSize: 0x44 } + - { offsetInCU: 0x48C, offset: 0x90763, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x264, symBinAddr: 0x37CC8, symSize: 0x44 } + - { offsetInCU: 0x4B1, offset: 0x90788, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x2A8, symBinAddr: 0x37D0C, symSize: 0x4 } + - { offsetInCU: 0x577, offset: 0x9084E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x37D10, symSize: 0x2F8 } + - { offsetInCU: 0x9F5, offset: 0x90CCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x5A4, symBinAddr: 0x38008, symSize: 0x20 } + - { offsetInCU: 0xA09, offset: 0x90CE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x5C4, symBinAddr: 0x38028, symSize: 0x68 } + - { offsetInCU: 0xA3A, offset: 0x90D11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x6A0, symBinAddr: 0x38104, symSize: 0x30 } + - { offsetInCU: 0x24A, offset: 0x90F88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xE6C, symBinAddr: 0x3902C, symSize: 0x20 } + - { offsetInCU: 0x3E2, offset: 0x91120, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xEBC, symBinAddr: 0x3907C, symSize: 0x4C } + - { offsetInCU: 0x411, offset: 0x9114F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0xF08, symBinAddr: 0x390C8, symSize: 0x20 } + - { offsetInCU: 0x58B, offset: 0x912C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x18, symBinAddr: 0x381D8, symSize: 0x44 } + - { offsetInCU: 0x5B0, offset: 0x912EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x74, symBinAddr: 0x38234, symSize: 0x44 } + - { offsetInCU: 0x5D5, offset: 0x91313, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x16C, symBinAddr: 0x3832C, symSize: 0x44 } + - { offsetInCU: 0x5FA, offset: 0x91338, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x25C, symBinAddr: 0x3841C, symSize: 0x44 } + - { offsetInCU: 0x61F, offset: 0x9135D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x2B8, symBinAddr: 0x38478, symSize: 0x44 } + - { offsetInCU: 0x644, offset: 0x91382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x3A8, symBinAddr: 0x38568, symSize: 0x44 } + - { offsetInCU: 0x669, offset: 0x913A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x404, symBinAddr: 0x385C4, symSize: 0x44 } + - { offsetInCU: 0x68E, offset: 0x913CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x448, symBinAddr: 0x38608, symSize: 0x4 } + - { offsetInCU: 0x6AF, offset: 0x913ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x44C, symBinAddr: 0x3860C, symSize: 0x54 } + - { offsetInCU: 0x6CE, offset: 0x9140C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x4A0, symBinAddr: 0x38660, symSize: 0x5C } + - { offsetInCU: 0x703, offset: 0x91441, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x4FC, symBinAddr: 0x386BC, symSize: 0x44 } + - { offsetInCU: 0x728, offset: 0x91466, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x5E8, symBinAddr: 0x387A8, symSize: 0x44 } + - { offsetInCU: 0x898, offset: 0x915D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x62C, symBinAddr: 0x387EC, symSize: 0x758 } + - { offsetInCU: 0x169C, offset: 0x923DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xD84, symBinAddr: 0x38F44, symSize: 0x20 } + - { offsetInCU: 0x16B0, offset: 0x923EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xDA4, symBinAddr: 0x38F64, symSize: 0xC8 } + - { offsetInCU: 0x16D3, offset: 0x92411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xE8C, symBinAddr: 0x3904C, symSize: 0x30 } + - { offsetInCU: 0x4CA, offset: 0x92912, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1874, symBinAddr: 0x3A97C, symSize: 0x20 } + - { offsetInCU: 0x716, offset: 0x92B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x18C4, symBinAddr: 0x3A9CC, symSize: 0x9C } + - { offsetInCU: 0x973, offset: 0x92DBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x3410, symBinAddr: 0x3C518, symSize: 0x20 } + - { offsetInCU: 0xC47, offset: 0x9308F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x39108, symSize: 0x20 } + - { offsetInCU: 0xC5B, offset: 0x930A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x39128, symSize: 0x48 } + - { offsetInCU: 0xC80, offset: 0x930C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x39170, symSize: 0x5C } + - { offsetInCU: 0xCA9, offset: 0x930F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x391CC, symSize: 0x44 } + - { offsetInCU: 0xCCE, offset: 0x93116, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x120, symBinAddr: 0x39228, symSize: 0x44 } + - { offsetInCU: 0xCF3, offset: 0x9313B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x17C, symBinAddr: 0x39284, symSize: 0x44 } + - { offsetInCU: 0xD18, offset: 0x93160, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1C0, symBinAddr: 0x392C8, symSize: 0x4C } + - { offsetInCU: 0xD3D, offset: 0x93185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x20C, symBinAddr: 0x39314, symSize: 0x50 } + - { offsetInCU: 0xD62, offset: 0x931AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x25C, symBinAddr: 0x39364, symSize: 0x44 } + - { offsetInCU: 0xD87, offset: 0x931CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x393A8, symSize: 0x4 } + - { offsetInCU: 0xDA8, offset: 0x931F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2A4, symBinAddr: 0x393AC, symSize: 0x44 } + - { offsetInCU: 0xDCD, offset: 0x93215, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvs', symObjAddr: 0x2E8, symBinAddr: 0x393F0, symSize: 0x48 } + - { offsetInCU: 0xDF6, offset: 0x9323E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x330, symBinAddr: 0x39438, symSize: 0x44 } + - { offsetInCU: 0xE1B, offset: 0x93263, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x428, symBinAddr: 0x39530, symSize: 0x44 } + - { offsetInCU: 0xE40, offset: 0x93288, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x484, symBinAddr: 0x3958C, symSize: 0x44 } + - { offsetInCU: 0xE65, offset: 0x932AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x4E0, symBinAddr: 0x395E8, symSize: 0x44 } + - { offsetInCU: 0xE8A, offset: 0x932D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x53C, symBinAddr: 0x39644, symSize: 0x44 } + - { offsetInCU: 0xEAF, offset: 0x932F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x580, symBinAddr: 0x39688, symSize: 0x48 } + - { offsetInCU: 0xED4, offset: 0x9331C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x5C8, symBinAddr: 0x396D0, symSize: 0x50 } + - { offsetInCU: 0xF09, offset: 0x93351, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x618, symBinAddr: 0x39720, symSize: 0x44 } + - { offsetInCU: 0xF28, offset: 0x93370, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x65C, symBinAddr: 0x39764, symSize: 0x44 } + - { offsetInCU: 0xF4D, offset: 0x93395, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvs', symObjAddr: 0x6A0, symBinAddr: 0x397A8, symSize: 0x48 } + - { offsetInCU: 0xF76, offset: 0x933BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x6E8, symBinAddr: 0x397F0, symSize: 0x44 } + - { offsetInCU: 0xF9B, offset: 0x933E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x72C, symBinAddr: 0x39834, symSize: 0x44 } + - { offsetInCU: 0xFC0, offset: 0x93408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvs', symObjAddr: 0x770, symBinAddr: 0x39878, symSize: 0x48 } + - { offsetInCU: 0xFE9, offset: 0x93431, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x7B8, symBinAddr: 0x398C0, symSize: 0x44 } + - { offsetInCU: 0x100E, offset: 0x93456, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x7FC, symBinAddr: 0x39904, symSize: 0x44 } + - { offsetInCU: 0x1033, offset: 0x9347B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvs', symObjAddr: 0x840, symBinAddr: 0x39948, symSize: 0x48 } + - { offsetInCU: 0x105C, offset: 0x934A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x888, symBinAddr: 0x39990, symSize: 0x44 } + - { offsetInCU: 0x1081, offset: 0x934C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x978, symBinAddr: 0x39A80, symSize: 0x44 } + - { offsetInCU: 0x10A6, offset: 0x934EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0x9D4, symBinAddr: 0x39ADC, symSize: 0x44 } + - { offsetInCU: 0x10CB, offset: 0x93513, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0xA30, symBinAddr: 0x39B38, symSize: 0x44 } + - { offsetInCU: 0x10F0, offset: 0x93538, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xB34, symBinAddr: 0x39C3C, symSize: 0x44 } + - { offsetInCU: 0x1115, offset: 0x9355D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xB78, symBinAddr: 0x39C80, symSize: 0x48 } + - { offsetInCU: 0x113A, offset: 0x93582, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xBC0, symBinAddr: 0x39CC8, symSize: 0x50 } + - { offsetInCU: 0x1163, offset: 0x935AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xC10, symBinAddr: 0x39D18, symSize: 0x44 } + - { offsetInCU: 0x14F1, offset: 0x93939, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xC54, symBinAddr: 0x39D5C, symSize: 0xA3C } + - { offsetInCU: 0x216A, offset: 0x945B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x1700, symBinAddr: 0x3A808, symSize: 0x174 } + - { offsetInCU: 0x218F, offset: 0x945D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1894, symBinAddr: 0x3A99C, symSize: 0x30 } + - { offsetInCU: 0x21B9, offset: 0x94601, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1960, symBinAddr: 0x3AA68, symSize: 0x64 } + - { offsetInCU: 0x21FE, offset: 0x94646, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x19C4, symBinAddr: 0x3AACC, symSize: 0x34 } + - { offsetInCU: 0x223C, offset: 0x94684, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19F8, symBinAddr: 0x3AB00, symSize: 0xE0 } + - { offsetInCU: 0x22B0, offset: 0x946F8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1AD8, symBinAddr: 0x3ABE0, symSize: 0xA0 } + - { offsetInCU: 0x22E0, offset: 0x94728, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1B9C, symBinAddr: 0x3ACA4, symSize: 0x1C8 } + - { offsetInCU: 0x238E, offset: 0x947D6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1D64, symBinAddr: 0x3AE6C, symSize: 0x1B8 } + - { offsetInCU: 0x245E, offset: 0x948A6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x228C, symBinAddr: 0x3B394, symSize: 0x1C4 } + - { offsetInCU: 0x2513, offset: 0x9495B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2474, symBinAddr: 0x3B57C, symSize: 0x354 } + - { offsetInCU: 0x25F6, offset: 0x94A3E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x27C8, symBinAddr: 0x3B8D0, symSize: 0x338 } + - { offsetInCU: 0x26D9, offset: 0x94B21, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x30D0, symBinAddr: 0x3C1D8, symSize: 0x340 } + - { offsetInCU: 0x27, offset: 0x94C50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3C57C, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x94DF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3C9B4, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x94EBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x488, symBinAddr: 0x3CA04, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x950D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xA78, symBinAddr: 0x3CFF4, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x952F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3C57C, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x9530D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3C59C, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x95338, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3C5E8, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x9535D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3C638, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x95382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3C67C, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x953A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3C680, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x953C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3C6C4, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x953F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3C70C, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x95416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3C750, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9543B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3C7A4, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x95464, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3C800, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x95489, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3C844, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x954AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3C88C, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x954E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3C8DC, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x95502, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3C920, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x95516, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3C928, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x95539, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x458, symBinAddr: 0x3C9D4, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x95771, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3CA40, symSize: 0x5B4 } + - { offsetInCU: 0x27, offset: 0x95E48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D020, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x95FE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3D458, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x960B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x488, symBinAddr: 0x3D4A8, symSize: 0x3C } + - { offsetInCU: 0x4CD, offset: 0x962EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xAB4, symBinAddr: 0x3DAD4, symSize: 0x20 } + - { offsetInCU: 0x6F1, offset: 0x96512, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D020, symSize: 0x20 } + - { offsetInCU: 0x705, offset: 0x96526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3D040, symSize: 0x4C } + - { offsetInCU: 0x730, offset: 0x96551, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3D08C, symSize: 0x50 } + - { offsetInCU: 0x755, offset: 0x96576, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3D0DC, symSize: 0x44 } + - { offsetInCU: 0x77A, offset: 0x9659B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3D120, symSize: 0x4 } + - { offsetInCU: 0x79B, offset: 0x965BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3D124, symSize: 0x44 } + - { offsetInCU: 0x7C0, offset: 0x965E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3D168, symSize: 0x48 } + - { offsetInCU: 0x7E9, offset: 0x9660A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3D1B0, symSize: 0x44 } + - { offsetInCU: 0x80E, offset: 0x9662F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3D1F4, symSize: 0x54 } + - { offsetInCU: 0x833, offset: 0x96654, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3D248, symSize: 0x5C } + - { offsetInCU: 0x85C, offset: 0x9667D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3D2A4, symSize: 0x44 } + - { offsetInCU: 0x881, offset: 0x966A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3D2E8, symSize: 0x48 } + - { offsetInCU: 0x8A6, offset: 0x966C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3D330, symSize: 0x50 } + - { offsetInCU: 0x8DB, offset: 0x966FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3D380, symSize: 0x44 } + - { offsetInCU: 0x8FA, offset: 0x9671B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3D3C4, symSize: 0x8 } + - { offsetInCU: 0x90E, offset: 0x9672F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3D3CC, symSize: 0x8C } + - { offsetInCU: 0x931, offset: 0x96752, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x458, symBinAddr: 0x3D478, symSize: 0x30 } + - { offsetInCU: 0xB6F, offset: 0x96990, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3D4E4, symSize: 0x5F0 } + - { offsetInCU: 0x393, offset: 0x97407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x1604, symBinAddr: 0x3F104, symSize: 0x20 } + - { offsetInCU: 0x761, offset: 0x977D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x1654, symBinAddr: 0x3F154, symSize: 0x74 } + - { offsetInCU: 0x790, offset: 0x97804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x16C8, symBinAddr: 0x3F1C8, symSize: 0x20 } + - { offsetInCU: 0xA9A, offset: 0x97B0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DB00, symSize: 0x20 } + - { offsetInCU: 0xAAE, offset: 0x97B22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3DB20, symSize: 0x48 } + - { offsetInCU: 0xAD3, offset: 0x97B47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3DB68, symSize: 0x5C } + - { offsetInCU: 0xAFC, offset: 0x97B70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3DBC4, symSize: 0x44 } + - { offsetInCU: 0xB21, offset: 0x97B95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0x108, symBinAddr: 0x3DC08, symSize: 0x4C } + - { offsetInCU: 0xB46, offset: 0x97BBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x154, symBinAddr: 0x3DC54, symSize: 0x50 } + - { offsetInCU: 0xB6B, offset: 0x97BDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x1A4, symBinAddr: 0x3DCA4, symSize: 0x44 } + - { offsetInCU: 0xB90, offset: 0x97C04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1E8, symBinAddr: 0x3DCE8, symSize: 0x54 } + - { offsetInCU: 0xBB5, offset: 0x97C29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x23C, symBinAddr: 0x3DD3C, symSize: 0x50 } + - { offsetInCU: 0xBDA, offset: 0x97C4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x28C, symBinAddr: 0x3DD8C, symSize: 0x44 } + - { offsetInCU: 0xBFF, offset: 0x97C73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2E8, symBinAddr: 0x3DDE8, symSize: 0x44 } + - { offsetInCU: 0xC24, offset: 0x97C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x32C, symBinAddr: 0x3DE2C, symSize: 0x4 } + - { offsetInCU: 0xC45, offset: 0x97CB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x348, symBinAddr: 0x3DE48, symSize: 0x44 } + - { offsetInCU: 0xC6A, offset: 0x97CDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3A4, symBinAddr: 0x3DEA4, symSize: 0x44 } + - { offsetInCU: 0xC8F, offset: 0x97D03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x490, symBinAddr: 0x3DF90, symSize: 0x44 } + - { offsetInCU: 0xCAE, offset: 0x97D22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivg', symObjAddr: 0x4D4, symBinAddr: 0x3DFD4, symSize: 0x44 } + - { offsetInCU: 0xCD3, offset: 0x97D47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivs', symObjAddr: 0x518, symBinAddr: 0x3E018, symSize: 0x48 } + - { offsetInCU: 0xCFC, offset: 0x97D70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x560, symBinAddr: 0x3E060, symSize: 0x44 } + - { offsetInCU: 0xD21, offset: 0x97D95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x3E164, symSize: 0x44 } + - { offsetInCU: 0xD46, offset: 0x97DBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x6A8, symBinAddr: 0x3E1A8, symSize: 0x54 } + - { offsetInCU: 0xD65, offset: 0x97DD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x6FC, symBinAddr: 0x3E1FC, symSize: 0x5C } + - { offsetInCU: 0xD8E, offset: 0x97E02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x758, symBinAddr: 0x3E258, symSize: 0x44 } + - { offsetInCU: 0xDB3, offset: 0x97E27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x848, symBinAddr: 0x3E348, symSize: 0x44 } + - { offsetInCU: 0xDD8, offset: 0x97E4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivg', symObjAddr: 0x88C, symBinAddr: 0x3E38C, symSize: 0x44 } + - { offsetInCU: 0xDFD, offset: 0x97E71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivs', symObjAddr: 0x8D0, symBinAddr: 0x3E3D0, symSize: 0x48 } + - { offsetInCU: 0xE26, offset: 0x97E9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x918, symBinAddr: 0x3E418, symSize: 0x44 } + - { offsetInCU: 0x11CC, offset: 0x98240, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x95C, symBinAddr: 0x3E45C, symSize: 0xB40 } + - { offsetInCU: 0x1E93, offset: 0x98F07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x150C, symBinAddr: 0x3F00C, symSize: 0xF8 } + - { offsetInCU: 0x1EB6, offset: 0x98F2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1624, symBinAddr: 0x3F124, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x98F94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F214, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x99134, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3F64C, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x991FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x488, symBinAddr: 0x3F69C, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x99419, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xA78, symBinAddr: 0x3FC8C, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x9963D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F214, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x99651, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3F234, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x9967C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3F280, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x996A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3F2D0, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x996C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3F314, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x996E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3F318, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x9970C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3F35C, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x99735, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3F3A4, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x9975A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3F3E8, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9977F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3F43C, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x997A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3F498, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x997CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3F4DC, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x997F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3F524, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x99827, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3F574, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x99846, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3F5B8, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x9985A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3F5C0, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x9987D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x458, symBinAddr: 0x3F66C, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x99AB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3F6D8, symSize: 0x5B4 } + - { offsetInCU: 0x27, offset: 0x9A18C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3FCB8, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9A32C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x400F0, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x9A3F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x488, symBinAddr: 0x40140, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x9A611, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xAB4, symBinAddr: 0x4076C, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x9A835, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3FCB8, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x9A849, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3FCD8, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x9A874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3FD24, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x9A899, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3FD74, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x9A8BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3FDB8, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x9A8DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3FDBC, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x9A904, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3FE00, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x9A92D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3FE48, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x9A952, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3FE8C, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9A977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3FEE0, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x9A9A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3FF3C, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x9A9C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3FF80, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x9A9EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3FFC8, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x9AA1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x40018, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x9AA3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x4005C, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x9AA52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x40064, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x9AA75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x458, symBinAddr: 0x40110, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x9ACAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x4017C, symSize: 0x5F0 } + - { offsetInCU: 0x27, offset: 0x9B3B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x40798, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9B558, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x44C, symBinAddr: 0x40BE4, symSize: 0x20 } + - { offsetInCU: 0x2A8, offset: 0x9B639, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x49C, symBinAddr: 0x40C34, symSize: 0x4C } + - { offsetInCU: 0x585, offset: 0x9B916, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xBFC, symBinAddr: 0x41394, symSize: 0x20 } + - { offsetInCU: 0x7E8, offset: 0x9BB79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x40798, symSize: 0x20 } + - { offsetInCU: 0x7FC, offset: 0x9BB8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x407B8, symSize: 0x48 } + - { offsetInCU: 0x827, offset: 0x9BBB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x40800, symSize: 0x50 } + - { offsetInCU: 0x85C, offset: 0x9BBED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x40850, symSize: 0x44 } + - { offsetInCU: 0x87B, offset: 0x9BC0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x40894, symSize: 0x4 } + - { offsetInCU: 0x89C, offset: 0x9BC2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x40898, symSize: 0x44 } + - { offsetInCU: 0x8C1, offset: 0x9BC52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x408DC, symSize: 0x48 } + - { offsetInCU: 0x8EA, offset: 0x9BC7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x40924, symSize: 0x44 } + - { offsetInCU: 0x90F, offset: 0x9BCA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x40968, symSize: 0x54 } + - { offsetInCU: 0x934, offset: 0x9BCC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x409BC, symSize: 0x5C } + - { offsetInCU: 0x95D, offset: 0x9BCEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x40A18, symSize: 0x44 } + - { offsetInCU: 0x982, offset: 0x9BD13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x40A5C, symSize: 0x48 } + - { offsetInCU: 0x9A7, offset: 0x9BD38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x40AA4, symSize: 0x50 } + - { offsetInCU: 0x9DC, offset: 0x9BD6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x40AF4, symSize: 0x44 } + - { offsetInCU: 0x9FB, offset: 0x9BD8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x40B38, symSize: 0x8 } + - { offsetInCU: 0xA0F, offset: 0x9BDA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x40B40, symSize: 0xA4 } + - { offsetInCU: 0xA34, offset: 0x9BDC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x46C, symBinAddr: 0x40C04, symSize: 0x30 } + - { offsetInCU: 0xCC3, offset: 0x9C054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4E8, symBinAddr: 0x40C80, symSize: 0x6A4 } + - { offsetInCU: 0x27, offset: 0x9C8CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x413C0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9CA6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x44C, symBinAddr: 0x4180C, symSize: 0x20 } + - { offsetInCU: 0x2A8, offset: 0x9CB4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x49C, symBinAddr: 0x4185C, symSize: 0x4C } + - { offsetInCU: 0x585, offset: 0x9CE2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xBFC, symBinAddr: 0x41FBC, symSize: 0x20 } + - { offsetInCU: 0x7E8, offset: 0x9D08F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x413C0, symSize: 0x20 } + - { offsetInCU: 0x7FC, offset: 0x9D0A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x413E0, symSize: 0x48 } + - { offsetInCU: 0x827, offset: 0x9D0CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x41428, symSize: 0x50 } + - { offsetInCU: 0x85C, offset: 0x9D103, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x41478, symSize: 0x44 } + - { offsetInCU: 0x87B, offset: 0x9D122, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x414BC, symSize: 0x4 } + - { offsetInCU: 0x89C, offset: 0x9D143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x414C0, symSize: 0x44 } + - { offsetInCU: 0x8C1, offset: 0x9D168, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x41504, symSize: 0x48 } + - { offsetInCU: 0x8EA, offset: 0x9D191, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x4154C, symSize: 0x44 } + - { offsetInCU: 0x90F, offset: 0x9D1B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x41590, symSize: 0x54 } + - { offsetInCU: 0x934, offset: 0x9D1DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x415E4, symSize: 0x5C } + - { offsetInCU: 0x95D, offset: 0x9D204, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x41640, symSize: 0x44 } + - { offsetInCU: 0x982, offset: 0x9D229, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x41684, symSize: 0x48 } + - { offsetInCU: 0x9A7, offset: 0x9D24E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x416CC, symSize: 0x50 } + - { offsetInCU: 0x9DC, offset: 0x9D283, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x4171C, symSize: 0x44 } + - { offsetInCU: 0x9FB, offset: 0x9D2A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x41760, symSize: 0x8 } + - { offsetInCU: 0xA0F, offset: 0x9D2B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x41768, symSize: 0xA4 } + - { offsetInCU: 0xA34, offset: 0x9D2DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x46C, symBinAddr: 0x4182C, symSize: 0x30 } + - { offsetInCU: 0xCC3, offset: 0x9D56A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4E8, symBinAddr: 0x418A8, symSize: 0x6A4 } + - { offsetInCU: 0x306, offset: 0x9E0C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x1218, symBinAddr: 0x43200, symSize: 0x2C } + - { offsetInCU: 0x384, offset: 0x9E141, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0xA34, symBinAddr: 0x42A1C, symSize: 0x20 } + - { offsetInCU: 0x5E3, offset: 0x9E3A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1274, symBinAddr: 0x4325C, symSize: 0x60 } + - { offsetInCU: 0x888, offset: 0x9E645, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x41FE8, symSize: 0x48 } + - { offsetInCU: 0x8B3, offset: 0x9E670, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x48, symBinAddr: 0x42030, symSize: 0x5C } + - { offsetInCU: 0x8E8, offset: 0x9E6A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0xA4, symBinAddr: 0x4208C, symSize: 0x44 } + - { offsetInCU: 0x90D, offset: 0x9E6CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xE8, symBinAddr: 0x420D0, symSize: 0x4C } + - { offsetInCU: 0x92C, offset: 0x9E6E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x134, symBinAddr: 0x4211C, symSize: 0x50 } + - { offsetInCU: 0x95D, offset: 0x9E71A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x184, symBinAddr: 0x4216C, symSize: 0x44 } + - { offsetInCU: 0x982, offset: 0x9E73F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x421C8, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x9E764, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x224, symBinAddr: 0x4220C, symSize: 0x4C } + - { offsetInCU: 0x9C6, offset: 0x9E783, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x270, symBinAddr: 0x42258, symSize: 0x50 } + - { offsetInCU: 0x9F7, offset: 0x9E7B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2C0, symBinAddr: 0x422A8, symSize: 0x44 } + - { offsetInCU: 0xA1C, offset: 0x9E7D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x422EC, symSize: 0x4 } + - { offsetInCU: 0xA3D, offset: 0x9E7FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x320, symBinAddr: 0x42308, symSize: 0x44 } + - { offsetInCU: 0xA62, offset: 0x9E81F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x37C, symBinAddr: 0x42364, symSize: 0x44 } + - { offsetInCU: 0xA87, offset: 0x9E844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x468, symBinAddr: 0x42450, symSize: 0x44 } + - { offsetInCU: 0xAAC, offset: 0x9E869, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x42548, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x9E88E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x4264C, symSize: 0x44 } + - { offsetInCU: 0xAFC, offset: 0x9E8B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x6A8, symBinAddr: 0x42690, symSize: 0xBC } + - { offsetInCU: 0xB10, offset: 0x9E8CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x764, symBinAddr: 0x4274C, symSize: 0x2D0 } + - { offsetInCU: 0xD25, offset: 0x9EAE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0xA54, symBinAddr: 0x42A3C, symSize: 0x778 } + - { offsetInCU: 0x1B1D, offset: 0x9F8DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0x11CC, symBinAddr: 0x431B4, symSize: 0x20 } + - { offsetInCU: 0x1B31, offset: 0x9F8EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0x11EC, symBinAddr: 0x431D4, symSize: 0x2C } + - { offsetInCU: 0x1B8A, offset: 0x9F947, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x1244, symBinAddr: 0x4322C, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x9F9C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x432DC, symSize: 0xC8 } + - { offsetInCU: 0x390, offset: 0x9FD2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0x99C, symBinAddr: 0x43C78, symSize: 0x20 } + - { offsetInCU: 0x4EC, offset: 0x9FE88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x432DC, symSize: 0xC8 } + - { offsetInCU: 0x549, offset: 0x9FEE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xC8, symBinAddr: 0x433A4, symSize: 0xC4 } + - { offsetInCU: 0x586, offset: 0x9FF22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x18C, symBinAddr: 0x43468, symSize: 0x48 } + - { offsetInCU: 0x5A0, offset: 0x9FF3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x1D4, symBinAddr: 0x434B0, symSize: 0x50 } + - { offsetInCU: 0x5B4, offset: 0x9FF50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x224, symBinAddr: 0x43500, symSize: 0x3C } + - { offsetInCU: 0x5C8, offset: 0x9FF64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x260, symBinAddr: 0x4353C, symSize: 0x30 } + - { offsetInCU: 0x5DC, offset: 0x9FF78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x290, symBinAddr: 0x4356C, symSize: 0x3C } + - { offsetInCU: 0x5F0, offset: 0x9FF8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x2CC, symBinAddr: 0x435A8, symSize: 0x3C } + - { offsetInCU: 0x604, offset: 0x9FFA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x308, symBinAddr: 0x435E4, symSize: 0x30 } + - { offsetInCU: 0x618, offset: 0x9FFB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x338, symBinAddr: 0x43614, symSize: 0x3C } + - { offsetInCU: 0x62C, offset: 0x9FFC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x374, symBinAddr: 0x43650, symSize: 0x3C } + - { offsetInCU: 0x640, offset: 0x9FFDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x3B0, symBinAddr: 0x4368C, symSize: 0x30 } + - { offsetInCU: 0x654, offset: 0x9FFF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x3E0, symBinAddr: 0x436BC, symSize: 0x3C } + - { offsetInCU: 0x668, offset: 0xA0004, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x41C, symBinAddr: 0x436F8, symSize: 0x3C } + - { offsetInCU: 0x67C, offset: 0xA0018, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x458, symBinAddr: 0x43734, symSize: 0x30 } + - { offsetInCU: 0x690, offset: 0xA002C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x488, symBinAddr: 0x43764, symSize: 0x3C } + - { offsetInCU: 0x6A4, offset: 0xA0040, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x4C4, symBinAddr: 0x437A0, symSize: 0x3C } + - { offsetInCU: 0x6B8, offset: 0xA0054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x500, symBinAddr: 0x437DC, symSize: 0x4 } + - { offsetInCU: 0x6CC, offset: 0xA0068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x504, symBinAddr: 0x437E0, symSize: 0x30 } + - { offsetInCU: 0x6E0, offset: 0xA007C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x534, symBinAddr: 0x43810, symSize: 0x3C } + - { offsetInCU: 0x6F4, offset: 0xA0090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x570, symBinAddr: 0x4384C, symSize: 0x3C } + - { offsetInCU: 0x708, offset: 0xA00A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x5AC, symBinAddr: 0x43888, symSize: 0xA0 } + - { offsetInCU: 0x731, offset: 0xA00CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x64C, symBinAddr: 0x43928, symSize: 0xA4 } + - { offsetInCU: 0x7E3, offset: 0xA017F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x6F0, symBinAddr: 0x439CC, symSize: 0x26C } + - { offsetInCU: 0x994, offset: 0xA0330, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0x95C, symBinAddr: 0x43C38, symSize: 0x1C } + - { offsetInCU: 0x9C5, offset: 0xA0361, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0x978, symBinAddr: 0x43C54, symSize: 0x24 } + - { offsetInCU: 0x18D, offset: 0xA052F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xE8C, symBinAddr: 0x44AFC, symSize: 0xE4 } + - { offsetInCU: 0x1A9, offset: 0xA054B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xF70, symBinAddr: 0x44BE0, symSize: 0x54 } + - { offsetInCU: 0x1FB, offset: 0xA059D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x133C, symBinAddr: 0x44FAC, symSize: 0x3C } + - { offsetInCU: 0x24E, offset: 0xA05F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x290, symBinAddr: 0x43F3C, symSize: 0x20 } + - { offsetInCU: 0x262, offset: 0xA0604, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x2B0, symBinAddr: 0x43F5C, symSize: 0x20 } + - { offsetInCU: 0x276, offset: 0xA0618, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x440, symBinAddr: 0x440B0, symSize: 0x20 } + - { offsetInCU: 0x28A, offset: 0xA062C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x19D0, symBinAddr: 0x45640, symSize: 0x18 } + - { offsetInCU: 0x29E, offset: 0xA0640, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x19E8, symBinAddr: 0x45658, symSize: 0x20 } + - { offsetInCU: 0x2B2, offset: 0xA0654, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1A08, symBinAddr: 0x45678, symSize: 0x18 } + - { offsetInCU: 0x2C6, offset: 0xA0668, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x1A68, symBinAddr: 0x456D8, symSize: 0xC } + - { offsetInCU: 0x2DA, offset: 0xA067C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1A74, symBinAddr: 0x456E4, symSize: 0x10 } + - { offsetInCU: 0x2EE, offset: 0xA0690, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1A84, symBinAddr: 0x456F4, symSize: 0x8 } + - { offsetInCU: 0x302, offset: 0xA06A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1A8C, symBinAddr: 0x456FC, symSize: 0x10 } + - { offsetInCU: 0x316, offset: 0xA06B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1A9C, symBinAddr: 0x4570C, symSize: 0x10 } + - { offsetInCU: 0x32A, offset: 0xA06CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1AAC, symBinAddr: 0x4571C, symSize: 0x10 } + - { offsetInCU: 0x33E, offset: 0xA06E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1ABC, symBinAddr: 0x4572C, symSize: 0x10 } + - { offsetInCU: 0x352, offset: 0xA06F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1ACC, symBinAddr: 0x4573C, symSize: 0x10 } + - { offsetInCU: 0x366, offset: 0xA0708, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1ADC, symBinAddr: 0x4574C, symSize: 0x4 } + - { offsetInCU: 0x37A, offset: 0xA071C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1AE0, symBinAddr: 0x45750, symSize: 0x50 } + - { offsetInCU: 0x38E, offset: 0xA0730, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B30, symBinAddr: 0x457A0, symSize: 0xC } + - { offsetInCU: 0x3A2, offset: 0xA0744, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B3C, symBinAddr: 0x457AC, symSize: 0xC } + - { offsetInCU: 0x3B6, offset: 0xA0758, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1D8C, symBinAddr: 0x459FC, symSize: 0x7C } + - { offsetInCU: 0x3CA, offset: 0xA076C, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E08, symBinAddr: 0x45A78, symSize: 0x2C } + - { offsetInCU: 0x40A, offset: 0xA07AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0x109C, symBinAddr: 0x44D0C, symSize: 0x50 } + - { offsetInCU: 0x426, offset: 0xA07C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0x10EC, symBinAddr: 0x44D5C, symSize: 0x40 } + - { offsetInCU: 0x442, offset: 0xA07E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0x112C, symBinAddr: 0x44D9C, symSize: 0x4 } + - { offsetInCU: 0x45E, offset: 0xA0800, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0x1130, symBinAddr: 0x44DA0, symSize: 0x4 } + - { offsetInCU: 0x499, offset: 0xA083B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1134, symBinAddr: 0x44DA4, symSize: 0x10 } + - { offsetInCU: 0x4B9, offset: 0xA085B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1134, symBinAddr: 0x44DA4, symSize: 0x10 } + - { offsetInCU: 0x4CA, offset: 0xA086C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0x1144, symBinAddr: 0x44DB4, symSize: 0x60 } + - { offsetInCU: 0x4E6, offset: 0xA0888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x11A4, symBinAddr: 0x44E14, symSize: 0x64 } + - { offsetInCU: 0x502, offset: 0xA08A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1208, symBinAddr: 0x44E78, symSize: 0x50 } + - { offsetInCU: 0x542, offset: 0xA08E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x12EC, symBinAddr: 0x44F5C, symSize: 0x50 } + - { offsetInCU: 0x58C, offset: 0xA092E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x1378, symBinAddr: 0x44FE8, symSize: 0x78 } + - { offsetInCU: 0x5E4, offset: 0xA0986, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x13F0, symBinAddr: 0x45060, symSize: 0x60 } + - { offsetInCU: 0x622, offset: 0xA09C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x1450, symBinAddr: 0x450C0, symSize: 0x34 } + - { offsetInCU: 0x63E, offset: 0xA09E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1484, symBinAddr: 0x450F4, symSize: 0x8 } + - { offsetInCU: 0x674, offset: 0xA0A16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x148C, symBinAddr: 0x450FC, symSize: 0x5C } + - { offsetInCU: 0x6A5, offset: 0xA0A47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x14E8, symBinAddr: 0x45158, symSize: 0x5C } + - { offsetInCU: 0x6C1, offset: 0xA0A63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x1544, symBinAddr: 0x451B4, symSize: 0x70 } + - { offsetInCU: 0x6E4, offset: 0xA0A86, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x1758, symBinAddr: 0x453C8, symSize: 0x4 } + - { offsetInCU: 0x70D, offset: 0xA0AAF, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B48, symBinAddr: 0x457B8, symSize: 0x178 } + - { offsetInCU: 0x894, offset: 0xA0C36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x43CAC, symSize: 0x54 } + - { offsetInCU: 0x8A8, offset: 0xA0C4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x170, symBinAddr: 0x43E1C, symSize: 0x120 } + - { offsetInCU: 0x917, offset: 0xA0CB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x30C, symBinAddr: 0x43F7C, symSize: 0x78 } + - { offsetInCU: 0x967, offset: 0xA0D09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x384, symBinAddr: 0x43FF4, symSize: 0xBC } + - { offsetInCU: 0x9D1, offset: 0xA0D73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x460, symBinAddr: 0x440D0, symSize: 0x60 } + - { offsetInCU: 0x9F9, offset: 0xA0D9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x4C0, symBinAddr: 0x44130, symSize: 0x140 } + - { offsetInCU: 0xA61, offset: 0xA0E03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x600, symBinAddr: 0x44270, symSize: 0x64 } + - { offsetInCU: 0xAA3, offset: 0xA0E45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x664, symBinAddr: 0x442D4, symSize: 0x90 } + - { offsetInCU: 0xB01, offset: 0xA0EA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x6F4, symBinAddr: 0x44364, symSize: 0xC4 } + - { offsetInCU: 0xB53, offset: 0xA0EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x7B8, symBinAddr: 0x44428, symSize: 0xDC } + - { offsetInCU: 0xB96, offset: 0xA0F38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x894, symBinAddr: 0x44504, symSize: 0x104 } + - { offsetInCU: 0xBE6, offset: 0xA0F88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x998, symBinAddr: 0x44608, symSize: 0xD8 } + - { offsetInCU: 0xC44, offset: 0xA0FE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0xA70, symBinAddr: 0x446E0, symSize: 0xBC } + - { offsetInCU: 0xC86, offset: 0xA1028, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0xB2C, symBinAddr: 0x4479C, symSize: 0x88 } + - { offsetInCU: 0xCE4, offset: 0xA1086, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xBB4, symBinAddr: 0x44824, symSize: 0x190 } + - { offsetInCU: 0xD31, offset: 0xA10D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xD44, symBinAddr: 0x449B4, symSize: 0xB0 } + - { offsetInCU: 0xD7F, offset: 0xA1121, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xDF4, symBinAddr: 0x44A64, symSize: 0x24 } + - { offsetInCU: 0xDB5, offset: 0xA1157, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xE18, symBinAddr: 0x44A88, symSize: 0x2C } + - { offsetInCU: 0xDF5, offset: 0xA1197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xFC4, symBinAddr: 0x44C34, symSize: 0xA8 } + - { offsetInCU: 0xE44, offset: 0xA11E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0x106C, symBinAddr: 0x44CDC, symSize: 0x30 } + - { offsetInCU: 0xEB2, offset: 0xA1254, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x175C, symBinAddr: 0x453CC, symSize: 0x274 } ... diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 index c48f7a4..6676399 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml index 57d17f4..076f8c3 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml @@ -2,1830 +2,1661 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' relocations: - - { offsetInCU: 0x34, offset: 0x57F7E, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6CFF0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x57FB3, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6D020, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E088, symBinAddr: 0x88A30, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58043, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x407C, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5805F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x40C0, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x5807B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x40C4, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x580D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x4380, symSize: 0xD94 } - - { offsetInCU: 0x470, offset: 0x58439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1154, symBinAddr: 0x5114, symSize: 0x384 } - - { offsetInCU: 0x4D3, offset: 0x5849C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x14D8, symBinAddr: 0x5498, symSize: 0x20 } - - { offsetInCU: 0x500, offset: 0x584C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x16A4, symBinAddr: 0x5664, symSize: 0x6C8 } - - { offsetInCU: 0x804, offset: 0x587CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D6C, symBinAddr: 0x5D2C, symSize: 0x3E4 } - - { offsetInCU: 0xABA, offset: 0x58A83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2150, symBinAddr: 0x6110, symSize: 0x914 } - - { offsetInCU: 0xF90, offset: 0x58F59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A64, symBinAddr: 0x6A24, symSize: 0x678 } - - { offsetInCU: 0x138A, offset: 0x59353, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x30DC, symBinAddr: 0x709C, symSize: 0x3C18 } - - { offsetInCU: 0x2E80, offset: 0x5AE49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6D04, symBinAddr: 0xACB4, symSize: 0x150 } - - { offsetInCU: 0x2F6A, offset: 0x5AF33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6E54, symBinAddr: 0xAE04, symSize: 0x304 } - - { offsetInCU: 0x315B, offset: 0x5B124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7158, symBinAddr: 0xB108, symSize: 0x3C8 } - - { offsetInCU: 0x34C4, offset: 0x5B48D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7520, symBinAddr: 0xB4D0, symSize: 0x2E4 } - - { offsetInCU: 0x3698, offset: 0x5B661, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x7804, symBinAddr: 0xB7B4, symSize: 0x240 } - - { offsetInCU: 0x382A, offset: 0x5B7F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x7A44, symBinAddr: 0xB9F4, symSize: 0x244 } - - { offsetInCU: 0x39BC, offset: 0x5B985, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C88, symBinAddr: 0xBC38, symSize: 0x430 } - - { offsetInCU: 0x3B25, offset: 0x5BAEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x80B8, symBinAddr: 0xC068, symSize: 0x650 } - - { offsetInCU: 0x3E38, offset: 0x5BE01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x8708, symBinAddr: 0xC6B8, symSize: 0x224 } - - { offsetInCU: 0x4049, offset: 0x5C012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9B54, symBinAddr: 0xDB04, symSize: 0x15A8 } - - { offsetInCU: 0x5725, offset: 0x5D6EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4000, symSize: 0x3C } - - { offsetInCU: 0x5755, offset: 0x5D71E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x403C, symSize: 0x40 } - - { offsetInCU: 0x592D, offset: 0x5D8F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x14F8, symBinAddr: 0x54B8, symSize: 0x8 } - - { offsetInCU: 0x5941, offset: 0x5D90A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1500, symBinAddr: 0x54C0, symSize: 0x3C } - - { offsetInCU: 0x5955, offset: 0x5D91E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x153C, symBinAddr: 0x54FC, symSize: 0x168 } - - { offsetInCU: 0x5E9B, offset: 0x5DE64, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x89A0, symBinAddr: 0xC950, symSize: 0xC } - - { offsetInCU: 0x5EAF, offset: 0x5DE78, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x89AC, symBinAddr: 0xC95C, symSize: 0x4 } - - { offsetInCU: 0x5EC3, offset: 0x5DE8C, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x89B0, symBinAddr: 0xC960, symSize: 0x20 } - - { offsetInCU: 0x5ED7, offset: 0x5DEA0, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x89D0, symBinAddr: 0xC980, symSize: 0x28 } - - { offsetInCU: 0x5FE8, offset: 0x5DFB1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8F08, symBinAddr: 0xCEB8, symSize: 0x2C } - - { offsetInCU: 0x5FFC, offset: 0x5DFC5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F34, symBinAddr: 0xCEE4, symSize: 0x2C } - - { offsetInCU: 0x6010, offset: 0x5DFD9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8FA0, symBinAddr: 0xCF50, symSize: 0x2C } - - { offsetInCU: 0x6024, offset: 0x5DFED, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8FCC, symBinAddr: 0xCF7C, symSize: 0x2C } - - { offsetInCU: 0x6059, offset: 0x5E022, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x91E8, symBinAddr: 0xD198, symSize: 0x210 } - - { offsetInCU: 0x60AB, offset: 0x5E074, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x93F8, symBinAddr: 0xD3A8, symSize: 0x68 } - - { offsetInCU: 0x610C, offset: 0x5E0D5, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x95BC, symBinAddr: 0xD56C, symSize: 0x1DC } - - { offsetInCU: 0x6657, offset: 0x5E620, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB16C, symBinAddr: 0xF11C, symSize: 0x40 } - - { offsetInCU: 0x666B, offset: 0x5E634, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB1AC, symBinAddr: 0xF15C, symSize: 0x20 } - - { offsetInCU: 0x667F, offset: 0x5E648, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB1CC, symBinAddr: 0xF17C, symSize: 0x10 } - - { offsetInCU: 0x6693, offset: 0x5E65C, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB1DC, symBinAddr: 0xF18C, symSize: 0x3C } - - { offsetInCU: 0x66A7, offset: 0x5E670, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB278, symBinAddr: 0xF228, symSize: 0x44 } - - { offsetInCU: 0x66BB, offset: 0x5E684, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB428, symBinAddr: 0xF3D8, symSize: 0x10 } - - { offsetInCU: 0x66CF, offset: 0x5E698, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB438, symBinAddr: 0xF3E8, symSize: 0x10 } - - { offsetInCU: 0x66E3, offset: 0x5E6AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xB448, symBinAddr: 0xF3F8, symSize: 0x5C } - - { offsetInCU: 0x66F7, offset: 0x5E6C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xB4A4, symBinAddr: 0xF454, symSize: 0x30C } - - { offsetInCU: 0x670B, offset: 0x5E6D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB7B0, symBinAddr: 0xF760, symSize: 0x240 } - - { offsetInCU: 0x671F, offset: 0x5E6E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB9F0, symBinAddr: 0xF9A0, symSize: 0x70 } - - { offsetInCU: 0x6733, offset: 0x5E6FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xBA60, symBinAddr: 0xFA10, symSize: 0x34 } - - { offsetInCU: 0x6747, offset: 0x5E710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xBA94, symBinAddr: 0xFA44, symSize: 0x174 } - - { offsetInCU: 0x675B, offset: 0x5E724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xBC08, symBinAddr: 0xFBB8, symSize: 0xB4 } - - { offsetInCU: 0x676F, offset: 0x5E738, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xBCBC, symBinAddr: 0xFC6C, symSize: 0x10 } - - { offsetInCU: 0x6783, offset: 0x5E74C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xBCCC, symBinAddr: 0xFC7C, symSize: 0x34 } - - { offsetInCU: 0x6797, offset: 0x5E760, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xBD80, symBinAddr: 0xFD30, symSize: 0x5C } - - { offsetInCU: 0x67AB, offset: 0x5E774, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBE80, symBinAddr: 0xFE30, symSize: 0x2C } - - { offsetInCU: 0x67BF, offset: 0x5E788, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBEAC, symBinAddr: 0xFE5C, symSize: 0x2C } - - { offsetInCU: 0x67D3, offset: 0x5E79C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBED8, symBinAddr: 0xFE88, symSize: 0x2C } - - { offsetInCU: 0x67E7, offset: 0x5E7B0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBF04, symBinAddr: 0xFEB4, symSize: 0x2C } - - { offsetInCU: 0x67FB, offset: 0x5E7C4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBF30, symBinAddr: 0xFEE0, symSize: 0x2C } - - { offsetInCU: 0x680F, offset: 0x5E7D8, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBF5C, symBinAddr: 0xFF0C, symSize: 0x2C } - - { offsetInCU: 0x6823, offset: 0x5E7EC, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBF88, symBinAddr: 0xFF38, symSize: 0x2C } - - { offsetInCU: 0x6C2B, offset: 0x5EBF4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8A0C, symBinAddr: 0xC9BC, symSize: 0x14 } - - { offsetInCU: 0x6C69, offset: 0x5EC32, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8A2C, symBinAddr: 0xC9DC, symSize: 0x8 } - - { offsetInCU: 0x6CB8, offset: 0x5EC81, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A34, symBinAddr: 0xC9E4, symSize: 0x14 } - - { offsetInCU: 0x6D55, offset: 0x5ED1E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A48, symBinAddr: 0xC9F8, symSize: 0x14 } - - { offsetInCU: 0x6DEA, offset: 0x5EDB3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A5C, symBinAddr: 0xCA0C, symSize: 0x14 } - - { offsetInCU: 0x6E87, offset: 0x5EE50, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A70, symBinAddr: 0xCA20, symSize: 0x30 } - - { offsetInCU: 0x6FFA, offset: 0x5EFC3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8AA0, symBinAddr: 0xCA50, symSize: 0x2C } - - { offsetInCU: 0x7187, offset: 0x5F150, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8ACC, symBinAddr: 0xCA7C, symSize: 0x24 } - - { offsetInCU: 0x7273, offset: 0x5F23C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8AF0, symBinAddr: 0xCAA0, symSize: 0x14 } - - { offsetInCU: 0x72D9, offset: 0x5F2A2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8B04, symBinAddr: 0xCAB4, symSize: 0x14 } - - { offsetInCU: 0x733F, offset: 0x5F308, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8B18, symBinAddr: 0xCAC8, symSize: 0x14 } - - { offsetInCU: 0x73B4, offset: 0x5F37D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8B2C, symBinAddr: 0xCADC, symSize: 0x14 } - - { offsetInCU: 0x745D, offset: 0x5F426, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B40, symBinAddr: 0xCAF0, symSize: 0x14 } - - { offsetInCU: 0x74D4, offset: 0x5F49D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B54, symBinAddr: 0xCB04, symSize: 0x14 } - - { offsetInCU: 0x758C, offset: 0x5F555, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B68, symBinAddr: 0xCB18, symSize: 0x14 } - - { offsetInCU: 0x7626, offset: 0x5F5EF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B7C, symBinAddr: 0xCB2C, symSize: 0x10 } - - { offsetInCU: 0x768E, offset: 0x5F657, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B8C, symBinAddr: 0xCB3C, symSize: 0x28 } - - { offsetInCU: 0x76AA, offset: 0x5F673, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8BB4, symBinAddr: 0xCB64, symSize: 0x14 } - - { offsetInCU: 0x7726, offset: 0x5F6EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8BE4, symBinAddr: 0xCB94, symSize: 0x14 } - - { offsetInCU: 0x7757, offset: 0x5F720, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8BF8, symBinAddr: 0xCBA8, symSize: 0x14 } - - { offsetInCU: 0x7788, offset: 0x5F751, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8C0C, symBinAddr: 0xCBBC, symSize: 0x14 } - - { offsetInCU: 0x77B9, offset: 0x5F782, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8C20, symBinAddr: 0xCBD0, symSize: 0x30 } - - { offsetInCU: 0x77E8, offset: 0x5F7B1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C50, symBinAddr: 0xCC00, symSize: 0x2C } - - { offsetInCU: 0x7819, offset: 0x5F7E2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C7C, symBinAddr: 0xCC2C, symSize: 0x24 } - - { offsetInCU: 0x784A, offset: 0x5F813, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8CA0, symBinAddr: 0xCC50, symSize: 0x14 } - - { offsetInCU: 0x787B, offset: 0x5F844, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8CB4, symBinAddr: 0xCC64, symSize: 0x14 } - - { offsetInCU: 0x78AC, offset: 0x5F875, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8CC8, symBinAddr: 0xCC78, symSize: 0x14 } - - { offsetInCU: 0x78DD, offset: 0x5F8A6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8CDC, symBinAddr: 0xCC8C, symSize: 0x14 } - - { offsetInCU: 0x790E, offset: 0x5F8D7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8CF0, symBinAddr: 0xCCA0, symSize: 0x14 } - - { offsetInCU: 0x793F, offset: 0x5F908, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8D04, symBinAddr: 0xCCB4, symSize: 0x14 } - - { offsetInCU: 0x7970, offset: 0x5F939, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8D18, symBinAddr: 0xCCC8, symSize: 0x14 } - - { offsetInCU: 0x79A1, offset: 0x5F96A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8D2C, symBinAddr: 0xCCDC, symSize: 0x10 } - - { offsetInCU: 0x79D2, offset: 0x5F99B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D3C, symBinAddr: 0xCCEC, symSize: 0x28 } - - { offsetInCU: 0x79EE, offset: 0x5F9B7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D64, symBinAddr: 0xCD14, symSize: 0x14 } - - { offsetInCU: 0x7A2E, offset: 0x5F9F7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D84, symBinAddr: 0xCD34, symSize: 0x40 } - - { offsetInCU: 0x7AAC, offset: 0x5FA75, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8DC4, symBinAddr: 0xCD74, symSize: 0x70 } - - { offsetInCU: 0x7B3F, offset: 0x5FB08, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E7C, symBinAddr: 0xCE2C, symSize: 0x4 } - - { offsetInCU: 0x7B5F, offset: 0x5FB28, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E7C, symBinAddr: 0xCE2C, symSize: 0x4 } - - { offsetInCU: 0x7B7F, offset: 0x5FB48, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E80, symBinAddr: 0xCE30, symSize: 0x4 } - - { offsetInCU: 0x7B9F, offset: 0x5FB68, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E80, symBinAddr: 0xCE30, symSize: 0x4 } - - { offsetInCU: 0x7BC5, offset: 0x5FB8E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E84, symBinAddr: 0xCE34, symSize: 0x40 } - - { offsetInCU: 0x7C34, offset: 0x5FBFD, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8EC4, symBinAddr: 0xCE74, symSize: 0x8 } - - { offsetInCU: 0x7C5F, offset: 0x5FC28, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8ECC, symBinAddr: 0xCE7C, symSize: 0x3C } - - { offsetInCU: 0x7C90, offset: 0x5FC59, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FF8, symBinAddr: 0xCFA8, symSize: 0x14 } - - { offsetInCU: 0x7CC1, offset: 0x5FC8A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x900C, symBinAddr: 0xCFBC, symSize: 0x3C } - - { offsetInCU: 0x7D01, offset: 0x5FCCA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9048, symBinAddr: 0xCFF8, symSize: 0x88 } - - { offsetInCU: 0x7D82, offset: 0x5FD4B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9164, symBinAddr: 0xD114, symSize: 0x84 } - - { offsetInCU: 0x7DB6, offset: 0x5FD7F, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x9798, symBinAddr: 0xD748, symSize: 0xB0 } - - { offsetInCU: 0x7EA2, offset: 0x5FE6B, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9848, symBinAddr: 0xD7F8, symSize: 0x1F0 } - - { offsetInCU: 0x80D1, offset: 0x6009A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x80F1, offset: 0x600BA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8105, offset: 0x600CE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8125, offset: 0x600EE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8139, offset: 0x60102, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x814D, offset: 0x60116, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8161, offset: 0x6012A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8244, offset: 0x6020D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x8264, offset: 0x6022D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x8278, offset: 0x60241, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x8298, offset: 0x60261, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x82AC, offset: 0x60275, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x82C0, offset: 0x60289, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x82D4, offset: 0x6029D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x837B, offset: 0x60344, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBFB4, symBinAddr: 0xFF64, symSize: 0x80 } - - { offsetInCU: 0x840C, offset: 0x603D5, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xC034, symBinAddr: 0xFFE4, symSize: 0x90 } - - { offsetInCU: 0x85CE, offset: 0x60597, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x90DC, symBinAddr: 0xD08C, symSize: 0x10 } - - { offsetInCU: 0x85EA, offset: 0x605B3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x90EC, symBinAddr: 0xD09C, symSize: 0xC } - - { offsetInCU: 0x8654, offset: 0x6061D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x90F8, symBinAddr: 0xD0A8, symSize: 0x44 } - - { offsetInCU: 0x867D, offset: 0x60646, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x913C, symBinAddr: 0xD0EC, symSize: 0x28 } - - { offsetInCU: 0x86B8, offset: 0x60681, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x90D0, symBinAddr: 0xD080, symSize: 0xC } - - { offsetInCU: 0x8796, offset: 0x6075F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8A20, symBinAddr: 0xC9D0, symSize: 0xC } - - { offsetInCU: 0x87C8, offset: 0x60791, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8BC8, symBinAddr: 0xCB78, symSize: 0x10 } - - { offsetInCU: 0x87E4, offset: 0x607AD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8BD8, symBinAddr: 0xCB88, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x609B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100A4, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x609D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100A4, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x60A09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x100B4, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x60B38, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x100E0, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x60B4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x100F4, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x60B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x10104, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x60BDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x10124, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x60C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0x1013C, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x60CBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0x10168, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x60CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0x10170, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x60D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0x10194, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x60D33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0x101A0, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x60D4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x20F8, symBinAddr: 0x121CC, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x60D95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0x101FC, symSize: 0x41C } - - { offsetInCU: 0x2F5, offset: 0x60DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1428, symBinAddr: 0x114FC, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x60E21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1478, symBinAddr: 0x1154C, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x60E44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x24CC, symBinAddr: 0x125A0, symSize: 0x145C } - - { offsetInCU: 0x381, offset: 0x60E76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x544, symBinAddr: 0x10618, symSize: 0x110 } - - { offsetInCU: 0x3CD, offset: 0x60EC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14C8, symBinAddr: 0x1159C, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x60F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x14D0, symBinAddr: 0x115A4, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x60FF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x115E4, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11644, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61099, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11644, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x610B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x11648, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x610EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x159C, symBinAddr: 0x11670, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x61106, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15A8, symBinAddr: 0x1167C, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x61122, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3928, symBinAddr: 0x139FC, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x61166, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvgTf4d_n', symObjAddr: 0x3994, symBinAddr: 0x13A68, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x6119A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1604, symBinAddr: 0x116D8, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x611D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1654, symBinAddr: 0x11728, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x611F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x39A0, symBinAddr: 0x13A74, symSize: 0x258 } - - { offsetInCU: 0x771, offset: 0x61266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x654, symBinAddr: 0x10728, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x61291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16A4, symBinAddr: 0x11778, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x612BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16AC, symBinAddr: 0x11780, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x612ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16D0, symBinAddr: 0x117A4, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x61309, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16DC, symBinAddr: 0x117B0, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x61325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5B54, symBinAddr: 0x15BE4, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x6136B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x674, symBinAddr: 0x10748, symSize: 0x18C } - - { offsetInCU: 0x8CB, offset: 0x613C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1738, symBinAddr: 0x1180C, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x613F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1788, symBinAddr: 0x1185C, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x6141A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x15D7C, symSize: 0x320 } - - { offsetInCU: 0x975, offset: 0x6146A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x800, symBinAddr: 0x108D4, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x61495, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17C8, symBinAddr: 0x1189C, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x614C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17D0, symBinAddr: 0x118A4, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x614F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x17F4, symBinAddr: 0x118C8, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x6150D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x600C, symBinAddr: 0x1609C, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x61553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x820, symBinAddr: 0x108F4, symSize: 0x164 } - - { offsetInCU: 0xAB3, offset: 0x615A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1850, symBinAddr: 0x11924, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x615DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1890, symBinAddr: 0x11964, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x61602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6164, symBinAddr: 0x161F4, symSize: 0x2D8 } - - { offsetInCU: 0xB51, offset: 0x61646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x984, symBinAddr: 0x10A58, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x61671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18C8, symBinAddr: 0x1199C, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x6169C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x119A4, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x616CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18F4, symBinAddr: 0x119C8, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x616E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1900, symBinAddr: 0x119D4, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x61705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x643C, symBinAddr: 0x164CC, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x6174B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9A4, symBinAddr: 0x10A78, symSize: 0x1B4 } - - { offsetInCU: 0xCAB, offset: 0x617A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x195C, symBinAddr: 0x11A30, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x617D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19CC, symBinAddr: 0x11AA0, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x617FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6584, symBinAddr: 0x16614, symSize: 0x4E8 } - - { offsetInCU: 0xD55, offset: 0x6184A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xB58, symBinAddr: 0x10C2C, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61875, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x11B00, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x618A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A34, symBinAddr: 0x11B08, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x618D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A58, symBinAddr: 0x11B2C, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x618ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A64, symBinAddr: 0x11B38, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x61909, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B38, symBinAddr: 0x16BC8, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x6194F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB78, symBinAddr: 0x10C4C, symSize: 0x204 } - - { offsetInCU: 0xEAF, offset: 0x619A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x11B94, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x619DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B24, symBinAddr: 0x11BF8, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x619FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6DAC, symBinAddr: 0x16E3C, symSize: 0x58C } - - { offsetInCU: 0xF59, offset: 0x61A4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xD7C, symBinAddr: 0x10E50, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61A99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B74, symBinAddr: 0x11C48, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x61B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1B8C, symBinAddr: 0x11C60, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x61C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1BD0, symBinAddr: 0x11CA4, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x61C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x11D0C, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x61CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C40, symBinAddr: 0x11D14, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x61CDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1C64, symBinAddr: 0x11D38, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x61CF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C70, symBinAddr: 0x11D44, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x61D13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x737C, symBinAddr: 0x1740C, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x61D59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD94, symBinAddr: 0x10E68, symSize: 0x128 } - - { offsetInCU: 0x12B9, offset: 0x61DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1CCC, symBinAddr: 0x11DA0, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x61DE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CF8, symBinAddr: 0x11DCC, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x61E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7434, symBinAddr: 0x174C4, symSize: 0x1B0 } - - { offsetInCU: 0x136F, offset: 0x61E64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xEBC, symBinAddr: 0x10F90, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x61E8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1D14, symBinAddr: 0x11DE8, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x61EBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D1C, symBinAddr: 0x11DF0, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x61EEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D40, symBinAddr: 0x11E14, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x61F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D4C, symBinAddr: 0x11E20, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x61F23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7628, symBinAddr: 0x176B8, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x61F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEDC, symBinAddr: 0x10FB0, symSize: 0x1DC } - - { offsetInCU: 0x14C9, offset: 0x61FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DA8, symBinAddr: 0x11E7C, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x61FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E00, symBinAddr: 0x11ED4, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x62018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x783C, symBinAddr: 0x178CC, symSize: 0x370 } - - { offsetInCU: 0x1567, offset: 0x6205C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x10B8, symBinAddr: 0x1118C, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1E48, symBinAddr: 0x11F1C, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x620B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E50, symBinAddr: 0x11F24, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x620E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E74, symBinAddr: 0x11F48, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x620FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x11F54, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x6211B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7BAC, symBinAddr: 0x17C3C, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x62161, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10D8, symBinAddr: 0x111AC, symSize: 0x1FC } - - { offsetInCU: 0x16C1, offset: 0x621B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EDC, symBinAddr: 0x11FB0, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x621ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F24, symBinAddr: 0x11FF8, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x62210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D80, symBinAddr: 0x17E10, symSize: 0x390 } - - { offsetInCU: 0x176B, offset: 0x62260, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x12D4, symBinAddr: 0x113A8, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x6228B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FE8, symBinAddr: 0x120BC, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x622B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FF0, symBinAddr: 0x120C4, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x622E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2014, symBinAddr: 0x120E8, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x62303, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2020, symBinAddr: 0x120F4, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x6231F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8198, symBinAddr: 0x18228, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x62365, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12EC, symBinAddr: 0x113C0, symSize: 0x13C } - - { offsetInCU: 0x18C5, offset: 0x623BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x207C, symBinAddr: 0x12150, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x623F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x20C0, symBinAddr: 0x12194, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x62414, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8294, symBinAddr: 0x18324, symSize: 0x1DC } - - { offsetInCU: 0x195C, offset: 0x62451, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3C38, symBinAddr: 0x13CCC, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x62465, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3C5C, symBinAddr: 0x13CF0, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62479, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3CA0, symBinAddr: 0x13D34, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x6248D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3CC0, symBinAddr: 0x13D54, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x624A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3D04, symBinAddr: 0x13D98, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x624B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3D48, symBinAddr: 0x13DDC, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x624C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3D50, symBinAddr: 0x13DE0, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x624DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x3DA0, symBinAddr: 0x13E30, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x624F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x3E2C, symBinAddr: 0x13EBC, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x62505, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x3E34, symBinAddr: 0x13EC4, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x62519, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x3E38, symBinAddr: 0x13EC8, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x6252D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x3E3C, symBinAddr: 0x13ECC, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x62541, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x3E4C, symBinAddr: 0x13EDC, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62555, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x4714, symBinAddr: 0x147A4, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62569, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x4724, symBinAddr: 0x147B4, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x6257D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4728, symBinAddr: 0x147B8, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x62591, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x476C, symBinAddr: 0x147FC, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x625A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4770, symBinAddr: 0x14800, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x625B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x47B4, symBinAddr: 0x14844, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x625CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x47B8, symBinAddr: 0x14848, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x625E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x47FC, symBinAddr: 0x1488C, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x625F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4840, symBinAddr: 0x148D0, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x62609, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4884, symBinAddr: 0x14914, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x6261D, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x48C8, symBinAddr: 0x14958, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x62631, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x490C, symBinAddr: 0x1499C, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62645, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4950, symBinAddr: 0x149E0, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62659, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x4994, symBinAddr: 0x14A24, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x6266D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x49D8, symBinAddr: 0x14A68, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x62681, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x14AAC, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62695, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x4A60, symBinAddr: 0x14AF0, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x626A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x14B34, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x626BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x14B78, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x626D1, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4B2C, symBinAddr: 0x14BBC, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x626E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4B38, symBinAddr: 0x14BC8, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x626F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4BC8, symBinAddr: 0x14C58, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x6270D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4C84, symBinAddr: 0x14D14, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x62721, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4C8C, symBinAddr: 0x14D1C, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62735, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4C90, symBinAddr: 0x14D20, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62749, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4C98, symBinAddr: 0x14D28, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x6275D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4CA8, symBinAddr: 0x14D38, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x62771, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4CD0, symBinAddr: 0x14D60, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62785, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4D14, symBinAddr: 0x14DA4, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62799, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4D88, symBinAddr: 0x14E18, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x627AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4D9C, symBinAddr: 0x14E2C, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x627C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x4DE8, symBinAddr: 0x14E78, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x627D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x4E30, symBinAddr: 0x14EC0, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x627E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x4E78, symBinAddr: 0x14F08, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x627FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x4E88, symBinAddr: 0x14F18, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x62811, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x4EC0, symBinAddr: 0x14F50, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x4F34, symBinAddr: 0x14FC4, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62839, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4FF0, symBinAddr: 0x15080, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x6284D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x500C, symBinAddr: 0x1509C, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x62861, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5088, symBinAddr: 0x15118, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62875, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x50D0, symBinAddr: 0x15160, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62889, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x5124, symBinAddr: 0x151B4, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x6289D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x5134, symBinAddr: 0x151C4, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x628B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x515C, symBinAddr: 0x151EC, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x628C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5198, symBinAddr: 0x15228, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x628D9, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5204, symBinAddr: 0x15294, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x628ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5210, symBinAddr: 0x152A0, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x62901, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5254, symBinAddr: 0x152E4, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x62915, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x529C, symBinAddr: 0x1532C, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62929, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x52DC, symBinAddr: 0x1536C, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x6293D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x52EC, symBinAddr: 0x1537C, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x62951, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x533C, symBinAddr: 0x153CC, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62965, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x53E8, symBinAddr: 0x15478, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62979, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x54FC, symBinAddr: 0x1558C, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x6298D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5528, symBinAddr: 0x155B8, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x629A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x55C4, symBinAddr: 0x15654, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x629B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x560C, symBinAddr: 0x1569C, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x629C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x5668, symBinAddr: 0x156F8, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x629DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x5678, symBinAddr: 0x15708, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x629F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x56D0, symBinAddr: 0x15760, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x62A05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x5794, symBinAddr: 0x15824, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x62A19, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x58D8, symBinAddr: 0x15968, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62A2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x590C, symBinAddr: 0x1599C, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62A41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x59C0, symBinAddr: 0x15A50, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62A55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5A08, symBinAddr: 0x15A98, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x5A6C, symBinAddr: 0x15AFC, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62A7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5A7C, symBinAddr: 0x15B0C, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62A91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x5A80, symBinAddr: 0x15B10, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5AC4, symBinAddr: 0x15B54, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5AC8, symBinAddr: 0x15B58, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62ACD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5B0C, symBinAddr: 0x15B9C, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62AE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5B10, symBinAddr: 0x15BA0, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62AF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x6A6C, symBinAddr: 0x16AFC, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x62B09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x6AB0, symBinAddr: 0x16B40, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x62B1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6AF4, symBinAddr: 0x16B84, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x62B31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7338, symBinAddr: 0x173C8, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x62B45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x75E4, symBinAddr: 0x17674, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x62B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8110, symBinAddr: 0x181A0, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x62B6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8154, symBinAddr: 0x181E4, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x62B81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8470, symBinAddr: 0x18500, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x62B95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x84B4, symBinAddr: 0x18544, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x62BA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x84F8, symBinAddr: 0x18588, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x62BBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x85A0, symBinAddr: 0x18630, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x62BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x85E4, symBinAddr: 0x18674, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x62BE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8674, symBinAddr: 0x18704, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x62BF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8730, symBinAddr: 0x187C0, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x62C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8734, symBinAddr: 0x187C4, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x62C21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8744, symBinAddr: 0x187D4, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x62C35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x87D4, symBinAddr: 0x18864, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x62C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8890, symBinAddr: 0x18920, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x62C5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8894, symBinAddr: 0x18924, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x62C71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x88A4, symBinAddr: 0x18934, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x62C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8934, symBinAddr: 0x189C4, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x62C99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x89F0, symBinAddr: 0x18A80, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x62CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x89F8, symBinAddr: 0x18A88, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x62CC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x89FC, symBinAddr: 0x18A8C, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x62CD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A08, symBinAddr: 0x18A98, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x62CE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8A18, symBinAddr: 0x18AA8, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x62CFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8AA8, symBinAddr: 0x18B38, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x62D11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8B64, symBinAddr: 0x18BF4, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x62D25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8B68, symBinAddr: 0x18BF8, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x62D39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8B80, symBinAddr: 0x18C10, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x62D4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8B84, symBinAddr: 0x18C14, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x62D61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8B94, symBinAddr: 0x18C24, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x62D75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8BCC, symBinAddr: 0x18C5C, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x62D89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8C40, symBinAddr: 0x18CD0, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x62D9D, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8D04, symBinAddr: 0x18D94, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x62DB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x8D28, symBinAddr: 0x18DB8, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x62DC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x8D9C, symBinAddr: 0x18E2C, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x62DD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x8DE4, symBinAddr: 0x18E74, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x62DED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x8E38, symBinAddr: 0x18EC8, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x62E01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x8E48, symBinAddr: 0x18ED8, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x62E15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x8E80, symBinAddr: 0x18F10, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x62E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x8EE4, symBinAddr: 0x18F74, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x62E3D, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8F90, symBinAddr: 0x19020, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x62E51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x8FA4, symBinAddr: 0x19034, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x62E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x9008, symBinAddr: 0x19098, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x62E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9050, symBinAddr: 0x190E0, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x62E8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x90A0, symBinAddr: 0x19130, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x62EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x90B0, symBinAddr: 0x19140, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x62EB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x90E8, symBinAddr: 0x19178, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x62EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9154, symBinAddr: 0x191E4, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x62EDD, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9208, symBinAddr: 0x19298, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x62EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x922C, symBinAddr: 0x192BC, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x62F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9298, symBinAddr: 0x19328, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x62F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x92E0, symBinAddr: 0x19370, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x62F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9330, symBinAddr: 0x193C0, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x62F41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9340, symBinAddr: 0x193D0, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x62F55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9344, symBinAddr: 0x193D4, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x62F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9388, symBinAddr: 0x19418, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x62F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x938C, symBinAddr: 0x1941C, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x62F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x93D0, symBinAddr: 0x19460, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x62FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x93D4, symBinAddr: 0x19464, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x62FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9418, symBinAddr: 0x194A8, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x62FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x941C, symBinAddr: 0x194AC, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x62FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9460, symBinAddr: 0x194F0, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x62FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9464, symBinAddr: 0x194F4, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x63009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x94A8, symBinAddr: 0x19538, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x6301D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x94AC, symBinAddr: 0x1953C, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x63031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94F0, symBinAddr: 0x19580, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x63045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94F4, symBinAddr: 0x19584, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9538, symBinAddr: 0x195C8, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x6306D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x953C, symBinAddr: 0x195CC, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x63081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9580, symBinAddr: 0x19610, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x63095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9584, symBinAddr: 0x19614, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x630A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95C8, symBinAddr: 0x19658, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x630BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95CC, symBinAddr: 0x1965C, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x630D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9610, symBinAddr: 0x196A0, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x630E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9614, symBinAddr: 0x196A4, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x630F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9658, symBinAddr: 0x196E8, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x6310D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x965C, symBinAddr: 0x196EC, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x63121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96A0, symBinAddr: 0x19730, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x63135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96A4, symBinAddr: 0x19734, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x96E8, symBinAddr: 0x19778, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x6315D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x96EC, symBinAddr: 0x1977C, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x63171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9730, symBinAddr: 0x197C0, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x63185, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9734, symBinAddr: 0x197C4, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63199, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9778, symBinAddr: 0x19808, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x631AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x97BC, symBinAddr: 0x1984C, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x631C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9800, symBinAddr: 0x19890, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x631D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9844, symBinAddr: 0x198D4, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x631E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x98D4, symBinAddr: 0x19964, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x631FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9990, symBinAddr: 0x19A20, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x63211, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9994, symBinAddr: 0x19A24, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x63225, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9AF8, symBinAddr: 0x19B88, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9AFC, symBinAddr: 0x19B8C, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x6324D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9B0C, symBinAddr: 0x19B9C, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x63261, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9B9C, symBinAddr: 0x19C2C, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x63275, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9C58, symBinAddr: 0x19CE8, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9C5C, symBinAddr: 0x19CEC, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x6329D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9C6C, symBinAddr: 0x19CFC, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x632B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9C70, symBinAddr: 0x19D00, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x632C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9CB4, symBinAddr: 0x19D44, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x632D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9CB8, symBinAddr: 0x19D48, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x632ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9CFC, symBinAddr: 0x19D8C, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x63301, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9D00, symBinAddr: 0x19D90, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x63315, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D44, symBinAddr: 0x19DD4, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63329, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D48, symBinAddr: 0x19DD8, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x6333D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D8C, symBinAddr: 0x19E1C, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x63351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x19E20, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x63365, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9DD4, symBinAddr: 0x19E64, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9DD8, symBinAddr: 0x19E68, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x6338D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E1C, symBinAddr: 0x19EAC, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x633A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9E20, symBinAddr: 0x19EB0, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x633B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E64, symBinAddr: 0x19EF4, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x633C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E68, symBinAddr: 0x19EF8, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x633DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EAC, symBinAddr: 0x19F3C, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x633F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9EB0, symBinAddr: 0x19F40, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x63441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0x101AC, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x6345D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0x101D4, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1534, symBinAddr: 0x11608, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63548, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15B4, symBinAddr: 0x11688, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15DC, symBinAddr: 0x116B0, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0x117BC, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x635A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1710, symBinAddr: 0x117E4, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x635C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x118D4, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x635E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1828, symBinAddr: 0x118FC, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x63602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x190C, symBinAddr: 0x119E0, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1934, symBinAddr: 0x11A08, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x63640, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A70, symBinAddr: 0x11B44, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x6365C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A98, symBinAddr: 0x11B6C, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x636A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1BF8, symBinAddr: 0x11CCC, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63747, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C7C, symBinAddr: 0x11D50, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x63763, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1CA4, symBinAddr: 0x11D78, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63785, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1D58, symBinAddr: 0x11E2C, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x637A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1D80, symBinAddr: 0x11E54, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x637C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E8C, symBinAddr: 0x11F60, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x637DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1EB4, symBinAddr: 0x11F88, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x63801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x202C, symBinAddr: 0x12100, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x6381D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2054, symBinAddr: 0x12128, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x639C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A05C, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63A46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A05C, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x1A0E0, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63ABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x1A11C, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63AFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x1A170, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x63B1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x1A180, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x63B45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x128, symBinAddr: 0x1A184, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x63B63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x13C, symBinAddr: 0x1A198, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x63B9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x150, symBinAddr: 0x1A1AC, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x63BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x1A1BC, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x63BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x1A1C0, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x63C14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x1A1EC, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x63C53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x1A220, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x63C81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x1A230, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x63CAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x1A234, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x63CCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x1A23C, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x63D04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x1A244, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x63D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x1A254, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x63D5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x1A258, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x63D7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x1A260, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x63DB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x1A268, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x63DE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x1A278, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x63E0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x1A27C, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x63E2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x1A2A8, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x63E6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x1A2DC, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x63E99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1A2EC, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x63EC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x1A2F0, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x63EE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x1A31C, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x63F21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x1A350, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x63F4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x1A360, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x63F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x1A364, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x63F98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x1A370, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x63FD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x1A37C, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x64004, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1A38C, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x6402F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x1A390, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x6404D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x1A39C, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x6408B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x1A3A8, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x640B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x1A3B8, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x640E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x1A3BC, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x640F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x1A3EC, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x6410D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x1A42C, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x64121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x1A4D0, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x64135, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x1A5D4, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x1A600, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x6415D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x1A69C, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x64171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x1A6E4, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64185, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x1A744, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64367, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1A754, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x64392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x1ACF8, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x643AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x1AF68, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x643E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1AA00, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x64411, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x1AF40, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x6442D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x1AFC0, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64459, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x1B018, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64489, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x1B11C, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x6449D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x1B1AC, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x644B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x1B268, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x644C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x1B26C, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x644D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x1B27C, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x644ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x1B30C, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x64501, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x1B3C8, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x64515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x1B3D0, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64529, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x1B3D4, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x6453D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x1B3DC, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x64551, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x1B3EC, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64565, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x1B3F0, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64579, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x1B434, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x6458D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x1B438, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x646EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1B484, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x64718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1B598, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC9printLogs33_D78766567F29622279F8000760588BB6LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x1B970, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64877, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x1B5B4, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x648CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x1B5D4, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x64920, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x1B660, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64947, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x1B664, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x6496E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x1B668, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64995, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x1B6DC, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x649E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1B6E0, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64A3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x1B770, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64A80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x1B7D4, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x1B864, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x64B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x1B8F4, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x64B5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x1B968, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x64B78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x1B96C, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x64BF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x1BA1C, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x64CD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1C0E8, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x64D2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1C15C, symSize: 0x2A4 } - - { offsetInCU: 0x7C0, offset: 0x64E5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF7C, symBinAddr: 0x1C400, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x64EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFE4, symBinAddr: 0x1C468, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x64F19, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1048, symBinAddr: 0x1C4CC, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x64F2D, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1058, symBinAddr: 0x1C4DC, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x64F41, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10EC, symBinAddr: 0x1C4EC, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x64F55, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1134, symBinAddr: 0x1C534, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x64F69, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1148, symBinAddr: 0x1C548, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x64F7D, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x118C, symBinAddr: 0x1C58C, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x64F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11CC, symBinAddr: 0x1C5CC, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x64FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1390, symBinAddr: 0x1C790, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x64FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13C0, symBinAddr: 0x1C7C0, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x64FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x157C, symBinAddr: 0x1C97C, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x65274, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x29C8, symBinAddr: 0x871D0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x6528E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x29D0, symBinAddr: 0x871D8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x6529C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1C9BC, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x652D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1C9F0, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x6530E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1CA30, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65339, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1CA64, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1CAA4, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x653B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1CAD4, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x653DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1CAD8, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x653F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1CAFC, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x6542B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1CB10, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x654BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CB80, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x654DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CB80, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x65526, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1CBDC, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x655A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1CC48, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x6562A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1CD80, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65649, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1CDDC, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x65672, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1CE3C, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x656A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1CE78, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x65714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1CFB0, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x65733, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1CFFC, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x6575C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1D04C, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x6578B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1D088, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x657B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1D090, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x657D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1D0C0, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x657F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1D0FC, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x65851, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1D194, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x6586E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x818, symBinAddr: 0x1D1C4, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65897, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x85C, symBinAddr: 0x1D208, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x658C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1D244, symSize: 0x68 } - - { offsetInCU: 0x710, offset: 0x65935, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1D2AC, symSize: 0x4 } - - { offsetInCU: 0x779, offset: 0x6599E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x904, symBinAddr: 0x1D2B0, symSize: 0x128 } - - { offsetInCU: 0x853, offset: 0x65A78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xC50, symBinAddr: 0x1D5FC, symSize: 0x70 } - - { offsetInCU: 0x87D, offset: 0x65AA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xCC0, symBinAddr: 0x1D66C, symSize: 0x30 } - - { offsetInCU: 0x8A2, offset: 0x65AC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xCF0, symBinAddr: 0x1D69C, symSize: 0x198 } - - { offsetInCU: 0x957, offset: 0x65B7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xE88, symBinAddr: 0x1D834, symSize: 0x14 } - - { offsetInCU: 0x9A4, offset: 0x65BC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0xE9C, symBinAddr: 0x1D848, symSize: 0x64 } - - { offsetInCU: 0xA40, offset: 0x65C65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0xF30, symBinAddr: 0x1D8DC, symSize: 0x6C } - - { offsetInCU: 0xB74, offset: 0x65D99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x17D4, symBinAddr: 0x1E180, symSize: 0x258 } - - { offsetInCU: 0xC05, offset: 0x65E2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1A90, symBinAddr: 0x1E43C, symSize: 0x1A0 } - - { offsetInCU: 0xCED, offset: 0x65F12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1CC4C, symSize: 0x88 } - - { offsetInCU: 0xD23, offset: 0x65F48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1CCD4, symSize: 0xAC } - - { offsetInCU: 0xD63, offset: 0x65F88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1CDCC, symSize: 0x10 } - - { offsetInCU: 0xD77, offset: 0x65F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1CE2C, symSize: 0x10 } - - { offsetInCU: 0xD8B, offset: 0x65FB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1CE7C, symSize: 0x88 } - - { offsetInCU: 0xDC1, offset: 0x65FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1CF04, symSize: 0xAC } - - { offsetInCU: 0xE01, offset: 0x66026, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1D138, symSize: 0x5C } - - { offsetInCU: 0xEA2, offset: 0x660C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xA2C, symBinAddr: 0x1D3D8, symSize: 0x224 } - - { offsetInCU: 0xF16, offset: 0x6613B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1648, symBinAddr: 0x1DFF4, symSize: 0x13C } - - { offsetInCU: 0xFE0, offset: 0x66205, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0xF00, symBinAddr: 0x1D8AC, symSize: 0x30 } - - { offsetInCU: 0x10CF, offset: 0x662F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x17B0, symBinAddr: 0x1E15C, symSize: 0x24 } - - { offsetInCU: 0x111F, offset: 0x66344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0xF9C, symBinAddr: 0x1D948, symSize: 0x22C } - - { offsetInCU: 0x1311, offset: 0x66536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x11C8, symBinAddr: 0x1DB74, symSize: 0xC } - - { offsetInCU: 0x1368, offset: 0x6658D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DB80, symSize: 0x4 } - - { offsetInCU: 0x1384, offset: 0x665A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DB80, symSize: 0x4 } - - { offsetInCU: 0x139D, offset: 0x665C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DB80, symSize: 0x4 } - - { offsetInCU: 0x13B6, offset: 0x665DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11D8, symBinAddr: 0x1DB84, symSize: 0x4 } - - { offsetInCU: 0x13CE, offset: 0x665F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11DC, symBinAddr: 0x1DB88, symSize: 0xB8 } - - { offsetInCU: 0x146E, offset: 0x66693, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12D4, symBinAddr: 0x1DC80, symSize: 0x4 } - - { offsetInCU: 0x1486, offset: 0x666AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2478, symBinAddr: 0x1EE14, symSize: 0x7C } - - { offsetInCU: 0x1563, offset: 0x66788, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x1294, symBinAddr: 0x1DC40, symSize: 0x40 } - - { offsetInCU: 0x1598, offset: 0x667BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11isReachableSbvg', symObjAddr: 0x12D8, symBinAddr: 0x1DC84, symSize: 0x2C } - - { offsetInCU: 0x15E3, offset: 0x66808, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1304, symBinAddr: 0x1DCB0, symSize: 0x2C } - - { offsetInCU: 0x162E, offset: 0x66853, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1330, symBinAddr: 0x1DCDC, symSize: 0x2C } - - { offsetInCU: 0x16BB, offset: 0x668E0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x135C, symBinAddr: 0x1DD08, symSize: 0x198 } - - { offsetInCU: 0x1B6A, offset: 0x66D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x14F4, symBinAddr: 0x1DEA0, symSize: 0x13C } - - { offsetInCU: 0x1C67, offset: 0x66E8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1630, symBinAddr: 0x1DFDC, symSize: 0x18 } - - { offsetInCU: 0x1C7B, offset: 0x66EA0, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1784, symBinAddr: 0x1E130, symSize: 0x2C } - - { offsetInCU: 0x1C93, offset: 0x66EB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1A2C, symBinAddr: 0x1E3D8, symSize: 0x44 } - - { offsetInCU: 0x1CA7, offset: 0x66ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1A70, symBinAddr: 0x1E41C, symSize: 0x20 } - - { offsetInCU: 0x1CBB, offset: 0x66EE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1C30, symBinAddr: 0x1E5DC, symSize: 0x20 } - - { offsetInCU: 0x1CCF, offset: 0x66EF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1C50, symBinAddr: 0x1E5FC, symSize: 0x4 } - - { offsetInCU: 0x1CE3, offset: 0x66F08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1C54, symBinAddr: 0x1E600, symSize: 0x44 } - - { offsetInCU: 0x1CF7, offset: 0x66F1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1C98, symBinAddr: 0x1E644, symSize: 0x4 } - - { offsetInCU: 0x1D0B, offset: 0x66F30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1C9C, symBinAddr: 0x1E648, symSize: 0x44 } - - { offsetInCU: 0x1D1F, offset: 0x66F44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwCP', symObjAddr: 0x1DBC, symBinAddr: 0x1E768, symSize: 0x5C } - - { offsetInCU: 0x1D33, offset: 0x66F58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1E18, symBinAddr: 0x1E7C4, symSize: 0x18 } - - { offsetInCU: 0x1D47, offset: 0x66F6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1E30, symBinAddr: 0x1E7DC, symSize: 0x14 } - - { offsetInCU: 0x1D5B, offset: 0x66F80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1E44, symBinAddr: 0x1E7F0, symSize: 0x18 } - - { offsetInCU: 0x1D6F, offset: 0x66F94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwcp', symObjAddr: 0x1E5C, symBinAddr: 0x1E808, symSize: 0x5C } - - { offsetInCU: 0x1D83, offset: 0x66FA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x1EB8, symBinAddr: 0x1E864, symSize: 0x6C } - - { offsetInCU: 0x1D97, offset: 0x66FBC, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1F24, symBinAddr: 0x1E8D0, symSize: 0x14 } - - { offsetInCU: 0x1DAB, offset: 0x66FD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x1F38, symBinAddr: 0x1E8E4, symSize: 0x50 } - - { offsetInCU: 0x1DBF, offset: 0x66FE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x1F88, symBinAddr: 0x1E934, symSize: 0x48 } - - { offsetInCU: 0x1DD3, offset: 0x66FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x1FD0, symBinAddr: 0x1E97C, symSize: 0x48 } - - { offsetInCU: 0x1DE7, offset: 0x6700C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x2018, symBinAddr: 0x1E9C4, symSize: 0x8 } - - { offsetInCU: 0x1DFB, offset: 0x67020, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2020, symBinAddr: 0x1E9CC, symSize: 0x4 } - - { offsetInCU: 0x1E0F, offset: 0x67034, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2024, symBinAddr: 0x1E9D0, symSize: 0x8 } - - { offsetInCU: 0x1E23, offset: 0x67048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x202C, symBinAddr: 0x1E9D8, symSize: 0x10 } - - { offsetInCU: 0x1E37, offset: 0x6705C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2114, symBinAddr: 0x1EAB0, symSize: 0x90 } - - { offsetInCU: 0x1E4B, offset: 0x67070, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x21A4, symBinAddr: 0x1EB40, symSize: 0xBC } - - { offsetInCU: 0x1E5F, offset: 0x67084, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2260, symBinAddr: 0x1EBFC, symSize: 0x4 } - - { offsetInCU: 0x1E73, offset: 0x67098, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2264, symBinAddr: 0x1EC00, symSize: 0x10 } - - { offsetInCU: 0x1E87, offset: 0x670AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x2274, symBinAddr: 0x1EC10, symSize: 0x90 } - - { offsetInCU: 0x1E9B, offset: 0x670C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2304, symBinAddr: 0x1ECA0, symSize: 0xBC } - - { offsetInCU: 0x1EAF, offset: 0x670D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x23C0, symBinAddr: 0x1ED5C, symSize: 0x8 } - - { offsetInCU: 0x1EC3, offset: 0x670E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x23C8, symBinAddr: 0x1ED64, symSize: 0x4 } - - { offsetInCU: 0x1ED7, offset: 0x670FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x23CC, symBinAddr: 0x1ED68, symSize: 0x8 } - - { offsetInCU: 0x1EEB, offset: 0x67110, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x23D4, symBinAddr: 0x1ED70, symSize: 0x10 } - - { offsetInCU: 0x1F0A, offset: 0x6712F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x240C, symBinAddr: 0x1EDA8, symSize: 0x24 } - - { offsetInCU: 0x1F33, offset: 0x67158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x2518, symBinAddr: 0x1EEB4, symSize: 0x8 } - - { offsetInCU: 0x1F47, offset: 0x6716C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2520, symBinAddr: 0x1EEBC, symSize: 0x10 } - - { offsetInCU: 0x1F5B, offset: 0x67180, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2530, symBinAddr: 0x1EECC, symSize: 0x8 } - - { offsetInCU: 0x1F6F, offset: 0x67194, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x25BC, symBinAddr: 0x1EED4, symSize: 0x3C } - - { offsetInCU: 0x1FF1, offset: 0x67216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1C9AC, symSize: 0x4 } - - { offsetInCU: 0x200D, offset: 0x67232, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1C9B0, symSize: 0x4 } - - { offsetInCU: 0x2029, offset: 0x6724E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1C9B4, symSize: 0x4 } - - { offsetInCU: 0x2045, offset: 0x6726A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1C9B8, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x6765D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1EFD8, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x67671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F014, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67685, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F098, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x676A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1F1C0, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x676C9, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1F1F0, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x676DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1F20C, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x676F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1F2A8, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x67705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1F30C, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x67719, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1F368, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x6772D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1F378, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x67741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1F3A8, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67755, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1F3D0, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67769, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1F42C, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x6777D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1F4B0, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x67791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1F514, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x677A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1F570, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x677B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1F5D0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x677D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1F5E0, symSize: 0x11C } - - { offsetInCU: 0x20B, offset: 0x67825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA90, symBinAddr: 0x1FA68, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67879, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA98, symBinAddr: 0x1FA70, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x6795C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAD8, symBinAddr: 0x1FAB0, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x679DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB10, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x679FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB10, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x67A1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB3C, symBinAddr: 0x1FB14, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67A4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB64, symBinAddr: 0x1FB3C, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB70, symBinAddr: 0x1FB48, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67A85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF48, symBinAddr: 0x1FF20, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67AC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xFB4, symBinAddr: 0x1FF8C, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67AFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBCC, symBinAddr: 0x1FBA4, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67B34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC18, symBinAddr: 0x1FBF0, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67B57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC0, symBinAddr: 0x1FF98, symSize: 0x154 } - - { offsetInCU: 0x58D, offset: 0x67BA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x724, symBinAddr: 0x1F6FC, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x67BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC58, symBinAddr: 0x1FC30, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x67C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC70, symBinAddr: 0x1FC48, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x67CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC9C, symBinAddr: 0x1FC74, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x67D01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1FC7C, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x67D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCC8, symBinAddr: 0x1FCA0, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x67D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCD4, symBinAddr: 0x1FCAC, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x67D6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1264, symBinAddr: 0x201B8, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x67DB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x744, symBinAddr: 0x1F71C, symSize: 0x1C8 } - - { offsetInCU: 0x7EB, offset: 0x67E05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD30, symBinAddr: 0x1FD08, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x67E3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD7C, symBinAddr: 0x1FD54, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x67E5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13A0, symBinAddr: 0x202F4, symSize: 0x264 } - - { offsetInCU: 0x895, offset: 0x67EAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x90C, symBinAddr: 0x1F8E4, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x67EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE48, symBinAddr: 0x1FE20, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x67F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE50, symBinAddr: 0x1FE28, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x67F36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE74, symBinAddr: 0x1FE4C, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x67F52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x20C24, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x67F98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x92C, symBinAddr: 0x1F904, symSize: 0x164 } - - { offsetInCU: 0x9D3, offset: 0x67FED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xED0, symBinAddr: 0x1FEA8, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x68024, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF10, symBinAddr: 0x1FEE8, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x68047, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E94, symBinAddr: 0x20D7C, symSize: 0x2B8 } - - { offsetInCU: 0xA80, offset: 0x6809A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1178, symBinAddr: 0x200EC, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x680AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x11DC, symBinAddr: 0x20130, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x680C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x20174, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x680D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x20558, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x680EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x2059C, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x680FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x2068C, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x68112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x206D8, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x68126, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x206E0, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x6813A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x206E4, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x6814E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x206EC, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x68162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x206FC, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x68176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x2074C, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x6818A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x207D8, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x6819E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x207E0, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x681B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x207E4, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x681C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x207E8, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x681DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x207F8, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x681EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x20830, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x68202, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x20894, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x68216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x20940, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x6822A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x209A4, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x6823E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x20A00, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x68252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x20A64, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x68266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x20A74, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x6827A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x20A78, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x6828E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x20ABC, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x682A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x20AC0, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x682B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x20B04, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x682CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x20B08, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x682DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x20B4C, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x682F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x20B50, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x68306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x20B94, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x6831A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x20B98, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x6832E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x20BDC, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x68342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x20BE0, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x68356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x21034, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x6836A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x211CC, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x6837E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x211D0, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x68392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x211E0, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x683A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x211E4, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x683BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x21228, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x683CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x2122C, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x683E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x21270, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x683F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x21274, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x6844B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAFC, symBinAddr: 0x1FAD4, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x684ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB7C, symBinAddr: 0x1FB54, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x68509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBA4, symBinAddr: 0x1FB7C, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x6852B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCE0, symBinAddr: 0x1FCB8, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x68547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD08, symBinAddr: 0x1FCE0, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x68569, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE80, symBinAddr: 0x1FE58, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x68585, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEA8, symBinAddr: 0x1FE80, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x686D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x212E4, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x686F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x212E4, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68729, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x2182C, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x687BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x21854, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x688B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x21898, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x688D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x21898, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x68919, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x218B0, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x689FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x218F4, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68A7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x212FC, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68AF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x21698, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68B0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x216A8, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68B2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x216B8, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68B49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x216E4, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x68B88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x21718, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x68BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x21728, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x68BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x2172C, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x68BEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x21734, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x68C29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x2173C, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x68C57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x2174C, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x68C8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x584, symBinAddr: 0x21750, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x68CA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x598, symBinAddr: 0x21764, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x68CCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x21778, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x68CEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x217A4, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x68D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x217D0, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x68D35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x217D8, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x68D71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x217E0, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x68D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x217F0, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x68DBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x217F4, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x68DD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x217FC, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x68E14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x21804, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x68E42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x21814, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x68E6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x21818, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x68E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x21828, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x68EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x2195C, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x68EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x21960, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x68F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x219A4, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x68F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x219D4, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x68F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x21A50, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x68F41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x21BD4, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x68F5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x21F68, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x68F85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x21F98, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x68F99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x21FC4, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x68FAD, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x21FF8, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x68FC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x2203C, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x68FD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x221E8, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x68FE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x22230, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x68FFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x222A8, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x69011, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x222B8, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x69025, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x222EC, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x69039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x222F4, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x6904D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x22328, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x69061, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x2237C, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x69075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x22390, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x69089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x223CC, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x6909D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x22414, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x690B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x22454, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x690C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x22464, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x690D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x2249C, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x690ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x22508, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x69101, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x225E4, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x69115, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x22600, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x69129, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x22674, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x6913D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x226D0, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x69151, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x22734, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x69165, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x22744, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x69179, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x2276C, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x6918D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x227A8, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x691A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x22814, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x691B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x22858, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x691C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x228A0, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x691DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x228E0, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x691F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x228F0, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x69205, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x22944, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x69219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x22988, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x6922D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x22998, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x69241, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x22A28, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x69255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x22AE4, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x69269, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x22AEC, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x6927D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x22AF0, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x69291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x22AFC, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x692E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x2191C, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x69531, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x22B1C, symSize: 0x1A0 } - - { offsetInCU: 0x373, offset: 0x69836, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x228, symBinAddr: 0x22D44, symSize: 0x2244 } - - { offsetInCU: 0x15CE, offset: 0x6AA91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB1D4, symBinAddr: 0x2DCF0, symSize: 0x3CB4 } - - { offsetInCU: 0x3157, offset: 0x6C61A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xEE88, symBinAddr: 0x319A4, symSize: 0x634 } - - { offsetInCU: 0x372B, offset: 0x6CBEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0xF4E4, symBinAddr: 0x32000, symSize: 0x40 } - - { offsetInCU: 0x3753, offset: 0x6CC16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x142E4, symBinAddr: 0x36E00, symSize: 0x3E0 } - - { offsetInCU: 0x38E2, offset: 0x6CDA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10C14, symBinAddr: 0x33730, symSize: 0x276C } - - { offsetInCU: 0x5016, offset: 0x6E4D9, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x246C, symBinAddr: 0x24F88, symSize: 0x2A8 } - - { offsetInCU: 0x53D1, offset: 0x6E894, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2714, symBinAddr: 0x25230, symSize: 0x6F8 } - - { offsetInCU: 0x5835, offset: 0x6ECF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x2E0C, symBinAddr: 0x25928, symSize: 0x5D8 } - - { offsetInCU: 0x5B68, offset: 0x6F02B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x33E4, symBinAddr: 0x25F00, symSize: 0x395C } - - { offsetInCU: 0x7562, offset: 0x70A25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6D40, symBinAddr: 0x2985C, symSize: 0x278 } - - { offsetInCU: 0x7679, offset: 0x70B3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x744C, symBinAddr: 0x29F68, symSize: 0x17AC } - - { offsetInCU: 0x7FD3, offset: 0x71496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6FB8, symBinAddr: 0x29AD4, symSize: 0x118 } - - { offsetInCU: 0x803C, offset: 0x714FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x723C, symBinAddr: 0x29D58, symSize: 0x1E8 } - - { offsetInCU: 0x8109, offset: 0x715CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x7424, symBinAddr: 0x29F40, symSize: 0x28 } - - { offsetInCU: 0x84A1, offset: 0x71964, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x8C4C, symBinAddr: 0x2B768, symSize: 0x754 } - - { offsetInCU: 0x88B2, offset: 0x71D75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA354, symBinAddr: 0x2CE70, symSize: 0xE80 } - - { offsetInCU: 0x917A, offset: 0x7263D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x93A0, symBinAddr: 0x2BEBC, symSize: 0xBAC } - - { offsetInCU: 0x9BDB, offset: 0x7309E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF950, symBinAddr: 0x3246C, symSize: 0x12C4 } - - { offsetInCU: 0xAC2E, offset: 0x740F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x185E0, symBinAddr: 0x3B02C, symSize: 0xBD0 } - - { offsetInCU: 0xB955, offset: 0x74E18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x13380, symBinAddr: 0x35E9C, symSize: 0xF64 } - - { offsetInCU: 0xC283, offset: 0x75746, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x146C4, symBinAddr: 0x371E0, symSize: 0x208 } - - { offsetInCU: 0xC319, offset: 0x757DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x148CC, symBinAddr: 0x373E8, symSize: 0x290 } - - { offsetInCU: 0xC40A, offset: 0x758CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14B6C, symBinAddr: 0x37688, symSize: 0xA0 } - - { offsetInCU: 0xC49F, offset: 0x75962, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x14C60, symBinAddr: 0x3777C, symSize: 0x1024 } - - { offsetInCU: 0xCE94, offset: 0x76357, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x15C84, symBinAddr: 0x387A0, symSize: 0x4C } - - { offsetInCU: 0xCEB0, offset: 0x76373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x15CD0, symBinAddr: 0x387EC, symSize: 0x150 } - - { offsetInCU: 0xCFBF, offset: 0x76482, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x15E20, symBinAddr: 0x3893C, symSize: 0x54 } - - { offsetInCU: 0xD038, offset: 0x764FB, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x15EC8, symBinAddr: 0x38990, symSize: 0x4C } - - { offsetInCU: 0xD0BC, offset: 0x7657F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x15F14, symBinAddr: 0x389DC, symSize: 0x50 } - - { offsetInCU: 0xD135, offset: 0x765F8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x15F64, symBinAddr: 0x38A2C, symSize: 0x64 } - - { offsetInCU: 0xD177, offset: 0x7663A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15FC8, symBinAddr: 0x38A90, symSize: 0x30 } - - { offsetInCU: 0xD1A4, offset: 0x76667, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15FF8, symBinAddr: 0x38AC0, symSize: 0x80 } - - { offsetInCU: 0xD242, offset: 0x76705, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x16078, symBinAddr: 0x38B40, symSize: 0x6C } - - { offsetInCU: 0xD2DC, offset: 0x7679F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x160E4, symBinAddr: 0x38BAC, symSize: 0x4C } - - { offsetInCU: 0xD360, offset: 0x76823, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1615C, symBinAddr: 0x38C24, symSize: 0xE0 } - - { offsetInCU: 0xD3AA, offset: 0x7686D, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1623C, symBinAddr: 0x38D04, symSize: 0xC4 } - - { offsetInCU: 0xD3D7, offset: 0x7689A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16300, symBinAddr: 0x38DC8, symSize: 0x174 } - - { offsetInCU: 0xD48B, offset: 0x7694E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x16474, symBinAddr: 0x38F3C, symSize: 0x104 } - - { offsetInCU: 0xD61E, offset: 0x76AE1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x16578, symBinAddr: 0x39040, symSize: 0x128 } - - { offsetInCU: 0xD7C1, offset: 0x76C84, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x166A0, symBinAddr: 0x39168, symSize: 0x16C } - - { offsetInCU: 0xD996, offset: 0x76E59, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1680C, symBinAddr: 0x392D4, symSize: 0x174 } - - { offsetInCU: 0xDB51, offset: 0x77014, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16980, symBinAddr: 0x39448, symSize: 0xFC } - - { offsetInCU: 0xDCF4, offset: 0x771B7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x16A7C, symBinAddr: 0x39544, symSize: 0xFC } - - { offsetInCU: 0xDE97, offset: 0x7735A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x16C7C, symBinAddr: 0x39744, symSize: 0xFC } - - { offsetInCU: 0xDFC1, offset: 0x77484, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16D78, symBinAddr: 0x39840, symSize: 0x40 } - - { offsetInCU: 0xE00E, offset: 0x774D1, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1701C, symBinAddr: 0x39AE4, symSize: 0x138 } - - { offsetInCU: 0xE0AD, offset: 0x77570, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x17154, symBinAddr: 0x39C1C, symSize: 0xB4 } - - { offsetInCU: 0xE15D, offset: 0x77620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x17454, symBinAddr: 0x39EDC, symSize: 0x638 } - - { offsetInCU: 0xE501, offset: 0x779C4, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x17A8C, symBinAddr: 0x3A514, symSize: 0x18C } - - { offsetInCU: 0xE612, offset: 0x77AD5, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17C18, symBinAddr: 0x3A6A0, symSize: 0xC0 } - - { offsetInCU: 0xE715, offset: 0x77BD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17EF4, symBinAddr: 0x3A940, symSize: 0x1A0 } - - { offsetInCU: 0xE86A, offset: 0x77D2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x18094, symBinAddr: 0x3AAE0, symSize: 0x380 } - - { offsetInCU: 0xEB96, offset: 0x78059, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x191B0, symBinAddr: 0x3BBFC, symSize: 0x198 } - - { offsetInCU: 0xECB2, offset: 0x78175, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19348, symBinAddr: 0x3BD94, symSize: 0xC0 } - - { offsetInCU: 0xEFE4, offset: 0x784A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x19408, symBinAddr: 0x3BE54, symSize: 0xD38 } - - { offsetInCU: 0x1025F, offset: 0x79722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A140, symBinAddr: 0x3CB8C, symSize: 0x1C0 } - - { offsetInCU: 0x1040D, offset: 0x798D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A300, symBinAddr: 0x3CD4C, symSize: 0x1A4 } - - { offsetInCU: 0x10500, offset: 0x799C3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A4A4, symBinAddr: 0x3CEF0, symSize: 0x84 } - - { offsetInCU: 0x1070D, offset: 0x79BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1AFC8, symBinAddr: 0x3DA14, symSize: 0x8 } - - { offsetInCU: 0x10721, offset: 0x79BE4, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1B0AC, symBinAddr: 0x3DAF8, symSize: 0x10 } - - { offsetInCU: 0x10735, offset: 0x79BF8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1B0BC, symBinAddr: 0x3DB08, symSize: 0x14 } - - { offsetInCU: 0x10749, offset: 0x79C0C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1B0D0, symBinAddr: 0x3DB1C, symSize: 0x50 } - - { offsetInCU: 0x1075D, offset: 0x79C20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1B130, symBinAddr: 0x3DB6C, symSize: 0x44 } - - { offsetInCU: 0x10771, offset: 0x79C34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1B174, symBinAddr: 0x3DBB0, symSize: 0x30C } - - { offsetInCU: 0x10785, offset: 0x79C48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1B480, symBinAddr: 0x3DEBC, symSize: 0x240 } - - { offsetInCU: 0x10799, offset: 0x79C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1B6C0, symBinAddr: 0x3E0FC, symSize: 0x70 } - - { offsetInCU: 0x107AD, offset: 0x79C70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1B730, symBinAddr: 0x3E16C, symSize: 0x34 } - - { offsetInCU: 0x107C1, offset: 0x79C84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1B764, symBinAddr: 0x3E1A0, symSize: 0x174 } - - { offsetInCU: 0x107D5, offset: 0x79C98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1B8D8, symBinAddr: 0x3E314, symSize: 0xB4 } - - { offsetInCU: 0x1080A, offset: 0x79CCD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1C1A4, symBinAddr: 0x3E3C8, symSize: 0xC4 } - - { offsetInCU: 0x10880, offset: 0x79D43, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C268, symBinAddr: 0x3E48C, symSize: 0x78 } - - { offsetInCU: 0x108AD, offset: 0x79D70, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C2E0, symBinAddr: 0x3E504, symSize: 0x80 } - - { offsetInCU: 0x10923, offset: 0x79DE6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C360, symBinAddr: 0x3E584, symSize: 0x68 } - - { offsetInCU: 0x10A47, offset: 0x79F0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C3C8, symBinAddr: 0x3E5EC, symSize: 0x664 } - - { offsetInCU: 0x10EEB, offset: 0x7A3AE, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1CA3C, symBinAddr: 0x3EC60, symSize: 0x4C } - - { offsetInCU: 0x10EFF, offset: 0x7A3C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1CB30, symBinAddr: 0x3ECCC, symSize: 0x8 } - - { offsetInCU: 0x10F13, offset: 0x7A3D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1CB38, symBinAddr: 0x3ECD4, symSize: 0x44 } - - { offsetInCU: 0x10F27, offset: 0x7A3EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1CB7C, symBinAddr: 0x3ED18, symSize: 0x44 } - - { offsetInCU: 0x10F3B, offset: 0x7A3FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1CC28, symBinAddr: 0x3ED80, symSize: 0x8 } - - { offsetInCU: 0x10F4F, offset: 0x7A412, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1CC40, symBinAddr: 0x3ED88, symSize: 0x3C } - - { offsetInCU: 0x10F63, offset: 0x7A426, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1CC7C, symBinAddr: 0x3EDC4, symSize: 0x34 } - - { offsetInCU: 0x10F77, offset: 0x7A43A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1CD30, symBinAddr: 0x3EE78, symSize: 0x44 } - - { offsetInCU: 0x10FAC, offset: 0x7A46F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CE38, symBinAddr: 0x3EF80, symSize: 0x48 } - - { offsetInCU: 0x10FCB, offset: 0x7A48E, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CE80, symBinAddr: 0x3EFC8, symSize: 0x64 } - - { offsetInCU: 0x1100E, offset: 0x7A4D1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CEE4, symBinAddr: 0x3F02C, symSize: 0x80 } - - { offsetInCU: 0x110A3, offset: 0x7A566, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CF64, symBinAddr: 0x3F0AC, symSize: 0x120 } - - { offsetInCU: 0x1118B, offset: 0x7A64E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1D0CC, symBinAddr: 0x3F214, symSize: 0x48 } - - { offsetInCU: 0x1119F, offset: 0x7A662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1D114, symBinAddr: 0x3F25C, symSize: 0x40 } - - { offsetInCU: 0x111B3, offset: 0x7A676, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1D228, symBinAddr: 0x3F370, symSize: 0x48 } - - { offsetInCU: 0x111C7, offset: 0x7A68A, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1D2F0, symBinAddr: 0x3F438, symSize: 0x18 } - - { offsetInCU: 0x111DB, offset: 0x7A69E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1D308, symBinAddr: 0x3F450, symSize: 0x10 } - - { offsetInCU: 0x111EF, offset: 0x7A6B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1D318, symBinAddr: 0x3F460, symSize: 0x34 } - - { offsetInCU: 0x11203, offset: 0x7A6C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D388, symBinAddr: 0x3F4D0, symSize: 0x30 } - - { offsetInCU: 0x11250, offset: 0x7A713, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x1A0, symBinAddr: 0x22CBC, symSize: 0x88 } - - { offsetInCU: 0x11698, offset: 0x7AB5B, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9F4C, symBinAddr: 0x2CA68, symSize: 0x408 } - - { offsetInCU: 0x11973, offset: 0x7AE36, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF7C4, symBinAddr: 0x322E0, symSize: 0x18C } - - { offsetInCU: 0x11B91, offset: 0x7B054, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x14C0C, symBinAddr: 0x37728, symSize: 0x54 } - - { offsetInCU: 0x11CFE, offset: 0x7B1C1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x17208, symBinAddr: 0x39CD0, symSize: 0x110 } - - { offsetInCU: 0x11E3F, offset: 0x7B302, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x17358, symBinAddr: 0x39DE0, symSize: 0xFC } - - { offsetInCU: 0x11F40, offset: 0x7B403, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17D38, symBinAddr: 0x3A784, symSize: 0x1BC } - - { offsetInCU: 0x1200E, offset: 0x7B4D1, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18414, symBinAddr: 0x3AE60, symSize: 0x1CC } - - { offsetInCU: 0x122D1, offset: 0x7B794, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A724, symBinAddr: 0x3D170, symSize: 0x1DC } - - { offsetInCU: 0x123BD, offset: 0x7B880, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A900, symBinAddr: 0x3D34C, symSize: 0x11C } - - { offsetInCU: 0x12504, offset: 0x7B9C7, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1AA1C, symBinAddr: 0x3D468, symSize: 0xFC } - - { offsetInCU: 0x1264B, offset: 0x7BB0E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1AB18, symBinAddr: 0x3D564, symSize: 0xE4 } - - { offsetInCU: 0x12786, offset: 0x7BC49, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1ABFC, symBinAddr: 0x3D648, symSize: 0x114 } - - { offsetInCU: 0x128C7, offset: 0x7BD8A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AD10, symBinAddr: 0x3D75C, symSize: 0xEC } - - { offsetInCU: 0x12A0E, offset: 0x7BED1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1AEE4, symBinAddr: 0x3D930, symSize: 0xE4 } - - { offsetInCU: 0x12B6D, offset: 0x7C030, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CD74, symBinAddr: 0x3EEBC, symSize: 0xC4 } - - { offsetInCU: 0x12E13, offset: 0x7C2D6, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x70D0, symBinAddr: 0x29BEC, symSize: 0x16C } - - { offsetInCU: 0x27, offset: 0x7C884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F538, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7C89C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F538, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7C8B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3F568, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7C8C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3F654, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7C8D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3F8CC, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7C8EC, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3FCE8, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7C900, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3FCF0, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7C914, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3FF38, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7C928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3FF80, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7C93C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x4003C, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7CC6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x404F8, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7CD1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x406FC, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D1A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x4130C, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D3C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x4184C, symSize: 0x9B0 } - - { offsetInCU: 0xD3E, offset: 0x7D75B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x21E4, symBinAddr: 0x42228, symSize: 0x21A4 } - - { offsetInCU: 0x202F, offset: 0x7EA4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE2C8, symBinAddr: 0x4E30C, symSize: 0x6F8 } - - { offsetInCU: 0x23FC, offset: 0x7EE19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4388, symBinAddr: 0x443CC, symSize: 0x1288 } - - { offsetInCU: 0x2F50, offset: 0x7F96D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x5610, symBinAddr: 0x45654, symSize: 0xBF4 } - - { offsetInCU: 0x377E, offset: 0x8019B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x6204, symBinAddr: 0x46248, symSize: 0x418 } - - { offsetInCU: 0x3895, offset: 0x802B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6F14, symBinAddr: 0x46F58, symSize: 0x20C } - - { offsetInCU: 0x3B41, offset: 0x8055E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7120, symBinAddr: 0x47164, symSize: 0x924 } - - { offsetInCU: 0x42D4, offset: 0x80CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7A44, symBinAddr: 0x47A88, symSize: 0x2E8 } - - { offsetInCU: 0x440C, offset: 0x80E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7D2C, symBinAddr: 0x47D70, symSize: 0x658 } - - { offsetInCU: 0x47FD, offset: 0x8121A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x8384, symBinAddr: 0x483C8, symSize: 0x688 } - - { offsetInCU: 0x4ABF, offset: 0x814DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8A0C, symBinAddr: 0x48A50, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x8159A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8C3C, symBinAddr: 0x48C80, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x8161D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x8E68, symBinAddr: 0x48EAC, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x8164A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x8EE8, symBinAddr: 0x48F2C, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81686, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xCE5C, symBinAddr: 0x4CEA0, symSize: 0x7CC } - - { offsetInCU: 0x4FB0, offset: 0x819CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD628, symBinAddr: 0x4D66C, symSize: 0xA24 } - - { offsetInCU: 0x529F, offset: 0x81CBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE04C, symBinAddr: 0x4E090, symSize: 0x218 } - - { offsetInCU: 0x5374, offset: 0x81D91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xE9C0, symBinAddr: 0x4EA04, symSize: 0x86C } - - { offsetInCU: 0x567F, offset: 0x8209C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF22C, symBinAddr: 0x4F270, symSize: 0xC18 } - - { offsetInCU: 0x596E, offset: 0x8238B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xFE44, symBinAddr: 0x4FE88, symSize: 0x278 } - - { offsetInCU: 0x5A43, offset: 0x82460, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x100BC, symBinAddr: 0x50100, symSize: 0x214 } - - { offsetInCU: 0x5F39, offset: 0x82956, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x21B8, symBinAddr: 0x421FC, symSize: 0x2C } - - { offsetInCU: 0x6237, offset: 0x82C54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x8F04, symBinAddr: 0x48F48, symSize: 0x20 } - - { offsetInCU: 0x6290, offset: 0x82CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8F24, symBinAddr: 0x48F68, symSize: 0x8C } - - { offsetInCU: 0x6328, offset: 0x82D45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x8FB0, symBinAddr: 0x48FF4, symSize: 0xC48 } - - { offsetInCU: 0x683A, offset: 0x83257, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x9BF8, symBinAddr: 0x49C3C, symSize: 0x40 } - - { offsetInCU: 0x687E, offset: 0x8329B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0x9C38, symBinAddr: 0x49C7C, symSize: 0x58 } - - { offsetInCU: 0x68A9, offset: 0x832C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0x9C90, symBinAddr: 0x49CD4, symSize: 0x54 } - - { offsetInCU: 0x68EB, offset: 0x83308, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9CE4, symBinAddr: 0x49D28, symSize: 0x64 } - - { offsetInCU: 0x691E, offset: 0x8333B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x9D48, symBinAddr: 0x49D8C, symSize: 0x4 } - - { offsetInCU: 0x6949, offset: 0x83366, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9D4C, symBinAddr: 0x49D90, symSize: 0x78 } - - { offsetInCU: 0x698B, offset: 0x833A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9DC4, symBinAddr: 0x49E08, symSize: 0x90 } - - { offsetInCU: 0x69CD, offset: 0x833EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x9E54, symBinAddr: 0x49E98, symSize: 0x6C } - - { offsetInCU: 0x6A00, offset: 0x8341D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x9EC0, symBinAddr: 0x49F04, symSize: 0x4 } - - { offsetInCU: 0x6A1C, offset: 0x83439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x9EC4, symBinAddr: 0x49F08, symSize: 0x4 } - - { offsetInCU: 0x6A47, offset: 0x83464, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0x9EC8, symBinAddr: 0x49F0C, symSize: 0x74 } - - { offsetInCU: 0x6A7A, offset: 0x83497, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0x9F3C, symBinAddr: 0x49F80, symSize: 0x4 } - - { offsetInCU: 0x6A99, offset: 0x834B6, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F40, symBinAddr: 0x49F84, symSize: 0x8 } - - { offsetInCU: 0x6AB5, offset: 0x834D2, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F40, symBinAddr: 0x49F84, symSize: 0x8 } - - { offsetInCU: 0x6AC6, offset: 0x834E3, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0x9F48, symBinAddr: 0x49F8C, symSize: 0xC8 } - - { offsetInCU: 0x6B63, offset: 0x83580, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA010, symBinAddr: 0x4A054, symSize: 0xCC } - - { offsetInCU: 0x6C0F, offset: 0x8362C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA1D8, symBinAddr: 0x4A21C, symSize: 0x1F4 } - - { offsetInCU: 0x6C9B, offset: 0x836B8, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA3CC, symBinAddr: 0x4A410, symSize: 0x1C4 } - - { offsetInCU: 0x6D53, offset: 0x83770, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA590, symBinAddr: 0x4A5D4, symSize: 0x3A0 } - - { offsetInCU: 0x6E73, offset: 0x83890, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xA930, symBinAddr: 0x4A974, symSize: 0x398 } - - { offsetInCU: 0x6F8A, offset: 0x839A7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xACC8, symBinAddr: 0x4AD0C, symSize: 0x1E4 } - - { offsetInCU: 0x701B, offset: 0x83A38, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xAEAC, symBinAddr: 0x4AEF0, symSize: 0x204 } - - { offsetInCU: 0x70A1, offset: 0x83ABE, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB0B0, symBinAddr: 0x4B0F4, symSize: 0x4C } - - { offsetInCU: 0x715E, offset: 0x83B7B, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB0FC, symBinAddr: 0x4B140, symSize: 0x90 } - - { offsetInCU: 0x71F9, offset: 0x83C16, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB18C, symBinAddr: 0x4B1D0, symSize: 0x40 } - - { offsetInCU: 0x7236, offset: 0x83C53, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB1CC, symBinAddr: 0x4B210, symSize: 0x18 } - - { offsetInCU: 0x7288, offset: 0x83CA5, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB1E4, symBinAddr: 0x4B228, symSize: 0x3C } - - { offsetInCU: 0x72B1, offset: 0x83CCE, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB220, symBinAddr: 0x4B264, symSize: 0x1C } - - { offsetInCU: 0x7381, offset: 0x83D9E, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB23C, symBinAddr: 0x4B280, symSize: 0xE0 } - - { offsetInCU: 0x74A4, offset: 0x83EC1, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xB400, symBinAddr: 0x4B444, symSize: 0x294 } - - { offsetInCU: 0x751B, offset: 0x83F38, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xB930, symBinAddr: 0x4B974, symSize: 0x8C } - - { offsetInCU: 0x7533, offset: 0x83F50, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xB9BC, symBinAddr: 0x4BA00, symSize: 0x4C } - - { offsetInCU: 0x7588, offset: 0x83FA5, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBA08, symBinAddr: 0x4BA4C, symSize: 0x154 } - - { offsetInCU: 0x75F6, offset: 0x84013, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBB5C, symBinAddr: 0x4BBA0, symSize: 0xF0 } - - { offsetInCU: 0x761B, offset: 0x84038, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xBC4C, symBinAddr: 0x4BC90, symSize: 0x214 } - - { offsetInCU: 0x7654, offset: 0x84071, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xBE60, symBinAddr: 0x4BEA4, symSize: 0x78 } - - { offsetInCU: 0x766C, offset: 0x84089, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xBED8, symBinAddr: 0x4BF1C, symSize: 0x1C } - - { offsetInCU: 0x7684, offset: 0x840A1, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBEF4, symBinAddr: 0x4BF38, symSize: 0x1C } - - { offsetInCU: 0x769C, offset: 0x840B9, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBF10, symBinAddr: 0x4BF54, symSize: 0x1C } - - { offsetInCU: 0x7701, offset: 0x8411E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xBF2C, symBinAddr: 0x4BF70, symSize: 0x104 } - - { offsetInCU: 0x7864, offset: 0x84281, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xC030, symBinAddr: 0x4C074, symSize: 0x174 } - - { offsetInCU: 0x79D4, offset: 0x843F1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC1A4, symBinAddr: 0x4C1E8, symSize: 0x124 } - - { offsetInCU: 0x7AD4, offset: 0x844F1, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC2C8, symBinAddr: 0x4C30C, symSize: 0x120 } - - { offsetInCU: 0x7D20, offset: 0x8473D, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xC3E8, symBinAddr: 0x4C42C, symSize: 0x36C } - - { offsetInCU: 0x830E, offset: 0x84D2B, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC754, symBinAddr: 0x4C798, symSize: 0x290 } - - { offsetInCU: 0x84FB, offset: 0x84F18, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC9E4, symBinAddr: 0x4CA28, symSize: 0x150 } - - { offsetInCU: 0x8661, offset: 0x8507E, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xCB34, symBinAddr: 0x4CB78, symSize: 0x218 } - - { offsetInCU: 0x86AD, offset: 0x850CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xCD4C, symBinAddr: 0x4CD90, symSize: 0x14 } - - { offsetInCU: 0x86E6, offset: 0x85103, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xCD60, symBinAddr: 0x4CDA4, symSize: 0xFC } - - { offsetInCU: 0x87A4, offset: 0x851C1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xE264, symBinAddr: 0x4E2A8, symSize: 0x64 } - - { offsetInCU: 0x8850, offset: 0x8526D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x102D0, symBinAddr: 0x50314, symSize: 0xA78 } - - { offsetInCU: 0x8E1E, offset: 0x8583B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10D48, symBinAddr: 0x50D8C, symSize: 0x104 } - - { offsetInCU: 0x8F8A, offset: 0x859A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10E4C, symBinAddr: 0x50E90, symSize: 0x2D8C } - - { offsetInCU: 0x9650, offset: 0x8606D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x13BD8, symBinAddr: 0x53C1C, symSize: 0x120 } - - { offsetInCU: 0x9761, offset: 0x8617E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x13CF8, symBinAddr: 0x53D3C, symSize: 0x80 } - - { offsetInCU: 0x97E4, offset: 0x86201, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13D78, symBinAddr: 0x53DBC, symSize: 0x654 } - - { offsetInCU: 0x9B80, offset: 0x8659D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x1442C, symBinAddr: 0x54410, symSize: 0x10 } - - { offsetInCU: 0x9B94, offset: 0x865B1, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x1443C, symBinAddr: 0x54420, symSize: 0x10 } - - { offsetInCU: 0x9BA8, offset: 0x865C5, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x14490, symBinAddr: 0x54430, symSize: 0x48 } - - { offsetInCU: 0x9BBC, offset: 0x865D9, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x14540, symBinAddr: 0x54478, symSize: 0x3C } - - { offsetInCU: 0x9BD0, offset: 0x865ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x1457C, symBinAddr: 0x544B4, symSize: 0x44 } - - { offsetInCU: 0x9BE4, offset: 0x86601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOf', symObjAddr: 0x145C0, symBinAddr: 0x544F8, symSize: 0x48 } - - { offsetInCU: 0x9BF8, offset: 0x86615, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x14680, symBinAddr: 0x5457C, symSize: 0x8 } - - { offsetInCU: 0x9C0C, offset: 0x86629, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14688, symBinAddr: 0x54584, symSize: 0x10 } - - { offsetInCU: 0x9C20, offset: 0x8663D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14698, symBinAddr: 0x54594, symSize: 0x8 } - - { offsetInCU: 0x9C34, offset: 0x86651, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14720, symBinAddr: 0x545D8, symSize: 0x30 } - - { offsetInCU: 0x9C8C, offset: 0x866A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x147E0, symBinAddr: 0x54698, symSize: 0x24 } - - { offsetInCU: 0x9CC8, offset: 0x866E5, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x1484C, symBinAddr: 0x546BC, symSize: 0x44 } - - { offsetInCU: 0x9CF7, offset: 0x86714, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x4004C, symSize: 0x12C } - - { offsetInCU: 0x9D2D, offset: 0x8674A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x40178, symSize: 0x58 } - - { offsetInCU: 0x9E0D, offset: 0x8682A, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x401D0, symSize: 0x90 } - - { offsetInCU: 0x9E36, offset: 0x86853, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x40260, symSize: 0xA0 } - - { offsetInCU: 0x9F62, offset: 0x8697F, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x40300, symSize: 0x9C } - - { offsetInCU: 0xA071, offset: 0x86A8E, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x4039C, symSize: 0x74 } - - { offsetInCU: 0xA0F6, offset: 0x86B13, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x40410, symSize: 0x4 } - - { offsetInCU: 0xA118, offset: 0x86B35, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x40414, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x87531, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x547C4, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x8755C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEE0, symBinAddr: 0x556A4, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x87587, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE8, symBinAddr: 0x556AC, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x875B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF0C, symBinAddr: 0x556D0, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x875D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF18, symBinAddr: 0x556DC, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x875F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5C00, symBinAddr: 0x5A334, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87636, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x547E4, symSize: 0x18C } - - { offsetInCU: 0x1BC, offset: 0x8768B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF74, symBinAddr: 0x55738, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x876C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC4, symBinAddr: 0x55788, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x876E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5D2C, symBinAddr: 0x5A460, symSize: 0x133C } - - { offsetInCU: 0x267, offset: 0x87736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x1AC, symBinAddr: 0x54970, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x87785, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1014, symBinAddr: 0x557D8, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x877EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x102C, symBinAddr: 0x557F0, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87865, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1058, symBinAddr: 0x5581C, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1060, symBinAddr: 0x55824, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x878C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1084, symBinAddr: 0x55848, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x878DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1090, symBinAddr: 0x55854, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x878F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B4C, symBinAddr: 0x5B868, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x8793F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CC, symBinAddr: 0x54990, symSize: 0x274 } - - { offsetInCU: 0x4C5, offset: 0x87994, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x10EC, symBinAddr: 0x558B0, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x879CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x113C, symBinAddr: 0x55900, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x879EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D28, symBinAddr: 0x5BA44, symSize: 0xF48 } - - { offsetInCU: 0x569, offset: 0x87A38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x440, symBinAddr: 0x54C04, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x87A71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x54C24, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x87A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x54C24, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x87AF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x55974, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x87B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1214, symBinAddr: 0x559D8, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x87B75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x123C, symBinAddr: 0x55A00, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x87BAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1244, symBinAddr: 0x55A08, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x87C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x12AC, symBinAddr: 0x55A70, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x87C4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x12B8, symBinAddr: 0x55A7C, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x87C69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x480, symBinAddr: 0x54C44, symSize: 0x1A0 } - - { offsetInCU: 0x7EF, offset: 0x87CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1314, symBinAddr: 0x55AD8, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x87CF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x135C, symBinAddr: 0x55B20, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x87D18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8E4C, symBinAddr: 0x5CB68, symSize: 0x230 } - - { offsetInCU: 0x899, offset: 0x87D68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x620, symBinAddr: 0x54DE4, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x87D93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x139C, symBinAddr: 0x55B60, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x87DBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A4, symBinAddr: 0x55B68, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x87DEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x13C8, symBinAddr: 0x55B8C, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x87E0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x13D4, symBinAddr: 0x55B98, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x87E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x907C, symBinAddr: 0x5CD98, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x87E6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x54E04, symSize: 0x278 } - - { offsetInCU: 0x9F3, offset: 0x87EC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1430, symBinAddr: 0x55BF4, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x87EF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1490, symBinAddr: 0x55C54, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x87F1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9328, symBinAddr: 0x5D044, symSize: 0x548 } - - { offsetInCU: 0xA9D, offset: 0x87F6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x8B8, symBinAddr: 0x5507C, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x87FB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14E8, symBinAddr: 0x55CAC, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x88048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1500, symBinAddr: 0x55CC4, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x8812B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1544, symBinAddr: 0x55D08, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x8819D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x15AC, symBinAddr: 0x55D70, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x881C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15B4, symBinAddr: 0x55D78, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x881F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15D8, symBinAddr: 0x55D9C, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x88215, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15E4, symBinAddr: 0x55DA8, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x88231, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9870, symBinAddr: 0x5D58C, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x88277, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8D8, symBinAddr: 0x5509C, symSize: 0x128 } - - { offsetInCU: 0xDFD, offset: 0x882CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1640, symBinAddr: 0x55E04, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x88303, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x166C, symBinAddr: 0x55E30, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x88326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9924, symBinAddr: 0x5D640, symSize: 0x1B0 } - - { offsetInCU: 0xEA8, offset: 0x88377, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0xA00, symBinAddr: 0x551C4, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x883A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x170C, symBinAddr: 0x55ED0, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x883CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1714, symBinAddr: 0x55ED8, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x883FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1738, symBinAddr: 0x55EFC, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x8841A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1744, symBinAddr: 0x55F08, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x88436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9AD4, symBinAddr: 0x5D7F0, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x8847C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA20, symBinAddr: 0x551E4, symSize: 0x224 } - - { offsetInCU: 0x1002, offset: 0x884D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x55F64, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x88508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1810, symBinAddr: 0x55FD4, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x8852B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9D08, symBinAddr: 0x5DA24, symSize: 0x8D8 } - - { offsetInCU: 0x10A6, offset: 0x88575, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC44, symBinAddr: 0x55408, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x885AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55428, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x885DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55428, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88625, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x19FC, symBinAddr: 0x561C0, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x8866B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1A40, symBinAddr: 0x56204, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x8867F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1A68, symBinAddr: 0x5622C, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x886B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A70, symBinAddr: 0x56234, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x8871A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1AAC, symBinAddr: 0x56270, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AB8, symBinAddr: 0x5627C, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x88752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA6AC, symBinAddr: 0x5E3C8, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x8877E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC84, symBinAddr: 0x55448, symSize: 0x254 } - - { offsetInCU: 0x1304, offset: 0x887D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B14, symBinAddr: 0x562D8, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x8880A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B6C, symBinAddr: 0x56330, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x8882D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA6FC, symBinAddr: 0x5E418, symSize: 0x770 } - - { offsetInCU: 0x13D3, offset: 0x888A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1BBC, symBinAddr: 0x56380, symSize: 0x1C8 } - - { offsetInCU: 0x142F, offset: 0x888FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x1D84, symBinAddr: 0x56548, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x88945, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x59C8, symBinAddr: 0x5A180, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x889B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5A1C, symBinAddr: 0x5A1D4, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x88A03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A9C, symBinAddr: 0x5A254, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x88A39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5AA4, symBinAddr: 0x5A25C, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x88AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5B04, symBinAddr: 0x5A2BC, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x88AD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x1D94, symBinAddr: 0x56558, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x88AEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x1DB4, symBinAddr: 0x56578, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x88AFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x1EA8, symBinAddr: 0x5666C, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x88B12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x222C, symBinAddr: 0x569F0, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x88B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x2E84, symBinAddr: 0x57648, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x88B56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x2EB4, symBinAddr: 0x57678, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x88B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x2EE0, symBinAddr: 0x576A4, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x88B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x2F0C, symBinAddr: 0x576D0, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x88B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x2F38, symBinAddr: 0x576FC, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x88BA6, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2F64, symBinAddr: 0x57728, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x88BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x2F6C, symBinAddr: 0x57730, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x88BCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x332C, symBinAddr: 0x57AF0, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x88BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3388, symBinAddr: 0x57B4C, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x88BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x3474, symBinAddr: 0x57C38, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x88C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3484, symBinAddr: 0x57C48, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x88C1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x34B4, symBinAddr: 0x57C78, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x88C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x3594, symBinAddr: 0x57D58, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x88C46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x38CC, symBinAddr: 0x58090, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x88C5A, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4130, symBinAddr: 0x588F4, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x88C6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4138, symBinAddr: 0x588FC, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x88C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x449C, symBinAddr: 0x58C60, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x88C96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x44F8, symBinAddr: 0x58CBC, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x88CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x45DC, symBinAddr: 0x58DA0, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x88CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x45EC, symBinAddr: 0x58DB0, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x88CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x4690, symBinAddr: 0x58E54, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x88CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x481C, symBinAddr: 0x58FE0, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x88CFA, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4BC4, symBinAddr: 0x59388, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x88D0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4C08, symBinAddr: 0x593CC, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x88D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x4D84, symBinAddr: 0x59548, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x88D36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x4DE0, symBinAddr: 0x595A4, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x88D4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x4E74, symBinAddr: 0x59638, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x88D5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x4E84, symBinAddr: 0x59648, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x88D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x4EEC, symBinAddr: 0x596B0, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x88D86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x4FC8, symBinAddr: 0x5978C, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x88D9A, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5134, symBinAddr: 0x598F8, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x88DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5160, symBinAddr: 0x59924, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x88DC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x5224, symBinAddr: 0x599E8, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x88DD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x5280, symBinAddr: 0x59A44, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x88DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x52FC, symBinAddr: 0x59AC0, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x88DFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x530C, symBinAddr: 0x59AD0, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x88E12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x5354, symBinAddr: 0x59B18, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x88E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x5438, symBinAddr: 0x59BFC, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x88E3A, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x55D0, symBinAddr: 0x59D94, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x88E4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x5604, symBinAddr: 0x59DC8, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x88E62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5700, symBinAddr: 0x59EC4, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x88E76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x575C, symBinAddr: 0x59F20, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x88E8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x57D8, symBinAddr: 0x59F9C, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x88E9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x57E8, symBinAddr: 0x59FAC, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x88EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5810, symBinAddr: 0x59FD4, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x88EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x584C, symBinAddr: 0x5A010, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x88EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x58C4, symBinAddr: 0x5A07C, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x88EEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5908, symBinAddr: 0x5A0C0, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x88F02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x5964, symBinAddr: 0x5A11C, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x88F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x59B8, symBinAddr: 0x5A170, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x88F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5B0C, symBinAddr: 0x5A2C4, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x88F3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5B10, symBinAddr: 0x5A2C8, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x88F52, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5BD8, symBinAddr: 0x5A30C, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x88F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x7068, symBinAddr: 0x5B79C, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x88F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x70AC, symBinAddr: 0x5B7E0, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x88F8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7B08, symBinAddr: 0x5B824, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x88FA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x8C70, symBinAddr: 0x5C98C, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x88FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x8CB4, symBinAddr: 0x5C9D0, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x88FCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x8CF8, symBinAddr: 0x5CA14, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x88FDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x8D3C, symBinAddr: 0x5CA58, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x88FF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x8D80, symBinAddr: 0x5CA9C, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x89006, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x8DC4, symBinAddr: 0x5CAE0, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x8901A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x8E08, symBinAddr: 0x5CB24, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x8902E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA5E0, symBinAddr: 0x5E2FC, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x89042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xA624, symBinAddr: 0x5E340, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x89056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xA668, symBinAddr: 0x5E384, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x8906A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xAE6C, symBinAddr: 0x5EB88, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x8907E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xAEB0, symBinAddr: 0x5EBCC, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x89092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xAEF4, symBinAddr: 0x5EC10, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x890A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xAF7C, symBinAddr: 0x5EC98, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x890BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xAFC0, symBinAddr: 0x5ECDC, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x890CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB014, symBinAddr: 0x5ED20, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x890E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB0A4, symBinAddr: 0x5EDB0, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x890F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB160, symBinAddr: 0x5EE6C, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x8910A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB168, symBinAddr: 0x5EE74, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x8911E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB16C, symBinAddr: 0x5EE78, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x89132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB178, symBinAddr: 0x5EE84, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x89146, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB188, symBinAddr: 0x5EE94, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x8915A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB218, symBinAddr: 0x5EF24, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x8916E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB2D4, symBinAddr: 0x5EFE0, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x89182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB2D8, symBinAddr: 0x5EFE4, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x89196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB2E8, symBinAddr: 0x5EFF4, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x891AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB378, symBinAddr: 0x5F084, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x891BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB434, symBinAddr: 0x5F140, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x891D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB438, symBinAddr: 0x5F144, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x891E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB448, symBinAddr: 0x5F154, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x891FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB4D8, symBinAddr: 0x5F1E4, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x8920E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB594, symBinAddr: 0x5F2A0, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x89222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB598, symBinAddr: 0x5F2A4, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x89236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB5A8, symBinAddr: 0x5F2B4, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x8924A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB638, symBinAddr: 0x5F344, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x8925E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB6F4, symBinAddr: 0x5F400, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x89272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB6FC, symBinAddr: 0x5F408, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x89286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB700, symBinAddr: 0x5F40C, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x8929A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB708, symBinAddr: 0x5F414, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x892AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB718, symBinAddr: 0x5F424, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x892C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB7A8, symBinAddr: 0x5F4B4, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x892D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB864, symBinAddr: 0x5F570, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x892EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB868, symBinAddr: 0x5F574, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x892FE, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB878, symBinAddr: 0x5F584, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x89312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xB89C, symBinAddr: 0x5F5A8, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x89326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xB8BC, symBinAddr: 0x5F5C8, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x8933A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xB8FC, symBinAddr: 0x5F608, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x8934E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB90C, symBinAddr: 0x5F618, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x89362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB910, symBinAddr: 0x5F61C, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x89376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB954, symBinAddr: 0x5F660, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x8938A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB958, symBinAddr: 0x5F664, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x8939E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB99C, symBinAddr: 0x5F6A8, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x893B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB9A0, symBinAddr: 0x5F6AC, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x893C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB9E4, symBinAddr: 0x5F6F0, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x893DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB9E8, symBinAddr: 0x5F6F4, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x893EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBA2C, symBinAddr: 0x5F738, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBA30, symBinAddr: 0x5F73C, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x89416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBA74, symBinAddr: 0x5F780, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x8942A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBA78, symBinAddr: 0x5F784, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x8943E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBABC, symBinAddr: 0x5F7C8, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x89452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAC0, symBinAddr: 0x5F7CC, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x89466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB04, symBinAddr: 0x5F810, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x8947A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB08, symBinAddr: 0x5F814, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x8948E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB4C, symBinAddr: 0x5F858, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x894A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB50, symBinAddr: 0x5F85C, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x894B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB94, symBinAddr: 0x5F8A0, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x894CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB98, symBinAddr: 0x5F8A4, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x894DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBBDC, symBinAddr: 0x5F8E8, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x894F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBBE0, symBinAddr: 0x5F8EC, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC24, symBinAddr: 0x5F930, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x8951A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBC28, symBinAddr: 0x5F934, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x8952E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC6C, symBinAddr: 0x5F978, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x89542, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC70, symBinAddr: 0x5F97C, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x89556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCB4, symBinAddr: 0x5F9C0, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x8956A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCB8, symBinAddr: 0x5F9C4, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x8957E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBCFC, symBinAddr: 0x5FA08, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x89592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD00, symBinAddr: 0x5FA0C, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x895A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBD44, symBinAddr: 0x5FA50, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x895BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBD48, symBinAddr: 0x5FA54, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x895CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBD8C, symBinAddr: 0x5FA98, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x895E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD90, symBinAddr: 0x5FA9C, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x895F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBDD4, symBinAddr: 0x5FAE0, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x8960A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBDD8, symBinAddr: 0x5FAE4, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x8961E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xBE1C, symBinAddr: 0x5FB28, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xBE60, symBinAddr: 0x5FB6C, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xBEF0, symBinAddr: 0x5FBFC, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x8965A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xBFAC, symBinAddr: 0x5FCB8, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x8966E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xBFB0, symBinAddr: 0x5FCBC, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x89682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBFC0, symBinAddr: 0x5FCCC, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x89696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBFC4, symBinAddr: 0x5FCD0, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x896AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC008, symBinAddr: 0x5FD14, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x896BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC00C, symBinAddr: 0x5FD18, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x896D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC050, symBinAddr: 0x5FD5C, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x896E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC054, symBinAddr: 0x5FD60, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF24, symBinAddr: 0x556E8, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89730, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x55710, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x89752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x109C, symBinAddr: 0x55860, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x8976E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x10C4, symBinAddr: 0x55888, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x8978A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x118C, symBinAddr: 0x55950, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x897A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1198, symBinAddr: 0x5595C, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x897C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x11A0, symBinAddr: 0x55964, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x897DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x11A8, symBinAddr: 0x5596C, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89800, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x12C4, symBinAddr: 0x55A88, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x8981C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x12EC, symBinAddr: 0x55AB0, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x8983E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x13E0, symBinAddr: 0x55BA4, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x8985A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1408, symBinAddr: 0x55BCC, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x898A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x156C, symBinAddr: 0x55D30, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x89945, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15F0, symBinAddr: 0x55DB4, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x89961, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1618, symBinAddr: 0x55DDC, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x89983, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x55F14, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x8999F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1778, symBinAddr: 0x55F3C, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x899D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1878, symBinAddr: 0x5603C, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x89A88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1900, symBinAddr: 0x560C4, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x89B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1960, symBinAddr: 0x56124, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x89B58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x19A0, symBinAddr: 0x56164, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x89BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1AC4, symBinAddr: 0x56288, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x89BD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1AEC, symBinAddr: 0x562B0, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x89C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5AC8, symBinAddr: 0x5A280, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x89E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5FE0C, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x89E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5FE0C, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x89E58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5FE14, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x89E94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5FE1C, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x89EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5FE2C, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x89EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5FE30, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x89EFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5FE38, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x89F37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5FE40, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x89F65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5FE50, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x89F90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5FE54, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x89FAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5FE5C, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x89FE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5FE64, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A016, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5FE74, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5FE78, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5FECC, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A06A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5FF10, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FF20, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A1C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FF20, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5FF44, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8A32D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5FF64, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8A36F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5FF64, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8A3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5FF88, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8A4D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FFA8, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8A51A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FFA8, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8A568, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x60008, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8A57C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x60010, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8A590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x6004C, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8A6A9, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x600C4, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8A766, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x600C4, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8A95F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x6042C, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8AB0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60474, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8AB51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60474, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8AB9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x60498, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8ACDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x604B8, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8AD09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x6054C, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8AD4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x60E84, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8ADBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA70, symBinAddr: 0x60EE8, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8ADD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA7C, symBinAddr: 0x60EF4, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8AE06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA0, symBinAddr: 0x60F18, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8AE98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x60524, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8AEC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF0, symBinAddr: 0x60F68, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8AEEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB94, symBinAddr: 0x6100C, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8AF0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xBA0, symBinAddr: 0x61018, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B1CB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x60DB8, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B247, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x6103C, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8B49A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC0, symBinAddr: 0x61438, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8B61E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x10FC, symBinAddr: 0x61574, symSize: 0xAB0 } - - { offsetInCU: 0xF95, offset: 0x8BC24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1BAC, symBinAddr: 0x62024, symSize: 0x694 } - - { offsetInCU: 0x1345, offset: 0x8BFD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2240, symBinAddr: 0x626B8, symSize: 0x4B0 } - - { offsetInCU: 0x14E4, offset: 0x8C173, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x26F0, symBinAddr: 0x62B68, symSize: 0x668 } - - { offsetInCU: 0x1A13, offset: 0x8C6A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2D58, symBinAddr: 0x631D0, symSize: 0x160 } - - { offsetInCU: 0x1B2D, offset: 0x8C7BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2EB8, symBinAddr: 0x63330, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8C7FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3468, symBinAddr: 0x63884, symSize: 0x224 } - - { offsetInCU: 0x1C21, offset: 0x8C8B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x368C, symBinAddr: 0x63AA8, symSize: 0x25C } - - { offsetInCU: 0x1C86, offset: 0x8C915, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x38E8, symBinAddr: 0x63D04, symSize: 0x248 } - - { offsetInCU: 0x1DAE, offset: 0x8CA3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3B74, symBinAddr: 0x63F4C, symSize: 0x2BC } - - { offsetInCU: 0x1EED, offset: 0x8CB7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3E30, symBinAddr: 0x64208, symSize: 0x1A8 } - - { offsetInCU: 0x1F33, offset: 0x8CBC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3FD8, symBinAddr: 0x643B0, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8CF16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x444C, symBinAddr: 0x64824, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D012, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2F34, symBinAddr: 0x633AC, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D054, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2F38, symBinAddr: 0x633B0, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D068, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2F3C, symBinAddr: 0x633B4, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D07C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2F80, symBinAddr: 0x633F8, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D090, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2F84, symBinAddr: 0x633FC, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D0A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3014, symBinAddr: 0x63448, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D0B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3018, symBinAddr: 0x6344C, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D0CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x306C, symBinAddr: 0x63490, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D0E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x30FC, symBinAddr: 0x63520, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D0F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x31B8, symBinAddr: 0x635DC, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D108, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x31C0, symBinAddr: 0x635E4, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D11C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x31C4, symBinAddr: 0x635E8, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D130, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x31CC, symBinAddr: 0x635F0, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D144, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x31DC, symBinAddr: 0x63600, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x326C, symBinAddr: 0x63690, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D16C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x3328, symBinAddr: 0x6374C, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D180, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x3330, symBinAddr: 0x63754, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D194, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x3334, symBinAddr: 0x63758, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D1A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x3340, symBinAddr: 0x63764, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D1BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x3350, symBinAddr: 0x63774, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D1D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3378, symBinAddr: 0x63794, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D1E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x3384, symBinAddr: 0x637A0, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D1F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3388, symBinAddr: 0x637A4, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D20C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x33CC, symBinAddr: 0x637E8, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x33D8, symBinAddr: 0x637F4, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D234, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x33DC, symBinAddr: 0x637F8, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D248, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x3420, symBinAddr: 0x6383C, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D267, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x342C, symBinAddr: 0x63848, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D29F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3440, symBinAddr: 0x6385C, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D2D7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3454, symBinAddr: 0x63870, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8D33B, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x4564, symBinAddr: 0x6493C, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8D34F, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4608, symBinAddr: 0x64984, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8D363, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4644, symBinAddr: 0x649C0, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8D377, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x469C, symBinAddr: 0x64A08, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8D38B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x46A4, symBinAddr: 0x64A10, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8D39F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x46B4, symBinAddr: 0x64A20, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8D3B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4714, symBinAddr: 0x64A28, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8D3C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x47C8, symBinAddr: 0x64ADC, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8D3F6, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8D40E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8D422, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8D436, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8D44A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8D45E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x60574, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8D4DC, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x60598, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8D56B, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x6061C, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8D5FA, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x606A0, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8D691, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x6072C, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8D76B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x60794, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8D845, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x607FC, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8D8BA, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x60868, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8D917, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x608A8, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8D974, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x608E8, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8D99D, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x6092C, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8D9F0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x60994, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8DA6C, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x609F8, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8DAFD, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x60A5C, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8DC63, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8DC83, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8DCA3, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8DCB7, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8DCCB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8DCDF, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8DD88, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x60B68, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8DE2F, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x60BF0, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8DED2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x60C70, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8DFBE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8DFDE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8DFF2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E006, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E01A, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E08A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA4C, symBinAddr: 0x60EC4, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E0A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x60ED0, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E0C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x60ED8, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E0D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA68, symBinAddr: 0x60EE0, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E0F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB70, symBinAddr: 0x60FE8, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E10C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB7C, symBinAddr: 0x60FF4, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E128, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB84, symBinAddr: 0x60FFC, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E13C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x61004, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8E5EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x64AF8, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8E603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x64C80, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8E617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x64D24, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8E62B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x64E80, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8E63F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x65068, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8E653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x65154, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8E667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x652DC, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8E67B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x65374, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8E68F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x6540C, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8E6A3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x65494, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8E6B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x654E8, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8E6CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x65608, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8E6DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x6568C, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8E6F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x65780, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8E707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x658E0, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8E71B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x659BC, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8E72F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x65B04, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8E743, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x65B9C, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8E757, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x65C68, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8E789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x65CF0, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8E7D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x66288, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8E83E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17E8, symBinAddr: 0x662A0, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8E8B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1814, symBinAddr: 0x662CC, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8E8E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x181C, symBinAddr: 0x662D4, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8E914, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1840, symBinAddr: 0x662F8, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8E930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x184C, symBinAddr: 0x66304, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8E94C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2EBC, symBinAddr: 0x67878, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8E992, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x65D10, symSize: 0x210 } - - { offsetInCU: 0x425, offset: 0x8E9D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1468, symBinAddr: 0x65F20, symSize: 0x368 } - - { offsetInCU: 0x456, offset: 0x8EA02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18A8, symBinAddr: 0x66360, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8EA25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18BC, symBinAddr: 0x66374, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8EA7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x18D0, symBinAddr: 0x66388, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8EAA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x6656C, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8EAD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1ABC, symBinAddr: 0x66574, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8EB04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x66598, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8EB20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AEC, symBinAddr: 0x665A4, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8EB3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3078, symBinAddr: 0x67A34, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8EB82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x663A8, symSize: 0x1BC } - - { offsetInCU: 0x62B, offset: 0x8EBD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B48, symBinAddr: 0x66600, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8EC0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B94, symBinAddr: 0x6664C, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8EC31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31C4, symBinAddr: 0x67B80, symSize: 0x2A4 } - - { offsetInCU: 0x6D5, offset: 0x8EC81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1BD4, symBinAddr: 0x6668C, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8ECAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x238C, symBinAddr: 0x66E44, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8ECD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2394, symBinAddr: 0x66E4C, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8ED08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23B8, symBinAddr: 0x66E70, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8ED24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23C4, symBinAddr: 0x66E7C, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8ED40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3468, symBinAddr: 0x67E24, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8ED86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BF4, symBinAddr: 0x666AC, symSize: 0x274 } - - { offsetInCU: 0x819, offset: 0x8EDC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E68, symBinAddr: 0x66920, symSize: 0x4A0 } - - { offsetInCU: 0x84A, offset: 0x8EDF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2420, symBinAddr: 0x66ED8, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8EE19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2434, symBinAddr: 0x66EEC, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8EE3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x246C, symBinAddr: 0x66F00, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8EE51, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24D0, symBinAddr: 0x66F44, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8EE65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2598, symBinAddr: 0x66FC4, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8EE79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2620, symBinAddr: 0x67008, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8EE8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x274C, symBinAddr: 0x67134, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8EEA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x27A0, symBinAddr: 0x67178, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8EEB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2830, symBinAddr: 0x67208, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8EEC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x28EC, symBinAddr: 0x672C4, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8EEDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x28F4, symBinAddr: 0x672CC, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8EEF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x28F8, symBinAddr: 0x672D0, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8EF05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2900, symBinAddr: 0x672D8, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8EF19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2910, symBinAddr: 0x672E8, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8EF2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x29A0, symBinAddr: 0x67378, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8EF41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2A5C, symBinAddr: 0x67434, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8EF55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2A60, symBinAddr: 0x67438, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8EF69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2A70, symBinAddr: 0x67448, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8EF7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2AA0, symBinAddr: 0x67478, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8EF91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2AD0, symBinAddr: 0x674A8, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8EFA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2B2C, symBinAddr: 0x67504, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8EFB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2BDC, symBinAddr: 0x67598, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8EFCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2C40, symBinAddr: 0x675FC, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8EFE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2C9C, symBinAddr: 0x67658, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8EFF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2CFC, symBinAddr: 0x676B8, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D0C, symBinAddr: 0x676C8, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F01D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x676CC, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D54, symBinAddr: 0x67710, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D58, symBinAddr: 0x67714, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D9C, symBinAddr: 0x67758, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F06D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA0, symBinAddr: 0x6775C, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE4, symBinAddr: 0x677A0, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DE8, symBinAddr: 0x677A4, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F0A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E2C, symBinAddr: 0x677E8, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F0BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E30, symBinAddr: 0x677EC, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F0D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E74, symBinAddr: 0x67830, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F0E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E78, symBinAddr: 0x67834, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3740, symBinAddr: 0x680FC, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F118, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3784, symBinAddr: 0x68140, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F12C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x3850, symBinAddr: 0x6820C, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F140, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x38E0, symBinAddr: 0x6829C, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F154, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x399C, symBinAddr: 0x68358, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F168, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x39A0, symBinAddr: 0x6835C, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F17C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x39B0, symBinAddr: 0x6836C, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F190, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x39B4, symBinAddr: 0x68370, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F1A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x39F8, symBinAddr: 0x683B4, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F1B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39FC, symBinAddr: 0x683B8, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F1CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3A40, symBinAddr: 0x683FC, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F1E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3A44, symBinAddr: 0x68400, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F20E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1858, symBinAddr: 0x66310, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F22A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1880, symBinAddr: 0x66338, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F24C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AF8, symBinAddr: 0x665B0, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x665D8, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F28A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23D0, symBinAddr: 0x66E88, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F2A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x23F8, symBinAddr: 0x66EB0, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8F3F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6846C, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8F41C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6846C, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8F43A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x68498, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8F479, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x684CC, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8F497, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x684DC, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8F4C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x684E0, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8F4E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x6850C, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8F51F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x68540, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8F54D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x68550, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8F579, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x68554, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8F58D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x68584, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8F5A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x685AC, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8F5B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x685E8, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8F5C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x68654, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8F5DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x68698, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8F5F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x686E0, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8F605, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x68720, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8F74B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68730, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8F76F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8languageSSvpZ', symObjAddr: 0x8C08, symBinAddr: 0x88AE0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8F789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7versionSSvpZ', symObjAddr: 0x8C18, symBinAddr: 0x88AF0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8F7A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8C28, symBinAddr: 0x88B00, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8F7BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8C38, symBinAddr: 0x88B10, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8F7D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8C48, symBinAddr: 0x88B20, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8F7F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8C58, symBinAddr: 0x88B30, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8F80B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x8C68, symBinAddr: 0x88B40, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8F825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x8C78, symBinAddr: 0x88B50, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8F83F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x8C88, symBinAddr: 0x88B60, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8F859, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x8C98, symBinAddr: 0x88B70, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8F873, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x8CA8, symBinAddr: 0x88B80, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8F88D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x8CB8, symBinAddr: 0x88B90, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8F8A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x8CC8, symBinAddr: 0x88BA0, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8F8C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x8CD8, symBinAddr: 0x88BB0, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8F8DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x8CE8, symBinAddr: 0x88BC0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8F8F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x8CF8, symBinAddr: 0x88BD0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8F90F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x8D08, symBinAddr: 0x88BE0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x8F929, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x8D18, symBinAddr: 0x88BF0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x8F943, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x8D28, symBinAddr: 0x88C00, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x8F95D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x8D38, symBinAddr: 0x88C10, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x8F977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x8D48, symBinAddr: 0x88C20, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x8F991, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x8D58, symBinAddr: 0x88C30, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x8F9AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x8D68, symBinAddr: 0x88C40, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x8F9C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x8D78, symBinAddr: 0x88C50, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x8F9DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x8D88, symBinAddr: 0x88C60, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x8F9F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x8D98, symBinAddr: 0x88C70, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x8FA13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x8DA8, symBinAddr: 0x88C80, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x8FA2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x8DB8, symBinAddr: 0x88C90, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x8FA47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x8DC8, symBinAddr: 0x88CA0, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x8FA61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKeySSvpZ', symObjAddr: 0x8DD8, symBinAddr: 0x88CB0, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x8FA7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKeySSvpZ', symObjAddr: 0x8DE8, symBinAddr: 0x88CC0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x8FA95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvpZ', symObjAddr: 0x8DF8, symBinAddr: 0x88CD0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x8FAAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKeySSvpZ', symObjAddr: 0x8E08, symBinAddr: 0x88CE0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x8FAC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKeySSvpZ', symObjAddr: 0x8E18, symBinAddr: 0x88CF0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x8FAE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKeySSvpZ', symObjAddr: 0x8E28, symBinAddr: 0x88D00, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x8FAFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKeySSvpZ', symObjAddr: 0x8E38, symBinAddr: 0x88D10, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x8FB17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvpZ', symObjAddr: 0x8E48, symBinAddr: 0x88D20, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x8FB31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvpZ', symObjAddr: 0x8E58, symBinAddr: 0x88D30, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x8FB4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvpZ', symObjAddr: 0x8E68, symBinAddr: 0x88D40, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x8FB65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkeySSvpZ', symObjAddr: 0x8E78, symBinAddr: 0x88D50, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x8FB7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvpZ', symObjAddr: 0x8E88, symBinAddr: 0x88D60, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x8FB99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKeySSvpZ', symObjAddr: 0x8E98, symBinAddr: 0x88D70, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x8FBB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKeySSvpZ', symObjAddr: 0x8EA8, symBinAddr: 0x88D80, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x8FBCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKeySSvpZ', symObjAddr: 0x8EB8, symBinAddr: 0x88D90, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x8FBE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKeySSvpZ', symObjAddr: 0x8EC8, symBinAddr: 0x88DA0, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x8FC01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKeySSvpZ', symObjAddr: 0x8ED8, symBinAddr: 0x88DB0, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x8FC1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKeySSvpZ', symObjAddr: 0x8EE8, symBinAddr: 0x88DC0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x8FC35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x8EF8, symBinAddr: 0x88DD0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x8FC4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x8F08, symBinAddr: 0x88DE0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x8FC69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x8F18, symBinAddr: 0x88DF0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x8FC83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKeySSvpZ', symObjAddr: 0x8F28, symBinAddr: 0x88E00, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x8FC9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKeySSvpZ', symObjAddr: 0x8F38, symBinAddr: 0x88E10, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x8FCB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKeySSvpZ', symObjAddr: 0x8F48, symBinAddr: 0x88E20, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x8FCD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x8F58, symBinAddr: 0x88E30, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x8FCEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x8F68, symBinAddr: 0x88E40, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x8FD05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x8F78, symBinAddr: 0x88E50, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x8FD1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x8F88, symBinAddr: 0x88E60, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x8FD39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x8F98, symBinAddr: 0x88E70, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x8FD53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkeySSvpZ', symObjAddr: 0x8FA8, symBinAddr: 0x88E80, symSize: 0x0 } - - { offsetInCU: 0x63D, offset: 0x8FD61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68730, symSize: 0x40 } - - { offsetInCU: 0x65B, offset: 0x8FD7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x68770, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x8FD9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x687B0, symSize: 0x40 } - - { offsetInCU: 0x697, offset: 0x8FDBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x687F0, symSize: 0x40 } - - { offsetInCU: 0x6B5, offset: 0x8FDD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x68830, symSize: 0x40 } - - { offsetInCU: 0x6DF, offset: 0x8FE03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x68870, symSize: 0x14 } - - { offsetInCU: 0x6FA, offset: 0x8FE1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x68A04, symSize: 0x108 } - - { offsetInCU: 0x74C, offset: 0x8FE70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x68C40, symSize: 0x8 } - - { offsetInCU: 0x768, offset: 0x8FE8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x68C48, symSize: 0x18 } - - { offsetInCU: 0x780, offset: 0x8FEA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x68C48, symSize: 0x18 } - - { offsetInCU: 0x792, offset: 0x8FEB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x68884, symSize: 0x40 } - - { offsetInCU: 0x7B0, offset: 0x8FED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x688C4, symSize: 0x40 } - - { offsetInCU: 0x7CE, offset: 0x8FEF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x68904, symSize: 0x40 } - - { offsetInCU: 0x7EC, offset: 0x8FF10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x68944, symSize: 0x40 } - - { offsetInCU: 0x80A, offset: 0x8FF2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x68984, symSize: 0x40 } - - { offsetInCU: 0x828, offset: 0x8FF4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x689C4, symSize: 0x40 } - - { offsetInCU: 0x851, offset: 0x8FF75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x68B30, symSize: 0x4 } - - { offsetInCU: 0x865, offset: 0x8FF89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x68B34, symSize: 0x44 } - - { offsetInCU: 0x88F, offset: 0x8FFB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x68C60, symSize: 0x90 } - - { offsetInCU: 0x8A3, offset: 0x8FFC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x68CF0, symSize: 0xBC } - - { offsetInCU: 0x8B7, offset: 0x8FFDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x68DAC, symSize: 0x8 } - - { offsetInCU: 0x8CB, offset: 0x8FFEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x68DB4, symSize: 0x4 } - - { offsetInCU: 0x8DF, offset: 0x90003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x68DB8, symSize: 0x8 } - - { offsetInCU: 0x8F3, offset: 0x90017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x68DC0, symSize: 0x10 } - - { offsetInCU: 0x907, offset: 0x9002B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8language_WZ', symObjAddr: 0x6B0, symBinAddr: 0x68DD0, symSize: 0x20 } - - { offsetInCU: 0x921, offset: 0x90045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7version_WZ', symObjAddr: 0x6D0, symBinAddr: 0x68DF0, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x9005F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x6EC, symBinAddr: 0x68E0C, symSize: 0x1C } - - { offsetInCU: 0x955, offset: 0x90079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x708, symBinAddr: 0x68E28, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x90093, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x724, symBinAddr: 0x68E44, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x900AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPassword_WZ', symObjAddr: 0x740, symBinAddr: 0x68E60, symSize: 0x14 } - - { offsetInCU: 0x9AA, offset: 0x900CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x754, symBinAddr: 0x68E74, symSize: 0x1C } - - { offsetInCU: 0x9C4, offset: 0x900E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x770, symBinAddr: 0x68E90, symSize: 0x24 } - - { offsetInCU: 0x9DE, offset: 0x90102, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x794, symBinAddr: 0x68EB4, symSize: 0x20 } - - { offsetInCU: 0x9F8, offset: 0x9011C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7B4, symBinAddr: 0x68ED4, symSize: 0x28 } - - { offsetInCU: 0xA12, offset: 0x90136, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7DC, symBinAddr: 0x68EFC, symSize: 0x24 } - - { offsetInCU: 0xA2C, offset: 0x90150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x800, symBinAddr: 0x68F20, symSize: 0x24 } - - { offsetInCU: 0xA46, offset: 0x9016A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x824, symBinAddr: 0x68F44, symSize: 0x20 } - - { offsetInCU: 0xA60, offset: 0x90184, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x844, symBinAddr: 0x68F64, symSize: 0x28 } - - { offsetInCU: 0xA7A, offset: 0x9019E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x86C, symBinAddr: 0x68F8C, symSize: 0x1C } - - { offsetInCU: 0xA95, offset: 0x901B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKey_WZ', symObjAddr: 0x888, symBinAddr: 0x68FA8, symSize: 0x18 } - - { offsetInCU: 0xAAF, offset: 0x901D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKey_WZ', symObjAddr: 0x8A0, symBinAddr: 0x68FC0, symSize: 0x18 } - - { offsetInCU: 0xAC9, offset: 0x901ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKey_WZ', symObjAddr: 0x8B8, symBinAddr: 0x68FD8, symSize: 0x1C } - - { offsetInCU: 0xAE3, offset: 0x90207, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x68FF4, symSize: 0x1C } - - { offsetInCU: 0xAFD, offset: 0x90221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x69010, symSize: 0x18 } - - { offsetInCU: 0xB17, offset: 0x9023B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKey_WZ', symObjAddr: 0x908, symBinAddr: 0x69028, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x90255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKey_WZ', symObjAddr: 0x924, symBinAddr: 0x69044, symSize: 0x1C } - - { offsetInCU: 0xB4B, offset: 0x9026F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x940, symBinAddr: 0x69060, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x90289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x6907C, symSize: 0x18 } - - { offsetInCU: 0xB7F, offset: 0x902A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKey_WZ', symObjAddr: 0x974, symBinAddr: 0x69094, symSize: 0x18 } - - { offsetInCU: 0xB99, offset: 0x902BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x98C, symBinAddr: 0x690AC, symSize: 0x1C } - - { offsetInCU: 0xBB3, offset: 0x902D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x690C8, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x902F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkey_WZ', symObjAddr: 0x9C0, symBinAddr: 0x690E0, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x9030B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x690FC, symSize: 0x24 } - - { offsetInCU: 0xC01, offset: 0x90325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKey_WZ', symObjAddr: 0xA00, symBinAddr: 0x69120, symSize: 0x18 } - - { offsetInCU: 0xC1B, offset: 0x9033F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKey_WZ', symObjAddr: 0xA18, symBinAddr: 0x69138, symSize: 0x18 } - - { offsetInCU: 0xC35, offset: 0x90359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKey_WZ', symObjAddr: 0xA30, symBinAddr: 0x69150, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x90373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKey_WZ', symObjAddr: 0xA48, symBinAddr: 0x69168, symSize: 0x1C } - - { offsetInCU: 0xC69, offset: 0x9038D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x69184, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x903A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKey_WZ', symObjAddr: 0xA7C, symBinAddr: 0x6919C, symSize: 0x18 } - - { offsetInCU: 0xC9D, offset: 0x903C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKey_WZ', symObjAddr: 0xA94, symBinAddr: 0x691B4, symSize: 0x1C } - - { offsetInCU: 0xCB7, offset: 0x903DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x691D0, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x903F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkey_WZ', symObjAddr: 0xAC8, symBinAddr: 0x691E8, symSize: 0x18 } - - { offsetInCU: 0xCEB, offset: 0x9040F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekey_WZ', symObjAddr: 0xAE0, symBinAddr: 0x69200, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x90429, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkey_WZ', symObjAddr: 0xAF8, symBinAddr: 0x69218, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x90443, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkey_WZ', symObjAddr: 0xB10, symBinAddr: 0x69230, symSize: 0x20 } - - { offsetInCU: 0xD39, offset: 0x9045D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKey_WZ', symObjAddr: 0xB30, symBinAddr: 0x69250, symSize: 0x24 } - - { offsetInCU: 0xD53, offset: 0x90477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKey_WZ', symObjAddr: 0xB54, symBinAddr: 0x69274, symSize: 0x1C } - - { offsetInCU: 0xD6D, offset: 0x90491, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x69290, symSize: 0x1C } - - { offsetInCU: 0xD87, offset: 0x904AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x692AC, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x904C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x692C8, symSize: 0x18 } - - { offsetInCU: 0xDBB, offset: 0x904DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKey_WZ', symObjAddr: 0xBC0, symBinAddr: 0x692E0, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x904F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x692FC, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x90513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xBF4, symBinAddr: 0x69314, symSize: 0x18 } - - { offsetInCU: 0xE09, offset: 0x9052D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC0C, symBinAddr: 0x6932C, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x90547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKey_WZ', symObjAddr: 0xC24, symBinAddr: 0x69344, symSize: 0x1C } - - { offsetInCU: 0xE3D, offset: 0x90561, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x69360, symSize: 0x24 } - - { offsetInCU: 0xE57, offset: 0x9057B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKey_WZ', symObjAddr: 0xC64, symBinAddr: 0x69384, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x90595, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x693A0, symSize: 0x20 } - - { offsetInCU: 0xE8B, offset: 0x905AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCA0, symBinAddr: 0x693C0, symSize: 0x18 } - - { offsetInCU: 0xEA5, offset: 0x905C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCB8, symBinAddr: 0x693D8, symSize: 0x18 } - - { offsetInCU: 0xEBF, offset: 0x905E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCD0, symBinAddr: 0x693F0, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x905FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekey_WZ', symObjAddr: 0xCE8, symBinAddr: 0x69408, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkey_WZ', symObjAddr: 0xD00, symBinAddr: 0x69420, symSize: 0x18 } - - { offsetInCU: 0xF56, offset: 0x9067A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0xD18, symBinAddr: 0x69438, symSize: 0x13C } - - { offsetInCU: 0x1191, offset: 0x908B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x68B0C, symSize: 0x24 } - - { offsetInCU: 0x1233, offset: 0x90957, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x68B78, symSize: 0x4C } - - { offsetInCU: 0x130B, offset: 0x90A2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x68BC4, symSize: 0x34 } - - { offsetInCU: 0x1387, offset: 0x90AAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x68BF8, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x90C65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69574, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x90CA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69574, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x90CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x69598, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x90E34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1AE8, symBinAddr: 0x884A8, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x90E7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x69694, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x90EFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x696D4, symSize: 0x3EC } - - { offsetInCU: 0x302, offset: 0x910E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x55C, symBinAddr: 0x69AD4, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x9114D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C0, symBinAddr: 0x69B38, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x911B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x624, symBinAddr: 0x69B9C, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x91219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x688, symBinAddr: 0x69C00, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x9127F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6EC, symBinAddr: 0x69C64, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x9137C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x814, symBinAddr: 0x69D30, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x913ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x69D6C, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x91429, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x69D6C, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x91458, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x860, symBinAddr: 0x69D7C, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x914D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x9C4, symBinAddr: 0x69EE0, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x9153A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x9F8, symBinAddr: 0x69F14, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x915BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA4C, symBinAddr: 0x69F68, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA98, symBinAddr: 0x69FB4, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x91705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB2C, symBinAddr: 0x6A038, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x917C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA0, symBinAddr: 0x6A0AC, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91877, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC24, symBinAddr: 0x6A130, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC5C, symBinAddr: 0x6A168, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91999, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC94, symBinAddr: 0x6A1A0, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x91A2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCCC, symBinAddr: 0x6A1D8, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x91AC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD04, symBinAddr: 0x6A210, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x91B55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD3C, symBinAddr: 0x6A248, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x91BEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD74, symBinAddr: 0x6A280, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x91C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDAC, symBinAddr: 0x6A2B8, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x91CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDE4, symBinAddr: 0x6A2F0, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x91D4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE28, symBinAddr: 0x6A334, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x91E31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xF60, symBinAddr: 0x6A46C, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x91F18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x100C, symBinAddr: 0x6A518, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x91FB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1084, symBinAddr: 0x6A590, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x91FE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1108, symBinAddr: 0x6A614, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x92086, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x695F8, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x9209E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x69648, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x9213C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5B8, symBinAddr: 0x69B30, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x92150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x61C, symBinAddr: 0x69B94, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x92164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x680, symBinAddr: 0x69BF8, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x92178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6E4, symBinAddr: 0x69C5C, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x9218C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x748, symBinAddr: 0x69CC0, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x921A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x7AC, symBinAddr: 0x69CC8, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x921B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOf', symObjAddr: 0x7CC, symBinAddr: 0x69CE8, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x92215, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1250, symBinAddr: 0x6A75C, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x92229, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1258, symBinAddr: 0x6A764, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x9223D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1268, symBinAddr: 0x6A774, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x9227E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x129C, symBinAddr: 0x6A77C, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x92380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15BC, symBinAddr: 0x6AA9C, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x924D3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x695B8, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x924EF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x695BC, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x9250B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x695C0, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x92527, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x695C4, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x92543, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x695C8, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x9255F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x695CC, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x9257B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x695D0, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92597, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x695D4, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x925B3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x695D8, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x925CF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x695DC, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x925EB, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x695E0, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x92607, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x695EC, symSize: 0xC } + - { offsetInCU: 0x34, offset: 0x58969, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6EE30, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5899E, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6EE60, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58A03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x39B18, symBinAddr: 0x88B90, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x58CA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x93B0, symBinAddr: 0x11348, symSize: 0x15FC } + - { offsetInCU: 0x1C16, offset: 0x5A5CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x8000, symSize: 0x3C } + - { offsetInCU: 0x1E0E, offset: 0x5A7C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1B58, symBinAddr: 0x9B18, symSize: 0x8 } + - { offsetInCU: 0x1E22, offset: 0x5A7D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1B60, symBinAddr: 0x9B20, symSize: 0x3C } + - { offsetInCU: 0x1E36, offset: 0x5A7EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1B9C, symBinAddr: 0x9B5C, symSize: 0x168 } + - { offsetInCU: 0x227B, offset: 0x5AC2F, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8194, symBinAddr: 0x10144, symSize: 0xC } + - { offsetInCU: 0x228F, offset: 0x5AC43, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x81A0, symBinAddr: 0x10150, symSize: 0x4 } + - { offsetInCU: 0x22A3, offset: 0x5AC57, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x81A4, symBinAddr: 0x10154, symSize: 0x20 } + - { offsetInCU: 0x22B7, offset: 0x5AC6B, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x81C4, symBinAddr: 0x10174, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x5AE90, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8804, symBinAddr: 0x1079C, symSize: 0x2C } + - { offsetInCU: 0x24F0, offset: 0x5AEA4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8830, symBinAddr: 0x107C8, symSize: 0x2C } + - { offsetInCU: 0x2504, offset: 0x5AEB8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x889C, symBinAddr: 0x10834, symSize: 0x2C } + - { offsetInCU: 0x2518, offset: 0x5AECC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x88C8, symBinAddr: 0x10860, symSize: 0x2C } + - { offsetInCU: 0x2581, offset: 0x5AF35, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x8CD8, symBinAddr: 0x10C70, symSize: 0x68 } + - { offsetInCU: 0x2BB6, offset: 0x5B56A, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xAA1C, symBinAddr: 0x129B4, symSize: 0x48 } + - { offsetInCU: 0x2BCA, offset: 0x5B57E, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xAA64, symBinAddr: 0x129FC, symSize: 0x40 } + - { offsetInCU: 0x2BDE, offset: 0x5B592, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xAAA4, symBinAddr: 0x12A3C, symSize: 0x20 } + - { offsetInCU: 0x2BF2, offset: 0x5B5A6, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xAAC4, symBinAddr: 0x12A5C, symSize: 0x10 } + - { offsetInCU: 0x2C06, offset: 0x5B5BA, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xAAD4, symBinAddr: 0x12A6C, symSize: 0x3C } + - { offsetInCU: 0x2C1A, offset: 0x5B5CE, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAB70, symBinAddr: 0x12B08, symSize: 0x44 } + - { offsetInCU: 0x2C2E, offset: 0x5B5E2, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xAD3C, symBinAddr: 0x12CD4, symSize: 0x8 } + - { offsetInCU: 0x2C42, offset: 0x5B5F6, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xAD44, symBinAddr: 0x12CDC, symSize: 0x10 } + - { offsetInCU: 0x2C56, offset: 0x5B60A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xAD54, symBinAddr: 0x12CEC, symSize: 0x5C } + - { offsetInCU: 0x2C6A, offset: 0x5B61E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xADB0, symBinAddr: 0x12D48, symSize: 0x30C } + - { offsetInCU: 0x2C7E, offset: 0x5B632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB0BC, symBinAddr: 0x13054, symSize: 0x240 } + - { offsetInCU: 0x2C92, offset: 0x5B646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB2FC, symBinAddr: 0x13294, symSize: 0x70 } + - { offsetInCU: 0x2CA6, offset: 0x5B65A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xB36C, symBinAddr: 0x13304, symSize: 0x34 } + - { offsetInCU: 0x2CBA, offset: 0x5B66E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xB3A0, symBinAddr: 0x13338, symSize: 0x174 } + - { offsetInCU: 0x2CCE, offset: 0x5B682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xB514, symBinAddr: 0x134AC, symSize: 0xB4 } + - { offsetInCU: 0x2CE2, offset: 0x5B696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xB5C8, symBinAddr: 0x13560, symSize: 0x10 } + - { offsetInCU: 0x2CF6, offset: 0x5B6AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xB5D8, symBinAddr: 0x13570, symSize: 0x34 } + - { offsetInCU: 0x2D0A, offset: 0x5B6BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xB648, symBinAddr: 0x135E0, symSize: 0x5C } + - { offsetInCU: 0x2D1E, offset: 0x5B6D2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xB748, symBinAddr: 0x136E0, symSize: 0x2C } + - { offsetInCU: 0x2D32, offset: 0x5B6E6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xB774, symBinAddr: 0x1370C, symSize: 0x2C } + - { offsetInCU: 0x2D46, offset: 0x5B6FA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xB7A0, symBinAddr: 0x13738, symSize: 0x2C } + - { offsetInCU: 0x2D5A, offset: 0x5B70E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xB7CC, symBinAddr: 0x13764, symSize: 0x2C } + - { offsetInCU: 0x2D6E, offset: 0x5B722, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xB7F8, symBinAddr: 0x13790, symSize: 0x2C } + - { offsetInCU: 0x2D82, offset: 0x5B736, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xB824, symBinAddr: 0x137BC, symSize: 0x2C } + - { offsetInCU: 0x2D96, offset: 0x5B74A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xB850, symBinAddr: 0x137E8, symSize: 0x2C } + - { offsetInCU: 0x30F4, offset: 0x5BAA8, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6AB0, symBinAddr: 0xEA70, symSize: 0x6C } + - { offsetInCU: 0x3208, offset: 0x5BBBC, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8200, symBinAddr: 0x101B0, symSize: 0x80 } + - { offsetInCU: 0x3299, offset: 0x5BC4D, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8280, symBinAddr: 0x10230, symSize: 0x90 } + - { offsetInCU: 0x3339, offset: 0x5BCED, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8310, symBinAddr: 0x102C0, symSize: 0x14 } + - { offsetInCU: 0x3377, offset: 0x5BD2B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8330, symBinAddr: 0x102E0, symSize: 0x8 } + - { offsetInCU: 0x33DA, offset: 0x5BD8E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8338, symBinAddr: 0x102E8, symSize: 0x14 } + - { offsetInCU: 0x348B, offset: 0x5BE3F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x834C, symBinAddr: 0x102FC, symSize: 0x14 } + - { offsetInCU: 0x3534, offset: 0x5BEE8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8360, symBinAddr: 0x10310, symSize: 0x14 } + - { offsetInCU: 0x35DB, offset: 0x5BF8F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8374, symBinAddr: 0x10324, symSize: 0x30 } + - { offsetInCU: 0x3767, offset: 0x5C11B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x83A4, symBinAddr: 0x10354, symSize: 0x2C } + - { offsetInCU: 0x38FE, offset: 0x5C2B2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x83D0, symBinAddr: 0x10380, symSize: 0x24 } + - { offsetInCU: 0x39EA, offset: 0x5C39E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x83F4, symBinAddr: 0x103A4, symSize: 0x14 } + - { offsetInCU: 0x3A50, offset: 0x5C404, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8408, symBinAddr: 0x103B8, symSize: 0x14 } + - { offsetInCU: 0x3AB6, offset: 0x5C46A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x841C, symBinAddr: 0x103CC, symSize: 0x14 } + - { offsetInCU: 0x3B35, offset: 0x5C4E9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8430, symBinAddr: 0x103E0, symSize: 0x14 } + - { offsetInCU: 0x3BE8, offset: 0x5C59C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8444, symBinAddr: 0x103F4, symSize: 0x14 } + - { offsetInCU: 0x3C69, offset: 0x5C61D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8458, symBinAddr: 0x10408, symSize: 0x14 } + - { offsetInCU: 0x3D2B, offset: 0x5C6DF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x846C, symBinAddr: 0x1041C, symSize: 0x14 } + - { offsetInCU: 0x3DC5, offset: 0x5C779, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8480, symBinAddr: 0x10430, symSize: 0x10 } + - { offsetInCU: 0x3E2D, offset: 0x5C7E1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8490, symBinAddr: 0x10440, symSize: 0x18 } + - { offsetInCU: 0x3E49, offset: 0x5C7FD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x84A8, symBinAddr: 0x10458, symSize: 0x14 } + - { offsetInCU: 0x3EC5, offset: 0x5C879, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x84D8, symBinAddr: 0x10488, symSize: 0x8 } + - { offsetInCU: 0x3EE1, offset: 0x5C895, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x84E0, symBinAddr: 0x10490, symSize: 0x14 } + - { offsetInCU: 0x3F12, offset: 0x5C8C6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x84F4, symBinAddr: 0x104A4, symSize: 0x14 } + - { offsetInCU: 0x3F43, offset: 0x5C8F7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8508, symBinAddr: 0x104B8, symSize: 0x14 } + - { offsetInCU: 0x3F74, offset: 0x5C928, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x851C, symBinAddr: 0x104CC, symSize: 0x30 } + - { offsetInCU: 0x3FA3, offset: 0x5C957, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x854C, symBinAddr: 0x104FC, symSize: 0x2C } + - { offsetInCU: 0x3FD4, offset: 0x5C988, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8578, symBinAddr: 0x10528, symSize: 0x24 } + - { offsetInCU: 0x4005, offset: 0x5C9B9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x859C, symBinAddr: 0x1054C, symSize: 0x14 } + - { offsetInCU: 0x4036, offset: 0x5C9EA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x85B0, symBinAddr: 0x10560, symSize: 0x14 } + - { offsetInCU: 0x4067, offset: 0x5CA1B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x85C4, symBinAddr: 0x10574, symSize: 0x14 } + - { offsetInCU: 0x4098, offset: 0x5CA4C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x85D8, symBinAddr: 0x10588, symSize: 0x14 } + - { offsetInCU: 0x40C9, offset: 0x5CA7D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x85EC, symBinAddr: 0x1059C, symSize: 0x14 } + - { offsetInCU: 0x40FA, offset: 0x5CAAE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8600, symBinAddr: 0x105B0, symSize: 0x14 } + - { offsetInCU: 0x412B, offset: 0x5CADF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8614, symBinAddr: 0x105C4, symSize: 0x14 } + - { offsetInCU: 0x415C, offset: 0x5CB10, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8628, symBinAddr: 0x105D8, symSize: 0x10 } + - { offsetInCU: 0x418D, offset: 0x5CB41, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8638, symBinAddr: 0x105E8, symSize: 0x18 } + - { offsetInCU: 0x41A9, offset: 0x5CB5D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8650, symBinAddr: 0x10600, symSize: 0x14 } + - { offsetInCU: 0x41F9, offset: 0x5CBAD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8670, symBinAddr: 0x10620, symSize: 0x40 } + - { offsetInCU: 0x4281, offset: 0x5CC35, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x86B0, symBinAddr: 0x10660, symSize: 0x70 } + - { offsetInCU: 0x4305, offset: 0x5CCB9, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8768, symBinAddr: 0x10718, symSize: 0x4 } + - { offsetInCU: 0x4321, offset: 0x5CCD5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x876C, symBinAddr: 0x1071C, symSize: 0x4 } + - { offsetInCU: 0x434C, offset: 0x5CD00, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8770, symBinAddr: 0x10720, symSize: 0x40 } + - { offsetInCU: 0x43DA, offset: 0x5CD8E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x87C8, symBinAddr: 0x10760, symSize: 0x3C } + - { offsetInCU: 0x440B, offset: 0x5CDBF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x88F4, symBinAddr: 0x1088C, symSize: 0x14 } + - { offsetInCU: 0x4442, offset: 0x5CDF6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8908, symBinAddr: 0x108A0, symSize: 0x3C } + - { offsetInCU: 0x4482, offset: 0x5CE36, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8944, symBinAddr: 0x108DC, symSize: 0x88 } + - { offsetInCU: 0x452C, offset: 0x5CEE0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8A60, symBinAddr: 0x109F8, symSize: 0x84 } + - { offsetInCU: 0x4560, offset: 0x5CF14, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9078, symBinAddr: 0x11010, symSize: 0xB8 } + - { offsetInCU: 0x4638, offset: 0x5CFEC, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9130, symBinAddr: 0x110C8, symSize: 0x164 } + - { offsetInCU: 0x48B6, offset: 0x5D26A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x48D6, offset: 0x5D28A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x48EA, offset: 0x5D29E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x490A, offset: 0x5D2BE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x491E, offset: 0x5D2D2, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x4932, offset: 0x5D2E6, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x4946, offset: 0x5D2FA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x4A43, offset: 0x5D3F7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4A63, offset: 0x5D417, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4A77, offset: 0x5D42B, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4A97, offset: 0x5D44B, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4AAB, offset: 0x5D45F, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4ABF, offset: 0x5D473, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4AD3, offset: 0x5D487, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4D00, offset: 0x5D6B4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x89F4, symBinAddr: 0x1098C, symSize: 0x44 } + - { offsetInCU: 0x4D29, offset: 0x5D6DD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8A38, symBinAddr: 0x109D0, symSize: 0x28 } + - { offsetInCU: 0x4D64, offset: 0x5D718, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x89D8, symBinAddr: 0x10970, symSize: 0x10 } + - { offsetInCU: 0x4D80, offset: 0x5D734, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x89E8, symBinAddr: 0x10980, symSize: 0xC } + - { offsetInCU: 0x4DAE, offset: 0x5D762, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x89CC, symBinAddr: 0x10964, symSize: 0xC } + - { offsetInCU: 0x4E86, offset: 0x5D83A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8324, symBinAddr: 0x102D4, symSize: 0xC } + - { offsetInCU: 0x4EB8, offset: 0x5D86C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x84BC, symBinAddr: 0x1046C, symSize: 0x10 } + - { offsetInCU: 0x4ED4, offset: 0x5D888, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x84CC, symBinAddr: 0x1047C, symSize: 0xC } + - { offsetInCU: 0x4F32, offset: 0x5D8E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x803C, symSize: 0x44 } + - { offsetInCU: 0x4F46, offset: 0x5D8FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x8080, symSize: 0x4 } + - { offsetInCU: 0x4F6E, offset: 0x5D922, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x8084, symSize: 0x2BC } + - { offsetInCU: 0x50A6, offset: 0x5DA5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x8340, symSize: 0x1430 } + - { offsetInCU: 0x53BC, offset: 0x5DD70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x17B0, symBinAddr: 0x9770, symSize: 0x384 } + - { offsetInCU: 0x5415, offset: 0x5DDC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1B34, symBinAddr: 0x9AF4, symSize: 0x24 } + - { offsetInCU: 0x544D, offset: 0x5DE01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D04, symBinAddr: 0x9CC4, symSize: 0x298 } + - { offsetInCU: 0x55BE, offset: 0x5DF72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1F9C, symBinAddr: 0x9F5C, symSize: 0x3E4 } + - { offsetInCU: 0x5869, offset: 0x5E21D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2380, symBinAddr: 0xA340, symSize: 0x7A8 } + - { offsetInCU: 0x5E84, offset: 0x5E838, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2B38, symBinAddr: 0xAAF8, symSize: 0x534 } + - { offsetInCU: 0x6279, offset: 0x5EC2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x306C, symBinAddr: 0xB02C, symSize: 0x3A44 } + - { offsetInCU: 0x7252, offset: 0x5FC06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6B2C, symBinAddr: 0xEADC, symSize: 0x150 } + - { offsetInCU: 0x7331, offset: 0x5FCE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6C7C, symBinAddr: 0xEC2C, symSize: 0x300 } + - { offsetInCU: 0x7594, offset: 0x5FF48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x6F7C, symBinAddr: 0xEF2C, symSize: 0x3C8 } + - { offsetInCU: 0x78F2, offset: 0x602A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7344, symBinAddr: 0xF2F4, symSize: 0x2B0 } + - { offsetInCU: 0x7A99, offset: 0x6044D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7844, symBinAddr: 0xF7F4, symSize: 0x31C } + - { offsetInCU: 0x7BF4, offset: 0x605A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x7B60, symBinAddr: 0xFB10, symSize: 0x438 } + - { offsetInCU: 0x7E5E, offset: 0x60812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x7F98, symBinAddr: 0xFF48, symSize: 0x188 } + - { offsetInCU: 0x811A, offset: 0x60ACE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8AE4, symBinAddr: 0x10A7C, symSize: 0x1F4 } + - { offsetInCU: 0x819F, offset: 0x60B53, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x8E9C, symBinAddr: 0x10E34, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x60E51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13820, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x60E8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x13830, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x60F73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13820, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x60FE0, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x1385C, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x60FF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x13870, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61066, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0x13950, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x610C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0x13968, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x6113B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0x13994, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x61170, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x1399C, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x611A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0x139C0, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x611BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0x139CC, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x611D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2398, symBinAddr: 0x15BE8, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61399, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13E8, symBinAddr: 0x14C38, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x613D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1438, symBinAddr: 0x14C88, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x613F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x27B4, symBinAddr: 0x16004, symSize: 0x145C } + - { offsetInCU: 0x4B4, offset: 0x61451, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1488, symBinAddr: 0x14CD8, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x614A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x14CE0, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x6158C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D0, symBinAddr: 0x14D20, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x615FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1530, symBinAddr: 0x14D80, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x6164C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x153C, symBinAddr: 0x14D8C, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x616A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15B8, symBinAddr: 0x14E08, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x616C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15C4, symBinAddr: 0x14E14, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x616FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1620, symBinAddr: 0x14E70, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1670, symBinAddr: 0x14EC0, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61759, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3C10, symBinAddr: 0x17460, symSize: 0x258 } + - { offsetInCU: 0x857, offset: 0x617F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x14F18, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1724, symBinAddr: 0x14F74, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x6185A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1748, symBinAddr: 0x14F98, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1754, symBinAddr: 0x14FA4, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61892, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5DAC, symBinAddr: 0x195B8, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x6196B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0x15000, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x619A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1800, symBinAddr: 0x15050, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x619C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5F5C, symBinAddr: 0x19768, symSize: 0x320 } + - { offsetInCU: 0xA97, offset: 0x61A34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1848, symBinAddr: 0x15098, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1898, symBinAddr: 0x150E8, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61A9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x18BC, symBinAddr: 0x1510C, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18C8, symBinAddr: 0x15118, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61AD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x627C, symBinAddr: 0x19A88, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x61B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1924, symBinAddr: 0x15174, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x61BB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1964, symBinAddr: 0x151B4, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x61BDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x63E4, symBinAddr: 0x19BF0, symSize: 0x2D8 } + - { offsetInCU: 0xCA2, offset: 0x61C3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x19A4, symBinAddr: 0x151F4, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x61C74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x19F0, symBinAddr: 0x15240, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x61CA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A14, symBinAddr: 0x15264, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x61CC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x15270, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x61CDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x66BC, symBinAddr: 0x19EC8, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x61D9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A7C, symBinAddr: 0x152CC, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x61DD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AEC, symBinAddr: 0x1533C, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x61DF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x681C, symBinAddr: 0x1A028, symSize: 0x4E8 } + - { offsetInCU: 0xEC9, offset: 0x61E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B4C, symBinAddr: 0x1539C, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x61E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BD4, symBinAddr: 0x15424, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x61ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BF8, symBinAddr: 0x15448, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x61EE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C04, symBinAddr: 0x15454, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x61F04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6DD0, symBinAddr: 0x1A5DC, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x62018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C60, symBinAddr: 0x154B0, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x6204F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CC4, symBinAddr: 0x15514, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x62072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7064, symBinAddr: 0x1A870, symSize: 0x58C } + - { offsetInCU: 0x1162, offset: 0x620FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D14, symBinAddr: 0x15564, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6217F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1D2C, symBinAddr: 0x1557C, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x62262, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D70, symBinAddr: 0x155C0, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x622E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DD8, symBinAddr: 0x15628, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x6233D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DF4, symBinAddr: 0x15644, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x6236E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E18, symBinAddr: 0x15668, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x6238A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E24, symBinAddr: 0x15674, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x623A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7634, symBinAddr: 0x1AE40, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62434, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x156D0, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x6246B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EAC, symBinAddr: 0x156FC, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x6248E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x76F4, symBinAddr: 0x1AF00, symSize: 0x1B0 } + - { offsetInCU: 0x156C, offset: 0x62509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1ED0, symBinAddr: 0x15720, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x6253E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x15790, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x6256F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1F64, symBinAddr: 0x157B4, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x6258B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F70, symBinAddr: 0x157C0, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x625A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x78E8, symBinAddr: 0x1B0F4, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x626B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FCC, symBinAddr: 0x1581C, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x626E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2024, symBinAddr: 0x15874, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x6270C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7B2C, symBinAddr: 0x1B338, symSize: 0x370 } + - { offsetInCU: 0x17D2, offset: 0x6276F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x158C4, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x627A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x20D8, symBinAddr: 0x15928, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x627D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x20FC, symBinAddr: 0x1594C, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x627F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2108, symBinAddr: 0x15958, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x6280D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E9C, symBinAddr: 0x1B6A8, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x628EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2164, symBinAddr: 0x159B4, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62926, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21AC, symBinAddr: 0x159FC, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62949, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8090, symBinAddr: 0x1B89C, symSize: 0x390 } + - { offsetInCU: 0x1A2F, offset: 0x629CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2278, symBinAddr: 0x15AC8, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62A16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2290, symBinAddr: 0x15AE0, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62A47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22B4, symBinAddr: 0x15B04, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62A63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x22C0, symBinAddr: 0x15B10, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62A7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x84A8, symBinAddr: 0x1BCB4, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x62B26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x231C, symBinAddr: 0x15B6C, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x62B5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2360, symBinAddr: 0x15BB0, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x62B80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x85B4, symBinAddr: 0x1BDC0, symSize: 0x1DC } + - { offsetInCU: 0x1C20, offset: 0x62BBD, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3EA8, symBinAddr: 0x176B8, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x62BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3ECC, symBinAddr: 0x176DC, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x62BE5, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F10, symBinAddr: 0x17720, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x62BF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3F30, symBinAddr: 0x17740, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x62C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3F74, symBinAddr: 0x17784, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x62C21, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FB8, symBinAddr: 0x177C8, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x62C35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3FC0, symBinAddr: 0x177CC, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x62C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4010, symBinAddr: 0x1781C, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x62C5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x409C, symBinAddr: 0x178A8, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x62C71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x40A4, symBinAddr: 0x178B0, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x62C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x40A8, symBinAddr: 0x178B4, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x62C99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x40AC, symBinAddr: 0x178B8, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x62CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x40BC, symBinAddr: 0x178C8, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x62CC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x496C, symBinAddr: 0x18178, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x62CD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x497C, symBinAddr: 0x18188, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x62CE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4980, symBinAddr: 0x1818C, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x62CFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x49C4, symBinAddr: 0x181D0, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x62D11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x49C8, symBinAddr: 0x181D4, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x62D25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4A0C, symBinAddr: 0x18218, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x62D39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4A10, symBinAddr: 0x1821C, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x62D4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x4A54, symBinAddr: 0x18260, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x62D61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4A98, symBinAddr: 0x182A4, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x62D75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4ADC, symBinAddr: 0x182E8, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x62D89, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4B20, symBinAddr: 0x1832C, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x62D9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x4B64, symBinAddr: 0x18370, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x62DB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4BA8, symBinAddr: 0x183B4, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x62DC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x4BEC, symBinAddr: 0x183F8, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x62DD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x4C30, symBinAddr: 0x1843C, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x62DED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x4C74, symBinAddr: 0x18480, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x62E01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x4CB8, symBinAddr: 0x184C4, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x62E15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x4CFC, symBinAddr: 0x18508, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x62E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4D40, symBinAddr: 0x1854C, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x62E3D, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4D84, symBinAddr: 0x18590, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x62E51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4D90, symBinAddr: 0x1859C, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x62E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4E20, symBinAddr: 0x1862C, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x62E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4EDC, symBinAddr: 0x186E8, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x62E8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4EE4, symBinAddr: 0x186F0, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x62EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4EE8, symBinAddr: 0x186F4, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x62EB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4EF0, symBinAddr: 0x186FC, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x62EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4F00, symBinAddr: 0x1870C, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x62EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4F28, symBinAddr: 0x18734, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x62EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4F6C, symBinAddr: 0x18778, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x62F05, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4FE0, symBinAddr: 0x187EC, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x62F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4FF4, symBinAddr: 0x18800, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x62F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x5040, symBinAddr: 0x1884C, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x62F41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x5088, symBinAddr: 0x18894, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x62F55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x50D0, symBinAddr: 0x188DC, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x62F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x50E0, symBinAddr: 0x188EC, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x62F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5118, symBinAddr: 0x18924, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x62F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x518C, symBinAddr: 0x18998, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x62FA5, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5248, symBinAddr: 0x18A54, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x62FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x5264, symBinAddr: 0x18A70, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x62FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x52E0, symBinAddr: 0x18AEC, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x62FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5328, symBinAddr: 0x18B34, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x62FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x537C, symBinAddr: 0x18B88, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x63009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x538C, symBinAddr: 0x18B98, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x6301D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x53B4, symBinAddr: 0x18BC0, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x63031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x53F0, symBinAddr: 0x18BFC, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x63045, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x545C, symBinAddr: 0x18C68, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x63059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5468, symBinAddr: 0x18C74, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x6306D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x54AC, symBinAddr: 0x18CB8, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x63081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x54F4, symBinAddr: 0x18D00, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5534, symBinAddr: 0x18D40, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x630A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x5544, symBinAddr: 0x18D50, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x630BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x5594, symBinAddr: 0x18DA0, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x630D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5640, symBinAddr: 0x18E4C, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x630E5, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5754, symBinAddr: 0x18F60, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x630F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5780, symBinAddr: 0x18F8C, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x6310D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x581C, symBinAddr: 0x19028, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x63121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x5864, symBinAddr: 0x19070, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x63135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x58C0, symBinAddr: 0x190CC, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x63149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x58D0, symBinAddr: 0x190DC, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x6315D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5928, symBinAddr: 0x19134, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x63171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x59EC, symBinAddr: 0x191F8, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63185, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5B30, symBinAddr: 0x1933C, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63199, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x5B64, symBinAddr: 0x19370, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x631AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x5C18, symBinAddr: 0x19424, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x631C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5C60, symBinAddr: 0x1946C, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x631D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x5CC4, symBinAddr: 0x194D0, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x631E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5CD4, symBinAddr: 0x194E0, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x631FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x5CD8, symBinAddr: 0x194E4, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x63211, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5D1C, symBinAddr: 0x19528, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x63225, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5D20, symBinAddr: 0x1952C, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x63239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5D64, symBinAddr: 0x19570, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x6324D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5D68, symBinAddr: 0x19574, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x63261, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x6D04, symBinAddr: 0x1A510, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63275, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x6D48, symBinAddr: 0x1A554, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6D8C, symBinAddr: 0x1A598, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x6329D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x75F0, symBinAddr: 0x1ADFC, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x632B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x78A4, symBinAddr: 0x1B0B0, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x632C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8420, symBinAddr: 0x1BC2C, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x632D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8464, symBinAddr: 0x1BC70, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x632ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8790, symBinAddr: 0x1BF9C, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x63301, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x87D4, symBinAddr: 0x1BFE0, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63315, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x8818, symBinAddr: 0x1C024, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63329, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x88C0, symBinAddr: 0x1C0CC, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x6333D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8904, symBinAddr: 0x1C110, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x63351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8994, symBinAddr: 0x1C1A0, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63365, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A50, symBinAddr: 0x1C25C, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A54, symBinAddr: 0x1C260, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x6338D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8A64, symBinAddr: 0x1C270, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x633A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8AF4, symBinAddr: 0x1C300, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x633B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8BB0, symBinAddr: 0x1C3BC, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x633C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8BB4, symBinAddr: 0x1C3C0, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x633DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8BC4, symBinAddr: 0x1C3D0, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x633F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8C54, symBinAddr: 0x1C460, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63405, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x8D10, symBinAddr: 0x1C51C, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63419, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8D18, symBinAddr: 0x1C524, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x6342D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x8D1C, symBinAddr: 0x1C528, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x63441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8D28, symBinAddr: 0x1C534, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63455, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8D38, symBinAddr: 0x1C544, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63469, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8DC8, symBinAddr: 0x1C5D4, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x6347D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8E84, symBinAddr: 0x1C690, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x63491, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8E88, symBinAddr: 0x1C694, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x634A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8EA0, symBinAddr: 0x1C6AC, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x634B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8EA4, symBinAddr: 0x1C6B0, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x634CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8EB4, symBinAddr: 0x1C6C0, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x634E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8EEC, symBinAddr: 0x1C6F8, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x634F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8F60, symBinAddr: 0x1C76C, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63509, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9024, symBinAddr: 0x1C830, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x6351D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x9048, symBinAddr: 0x1C854, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63531, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x90BC, symBinAddr: 0x1C8C8, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63545, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x9104, symBinAddr: 0x1C910, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63559, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x9158, symBinAddr: 0x1C964, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x6356D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x9168, symBinAddr: 0x1C974, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63581, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x91A0, symBinAddr: 0x1C9AC, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63595, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x9204, symBinAddr: 0x1CA10, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x635A9, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x92B0, symBinAddr: 0x1CABC, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x635BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x92C4, symBinAddr: 0x1CAD0, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x635D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x9328, symBinAddr: 0x1CB34, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x635E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9370, symBinAddr: 0x1CB7C, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x635F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x93C0, symBinAddr: 0x1CBCC, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x6360D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x93D0, symBinAddr: 0x1CBDC, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63621, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x9408, symBinAddr: 0x1CC14, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63635, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9474, symBinAddr: 0x1CC80, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63649, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9528, symBinAddr: 0x1CD34, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x6365D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x954C, symBinAddr: 0x1CD58, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x95B8, symBinAddr: 0x1CDC4, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63685, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x9600, symBinAddr: 0x1CE0C, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63699, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9650, symBinAddr: 0x1CE5C, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x636AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9660, symBinAddr: 0x1CE6C, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x636C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9664, symBinAddr: 0x1CE70, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x636D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x96A8, symBinAddr: 0x1CEB4, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x636E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x96AC, symBinAddr: 0x1CEB8, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x636FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x96F0, symBinAddr: 0x1CEFC, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63711, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x96F4, symBinAddr: 0x1CF00, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63725, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9738, symBinAddr: 0x1CF44, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63739, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x973C, symBinAddr: 0x1CF48, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x6374D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9780, symBinAddr: 0x1CF8C, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63761, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9784, symBinAddr: 0x1CF90, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63775, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97C8, symBinAddr: 0x1CFD4, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97CC, symBinAddr: 0x1CFD8, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x6379D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9810, symBinAddr: 0x1D01C, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x637B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9814, symBinAddr: 0x1D020, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x637C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9858, symBinAddr: 0x1D064, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x637D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x985C, symBinAddr: 0x1D068, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x637ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x98A0, symBinAddr: 0x1D0AC, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x98A4, symBinAddr: 0x1D0B0, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63815, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98E8, symBinAddr: 0x1D0F4, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98EC, symBinAddr: 0x1D0F8, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x6383D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9930, symBinAddr: 0x1D13C, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63851, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9934, symBinAddr: 0x1D140, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63865, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9978, symBinAddr: 0x1D184, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63879, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x997C, symBinAddr: 0x1D188, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x6388D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x99C0, symBinAddr: 0x1D1CC, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x638A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x99C4, symBinAddr: 0x1D1D0, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x638B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9A08, symBinAddr: 0x1D214, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x638C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9A0C, symBinAddr: 0x1D218, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x638DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9A50, symBinAddr: 0x1D25C, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x638F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9A54, symBinAddr: 0x1D260, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63905, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9A98, symBinAddr: 0x1D2A4, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63919, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9ADC, symBinAddr: 0x1D2E8, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x6392D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9B20, symBinAddr: 0x1D32C, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63941, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9B64, symBinAddr: 0x1D370, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63955, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9BF4, symBinAddr: 0x1D400, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63969, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9CB0, symBinAddr: 0x1D4BC, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x6397D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9CB4, symBinAddr: 0x1D4C0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63991, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9E18, symBinAddr: 0x1D624, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x639A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9E1C, symBinAddr: 0x1D628, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x639B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9E2C, symBinAddr: 0x1D638, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x639CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9EBC, symBinAddr: 0x1D6C8, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x639E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9F78, symBinAddr: 0x1D784, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x639F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9F7C, symBinAddr: 0x1D788, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63A09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F8C, symBinAddr: 0x1D798, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63A1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x1D79C, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63A31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9FD4, symBinAddr: 0x1D7E0, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63A45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9FD8, symBinAddr: 0x1D7E4, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63A59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA01C, symBinAddr: 0x1D828, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63A6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA020, symBinAddr: 0x1D82C, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63A81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA064, symBinAddr: 0x1D870, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63A95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA068, symBinAddr: 0x1D874, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63AA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA0AC, symBinAddr: 0x1D8B8, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63ABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA0B0, symBinAddr: 0x1D8BC, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63AD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0F4, symBinAddr: 0x1D900, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63AE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0F8, symBinAddr: 0x1D904, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63AF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA13C, symBinAddr: 0x1D948, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x63B0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA140, symBinAddr: 0x1D94C, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x63B21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA184, symBinAddr: 0x1D990, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x63B35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA188, symBinAddr: 0x1D994, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x63B49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA1CC, symBinAddr: 0x1D9D8, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x63B5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x1D9DC, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x63BB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0x139D8, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x63BD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0x13A00, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x63C3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14F4, symBinAddr: 0x14D44, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15D0, symBinAddr: 0x14E20, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x63D1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15F8, symBinAddr: 0x14E48, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x63D3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x14FB0, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x63D58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0x14FD8, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x63D7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18D4, symBinAddr: 0x15124, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x63D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18FC, symBinAddr: 0x1514C, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x63DB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x1527C, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x63DD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x152A4, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x63DF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C10, symBinAddr: 0x15460, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x63E12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x15488, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x63E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D98, symBinAddr: 0x155E8, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x63F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0x15680, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x63F23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E58, symBinAddr: 0x156A8, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x63F45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F7C, symBinAddr: 0x157CC, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x63F61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1FA4, symBinAddr: 0x157F4, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x63F83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2114, symBinAddr: 0x15964, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x63F9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x213C, symBinAddr: 0x1598C, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x63FC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x22CC, symBinAddr: 0x15B1C, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x63FDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x22F4, symBinAddr: 0x15B44, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x640C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x13880, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x64147, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0x13A28, symSize: 0x41C } + - { offsetInCU: 0x31DB, offset: 0x64178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5F4, symBinAddr: 0x13E44, symSize: 0x110 } + - { offsetInCU: 0x320C, offset: 0x641A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x704, symBinAddr: 0x13F54, symSize: 0x18C } + - { offsetInCU: 0x323D, offset: 0x641DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x890, symBinAddr: 0x140E0, symSize: 0x164 } + - { offsetInCU: 0x326E, offset: 0x6420B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9F4, symBinAddr: 0x14244, symSize: 0x1B4 } + - { offsetInCU: 0x329F, offset: 0x6423C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xBA8, symBinAddr: 0x143F8, symSize: 0x204 } + - { offsetInCU: 0x32D0, offset: 0x6426D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDAC, symBinAddr: 0x145FC, symSize: 0x128 } + - { offsetInCU: 0x3301, offset: 0x6429E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xED4, symBinAddr: 0x14724, symSize: 0x1DC } + - { offsetInCU: 0x3332, offset: 0x642CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10B0, symBinAddr: 0x14900, symSize: 0x1FC } + - { offsetInCU: 0x3363, offset: 0x64300, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12AC, symBinAddr: 0x14AFC, symSize: 0x13C } + - { offsetInCU: 0x27, offset: 0x6453C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAB4, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x1DDC8, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64916, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x1DDF8, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x6492A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x1DE38, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x6493E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x1DEDC, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64952, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1DFE0, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x1E00C, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x6497A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x1E0A8, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x6498E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1E0F0, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x649A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1E150, symSize: 0x10 } + - { offsetInCU: 0x614, offset: 0x64B29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAB4, symSize: 0x38 } + - { offsetInCU: 0x62C, offset: 0x64B41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAB4, symSize: 0x38 } + - { offsetInCU: 0x653, offset: 0x64B68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x1DAEC, symSize: 0x3C } + - { offsetInCU: 0x66D, offset: 0x64B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x1DB28, symSize: 0x54 } + - { offsetInCU: 0x6A2, offset: 0x64BB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x1DB7C, symSize: 0x10 } + - { offsetInCU: 0x6B6, offset: 0x64BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x1DB8C, symSize: 0x4 } + - { offsetInCU: 0x6D7, offset: 0x64BEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0xDC, symBinAddr: 0x1DB90, symSize: 0x14 } + - { offsetInCU: 0x6EB, offset: 0x64C00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0xF0, symBinAddr: 0x1DBA4, symSize: 0x14 } + - { offsetInCU: 0x71B, offset: 0x64C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x104, symBinAddr: 0x1DBB8, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x64C54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x1DBC8, symSize: 0x4 } + - { offsetInCU: 0x760, offset: 0x64C75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x1DBCC, symSize: 0x2C } + - { offsetInCU: 0x774, offset: 0x64C89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x1DBF8, symSize: 0x34 } + - { offsetInCU: 0x7A9, offset: 0x64CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1DC2C, symSize: 0x10 } + - { offsetInCU: 0x7CD, offset: 0x64CE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1DC3C, symSize: 0x4 } + - { offsetInCU: 0x7EE, offset: 0x64D03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1DC40, symSize: 0x8 } + - { offsetInCU: 0x802, offset: 0x64D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x1DC48, symSize: 0x8 } + - { offsetInCU: 0x832, offset: 0x64D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1DC50, symSize: 0x10 } + - { offsetInCU: 0x856, offset: 0x64D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1DC60, symSize: 0x4 } + - { offsetInCU: 0x877, offset: 0x64D8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x1DC64, symSize: 0x8 } + - { offsetInCU: 0x88B, offset: 0x64DA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1DC6C, symSize: 0x8 } + - { offsetInCU: 0x8BB, offset: 0x64DD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x1DC74, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x64DF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x1DC84, symSize: 0x4 } + - { offsetInCU: 0x900, offset: 0x64E15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x1DC88, symSize: 0x2C } + - { offsetInCU: 0x914, offset: 0x64E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x1DCB4, symSize: 0x34 } + - { offsetInCU: 0x949, offset: 0x64E5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x1DCE8, symSize: 0x10 } + - { offsetInCU: 0x96D, offset: 0x64E82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x1DCF8, symSize: 0x4 } + - { offsetInCU: 0x98E, offset: 0x64EA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x1DCFC, symSize: 0x2C } + - { offsetInCU: 0x9A2, offset: 0x64EB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x1DD28, symSize: 0x34 } + - { offsetInCU: 0x9D7, offset: 0x64EEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1DD5C, symSize: 0x10 } + - { offsetInCU: 0x9FB, offset: 0x64F10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1DD6C, symSize: 0x4 } + - { offsetInCU: 0xA1C, offset: 0x64F31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1DD70, symSize: 0xC } + - { offsetInCU: 0xA30, offset: 0x64F45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1DD7C, symSize: 0xC } + - { offsetInCU: 0xA64, offset: 0x64F79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x1DD88, symSize: 0x10 } + - { offsetInCU: 0xA88, offset: 0x64F9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x1DD98, symSize: 0x4 } + - { offsetInCU: 0xAA9, offset: 0x64FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1DD9C, symSize: 0xC } + - { offsetInCU: 0xABD, offset: 0x64FD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x1DDA8, symSize: 0xC } + - { offsetInCU: 0xAF1, offset: 0x65006, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x1DDB4, symSize: 0x10 } + - { offsetInCU: 0xB15, offset: 0x6502A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x1DDC4, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x650ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x598, symBinAddr: 0x1E6F8, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x6511E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5C4, symBinAddr: 0x1E724, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x6513A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x1E960, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x651B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x7AC, symBinAddr: 0x1E90C, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x651E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7D8, symBinAddr: 0x1E938, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x65200, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x864, symBinAddr: 0x1E9C4, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x65240, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C8, symBinAddr: 0x1EA28, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x65270, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9DC, symBinAddr: 0x1EB2C, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x65284, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA6C, symBinAddr: 0x1EBBC, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65298, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB28, symBinAddr: 0x1EC78, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x652AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB2C, symBinAddr: 0x1EC7C, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x652C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB3C, symBinAddr: 0x1EC8C, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x652D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBCC, symBinAddr: 0x1ED1C, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x652E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC88, symBinAddr: 0x1EDD8, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x652FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC90, symBinAddr: 0x1EDE0, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x65310, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC94, symBinAddr: 0x1EDE4, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x65324, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC9C, symBinAddr: 0x1EDEC, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x65338, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCAC, symBinAddr: 0x1EDFC, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x6534C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x1EE00, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x65360, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF4, symBinAddr: 0x1EE44, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x65374, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF8, symBinAddr: 0x1EE48, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x6547E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1E160, symSize: 0x2AC } + - { offsetInCU: 0x433, offset: 0x654A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1E40C, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x655CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x1EFC8, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x6560F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x1EFE8, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x65663, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x1F074, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x6568A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x1F078, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x656B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1F07C, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x656D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1F0F0, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x65714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x1F0F4, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65780, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x1F174, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x657D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x1F1D8, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65827, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x1F268, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x65884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x1F2E8, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x658B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1F34C, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x658D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x1F350, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x659BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1FAA4, symSize: 0x384 } + - { offsetInCU: 0x7D5, offset: 0x65CCD, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1060, symBinAddr: 0x1FEF4, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x65CE1, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1070, symBinAddr: 0x1FF04, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x65CF5, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1104, symBinAddr: 0x1FF14, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x65D09, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x114C, symBinAddr: 0x1FF5C, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x65D1D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1160, symBinAddr: 0x1FF70, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x65D31, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x11A4, symBinAddr: 0x1FFB4, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x65D45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11E4, symBinAddr: 0x1FFF4, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x65D59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x13A8, symBinAddr: 0x201B8, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x65D6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13D8, symBinAddr: 0x201E8, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x65D81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1594, symBinAddr: 0x203A4, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x65F8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1EE94, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x65FB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1EFA8, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x660E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x1F354, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x661C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1FA30, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x66254, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF94, symBinAddr: 0x1FE28, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x662C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFFC, symBinAddr: 0x1FE90, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x66374, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AF0, symBinAddr: 0x87330, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x6638E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2AF8, symBinAddr: 0x87338, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x6639C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x203E4, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x663D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x20418, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x6640E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x20458, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x6647E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20538, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x6649E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20538, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x66516, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x206A0, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x66536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x206A0, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x6655C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x206FC, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x665D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20768, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x665F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20768, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x66911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1C70, symBinAddr: 0x22044, symSize: 0x1A0 } + - { offsetInCU: 0x6B4, offset: 0x669D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x207EC, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66A0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x20874, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66A4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x2096C, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66A63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x209CC, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66A77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x20A1C, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66AAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x20AA4, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66AED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x20CD8, symSize: 0x5C } + - { offsetInCU: 0x9D1, offset: 0x66CF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x16E4, symBinAddr: 0x21AB8, symSize: 0x140 } + - { offsetInCU: 0xACD, offset: 0x66DF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1824, symBinAddr: 0x21BF8, symSize: 0x18 } + - { offsetInCU: 0xAE1, offset: 0x66E06, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1978, symBinAddr: 0x21D4C, symSize: 0x2C } + - { offsetInCU: 0xAF9, offset: 0x66E1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1C0C, symBinAddr: 0x21FE0, symSize: 0x44 } + - { offsetInCU: 0xB0D, offset: 0x66E32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1C50, symBinAddr: 0x22024, symSize: 0x20 } + - { offsetInCU: 0xB21, offset: 0x66E46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1E10, symBinAddr: 0x221E4, symSize: 0x20 } + - { offsetInCU: 0xB35, offset: 0x66E5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E30, symBinAddr: 0x22204, symSize: 0x4 } + - { offsetInCU: 0xB49, offset: 0x66E6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E34, symBinAddr: 0x22208, symSize: 0x44 } + - { offsetInCU: 0xB5D, offset: 0x66E82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E78, symBinAddr: 0x2224C, symSize: 0x4 } + - { offsetInCU: 0xB71, offset: 0x66E96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1E7C, symBinAddr: 0x22250, symSize: 0x44 } + - { offsetInCU: 0xB85, offset: 0x66EAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1FA0, symBinAddr: 0x22374, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x66EBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1FB8, symBinAddr: 0x2238C, symSize: 0x14 } + - { offsetInCU: 0xBAD, offset: 0x66ED2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1FCC, symBinAddr: 0x223A0, symSize: 0x18 } + - { offsetInCU: 0xBC1, offset: 0x66EE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x2044, symBinAddr: 0x22418, symSize: 0x6C } + - { offsetInCU: 0xBD5, offset: 0x66EFA, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x20B0, symBinAddr: 0x22484, symSize: 0x14 } + - { offsetInCU: 0xBE9, offset: 0x66F0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x20C4, symBinAddr: 0x22498, symSize: 0x50 } + - { offsetInCU: 0xBFD, offset: 0x66F22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x2114, symBinAddr: 0x224E8, symSize: 0x48 } + - { offsetInCU: 0xC11, offset: 0x66F36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x215C, symBinAddr: 0x22530, symSize: 0x48 } + - { offsetInCU: 0xC25, offset: 0x66F4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x21A4, symBinAddr: 0x22578, symSize: 0x8 } + - { offsetInCU: 0xC39, offset: 0x66F5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x21AC, symBinAddr: 0x22580, symSize: 0x4 } + - { offsetInCU: 0xC4D, offset: 0x66F72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x21B0, symBinAddr: 0x22584, symSize: 0x8 } + - { offsetInCU: 0xC61, offset: 0x66F86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x21B8, symBinAddr: 0x2258C, symSize: 0x10 } + - { offsetInCU: 0xC75, offset: 0x66F9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x22A0, symBinAddr: 0x22664, symSize: 0x90 } + - { offsetInCU: 0xC89, offset: 0x66FAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2330, symBinAddr: 0x226F4, symSize: 0xBC } + - { offsetInCU: 0xC9D, offset: 0x66FC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x23EC, symBinAddr: 0x227B0, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x66FD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x23F0, symBinAddr: 0x227B4, symSize: 0x10 } + - { offsetInCU: 0xCC5, offset: 0x66FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x2400, symBinAddr: 0x227C4, symSize: 0x90 } + - { offsetInCU: 0xCD9, offset: 0x66FFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2490, symBinAddr: 0x22854, symSize: 0xBC } + - { offsetInCU: 0xCED, offset: 0x67012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x254C, symBinAddr: 0x22910, symSize: 0x8 } + - { offsetInCU: 0xD01, offset: 0x67026, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x2554, symBinAddr: 0x22918, symSize: 0x4 } + - { offsetInCU: 0xD15, offset: 0x6703A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2558, symBinAddr: 0x2291C, symSize: 0x8 } + - { offsetInCU: 0xD29, offset: 0x6704E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2560, symBinAddr: 0x22924, symSize: 0x10 } + - { offsetInCU: 0xD48, offset: 0x6706D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2598, symBinAddr: 0x2295C, symSize: 0x24 } + - { offsetInCU: 0xD71, offset: 0x67096, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x26A4, symBinAddr: 0x22A68, symSize: 0x8 } + - { offsetInCU: 0xD85, offset: 0x670AA, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x26AC, symBinAddr: 0x22A70, symSize: 0x10 } + - { offsetInCU: 0xD99, offset: 0x670BE, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x26BC, symBinAddr: 0x22A80, symSize: 0x8 } + - { offsetInCU: 0xDAD, offset: 0x670D2, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2748, symBinAddr: 0x22A88, symSize: 0x3C } + - { offsetInCU: 0xE2F, offset: 0x67154, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x203D4, symSize: 0x4 } + - { offsetInCU: 0xE4B, offset: 0x67170, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x203D8, symSize: 0x4 } + - { offsetInCU: 0xE67, offset: 0x6718C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x203DC, symSize: 0x4 } + - { offsetInCU: 0xE83, offset: 0x671A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x203E0, symSize: 0x4 } + - { offsetInCU: 0x10F5, offset: 0x6741A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x2048C, symSize: 0x40 } + - { offsetInCU: 0x1123, offset: 0x67448, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x204CC, symSize: 0x60 } + - { offsetInCU: 0x115B, offset: 0x67480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x20598, symSize: 0x84 } + - { offsetInCU: 0x1182, offset: 0x674A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x2061C, symSize: 0x14 } + - { offsetInCU: 0x11C9, offset: 0x674EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x20630, symSize: 0x28 } + - { offsetInCU: 0x12D0, offset: 0x675F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x20920, symSize: 0x4C } + - { offsetInCU: 0x12EF, offset: 0x67614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x2097C, symSize: 0x50 } + - { offsetInCU: 0x1318, offset: 0x6763D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x209DC, symSize: 0x3C } + - { offsetInCU: 0x133D, offset: 0x67662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x20A18, symSize: 0x4 } + - { offsetInCU: 0x1392, offset: 0x676B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x20B50, symSize: 0x4C } + - { offsetInCU: 0x13B1, offset: 0x676D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x20B9C, symSize: 0x50 } + - { offsetInCU: 0x13DA, offset: 0x676FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x20BEC, symSize: 0x3C } + - { offsetInCU: 0x13FF, offset: 0x67724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x20C28, symSize: 0x8 } + - { offsetInCU: 0x1420, offset: 0x67745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x20C30, symSize: 0x30 } + - { offsetInCU: 0x143D, offset: 0x67762, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x20C60, symSize: 0x3C } + - { offsetInCU: 0x1462, offset: 0x67787, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x20C9C, symSize: 0x3C } + - { offsetInCU: 0x14AC, offset: 0x677D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x960, symBinAddr: 0x20D34, symSize: 0x30 } + - { offsetInCU: 0x14C9, offset: 0x677EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x990, symBinAddr: 0x20D64, symSize: 0x44 } + - { offsetInCU: 0x14F2, offset: 0x67817, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x9D4, symBinAddr: 0x20DA8, symSize: 0x3C } + - { offsetInCU: 0x151E, offset: 0x67843, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x20DE4, symSize: 0xC8 } + - { offsetInCU: 0x1558, offset: 0x6787D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x20EAC, symSize: 0x4 } + - { offsetInCU: 0x15FC, offset: 0x67921, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xADC, symBinAddr: 0x20EB0, symSize: 0x128 } + - { offsetInCU: 0x172D, offset: 0x67A52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xC04, symBinAddr: 0x20FD8, symSize: 0x224 } + - { offsetInCU: 0x1796, offset: 0x67ABB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x183C, symBinAddr: 0x21C10, symSize: 0x13C } + - { offsetInCU: 0x1844, offset: 0x67B69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xE28, symBinAddr: 0x211FC, symSize: 0x70 } + - { offsetInCU: 0x186E, offset: 0x67B93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xE98, symBinAddr: 0x2126C, symSize: 0x30 } + - { offsetInCU: 0x1890, offset: 0x67BB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xEC8, symBinAddr: 0x2129C, symSize: 0x188 } + - { offsetInCU: 0x1935, offset: 0x67C5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0x1050, symBinAddr: 0x21424, symSize: 0x14 } + - { offsetInCU: 0x1982, offset: 0x67CA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0x10D4, symBinAddr: 0x214A8, symSize: 0x3C } + - { offsetInCU: 0x1A08, offset: 0x67D2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0x1064, symBinAddr: 0x21438, symSize: 0x70 } + - { offsetInCU: 0x1A9C, offset: 0x67DC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0x1110, symBinAddr: 0x214E4, symSize: 0x78 } + - { offsetInCU: 0x1B80, offset: 0x67EA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0x1188, symBinAddr: 0x2155C, symSize: 0x230 } + - { offsetInCU: 0x1D6C, offset: 0x68091, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x13B8, symBinAddr: 0x2178C, symSize: 0xC } + - { offsetInCU: 0x1DC3, offset: 0x680E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21798, symSize: 0x4 } + - { offsetInCU: 0x1DDF, offset: 0x68104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21798, symSize: 0x4 } + - { offsetInCU: 0x1DF8, offset: 0x6811D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21798, symSize: 0x4 } + - { offsetInCU: 0x1E11, offset: 0x68136, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13C8, symBinAddr: 0x2179C, symSize: 0x4 } + - { offsetInCU: 0x1E29, offset: 0x6814E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13CC, symBinAddr: 0x217A0, symSize: 0xB8 } + - { offsetInCU: 0x1EC9, offset: 0x681EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14C4, symBinAddr: 0x21898, symSize: 0x4 } + - { offsetInCU: 0x1EE1, offset: 0x68206, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2604, symBinAddr: 0x229C8, symSize: 0x7C } + - { offsetInCU: 0x1FB8, offset: 0x682DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x1484, symBinAddr: 0x21858, symSize: 0x40 } + - { offsetInCU: 0x1FED, offset: 0x68312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11isReachableSbvg', symObjAddr: 0x14C8, symBinAddr: 0x2189C, symSize: 0x2C } + - { offsetInCU: 0x202E, offset: 0x68353, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14F4, symBinAddr: 0x218C8, symSize: 0x2C } + - { offsetInCU: 0x206F, offset: 0x68394, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1520, symBinAddr: 0x218F4, symSize: 0x2C } + - { offsetInCU: 0x20E6, offset: 0x6840B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x154C, symBinAddr: 0x21920, symSize: 0x198 } + - { offsetInCU: 0x25E3, offset: 0x68908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x19A4, symBinAddr: 0x21D78, symSize: 0x24 } + - { offsetInCU: 0x2626, offset: 0x6894B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x19C8, symBinAddr: 0x21D9C, symSize: 0x244 } + - { offsetInCU: 0x43, offset: 0x68AEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x22B8C, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68AFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x22BC8, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68B12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x22C4C, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x22D74, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68B56, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x22DA4, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x22DC0, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x22E5C, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x22EC0, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x22F1C, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x68BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x22F2C, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x68BCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x22F5C, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x68BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x22F84, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x68BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x22FE0, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x68C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x23064, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x68C1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x230C8, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x68C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x23124, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x68C46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x23184, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x68C92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x235DC, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x68CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x235E4, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x68DCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA98, symBinAddr: 0x23624, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x68E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF8, symBinAddr: 0x23684, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x68E8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB04, symBinAddr: 0x23690, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x68EE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB80, symBinAddr: 0x2370C, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x68F03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB8C, symBinAddr: 0x23718, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x68F40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBE8, symBinAddr: 0x23774, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x68F77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC34, symBinAddr: 0x237C0, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x68F9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFF8, symBinAddr: 0x23B84, symSize: 0x154 } + - { offsetInCU: 0x580, offset: 0x69027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC74, symBinAddr: 0x23800, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x69082, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC8C, symBinAddr: 0x23818, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x690FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xCB8, symBinAddr: 0x23844, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x69131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x2388C, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x69162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xD24, symBinAddr: 0x238B0, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x6917E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD30, symBinAddr: 0x238BC, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x6919A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x129C, symBinAddr: 0x23DA4, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x6925A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD8C, symBinAddr: 0x23918, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x69291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDD8, symBinAddr: 0x23964, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x692B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13F0, symBinAddr: 0x23EF8, symSize: 0x264 } + - { offsetInCU: 0x87C, offset: 0x69323, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEA4, symBinAddr: 0x23A30, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x69358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x23A80, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x69389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF18, symBinAddr: 0x23AA4, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x693A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF24, symBinAddr: 0x23AB0, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x693C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D8C, symBinAddr: 0x24828, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x69471, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF80, symBinAddr: 0x23B0C, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x694A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC0, symBinAddr: 0x23B4C, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x694CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EF4, symBinAddr: 0x24990, symSize: 0x2B8 } + - { offsetInCU: 0xA81, offset: 0x69528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x11B0, symBinAddr: 0x23CD8, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x6953C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x1214, symBinAddr: 0x23D1C, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x69550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1258, symBinAddr: 0x23D60, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x69564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1654, symBinAddr: 0x2415C, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x69578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x16DC, symBinAddr: 0x241A0, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x6958C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x17CC, symBinAddr: 0x24290, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x695A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1828, symBinAddr: 0x242DC, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x695B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1830, symBinAddr: 0x242E4, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x695C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1834, symBinAddr: 0x242E8, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x695DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x183C, symBinAddr: 0x242F0, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x695F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1850, symBinAddr: 0x24300, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x69604, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x18A0, symBinAddr: 0x24350, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69618, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x192C, symBinAddr: 0x243DC, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x6962C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1934, symBinAddr: 0x243E4, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69640, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1938, symBinAddr: 0x243E8, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x69654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x193C, symBinAddr: 0x243EC, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69668, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x194C, symBinAddr: 0x243FC, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x6967C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1984, symBinAddr: 0x24434, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69690, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x19E8, symBinAddr: 0x24498, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x696A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1AA8, symBinAddr: 0x24544, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x696B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1B0C, symBinAddr: 0x245A8, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x696CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B68, symBinAddr: 0x24604, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x696E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1BCC, symBinAddr: 0x24668, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x696F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BDC, symBinAddr: 0x24678, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BE0, symBinAddr: 0x2467C, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x6971C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1C24, symBinAddr: 0x246C0, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69730, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1C28, symBinAddr: 0x246C4, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x69744, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C6C, symBinAddr: 0x24708, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69758, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C70, symBinAddr: 0x2470C, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x6976C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CB4, symBinAddr: 0x24750, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69780, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CB8, symBinAddr: 0x24754, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69794, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CFC, symBinAddr: 0x24798, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x697A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x2479C, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x697BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1D44, symBinAddr: 0x247E0, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x697D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D48, symBinAddr: 0x247E4, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x697E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x21AC, symBinAddr: 0x24C48, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x697F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x2344, symBinAddr: 0x24DE0, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x6980C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2348, symBinAddr: 0x24DE4, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2358, symBinAddr: 0x24DF4, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69834, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x235C, symBinAddr: 0x24DF8, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69848, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x23A0, symBinAddr: 0x24E3C, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x6985C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x23A4, symBinAddr: 0x24E40, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69870, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x23E8, symBinAddr: 0x24E84, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23EC, symBinAddr: 0x24E88, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x698E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xABC, symBinAddr: 0x23648, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x699A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB98, symBinAddr: 0x23724, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x699BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBC0, symBinAddr: 0x2374C, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x699E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD3C, symBinAddr: 0x238C8, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x699FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD64, symBinAddr: 0x238F0, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69A1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF30, symBinAddr: 0x23ABC, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF58, symBinAddr: 0x23AE4, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x23194, symSize: 0x11C } + - { offsetInCU: 0x10B4, offset: 0x69B5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x724, symBinAddr: 0x232B0, symSize: 0x1C8 } + - { offsetInCU: 0x10E5, offset: 0x69B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8EC, symBinAddr: 0x23478, symSize: 0x164 } + - { offsetInCU: 0xA6, offset: 0x69D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x25170, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x69D67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x25170, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x69D8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x2D4, symBinAddr: 0x25188, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x69E70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x318, symBinAddr: 0x251CC, symSize: 0x28 } + - { offsetInCU: 0x4BB, offset: 0x6A15C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x380, symBinAddr: 0x25234, symSize: 0x4 } + - { offsetInCU: 0x4CF, offset: 0x6A170, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x384, symBinAddr: 0x25238, symSize: 0x44 } + - { offsetInCU: 0x4E3, offset: 0x6A184, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x3C8, symBinAddr: 0x2527C, symSize: 0x30 } + - { offsetInCU: 0x4F7, offset: 0x6A198, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x3F8, symBinAddr: 0x252AC, symSize: 0x7C } + - { offsetInCU: 0x50B, offset: 0x6A1AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x474, symBinAddr: 0x25328, symSize: 0x184 } + - { offsetInCU: 0x51F, offset: 0x6A1C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0x5F8, symBinAddr: 0x254AC, symSize: 0x394 } + - { offsetInCU: 0x53A, offset: 0x6A1DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0x98C, symBinAddr: 0x25840, symSize: 0x30 } + - { offsetInCU: 0x563, offset: 0x6A204, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0x9BC, symBinAddr: 0x25870, symSize: 0x2C } + - { offsetInCU: 0x577, offset: 0x6A218, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0x9E8, symBinAddr: 0x2589C, symSize: 0x34 } + - { offsetInCU: 0x58B, offset: 0x6A22C, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xA1C, symBinAddr: 0x258D0, symSize: 0x44 } + - { offsetInCU: 0x59F, offset: 0x6A240, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xA60, symBinAddr: 0x25914, symSize: 0x1B4 } + - { offsetInCU: 0x5B3, offset: 0x6A254, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0xC14, symBinAddr: 0x25AC8, symSize: 0x48 } + - { offsetInCU: 0x5C7, offset: 0x6A268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0xC5C, symBinAddr: 0x25B10, symSize: 0x78 } + - { offsetInCU: 0x5DB, offset: 0x6A27C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0xCD4, symBinAddr: 0x25B88, symSize: 0x10 } + - { offsetInCU: 0x5EF, offset: 0x6A290, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0xCE8, symBinAddr: 0x25B9C, symSize: 0x8 } + - { offsetInCU: 0x603, offset: 0x6A2A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0xD28, symBinAddr: 0x25BDC, symSize: 0x54 } + - { offsetInCU: 0x617, offset: 0x6A2B8, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xD7C, symBinAddr: 0x25C30, symSize: 0x14 } + - { offsetInCU: 0x62B, offset: 0x6A2CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0xD90, symBinAddr: 0x25C44, symSize: 0x3C } + - { offsetInCU: 0x63F, offset: 0x6A2E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0xDCC, symBinAddr: 0x25C80, symSize: 0x48 } + - { offsetInCU: 0x653, offset: 0x6A2F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0xE14, symBinAddr: 0x25CC8, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x6A308, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0xE54, symBinAddr: 0x25D08, symSize: 0x10 } + - { offsetInCU: 0x67B, offset: 0x6A31C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0xE64, symBinAddr: 0x25D18, symSize: 0x38 } + - { offsetInCU: 0x68F, offset: 0x6A330, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0xE9C, symBinAddr: 0x25D50, symSize: 0x6C } + - { offsetInCU: 0x6A3, offset: 0x6A344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x25DBC, symSize: 0xDC } + - { offsetInCU: 0x6B7, offset: 0x6A358, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0xFE4, symBinAddr: 0x25E98, symSize: 0x1C } + - { offsetInCU: 0x6CB, offset: 0x6A36C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1000, symBinAddr: 0x25EB4, symSize: 0x74 } + - { offsetInCU: 0x6DF, offset: 0x6A380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1074, symBinAddr: 0x25F28, symSize: 0x5C } + - { offsetInCU: 0x6F3, offset: 0x6A394, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x10D0, symBinAddr: 0x25F84, symSize: 0x64 } + - { offsetInCU: 0x707, offset: 0x6A3A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1134, symBinAddr: 0x25FE8, symSize: 0x10 } + - { offsetInCU: 0x71B, offset: 0x6A3BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1144, symBinAddr: 0x25FF8, symSize: 0x28 } + - { offsetInCU: 0x72F, offset: 0x6A3D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x116C, symBinAddr: 0x26020, symSize: 0x3C } + - { offsetInCU: 0x743, offset: 0x6A3E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x11A8, symBinAddr: 0x2605C, symSize: 0x6C } + - { offsetInCU: 0x757, offset: 0x6A3F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1220, symBinAddr: 0x260C8, symSize: 0x44 } + - { offsetInCU: 0x76B, offset: 0x6A40C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1264, symBinAddr: 0x2610C, symSize: 0x48 } + - { offsetInCU: 0x77F, offset: 0x6A420, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x12AC, symBinAddr: 0x26154, symSize: 0x40 } + - { offsetInCU: 0x793, offset: 0x6A434, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x12EC, symBinAddr: 0x26194, symSize: 0x10 } + - { offsetInCU: 0x7A7, offset: 0x6A448, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1300, symBinAddr: 0x261A4, symSize: 0x54 } + - { offsetInCU: 0x7BB, offset: 0x6A45C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1354, symBinAddr: 0x261F8, symSize: 0x44 } + - { offsetInCU: 0x7CF, offset: 0x6A470, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1398, symBinAddr: 0x2623C, symSize: 0x10 } + - { offsetInCU: 0x7E3, offset: 0x6A484, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x13B4, symBinAddr: 0x2624C, symSize: 0x90 } + - { offsetInCU: 0x7F7, offset: 0x6A498, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1444, symBinAddr: 0x262DC, symSize: 0xBC } + - { offsetInCU: 0x80B, offset: 0x6A4AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1500, symBinAddr: 0x26398, symSize: 0x8 } + - { offsetInCU: 0x81F, offset: 0x6A4C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1508, symBinAddr: 0x263A0, symSize: 0x4 } + - { offsetInCU: 0x833, offset: 0x6A4D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x150C, symBinAddr: 0x263A4, symSize: 0xC } + - { offsetInCU: 0x847, offset: 0x6A4E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1518, symBinAddr: 0x263B0, symSize: 0x10 } + - { offsetInCU: 0x8BE, offset: 0x6A55F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x340, symBinAddr: 0x251F4, symSize: 0x40 } + - { offsetInCU: 0xA61, offset: 0x6A702, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x24EE4, symSize: 0x18 } + - { offsetInCU: 0xA9A, offset: 0x6A73B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x24EFC, symSize: 0x94 } + - { offsetInCU: 0xAFB, offset: 0x6A79C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xAC, symBinAddr: 0x24F90, symSize: 0x2C } + - { offsetInCU: 0xB15, offset: 0x6A7B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0xD8, symBinAddr: 0x24FBC, symSize: 0x34 } + - { offsetInCU: 0xB4A, offset: 0x6A7EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x10C, symBinAddr: 0x24FF0, symSize: 0x10 } + - { offsetInCU: 0xB5E, offset: 0x6A7FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x11C, symBinAddr: 0x25000, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x6A820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x120, symBinAddr: 0x25004, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x6A834, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x128, symBinAddr: 0x2500C, symSize: 0x8 } + - { offsetInCU: 0xBC3, offset: 0x6A864, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x130, symBinAddr: 0x25014, symSize: 0x10 } + - { offsetInCU: 0xBE7, offset: 0x6A888, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x25024, symSize: 0x4 } + - { offsetInCU: 0xC08, offset: 0x6A8A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x144, symBinAddr: 0x25028, symSize: 0x14 } + - { offsetInCU: 0xC1C, offset: 0x6A8BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x188, symBinAddr: 0x2503C, symSize: 0x14 } + - { offsetInCU: 0xC30, offset: 0x6A8D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x19C, symBinAddr: 0x25050, symSize: 0x2C } + - { offsetInCU: 0xC44, offset: 0x6A8E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x1C8, symBinAddr: 0x2507C, symSize: 0x2C } + - { offsetInCU: 0xC58, offset: 0x6A8F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x1F4, symBinAddr: 0x250A8, symSize: 0x8 } + - { offsetInCU: 0xC6C, offset: 0x6A90D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x1FC, symBinAddr: 0x250B0, symSize: 0x8 } + - { offsetInCU: 0xC9E, offset: 0x6A93F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x204, symBinAddr: 0x250B8, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x6A953, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x214, symBinAddr: 0x250C8, symSize: 0x4 } + - { offsetInCU: 0xCD3, offset: 0x6A974, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x218, symBinAddr: 0x250CC, symSize: 0x8 } + - { offsetInCU: 0xCE7, offset: 0x6A988, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x220, symBinAddr: 0x250D4, symSize: 0x8 } + - { offsetInCU: 0xD19, offset: 0x6A9BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x228, symBinAddr: 0x250DC, symSize: 0x10 } + - { offsetInCU: 0xD3D, offset: 0x6A9DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x238, symBinAddr: 0x250EC, symSize: 0x4 } + - { offsetInCU: 0xD5E, offset: 0x6A9FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x23C, symBinAddr: 0x250F0, symSize: 0x10 } + - { offsetInCU: 0xD82, offset: 0x6AA23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x24C, symBinAddr: 0x25100, symSize: 0x4 } + - { offsetInCU: 0xDB1, offset: 0x6AA52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x250, symBinAddr: 0x25104, symSize: 0x28 } + - { offsetInCU: 0xE3C, offset: 0x6AADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x278, symBinAddr: 0x2512C, symSize: 0x44 } + - { offsetInCU: 0x549, offset: 0x6B14D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x224C, symBinAddr: 0x2861C, symSize: 0x6D0 } + - { offsetInCU: 0xA7A, offset: 0x6B67E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x6CDC, symBinAddr: 0x2D0AC, symSize: 0x28 } + - { offsetInCU: 0x1B3D, offset: 0x6C741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14110, symBinAddr: 0x3A4E0, symSize: 0xA0 } + - { offsetInCU: 0x1BD5, offset: 0x6C7D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x150A4, symBinAddr: 0x3B474, symSize: 0x44 } + - { offsetInCU: 0x1BF1, offset: 0x6C7F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x150E8, symBinAddr: 0x3B4B8, symSize: 0x150 } + - { offsetInCU: 0x1D0A, offset: 0x6C90E, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x15238, symBinAddr: 0x3B608, symSize: 0x54 } + - { offsetInCU: 0x1D88, offset: 0x6C98C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x152E0, symBinAddr: 0x3B65C, symSize: 0x4C } + - { offsetInCU: 0x1E16, offset: 0x6CA1A, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x1532C, symBinAddr: 0x3B6A8, symSize: 0x50 } + - { offsetInCU: 0x1E84, offset: 0x6CA88, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x1537C, symBinAddr: 0x3B6F8, symSize: 0x64 } + - { offsetInCU: 0x251A, offset: 0x6D11E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x161F4, symBinAddr: 0x3C570, symSize: 0x84 } + - { offsetInCU: 0x257E, offset: 0x6D182, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x16278, symBinAddr: 0x3C5F4, symSize: 0x80 } + - { offsetInCU: 0x264B, offset: 0x6D24F, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16414, symBinAddr: 0x3C790, symSize: 0x40 } + - { offsetInCU: 0x286C, offset: 0x6D470, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17484, symBinAddr: 0x3D784, symSize: 0x1A0 } + - { offsetInCU: 0x29C1, offset: 0x6D5C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17624, symBinAddr: 0x3D924, symSize: 0x360 } + - { offsetInCU: 0x30E3, offset: 0x6DCE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x187B4, symBinAddr: 0x3EAB4, symSize: 0xBCC } + - { offsetInCU: 0x414F, offset: 0x6ED53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19380, symBinAddr: 0x3F680, symSize: 0x1C0 } + - { offsetInCU: 0x42D0, offset: 0x6EED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19540, symBinAddr: 0x3F840, symSize: 0x1A0 } + - { offsetInCU: 0x46D8, offset: 0x6F2DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1A15C, symBinAddr: 0x4045C, symSize: 0x8 } + - { offsetInCU: 0x46EC, offset: 0x6F2F0, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1A22C, symBinAddr: 0x4052C, symSize: 0x10 } + - { offsetInCU: 0x4700, offset: 0x6F304, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1A23C, symBinAddr: 0x4053C, symSize: 0x14 } + - { offsetInCU: 0x4714, offset: 0x6F318, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1A250, symBinAddr: 0x40550, symSize: 0x44 } + - { offsetInCU: 0x4728, offset: 0x6F32C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1A2A4, symBinAddr: 0x40594, symSize: 0x44 } + - { offsetInCU: 0x473C, offset: 0x6F340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1A2E8, symBinAddr: 0x405D8, symSize: 0x30C } + - { offsetInCU: 0x4750, offset: 0x6F354, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1A5F4, symBinAddr: 0x408E4, symSize: 0x240 } + - { offsetInCU: 0x4764, offset: 0x6F368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1A834, symBinAddr: 0x40B24, symSize: 0x70 } + - { offsetInCU: 0x4778, offset: 0x6F37C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1A8A4, symBinAddr: 0x40B94, symSize: 0x34 } + - { offsetInCU: 0x478C, offset: 0x6F390, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1A8D8, symBinAddr: 0x40BC8, symSize: 0x174 } + - { offsetInCU: 0x47A0, offset: 0x6F3A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1AA4C, symBinAddr: 0x40D3C, symSize: 0xB4 } + - { offsetInCU: 0x47F3, offset: 0x6F3F7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1B318, symBinAddr: 0x40DF0, symSize: 0xC4 } + - { offsetInCU: 0x4869, offset: 0x6F46D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B3DC, symBinAddr: 0x40EB4, symSize: 0x78 } + - { offsetInCU: 0x4896, offset: 0x6F49A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B454, symBinAddr: 0x40F2C, symSize: 0x80 } + - { offsetInCU: 0x492A, offset: 0x6F52E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B4D4, symBinAddr: 0x40FAC, symSize: 0x68 } + - { offsetInCU: 0x4A91, offset: 0x6F695, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B53C, symBinAddr: 0x41014, symSize: 0x660 } + - { offsetInCU: 0x4F55, offset: 0x6FB59, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1BBAC, symBinAddr: 0x41684, symSize: 0x4C } + - { offsetInCU: 0x4F69, offset: 0x6FB6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1BCA0, symBinAddr: 0x416F0, symSize: 0x8 } + - { offsetInCU: 0x4F7D, offset: 0x6FB81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1BCA8, symBinAddr: 0x416F8, symSize: 0x44 } + - { offsetInCU: 0x4F91, offset: 0x6FB95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1BCEC, symBinAddr: 0x4173C, symSize: 0x44 } + - { offsetInCU: 0x4FA5, offset: 0x6FBA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BD98, symBinAddr: 0x417A4, symSize: 0x8 } + - { offsetInCU: 0x4FB9, offset: 0x6FBBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1BE28, symBinAddr: 0x4182C, symSize: 0x44 } + - { offsetInCU: 0x4FEE, offset: 0x6FBF2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BF30, symBinAddr: 0x41934, symSize: 0x48 } + - { offsetInCU: 0x5002, offset: 0x6FC06, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BF9C, symBinAddr: 0x419A0, symSize: 0x3C } + - { offsetInCU: 0x5016, offset: 0x6FC1A, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BFD8, symBinAddr: 0x419DC, symSize: 0x34 } + - { offsetInCU: 0x502A, offset: 0x6FC2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1C030, symBinAddr: 0x41A34, symSize: 0x40 } + - { offsetInCU: 0x503E, offset: 0x6FC42, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1C070, symBinAddr: 0x41A74, symSize: 0x48 } + - { offsetInCU: 0x5052, offset: 0x6FC56, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1C17C, symBinAddr: 0x41B80, symSize: 0x18 } + - { offsetInCU: 0x5066, offset: 0x6FC6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1C194, symBinAddr: 0x41B98, symSize: 0x10 } + - { offsetInCU: 0x507A, offset: 0x6FC7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1C1A4, symBinAddr: 0x41BA8, symSize: 0x34 } + - { offsetInCU: 0x508E, offset: 0x6FC92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1C214, symBinAddr: 0x41C18, symSize: 0x30 } + - { offsetInCU: 0x56FF, offset: 0x70303, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9590, symBinAddr: 0x2F960, symSize: 0x400 } + - { offsetInCU: 0x5862, offset: 0x70466, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xA81C, symBinAddr: 0x30BEC, symSize: 0x390 } + - { offsetInCU: 0x5B26, offset: 0x7072A, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xABAC, symBinAddr: 0x30F7C, symSize: 0x3B8 } + - { offsetInCU: 0x5F84, offset: 0x70B88, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xEFCC, symBinAddr: 0x3539C, symSize: 0x18C } + - { offsetInCU: 0x635A, offset: 0x70F5E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x168A4, symBinAddr: 0x3CC20, symSize: 0x110 } + - { offsetInCU: 0x64B6, offset: 0x710BA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x169F4, symBinAddr: 0x3CD30, symSize: 0xFC } + - { offsetInCU: 0x65D3, offset: 0x711D7, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x172DC, symBinAddr: 0x3D5DC, symSize: 0x1A8 } + - { offsetInCU: 0x66E3, offset: 0x712E7, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x17984, symBinAddr: 0x3DC84, symSize: 0x188 } + - { offsetInCU: 0x6A30, offset: 0x71634, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x198C8, symBinAddr: 0x3FBC8, symSize: 0x1C8 } + - { offsetInCU: 0x6B5F, offset: 0x71763, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x19A90, symBinAddr: 0x3FD90, symSize: 0x11C } + - { offsetInCU: 0x6CC1, offset: 0x718C5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x19BAC, symBinAddr: 0x3FEAC, symSize: 0xFC } + - { offsetInCU: 0x6E23, offset: 0x71A27, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x19CA8, symBinAddr: 0x3FFA8, symSize: 0xE4 } + - { offsetInCU: 0x6F79, offset: 0x71B7D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19D8C, symBinAddr: 0x4008C, symSize: 0x114 } + - { offsetInCU: 0x70CF, offset: 0x71CD3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19EA0, symBinAddr: 0x401A0, symSize: 0xF0 } + - { offsetInCU: 0x7231, offset: 0x71E35, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1A078, symBinAddr: 0x40378, symSize: 0xE4 } + - { offsetInCU: 0x73A8, offset: 0x71FAC, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BE6C, symBinAddr: 0x41870, symSize: 0xC4 } + - { offsetInCU: 0x790F, offset: 0x72513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x263D0, symSize: 0x1A0 } + - { offsetInCU: 0x798C, offset: 0x72590, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x1A0, symBinAddr: 0x26570, symSize: 0x88 } + - { offsetInCU: 0x7B04, offset: 0x72708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x228, symBinAddr: 0x265F8, symSize: 0x1D44 } + - { offsetInCU: 0x8CA1, offset: 0x738A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xAF64, symBinAddr: 0x31334, symSize: 0x3810 } + - { offsetInCU: 0x9FC8, offset: 0x74BCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xE774, symBinAddr: 0x34B44, symSize: 0x578 } + - { offsetInCU: 0xA41A, offset: 0x7501E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x102A8, symBinAddr: 0x36678, symSize: 0x25C0 } + - { offsetInCU: 0xBAA8, offset: 0x766AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13888, symBinAddr: 0x39C58, symSize: 0x3DC } + - { offsetInCU: 0xBC43, offset: 0x76847, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x1F6C, symBinAddr: 0x2833C, symSize: 0x2E0 } + - { offsetInCU: 0xC09A, offset: 0x76C9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x291C, symBinAddr: 0x28CEC, symSize: 0x3B8 } + - { offsetInCU: 0xC326, offset: 0x76F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x2CD4, symBinAddr: 0x290A4, symSize: 0x3924 } + - { offsetInCU: 0xDED3, offset: 0x78AD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x65F8, symBinAddr: 0x2C9C8, symSize: 0x278 } + - { offsetInCU: 0xDFDF, offset: 0x78BE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x6D04, symBinAddr: 0x2D0D4, symSize: 0x1848 } + - { offsetInCU: 0xEA66, offset: 0x7966A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6870, symBinAddr: 0x2CC40, symSize: 0x118 } + - { offsetInCU: 0xEADF, offset: 0x796E3, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6988, symBinAddr: 0x2CD58, symSize: 0x16C } + - { offsetInCU: 0xEAFA, offset: 0x796FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x6AF4, symBinAddr: 0x2CEC4, symSize: 0x1E8 } + - { offsetInCU: 0xEE07, offset: 0x79A0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x85A0, symBinAddr: 0x2E970, symSize: 0x3F8 } + - { offsetInCU: 0xF028, offset: 0x79C2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9990, symBinAddr: 0x2FD60, symSize: 0xE8C } + - { offsetInCU: 0xF934, offset: 0x7A538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8998, symBinAddr: 0x2ED68, symSize: 0xBF8 } + - { offsetInCU: 0x10304, offset: 0x7AF08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF158, symBinAddr: 0x35528, symSize: 0x1150 } + - { offsetInCU: 0x114B9, offset: 0x7C0BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x17B0C, symBinAddr: 0x3DE0C, symSize: 0xB10 } + - { offsetInCU: 0x11F49, offset: 0x7CB4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x12868, symBinAddr: 0x38C38, symSize: 0x1020 } + - { offsetInCU: 0x12A2D, offset: 0x7D631, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x13C64, symBinAddr: 0x3A034, symSize: 0x208 } + - { offsetInCU: 0x12AB1, offset: 0x7D6B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x13E6C, symBinAddr: 0x3A23C, symSize: 0x294 } + - { offsetInCU: 0x12BC1, offset: 0x7D7C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x141B0, symBinAddr: 0x3A580, symSize: 0xEF4 } + - { offsetInCU: 0x135EC, offset: 0x7E1F0, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x153E0, symBinAddr: 0x3B75C, symSize: 0x64 } + - { offsetInCU: 0x1362A, offset: 0x7E22E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15444, symBinAddr: 0x3B7C0, symSize: 0x30 } + - { offsetInCU: 0x13671, offset: 0x7E275, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15474, symBinAddr: 0x3B7F0, symSize: 0x80 } + - { offsetInCU: 0x1370B, offset: 0x7E30F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x154F4, symBinAddr: 0x3B870, symSize: 0x6C } + - { offsetInCU: 0x137BB, offset: 0x7E3BF, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15560, symBinAddr: 0x3B8DC, symSize: 0x4C } + - { offsetInCU: 0x13834, offset: 0x7E438, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x155D8, symBinAddr: 0x3B954, symSize: 0xE0 } + - { offsetInCU: 0x138A8, offset: 0x7E4AC, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x156B8, symBinAddr: 0x3BA34, symSize: 0xC4 } + - { offsetInCU: 0x138D1, offset: 0x7E4D5, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1577C, symBinAddr: 0x3BAF8, symSize: 0x174 } + - { offsetInCU: 0x139AA, offset: 0x7E5AE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x158F0, symBinAddr: 0x3BC6C, symSize: 0x104 } + - { offsetInCU: 0x13AD9, offset: 0x7E6DD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x159F4, symBinAddr: 0x3BD70, symSize: 0x124 } + - { offsetInCU: 0x13BFA, offset: 0x7E7FE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x15B18, symBinAddr: 0x3BE94, symSize: 0x170 } + - { offsetInCU: 0x13D7B, offset: 0x7E97F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x15C88, symBinAddr: 0x3C004, symSize: 0x174 } + - { offsetInCU: 0x13EC9, offset: 0x7EACD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x15DFC, symBinAddr: 0x3C178, symSize: 0xFC } + - { offsetInCU: 0x13FFF, offset: 0x7EC03, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x15EF8, symBinAddr: 0x3C274, symSize: 0xFC } + - { offsetInCU: 0x14135, offset: 0x7ED39, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x160F8, symBinAddr: 0x3C474, symSize: 0xFC } + - { offsetInCU: 0x1426B, offset: 0x7EE6F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x162F8, symBinAddr: 0x3C674, symSize: 0x11C } + - { offsetInCU: 0x14356, offset: 0x7EF5A, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x166B8, symBinAddr: 0x3CA34, symSize: 0x138 } + - { offsetInCU: 0x14425, offset: 0x7F029, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x167F0, symBinAddr: 0x3CB6C, symSize: 0xB4 } + - { offsetInCU: 0x144CB, offset: 0x7F0CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x16AF0, symBinAddr: 0x3CE2C, symSize: 0x5F0 } + - { offsetInCU: 0x147E4, offset: 0x7F3E8, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x170F0, symBinAddr: 0x3D42C, symSize: 0x18C } + - { offsetInCU: 0x149E6, offset: 0x7F5EA, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1861C, symBinAddr: 0x3E91C, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x7FD1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x41C80, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x7FD35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x41C80, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x7FD49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x41CB0, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x7FD5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x41D9C, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x7FD71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x42004, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x7FD85, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x42420, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x7FD99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x42428, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x7FDAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x42664, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x7FDC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x426AC, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x7FDD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x42768, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x803CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8FF8, symBinAddr: 0x4B770, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x8048D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x9218, symBinAddr: 0x4B990, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x8055A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD204, symBinAddr: 0x4F97C, symSize: 0x7C0 } + - { offsetInCU: 0x9D6, offset: 0x8088C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD9C4, symBinAddr: 0x5013C, symSize: 0xA34 } + - { offsetInCU: 0xCB0, offset: 0x80B66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE3F8, symBinAddr: 0x50B70, symSize: 0x2AC } + - { offsetInCU: 0xDF2, offset: 0x80CA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xED9C, symBinAddr: 0x51514, symSize: 0x860 } + - { offsetInCU: 0x10E8, offset: 0x80F9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF5FC, symBinAddr: 0x51D74, symSize: 0xC2C } + - { offsetInCU: 0x13C2, offset: 0x81278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x10228, symBinAddr: 0x529A0, symSize: 0x314 } + - { offsetInCU: 0x1504, offset: 0x813BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x1053C, symBinAddr: 0x52CB4, symSize: 0x208 } + - { offsetInCU: 0x1985, offset: 0x8183B, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1EC8, symBinAddr: 0x44640, symSize: 0x2C } + - { offsetInCU: 0x1E8A, offset: 0x81D40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x94DC, symBinAddr: 0x4BC54, symSize: 0x20 } + - { offsetInCU: 0x1ECF, offset: 0x81D85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x94FC, symBinAddr: 0x4BC74, symSize: 0x8C } + - { offsetInCU: 0x1F8B, offset: 0x81E41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0xA02C, symBinAddr: 0x4C7A4, symSize: 0x54 } + - { offsetInCU: 0x1FC5, offset: 0x81E7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0xA080, symBinAddr: 0x4C7F8, symSize: 0x50 } + - { offsetInCU: 0x201B, offset: 0x81ED1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA0D0, symBinAddr: 0x4C848, symSize: 0x64 } + - { offsetInCU: 0x204E, offset: 0x81F04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA134, symBinAddr: 0x4C8AC, symSize: 0x4 } + - { offsetInCU: 0x208D, offset: 0x81F43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA138, symBinAddr: 0x4C8B0, symSize: 0x78 } + - { offsetInCU: 0x20E3, offset: 0x81F99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA1B0, symBinAddr: 0x4C928, symSize: 0x88 } + - { offsetInCU: 0x2154, offset: 0x8200A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA238, symBinAddr: 0x4C9B0, symSize: 0xDC } + - { offsetInCU: 0x21D6, offset: 0x8208C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA314, symBinAddr: 0x4CA8C, symSize: 0x4 } + - { offsetInCU: 0x21F2, offset: 0x820A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA318, symBinAddr: 0x4CA90, symSize: 0x4 } + - { offsetInCU: 0x222C, offset: 0x820E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xA31C, symBinAddr: 0x4CA94, symSize: 0x64 } + - { offsetInCU: 0x2599, offset: 0x8244F, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB5C4, symBinAddr: 0x4DD3C, symSize: 0xE4 } + - { offsetInCU: 0x267D, offset: 0x82533, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xB78C, symBinAddr: 0x4DF04, symSize: 0x280 } + - { offsetInCU: 0x2819, offset: 0x826CF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xBFBC, symBinAddr: 0x4E734, symSize: 0x64 } + - { offsetInCU: 0x2DFA, offset: 0x82CB0, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xC7C0, symBinAddr: 0x4EF38, symSize: 0x374 } + - { offsetInCU: 0x359C, offset: 0x83452, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCB34, symBinAddr: 0x4F2AC, symSize: 0x280 } + - { offsetInCU: 0x3973, offset: 0x83829, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCDB4, symBinAddr: 0x4F52C, symSize: 0x148 } + - { offsetInCU: 0x3B6D, offset: 0x83A23, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xCEFC, symBinAddr: 0x4F674, symSize: 0x1F8 } + - { offsetInCU: 0x3D2C, offset: 0x83BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10EF4, symBinAddr: 0x5366C, symSize: 0x104 } + - { offsetInCU: 0x3E76, offset: 0x83D2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x139EC, symBinAddr: 0x56164, symSize: 0x120 } + - { offsetInCU: 0x3F8E, offset: 0x83E44, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x13FF4, symBinAddr: 0x5670C, symSize: 0x10 } + - { offsetInCU: 0x3FA2, offset: 0x83E58, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14004, symBinAddr: 0x5671C, symSize: 0x10 } + - { offsetInCU: 0x3FB6, offset: 0x83E6C, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x14098, symBinAddr: 0x5672C, symSize: 0x48 } + - { offsetInCU: 0x3FCA, offset: 0x83E80, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x14184, symBinAddr: 0x56774, symSize: 0x3C } + - { offsetInCU: 0x3FDE, offset: 0x83E94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x141C0, symBinAddr: 0x567B0, symSize: 0x44 } + - { offsetInCU: 0x3FF2, offset: 0x83EA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOd', symObjAddr: 0x14204, symBinAddr: 0x567F4, symSize: 0x48 } + - { offsetInCU: 0x4006, offset: 0x83EBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x1424C, symBinAddr: 0x5683C, symSize: 0x8 } + - { offsetInCU: 0x401A, offset: 0x83ED0, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14254, symBinAddr: 0x56844, symSize: 0x10 } + - { offsetInCU: 0x402E, offset: 0x83EE4, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14264, symBinAddr: 0x56854, symSize: 0x8 } + - { offsetInCU: 0x4042, offset: 0x83EF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x142EC, symBinAddr: 0x56898, symSize: 0x30 } + - { offsetInCU: 0x409A, offset: 0x83F50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x143AC, symBinAddr: 0x56958, symSize: 0x24 } + - { offsetInCU: 0x40D6, offset: 0x83F8C, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14414, symBinAddr: 0x569C0, symSize: 0x44 } + - { offsetInCU: 0x4BF4, offset: 0x84AAA, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x42778, symSize: 0x80 } + - { offsetInCU: 0x4C5C, offset: 0x84B12, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x80, symBinAddr: 0x427F8, symSize: 0xA0 } + - { offsetInCU: 0x4DBF, offset: 0x84C75, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x120, symBinAddr: 0x42898, symSize: 0x9C } + - { offsetInCU: 0x4EEA, offset: 0x84DA0, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1BC, symBinAddr: 0x42934, symSize: 0x74 } + - { offsetInCU: 0x4F6F, offset: 0x84E25, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x230, symBinAddr: 0x429A8, symSize: 0x4 } + - { offsetInCU: 0x4F8A, offset: 0x84E40, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x234, symBinAddr: 0x429AC, symSize: 0x134 } + - { offsetInCU: 0x4FF5, offset: 0x84EAB, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x42AE0, symSize: 0xE8 } + - { offsetInCU: 0x50D7, offset: 0x84F8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x42BC8, symSize: 0x204 } + - { offsetInCU: 0x5256, offset: 0x8510C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x42DCC, symSize: 0xAF8 } + - { offsetInCU: 0x56E8, offset: 0x8559E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x114C, symBinAddr: 0x438C4, symSize: 0x3CC } + - { offsetInCU: 0x58FF, offset: 0x857B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1518, symBinAddr: 0x43C90, symSize: 0x9B0 } + - { offsetInCU: 0x5C76, offset: 0x85B2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x1EF4, symBinAddr: 0x4466C, symSize: 0x229C } + - { offsetInCU: 0x7193, offset: 0x87049, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE6A4, symBinAddr: 0x50E1C, symSize: 0x6F8 } + - { offsetInCU: 0x759E, offset: 0x87454, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4190, symBinAddr: 0x46908, symSize: 0x1660 } + - { offsetInCU: 0x8459, offset: 0x8830F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x57F0, symBinAddr: 0x47F68, symSize: 0x1038 } + - { offsetInCU: 0x8E60, offset: 0x88D16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x6828, symBinAddr: 0x48FA0, symSize: 0x3F0 } + - { offsetInCU: 0x8FC9, offset: 0x88E7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7510, symBinAddr: 0x49C88, symSize: 0x208 } + - { offsetInCU: 0x921B, offset: 0x890D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7718, symBinAddr: 0x49E90, symSize: 0x93C } + - { offsetInCU: 0x9A1B, offset: 0x898D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8054, symBinAddr: 0x4A7CC, symSize: 0x2E8 } + - { offsetInCU: 0x9B6D, offset: 0x89A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x833C, symBinAddr: 0x4AAB4, symSize: 0x648 } + - { offsetInCU: 0x9F3A, offset: 0x89DF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x8984, symBinAddr: 0x4B0FC, symSize: 0x674 } + - { offsetInCU: 0xA1DC, offset: 0x8A092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x943C, symBinAddr: 0x4BBB4, symSize: 0x80 } + - { offsetInCU: 0xA1FF, offset: 0x8A0B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x94BC, symBinAddr: 0x4BC34, symSize: 0x20 } + - { offsetInCU: 0xA28A, offset: 0x8A140, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x9588, symBinAddr: 0x4BD00, symSize: 0xA64 } + - { offsetInCU: 0xA6B9, offset: 0x8A56F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x9FEC, symBinAddr: 0x4C764, symSize: 0x40 } + - { offsetInCU: 0xA72C, offset: 0x8A5E2, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA380, symBinAddr: 0x4CAF8, symSize: 0x4 } + - { offsetInCU: 0xA747, offset: 0x8A5FD, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0xA384, symBinAddr: 0x4CAFC, symSize: 0x8 } + - { offsetInCU: 0xA75F, offset: 0x8A615, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0xA384, symBinAddr: 0x4CAFC, symSize: 0x8 } + - { offsetInCU: 0xA770, offset: 0x8A626, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA38C, symBinAddr: 0x4CB04, symSize: 0xC8 } + - { offsetInCU: 0xA7F8, offset: 0x8A6AE, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA454, symBinAddr: 0x4CBCC, symSize: 0xCC } + - { offsetInCU: 0xA898, offset: 0x8A74E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA61C, symBinAddr: 0x4CD94, symSize: 0x1F4 } + - { offsetInCU: 0xA938, offset: 0x8A7EE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA810, symBinAddr: 0x4CF88, symSize: 0x1C4 } + - { offsetInCU: 0xA9F4, offset: 0x8A8AA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA9D4, symBinAddr: 0x4D14C, symSize: 0x340 } + - { offsetInCU: 0xAAEB, offset: 0x8A9A1, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAD14, symBinAddr: 0x4D48C, symSize: 0x340 } + - { offsetInCU: 0xABD5, offset: 0x8AA8B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB054, symBinAddr: 0x4D7CC, symSize: 0x1DC } + - { offsetInCU: 0xAC7A, offset: 0x8AB30, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB230, symBinAddr: 0x4D9A8, symSize: 0x204 } + - { offsetInCU: 0xAD18, offset: 0x8ABCE, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB434, symBinAddr: 0x4DBAC, symSize: 0x4C } + - { offsetInCU: 0xADC4, offset: 0x8AC7A, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB480, symBinAddr: 0x4DBF8, symSize: 0x90 } + - { offsetInCU: 0xAE50, offset: 0x8AD06, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB510, symBinAddr: 0x4DC88, symSize: 0x40 } + - { offsetInCU: 0xAE8D, offset: 0x8AD43, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB550, symBinAddr: 0x4DCC8, symSize: 0x18 } + - { offsetInCU: 0xAEDF, offset: 0x8AD95, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB568, symBinAddr: 0x4DCE0, symSize: 0x3C } + - { offsetInCU: 0xAF08, offset: 0x8ADBE, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB5A4, symBinAddr: 0x4DD1C, symSize: 0x1C } + - { offsetInCU: 0xAF49, offset: 0x8ADFF, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBC90, symBinAddr: 0x4E408, symSize: 0x8C } + - { offsetInCU: 0xAF5D, offset: 0x8AE13, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBD1C, symBinAddr: 0x4E494, symSize: 0x4C } + - { offsetInCU: 0xAF8D, offset: 0x8AE43, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBD68, symBinAddr: 0x4E4E0, symSize: 0x164 } + - { offsetInCU: 0xAFEA, offset: 0x8AEA0, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBECC, symBinAddr: 0x4E644, symSize: 0xF0 } + - { offsetInCU: 0xB011, offset: 0x8AEC7, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC020, symBinAddr: 0x4E798, symSize: 0x214 } + - { offsetInCU: 0xB046, offset: 0x8AEFC, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC234, symBinAddr: 0x4E9AC, symSize: 0x78 } + - { offsetInCU: 0xB05A, offset: 0x8AF10, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC2AC, symBinAddr: 0x4EA24, symSize: 0x1C } + - { offsetInCU: 0xB06E, offset: 0x8AF24, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xC2C8, symBinAddr: 0x4EA40, symSize: 0x1C } + - { offsetInCU: 0xB082, offset: 0x8AF38, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC2E4, symBinAddr: 0x4EA5C, symSize: 0x1C } + - { offsetInCU: 0xB0B9, offset: 0x8AF6F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC300, symBinAddr: 0x4EA78, symSize: 0x104 } + - { offsetInCU: 0xB1B7, offset: 0x8B06D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xC404, symBinAddr: 0x4EB7C, symSize: 0x174 } + - { offsetInCU: 0xB2CD, offset: 0x8B183, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC578, symBinAddr: 0x4ECF0, symSize: 0x124 } + - { offsetInCU: 0xB3A1, offset: 0x8B257, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC69C, symBinAddr: 0x4EE14, symSize: 0x124 } + - { offsetInCU: 0xB4E0, offset: 0x8B396, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD0F4, symBinAddr: 0x4F86C, symSize: 0x14 } + - { offsetInCU: 0xB502, offset: 0x8B3B8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD108, symBinAddr: 0x4F880, symSize: 0xFC } + - { offsetInCU: 0xB5DC, offset: 0x8B492, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x10744, symBinAddr: 0x52EBC, symSize: 0x7B0 } + - { offsetInCU: 0xBA63, offset: 0x8B919, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10FF8, symBinAddr: 0x53770, symSize: 0x29F4 } + - { offsetInCU: 0xC1F7, offset: 0x8C0AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13B0C, symBinAddr: 0x56284, symSize: 0x488 } + - { offsetInCU: 0x95, offset: 0x8C4CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFBC, symBinAddr: 0x57A7C, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8C520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1008, symBinAddr: 0x57AC8, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8C551, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x102C, symBinAddr: 0x57AEC, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8C56D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1038, symBinAddr: 0x57AF8, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8C589, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5FB8, symBinAddr: 0x5C9E8, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8C620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1094, symBinAddr: 0x57B54, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8C657, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E4, symBinAddr: 0x57BA4, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8C67A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x60EC, symBinAddr: 0x5CB1C, symSize: 0x133C } + - { offsetInCU: 0x2D0, offset: 0x8C708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1134, symBinAddr: 0x57BF4, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8C763, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x114C, symBinAddr: 0x57C0C, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8C7DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1178, symBinAddr: 0x57C38, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8C812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11E0, symBinAddr: 0x57CA0, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8C843, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1204, symBinAddr: 0x57CC4, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8C85F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1210, symBinAddr: 0x57CD0, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8C87B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7F0C, symBinAddr: 0x5DF24, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8C96D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x126C, symBinAddr: 0x57D2C, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8C9A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12BC, symBinAddr: 0x57D7C, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8C9C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8108, symBinAddr: 0x5E120, symSize: 0xF48 } + - { offsetInCU: 0x611, offset: 0x8CA49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x14DC, symBinAddr: 0x57F9C, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8CA7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1508, symBinAddr: 0x57FC8, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8CA96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1578, symBinAddr: 0x58038, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8CACB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15D8, symBinAddr: 0x58098, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8CB1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x15FC, symBinAddr: 0x580BC, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8CB37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1608, symBinAddr: 0x580C8, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8CB53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x922C, symBinAddr: 0x5F244, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8CBB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1664, symBinAddr: 0x58124, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8CBE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16AC, symBinAddr: 0x5816C, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8CC0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9288, symBinAddr: 0x5F2A0, symSize: 0x230 } + - { offsetInCU: 0x838, offset: 0x8CC70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16F4, symBinAddr: 0x581B4, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8CCA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16FC, symBinAddr: 0x581BC, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8CCD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1720, symBinAddr: 0x581E0, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8CCF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x172C, symBinAddr: 0x581EC, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8CD0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x94B8, symBinAddr: 0x5F4D0, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8CE6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1788, symBinAddr: 0x58248, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8CEA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17E8, symBinAddr: 0x582A8, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8CEC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x97A4, symBinAddr: 0x5F7BC, symSize: 0x548 } + - { offsetInCU: 0xB19, offset: 0x8CF51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1840, symBinAddr: 0x58300, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8CFD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1858, symBinAddr: 0x58318, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8D0B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x189C, symBinAddr: 0x5835C, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8D13A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0x583C4, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8D18F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1928, symBinAddr: 0x583E8, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8D1C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x194C, symBinAddr: 0x5840C, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8D1DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1958, symBinAddr: 0x58418, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8D1F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9CEC, symBinAddr: 0x5FD04, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8D286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19B4, symBinAddr: 0x58474, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8D2BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19E0, symBinAddr: 0x584A0, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8D2E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9DA8, symBinAddr: 0x5FDC0, symSize: 0x1B0 } + - { offsetInCU: 0xF18, offset: 0x8D350, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x58548, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8D385, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x585C0, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8D3B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B24, symBinAddr: 0x585E4, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8D3D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B30, symBinAddr: 0x585F0, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8D3EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9F58, symBinAddr: 0x5FF70, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8D4E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B8C, symBinAddr: 0x5864C, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8D520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BFC, symBinAddr: 0x586BC, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8D543, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA1A4, symBinAddr: 0x601BC, symSize: 0x8D8 } + - { offsetInCU: 0x11A5, offset: 0x8D5DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1DE8, symBinAddr: 0x588A8, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8D60E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1E14, symBinAddr: 0x588D4, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8D622, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1E3C, symBinAddr: 0x588FC, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8D657, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E44, symBinAddr: 0x58904, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8D6A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1E68, symBinAddr: 0x58928, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8D6C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E74, symBinAddr: 0x58934, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8D6DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAB48, symBinAddr: 0x60B60, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8D75D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0x58990, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8D794, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F28, symBinAddr: 0x589E8, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8D7B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xABA4, symBinAddr: 0x60BBC, symSize: 0x770 } + - { offsetInCU: 0x1457, offset: 0x8D88F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D80, symBinAddr: 0x5C834, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8D8E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5DD4, symBinAddr: 0x5C888, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8D93B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5E54, symBinAddr: 0x5C908, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8D970, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E5C, symBinAddr: 0x5C910, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8D9F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5EBC, symBinAddr: 0x5C970, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8DA0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x2150, symBinAddr: 0x58C10, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8DA21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x2170, symBinAddr: 0x58C30, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8DA35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x2264, symBinAddr: 0x58D24, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8DA49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x25E4, symBinAddr: 0x590A4, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8DA64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x323C, symBinAddr: 0x59CFC, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8DA8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x326C, symBinAddr: 0x59D2C, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8DAA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x3298, symBinAddr: 0x59D58, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8DAB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x32C4, symBinAddr: 0x59D84, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8DAC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x32F0, symBinAddr: 0x59DB0, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8DADD, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x331C, symBinAddr: 0x59DDC, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8DAF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x3324, symBinAddr: 0x59DE4, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8DB05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x36E4, symBinAddr: 0x5A1A4, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8DB19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3740, symBinAddr: 0x5A200, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8DB2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x382C, symBinAddr: 0x5A2EC, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8DB41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x383C, symBinAddr: 0x5A2FC, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8DB55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x386C, symBinAddr: 0x5A32C, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8DB69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x394C, symBinAddr: 0x5A40C, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8DB7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x3C84, symBinAddr: 0x5A744, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8DB91, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x44E8, symBinAddr: 0x5AFA8, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8DBA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x44F0, symBinAddr: 0x5AFB0, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8DBB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x4854, symBinAddr: 0x5B314, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8DBCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x48B0, symBinAddr: 0x5B370, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8DBE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x4994, symBinAddr: 0x5B454, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8DBF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x49A4, symBinAddr: 0x5B464, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8DC09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x4A48, symBinAddr: 0x5B508, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8DC1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x4BD4, symBinAddr: 0x5B694, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8DC31, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4F7C, symBinAddr: 0x5BA3C, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8DC45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4FC0, symBinAddr: 0x5BA80, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8DC59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x513C, symBinAddr: 0x5BBFC, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8DC6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x5198, symBinAddr: 0x5BC58, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8DC81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x522C, symBinAddr: 0x5BCEC, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8DC95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x523C, symBinAddr: 0x5BCFC, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8DCA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x52A4, symBinAddr: 0x5BD64, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8DCBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x5380, symBinAddr: 0x5BE40, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8DCD1, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x54EC, symBinAddr: 0x5BFAC, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8DCE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5518, symBinAddr: 0x5BFD8, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8DCF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x55DC, symBinAddr: 0x5C09C, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8DD0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x5638, symBinAddr: 0x5C0F8, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8DD21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x56B4, symBinAddr: 0x5C174, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8DD35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x56C4, symBinAddr: 0x5C184, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8DD49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x570C, symBinAddr: 0x5C1CC, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8DD5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x57F0, symBinAddr: 0x5C2B0, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8DD71, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5988, symBinAddr: 0x5C448, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8DD85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x59BC, symBinAddr: 0x5C47C, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8DD99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5AB8, symBinAddr: 0x5C578, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8DDAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x5B14, symBinAddr: 0x5C5D4, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8DDC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x5B90, symBinAddr: 0x5C650, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8DDD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x5BA0, symBinAddr: 0x5C660, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8DDE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5BC8, symBinAddr: 0x5C688, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8DDFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x5C04, symBinAddr: 0x5C6C4, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8DE11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x5C7C, symBinAddr: 0x5C730, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8DE25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5CC0, symBinAddr: 0x5C774, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8DE39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x5D1C, symBinAddr: 0x5C7D0, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8DE4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x5D70, symBinAddr: 0x5C824, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8DE61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5EC4, symBinAddr: 0x5C978, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8DE75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5EC8, symBinAddr: 0x5C97C, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8DE89, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F90, symBinAddr: 0x5C9C0, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8DE9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x7428, symBinAddr: 0x5DE58, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8DEB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x746C, symBinAddr: 0x5DE9C, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8DEC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7EC8, symBinAddr: 0x5DEE0, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8DED9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x9050, symBinAddr: 0x5F068, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8DEED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x9094, symBinAddr: 0x5F0AC, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8DF01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x90D8, symBinAddr: 0x5F0F0, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8DF15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x911C, symBinAddr: 0x5F134, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8DF29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x9160, symBinAddr: 0x5F178, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8DF3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x91A4, symBinAddr: 0x5F1BC, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8DF51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x91E8, symBinAddr: 0x5F200, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8DF65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xAA7C, symBinAddr: 0x60A94, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8DF79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xAAC0, symBinAddr: 0x60AD8, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8DF8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xAB04, symBinAddr: 0x60B1C, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8DFA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xB314, symBinAddr: 0x6132C, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8DFB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB358, symBinAddr: 0x61370, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8DFC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xB39C, symBinAddr: 0x613B4, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8DFDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xB424, symBinAddr: 0x6143C, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8DFF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB468, symBinAddr: 0x61480, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E005, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB4BC, symBinAddr: 0x614C4, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E019, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB54C, symBinAddr: 0x61554, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E02D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB608, symBinAddr: 0x61610, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8E041, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB610, symBinAddr: 0x61618, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8E055, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB614, symBinAddr: 0x6161C, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8E069, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB620, symBinAddr: 0x61628, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8E07D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB630, symBinAddr: 0x61638, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8E091, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB6C0, symBinAddr: 0x616C8, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8E0A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB77C, symBinAddr: 0x61784, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8E0B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB780, symBinAddr: 0x61788, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8E0CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB790, symBinAddr: 0x61798, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8E0E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB820, symBinAddr: 0x61828, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8E0F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB8DC, symBinAddr: 0x618E4, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8E109, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB8E0, symBinAddr: 0x618E8, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8E11D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB8F0, symBinAddr: 0x618F8, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8E131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB980, symBinAddr: 0x61988, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8E145, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBA3C, symBinAddr: 0x61A44, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8E159, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBA40, symBinAddr: 0x61A48, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8E16D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xBA50, symBinAddr: 0x61A58, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8E181, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xBAE0, symBinAddr: 0x61AE8, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8E195, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xBB9C, symBinAddr: 0x61BA4, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8E1A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBBA4, symBinAddr: 0x61BAC, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8E1BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xBBA8, symBinAddr: 0x61BB0, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8E1D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBBB0, symBinAddr: 0x61BB8, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8E1E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xBBC0, symBinAddr: 0x61BC8, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8E1F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xBC50, symBinAddr: 0x61C58, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8E20D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBD0C, symBinAddr: 0x61D14, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8E221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBD10, symBinAddr: 0x61D18, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8E235, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBD20, symBinAddr: 0x61D28, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8E249, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xBD44, symBinAddr: 0x61D4C, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8E25D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xBD64, symBinAddr: 0x61D6C, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8E271, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xBDA4, symBinAddr: 0x61DAC, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8E285, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBDB4, symBinAddr: 0x61DBC, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8E299, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBDB8, symBinAddr: 0x61DC0, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8E2AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBDFC, symBinAddr: 0x61E04, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8E2C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBE00, symBinAddr: 0x61E08, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8E2D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBE44, symBinAddr: 0x61E4C, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8E2E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBE48, symBinAddr: 0x61E50, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8E2FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBE8C, symBinAddr: 0x61E94, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8E311, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBE90, symBinAddr: 0x61E98, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8E325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBED4, symBinAddr: 0x61EDC, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8E339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBED8, symBinAddr: 0x61EE0, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8E34D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBF1C, symBinAddr: 0x61F24, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8E361, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBF20, symBinAddr: 0x61F28, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8E375, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF64, symBinAddr: 0x61F6C, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8E389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF68, symBinAddr: 0x61F70, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8E39D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFAC, symBinAddr: 0x61FB4, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8E3B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBFB0, symBinAddr: 0x61FB8, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8E3C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBFF4, symBinAddr: 0x61FFC, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8E3D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBFF8, symBinAddr: 0x62000, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8E3ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC03C, symBinAddr: 0x62044, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8E401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC040, symBinAddr: 0x62048, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8E415, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC084, symBinAddr: 0x6208C, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8E429, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC088, symBinAddr: 0x62090, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8E43D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0CC, symBinAddr: 0x620D4, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8E451, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC0D0, symBinAddr: 0x620D8, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8E465, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC114, symBinAddr: 0x6211C, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8E479, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC118, symBinAddr: 0x62120, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8E48D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC15C, symBinAddr: 0x62164, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8E4A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC160, symBinAddr: 0x62168, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8E4B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC1A4, symBinAddr: 0x621AC, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8E4C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC1A8, symBinAddr: 0x621B0, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8E4DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC1EC, symBinAddr: 0x621F4, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8E4F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC1F0, symBinAddr: 0x621F8, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8E505, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC234, symBinAddr: 0x6223C, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8E519, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC238, symBinAddr: 0x62240, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8E52D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC27C, symBinAddr: 0x62284, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8E541, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC280, symBinAddr: 0x62288, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8E555, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xC2C4, symBinAddr: 0x622CC, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8E569, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xC308, symBinAddr: 0x62310, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8E57D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xC398, symBinAddr: 0x623A0, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8E591, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xC454, symBinAddr: 0x6245C, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8E5A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xC458, symBinAddr: 0x62460, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8E5B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC468, symBinAddr: 0x62470, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8E5CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC46C, symBinAddr: 0x62474, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8E5E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC4B0, symBinAddr: 0x624B8, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8E5F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC4B4, symBinAddr: 0x624BC, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8E609, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC4F8, symBinAddr: 0x62500, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8E61D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC4FC, symBinAddr: 0x62504, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8E64B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1044, symBinAddr: 0x57B04, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8E667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x106C, symBinAddr: 0x57B2C, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8E689, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x121C, symBinAddr: 0x57CDC, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8E6A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1244, symBinAddr: 0x57D04, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8E6C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130C, symBinAddr: 0x57DCC, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8E741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1318, symBinAddr: 0x57DD8, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8E7C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x13BC, symBinAddr: 0x57E7C, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8E801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x143C, symBinAddr: 0x57EFC, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8E867, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1614, symBinAddr: 0x580D4, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8E883, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x163C, symBinAddr: 0x580FC, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8E8A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1738, symBinAddr: 0x581F8, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8E8C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x58220, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8E914, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x18C4, symBinAddr: 0x58384, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8E9B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1964, symBinAddr: 0x58424, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8E9D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x5844C, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8E9F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B3C, symBinAddr: 0x585FC, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8EA10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B64, symBinAddr: 0x58624, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8EA59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C64, symBinAddr: 0x58724, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8EB2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1CEC, symBinAddr: 0x587AC, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8EBAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D4C, symBinAddr: 0x5880C, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8EBFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D8C, symBinAddr: 0x5884C, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8EC5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E80, symBinAddr: 0x58940, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8EC7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1EA8, symBinAddr: 0x58968, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8ECBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E80, symBinAddr: 0x5C934, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8EE4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x56AC0, symSize: 0x18C } + - { offsetInCU: 0x2A47, offset: 0x8EE7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18C, symBinAddr: 0x56C4C, symSize: 0x274 } + - { offsetInCU: 0x2A78, offset: 0x8EEB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x400, symBinAddr: 0x56EC0, symSize: 0x1A0 } + - { offsetInCU: 0x2AA9, offset: 0x8EEE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x5A0, symBinAddr: 0x57060, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8EF04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x63C, symBinAddr: 0x570FC, symSize: 0x278 } + - { offsetInCU: 0x2AFD, offset: 0x8EF35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B4, symBinAddr: 0x57374, symSize: 0x128 } + - { offsetInCU: 0x2B2E, offset: 0x8EF66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9DC, symBinAddr: 0x5749C, symSize: 0x224 } + - { offsetInCU: 0x2B5F, offset: 0x8EF97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC00, symBinAddr: 0x576C0, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8EFCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCB0, symBinAddr: 0x57770, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F00F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD60, symBinAddr: 0x57820, symSize: 0x254 } + - { offsetInCU: 0x2DE8, offset: 0x8F220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F78, symBinAddr: 0x58A38, symSize: 0x1C8 } + - { offsetInCU: 0x2E34, offset: 0x8F26C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x2140, symBinAddr: 0x58C00, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8F34F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x625A0, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8F48B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x6260C, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8F49F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x62660, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8F4B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x626A4, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8F594, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x625A0, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8F5AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x625A8, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8F5E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x625B0, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8F5F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x625C0, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8F615, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x625C4, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8F629, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x625CC, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x8F65B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x625D4, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x8F67F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x625E4, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x8F6A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x625E8, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x8F6B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x625F0, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x8F6E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x625F8, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x8F708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x62608, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x8F75E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x626B4, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x8F7AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x626D8, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x8F8B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x626B4, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x8F91D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x626F8, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x8F96E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x6271C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x8FA74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x626F8, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x8FAE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6273C, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x8FB31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x6279C, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x8FB45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x627A4, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x8FB59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x627E0, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x8FC5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6273C, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x8FCC9, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x62858, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x8FE1D, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x62BC0, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x90043, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x62858, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x9027E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x62C08, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x902CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x62C2C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x903D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x62C08, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x904B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA34, symBinAddr: 0x63640, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x904D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA40, symBinAddr: 0x6364C, symSize: 0x64 } + - { offsetInCU: 0xD5, offset: 0x904EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA40, symBinAddr: 0x6364C, symSize: 0x64 } + - { offsetInCU: 0xE6, offset: 0x904FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x636B0, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x9058B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xC78, symBinAddr: 0x63884, symSize: 0xC } + - { offsetInCU: 0x191, offset: 0x905A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xC84, symBinAddr: 0x63890, symSize: 0x2C } + - { offsetInCU: 0x1A9, offset: 0x905BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xC84, symBinAddr: 0x63890, symSize: 0x2C } + - { offsetInCU: 0x560, offset: 0x90976, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x790, symBinAddr: 0x6339C, symSize: 0xC8 } + - { offsetInCU: 0x5D4, offset: 0x909EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xCB0, symBinAddr: 0x638BC, symSize: 0x3EC } + - { offsetInCU: 0x7FD, offset: 0x90C13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x109C, symBinAddr: 0x63CA8, symSize: 0x13C } + - { offsetInCU: 0xA1F, offset: 0x90E35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x34A8, symBinAddr: 0x66014, symSize: 0x224 } + - { offsetInCU: 0xAD0, offset: 0x90EE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3770, symBinAddr: 0x66280, symSize: 0x25C } + - { offsetInCU: 0xB35, offset: 0x90F4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x39CC, symBinAddr: 0x664DC, symSize: 0x248 } + - { offsetInCU: 0xC5D, offset: 0x91073, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3C14, symBinAddr: 0x66724, symSize: 0x2BC } + - { offsetInCU: 0xD9C, offset: 0x911B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3ED0, symBinAddr: 0x669E0, symSize: 0x1A8 } + - { offsetInCU: 0xDE2, offset: 0x911F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x4078, symBinAddr: 0x66B88, symSize: 0x43C } + - { offsetInCU: 0x1119, offset: 0x9152F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x44B4, symBinAddr: 0x66FC4, symSize: 0xC4 } + - { offsetInCU: 0x125E, offset: 0x91674, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2F34, symBinAddr: 0x65B40, symSize: 0x4 } + - { offsetInCU: 0x1272, offset: 0x91688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2F38, symBinAddr: 0x65B44, symSize: 0x44 } + - { offsetInCU: 0x1286, offset: 0x9169C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2F7C, symBinAddr: 0x65B88, symSize: 0x4 } + - { offsetInCU: 0x129A, offset: 0x916B0, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2F80, symBinAddr: 0x65B8C, symSize: 0x4C } + - { offsetInCU: 0x12AE, offset: 0x916C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3010, symBinAddr: 0x65BD8, symSize: 0x4 } + - { offsetInCU: 0x12C2, offset: 0x916D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3014, symBinAddr: 0x65BDC, symSize: 0x44 } + - { offsetInCU: 0x12D6, offset: 0x916EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x3068, symBinAddr: 0x65C20, symSize: 0x90 } + - { offsetInCU: 0x12EA, offset: 0x91700, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x30F8, symBinAddr: 0x65CB0, symSize: 0xBC } + - { offsetInCU: 0x12FE, offset: 0x91714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x31B4, symBinAddr: 0x65D6C, symSize: 0x8 } + - { offsetInCU: 0x1312, offset: 0x91728, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x31BC, symBinAddr: 0x65D74, symSize: 0x4 } + - { offsetInCU: 0x1326, offset: 0x9173C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x31C0, symBinAddr: 0x65D78, symSize: 0x8 } + - { offsetInCU: 0x133A, offset: 0x91750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x31C8, symBinAddr: 0x65D80, symSize: 0x10 } + - { offsetInCU: 0x134E, offset: 0x91764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x31D8, symBinAddr: 0x65D90, symSize: 0x90 } + - { offsetInCU: 0x1362, offset: 0x91778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3268, symBinAddr: 0x65E20, symSize: 0xBC } + - { offsetInCU: 0x1376, offset: 0x9178C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x3324, symBinAddr: 0x65EDC, symSize: 0x8 } + - { offsetInCU: 0x138A, offset: 0x917A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x332C, symBinAddr: 0x65EE4, symSize: 0x4 } + - { offsetInCU: 0x139E, offset: 0x917B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x3330, symBinAddr: 0x65EE8, symSize: 0xC } + - { offsetInCU: 0x13B2, offset: 0x917C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x333C, symBinAddr: 0x65EF4, symSize: 0x10 } + - { offsetInCU: 0x13C6, offset: 0x917DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x334C, symBinAddr: 0x65F04, symSize: 0x20 } + - { offsetInCU: 0x13DA, offset: 0x917F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3374, symBinAddr: 0x65F24, symSize: 0xC } + - { offsetInCU: 0x13EE, offset: 0x91804, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x3380, symBinAddr: 0x65F30, symSize: 0x4 } + - { offsetInCU: 0x1402, offset: 0x91818, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3384, symBinAddr: 0x65F34, symSize: 0x44 } + - { offsetInCU: 0x1416, offset: 0x9182C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x33C8, symBinAddr: 0x65F78, symSize: 0xC } + - { offsetInCU: 0x142A, offset: 0x91840, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x33D4, symBinAddr: 0x65F84, symSize: 0x4 } + - { offsetInCU: 0x143E, offset: 0x91854, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x33D8, symBinAddr: 0x65F88, symSize: 0x44 } + - { offsetInCU: 0x1452, offset: 0x91868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x341C, symBinAddr: 0x65FCC, symSize: 0xC } + - { offsetInCU: 0x14C6, offset: 0x918DC, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x36CC, symBinAddr: 0x66238, symSize: 0x48 } + - { offsetInCU: 0x1525, offset: 0x9193B, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4578, symBinAddr: 0x67088, symSize: 0x3C } + - { offsetInCU: 0x1539, offset: 0x9194F, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x45B4, symBinAddr: 0x670C4, symSize: 0x24 } + - { offsetInCU: 0x154D, offset: 0x91963, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x460C, symBinAddr: 0x6710C, symSize: 0x8 } + - { offsetInCU: 0x1561, offset: 0x91977, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4614, symBinAddr: 0x67114, symSize: 0x10 } + - { offsetInCU: 0x1575, offset: 0x9198B, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4624, symBinAddr: 0x67124, symSize: 0x8 } + - { offsetInCU: 0x1589, offset: 0x9199F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4684, symBinAddr: 0x6712C, symSize: 0x8 } + - { offsetInCU: 0x159D, offset: 0x919B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x4738, symBinAddr: 0x671E0, symSize: 0x10 } + - { offsetInCU: 0x169B, offset: 0x91AB1, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x154, symBinAddr: 0x62D60, symSize: 0x134 } + - { offsetInCU: 0x175C, offset: 0x91B72, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x288, symBinAddr: 0x62E94, symSize: 0x11C } + - { offsetInCU: 0x181D, offset: 0x91C33, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x3A4, symBinAddr: 0x62FB0, symSize: 0x90 } + - { offsetInCU: 0x19FD, offset: 0x91E13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x87C, symBinAddr: 0x63488, symSize: 0xC } + - { offsetInCU: 0x1A7D, offset: 0x91E93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x888, symBinAddr: 0x63494, symSize: 0x9C } + - { offsetInCU: 0x1AFF, offset: 0x91F15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x924, symBinAddr: 0x63530, symSize: 0x78 } + - { offsetInCU: 0x1B3D, offset: 0x91F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x99C, symBinAddr: 0x635A8, symSize: 0x98 } + - { offsetInCU: 0x1BA3, offset: 0x91FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x6375C, symSize: 0xC } + - { offsetInCU: 0x1C23, offset: 0x92039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB5C, symBinAddr: 0x63768, symSize: 0x6C } + - { offsetInCU: 0x1CD7, offset: 0x920ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xBC8, symBinAddr: 0x637D4, symSize: 0x48 } + - { offsetInCU: 0x1D49, offset: 0x9215F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC10, symBinAddr: 0x6381C, symSize: 0x68 } + - { offsetInCU: 0x2136, offset: 0x9254C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x62C4C, symSize: 0x6C } + - { offsetInCU: 0x216D, offset: 0x92583, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x62CB8, symSize: 0x28 } + - { offsetInCU: 0x218C, offset: 0x925A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x62CE0, symSize: 0x58 } + - { offsetInCU: 0x21BB, offset: 0x925D1, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x21D3, offset: 0x925E9, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x21E7, offset: 0x925FD, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x21FB, offset: 0x92611, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x220F, offset: 0x92625, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x222F, offset: 0x92645, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x130, symBinAddr: 0x62D3C, symSize: 0x24 } + - { offsetInCU: 0x22DA, offset: 0x926F0, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x434, symBinAddr: 0x63040, symSize: 0xC4 } + - { offsetInCU: 0x248D, offset: 0x928A3, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x24A5, offset: 0x928BB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x24C5, offset: 0x928DB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x24D9, offset: 0x928EF, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x24ED, offset: 0x92903, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x2501, offset: 0x92917, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x25D5, offset: 0x929EB, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x540, symBinAddr: 0x6314C, symSize: 0x88 } + - { offsetInCU: 0x2692, offset: 0x92AA8, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x5C8, symBinAddr: 0x631D4, symSize: 0x80 } + - { offsetInCU: 0x272D, offset: 0x92B43, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x648, symBinAddr: 0x63254, symSize: 0xE4 } + - { offsetInCU: 0x2881, offset: 0x92C97, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x2899, offset: 0x92CAF, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x28AD, offset: 0x92CC3, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x28C1, offset: 0x92CD7, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x28D5, offset: 0x92CEB, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x2952, offset: 0x92D68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x858, symBinAddr: 0x63464, symSize: 0x24 } + - { offsetInCU: 0x29B4, offset: 0x92DCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xADC, symBinAddr: 0x636E8, symSize: 0x74 } + - { offsetInCU: 0x2A63, offset: 0x92E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x11D8, symBinAddr: 0x63DE4, symSize: 0x9BC } + - { offsetInCU: 0x3011, offset: 0x93427, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B94, symBinAddr: 0x647A0, symSize: 0x694 } + - { offsetInCU: 0x3380, offset: 0x93796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2228, symBinAddr: 0x64E34, symSize: 0x4B0 } + - { offsetInCU: 0x3549, offset: 0x9395F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x26D8, symBinAddr: 0x652E4, symSize: 0x64C } + - { offsetInCU: 0x3A4C, offset: 0x93E62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2D24, symBinAddr: 0x65930, symSize: 0x160 } + - { offsetInCU: 0x3B58, offset: 0x93F6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2E84, symBinAddr: 0x65A90, symSize: 0x2C } + - { offsetInCU: 0x3B91, offset: 0x93FA7, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2F30, symBinAddr: 0x65B3C, symSize: 0x4 } + - { offsetInCU: 0x3BBE, offset: 0x93FD4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x346C, symBinAddr: 0x65FD8, symSize: 0x14 } + - { offsetInCU: 0x3BEE, offset: 0x94004, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3480, symBinAddr: 0x65FEC, symSize: 0x14 } + - { offsetInCU: 0x3C1E, offset: 0x94034, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3494, symBinAddr: 0x66000, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x941C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x671FC, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x941DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x67384, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x941F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x67428, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x94205, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x67584, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x94219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x6776C, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x9422D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x67858, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x94241, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x679E0, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x94255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x67A78, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x94269, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x67B10, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x9427D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x67B98, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x94291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x67BEC, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x942A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x67D10, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x942B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x67D94, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x942CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x67E88, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x942E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x67FE8, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x942F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x680C4, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x94309, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x6820C, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x9431D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x682A4, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x94331, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x68370, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x943BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17AC, symBinAddr: 0x68968, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x9441A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17C4, symBinAddr: 0x68980, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x94494, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17F0, symBinAddr: 0x689AC, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x944C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0x68A1C, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x944FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1884, symBinAddr: 0x68A40, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x94516, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1890, symBinAddr: 0x68A4C, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x94532, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F68, symBinAddr: 0x6A028, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x945EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18EC, symBinAddr: 0x68AA8, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x9460F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1900, symBinAddr: 0x68ABC, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x94690, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AD8, symBinAddr: 0x68C94, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x946C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x68CDC, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x946F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B44, symBinAddr: 0x68D00, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x94712, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x68D0C, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x9472E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3150, symBinAddr: 0x6A210, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x947DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BAC, symBinAddr: 0x68D68, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x94815, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BF8, symBinAddr: 0x68DB4, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x94838, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x32A4, symBinAddr: 0x6A364, symSize: 0x2A4 } + - { offsetInCU: 0x716, offset: 0x9489C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2438, symBinAddr: 0x695F4, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x948D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2440, symBinAddr: 0x695FC, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x94902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2464, symBinAddr: 0x69620, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x9491E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2470, symBinAddr: 0x6962C, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x9493A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3548, symBinAddr: 0x6A608, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x94A96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x24CC, symBinAddr: 0x69688, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x94AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x24E0, symBinAddr: 0x6969C, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x94ADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2518, symBinAddr: 0x696B0, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x94AF1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x257C, symBinAddr: 0x696F4, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x94B05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2644, symBinAddr: 0x69774, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x94B19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x26CC, symBinAddr: 0x697B8, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x94B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x27F8, symBinAddr: 0x698E4, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x94B41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x284C, symBinAddr: 0x69928, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x94B55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x28DC, symBinAddr: 0x699B8, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x94B69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2998, symBinAddr: 0x69A74, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x94B7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x29A0, symBinAddr: 0x69A7C, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x94B91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x29A4, symBinAddr: 0x69A80, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x94BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x29AC, symBinAddr: 0x69A88, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x94BB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x29BC, symBinAddr: 0x69A98, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x94BCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2A4C, symBinAddr: 0x69B28, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x94BE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2B08, symBinAddr: 0x69BE4, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x94BF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2B0C, symBinAddr: 0x69BE8, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x94C09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2B1C, symBinAddr: 0x69BF8, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x94C1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2B4C, symBinAddr: 0x69C28, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x94C31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2B7C, symBinAddr: 0x69C58, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x94C45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2BD8, symBinAddr: 0x69CB4, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x94C59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2C88, symBinAddr: 0x69D48, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x94C6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2CEC, symBinAddr: 0x69DAC, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x94C81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2D48, symBinAddr: 0x69E08, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x94C95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2DA8, symBinAddr: 0x69E68, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x94CA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2DB8, symBinAddr: 0x69E78, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x94CBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2DBC, symBinAddr: 0x69E7C, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x94CD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2E00, symBinAddr: 0x69EC0, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x94CE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2E04, symBinAddr: 0x69EC4, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x94CF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E48, symBinAddr: 0x69F08, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x94D0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E4C, symBinAddr: 0x69F0C, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x94D21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x69F50, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x94D35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E94, symBinAddr: 0x69F54, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x94D49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED8, symBinAddr: 0x69F98, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x94D5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EDC, symBinAddr: 0x69F9C, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x94D71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F20, symBinAddr: 0x69FE0, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x94D85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F24, symBinAddr: 0x69FE4, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x94DA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3864, symBinAddr: 0x6A924, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x94DB8, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x38A8, symBinAddr: 0x6A968, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x94DCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x3974, symBinAddr: 0x6AA34, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x94DE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3A04, symBinAddr: 0x6AAC4, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x94DF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3AC0, symBinAddr: 0x6AB80, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x94E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3AC4, symBinAddr: 0x6AB84, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x94E1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3AD4, symBinAddr: 0x6AB94, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x94E30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3AD8, symBinAddr: 0x6AB98, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x94E44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3B1C, symBinAddr: 0x6ABDC, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x94E58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3B20, symBinAddr: 0x6ABE0, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x94E6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3B64, symBinAddr: 0x6AC24, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x94E80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3B68, symBinAddr: 0x6AC28, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x94EAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x189C, symBinAddr: 0x68A58, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x94ECA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18C4, symBinAddr: 0x68A80, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x94EEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B5C, symBinAddr: 0x68D18, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x94F08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B84, symBinAddr: 0x68D40, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x94F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x247C, symBinAddr: 0x69638, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x94F46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x24A4, symBinAddr: 0x69660, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x95053, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x683F8, symSize: 0x210 } + - { offsetInCU: 0xF04, offset: 0x9508A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x144C, symBinAddr: 0x68608, symSize: 0x360 } + - { offsetInCU: 0xF7F, offset: 0x95105, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1914, symBinAddr: 0x68AD0, symSize: 0x1BC } + - { offsetInCU: 0xFCA, offset: 0x95150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1C38, symBinAddr: 0x68DF4, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x95173, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CE0, symBinAddr: 0x68E9C, symSize: 0x274 } + - { offsetInCU: 0x1024, offset: 0x951AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F54, symBinAddr: 0x69110, symSize: 0x458 } + - { offsetInCU: 0x27, offset: 0x95231, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6AC8C, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x95310, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x6AD74, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x95324, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x6ADA4, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x95338, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6ADCC, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x9534C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x6AE08, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x95360, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x6AE74, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x95374, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x6AEB8, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x95388, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x6AF00, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x9539C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x6AF40, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x954AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6AC8C, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x954C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x6ACB8, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x954FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x6ACEC, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x9550E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x6ACFC, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x9552F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x6AD00, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x95543, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x6AD2C, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x95578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x6AD60, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x9559C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x6AD70, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x955EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6AF50, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x9564E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x6B1E8, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x9566A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6B1F0, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x95682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6B1F0, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x9569F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x6B0D8, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x956B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x6B0DC, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x956E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x6B208, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x956FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x6B298, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x9570F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x6B354, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x95723, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x6B35C, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x95737, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x6B360, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x9574B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x6B368, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x957BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0x438, symBinAddr: 0x6B378, symSize: 0x13C } + - { offsetInCU: 0x421, offset: 0x959E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x6B0B4, symSize: 0x24 } + - { offsetInCU: 0x515, offset: 0x95ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x6B120, symSize: 0x4C } + - { offsetInCU: 0x5ED, offset: 0x95BB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x6B16C, symSize: 0x34 } + - { offsetInCU: 0x669, offset: 0x95C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x6B1A0, symSize: 0x48 } + - { offsetInCU: 0x82E, offset: 0x95DF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6AF50, symSize: 0x14 } + - { offsetInCU: 0x84F, offset: 0x95E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x6AF64, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x95EDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B4B4, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x95F2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x6B4D8, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x96032, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B4B4, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x960C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1A48, symBinAddr: 0x88608, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x9662A, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x6B52C, symSize: 0x4C } + - { offsetInCU: 0x5CF, offset: 0x96642, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x6B578, symSize: 0x4C } + - { offsetInCU: 0x72F, offset: 0x967A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1624, symBinAddr: 0x6CAB0, symSize: 0x8 } + - { offsetInCU: 0x743, offset: 0x967B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x162C, symBinAddr: 0x6CAB8, symSize: 0x8 } + - { offsetInCU: 0x757, offset: 0x967CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1634, symBinAddr: 0x6CAC0, symSize: 0x8 } + - { offsetInCU: 0x76B, offset: 0x967DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x163C, symBinAddr: 0x6CAC8, symSize: 0x8 } + - { offsetInCU: 0x77F, offset: 0x967F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1644, symBinAddr: 0x6CAD0, symSize: 0x8 } + - { offsetInCU: 0x793, offset: 0x96806, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x16A8, symBinAddr: 0x6CAD8, symSize: 0x20 } + - { offsetInCU: 0x7A7, offset: 0x9681A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOb', symObjAddr: 0x16C8, symBinAddr: 0x6CAF8, symSize: 0x48 } + - { offsetInCU: 0x7BB, offset: 0x9682E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOd', symObjAddr: 0x1710, symBinAddr: 0x6CB40, symSize: 0x48 } + - { offsetInCU: 0x7CF, offset: 0x96842, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1894, symBinAddr: 0x6CCB4, symSize: 0x8 } + - { offsetInCU: 0x7E3, offset: 0x96856, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x189C, symBinAddr: 0x6CCBC, symSize: 0x10 } + - { offsetInCU: 0x7F7, offset: 0x9686A, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18AC, symBinAddr: 0x6CCCC, symSize: 0x8 } + - { offsetInCU: 0x840, offset: 0x968B3, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6CCD4, symSize: 0x10 } + - { offsetInCU: 0x85C, offset: 0x968CF, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6CCD4, symSize: 0x10 } + - { offsetInCU: 0x870, offset: 0x968E3, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6CCD4, symSize: 0x10 } + - { offsetInCU: 0x8AF, offset: 0x96922, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x6B4F8, symSize: 0x4 } + - { offsetInCU: 0x8CB, offset: 0x9693E, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x6B4FC, symSize: 0x4 } + - { offsetInCU: 0x8E7, offset: 0x9695A, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x6B500, symSize: 0x4 } + - { offsetInCU: 0x903, offset: 0x96976, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x6B504, symSize: 0x4 } + - { offsetInCU: 0x91F, offset: 0x96992, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x6B508, symSize: 0x4 } + - { offsetInCU: 0x93B, offset: 0x969AE, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x6B50C, symSize: 0x4 } + - { offsetInCU: 0x957, offset: 0x969CA, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x6B510, symSize: 0x4 } + - { offsetInCU: 0x973, offset: 0x969E6, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x6B514, symSize: 0xC } + - { offsetInCU: 0x98F, offset: 0x96A02, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x6B520, symSize: 0xC } + - { offsetInCU: 0xBEF, offset: 0x96C62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xCC, symBinAddr: 0x6B5C4, symSize: 0x40 } + - { offsetInCU: 0xC9C, offset: 0x96D0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x10C, symBinAddr: 0x6B604, symSize: 0x458 } + - { offsetInCU: 0xF01, offset: 0x96F74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x5C8, symBinAddr: 0x6BA80, symSize: 0x5C } + - { offsetInCU: 0xF67, offset: 0x96FDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x624, symBinAddr: 0x6BADC, symSize: 0x5C } + - { offsetInCU: 0xFCD, offset: 0x97040, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x680, symBinAddr: 0x6BB38, symSize: 0x5C } + - { offsetInCU: 0x1033, offset: 0x970A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x6DC, symBinAddr: 0x6BB94, symSize: 0x5C } + - { offsetInCU: 0x1099, offset: 0x9710C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x738, symBinAddr: 0x6BBF0, symSize: 0x5C } + - { offsetInCU: 0x1164, offset: 0x971D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x794, symBinAddr: 0x6BC4C, symSize: 0x44 } + - { offsetInCU: 0x11CE, offset: 0x97241, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7D8, symBinAddr: 0x6BC90, symSize: 0x10 } + - { offsetInCU: 0x1200, offset: 0x97273, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7D8, symBinAddr: 0x6BC90, symSize: 0x10 } + - { offsetInCU: 0x122F, offset: 0x972A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x7E8, symBinAddr: 0x6BCA0, symSize: 0x54 } + - { offsetInCU: 0x12A6, offset: 0x97319, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x94C, symBinAddr: 0x6BE04, symSize: 0x34 } + - { offsetInCU: 0x1309, offset: 0x9737C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x980, symBinAddr: 0x6BE38, symSize: 0x54 } + - { offsetInCU: 0x1380, offset: 0x973F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0x9D4, symBinAddr: 0x6BE8C, symSize: 0x4C } + - { offsetInCU: 0x140C, offset: 0x9747F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA20, symBinAddr: 0x6BED8, symSize: 0x84 } + - { offsetInCU: 0x14A7, offset: 0x9751A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xAA4, symBinAddr: 0x6BF5C, symSize: 0x74 } + - { offsetInCU: 0x1556, offset: 0x975C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xB18, symBinAddr: 0x6BFD0, symSize: 0x84 } + - { offsetInCU: 0x15F1, offset: 0x97664, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xB9C, symBinAddr: 0x6C054, symSize: 0x38 } + - { offsetInCU: 0x166E, offset: 0x976E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBD4, symBinAddr: 0x6C08C, symSize: 0x38 } + - { offsetInCU: 0x16EB, offset: 0x9775E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC0C, symBinAddr: 0x6C0C4, symSize: 0x38 } + - { offsetInCU: 0x176B, offset: 0x977DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC44, symBinAddr: 0x6C0FC, symSize: 0x38 } + - { offsetInCU: 0x17EB, offset: 0x9785E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC7C, symBinAddr: 0x6C134, symSize: 0x38 } + - { offsetInCU: 0x186B, offset: 0x978DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCB4, symBinAddr: 0x6C16C, symSize: 0x38 } + - { offsetInCU: 0x18EB, offset: 0x9795E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCEC, symBinAddr: 0x6C1A4, symSize: 0x38 } + - { offsetInCU: 0x196B, offset: 0x979DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xD24, symBinAddr: 0x6C1DC, symSize: 0x38 } + - { offsetInCU: 0x19CB, offset: 0x97A3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xD5C, symBinAddr: 0x6C214, symSize: 0x44 } + - { offsetInCU: 0x1A62, offset: 0x97AD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xDA0, symBinAddr: 0x6C258, symSize: 0x13C } + - { offsetInCU: 0x1B33, offset: 0x97BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xEDC, symBinAddr: 0x6C394, symSize: 0xAC } + - { offsetInCU: 0x1C05, offset: 0x97C78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0xF88, symBinAddr: 0x6C440, symSize: 0x78 } + - { offsetInCU: 0x1C9B, offset: 0x97D0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1000, symBinAddr: 0x6C4B8, symSize: 0x84 } + - { offsetInCU: 0x1CBE, offset: 0x97D31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1084, symBinAddr: 0x6C53C, symSize: 0x20 } + - { offsetInCU: 0x1D03, offset: 0x97D76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x10D0, symBinAddr: 0x6C55C, symSize: 0x254 } + - { offsetInCU: 0x1DFE, offset: 0x97E71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1324, symBinAddr: 0x6C7B0, symSize: 0x300 } ... diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket index 25d74e0..f43473a 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml index 6f8f6b9..67eb660 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphoneos.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml @@ -2,684 +2,684 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket' relocations: - - { offsetInCU: 0x34, offset: 0x531A5, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x21278, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x531DA, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x212B0, symSize: 0x0 } - - { offsetInCU: 0x41, offset: 0x53231, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x10AB8, symBinAddr: 0x284F8, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x53251, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x10AC0, symBinAddr: 0x28500, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x53267, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x10AC8, symBinAddr: 0x28508, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x5327D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x10AD0, symBinAddr: 0x28510, symSize: 0x0 } - - { offsetInCU: 0xA3, offset: 0x53293, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x10AD8, symBinAddr: 0x28518, symSize: 0x0 } - - { offsetInCU: 0xB9, offset: 0x532A9, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x10AE0, symBinAddr: 0x28520, symSize: 0x0 } - - { offsetInCU: 0xCF, offset: 0x532BF, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x10AE8, symBinAddr: 0x28528, symSize: 0x0 } - - { offsetInCU: 0xE5, offset: 0x532D5, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x10AF0, symBinAddr: 0x28530, symSize: 0x0 } - - { offsetInCU: 0xFB, offset: 0x532EB, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x10AF8, symBinAddr: 0x28538, symSize: 0x0 } - - { offsetInCU: 0x111, offset: 0x53301, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x10B00, symBinAddr: 0x28540, symSize: 0x0 } - - { offsetInCU: 0x127, offset: 0x53317, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x10B08, symBinAddr: 0x28548, symSize: 0x0 } - - { offsetInCU: 0x13D, offset: 0x5332D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x10B10, symBinAddr: 0x28550, symSize: 0x0 } - - { offsetInCU: 0x153, offset: 0x53343, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x10B18, symBinAddr: 0x28558, symSize: 0x0 } - - { offsetInCU: 0x16B, offset: 0x5335B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xAB30, symBinAddr: 0xEB30, symSize: 0x4F0 } - - { offsetInCU: 0x48C, offset: 0x5367C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xCD48, symBinAddr: 0x10D48, symSize: 0x8C } - - { offsetInCU: 0x4B4, offset: 0x536A4, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x56128, symBinAddr: 0x2E930, symSize: 0x0 } - - { offsetInCU: 0x51C, offset: 0x5370C, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x56140, symBinAddr: 0x2E948, symSize: 0x0 } - - { offsetInCU: 0x537, offset: 0x53727, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x56130, symBinAddr: 0x2E938, symSize: 0x0 } - - { offsetInCU: 0x554, offset: 0x53744, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x56138, symBinAddr: 0x2E940, symSize: 0x0 } - - { offsetInCU: 0xB90, offset: 0x53D80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x18 } - - { offsetInCU: 0xBC7, offset: 0x53DB7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0x18, symBinAddr: 0x4018, symSize: 0x60 } - - { offsetInCU: 0xC0E, offset: 0x53DFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x78, symBinAddr: 0x4078, symSize: 0x4C } - - { offsetInCU: 0xC41, offset: 0x53E31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xC4, symBinAddr: 0x40C4, symSize: 0x60 } - - { offsetInCU: 0xCF9, offset: 0x53EE9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x124, symBinAddr: 0x4124, symSize: 0xC } - - { offsetInCU: 0xD31, offset: 0x53F21, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x130, symBinAddr: 0x4130, symSize: 0x8 } - - { offsetInCU: 0xD69, offset: 0x53F59, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x138, symBinAddr: 0x4138, symSize: 0x34 } - - { offsetInCU: 0xDBF, offset: 0x53FAF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x16C, symBinAddr: 0x416C, symSize: 0x24 } - - { offsetInCU: 0xE00, offset: 0x53FF0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x190, symBinAddr: 0x4190, symSize: 0x14 } - - { offsetInCU: 0xE38, offset: 0x54028, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x1A4, symBinAddr: 0x41A4, symSize: 0x8 } - - { offsetInCU: 0xE70, offset: 0x54060, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x1AC, symBinAddr: 0x41AC, symSize: 0x34 } - - { offsetInCU: 0xEC6, offset: 0x540B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1E0, symBinAddr: 0x41E0, symSize: 0x10 } - - { offsetInCU: 0xF07, offset: 0x540F7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1F0, symBinAddr: 0x41F0, symSize: 0xC } - - { offsetInCU: 0xF39, offset: 0x54129, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x1FC, symBinAddr: 0x41FC, symSize: 0x18 } - - { offsetInCU: 0xF71, offset: 0x54161, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x214, symBinAddr: 0x4214, symSize: 0x144 } - - { offsetInCU: 0x1020, offset: 0x54210, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x358, symBinAddr: 0x4358, symSize: 0x50 } - - { offsetInCU: 0x10B4, offset: 0x542A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x3A8, symBinAddr: 0x43A8, symSize: 0x88 } - - { offsetInCU: 0x118C, offset: 0x5437C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x430, symBinAddr: 0x4430, symSize: 0x2C } - - { offsetInCU: 0x11F1, offset: 0x543E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x45C, symBinAddr: 0x445C, symSize: 0x6C } - - { offsetInCU: 0x12B8, offset: 0x544A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x4C8, symBinAddr: 0x44C8, symSize: 0x234 } - - { offsetInCU: 0x144A, offset: 0x5463A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x6FC, symBinAddr: 0x46FC, symSize: 0xB0 } - - { offsetInCU: 0x1504, offset: 0x546F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7AC, symBinAddr: 0x47AC, symSize: 0x30 } - - { offsetInCU: 0x1538, offset: 0x54728, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7DC, symBinAddr: 0x47DC, symSize: 0x18 } - - { offsetInCU: 0x1570, offset: 0x54760, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x7F4, symBinAddr: 0x47F4, symSize: 0x90 } - - { offsetInCU: 0x15DB, offset: 0x547CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x884, symBinAddr: 0x4884, symSize: 0xC } - - { offsetInCU: 0x160F, offset: 0x547FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x890, symBinAddr: 0x4890, symSize: 0x18 } - - { offsetInCU: 0x1647, offset: 0x54837, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8A8, symBinAddr: 0x48A8, symSize: 0x78 } - - { offsetInCU: 0x1690, offset: 0x54880, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x920, symBinAddr: 0x4920, symSize: 0xC } - - { offsetInCU: 0x16C4, offset: 0x548B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x92C, symBinAddr: 0x492C, symSize: 0x10 } - - { offsetInCU: 0x16FA, offset: 0x548EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x93C, symBinAddr: 0x493C, symSize: 0x10 } - - { offsetInCU: 0x1743, offset: 0x54933, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x94C, symBinAddr: 0x494C, symSize: 0x8 } - - { offsetInCU: 0x1797, offset: 0x54987, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x954, symBinAddr: 0x4954, symSize: 0x1B0 } - - { offsetInCU: 0x189B, offset: 0x54A8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB04, symBinAddr: 0x4B04, symSize: 0xC8 } - - { offsetInCU: 0x1920, offset: 0x54B10, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xBCC, symBinAddr: 0x4BCC, symSize: 0xC } - - { offsetInCU: 0x1962, offset: 0x54B52, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xBD8, symBinAddr: 0x4BD8, symSize: 0x8 } - - { offsetInCU: 0x1989, offset: 0x54B79, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xBE0, symBinAddr: 0x4BE0, symSize: 0x8 } - - { offsetInCU: 0x19A8, offset: 0x54B98, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xBE8, symBinAddr: 0x4BE8, symSize: 0x14 } - - { offsetInCU: 0x1A0F, offset: 0x54BFF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xBFC, symBinAddr: 0x4BFC, symSize: 0xC } - - { offsetInCU: 0x1A83, offset: 0x54C73, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xC08, symBinAddr: 0x4C08, symSize: 0x1C0 } - - { offsetInCU: 0x1B6A, offset: 0x54D5A, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xDC8, symBinAddr: 0x4DC8, symSize: 0x10 } - - { offsetInCU: 0x1B8F, offset: 0x54D7F, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xDD8, symBinAddr: 0x4DD8, symSize: 0x8 } - - { offsetInCU: 0x1BAE, offset: 0x54D9E, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xDE0, symBinAddr: 0x4DE0, symSize: 0x21C } - - { offsetInCU: 0x1D01, offset: 0x54EF1, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0xFFC, symBinAddr: 0x4FFC, symSize: 0x44 } - - { offsetInCU: 0x1D2A, offset: 0x54F1A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1040, symBinAddr: 0x5040, symSize: 0x38 } - - { offsetInCU: 0x1D49, offset: 0x54F39, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x1078, symBinAddr: 0x5078, symSize: 0xD0 } - - { offsetInCU: 0x1DC9, offset: 0x54FB9, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x1148, symBinAddr: 0x5148, symSize: 0x3C } - - { offsetInCU: 0x1E1C, offset: 0x5500C, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x1184, symBinAddr: 0x5184, symSize: 0x34 } - - { offsetInCU: 0x1E45, offset: 0x55035, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x11B8, symBinAddr: 0x51B8, symSize: 0x2C } - - { offsetInCU: 0x1E64, offset: 0x55054, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x11E4, symBinAddr: 0x51E4, symSize: 0xCC } - - { offsetInCU: 0x1F1C, offset: 0x5510C, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x12B0, symBinAddr: 0x52B0, symSize: 0xC } - - { offsetInCU: 0x1F6F, offset: 0x5515F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x12BC, symBinAddr: 0x52BC, symSize: 0x28 } - - { offsetInCU: 0x1F98, offset: 0x55188, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x12E4, symBinAddr: 0x52E4, symSize: 0x28 } - - { offsetInCU: 0x1FB7, offset: 0x551A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x130C, symBinAddr: 0x530C, symSize: 0x8 } - - { offsetInCU: 0x1FF8, offset: 0x551E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x8 } - - { offsetInCU: 0x2039, offset: 0x55229, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x131C, symBinAddr: 0x531C, symSize: 0xD0 } - - { offsetInCU: 0x20B9, offset: 0x552A9, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x13EC, symBinAddr: 0x53EC, symSize: 0x14 } - - { offsetInCU: 0x210C, offset: 0x552FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x1400, symBinAddr: 0x5400, symSize: 0xCC } - - { offsetInCU: 0x21B1, offset: 0x553A1, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x14CC, symBinAddr: 0x54CC, symSize: 0xC } - - { offsetInCU: 0x2204, offset: 0x553F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x14D8, symBinAddr: 0x54D8, symSize: 0x8 } - - { offsetInCU: 0x2245, offset: 0x55435, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x14E0, symBinAddr: 0x54E0, symSize: 0x8 } - - { offsetInCU: 0x2286, offset: 0x55476, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x14E8, symBinAddr: 0x54E8, symSize: 0x138 } - - { offsetInCU: 0x233B, offset: 0x5552B, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x1620, symBinAddr: 0x5620, symSize: 0x54 } - - { offsetInCU: 0x239F, offset: 0x5558F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1674, symBinAddr: 0x5674, symSize: 0x10C } - - { offsetInCU: 0x2455, offset: 0x55645, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1780, symBinAddr: 0x5780, symSize: 0x34 } - - { offsetInCU: 0x24B9, offset: 0x556A9, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x17B4, symBinAddr: 0x57B4, symSize: 0x30 } - - { offsetInCU: 0x24E2, offset: 0x556D2, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x17E4, symBinAddr: 0x57E4, symSize: 0x30 } - - { offsetInCU: 0x2501, offset: 0x556F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x1814, symBinAddr: 0x5814, symSize: 0x8 } - - { offsetInCU: 0x2551, offset: 0x55741, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x181C, symBinAddr: 0x581C, symSize: 0x8 } - - { offsetInCU: 0x25A1, offset: 0x55791, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x1824, symBinAddr: 0x5824, symSize: 0xB0 } - - { offsetInCU: 0x2621, offset: 0x55811, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x18D4, symBinAddr: 0x58D4, symSize: 0x1C } - - { offsetInCU: 0x267C, offset: 0x5586C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x18F0, symBinAddr: 0x58F0, symSize: 0x94 } - - { offsetInCU: 0x2706, offset: 0x558F6, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1984, symBinAddr: 0x5984, symSize: 0x20 } - - { offsetInCU: 0x275B, offset: 0x5594B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x19A4, symBinAddr: 0x59A4, symSize: 0xB0 } - - { offsetInCU: 0x27DB, offset: 0x559CB, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1A54, symBinAddr: 0x5A54, symSize: 0x1C } - - { offsetInCU: 0x2836, offset: 0x55A26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1A70, symBinAddr: 0x5A70, symSize: 0x94 } - - { offsetInCU: 0x28C0, offset: 0x55AB0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1B04, symBinAddr: 0x5B04, symSize: 0x24 } - - { offsetInCU: 0x2915, offset: 0x55B05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1B28, symBinAddr: 0x5B28, symSize: 0xB0 } - - { offsetInCU: 0x2995, offset: 0x55B85, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1BD8, symBinAddr: 0x5BD8, symSize: 0x1C } - - { offsetInCU: 0x29F0, offset: 0x55BE0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1BF4, symBinAddr: 0x5BF4, symSize: 0x94 } - - { offsetInCU: 0x2A7A, offset: 0x55C6A, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1C88, symBinAddr: 0x5C88, symSize: 0x24 } - - { offsetInCU: 0x2ACF, offset: 0x55CBF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1CAC, symBinAddr: 0x5CAC, symSize: 0xDC } - - { offsetInCU: 0x2B65, offset: 0x55D55, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1D88, symBinAddr: 0x5D88, symSize: 0x14 } - - { offsetInCU: 0x2BC0, offset: 0x55DB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1D9C, symBinAddr: 0x5D9C, symSize: 0x94 } - - { offsetInCU: 0x2C4E, offset: 0x55E3E, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1E30, symBinAddr: 0x5E30, symSize: 0x10 } - - { offsetInCU: 0x2CA3, offset: 0x55E93, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1E40, symBinAddr: 0x5E40, symSize: 0xFC } - - { offsetInCU: 0x2D39, offset: 0x55F29, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x1F3C, symBinAddr: 0x5F3C, symSize: 0x14 } - - { offsetInCU: 0x2D8C, offset: 0x55F7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x1F50, symBinAddr: 0x5F50, symSize: 0xBC } - - { offsetInCU: 0x2E1A, offset: 0x5600A, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x200C, symBinAddr: 0x600C, symSize: 0x1C } - - { offsetInCU: 0x2E6D, offset: 0x5605D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x2028, symBinAddr: 0x6028, symSize: 0x10 } - - { offsetInCU: 0x2EC5, offset: 0x560B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x2038, symBinAddr: 0x6038, symSize: 0x210 } - - { offsetInCU: 0x2FC7, offset: 0x561B7, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x2248, symBinAddr: 0x6248, symSize: 0x1E8 } - - { offsetInCU: 0x32A7, offset: 0x56497, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.117', symObjAddr: 0x2430, symBinAddr: 0x6430, symSize: 0x4DC } - - { offsetInCU: 0x367F, offset: 0x5686F, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x290C, symBinAddr: 0x690C, symSize: 0x7C } - - { offsetInCU: 0x3742, offset: 0x56932, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x2988, symBinAddr: 0x6988, symSize: 0x30 } - - { offsetInCU: 0x376B, offset: 0x5695B, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x29B8, symBinAddr: 0x69B8, symSize: 0x28 } - - { offsetInCU: 0x378A, offset: 0x5697A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.132', symObjAddr: 0x29E0, symBinAddr: 0x69E0, symSize: 0x8 } - - { offsetInCU: 0x37D6, offset: 0x569C6, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.134', symObjAddr: 0x29E8, symBinAddr: 0x69E8, symSize: 0x7C } - - { offsetInCU: 0x3886, offset: 0x56A76, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2A64, symBinAddr: 0x6A64, symSize: 0x8 } - - { offsetInCU: 0x38D2, offset: 0x56AC2, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2A6C, symBinAddr: 0x6A6C, symSize: 0x5C } - - { offsetInCU: 0x38FB, offset: 0x56AEB, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2AC8, symBinAddr: 0x6AC8, symSize: 0x48 } - - { offsetInCU: 0x391A, offset: 0x56B0A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2B10, symBinAddr: 0x6B10, symSize: 0x1F0 } - - { offsetInCU: 0x39FA, offset: 0x56BEA, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2D00, symBinAddr: 0x6D00, symSize: 0x1E8 } - - { offsetInCU: 0x3C0B, offset: 0x56DFB, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x2EE8, symBinAddr: 0x6EE8, symSize: 0x360 } - - { offsetInCU: 0x3E17, offset: 0x57007, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x3248, symBinAddr: 0x7248, symSize: 0x78 } - - { offsetInCU: 0x3EC7, offset: 0x570B7, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x32C0, symBinAddr: 0x72C0, symSize: 0x8 } - - { offsetInCU: 0x3F13, offset: 0x57103, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x32C8, symBinAddr: 0x72C8, symSize: 0x254 } - - { offsetInCU: 0x4166, offset: 0x57356, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x351C, symBinAddr: 0x751C, symSize: 0x148 } - - { offsetInCU: 0x423A, offset: 0x5742A, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3664, symBinAddr: 0x7664, symSize: 0x34 } - - { offsetInCU: 0x4289, offset: 0x57479, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x3698, symBinAddr: 0x7698, symSize: 0x1D4 } - - { offsetInCU: 0x43A2, offset: 0x57592, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x386C, symBinAddr: 0x786C, symSize: 0x12C } - - { offsetInCU: 0x4489, offset: 0x57679, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x3998, symBinAddr: 0x7998, symSize: 0x8 } - - { offsetInCU: 0x44EC, offset: 0x576DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x39A0, symBinAddr: 0x79A0, symSize: 0xC } - - { offsetInCU: 0x4561, offset: 0x57751, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x39AC, symBinAddr: 0x79AC, symSize: 0x200 } - - { offsetInCU: 0x4685, offset: 0x57875, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x3BAC, symBinAddr: 0x7BAC, symSize: 0x1C4 } - - { offsetInCU: 0x47E8, offset: 0x579D8, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x3D70, symBinAddr: 0x7D70, symSize: 0x2D4 } - - { offsetInCU: 0x493C, offset: 0x57B2C, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x4044, symBinAddr: 0x8044, symSize: 0x34 } - - { offsetInCU: 0x499C, offset: 0x57B8C, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.153', symObjAddr: 0x4078, symBinAddr: 0x8078, symSize: 0x38 } - - { offsetInCU: 0x4A0D, offset: 0x57BFD, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x40B0, symBinAddr: 0x80B0, symSize: 0x38 } - - { offsetInCU: 0x4A36, offset: 0x57C26, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x40E8, symBinAddr: 0x80E8, symSize: 0x30 } - - { offsetInCU: 0x4A55, offset: 0x57C45, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x4118, symBinAddr: 0x8118, symSize: 0x54 } - - { offsetInCU: 0x4A7E, offset: 0x57C6E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x416C, symBinAddr: 0x816C, symSize: 0x10 } - - { offsetInCU: 0x4AD4, offset: 0x57CC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x417C, symBinAddr: 0x817C, symSize: 0xC } - - { offsetInCU: 0x4B3A, offset: 0x57D2A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x4188, symBinAddr: 0x8188, symSize: 0x208 } - - { offsetInCU: 0x4C4D, offset: 0x57E3D, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4390, symBinAddr: 0x8390, symSize: 0x1C8 } - - { offsetInCU: 0x4DA3, offset: 0x57F93, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x4558, symBinAddr: 0x8558, symSize: 0x194 } - - { offsetInCU: 0x4E83, offset: 0x58073, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x46EC, symBinAddr: 0x86EC, symSize: 0x12C } - - { offsetInCU: 0x4F49, offset: 0x58139, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4818, symBinAddr: 0x8818, symSize: 0x4C } - - { offsetInCU: 0x4F72, offset: 0x58162, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4864, symBinAddr: 0x8864, symSize: 0x40 } - - { offsetInCU: 0x4F91, offset: 0x58181, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x48A4, symBinAddr: 0x88A4, symSize: 0x12C } - - { offsetInCU: 0x503C, offset: 0x5822C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x49D0, symBinAddr: 0x89D0, symSize: 0xF0 } - - { offsetInCU: 0x510A, offset: 0x582FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x4AC0, symBinAddr: 0x8AC0, symSize: 0x58 } - - { offsetInCU: 0x5160, offset: 0x58350, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x4B18, symBinAddr: 0x8B18, symSize: 0xFC } - - { offsetInCU: 0x526B, offset: 0x5845B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x4C14, symBinAddr: 0x8C14, symSize: 0xE4 } - - { offsetInCU: 0x534E, offset: 0x5853E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x4CF8, symBinAddr: 0x8CF8, symSize: 0x114 } - - { offsetInCU: 0x540F, offset: 0x585FF, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x4E0C, symBinAddr: 0x8E0C, symSize: 0xE4 } - - { offsetInCU: 0x5532, offset: 0x58722, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x4EF0, symBinAddr: 0x8EF0, symSize: 0xD4 } - - { offsetInCU: 0x55E9, offset: 0x587D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x4FC4, symBinAddr: 0x8FC4, symSize: 0x7C } - - { offsetInCU: 0x5644, offset: 0x58834, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x5040, symBinAddr: 0x9040, symSize: 0x24 } - - { offsetInCU: 0x5687, offset: 0x58877, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5064, symBinAddr: 0x9064, symSize: 0x1DC } - - { offsetInCU: 0x57BD, offset: 0x589AD, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5240, symBinAddr: 0x9240, symSize: 0x10 } - - { offsetInCU: 0x5832, offset: 0x58A22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5250, symBinAddr: 0x9250, symSize: 0x158 } - - { offsetInCU: 0x59A0, offset: 0x58B90, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x53A8, symBinAddr: 0x93A8, symSize: 0x9C } - - { offsetInCU: 0x5A9C, offset: 0x58C8C, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0xE6E0, symBinAddr: 0x1E34C, symSize: 0xC0 } - - { offsetInCU: 0x5AD5, offset: 0x58CC5, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5444, symBinAddr: 0x9444, symSize: 0x34 } - - { offsetInCU: 0x5B28, offset: 0x58D18, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x5478, symBinAddr: 0x9478, symSize: 0x34 } - - { offsetInCU: 0x5B8C, offset: 0x58D7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x54AC, symBinAddr: 0x94AC, symSize: 0x310 } - - { offsetInCU: 0x5D1C, offset: 0x58F0C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x57BC, symBinAddr: 0x97BC, symSize: 0x84 } - - { offsetInCU: 0x5D5E, offset: 0x58F4E, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x5840, symBinAddr: 0x9840, symSize: 0x90 } - - { offsetInCU: 0x5DB1, offset: 0x58FA1, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x58D0, symBinAddr: 0x98D0, symSize: 0xA0 } - - { offsetInCU: 0x5E54, offset: 0x59044, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x5970, symBinAddr: 0x9970, symSize: 0x34 } - - { offsetInCU: 0x5E9E, offset: 0x5908E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x59A4, symBinAddr: 0x99A4, symSize: 0x10 } - - { offsetInCU: 0x5EC7, offset: 0x590B7, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x59B4, symBinAddr: 0x99B4, symSize: 0x44 } - - { offsetInCU: 0x5EF0, offset: 0x590E0, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x59F8, symBinAddr: 0x99F8, symSize: 0x38 } - - { offsetInCU: 0x5F0F, offset: 0x590FF, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.179', symObjAddr: 0x5A30, symBinAddr: 0x9A30, symSize: 0x9C } - - { offsetInCU: 0x5FA1, offset: 0x59191, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.180', symObjAddr: 0x5ACC, symBinAddr: 0x9ACC, symSize: 0x34 } - - { offsetInCU: 0x5FEB, offset: 0x591DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x5B00, symBinAddr: 0x9B00, symSize: 0x18 } - - { offsetInCU: 0x603D, offset: 0x5922D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x5B18, symBinAddr: 0x9B18, symSize: 0x108 } - - { offsetInCU: 0x6141, offset: 0x59331, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x5C20, symBinAddr: 0x9C20, symSize: 0x48 } - - { offsetInCU: 0x619F, offset: 0x5938F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x5C68, symBinAddr: 0x9C68, symSize: 0xC } - - { offsetInCU: 0x61C8, offset: 0x593B8, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x5C74, symBinAddr: 0x9C74, symSize: 0x8 } - - { offsetInCU: 0x61E7, offset: 0x593D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x5C7C, symBinAddr: 0x9C7C, symSize: 0x68 } - - { offsetInCU: 0x6238, offset: 0x59428, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x5CE4, symBinAddr: 0x9CE4, symSize: 0x44 } - - { offsetInCU: 0x626C, offset: 0x5945C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x5D28, symBinAddr: 0x9D28, symSize: 0x324 } - - { offsetInCU: 0x64C9, offset: 0x596B9, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x604C, symBinAddr: 0xA04C, symSize: 0x34 } - - { offsetInCU: 0x6529, offset: 0x59719, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6080, symBinAddr: 0xA080, symSize: 0x90 } - - { offsetInCU: 0x65A6, offset: 0x59796, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6110, symBinAddr: 0xA110, symSize: 0x3C } - - { offsetInCU: 0x65E8, offset: 0x597D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x614C, symBinAddr: 0xA14C, symSize: 0x58 } - - { offsetInCU: 0x6632, offset: 0x59822, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x61A4, symBinAddr: 0xA1A4, symSize: 0x48 } - - { offsetInCU: 0x6674, offset: 0x59864, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x61EC, symBinAddr: 0xA1EC, symSize: 0x58 } - - { offsetInCU: 0x66BE, offset: 0x598AE, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6244, symBinAddr: 0xA244, symSize: 0x48 } - - { offsetInCU: 0x6700, offset: 0x598F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x628C, symBinAddr: 0xA28C, symSize: 0x58 } - - { offsetInCU: 0x674A, offset: 0x5993A, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x62E4, symBinAddr: 0xA2E4, symSize: 0x48 } - - { offsetInCU: 0x678C, offset: 0x5997C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x632C, symBinAddr: 0xA32C, symSize: 0x70 } - - { offsetInCU: 0x67D1, offset: 0x599C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x639C, symBinAddr: 0xA39C, symSize: 0xD4 } - - { offsetInCU: 0x6827, offset: 0x59A17, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6470, symBinAddr: 0xA470, symSize: 0xD4 } - - { offsetInCU: 0x687D, offset: 0x59A6D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6544, symBinAddr: 0xA544, symSize: 0xF4 } - - { offsetInCU: 0x690E, offset: 0x59AFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x6638, symBinAddr: 0xA638, symSize: 0x118 } - - { offsetInCU: 0x6986, offset: 0x59B76, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x6750, symBinAddr: 0xA750, symSize: 0x100 } - - { offsetInCU: 0x69DC, offset: 0x59BCC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x6850, symBinAddr: 0xA850, symSize: 0xC0 } - - { offsetInCU: 0x6A43, offset: 0x59C33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x6910, symBinAddr: 0xA910, symSize: 0x10C } - - { offsetInCU: 0x6A99, offset: 0x59C89, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x6A1C, symBinAddr: 0xAA1C, symSize: 0x10C } - - { offsetInCU: 0x6AEF, offset: 0x59CDF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x6B28, symBinAddr: 0xAB28, symSize: 0x10C } - - { offsetInCU: 0x6B45, offset: 0x59D35, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x6C34, symBinAddr: 0xAC34, symSize: 0x10C } - - { offsetInCU: 0x6B9B, offset: 0x59D8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x6D40, symBinAddr: 0xAD40, symSize: 0x10C } - - { offsetInCU: 0x6BF1, offset: 0x59DE1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x6E4C, symBinAddr: 0xAE4C, symSize: 0xD4 } - - { offsetInCU: 0x6C47, offset: 0x59E37, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x6F20, symBinAddr: 0xAF20, symSize: 0xD8 } - - { offsetInCU: 0x6CDD, offset: 0x59ECD, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x6FF8, symBinAddr: 0xAFF8, symSize: 0x1C } - - { offsetInCU: 0x6D38, offset: 0x59F28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7014, symBinAddr: 0xB014, symSize: 0xD8 } - - { offsetInCU: 0x6DCE, offset: 0x59FBE, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x70EC, symBinAddr: 0xB0EC, symSize: 0x18 } - - { offsetInCU: 0x6E29, offset: 0x5A019, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7104, symBinAddr: 0xB104, symSize: 0x10C } - - { offsetInCU: 0x6EA9, offset: 0x5A099, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7210, symBinAddr: 0xB210, symSize: 0x78 } - - { offsetInCU: 0x6EFC, offset: 0x5A0EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x7288, symBinAddr: 0xB288, symSize: 0xE4 } - - { offsetInCU: 0x6F7C, offset: 0x5A16C, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x736C, symBinAddr: 0xB36C, symSize: 0x50 } - - { offsetInCU: 0x6FCF, offset: 0x5A1BF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x73BC, symBinAddr: 0xB3BC, symSize: 0xEC } - - { offsetInCU: 0x704F, offset: 0x5A23F, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x74A8, symBinAddr: 0xB4A8, symSize: 0x5C } - - { offsetInCU: 0x70A2, offset: 0x5A292, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7504, symBinAddr: 0xB504, symSize: 0x10C } - - { offsetInCU: 0x7122, offset: 0x5A312, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x7610, symBinAddr: 0xB610, symSize: 0x78 } - - { offsetInCU: 0x7175, offset: 0x5A365, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x7688, symBinAddr: 0xB688, symSize: 0xE4 } - - { offsetInCU: 0x71F5, offset: 0x5A3E5, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x776C, symBinAddr: 0xB76C, symSize: 0x50 } - - { offsetInCU: 0x7248, offset: 0x5A438, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x77BC, symBinAddr: 0xB7BC, symSize: 0x30 } - - { offsetInCU: 0x7280, offset: 0x5A470, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x77EC, symBinAddr: 0xB7EC, symSize: 0x30 } - - { offsetInCU: 0x72B8, offset: 0x5A4A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x781C, symBinAddr: 0xB81C, symSize: 0x18 } - - { offsetInCU: 0x72F0, offset: 0x5A4E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x7834, symBinAddr: 0xB834, symSize: 0x18 } - - { offsetInCU: 0x7328, offset: 0x5A518, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x784C, symBinAddr: 0xB84C, symSize: 0x30 } - - { offsetInCU: 0x7360, offset: 0x5A550, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x787C, symBinAddr: 0xB87C, symSize: 0x30 } - - { offsetInCU: 0x7398, offset: 0x5A588, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x78AC, symBinAddr: 0xB8AC, symSize: 0x18 } - - { offsetInCU: 0x73D0, offset: 0x5A5C0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x78C4, symBinAddr: 0xB8C4, symSize: 0x18 } - - { offsetInCU: 0x7408, offset: 0x5A5F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x78DC, symBinAddr: 0xB8DC, symSize: 0x90 } - - { offsetInCU: 0x7497, offset: 0x5A687, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x796C, symBinAddr: 0xB96C, symSize: 0x64 } - - { offsetInCU: 0x7526, offset: 0x5A716, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x79D0, symBinAddr: 0xB9D0, symSize: 0x88 } - - { offsetInCU: 0x75B5, offset: 0x5A7A5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x7A58, symBinAddr: 0xBA58, symSize: 0x5C } - - { offsetInCU: 0x7644, offset: 0x5A834, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x7AB4, symBinAddr: 0xBAB4, symSize: 0x90 } - - { offsetInCU: 0x76D3, offset: 0x5A8C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x7B44, symBinAddr: 0xBB44, symSize: 0x90 } - - { offsetInCU: 0x7783, offset: 0x5A973, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x7BD4, symBinAddr: 0xBBD4, symSize: 0x64 } - - { offsetInCU: 0x7812, offset: 0x5AA02, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x7C38, symBinAddr: 0xBC38, symSize: 0x88 } - - { offsetInCU: 0x78A1, offset: 0x5AA91, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x7CC0, symBinAddr: 0xBCC0, symSize: 0x5C } - - { offsetInCU: 0x7930, offset: 0x5AB20, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x7D1C, symBinAddr: 0xBD1C, symSize: 0xFC } - - { offsetInCU: 0x79C6, offset: 0x5ABB6, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x7E18, symBinAddr: 0xBE18, symSize: 0x100 } - - { offsetInCU: 0x7AB3, offset: 0x5ACA3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x7F18, symBinAddr: 0xBF18, symSize: 0xFC } - - { offsetInCU: 0x7B49, offset: 0x5AD39, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8014, symBinAddr: 0xC014, symSize: 0x100 } - - { offsetInCU: 0x7C36, offset: 0x5AE26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8114, symBinAddr: 0xC114, symSize: 0xB4 } - - { offsetInCU: 0x7CB6, offset: 0x5AEA6, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x81C8, symBinAddr: 0xC1C8, symSize: 0x1C } - - { offsetInCU: 0x7D11, offset: 0x5AF01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x81E4, symBinAddr: 0xC1E4, symSize: 0xB4 } - - { offsetInCU: 0x7D91, offset: 0x5AF81, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x8298, symBinAddr: 0xC298, symSize: 0x1C } - - { offsetInCU: 0x7DEC, offset: 0x5AFDC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x82B4, symBinAddr: 0xC2B4, symSize: 0xAC } - - { offsetInCU: 0x7E6C, offset: 0x5B05C, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8360, symBinAddr: 0xC360, symSize: 0x18 } - - { offsetInCU: 0x7EC7, offset: 0x5B0B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x8378, symBinAddr: 0xC378, symSize: 0x3FC } - - { offsetInCU: 0x81CE, offset: 0x5B3BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x8774, symBinAddr: 0xC774, symSize: 0xDC } - - { offsetInCU: 0x8245, offset: 0x5B435, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x8850, symBinAddr: 0xC850, symSize: 0x1F0 } - - { offsetInCU: 0x835F, offset: 0x5B54F, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x8A40, symBinAddr: 0xCA40, symSize: 0x64 } - - { offsetInCU: 0x83CB, offset: 0x5B5BB, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x8AA4, symBinAddr: 0xCAA4, symSize: 0x54 } - - { offsetInCU: 0x8429, offset: 0x5B619, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x8AF8, symBinAddr: 0xCAF8, symSize: 0x24 } - - { offsetInCU: 0x8486, offset: 0x5B676, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x8B1C, symBinAddr: 0xCB1C, symSize: 0x10 } - - { offsetInCU: 0x84AF, offset: 0x5B69F, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x8B2C, symBinAddr: 0xCB2C, symSize: 0xC } - - { offsetInCU: 0x84CE, offset: 0x5B6BE, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.216', symObjAddr: 0x8B38, symBinAddr: 0xCB38, symSize: 0x24 } - - { offsetInCU: 0x852B, offset: 0x5B71B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x8B5C, symBinAddr: 0xCB5C, symSize: 0x18 } - - { offsetInCU: 0x8563, offset: 0x5B753, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x8B74, symBinAddr: 0xCB74, symSize: 0x18 } - - { offsetInCU: 0x859B, offset: 0x5B78B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x8B8C, symBinAddr: 0xCB8C, symSize: 0x38 } - - { offsetInCU: 0x85EC, offset: 0x5B7DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x8BC4, symBinAddr: 0xCBC4, symSize: 0x38 } - - { offsetInCU: 0x862E, offset: 0x5B81E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x8BFC, symBinAddr: 0xCBFC, symSize: 0x38 } - - { offsetInCU: 0x8670, offset: 0x5B860, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x8C34, symBinAddr: 0xCC34, symSize: 0x38 } - - { offsetInCU: 0x86B2, offset: 0x5B8A2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x8C6C, symBinAddr: 0xCC6C, symSize: 0x14 } - - { offsetInCU: 0x8705, offset: 0x5B8F5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8C80, symBinAddr: 0xCC80, symSize: 0xC } - - { offsetInCU: 0x8776, offset: 0x5B966, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8C8C, symBinAddr: 0xCC8C, symSize: 0xF0 } - - { offsetInCU: 0x882D, offset: 0x5BA1D, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x8D7C, symBinAddr: 0xCD7C, symSize: 0x54 } - - { offsetInCU: 0x8880, offset: 0x5BA70, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x8DD0, symBinAddr: 0xCDD0, symSize: 0x10 } - - { offsetInCU: 0x88E2, offset: 0x5BAD2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8DE0, symBinAddr: 0xCDE0, symSize: 0xF8 } - - { offsetInCU: 0x8999, offset: 0x5BB89, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x8ED8, symBinAddr: 0xCED8, symSize: 0x54 } - - { offsetInCU: 0x89EC, offset: 0x5BBDC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x8F2C, symBinAddr: 0xCF2C, symSize: 0x14 } - - { offsetInCU: 0x8A4E, offset: 0x5BC3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8F40, symBinAddr: 0xCF40, symSize: 0xC } - - { offsetInCU: 0x8ACE, offset: 0x5BCBE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x8F4C, symBinAddr: 0xCF4C, symSize: 0x14 } - - { offsetInCU: 0x8B41, offset: 0x5BD31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8F60, symBinAddr: 0xCF60, symSize: 0x12C } - - { offsetInCU: 0x8C09, offset: 0x5BDF9, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x908C, symBinAddr: 0xD08C, symSize: 0x54 } - - { offsetInCU: 0x8C5C, offset: 0x5BE4C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x90E0, symBinAddr: 0xD0E0, symSize: 0xE8 } - - { offsetInCU: 0x8D25, offset: 0x5BF15, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x91C8, symBinAddr: 0xD1C8, symSize: 0xD0 } - - { offsetInCU: 0x8DDC, offset: 0x5BFCC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x9298, symBinAddr: 0xD298, symSize: 0x130 } - - { offsetInCU: 0x8E10, offset: 0x5C000, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0x93C8, symBinAddr: 0xD3C8, symSize: 0x194 } - - { offsetInCU: 0x8FC0, offset: 0x5C1B0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0x955C, symBinAddr: 0xD55C, symSize: 0x70 } - - { offsetInCU: 0x9061, offset: 0x5C251, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0x95CC, symBinAddr: 0xD5CC, symSize: 0x944 } - - { offsetInCU: 0x942E, offset: 0x5C61E, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0x9F10, symBinAddr: 0xDF10, symSize: 0x34 } - - { offsetInCU: 0x94A3, offset: 0x5C693, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0x9F44, symBinAddr: 0xDF44, symSize: 0x200 } - - { offsetInCU: 0x95A5, offset: 0x5C795, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xA144, symBinAddr: 0xE144, symSize: 0x30 } - - { offsetInCU: 0x95F8, offset: 0x5C7E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xA174, symBinAddr: 0xE174, symSize: 0x188 } - - { offsetInCU: 0x9716, offset: 0x5C906, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xA2FC, symBinAddr: 0xE2FC, symSize: 0x38 } - - { offsetInCU: 0x978B, offset: 0x5C97B, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xA334, symBinAddr: 0xE334, symSize: 0x38 } - - { offsetInCU: 0x97B4, offset: 0x5C9A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xA36C, symBinAddr: 0xE36C, symSize: 0x3C } - - { offsetInCU: 0x97F6, offset: 0x5C9E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xA3A8, symBinAddr: 0xE3A8, symSize: 0x108 } - - { offsetInCU: 0x98DC, offset: 0x5CACC, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xA4B0, symBinAddr: 0xE4B0, symSize: 0x48 } - - { offsetInCU: 0x993A, offset: 0x5CB2A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xA4F8, symBinAddr: 0xE4F8, symSize: 0xF4 } - - { offsetInCU: 0x99B8, offset: 0x5CBA8, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xA5EC, symBinAddr: 0xE5EC, symSize: 0x90 } - - { offsetInCU: 0x9A52, offset: 0x5CC42, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xA67C, symBinAddr: 0xE67C, symSize: 0x34 } - - { offsetInCU: 0x9AA5, offset: 0x5CC95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xA6B0, symBinAddr: 0xE6B0, symSize: 0xB0 } - - { offsetInCU: 0x9B34, offset: 0x5CD24, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xA760, symBinAddr: 0xE760, symSize: 0xCC } - - { offsetInCU: 0x9BC9, offset: 0x5CDB9, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xA82C, symBinAddr: 0xE82C, symSize: 0x54 } - - { offsetInCU: 0x9C1C, offset: 0x5CE0C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xA880, symBinAddr: 0xE880, symSize: 0xE8 } - - { offsetInCU: 0x9CE5, offset: 0x5CED5, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xA968, symBinAddr: 0xE968, symSize: 0xCC } - - { offsetInCU: 0x9D9C, offset: 0x5CF8C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xAA34, symBinAddr: 0xEA34, symSize: 0xFC } - - { offsetInCU: 0x9E4D, offset: 0x5D03D, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xB020, symBinAddr: 0xF020, symSize: 0x30 } - - { offsetInCU: 0x9E8F, offset: 0x5D07F, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xB050, symBinAddr: 0xF050, symSize: 0x34 } - - { offsetInCU: 0x9F04, offset: 0x5D0F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xB084, symBinAddr: 0xF084, symSize: 0xC0 } - - { offsetInCU: 0x9F86, offset: 0x5D176, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xB144, symBinAddr: 0xF144, symSize: 0x34 } - - { offsetInCU: 0x9FEA, offset: 0x5D1DA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xB178, symBinAddr: 0xF178, symSize: 0x3C } - - { offsetInCU: 0xA02C, offset: 0x5D21C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xB1B4, symBinAddr: 0xF1B4, symSize: 0x108 } - - { offsetInCU: 0xA112, offset: 0x5D302, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xB2BC, symBinAddr: 0xF2BC, symSize: 0x48 } - - { offsetInCU: 0xA170, offset: 0x5D360, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xB304, symBinAddr: 0xF304, symSize: 0xF4 } - - { offsetInCU: 0xA1EE, offset: 0x5D3DE, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xB3F8, symBinAddr: 0xF3F8, symSize: 0x8C } - - { offsetInCU: 0xA288, offset: 0x5D478, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xB484, symBinAddr: 0xF484, symSize: 0x34 } - - { offsetInCU: 0xA2DB, offset: 0x5D4CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xB4B8, symBinAddr: 0xF4B8, symSize: 0xB0 } - - { offsetInCU: 0xA36A, offset: 0x5D55A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xB568, symBinAddr: 0xF568, symSize: 0xC8 } - - { offsetInCU: 0xA3DD, offset: 0x5D5CD, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xB630, symBinAddr: 0xF630, symSize: 0x78 } - - { offsetInCU: 0xA430, offset: 0x5D620, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xB6A8, symBinAddr: 0xF6A8, symSize: 0xFC } - - { offsetInCU: 0xA4BA, offset: 0x5D6AA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xB7A4, symBinAddr: 0xF7A4, symSize: 0x1BC } - - { offsetInCU: 0xA669, offset: 0x5D859, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xB960, symBinAddr: 0xF960, symSize: 0xCC } - - { offsetInCU: 0xA73F, offset: 0x5D92F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xBA2C, symBinAddr: 0xFA2C, symSize: 0x978 } - - { offsetInCU: 0xABE0, offset: 0x5DDD0, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xC3A4, symBinAddr: 0x103A4, symSize: 0xC } - - { offsetInCU: 0xAC3C, offset: 0x5DE2C, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xC3B0, symBinAddr: 0x103B0, symSize: 0xC } - - { offsetInCU: 0xAC98, offset: 0x5DE88, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xC3BC, symBinAddr: 0x103BC, symSize: 0x374 } - - { offsetInCU: 0xAE2B, offset: 0x5E01B, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xC730, symBinAddr: 0x10730, symSize: 0x30 } - - { offsetInCU: 0xAE7E, offset: 0x5E06E, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xC760, symBinAddr: 0x10760, symSize: 0xB0 } - - { offsetInCU: 0xAF19, offset: 0x5E109, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xC810, symBinAddr: 0x10810, symSize: 0x78 } - - { offsetInCU: 0xAFB8, offset: 0x5E1A8, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xC888, symBinAddr: 0x10888, symSize: 0x38 } - - { offsetInCU: 0xAFE1, offset: 0x5E1D1, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xC8C0, symBinAddr: 0x108C0, symSize: 0x2C } - - { offsetInCU: 0xB000, offset: 0x5E1F0, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xC8EC, symBinAddr: 0x108EC, symSize: 0x40 } - - { offsetInCU: 0xB029, offset: 0x5E219, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xC92C, symBinAddr: 0x1092C, symSize: 0x34 } - - { offsetInCU: 0xB048, offset: 0x5E238, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.305', symObjAddr: 0xC960, symBinAddr: 0x10960, symSize: 0x3C } - - { offsetInCU: 0xB0BD, offset: 0x5E2AD, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xC99C, symBinAddr: 0x1099C, symSize: 0x4C } - - { offsetInCU: 0xB0E6, offset: 0x5E2D6, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xC9E8, symBinAddr: 0x109E8, symSize: 0x3C } - - { offsetInCU: 0xB105, offset: 0x5E2F5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xCA24, symBinAddr: 0x10A24, symSize: 0x78 } - - { offsetInCU: 0xB15B, offset: 0x5E34B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xCA9C, symBinAddr: 0x10A9C, symSize: 0xE8 } - - { offsetInCU: 0xB1CC, offset: 0x5E3BC, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xCB84, symBinAddr: 0x10B84, symSize: 0x30 } - - { offsetInCU: 0xB21F, offset: 0x5E40F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xCBB4, symBinAddr: 0x10BB4, symSize: 0x20 } - - { offsetInCU: 0xB260, offset: 0x5E450, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xCBD4, symBinAddr: 0x10BD4, symSize: 0x170 } - - { offsetInCU: 0xB360, offset: 0x5E550, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xCD44, symBinAddr: 0x10D44, symSize: 0x4 } - - { offsetInCU: 0xB3D7, offset: 0x5E5C7, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCDD4, symBinAddr: 0x10DD4, symSize: 0x38 } - - { offsetInCU: 0xB415, offset: 0x5E605, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xCE0C, symBinAddr: 0x10E0C, symSize: 0x78 } - - { offsetInCU: 0xB457, offset: 0x5E647, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xCE84, symBinAddr: 0x10E84, symSize: 0x78 } - - { offsetInCU: 0xB4D5, offset: 0x5E6C5, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCEFC, symBinAddr: 0x10EFC, symSize: 0xB8 } - - { offsetInCU: 0xB517, offset: 0x5E707, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xCFB4, symBinAddr: 0x10FB4, symSize: 0x164 } - - { offsetInCU: 0xB59E, offset: 0x5E78E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xD118, symBinAddr: 0x11118, symSize: 0x68 } - - { offsetInCU: 0xB668, offset: 0x5E858, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xD180, symBinAddr: 0x11180, symSize: 0x68 } - - { offsetInCU: 0xB726, offset: 0x5E916, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xD1E8, symBinAddr: 0x111E8, symSize: 0x104 } - - { offsetInCU: 0xB815, offset: 0x5EA05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xD2EC, symBinAddr: 0x112EC, symSize: 0x8C } - - { offsetInCU: 0xB8AC, offset: 0x5EA9C, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xD378, symBinAddr: 0x11378, symSize: 0x138 } - - { offsetInCU: 0xB975, offset: 0x5EB65, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xD4B0, symBinAddr: 0x114B0, symSize: 0x138 } - - { offsetInCU: 0xBA3E, offset: 0x5EC2E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xD5E8, symBinAddr: 0x115E8, symSize: 0x84 } - - { offsetInCU: 0xBA8C, offset: 0x5EC7C, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xD66C, symBinAddr: 0x1166C, symSize: 0x3C } - - { offsetInCU: 0xBACE, offset: 0x5ECBE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xD6A8, symBinAddr: 0x116A8, symSize: 0x84 } - - { offsetInCU: 0xBB18, offset: 0x5ED08, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xD72C, symBinAddr: 0x1172C, symSize: 0x3C } - - { offsetInCU: 0xBB5A, offset: 0x5ED4A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xD768, symBinAddr: 0x11768, symSize: 0x64 } - - { offsetInCU: 0xBC61, offset: 0x5EE51, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xD7CC, symBinAddr: 0x117CC, symSize: 0xB0 } - - { offsetInCU: 0xBCE1, offset: 0x5EED1, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xD87C, symBinAddr: 0x1187C, symSize: 0x1C } - - { offsetInCU: 0xBD3C, offset: 0x5EF2C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xD898, symBinAddr: 0x11898, symSize: 0x94 } - - { offsetInCU: 0xBDC6, offset: 0x5EFB6, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xD92C, symBinAddr: 0x1192C, symSize: 0x24 } - - { offsetInCU: 0xBE1B, offset: 0x5F00B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xD950, symBinAddr: 0x11950, symSize: 0x18 } - - { offsetInCU: 0xBE96, offset: 0x5F086, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xD968, symBinAddr: 0x11968, symSize: 0x14 } - - { offsetInCU: 0xBEFE, offset: 0x5F0EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xD97C, symBinAddr: 0x1197C, symSize: 0x48 } - - { offsetInCU: 0xBF7B, offset: 0x5F16B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xD9C4, symBinAddr: 0x119C4, symSize: 0x40 } - - { offsetInCU: 0xBFC1, offset: 0x5F1B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xDA04, symBinAddr: 0x11A04, symSize: 0x34 } - - { offsetInCU: 0xC007, offset: 0x5F1F7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xDA38, symBinAddr: 0x11A38, symSize: 0x34 } - - { offsetInCU: 0xC04D, offset: 0x5F23D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xDA6C, symBinAddr: 0x11A6C, symSize: 0x3C } - - { offsetInCU: 0xC093, offset: 0x5F283, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xDAA8, symBinAddr: 0x11AA8, symSize: 0x3C } - - { offsetInCU: 0xC0D9, offset: 0x5F2C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xDAE4, symBinAddr: 0x11AE4, symSize: 0x9C } - - { offsetInCU: 0xC176, offset: 0x5F366, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xDB80, symBinAddr: 0x11B80, symSize: 0x3C } - - { offsetInCU: 0xC1BC, offset: 0x5F3AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xDBBC, symBinAddr: 0x11BBC, symSize: 0x3C } - - { offsetInCU: 0xC202, offset: 0x5F3F2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xDBF8, symBinAddr: 0x11BF8, symSize: 0x2C } - - { offsetInCU: 0xC248, offset: 0x5F438, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xDC24, symBinAddr: 0x11C24, symSize: 0x318 } - - { offsetInCU: 0xC48E, offset: 0x5F67E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xDF3C, symBinAddr: 0x11F3C, symSize: 0x7C } - - { offsetInCU: 0xC505, offset: 0x5F6F5, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xDFB8, symBinAddr: 0x11FB8, symSize: 0x7C } - - { offsetInCU: 0xC57D, offset: 0x5F76D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xE034, symBinAddr: 0x12034, symSize: 0x10 } - - { offsetInCU: 0xC5C0, offset: 0x5F7B0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xE044, symBinAddr: 0x12044, symSize: 0x10 } - - { offsetInCU: 0xC603, offset: 0x5F7F3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xE054, symBinAddr: 0x12054, symSize: 0x5C } - - { offsetInCU: 0xC659, offset: 0x5F849, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xE0B0, symBinAddr: 0x120B0, symSize: 0x6C } - - { offsetInCU: 0xC6B3, offset: 0x5F8A3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xE11C, symBinAddr: 0x1211C, symSize: 0x38 } - - { offsetInCU: 0xC70C, offset: 0x5F8FC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xE154, symBinAddr: 0x12154, symSize: 0x60 } - - { offsetInCU: 0xC771, offset: 0x5F961, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xE1B4, symBinAddr: 0x121B4, symSize: 0x60 } - - { offsetInCU: 0xC7D6, offset: 0x5F9C6, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xE214, symBinAddr: 0x12214, symSize: 0xC } - - { offsetInCU: 0xC83B, offset: 0x5FA2B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xE220, symBinAddr: 0x12220, symSize: 0x184 } - - { offsetInCU: 0xC915, offset: 0x5FB05, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xE3A4, symBinAddr: 0x123A4, symSize: 0x18 } - - { offsetInCU: 0xC949, offset: 0x5FB39, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xE3BC, symBinAddr: 0x123BC, symSize: 0x18 } - - { offsetInCU: 0xC97D, offset: 0x5FB6D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xE3D4, symBinAddr: 0x123D4, symSize: 0x18 } - - { offsetInCU: 0xC9B1, offset: 0x5FBA1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xE3EC, symBinAddr: 0x123EC, symSize: 0x18 } - - { offsetInCU: 0xC9E5, offset: 0x5FBD5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xE404, symBinAddr: 0x12404, symSize: 0x11C } - - { offsetInCU: 0xCA19, offset: 0x5FC09, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xE520, symBinAddr: 0x12520, symSize: 0x7C } - - { offsetInCU: 0xCA76, offset: 0x5FC66, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0xE59C, symBinAddr: 0x1259C, symSize: 0x5C } - - { offsetInCU: 0xCAD6, offset: 0x5FCC6, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xE5F8, symBinAddr: 0x125F8, symSize: 0x7C } - - { offsetInCU: 0xCB46, offset: 0x5FD36, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0xE674, symBinAddr: 0x12674, symSize: 0x5C } - - { offsetInCU: 0x27, offset: 0x6396D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x126D0, symSize: 0x18 } - - { offsetInCU: 0x41, offset: 0x63987, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xD4A8, symBinAddr: 0x28C10, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x639A7, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xD4B0, symBinAddr: 0x28C18, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x639BD, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xD4B8, symBinAddr: 0x28C20, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x639D3, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xD4C0, symBinAddr: 0x28C28, symSize: 0x0 } - - { offsetInCU: 0x97, offset: 0x639DD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xA7F0, symBinAddr: 0x1CBD0, symSize: 0x6C } - - { offsetInCU: 0xBF, offset: 0x63A05, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x40160, symBinAddr: 0x2E950, symSize: 0x0 } - - { offsetInCU: 0x125, offset: 0x63A6B, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x40168, symBinAddr: 0x2E958, symSize: 0x0 } - - { offsetInCU: 0x65E, offset: 0x63FA4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x126D0, symSize: 0x18 } - - { offsetInCU: 0x696, offset: 0x63FDC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0x18, symBinAddr: 0x126E8, symSize: 0x94 } - - { offsetInCU: 0x701, offset: 0x64047, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0xAC, symBinAddr: 0x1277C, symSize: 0x48 } - - { offsetInCU: 0x735, offset: 0x6407B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xF4, symBinAddr: 0x127C4, symSize: 0x34 } - - { offsetInCU: 0x76D, offset: 0x640B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x128, symBinAddr: 0x127F8, symSize: 0x30 } - - { offsetInCU: 0x7A1, offset: 0x640E7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x158, symBinAddr: 0x12828, symSize: 0x10 } - - { offsetInCU: 0x7D7, offset: 0x6411D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x168, symBinAddr: 0x12838, symSize: 0x10 } - - { offsetInCU: 0x820, offset: 0x64166, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x178, symBinAddr: 0x12848, symSize: 0x8 } - - { offsetInCU: 0x874, offset: 0x641BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x180, symBinAddr: 0x12850, symSize: 0x190 } - - { offsetInCU: 0x96E, offset: 0x642B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x310, symBinAddr: 0x129E0, symSize: 0xE4 } - - { offsetInCU: 0x9F3, offset: 0x64339, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x3F4, symBinAddr: 0x12AC4, symSize: 0xC } - - { offsetInCU: 0xA35, offset: 0x6437B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x410, symBinAddr: 0x12AD0, symSize: 0xD0 } - - { offsetInCU: 0xAB5, offset: 0x643FB, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x4E0, symBinAddr: 0x12BA0, symSize: 0x10 } - - { offsetInCU: 0xADA, offset: 0x64420, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x4F0, symBinAddr: 0x12BB0, symSize: 0x8 } - - { offsetInCU: 0xAF9, offset: 0x6443F, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x4F8, symBinAddr: 0x12BB8, symSize: 0x3C } - - { offsetInCU: 0xB4C, offset: 0x64492, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x594, symBinAddr: 0x12BF4, symSize: 0xCC } - - { offsetInCU: 0xC04, offset: 0x6454A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x660, symBinAddr: 0x12CC0, symSize: 0xC } - - { offsetInCU: 0xC57, offset: 0x6459D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x6BC, symBinAddr: 0x12CCC, symSize: 0x8 } - - { offsetInCU: 0xC98, offset: 0x645DE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x6C4, symBinAddr: 0x12CD4, symSize: 0x8 } - - { offsetInCU: 0xCD9, offset: 0x6461F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x6CC, symBinAddr: 0x12CDC, symSize: 0xD0 } - - { offsetInCU: 0xD59, offset: 0x6469F, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x79C, symBinAddr: 0x12DAC, symSize: 0x14 } - - { offsetInCU: 0xDAC, offset: 0x646F2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x7B0, symBinAddr: 0x12DC0, symSize: 0xCC } - - { offsetInCU: 0xE51, offset: 0x64797, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x87C, symBinAddr: 0x12E8C, symSize: 0xC } - - { offsetInCU: 0xEA4, offset: 0x647EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x888, symBinAddr: 0x12E98, symSize: 0x8 } - - { offsetInCU: 0xEE5, offset: 0x6482B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x890, symBinAddr: 0x12EA0, symSize: 0x8 } - - { offsetInCU: 0xF26, offset: 0x6486C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x898, symBinAddr: 0x12EA8, symSize: 0x138 } - - { offsetInCU: 0xFDB, offset: 0x64921, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x9D0, symBinAddr: 0x12FE0, symSize: 0x54 } - - { offsetInCU: 0x103F, offset: 0x64985, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xAA0, symBinAddr: 0x13034, symSize: 0x10C } - - { offsetInCU: 0x10F5, offset: 0x64A3B, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xBAC, symBinAddr: 0x13140, symSize: 0x34 } - - { offsetInCU: 0x1159, offset: 0x64A9F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xC40, symBinAddr: 0x13174, symSize: 0x8 } - - { offsetInCU: 0x11A9, offset: 0x64AEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xC48, symBinAddr: 0x1317C, symSize: 0x8 } - - { offsetInCU: 0x11F9, offset: 0x64B3F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xC50, symBinAddr: 0x13184, symSize: 0xD8 } - - { offsetInCU: 0x128F, offset: 0x64BD5, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xD28, symBinAddr: 0x1325C, symSize: 0x1C } - - { offsetInCU: 0x12EA, offset: 0x64C30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xD44, symBinAddr: 0x13278, symSize: 0x94 } - - { offsetInCU: 0x1374, offset: 0x64CBA, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xDD8, symBinAddr: 0x1330C, symSize: 0x20 } - - { offsetInCU: 0x13C9, offset: 0x64D0F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xDF8, symBinAddr: 0x1332C, symSize: 0xD8 } - - { offsetInCU: 0x145F, offset: 0x64DA5, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xED0, symBinAddr: 0x13404, symSize: 0x1C } - - { offsetInCU: 0x14BA, offset: 0x64E00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xEEC, symBinAddr: 0x13420, symSize: 0x94 } - - { offsetInCU: 0x1544, offset: 0x64E8A, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0xF80, symBinAddr: 0x134B4, symSize: 0x24 } - - { offsetInCU: 0x1599, offset: 0x64EDF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0xFA4, symBinAddr: 0x134D8, symSize: 0xD8 } - - { offsetInCU: 0x162F, offset: 0x64F75, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x107C, symBinAddr: 0x135B0, symSize: 0x18 } - - { offsetInCU: 0x168A, offset: 0x64FD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1094, symBinAddr: 0x135C8, symSize: 0xD8 } - - { offsetInCU: 0x1720, offset: 0x65066, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x116C, symBinAddr: 0x136A0, symSize: 0x18 } - - { offsetInCU: 0x177B, offset: 0x650C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x1184, symBinAddr: 0x136B8, symSize: 0xD8 } - - { offsetInCU: 0x1811, offset: 0x65157, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x125C, symBinAddr: 0x13790, symSize: 0x1C } - - { offsetInCU: 0x186C, offset: 0x651B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1278, symBinAddr: 0x137AC, symSize: 0x90 } - - { offsetInCU: 0x18E9, offset: 0x6522F, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x1308, symBinAddr: 0x1383C, symSize: 0x24 } - - { offsetInCU: 0x192B, offset: 0x65271, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x132C, symBinAddr: 0x13860, symSize: 0x90 } - - { offsetInCU: 0x19A8, offset: 0x652EE, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x13BC, symBinAddr: 0x138F0, symSize: 0x24 } - - { offsetInCU: 0x19EA, offset: 0x65330, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x13E0, symBinAddr: 0x13914, symSize: 0x90 } - - { offsetInCU: 0x1A67, offset: 0x653AD, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1470, symBinAddr: 0x139A4, symSize: 0x24 } - - { offsetInCU: 0x1AA9, offset: 0x653EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1494, symBinAddr: 0x139C8, symSize: 0xD8 } - - { offsetInCU: 0x1B3F, offset: 0x65485, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x156C, symBinAddr: 0x13AA0, symSize: 0x14 } - - { offsetInCU: 0x1B9A, offset: 0x654E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1580, symBinAddr: 0x13AB4, symSize: 0x94 } - - { offsetInCU: 0x1C28, offset: 0x6556E, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x1614, symBinAddr: 0x13B48, symSize: 0x10 } - - { offsetInCU: 0x1C7D, offset: 0x655C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x1624, symBinAddr: 0x13B58, symSize: 0xD8 } - - { offsetInCU: 0x1D13, offset: 0x65659, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x16FC, symBinAddr: 0x13C30, symSize: 0x14 } - - { offsetInCU: 0x1D6E, offset: 0x656B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x1710, symBinAddr: 0x13C44, symSize: 0x94 } - - { offsetInCU: 0x1DFC, offset: 0x65742, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x17A4, symBinAddr: 0x13CD8, symSize: 0x10 } - - { offsetInCU: 0x1E51, offset: 0x65797, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x17B4, symBinAddr: 0x13CE8, symSize: 0x94 } - - { offsetInCU: 0x1EDF, offset: 0x65825, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x1848, symBinAddr: 0x13D7C, symSize: 0x10 } - - { offsetInCU: 0x1F34, offset: 0x6587A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x1858, symBinAddr: 0x13D8C, symSize: 0xD8 } - - { offsetInCU: 0x1FCA, offset: 0x65910, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x1930, symBinAddr: 0x13E64, symSize: 0x14 } - - { offsetInCU: 0x2025, offset: 0x6596B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x1944, symBinAddr: 0x13E78, symSize: 0xFC } - - { offsetInCU: 0x20BB, offset: 0x65A01, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1A40, symBinAddr: 0x13F74, symSize: 0x14 } - - { offsetInCU: 0x210E, offset: 0x65A54, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1A54, symBinAddr: 0x13F88, symSize: 0xBC } - - { offsetInCU: 0x219C, offset: 0x65AE2, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1B10, symBinAddr: 0x14044, symSize: 0x1C } - - { offsetInCU: 0x21EF, offset: 0x65B35, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1B2C, symBinAddr: 0x14060, symSize: 0xF4 } - - { offsetInCU: 0x2282, offset: 0x65BC8, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1C20, symBinAddr: 0x14154, symSize: 0x34 } - - { offsetInCU: 0x22E6, offset: 0x65C2C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1C54, symBinAddr: 0x14188, symSize: 0xD4 } - - { offsetInCU: 0x2359, offset: 0x65C9F, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1D28, symBinAddr: 0x1425C, symSize: 0x34 } - - { offsetInCU: 0x23BD, offset: 0x65D03, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1D5C, symBinAddr: 0x14290, symSize: 0xB4 } - - { offsetInCU: 0x2430, offset: 0x65D76, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1E10, symBinAddr: 0x14344, symSize: 0x34 } - - { offsetInCU: 0x2494, offset: 0x65DDA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1E44, symBinAddr: 0x14378, symSize: 0xE4 } - - { offsetInCU: 0x2518, offset: 0x65E5E, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x1F28, symBinAddr: 0x1445C, symSize: 0x34 } - - { offsetInCU: 0x258D, offset: 0x65ED3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x1F5C, symBinAddr: 0x14490, symSize: 0x134 } - - { offsetInCU: 0x2633, offset: 0x65F79, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2090, symBinAddr: 0x145C4, symSize: 0x38 } - - { offsetInCU: 0x26B9, offset: 0x65FFF, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x20C8, symBinAddr: 0x145FC, symSize: 0x40 } - - { offsetInCU: 0x26E2, offset: 0x66028, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2108, symBinAddr: 0x1463C, symSize: 0x40 } - - { offsetInCU: 0x2701, offset: 0x66047, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x2148, symBinAddr: 0x1467C, symSize: 0xD4 } - - { offsetInCU: 0x2774, offset: 0x660BA, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x221C, symBinAddr: 0x14750, symSize: 0x34 } - - { offsetInCU: 0x27D8, offset: 0x6611E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2250, symBinAddr: 0x14784, symSize: 0xD4 } - - { offsetInCU: 0x282E, offset: 0x66174, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2324, symBinAddr: 0x14858, symSize: 0xD4 } - - { offsetInCU: 0x2884, offset: 0x661CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x23F8, symBinAddr: 0x1492C, symSize: 0xF4 } - - { offsetInCU: 0x2915, offset: 0x6625B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x24EC, symBinAddr: 0x14A20, symSize: 0x14C } - - { offsetInCU: 0x297C, offset: 0x662C2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2638, symBinAddr: 0x14B6C, symSize: 0x8 } - - { offsetInCU: 0x29B2, offset: 0x662F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x2640, symBinAddr: 0x14B74, symSize: 0x10C } - - { offsetInCU: 0x2A08, offset: 0x6634E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x274C, symBinAddr: 0x14C80, symSize: 0x10C } - - { offsetInCU: 0x2A5E, offset: 0x663A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x2858, symBinAddr: 0x14D8C, symSize: 0xD4 } - - { offsetInCU: 0x2AB4, offset: 0x663FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x292C, symBinAddr: 0x14E60, symSize: 0x90 } - - { offsetInCU: 0x2B39, offset: 0x6647F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x29BC, symBinAddr: 0x14EF0, symSize: 0x178 } - - { offsetInCU: 0x2C61, offset: 0x665A7, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2B34, symBinAddr: 0x15068, symSize: 0x38 } - - { offsetInCU: 0x2CC3, offset: 0x66609, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2B6C, symBinAddr: 0x150A0, symSize: 0x34 } - - { offsetInCU: 0x2CEC, offset: 0x66632, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.72', symObjAddr: 0x2BA0, symBinAddr: 0x150D4, symSize: 0x344 } - - { offsetInCU: 0x2F00, offset: 0x66846, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x2EE4, symBinAddr: 0x15418, symSize: 0x38 } - - { offsetInCU: 0x2F6C, offset: 0x668B2, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x2F1C, symBinAddr: 0x15450, symSize: 0x3C } - - { offsetInCU: 0x2F95, offset: 0x668DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x2F58, symBinAddr: 0x1548C, symSize: 0x374 } - - { offsetInCU: 0x31DA, offset: 0x66B20, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x32CC, symBinAddr: 0x15800, symSize: 0x344 } - - { offsetInCU: 0x34D3, offset: 0x66E19, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3610, symBinAddr: 0x15B44, symSize: 0x1C8 } - - { offsetInCU: 0x35E5, offset: 0x66F2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x37D8, symBinAddr: 0x15D0C, symSize: 0x68 } - - { offsetInCU: 0x3650, offset: 0x66F96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3840, symBinAddr: 0x15D74, symSize: 0x70 } - - { offsetInCU: 0x36BB, offset: 0x67001, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x38B0, symBinAddr: 0x15DE4, symSize: 0xC0 } - - { offsetInCU: 0x37A1, offset: 0x670E7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3970, symBinAddr: 0x15EA4, symSize: 0xC8 } - - { offsetInCU: 0x3874, offset: 0x671BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3A38, symBinAddr: 0x15F6C, symSize: 0x184 } - - { offsetInCU: 0x399D, offset: 0x672E3, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x3BBC, symBinAddr: 0x160F0, symSize: 0x60 } - - { offsetInCU: 0x39DF, offset: 0x67325, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x3C1C, symBinAddr: 0x16150, symSize: 0x58 } - - { offsetInCU: 0x3A42, offset: 0x67388, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x3C74, symBinAddr: 0x161A8, symSize: 0x24 } - - { offsetInCU: 0x3AB6, offset: 0x673FC, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.88', symObjAddr: 0x3CB4, symBinAddr: 0x161CC, symSize: 0x24 } - - { offsetInCU: 0x3B13, offset: 0x67459, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x3CD8, symBinAddr: 0x161F0, symSize: 0x184 } - - { offsetInCU: 0x3BF2, offset: 0x67538, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x3E5C, symBinAddr: 0x16374, symSize: 0x60 } - - { offsetInCU: 0x3C34, offset: 0x6757A, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x3EBC, symBinAddr: 0x163D4, symSize: 0x58 } - - { offsetInCU: 0x3C84, offset: 0x675CA, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x3F14, symBinAddr: 0x1642C, symSize: 0x24 } - - { offsetInCU: 0x3CE1, offset: 0x67627, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x3F38, symBinAddr: 0x16450, symSize: 0x24 } - - { offsetInCU: 0x3D3E, offset: 0x67684, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x3F5C, symBinAddr: 0x16474, symSize: 0x10C } - - { offsetInCU: 0x3DFC, offset: 0x67742, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4068, symBinAddr: 0x16580, symSize: 0x1DC } - - { offsetInCU: 0x4026, offset: 0x6796C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x4244, symBinAddr: 0x1675C, symSize: 0x48 } - - { offsetInCU: 0x4089, offset: 0x679CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x428C, symBinAddr: 0x167A4, symSize: 0x3C } - - { offsetInCU: 0x40DA, offset: 0x67A20, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x42C8, symBinAddr: 0x167E0, symSize: 0x3C } - - { offsetInCU: 0x411C, offset: 0x67A62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x4304, symBinAddr: 0x1681C, symSize: 0x3C } - - { offsetInCU: 0x416D, offset: 0x67AB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x4340, symBinAddr: 0x16858, symSize: 0x3C } - - { offsetInCU: 0x41AF, offset: 0x67AF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x437C, symBinAddr: 0x16894, symSize: 0x3C } - - { offsetInCU: 0x41F1, offset: 0x67B37, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x43B8, symBinAddr: 0x168D0, symSize: 0x3C } - - { offsetInCU: 0x4233, offset: 0x67B79, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x43F4, symBinAddr: 0x1690C, symSize: 0x3C } - - { offsetInCU: 0x4275, offset: 0x67BBB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x4430, symBinAddr: 0x16948, symSize: 0x3C } - - { offsetInCU: 0x42B7, offset: 0x67BFD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x446C, symBinAddr: 0x16984, symSize: 0x94 } - - { offsetInCU: 0x4316, offset: 0x67C5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x4500, symBinAddr: 0x16A18, symSize: 0x94 } - - { offsetInCU: 0x4366, offset: 0x67CAC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4594, symBinAddr: 0x16AAC, symSize: 0x34 } - - { offsetInCU: 0x439A, offset: 0x67CE0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x45C8, symBinAddr: 0x16AE0, symSize: 0x1AC } - - { offsetInCU: 0x451E, offset: 0x67E64, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4774, symBinAddr: 0x16C8C, symSize: 0xD4 } - - { offsetInCU: 0x4585, offset: 0x67ECB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4848, symBinAddr: 0x16D60, symSize: 0xD4 } - - { offsetInCU: 0x45EC, offset: 0x67F32, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x491C, symBinAddr: 0x16E34, symSize: 0x140 } - - { offsetInCU: 0x468A, offset: 0x67FD0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4A5C, symBinAddr: 0x16F74, symSize: 0x5C } - - { offsetInCU: 0x46DD, offset: 0x68023, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4AB8, symBinAddr: 0x16FD0, symSize: 0x34 } - - { offsetInCU: 0x4727, offset: 0x6806D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x4AFC, symBinAddr: 0x17004, symSize: 0x140 } - - { offsetInCU: 0x47C5, offset: 0x6810B, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x4C3C, symBinAddr: 0x17144, symSize: 0x5C } - - { offsetInCU: 0x4818, offset: 0x6815E, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x4C98, symBinAddr: 0x171A0, symSize: 0x34 } - - { offsetInCU: 0x4862, offset: 0x681A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x4CCC, symBinAddr: 0x171D4, symSize: 0x11C } - - { offsetInCU: 0x4900, offset: 0x68246, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x4DE8, symBinAddr: 0x172F0, symSize: 0x50 } - - { offsetInCU: 0x4953, offset: 0x68299, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x4E38, symBinAddr: 0x17340, symSize: 0x34 } - - { offsetInCU: 0x499D, offset: 0x682E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x4E6C, symBinAddr: 0x17374, symSize: 0x140 } - - { offsetInCU: 0x4A3B, offset: 0x68381, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x4FAC, symBinAddr: 0x174B4, symSize: 0x34 } - - { offsetInCU: 0x4A8E, offset: 0x683D4, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x4FE0, symBinAddr: 0x174E8, symSize: 0x34 } - - { offsetInCU: 0x4AD8, offset: 0x6841E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x5014, symBinAddr: 0x1751C, symSize: 0x140 } - - { offsetInCU: 0x4B76, offset: 0x684BC, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x5154, symBinAddr: 0x1765C, symSize: 0x34 } - - { offsetInCU: 0x4BC9, offset: 0x6850F, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x5188, symBinAddr: 0x17690, symSize: 0x34 } - - { offsetInCU: 0x4C13, offset: 0x68559, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x51BC, symBinAddr: 0x176C4, symSize: 0x11C } - - { offsetInCU: 0x4CB1, offset: 0x685F7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x52D8, symBinAddr: 0x177E0, symSize: 0x34 } - - { offsetInCU: 0x4D04, offset: 0x6864A, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x530C, symBinAddr: 0x17814, symSize: 0x34 } - - { offsetInCU: 0x4D4E, offset: 0x68694, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5340, symBinAddr: 0x17848, symSize: 0x140 } - - { offsetInCU: 0x4DEC, offset: 0x68732, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x5480, symBinAddr: 0x17988, symSize: 0x34 } - - { offsetInCU: 0x4E3F, offset: 0x68785, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x54B4, symBinAddr: 0x179BC, symSize: 0x34 } - - { offsetInCU: 0x4E89, offset: 0x687CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x54E8, symBinAddr: 0x179F0, symSize: 0x140 } - - { offsetInCU: 0x4F27, offset: 0x6886D, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5628, symBinAddr: 0x17B30, symSize: 0x34 } - - { offsetInCU: 0x4F7A, offset: 0x688C0, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x565C, symBinAddr: 0x17B64, symSize: 0x34 } - - { offsetInCU: 0x4FC4, offset: 0x6890A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5690, symBinAddr: 0x17B98, symSize: 0x11C } - - { offsetInCU: 0x5062, offset: 0x689A8, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x57AC, symBinAddr: 0x17CB4, symSize: 0x34 } - - { offsetInCU: 0x50B5, offset: 0x689FB, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x57E0, symBinAddr: 0x17CE8, symSize: 0x34 } - - { offsetInCU: 0x50FF, offset: 0x68A45, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5814, symBinAddr: 0x17D1C, symSize: 0x1B0 } - - { offsetInCU: 0x522A, offset: 0x68B70, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x59C4, symBinAddr: 0x17ECC, symSize: 0x140 } - - { offsetInCU: 0x52C8, offset: 0x68C0E, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x5B04, symBinAddr: 0x1800C, symSize: 0x34 } - - { offsetInCU: 0x531B, offset: 0x68C61, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x5B38, symBinAddr: 0x18040, symSize: 0x34 } - - { offsetInCU: 0x5365, offset: 0x68CAB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x5B6C, symBinAddr: 0x18074, symSize: 0x140 } - - { offsetInCU: 0x5403, offset: 0x68D49, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x5CAC, symBinAddr: 0x181B4, symSize: 0x34 } - - { offsetInCU: 0x5456, offset: 0x68D9C, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x5CE0, symBinAddr: 0x181E8, symSize: 0x34 } - - { offsetInCU: 0x54A0, offset: 0x68DE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x5D14, symBinAddr: 0x1821C, symSize: 0x11C } - - { offsetInCU: 0x553E, offset: 0x68E84, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x5E30, symBinAddr: 0x18338, symSize: 0x34 } - - { offsetInCU: 0x5591, offset: 0x68ED7, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x5E64, symBinAddr: 0x1836C, symSize: 0x34 } - - { offsetInCU: 0x55DB, offset: 0x68F21, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x5E98, symBinAddr: 0x183A0, symSize: 0xD8 } - - { offsetInCU: 0x5671, offset: 0x68FB7, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x5F70, symBinAddr: 0x18478, symSize: 0x18 } - - { offsetInCU: 0x56CC, offset: 0x69012, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x5F88, symBinAddr: 0x18490, symSize: 0xDC } - - { offsetInCU: 0x5762, offset: 0x690A8, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x6064, symBinAddr: 0x1856C, symSize: 0x1C } - - { offsetInCU: 0x57BD, offset: 0x69103, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6080, symBinAddr: 0x18588, symSize: 0xD8 } - - { offsetInCU: 0x5853, offset: 0x69199, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6158, symBinAddr: 0x18660, symSize: 0x48 } - - { offsetInCU: 0x58A6, offset: 0x691EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x61A0, symBinAddr: 0x186A8, symSize: 0xD8 } - - { offsetInCU: 0x593C, offset: 0x69282, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x6278, symBinAddr: 0x18780, symSize: 0x48 } - - { offsetInCU: 0x598F, offset: 0x692D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x62C0, symBinAddr: 0x187C8, symSize: 0xA4 } - - { offsetInCU: 0x59F2, offset: 0x69338, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6364, symBinAddr: 0x1886C, symSize: 0xC } - - { offsetInCU: 0x5A48, offset: 0x6938E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6370, symBinAddr: 0x18878, symSize: 0x184 } - - { offsetInCU: 0x5B28, offset: 0x6946E, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x64F4, symBinAddr: 0x189FC, symSize: 0x26C } - - { offsetInCU: 0x5D0A, offset: 0x69650, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x67EC, symBinAddr: 0x18C68, symSize: 0x174 } - - { offsetInCU: 0x5DD8, offset: 0x6971E, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6960, symBinAddr: 0x18DDC, symSize: 0x2A4 } - - { offsetInCU: 0x5F85, offset: 0x698CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x6C04, symBinAddr: 0x19080, symSize: 0x90 } - - { offsetInCU: 0x5FE8, offset: 0x6992E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x6C94, symBinAddr: 0x19110, symSize: 0x184 } - - { offsetInCU: 0x60C8, offset: 0x69A0E, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x6E18, symBinAddr: 0x19294, symSize: 0x190 } - - { offsetInCU: 0x618E, offset: 0x69AD4, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x6FA8, symBinAddr: 0x19424, symSize: 0x9C } - - { offsetInCU: 0x6203, offset: 0x69B49, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x7044, symBinAddr: 0x194C0, symSize: 0x174 } - - { offsetInCU: 0x62D1, offset: 0x69C17, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x71B8, symBinAddr: 0x19634, symSize: 0x184 } - - { offsetInCU: 0x63A8, offset: 0x69CEE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x733C, symBinAddr: 0x197B8, symSize: 0x1E4 } - - { offsetInCU: 0x6458, offset: 0x69D9E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7520, symBinAddr: 0x1999C, symSize: 0xC0 } - - { offsetInCU: 0x6508, offset: 0x69E4E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x75E0, symBinAddr: 0x19A5C, symSize: 0xC0 } - - { offsetInCU: 0x6597, offset: 0x69EDD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x76A0, symBinAddr: 0x19B1C, symSize: 0x84 } - - { offsetInCU: 0x65E0, offset: 0x69F26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7724, symBinAddr: 0x19BA0, symSize: 0xC } - - { offsetInCU: 0x6636, offset: 0x69F7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7730, symBinAddr: 0x19BAC, symSize: 0x14 } - - { offsetInCU: 0x669F, offset: 0x69FE5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7744, symBinAddr: 0x19BC0, symSize: 0xC } - - { offsetInCU: 0x66F5, offset: 0x6A03B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7750, symBinAddr: 0x19BCC, symSize: 0x14 } - - { offsetInCU: 0x675E, offset: 0x6A0A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7764, symBinAddr: 0x19BE0, symSize: 0x1C4 } - - { offsetInCU: 0x684F, offset: 0x6A195, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x7928, symBinAddr: 0x19DA4, symSize: 0x270 } - - { offsetInCU: 0x6A5D, offset: 0x6A3A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x7C34, symBinAddr: 0x1A014, symSize: 0x174 } - - { offsetInCU: 0x6B2B, offset: 0x6A471, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x7DA8, symBinAddr: 0x1A188, symSize: 0x18C } - - { offsetInCU: 0x6C52, offset: 0x6A598, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x7F34, symBinAddr: 0x1A314, symSize: 0x174 } - - { offsetInCU: 0x6D20, offset: 0x6A666, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x80A8, symBinAddr: 0x1A488, symSize: 0x184 } - - { offsetInCU: 0x6E38, offset: 0x6A77E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x822C, symBinAddr: 0x1A60C, symSize: 0x150 } - - { offsetInCU: 0x6F02, offset: 0x6A848, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x837C, symBinAddr: 0x1A75C, symSize: 0x150 } - - { offsetInCU: 0x7021, offset: 0x6A967, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x84CC, symBinAddr: 0x1A8AC, symSize: 0x150 } - - { offsetInCU: 0x70EB, offset: 0x6AA31, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x861C, symBinAddr: 0x1A9FC, symSize: 0x114 } - - { offsetInCU: 0x71BD, offset: 0x6AB03, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x8730, symBinAddr: 0x1AB10, symSize: 0x8 } - - { offsetInCU: 0x720D, offset: 0x6AB53, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x8738, symBinAddr: 0x1AB18, symSize: 0xCC } - - { offsetInCU: 0x72A2, offset: 0x6ABE8, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x8804, symBinAddr: 0x1ABE4, symSize: 0x3C } - - { offsetInCU: 0x72F5, offset: 0x6AC3B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x8840, symBinAddr: 0x1AC20, symSize: 0x144 } - - { offsetInCU: 0x73AC, offset: 0x6ACF2, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x8984, symBinAddr: 0x1AD64, symSize: 0x94 } - - { offsetInCU: 0x7421, offset: 0x6AD67, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x8A18, symBinAddr: 0x1ADF8, symSize: 0x3C } - - { offsetInCU: 0x7474, offset: 0x6ADBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x8A54, symBinAddr: 0x1AE34, symSize: 0x118 } - - { offsetInCU: 0x751A, offset: 0x6AE60, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x8B6C, symBinAddr: 0x1AF4C, symSize: 0x3C } - - { offsetInCU: 0x756D, offset: 0x6AEB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x8BA8, symBinAddr: 0x1AF88, symSize: 0x8 } - - { offsetInCU: 0x75BD, offset: 0x6AF03, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x8BB0, symBinAddr: 0x1AF90, symSize: 0x13C } - - { offsetInCU: 0x768B, offset: 0x6AFD1, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x8CEC, symBinAddr: 0x1B0CC, symSize: 0x50 } - - { offsetInCU: 0x7700, offset: 0x6B046, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x8D3C, symBinAddr: 0x1B11C, symSize: 0x144 } - - { offsetInCU: 0x774C, offset: 0x6B092, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x8E80, symBinAddr: 0x1B260, symSize: 0x2CC } - - { offsetInCU: 0x787B, offset: 0x6B1C1, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x914C, symBinAddr: 0x1B52C, symSize: 0xB4 } - - { offsetInCU: 0x7913, offset: 0x6B259, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9200, symBinAddr: 0x1B5E0, symSize: 0x68 } - - { offsetInCU: 0x7977, offset: 0x6B2BD, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.151', symObjAddr: 0x9268, symBinAddr: 0x1B648, symSize: 0x54 } - - { offsetInCU: 0x79D6, offset: 0x6B31C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x92BC, symBinAddr: 0x1B69C, symSize: 0x1A8 } - - { offsetInCU: 0x7B54, offset: 0x6B49A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0x9464, symBinAddr: 0x1B844, symSize: 0x3C } - - { offsetInCU: 0x7B96, offset: 0x6B4DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0x94A0, symBinAddr: 0x1B880, symSize: 0x60 } - - { offsetInCU: 0x7BCA, offset: 0x6B510, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0x9500, symBinAddr: 0x1B8E0, symSize: 0xC8 } - - { offsetInCU: 0x7CC5, offset: 0x6B60B, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0x95C8, symBinAddr: 0x1B9A8, symSize: 0x30 } - - { offsetInCU: 0x7D07, offset: 0x6B64D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0x95F8, symBinAddr: 0x1B9D8, symSize: 0x14C } - - { offsetInCU: 0x7DC4, offset: 0x6B70A, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0x9744, symBinAddr: 0x1BB24, symSize: 0xD4 } - - { offsetInCU: 0x7E5E, offset: 0x6B7A4, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0x9818, symBinAddr: 0x1BBF8, symSize: 0x30 } - - { offsetInCU: 0x7EA0, offset: 0x6B7E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0x9848, symBinAddr: 0x1BC28, symSize: 0x14C } - - { offsetInCU: 0x7F5D, offset: 0x6B8A3, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0x9994, symBinAddr: 0x1BD74, symSize: 0xD4 } - - { offsetInCU: 0x7FF7, offset: 0x6B93D, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0x9A68, symBinAddr: 0x1BE48, symSize: 0x30 } - - { offsetInCU: 0x8039, offset: 0x6B97F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0x9A98, symBinAddr: 0x1BE78, symSize: 0x90 } - - { offsetInCU: 0x80B6, offset: 0x6B9FC, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0x9B28, symBinAddr: 0x1BF08, symSize: 0x64 } - - { offsetInCU: 0x80F8, offset: 0x6BA3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0x9B8C, symBinAddr: 0x1BF6C, symSize: 0x8 } - - { offsetInCU: 0x8148, offset: 0x6BA8E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0x9B94, symBinAddr: 0x1BF74, symSize: 0x13C } - - { offsetInCU: 0x8216, offset: 0x6BB5C, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9CD0, symBinAddr: 0x1C0B0, symSize: 0x50 } - - { offsetInCU: 0x828B, offset: 0x6BBD1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0x9D20, symBinAddr: 0x1C100, symSize: 0x658 } - - { offsetInCU: 0x8506, offset: 0x6BE4C, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xA378, symBinAddr: 0x1C758, symSize: 0xF8 } - - { offsetInCU: 0x85BD, offset: 0x6BF03, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xA470, symBinAddr: 0x1C850, symSize: 0x94 } - - { offsetInCU: 0x8643, offset: 0x6BF89, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.158', symObjAddr: 0xA504, symBinAddr: 0x1C8E4, symSize: 0x80 } - - { offsetInCU: 0x86DD, offset: 0x6C023, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xA584, symBinAddr: 0x1C964, symSize: 0x3C } - - { offsetInCU: 0x8711, offset: 0x6C057, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xA5C0, symBinAddr: 0x1C9A0, symSize: 0x7C } - - { offsetInCU: 0x8763, offset: 0x6C0A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xA63C, symBinAddr: 0x1CA1C, symSize: 0x90 } - - { offsetInCU: 0x87E0, offset: 0x6C126, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xA6CC, symBinAddr: 0x1CAAC, symSize: 0x34 } - - { offsetInCU: 0x8822, offset: 0x6C168, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xA700, symBinAddr: 0x1CAE0, symSize: 0x90 } - - { offsetInCU: 0x889F, offset: 0x6C1E5, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xA790, symBinAddr: 0x1CB70, symSize: 0x5C } - - { offsetInCU: 0x88E1, offset: 0x6C227, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xA7EC, symBinAddr: 0x1CBCC, symSize: 0x4 } - - { offsetInCU: 0x8958, offset: 0x6C29E, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xA85C, symBinAddr: 0x1CC3C, symSize: 0x54 } - - { offsetInCU: 0x899A, offset: 0x6C2E0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xA8B0, symBinAddr: 0x1CC90, symSize: 0xEC } - - { offsetInCU: 0x89DF, offset: 0x6C325, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xA99C, symBinAddr: 0x1CD7C, symSize: 0x90 } - - { offsetInCU: 0x8AD5, offset: 0x6C41B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xAA2C, symBinAddr: 0x1CE0C, symSize: 0x90 } - - { offsetInCU: 0x8BBF, offset: 0x6C505, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xAABC, symBinAddr: 0x1CE9C, symSize: 0x1F8 } - - { offsetInCU: 0x8DEA, offset: 0x6C730, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xACB4, symBinAddr: 0x1D094, symSize: 0x1B0 } - - { offsetInCU: 0x9006, offset: 0x6C94C, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xAE64, symBinAddr: 0x1D244, symSize: 0x10C } - - { offsetInCU: 0x90D3, offset: 0x6CA19, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xAF70, symBinAddr: 0x1D350, symSize: 0x10C } - - { offsetInCU: 0x91A0, offset: 0x6CAE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xB07C, symBinAddr: 0x1D45C, symSize: 0x60 } - - { offsetInCU: 0x91E5, offset: 0x6CB2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xB0DC, symBinAddr: 0x1D4BC, symSize: 0xD0 } - - { offsetInCU: 0x9300, offset: 0x6CC46, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xB1AC, symBinAddr: 0x1D58C, symSize: 0x50 } - - { offsetInCU: 0x9334, offset: 0x6CC7A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xB1FC, symBinAddr: 0x1D5DC, symSize: 0xCC } - - { offsetInCU: 0x945C, offset: 0x6CDA2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xB2C8, symBinAddr: 0x1D6A8, symSize: 0x90 } - - { offsetInCU: 0x94E6, offset: 0x6CE2C, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xB358, symBinAddr: 0x1D738, symSize: 0x38 } - - { offsetInCU: 0x9528, offset: 0x6CE6E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xB390, symBinAddr: 0x1D770, symSize: 0x18 } - - { offsetInCU: 0x95A3, offset: 0x6CEE9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xB3A8, symBinAddr: 0x1D788, symSize: 0x14 } - - { offsetInCU: 0x960B, offset: 0x6CF51, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xB3BC, symBinAddr: 0x1D79C, symSize: 0x48 } - - { offsetInCU: 0x9688, offset: 0x6CFCE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xB404, symBinAddr: 0x1D7E4, symSize: 0x40 } - - { offsetInCU: 0x96CE, offset: 0x6D014, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xB444, symBinAddr: 0x1D824, symSize: 0x34 } - - { offsetInCU: 0x9714, offset: 0x6D05A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xB478, symBinAddr: 0x1D858, symSize: 0x34 } - - { offsetInCU: 0x975A, offset: 0x6D0A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xB4AC, symBinAddr: 0x1D88C, symSize: 0x58 } - - { offsetInCU: 0x97B1, offset: 0x6D0F7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xB504, symBinAddr: 0x1D8E4, symSize: 0x58 } - - { offsetInCU: 0x9808, offset: 0x6D14E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xB55C, symBinAddr: 0x1D93C, symSize: 0x8 } - - { offsetInCU: 0x983C, offset: 0x6D182, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xB564, symBinAddr: 0x1D944, symSize: 0x7C } - - { offsetInCU: 0x98B3, offset: 0x6D1F9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xB5E0, symBinAddr: 0x1D9C0, symSize: 0x7C } - - { offsetInCU: 0x992B, offset: 0x6D271, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xB65C, symBinAddr: 0x1DA3C, symSize: 0x10 } - - { offsetInCU: 0x996E, offset: 0x6D2B4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xB66C, symBinAddr: 0x1DA4C, symSize: 0x10 } - - { offsetInCU: 0x99B1, offset: 0x6D2F7, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xB67C, symBinAddr: 0x1DA5C, symSize: 0x38 } - - { offsetInCU: 0x9A0B, offset: 0x6D351, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xB6B4, symBinAddr: 0x1DA94, symSize: 0x34 } - - { offsetInCU: 0x9A65, offset: 0x6D3AB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xB6E8, symBinAddr: 0x1DAC8, symSize: 0x34 } - - { offsetInCU: 0x9ABF, offset: 0x6D405, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xB71C, symBinAddr: 0x1DAFC, symSize: 0x3C } - - { offsetInCU: 0x9B19, offset: 0x6D45F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xB758, symBinAddr: 0x1DB38, symSize: 0x3C } - - { offsetInCU: 0x9B73, offset: 0x6D4B9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xB794, symBinAddr: 0x1DB74, symSize: 0xC } - - { offsetInCU: 0x9BD8, offset: 0x6D51E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xB7A0, symBinAddr: 0x1DB80, symSize: 0x154 } - - { offsetInCU: 0x9CB0, offset: 0x6D5F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xB8F4, symBinAddr: 0x1DCD4, symSize: 0x110 } - - { offsetInCU: 0x9CE4, offset: 0x6D62A, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xBA04, symBinAddr: 0x1DDE4, symSize: 0x50 } - - { offsetInCU: 0x9D44, offset: 0x6D68A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xBA54, symBinAddr: 0x1DE34, symSize: 0x50 } + - { offsetInCU: 0x34, offset: 0x53B7D, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x21278, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x53BB2, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x212B0, symSize: 0x0 } + - { offsetInCU: 0x41, offset: 0x53C09, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x10AB8, symBinAddr: 0x284F8, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x53C29, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x10AC0, symBinAddr: 0x28500, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x53C3F, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x10AC8, symBinAddr: 0x28508, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x53C55, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x10AD0, symBinAddr: 0x28510, symSize: 0x0 } + - { offsetInCU: 0xA3, offset: 0x53C6B, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x10AD8, symBinAddr: 0x28518, symSize: 0x0 } + - { offsetInCU: 0xB9, offset: 0x53C81, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x10AE0, symBinAddr: 0x28520, symSize: 0x0 } + - { offsetInCU: 0xCF, offset: 0x53C97, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x10AE8, symBinAddr: 0x28528, symSize: 0x0 } + - { offsetInCU: 0xE5, offset: 0x53CAD, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x10AF0, symBinAddr: 0x28530, symSize: 0x0 } + - { offsetInCU: 0xFB, offset: 0x53CC3, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x10AF8, symBinAddr: 0x28538, symSize: 0x0 } + - { offsetInCU: 0x111, offset: 0x53CD9, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x10B00, symBinAddr: 0x28540, symSize: 0x0 } + - { offsetInCU: 0x127, offset: 0x53CEF, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x10B08, symBinAddr: 0x28548, symSize: 0x0 } + - { offsetInCU: 0x13D, offset: 0x53D05, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x10B10, symBinAddr: 0x28550, symSize: 0x0 } + - { offsetInCU: 0x153, offset: 0x53D1B, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x10B18, symBinAddr: 0x28558, symSize: 0x0 } + - { offsetInCU: 0x16B, offset: 0x53D33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xAB30, symBinAddr: 0xEB30, symSize: 0x4F0 } + - { offsetInCU: 0x48C, offset: 0x54054, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xCD48, symBinAddr: 0x10D48, symSize: 0x8C } + - { offsetInCU: 0x4B4, offset: 0x5407C, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x56128, symBinAddr: 0x2E930, symSize: 0x0 } + - { offsetInCU: 0x51C, offset: 0x540E4, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x56140, symBinAddr: 0x2E948, symSize: 0x0 } + - { offsetInCU: 0x537, offset: 0x540FF, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x56130, symBinAddr: 0x2E938, symSize: 0x0 } + - { offsetInCU: 0x554, offset: 0x5411C, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x56138, symBinAddr: 0x2E940, symSize: 0x0 } + - { offsetInCU: 0xB90, offset: 0x54758, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0x4000, symSize: 0x18 } + - { offsetInCU: 0xBC7, offset: 0x5478F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0x18, symBinAddr: 0x4018, symSize: 0x60 } + - { offsetInCU: 0xC0E, offset: 0x547D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x78, symBinAddr: 0x4078, symSize: 0x4C } + - { offsetInCU: 0xC41, offset: 0x54809, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xC4, symBinAddr: 0x40C4, symSize: 0x60 } + - { offsetInCU: 0xCF9, offset: 0x548C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x124, symBinAddr: 0x4124, symSize: 0xC } + - { offsetInCU: 0xD31, offset: 0x548F9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x130, symBinAddr: 0x4130, symSize: 0x8 } + - { offsetInCU: 0xD69, offset: 0x54931, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x138, symBinAddr: 0x4138, symSize: 0x34 } + - { offsetInCU: 0xDBF, offset: 0x54987, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x16C, symBinAddr: 0x416C, symSize: 0x24 } + - { offsetInCU: 0xE00, offset: 0x549C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x190, symBinAddr: 0x4190, symSize: 0x14 } + - { offsetInCU: 0xE38, offset: 0x54A00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x1A4, symBinAddr: 0x41A4, symSize: 0x8 } + - { offsetInCU: 0xE70, offset: 0x54A38, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x1AC, symBinAddr: 0x41AC, symSize: 0x34 } + - { offsetInCU: 0xEC6, offset: 0x54A8E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1E0, symBinAddr: 0x41E0, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x54ACF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1F0, symBinAddr: 0x41F0, symSize: 0xC } + - { offsetInCU: 0xF39, offset: 0x54B01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x1FC, symBinAddr: 0x41FC, symSize: 0x18 } + - { offsetInCU: 0xF71, offset: 0x54B39, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x214, symBinAddr: 0x4214, symSize: 0x144 } + - { offsetInCU: 0x1020, offset: 0x54BE8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x358, symBinAddr: 0x4358, symSize: 0x50 } + - { offsetInCU: 0x10B4, offset: 0x54C7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x3A8, symBinAddr: 0x43A8, symSize: 0x88 } + - { offsetInCU: 0x118C, offset: 0x54D54, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x430, symBinAddr: 0x4430, symSize: 0x2C } + - { offsetInCU: 0x11F1, offset: 0x54DB9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x45C, symBinAddr: 0x445C, symSize: 0x6C } + - { offsetInCU: 0x12B8, offset: 0x54E80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x4C8, symBinAddr: 0x44C8, symSize: 0x234 } + - { offsetInCU: 0x144A, offset: 0x55012, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x6FC, symBinAddr: 0x46FC, symSize: 0xB0 } + - { offsetInCU: 0x1504, offset: 0x550CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7AC, symBinAddr: 0x47AC, symSize: 0x30 } + - { offsetInCU: 0x1538, offset: 0x55100, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7DC, symBinAddr: 0x47DC, symSize: 0x18 } + - { offsetInCU: 0x1570, offset: 0x55138, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x7F4, symBinAddr: 0x47F4, symSize: 0x90 } + - { offsetInCU: 0x15DB, offset: 0x551A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x884, symBinAddr: 0x4884, symSize: 0xC } + - { offsetInCU: 0x160F, offset: 0x551D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x890, symBinAddr: 0x4890, symSize: 0x18 } + - { offsetInCU: 0x1647, offset: 0x5520F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8A8, symBinAddr: 0x48A8, symSize: 0x78 } + - { offsetInCU: 0x1690, offset: 0x55258, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x920, symBinAddr: 0x4920, symSize: 0xC } + - { offsetInCU: 0x16C4, offset: 0x5528C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x92C, symBinAddr: 0x492C, symSize: 0x10 } + - { offsetInCU: 0x16FA, offset: 0x552C2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x93C, symBinAddr: 0x493C, symSize: 0x10 } + - { offsetInCU: 0x1743, offset: 0x5530B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x94C, symBinAddr: 0x494C, symSize: 0x8 } + - { offsetInCU: 0x1797, offset: 0x5535F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x954, symBinAddr: 0x4954, symSize: 0x1B0 } + - { offsetInCU: 0x189B, offset: 0x55463, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB04, symBinAddr: 0x4B04, symSize: 0xC8 } + - { offsetInCU: 0x1920, offset: 0x554E8, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xBCC, symBinAddr: 0x4BCC, symSize: 0xC } + - { offsetInCU: 0x1962, offset: 0x5552A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xBD8, symBinAddr: 0x4BD8, symSize: 0x8 } + - { offsetInCU: 0x1989, offset: 0x55551, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xBE0, symBinAddr: 0x4BE0, symSize: 0x8 } + - { offsetInCU: 0x19A8, offset: 0x55570, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xBE8, symBinAddr: 0x4BE8, symSize: 0x14 } + - { offsetInCU: 0x1A0F, offset: 0x555D7, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xBFC, symBinAddr: 0x4BFC, symSize: 0xC } + - { offsetInCU: 0x1A83, offset: 0x5564B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xC08, symBinAddr: 0x4C08, symSize: 0x1C0 } + - { offsetInCU: 0x1B6A, offset: 0x55732, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xDC8, symBinAddr: 0x4DC8, symSize: 0x10 } + - { offsetInCU: 0x1B8F, offset: 0x55757, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xDD8, symBinAddr: 0x4DD8, symSize: 0x8 } + - { offsetInCU: 0x1BAE, offset: 0x55776, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xDE0, symBinAddr: 0x4DE0, symSize: 0x21C } + - { offsetInCU: 0x1D01, offset: 0x558C9, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0xFFC, symBinAddr: 0x4FFC, symSize: 0x44 } + - { offsetInCU: 0x1D2A, offset: 0x558F2, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1040, symBinAddr: 0x5040, symSize: 0x38 } + - { offsetInCU: 0x1D49, offset: 0x55911, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x1078, symBinAddr: 0x5078, symSize: 0xD0 } + - { offsetInCU: 0x1DC9, offset: 0x55991, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x1148, symBinAddr: 0x5148, symSize: 0x3C } + - { offsetInCU: 0x1E1C, offset: 0x559E4, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x1184, symBinAddr: 0x5184, symSize: 0x34 } + - { offsetInCU: 0x1E45, offset: 0x55A0D, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x11B8, symBinAddr: 0x51B8, symSize: 0x2C } + - { offsetInCU: 0x1E64, offset: 0x55A2C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x11E4, symBinAddr: 0x51E4, symSize: 0xCC } + - { offsetInCU: 0x1F1C, offset: 0x55AE4, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x12B0, symBinAddr: 0x52B0, symSize: 0xC } + - { offsetInCU: 0x1F6F, offset: 0x55B37, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x12BC, symBinAddr: 0x52BC, symSize: 0x28 } + - { offsetInCU: 0x1F98, offset: 0x55B60, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x12E4, symBinAddr: 0x52E4, symSize: 0x28 } + - { offsetInCU: 0x1FB7, offset: 0x55B7F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x130C, symBinAddr: 0x530C, symSize: 0x8 } + - { offsetInCU: 0x1FF8, offset: 0x55BC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x1314, symBinAddr: 0x5314, symSize: 0x8 } + - { offsetInCU: 0x2039, offset: 0x55C01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x131C, symBinAddr: 0x531C, symSize: 0xD0 } + - { offsetInCU: 0x20B9, offset: 0x55C81, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x13EC, symBinAddr: 0x53EC, symSize: 0x14 } + - { offsetInCU: 0x210C, offset: 0x55CD4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x1400, symBinAddr: 0x5400, symSize: 0xCC } + - { offsetInCU: 0x21B1, offset: 0x55D79, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x14CC, symBinAddr: 0x54CC, symSize: 0xC } + - { offsetInCU: 0x2204, offset: 0x55DCC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x14D8, symBinAddr: 0x54D8, symSize: 0x8 } + - { offsetInCU: 0x2245, offset: 0x55E0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x14E0, symBinAddr: 0x54E0, symSize: 0x8 } + - { offsetInCU: 0x2286, offset: 0x55E4E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x14E8, symBinAddr: 0x54E8, symSize: 0x138 } + - { offsetInCU: 0x233B, offset: 0x55F03, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x1620, symBinAddr: 0x5620, symSize: 0x54 } + - { offsetInCU: 0x239F, offset: 0x55F67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1674, symBinAddr: 0x5674, symSize: 0x10C } + - { offsetInCU: 0x2455, offset: 0x5601D, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1780, symBinAddr: 0x5780, symSize: 0x34 } + - { offsetInCU: 0x24B9, offset: 0x56081, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x17B4, symBinAddr: 0x57B4, symSize: 0x30 } + - { offsetInCU: 0x24E2, offset: 0x560AA, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x17E4, symBinAddr: 0x57E4, symSize: 0x30 } + - { offsetInCU: 0x2501, offset: 0x560C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x1814, symBinAddr: 0x5814, symSize: 0x8 } + - { offsetInCU: 0x2551, offset: 0x56119, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x181C, symBinAddr: 0x581C, symSize: 0x8 } + - { offsetInCU: 0x25A1, offset: 0x56169, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x1824, symBinAddr: 0x5824, symSize: 0xB0 } + - { offsetInCU: 0x2621, offset: 0x561E9, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x18D4, symBinAddr: 0x58D4, symSize: 0x1C } + - { offsetInCU: 0x267C, offset: 0x56244, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x18F0, symBinAddr: 0x58F0, symSize: 0x94 } + - { offsetInCU: 0x2706, offset: 0x562CE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1984, symBinAddr: 0x5984, symSize: 0x20 } + - { offsetInCU: 0x275B, offset: 0x56323, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x19A4, symBinAddr: 0x59A4, symSize: 0xB0 } + - { offsetInCU: 0x27DB, offset: 0x563A3, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1A54, symBinAddr: 0x5A54, symSize: 0x1C } + - { offsetInCU: 0x2836, offset: 0x563FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1A70, symBinAddr: 0x5A70, symSize: 0x94 } + - { offsetInCU: 0x28C0, offset: 0x56488, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1B04, symBinAddr: 0x5B04, symSize: 0x24 } + - { offsetInCU: 0x2915, offset: 0x564DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1B28, symBinAddr: 0x5B28, symSize: 0xB0 } + - { offsetInCU: 0x2995, offset: 0x5655D, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1BD8, symBinAddr: 0x5BD8, symSize: 0x1C } + - { offsetInCU: 0x29F0, offset: 0x565B8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1BF4, symBinAddr: 0x5BF4, symSize: 0x94 } + - { offsetInCU: 0x2A7A, offset: 0x56642, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1C88, symBinAddr: 0x5C88, symSize: 0x24 } + - { offsetInCU: 0x2ACF, offset: 0x56697, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1CAC, symBinAddr: 0x5CAC, symSize: 0xDC } + - { offsetInCU: 0x2B65, offset: 0x5672D, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1D88, symBinAddr: 0x5D88, symSize: 0x14 } + - { offsetInCU: 0x2BC0, offset: 0x56788, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1D9C, symBinAddr: 0x5D9C, symSize: 0x94 } + - { offsetInCU: 0x2C4E, offset: 0x56816, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1E30, symBinAddr: 0x5E30, symSize: 0x10 } + - { offsetInCU: 0x2CA3, offset: 0x5686B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1E40, symBinAddr: 0x5E40, symSize: 0xFC } + - { offsetInCU: 0x2D39, offset: 0x56901, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x1F3C, symBinAddr: 0x5F3C, symSize: 0x14 } + - { offsetInCU: 0x2D8C, offset: 0x56954, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x1F50, symBinAddr: 0x5F50, symSize: 0xBC } + - { offsetInCU: 0x2E1A, offset: 0x569E2, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x200C, symBinAddr: 0x600C, symSize: 0x1C } + - { offsetInCU: 0x2E6D, offset: 0x56A35, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x2028, symBinAddr: 0x6028, symSize: 0x10 } + - { offsetInCU: 0x2EC5, offset: 0x56A8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x2038, symBinAddr: 0x6038, symSize: 0x210 } + - { offsetInCU: 0x2FC7, offset: 0x56B8F, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x2248, symBinAddr: 0x6248, symSize: 0x1E8 } + - { offsetInCU: 0x32A7, offset: 0x56E6F, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.117', symObjAddr: 0x2430, symBinAddr: 0x6430, symSize: 0x4DC } + - { offsetInCU: 0x367F, offset: 0x57247, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x290C, symBinAddr: 0x690C, symSize: 0x7C } + - { offsetInCU: 0x3742, offset: 0x5730A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x2988, symBinAddr: 0x6988, symSize: 0x30 } + - { offsetInCU: 0x376B, offset: 0x57333, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x29B8, symBinAddr: 0x69B8, symSize: 0x28 } + - { offsetInCU: 0x378A, offset: 0x57352, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.132', symObjAddr: 0x29E0, symBinAddr: 0x69E0, symSize: 0x8 } + - { offsetInCU: 0x37D6, offset: 0x5739E, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.134', symObjAddr: 0x29E8, symBinAddr: 0x69E8, symSize: 0x7C } + - { offsetInCU: 0x3886, offset: 0x5744E, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2A64, symBinAddr: 0x6A64, symSize: 0x8 } + - { offsetInCU: 0x38D2, offset: 0x5749A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2A6C, symBinAddr: 0x6A6C, symSize: 0x5C } + - { offsetInCU: 0x38FB, offset: 0x574C3, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2AC8, symBinAddr: 0x6AC8, symSize: 0x48 } + - { offsetInCU: 0x391A, offset: 0x574E2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2B10, symBinAddr: 0x6B10, symSize: 0x1F0 } + - { offsetInCU: 0x39FA, offset: 0x575C2, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2D00, symBinAddr: 0x6D00, symSize: 0x1E8 } + - { offsetInCU: 0x3C0B, offset: 0x577D3, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x2EE8, symBinAddr: 0x6EE8, symSize: 0x360 } + - { offsetInCU: 0x3E17, offset: 0x579DF, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x3248, symBinAddr: 0x7248, symSize: 0x78 } + - { offsetInCU: 0x3EC7, offset: 0x57A8F, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x32C0, symBinAddr: 0x72C0, symSize: 0x8 } + - { offsetInCU: 0x3F13, offset: 0x57ADB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x32C8, symBinAddr: 0x72C8, symSize: 0x254 } + - { offsetInCU: 0x4166, offset: 0x57D2E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x351C, symBinAddr: 0x751C, symSize: 0x148 } + - { offsetInCU: 0x423A, offset: 0x57E02, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3664, symBinAddr: 0x7664, symSize: 0x34 } + - { offsetInCU: 0x4289, offset: 0x57E51, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x3698, symBinAddr: 0x7698, symSize: 0x1D4 } + - { offsetInCU: 0x43A2, offset: 0x57F6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x386C, symBinAddr: 0x786C, symSize: 0x12C } + - { offsetInCU: 0x4489, offset: 0x58051, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x3998, symBinAddr: 0x7998, symSize: 0x8 } + - { offsetInCU: 0x44EC, offset: 0x580B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x39A0, symBinAddr: 0x79A0, symSize: 0xC } + - { offsetInCU: 0x4561, offset: 0x58129, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x39AC, symBinAddr: 0x79AC, symSize: 0x200 } + - { offsetInCU: 0x4685, offset: 0x5824D, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x3BAC, symBinAddr: 0x7BAC, symSize: 0x1C4 } + - { offsetInCU: 0x47E8, offset: 0x583B0, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x3D70, symBinAddr: 0x7D70, symSize: 0x2D4 } + - { offsetInCU: 0x493C, offset: 0x58504, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x4044, symBinAddr: 0x8044, symSize: 0x34 } + - { offsetInCU: 0x499C, offset: 0x58564, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.153', symObjAddr: 0x4078, symBinAddr: 0x8078, symSize: 0x38 } + - { offsetInCU: 0x4A0D, offset: 0x585D5, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x40B0, symBinAddr: 0x80B0, symSize: 0x38 } + - { offsetInCU: 0x4A36, offset: 0x585FE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x40E8, symBinAddr: 0x80E8, symSize: 0x30 } + - { offsetInCU: 0x4A55, offset: 0x5861D, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x4118, symBinAddr: 0x8118, symSize: 0x54 } + - { offsetInCU: 0x4A7E, offset: 0x58646, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x416C, symBinAddr: 0x816C, symSize: 0x10 } + - { offsetInCU: 0x4AD4, offset: 0x5869C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x417C, symBinAddr: 0x817C, symSize: 0xC } + - { offsetInCU: 0x4B3A, offset: 0x58702, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x4188, symBinAddr: 0x8188, symSize: 0x208 } + - { offsetInCU: 0x4C4D, offset: 0x58815, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4390, symBinAddr: 0x8390, symSize: 0x1C8 } + - { offsetInCU: 0x4DA3, offset: 0x5896B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x4558, symBinAddr: 0x8558, symSize: 0x194 } + - { offsetInCU: 0x4E83, offset: 0x58A4B, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x46EC, symBinAddr: 0x86EC, symSize: 0x12C } + - { offsetInCU: 0x4F49, offset: 0x58B11, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4818, symBinAddr: 0x8818, symSize: 0x4C } + - { offsetInCU: 0x4F72, offset: 0x58B3A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4864, symBinAddr: 0x8864, symSize: 0x40 } + - { offsetInCU: 0x4F91, offset: 0x58B59, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x48A4, symBinAddr: 0x88A4, symSize: 0x12C } + - { offsetInCU: 0x503C, offset: 0x58C04, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x49D0, symBinAddr: 0x89D0, symSize: 0xF0 } + - { offsetInCU: 0x510A, offset: 0x58CD2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x4AC0, symBinAddr: 0x8AC0, symSize: 0x58 } + - { offsetInCU: 0x5160, offset: 0x58D28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x4B18, symBinAddr: 0x8B18, symSize: 0xFC } + - { offsetInCU: 0x526B, offset: 0x58E33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x4C14, symBinAddr: 0x8C14, symSize: 0xE4 } + - { offsetInCU: 0x534E, offset: 0x58F16, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x4CF8, symBinAddr: 0x8CF8, symSize: 0x114 } + - { offsetInCU: 0x540F, offset: 0x58FD7, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x4E0C, symBinAddr: 0x8E0C, symSize: 0xE4 } + - { offsetInCU: 0x5532, offset: 0x590FA, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x4EF0, symBinAddr: 0x8EF0, symSize: 0xD4 } + - { offsetInCU: 0x55E9, offset: 0x591B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x4FC4, symBinAddr: 0x8FC4, symSize: 0x7C } + - { offsetInCU: 0x5644, offset: 0x5920C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x5040, symBinAddr: 0x9040, symSize: 0x24 } + - { offsetInCU: 0x5687, offset: 0x5924F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5064, symBinAddr: 0x9064, symSize: 0x1DC } + - { offsetInCU: 0x57BD, offset: 0x59385, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5240, symBinAddr: 0x9240, symSize: 0x10 } + - { offsetInCU: 0x5832, offset: 0x593FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5250, symBinAddr: 0x9250, symSize: 0x158 } + - { offsetInCU: 0x59A0, offset: 0x59568, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x53A8, symBinAddr: 0x93A8, symSize: 0x9C } + - { offsetInCU: 0x5A9C, offset: 0x59664, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0xE6E0, symBinAddr: 0x1E34C, symSize: 0xC0 } + - { offsetInCU: 0x5AD5, offset: 0x5969D, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5444, symBinAddr: 0x9444, symSize: 0x34 } + - { offsetInCU: 0x5B28, offset: 0x596F0, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x5478, symBinAddr: 0x9478, symSize: 0x34 } + - { offsetInCU: 0x5B8C, offset: 0x59754, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x54AC, symBinAddr: 0x94AC, symSize: 0x310 } + - { offsetInCU: 0x5D1C, offset: 0x598E4, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x57BC, symBinAddr: 0x97BC, symSize: 0x84 } + - { offsetInCU: 0x5D5E, offset: 0x59926, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x5840, symBinAddr: 0x9840, symSize: 0x90 } + - { offsetInCU: 0x5DB1, offset: 0x59979, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x58D0, symBinAddr: 0x98D0, symSize: 0xA0 } + - { offsetInCU: 0x5E54, offset: 0x59A1C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x5970, symBinAddr: 0x9970, symSize: 0x34 } + - { offsetInCU: 0x5E9E, offset: 0x59A66, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x59A4, symBinAddr: 0x99A4, symSize: 0x10 } + - { offsetInCU: 0x5EC7, offset: 0x59A8F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x59B4, symBinAddr: 0x99B4, symSize: 0x44 } + - { offsetInCU: 0x5EF0, offset: 0x59AB8, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x59F8, symBinAddr: 0x99F8, symSize: 0x38 } + - { offsetInCU: 0x5F0F, offset: 0x59AD7, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.179', symObjAddr: 0x5A30, symBinAddr: 0x9A30, symSize: 0x9C } + - { offsetInCU: 0x5FA1, offset: 0x59B69, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.180', symObjAddr: 0x5ACC, symBinAddr: 0x9ACC, symSize: 0x34 } + - { offsetInCU: 0x5FEB, offset: 0x59BB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x5B00, symBinAddr: 0x9B00, symSize: 0x18 } + - { offsetInCU: 0x603D, offset: 0x59C05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x5B18, symBinAddr: 0x9B18, symSize: 0x108 } + - { offsetInCU: 0x6141, offset: 0x59D09, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x5C20, symBinAddr: 0x9C20, symSize: 0x48 } + - { offsetInCU: 0x619F, offset: 0x59D67, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x5C68, symBinAddr: 0x9C68, symSize: 0xC } + - { offsetInCU: 0x61C8, offset: 0x59D90, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x5C74, symBinAddr: 0x9C74, symSize: 0x8 } + - { offsetInCU: 0x61E7, offset: 0x59DAF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x5C7C, symBinAddr: 0x9C7C, symSize: 0x68 } + - { offsetInCU: 0x6238, offset: 0x59E00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x5CE4, symBinAddr: 0x9CE4, symSize: 0x44 } + - { offsetInCU: 0x626C, offset: 0x59E34, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x5D28, symBinAddr: 0x9D28, symSize: 0x324 } + - { offsetInCU: 0x64C9, offset: 0x5A091, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x604C, symBinAddr: 0xA04C, symSize: 0x34 } + - { offsetInCU: 0x6529, offset: 0x5A0F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6080, symBinAddr: 0xA080, symSize: 0x90 } + - { offsetInCU: 0x65A6, offset: 0x5A16E, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6110, symBinAddr: 0xA110, symSize: 0x3C } + - { offsetInCU: 0x65E8, offset: 0x5A1B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x614C, symBinAddr: 0xA14C, symSize: 0x58 } + - { offsetInCU: 0x6632, offset: 0x5A1FA, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x61A4, symBinAddr: 0xA1A4, symSize: 0x48 } + - { offsetInCU: 0x6674, offset: 0x5A23C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x61EC, symBinAddr: 0xA1EC, symSize: 0x58 } + - { offsetInCU: 0x66BE, offset: 0x5A286, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6244, symBinAddr: 0xA244, symSize: 0x48 } + - { offsetInCU: 0x6700, offset: 0x5A2C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x628C, symBinAddr: 0xA28C, symSize: 0x58 } + - { offsetInCU: 0x674A, offset: 0x5A312, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x62E4, symBinAddr: 0xA2E4, symSize: 0x48 } + - { offsetInCU: 0x678C, offset: 0x5A354, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x632C, symBinAddr: 0xA32C, symSize: 0x70 } + - { offsetInCU: 0x67D1, offset: 0x5A399, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x639C, symBinAddr: 0xA39C, symSize: 0xD4 } + - { offsetInCU: 0x6827, offset: 0x5A3EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6470, symBinAddr: 0xA470, symSize: 0xD4 } + - { offsetInCU: 0x687D, offset: 0x5A445, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6544, symBinAddr: 0xA544, symSize: 0xF4 } + - { offsetInCU: 0x690E, offset: 0x5A4D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x6638, symBinAddr: 0xA638, symSize: 0x118 } + - { offsetInCU: 0x6986, offset: 0x5A54E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x6750, symBinAddr: 0xA750, symSize: 0x100 } + - { offsetInCU: 0x69DC, offset: 0x5A5A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x6850, symBinAddr: 0xA850, symSize: 0xC0 } + - { offsetInCU: 0x6A43, offset: 0x5A60B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x6910, symBinAddr: 0xA910, symSize: 0x10C } + - { offsetInCU: 0x6A99, offset: 0x5A661, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x6A1C, symBinAddr: 0xAA1C, symSize: 0x10C } + - { offsetInCU: 0x6AEF, offset: 0x5A6B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x6B28, symBinAddr: 0xAB28, symSize: 0x10C } + - { offsetInCU: 0x6B45, offset: 0x5A70D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x6C34, symBinAddr: 0xAC34, symSize: 0x10C } + - { offsetInCU: 0x6B9B, offset: 0x5A763, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x6D40, symBinAddr: 0xAD40, symSize: 0x10C } + - { offsetInCU: 0x6BF1, offset: 0x5A7B9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x6E4C, symBinAddr: 0xAE4C, symSize: 0xD4 } + - { offsetInCU: 0x6C47, offset: 0x5A80F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x6F20, symBinAddr: 0xAF20, symSize: 0xD8 } + - { offsetInCU: 0x6CDD, offset: 0x5A8A5, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x6FF8, symBinAddr: 0xAFF8, symSize: 0x1C } + - { offsetInCU: 0x6D38, offset: 0x5A900, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7014, symBinAddr: 0xB014, symSize: 0xD8 } + - { offsetInCU: 0x6DCE, offset: 0x5A996, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x70EC, symBinAddr: 0xB0EC, symSize: 0x18 } + - { offsetInCU: 0x6E29, offset: 0x5A9F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7104, symBinAddr: 0xB104, symSize: 0x10C } + - { offsetInCU: 0x6EA9, offset: 0x5AA71, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7210, symBinAddr: 0xB210, symSize: 0x78 } + - { offsetInCU: 0x6EFC, offset: 0x5AAC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x7288, symBinAddr: 0xB288, symSize: 0xE4 } + - { offsetInCU: 0x6F7C, offset: 0x5AB44, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x736C, symBinAddr: 0xB36C, symSize: 0x50 } + - { offsetInCU: 0x6FCF, offset: 0x5AB97, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x73BC, symBinAddr: 0xB3BC, symSize: 0xEC } + - { offsetInCU: 0x704F, offset: 0x5AC17, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x74A8, symBinAddr: 0xB4A8, symSize: 0x5C } + - { offsetInCU: 0x70A2, offset: 0x5AC6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7504, symBinAddr: 0xB504, symSize: 0x10C } + - { offsetInCU: 0x7122, offset: 0x5ACEA, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x7610, symBinAddr: 0xB610, symSize: 0x78 } + - { offsetInCU: 0x7175, offset: 0x5AD3D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x7688, symBinAddr: 0xB688, symSize: 0xE4 } + - { offsetInCU: 0x71F5, offset: 0x5ADBD, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x776C, symBinAddr: 0xB76C, symSize: 0x50 } + - { offsetInCU: 0x7248, offset: 0x5AE10, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x77BC, symBinAddr: 0xB7BC, symSize: 0x30 } + - { offsetInCU: 0x7280, offset: 0x5AE48, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x77EC, symBinAddr: 0xB7EC, symSize: 0x30 } + - { offsetInCU: 0x72B8, offset: 0x5AE80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x781C, symBinAddr: 0xB81C, symSize: 0x18 } + - { offsetInCU: 0x72F0, offset: 0x5AEB8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x7834, symBinAddr: 0xB834, symSize: 0x18 } + - { offsetInCU: 0x7328, offset: 0x5AEF0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x784C, symBinAddr: 0xB84C, symSize: 0x30 } + - { offsetInCU: 0x7360, offset: 0x5AF28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x787C, symBinAddr: 0xB87C, symSize: 0x30 } + - { offsetInCU: 0x7398, offset: 0x5AF60, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x78AC, symBinAddr: 0xB8AC, symSize: 0x18 } + - { offsetInCU: 0x73D0, offset: 0x5AF98, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x78C4, symBinAddr: 0xB8C4, symSize: 0x18 } + - { offsetInCU: 0x7408, offset: 0x5AFD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x78DC, symBinAddr: 0xB8DC, symSize: 0x90 } + - { offsetInCU: 0x7497, offset: 0x5B05F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x796C, symBinAddr: 0xB96C, symSize: 0x64 } + - { offsetInCU: 0x7526, offset: 0x5B0EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x79D0, symBinAddr: 0xB9D0, symSize: 0x88 } + - { offsetInCU: 0x75B5, offset: 0x5B17D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x7A58, symBinAddr: 0xBA58, symSize: 0x5C } + - { offsetInCU: 0x7644, offset: 0x5B20C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x7AB4, symBinAddr: 0xBAB4, symSize: 0x90 } + - { offsetInCU: 0x76D3, offset: 0x5B29B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x7B44, symBinAddr: 0xBB44, symSize: 0x90 } + - { offsetInCU: 0x7783, offset: 0x5B34B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x7BD4, symBinAddr: 0xBBD4, symSize: 0x64 } + - { offsetInCU: 0x7812, offset: 0x5B3DA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x7C38, symBinAddr: 0xBC38, symSize: 0x88 } + - { offsetInCU: 0x78A1, offset: 0x5B469, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x7CC0, symBinAddr: 0xBCC0, symSize: 0x5C } + - { offsetInCU: 0x7930, offset: 0x5B4F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x7D1C, symBinAddr: 0xBD1C, symSize: 0xFC } + - { offsetInCU: 0x79C6, offset: 0x5B58E, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x7E18, symBinAddr: 0xBE18, symSize: 0x100 } + - { offsetInCU: 0x7AB3, offset: 0x5B67B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x7F18, symBinAddr: 0xBF18, symSize: 0xFC } + - { offsetInCU: 0x7B49, offset: 0x5B711, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8014, symBinAddr: 0xC014, symSize: 0x100 } + - { offsetInCU: 0x7C36, offset: 0x5B7FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8114, symBinAddr: 0xC114, symSize: 0xB4 } + - { offsetInCU: 0x7CB6, offset: 0x5B87E, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x81C8, symBinAddr: 0xC1C8, symSize: 0x1C } + - { offsetInCU: 0x7D11, offset: 0x5B8D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x81E4, symBinAddr: 0xC1E4, symSize: 0xB4 } + - { offsetInCU: 0x7D91, offset: 0x5B959, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x8298, symBinAddr: 0xC298, symSize: 0x1C } + - { offsetInCU: 0x7DEC, offset: 0x5B9B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x82B4, symBinAddr: 0xC2B4, symSize: 0xAC } + - { offsetInCU: 0x7E6C, offset: 0x5BA34, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8360, symBinAddr: 0xC360, symSize: 0x18 } + - { offsetInCU: 0x7EC7, offset: 0x5BA8F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x8378, symBinAddr: 0xC378, symSize: 0x3FC } + - { offsetInCU: 0x81CE, offset: 0x5BD96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x8774, symBinAddr: 0xC774, symSize: 0xDC } + - { offsetInCU: 0x8245, offset: 0x5BE0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x8850, symBinAddr: 0xC850, symSize: 0x1F0 } + - { offsetInCU: 0x835F, offset: 0x5BF27, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x8A40, symBinAddr: 0xCA40, symSize: 0x64 } + - { offsetInCU: 0x83CB, offset: 0x5BF93, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x8AA4, symBinAddr: 0xCAA4, symSize: 0x54 } + - { offsetInCU: 0x8429, offset: 0x5BFF1, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x8AF8, symBinAddr: 0xCAF8, symSize: 0x24 } + - { offsetInCU: 0x8486, offset: 0x5C04E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x8B1C, symBinAddr: 0xCB1C, symSize: 0x10 } + - { offsetInCU: 0x84AF, offset: 0x5C077, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x8B2C, symBinAddr: 0xCB2C, symSize: 0xC } + - { offsetInCU: 0x84CE, offset: 0x5C096, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.216', symObjAddr: 0x8B38, symBinAddr: 0xCB38, symSize: 0x24 } + - { offsetInCU: 0x852B, offset: 0x5C0F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x8B5C, symBinAddr: 0xCB5C, symSize: 0x18 } + - { offsetInCU: 0x8563, offset: 0x5C12B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x8B74, symBinAddr: 0xCB74, symSize: 0x18 } + - { offsetInCU: 0x859B, offset: 0x5C163, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x8B8C, symBinAddr: 0xCB8C, symSize: 0x38 } + - { offsetInCU: 0x85EC, offset: 0x5C1B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x8BC4, symBinAddr: 0xCBC4, symSize: 0x38 } + - { offsetInCU: 0x862E, offset: 0x5C1F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x8BFC, symBinAddr: 0xCBFC, symSize: 0x38 } + - { offsetInCU: 0x8670, offset: 0x5C238, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x8C34, symBinAddr: 0xCC34, symSize: 0x38 } + - { offsetInCU: 0x86B2, offset: 0x5C27A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x8C6C, symBinAddr: 0xCC6C, symSize: 0x14 } + - { offsetInCU: 0x8705, offset: 0x5C2CD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8C80, symBinAddr: 0xCC80, symSize: 0xC } + - { offsetInCU: 0x8776, offset: 0x5C33E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8C8C, symBinAddr: 0xCC8C, symSize: 0xF0 } + - { offsetInCU: 0x882D, offset: 0x5C3F5, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x8D7C, symBinAddr: 0xCD7C, symSize: 0x54 } + - { offsetInCU: 0x8880, offset: 0x5C448, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x8DD0, symBinAddr: 0xCDD0, symSize: 0x10 } + - { offsetInCU: 0x88E2, offset: 0x5C4AA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8DE0, symBinAddr: 0xCDE0, symSize: 0xF8 } + - { offsetInCU: 0x8999, offset: 0x5C561, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x8ED8, symBinAddr: 0xCED8, symSize: 0x54 } + - { offsetInCU: 0x89EC, offset: 0x5C5B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x8F2C, symBinAddr: 0xCF2C, symSize: 0x14 } + - { offsetInCU: 0x8A4E, offset: 0x5C616, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8F40, symBinAddr: 0xCF40, symSize: 0xC } + - { offsetInCU: 0x8ACE, offset: 0x5C696, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x8F4C, symBinAddr: 0xCF4C, symSize: 0x14 } + - { offsetInCU: 0x8B41, offset: 0x5C709, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8F60, symBinAddr: 0xCF60, symSize: 0x12C } + - { offsetInCU: 0x8C09, offset: 0x5C7D1, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x908C, symBinAddr: 0xD08C, symSize: 0x54 } + - { offsetInCU: 0x8C5C, offset: 0x5C824, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x90E0, symBinAddr: 0xD0E0, symSize: 0xE8 } + - { offsetInCU: 0x8D25, offset: 0x5C8ED, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x91C8, symBinAddr: 0xD1C8, symSize: 0xD0 } + - { offsetInCU: 0x8DDC, offset: 0x5C9A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x9298, symBinAddr: 0xD298, symSize: 0x130 } + - { offsetInCU: 0x8E10, offset: 0x5C9D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0x93C8, symBinAddr: 0xD3C8, symSize: 0x194 } + - { offsetInCU: 0x8FC0, offset: 0x5CB88, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0x955C, symBinAddr: 0xD55C, symSize: 0x70 } + - { offsetInCU: 0x9061, offset: 0x5CC29, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0x95CC, symBinAddr: 0xD5CC, symSize: 0x944 } + - { offsetInCU: 0x942E, offset: 0x5CFF6, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0x9F10, symBinAddr: 0xDF10, symSize: 0x34 } + - { offsetInCU: 0x94A3, offset: 0x5D06B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0x9F44, symBinAddr: 0xDF44, symSize: 0x200 } + - { offsetInCU: 0x95A5, offset: 0x5D16D, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xA144, symBinAddr: 0xE144, symSize: 0x30 } + - { offsetInCU: 0x95F8, offset: 0x5D1C0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xA174, symBinAddr: 0xE174, symSize: 0x188 } + - { offsetInCU: 0x9716, offset: 0x5D2DE, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xA2FC, symBinAddr: 0xE2FC, symSize: 0x38 } + - { offsetInCU: 0x978B, offset: 0x5D353, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xA334, symBinAddr: 0xE334, symSize: 0x38 } + - { offsetInCU: 0x97B4, offset: 0x5D37C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xA36C, symBinAddr: 0xE36C, symSize: 0x3C } + - { offsetInCU: 0x97F6, offset: 0x5D3BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xA3A8, symBinAddr: 0xE3A8, symSize: 0x108 } + - { offsetInCU: 0x98DC, offset: 0x5D4A4, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xA4B0, symBinAddr: 0xE4B0, symSize: 0x48 } + - { offsetInCU: 0x993A, offset: 0x5D502, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xA4F8, symBinAddr: 0xE4F8, symSize: 0xF4 } + - { offsetInCU: 0x99B8, offset: 0x5D580, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xA5EC, symBinAddr: 0xE5EC, symSize: 0x90 } + - { offsetInCU: 0x9A52, offset: 0x5D61A, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xA67C, symBinAddr: 0xE67C, symSize: 0x34 } + - { offsetInCU: 0x9AA5, offset: 0x5D66D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xA6B0, symBinAddr: 0xE6B0, symSize: 0xB0 } + - { offsetInCU: 0x9B34, offset: 0x5D6FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xA760, symBinAddr: 0xE760, symSize: 0xCC } + - { offsetInCU: 0x9BC9, offset: 0x5D791, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xA82C, symBinAddr: 0xE82C, symSize: 0x54 } + - { offsetInCU: 0x9C1C, offset: 0x5D7E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xA880, symBinAddr: 0xE880, symSize: 0xE8 } + - { offsetInCU: 0x9CE5, offset: 0x5D8AD, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xA968, symBinAddr: 0xE968, symSize: 0xCC } + - { offsetInCU: 0x9D9C, offset: 0x5D964, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xAA34, symBinAddr: 0xEA34, symSize: 0xFC } + - { offsetInCU: 0x9E4D, offset: 0x5DA15, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xB020, symBinAddr: 0xF020, symSize: 0x30 } + - { offsetInCU: 0x9E8F, offset: 0x5DA57, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xB050, symBinAddr: 0xF050, symSize: 0x34 } + - { offsetInCU: 0x9F04, offset: 0x5DACC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xB084, symBinAddr: 0xF084, symSize: 0xC0 } + - { offsetInCU: 0x9F86, offset: 0x5DB4E, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xB144, symBinAddr: 0xF144, symSize: 0x34 } + - { offsetInCU: 0x9FEA, offset: 0x5DBB2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xB178, symBinAddr: 0xF178, symSize: 0x3C } + - { offsetInCU: 0xA02C, offset: 0x5DBF4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xB1B4, symBinAddr: 0xF1B4, symSize: 0x108 } + - { offsetInCU: 0xA112, offset: 0x5DCDA, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xB2BC, symBinAddr: 0xF2BC, symSize: 0x48 } + - { offsetInCU: 0xA170, offset: 0x5DD38, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xB304, symBinAddr: 0xF304, symSize: 0xF4 } + - { offsetInCU: 0xA1EE, offset: 0x5DDB6, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xB3F8, symBinAddr: 0xF3F8, symSize: 0x8C } + - { offsetInCU: 0xA288, offset: 0x5DE50, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xB484, symBinAddr: 0xF484, symSize: 0x34 } + - { offsetInCU: 0xA2DB, offset: 0x5DEA3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xB4B8, symBinAddr: 0xF4B8, symSize: 0xB0 } + - { offsetInCU: 0xA36A, offset: 0x5DF32, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xB568, symBinAddr: 0xF568, symSize: 0xC8 } + - { offsetInCU: 0xA3DD, offset: 0x5DFA5, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xB630, symBinAddr: 0xF630, symSize: 0x78 } + - { offsetInCU: 0xA430, offset: 0x5DFF8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xB6A8, symBinAddr: 0xF6A8, symSize: 0xFC } + - { offsetInCU: 0xA4BA, offset: 0x5E082, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xB7A4, symBinAddr: 0xF7A4, symSize: 0x1BC } + - { offsetInCU: 0xA669, offset: 0x5E231, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xB960, symBinAddr: 0xF960, symSize: 0xCC } + - { offsetInCU: 0xA73F, offset: 0x5E307, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xBA2C, symBinAddr: 0xFA2C, symSize: 0x978 } + - { offsetInCU: 0xABE0, offset: 0x5E7A8, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xC3A4, symBinAddr: 0x103A4, symSize: 0xC } + - { offsetInCU: 0xAC3C, offset: 0x5E804, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xC3B0, symBinAddr: 0x103B0, symSize: 0xC } + - { offsetInCU: 0xAC98, offset: 0x5E860, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xC3BC, symBinAddr: 0x103BC, symSize: 0x374 } + - { offsetInCU: 0xAE2B, offset: 0x5E9F3, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xC730, symBinAddr: 0x10730, symSize: 0x30 } + - { offsetInCU: 0xAE7E, offset: 0x5EA46, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xC760, symBinAddr: 0x10760, symSize: 0xB0 } + - { offsetInCU: 0xAF19, offset: 0x5EAE1, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xC810, symBinAddr: 0x10810, symSize: 0x78 } + - { offsetInCU: 0xAFB8, offset: 0x5EB80, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xC888, symBinAddr: 0x10888, symSize: 0x38 } + - { offsetInCU: 0xAFE1, offset: 0x5EBA9, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xC8C0, symBinAddr: 0x108C0, symSize: 0x2C } + - { offsetInCU: 0xB000, offset: 0x5EBC8, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xC8EC, symBinAddr: 0x108EC, symSize: 0x40 } + - { offsetInCU: 0xB029, offset: 0x5EBF1, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xC92C, symBinAddr: 0x1092C, symSize: 0x34 } + - { offsetInCU: 0xB048, offset: 0x5EC10, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.305', symObjAddr: 0xC960, symBinAddr: 0x10960, symSize: 0x3C } + - { offsetInCU: 0xB0BD, offset: 0x5EC85, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xC99C, symBinAddr: 0x1099C, symSize: 0x4C } + - { offsetInCU: 0xB0E6, offset: 0x5ECAE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xC9E8, symBinAddr: 0x109E8, symSize: 0x3C } + - { offsetInCU: 0xB105, offset: 0x5ECCD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xCA24, symBinAddr: 0x10A24, symSize: 0x78 } + - { offsetInCU: 0xB15B, offset: 0x5ED23, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xCA9C, symBinAddr: 0x10A9C, symSize: 0xE8 } + - { offsetInCU: 0xB1CC, offset: 0x5ED94, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xCB84, symBinAddr: 0x10B84, symSize: 0x30 } + - { offsetInCU: 0xB21F, offset: 0x5EDE7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xCBB4, symBinAddr: 0x10BB4, symSize: 0x20 } + - { offsetInCU: 0xB260, offset: 0x5EE28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xCBD4, symBinAddr: 0x10BD4, symSize: 0x170 } + - { offsetInCU: 0xB360, offset: 0x5EF28, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xCD44, symBinAddr: 0x10D44, symSize: 0x4 } + - { offsetInCU: 0xB3D7, offset: 0x5EF9F, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCDD4, symBinAddr: 0x10DD4, symSize: 0x38 } + - { offsetInCU: 0xB415, offset: 0x5EFDD, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xCE0C, symBinAddr: 0x10E0C, symSize: 0x78 } + - { offsetInCU: 0xB457, offset: 0x5F01F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xCE84, symBinAddr: 0x10E84, symSize: 0x78 } + - { offsetInCU: 0xB4D5, offset: 0x5F09D, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCEFC, symBinAddr: 0x10EFC, symSize: 0xB8 } + - { offsetInCU: 0xB517, offset: 0x5F0DF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xCFB4, symBinAddr: 0x10FB4, symSize: 0x164 } + - { offsetInCU: 0xB59E, offset: 0x5F166, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xD118, symBinAddr: 0x11118, symSize: 0x68 } + - { offsetInCU: 0xB668, offset: 0x5F230, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xD180, symBinAddr: 0x11180, symSize: 0x68 } + - { offsetInCU: 0xB726, offset: 0x5F2EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xD1E8, symBinAddr: 0x111E8, symSize: 0x104 } + - { offsetInCU: 0xB815, offset: 0x5F3DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xD2EC, symBinAddr: 0x112EC, symSize: 0x8C } + - { offsetInCU: 0xB8AC, offset: 0x5F474, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xD378, symBinAddr: 0x11378, symSize: 0x138 } + - { offsetInCU: 0xB975, offset: 0x5F53D, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xD4B0, symBinAddr: 0x114B0, symSize: 0x138 } + - { offsetInCU: 0xBA3E, offset: 0x5F606, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xD5E8, symBinAddr: 0x115E8, symSize: 0x84 } + - { offsetInCU: 0xBA8C, offset: 0x5F654, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xD66C, symBinAddr: 0x1166C, symSize: 0x3C } + - { offsetInCU: 0xBACE, offset: 0x5F696, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xD6A8, symBinAddr: 0x116A8, symSize: 0x84 } + - { offsetInCU: 0xBB18, offset: 0x5F6E0, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xD72C, symBinAddr: 0x1172C, symSize: 0x3C } + - { offsetInCU: 0xBB5A, offset: 0x5F722, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xD768, symBinAddr: 0x11768, symSize: 0x64 } + - { offsetInCU: 0xBC61, offset: 0x5F829, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xD7CC, symBinAddr: 0x117CC, symSize: 0xB0 } + - { offsetInCU: 0xBCE1, offset: 0x5F8A9, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xD87C, symBinAddr: 0x1187C, symSize: 0x1C } + - { offsetInCU: 0xBD3C, offset: 0x5F904, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xD898, symBinAddr: 0x11898, symSize: 0x94 } + - { offsetInCU: 0xBDC6, offset: 0x5F98E, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xD92C, symBinAddr: 0x1192C, symSize: 0x24 } + - { offsetInCU: 0xBE1B, offset: 0x5F9E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xD950, symBinAddr: 0x11950, symSize: 0x18 } + - { offsetInCU: 0xBE96, offset: 0x5FA5E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xD968, symBinAddr: 0x11968, symSize: 0x14 } + - { offsetInCU: 0xBEFE, offset: 0x5FAC6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xD97C, symBinAddr: 0x1197C, symSize: 0x48 } + - { offsetInCU: 0xBF7B, offset: 0x5FB43, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xD9C4, symBinAddr: 0x119C4, symSize: 0x40 } + - { offsetInCU: 0xBFC1, offset: 0x5FB89, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xDA04, symBinAddr: 0x11A04, symSize: 0x34 } + - { offsetInCU: 0xC007, offset: 0x5FBCF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xDA38, symBinAddr: 0x11A38, symSize: 0x34 } + - { offsetInCU: 0xC04D, offset: 0x5FC15, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xDA6C, symBinAddr: 0x11A6C, symSize: 0x3C } + - { offsetInCU: 0xC093, offset: 0x5FC5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xDAA8, symBinAddr: 0x11AA8, symSize: 0x3C } + - { offsetInCU: 0xC0D9, offset: 0x5FCA1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xDAE4, symBinAddr: 0x11AE4, symSize: 0x9C } + - { offsetInCU: 0xC176, offset: 0x5FD3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xDB80, symBinAddr: 0x11B80, symSize: 0x3C } + - { offsetInCU: 0xC1BC, offset: 0x5FD84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xDBBC, symBinAddr: 0x11BBC, symSize: 0x3C } + - { offsetInCU: 0xC202, offset: 0x5FDCA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xDBF8, symBinAddr: 0x11BF8, symSize: 0x2C } + - { offsetInCU: 0xC248, offset: 0x5FE10, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xDC24, symBinAddr: 0x11C24, symSize: 0x318 } + - { offsetInCU: 0xC48E, offset: 0x60056, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xDF3C, symBinAddr: 0x11F3C, symSize: 0x7C } + - { offsetInCU: 0xC505, offset: 0x600CD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xDFB8, symBinAddr: 0x11FB8, symSize: 0x7C } + - { offsetInCU: 0xC57D, offset: 0x60145, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xE034, symBinAddr: 0x12034, symSize: 0x10 } + - { offsetInCU: 0xC5C0, offset: 0x60188, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xE044, symBinAddr: 0x12044, symSize: 0x10 } + - { offsetInCU: 0xC603, offset: 0x601CB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xE054, symBinAddr: 0x12054, symSize: 0x5C } + - { offsetInCU: 0xC659, offset: 0x60221, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xE0B0, symBinAddr: 0x120B0, symSize: 0x6C } + - { offsetInCU: 0xC6B3, offset: 0x6027B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xE11C, symBinAddr: 0x1211C, symSize: 0x38 } + - { offsetInCU: 0xC70C, offset: 0x602D4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xE154, symBinAddr: 0x12154, symSize: 0x60 } + - { offsetInCU: 0xC771, offset: 0x60339, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xE1B4, symBinAddr: 0x121B4, symSize: 0x60 } + - { offsetInCU: 0xC7D6, offset: 0x6039E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xE214, symBinAddr: 0x12214, symSize: 0xC } + - { offsetInCU: 0xC83B, offset: 0x60403, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xE220, symBinAddr: 0x12220, symSize: 0x184 } + - { offsetInCU: 0xC915, offset: 0x604DD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xE3A4, symBinAddr: 0x123A4, symSize: 0x18 } + - { offsetInCU: 0xC949, offset: 0x60511, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xE3BC, symBinAddr: 0x123BC, symSize: 0x18 } + - { offsetInCU: 0xC97D, offset: 0x60545, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xE3D4, symBinAddr: 0x123D4, symSize: 0x18 } + - { offsetInCU: 0xC9B1, offset: 0x60579, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xE3EC, symBinAddr: 0x123EC, symSize: 0x18 } + - { offsetInCU: 0xC9E5, offset: 0x605AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xE404, symBinAddr: 0x12404, symSize: 0x11C } + - { offsetInCU: 0xCA19, offset: 0x605E1, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xE520, symBinAddr: 0x12520, symSize: 0x7C } + - { offsetInCU: 0xCA76, offset: 0x6063E, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0xE59C, symBinAddr: 0x1259C, symSize: 0x5C } + - { offsetInCU: 0xCAD6, offset: 0x6069E, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xE5F8, symBinAddr: 0x125F8, symSize: 0x7C } + - { offsetInCU: 0xCB46, offset: 0x6070E, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0xE674, symBinAddr: 0x12674, symSize: 0x5C } + - { offsetInCU: 0x27, offset: 0x64345, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x126D0, symSize: 0x18 } + - { offsetInCU: 0x41, offset: 0x6435F, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xD4A8, symBinAddr: 0x28C10, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x6437F, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xD4B0, symBinAddr: 0x28C18, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x64395, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xD4B8, symBinAddr: 0x28C20, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x643AB, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xD4C0, symBinAddr: 0x28C28, symSize: 0x0 } + - { offsetInCU: 0x97, offset: 0x643B5, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xA7F0, symBinAddr: 0x1CBD0, symSize: 0x6C } + - { offsetInCU: 0xBF, offset: 0x643DD, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x40160, symBinAddr: 0x2E950, symSize: 0x0 } + - { offsetInCU: 0x125, offset: 0x64443, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x40168, symBinAddr: 0x2E958, symSize: 0x0 } + - { offsetInCU: 0x65E, offset: 0x6497C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x126D0, symSize: 0x18 } + - { offsetInCU: 0x696, offset: 0x649B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0x18, symBinAddr: 0x126E8, symSize: 0x94 } + - { offsetInCU: 0x701, offset: 0x64A1F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0xAC, symBinAddr: 0x1277C, symSize: 0x48 } + - { offsetInCU: 0x735, offset: 0x64A53, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xF4, symBinAddr: 0x127C4, symSize: 0x34 } + - { offsetInCU: 0x76D, offset: 0x64A8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x128, symBinAddr: 0x127F8, symSize: 0x30 } + - { offsetInCU: 0x7A1, offset: 0x64ABF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x158, symBinAddr: 0x12828, symSize: 0x10 } + - { offsetInCU: 0x7D7, offset: 0x64AF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x168, symBinAddr: 0x12838, symSize: 0x10 } + - { offsetInCU: 0x820, offset: 0x64B3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x178, symBinAddr: 0x12848, symSize: 0x8 } + - { offsetInCU: 0x874, offset: 0x64B92, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x180, symBinAddr: 0x12850, symSize: 0x190 } + - { offsetInCU: 0x96E, offset: 0x64C8C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x310, symBinAddr: 0x129E0, symSize: 0xE4 } + - { offsetInCU: 0x9F3, offset: 0x64D11, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x3F4, symBinAddr: 0x12AC4, symSize: 0xC } + - { offsetInCU: 0xA35, offset: 0x64D53, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x410, symBinAddr: 0x12AD0, symSize: 0xD0 } + - { offsetInCU: 0xAB5, offset: 0x64DD3, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x4E0, symBinAddr: 0x12BA0, symSize: 0x10 } + - { offsetInCU: 0xADA, offset: 0x64DF8, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x4F0, symBinAddr: 0x12BB0, symSize: 0x8 } + - { offsetInCU: 0xAF9, offset: 0x64E17, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x4F8, symBinAddr: 0x12BB8, symSize: 0x3C } + - { offsetInCU: 0xB4C, offset: 0x64E6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x594, symBinAddr: 0x12BF4, symSize: 0xCC } + - { offsetInCU: 0xC04, offset: 0x64F22, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x660, symBinAddr: 0x12CC0, symSize: 0xC } + - { offsetInCU: 0xC57, offset: 0x64F75, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x6BC, symBinAddr: 0x12CCC, symSize: 0x8 } + - { offsetInCU: 0xC98, offset: 0x64FB6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x6C4, symBinAddr: 0x12CD4, symSize: 0x8 } + - { offsetInCU: 0xCD9, offset: 0x64FF7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x6CC, symBinAddr: 0x12CDC, symSize: 0xD0 } + - { offsetInCU: 0xD59, offset: 0x65077, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x79C, symBinAddr: 0x12DAC, symSize: 0x14 } + - { offsetInCU: 0xDAC, offset: 0x650CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x7B0, symBinAddr: 0x12DC0, symSize: 0xCC } + - { offsetInCU: 0xE51, offset: 0x6516F, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x87C, symBinAddr: 0x12E8C, symSize: 0xC } + - { offsetInCU: 0xEA4, offset: 0x651C2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x888, symBinAddr: 0x12E98, symSize: 0x8 } + - { offsetInCU: 0xEE5, offset: 0x65203, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x890, symBinAddr: 0x12EA0, symSize: 0x8 } + - { offsetInCU: 0xF26, offset: 0x65244, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x898, symBinAddr: 0x12EA8, symSize: 0x138 } + - { offsetInCU: 0xFDB, offset: 0x652F9, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x9D0, symBinAddr: 0x12FE0, symSize: 0x54 } + - { offsetInCU: 0x103F, offset: 0x6535D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xAA0, symBinAddr: 0x13034, symSize: 0x10C } + - { offsetInCU: 0x10F5, offset: 0x65413, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xBAC, symBinAddr: 0x13140, symSize: 0x34 } + - { offsetInCU: 0x1159, offset: 0x65477, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xC40, symBinAddr: 0x13174, symSize: 0x8 } + - { offsetInCU: 0x11A9, offset: 0x654C7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xC48, symBinAddr: 0x1317C, symSize: 0x8 } + - { offsetInCU: 0x11F9, offset: 0x65517, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xC50, symBinAddr: 0x13184, symSize: 0xD8 } + - { offsetInCU: 0x128F, offset: 0x655AD, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xD28, symBinAddr: 0x1325C, symSize: 0x1C } + - { offsetInCU: 0x12EA, offset: 0x65608, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xD44, symBinAddr: 0x13278, symSize: 0x94 } + - { offsetInCU: 0x1374, offset: 0x65692, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xDD8, symBinAddr: 0x1330C, symSize: 0x20 } + - { offsetInCU: 0x13C9, offset: 0x656E7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xDF8, symBinAddr: 0x1332C, symSize: 0xD8 } + - { offsetInCU: 0x145F, offset: 0x6577D, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xED0, symBinAddr: 0x13404, symSize: 0x1C } + - { offsetInCU: 0x14BA, offset: 0x657D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xEEC, symBinAddr: 0x13420, symSize: 0x94 } + - { offsetInCU: 0x1544, offset: 0x65862, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0xF80, symBinAddr: 0x134B4, symSize: 0x24 } + - { offsetInCU: 0x1599, offset: 0x658B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0xFA4, symBinAddr: 0x134D8, symSize: 0xD8 } + - { offsetInCU: 0x162F, offset: 0x6594D, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x107C, symBinAddr: 0x135B0, symSize: 0x18 } + - { offsetInCU: 0x168A, offset: 0x659A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1094, symBinAddr: 0x135C8, symSize: 0xD8 } + - { offsetInCU: 0x1720, offset: 0x65A3E, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x116C, symBinAddr: 0x136A0, symSize: 0x18 } + - { offsetInCU: 0x177B, offset: 0x65A99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x1184, symBinAddr: 0x136B8, symSize: 0xD8 } + - { offsetInCU: 0x1811, offset: 0x65B2F, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x125C, symBinAddr: 0x13790, symSize: 0x1C } + - { offsetInCU: 0x186C, offset: 0x65B8A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1278, symBinAddr: 0x137AC, symSize: 0x90 } + - { offsetInCU: 0x18E9, offset: 0x65C07, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x1308, symBinAddr: 0x1383C, symSize: 0x24 } + - { offsetInCU: 0x192B, offset: 0x65C49, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x132C, symBinAddr: 0x13860, symSize: 0x90 } + - { offsetInCU: 0x19A8, offset: 0x65CC6, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x13BC, symBinAddr: 0x138F0, symSize: 0x24 } + - { offsetInCU: 0x19EA, offset: 0x65D08, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x13E0, symBinAddr: 0x13914, symSize: 0x90 } + - { offsetInCU: 0x1A67, offset: 0x65D85, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1470, symBinAddr: 0x139A4, symSize: 0x24 } + - { offsetInCU: 0x1AA9, offset: 0x65DC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1494, symBinAddr: 0x139C8, symSize: 0xD8 } + - { offsetInCU: 0x1B3F, offset: 0x65E5D, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x156C, symBinAddr: 0x13AA0, symSize: 0x14 } + - { offsetInCU: 0x1B9A, offset: 0x65EB8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1580, symBinAddr: 0x13AB4, symSize: 0x94 } + - { offsetInCU: 0x1C28, offset: 0x65F46, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x1614, symBinAddr: 0x13B48, symSize: 0x10 } + - { offsetInCU: 0x1C7D, offset: 0x65F9B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x1624, symBinAddr: 0x13B58, symSize: 0xD8 } + - { offsetInCU: 0x1D13, offset: 0x66031, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x16FC, symBinAddr: 0x13C30, symSize: 0x14 } + - { offsetInCU: 0x1D6E, offset: 0x6608C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x1710, symBinAddr: 0x13C44, symSize: 0x94 } + - { offsetInCU: 0x1DFC, offset: 0x6611A, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x17A4, symBinAddr: 0x13CD8, symSize: 0x10 } + - { offsetInCU: 0x1E51, offset: 0x6616F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x17B4, symBinAddr: 0x13CE8, symSize: 0x94 } + - { offsetInCU: 0x1EDF, offset: 0x661FD, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x1848, symBinAddr: 0x13D7C, symSize: 0x10 } + - { offsetInCU: 0x1F34, offset: 0x66252, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x1858, symBinAddr: 0x13D8C, symSize: 0xD8 } + - { offsetInCU: 0x1FCA, offset: 0x662E8, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x1930, symBinAddr: 0x13E64, symSize: 0x14 } + - { offsetInCU: 0x2025, offset: 0x66343, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x1944, symBinAddr: 0x13E78, symSize: 0xFC } + - { offsetInCU: 0x20BB, offset: 0x663D9, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1A40, symBinAddr: 0x13F74, symSize: 0x14 } + - { offsetInCU: 0x210E, offset: 0x6642C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1A54, symBinAddr: 0x13F88, symSize: 0xBC } + - { offsetInCU: 0x219C, offset: 0x664BA, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1B10, symBinAddr: 0x14044, symSize: 0x1C } + - { offsetInCU: 0x21EF, offset: 0x6650D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1B2C, symBinAddr: 0x14060, symSize: 0xF4 } + - { offsetInCU: 0x2282, offset: 0x665A0, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1C20, symBinAddr: 0x14154, symSize: 0x34 } + - { offsetInCU: 0x22E6, offset: 0x66604, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1C54, symBinAddr: 0x14188, symSize: 0xD4 } + - { offsetInCU: 0x2359, offset: 0x66677, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1D28, symBinAddr: 0x1425C, symSize: 0x34 } + - { offsetInCU: 0x23BD, offset: 0x666DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1D5C, symBinAddr: 0x14290, symSize: 0xB4 } + - { offsetInCU: 0x2430, offset: 0x6674E, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1E10, symBinAddr: 0x14344, symSize: 0x34 } + - { offsetInCU: 0x2494, offset: 0x667B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1E44, symBinAddr: 0x14378, symSize: 0xE4 } + - { offsetInCU: 0x2518, offset: 0x66836, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x1F28, symBinAddr: 0x1445C, symSize: 0x34 } + - { offsetInCU: 0x258D, offset: 0x668AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x1F5C, symBinAddr: 0x14490, symSize: 0x134 } + - { offsetInCU: 0x2633, offset: 0x66951, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2090, symBinAddr: 0x145C4, symSize: 0x38 } + - { offsetInCU: 0x26B9, offset: 0x669D7, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x20C8, symBinAddr: 0x145FC, symSize: 0x40 } + - { offsetInCU: 0x26E2, offset: 0x66A00, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2108, symBinAddr: 0x1463C, symSize: 0x40 } + - { offsetInCU: 0x2701, offset: 0x66A1F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x2148, symBinAddr: 0x1467C, symSize: 0xD4 } + - { offsetInCU: 0x2774, offset: 0x66A92, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x221C, symBinAddr: 0x14750, symSize: 0x34 } + - { offsetInCU: 0x27D8, offset: 0x66AF6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2250, symBinAddr: 0x14784, symSize: 0xD4 } + - { offsetInCU: 0x282E, offset: 0x66B4C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2324, symBinAddr: 0x14858, symSize: 0xD4 } + - { offsetInCU: 0x2884, offset: 0x66BA2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x23F8, symBinAddr: 0x1492C, symSize: 0xF4 } + - { offsetInCU: 0x2915, offset: 0x66C33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x24EC, symBinAddr: 0x14A20, symSize: 0x14C } + - { offsetInCU: 0x297C, offset: 0x66C9A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2638, symBinAddr: 0x14B6C, symSize: 0x8 } + - { offsetInCU: 0x29B2, offset: 0x66CD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x2640, symBinAddr: 0x14B74, symSize: 0x10C } + - { offsetInCU: 0x2A08, offset: 0x66D26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x274C, symBinAddr: 0x14C80, symSize: 0x10C } + - { offsetInCU: 0x2A5E, offset: 0x66D7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x2858, symBinAddr: 0x14D8C, symSize: 0xD4 } + - { offsetInCU: 0x2AB4, offset: 0x66DD2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x292C, symBinAddr: 0x14E60, symSize: 0x90 } + - { offsetInCU: 0x2B39, offset: 0x66E57, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x29BC, symBinAddr: 0x14EF0, symSize: 0x178 } + - { offsetInCU: 0x2C61, offset: 0x66F7F, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2B34, symBinAddr: 0x15068, symSize: 0x38 } + - { offsetInCU: 0x2CC3, offset: 0x66FE1, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2B6C, symBinAddr: 0x150A0, symSize: 0x34 } + - { offsetInCU: 0x2CEC, offset: 0x6700A, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.72', symObjAddr: 0x2BA0, symBinAddr: 0x150D4, symSize: 0x344 } + - { offsetInCU: 0x2F00, offset: 0x6721E, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x2EE4, symBinAddr: 0x15418, symSize: 0x38 } + - { offsetInCU: 0x2F6C, offset: 0x6728A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x2F1C, symBinAddr: 0x15450, symSize: 0x3C } + - { offsetInCU: 0x2F95, offset: 0x672B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x2F58, symBinAddr: 0x1548C, symSize: 0x374 } + - { offsetInCU: 0x31DA, offset: 0x674F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x32CC, symBinAddr: 0x15800, symSize: 0x344 } + - { offsetInCU: 0x34D3, offset: 0x677F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3610, symBinAddr: 0x15B44, symSize: 0x1C8 } + - { offsetInCU: 0x35E5, offset: 0x67903, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x37D8, symBinAddr: 0x15D0C, symSize: 0x68 } + - { offsetInCU: 0x3650, offset: 0x6796E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3840, symBinAddr: 0x15D74, symSize: 0x70 } + - { offsetInCU: 0x36BB, offset: 0x679D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x38B0, symBinAddr: 0x15DE4, symSize: 0xC0 } + - { offsetInCU: 0x37A1, offset: 0x67ABF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3970, symBinAddr: 0x15EA4, symSize: 0xC8 } + - { offsetInCU: 0x3874, offset: 0x67B92, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3A38, symBinAddr: 0x15F6C, symSize: 0x184 } + - { offsetInCU: 0x399D, offset: 0x67CBB, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x3BBC, symBinAddr: 0x160F0, symSize: 0x60 } + - { offsetInCU: 0x39DF, offset: 0x67CFD, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x3C1C, symBinAddr: 0x16150, symSize: 0x58 } + - { offsetInCU: 0x3A42, offset: 0x67D60, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x3C74, symBinAddr: 0x161A8, symSize: 0x24 } + - { offsetInCU: 0x3AB6, offset: 0x67DD4, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.88', symObjAddr: 0x3CB4, symBinAddr: 0x161CC, symSize: 0x24 } + - { offsetInCU: 0x3B13, offset: 0x67E31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x3CD8, symBinAddr: 0x161F0, symSize: 0x184 } + - { offsetInCU: 0x3BF2, offset: 0x67F10, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x3E5C, symBinAddr: 0x16374, symSize: 0x60 } + - { offsetInCU: 0x3C34, offset: 0x67F52, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x3EBC, symBinAddr: 0x163D4, symSize: 0x58 } + - { offsetInCU: 0x3C84, offset: 0x67FA2, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x3F14, symBinAddr: 0x1642C, symSize: 0x24 } + - { offsetInCU: 0x3CE1, offset: 0x67FFF, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x3F38, symBinAddr: 0x16450, symSize: 0x24 } + - { offsetInCU: 0x3D3E, offset: 0x6805C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x3F5C, symBinAddr: 0x16474, symSize: 0x10C } + - { offsetInCU: 0x3DFC, offset: 0x6811A, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4068, symBinAddr: 0x16580, symSize: 0x1DC } + - { offsetInCU: 0x4026, offset: 0x68344, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x4244, symBinAddr: 0x1675C, symSize: 0x48 } + - { offsetInCU: 0x4089, offset: 0x683A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x428C, symBinAddr: 0x167A4, symSize: 0x3C } + - { offsetInCU: 0x40DA, offset: 0x683F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x42C8, symBinAddr: 0x167E0, symSize: 0x3C } + - { offsetInCU: 0x411C, offset: 0x6843A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x4304, symBinAddr: 0x1681C, symSize: 0x3C } + - { offsetInCU: 0x416D, offset: 0x6848B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x4340, symBinAddr: 0x16858, symSize: 0x3C } + - { offsetInCU: 0x41AF, offset: 0x684CD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x437C, symBinAddr: 0x16894, symSize: 0x3C } + - { offsetInCU: 0x41F1, offset: 0x6850F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x43B8, symBinAddr: 0x168D0, symSize: 0x3C } + - { offsetInCU: 0x4233, offset: 0x68551, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x43F4, symBinAddr: 0x1690C, symSize: 0x3C } + - { offsetInCU: 0x4275, offset: 0x68593, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x4430, symBinAddr: 0x16948, symSize: 0x3C } + - { offsetInCU: 0x42B7, offset: 0x685D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x446C, symBinAddr: 0x16984, symSize: 0x94 } + - { offsetInCU: 0x4316, offset: 0x68634, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x4500, symBinAddr: 0x16A18, symSize: 0x94 } + - { offsetInCU: 0x4366, offset: 0x68684, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4594, symBinAddr: 0x16AAC, symSize: 0x34 } + - { offsetInCU: 0x439A, offset: 0x686B8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x45C8, symBinAddr: 0x16AE0, symSize: 0x1AC } + - { offsetInCU: 0x451E, offset: 0x6883C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4774, symBinAddr: 0x16C8C, symSize: 0xD4 } + - { offsetInCU: 0x4585, offset: 0x688A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4848, symBinAddr: 0x16D60, symSize: 0xD4 } + - { offsetInCU: 0x45EC, offset: 0x6890A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x491C, symBinAddr: 0x16E34, symSize: 0x140 } + - { offsetInCU: 0x468A, offset: 0x689A8, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4A5C, symBinAddr: 0x16F74, symSize: 0x5C } + - { offsetInCU: 0x46DD, offset: 0x689FB, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4AB8, symBinAddr: 0x16FD0, symSize: 0x34 } + - { offsetInCU: 0x4727, offset: 0x68A45, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x4AFC, symBinAddr: 0x17004, symSize: 0x140 } + - { offsetInCU: 0x47C5, offset: 0x68AE3, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x4C3C, symBinAddr: 0x17144, symSize: 0x5C } + - { offsetInCU: 0x4818, offset: 0x68B36, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x4C98, symBinAddr: 0x171A0, symSize: 0x34 } + - { offsetInCU: 0x4862, offset: 0x68B80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x4CCC, symBinAddr: 0x171D4, symSize: 0x11C } + - { offsetInCU: 0x4900, offset: 0x68C1E, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x4DE8, symBinAddr: 0x172F0, symSize: 0x50 } + - { offsetInCU: 0x4953, offset: 0x68C71, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x4E38, symBinAddr: 0x17340, symSize: 0x34 } + - { offsetInCU: 0x499D, offset: 0x68CBB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x4E6C, symBinAddr: 0x17374, symSize: 0x140 } + - { offsetInCU: 0x4A3B, offset: 0x68D59, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x4FAC, symBinAddr: 0x174B4, symSize: 0x34 } + - { offsetInCU: 0x4A8E, offset: 0x68DAC, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x4FE0, symBinAddr: 0x174E8, symSize: 0x34 } + - { offsetInCU: 0x4AD8, offset: 0x68DF6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x5014, symBinAddr: 0x1751C, symSize: 0x140 } + - { offsetInCU: 0x4B76, offset: 0x68E94, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x5154, symBinAddr: 0x1765C, symSize: 0x34 } + - { offsetInCU: 0x4BC9, offset: 0x68EE7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x5188, symBinAddr: 0x17690, symSize: 0x34 } + - { offsetInCU: 0x4C13, offset: 0x68F31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x51BC, symBinAddr: 0x176C4, symSize: 0x11C } + - { offsetInCU: 0x4CB1, offset: 0x68FCF, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x52D8, symBinAddr: 0x177E0, symSize: 0x34 } + - { offsetInCU: 0x4D04, offset: 0x69022, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x530C, symBinAddr: 0x17814, symSize: 0x34 } + - { offsetInCU: 0x4D4E, offset: 0x6906C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5340, symBinAddr: 0x17848, symSize: 0x140 } + - { offsetInCU: 0x4DEC, offset: 0x6910A, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x5480, symBinAddr: 0x17988, symSize: 0x34 } + - { offsetInCU: 0x4E3F, offset: 0x6915D, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x54B4, symBinAddr: 0x179BC, symSize: 0x34 } + - { offsetInCU: 0x4E89, offset: 0x691A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x54E8, symBinAddr: 0x179F0, symSize: 0x140 } + - { offsetInCU: 0x4F27, offset: 0x69245, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5628, symBinAddr: 0x17B30, symSize: 0x34 } + - { offsetInCU: 0x4F7A, offset: 0x69298, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x565C, symBinAddr: 0x17B64, symSize: 0x34 } + - { offsetInCU: 0x4FC4, offset: 0x692E2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5690, symBinAddr: 0x17B98, symSize: 0x11C } + - { offsetInCU: 0x5062, offset: 0x69380, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x57AC, symBinAddr: 0x17CB4, symSize: 0x34 } + - { offsetInCU: 0x50B5, offset: 0x693D3, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x57E0, symBinAddr: 0x17CE8, symSize: 0x34 } + - { offsetInCU: 0x50FF, offset: 0x6941D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5814, symBinAddr: 0x17D1C, symSize: 0x1B0 } + - { offsetInCU: 0x522A, offset: 0x69548, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x59C4, symBinAddr: 0x17ECC, symSize: 0x140 } + - { offsetInCU: 0x52C8, offset: 0x695E6, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x5B04, symBinAddr: 0x1800C, symSize: 0x34 } + - { offsetInCU: 0x531B, offset: 0x69639, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x5B38, symBinAddr: 0x18040, symSize: 0x34 } + - { offsetInCU: 0x5365, offset: 0x69683, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x5B6C, symBinAddr: 0x18074, symSize: 0x140 } + - { offsetInCU: 0x5403, offset: 0x69721, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x5CAC, symBinAddr: 0x181B4, symSize: 0x34 } + - { offsetInCU: 0x5456, offset: 0x69774, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x5CE0, symBinAddr: 0x181E8, symSize: 0x34 } + - { offsetInCU: 0x54A0, offset: 0x697BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x5D14, symBinAddr: 0x1821C, symSize: 0x11C } + - { offsetInCU: 0x553E, offset: 0x6985C, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x5E30, symBinAddr: 0x18338, symSize: 0x34 } + - { offsetInCU: 0x5591, offset: 0x698AF, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x5E64, symBinAddr: 0x1836C, symSize: 0x34 } + - { offsetInCU: 0x55DB, offset: 0x698F9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x5E98, symBinAddr: 0x183A0, symSize: 0xD8 } + - { offsetInCU: 0x5671, offset: 0x6998F, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x5F70, symBinAddr: 0x18478, symSize: 0x18 } + - { offsetInCU: 0x56CC, offset: 0x699EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x5F88, symBinAddr: 0x18490, symSize: 0xDC } + - { offsetInCU: 0x5762, offset: 0x69A80, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x6064, symBinAddr: 0x1856C, symSize: 0x1C } + - { offsetInCU: 0x57BD, offset: 0x69ADB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6080, symBinAddr: 0x18588, symSize: 0xD8 } + - { offsetInCU: 0x5853, offset: 0x69B71, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6158, symBinAddr: 0x18660, symSize: 0x48 } + - { offsetInCU: 0x58A6, offset: 0x69BC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x61A0, symBinAddr: 0x186A8, symSize: 0xD8 } + - { offsetInCU: 0x593C, offset: 0x69C5A, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x6278, symBinAddr: 0x18780, symSize: 0x48 } + - { offsetInCU: 0x598F, offset: 0x69CAD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x62C0, symBinAddr: 0x187C8, symSize: 0xA4 } + - { offsetInCU: 0x59F2, offset: 0x69D10, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6364, symBinAddr: 0x1886C, symSize: 0xC } + - { offsetInCU: 0x5A48, offset: 0x69D66, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6370, symBinAddr: 0x18878, symSize: 0x184 } + - { offsetInCU: 0x5B28, offset: 0x69E46, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x64F4, symBinAddr: 0x189FC, symSize: 0x26C } + - { offsetInCU: 0x5D0A, offset: 0x6A028, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x67EC, symBinAddr: 0x18C68, symSize: 0x174 } + - { offsetInCU: 0x5DD8, offset: 0x6A0F6, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6960, symBinAddr: 0x18DDC, symSize: 0x2A4 } + - { offsetInCU: 0x5F85, offset: 0x6A2A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x6C04, symBinAddr: 0x19080, symSize: 0x90 } + - { offsetInCU: 0x5FE8, offset: 0x6A306, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x6C94, symBinAddr: 0x19110, symSize: 0x184 } + - { offsetInCU: 0x60C8, offset: 0x6A3E6, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x6E18, symBinAddr: 0x19294, symSize: 0x190 } + - { offsetInCU: 0x618E, offset: 0x6A4AC, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x6FA8, symBinAddr: 0x19424, symSize: 0x9C } + - { offsetInCU: 0x6203, offset: 0x6A521, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x7044, symBinAddr: 0x194C0, symSize: 0x174 } + - { offsetInCU: 0x62D1, offset: 0x6A5EF, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x71B8, symBinAddr: 0x19634, symSize: 0x184 } + - { offsetInCU: 0x63A8, offset: 0x6A6C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x733C, symBinAddr: 0x197B8, symSize: 0x1E4 } + - { offsetInCU: 0x6458, offset: 0x6A776, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7520, symBinAddr: 0x1999C, symSize: 0xC0 } + - { offsetInCU: 0x6508, offset: 0x6A826, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x75E0, symBinAddr: 0x19A5C, symSize: 0xC0 } + - { offsetInCU: 0x6597, offset: 0x6A8B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x76A0, symBinAddr: 0x19B1C, symSize: 0x84 } + - { offsetInCU: 0x65E0, offset: 0x6A8FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7724, symBinAddr: 0x19BA0, symSize: 0xC } + - { offsetInCU: 0x6636, offset: 0x6A954, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7730, symBinAddr: 0x19BAC, symSize: 0x14 } + - { offsetInCU: 0x669F, offset: 0x6A9BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7744, symBinAddr: 0x19BC0, symSize: 0xC } + - { offsetInCU: 0x66F5, offset: 0x6AA13, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7750, symBinAddr: 0x19BCC, symSize: 0x14 } + - { offsetInCU: 0x675E, offset: 0x6AA7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7764, symBinAddr: 0x19BE0, symSize: 0x1C4 } + - { offsetInCU: 0x684F, offset: 0x6AB6D, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x7928, symBinAddr: 0x19DA4, symSize: 0x270 } + - { offsetInCU: 0x6A5D, offset: 0x6AD7B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x7C34, symBinAddr: 0x1A014, symSize: 0x174 } + - { offsetInCU: 0x6B2B, offset: 0x6AE49, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x7DA8, symBinAddr: 0x1A188, symSize: 0x18C } + - { offsetInCU: 0x6C52, offset: 0x6AF70, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x7F34, symBinAddr: 0x1A314, symSize: 0x174 } + - { offsetInCU: 0x6D20, offset: 0x6B03E, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x80A8, symBinAddr: 0x1A488, symSize: 0x184 } + - { offsetInCU: 0x6E38, offset: 0x6B156, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x822C, symBinAddr: 0x1A60C, symSize: 0x150 } + - { offsetInCU: 0x6F02, offset: 0x6B220, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x837C, symBinAddr: 0x1A75C, symSize: 0x150 } + - { offsetInCU: 0x7021, offset: 0x6B33F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x84CC, symBinAddr: 0x1A8AC, symSize: 0x150 } + - { offsetInCU: 0x70EB, offset: 0x6B409, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x861C, symBinAddr: 0x1A9FC, symSize: 0x114 } + - { offsetInCU: 0x71BD, offset: 0x6B4DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x8730, symBinAddr: 0x1AB10, symSize: 0x8 } + - { offsetInCU: 0x720D, offset: 0x6B52B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x8738, symBinAddr: 0x1AB18, symSize: 0xCC } + - { offsetInCU: 0x72A2, offset: 0x6B5C0, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x8804, symBinAddr: 0x1ABE4, symSize: 0x3C } + - { offsetInCU: 0x72F5, offset: 0x6B613, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x8840, symBinAddr: 0x1AC20, symSize: 0x144 } + - { offsetInCU: 0x73AC, offset: 0x6B6CA, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x8984, symBinAddr: 0x1AD64, symSize: 0x94 } + - { offsetInCU: 0x7421, offset: 0x6B73F, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x8A18, symBinAddr: 0x1ADF8, symSize: 0x3C } + - { offsetInCU: 0x7474, offset: 0x6B792, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x8A54, symBinAddr: 0x1AE34, symSize: 0x118 } + - { offsetInCU: 0x751A, offset: 0x6B838, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x8B6C, symBinAddr: 0x1AF4C, symSize: 0x3C } + - { offsetInCU: 0x756D, offset: 0x6B88B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x8BA8, symBinAddr: 0x1AF88, symSize: 0x8 } + - { offsetInCU: 0x75BD, offset: 0x6B8DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x8BB0, symBinAddr: 0x1AF90, symSize: 0x13C } + - { offsetInCU: 0x768B, offset: 0x6B9A9, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x8CEC, symBinAddr: 0x1B0CC, symSize: 0x50 } + - { offsetInCU: 0x7700, offset: 0x6BA1E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x8D3C, symBinAddr: 0x1B11C, symSize: 0x144 } + - { offsetInCU: 0x774C, offset: 0x6BA6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x8E80, symBinAddr: 0x1B260, symSize: 0x2CC } + - { offsetInCU: 0x787B, offset: 0x6BB99, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x914C, symBinAddr: 0x1B52C, symSize: 0xB4 } + - { offsetInCU: 0x7913, offset: 0x6BC31, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9200, symBinAddr: 0x1B5E0, symSize: 0x68 } + - { offsetInCU: 0x7977, offset: 0x6BC95, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.151', symObjAddr: 0x9268, symBinAddr: 0x1B648, symSize: 0x54 } + - { offsetInCU: 0x79D6, offset: 0x6BCF4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x92BC, symBinAddr: 0x1B69C, symSize: 0x1A8 } + - { offsetInCU: 0x7B54, offset: 0x6BE72, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0x9464, symBinAddr: 0x1B844, symSize: 0x3C } + - { offsetInCU: 0x7B96, offset: 0x6BEB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0x94A0, symBinAddr: 0x1B880, symSize: 0x60 } + - { offsetInCU: 0x7BCA, offset: 0x6BEE8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0x9500, symBinAddr: 0x1B8E0, symSize: 0xC8 } + - { offsetInCU: 0x7CC5, offset: 0x6BFE3, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0x95C8, symBinAddr: 0x1B9A8, symSize: 0x30 } + - { offsetInCU: 0x7D07, offset: 0x6C025, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0x95F8, symBinAddr: 0x1B9D8, symSize: 0x14C } + - { offsetInCU: 0x7DC4, offset: 0x6C0E2, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0x9744, symBinAddr: 0x1BB24, symSize: 0xD4 } + - { offsetInCU: 0x7E5E, offset: 0x6C17C, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0x9818, symBinAddr: 0x1BBF8, symSize: 0x30 } + - { offsetInCU: 0x7EA0, offset: 0x6C1BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0x9848, symBinAddr: 0x1BC28, symSize: 0x14C } + - { offsetInCU: 0x7F5D, offset: 0x6C27B, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0x9994, symBinAddr: 0x1BD74, symSize: 0xD4 } + - { offsetInCU: 0x7FF7, offset: 0x6C315, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0x9A68, symBinAddr: 0x1BE48, symSize: 0x30 } + - { offsetInCU: 0x8039, offset: 0x6C357, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0x9A98, symBinAddr: 0x1BE78, symSize: 0x90 } + - { offsetInCU: 0x80B6, offset: 0x6C3D4, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0x9B28, symBinAddr: 0x1BF08, symSize: 0x64 } + - { offsetInCU: 0x80F8, offset: 0x6C416, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0x9B8C, symBinAddr: 0x1BF6C, symSize: 0x8 } + - { offsetInCU: 0x8148, offset: 0x6C466, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0x9B94, symBinAddr: 0x1BF74, symSize: 0x13C } + - { offsetInCU: 0x8216, offset: 0x6C534, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9CD0, symBinAddr: 0x1C0B0, symSize: 0x50 } + - { offsetInCU: 0x828B, offset: 0x6C5A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0x9D20, symBinAddr: 0x1C100, symSize: 0x658 } + - { offsetInCU: 0x8506, offset: 0x6C824, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xA378, symBinAddr: 0x1C758, symSize: 0xF8 } + - { offsetInCU: 0x85BD, offset: 0x6C8DB, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xA470, symBinAddr: 0x1C850, symSize: 0x94 } + - { offsetInCU: 0x8643, offset: 0x6C961, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.158', symObjAddr: 0xA504, symBinAddr: 0x1C8E4, symSize: 0x80 } + - { offsetInCU: 0x86DD, offset: 0x6C9FB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xA584, symBinAddr: 0x1C964, symSize: 0x3C } + - { offsetInCU: 0x8711, offset: 0x6CA2F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xA5C0, symBinAddr: 0x1C9A0, symSize: 0x7C } + - { offsetInCU: 0x8763, offset: 0x6CA81, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xA63C, symBinAddr: 0x1CA1C, symSize: 0x90 } + - { offsetInCU: 0x87E0, offset: 0x6CAFE, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xA6CC, symBinAddr: 0x1CAAC, symSize: 0x34 } + - { offsetInCU: 0x8822, offset: 0x6CB40, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xA700, symBinAddr: 0x1CAE0, symSize: 0x90 } + - { offsetInCU: 0x889F, offset: 0x6CBBD, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xA790, symBinAddr: 0x1CB70, symSize: 0x5C } + - { offsetInCU: 0x88E1, offset: 0x6CBFF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xA7EC, symBinAddr: 0x1CBCC, symSize: 0x4 } + - { offsetInCU: 0x8958, offset: 0x6CC76, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xA85C, symBinAddr: 0x1CC3C, symSize: 0x54 } + - { offsetInCU: 0x899A, offset: 0x6CCB8, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xA8B0, symBinAddr: 0x1CC90, symSize: 0xEC } + - { offsetInCU: 0x89DF, offset: 0x6CCFD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xA99C, symBinAddr: 0x1CD7C, symSize: 0x90 } + - { offsetInCU: 0x8AD5, offset: 0x6CDF3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xAA2C, symBinAddr: 0x1CE0C, symSize: 0x90 } + - { offsetInCU: 0x8BBF, offset: 0x6CEDD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xAABC, symBinAddr: 0x1CE9C, symSize: 0x1F8 } + - { offsetInCU: 0x8DEA, offset: 0x6D108, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xACB4, symBinAddr: 0x1D094, symSize: 0x1B0 } + - { offsetInCU: 0x9006, offset: 0x6D324, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xAE64, symBinAddr: 0x1D244, symSize: 0x10C } + - { offsetInCU: 0x90D3, offset: 0x6D3F1, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xAF70, symBinAddr: 0x1D350, symSize: 0x10C } + - { offsetInCU: 0x91A0, offset: 0x6D4BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xB07C, symBinAddr: 0x1D45C, symSize: 0x60 } + - { offsetInCU: 0x91E5, offset: 0x6D503, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xB0DC, symBinAddr: 0x1D4BC, symSize: 0xD0 } + - { offsetInCU: 0x9300, offset: 0x6D61E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xB1AC, symBinAddr: 0x1D58C, symSize: 0x50 } + - { offsetInCU: 0x9334, offset: 0x6D652, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xB1FC, symBinAddr: 0x1D5DC, symSize: 0xCC } + - { offsetInCU: 0x945C, offset: 0x6D77A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xB2C8, symBinAddr: 0x1D6A8, symSize: 0x90 } + - { offsetInCU: 0x94E6, offset: 0x6D804, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xB358, symBinAddr: 0x1D738, symSize: 0x38 } + - { offsetInCU: 0x9528, offset: 0x6D846, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xB390, symBinAddr: 0x1D770, symSize: 0x18 } + - { offsetInCU: 0x95A3, offset: 0x6D8C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xB3A8, symBinAddr: 0x1D788, symSize: 0x14 } + - { offsetInCU: 0x960B, offset: 0x6D929, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xB3BC, symBinAddr: 0x1D79C, symSize: 0x48 } + - { offsetInCU: 0x9688, offset: 0x6D9A6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xB404, symBinAddr: 0x1D7E4, symSize: 0x40 } + - { offsetInCU: 0x96CE, offset: 0x6D9EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xB444, symBinAddr: 0x1D824, symSize: 0x34 } + - { offsetInCU: 0x9714, offset: 0x6DA32, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xB478, symBinAddr: 0x1D858, symSize: 0x34 } + - { offsetInCU: 0x975A, offset: 0x6DA78, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xB4AC, symBinAddr: 0x1D88C, symSize: 0x58 } + - { offsetInCU: 0x97B1, offset: 0x6DACF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xB504, symBinAddr: 0x1D8E4, symSize: 0x58 } + - { offsetInCU: 0x9808, offset: 0x6DB26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xB55C, symBinAddr: 0x1D93C, symSize: 0x8 } + - { offsetInCU: 0x983C, offset: 0x6DB5A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xB564, symBinAddr: 0x1D944, symSize: 0x7C } + - { offsetInCU: 0x98B3, offset: 0x6DBD1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xB5E0, symBinAddr: 0x1D9C0, symSize: 0x7C } + - { offsetInCU: 0x992B, offset: 0x6DC49, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xB65C, symBinAddr: 0x1DA3C, symSize: 0x10 } + - { offsetInCU: 0x996E, offset: 0x6DC8C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xB66C, symBinAddr: 0x1DA4C, symSize: 0x10 } + - { offsetInCU: 0x99B1, offset: 0x6DCCF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xB67C, symBinAddr: 0x1DA5C, symSize: 0x38 } + - { offsetInCU: 0x9A0B, offset: 0x6DD29, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xB6B4, symBinAddr: 0x1DA94, symSize: 0x34 } + - { offsetInCU: 0x9A65, offset: 0x6DD83, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xB6E8, symBinAddr: 0x1DAC8, symSize: 0x34 } + - { offsetInCU: 0x9ABF, offset: 0x6DDDD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xB71C, symBinAddr: 0x1DAFC, symSize: 0x3C } + - { offsetInCU: 0x9B19, offset: 0x6DE37, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xB758, symBinAddr: 0x1DB38, symSize: 0x3C } + - { offsetInCU: 0x9B73, offset: 0x6DE91, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xB794, symBinAddr: 0x1DB74, symSize: 0xC } + - { offsetInCU: 0x9BD8, offset: 0x6DEF6, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xB7A0, symBinAddr: 0x1DB80, symSize: 0x154 } + - { offsetInCU: 0x9CB0, offset: 0x6DFCE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xB8F4, symBinAddr: 0x1DCD4, symSize: 0x110 } + - { offsetInCU: 0x9CE4, offset: 0x6E002, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xBA04, symBinAddr: 0x1DDE4, symSize: 0x50 } + - { offsetInCU: 0x9D44, offset: 0x6E062, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xBA54, symBinAddr: 0x1DE34, symSize: 0x50 } ... diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Info.plist index 6ed484c..894acb7 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Info.plist +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Info.plist @@ -5,7 +5,7 @@ ArchiveVersion 2 CreationDate - 2024-03-04T04:04:51Z + 2024-05-22T07:20:34Z Name IoTConnect2 SchemeName diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT index cda9a66..4a1a6d3 100755 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h index ab36159..46c188d 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Headers/CocoaMQTT-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef COCOAMQTT_SWIFT_H #define COCOAMQTT_SWIFT_H #pragma clang diagnostic push @@ -711,7 +711,7 @@ typedef SWIFT_ENUM(uint8_t, PayloadFormatIndicator, closed) { #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef COCOAMQTT_SWIFT_H #define COCOAMQTT_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist index cce6469..4660350 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc index cde0066..c60e776 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule index 5c9b2a3..43b6d48 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 61b4ef9..30c9520 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule index e837894..e0647eb 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources index 209bd09..8ca1409 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/CocoaMQTT.framework/_CodeSignature/CodeResources @@ -6,7 +6,7 @@ Headers/CocoaMQTT-Swift.h - NVO2jRWTSkyH2Jbm/hWnIKfc7Ik= + cFq2sEAptpCTTlwFGJqSP6Yrv0I= Headers/CocoaMQTT-umbrella.h @@ -14,7 +14,7 @@ Info.plist - sgnzhOzaymyyvzvpr7fUQi83fzM= + eqC2pGjj7teLcIxsOneqBnNi8pY= Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -22,11 +22,11 @@ Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftdoc - /VAQom9nhl4rLlXQmtFdCaXbnzo= + 59cx2qKftnzkiHA+mL+IkMSasNY= Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule - spdQ+PqRdStzDPxUt3myqiEQBjE= + LBZDHQSdjtOWJf1ylb5OwFDFKoY= Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -34,11 +34,11 @@ Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - Eqyux7gszWDl3nhF2uReuPsL8LQ= + 4q4PgVdUf7A9mmgjl/r6voU1UrM= Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - kRDCklva+/PCRXvLDdtwd/4nlf4= + Xyk7pOUwuohqQP9mJRkYlTZZ2Sw= Modules/module.modulemap @@ -51,7 +51,7 @@ hash2 - 2IJGvXSkAxMMejqCF5OeA5595ax7DMKWT8l5YW4sJoU= + dUCfGnepBkZfUS/zWzIZtcSlxqATpP6xdx1f5oLa7H4= Headers/CocoaMQTT-umbrella.h @@ -72,14 +72,14 @@ hash2 - Ue59w2h+PI/waMRPmIJPPwflvk/guTygKGzXbrGOucE= + AXv+7MvIszdHjHuZcAYyh4MXda5dohL4ZeOM7bZw41c= Modules/CocoaMQTT.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - hQF1tSC7Yd5SIuVC3tcazEdnwZjqR0QSZn2tgWJ/kRY= + IBoc1U/9H/YU13hLCy6qOY0rKQLpS4L20hC7i3XLdDU= Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -93,14 +93,14 @@ hash2 - hda1a/sNcamez2kgkpgTmOXTXvDCYgfqELYaWgvE/tA= + VtpLElS9T3CDqtSw51i9fp0jcxf6b8VrrBVPKZ4/BH4= Modules/CocoaMQTT.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - pjoUtcFTDx6Hsv+QGKj3uEtr39FVng8jyNscfxTABdo= + aRQJnBovYwFolsmU9pivov4vUxRuUF1datiFRy66V9E= Modules/module.modulemap diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Headers/IoTConnect2-Swift.h b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Headers/IoTConnect2-Swift.h index 6e93a15..413de9e 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Headers/IoTConnect2-Swift.h +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Headers/IoTConnect2-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_SWIFT_H #define IOTCONNECT2_SWIFT_H #pragma clang diagnostic push @@ -308,7 +308,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_SWIFT_H #define IOTCONNECT2_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Info.plist index f91930e..217fbb3 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Info.plist and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/IoTConnect2 b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/IoTConnect2 index b7053d2..e80fb92 100755 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/IoTConnect2 and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json index ae0cff5..6c8ca41 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -4526,6 +4526,39 @@ "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -4564,39 +4597,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -5982,6 +5982,39 @@ "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -6020,39 +6053,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -7428,6 +7428,7 @@ "mangledName": "$sSS", "moduleName": "Swift", "declAttributes": [ + "EagerMove", "Frozen" ], "isExternal": true, @@ -8030,12679 +8031,1416 @@ { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 3942, + "offset": 10618, "length": 2, "value": "\"\"" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" + "offset": 10638, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4877, + "offset": 20991, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5639, + "offset": 161, "length": 5, - "value": "\"ios\"" + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" + "offset": 161, + "length": 5, + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" + "offset": 317, + "length": 7, + "value": "\"https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" + "offset": 352, + "length": 6, + "value": "\"http\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7487, + "offset": 454, "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" + "value": "\"Accept\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" + "offset": 562, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8203, + "offset": 521, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8609, + "offset": 559, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" + "offset": 1136, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" + "offset": 1136, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" + "offset": 1447, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", "kind": "StringLiteral", - "offset": 19497, - "length": 12, + "offset": 17309, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 19846, + "offset": 438, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "BooleanLiteral", - "offset": 19859, + "offset": 477, "length": 5, "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "IntegerLiteral", - "offset": 20283, + "offset": 751, "length": 1, "value": "0" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "BooleanLiteral", - "offset": 20424, + "offset": 845, "length": 5, "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 20716, + "offset": 1708, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 20975, + "offset": 19292, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 21361, + "offset": 33318, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 5, + "value": "\"DEV\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35224, - "length": 79, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35302, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" + "offset": 327, + "length": 4, + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" + "offset": 282, + "length": 5, + "value": "\"DEV\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, + "offset": 327, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" + "offset": 470, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" + "offset": 511, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", @@ -20712,284 +9450,102 @@ "value": "\"log:mqtt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", @@ -21287,1506 +9843,1261 @@ }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2702, - "length": 61, - "value": "\"\"" + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2721, - "length": 1, - "value": "\"\/api\/v\"" + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2751, - "length": 1, - "value": "\"\/env\/\"" + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2762, - "length": 2, - "value": "\"\"" + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" + "offset": 274, + "length": 3, + "value": "103" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" + "offset": 310, + "length": 3, + "value": "104" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" + "offset": 439, + "length": 3, + "value": "108" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" + "offset": 469, + "length": 3, + "value": "109" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" + "offset": 501, + "length": 3, + "value": "110" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" + "offset": 532, + "length": 3, + "value": "111" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" + "offset": 568, + "length": 3, + "value": "112" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" + "offset": 610, + "length": 3, + "value": "113" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" + "offset": 650, + "length": 3, + "value": "115" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" + "offset": 698, + "length": 3, + "value": "116" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" + "offset": 743, + "length": 3, + "value": "117" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" + "offset": 786, + "length": 3, + "value": "199" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" + "offset": 828, + "length": 3, + "value": "200" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" + "offset": 873, + "length": 3, + "value": "201" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" + "offset": 913, + "length": 3, + "value": "202" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" + "offset": 942, + "length": 3, + "value": "203" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" + "offset": 974, + "length": 3, + "value": "204" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" + "offset": 1006, + "length": 3, + "value": "205" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" + "offset": 1035, + "length": 3, + "value": "221" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" + "offset": 1064, + "length": 3, + "value": "222" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" + "offset": 2960, + "length": 5, + "value": "\"2.1\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4520, + "offset": 3033, "length": 6, - "value": "\"rule\"" + "value": "\"http\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4874, + "offset": 3338, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4909, + "offset": 3369, "length": 1, "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5045, + "offset": 3593, "length": 1, - "value": "5" + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5079, + "offset": 3621, "length": 1, - "value": "6" + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5113, + "offset": 3649, "length": 1, - "value": "7" + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5147, + "offset": 3677, "length": 1, - "value": "8" + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5181, + "offset": 3723, "length": 1, - "value": "9" + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" + "offset": 3751, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" + "offset": 3783, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5908, + "offset": 4203, "length": 6, - "value": "\"edge\"" + "value": "\"cpId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" + "offset": 4279, + "length": 8, + "value": "\"option\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" + "offset": 4319, + "length": 11, + "value": "\"attribute\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" + "offset": 4360, + "length": 9, + "value": "\"setting\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" + "offset": 4403, + "length": 10, + "value": "\"protocol\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" + "offset": 4442, + "length": 8, + "value": "\"device\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" + "offset": 4520, + "length": 6, + "value": "\"rule\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6921, + "offset": 5301, "length": 4, - "value": "\"cv\"" + "value": "\"dt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" + "offset": 5331, + "length": 3, + "value": "\"d\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" + "offset": 5359, + "length": 5, + "value": "\"ack\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7047, + "offset": 5390, "length": 6, - "value": "\"guid\"" + "value": "\"type\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" + "offset": 5424, + "length": 4, + "value": "\"st\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7138, + "offset": 5457, "length": 5, - "value": "\"ack\"" + "value": "\"msg\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" + "offset": 5487, + "length": 5, + "value": "\"cid\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7226, + "offset": 5550, "length": 4, "value": "\"ec\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7268, + "offset": 5580, "length": 4, - "value": "\"rg\"" + "value": "\"ct\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" + "offset": 5610, + "length": 6, + "value": "\"meta\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" + "offset": 5642, + "length": 5, + "value": "\"has\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" + "offset": 5673, + "length": 3, + "value": "\"p\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7441, + "offset": 5726, "length": 4, - "value": "\"mt\"" + "value": "\"df\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7483, + "offset": 5756, "length": 4, - "value": "\"dn\"" + "value": "\"cd\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, + "offset": 5786, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" + "value": "\"at\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2266, + "offset": 5817, "length": 5, - "value": "\"\"" + "value": "\"gtw\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" + "offset": 5848, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" + "offset": 5877, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" + "offset": 5908, + "length": 6, + "value": "\"edge\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" + "offset": 5940, + "length": 4, + "value": "\"pf\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" + "offset": 5971, + "length": 5, + "value": "\"hwv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2310, + "offset": 6003, "length": 5, - "value": "\"\"" + "value": "\"swv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" + "offset": 6033, + "length": 3, + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" + "offset": 6089, + "length": 6, + "value": "\"cpId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" + "offset": 6167, + "length": 3, + "value": "\"t\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" + "offset": 6201, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2822, + "offset": 6236, "length": 3, - "value": "\"\/\"" + "value": "\"d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" + "offset": 6270, + "length": 5, + "value": "\"sdk\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" + "offset": 6306, + "length": 3, + "value": "\"l\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 3064, + "offset": 6374, "length": 3, - "value": "\"\/\"" + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2465, - "length": 22, - "value": "\"SDKClient initialize\"" + "offset": 6408, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" + "offset": 6445, + "length": 4, + "value": "\"id\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" + "offset": 6480, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" + "offset": 6515, + "length": 4, + "value": "\"dt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" + "offset": 6550, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" + "offset": 6622, + "length": 9, + "value": "\"desired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" + "offset": 6662, + "length": 6, + "value": "\"time\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" + "offset": 6735, + "length": 5, + "value": "\"has\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" + "offset": 6844, + "length": 3, + "value": "\"r\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 6878, + "length": 5, + "value": "\"ota\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" + "offset": 6963, + "length": 4, + "value": "\"sg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" + "offset": 7047, + "length": 6, + "value": "\"guid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" + "offset": 7138, + "length": 5, + "value": "\"ack\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" + "offset": 7226, + "length": 4, + "value": "\"ec\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" + "offset": 7310, + "length": 4, + "value": "\"dv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" + "offset": 7483, + "length": 4, + "value": "\"dn\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" + "offset": 5275, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" + "offset": 5523, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 5543, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "IntegerLiteral", - "offset": 12454, + "offset": 9694, "length": 1, "value": "0" } diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index ad1ff5e..d4c4d0c 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc index f75af6e..7d166c1 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface index ad1ff5e..d4c4d0c 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule index d7fffb1..00d439e 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json index ae0cff5..6c8ca41 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -4526,6 +4526,39 @@ "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -4564,39 +4597,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -5982,6 +5982,39 @@ "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -6020,39 +6053,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -7428,6 +7428,7 @@ "mangledName": "$sSS", "moduleName": "Swift", "declAttributes": [ + "EagerMove", "Frozen" ], "isExternal": true, @@ -8030,12679 +8031,1416 @@ { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 3942, + "offset": 10618, "length": 2, "value": "\"\"" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" + "offset": 10638, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4877, + "offset": 20991, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5639, + "offset": 161, "length": 5, - "value": "\"ios\"" + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" + "offset": 161, + "length": 5, + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" + "offset": 317, + "length": 7, + "value": "\"https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" + "offset": 352, + "length": 6, + "value": "\"http\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7487, + "offset": 454, "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" + "value": "\"Accept\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" + "offset": 562, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8203, + "offset": 521, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8609, + "offset": 559, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" + "offset": 1136, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" + "offset": 1136, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" + "offset": 1447, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", "kind": "StringLiteral", - "offset": 19497, - "length": 12, + "offset": 17309, + "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 19846, + "offset": 438, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "BooleanLiteral", - "offset": 19859, + "offset": 477, "length": 5, "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "IntegerLiteral", - "offset": 20283, + "offset": 751, "length": 1, "value": "0" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "BooleanLiteral", - "offset": 20424, + "offset": 845, "length": 5, "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 20716, + "offset": 1708, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 20975, + "offset": 19292, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 21361, + "offset": 33318, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 5, + "value": "\"DEV\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35224, - "length": 79, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35302, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" + "offset": 327, + "length": 4, + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" + "offset": 282, + "length": 5, + "value": "\"DEV\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, + "offset": 327, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" + "offset": 470, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" + "offset": 511, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", @@ -20712,284 +9450,102 @@ "value": "\"log:mqtt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", @@ -21287,1506 +9843,1261 @@ }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2702, - "length": 61, - "value": "\"\"" + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2721, - "length": 1, - "value": "\"\/api\/v\"" + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2751, - "length": 1, - "value": "\"\/env\/\"" + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2762, - "length": 2, - "value": "\"\"" + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" + "offset": 274, + "length": 3, + "value": "103" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" + "offset": 310, + "length": 3, + "value": "104" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" + "offset": 439, + "length": 3, + "value": "108" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" + "offset": 469, + "length": 3, + "value": "109" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" + "offset": 501, + "length": 3, + "value": "110" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" + "offset": 532, + "length": 3, + "value": "111" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" + "offset": 568, + "length": 3, + "value": "112" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" + "offset": 610, + "length": 3, + "value": "113" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" + "offset": 650, + "length": 3, + "value": "115" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" + "offset": 698, + "length": 3, + "value": "116" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" + "offset": 743, + "length": 3, + "value": "117" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" + "offset": 786, + "length": 3, + "value": "199" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" + "offset": 828, + "length": 3, + "value": "200" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" + "offset": 873, + "length": 3, + "value": "201" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" + "offset": 913, + "length": 3, + "value": "202" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" + "offset": 942, + "length": 3, + "value": "203" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" + "offset": 974, + "length": 3, + "value": "204" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" + "offset": 1006, + "length": 3, + "value": "205" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" + "offset": 1035, + "length": 3, + "value": "221" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" + "offset": 1064, + "length": 3, + "value": "222" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" + "offset": 2960, + "length": 5, + "value": "\"2.1\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4520, + "offset": 3033, "length": 6, - "value": "\"rule\"" + "value": "\"http\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4874, + "offset": 3338, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4909, + "offset": 3369, "length": 1, "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5045, + "offset": 3593, "length": 1, - "value": "5" + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5079, + "offset": 3621, "length": 1, - "value": "6" + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5113, + "offset": 3649, "length": 1, - "value": "7" + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5147, + "offset": 3677, "length": 1, - "value": "8" + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5181, + "offset": 3723, "length": 1, - "value": "9" + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" + "offset": 3751, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" + "offset": 3783, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5908, + "offset": 4203, "length": 6, - "value": "\"edge\"" + "value": "\"cpId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" + "offset": 4279, + "length": 8, + "value": "\"option\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" + "offset": 4319, + "length": 11, + "value": "\"attribute\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" + "offset": 4360, + "length": 9, + "value": "\"setting\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" + "offset": 4403, + "length": 10, + "value": "\"protocol\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" + "offset": 4442, + "length": 8, + "value": "\"device\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" + "offset": 4520, + "length": 6, + "value": "\"rule\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6921, + "offset": 5301, "length": 4, - "value": "\"cv\"" + "value": "\"dt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" + "offset": 5331, + "length": 3, + "value": "\"d\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" + "offset": 5359, + "length": 5, + "value": "\"ack\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7047, + "offset": 5390, "length": 6, - "value": "\"guid\"" + "value": "\"type\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" + "offset": 5424, + "length": 4, + "value": "\"st\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7138, + "offset": 5457, "length": 5, - "value": "\"ack\"" + "value": "\"msg\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" + "offset": 5487, + "length": 5, + "value": "\"cid\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7226, + "offset": 5550, "length": 4, "value": "\"ec\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7268, + "offset": 5580, "length": 4, - "value": "\"rg\"" + "value": "\"ct\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" + "offset": 5610, + "length": 6, + "value": "\"meta\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" + "offset": 5642, + "length": 5, + "value": "\"has\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" + "offset": 5673, + "length": 3, + "value": "\"p\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7441, + "offset": 5726, "length": 4, - "value": "\"mt\"" + "value": "\"df\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7483, + "offset": 5756, "length": 4, - "value": "\"dn\"" + "value": "\"cd\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, + "offset": 5786, "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" + "value": "\"at\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2266, + "offset": 5817, "length": 5, - "value": "\"\"" + "value": "\"gtw\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" + "offset": 5848, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" + "offset": 5877, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" + "offset": 5908, + "length": 6, + "value": "\"edge\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" + "offset": 5940, + "length": 4, + "value": "\"pf\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" + "offset": 5971, + "length": 5, + "value": "\"hwv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2310, + "offset": 6003, "length": 5, - "value": "\"\"" + "value": "\"swv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" + "offset": 6033, + "length": 3, + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" + "offset": 6089, + "length": 6, + "value": "\"cpId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" + "offset": 6167, + "length": 3, + "value": "\"t\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" + "offset": 6201, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2822, + "offset": 6236, "length": 3, - "value": "\"\/\"" + "value": "\"d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" + "offset": 6270, + "length": 5, + "value": "\"sdk\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" + "offset": 6306, + "length": 3, + "value": "\"l\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 3064, + "offset": 6374, "length": 3, - "value": "\"\/\"" + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2465, - "length": 22, - "value": "\"SDKClient initialize\"" + "offset": 6408, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" + "offset": 6445, + "length": 4, + "value": "\"id\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" + "offset": 6480, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" + "offset": 6515, + "length": 4, + "value": "\"dt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" + "offset": 6550, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" + "offset": 6622, + "length": 9, + "value": "\"desired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" + "offset": 6662, + "length": 6, + "value": "\"time\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" + "offset": 6735, + "length": 5, + "value": "\"has\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" + "offset": 6844, + "length": 3, + "value": "\"r\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 6878, + "length": 5, + "value": "\"ota\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" + "offset": 6963, + "length": 4, + "value": "\"sg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" + "offset": 7047, + "length": 6, + "value": "\"guid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" + "offset": 7138, + "length": 5, + "value": "\"ack\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" + "offset": 7226, + "length": 4, + "value": "\"ec\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" + "offset": 7310, + "length": 4, + "value": "\"dv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" + "offset": 7483, + "length": 4, + "value": "\"dn\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" + "offset": 5275, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" + "offset": 5523, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 5543, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "IntegerLiteral", - "offset": 12454, + "offset": 9694, "length": 1, "value": "0" } diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index b69f354..eea0f57 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 48a3915..6dc5cad 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index b69f354..eea0f57 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule index 541e084..650f746 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/_CodeSignature/CodeResources index 4c0cd9f..2a5d0ce 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2.framework/_CodeSignature/CodeResources @@ -6,11 +6,11 @@ Headers/IoTConnect2-Swift.h - IP8BlqmMYzL2FgCHaCmNG1HAh1M= + GhK26ItL/lwitT6yp+aWm5TEskE= Info.plist - fiib3AsMzx70+iFsJJGUX/UMiAc= + yvc7bt2Sn7XK/y8NLUvzGpCRCoM= LICENSE @@ -18,43 +18,43 @@ Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json - ollTdEi5moD5kMAksBBHY9eYSKw= + BUEG2abTNDcx5cUU18DKhqXF0tg= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - vCE2BV9pJwA6smTEi+7yc6x/SOk= + icjNfBLT+Pjbb/VVZZHPGSKmyIw= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc - L/CK+YmaZvUjlobdwadHVCwFXfk= + lswH23gC83A8kN0JmV4rwmMGIiQ= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface - vCE2BV9pJwA6smTEi+7yc6x/SOk= + icjNfBLT+Pjbb/VVZZHPGSKmyIw= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule - oKpEvQynqNs71wEz9I0I9icRcdA= + zdaSTf3efMP8webLiMjxr008SY4= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json - ollTdEi5moD5kMAksBBHY9eYSKw= + BUEG2abTNDcx5cUU18DKhqXF0tg= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - kzD8BULaRBBG08EjEGR63Tqdy6o= + srtaoPWDCwQYcqwz6JYixXqZHSs= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - hD5T9nj0i4lPFFEjt6ee0HBI0R8= + Dgl+C1L+xG6gA7QKMhx1IWOfKW0= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - kzD8BULaRBBG08EjEGR63Tqdy6o= + srtaoPWDCwQYcqwz6JYixXqZHSs= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - rccdKLCxFCJAnQtxJPktx3avdZM= + Lh8F7yYxBkDKHlT+FWPfS8aySFA= Modules/module.modulemap @@ -67,7 +67,7 @@ hash2 - shmZYGehmFCjzd6uF+STWkKX658heynu431qu3+KC7U= + B9N2fdn6GpLHirRMdWYVjg5PNOJcBtbYX3km3bun5LY= LICENSE @@ -81,70 +81,70 @@ hash2 - fLH2P2LNOOqBvyzGHS5z0Z+jzEa9KtPYFUFcM9mv+2E= + kM+dtlXXA1FkL3/FTfJxvGTjM3sd+baL+dtI0g1bfVM= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - BvoirQP7/cQ8OOazUihj/dtgljINKNZxn5Bbyh9QG+A= + YFLMLtDKBAvuNP0vFWYMNEekg8G0lahhOESbSlUKgLE= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - 0oD1N8IzNCQIKbuVxXi1xWPgSKWUogMwRG+8hL2Klts= + ePbIKFsOaG0E6sqf8DyUVL9A8sdB8J8CPXCk9lbs7Lc= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - BvoirQP7/cQ8OOazUihj/dtgljINKNZxn5Bbyh9QG+A= + YFLMLtDKBAvuNP0vFWYMNEekg8G0lahhOESbSlUKgLE= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - LzcQSBBQg0VZWKYjiyb4q/HdaxRrQWI41TnshDVwbak= + DxQQJtnPVXEhGTtC56qlF6aDySgvPBmvK6rqrW8MjAs= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - fLH2P2LNOOqBvyzGHS5z0Z+jzEa9KtPYFUFcM9mv+2E= + kM+dtlXXA1FkL3/FTfJxvGTjM3sd+baL+dtI0g1bfVM= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - AhYdzZPyWzzQmX470nm8PIGiJNJ58rt5sAElnAfdL+o= + 8psjuhfOgzwiK7BwjK8e880kXBi1IkA4sa3VLdf4vQ8= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - gom7gTB6qZzpSC+Op3c/WhIuGE7R4PcMxHf7kW0q644= + OIuQTxjueNMPDJIrThCL2xtg3HrLeSv4lzwsH2M7Krg= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - AhYdzZPyWzzQmX470nm8PIGiJNJ58rt5sAElnAfdL+o= + 8psjuhfOgzwiK7BwjK8e880kXBi1IkA4sa3VLdf4vQ8= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - Ap2Hzt3asQ+3iwq09haZ3EsUz1oXOWUrPOu5z8PQk+8= + XoVdSIvrNOy7f4O3qOUTvominxZhYFz57rUVlt71jSo= Modules/module.modulemap diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist index c99f6d7..5aaf18e 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket index d96167c..d49af9c 100755 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources index ea6e0c7..56c3ea0 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/MqttCocoaAsyncSocket.framework/_CodeSignature/CodeResources @@ -18,7 +18,7 @@ Info.plist - vxQKYvJolGPBDXH5bcjjWUxfSrA= + fFYMzSZ+MjRwUqEPwATr8CC5dd0= Modules/module.modulemap diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Info.plist b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Info.plist index 74a35df..d8100c1 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Info.plist and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Pods_IoTConnect2 b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Pods_IoTConnect2 index 19356bb..74f29e0 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Pods_IoTConnect2 and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/Pods_IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeDirectory b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeDirectory index 885458a..8dded5a 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeDirectory and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeDirectory differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeRequirements-1 b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeRequirements-1 index 09a66a3..677ad45 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeRequirements-1 and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeResources index aa8cdfc..956304c 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/Pods_IoTConnect2.framework/_CodeSignature/CodeResources @@ -10,7 +10,7 @@ Info.plist - UrgyqNDRMxtOLvih7nLBKtcKWLo= + RzXn+/2t+nALcOHJYIrnjBjFxl8= Modules/module.modulemap diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT index 68b43d6..04e50a6 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/DWARF/CocoaMQTT differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml index 8926f6a..ea07ca6 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/aarch64/CocoaMQTT.yml @@ -2,1660 +2,1704 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT' relocations: - - { offsetInCU: 0x34, offset: 0x54977, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x46A10, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x549AC, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x46A38, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x54A11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x1988, symSize: 0x4 } - - { offsetInCU: 0x6B, offset: 0x54A2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x4, symBinAddr: 0x198C, symSize: 0x4 } - - { offsetInCU: 0x94, offset: 0x54A56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x8, symBinAddr: 0x1990, symSize: 0x28 } - - { offsetInCU: 0xB3, offset: 0x54A75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x30, symBinAddr: 0x19B8, symSize: 0x110 } - - { offsetInCU: 0xFC, offset: 0x54ABE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x200, symBinAddr: 0x1B88, symSize: 0x20 } - - { offsetInCU: 0x12D, offset: 0x54AEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x220, symBinAddr: 0x1BA8, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x54B0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x22C, symBinAddr: 0x1BB4, symSize: 0x8 } - - { offsetInCU: 0x165, offset: 0x54B27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x84E4, symBinAddr: 0x9E58, symSize: 0x14 } - - { offsetInCU: 0x2C0, offset: 0x54C82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x234, symBinAddr: 0x1BBC, symSize: 0x14C } - - { offsetInCU: 0x40B, offset: 0x54DCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x380, symBinAddr: 0x1D08, symSize: 0x8 } - - { offsetInCU: 0x42F, offset: 0x54DF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x388, symBinAddr: 0x1D10, symSize: 0x48 } - - { offsetInCU: 0x44E, offset: 0x54E10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x3D0, symBinAddr: 0x1D58, symSize: 0x58 } - - { offsetInCU: 0x48D, offset: 0x54E4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x428, symBinAddr: 0x1DB0, symSize: 0x70 } - - { offsetInCU: 0x4BC, offset: 0x54E7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x498, symBinAddr: 0x1E20, symSize: 0x6C } - - { offsetInCU: 0x4E7, offset: 0x54EA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x54C, symBinAddr: 0x1ED4, symSize: 0x44 } - - { offsetInCU: 0x516, offset: 0x54ED8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x5B0, symBinAddr: 0x1F38, symSize: 0x44 } - - { offsetInCU: 0x545, offset: 0x54F07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x6B4, symBinAddr: 0x203C, symSize: 0x44 } - - { offsetInCU: 0x574, offset: 0x54F36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x71C, symBinAddr: 0x20A4, symSize: 0x44 } - - { offsetInCU: 0x5A3, offset: 0x54F65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x21B4, symSize: 0x44 } - - { offsetInCU: 0x5D2, offset: 0x54F94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x890, symBinAddr: 0x2218, symSize: 0x44 } - - { offsetInCU: 0x601, offset: 0x54FC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x8DC, symBinAddr: 0x2264, symSize: 0x50 } - - { offsetInCU: 0x620, offset: 0x54FE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0x92C, symBinAddr: 0x22B4, symSize: 0x50 } - - { offsetInCU: 0x65F, offset: 0x55021, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0x97C, symBinAddr: 0x2304, symSize: 0x44 } - - { offsetInCU: 0x68E, offset: 0x55050, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0x9C0, symBinAddr: 0x2348, symSize: 0x4 } - - { offsetInCU: 0x6D9, offset: 0x5509B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0x9C4, symBinAddr: 0x234C, symSize: 0xC0 } - - { offsetInCU: 0x749, offset: 0x5510B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xA90, symBinAddr: 0x2418, symSize: 0xF4 } - - { offsetInCU: 0x7BC, offset: 0x5517E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xB90, symBinAddr: 0x2518, symSize: 0x44 } - - { offsetInCU: 0x7DB, offset: 0x5519D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xBD4, symBinAddr: 0x255C, symSize: 0x50 } - - { offsetInCU: 0x81A, offset: 0x551DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC24, symBinAddr: 0x25AC, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x55267, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xC70, symBinAddr: 0x25F8, symSize: 0x118 } - - { offsetInCU: 0x97B, offset: 0x5533D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0xF9C, symBinAddr: 0x2924, symSize: 0x44 } - - { offsetInCU: 0x9B8, offset: 0x5537A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0xFE0, symBinAddr: 0x2968, symSize: 0x90 } - - { offsetInCU: 0xA00, offset: 0x553C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x1070, symBinAddr: 0x29F8, symSize: 0x48 } - - { offsetInCU: 0xA2F, offset: 0x553F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x10B8, symBinAddr: 0x2A40, symSize: 0x80 } - - { offsetInCU: 0xA8C, offset: 0x5544E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x113C, symBinAddr: 0x2AC4, symSize: 0x20 } - - { offsetInCU: 0xAAC, offset: 0x5546E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x113C, symBinAddr: 0x2AC4, symSize: 0x20 } - - { offsetInCU: 0xADC, offset: 0x5549E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x115C, symBinAddr: 0x2AE4, symSize: 0x20 } - - { offsetInCU: 0xB05, offset: 0x554C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x115C, symBinAddr: 0x2AE4, symSize: 0x20 } - - { offsetInCU: 0xB5D, offset: 0x5551F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x117C, symBinAddr: 0x2B04, symSize: 0x34 } - - { offsetInCU: 0xBEB, offset: 0x555AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11B0, symBinAddr: 0x2B38, symSize: 0x20 } - - { offsetInCU: 0xC19, offset: 0x555DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11B0, symBinAddr: 0x2B38, symSize: 0x20 } - - { offsetInCU: 0xC2D, offset: 0x555EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x11B0, symBinAddr: 0x2B38, symSize: 0x20 } - - { offsetInCU: 0xC81, offset: 0x55643, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x11D0, symBinAddr: 0x2B58, symSize: 0x20 } - - { offsetInCU: 0xCA1, offset: 0x55663, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x11D0, symBinAddr: 0x2B58, symSize: 0x20 } - - { offsetInCU: 0xCEF, offset: 0x556B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x11FC, symBinAddr: 0x2B84, symSize: 0x34 } - - { offsetInCU: 0xD53, offset: 0x55715, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x123C, symBinAddr: 0x2BC4, symSize: 0x20 } - - { offsetInCU: 0xD73, offset: 0x55735, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x123C, symBinAddr: 0x2BC4, symSize: 0x20 } - - { offsetInCU: 0xDC1, offset: 0x55783, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1280, symBinAddr: 0x2C08, symSize: 0x34 } - - { offsetInCU: 0xE25, offset: 0x557E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x12F8, symBinAddr: 0x2C80, symSize: 0x44 } - - { offsetInCU: 0xE54, offset: 0x55816, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x13E8, symBinAddr: 0x2D70, symSize: 0x44 } - - { offsetInCU: 0xE83, offset: 0x55845, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x144C, symBinAddr: 0x2DD4, symSize: 0x44 } - - { offsetInCU: 0xEB2, offset: 0x55874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1534, symBinAddr: 0x2EBC, symSize: 0x44 } - - { offsetInCU: 0xEE1, offset: 0x558A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x1590, symBinAddr: 0x2F18, symSize: 0x78 } - - { offsetInCU: 0xF1E, offset: 0x558E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x1608, symBinAddr: 0x2F90, symSize: 0x7C } - - { offsetInCU: 0xF8C, offset: 0x5594E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x1684, symBinAddr: 0x300C, symSize: 0x90 } - - { offsetInCU: 0x1010, offset: 0x559D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x1714, symBinAddr: 0x309C, symSize: 0x24 } - - { offsetInCU: 0x1065, offset: 0x55A27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x1738, symBinAddr: 0x30C0, symSize: 0x88 } - - { offsetInCU: 0x10C2, offset: 0x55A84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x17C0, symBinAddr: 0x3148, symSize: 0x7C } - - { offsetInCU: 0x1121, offset: 0x55AE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x183C, symBinAddr: 0x31C4, symSize: 0xA8 } - - { offsetInCU: 0x11A9, offset: 0x55B6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x18E4, symBinAddr: 0x326C, symSize: 0x80 } - - { offsetInCU: 0x1220, offset: 0x55BE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1964, symBinAddr: 0x32EC, symSize: 0xC8 } - - { offsetInCU: 0x1272, offset: 0x55C34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1A2C, symBinAddr: 0x33B4, symSize: 0xD4 } - - { offsetInCU: 0x12F7, offset: 0x55CB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1B00, symBinAddr: 0x3488, symSize: 0xFC } - - { offsetInCU: 0x1394, offset: 0x55D56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1BFC, symBinAddr: 0x3584, symSize: 0x130 } - - { offsetInCU: 0x1418, offset: 0x55DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1D2C, symBinAddr: 0x36B4, symSize: 0xC0 } - - { offsetInCU: 0x148C, offset: 0x55E4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x1EB8, symBinAddr: 0x3840, symSize: 0xF4 } - - { offsetInCU: 0x1503, offset: 0x55EC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x209C, symBinAddr: 0x3A24, symSize: 0x48 } - - { offsetInCU: 0x1534, offset: 0x55EF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x20E4, symBinAddr: 0x3A6C, symSize: 0x50 } - - { offsetInCU: 0x1576, offset: 0x55F38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2134, symBinAddr: 0x3ABC, symSize: 0x44 } - - { offsetInCU: 0x1595, offset: 0x55F57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x21F4, symBinAddr: 0x3B7C, symSize: 0x10 } - - { offsetInCU: 0x15AD, offset: 0x55F6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x2204, symBinAddr: 0x3B8C, symSize: 0x4 } - - { offsetInCU: 0x15E7, offset: 0x55FA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2220, symBinAddr: 0x3BA8, symSize: 0x44 } - - { offsetInCU: 0x1618, offset: 0x55FDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2264, symBinAddr: 0x3BEC, symSize: 0x10 } - - { offsetInCU: 0x1630, offset: 0x55FF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x2274, symBinAddr: 0x3BFC, symSize: 0x4 } - - { offsetInCU: 0x1679, offset: 0x5603B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2290, symBinAddr: 0x3C18, symSize: 0x44 } - - { offsetInCU: 0x16AA, offset: 0x5606C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x22D4, symBinAddr: 0x3C5C, symSize: 0x10 } - - { offsetInCU: 0x16C2, offset: 0x56084, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x22E4, symBinAddr: 0x3C6C, symSize: 0x4 } - - { offsetInCU: 0x16FC, offset: 0x560BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x2300, symBinAddr: 0x3C88, symSize: 0x44 } - - { offsetInCU: 0x172D, offset: 0x560EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2344, symBinAddr: 0x3CCC, symSize: 0x10 } - - { offsetInCU: 0x1745, offset: 0x56107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x236C, symBinAddr: 0x3CF4, symSize: 0x44 } - - { offsetInCU: 0x1776, offset: 0x56138, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x23B0, symBinAddr: 0x3D38, symSize: 0x10 } - - { offsetInCU: 0x178E, offset: 0x56150, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x23C0, symBinAddr: 0x3D48, symSize: 0x4 } - - { offsetInCU: 0x17D7, offset: 0x56199, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x23DC, symBinAddr: 0x3D64, symSize: 0x44 } - - { offsetInCU: 0x1808, offset: 0x561CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x2420, symBinAddr: 0x3DA8, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x561E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x2448, symBinAddr: 0x3DD0, symSize: 0x44 } - - { offsetInCU: 0x1851, offset: 0x56213, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x248C, symBinAddr: 0x3E14, symSize: 0x10 } - - { offsetInCU: 0x1869, offset: 0x5622B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x249C, symBinAddr: 0x3E24, symSize: 0x4 } - - { offsetInCU: 0x1894, offset: 0x56256, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x24B8, symBinAddr: 0x3E40, symSize: 0x44 } - - { offsetInCU: 0x18C5, offset: 0x56287, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x24FC, symBinAddr: 0x3E84, symSize: 0x10 } - - { offsetInCU: 0x18DD, offset: 0x5629F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x250C, symBinAddr: 0x3E94, symSize: 0x4 } - - { offsetInCU: 0x1908, offset: 0x562CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2528, symBinAddr: 0x3EB0, symSize: 0x44 } - - { offsetInCU: 0x1939, offset: 0x562FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x256C, symBinAddr: 0x3EF4, symSize: 0x10 } - - { offsetInCU: 0x1951, offset: 0x56313, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x257C, symBinAddr: 0x3F04, symSize: 0x4 } - - { offsetInCU: 0x198B, offset: 0x5634D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x2598, symBinAddr: 0x3F20, symSize: 0x44 } - - { offsetInCU: 0x19BC, offset: 0x5637E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x25DC, symBinAddr: 0x3F64, symSize: 0x10 } - - { offsetInCU: 0x19D4, offset: 0x56396, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x25EC, symBinAddr: 0x3F74, symSize: 0x4 } - - { offsetInCU: 0x1A1F, offset: 0x563E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x2608, symBinAddr: 0x3F90, symSize: 0x44 } - - { offsetInCU: 0x1A50, offset: 0x56412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x264C, symBinAddr: 0x3FD4, symSize: 0x10 } - - { offsetInCU: 0x1A68, offset: 0x5642A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2674, symBinAddr: 0x3FFC, symSize: 0x44 } - - { offsetInCU: 0x1A99, offset: 0x5645B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x26B8, symBinAddr: 0x4040, symSize: 0x10 } - - { offsetInCU: 0x1AB1, offset: 0x56473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2788, symBinAddr: 0x4110, symSize: 0x44 } - - { offsetInCU: 0x1AE2, offset: 0x564A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x27CC, symBinAddr: 0x4154, symSize: 0x70 } - - { offsetInCU: 0x1B01, offset: 0x564C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x283C, symBinAddr: 0x41C4, symSize: 0x5EC } - - { offsetInCU: 0x1D11, offset: 0x566D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x2E28, symBinAddr: 0x47B0, symSize: 0x178 } - - { offsetInCU: 0x1D70, offset: 0x56732, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x2FA0, symBinAddr: 0x4928, symSize: 0x24 } - - { offsetInCU: 0x1E6F, offset: 0x56831, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x31F0, symBinAddr: 0x4B78, symSize: 0x510 } - - { offsetInCU: 0x202F, offset: 0x569F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3700, symBinAddr: 0x5088, symSize: 0x8 } - - { offsetInCU: 0x20B5, offset: 0x56A77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x3708, symBinAddr: 0x5090, symSize: 0x648 } - - { offsetInCU: 0x23B3, offset: 0x56D75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x3D50, symBinAddr: 0x56D8, symSize: 0xC0 } - - { offsetInCU: 0x2466, offset: 0x56E28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x3E3C, symBinAddr: 0x57C4, symSize: 0x4 } - - { offsetInCU: 0x24BF, offset: 0x56E81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19internal_disconnectyyF', symObjAddr: 0x3E40, symBinAddr: 0x57C8, symSize: 0xD4 } - - { offsetInCU: 0x2575, offset: 0x56F37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x3F14, symBinAddr: 0x589C, symSize: 0x100 } - - { offsetInCU: 0x25F1, offset: 0x56FB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x4014, symBinAddr: 0x599C, symSize: 0xB0 } - - { offsetInCU: 0x267D, offset: 0x5703F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x40C4, symBinAddr: 0x5A4C, symSize: 0x17C } - - { offsetInCU: 0x27EB, offset: 0x571AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x4240, symBinAddr: 0x5BC8, symSize: 0x5B0 } - - { offsetInCU: 0x2A47, offset: 0x57409, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x47F0, symBinAddr: 0x6178, symSize: 0x7C } - - { offsetInCU: 0x2AB4, offset: 0x57476, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x486C, symBinAddr: 0x61F4, symSize: 0xBC } - - { offsetInCU: 0x2BA0, offset: 0x57562, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4928, symBinAddr: 0x62B0, symSize: 0x78 } - - { offsetInCU: 0x2C68, offset: 0x5762A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x49A0, symBinAddr: 0x6328, symSize: 0xF8 } - - { offsetInCU: 0x2EB5, offset: 0x57877, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x4A98, symBinAddr: 0x6420, symSize: 0x134 } - - { offsetInCU: 0x3072, offset: 0x57A34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x4BCC, symBinAddr: 0x6554, symSize: 0xF0 } - - { offsetInCU: 0x31A4, offset: 0x57B66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4CBC, symBinAddr: 0x6644, symSize: 0x20 } - - { offsetInCU: 0x31C2, offset: 0x57B84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4CDC, symBinAddr: 0x6664, symSize: 0x2C } - - { offsetInCU: 0x3225, offset: 0x57BE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4D08, symBinAddr: 0x6690, symSize: 0x2C } - - { offsetInCU: 0x328C, offset: 0x57C4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4D34, symBinAddr: 0x66BC, symSize: 0x44 } - - { offsetInCU: 0x347B, offset: 0x57E3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x6EE4, symBinAddr: 0x8858, symSize: 0x24C } - - { offsetInCU: 0x364F, offset: 0x58011, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubAckV_Tg5', symObjAddr: 0x7130, symBinAddr: 0x8AA4, symSize: 0x22C } - - { offsetInCU: 0x3823, offset: 0x581E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRecV_Tg5', symObjAddr: 0x735C, symBinAddr: 0x8CD0, symSize: 0x22C } - - { offsetInCU: 0x39F7, offset: 0x583B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PubCompV_Tg5', symObjAddr: 0x7588, symBinAddr: 0x8EFC, symSize: 0x22C } - - { offsetInCU: 0x3BCB, offset: 0x5858D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x77B4, symBinAddr: 0x9128, symSize: 0x234 } - - { offsetInCU: 0x3D9F, offset: 0x58761, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x79E8, symBinAddr: 0x935C, symSize: 0x200 } - - { offsetInCU: 0x3F73, offset: 0x58935, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x7BE8, symBinAddr: 0x955C, symSize: 0x22C } - - { offsetInCU: 0x4147, offset: 0x58B09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x7E14, symBinAddr: 0x9788, symSize: 0x270 } - - { offsetInCU: 0x431B, offset: 0x58CDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x8084, symBinAddr: 0x99F8, symSize: 0x234 } - - { offsetInCU: 0x44EF, offset: 0x58EB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRelV_Tg5', symObjAddr: 0x82B8, symBinAddr: 0x9C2C, symSize: 0x22C } - - { offsetInCU: 0x4831, offset: 0x591F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x504, symBinAddr: 0x1E8C, symSize: 0x14 } - - { offsetInCU: 0x4849, offset: 0x5920B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x518, symBinAddr: 0x1EA0, symSize: 0x1C } - - { offsetInCU: 0x4861, offset: 0x59223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x590, symBinAddr: 0x1F18, symSize: 0x8 } - - { offsetInCU: 0x4879, offset: 0x5923B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x6F8, symBinAddr: 0x2080, symSize: 0xC } - - { offsetInCU: 0x4891, offset: 0x59253, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x760, symBinAddr: 0x20E8, symSize: 0xC } - - { offsetInCU: 0x48A9, offset: 0x5926B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x870, symBinAddr: 0x21F8, symSize: 0x8 } - - { offsetInCU: 0x48C1, offset: 0x59283, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x8D4, symBinAddr: 0x225C, symSize: 0x8 } - - { offsetInCU: 0x4976, offset: 0x59338, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xC68, symBinAddr: 0x25F0, symSize: 0x8 } - - { offsetInCU: 0x49A5, offset: 0x59367, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xD88, symBinAddr: 0x2710, symSize: 0x214 } - - { offsetInCU: 0x4A31, offset: 0x593F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4D80, symBinAddr: 0x6708, symSize: 0x5C } - - { offsetInCU: 0x4B87, offset: 0x59549, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x12D8, symBinAddr: 0x2C60, symSize: 0x8 } - - { offsetInCU: 0x4B9F, offset: 0x59561, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x133C, symBinAddr: 0x2CC4, symSize: 0x8 } - - { offsetInCU: 0x4BB7, offset: 0x59579, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1344, symBinAddr: 0x2CCC, symSize: 0x8 } - - { offsetInCU: 0x4BCF, offset: 0x59591, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x142C, symBinAddr: 0x2DB4, symSize: 0x8 } - - { offsetInCU: 0x4BE7, offset: 0x595A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1490, symBinAddr: 0x2E18, symSize: 0x8 } - - { offsetInCU: 0x4BFF, offset: 0x595C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x1578, symBinAddr: 0x2F00, symSize: 0x8 } - - { offsetInCU: 0x4C17, offset: 0x595D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1580, symBinAddr: 0x2F08, symSize: 0x8 } - - { offsetInCU: 0x4C2F, offset: 0x595F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x1588, symBinAddr: 0x2F10, symSize: 0x8 } - - { offsetInCU: 0x4D61, offset: 0x59723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x2090, symBinAddr: 0x3A18, symSize: 0xC } - - { offsetInCU: 0x4D7D, offset: 0x5973F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x2090, symBinAddr: 0x3A18, symSize: 0xC } - - { offsetInCU: 0x4D90, offset: 0x59752, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x2178, symBinAddr: 0x3B00, symSize: 0x24 } - - { offsetInCU: 0x4DBF, offset: 0x59781, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x219C, symBinAddr: 0x3B24, symSize: 0x24 } - - { offsetInCU: 0x4DEE, offset: 0x597B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x21C0, symBinAddr: 0x3B48, symSize: 0x24 } - - { offsetInCU: 0x4E1D, offset: 0x597DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x21E4, symBinAddr: 0x3B6C, symSize: 0x8 } - - { offsetInCU: 0x4E35, offset: 0x597F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x21EC, symBinAddr: 0x3B74, symSize: 0x8 } - - { offsetInCU: 0x4E9C, offset: 0x5985E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x2FC4, symBinAddr: 0x494C, symSize: 0x22C } - - { offsetInCU: 0x5053, offset: 0x59A15, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x3E10, symBinAddr: 0x5798, symSize: 0x2C } - - { offsetInCU: 0x5426, offset: 0x59DE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4D78, symBinAddr: 0x6700, symSize: 0x8 } - - { offsetInCU: 0x5459, offset: 0x59E1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4DDC, symBinAddr: 0x6764, symSize: 0x4 } - - { offsetInCU: 0x5487, offset: 0x59E49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x4DE0, symBinAddr: 0x6768, symSize: 0x1F0 } - - { offsetInCU: 0x557B, offset: 0x59F3D, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x4FD0, symBinAddr: 0x6958, symSize: 0x3C } - - { offsetInCU: 0x559E, offset: 0x59F60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x500C, symBinAddr: 0x6994, symSize: 0x1B0 } - - { offsetInCU: 0x5684, offset: 0x5A046, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x51BC, symBinAddr: 0x6B44, symSize: 0x64 } - - { offsetInCU: 0x569C, offset: 0x5A05E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5220, symBinAddr: 0x6BA8, symSize: 0xC4 } - - { offsetInCU: 0x5722, offset: 0x5A0E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x52E4, symBinAddr: 0x6C6C, symSize: 0x4 } - - { offsetInCU: 0x5809, offset: 0x5A1CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x52E8, symBinAddr: 0x6C70, symSize: 0x250 } - - { offsetInCU: 0x5B94, offset: 0x5A556, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5538, symBinAddr: 0x6EC0, symSize: 0x390 } - - { offsetInCU: 0x5DDB, offset: 0x5A79D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x58C8, symBinAddr: 0x7250, symSize: 0xB0 } - - { offsetInCU: 0x5EC1, offset: 0x5A883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5978, symBinAddr: 0x7300, symSize: 0x4 } - - { offsetInCU: 0x5EE1, offset: 0x5A8A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5978, symBinAddr: 0x7300, symSize: 0x4 } - - { offsetInCU: 0x5F06, offset: 0x5A8C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x597C, symBinAddr: 0x7304, symSize: 0x4 } - - { offsetInCU: 0x5F22, offset: 0x5A8E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5980, symBinAddr: 0x7308, symSize: 0x4 } - - { offsetInCU: 0x5F3E, offset: 0x5A900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x5984, symBinAddr: 0x730C, symSize: 0x4 } - - { offsetInCU: 0x5F5A, offset: 0x5A91C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5988, symBinAddr: 0x7310, symSize: 0x4 } - - { offsetInCU: 0x5F76, offset: 0x5A938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x598C, symBinAddr: 0x7314, symSize: 0x4 } - - { offsetInCU: 0x5F92, offset: 0x5A954, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5990, symBinAddr: 0x7318, symSize: 0x204 } - - { offsetInCU: 0x6022, offset: 0x5A9E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5B94, symBinAddr: 0x751C, symSize: 0x140 } - - { offsetInCU: 0x6110, offset: 0x5AAD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5CD4, symBinAddr: 0x765C, symSize: 0x2C } - - { offsetInCU: 0x6152, offset: 0x5AB14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5D00, symBinAddr: 0x7688, symSize: 0x8 } - - { offsetInCU: 0x6194, offset: 0x5AB56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5D08, symBinAddr: 0x7690, symSize: 0x8 } - - { offsetInCU: 0x61D6, offset: 0x5AB98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5D10, symBinAddr: 0x7698, symSize: 0x8 } - - { offsetInCU: 0x6218, offset: 0x5ABDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5D18, symBinAddr: 0x76A0, symSize: 0x8 } - - { offsetInCU: 0x625A, offset: 0x5AC1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5D20, symBinAddr: 0x76A8, symSize: 0x8 } - - { offsetInCU: 0x629C, offset: 0x5AC5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5D28, symBinAddr: 0x76B0, symSize: 0x8 } - - { offsetInCU: 0x62DE, offset: 0x5ACA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5D30, symBinAddr: 0x76B8, symSize: 0x8 } - - { offsetInCU: 0x6320, offset: 0x5ACE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5D38, symBinAddr: 0x76C0, symSize: 0x4 } - - { offsetInCU: 0x6340, offset: 0x5AD02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5D38, symBinAddr: 0x76C0, symSize: 0x4 } - - { offsetInCU: 0x6353, offset: 0x5AD15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5D3C, symBinAddr: 0x76C4, symSize: 0x8 } - - { offsetInCU: 0x636B, offset: 0x5AD2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5D44, symBinAddr: 0x76CC, symSize: 0x10 } - - { offsetInCU: 0x6383, offset: 0x5AD45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5D54, symBinAddr: 0x76DC, symSize: 0x1C } - - { offsetInCU: 0x639B, offset: 0x5AD5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5D70, symBinAddr: 0x76F8, symSize: 0x8 } - - { offsetInCU: 0x63B3, offset: 0x5AD75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x5D78, symBinAddr: 0x7700, symSize: 0xC } - - { offsetInCU: 0x63CB, offset: 0x5AD8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x5D84, symBinAddr: 0x770C, symSize: 0xC } - - { offsetInCU: 0x63E3, offset: 0x5ADA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x5D90, symBinAddr: 0x7718, symSize: 0x8 } - - { offsetInCU: 0x63FB, offset: 0x5ADBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x5D98, symBinAddr: 0x7720, symSize: 0x8 } - - { offsetInCU: 0x6413, offset: 0x5ADD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x5DA0, symBinAddr: 0x7728, symSize: 0x38 } - - { offsetInCU: 0x642B, offset: 0x5ADED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x5DD8, symBinAddr: 0x7760, symSize: 0x8 } - - { offsetInCU: 0x6443, offset: 0x5AE05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x5E08, symBinAddr: 0x7790, symSize: 0x8 } - - { offsetInCU: 0x645B, offset: 0x5AE1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5E10, symBinAddr: 0x7798, symSize: 0x8 } - - { offsetInCU: 0x6473, offset: 0x5AE35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x5E18, symBinAddr: 0x77A0, symSize: 0x8 } - - { offsetInCU: 0x648B, offset: 0x5AE4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5E20, symBinAddr: 0x77A8, symSize: 0x8 } - - { offsetInCU: 0x64A3, offset: 0x5AE65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5E28, symBinAddr: 0x77B0, symSize: 0x8 } - - { offsetInCU: 0x64BB, offset: 0x5AE7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x5E30, symBinAddr: 0x77B8, symSize: 0x8 } - - { offsetInCU: 0x64D3, offset: 0x5AE95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x5E38, symBinAddr: 0x77C0, symSize: 0x8 } - - { offsetInCU: 0x64EB, offset: 0x5AEAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5E40, symBinAddr: 0x77C8, symSize: 0x8 } - - { offsetInCU: 0x6503, offset: 0x5AEC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5E48, symBinAddr: 0x77D0, symSize: 0x8 } - - { offsetInCU: 0x651B, offset: 0x5AEDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x5E50, symBinAddr: 0x77D8, symSize: 0x8 } - - { offsetInCU: 0x658E, offset: 0x5AF50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x5E58, symBinAddr: 0x77E0, symSize: 0x16C } - - { offsetInCU: 0x6614, offset: 0x5AFD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x6160, symBinAddr: 0x7AE8, symSize: 0x24 } - - { offsetInCU: 0x6643, offset: 0x5B005, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6184, symBinAddr: 0x7B0C, symSize: 0x8 } - - { offsetInCU: 0x665B, offset: 0x5B01D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x618C, symBinAddr: 0x7B14, symSize: 0x8 } - - { offsetInCU: 0x6673, offset: 0x5B035, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6194, symBinAddr: 0x7B1C, symSize: 0x8 } - - { offsetInCU: 0x668B, offset: 0x5B04D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x619C, symBinAddr: 0x7B24, symSize: 0x8 } - - { offsetInCU: 0x66A3, offset: 0x5B065, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x61A4, symBinAddr: 0x7B2C, symSize: 0x8 } - - { offsetInCU: 0x66BB, offset: 0x5B07D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x61AC, symBinAddr: 0x7B34, symSize: 0x8 } - - { offsetInCU: 0x66D3, offset: 0x5B095, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x61B4, symBinAddr: 0x7B3C, symSize: 0x18 } - - { offsetInCU: 0x66EB, offset: 0x5B0AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x61CC, symBinAddr: 0x7B54, symSize: 0x1C } - - { offsetInCU: 0x6703, offset: 0x5B0C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x61E8, symBinAddr: 0x7B70, symSize: 0xC } - - { offsetInCU: 0x671B, offset: 0x5B0DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x61F4, symBinAddr: 0x7B7C, symSize: 0xC } - - { offsetInCU: 0x6733, offset: 0x5B0F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6200, symBinAddr: 0x7B88, symSize: 0x8 } - - { offsetInCU: 0x674B, offset: 0x5B10D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x6208, symBinAddr: 0x7B90, symSize: 0x8 } - - { offsetInCU: 0x6763, offset: 0x5B125, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x6210, symBinAddr: 0x7B98, symSize: 0x8 } - - { offsetInCU: 0x677B, offset: 0x5B13D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6218, symBinAddr: 0x7BA0, symSize: 0x8 } - - { offsetInCU: 0x6793, offset: 0x5B155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x6220, symBinAddr: 0x7BA8, symSize: 0x8 } - - { offsetInCU: 0x67AB, offset: 0x5B16D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x6228, symBinAddr: 0x7BB0, symSize: 0x8 } - - { offsetInCU: 0x67C3, offset: 0x5B185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x6230, symBinAddr: 0x7BB8, symSize: 0x8 } - - { offsetInCU: 0x67DB, offset: 0x5B19D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x6238, symBinAddr: 0x7BC0, symSize: 0x8 } - - { offsetInCU: 0x67F3, offset: 0x5B1B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x6240, symBinAddr: 0x7BC8, symSize: 0x8 } - - { offsetInCU: 0x680B, offset: 0x5B1CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x6248, symBinAddr: 0x7BD0, symSize: 0x8 } - - { offsetInCU: 0x6823, offset: 0x5B1E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x6250, symBinAddr: 0x7BD8, symSize: 0x24 } - - { offsetInCU: 0x6866, offset: 0x5B228, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x6274, symBinAddr: 0x7BFC, symSize: 0xC } - - { offsetInCU: 0x687E, offset: 0x5B240, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6280, symBinAddr: 0x7C08, symSize: 0xC } - - { offsetInCU: 0x6896, offset: 0x5B258, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x628C, symBinAddr: 0x7C14, symSize: 0x8 } - - { offsetInCU: 0x68AE, offset: 0x5B270, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x6294, symBinAddr: 0x7C1C, symSize: 0xC } - - { offsetInCU: 0x68C6, offset: 0x5B288, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x62A0, symBinAddr: 0x7C28, symSize: 0x8 } - - { offsetInCU: 0x68DE, offset: 0x5B2A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x62A8, symBinAddr: 0x7C30, symSize: 0x8 } - - { offsetInCU: 0x68F6, offset: 0x5B2B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x62B0, symBinAddr: 0x7C38, symSize: 0xC } - - { offsetInCU: 0x690E, offset: 0x5B2D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x62BC, symBinAddr: 0x7C44, symSize: 0x8 } - - { offsetInCU: 0x6926, offset: 0x5B2E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x62C4, symBinAddr: 0x7C4C, symSize: 0xC } - - { offsetInCU: 0x693E, offset: 0x5B300, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x62D0, symBinAddr: 0x7C58, symSize: 0x10 } - - { offsetInCU: 0x6956, offset: 0x5B318, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x62E0, symBinAddr: 0x7C68, symSize: 0x8 } - - { offsetInCU: 0x696E, offset: 0x5B330, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x62E8, symBinAddr: 0x7C70, symSize: 0x1C } - - { offsetInCU: 0x6986, offset: 0x5B348, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x6304, symBinAddr: 0x7C8C, symSize: 0xC } - - { offsetInCU: 0x699E, offset: 0x5B360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x6310, symBinAddr: 0x7C98, symSize: 0xC } - - { offsetInCU: 0x69B6, offset: 0x5B378, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x631C, symBinAddr: 0x7CA4, symSize: 0x8 } - - { offsetInCU: 0x69CE, offset: 0x5B390, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6324, symBinAddr: 0x7CAC, symSize: 0x8 } - - { offsetInCU: 0x69E6, offset: 0x5B3A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x632C, symBinAddr: 0x7CB4, symSize: 0x8 } - - { offsetInCU: 0x69FE, offset: 0x5B3C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6334, symBinAddr: 0x7CBC, symSize: 0x8 } - - { offsetInCU: 0x6A16, offset: 0x5B3D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x633C, symBinAddr: 0x7CC4, symSize: 0xC } - - { offsetInCU: 0x6A2E, offset: 0x5B3F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x6348, symBinAddr: 0x7CD0, symSize: 0xC } - - { offsetInCU: 0x6A46, offset: 0x5B408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x6354, symBinAddr: 0x7CDC, symSize: 0xC } - - { offsetInCU: 0x6A5E, offset: 0x5B420, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x6360, symBinAddr: 0x7CE8, symSize: 0xC } - - { offsetInCU: 0x6A76, offset: 0x5B438, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x636C, symBinAddr: 0x7CF4, symSize: 0x8 } - - { offsetInCU: 0x6A8E, offset: 0x5B450, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x6374, symBinAddr: 0x7CFC, symSize: 0x8 } - - { offsetInCU: 0x6AA6, offset: 0x5B468, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x637C, symBinAddr: 0x7D04, symSize: 0x8 } - - { offsetInCU: 0x6ABE, offset: 0x5B480, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6384, symBinAddr: 0x7D0C, symSize: 0x10 } - - { offsetInCU: 0x6AD6, offset: 0x5B498, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6394, symBinAddr: 0x7D1C, symSize: 0x8 } - - { offsetInCU: 0x6AEE, offset: 0x5B4B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x639C, symBinAddr: 0x7D24, symSize: 0xC } - - { offsetInCU: 0x6B06, offset: 0x5B4C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x63A8, symBinAddr: 0x7D30, symSize: 0x8 } - - { offsetInCU: 0x6B1E, offset: 0x5B4E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x63B0, symBinAddr: 0x7D38, symSize: 0x8 } - - { offsetInCU: 0x6B36, offset: 0x5B4F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x63B8, symBinAddr: 0x7D40, symSize: 0x8 } - - { offsetInCU: 0x6B4E, offset: 0x5B510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x63C0, symBinAddr: 0x7D48, symSize: 0x8 } - - { offsetInCU: 0x6B66, offset: 0x5B528, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x63C8, symBinAddr: 0x7D50, symSize: 0x8 } - - { offsetInCU: 0x6B7E, offset: 0x5B540, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x63D0, symBinAddr: 0x7D58, symSize: 0xC } - - { offsetInCU: 0x6B96, offset: 0x5B558, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x63DC, symBinAddr: 0x7D64, symSize: 0x8 } - - { offsetInCU: 0x6BAE, offset: 0x5B570, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x63E4, symBinAddr: 0x7D6C, symSize: 0xC } - - { offsetInCU: 0x6BC6, offset: 0x5B588, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x63F0, symBinAddr: 0x7D78, symSize: 0xC } - - { offsetInCU: 0x6BDE, offset: 0x5B5A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x63FC, symBinAddr: 0x7D84, symSize: 0x8 } - - { offsetInCU: 0x6BF6, offset: 0x5B5B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6404, symBinAddr: 0x7D8C, symSize: 0x8 } - - { offsetInCU: 0x6C0E, offset: 0x5B5D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x640C, symBinAddr: 0x7D94, symSize: 0x8 } - - { offsetInCU: 0x6C26, offset: 0x5B5E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x6414, symBinAddr: 0x7D9C, symSize: 0xC } - - { offsetInCU: 0x6C3E, offset: 0x5B600, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x6420, symBinAddr: 0x7DA8, symSize: 0xC } - - { offsetInCU: 0x6C56, offset: 0x5B618, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x642C, symBinAddr: 0x7DB4, symSize: 0x8 } - - { offsetInCU: 0x6C6E, offset: 0x5B630, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x6434, symBinAddr: 0x7DBC, symSize: 0x8 } - - { offsetInCU: 0x6C86, offset: 0x5B648, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x643C, symBinAddr: 0x7DC4, symSize: 0x8 } - - { offsetInCU: 0x6C9E, offset: 0x5B660, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x6444, symBinAddr: 0x7DCC, symSize: 0x8 } - - { offsetInCU: 0x6CB6, offset: 0x5B678, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x644C, symBinAddr: 0x7DD4, symSize: 0x8 } - - { offsetInCU: 0x6CCE, offset: 0x5B690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x6454, symBinAddr: 0x7DDC, symSize: 0xC } - - { offsetInCU: 0x6CE6, offset: 0x5B6A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6460, symBinAddr: 0x7DE8, symSize: 0x8 } - - { offsetInCU: 0x6CFE, offset: 0x5B6C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x6468, symBinAddr: 0x7DF0, symSize: 0x8 } - - { offsetInCU: 0x6D16, offset: 0x5B6D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x6470, symBinAddr: 0x7DF8, symSize: 0x8 } - - { offsetInCU: 0x6D2E, offset: 0x5B6F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x6478, symBinAddr: 0x7E00, symSize: 0x8 } - - { offsetInCU: 0x6D46, offset: 0x5B708, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x6480, symBinAddr: 0x7E08, symSize: 0x8 } - - { offsetInCU: 0x6D5E, offset: 0x5B720, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6488, symBinAddr: 0x7E10, symSize: 0xC } - - { offsetInCU: 0x6D76, offset: 0x5B738, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6494, symBinAddr: 0x7E1C, symSize: 0x8 } - - { offsetInCU: 0x6D8E, offset: 0x5B750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x649C, symBinAddr: 0x7E24, symSize: 0x8 } - - { offsetInCU: 0x6DA6, offset: 0x5B768, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x64A4, symBinAddr: 0x7E2C, symSize: 0x8 } - - { offsetInCU: 0x6DBE, offset: 0x5B780, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x64AC, symBinAddr: 0x7E34, symSize: 0x8 } - - { offsetInCU: 0x6DD6, offset: 0x5B798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x64B4, symBinAddr: 0x7E3C, symSize: 0xC } - - { offsetInCU: 0x6DEE, offset: 0x5B7B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x64C0, symBinAddr: 0x7E48, symSize: 0x8 } - - { offsetInCU: 0x6E06, offset: 0x5B7C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x64C8, symBinAddr: 0x7E50, symSize: 0xC } - - { offsetInCU: 0x6E1E, offset: 0x5B7E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x64D4, symBinAddr: 0x7E5C, symSize: 0x8 } - - { offsetInCU: 0x6E36, offset: 0x5B7F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x64DC, symBinAddr: 0x7E64, symSize: 0x8 } - - { offsetInCU: 0x6E4E, offset: 0x5B810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x64E4, symBinAddr: 0x7E6C, symSize: 0x8 } - - { offsetInCU: 0x6E66, offset: 0x5B828, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x64EC, symBinAddr: 0x7E74, symSize: 0x8 } - - { offsetInCU: 0x6E7E, offset: 0x5B840, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x64F4, symBinAddr: 0x7E7C, symSize: 0xC } - - { offsetInCU: 0x6E96, offset: 0x5B858, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6500, symBinAddr: 0x7E88, symSize: 0x8 } - - { offsetInCU: 0x6EAE, offset: 0x5B870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6508, symBinAddr: 0x7E90, symSize: 0xC } - - { offsetInCU: 0x6EC6, offset: 0x5B888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6514, symBinAddr: 0x7E9C, symSize: 0x8 } - - { offsetInCU: 0x6EDE, offset: 0x5B8A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x651C, symBinAddr: 0x7EA4, symSize: 0xC } - - { offsetInCU: 0x6EF6, offset: 0x5B8B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x6528, symBinAddr: 0x7EB0, symSize: 0xC } - - { offsetInCU: 0x6F0E, offset: 0x5B8D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6534, symBinAddr: 0x7EBC, symSize: 0x8 } - - { offsetInCU: 0x6F26, offset: 0x5B8E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x653C, symBinAddr: 0x7EC4, symSize: 0x8 } - - { offsetInCU: 0x6F3E, offset: 0x5B900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x6544, symBinAddr: 0x7ECC, symSize: 0xC } - - { offsetInCU: 0x6F56, offset: 0x5B918, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6550, symBinAddr: 0x7ED8, symSize: 0x8 } - - { offsetInCU: 0x6F6E, offset: 0x5B930, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x6558, symBinAddr: 0x7EE0, symSize: 0x8 } - - { offsetInCU: 0x6F86, offset: 0x5B948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x6560, symBinAddr: 0x7EE8, symSize: 0x8 } - - { offsetInCU: 0x6F9E, offset: 0x5B960, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x6568, symBinAddr: 0x7EF0, symSize: 0x8 } - - { offsetInCU: 0x703A, offset: 0x5B9FC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x6590, symBinAddr: 0x7F04, symSize: 0x138 } - - { offsetInCU: 0x71FE, offset: 0x5BBC0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x66C8, symBinAddr: 0x803C, symSize: 0xFC } - - { offsetInCU: 0x738B, offset: 0x5BD4D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x67DC, symBinAddr: 0x8150, symSize: 0x104 } - - { offsetInCU: 0x7513, offset: 0x5BED5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x69D0, symBinAddr: 0x8344, symSize: 0x118 } - - { offsetInCU: 0x7659, offset: 0x5C01B, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x6AE8, symBinAddr: 0x845C, symSize: 0xA4 } - - { offsetInCU: 0x76D5, offset: 0x5C097, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x6D9C, symBinAddr: 0x8710, symSize: 0x148 } - - { offsetInCU: 0x7765, offset: 0x5C127, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x84F8, symBinAddr: 0x9E6C, symSize: 0x40 } - - { offsetInCU: 0x7779, offset: 0x5C13B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x855C, symBinAddr: 0x9ED0, symSize: 0x8 } - - { offsetInCU: 0x778D, offset: 0x5C14F, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x8564, symBinAddr: 0x9ED8, symSize: 0x24 } - - { offsetInCU: 0x77A1, offset: 0x5C163, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x8588, symBinAddr: 0x9EFC, symSize: 0x20 } - - { offsetInCU: 0x77B5, offset: 0x5C177, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x85A8, symBinAddr: 0x9F1C, symSize: 0x28 } - - { offsetInCU: 0x7821, offset: 0x5C1E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x87B0, symBinAddr: 0xA124, symSize: 0x20 } - - { offsetInCU: 0x7835, offset: 0x5C1F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8808, symBinAddr: 0xA17C, symSize: 0x8 } - - { offsetInCU: 0x7849, offset: 0x5C20B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8810, symBinAddr: 0xA184, symSize: 0x10 } - - { offsetInCU: 0x785D, offset: 0x5C21F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8820, symBinAddr: 0xA194, symSize: 0x8 } - - { offsetInCU: 0x7871, offset: 0x5C233, size: 0x8, addend: 0x0, symName: '_$s8Dispatch0A13WorkItemFlagsVACs10SetAlgebraAAWl', symObjAddr: 0x8828, symBinAddr: 0xA19C, symSize: 0x48 } - - { offsetInCU: 0x7885, offset: 0x5C247, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGSayxGSTsWl', symObjAddr: 0x8870, symBinAddr: 0xA1E4, symSize: 0x4C } - - { offsetInCU: 0x7899, offset: 0x5C25B, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x88BC, symBinAddr: 0xA230, symSize: 0x44 } - - { offsetInCU: 0x78AD, offset: 0x5C26F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8900, symBinAddr: 0xA274, symSize: 0x8 } - - { offsetInCU: 0x7966, offset: 0x5C328, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x8C24, symBinAddr: 0xA598, symSize: 0x10 } - - { offsetInCU: 0x797A, offset: 0x5C33C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x8C34, symBinAddr: 0xA5A8, symSize: 0x6C } - - { offsetInCU: 0x798E, offset: 0x5C350, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x8CA0, symBinAddr: 0xA614, symSize: 0x6C } - - { offsetInCU: 0x79A2, offset: 0x5C364, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8D30, symBinAddr: 0xA6A4, symSize: 0xC } - - { offsetInCU: 0x79B6, offset: 0x5C378, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOs', symObjAddr: 0x8D3C, symBinAddr: 0xA6B0, symSize: 0x44 } - - { offsetInCU: 0x79CA, offset: 0x5C38C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x8D80, symBinAddr: 0xA6F4, symSize: 0x8 } - - { offsetInCU: 0x79FC, offset: 0x5C3BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x8D88, symBinAddr: 0xA6FC, symSize: 0x350 } - - { offsetInCU: 0x7C02, offset: 0x5C5C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x90D8, symBinAddr: 0xAA4C, symSize: 0x5FC } - - { offsetInCU: 0x8141, offset: 0x5CB03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x96D4, symBinAddr: 0xB048, symSize: 0x4A8 } - - { offsetInCU: 0x8508, offset: 0x5CECA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9B7C, symBinAddr: 0xB4F0, symSize: 0x1C0 } - - { offsetInCU: 0x8635, offset: 0x5CFF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9D3C, symBinAddr: 0xB6B0, symSize: 0x130 } - - { offsetInCU: 0x875B, offset: 0x5D11D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9E6C, symBinAddr: 0xB7E0, symSize: 0x134 } - - { offsetInCU: 0x8886, offset: 0x5D248, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9FA0, symBinAddr: 0xB914, symSize: 0x1D8 } - - { offsetInCU: 0x8A9A, offset: 0x5D45C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA178, symBinAddr: 0xBAEC, symSize: 0x664 } - - { offsetInCU: 0x9115, offset: 0x5DAD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA7DC, symBinAddr: 0xC150, symSize: 0x39C } - - { offsetInCU: 0x9477, offset: 0x5DE39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAB78, symBinAddr: 0xC4EC, symSize: 0x140 } - - { offsetInCU: 0x952E, offset: 0x5DEF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xACB8, symBinAddr: 0xC62C, symSize: 0x4 } - - { offsetInCU: 0x9542, offset: 0x5DF04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xACBC, symBinAddr: 0xC630, symSize: 0x44 } - - { offsetInCU: 0x9556, offset: 0x5DF18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xAD00, symBinAddr: 0xC674, symSize: 0x10 } - - { offsetInCU: 0x956A, offset: 0x5DF2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xAD7C, symBinAddr: 0xC6F0, symSize: 0x24 } - - { offsetInCU: 0x957E, offset: 0x5DF40, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xADA4, symBinAddr: 0xC718, symSize: 0x44 } - - { offsetInCU: 0x9592, offset: 0x5DF54, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xADE8, symBinAddr: 0xC75C, symSize: 0x28 } - - { offsetInCU: 0x95A6, offset: 0x5DF68, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xAE10, symBinAddr: 0xC784, symSize: 0x28 } - - { offsetInCU: 0x95BA, offset: 0x5DF7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xAE40, symBinAddr: 0xC7B4, symSize: 0x8 } - - { offsetInCU: 0x95CE, offset: 0x5DF90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xAE6C, symBinAddr: 0xC7E0, symSize: 0x8 } - - { offsetInCU: 0x95E2, offset: 0x5DFA4, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xAE84, symBinAddr: 0xC7F8, symSize: 0x8 } - - { offsetInCU: 0x95F6, offset: 0x5DFB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xAE8C, symBinAddr: 0xC800, symSize: 0x8 } - - { offsetInCU: 0x960A, offset: 0x5DFCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xAFE4, symBinAddr: 0xC958, symSize: 0xC0 } - - { offsetInCU: 0x961E, offset: 0x5DFE0, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xB0A4, symBinAddr: 0xCA18, symSize: 0x14 } - - { offsetInCU: 0x9632, offset: 0x5DFF4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xB0B8, symBinAddr: 0xCA2C, symSize: 0x50 } - - { offsetInCU: 0x9646, offset: 0x5E008, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xB108, symBinAddr: 0xCA7C, symSize: 0x14 } - - { offsetInCU: 0x965A, offset: 0x5E01C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xB200, symBinAddr: 0xCB74, symSize: 0x44 } - - { offsetInCU: 0x966E, offset: 0x5E030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xB278, symBinAddr: 0xCBEC, symSize: 0x44 } - - { offsetInCU: 0x9682, offset: 0x5E044, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xB2E8, symBinAddr: 0xCC5C, symSize: 0xC } - - { offsetInCU: 0x96FB, offset: 0x5E0BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x140, symBinAddr: 0x1AC8, symSize: 0x14 } - - { offsetInCU: 0x9798, offset: 0x5E15A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x154, symBinAddr: 0x1ADC, symSize: 0x44 } - - { offsetInCU: 0x9827, offset: 0x5E1E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x198, symBinAddr: 0x1B20, symSize: 0x28 } - - { offsetInCU: 0x987A, offset: 0x5E23C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C0, symBinAddr: 0x1B48, symSize: 0x40 } - - { offsetInCU: 0x9CA0, offset: 0x5E662, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTg5Tf4gd_n', symObjAddr: 0x85D0, symBinAddr: 0x9F44, symSize: 0xE4 } - - { offsetInCU: 0x9DE1, offset: 0x5E7A3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x8908, symBinAddr: 0xA27C, symSize: 0xFC } - - { offsetInCU: 0x9F0C, offset: 0x5E8CE, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x8B0C, symBinAddr: 0xA480, symSize: 0xEC } - - { offsetInCU: 0xE9, offset: 0x5F191, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0xCF44, symSize: 0x64 } - - { offsetInCU: 0x118, offset: 0x5F1C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x1F4, symBinAddr: 0xCFA8, symSize: 0x28 } - - { offsetInCU: 0x137, offset: 0x5F1DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x21C, symBinAddr: 0xCFD0, symSize: 0x4 } - - { offsetInCU: 0x17A, offset: 0x5F222, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2E0, symBinAddr: 0xD094, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x5F253, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x300, symBinAddr: 0xD0B4, symSize: 0xC } - - { offsetInCU: 0x1C7, offset: 0x5F26F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x30C, symBinAddr: 0xD0C0, symSize: 0x8 } - - { offsetInCU: 0x2B8, offset: 0x5F360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x314, symBinAddr: 0xD0C8, symSize: 0x148 } - - { offsetInCU: 0x40F, offset: 0x5F4B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x45C, symBinAddr: 0xD210, symSize: 0x48 } - - { offsetInCU: 0x42E, offset: 0x5F4D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x4A4, symBinAddr: 0xD258, symSize: 0x58 } - - { offsetInCU: 0x46D, offset: 0x5F515, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x4FC, symBinAddr: 0xD2B0, symSize: 0x70 } - - { offsetInCU: 0x49C, offset: 0x5F544, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x56C, symBinAddr: 0xD320, symSize: 0x6C } - - { offsetInCU: 0x4C7, offset: 0x5F56F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x5F0, symBinAddr: 0xD3A4, symSize: 0x44 } - - { offsetInCU: 0x4F6, offset: 0x5F59E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x64C, symBinAddr: 0xD400, symSize: 0x44 } - - { offsetInCU: 0x525, offset: 0x5F5CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x750, symBinAddr: 0xD504, symSize: 0x44 } - - { offsetInCU: 0x554, offset: 0x5F5FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x7AC, symBinAddr: 0xD560, symSize: 0x44 } - - { offsetInCU: 0x583, offset: 0x5F62B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x8B0, symBinAddr: 0xD664, symSize: 0x44 } - - { offsetInCU: 0x5B2, offset: 0x5F65A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0x90C, symBinAddr: 0xD6C0, symSize: 0x44 } - - { offsetInCU: 0x5E1, offset: 0x5F689, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0x968, symBinAddr: 0xD71C, symSize: 0x44 } - - { offsetInCU: 0x610, offset: 0x5F6B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0x9AC, symBinAddr: 0xD760, symSize: 0x4 } - - { offsetInCU: 0x65B, offset: 0x5F703, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0x9B0, symBinAddr: 0xD764, symSize: 0xC0 } - - { offsetInCU: 0x6CB, offset: 0x5F773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xA7C, symBinAddr: 0xD830, symSize: 0xF4 } - - { offsetInCU: 0x73E, offset: 0x5F7E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xB7C, symBinAddr: 0xD930, symSize: 0x44 } - - { offsetInCU: 0x75D, offset: 0x5F805, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xBC0, symBinAddr: 0xD974, symSize: 0x50 } - - { offsetInCU: 0x79C, offset: 0x5F844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC10, symBinAddr: 0xD9C4, symSize: 0x44 } - - { offsetInCU: 0x827, offset: 0x5F8CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xC54, symBinAddr: 0xDA08, symSize: 0x118 } - - { offsetInCU: 0x8FD, offset: 0x5F9A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0xF80, symBinAddr: 0xDD34, symSize: 0x44 } - - { offsetInCU: 0x93A, offset: 0x5F9E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0xFC4, symBinAddr: 0xDD78, symSize: 0x90 } - - { offsetInCU: 0x982, offset: 0x5FA2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1054, symBinAddr: 0xDE08, symSize: 0x48 } - - { offsetInCU: 0x9B1, offset: 0x5FA59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x109C, symBinAddr: 0xDE50, symSize: 0x80 } - - { offsetInCU: 0xA0E, offset: 0x5FAB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x111C, symBinAddr: 0xDED0, symSize: 0x20 } - - { offsetInCU: 0xA2E, offset: 0x5FAD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x111C, symBinAddr: 0xDED0, symSize: 0x20 } - - { offsetInCU: 0xA5E, offset: 0x5FB06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x113C, symBinAddr: 0xDEF0, symSize: 0x20 } - - { offsetInCU: 0xA87, offset: 0x5FB2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x113C, symBinAddr: 0xDEF0, symSize: 0x20 } - - { offsetInCU: 0xADF, offset: 0x5FB87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x115C, symBinAddr: 0xDF10, symSize: 0x34 } - - { offsetInCU: 0xB6D, offset: 0x5FC15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1190, symBinAddr: 0xDF44, symSize: 0x20 } - - { offsetInCU: 0xB9B, offset: 0x5FC43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1190, symBinAddr: 0xDF44, symSize: 0x20 } - - { offsetInCU: 0xBAF, offset: 0x5FC57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1190, symBinAddr: 0xDF44, symSize: 0x20 } - - { offsetInCU: 0xC03, offset: 0x5FCAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x11B0, symBinAddr: 0xDF64, symSize: 0x20 } - - { offsetInCU: 0xC23, offset: 0x5FCCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x11B0, symBinAddr: 0xDF64, symSize: 0x20 } - - { offsetInCU: 0xC71, offset: 0x5FD19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x11DC, symBinAddr: 0xDF90, symSize: 0x34 } - - { offsetInCU: 0xCD5, offset: 0x5FD7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x121C, symBinAddr: 0xDFD0, symSize: 0x20 } - - { offsetInCU: 0xCF5, offset: 0x5FD9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x121C, symBinAddr: 0xDFD0, symSize: 0x20 } - - { offsetInCU: 0xD43, offset: 0x5FDEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x1260, symBinAddr: 0xE014, symSize: 0x34 } - - { offsetInCU: 0xDA7, offset: 0x5FE4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x12D0, symBinAddr: 0xE084, symSize: 0x44 } - - { offsetInCU: 0xDD6, offset: 0x5FE7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x13B0, symBinAddr: 0xE164, symSize: 0x44 } - - { offsetInCU: 0xE05, offset: 0x5FEAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x140C, symBinAddr: 0xE1C0, symSize: 0x44 } - - { offsetInCU: 0xE34, offset: 0x5FEDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x14EC, symBinAddr: 0xE2A0, symSize: 0x44 } - - { offsetInCU: 0xE63, offset: 0x5FF0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x1548, symBinAddr: 0xE2FC, symSize: 0x44 } - - { offsetInCU: 0xE92, offset: 0x5FF3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x163C, symBinAddr: 0xE3F0, symSize: 0x44 } - - { offsetInCU: 0xEC1, offset: 0x5FF69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x1680, symBinAddr: 0xE434, symSize: 0x78 } - - { offsetInCU: 0xEFE, offset: 0x5FFA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x16F8, symBinAddr: 0xE4AC, symSize: 0x7C } - - { offsetInCU: 0xF6C, offset: 0x60014, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1774, symBinAddr: 0xE528, symSize: 0x90 } - - { offsetInCU: 0xFF0, offset: 0x60098, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x1804, symBinAddr: 0xE5B8, symSize: 0x24 } - - { offsetInCU: 0x1045, offset: 0x600ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1828, symBinAddr: 0xE5DC, symSize: 0x88 } - - { offsetInCU: 0x10A2, offset: 0x6014A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x18B0, symBinAddr: 0xE664, symSize: 0x7C } - - { offsetInCU: 0x1101, offset: 0x601A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x192C, symBinAddr: 0xE6E0, symSize: 0xA8 } - - { offsetInCU: 0x1189, offset: 0x60231, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x19D4, symBinAddr: 0xE788, symSize: 0x80 } - - { offsetInCU: 0x1200, offset: 0x602A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1A54, symBinAddr: 0xE808, symSize: 0xC8 } - - { offsetInCU: 0x1254, offset: 0x602FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1B1C, symBinAddr: 0xE8D0, symSize: 0xD4 } - - { offsetInCU: 0x12DD, offset: 0x60385, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1BF0, symBinAddr: 0xE9A4, symSize: 0xFC } - - { offsetInCU: 0x1381, offset: 0x60429, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1CEC, symBinAddr: 0xEAA0, symSize: 0x130 } - - { offsetInCU: 0x140A, offset: 0x604B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x1E1C, symBinAddr: 0xEBD0, symSize: 0xC0 } - - { offsetInCU: 0x147E, offset: 0x60526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x1FA8, symBinAddr: 0xED5C, symSize: 0xF4 } - - { offsetInCU: 0x14F5, offset: 0x6059D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2180, symBinAddr: 0xEF34, symSize: 0x48 } - - { offsetInCU: 0x1514, offset: 0x605BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x21C8, symBinAddr: 0xEF7C, symSize: 0x50 } - - { offsetInCU: 0x1556, offset: 0x605FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2218, symBinAddr: 0xEFCC, symSize: 0x44 } - - { offsetInCU: 0x1587, offset: 0x6062F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x225C, symBinAddr: 0xF010, symSize: 0x10 } - - { offsetInCU: 0x159F, offset: 0x60647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x226C, symBinAddr: 0xF020, symSize: 0x4 } - - { offsetInCU: 0x15E8, offset: 0x60690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2288, symBinAddr: 0xF03C, symSize: 0x44 } - - { offsetInCU: 0x1619, offset: 0x606C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x22CC, symBinAddr: 0xF080, symSize: 0x10 } - - { offsetInCU: 0x1631, offset: 0x606D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x22DC, symBinAddr: 0xF090, symSize: 0x4 } - - { offsetInCU: 0x167A, offset: 0x60722, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x22F8, symBinAddr: 0xF0AC, symSize: 0x44 } - - { offsetInCU: 0x16AB, offset: 0x60753, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x233C, symBinAddr: 0xF0F0, symSize: 0x10 } - - { offsetInCU: 0x16C3, offset: 0x6076B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x234C, symBinAddr: 0xF100, symSize: 0x4 } - - { offsetInCU: 0x170C, offset: 0x607B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2368, symBinAddr: 0xF11C, symSize: 0x44 } - - { offsetInCU: 0x173D, offset: 0x607E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x23AC, symBinAddr: 0xF160, symSize: 0x10 } - - { offsetInCU: 0x1755, offset: 0x607FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x23D4, symBinAddr: 0xF188, symSize: 0x44 } - - { offsetInCU: 0x1786, offset: 0x6082E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x2418, symBinAddr: 0xF1CC, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x60846, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x2428, symBinAddr: 0xF1DC, symSize: 0x4 } - - { offsetInCU: 0x17F6, offset: 0x6089E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x2444, symBinAddr: 0xF1F8, symSize: 0x44 } - - { offsetInCU: 0x1827, offset: 0x608CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x2488, symBinAddr: 0xF23C, symSize: 0x10 } - - { offsetInCU: 0x183F, offset: 0x608E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2498, symBinAddr: 0xF24C, symSize: 0x4 } - - { offsetInCU: 0x1897, offset: 0x6093F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x24B4, symBinAddr: 0xF268, symSize: 0x44 } - - { offsetInCU: 0x18C8, offset: 0x60970, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x24F8, symBinAddr: 0xF2AC, symSize: 0x10 } - - { offsetInCU: 0x18E0, offset: 0x60988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x2508, symBinAddr: 0xF2BC, symSize: 0x4 } - - { offsetInCU: 0x1929, offset: 0x609D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x2524, symBinAddr: 0xF2D8, symSize: 0x44 } - - { offsetInCU: 0x195A, offset: 0x60A02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2568, symBinAddr: 0xF31C, symSize: 0x10 } - - { offsetInCU: 0x1972, offset: 0x60A1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2578, symBinAddr: 0xF32C, symSize: 0x4 } - - { offsetInCU: 0x199D, offset: 0x60A45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x2594, symBinAddr: 0xF348, symSize: 0x44 } - - { offsetInCU: 0x19CE, offset: 0x60A76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x25D8, symBinAddr: 0xF38C, symSize: 0x10 } - - { offsetInCU: 0x19E6, offset: 0x60A8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x25E8, symBinAddr: 0xF39C, symSize: 0x4 } - - { offsetInCU: 0x1A11, offset: 0x60AB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2604, symBinAddr: 0xF3B8, symSize: 0x44 } - - { offsetInCU: 0x1A42, offset: 0x60AEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2648, symBinAddr: 0xF3FC, symSize: 0x10 } - - { offsetInCU: 0x1A5A, offset: 0x60B02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2658, symBinAddr: 0xF40C, symSize: 0x4 } - - { offsetInCU: 0x1A94, offset: 0x60B3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x2674, symBinAddr: 0xF428, symSize: 0x44 } - - { offsetInCU: 0x1AC5, offset: 0x60B6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x26B8, symBinAddr: 0xF46C, symSize: 0x10 } - - { offsetInCU: 0x1ADD, offset: 0x60B85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x26E0, symBinAddr: 0xF494, symSize: 0x44 } - - { offsetInCU: 0x1B0E, offset: 0x60BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2724, symBinAddr: 0xF4D8, symSize: 0x10 } - - { offsetInCU: 0x1B26, offset: 0x60BCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x274C, symBinAddr: 0xF500, symSize: 0x44 } - - { offsetInCU: 0x1B57, offset: 0x60BFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2790, symBinAddr: 0xF544, symSize: 0x10 } - - { offsetInCU: 0x1B6F, offset: 0x60C17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x27A0, symBinAddr: 0xF554, symSize: 0x4 } - - { offsetInCU: 0x1BBA, offset: 0x60C62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x27BC, symBinAddr: 0xF570, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x60C93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2800, symBinAddr: 0xF5B4, symSize: 0x10 } - - { offsetInCU: 0x1C03, offset: 0x60CAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2828, symBinAddr: 0xF5DC, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x60CDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x286C, symBinAddr: 0xF620, symSize: 0x10 } - - { offsetInCU: 0x1C4C, offset: 0x60CF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x287C, symBinAddr: 0xF630, symSize: 0x4 } - - { offsetInCU: 0x1C86, offset: 0x60D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2940, symBinAddr: 0xF6F4, symSize: 0x44 } - - { offsetInCU: 0x1CB7, offset: 0x60D5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2984, symBinAddr: 0xF738, symSize: 0x70 } - - { offsetInCU: 0x1CD6, offset: 0x60D7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x29F4, symBinAddr: 0xF7A8, symSize: 0x8F0 } - - { offsetInCU: 0x1FEF, offset: 0x61097, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x32E4, symBinAddr: 0x10098, symSize: 0x178 } - - { offsetInCU: 0x204E, offset: 0x610F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x345C, symBinAddr: 0x10210, symSize: 0x24 } - - { offsetInCU: 0x216B, offset: 0x61213, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3708, symBinAddr: 0x104BC, symSize: 0x52C } - - { offsetInCU: 0x234A, offset: 0x613F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3C34, symBinAddr: 0x109E8, symSize: 0x8 } - - { offsetInCU: 0x23D0, offset: 0x61478, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3C3C, symBinAddr: 0x109F0, symSize: 0x648 } - - { offsetInCU: 0x26CE, offset: 0x61776, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4284, symBinAddr: 0x11038, symSize: 0xC0 } - - { offsetInCU: 0x2781, offset: 0x61829, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x4344, symBinAddr: 0x110F8, symSize: 0x4 } - - { offsetInCU: 0x27B0, offset: 0x61858, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x4348, symBinAddr: 0x110FC, symSize: 0x4 } - - { offsetInCU: 0x2827, offset: 0x618CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19internal_disconnectyyF', symObjAddr: 0x434C, symBinAddr: 0x11100, symSize: 0xD0 } - - { offsetInCU: 0x28E4, offset: 0x6198C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x441C, symBinAddr: 0x111D0, symSize: 0x114 } - - { offsetInCU: 0x29B5, offset: 0x61A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x4530, symBinAddr: 0x112E4, symSize: 0x100 } - - { offsetInCU: 0x2A31, offset: 0x61AD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x4630, symBinAddr: 0x113E4, symSize: 0xB0 } - - { offsetInCU: 0x2ACC, offset: 0x61B74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x46E0, symBinAddr: 0x11494, symSize: 0xD8 } - - { offsetInCU: 0x2BDA, offset: 0x61C82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x47B8, symBinAddr: 0x1156C, symSize: 0x8 } - - { offsetInCU: 0x2BEE, offset: 0x61C96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x47C0, symBinAddr: 0x11574, symSize: 0x6C } - - { offsetInCU: 0x2C5B, offset: 0x61D03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x482C, symBinAddr: 0x115E0, symSize: 0xC4 } - - { offsetInCU: 0x2E41, offset: 0x61EE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x48F0, symBinAddr: 0x116A4, symSize: 0x204 } - - { offsetInCU: 0x30B4, offset: 0x6215C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4AF4, symBinAddr: 0x118A8, symSize: 0xE0 } - - { offsetInCU: 0x321B, offset: 0x622C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4BD4, symBinAddr: 0x11988, symSize: 0xE8 } - - { offsetInCU: 0x343B, offset: 0x624E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4CBC, symBinAddr: 0x11A70, symSize: 0x1E8 } - - { offsetInCU: 0x3655, offset: 0x626FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4EA4, symBinAddr: 0x11C58, symSize: 0xD4 } - - { offsetInCU: 0x3779, offset: 0x62821, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x4F78, symBinAddr: 0x11D2C, symSize: 0x10C } - - { offsetInCU: 0x3842, offset: 0x628EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x5084, symBinAddr: 0x11E38, symSize: 0x20 } - - { offsetInCU: 0x3860, offset: 0x62908, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x50A4, symBinAddr: 0x11E58, symSize: 0x2C } - - { offsetInCU: 0x38C3, offset: 0x6296B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x50D0, symBinAddr: 0x11E84, symSize: 0x2C } - - { offsetInCU: 0x392A, offset: 0x629D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x50FC, symBinAddr: 0x11EB0, symSize: 0x44 } - - { offsetInCU: 0x3B19, offset: 0x62BC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x69EC, symBinAddr: 0x136F4, symSize: 0x234 } - - { offsetInCU: 0x3CED, offset: 0x62D95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubAckV_Tg5', symObjAddr: 0x6C20, symBinAddr: 0x13928, symSize: 0x22C } - - { offsetInCU: 0x3EC1, offset: 0x62F69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRecV_Tg5', symObjAddr: 0x6E4C, symBinAddr: 0x13B54, symSize: 0x22C } - - { offsetInCU: 0x4095, offset: 0x6313D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PubCompV_Tg5', symObjAddr: 0x7078, symBinAddr: 0x13D80, symSize: 0x22C } - - { offsetInCU: 0x4269, offset: 0x63311, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x72A4, symBinAddr: 0x13FAC, symSize: 0x24C } - - { offsetInCU: 0x443D, offset: 0x634E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x74F0, symBinAddr: 0x141F8, symSize: 0x200 } - - { offsetInCU: 0x4611, offset: 0x636B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x76F0, symBinAddr: 0x143F8, symSize: 0x22C } - - { offsetInCU: 0x47E5, offset: 0x6388D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x791C, symBinAddr: 0x14624, symSize: 0x270 } - - { offsetInCU: 0x49B9, offset: 0x63A61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x7B8C, symBinAddr: 0x14894, symSize: 0x25C } - - { offsetInCU: 0x4B8D, offset: 0x63C35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x7DE8, symBinAddr: 0x14AF0, symSize: 0x234 } - - { offsetInCU: 0x4D61, offset: 0x63E09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRelV_Tg5', symObjAddr: 0x801C, symBinAddr: 0x14D24, symSize: 0x22C } - - { offsetInCU: 0x5082, offset: 0x6412A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xB2C8, symBinAddr: 0x17EF8, symSize: 0x730 } - - { offsetInCU: 0x5576, offset: 0x6461E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xD6C, symBinAddr: 0xDB20, symSize: 0x214 } - - { offsetInCU: 0x5602, offset: 0x646AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x5148, symBinAddr: 0x11EFC, symSize: 0x5C } - - { offsetInCU: 0x572A, offset: 0x647D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x8248, symBinAddr: 0x14F50, symSize: 0x308 } - - { offsetInCU: 0x57DD, offset: 0x64885, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x8550, symBinAddr: 0x15258, symSize: 0x30C } - - { offsetInCU: 0x5890, offset: 0x64938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x885C, symBinAddr: 0x15564, symSize: 0x30C } - - { offsetInCU: 0x5B14, offset: 0x64BBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6124, symBinAddr: 0x12E2C, symSize: 0x1B8 } - - { offsetInCU: 0x5B7A, offset: 0x64C22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x62DC, symBinAddr: 0x12FE4, symSize: 0xC4 } - - { offsetInCU: 0x5BE9, offset: 0x64C91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x63A0, symBinAddr: 0x130A8, symSize: 0x108 } - - { offsetInCU: 0x5DAE, offset: 0x64E56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x3480, symBinAddr: 0x10234, symSize: 0x288 } - - { offsetInCU: 0x624A, offset: 0x652F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x5140, symBinAddr: 0x11EF4, symSize: 0x8 } - - { offsetInCU: 0x627D, offset: 0x65325, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x51A4, symBinAddr: 0x11F58, symSize: 0x4 } - - { offsetInCU: 0x62AB, offset: 0x65353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x51A8, symBinAddr: 0x11F5C, symSize: 0x1F0 } - - { offsetInCU: 0x63AA, offset: 0x65452, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5398, symBinAddr: 0x1214C, symSize: 0x1B0 } - - { offsetInCU: 0x6490, offset: 0x65538, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5548, symBinAddr: 0x122FC, symSize: 0xC4 } - - { offsetInCU: 0x6516, offset: 0x655BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x560C, symBinAddr: 0x123C0, symSize: 0x4 } - - { offsetInCU: 0x65FD, offset: 0x656A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5610, symBinAddr: 0x123C4, symSize: 0x240 } - - { offsetInCU: 0x6988, offset: 0x65A30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x5850, symBinAddr: 0x12604, symSize: 0x390 } - - { offsetInCU: 0x6BCF, offset: 0x65C77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5BE0, symBinAddr: 0x12994, symSize: 0xB0 } - - { offsetInCU: 0x6CB5, offset: 0x65D5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5C90, symBinAddr: 0x12A44, symSize: 0x4 } - - { offsetInCU: 0x6CD5, offset: 0x65D7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5C90, symBinAddr: 0x12A44, symSize: 0x4 } - - { offsetInCU: 0x6CFA, offset: 0x65DA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5C94, symBinAddr: 0x12A48, symSize: 0x4 } - - { offsetInCU: 0x6D16, offset: 0x65DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5C98, symBinAddr: 0x12A4C, symSize: 0x4 } - - { offsetInCU: 0x6D32, offset: 0x65DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5C9C, symBinAddr: 0x12A50, symSize: 0x4 } - - { offsetInCU: 0x6D4E, offset: 0x65DF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5CA0, symBinAddr: 0x12A54, symSize: 0x4 } - - { offsetInCU: 0x6D6A, offset: 0x65E12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5CA4, symBinAddr: 0x12A58, symSize: 0x4 } - - { offsetInCU: 0x6D86, offset: 0x65E2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5CA8, symBinAddr: 0x12A5C, symSize: 0x204 } - - { offsetInCU: 0x6E16, offset: 0x65EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5EAC, symBinAddr: 0x12C60, symSize: 0x140 } - - { offsetInCU: 0x6F04, offset: 0x65FAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5FEC, symBinAddr: 0x12DA0, symSize: 0x24 } - - { offsetInCU: 0x6F46, offset: 0x65FEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x6010, symBinAddr: 0x12DC4, symSize: 0x8 } - - { offsetInCU: 0x6F88, offset: 0x66030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x6018, symBinAddr: 0x12DCC, symSize: 0x8 } - - { offsetInCU: 0x6FCA, offset: 0x66072, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x6020, symBinAddr: 0x12DD4, symSize: 0x8 } - - { offsetInCU: 0x700C, offset: 0x660B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6028, symBinAddr: 0x12DDC, symSize: 0x8 } - - { offsetInCU: 0x704E, offset: 0x660F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x6030, symBinAddr: 0x12DE4, symSize: 0x8 } - - { offsetInCU: 0x7090, offset: 0x66138, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6038, symBinAddr: 0x12DEC, symSize: 0x8 } - - { offsetInCU: 0x70D2, offset: 0x6617A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x6040, symBinAddr: 0x12DF4, symSize: 0x8 } - - { offsetInCU: 0x7114, offset: 0x661BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6048, symBinAddr: 0x12DFC, symSize: 0x4 } - - { offsetInCU: 0x7134, offset: 0x661DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6048, symBinAddr: 0x12DFC, symSize: 0x4 } - - { offsetInCU: 0x7147, offset: 0x661EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x60B0, symBinAddr: 0x12E24, symSize: 0x8 } - - { offsetInCU: 0x719D, offset: 0x66245, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x64BC, symBinAddr: 0x131C4, symSize: 0x1DC } - - { offsetInCU: 0x7244, offset: 0x662EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x8B68, symBinAddr: 0x15870, symSize: 0xAC } - - { offsetInCU: 0x7286, offset: 0x6632E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x8C14, symBinAddr: 0x1591C, symSize: 0x94 } - - { offsetInCU: 0x72C8, offset: 0x66370, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x8CA8, symBinAddr: 0x159B0, symSize: 0x20 } - - { offsetInCU: 0x72DC, offset: 0x66384, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8D00, symBinAddr: 0x15A08, symSize: 0x8 } - - { offsetInCU: 0x72F0, offset: 0x66398, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8D08, symBinAddr: 0x15A10, symSize: 0x10 } - - { offsetInCU: 0x7304, offset: 0x663AC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8D18, symBinAddr: 0x15A20, symSize: 0x8 } - - { offsetInCU: 0x7318, offset: 0x663C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8DF8, symBinAddr: 0x15A28, symSize: 0x8 } - - { offsetInCU: 0x734D, offset: 0x663F5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x8E00, symBinAddr: 0x15A30, symSize: 0xC4 } - - { offsetInCU: 0x73C3, offset: 0x6646B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8EC4, symBinAddr: 0x15AF4, symSize: 0x78 } - - { offsetInCU: 0x73F0, offset: 0x66498, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8F3C, symBinAddr: 0x15B6C, symSize: 0x80 } - - { offsetInCU: 0x7466, offset: 0x6650E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x8FBC, symBinAddr: 0x15BEC, symSize: 0x68 } - - { offsetInCU: 0x74F7, offset: 0x6659F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x9024, symBinAddr: 0x15C54, symSize: 0x634 } - - { offsetInCU: 0x7A84, offset: 0x66B2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x9658, symBinAddr: 0x16288, symSize: 0x420 } - - { offsetInCU: 0x7E2D, offset: 0x66ED5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9A78, symBinAddr: 0x166A8, symSize: 0x20C } - - { offsetInCU: 0x7F5A, offset: 0x67002, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9C84, symBinAddr: 0x168B4, symSize: 0x20C } - - { offsetInCU: 0x80D6, offset: 0x6717E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9E90, symBinAddr: 0x16AC0, symSize: 0x130 } - - { offsetInCU: 0x8208, offset: 0x672B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9FC0, symBinAddr: 0x16BF0, symSize: 0x220 } - - { offsetInCU: 0x8461, offset: 0x67509, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA1E0, symBinAddr: 0x16E10, symSize: 0x8A4 } - - { offsetInCU: 0x8AA4, offset: 0x67B4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xAA84, symBinAddr: 0x176B4, symSize: 0x704 } - - { offsetInCU: 0x8E92, offset: 0x67F3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xB188, symBinAddr: 0x17DB8, symSize: 0x140 } - - { offsetInCU: 0x8FD1, offset: 0x68079, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tg5Tf4d_n', symObjAddr: 0xB9F8, symBinAddr: 0x18628, symSize: 0x54 } - - { offsetInCU: 0x8FFE, offset: 0x680A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xBA90, symBinAddr: 0x1867C, symSize: 0x8 } - - { offsetInCU: 0x9012, offset: 0x680BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xBA98, symBinAddr: 0x18684, symSize: 0x4 } - - { offsetInCU: 0x9026, offset: 0x680CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xBA9C, symBinAddr: 0x18688, symSize: 0x44 } - - { offsetInCU: 0x903A, offset: 0x680E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xBAE0, symBinAddr: 0x186CC, symSize: 0x10 } - - { offsetInCU: 0x904E, offset: 0x680F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xBAF0, symBinAddr: 0x186DC, symSize: 0x24 } - - { offsetInCU: 0x9062, offset: 0x6810A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xBBDC, symBinAddr: 0x187C8, symSize: 0x10 } - - { offsetInCU: 0x9076, offset: 0x6811E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0xBC5C, symBinAddr: 0x18848, symSize: 0x18 } - - { offsetInCU: 0x908A, offset: 0x68132, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xBC74, symBinAddr: 0x18860, symSize: 0x10 } - - { offsetInCU: 0x909E, offset: 0x68146, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xBD04, symBinAddr: 0x188AC, symSize: 0x8 } - - { offsetInCU: 0x90B2, offset: 0x6815A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xBD0C, symBinAddr: 0x188B4, symSize: 0x8 } - - { offsetInCU: 0x90C6, offset: 0x6816E, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xBD24, symBinAddr: 0x188CC, symSize: 0x8 } - - { offsetInCU: 0x90DA, offset: 0x68182, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xBD2C, symBinAddr: 0x188D4, symSize: 0x8 } - - { offsetInCU: 0x910C, offset: 0x681B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xBD34, symBinAddr: 0x188DC, symSize: 0x288 } - - { offsetInCU: 0x92A9, offset: 0x68351, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xC41C, symBinAddr: 0x18DB4, symSize: 0x10 } - - { offsetInCU: 0x92BD, offset: 0x68365, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xC4D0, symBinAddr: 0x18E24, symSize: 0x10 } - - { offsetInCU: 0x92D1, offset: 0x68379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xC504, symBinAddr: 0x18E58, symSize: 0xC } - - { offsetInCU: 0x92E5, offset: 0x6838D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xC5DC, symBinAddr: 0x18EEC, symSize: 0xC } - - { offsetInCU: 0x9388, offset: 0x68430, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xCDB4, symSize: 0xE4 } - - { offsetInCU: 0x9449, offset: 0x684F1, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE4, symBinAddr: 0xCE98, symSize: 0xAC } - - { offsetInCU: 0x94F8, offset: 0x685A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x220, symBinAddr: 0xCFD4, symSize: 0x14 } - - { offsetInCU: 0x9589, offset: 0x68631, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x234, symBinAddr: 0xCFE8, symSize: 0x44 } - - { offsetInCU: 0x9618, offset: 0x686C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x278, symBinAddr: 0xD02C, symSize: 0x28 } - - { offsetInCU: 0x966B, offset: 0x68713, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2A0, symBinAddr: 0xD054, symSize: 0x40 } - - { offsetInCU: 0x5A, offset: 0x691B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x19024, symSize: 0x88 } - - { offsetInCU: 0x8E, offset: 0x691E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x88, symBinAddr: 0x190AC, symSize: 0x60 } - - { offsetInCU: 0xAC, offset: 0x69204, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0xE8, symBinAddr: 0x1910C, symSize: 0x44 } - - { offsetInCU: 0xCB, offset: 0x69223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x12C, symBinAddr: 0x19150, symSize: 0x48 } - - { offsetInCU: 0x10A, offset: 0x69262, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x174, symBinAddr: 0x19198, symSize: 0x44 } - - { offsetInCU: 0x139, offset: 0x69291, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x1B8, symBinAddr: 0x191DC, symSize: 0x54 } - - { offsetInCU: 0x158, offset: 0x692B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x20C, symBinAddr: 0x19230, symSize: 0x5C } - - { offsetInCU: 0x197, offset: 0x692EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x268, symBinAddr: 0x1928C, symSize: 0x44 } - - { offsetInCU: 0x1C6, offset: 0x6931E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x192D0, symSize: 0x48 } - - { offsetInCU: 0x1E5, offset: 0x6933D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x2F4, symBinAddr: 0x19318, symSize: 0x50 } - - { offsetInCU: 0x224, offset: 0x6937C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x344, symBinAddr: 0x19368, symSize: 0x44 } - - { offsetInCU: 0x253, offset: 0x693AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x3A0, symBinAddr: 0x193C4, symSize: 0x44 } - - { offsetInCU: 0x282, offset: 0x693DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x3FC, symBinAddr: 0x19420, symSize: 0x44 } - - { offsetInCU: 0x2B1, offset: 0x69409, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x440, symBinAddr: 0x19464, symSize: 0x4 } - - { offsetInCU: 0x2DC, offset: 0x69434, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x4E0, symBinAddr: 0x19504, symSize: 0x44 } - - { offsetInCU: 0x30B, offset: 0x69463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x53C, symBinAddr: 0x19560, symSize: 0x44 } - - { offsetInCU: 0x33A, offset: 0x69492, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x634, symBinAddr: 0x19658, symSize: 0x44 } - - { offsetInCU: 0x369, offset: 0x694C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x690, symBinAddr: 0x196B4, symSize: 0x44 } - - { offsetInCU: 0x398, offset: 0x694F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x794, symBinAddr: 0x197B8, symSize: 0x44 } - - { offsetInCU: 0x3C7, offset: 0x6951F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x7F0, symBinAddr: 0x19814, symSize: 0x44 } - - { offsetInCU: 0x3F6, offset: 0x6954E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0x8DC, symBinAddr: 0x19900, symSize: 0x44 } - - { offsetInCU: 0x443, offset: 0x6959B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0x920, symBinAddr: 0x19944, symSize: 0x110 } - - { offsetInCU: 0x621, offset: 0x69779, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xA30, symBinAddr: 0x19A54, symSize: 0x6F4 } - - { offsetInCU: 0x1185, offset: 0x6A2DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1124, symBinAddr: 0x1A148, symSize: 0x44 } - - { offsetInCU: 0x1199, offset: 0x6A2F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1168, symBinAddr: 0x1A18C, symSize: 0x184 } - - { offsetInCU: 0x1204, offset: 0x6A35C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x12EC, symBinAddr: 0x1A310, symSize: 0x70 } - - { offsetInCU: 0x1229, offset: 0x6A381, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x135C, symBinAddr: 0x1A380, symSize: 0x434 } - - { offsetInCU: 0x12CA, offset: 0x6A422, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x1790, symBinAddr: 0x1A7B4, symSize: 0x20 } - - { offsetInCU: 0x12E8, offset: 0x6A440, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x17B0, symBinAddr: 0x1A7D4, symSize: 0x2C } - - { offsetInCU: 0x134B, offset: 0x6A4A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x17DC, symBinAddr: 0x1A800, symSize: 0x2C } - - { offsetInCU: 0x13B2, offset: 0x6A50A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x1808, symBinAddr: 0x1A82C, symSize: 0x30 } - - { offsetInCU: 0x141B, offset: 0x6A573, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfcTf4ggnnn_n', symObjAddr: 0x22E4, symBinAddr: 0x1B308, symSize: 0x1A4 } - - { offsetInCU: 0x168A, offset: 0x6A7E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1838, symBinAddr: 0x1A85C, symSize: 0x84 } - - { offsetInCU: 0x16B9, offset: 0x6A811, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x18BC, symBinAddr: 0x1A8E0, symSize: 0x5C } - - { offsetInCU: 0x1751, offset: 0x6A8A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1918, symBinAddr: 0x1A93C, symSize: 0x218 } - - { offsetInCU: 0x1996, offset: 0x6AAEE, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1B30, symBinAddr: 0x1AB54, symSize: 0xD4 } - - { offsetInCU: 0x1BD4, offset: 0x6AD2C, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1C04, symBinAddr: 0x1AC28, symSize: 0x12C } - - { offsetInCU: 0x1DCB, offset: 0x6AF23, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x1D30, symBinAddr: 0x1AD54, symSize: 0xB4 } - - { offsetInCU: 0x1F5D, offset: 0x6B0B5, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x2090, symBinAddr: 0x1B0B4, symSize: 0x64 } - - { offsetInCU: 0x1FF6, offset: 0x6B14E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x24C8, symBinAddr: 0x1B4AC, symSize: 0x20 } - - { offsetInCU: 0x200A, offset: 0x6B162, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x252C, symBinAddr: 0x1B4CC, symSize: 0x10 } - - { offsetInCU: 0x2187, offset: 0x6B2DF, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x1DE4, symBinAddr: 0x1AE08, symSize: 0x2AC } - - { offsetInCU: 0x23DB, offset: 0x6B533, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTg5Tf4nd_n', symObjAddr: 0x20F4, symBinAddr: 0x1B118, symSize: 0xD0 } - - { offsetInCU: 0x2474, offset: 0x6B5CC, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTg5Tf4gd_n', symObjAddr: 0x21C4, symBinAddr: 0x1B1E8, symSize: 0x110 } - - { offsetInCU: 0x134, offset: 0x6B960, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1B508, symSize: 0x33C } - - { offsetInCU: 0x222, offset: 0x6BA4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x33C, symBinAddr: 0x1B844, symSize: 0x334 } - - { offsetInCU: 0x654, offset: 0x6BE80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x754, symBinAddr: 0x1BC5C, symSize: 0x47C } - - { offsetInCU: 0x870, offset: 0x6C09C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xBD0, symBinAddr: 0x1C0D8, symSize: 0x138 } - - { offsetInCU: 0xA31, offset: 0x6C25D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xD5C, symBinAddr: 0x1C264, symSize: 0x6B0 } - - { offsetInCU: 0xE0C, offset: 0x6C638, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x140C, symBinAddr: 0x1C914, symSize: 0xA4 } - - { offsetInCU: 0xEB4, offset: 0x6C6E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x14B0, symBinAddr: 0x1C9B8, symSize: 0x250 } - - { offsetInCU: 0xF0D, offset: 0x6C739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x1700, symBinAddr: 0x1CC08, symSize: 0x20 } - - { offsetInCU: 0xF29, offset: 0x6C755, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1720, symBinAddr: 0x1CC28, symSize: 0x30 } - - { offsetInCU: 0x118A, offset: 0x6C9B6, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x670, symBinAddr: 0x1BB78, symSize: 0x20 } - - { offsetInCU: 0x119E, offset: 0x6C9CA, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x690, symBinAddr: 0x1BB98, symSize: 0x20 } - - { offsetInCU: 0x11CC, offset: 0x6C9F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x6B0, symBinAddr: 0x1BBB8, symSize: 0xA4 } - - { offsetInCU: 0x14EE, offset: 0x6CD1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x1750, symBinAddr: 0x1CC58, symSize: 0x78 } - - { offsetInCU: 0x151D, offset: 0x6CD49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x17C8, symBinAddr: 0x1CCD0, symSize: 0x20 } - - { offsetInCU: 0x1531, offset: 0x6CD5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x17E8, symBinAddr: 0x1CCF0, symSize: 0x30 } - - { offsetInCU: 0x1545, offset: 0x6CD71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1818, symBinAddr: 0x1CD20, symSize: 0x4 } - - { offsetInCU: 0x1559, offset: 0x6CD85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x183C, symBinAddr: 0x1CD24, symSize: 0x40 } - - { offsetInCU: 0x156D, offset: 0x6CD99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x187C, symBinAddr: 0x1CD64, symSize: 0x30 } - - { offsetInCU: 0x1581, offset: 0x6CDAD, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x18AC, symBinAddr: 0x1CD94, symSize: 0x168 } - - { offsetInCU: 0x1595, offset: 0x6CDC1, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1A14, symBinAddr: 0x1CEFC, symSize: 0x14 } - - { offsetInCU: 0x15A9, offset: 0x6CDD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1A28, symBinAddr: 0x1CF10, symSize: 0x40 } - - { offsetInCU: 0x15BD, offset: 0x6CDE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1A68, symBinAddr: 0x1CF50, symSize: 0x48 } - - { offsetInCU: 0x15D1, offset: 0x6CDFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1AB0, symBinAddr: 0x1CF98, symSize: 0x4C } - - { offsetInCU: 0x15E5, offset: 0x6CE11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1AFC, symBinAddr: 0x1CFE4, symSize: 0x10 } - - { offsetInCU: 0x1681, offset: 0x6CEAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1BAC, symBinAddr: 0x1D094, symSize: 0x2A0 } - - { offsetInCU: 0x18B5, offset: 0x6D0E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x1E4C, symBinAddr: 0x1D334, symSize: 0x214 } - - { offsetInCU: 0x19DE, offset: 0x6D20A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x2060, symBinAddr: 0x1D548, symSize: 0x478 } - - { offsetInCU: 0x1DC9, offset: 0x6D5F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x24D8, symBinAddr: 0x1D9C0, symSize: 0x85C } - - { offsetInCU: 0x22D1, offset: 0x6DAFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2D68, symBinAddr: 0x1E250, symSize: 0xC } - - { offsetInCU: 0x22F0, offset: 0x6DB1C, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x2D84, symBinAddr: 0x1E26C, symSize: 0x20 } - - { offsetInCU: 0x2319, offset: 0x6DB45, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2DA4, symBinAddr: 0x1E28C, symSize: 0x10 } - - { offsetInCU: 0x232D, offset: 0x6DB59, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2DB4, symBinAddr: 0x1E29C, symSize: 0x8 } - - { offsetInCU: 0x2341, offset: 0x6DB6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x2DE0, symBinAddr: 0x1E2C8, symSize: 0x18 } - - { offsetInCU: 0x2360, offset: 0x6DB8C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x2EA0, symBinAddr: 0x1E2E0, symSize: 0x14 } - - { offsetInCU: 0x2398, offset: 0x6DBC4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x2EB4, symBinAddr: 0x1E2F4, symSize: 0x14 } - - { offsetInCU: 0x23C5, offset: 0x6DBF1, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x2EC8, symBinAddr: 0x1E308, symSize: 0x78 } - - { offsetInCU: 0x243A, offset: 0x6DC66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x2F40, symBinAddr: 0x1E380, symSize: 0x594 } - - { offsetInCU: 0x2624, offset: 0x6DE50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x34D4, symBinAddr: 0x1E914, symSize: 0x55C } - - { offsetInCU: 0x2803, offset: 0x6E02F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3A30, symBinAddr: 0x1EE70, symSize: 0x44 } - - { offsetInCU: 0x2817, offset: 0x6E043, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3A8C, symBinAddr: 0x1EEB4, symSize: 0x8 } - - { offsetInCU: 0x282B, offset: 0x6E057, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3AB8, symBinAddr: 0x1EEE0, symSize: 0x20 } - - { offsetInCU: 0x2864, offset: 0x6E090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3AD8, symBinAddr: 0x1EF00, symSize: 0x48 } - - { offsetInCU: 0x288D, offset: 0x6E0B9, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3B20, symBinAddr: 0x1EF48, symSize: 0x48 } - - { offsetInCU: 0x28A8, offset: 0x6E0D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3B68, symBinAddr: 0x1EF90, symSize: 0x24 } - - { offsetInCU: 0x28D8, offset: 0x6E104, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3BB4, symBinAddr: 0x1EFB4, symSize: 0x38 } - - { offsetInCU: 0x2901, offset: 0x6E12D, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3BEC, symBinAddr: 0x1EFEC, symSize: 0x3C } - - { offsetInCU: 0x2915, offset: 0x6E141, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3C30, symBinAddr: 0x1F030, symSize: 0x3C } - - { offsetInCU: 0x2929, offset: 0x6E155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3CEC, symBinAddr: 0x1F0EC, symSize: 0x24 } - - { offsetInCU: 0x293D, offset: 0x6E169, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3D10, symBinAddr: 0x1F110, symSize: 0x178 } - - { offsetInCU: 0x2AF2, offset: 0x6E31E, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x3E88, symBinAddr: 0x1F288, symSize: 0x40 } - - { offsetInCU: 0x2B06, offset: 0x6E332, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x3F48, symBinAddr: 0x1F348, symSize: 0x44 } - - { offsetInCU: 0x2B1A, offset: 0x6E346, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOs', symObjAddr: 0x3F8C, symBinAddr: 0x1F38C, symSize: 0x44 } - - { offsetInCU: 0x2B2E, offset: 0x6E35A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x40B0, symBinAddr: 0x1F4B0, symSize: 0xC } - - { offsetInCU: 0x2B42, offset: 0x6E36E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x4138, symBinAddr: 0x1F4CC, symSize: 0x18 } - - { offsetInCU: 0x2CAD, offset: 0x6E4D9, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1B0C, symBinAddr: 0x1CFF4, symSize: 0xA0 } - - { offsetInCU: 0x27, offset: 0x6E819, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x1F518, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x6E83D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x4748, symBinAddr: 0x62280, symSize: 0x0 } - - { offsetInCU: 0x76, offset: 0x6E868, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x168, symBinAddr: 0x1F680, symSize: 0x20 } - - { offsetInCU: 0x8A, offset: 0x6E87C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x188, symBinAddr: 0x1F6A0, symSize: 0x68 } - - { offsetInCU: 0xC1, offset: 0x6E8B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1F0, symBinAddr: 0x1F708, symSize: 0x74 } - - { offsetInCU: 0x108, offset: 0x6E8FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x264, symBinAddr: 0x1F77C, symSize: 0x6C } - - { offsetInCU: 0x13F, offset: 0x6E931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2D0, symBinAddr: 0x1F7E8, symSize: 0x4 } - - { offsetInCU: 0x16A, offset: 0x6E95C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2D4, symBinAddr: 0x1F7EC, symSize: 0x40 } - - { offsetInCU: 0x1A7, offset: 0x6E999, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x334, symBinAddr: 0x1F84C, symSize: 0x4C } - - { offsetInCU: 0x202, offset: 0x6E9F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x380, symBinAddr: 0x1F898, symSize: 0x148 } - - { offsetInCU: 0x3AA, offset: 0x6EB9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x508, symBinAddr: 0x1F9E0, symSize: 0x30 } - - { offsetInCU: 0x3D8, offset: 0x6EBCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x1F518, symSize: 0x40 } - - { offsetInCU: 0x3F8, offset: 0x6EBEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x40, symBinAddr: 0x1F558, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x6EC09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x50, symBinAddr: 0x1F568, symSize: 0x8 } - - { offsetInCU: 0x45C, offset: 0x6EC4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x118, symBinAddr: 0x1F630, symSize: 0x18 } - - { offsetInCU: 0x48D, offset: 0x6EC7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x130, symBinAddr: 0x1F648, symSize: 0xC } - - { offsetInCU: 0x4CB, offset: 0x6ECBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x13C, symBinAddr: 0x1F654, symSize: 0x2C } - - { offsetInCU: 0x50C, offset: 0x6ECFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x314, symBinAddr: 0x1F82C, symSize: 0x20 } - - { offsetInCU: 0x583, offset: 0x6ED75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x538, symBinAddr: 0x1FA10, symSize: 0x4 } - - { offsetInCU: 0x597, offset: 0x6ED89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x53C, symBinAddr: 0x1FA14, symSize: 0x44 } - - { offsetInCU: 0x5AB, offset: 0x6ED9D, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x580, symBinAddr: 0x1FA58, symSize: 0xC } - - { offsetInCU: 0x5BF, offset: 0x6EDB1, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x58C, symBinAddr: 0x1FA64, symSize: 0x4 } - - { offsetInCU: 0x5D3, offset: 0x6EDC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x590, symBinAddr: 0x1FA68, symSize: 0x90 } - - { offsetInCU: 0x5E7, offset: 0x6EDD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x620, symBinAddr: 0x1FAF8, symSize: 0xBC } - - { offsetInCU: 0x5FB, offset: 0x6EDED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6DC, symBinAddr: 0x1FBB4, symSize: 0x8 } - - { offsetInCU: 0x60F, offset: 0x6EE01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6E4, symBinAddr: 0x1FBBC, symSize: 0x4 } - - { offsetInCU: 0x623, offset: 0x6EE15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x6E8, symBinAddr: 0x1FBC0, symSize: 0x8 } - - { offsetInCU: 0x637, offset: 0x6EE29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x6F0, symBinAddr: 0x1FBC8, symSize: 0x10 } - - { offsetInCU: 0x64B, offset: 0x6EE3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x700, symBinAddr: 0x1FBD8, symSize: 0x4 } - - { offsetInCU: 0x699, offset: 0x6EE8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x58, symBinAddr: 0x1F570, symSize: 0x14 } - - { offsetInCU: 0x72A, offset: 0x6EF1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x6C, symBinAddr: 0x1F584, symSize: 0x44 } - - { offsetInCU: 0x7D9, offset: 0x6EFCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB0, symBinAddr: 0x1F5C8, symSize: 0x28 } - - { offsetInCU: 0x82C, offset: 0x6F01E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xD8, symBinAddr: 0x1F5F0, symSize: 0x40 } - - { offsetInCU: 0x99, offset: 0x6F255, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x1FBDC, symSize: 0x15C } - - { offsetInCU: 0x16F, offset: 0x6F32B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x15C, symBinAddr: 0x1FD38, symSize: 0x11C } - - { offsetInCU: 0x1BE, offset: 0x6F37A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x278, symBinAddr: 0x1FE54, symSize: 0x44 } - - { offsetInCU: 0x1DD, offset: 0x6F399, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2BC, symBinAddr: 0x1FE98, symSize: 0x48 } - - { offsetInCU: 0x21C, offset: 0x6F3D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x304, symBinAddr: 0x1FEE0, symSize: 0x44 } - - { offsetInCU: 0x24B, offset: 0x6F407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x348, symBinAddr: 0x1FF24, symSize: 0x54 } - - { offsetInCU: 0x26A, offset: 0x6F426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x39C, symBinAddr: 0x1FF78, symSize: 0x5C } - - { offsetInCU: 0x2A9, offset: 0x6F465, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x3F8, symBinAddr: 0x1FFD4, symSize: 0x44 } - - { offsetInCU: 0x2D8, offset: 0x6F494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x43C, symBinAddr: 0x20018, symSize: 0x48 } - - { offsetInCU: 0x2F7, offset: 0x6F4B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x484, symBinAddr: 0x20060, symSize: 0x50 } - - { offsetInCU: 0x336, offset: 0x6F4F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x4D4, symBinAddr: 0x200B0, symSize: 0x44 } - - { offsetInCU: 0x365, offset: 0x6F521, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x530, symBinAddr: 0x2010C, symSize: 0x44 } - - { offsetInCU: 0x394, offset: 0x6F550, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x610, symBinAddr: 0x201EC, symSize: 0x44 } - - { offsetInCU: 0x3C3, offset: 0x6F57F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x654, symBinAddr: 0x20230, symSize: 0x4 } - - { offsetInCU: 0x40C, offset: 0x6F5C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x658, symBinAddr: 0x20234, symSize: 0x110 } - - { offsetInCU: 0x518, offset: 0x6F6D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x768, symBinAddr: 0x20344, symSize: 0x14C } - - { offsetInCU: 0x59A, offset: 0x6F756, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x8B4, symBinAddr: 0x20490, symSize: 0x114 } - - { offsetInCU: 0x5DD, offset: 0x6F799, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x9C8, symBinAddr: 0x205A4, symSize: 0x20 } - - { offsetInCU: 0x5FB, offset: 0x6F7B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x9E8, symBinAddr: 0x205C4, symSize: 0x2C } - - { offsetInCU: 0x65E, offset: 0x6F81A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0xA14, symBinAddr: 0x205F0, symSize: 0x2C } - - { offsetInCU: 0x6C5, offset: 0x6F881, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0xA40, symBinAddr: 0x2061C, symSize: 0x30 } - - { offsetInCU: 0x79D, offset: 0x6F959, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0xA70, symBinAddr: 0x2064C, symSize: 0x3C } - - { offsetInCU: 0x7CC, offset: 0x6F988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xAAC, symBinAddr: 0x20688, symSize: 0x5C } - - { offsetInCU: 0x82A, offset: 0x6F9E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xB08, symBinAddr: 0x206E4, symSize: 0x218 } - - { offsetInCU: 0xA2D, offset: 0x6FBE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xD20, symBinAddr: 0x208FC, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x6FD66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x2092C, symSize: 0x14 } - - { offsetInCU: 0x4B, offset: 0x6FD8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x2092C, symSize: 0x14 } - - { offsetInCU: 0x6A, offset: 0x6FDA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x14, symBinAddr: 0x20940, symSize: 0x4 } - - { offsetInCU: 0xB6, offset: 0x6FDF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x104, symBinAddr: 0x20A30, symSize: 0x28 } - - { offsetInCU: 0xE7, offset: 0x6FE26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x12C, symBinAddr: 0x20A58, symSize: 0x18 } - - { offsetInCU: 0x110, offset: 0x6FE4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7F0, symBinAddr: 0x2111C, symSize: 0x2C } - - { offsetInCU: 0x169, offset: 0x6FEA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x144, symBinAddr: 0x20A70, symSize: 0x58 } - - { offsetInCU: 0x188, offset: 0x6FEC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x19C, symBinAddr: 0x20AC8, symSize: 0x14 } - - { offsetInCU: 0x1EA, offset: 0x6FF29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x29C, symBinAddr: 0x20BC8, symSize: 0x70 } - - { offsetInCU: 0x21B, offset: 0x6FF5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x30C, symBinAddr: 0x20C38, symSize: 0x18 } - - { offsetInCU: 0x2F9, offset: 0x70038, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x324, symBinAddr: 0x20C50, symSize: 0x220 } - - { offsetInCU: 0x590, offset: 0x702CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x554, symBinAddr: 0x20E80, symSize: 0x11C } - - { offsetInCU: 0x820, offset: 0x7055F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x670, symBinAddr: 0x20F9C, symSize: 0xC0 } - - { offsetInCU: 0x968, offset: 0x706A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x730, symBinAddr: 0x2105C, symSize: 0xC0 } - - { offsetInCU: 0xA95, offset: 0x707D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x81C, symBinAddr: 0x21148, symSize: 0x4 } - - { offsetInCU: 0xAA9, offset: 0x707E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x820, symBinAddr: 0x2114C, symSize: 0x44 } - - { offsetInCU: 0xABD, offset: 0x707FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x864, symBinAddr: 0x21190, symSize: 0x4 } - - { offsetInCU: 0xAD1, offset: 0x70810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x868, symBinAddr: 0x21194, symSize: 0x44 } - - { offsetInCU: 0xAE5, offset: 0x70824, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x8BC, symBinAddr: 0x211D8, symSize: 0x90 } - - { offsetInCU: 0xAF9, offset: 0x70838, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x94C, symBinAddr: 0x21268, symSize: 0xBC } - - { offsetInCU: 0xB0D, offset: 0x7084C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0xA08, symBinAddr: 0x21324, symSize: 0x8 } - - { offsetInCU: 0xB21, offset: 0x70860, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0xA10, symBinAddr: 0x2132C, symSize: 0x4 } - - { offsetInCU: 0xB35, offset: 0x70874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0xA14, symBinAddr: 0x21330, symSize: 0x8 } - - { offsetInCU: 0xB49, offset: 0x70888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0xA1C, symBinAddr: 0x21338, symSize: 0x10 } - - { offsetInCU: 0xB5D, offset: 0x7089C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0xA2C, symBinAddr: 0x21348, symSize: 0x90 } - - { offsetInCU: 0xB71, offset: 0x708B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xABC, symBinAddr: 0x213D8, symSize: 0xBC } - - { offsetInCU: 0xB85, offset: 0x708C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xB78, symBinAddr: 0x21494, symSize: 0x4 } - - { offsetInCU: 0xB99, offset: 0x708D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xB7C, symBinAddr: 0x21498, symSize: 0x10 } - - { offsetInCU: 0xBAD, offset: 0x708EC, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xBCC, symBinAddr: 0x214A8, symSize: 0x4C } - - { offsetInCU: 0xBE4, offset: 0x70923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x18, symBinAddr: 0x20944, symSize: 0x24 } - - { offsetInCU: 0xC86, offset: 0x709C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x3C, symBinAddr: 0x20968, symSize: 0x4C } - - { offsetInCU: 0xD5E, offset: 0x70A9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x209B4, symSize: 0x34 } - - { offsetInCU: 0xDDA, offset: 0x70B19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBC, symBinAddr: 0x209E8, symSize: 0x48 } - - { offsetInCU: 0xE95, offset: 0x70BD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B0, symBinAddr: 0x20ADC, symSize: 0x24 } - - { offsetInCU: 0xF37, offset: 0x70C76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x1D4, symBinAddr: 0x20B00, symSize: 0x4C } - - { offsetInCU: 0x100F, offset: 0x70D4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x220, symBinAddr: 0x20B4C, symSize: 0x34 } - - { offsetInCU: 0x108B, offset: 0x70DCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x254, symBinAddr: 0x20B80, symSize: 0x48 } - - { offsetInCU: 0xBF, offset: 0x710B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x214FC, symSize: 0x164 } - - { offsetInCU: 0x1E7, offset: 0x711DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x164, symBinAddr: 0x21660, symSize: 0x1CC } - - { offsetInCU: 0x397, offset: 0x7138A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x340, symBinAddr: 0x2183C, symSize: 0xC9C } - - { offsetInCU: 0xA4E, offset: 0x71A41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0xFDC, symBinAddr: 0x224D8, symSize: 0x34 } - - { offsetInCU: 0xC6B, offset: 0x71C5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1010, symBinAddr: 0x2250C, symSize: 0x20 } - - { offsetInCU: 0xC7F, offset: 0x71C72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1030, symBinAddr: 0x2252C, symSize: 0x44 } - - { offsetInCU: 0xC93, offset: 0x71C86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x10F8, symBinAddr: 0x22570, symSize: 0x34 } - - { offsetInCU: 0xCA7, offset: 0x71C9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x112C, symBinAddr: 0x225A4, symSize: 0x50 } - - { offsetInCU: 0xCBB, offset: 0x71CAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x117C, symBinAddr: 0x225F4, symSize: 0x34 } - - { offsetInCU: 0xCCF, offset: 0x71CC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x11B0, symBinAddr: 0x22628, symSize: 0x5C } - - { offsetInCU: 0xCE3, offset: 0x71CD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x12C0, symBinAddr: 0x22738, symSize: 0x50 } - - { offsetInCU: 0xCF7, offset: 0x71CEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1310, symBinAddr: 0x22788, symSize: 0x80 } - - { offsetInCU: 0xD0B, offset: 0x71CFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x1390, symBinAddr: 0x22808, symSize: 0x24 } - - { offsetInCU: 0x4B, offset: 0x71F70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x2282C, symSize: 0x3C } - - { offsetInCU: 0x6A, offset: 0x71F8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3C, symBinAddr: 0x22868, symSize: 0x4 } - - { offsetInCU: 0xAD, offset: 0x71FD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x84, symBinAddr: 0x228B0, symSize: 0x34 } - - { offsetInCU: 0xDE, offset: 0x72003, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xB8, symBinAddr: 0x228E4, symSize: 0xC } - - { offsetInCU: 0x128, offset: 0x7204D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0xD0, symBinAddr: 0x228FC, symSize: 0x4 } - - { offsetInCU: 0x151, offset: 0x72076, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x22C7C, symSize: 0x4C } - - { offsetInCU: 0x189, offset: 0x720AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x114, symBinAddr: 0x22940, symSize: 0x4 } - - { offsetInCU: 0x1B2, offset: 0x720D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x49C, symBinAddr: 0x22CC8, symSize: 0x4C } - - { offsetInCU: 0x1EA, offset: 0x7210F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x190, symBinAddr: 0x229BC, symSize: 0x4 } - - { offsetInCU: 0x220, offset: 0x72145, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1E4, symBinAddr: 0x22A10, symSize: 0x4 } - - { offsetInCU: 0x256, offset: 0x7217B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1EC, symBinAddr: 0x22A18, symSize: 0x4 } - - { offsetInCU: 0x28C, offset: 0x721B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x22C, symBinAddr: 0x22A58, symSize: 0x4 } - - { offsetInCU: 0x2CF, offset: 0x721F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x230, symBinAddr: 0x22A5C, symSize: 0x2C } - - { offsetInCU: 0x30D, offset: 0x72232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x268, symBinAddr: 0x22A94, symSize: 0x4 } - - { offsetInCU: 0x336, offset: 0x7225B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x534, symBinAddr: 0x22D60, symSize: 0x58 } - - { offsetInCU: 0x36E, offset: 0x72293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x288, symBinAddr: 0x22AB4, symSize: 0x4C } - - { offsetInCU: 0x38D, offset: 0x722B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2D4, symBinAddr: 0x22B00, symSize: 0x4 } - - { offsetInCU: 0x3D0, offset: 0x722F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2D8, symBinAddr: 0x22B04, symSize: 0x44 } - - { offsetInCU: 0x40E, offset: 0x72333, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x31C, symBinAddr: 0x22B48, symSize: 0x28 } - - { offsetInCU: 0x42D, offset: 0x72352, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x344, symBinAddr: 0x22B70, symSize: 0x4 } - - { offsetInCU: 0x470, offset: 0x72395, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x348, symBinAddr: 0x22B74, symSize: 0x20 } - - { offsetInCU: 0x4AE, offset: 0x723D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x368, symBinAddr: 0x22B94, symSize: 0x34 } - - { offsetInCU: 0x4CD, offset: 0x723F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x39C, symBinAddr: 0x22BC8, symSize: 0x4 } - - { offsetInCU: 0x510, offset: 0x72435, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x424, symBinAddr: 0x22C50, symSize: 0x2C } - - { offsetInCU: 0x542, offset: 0x72467, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0x58C, symBinAddr: 0x22DB8, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x7247B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0x590, symBinAddr: 0x22DBC, symSize: 0x44 } - - { offsetInCU: 0x56A, offset: 0x7248F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x5D4, symBinAddr: 0x22E00, symSize: 0x4 } - - { offsetInCU: 0x57E, offset: 0x724A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x5D8, symBinAddr: 0x22E04, symSize: 0x44 } - - { offsetInCU: 0x592, offset: 0x724B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x61C, symBinAddr: 0x22E48, symSize: 0x4 } - - { offsetInCU: 0x5A6, offset: 0x724CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x620, symBinAddr: 0x22E4C, symSize: 0x44 } - - { offsetInCU: 0x5BA, offset: 0x724DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x664, symBinAddr: 0x22E90, symSize: 0x4 } - - { offsetInCU: 0x5CE, offset: 0x724F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x668, symBinAddr: 0x22E94, symSize: 0x44 } - - { offsetInCU: 0x5E2, offset: 0x72507, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x6AC, symBinAddr: 0x22ED8, symSize: 0x4 } - - { offsetInCU: 0x5F6, offset: 0x7251B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x6B0, symBinAddr: 0x22EDC, symSize: 0x44 } - - { offsetInCU: 0x60A, offset: 0x7252F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x6F4, symBinAddr: 0x22F20, symSize: 0x4 } - - { offsetInCU: 0x61E, offset: 0x72543, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x6F8, symBinAddr: 0x22F24, symSize: 0x44 } - - { offsetInCU: 0x632, offset: 0x72557, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x73C, symBinAddr: 0x22F68, symSize: 0x4 } - - { offsetInCU: 0x646, offset: 0x7256B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x740, symBinAddr: 0x22F6C, symSize: 0x44 } - - { offsetInCU: 0x65A, offset: 0x7257F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x784, symBinAddr: 0x22FB0, symSize: 0x4 } - - { offsetInCU: 0x66E, offset: 0x72593, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x788, symBinAddr: 0x22FB4, symSize: 0x44 } - - { offsetInCU: 0x682, offset: 0x725A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x7CC, symBinAddr: 0x22FF8, symSize: 0x4 } - - { offsetInCU: 0x696, offset: 0x725BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x7D0, symBinAddr: 0x22FFC, symSize: 0x44 } - - { offsetInCU: 0x6AA, offset: 0x725CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x814, symBinAddr: 0x23040, symSize: 0x4 } - - { offsetInCU: 0x6BE, offset: 0x725E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x818, symBinAddr: 0x23044, symSize: 0x44 } - - { offsetInCU: 0x6D2, offset: 0x725F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x85C, symBinAddr: 0x23088, symSize: 0x4 } - - { offsetInCU: 0x6E6, offset: 0x7260B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x860, symBinAddr: 0x2308C, symSize: 0x44 } - - { offsetInCU: 0x6FA, offset: 0x7261F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x8A4, symBinAddr: 0x230D0, symSize: 0x10 } - - { offsetInCU: 0x70E, offset: 0x72633, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x8B4, symBinAddr: 0x230E0, symSize: 0x10 } - - { offsetInCU: 0x722, offset: 0x72647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x8C4, symBinAddr: 0x230F0, symSize: 0x10 } - - { offsetInCU: 0x736, offset: 0x7265B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x8D4, symBinAddr: 0x23100, symSize: 0x10 } - - { offsetInCU: 0x74A, offset: 0x7266F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x8E4, symBinAddr: 0x23110, symSize: 0x10 } - - { offsetInCU: 0x75E, offset: 0x72683, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x8F4, symBinAddr: 0x23120, symSize: 0x10 } - - { offsetInCU: 0x772, offset: 0x72697, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x904, symBinAddr: 0x23130, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x726AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x914, symBinAddr: 0x23140, symSize: 0x10 } - - { offsetInCU: 0x79A, offset: 0x726BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x924, symBinAddr: 0x23150, symSize: 0x10 } - - { offsetInCU: 0x7AE, offset: 0x726D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x934, symBinAddr: 0x23160, symSize: 0x10 } - - { offsetInCU: 0x7C2, offset: 0x726E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x944, symBinAddr: 0x23170, symSize: 0x10 } - - { offsetInCU: 0x7F9, offset: 0x7271E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x2286C, symSize: 0x14 } - - { offsetInCU: 0x84E, offset: 0x72773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x58, symBinAddr: 0x22884, symSize: 0x28 } - - { offsetInCU: 0x4F, offset: 0x72914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x23254, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x72932, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0x38, symBinAddr: 0x2328C, symSize: 0x44 } - - { offsetInCU: 0x9C, offset: 0x72961, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x94, symBinAddr: 0x232E8, symSize: 0x44 } - - { offsetInCU: 0xBB, offset: 0x72980, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0xD8, symBinAddr: 0x2332C, symSize: 0x48 } - - { offsetInCU: 0xDA, offset: 0x7299F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x120, symBinAddr: 0x23374, symSize: 0x50 } - - { offsetInCU: 0x119, offset: 0x729DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x170, symBinAddr: 0x233C4, symSize: 0x44 } - - { offsetInCU: 0x148, offset: 0x72A0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1B4, symBinAddr: 0x23408, symSize: 0x4 } - - { offsetInCU: 0x173, offset: 0x72A38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x254, symBinAddr: 0x234A8, symSize: 0x44 } - - { offsetInCU: 0x1A2, offset: 0x72A67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x298, symBinAddr: 0x234EC, symSize: 0xD4 } - - { offsetInCU: 0x1EB, offset: 0x72AB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x38C, symBinAddr: 0x235E0, symSize: 0x20 } - - { offsetInCU: 0x207, offset: 0x72ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x3AC, symBinAddr: 0x23600, symSize: 0x30 } - - { offsetInCU: 0x29A, offset: 0x72B5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x648, symBinAddr: 0x2389C, symSize: 0x48 } - - { offsetInCU: 0x2F6, offset: 0x72BBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x690, symBinAddr: 0x238E4, symSize: 0x4C } - - { offsetInCU: 0x346, offset: 0x72C0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x6DC, symBinAddr: 0x23930, symSize: 0x48 } - - { offsetInCU: 0x3D3, offset: 0x72C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x36C, symBinAddr: 0x235C0, symSize: 0x20 } - - { offsetInCU: 0x3E7, offset: 0x72CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x3DC, symBinAddr: 0x23630, symSize: 0x48 } - - { offsetInCU: 0x422, offset: 0x72CE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x424, symBinAddr: 0x23678, symSize: 0x84 } - - { offsetInCU: 0x4B7, offset: 0x72D7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x4A8, symBinAddr: 0x236FC, symSize: 0x18 } - - { offsetInCU: 0x4E8, offset: 0x72DAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x4C0, symBinAddr: 0x23714, symSize: 0xEC } - - { offsetInCU: 0x54D, offset: 0x72E12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x5AC, symBinAddr: 0x23800, symSize: 0x18 } - - { offsetInCU: 0x56A, offset: 0x72E2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x5C4, symBinAddr: 0x23818, symSize: 0x20 } - - { offsetInCU: 0x5A4, offset: 0x72E69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x5E4, symBinAddr: 0x23838, symSize: 0x64 } - - { offsetInCU: 0x5E1, offset: 0x72EA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x724, symBinAddr: 0x23978, symSize: 0x20 } - - { offsetInCU: 0x639, offset: 0x72EFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x744, symBinAddr: 0x23998, symSize: 0x24 } - - { offsetInCU: 0x68C, offset: 0x72F51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x768, symBinAddr: 0x239BC, symSize: 0x20 } - - { offsetInCU: 0x6CD, offset: 0x72F92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x788, symBinAddr: 0x239DC, symSize: 0x1C } - - { offsetInCU: 0x741, offset: 0x73006, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x7A4, symBinAddr: 0x239F8, symSize: 0x24 } - - { offsetInCU: 0x7CF, offset: 0x73094, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x7C8, symBinAddr: 0x23A1C, symSize: 0x68 } - - { offsetInCU: 0x971, offset: 0x73236, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x830, symBinAddr: 0x23A84, symSize: 0x494 } - - { offsetInCU: 0xC5E, offset: 0x73523, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xCE4, symBinAddr: 0x23F18, symSize: 0x148 } - - { offsetInCU: 0xD2C, offset: 0x735F1, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xE2C, symBinAddr: 0x24060, symSize: 0x2C } - - { offsetInCU: 0xD44, offset: 0x73609, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xE58, symBinAddr: 0x2408C, symSize: 0x90 } - - { offsetInCU: 0xD60, offset: 0x73625, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xEE8, symBinAddr: 0x2411C, symSize: 0xC8 } - - { offsetInCU: 0xE2B, offset: 0x736F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0xFB0, symBinAddr: 0x241E4, symSize: 0x1C0 } - - { offsetInCU: 0xEB0, offset: 0x73775, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1170, symBinAddr: 0x243A4, symSize: 0x4 } - - { offsetInCU: 0xED3, offset: 0x73798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1174, symBinAddr: 0x243A8, symSize: 0x4C } - - { offsetInCU: 0xF05, offset: 0x737CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x11C0, symBinAddr: 0x243F4, symSize: 0x8 } - - { offsetInCU: 0xF28, offset: 0x737ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x11C8, symBinAddr: 0x243FC, symSize: 0x60 } - - { offsetInCU: 0xF5A, offset: 0x7381F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x1228, symBinAddr: 0x2445C, symSize: 0xBC } - - { offsetInCU: 0xFEB, offset: 0x738B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x12E4, symBinAddr: 0x24518, symSize: 0x154 } - - { offsetInCU: 0x1035, offset: 0x738FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x1438, symBinAddr: 0x2466C, symSize: 0x8 } - - { offsetInCU: 0x1058, offset: 0x7391D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x1440, symBinAddr: 0x24674, symSize: 0x78 } - - { offsetInCU: 0x10AB, offset: 0x73970, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x14B8, symBinAddr: 0x246EC, symSize: 0x4C } - - { offsetInCU: 0x1128, offset: 0x739ED, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x182C, symBinAddr: 0x24A14, symSize: 0x3C } - - { offsetInCU: 0x113C, offset: 0x73A01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x188C, symBinAddr: 0x24A74, symSize: 0x8 } - - { offsetInCU: 0x1150, offset: 0x73A15, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1894, symBinAddr: 0x24A7C, symSize: 0x10 } - - { offsetInCU: 0x1164, offset: 0x73A29, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18A4, symBinAddr: 0x24A8C, symSize: 0x8 } - - { offsetInCU: 0x1196, offset: 0x73A5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x18AC, symBinAddr: 0x24A94, symSize: 0x12C } - - { offsetInCU: 0x1222, offset: 0x73AE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x19D8, symBinAddr: 0x24BC0, symSize: 0x19C } - - { offsetInCU: 0x1308, offset: 0x73BCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1B74, symBinAddr: 0x24D5C, symSize: 0x134 } - - { offsetInCU: 0x13A4, offset: 0x73C69, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1D10, symBinAddr: 0x24EB4, symSize: 0x14 } - - { offsetInCU: 0x13CD, offset: 0x73C92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1D24, symBinAddr: 0x24EC8, symSize: 0x24 } - - { offsetInCU: 0x229, offset: 0x740D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x24EFC, symSize: 0xA78 } - - { offsetInCU: 0xF9A, offset: 0x74E41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x14DC, symBinAddr: 0x263D8, symSize: 0x9DC } - - { offsetInCU: 0x1B46, offset: 0x759ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x1EB8, symBinAddr: 0x26DB4, symSize: 0x970 } - - { offsetInCU: 0x274A, offset: 0x765F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2828, symBinAddr: 0x27724, symSize: 0xB94 } - - { offsetInCU: 0x3709, offset: 0x775B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x33BC, symBinAddr: 0x282B8, symSize: 0xB50 } - - { offsetInCU: 0x468F, offset: 0x78536, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x3F24, symBinAddr: 0x28E20, symSize: 0xA88 } - - { offsetInCU: 0x5423, offset: 0x792CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x49AC, symBinAddr: 0x298A8, symSize: 0xA10 } - - { offsetInCU: 0x5FC4, offset: 0x79E6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x53BC, symBinAddr: 0x2A2B8, symSize: 0x190 } - - { offsetInCU: 0x60AA, offset: 0x79F51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x554C, symBinAddr: 0x2A448, symSize: 0x180 } - - { offsetInCU: 0x6149, offset: 0x79FF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x56CC, symBinAddr: 0x2A5C8, symSize: 0x128 } - - { offsetInCU: 0x62B2, offset: 0x7A159, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x57F4, symBinAddr: 0x2A6F0, symSize: 0x58 } - - { offsetInCU: 0x632C, offset: 0x7A1D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x586C, symBinAddr: 0x2A768, symSize: 0x6F8 } - - { offsetInCU: 0x6ABA, offset: 0x7A961, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x584C, symBinAddr: 0x2A748, symSize: 0x20 } - - { offsetInCU: 0x6D95, offset: 0x7AC3C, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x5F64, symBinAddr: 0x2AE60, symSize: 0x68 } - - { offsetInCU: 0x6E91, offset: 0x7AD38, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x5FCC, symBinAddr: 0x2AEC8, symSize: 0xFC } - - { offsetInCU: 0x70A8, offset: 0x7AF4F, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x60C8, symBinAddr: 0x2AFC4, symSize: 0x3E8 } - - { offsetInCU: 0x7496, offset: 0x7B33D, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x64B0, symBinAddr: 0x2B3AC, symSize: 0x12C } - - { offsetInCU: 0x763B, offset: 0x7B4E2, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x65DC, symBinAddr: 0x2B4D8, symSize: 0x294 } - - { offsetInCU: 0x7828, offset: 0x7B6CF, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x6870, symBinAddr: 0x2B76C, symSize: 0x154 } - - { offsetInCU: 0x798E, offset: 0x7B835, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x69C4, symBinAddr: 0x2B8C0, symSize: 0x300 } - - { offsetInCU: 0x7A1D, offset: 0x7B8C4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x6CC4, symBinAddr: 0x2BBC0, symSize: 0x14 } - - { offsetInCU: 0x7A56, offset: 0x7B8FD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x6CD8, symBinAddr: 0x2BBD4, symSize: 0xFC } - - { offsetInCU: 0x7B14, offset: 0x7B9BB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x6F0C, symBinAddr: 0x2BE08, symSize: 0x14 } - - { offsetInCU: 0x7B41, offset: 0x7B9E8, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x6FD8, symBinAddr: 0x2BEC4, symSize: 0x48 } - - { offsetInCU: 0x7B55, offset: 0x7B9FC, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x7060, symBinAddr: 0x2BF0C, symSize: 0x10 } - - { offsetInCU: 0x7B69, offset: 0x7BA10, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x7108, symBinAddr: 0x2BF9C, symSize: 0x40 } - - { offsetInCU: 0x7E32, offset: 0x7BCD9, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x6DD4, symBinAddr: 0x2BCD0, symSize: 0x138 } - - { offsetInCU: 0x4F, offset: 0x7C04F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x1138, symBinAddr: 0x5EF28, symSize: 0x0 } - - { offsetInCU: 0x87, offset: 0x7C087, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2C020, symSize: 0xB4 } - - { offsetInCU: 0xE0, offset: 0x7C0E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1D0, symBinAddr: 0x2C1F0, symSize: 0x5C } - - { offsetInCU: 0x10E, offset: 0x7C10E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x22C, symBinAddr: 0x2C24C, symSize: 0x4EC } - - { offsetInCU: 0x202, offset: 0x7C202, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x718, symBinAddr: 0x2C738, symSize: 0x7C } - - { offsetInCU: 0x264, offset: 0x7C264, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x2C860, symSize: 0x14 } - - { offsetInCU: 0x2F3, offset: 0x7C2F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x854, symBinAddr: 0x2C874, symSize: 0x44 } - - { offsetInCU: 0x3D6, offset: 0x7C3D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x898, symBinAddr: 0x2C8B8, symSize: 0x28 } - - { offsetInCU: 0x468, offset: 0x7C468, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x900, symBinAddr: 0x2C920, symSize: 0x1B4 } - - { offsetInCU: 0x4D3, offset: 0x7C4D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAB4, symBinAddr: 0x2CAD4, symSize: 0x4 } - - { offsetInCU: 0x4ED, offset: 0x7C4ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAB8, symBinAddr: 0x2CAD8, symSize: 0x1C } - - { offsetInCU: 0x570, offset: 0x7C570, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xD68, symBinAddr: 0x2CCF4, symSize: 0xAC } - - { offsetInCU: 0x63B, offset: 0x7C63B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE14, symBinAddr: 0x2CDA0, symSize: 0x110 } - - { offsetInCU: 0x705, offset: 0x7C705, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB4, symBinAddr: 0x2C0D4, symSize: 0x11C } - - { offsetInCU: 0x75C, offset: 0x7C75C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAD4, symBinAddr: 0x2CAF4, symSize: 0x20 } - - { offsetInCU: 0x770, offset: 0x7C770, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB04, symBinAddr: 0x2CB14, symSize: 0x90 } - - { offsetInCU: 0x784, offset: 0x7C784, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xB94, symBinAddr: 0x2CBA4, symSize: 0xBC } - - { offsetInCU: 0x798, offset: 0x7C798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC50, symBinAddr: 0x2CC60, symSize: 0x8 } - - { offsetInCU: 0x7AC, offset: 0x7C7AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC58, symBinAddr: 0x2CC68, symSize: 0x4 } - - { offsetInCU: 0x7C0, offset: 0x7C7C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC5C, symBinAddr: 0x2CC6C, symSize: 0x8 } - - { offsetInCU: 0x7D4, offset: 0x7C7D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC64, symBinAddr: 0x2CC74, symSize: 0x10 } - - { offsetInCU: 0x7E8, offset: 0x7C7E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xC74, symBinAddr: 0x2CC84, symSize: 0x4 } - - { offsetInCU: 0x7FC, offset: 0x7C7FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xC78, symBinAddr: 0x2CC88, symSize: 0x44 } - - { offsetInCU: 0x810, offset: 0x7C810, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCBC, symBinAddr: 0x2CCCC, symSize: 0x10 } - - { offsetInCU: 0x824, offset: 0x7C824, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xCCC, symBinAddr: 0x2CCDC, symSize: 0x8 } - - { offsetInCU: 0x838, offset: 0x7C838, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xCD4, symBinAddr: 0x2CCE4, symSize: 0x10 } - - { offsetInCU: 0x84C, offset: 0x7C84C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xF74, symBinAddr: 0x2CF00, symSize: 0xC } - - { offsetInCU: 0x860, offset: 0x7C860, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x1038, symBinAddr: 0x2CFC4, symSize: 0x8 } - - { offsetInCU: 0x874, offset: 0x7C874, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x1040, symBinAddr: 0x2CFCC, symSize: 0x10 } - - { offsetInCU: 0x913, offset: 0x7C913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x2C8E0, symSize: 0x40 } - - { offsetInCU: 0xAC6, offset: 0x7CAC6, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x794, symBinAddr: 0x2C7B4, symSize: 0xAC } - - { offsetInCU: 0x2B, offset: 0x7CB86, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2CFE4, symSize: 0x5C } - - { offsetInCU: 0x64, offset: 0x7CBBF, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2CFE4, symSize: 0x5C } - - { offsetInCU: 0xE7, offset: 0x7CC42, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x5C, symBinAddr: 0x2D040, symSize: 0x104 } - - { offsetInCU: 0x194, offset: 0x7CCEF, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x160, symBinAddr: 0x2D144, symSize: 0xB4 } - - { offsetInCU: 0x340, offset: 0x7CE9B, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x214, symBinAddr: 0x2D1F8, symSize: 0x150 } - - { offsetInCU: 0x519, offset: 0x7D074, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x374, symBinAddr: 0x2D358, symSize: 0x10 } - - { offsetInCU: 0x547, offset: 0x7D0A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x384, symBinAddr: 0x2D368, symSize: 0x24 } - - { offsetInCU: 0x5E1, offset: 0x7D13C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x3A8, symBinAddr: 0x2D38C, symSize: 0x44 } - - { offsetInCU: 0x6E9, offset: 0x7D244, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3EC, symBinAddr: 0x2D3D0, symSize: 0x14 } - - { offsetInCU: 0x745, offset: 0x7D2A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x400, symBinAddr: 0x2D3E4, symSize: 0x44 } - - { offsetInCU: 0x828, offset: 0x7D383, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x444, symBinAddr: 0x2D428, symSize: 0x28 } - - { offsetInCU: 0x8B1, offset: 0x7D40C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x4AC, symBinAddr: 0x2D490, symSize: 0x4 } - - { offsetInCU: 0x8C5, offset: 0x7D420, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4B0, symBinAddr: 0x2D494, symSize: 0x44 } - - { offsetInCU: 0x8D9, offset: 0x7D434, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x514, symBinAddr: 0x2D4E8, symSize: 0x90 } - - { offsetInCU: 0x8ED, offset: 0x7D448, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x5A4, symBinAddr: 0x2D578, symSize: 0xBC } - - { offsetInCU: 0x901, offset: 0x7D45C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x660, symBinAddr: 0x2D634, symSize: 0x8 } - - { offsetInCU: 0x915, offset: 0x7D470, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x668, symBinAddr: 0x2D63C, symSize: 0x4 } - - { offsetInCU: 0x929, offset: 0x7D484, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x66C, symBinAddr: 0x2D640, symSize: 0x8 } - - { offsetInCU: 0x93D, offset: 0x7D498, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x674, symBinAddr: 0x2D648, symSize: 0x10 } - - { offsetInCU: 0x951, offset: 0x7D4AC, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x684, symBinAddr: 0x2D658, symSize: 0xC } - - { offsetInCU: 0x965, offset: 0x7D4C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x690, symBinAddr: 0x2D664, symSize: 0x20 } - - { offsetInCU: 0x979, offset: 0x7D4D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x6B0, symBinAddr: 0x2D684, symSize: 0x28 } - - { offsetInCU: 0x98D, offset: 0x7D4E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x6D8, symBinAddr: 0x2D6AC, symSize: 0x8 } - - { offsetInCU: 0x9A1, offset: 0x7D4FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x6E0, symBinAddr: 0x2D6B4, symSize: 0x4 } - - { offsetInCU: 0x9B5, offset: 0x7D510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x6E4, symBinAddr: 0x2D6B8, symSize: 0x4 } - - { offsetInCU: 0x9C9, offset: 0x7D524, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x6E8, symBinAddr: 0x2D6BC, symSize: 0x10 } - - { offsetInCU: 0xA35, offset: 0x7D590, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x6F8, symBinAddr: 0x2D6CC, symSize: 0x224 } - - { offsetInCU: 0xCED, offset: 0x7D848, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x96C, symBinAddr: 0x2D8F0, symSize: 0x44 } - - { offsetInCU: 0xDAE, offset: 0x7D909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x364, symBinAddr: 0x2D348, symSize: 0x4 } - - { offsetInCU: 0xDCA, offset: 0x7D925, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x368, symBinAddr: 0x2D34C, symSize: 0x4 } - - { offsetInCU: 0xDE6, offset: 0x7D941, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x36C, symBinAddr: 0x2D350, symSize: 0x4 } - - { offsetInCU: 0xE02, offset: 0x7D95D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x370, symBinAddr: 0x2D354, symSize: 0x4 } - - { offsetInCU: 0xE4B, offset: 0x7D9A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x46C, symBinAddr: 0x2D450, symSize: 0x40 } - - { offsetInCU: 0xEE7, offset: 0x7DA42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x4F4, symBinAddr: 0x2D4D8, symSize: 0x4 } - - { offsetInCU: 0xF03, offset: 0x7DA5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x4F8, symBinAddr: 0x2D4DC, symSize: 0x4 } - - { offsetInCU: 0xF1F, offset: 0x7DA7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x4FC, symBinAddr: 0x2D4E0, symSize: 0x4 } - - { offsetInCU: 0xF3B, offset: 0x7DA96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x500, symBinAddr: 0x2D4E4, symSize: 0x4 } - - { offsetInCU: 0x2B, offset: 0x7DC96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2D934, symSize: 0x50 } - - { offsetInCU: 0x69, offset: 0x7DCD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x50, symBinAddr: 0x2D984, symSize: 0x4 } - - { offsetInCU: 0x92, offset: 0x7DCFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xF0, symBinAddr: 0x2DA24, symSize: 0xA0 } - - { offsetInCU: 0xC1, offset: 0x7DD2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x190, symBinAddr: 0x2DAC4, symSize: 0x34 } - - { offsetInCU: 0xE0, offset: 0x7DD4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x284, symBinAddr: 0x2DBB8, symSize: 0x2C } - - { offsetInCU: 0x111, offset: 0x7DD7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x2B0, symBinAddr: 0x2DBE4, symSize: 0xC } - - { offsetInCU: 0x12D, offset: 0x7DD98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2BC, symBinAddr: 0x2DBF0, symSize: 0x8 } - - { offsetInCU: 0x14A, offset: 0x7DDB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2D934, symSize: 0x50 } - - { offsetInCU: 0x1B0, offset: 0x7DE1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x54, symBinAddr: 0x2D988, symSize: 0x5C } - - { offsetInCU: 0x241, offset: 0x7DEAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x468, symBinAddr: 0x2DD9C, symSize: 0x28 } - - { offsetInCU: 0x272, offset: 0x7DEDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x490, symBinAddr: 0x2DDC4, symSize: 0x10 } - - { offsetInCU: 0x2A4, offset: 0x7DF0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x2DDD4, symSize: 0x34 } - - { offsetInCU: 0x2D0, offset: 0x7DF3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0xB0, symBinAddr: 0x2D9E4, symSize: 0x30 } - - { offsetInCU: 0x336, offset: 0x7DFA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xE0, symBinAddr: 0x2DA14, symSize: 0x10 } - - { offsetInCU: 0x385, offset: 0x7DFF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x2C4, symBinAddr: 0x2DBF8, symSize: 0x10 } - - { offsetInCU: 0x3B3, offset: 0x7E01E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x2D4, symBinAddr: 0x2DC08, symSize: 0x10 } - - { offsetInCU: 0x3E1, offset: 0x7E04C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x2E4, symBinAddr: 0x2DC18, symSize: 0x10 } - - { offsetInCU: 0x40F, offset: 0x7E07A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x2F4, symBinAddr: 0x2DC28, symSize: 0x4 } - - { offsetInCU: 0x423, offset: 0x7E08E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x2F8, symBinAddr: 0x2DC2C, symSize: 0x44 } - - { offsetInCU: 0x437, offset: 0x7E0A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x33C, symBinAddr: 0x2DC70, symSize: 0x4 } - - { offsetInCU: 0x481, offset: 0x7E0EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x340, symBinAddr: 0x2DC74, symSize: 0x14 } - - { offsetInCU: 0x4FA, offset: 0x7E165, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x354, symBinAddr: 0x2DC88, symSize: 0x14 } - - { offsetInCU: 0x573, offset: 0x7E1DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x368, symBinAddr: 0x2DC9C, symSize: 0x14 } - - { offsetInCU: 0x5EC, offset: 0x7E257, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x37C, symBinAddr: 0x2DCB0, symSize: 0x14 } - - { offsetInCU: 0x62F, offset: 0x7E29A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x390, symBinAddr: 0x2DCC4, symSize: 0x10 } - - { offsetInCU: 0x643, offset: 0x7E2AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x4E4, symBinAddr: 0x2DE08, symSize: 0x90 } - - { offsetInCU: 0x657, offset: 0x7E2C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x574, symBinAddr: 0x2DE98, symSize: 0xBC } - - { offsetInCU: 0x66B, offset: 0x7E2D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x630, symBinAddr: 0x2DF54, symSize: 0x8 } - - { offsetInCU: 0x67F, offset: 0x7E2EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x638, symBinAddr: 0x2DF5C, symSize: 0x4 } - - { offsetInCU: 0x693, offset: 0x7E2FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x63C, symBinAddr: 0x2DF60, symSize: 0x8 } - - { offsetInCU: 0x6A7, offset: 0x7E312, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x644, symBinAddr: 0x2DF68, symSize: 0x10 } - - { offsetInCU: 0x6BB, offset: 0x7E326, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x654, symBinAddr: 0x2DF78, symSize: 0x4 } - - { offsetInCU: 0x6CF, offset: 0x7E33A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x658, symBinAddr: 0x2DF7C, symSize: 0x44 } - - { offsetInCU: 0x712, offset: 0x7E37D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C4, symBinAddr: 0x2DAF8, symSize: 0x14 } - - { offsetInCU: 0x7A3, offset: 0x7E40E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1D8, symBinAddr: 0x2DB0C, symSize: 0x44 } - - { offsetInCU: 0x832, offset: 0x7E49D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x2DB50, symSize: 0x28 } - - { offsetInCU: 0x885, offset: 0x7E4F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x244, symBinAddr: 0x2DB78, symSize: 0x40 } - - { offsetInCU: 0x8F1, offset: 0x7E55C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3A0, symBinAddr: 0x2DCD4, symSize: 0x18 } - - { offsetInCU: 0x982, offset: 0x7E5ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3B8, symBinAddr: 0x2DCEC, symSize: 0x44 } - - { offsetInCU: 0xA63, offset: 0x7E6CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x3FC, symBinAddr: 0x2DD30, symSize: 0x2C } - - { offsetInCU: 0xAE8, offset: 0x7E753, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x428, symBinAddr: 0x2DD5C, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x7E926, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2DFC0, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x7E94A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2DFC0, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x7E975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2DFC8, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x7E995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2DFC8, symSize: 0x8 } - - { offsetInCU: 0x135, offset: 0x7EA34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2DFD0, symSize: 0xC4 } - - { offsetInCU: 0x2CE, offset: 0x7EBCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwCP', symObjAddr: 0xD4, symBinAddr: 0x2E094, symSize: 0x3C } - - { offsetInCU: 0x2E2, offset: 0x7EBE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0x110, symBinAddr: 0x2E0D0, symSize: 0x8 } - - { offsetInCU: 0x2F6, offset: 0x7EBF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwcp', symObjAddr: 0x118, symBinAddr: 0x2E0D8, symSize: 0x3C } - - { offsetInCU: 0x30A, offset: 0x7EC09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x154, symBinAddr: 0x2E114, symSize: 0x50 } - - { offsetInCU: 0x31E, offset: 0x7EC1D, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x1A4, symBinAddr: 0x2E164, symSize: 0xC } - - { offsetInCU: 0x332, offset: 0x7EC31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x1B0, symBinAddr: 0x2E170, symSize: 0x40 } - - { offsetInCU: 0x346, offset: 0x7EC45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x1F0, symBinAddr: 0x2E1B0, symSize: 0x5C } - - { offsetInCU: 0x35A, offset: 0x7EC59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x24C, symBinAddr: 0x2E20C, symSize: 0x50 } - - { offsetInCU: 0x36E, offset: 0x7EC6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x29C, symBinAddr: 0x2E25C, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x7EDA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2E26C, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x7EDCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2E26C, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x7EDF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E274, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x7EE15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E274, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x7EE37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x2E27C, symSize: 0x1C } - - { offsetInCU: 0x13B, offset: 0x7EEBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x2C, symBinAddr: 0x2E298, symSize: 0xE8 } - - { offsetInCU: 0x2B9, offset: 0x7F038, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x114, symBinAddr: 0x2E380, symSize: 0x110 } - - { offsetInCU: 0x3E9, offset: 0x7F168, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwCP', symObjAddr: 0x264, symBinAddr: 0x2E490, symSize: 0x4C } - - { offsetInCU: 0x3FD, offset: 0x7F17C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x2B0, symBinAddr: 0x2E4DC, symSize: 0x28 } - - { offsetInCU: 0x411, offset: 0x7F190, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwcp', symObjAddr: 0x2D8, symBinAddr: 0x2E504, symSize: 0x4C } - - { offsetInCU: 0x425, offset: 0x7F1A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x324, symBinAddr: 0x2E550, symSize: 0x7C } - - { offsetInCU: 0x439, offset: 0x7F1B8, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x3A0, symBinAddr: 0x2E5CC, symSize: 0x14 } - - { offsetInCU: 0x44D, offset: 0x7F1CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x3B4, symBinAddr: 0x2E5E0, symSize: 0x5C } - - { offsetInCU: 0x461, offset: 0x7F1E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x410, symBinAddr: 0x2E63C, symSize: 0x5C } - - { offsetInCU: 0x475, offset: 0x7F1F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x46C, symBinAddr: 0x2E698, symSize: 0x54 } - - { offsetInCU: 0x489, offset: 0x7F208, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x4C0, symBinAddr: 0x2E6EC, symSize: 0x10 } - - { offsetInCU: 0x4F, offset: 0x7F3C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2E6FC, symSize: 0x8 } - - { offsetInCU: 0x7A, offset: 0x7F3F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E704, symSize: 0x8 } - - { offsetInCU: 0x9A, offset: 0x7F412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E704, symSize: 0x8 } - - { offsetInCU: 0xAC, offset: 0x7F424, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8clientIDACSS_tcfCTf4gd_nTf4n_g', symObjAddr: 0xEB8, symBinAddr: 0x2F574, symSize: 0xF0 } - - { offsetInCU: 0x218, offset: 0x7F590, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2E70C, symSize: 0x2DC } - - { offsetInCU: 0x598, offset: 0x7F910, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x2EC, symBinAddr: 0x2E9E8, symSize: 0x338 } - - { offsetInCU: 0x9A3, offset: 0x7FD1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x624, symBinAddr: 0x2ED20, symSize: 0x278 } - - { offsetInCU: 0xD06, offset: 0x8007E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x89C, symBinAddr: 0x2EF98, symSize: 0x280 } - - { offsetInCU: 0x112E, offset: 0x804A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xB1C, symBinAddr: 0x2F218, symSize: 0x2C0 } - - { offsetInCU: 0x13ED, offset: 0x80765, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xDDC, symBinAddr: 0x2F4D8, symSize: 0x58 } - - { offsetInCU: 0x1409, offset: 0x80781, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0x1000, symBinAddr: 0x2F664, symSize: 0x30 } - - { offsetInCU: 0x141D, offset: 0x80795, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0x1080, symBinAddr: 0x2F694, symSize: 0x78 } - - { offsetInCU: 0x1431, offset: 0x807A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x10F8, symBinAddr: 0x2F70C, symSize: 0x140 } - - { offsetInCU: 0x1445, offset: 0x807BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x1238, symBinAddr: 0x2F84C, symSize: 0x1F0 } - - { offsetInCU: 0x1459, offset: 0x807D1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x1428, symBinAddr: 0x2FA3C, symSize: 0x34 } - - { offsetInCU: 0x146D, offset: 0x807E5, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x145C, symBinAddr: 0x2FA70, symSize: 0x3C } - - { offsetInCU: 0x1481, offset: 0x807F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x1498, symBinAddr: 0x2FAAC, symSize: 0x138 } - - { offsetInCU: 0x1495, offset: 0x8080D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x15D0, symBinAddr: 0x2FBE4, symSize: 0x48 } - - { offsetInCU: 0x14A9, offset: 0x80821, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x1618, symBinAddr: 0x2FC2C, symSize: 0x68 } - - { offsetInCU: 0x14BD, offset: 0x80835, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x1680, symBinAddr: 0x2FC94, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x809D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2FCA4, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x80A00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2FCAC, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x80A20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2FCAC, symSize: 0x8 } - - { offsetInCU: 0x122, offset: 0x80AAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2FCB4, symSize: 0xD8 } - - { offsetInCU: 0x31C, offset: 0x80CA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0xE8, symBinAddr: 0x2FD8C, symSize: 0x288 } - - { offsetInCU: 0x73F, offset: 0x810C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x370, symBinAddr: 0x30014, symSize: 0x4 } - - { offsetInCU: 0x75F, offset: 0x810E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x370, symBinAddr: 0x30014, symSize: 0x4 } - - { offsetInCU: 0x771, offset: 0x810FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV11descriptionSSvgTf4d_n', symObjAddr: 0x374, symBinAddr: 0x30018, symSize: 0x1C } - - { offsetInCU: 0x78F, offset: 0x81119, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x414, symBinAddr: 0x30078, symSize: 0x30 } - - { offsetInCU: 0x7A3, offset: 0x8112D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x444, symBinAddr: 0x300A8, symSize: 0x30 } - - { offsetInCU: 0x7B7, offset: 0x81141, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x474, symBinAddr: 0x300D8, symSize: 0x74 } - - { offsetInCU: 0x7CB, offset: 0x81155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x4E8, symBinAddr: 0x3014C, symSize: 0xAC } - - { offsetInCU: 0x7DF, offset: 0x81169, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x594, symBinAddr: 0x301F8, symSize: 0x1C } - - { offsetInCU: 0x7F3, offset: 0x8117D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x5B0, symBinAddr: 0x30214, symSize: 0x74 } - - { offsetInCU: 0x807, offset: 0x81191, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x624, symBinAddr: 0x30288, symSize: 0x5C } - - { offsetInCU: 0x81B, offset: 0x811A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x680, symBinAddr: 0x302E4, symSize: 0x60 } - - { offsetInCU: 0x82F, offset: 0x811B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x6E0, symBinAddr: 0x30344, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x81340, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30354, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x8135F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30354, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x8138A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3035C, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x813AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3035C, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x813CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30364, symSize: 0x4 } - - { offsetInCU: 0xD3, offset: 0x813EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30364, symSize: 0x4 } - - { offsetInCU: 0xE5, offset: 0x813FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqV11descriptionSSvgTf4d_n', symObjAddr: 0x14, symBinAddr: 0x30368, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x8141C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x24, symBinAddr: 0x30378, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x814E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30388, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x81507, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30388, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x81532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30390, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x81552, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30390, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x81574, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30398, symSize: 0x4 } - - { offsetInCU: 0xD3, offset: 0x81594, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30398, symSize: 0x4 } - - { offsetInCU: 0xE5, offset: 0x815A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespV11descriptionSSvgTf4d_n', symObjAddr: 0x14, symBinAddr: 0x3039C, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x815C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x24, symBinAddr: 0x303AC, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x816B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x303BC, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x816DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x303C4, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x816FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x303C4, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x817E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x303CC, symSize: 0x12C } - - { offsetInCU: 0x402, offset: 0x81A6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x304F8, symSize: 0x128 } - - { offsetInCU: 0x5B4, offset: 0x81C1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV11descriptionSSvg', symObjAddr: 0x264, symBinAddr: 0x30620, symSize: 0x88 } - - { offsetInCU: 0x60D, offset: 0x81C76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2EC, symBinAddr: 0x306A8, symSize: 0x38 } - - { offsetInCU: 0x683, offset: 0x81CEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x324, symBinAddr: 0x306E0, symSize: 0x1B8 } - - { offsetInCU: 0x81D, offset: 0x81E86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x5C8, symBinAddr: 0x30944, symSize: 0x30 } - - { offsetInCU: 0x831, offset: 0x81E9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x5F8, symBinAddr: 0x30974, symSize: 0x30 } - - { offsetInCU: 0x845, offset: 0x81EAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x628, symBinAddr: 0x309A4, symSize: 0x5C } - - { offsetInCU: 0x859, offset: 0x81EC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x684, symBinAddr: 0x30A00, symSize: 0x94 } - - { offsetInCU: 0x86D, offset: 0x81ED6, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x718, symBinAddr: 0x30A94, symSize: 0x14 } - - { offsetInCU: 0x881, offset: 0x81EEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x72C, symBinAddr: 0x30AA8, symSize: 0x64 } - - { offsetInCU: 0x895, offset: 0x81EFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x790, symBinAddr: 0x30B0C, symSize: 0x5C } - - { offsetInCU: 0x8A9, offset: 0x81F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x7EC, symBinAddr: 0x30B68, symSize: 0x5C } - - { offsetInCU: 0x8BD, offset: 0x81F26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x848, symBinAddr: 0x30BC4, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x82105, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30BD4, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x82130, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30BDC, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x82150, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30BDC, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x82239, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x30BE4, symSize: 0x12C } - - { offsetInCU: 0x402, offset: 0x824BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x30D10, symSize: 0x128 } - - { offsetInCU: 0x5B4, offset: 0x8266E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV11descriptionSSvg', symObjAddr: 0x264, symBinAddr: 0x30E38, symSize: 0x88 } - - { offsetInCU: 0x60D, offset: 0x826C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2EC, symBinAddr: 0x30EC0, symSize: 0x38 } - - { offsetInCU: 0x65C, offset: 0x82716, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x324, symBinAddr: 0x30EF8, symSize: 0xE0 } - - { offsetInCU: 0x77D, offset: 0x82837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x488, symBinAddr: 0x3101C, symSize: 0x30 } - - { offsetInCU: 0x791, offset: 0x8284B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x4B8, symBinAddr: 0x3104C, symSize: 0x30 } - - { offsetInCU: 0x7A5, offset: 0x8285F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x4E8, symBinAddr: 0x3107C, symSize: 0x5C } - - { offsetInCU: 0x7B9, offset: 0x82873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x544, symBinAddr: 0x310D8, symSize: 0x94 } - - { offsetInCU: 0x7CD, offset: 0x82887, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x5EC, symBinAddr: 0x3116C, symSize: 0x64 } - - { offsetInCU: 0x7E1, offset: 0x8289B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x650, symBinAddr: 0x311D0, symSize: 0x5C } - - { offsetInCU: 0x7F5, offset: 0x828AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x6AC, symBinAddr: 0x3122C, symSize: 0x5C } - - { offsetInCU: 0x809, offset: 0x828C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x708, symBinAddr: 0x31288, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x82A6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31298, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x82A8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31298, symSize: 0x8 } - - { offsetInCU: 0x6E, offset: 0x82AB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x312A0, symSize: 0x8 } - - { offsetInCU: 0x8E, offset: 0x82AD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x312A0, symSize: 0x8 } - - { offsetInCU: 0xBE, offset: 0x82B02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV5topic7payload3qos5msgidACSS_Says5UInt8VGAA0A7MQTTQoSOs6UInt16VtcfCTf4nnnnd_n', symObjAddr: 0x42C, symBinAddr: 0x316C4, symSize: 0x40 } - - { offsetInCU: 0x22F, offset: 0x82C73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x312A8, symSize: 0x124 } - - { offsetInCU: 0x44D, offset: 0x82E91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x134, symBinAddr: 0x313CC, symSize: 0x184 } - - { offsetInCU: 0x722, offset: 0x83166, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2B8, symBinAddr: 0x31550, symSize: 0x134 } - - { offsetInCU: 0x8B6, offset: 0x832FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3EC, symBinAddr: 0x31684, symSize: 0x40 } - - { offsetInCU: 0xA7B, offset: 0x834BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x46C, symBinAddr: 0x31704, symSize: 0x740 } - - { offsetInCU: 0x103C, offset: 0x83A80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xBAC, symBinAddr: 0x31E44, symSize: 0x48 } - - { offsetInCU: 0x1050, offset: 0x83A94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xC34, symBinAddr: 0x31E8C, symSize: 0x30 } - - { offsetInCU: 0x1064, offset: 0x83AA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xC64, symBinAddr: 0x31EBC, symSize: 0x48 } - - { offsetInCU: 0x1078, offset: 0x83ABC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xCAC, symBinAddr: 0x31F04, symSize: 0xB4 } - - { offsetInCU: 0x108C, offset: 0x83AD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xD60, symBinAddr: 0x31FB8, symSize: 0x104 } - - { offsetInCU: 0x10A0, offset: 0x83AE4, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xE64, symBinAddr: 0x320BC, symSize: 0x1C } - - { offsetInCU: 0x10B4, offset: 0x83AF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xE80, symBinAddr: 0x320D8, symSize: 0xB4 } - - { offsetInCU: 0x10C8, offset: 0x83B0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0xF34, symBinAddr: 0x3218C, symSize: 0x48 } - - { offsetInCU: 0x10DC, offset: 0x83B20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0xF7C, symBinAddr: 0x321D4, symSize: 0x58 } - - { offsetInCU: 0x10F0, offset: 0x83B34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0xFD4, symBinAddr: 0x3222C, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x83D7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3223C, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x83DA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32244, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x83DC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32244, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x83EAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x3224C, symSize: 0x12C } - - { offsetInCU: 0x402, offset: 0x84132, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x13C, symBinAddr: 0x32378, symSize: 0x128 } - - { offsetInCU: 0x5B4, offset: 0x842E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV11descriptionSSvg', symObjAddr: 0x264, symBinAddr: 0x324A0, symSize: 0x88 } - - { offsetInCU: 0x60D, offset: 0x8433D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2EC, symBinAddr: 0x32528, symSize: 0x38 } - - { offsetInCU: 0x65C, offset: 0x8438C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x324, symBinAddr: 0x32560, symSize: 0xE0 } - - { offsetInCU: 0x77D, offset: 0x844AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x488, symBinAddr: 0x32684, symSize: 0x30 } - - { offsetInCU: 0x791, offset: 0x844C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x4B8, symBinAddr: 0x326B4, symSize: 0x30 } - - { offsetInCU: 0x7A5, offset: 0x844D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x4E8, symBinAddr: 0x326E4, symSize: 0x5C } - - { offsetInCU: 0x7B9, offset: 0x844E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x544, symBinAddr: 0x32740, symSize: 0x94 } - - { offsetInCU: 0x7CD, offset: 0x844FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x5EC, symBinAddr: 0x327D4, symSize: 0x64 } - - { offsetInCU: 0x7E1, offset: 0x84511, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x650, symBinAddr: 0x32838, symSize: 0x5C } - - { offsetInCU: 0x7F5, offset: 0x84525, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x6AC, symBinAddr: 0x32894, symSize: 0x5C } - - { offsetInCU: 0x809, offset: 0x84539, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x708, symBinAddr: 0x328F0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x84705, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32900, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x84730, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32908, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x84750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32908, symSize: 0x8 } - - { offsetInCU: 0x17F, offset: 0x84839, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32910, symSize: 0xF4 } - - { offsetInCU: 0x3ED, offset: 0x84AA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x104, symBinAddr: 0x32A04, symSize: 0x128 } - - { offsetInCU: 0x59F, offset: 0x84C59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV11descriptionSSvg', symObjAddr: 0x22C, symBinAddr: 0x32B2C, symSize: 0x88 } - - { offsetInCU: 0x5F8, offset: 0x84CB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2B4, symBinAddr: 0x32BB4, symSize: 0x38 } - - { offsetInCU: 0x61F, offset: 0x84CD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2EC, symBinAddr: 0x32BEC, symSize: 0xDC } - - { offsetInCU: 0x740, offset: 0x84DFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x44C, symBinAddr: 0x32D0C, symSize: 0x30 } - - { offsetInCU: 0x754, offset: 0x84E0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x47C, symBinAddr: 0x32D3C, symSize: 0x30 } - - { offsetInCU: 0x768, offset: 0x84E22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x4AC, symBinAddr: 0x32D6C, symSize: 0x64 } - - { offsetInCU: 0x77C, offset: 0x84E36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x510, symBinAddr: 0x32DD0, symSize: 0x94 } - - { offsetInCU: 0x790, offset: 0x84E4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x5B8, symBinAddr: 0x32E64, symSize: 0x6C } - - { offsetInCU: 0x7A4, offset: 0x84E5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x624, symBinAddr: 0x32ED0, symSize: 0x5C } - - { offsetInCU: 0x7B8, offset: 0x84E72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x680, symBinAddr: 0x32F2C, symSize: 0x5C } - - { offsetInCU: 0x7CC, offset: 0x84E86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x6DC, symBinAddr: 0x32F88, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8502E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32F98, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x85052, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32F98, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x8507D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32FA0, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x8509D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32FA0, symSize: 0x8 } - - { offsetInCU: 0xA9, offset: 0x850B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x32FA8, symSize: 0x88 } - - { offsetInCU: 0x102, offset: 0x85109, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x98, symBinAddr: 0x33030, symSize: 0x40 } - - { offsetInCU: 0x2E5, offset: 0x852EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xD8, symBinAddr: 0x33070, symSize: 0x528 } - - { offsetInCU: 0xA61, offset: 0x85A68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x600, symBinAddr: 0x33598, symSize: 0x30 } - - { offsetInCU: 0xA75, offset: 0x85A7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x630, symBinAddr: 0x335C8, symSize: 0x40 } - - { offsetInCU: 0xA89, offset: 0x85A90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x670, symBinAddr: 0x33608, symSize: 0x7C } - - { offsetInCU: 0xA9D, offset: 0x85AA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x6EC, symBinAddr: 0x33684, symSize: 0xBC } - - { offsetInCU: 0xAB1, offset: 0x85AB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x7C4, symBinAddr: 0x33740, symSize: 0x84 } - - { offsetInCU: 0xAC5, offset: 0x85ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x848, symBinAddr: 0x337C4, symSize: 0x48 } - - { offsetInCU: 0xAD9, offset: 0x85AE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x890, symBinAddr: 0x3380C, symSize: 0x4C } - - { offsetInCU: 0xAED, offset: 0x85AF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x8DC, symBinAddr: 0x33858, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x85D34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33868, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x85D5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33870, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x85D7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33870, symSize: 0x8 } - - { offsetInCU: 0xA8, offset: 0x85D91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV5msgid16subscriptionList16packetIdentifier0fI012userPropertyACs6UInt16V_SayAA16MqttSubscriptionCGAJSgs6UInt32VSgSDyS2SGtcfCTf4nnnnnd_n', symObjAddr: 0xCFC, symBinAddr: 0x34524, symSize: 0xC0 } - - { offsetInCU: 0x1C5, offset: 0x85EAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x33878, symSize: 0xAC } - - { offsetInCU: 0x45F, offset: 0x86148, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xBC, symBinAddr: 0x33924, symSize: 0x280 } - - { offsetInCU: 0x937, offset: 0x86620, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x33C, symBinAddr: 0x33BA4, symSize: 0x1B4 } - - { offsetInCU: 0xE03, offset: 0x86AEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x4F0, symBinAddr: 0x33D58, symSize: 0x5B0 } - - { offsetInCU: 0x12B6, offset: 0x86F9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xAA0, symBinAddr: 0x34308, symSize: 0x38 } - - { offsetInCU: 0x12D2, offset: 0x86FBB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xB18, symBinAddr: 0x34340, symSize: 0x1E4 } - - { offsetInCU: 0x132F, offset: 0x87018, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xE00, symBinAddr: 0x34628, symSize: 0x28 } - - { offsetInCU: 0x1343, offset: 0x8702C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xE38, symBinAddr: 0x34650, symSize: 0x30 } - - { offsetInCU: 0x1357, offset: 0x87040, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xE68, symBinAddr: 0x34680, symSize: 0x30 } - - { offsetInCU: 0x136B, offset: 0x87054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xE98, symBinAddr: 0x346B0, symSize: 0x84 } - - { offsetInCU: 0x137F, offset: 0x87068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xF1C, symBinAddr: 0x34734, symSize: 0xAC } - - { offsetInCU: 0x1393, offset: 0x8707C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0xFDC, symBinAddr: 0x347E0, symSize: 0x8C } - - { offsetInCU: 0x13A7, offset: 0x87090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0x1068, symBinAddr: 0x3486C, symSize: 0x5C } - - { offsetInCU: 0x13BB, offset: 0x870A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x10C4, symBinAddr: 0x348C8, symSize: 0x60 } - - { offsetInCU: 0x13CF, offset: 0x870B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x1124, symBinAddr: 0x34928, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x874B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34938, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x874D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34938, symSize: 0x8 } - - { offsetInCU: 0x76, offset: 0x87500, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34940, symSize: 0x8 } - - { offsetInCU: 0x96, offset: 0x87520, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34940, symSize: 0x8 } - - { offsetInCU: 0xBF, offset: 0x87549, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x34948, symSize: 0xAC } - - { offsetInCU: 0x157, offset: 0x875E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBC, symBinAddr: 0x349F4, symSize: 0x38 } - - { offsetInCU: 0x1BC, offset: 0x87646, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF4, symBinAddr: 0x34A2C, symSize: 0xE8 } - - { offsetInCU: 0x2DD, offset: 0x87767, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x1DC, symBinAddr: 0x34B14, symSize: 0x30 } - - { offsetInCU: 0x2F1, offset: 0x8777B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x20C, symBinAddr: 0x34B44, symSize: 0x38 } - - { offsetInCU: 0x305, offset: 0x8778F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x244, symBinAddr: 0x34B7C, symSize: 0x6C } - - { offsetInCU: 0x319, offset: 0x877A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x2B0, symBinAddr: 0x34BE8, symSize: 0xA4 } - - { offsetInCU: 0x32D, offset: 0x877B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x368, symBinAddr: 0x34C8C, symSize: 0x74 } - - { offsetInCU: 0x341, offset: 0x877CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x3DC, symBinAddr: 0x34D00, symSize: 0x48 } - - { offsetInCU: 0x355, offset: 0x877DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x424, symBinAddr: 0x34D48, symSize: 0x4C } - - { offsetInCU: 0x369, offset: 0x877F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x470, symBinAddr: 0x34D94, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x87921, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34DA4, symSize: 0x8 } - - { offsetInCU: 0x46, offset: 0x87940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34DA4, symSize: 0x8 } - - { offsetInCU: 0x71, offset: 0x8796B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34DAC, symSize: 0x8 } - - { offsetInCU: 0x91, offset: 0x8798B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34DAC, symSize: 0x8 } - - { offsetInCU: 0xB3, offset: 0x879AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x34DB4, symSize: 0x1C } - - { offsetInCU: 0x21B, offset: 0x87B15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x2C, symBinAddr: 0x34DD0, symSize: 0x1A0 } - - { offsetInCU: 0x593, offset: 0x87E8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1CC, symBinAddr: 0x34F70, symSize: 0x88 } - - { offsetInCU: 0x720, offset: 0x8801A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x254, symBinAddr: 0x34FF8, symSize: 0x134 } - - { offsetInCU: 0xAC1, offset: 0x883BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x388, symBinAddr: 0x3512C, symSize: 0x500 } - - { offsetInCU: 0xF64, offset: 0x8885E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x8D8, symBinAddr: 0x3562C, symSize: 0x30 } - - { offsetInCU: 0xF78, offset: 0x88872, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0x908, symBinAddr: 0x3565C, symSize: 0x30 } - - { offsetInCU: 0xF8C, offset: 0x88886, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0x938, symBinAddr: 0x3568C, symSize: 0x64 } - - { offsetInCU: 0xFA0, offset: 0x8889A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0x99C, symBinAddr: 0x356F0, symSize: 0x8C } - - { offsetInCU: 0xFB4, offset: 0x888AE, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xA28, symBinAddr: 0x3577C, symSize: 0xC } - - { offsetInCU: 0xFC8, offset: 0x888C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xA34, symBinAddr: 0x35788, symSize: 0x6C } - - { offsetInCU: 0xFDC, offset: 0x888D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xAA0, symBinAddr: 0x357F4, symSize: 0x5C } - - { offsetInCU: 0xFF0, offset: 0x888EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xAFC, symBinAddr: 0x35850, symSize: 0x54 } - - { offsetInCU: 0x1004, offset: 0x888FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xB50, symBinAddr: 0x358A4, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x88C6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x18, symBinAddr: 0x358CC, symSize: 0x44 } - - { offsetInCU: 0x7A, offset: 0x88C9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x74, symBinAddr: 0x35928, symSize: 0x44 } - - { offsetInCU: 0xA9, offset: 0x88CCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x178, symBinAddr: 0x35A2C, symSize: 0x44 } - - { offsetInCU: 0xD8, offset: 0x88CFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x264, symBinAddr: 0x35B18, symSize: 0x44 } - - { offsetInCU: 0x107, offset: 0x88D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x2A8, symBinAddr: 0x35B5C, symSize: 0x4 } - - { offsetInCU: 0x1AA, offset: 0x88DCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x35B60, symSize: 0x2B8 } - - { offsetInCU: 0x618, offset: 0x8923A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x564, symBinAddr: 0x35E18, symSize: 0x20 } - - { offsetInCU: 0x636, offset: 0x89258, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x584, symBinAddr: 0x35E38, symSize: 0x68 } - - { offsetInCU: 0x671, offset: 0x89293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x5EC, symBinAddr: 0x35EA0, symSize: 0x74 } - - { offsetInCU: 0x6AC, offset: 0x892CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x660, symBinAddr: 0x35F14, symSize: 0x30 } - - { offsetInCU: 0x789, offset: 0x893AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x690, symBinAddr: 0x35F44, symSize: 0x60 } - - { offsetInCU: 0x7B8, offset: 0x893DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x6F0, symBinAddr: 0x35FA4, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x89567, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x18, symBinAddr: 0x35FE8, symSize: 0x44 } - - { offsetInCU: 0x7A, offset: 0x89596, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x74, symBinAddr: 0x36044, symSize: 0x44 } - - { offsetInCU: 0xA9, offset: 0x895C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x16C, symBinAddr: 0x3613C, symSize: 0x44 } - - { offsetInCU: 0xD8, offset: 0x895F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x25C, symBinAddr: 0x3622C, symSize: 0x44 } - - { offsetInCU: 0x107, offset: 0x89623, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x2B8, symBinAddr: 0x36288, symSize: 0x44 } - - { offsetInCU: 0x136, offset: 0x89652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x3A8, symBinAddr: 0x36378, symSize: 0x44 } - - { offsetInCU: 0x165, offset: 0x89681, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x404, symBinAddr: 0x363D4, symSize: 0x44 } - - { offsetInCU: 0x194, offset: 0x896B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x448, symBinAddr: 0x36418, symSize: 0x4 } - - { offsetInCU: 0x1BF, offset: 0x896DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x44C, symBinAddr: 0x3641C, symSize: 0x54 } - - { offsetInCU: 0x1DE, offset: 0x896FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x4A0, symBinAddr: 0x36470, symSize: 0x5C } - - { offsetInCU: 0x21D, offset: 0x89739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x4FC, symBinAddr: 0x364CC, symSize: 0x44 } - - { offsetInCU: 0x24C, offset: 0x89768, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x5E8, symBinAddr: 0x365B8, symSize: 0x44 } - - { offsetInCU: 0x389, offset: 0x898A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x62C, symBinAddr: 0x365FC, symSize: 0x6EC } - - { offsetInCU: 0xFB3, offset: 0x8A4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xD18, symBinAddr: 0x36CE8, symSize: 0x20 } - - { offsetInCU: 0xFD1, offset: 0x8A4ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xD38, symBinAddr: 0x36D08, symSize: 0xC8 } - - { offsetInCU: 0xFFE, offset: 0x8A51A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xE00, symBinAddr: 0x36DD0, symSize: 0x20 } - - { offsetInCU: 0x101A, offset: 0x8A536, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xE20, symBinAddr: 0x36DF0, symSize: 0x30 } - - { offsetInCU: 0x1154, offset: 0x8A670, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xE50, symBinAddr: 0x36E20, symSize: 0x4C } - - { offsetInCU: 0x1183, offset: 0x8A69F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0xE9C, symBinAddr: 0x36E6C, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8A86E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x36EAC, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8A88C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x36ECC, symSize: 0x48 } - - { offsetInCU: 0x88, offset: 0x8A8AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x36F14, symSize: 0x5C } - - { offsetInCU: 0xB1, offset: 0x8A8D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x36F70, symSize: 0x44 } - - { offsetInCU: 0xE0, offset: 0x8A903, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x120, symBinAddr: 0x36FCC, symSize: 0x44 } - - { offsetInCU: 0x10F, offset: 0x8A932, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x17C, symBinAddr: 0x37028, symSize: 0x44 } - - { offsetInCU: 0x13E, offset: 0x8A961, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1C0, symBinAddr: 0x3706C, symSize: 0x4C } - - { offsetInCU: 0x16D, offset: 0x8A990, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x20C, symBinAddr: 0x370B8, symSize: 0x50 } - - { offsetInCU: 0x192, offset: 0x8A9B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x25C, symBinAddr: 0x37108, symSize: 0x44 } - - { offsetInCU: 0x1C1, offset: 0x8A9E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x3714C, symSize: 0x4 } - - { offsetInCU: 0x1EC, offset: 0x8AA0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2A4, symBinAddr: 0x37150, symSize: 0x44 } - - { offsetInCU: 0x21B, offset: 0x8AA3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x2F4, symBinAddr: 0x371A0, symSize: 0x44 } - - { offsetInCU: 0x24A, offset: 0x8AA6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x3EC, symBinAddr: 0x37298, symSize: 0x44 } - - { offsetInCU: 0x279, offset: 0x8AA9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x448, symBinAddr: 0x372F4, symSize: 0x44 } - - { offsetInCU: 0x2A8, offset: 0x8AACB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x4A4, symBinAddr: 0x37350, symSize: 0x44 } - - { offsetInCU: 0x2D7, offset: 0x8AAFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x500, symBinAddr: 0x373AC, symSize: 0x44 } - - { offsetInCU: 0x306, offset: 0x8AB29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x544, symBinAddr: 0x373F0, symSize: 0x48 } - - { offsetInCU: 0x335, offset: 0x8AB58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x58C, symBinAddr: 0x37438, symSize: 0x50 } - - { offsetInCU: 0x374, offset: 0x8AB97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x5DC, symBinAddr: 0x37488, symSize: 0x44 } - - { offsetInCU: 0x393, offset: 0x8ABB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x620, symBinAddr: 0x374CC, symSize: 0x44 } - - { offsetInCU: 0x3C2, offset: 0x8ABE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x670, symBinAddr: 0x3751C, symSize: 0x44 } - - { offsetInCU: 0x3F1, offset: 0x8AC14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x6B4, symBinAddr: 0x37560, symSize: 0x44 } - - { offsetInCU: 0x420, offset: 0x8AC43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x704, symBinAddr: 0x375B0, symSize: 0x44 } - - { offsetInCU: 0x44F, offset: 0x8AC72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x748, symBinAddr: 0x375F4, symSize: 0x44 } - - { offsetInCU: 0x47E, offset: 0x8ACA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x7DC, symBinAddr: 0x37688, symSize: 0x44 } - - { offsetInCU: 0x4AD, offset: 0x8ACD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x8CC, symBinAddr: 0x37778, symSize: 0x44 } - - { offsetInCU: 0x4DC, offset: 0x8ACFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0x928, symBinAddr: 0x377D4, symSize: 0x44 } - - { offsetInCU: 0x50B, offset: 0x8AD2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0x984, symBinAddr: 0x37830, symSize: 0x44 } - - { offsetInCU: 0x53A, offset: 0x8AD5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xA88, symBinAddr: 0x37934, symSize: 0x44 } - - { offsetInCU: 0x569, offset: 0x8AD8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xACC, symBinAddr: 0x37978, symSize: 0x48 } - - { offsetInCU: 0x598, offset: 0x8ADBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xB14, symBinAddr: 0x379C0, symSize: 0x50 } - - { offsetInCU: 0x5C1, offset: 0x8ADE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xB64, symBinAddr: 0x37A10, symSize: 0x44 } - - { offsetInCU: 0x8F6, offset: 0x8B119, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xBA8, symBinAddr: 0x37A54, symSize: 0xABC } - - { offsetInCU: 0x1523, offset: 0x8BD46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x16D4, symBinAddr: 0x38580, symSize: 0x160 } - - { offsetInCU: 0x1550, offset: 0x8BD73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1834, symBinAddr: 0x386E0, symSize: 0x20 } - - { offsetInCU: 0x156C, offset: 0x8BD8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1854, symBinAddr: 0x38700, symSize: 0x30 } - - { offsetInCU: 0x1799, offset: 0x8BFBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x1884, symBinAddr: 0x38730, symSize: 0x9C } - - { offsetInCU: 0x17DE, offset: 0x8C001, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1920, symBinAddr: 0x387CC, symSize: 0x64 } - - { offsetInCU: 0x1836, offset: 0x8C059, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1984, symBinAddr: 0x38830, symSize: 0x34 } - - { offsetInCU: 0x1883, offset: 0x8C0A6, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19B8, symBinAddr: 0x38864, symSize: 0xE0 } - - { offsetInCU: 0x18CD, offset: 0x8C0F0, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1A98, symBinAddr: 0x38944, symSize: 0xA0 } - - { offsetInCU: 0x1905, offset: 0x8C128, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1B5C, symBinAddr: 0x38A08, symSize: 0x1C8 } - - { offsetInCU: 0x198B, offset: 0x8C1AE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1D24, symBinAddr: 0x38BD0, symSize: 0x1B8 } - - { offsetInCU: 0x1A2D, offset: 0x8C250, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x224C, symBinAddr: 0x390F8, symSize: 0x1C4 } - - { offsetInCU: 0x1ACF, offset: 0x8C2F2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2434, symBinAddr: 0x392E0, symSize: 0x3AC } - - { offsetInCU: 0x1BBF, offset: 0x8C3E2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x27E0, symBinAddr: 0x3968C, symSize: 0x390 } - - { offsetInCU: 0x1CCB, offset: 0x8C4EE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x31E0, symBinAddr: 0x3A08C, symSize: 0x398 } - - { offsetInCU: 0x1DCC, offset: 0x8C5EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x3578, symBinAddr: 0x3A424, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8C90B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A488, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8C92F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A488, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8C94D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3A4A8, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8C97C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3A4F4, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8C9A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3A544, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8C9D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3A588, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8C9FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3A58C, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x8CA2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3A5D0, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x8CA53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3A618, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x8CA82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3A65C, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x8CAB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3A6B0, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x8CADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3A70C, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x8CB09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3A750, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x8CB38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3A798, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x8CB77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3A7E8, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x8CB96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3A82C, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x8CBB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3A834, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x8CBDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3A8C0, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x8CBFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x458, symBinAddr: 0x3A8E0, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x8CD7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3A94C, symSize: 0x604 } - - { offsetInCU: 0xB78, offset: 0x8D45C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x488, symBinAddr: 0x3A910, symSize: 0x3C } - - { offsetInCU: 0xD5C, offset: 0x8D640, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xAC8, symBinAddr: 0x3AF50, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8D8A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3AF7C, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8D8C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3AF7C, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8D8E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3AF9C, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x8D913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3AFE8, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8D938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3B038, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x8D967, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3B07C, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x8D992, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3B080, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x8D9C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3B0C4, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x8D9EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3B10C, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x8DA19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3B150, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x8DA48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3B1A4, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x8DA71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3B200, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x8DAA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3B244, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x8DACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3B28C, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x8DB0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3B2DC, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x8DB2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3B320, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x8DB49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3B328, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x8DB76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3B3B4, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x8DB92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x458, symBinAddr: 0x3B3D4, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x8DD15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3B440, symSize: 0x5F8 } - - { offsetInCU: 0xB80, offset: 0x8E3FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x488, symBinAddr: 0x3B404, symSize: 0x3C } - - { offsetInCU: 0xD7B, offset: 0x8E5F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xABC, symBinAddr: 0x3BA38, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8E87C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x3BA64, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8E89A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3BA84, symSize: 0x48 } - - { offsetInCU: 0x88, offset: 0x8E8B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3BACC, symSize: 0x5C } - - { offsetInCU: 0xB1, offset: 0x8E8E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3BB28, symSize: 0x44 } - - { offsetInCU: 0xE0, offset: 0x8E911, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0x108, symBinAddr: 0x3BB6C, symSize: 0x4C } - - { offsetInCU: 0x10F, offset: 0x8E940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x154, symBinAddr: 0x3BBB8, symSize: 0x50 } - - { offsetInCU: 0x134, offset: 0x8E965, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x1A4, symBinAddr: 0x3BC08, symSize: 0x44 } - - { offsetInCU: 0x163, offset: 0x8E994, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1E8, symBinAddr: 0x3BC4C, symSize: 0x54 } - - { offsetInCU: 0x192, offset: 0x8E9C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x23C, symBinAddr: 0x3BCA0, symSize: 0x50 } - - { offsetInCU: 0x1B7, offset: 0x8E9E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x28C, symBinAddr: 0x3BCF0, symSize: 0x44 } - - { offsetInCU: 0x1E6, offset: 0x8EA17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2E8, symBinAddr: 0x3BD4C, symSize: 0x44 } - - { offsetInCU: 0x215, offset: 0x8EA46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x32C, symBinAddr: 0x3BD90, symSize: 0x4 } - - { offsetInCU: 0x240, offset: 0x8EA71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x348, symBinAddr: 0x3BDAC, symSize: 0x44 } - - { offsetInCU: 0x26F, offset: 0x8EAA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3A4, symBinAddr: 0x3BE08, symSize: 0x44 } - - { offsetInCU: 0x29E, offset: 0x8EACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x490, symBinAddr: 0x3BEF4, symSize: 0x44 } - - { offsetInCU: 0x2BD, offset: 0x8EAEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x4EC, symBinAddr: 0x3BF50, symSize: 0x44 } - - { offsetInCU: 0x2EC, offset: 0x8EB1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x5F0, symBinAddr: 0x3C054, symSize: 0x44 } - - { offsetInCU: 0x31B, offset: 0x8EB4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x634, symBinAddr: 0x3C098, symSize: 0x54 } - - { offsetInCU: 0x33A, offset: 0x8EB6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x688, symBinAddr: 0x3C0EC, symSize: 0x5C } - - { offsetInCU: 0x363, offset: 0x8EB94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x6E4, symBinAddr: 0x3C148, symSize: 0x44 } - - { offsetInCU: 0x392, offset: 0x8EBC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x7D4, symBinAddr: 0x3C238, symSize: 0x44 } - - { offsetInCU: 0x3C1, offset: 0x8EBF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x8B4, symBinAddr: 0x3C318, symSize: 0x44 } - - { offsetInCU: 0x660, offset: 0x8EE91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x8F8, symBinAddr: 0x3C35C, symSize: 0xABC } - - { offsetInCU: 0x1147, offset: 0x8F978, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x1424, symBinAddr: 0x3CE88, symSize: 0xF8 } - - { offsetInCU: 0x1174, offset: 0x8F9A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x151C, symBinAddr: 0x3CF80, symSize: 0x20 } - - { offsetInCU: 0x1190, offset: 0x8F9C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x153C, symBinAddr: 0x3CFA0, symSize: 0x30 } - - { offsetInCU: 0x146F, offset: 0x8FCA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x156C, symBinAddr: 0x3CFD0, symSize: 0x74 } - - { offsetInCU: 0x149E, offset: 0x8FCCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x15E0, symBinAddr: 0x3D044, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8FFEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D090, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x90012, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D090, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3D0B0, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x9005F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3D0FC, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x90084, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3D14C, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x900B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3D190, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x900DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3D194, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x9010D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3D1D8, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x90136, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3D220, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x90165, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3D264, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x90194, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3D2B8, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x901BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3D314, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x901EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3D358, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x9021B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3D3A0, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x9025A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3D3F0, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x90279, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3D434, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x90295, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3D43C, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x902C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3D4C8, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x902DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x458, symBinAddr: 0x3D4E8, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x90461, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3D554, symSize: 0x604 } - - { offsetInCU: 0xB78, offset: 0x90B3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x488, symBinAddr: 0x3D518, symSize: 0x3C } - - { offsetInCU: 0xD5C, offset: 0x90D23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xAC8, symBinAddr: 0x3DB58, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90F85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DB84, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x90FA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DB84, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90FC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3DBA4, symSize: 0x4C } - - { offsetInCU: 0x98, offset: 0x90FF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3DBF0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x9101B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3DC40, symSize: 0x44 } - - { offsetInCU: 0xEC, offset: 0x9104A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3DC84, symSize: 0x4 } - - { offsetInCU: 0x117, offset: 0x91075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3DC88, symSize: 0x44 } - - { offsetInCU: 0x146, offset: 0x910A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3DCCC, symSize: 0x48 } - - { offsetInCU: 0x16F, offset: 0x910CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3DD14, symSize: 0x44 } - - { offsetInCU: 0x19E, offset: 0x910FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3DD58, symSize: 0x54 } - - { offsetInCU: 0x1CD, offset: 0x9112B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3DDAC, symSize: 0x5C } - - { offsetInCU: 0x1F6, offset: 0x91154, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3DE08, symSize: 0x44 } - - { offsetInCU: 0x225, offset: 0x91183, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3DE4C, symSize: 0x48 } - - { offsetInCU: 0x254, offset: 0x911B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3DE94, symSize: 0x50 } - - { offsetInCU: 0x293, offset: 0x911F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3DEE4, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x91210, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3DF28, symSize: 0x8 } - - { offsetInCU: 0x2CE, offset: 0x9122C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3DF30, symSize: 0x8C } - - { offsetInCU: 0x2FB, offset: 0x91259, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3DFBC, symSize: 0x20 } - - { offsetInCU: 0x317, offset: 0x91275, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x458, symBinAddr: 0x3DFDC, symSize: 0x30 } - - { offsetInCU: 0x49A, offset: 0x913F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3E048, symSize: 0x5F8 } - - { offsetInCU: 0xB80, offset: 0x91ADE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x488, symBinAddr: 0x3E00C, symSize: 0x3C } - - { offsetInCU: 0xD64, offset: 0x91CC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xABC, symBinAddr: 0x3E640, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x91F24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3E66C, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x91F48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3E66C, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x91F66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x3E68C, symSize: 0x48 } - - { offsetInCU: 0x98, offset: 0x91F95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x3E6D4, symSize: 0x50 } - - { offsetInCU: 0xD7, offset: 0x91FD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x3E724, symSize: 0x44 } - - { offsetInCU: 0xF6, offset: 0x91FF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x3E768, symSize: 0x4 } - - { offsetInCU: 0x121, offset: 0x9201E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3E76C, symSize: 0x44 } - - { offsetInCU: 0x150, offset: 0x9204D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x3E7B0, symSize: 0x48 } - - { offsetInCU: 0x179, offset: 0x92076, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x3E7F8, symSize: 0x44 } - - { offsetInCU: 0x1A8, offset: 0x920A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x3E83C, symSize: 0x54 } - - { offsetInCU: 0x1D7, offset: 0x920D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x3E890, symSize: 0x5C } - - { offsetInCU: 0x200, offset: 0x920FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x3E8EC, symSize: 0x44 } - - { offsetInCU: 0x22F, offset: 0x9212C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x3E930, symSize: 0x48 } - - { offsetInCU: 0x25E, offset: 0x9215B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x3E978, symSize: 0x50 } - - { offsetInCU: 0x29D, offset: 0x9219A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x3E9C8, symSize: 0x44 } - - { offsetInCU: 0x2BC, offset: 0x921B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x3EA0C, symSize: 0x8 } - - { offsetInCU: 0x2D8, offset: 0x921D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x3EA14, symSize: 0x90 } - - { offsetInCU: 0x313, offset: 0x92210, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3EAA4, symSize: 0x9C } - - { offsetInCU: 0x34E, offset: 0x9224B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x4D4, symBinAddr: 0x3EB40, symSize: 0x30 } - - { offsetInCU: 0x4E3, offset: 0x923E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x550, symBinAddr: 0x3EBBC, symSize: 0x6CC } - - { offsetInCU: 0xD0D, offset: 0x92C0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x504, symBinAddr: 0x3EB70, symSize: 0x4C } - - { offsetInCU: 0xF5F, offset: 0x92E5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xC8C, symBinAddr: 0x3F2F8, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x930E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F324, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x9310B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F324, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x93129, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x3F344, symSize: 0x48 } - - { offsetInCU: 0x98, offset: 0x93158, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x3F38C, symSize: 0x50 } - - { offsetInCU: 0xD7, offset: 0x93197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x3F3DC, symSize: 0x44 } - - { offsetInCU: 0xF6, offset: 0x931B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x3F420, symSize: 0x4 } - - { offsetInCU: 0x121, offset: 0x931E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3F424, symSize: 0x44 } - - { offsetInCU: 0x150, offset: 0x93210, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x3F468, symSize: 0x48 } - - { offsetInCU: 0x179, offset: 0x93239, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x3F4B0, symSize: 0x44 } - - { offsetInCU: 0x1A8, offset: 0x93268, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x3F4F4, symSize: 0x54 } - - { offsetInCU: 0x1D7, offset: 0x93297, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x3F548, symSize: 0x5C } - - { offsetInCU: 0x200, offset: 0x932C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x3F5A4, symSize: 0x44 } - - { offsetInCU: 0x22F, offset: 0x932EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x3F5E8, symSize: 0x48 } - - { offsetInCU: 0x25E, offset: 0x9331E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x3F630, symSize: 0x50 } - - { offsetInCU: 0x29D, offset: 0x9335D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x3F680, symSize: 0x44 } - - { offsetInCU: 0x2BC, offset: 0x9337C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x3F6C4, symSize: 0x8 } - - { offsetInCU: 0x2D8, offset: 0x93398, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x3F6CC, symSize: 0x90 } - - { offsetInCU: 0x313, offset: 0x933D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3F75C, symSize: 0x9C } - - { offsetInCU: 0x34E, offset: 0x9340E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x4D4, symBinAddr: 0x3F7F8, symSize: 0x30 } - - { offsetInCU: 0x4E3, offset: 0x935A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x550, symBinAddr: 0x3F874, symSize: 0x6CC } - - { offsetInCU: 0xD0D, offset: 0x93DCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x504, symBinAddr: 0x3F828, symSize: 0x4C } - - { offsetInCU: 0xF7B, offset: 0x9403B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xC8C, symBinAddr: 0x3FFB0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x942F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x3FFDC, symSize: 0x48 } - - { offsetInCU: 0x7A, offset: 0x9431F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x48, symBinAddr: 0x40024, symSize: 0x5C } - - { offsetInCU: 0xB9, offset: 0x9435E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0xA4, symBinAddr: 0x40080, symSize: 0x44 } - - { offsetInCU: 0xE8, offset: 0x9438D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xE8, symBinAddr: 0x400C4, symSize: 0x4C } - - { offsetInCU: 0x107, offset: 0x943AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x134, symBinAddr: 0x40110, symSize: 0x50 } - - { offsetInCU: 0x142, offset: 0x943E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x184, symBinAddr: 0x40160, symSize: 0x44 } - - { offsetInCU: 0x171, offset: 0x94416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x401BC, symSize: 0x44 } - - { offsetInCU: 0x1A0, offset: 0x94445, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x224, symBinAddr: 0x40200, symSize: 0x4C } - - { offsetInCU: 0x1BF, offset: 0x94464, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x270, symBinAddr: 0x4024C, symSize: 0x50 } - - { offsetInCU: 0x1FA, offset: 0x9449F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2C0, symBinAddr: 0x4029C, symSize: 0x44 } - - { offsetInCU: 0x229, offset: 0x944CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x402E0, symSize: 0x4 } - - { offsetInCU: 0x254, offset: 0x944F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x320, symBinAddr: 0x402FC, symSize: 0x44 } - - { offsetInCU: 0x283, offset: 0x94528, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x37C, symBinAddr: 0x40358, symSize: 0x44 } - - { offsetInCU: 0x2B2, offset: 0x94557, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x468, symBinAddr: 0x40444, symSize: 0x44 } - - { offsetInCU: 0x2E1, offset: 0x94586, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x4053C, symSize: 0x44 } - - { offsetInCU: 0x310, offset: 0x945B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x40640, symSize: 0x44 } - - { offsetInCU: 0x34E, offset: 0x945F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x6A8, symBinAddr: 0x40684, symSize: 0xE8 } - - { offsetInCU: 0x382, offset: 0x94627, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x790, symBinAddr: 0x4076C, symSize: 0xAC } - - { offsetInCU: 0x486, offset: 0x9472B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x83C, symBinAddr: 0x40818, symSize: 0x774 } - - { offsetInCU: 0x1204, offset: 0x954A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0xFB0, symBinAddr: 0x40F8C, symSize: 0x20 } - - { offsetInCU: 0x1222, offset: 0x954C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0xFD0, symBinAddr: 0x40FAC, symSize: 0x2C } - - { offsetInCU: 0x1285, offset: 0x9552A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0xFFC, symBinAddr: 0x40FD8, symSize: 0x2C } - - { offsetInCU: 0x12EC, offset: 0x95591, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x1028, symBinAddr: 0x41004, symSize: 0x30 } - - { offsetInCU: 0x1319, offset: 0x955BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfcTf4nnnngggngn_n', symObjAddr: 0x1558, symBinAddr: 0x41534, symSize: 0x314 } - - { offsetInCU: 0x15DE, offset: 0x95883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1058, symBinAddr: 0x41034, symSize: 0x60 } - - { offsetInCU: 0x1665, offset: 0x9590A, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x10B8, symBinAddr: 0x41094, symSize: 0x1C8 } - - { offsetInCU: 0x1772, offset: 0x95A17, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x1280, symBinAddr: 0x4125C, symSize: 0x1DC } - - { offsetInCU: 0x184D, offset: 0x95AF2, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS_Tg5Tf4nnd_n', symObjAddr: 0x145C, symBinAddr: 0x41438, symSize: 0x78 } - - { offsetInCU: 0x18A2, offset: 0x95B47, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x14D4, symBinAddr: 0x414B0, symSize: 0x84 } - - { offsetInCU: 0x18EC, offset: 0x95B91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0x187C, symBinAddr: 0x41848, symSize: 0x20 } - - { offsetInCU: 0x1900, offset: 0x95BA5, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x189C, symBinAddr: 0x41868, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x95F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x418C4, symSize: 0xF4 } - - { offsetInCU: 0x81, offset: 0x95F62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x418C4, symSize: 0xF4 } - - { offsetInCU: 0xF2, offset: 0x95FD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xF4, symBinAddr: 0x419B8, symSize: 0xF0 } - - { offsetInCU: 0x139, offset: 0x9601A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x1E4, symBinAddr: 0x41AA8, symSize: 0x48 } - - { offsetInCU: 0x155, offset: 0x96036, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x22C, symBinAddr: 0x41AF0, symSize: 0x50 } - - { offsetInCU: 0x171, offset: 0x96052, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x27C, symBinAddr: 0x41B40, symSize: 0x3C } - - { offsetInCU: 0x18D, offset: 0x9606E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x2B8, symBinAddr: 0x41B7C, symSize: 0x30 } - - { offsetInCU: 0x1A9, offset: 0x9608A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2E8, symBinAddr: 0x41BAC, symSize: 0x3C } - - { offsetInCU: 0x1C5, offset: 0x960A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x324, symBinAddr: 0x41BE8, symSize: 0x3C } - - { offsetInCU: 0x1E1, offset: 0x960C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x360, symBinAddr: 0x41C24, symSize: 0x30 } - - { offsetInCU: 0x1FD, offset: 0x960DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x390, symBinAddr: 0x41C54, symSize: 0x3C } - - { offsetInCU: 0x219, offset: 0x960FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x3CC, symBinAddr: 0x41C90, symSize: 0x3C } - - { offsetInCU: 0x235, offset: 0x96116, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x408, symBinAddr: 0x41CCC, symSize: 0x30 } - - { offsetInCU: 0x251, offset: 0x96132, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x438, symBinAddr: 0x41CFC, symSize: 0x3C } - - { offsetInCU: 0x26D, offset: 0x9614E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x474, symBinAddr: 0x41D38, symSize: 0x3C } - - { offsetInCU: 0x289, offset: 0x9616A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x4B0, symBinAddr: 0x41D74, symSize: 0x30 } - - { offsetInCU: 0x2A5, offset: 0x96186, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x4E0, symBinAddr: 0x41DA4, symSize: 0x3C } - - { offsetInCU: 0x2C1, offset: 0x961A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x51C, symBinAddr: 0x41DE0, symSize: 0x3C } - - { offsetInCU: 0x2DD, offset: 0x961BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x558, symBinAddr: 0x41E1C, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x961DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x55C, symBinAddr: 0x41E20, symSize: 0x30 } - - { offsetInCU: 0x315, offset: 0x961F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x58C, symBinAddr: 0x41E50, symSize: 0x3C } - - { offsetInCU: 0x331, offset: 0x96212, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x5C8, symBinAddr: 0x41E8C, symSize: 0x3C } - - { offsetInCU: 0x34D, offset: 0x9622E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x604, symBinAddr: 0x41EC8, symSize: 0xDC } - - { offsetInCU: 0x376, offset: 0x96257, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x6E0, symBinAddr: 0x41FA4, symSize: 0xE0 } - - { offsetInCU: 0x3A9, offset: 0x9628A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x7C0, symBinAddr: 0x42084, symSize: 0x268 } - - { offsetInCU: 0x55E, offset: 0x9643F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0xA28, symBinAddr: 0x422EC, symSize: 0x1C } - - { offsetInCU: 0x599, offset: 0x9647A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0xA44, symBinAddr: 0x42308, symSize: 0x24 } - - { offsetInCU: 0x6B9, offset: 0x9659A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0xA68, symBinAddr: 0x4232C, symSize: 0x20 } - - { offsetInCU: 0x5E, offset: 0x9671E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x42360, symSize: 0x60 } - - { offsetInCU: 0x92, offset: 0x96752, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x17C, symBinAddr: 0x424DC, symSize: 0x30 } - - { offsetInCU: 0xA6, offset: 0x96766, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x1AC, symBinAddr: 0x4250C, symSize: 0x78 } - - { offsetInCU: 0x100, offset: 0x967C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x224, symBinAddr: 0x42584, symSize: 0xBC } - - { offsetInCU: 0x15E, offset: 0x9681E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x2E0, symBinAddr: 0x42640, symSize: 0x60 } - - { offsetInCU: 0x186, offset: 0x96846, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x340, symBinAddr: 0x426A0, symSize: 0x140 } - - { offsetInCU: 0x1EE, offset: 0x968AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x480, symBinAddr: 0x427E0, symSize: 0x64 } - - { offsetInCU: 0x23A, offset: 0x968FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x4E4, symBinAddr: 0x42844, symSize: 0x90 } - - { offsetInCU: 0x298, offset: 0x96958, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x574, symBinAddr: 0x428D4, symSize: 0xC4 } - - { offsetInCU: 0x2D8, offset: 0x96998, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x638, symBinAddr: 0x42998, symSize: 0xDC } - - { offsetInCU: 0x309, offset: 0x969C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x714, symBinAddr: 0x42A74, symSize: 0x104 } - - { offsetInCU: 0x363, offset: 0x96A23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x818, symBinAddr: 0x42B78, symSize: 0xD8 } - - { offsetInCU: 0x3C1, offset: 0x96A81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0x8F0, symBinAddr: 0x42C50, symSize: 0xBC } - - { offsetInCU: 0x40D, offset: 0x96ACD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0x9AC, symBinAddr: 0x42D0C, symSize: 0x88 } - - { offsetInCU: 0x46B, offset: 0x96B2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xA34, symBinAddr: 0x42D94, symSize: 0x190 } - - { offsetInCU: 0x4C2, offset: 0x96B82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x42F24, symSize: 0xB0 } - - { offsetInCU: 0x50A, offset: 0x96BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xC74, symBinAddr: 0x42FD4, symSize: 0x24 } - - { offsetInCU: 0x545, offset: 0x96C05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xC98, symBinAddr: 0x42FF8, symSize: 0x2C } - - { offsetInCU: 0x58F, offset: 0x96C4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xD0C, symBinAddr: 0x4306C, symSize: 0xE4 } - - { offsetInCU: 0x5AB, offset: 0x96C6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xDF0, symBinAddr: 0x43150, symSize: 0x54 } - - { offsetInCU: 0x5C7, offset: 0x96C87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xE44, symBinAddr: 0x431A4, symSize: 0xA8 } - - { offsetInCU: 0x620, offset: 0x96CE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0xEEC, symBinAddr: 0x4324C, symSize: 0x30 } - - { offsetInCU: 0x669, offset: 0x96D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x11E0, symBinAddr: 0x43540, symSize: 0x3C } - - { offsetInCU: 0x69B, offset: 0x96D5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfcTf4ngn_n', symObjAddr: 0x1600, symBinAddr: 0x43960, symSize: 0x140 } - - { offsetInCU: 0x714, offset: 0x96DD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x17A0, symBinAddr: 0x43B00, symSize: 0x274 } - - { offsetInCU: 0x795, offset: 0x96E55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1740, symBinAddr: 0x43AA0, symSize: 0x20 } - - { offsetInCU: 0x7A9, offset: 0x96E69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1760, symBinAddr: 0x43AC0, symSize: 0x20 } - - { offsetInCU: 0x7BD, offset: 0x96E7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x43AE0, symSize: 0x20 } - - { offsetInCU: 0x7D1, offset: 0x96E91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x1A14, symBinAddr: 0x43D74, symSize: 0x18 } - - { offsetInCU: 0x7E5, offset: 0x96EA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x1A2C, symBinAddr: 0x43D8C, symSize: 0x20 } - - { offsetInCU: 0x7F9, offset: 0x96EB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1A4C, symBinAddr: 0x43DAC, symSize: 0x18 } - - { offsetInCU: 0x80D, offset: 0x96ECD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x1AAC, symBinAddr: 0x43E0C, symSize: 0xC } - - { offsetInCU: 0x821, offset: 0x96EE1, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1AB8, symBinAddr: 0x43E18, symSize: 0x10 } - - { offsetInCU: 0x835, offset: 0x96EF5, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1AC8, symBinAddr: 0x43E28, symSize: 0x8 } - - { offsetInCU: 0x849, offset: 0x96F09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1AD0, symBinAddr: 0x43E30, symSize: 0x10 } - - { offsetInCU: 0x85D, offset: 0x96F1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1AE0, symBinAddr: 0x43E40, symSize: 0x10 } - - { offsetInCU: 0x871, offset: 0x96F31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1AF0, symBinAddr: 0x43E50, symSize: 0x10 } - - { offsetInCU: 0x885, offset: 0x96F45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1B00, symBinAddr: 0x43E60, symSize: 0x10 } - - { offsetInCU: 0x899, offset: 0x96F59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1B10, symBinAddr: 0x43E70, symSize: 0x10 } - - { offsetInCU: 0x8AD, offset: 0x96F6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1B20, symBinAddr: 0x43E80, symSize: 0x4 } - - { offsetInCU: 0x8C1, offset: 0x96F81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1B24, symBinAddr: 0x43E84, symSize: 0x50 } - - { offsetInCU: 0x8D5, offset: 0x96F95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B74, symBinAddr: 0x43ED4, symSize: 0xC } - - { offsetInCU: 0x8E9, offset: 0x96FA9, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B80, symBinAddr: 0x43EE0, symSize: 0xC } - - { offsetInCU: 0x8FD, offset: 0x96FBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1DD0, symBinAddr: 0x44130, symSize: 0x7C } - - { offsetInCU: 0x911, offset: 0x96FD1, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E88, symBinAddr: 0x441AC, symSize: 0x2C } - - { offsetInCU: 0x939, offset: 0x96FF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0xF1C, symBinAddr: 0x4327C, symSize: 0x54 } - - { offsetInCU: 0x955, offset: 0x97015, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0xF70, symBinAddr: 0x432D0, symSize: 0x44 } - - { offsetInCU: 0x971, offset: 0x97031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0xFB4, symBinAddr: 0x43314, symSize: 0x4 } - - { offsetInCU: 0x98D, offset: 0x9704D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0xFB8, symBinAddr: 0x43318, symSize: 0x4 } - - { offsetInCU: 0x9BE, offset: 0x9707E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xFBC, symBinAddr: 0x4331C, symSize: 0x10 } - - { offsetInCU: 0x9DE, offset: 0x9709E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xFBC, symBinAddr: 0x4331C, symSize: 0x10 } - - { offsetInCU: 0x9EF, offset: 0x970AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0xFCC, symBinAddr: 0x4332C, symSize: 0x64 } - - { offsetInCU: 0xA0B, offset: 0x970CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x1030, symBinAddr: 0x43390, symSize: 0x68 } - - { offsetInCU: 0xA27, offset: 0x970E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1098, symBinAddr: 0x433F8, symSize: 0x50 } - - { offsetInCU: 0xA52, offset: 0x97112, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x1190, symBinAddr: 0x434F0, symSize: 0x50 } - - { offsetInCU: 0xA9E, offset: 0x9715E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x121C, symBinAddr: 0x4357C, symSize: 0x78 } - - { offsetInCU: 0xAF1, offset: 0x971B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x1294, symBinAddr: 0x435F4, symSize: 0x60 } - - { offsetInCU: 0xB2F, offset: 0x971EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x12F4, symBinAddr: 0x43654, symSize: 0x34 } - - { offsetInCU: 0xB4B, offset: 0x9720B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1328, symBinAddr: 0x43688, symSize: 0x8 } - - { offsetInCU: 0xB7C, offset: 0x9723C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x1330, symBinAddr: 0x43690, symSize: 0x5C } - - { offsetInCU: 0xBAD, offset: 0x9726D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x138C, symBinAddr: 0x436EC, symSize: 0x5C } - - { offsetInCU: 0xBC9, offset: 0x97289, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x13E8, symBinAddr: 0x43748, symSize: 0x70 } - - { offsetInCU: 0xBEC, offset: 0x972AC, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x15FC, symBinAddr: 0x4395C, symSize: 0x4 } - - { offsetInCU: 0xC15, offset: 0x972D5, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B8C, symBinAddr: 0x43EEC, symSize: 0x178 } + - { offsetInCU: 0x34, offset: 0x55362, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x46AF0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x55397, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x46B18, symSize: 0x0 } + - { offsetInCU: 0xAB, offset: 0x55458, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x208, symBinAddr: 0x3590, symSize: 0x30 } + - { offsetInCU: 0xDC, offset: 0x55489, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x238, symBinAddr: 0x35C0, symSize: 0xC } + - { offsetInCU: 0xF8, offset: 0x554A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x244, symBinAddr: 0x35CC, symSize: 0x8 } + - { offsetInCU: 0x114, offset: 0x554C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7BF4, symBinAddr: 0xAF68, symSize: 0x14 } + - { offsetInCU: 0x19A, offset: 0x55547, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7C08, symBinAddr: 0xAF7C, symSize: 0x28 } + - { offsetInCU: 0x28C, offset: 0x55639, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x24C, symBinAddr: 0x35D4, symSize: 0x108 } + - { offsetInCU: 0x3BA, offset: 0x55767, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x354, symBinAddr: 0x36DC, symSize: 0x8 } + - { offsetInCU: 0x635, offset: 0x559E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xCE4, symBinAddr: 0x406C, symSize: 0x118 } + - { offsetInCU: 0xB39, offset: 0x55EE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2350, symBinAddr: 0x56D8, symSize: 0x10 } + - { offsetInCU: 0xB51, offset: 0x55EFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x2360, symBinAddr: 0x56E8, symSize: 0x4 } + - { offsetInCU: 0xBA2, offset: 0x55F4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x23C8, symBinAddr: 0x5750, symSize: 0x10 } + - { offsetInCU: 0xBBA, offset: 0x55F67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x23D8, symBinAddr: 0x5760, symSize: 0x4 } + - { offsetInCU: 0xC1A, offset: 0x55FC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2440, symBinAddr: 0x57C8, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x55FDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x2450, symBinAddr: 0x57D8, symSize: 0x4 } + - { offsetInCU: 0xC83, offset: 0x56030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x24B8, symBinAddr: 0x5840, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x5605F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x252C, symBinAddr: 0x58B4, symSize: 0x10 } + - { offsetInCU: 0xCCA, offset: 0x56077, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x253C, symBinAddr: 0x58C4, symSize: 0x4 } + - { offsetInCU: 0xD2A, offset: 0x560D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x25A4, symBinAddr: 0x592C, symSize: 0x10 } + - { offsetInCU: 0xD59, offset: 0x56106, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x2618, symBinAddr: 0x59A0, symSize: 0x10 } + - { offsetInCU: 0xD71, offset: 0x5611E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2628, symBinAddr: 0x59B0, symSize: 0x4 } + - { offsetInCU: 0xDB3, offset: 0x56160, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x2690, symBinAddr: 0x5A18, symSize: 0x10 } + - { offsetInCU: 0xDCB, offset: 0x56178, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x26A0, symBinAddr: 0x5A28, symSize: 0x4 } + - { offsetInCU: 0xE0D, offset: 0x561BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x2708, symBinAddr: 0x5A90, symSize: 0x10 } + - { offsetInCU: 0xE25, offset: 0x561D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x2718, symBinAddr: 0x5AA0, symSize: 0x4 } + - { offsetInCU: 0xE76, offset: 0x56223, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x2780, symBinAddr: 0x5B08, symSize: 0x10 } + - { offsetInCU: 0xE8E, offset: 0x5623B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x2790, symBinAddr: 0x5B18, symSize: 0x4 } + - { offsetInCU: 0xEF0, offset: 0x5629D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x27F8, symBinAddr: 0x5B80, symSize: 0x10 } + - { offsetInCU: 0xF1F, offset: 0x562CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x286C, symBinAddr: 0x5BF4, symSize: 0x10 } + - { offsetInCU: 0xFBB, offset: 0x56368, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x30D4, symBinAddr: 0x645C, symSize: 0x24 } + - { offsetInCU: 0x12B8, offset: 0x56665, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4B28, symBinAddr: 0x7EB0, symSize: 0x2C } + - { offsetInCU: 0x131F, offset: 0x566CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4B54, symBinAddr: 0x7EDC, symSize: 0x44 } + - { offsetInCU: 0x141D, offset: 0x567CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x6C88, symBinAddr: 0x9FFC, symSize: 0x24C } + - { offsetInCU: 0x15F1, offset: 0x5699E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x70F0, symBinAddr: 0xA464, symSize: 0x234 } + - { offsetInCU: 0x17C5, offset: 0x56B72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x7324, symBinAddr: 0xA698, symSize: 0x200 } + - { offsetInCU: 0x1999, offset: 0x56D46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x7524, symBinAddr: 0xA898, symSize: 0x22C } + - { offsetInCU: 0x1B6D, offset: 0x56F1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x7750, symBinAddr: 0xAAC4, symSize: 0x270 } + - { offsetInCU: 0x1D41, offset: 0x570EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x79C0, symBinAddr: 0xAD34, symSize: 0x234 } + - { offsetInCU: 0x2006, offset: 0x573B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x4D8, symBinAddr: 0x3860, symSize: 0x14 } + - { offsetInCU: 0x201E, offset: 0x573CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x4EC, symBinAddr: 0x3874, symSize: 0x1C } + - { offsetInCU: 0x2036, offset: 0x573E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x56C, symBinAddr: 0x38F4, symSize: 0x8 } + - { offsetInCU: 0x204E, offset: 0x573FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x6F8, symBinAddr: 0x3A80, symSize: 0xC } + - { offsetInCU: 0x2066, offset: 0x57413, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x760, symBinAddr: 0x3AE8, symSize: 0xC } + - { offsetInCU: 0x207E, offset: 0x5742B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x870, symBinAddr: 0x3BF8, symSize: 0x8 } + - { offsetInCU: 0x2096, offset: 0x57443, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x948, symBinAddr: 0x3CD0, symSize: 0x8 } + - { offsetInCU: 0x2124, offset: 0x574D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xCDC, symBinAddr: 0x4064, symSize: 0x8 } + - { offsetInCU: 0x2285, offset: 0x57632, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x136C, symBinAddr: 0x46F4, symSize: 0x8 } + - { offsetInCU: 0x229D, offset: 0x5764A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1444, symBinAddr: 0x47CC, symSize: 0x8 } + - { offsetInCU: 0x22B5, offset: 0x57662, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x144C, symBinAddr: 0x47D4, symSize: 0x8 } + - { offsetInCU: 0x22CD, offset: 0x5767A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1524, symBinAddr: 0x48AC, symSize: 0x8 } + - { offsetInCU: 0x22E5, offset: 0x57692, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x15FC, symBinAddr: 0x4984, symSize: 0x8 } + - { offsetInCU: 0x22FD, offset: 0x576AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x16D4, symBinAddr: 0x4A5C, symSize: 0x8 } + - { offsetInCU: 0x2315, offset: 0x576C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x16DC, symBinAddr: 0x4A64, symSize: 0x8 } + - { offsetInCU: 0x232D, offset: 0x576DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x16E4, symBinAddr: 0x4A6C, symSize: 0x8 } + - { offsetInCU: 0x240C, offset: 0x577B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x21EC, symBinAddr: 0x5574, symSize: 0xC } + - { offsetInCU: 0x2428, offset: 0x577D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x21EC, symBinAddr: 0x5574, symSize: 0xC } + - { offsetInCU: 0x243B, offset: 0x577E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x22D4, symBinAddr: 0x565C, symSize: 0x24 } + - { offsetInCU: 0x246A, offset: 0x57817, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x22F8, symBinAddr: 0x5680, symSize: 0x24 } + - { offsetInCU: 0x2499, offset: 0x57846, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x231C, symBinAddr: 0x56A4, symSize: 0x24 } + - { offsetInCU: 0x24C8, offset: 0x57875, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x2340, symBinAddr: 0x56C8, symSize: 0x8 } + - { offsetInCU: 0x24E0, offset: 0x5788D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x2348, symBinAddr: 0x56D0, symSize: 0x8 } + - { offsetInCU: 0x2567, offset: 0x57914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x30F8, symBinAddr: 0x6480, symSize: 0x22C } + - { offsetInCU: 0x26EA, offset: 0x57A97, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x3D40, symBinAddr: 0x70C8, symSize: 0x2C } + - { offsetInCU: 0x2A6F, offset: 0x57E1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4B98, symBinAddr: 0x7F20, symSize: 0x8 } + - { offsetInCU: 0x2AEF, offset: 0x57E9C, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x4DEC, symBinAddr: 0x8174, symSize: 0x3C } + - { offsetInCU: 0x2B3D, offset: 0x57EEA, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x4FD4, symBinAddr: 0x835C, symSize: 0x64 } + - { offsetInCU: 0x2CF4, offset: 0x580A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x578C, symBinAddr: 0x8B14, symSize: 0x4 } + - { offsetInCU: 0x2D14, offset: 0x580C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x578C, symBinAddr: 0x8B14, symSize: 0x4 } + - { offsetInCU: 0x2D39, offset: 0x580E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5790, symBinAddr: 0x8B18, symSize: 0x4 } + - { offsetInCU: 0x2D55, offset: 0x58102, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5794, symBinAddr: 0x8B1C, symSize: 0x4 } + - { offsetInCU: 0x2D71, offset: 0x5811E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x5798, symBinAddr: 0x8B20, symSize: 0x4 } + - { offsetInCU: 0x2D8D, offset: 0x5813A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x579C, symBinAddr: 0x8B24, symSize: 0x4 } + - { offsetInCU: 0x2DA9, offset: 0x58156, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x57A0, symBinAddr: 0x8B28, symSize: 0x4 } + - { offsetInCU: 0x2DC5, offset: 0x58172, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x57A4, symBinAddr: 0x8B2C, symSize: 0x204 } + - { offsetInCU: 0x2E55, offset: 0x58202, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x59A8, symBinAddr: 0x8D30, symSize: 0x140 } + - { offsetInCU: 0x2F62, offset: 0x5830F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5AE8, symBinAddr: 0x8E70, symSize: 0x2C } + - { offsetInCU: 0x2FB3, offset: 0x58360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5B14, symBinAddr: 0x8E9C, symSize: 0x8 } + - { offsetInCU: 0x3010, offset: 0x583BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5B1C, symBinAddr: 0x8EA4, symSize: 0x8 } + - { offsetInCU: 0x306D, offset: 0x5841A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5B24, symBinAddr: 0x8EAC, symSize: 0x8 } + - { offsetInCU: 0x30CA, offset: 0x58477, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5B2C, symBinAddr: 0x8EB4, symSize: 0x8 } + - { offsetInCU: 0x3127, offset: 0x584D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5B34, symBinAddr: 0x8EBC, symSize: 0x8 } + - { offsetInCU: 0x3184, offset: 0x58531, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5B3C, symBinAddr: 0x8EC4, symSize: 0x8 } + - { offsetInCU: 0x31E1, offset: 0x5858E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5B44, symBinAddr: 0x8ECC, symSize: 0x8 } + - { offsetInCU: 0x3238, offset: 0x585E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5B4C, symBinAddr: 0x8ED4, symSize: 0x4 } + - { offsetInCU: 0x3258, offset: 0x58605, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5B4C, symBinAddr: 0x8ED4, symSize: 0x4 } + - { offsetInCU: 0x326B, offset: 0x58618, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5B50, symBinAddr: 0x8ED8, symSize: 0x8 } + - { offsetInCU: 0x3283, offset: 0x58630, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5B58, symBinAddr: 0x8EE0, symSize: 0x10 } + - { offsetInCU: 0x329B, offset: 0x58648, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5B68, symBinAddr: 0x8EF0, symSize: 0x1C } + - { offsetInCU: 0x32B3, offset: 0x58660, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5B84, symBinAddr: 0x8F0C, symSize: 0x8 } + - { offsetInCU: 0x32CB, offset: 0x58678, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x5B8C, symBinAddr: 0x8F14, symSize: 0xC } + - { offsetInCU: 0x32E3, offset: 0x58690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x5B98, symBinAddr: 0x8F20, symSize: 0xC } + - { offsetInCU: 0x32FB, offset: 0x586A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x5BA4, symBinAddr: 0x8F2C, symSize: 0x8 } + - { offsetInCU: 0x3313, offset: 0x586C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x5BAC, symBinAddr: 0x8F34, symSize: 0x8 } + - { offsetInCU: 0x332B, offset: 0x586D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x5BB4, symBinAddr: 0x8F3C, symSize: 0x38 } + - { offsetInCU: 0x3343, offset: 0x586F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x5BEC, symBinAddr: 0x8F74, symSize: 0x8 } + - { offsetInCU: 0x335B, offset: 0x58708, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x5C1C, symBinAddr: 0x8FA4, symSize: 0x8 } + - { offsetInCU: 0x3373, offset: 0x58720, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5C24, symBinAddr: 0x8FAC, symSize: 0x8 } + - { offsetInCU: 0x338B, offset: 0x58738, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x5C2C, symBinAddr: 0x8FB4, symSize: 0x8 } + - { offsetInCU: 0x33A3, offset: 0x58750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5C34, symBinAddr: 0x8FBC, symSize: 0x8 } + - { offsetInCU: 0x33BB, offset: 0x58768, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x5C3C, symBinAddr: 0x8FC4, symSize: 0x8 } + - { offsetInCU: 0x33D3, offset: 0x58780, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x5C44, symBinAddr: 0x8FCC, symSize: 0x8 } + - { offsetInCU: 0x33EB, offset: 0x58798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x5C4C, symBinAddr: 0x8FD4, symSize: 0x8 } + - { offsetInCU: 0x3403, offset: 0x587B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5C54, symBinAddr: 0x8FDC, symSize: 0x8 } + - { offsetInCU: 0x341B, offset: 0x587C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x5C5C, symBinAddr: 0x8FE4, symSize: 0x8 } + - { offsetInCU: 0x3433, offset: 0x587E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x5C64, symBinAddr: 0x8FEC, symSize: 0x8 } + - { offsetInCU: 0x344B, offset: 0x587F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x5E2C, symBinAddr: 0x91B4, symSize: 0x24 } + - { offsetInCU: 0x347A, offset: 0x58827, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x5E50, symBinAddr: 0x91D8, symSize: 0x8 } + - { offsetInCU: 0x3492, offset: 0x5883F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x5E58, symBinAddr: 0x91E0, symSize: 0x8 } + - { offsetInCU: 0x34AA, offset: 0x58857, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x5E60, symBinAddr: 0x91E8, symSize: 0x8 } + - { offsetInCU: 0x34C2, offset: 0x5886F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x5E68, symBinAddr: 0x91F0, symSize: 0x8 } + - { offsetInCU: 0x34DA, offset: 0x58887, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x5E70, symBinAddr: 0x91F8, symSize: 0x8 } + - { offsetInCU: 0x34F2, offset: 0x5889F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x5E78, symBinAddr: 0x9200, symSize: 0x8 } + - { offsetInCU: 0x350A, offset: 0x588B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x5E80, symBinAddr: 0x9208, symSize: 0x18 } + - { offsetInCU: 0x3522, offset: 0x588CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x5E98, symBinAddr: 0x9220, symSize: 0x1C } + - { offsetInCU: 0x353A, offset: 0x588E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x5EB4, symBinAddr: 0x923C, symSize: 0xC } + - { offsetInCU: 0x3552, offset: 0x588FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x5EC0, symBinAddr: 0x9248, symSize: 0xC } + - { offsetInCU: 0x356A, offset: 0x58917, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x5ECC, symBinAddr: 0x9254, symSize: 0x8 } + - { offsetInCU: 0x3582, offset: 0x5892F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x5ED4, symBinAddr: 0x925C, symSize: 0x8 } + - { offsetInCU: 0x359A, offset: 0x58947, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x5EDC, symBinAddr: 0x9264, symSize: 0x8 } + - { offsetInCU: 0x35B2, offset: 0x5895F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x5EE4, symBinAddr: 0x926C, symSize: 0x8 } + - { offsetInCU: 0x35CA, offset: 0x58977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x5EEC, symBinAddr: 0x9274, symSize: 0x8 } + - { offsetInCU: 0x35E2, offset: 0x5898F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x5EF4, symBinAddr: 0x927C, symSize: 0x8 } + - { offsetInCU: 0x35FA, offset: 0x589A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x5EFC, symBinAddr: 0x9284, symSize: 0x8 } + - { offsetInCU: 0x3612, offset: 0x589BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x5F04, symBinAddr: 0x928C, symSize: 0x8 } + - { offsetInCU: 0x362A, offset: 0x589D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x5F0C, symBinAddr: 0x9294, symSize: 0x8 } + - { offsetInCU: 0x3642, offset: 0x589EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x5F14, symBinAddr: 0x929C, symSize: 0x8 } + - { offsetInCU: 0x365A, offset: 0x58A07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x5F1C, symBinAddr: 0x92A4, symSize: 0x24 } + - { offsetInCU: 0x369D, offset: 0x58A4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5F40, symBinAddr: 0x92C8, symSize: 0xC } + - { offsetInCU: 0x36B5, offset: 0x58A62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x5F4C, symBinAddr: 0x92D4, symSize: 0xC } + - { offsetInCU: 0x36CD, offset: 0x58A7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x5F58, symBinAddr: 0x92E0, symSize: 0x8 } + - { offsetInCU: 0x36E5, offset: 0x58A92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x5F60, symBinAddr: 0x92E8, symSize: 0xC } + - { offsetInCU: 0x36FD, offset: 0x58AAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x5F6C, symBinAddr: 0x92F4, symSize: 0x8 } + - { offsetInCU: 0x3715, offset: 0x58AC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x5F74, symBinAddr: 0x92FC, symSize: 0x8 } + - { offsetInCU: 0x372D, offset: 0x58ADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x5F7C, symBinAddr: 0x9304, symSize: 0xC } + - { offsetInCU: 0x3745, offset: 0x58AF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x5F88, symBinAddr: 0x9310, symSize: 0x8 } + - { offsetInCU: 0x375D, offset: 0x58B0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x5F90, symBinAddr: 0x9318, symSize: 0xC } + - { offsetInCU: 0x3775, offset: 0x58B22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x5F9C, symBinAddr: 0x9324, symSize: 0x10 } + - { offsetInCU: 0x378D, offset: 0x58B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x5FAC, symBinAddr: 0x9334, symSize: 0x8 } + - { offsetInCU: 0x37A5, offset: 0x58B52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x5FB4, symBinAddr: 0x933C, symSize: 0x1C } + - { offsetInCU: 0x37BD, offset: 0x58B6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x5FD0, symBinAddr: 0x9358, symSize: 0xC } + - { offsetInCU: 0x37D5, offset: 0x58B82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x5FDC, symBinAddr: 0x9364, symSize: 0xC } + - { offsetInCU: 0x37ED, offset: 0x58B9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x5FE8, symBinAddr: 0x9370, symSize: 0x8 } + - { offsetInCU: 0x3805, offset: 0x58BB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x5FF0, symBinAddr: 0x9378, symSize: 0x8 } + - { offsetInCU: 0x381D, offset: 0x58BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x5FF8, symBinAddr: 0x9380, symSize: 0x8 } + - { offsetInCU: 0x3835, offset: 0x58BE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6000, symBinAddr: 0x9388, symSize: 0x8 } + - { offsetInCU: 0x384D, offset: 0x58BFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x6008, symBinAddr: 0x9390, symSize: 0xC } + - { offsetInCU: 0x3865, offset: 0x58C12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x6014, symBinAddr: 0x939C, symSize: 0xC } + - { offsetInCU: 0x387D, offset: 0x58C2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x6020, symBinAddr: 0x93A8, symSize: 0xC } + - { offsetInCU: 0x3895, offset: 0x58C42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x602C, symBinAddr: 0x93B4, symSize: 0xC } + - { offsetInCU: 0x38AD, offset: 0x58C5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x6038, symBinAddr: 0x93C0, symSize: 0x8 } + - { offsetInCU: 0x38C5, offset: 0x58C72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x6040, symBinAddr: 0x93C8, symSize: 0x8 } + - { offsetInCU: 0x38DD, offset: 0x58C8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x6048, symBinAddr: 0x93D0, symSize: 0x8 } + - { offsetInCU: 0x38F5, offset: 0x58CA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6050, symBinAddr: 0x93D8, symSize: 0x10 } + - { offsetInCU: 0x390D, offset: 0x58CBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6060, symBinAddr: 0x93E8, symSize: 0x8 } + - { offsetInCU: 0x3925, offset: 0x58CD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6068, symBinAddr: 0x93F0, symSize: 0xC } + - { offsetInCU: 0x393D, offset: 0x58CEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6074, symBinAddr: 0x93FC, symSize: 0x8 } + - { offsetInCU: 0x3955, offset: 0x58D02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x607C, symBinAddr: 0x9404, symSize: 0x8 } + - { offsetInCU: 0x396D, offset: 0x58D1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x6084, symBinAddr: 0x940C, symSize: 0x8 } + - { offsetInCU: 0x3985, offset: 0x58D32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x608C, symBinAddr: 0x9414, symSize: 0x8 } + - { offsetInCU: 0x399D, offset: 0x58D4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x6094, symBinAddr: 0x941C, symSize: 0x8 } + - { offsetInCU: 0x39B5, offset: 0x58D62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x609C, symBinAddr: 0x9424, symSize: 0xC } + - { offsetInCU: 0x39CD, offset: 0x58D7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x60A8, symBinAddr: 0x9430, symSize: 0x8 } + - { offsetInCU: 0x39E5, offset: 0x58D92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x60B0, symBinAddr: 0x9438, symSize: 0xC } + - { offsetInCU: 0x39FD, offset: 0x58DAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x60BC, symBinAddr: 0x9444, symSize: 0xC } + - { offsetInCU: 0x3A15, offset: 0x58DC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x60C8, symBinAddr: 0x9450, symSize: 0x8 } + - { offsetInCU: 0x3A2D, offset: 0x58DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x60D0, symBinAddr: 0x9458, symSize: 0x8 } + - { offsetInCU: 0x3A45, offset: 0x58DF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x60D8, symBinAddr: 0x9460, symSize: 0x8 } + - { offsetInCU: 0x3A5D, offset: 0x58E0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x60E0, symBinAddr: 0x9468, symSize: 0xC } + - { offsetInCU: 0x3A75, offset: 0x58E22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x60EC, symBinAddr: 0x9474, symSize: 0xC } + - { offsetInCU: 0x3A8D, offset: 0x58E3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x60F8, symBinAddr: 0x9480, symSize: 0x8 } + - { offsetInCU: 0x3AA5, offset: 0x58E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x6100, symBinAddr: 0x9488, symSize: 0x8 } + - { offsetInCU: 0x3ABD, offset: 0x58E6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x6108, symBinAddr: 0x9490, symSize: 0x8 } + - { offsetInCU: 0x3AD5, offset: 0x58E82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x6110, symBinAddr: 0x9498, symSize: 0x8 } + - { offsetInCU: 0x3AED, offset: 0x58E9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x6118, symBinAddr: 0x94A0, symSize: 0x8 } + - { offsetInCU: 0x3B05, offset: 0x58EB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x6120, symBinAddr: 0x94A8, symSize: 0xC } + - { offsetInCU: 0x3B1D, offset: 0x58ECA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x612C, symBinAddr: 0x94B4, symSize: 0x8 } + - { offsetInCU: 0x3B35, offset: 0x58EE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x6134, symBinAddr: 0x94BC, symSize: 0x8 } + - { offsetInCU: 0x3B4D, offset: 0x58EFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x613C, symBinAddr: 0x94C4, symSize: 0x8 } + - { offsetInCU: 0x3B65, offset: 0x58F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x6144, symBinAddr: 0x94CC, symSize: 0x8 } + - { offsetInCU: 0x3B7D, offset: 0x58F2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x614C, symBinAddr: 0x94D4, symSize: 0x8 } + - { offsetInCU: 0x3B95, offset: 0x58F42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6154, symBinAddr: 0x94DC, symSize: 0xC } + - { offsetInCU: 0x3BAD, offset: 0x58F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6160, symBinAddr: 0x94E8, symSize: 0x8 } + - { offsetInCU: 0x3BC5, offset: 0x58F72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x6168, symBinAddr: 0x94F0, symSize: 0x8 } + - { offsetInCU: 0x3BDD, offset: 0x58F8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x6170, symBinAddr: 0x94F8, symSize: 0x8 } + - { offsetInCU: 0x3BF5, offset: 0x58FA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x6178, symBinAddr: 0x9500, symSize: 0x8 } + - { offsetInCU: 0x3C0D, offset: 0x58FBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x6180, symBinAddr: 0x9508, symSize: 0xC } + - { offsetInCU: 0x3C25, offset: 0x58FD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x618C, symBinAddr: 0x9514, symSize: 0x8 } + - { offsetInCU: 0x3C3D, offset: 0x58FEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6194, symBinAddr: 0x951C, symSize: 0xC } + - { offsetInCU: 0x3C55, offset: 0x59002, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x61A0, symBinAddr: 0x9528, symSize: 0x8 } + - { offsetInCU: 0x3C6D, offset: 0x5901A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x61A8, symBinAddr: 0x9530, symSize: 0x8 } + - { offsetInCU: 0x3C85, offset: 0x59032, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x61B0, symBinAddr: 0x9538, symSize: 0x8 } + - { offsetInCU: 0x3C9D, offset: 0x5904A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x61B8, symBinAddr: 0x9540, symSize: 0x8 } + - { offsetInCU: 0x3CB5, offset: 0x59062, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x61C0, symBinAddr: 0x9548, symSize: 0xC } + - { offsetInCU: 0x3CCD, offset: 0x5907A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x61CC, symBinAddr: 0x9554, symSize: 0x8 } + - { offsetInCU: 0x3CE5, offset: 0x59092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x61D4, symBinAddr: 0x955C, symSize: 0xC } + - { offsetInCU: 0x3CFD, offset: 0x590AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x61E0, symBinAddr: 0x9568, symSize: 0x8 } + - { offsetInCU: 0x3D15, offset: 0x590C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x61E8, symBinAddr: 0x9570, symSize: 0xC } + - { offsetInCU: 0x3D2D, offset: 0x590DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x61F4, symBinAddr: 0x957C, symSize: 0xC } + - { offsetInCU: 0x3D45, offset: 0x590F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6200, symBinAddr: 0x9588, symSize: 0x8 } + - { offsetInCU: 0x3D5D, offset: 0x5910A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6208, symBinAddr: 0x9590, symSize: 0x8 } + - { offsetInCU: 0x3D75, offset: 0x59122, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x6210, symBinAddr: 0x9598, symSize: 0xC } + - { offsetInCU: 0x3D8D, offset: 0x5913A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x621C, symBinAddr: 0x95A4, symSize: 0x8 } + - { offsetInCU: 0x3DA5, offset: 0x59152, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x6224, symBinAddr: 0x95AC, symSize: 0x8 } + - { offsetInCU: 0x3DBD, offset: 0x5916A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x622C, symBinAddr: 0x95B4, symSize: 0x8 } + - { offsetInCU: 0x3DD5, offset: 0x59182, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x6234, symBinAddr: 0x95BC, symSize: 0x8 } + - { offsetInCU: 0x429D, offset: 0x5964A, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x6B40, symBinAddr: 0x9EB4, symSize: 0x148 } + - { offsetInCU: 0x435B, offset: 0x59708, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x7C30, symBinAddr: 0xAFA4, symSize: 0x40 } + - { offsetInCU: 0x436F, offset: 0x5971C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x7C94, symBinAddr: 0xB008, symSize: 0x8 } + - { offsetInCU: 0x4383, offset: 0x59730, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x7C9C, symBinAddr: 0xB010, symSize: 0x24 } + - { offsetInCU: 0x4397, offset: 0x59744, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x7CC0, symBinAddr: 0xB034, symSize: 0x20 } + - { offsetInCU: 0x43AB, offset: 0x59758, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x7CE0, symBinAddr: 0xB054, symSize: 0x28 } + - { offsetInCU: 0x4462, offset: 0x5980F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x7EE8, symBinAddr: 0xB25C, symSize: 0x20 } + - { offsetInCU: 0x4476, offset: 0x59823, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOb', symObjAddr: 0x7F08, symBinAddr: 0xB27C, symSize: 0x18 } + - { offsetInCU: 0x448A, offset: 0x59837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x7F58, symBinAddr: 0xB2CC, symSize: 0x8 } + - { offsetInCU: 0x449E, offset: 0x5984B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x7F60, symBinAddr: 0xB2D4, symSize: 0x10 } + - { offsetInCU: 0x44B2, offset: 0x5985F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x7F70, symBinAddr: 0xB2E4, symSize: 0x8 } + - { offsetInCU: 0x44C6, offset: 0x59873, size: 0x8, addend: 0x0, symName: '_$s8Dispatch0A13WorkItemFlagsVACs10SetAlgebraAAWl', symObjAddr: 0x7F78, symBinAddr: 0xB2EC, symSize: 0x48 } + - { offsetInCU: 0x44DA, offset: 0x59887, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGSayxGSTsWl', symObjAddr: 0x7FC0, symBinAddr: 0xB334, symSize: 0x4C } + - { offsetInCU: 0x44EE, offset: 0x5989B, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x800C, symBinAddr: 0xB380, symSize: 0x44 } + - { offsetInCU: 0x4502, offset: 0x598AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8050, symBinAddr: 0xB3C4, symSize: 0x8 } + - { offsetInCU: 0x4516, offset: 0x598C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x8084, symBinAddr: 0xB3F8, symSize: 0x10 } + - { offsetInCU: 0x452A, offset: 0x598D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x8094, symBinAddr: 0xB408, symSize: 0x6C } + - { offsetInCU: 0x453E, offset: 0x598EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x8100, symBinAddr: 0xB474, symSize: 0x6C } + - { offsetInCU: 0x4552, offset: 0x598FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8190, symBinAddr: 0xB504, symSize: 0xC } + - { offsetInCU: 0x4566, offset: 0x59913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x819C, symBinAddr: 0xB510, symSize: 0x8 } + - { offsetInCU: 0x4AA5, offset: 0x59E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xA574, symBinAddr: 0xD8E8, symSize: 0x4 } + - { offsetInCU: 0x4AB9, offset: 0x59E66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xA578, symBinAddr: 0xD8EC, symSize: 0x44 } + - { offsetInCU: 0x4ACD, offset: 0x59E7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xA5BC, symBinAddr: 0xD930, symSize: 0x10 } + - { offsetInCU: 0x4AE1, offset: 0x59E8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xA638, symBinAddr: 0xD9AC, symSize: 0x24 } + - { offsetInCU: 0x4AF5, offset: 0x59EA2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xA660, symBinAddr: 0xD9D4, symSize: 0x44 } + - { offsetInCU: 0x4B09, offset: 0x59EB6, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xA6A4, symBinAddr: 0xDA18, symSize: 0x28 } + - { offsetInCU: 0x4B1D, offset: 0x59ECA, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xA6CC, symBinAddr: 0xDA40, symSize: 0x28 } + - { offsetInCU: 0x4B31, offset: 0x59EDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xA6FC, symBinAddr: 0xDA70, symSize: 0x8 } + - { offsetInCU: 0x4B45, offset: 0x59EF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xA728, symBinAddr: 0xDA9C, symSize: 0x8 } + - { offsetInCU: 0x4B59, offset: 0x59F06, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xA740, symBinAddr: 0xDAB4, symSize: 0x8 } + - { offsetInCU: 0x4B6D, offset: 0x59F1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xA748, symBinAddr: 0xDABC, symSize: 0x8 } + - { offsetInCU: 0x4B81, offset: 0x59F2E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xA8A0, symBinAddr: 0xDC14, symSize: 0x14 } + - { offsetInCU: 0x4B95, offset: 0x59F42, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xA8B4, symBinAddr: 0xDC28, symSize: 0x44 } + - { offsetInCU: 0x4BA9, offset: 0x59F56, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xA8F8, symBinAddr: 0xDC6C, symSize: 0x14 } + - { offsetInCU: 0x4BBD, offset: 0x59F6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xA988, symBinAddr: 0xDCFC, symSize: 0xC0 } + - { offsetInCU: 0x4BD1, offset: 0x59F7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xAAB0, symBinAddr: 0xDE24, symSize: 0x44 } + - { offsetInCU: 0x4BE5, offset: 0x59F92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xAB28, symBinAddr: 0xDE9C, symSize: 0x44 } + - { offsetInCU: 0x4BF9, offset: 0x59FA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xAB98, symBinAddr: 0xDF0C, symSize: 0xC } + - { offsetInCU: 0x4C6C, offset: 0x5A019, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x148, symBinAddr: 0x34D0, symSize: 0x14 } + - { offsetInCU: 0x4D28, offset: 0x5A0D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x15C, symBinAddr: 0x34E4, symSize: 0x44 } + - { offsetInCU: 0x4DB7, offset: 0x5A164, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A0, symBinAddr: 0x3528, symSize: 0x28 } + - { offsetInCU: 0x4E0A, offset: 0x5A1B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1C8, symBinAddr: 0x3550, symSize: 0x40 } + - { offsetInCU: 0x538F, offset: 0x5A73C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTgm5Tf4g_n', symObjAddr: 0x7D08, symBinAddr: 0xB07C, symSize: 0xE4 } + - { offsetInCU: 0x54F1, offset: 0x5A89E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x82AC, symBinAddr: 0xB620, symSize: 0xF0 } + - { offsetInCU: 0x5AA8, offset: 0x5AE55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x3388, symSize: 0x4 } + - { offsetInCU: 0x5ABC, offset: 0x5AE69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x4, symBinAddr: 0x338C, symSize: 0x4 } + - { offsetInCU: 0x5ADD, offset: 0x5AE8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x8, symBinAddr: 0x3390, symSize: 0x28 } + - { offsetInCU: 0x5AF8, offset: 0x5AEA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x30, symBinAddr: 0x33B8, symSize: 0x118 } + - { offsetInCU: 0x5BE3, offset: 0x5AF90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x35C, symBinAddr: 0x36E4, symSize: 0x48 } + - { offsetInCU: 0x5C02, offset: 0x5AFAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x3A4, symBinAddr: 0x372C, symSize: 0x58 } + - { offsetInCU: 0x5C37, offset: 0x5AFE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x3FC, symBinAddr: 0x3784, symSize: 0x70 } + - { offsetInCU: 0x5C5C, offset: 0x5B009, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x46C, symBinAddr: 0x37F4, symSize: 0x6C } + - { offsetInCU: 0x5C7D, offset: 0x5B02A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x528, symBinAddr: 0x38B0, symSize: 0x44 } + - { offsetInCU: 0x5CA2, offset: 0x5B04F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvg', symObjAddr: 0x574, symBinAddr: 0x38FC, symSize: 0x44 } + - { offsetInCU: 0x5CC1, offset: 0x5B06E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvs', symObjAddr: 0x5B8, symBinAddr: 0x3940, symSize: 0x48 } + - { offsetInCU: 0x5CF6, offset: 0x5B0A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x600, symBinAddr: 0x3988, symSize: 0x44 } + - { offsetInCU: 0x5D1B, offset: 0x5B0C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x6B4, symBinAddr: 0x3A3C, symSize: 0x44 } + - { offsetInCU: 0x5D40, offset: 0x5B0ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x71C, symBinAddr: 0x3AA4, symSize: 0x44 } + - { offsetInCU: 0x5D65, offset: 0x5B112, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x82C, symBinAddr: 0x3BB4, symSize: 0x44 } + - { offsetInCU: 0x5D8A, offset: 0x5B137, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvg', symObjAddr: 0x878, symBinAddr: 0x3C00, symSize: 0x44 } + - { offsetInCU: 0x5DA9, offset: 0x5B156, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvs', symObjAddr: 0x8BC, symBinAddr: 0x3C44, symSize: 0x48 } + - { offsetInCU: 0x5DDA, offset: 0x5B187, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x904, symBinAddr: 0x3C8C, symSize: 0x44 } + - { offsetInCU: 0x5DFF, offset: 0x5B1AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x950, symBinAddr: 0x3CD8, symSize: 0x50 } + - { offsetInCU: 0x5E1E, offset: 0x5B1CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0x9A0, symBinAddr: 0x3D28, symSize: 0x50 } + - { offsetInCU: 0x5E53, offset: 0x5B200, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0x9F0, symBinAddr: 0x3D78, symSize: 0x44 } + - { offsetInCU: 0x5E78, offset: 0x5B225, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0xA34, symBinAddr: 0x3DBC, symSize: 0x4 } + - { offsetInCU: 0x5ECC, offset: 0x5B279, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0xA38, symBinAddr: 0x3DC0, symSize: 0xC0 } + - { offsetInCU: 0x5F3B, offset: 0x5B2E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xB04, symBinAddr: 0x3E8C, symSize: 0xF4 } + - { offsetInCU: 0x5FAD, offset: 0x5B35A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xC04, symBinAddr: 0x3F8C, symSize: 0x44 } + - { offsetInCU: 0x5FCC, offset: 0x5B379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xC48, symBinAddr: 0x3FD0, symSize: 0x50 } + - { offsetInCU: 0x6001, offset: 0x5B3AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xC98, symBinAddr: 0x4020, symSize: 0x44 } + - { offsetInCU: 0x608F, offset: 0x5B43C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xDFC, symBinAddr: 0x4184, symSize: 0x214 } + - { offsetInCU: 0x6110, offset: 0x5B4BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4BA0, symBinAddr: 0x7F28, symSize: 0x5C } + - { offsetInCU: 0x614F, offset: 0x5B4FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0x1010, symBinAddr: 0x4398, symSize: 0x44 } + - { offsetInCU: 0x6182, offset: 0x5B52F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x1054, symBinAddr: 0x43DC, symSize: 0x90 } + - { offsetInCU: 0x61CA, offset: 0x5B577, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x10E4, symBinAddr: 0x446C, symSize: 0x48 } + - { offsetInCU: 0x61EF, offset: 0x5B59C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x112C, symBinAddr: 0x44B4, symSize: 0x80 } + - { offsetInCU: 0x6251, offset: 0x5B5FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x11B0, symBinAddr: 0x4538, symSize: 0x20 } + - { offsetInCU: 0x6271, offset: 0x5B61E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x11B0, symBinAddr: 0x4538, symSize: 0x20 } + - { offsetInCU: 0x62CF, offset: 0x5B67C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x11D0, symBinAddr: 0x4558, symSize: 0x20 } + - { offsetInCU: 0x6304, offset: 0x5B6B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x11D0, symBinAddr: 0x4558, symSize: 0x20 } + - { offsetInCU: 0x635A, offset: 0x5B707, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x11F0, symBinAddr: 0x4578, symSize: 0x34 } + - { offsetInCU: 0x63BD, offset: 0x5B76A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1224, symBinAddr: 0x45AC, symSize: 0x20 } + - { offsetInCU: 0x63E1, offset: 0x5B78E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1224, symBinAddr: 0x45AC, symSize: 0x20 } + - { offsetInCU: 0x63F5, offset: 0x5B7A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1224, symBinAddr: 0x45AC, symSize: 0x20 } + - { offsetInCU: 0x641C, offset: 0x5B7C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1244, symBinAddr: 0x45CC, symSize: 0x20 } + - { offsetInCU: 0x643C, offset: 0x5B7E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1244, symBinAddr: 0x45CC, symSize: 0x20 } + - { offsetInCU: 0x649A, offset: 0x5B847, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x1264, symBinAddr: 0x45EC, symSize: 0x20 } + - { offsetInCU: 0x64CE, offset: 0x5B87B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x1264, symBinAddr: 0x45EC, symSize: 0x20 } + - { offsetInCU: 0x6523, offset: 0x5B8D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x1284, symBinAddr: 0x460C, symSize: 0x34 } + - { offsetInCU: 0x6586, offset: 0x5B933, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12B8, symBinAddr: 0x4640, symSize: 0x20 } + - { offsetInCU: 0x65AA, offset: 0x5B957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12B8, symBinAddr: 0x4640, symSize: 0x20 } + - { offsetInCU: 0x65BE, offset: 0x5B96B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x12B8, symBinAddr: 0x4640, symSize: 0x20 } + - { offsetInCU: 0x65E5, offset: 0x5B992, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x12D8, symBinAddr: 0x4660, symSize: 0x20 } + - { offsetInCU: 0x6605, offset: 0x5B9B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x12D8, symBinAddr: 0x4660, symSize: 0x20 } + - { offsetInCU: 0x665E, offset: 0x5BA0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x12F8, symBinAddr: 0x4680, symSize: 0x20 } + - { offsetInCU: 0x6692, offset: 0x5BA3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x12F8, symBinAddr: 0x4680, symSize: 0x20 } + - { offsetInCU: 0x66E7, offset: 0x5BA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1318, symBinAddr: 0x46A0, symSize: 0x34 } + - { offsetInCU: 0x674A, offset: 0x5BAF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x134C, symBinAddr: 0x46D4, symSize: 0x20 } + - { offsetInCU: 0x676E, offset: 0x5BB1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x134C, symBinAddr: 0x46D4, symSize: 0x20 } + - { offsetInCU: 0x6782, offset: 0x5BB2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x134C, symBinAddr: 0x46D4, symSize: 0x20 } + - { offsetInCU: 0x6795, offset: 0x5BB42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvg', symObjAddr: 0x1374, symBinAddr: 0x46FC, symSize: 0x44 } + - { offsetInCU: 0x67B4, offset: 0x5BB61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvs', symObjAddr: 0x13B8, symBinAddr: 0x4740, symSize: 0x48 } + - { offsetInCU: 0x67E9, offset: 0x5BB96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x1400, symBinAddr: 0x4788, symSize: 0x44 } + - { offsetInCU: 0x680E, offset: 0x5BBBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvg', symObjAddr: 0x1454, symBinAddr: 0x47DC, symSize: 0x44 } + - { offsetInCU: 0x682D, offset: 0x5BBDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvs', symObjAddr: 0x1498, symBinAddr: 0x4820, symSize: 0x48 } + - { offsetInCU: 0x685E, offset: 0x5BC0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x14E0, symBinAddr: 0x4868, symSize: 0x44 } + - { offsetInCU: 0x6883, offset: 0x5BC30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x152C, symBinAddr: 0x48B4, symSize: 0x44 } + - { offsetInCU: 0x68A2, offset: 0x5BC4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1570, symBinAddr: 0x48F8, symSize: 0x48 } + - { offsetInCU: 0x68D7, offset: 0x5BC84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x15B8, symBinAddr: 0x4940, symSize: 0x44 } + - { offsetInCU: 0x68FC, offset: 0x5BCA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1604, symBinAddr: 0x498C, symSize: 0x44 } + - { offsetInCU: 0x691B, offset: 0x5BCC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1648, symBinAddr: 0x49D0, symSize: 0x48 } + - { offsetInCU: 0x6950, offset: 0x5BCFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1690, symBinAddr: 0x4A18, symSize: 0x44 } + - { offsetInCU: 0x6994, offset: 0x5BD41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x16EC, symBinAddr: 0x4A74, symSize: 0x78 } + - { offsetInCU: 0x69FF, offset: 0x5BDAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x1764, symBinAddr: 0x4AEC, symSize: 0x7C } + - { offsetInCU: 0x6A77, offset: 0x5BE24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x17E0, symBinAddr: 0x4B68, symSize: 0x90 } + - { offsetInCU: 0x6AD0, offset: 0x5BE7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x1870, symBinAddr: 0x4BF8, symSize: 0x24 } + - { offsetInCU: 0x6AF1, offset: 0x5BE9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x1894, symBinAddr: 0x4C1C, symSize: 0x88 } + - { offsetInCU: 0x6B43, offset: 0x5BEF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x191C, symBinAddr: 0x4CA4, symSize: 0x7C } + - { offsetInCU: 0x6BA4, offset: 0x5BF51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x1998, symBinAddr: 0x4D20, symSize: 0xA8 } + - { offsetInCU: 0x6BF8, offset: 0x5BFA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1A40, symBinAddr: 0x4DC8, symSize: 0x80 } + - { offsetInCU: 0x6C57, offset: 0x5C004, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1AC0, symBinAddr: 0x4E48, symSize: 0xC8 } + - { offsetInCU: 0x6CD7, offset: 0x5C084, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1B88, symBinAddr: 0x4F10, symSize: 0xD4 } + - { offsetInCU: 0x6D5A, offset: 0x5C107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1C5C, symBinAddr: 0x4FE4, symSize: 0xFC } + - { offsetInCU: 0x6DEC, offset: 0x5C199, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1D58, symBinAddr: 0x50E0, symSize: 0x130 } + - { offsetInCU: 0x6E8F, offset: 0x5C23C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1E88, symBinAddr: 0x5210, symSize: 0xC0 } + - { offsetInCU: 0x6F01, offset: 0x5C2AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x2014, symBinAddr: 0x539C, symSize: 0xF4 } + - { offsetInCU: 0x6F76, offset: 0x5C323, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x21F8, symBinAddr: 0x5580, symSize: 0x48 } + - { offsetInCU: 0x6F9C, offset: 0x5C349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2240, symBinAddr: 0x55C8, symSize: 0x50 } + - { offsetInCU: 0x6FD3, offset: 0x5C380, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2290, symBinAddr: 0x5618, symSize: 0x44 } + - { offsetInCU: 0x6FF2, offset: 0x5C39F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2384, symBinAddr: 0x570C, symSize: 0x44 } + - { offsetInCU: 0x7018, offset: 0x5C3C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x23FC, symBinAddr: 0x5784, symSize: 0x44 } + - { offsetInCU: 0x703E, offset: 0x5C3EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x2474, symBinAddr: 0x57FC, symSize: 0x44 } + - { offsetInCU: 0x7064, offset: 0x5C411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x24E8, symBinAddr: 0x5870, symSize: 0x44 } + - { offsetInCU: 0x708A, offset: 0x5C437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x2560, symBinAddr: 0x58E8, symSize: 0x44 } + - { offsetInCU: 0x70B0, offset: 0x5C45D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x25D4, symBinAddr: 0x595C, symSize: 0x44 } + - { offsetInCU: 0x70D6, offset: 0x5C483, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x264C, symBinAddr: 0x59D4, symSize: 0x44 } + - { offsetInCU: 0x70FC, offset: 0x5C4A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x26C4, symBinAddr: 0x5A4C, symSize: 0x44 } + - { offsetInCU: 0x7122, offset: 0x5C4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x273C, symBinAddr: 0x5AC4, symSize: 0x44 } + - { offsetInCU: 0x7148, offset: 0x5C4F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x27B4, symBinAddr: 0x5B3C, symSize: 0x44 } + - { offsetInCU: 0x716E, offset: 0x5C51B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2828, symBinAddr: 0x5BB0, symSize: 0x44 } + - { offsetInCU: 0x7194, offset: 0x5C541, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2948, symBinAddr: 0x5CD0, symSize: 0x44 } + - { offsetInCU: 0x71C0, offset: 0x5C56D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x298C, symBinAddr: 0x5D14, symSize: 0x70 } + - { offsetInCU: 0x7206, offset: 0x5C5B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x29FC, symBinAddr: 0x5D84, symSize: 0x560 } + - { offsetInCU: 0x7413, offset: 0x5C7C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x2F5C, symBinAddr: 0x62E4, symSize: 0x178 } + - { offsetInCU: 0x7543, offset: 0x5C8F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x3324, symBinAddr: 0x66AC, symSize: 0x330 } + - { offsetInCU: 0x76E7, offset: 0x5CA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3654, symBinAddr: 0x69DC, symSize: 0x8 } + - { offsetInCU: 0x77E5, offset: 0x5CB92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x365C, symBinAddr: 0x69E4, symSize: 0x624 } + - { offsetInCU: 0x7AD3, offset: 0x5CE80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x3C80, symBinAddr: 0x7008, symSize: 0xC0 } + - { offsetInCU: 0x7BBB, offset: 0x5CF68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x3D6C, symBinAddr: 0x70F4, symSize: 0xC8 } + - { offsetInCU: 0x7C86, offset: 0x5D033, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x3E34, symBinAddr: 0x71BC, symSize: 0x100 } + - { offsetInCU: 0x7D02, offset: 0x5D0AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x3F34, symBinAddr: 0x72BC, symSize: 0xB0 } + - { offsetInCU: 0x7DF1, offset: 0x5D19E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x3FE4, symBinAddr: 0x736C, symSize: 0x148 } + - { offsetInCU: 0x7F9C, offset: 0x5D349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x412C, symBinAddr: 0x74B4, symSize: 0x4E4 } + - { offsetInCU: 0x81D7, offset: 0x5D584, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x4610, symBinAddr: 0x7998, symSize: 0x7C } + - { offsetInCU: 0x8244, offset: 0x5D5F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x468C, symBinAddr: 0x7A14, symSize: 0xBC } + - { offsetInCU: 0x8376, offset: 0x5D723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4748, symBinAddr: 0x7AD0, symSize: 0x78 } + - { offsetInCU: 0x8447, offset: 0x5D7F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x47C0, symBinAddr: 0x7B48, symSize: 0xF8 } + - { offsetInCU: 0x8667, offset: 0x5DA14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x48B8, symBinAddr: 0x7C40, symSize: 0x134 } + - { offsetInCU: 0x8819, offset: 0x5DBC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x49EC, symBinAddr: 0x7D74, symSize: 0xF0 } + - { offsetInCU: 0x894B, offset: 0x5DCF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4ADC, symBinAddr: 0x7E64, symSize: 0x20 } + - { offsetInCU: 0x895F, offset: 0x5DD0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4AFC, symBinAddr: 0x7E84, symSize: 0x2C } + - { offsetInCU: 0x89BF, offset: 0x5DD6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4BFC, symBinAddr: 0x7F84, symSize: 0x4 } + - { offsetInCU: 0x8A33, offset: 0x5DDE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x4C00, symBinAddr: 0x7F88, symSize: 0x1EC } + - { offsetInCU: 0x8B28, offset: 0x5DED5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x4E28, symBinAddr: 0x81B0, symSize: 0x1AC } + - { offsetInCU: 0x8C03, offset: 0x5DFB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5038, symBinAddr: 0x83C0, symSize: 0xC4 } + - { offsetInCU: 0x8C7E, offset: 0x5E02B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x50FC, symBinAddr: 0x8484, symSize: 0x4 } + - { offsetInCU: 0x8D65, offset: 0x5E112, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5100, symBinAddr: 0x8488, symSize: 0x24C } + - { offsetInCU: 0x919C, offset: 0x5E549, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x534C, symBinAddr: 0x86D4, symSize: 0x390 } + - { offsetInCU: 0x93C3, offset: 0x5E770, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x56DC, symBinAddr: 0x8A64, symSize: 0xB0 } + - { offsetInCU: 0x958E, offset: 0x5E93B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5UInt8V_Tg5', symObjAddr: 0x6250, symBinAddr: 0x95C4, symSize: 0xE8 } + - { offsetInCU: 0x96C4, offset: 0x5EA71, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x6338, symBinAddr: 0x96AC, symSize: 0x134 } + - { offsetInCU: 0x97FA, offset: 0x5EBA7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x646C, symBinAddr: 0x97E0, symSize: 0xFC } + - { offsetInCU: 0x9929, offset: 0x5ECD6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x6580, symBinAddr: 0x98F4, symSize: 0x104 } + - { offsetInCU: 0x9A5F, offset: 0x5EE0C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x6774, symBinAddr: 0x9AE8, symSize: 0x118 } + - { offsetInCU: 0x9B72, offset: 0x5EF1F, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x688C, symBinAddr: 0x9C00, symSize: 0xA4 } + - { offsetInCU: 0x9D91, offset: 0x5F13E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x839C, symBinAddr: 0xB710, symSize: 0x330 } + - { offsetInCU: 0x9FE6, offset: 0x5F393, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x86CC, symBinAddr: 0xBA40, symSize: 0x68C } + - { offsetInCU: 0xA56C, offset: 0x5F919, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x8D58, symBinAddr: 0xC0CC, symSize: 0x468 } + - { offsetInCU: 0xA927, offset: 0x5FCD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x91C0, symBinAddr: 0xC534, symSize: 0x224 } + - { offsetInCU: 0xAA8C, offset: 0x5FE39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x93E4, symBinAddr: 0xC758, symSize: 0x190 } + - { offsetInCU: 0xABB3, offset: 0x5FF60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9574, symBinAddr: 0xC8E8, symSize: 0x1A0 } + - { offsetInCU: 0xAD0E, offset: 0x600BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9714, symBinAddr: 0xCA88, symSize: 0x23C } + - { offsetInCU: 0xAF80, offset: 0x6032D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0x9950, symBinAddr: 0xCCC4, symSize: 0x748 } + - { offsetInCU: 0xB644, offset: 0x609F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA098, symBinAddr: 0xD40C, symSize: 0x39C } + - { offsetInCU: 0xB99B, offset: 0x60D48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xA434, symBinAddr: 0xD7A8, symSize: 0x140 } + - { offsetInCU: 0x19A, offset: 0x61054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x31C, symBinAddr: 0xE380, symSize: 0x20 } + - { offsetInCU: 0x1CB, offset: 0x61085, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x33C, symBinAddr: 0xE3A0, symSize: 0xC } + - { offsetInCU: 0x1E7, offset: 0x610A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x348, symBinAddr: 0xE3AC, symSize: 0xA0 } + - { offsetInCU: 0x248, offset: 0x61102, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x3E8, symBinAddr: 0xE44C, symSize: 0x104 } + - { offsetInCU: 0x5BE, offset: 0x61478, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xDC8, symBinAddr: 0xEE2C, symSize: 0x118 } + - { offsetInCU: 0xB1E, offset: 0x619D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x24F4, symBinAddr: 0x10558, symSize: 0x10 } + - { offsetInCU: 0xB36, offset: 0x619F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2504, symBinAddr: 0x10568, symSize: 0x4 } + - { offsetInCU: 0xB96, offset: 0x61A50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x256C, symBinAddr: 0x105D0, symSize: 0x10 } + - { offsetInCU: 0xBAE, offset: 0x61A68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x257C, symBinAddr: 0x105E0, symSize: 0x4 } + - { offsetInCU: 0xC0E, offset: 0x61AC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x25E4, symBinAddr: 0x10648, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x61AE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x25F4, symBinAddr: 0x10658, symSize: 0x4 } + - { offsetInCU: 0xC86, offset: 0x61B40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x265C, symBinAddr: 0x106C0, symSize: 0x10 } + - { offsetInCU: 0xCB5, offset: 0x61B6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x26D0, symBinAddr: 0x10734, symSize: 0x10 } + - { offsetInCU: 0xCCD, offset: 0x61B87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x26E0, symBinAddr: 0x10744, symSize: 0x4 } + - { offsetInCU: 0xD3C, offset: 0x61BF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x2748, symBinAddr: 0x107AC, symSize: 0x10 } + - { offsetInCU: 0xD54, offset: 0x61C0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2758, symBinAddr: 0x107BC, symSize: 0x4 } + - { offsetInCU: 0xDC3, offset: 0x61C7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x27C0, symBinAddr: 0x10824, symSize: 0x10 } + - { offsetInCU: 0xDDB, offset: 0x61C95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x27D0, symBinAddr: 0x10834, symSize: 0x4 } + - { offsetInCU: 0xE3B, offset: 0x61CF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2838, symBinAddr: 0x1089C, symSize: 0x10 } + - { offsetInCU: 0xE53, offset: 0x61D0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2848, symBinAddr: 0x108AC, symSize: 0x4 } + - { offsetInCU: 0xE95, offset: 0x61D4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x28B0, symBinAddr: 0x10914, symSize: 0x10 } + - { offsetInCU: 0xEAD, offset: 0x61D67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x28C0, symBinAddr: 0x10924, symSize: 0x4 } + - { offsetInCU: 0xEEF, offset: 0x61DA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2928, symBinAddr: 0x1098C, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x61DC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2938, symBinAddr: 0x1099C, symSize: 0x4 } + - { offsetInCU: 0xF58, offset: 0x61E12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x29A0, symBinAddr: 0x10A04, symSize: 0x10 } + - { offsetInCU: 0xF87, offset: 0x61E41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2A14, symBinAddr: 0x10A78, symSize: 0x10 } + - { offsetInCU: 0xFB6, offset: 0x61E70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2A88, symBinAddr: 0x10AEC, symSize: 0x10 } + - { offsetInCU: 0xFCE, offset: 0x61E88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x2A98, symBinAddr: 0x10AFC, symSize: 0x4 } + - { offsetInCU: 0x1030, offset: 0x61EEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2B00, symBinAddr: 0x10B64, symSize: 0x10 } + - { offsetInCU: 0x105F, offset: 0x61F19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x2B74, symBinAddr: 0x10BD8, symSize: 0x10 } + - { offsetInCU: 0x1077, offset: 0x61F31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x2B84, symBinAddr: 0x10BE8, symSize: 0x4 } + - { offsetInCU: 0x1135, offset: 0x61FEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x363C, symBinAddr: 0x116A0, symSize: 0x24 } + - { offsetInCU: 0x14D6, offset: 0x62390, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x4FE4, symBinAddr: 0x13048, symSize: 0x2C } + - { offsetInCU: 0x153D, offset: 0x623F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x5010, symBinAddr: 0x13074, symSize: 0x44 } + - { offsetInCU: 0x163B, offset: 0x624F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x69C8, symBinAddr: 0x14980, symSize: 0x234 } + - { offsetInCU: 0x180F, offset: 0x626C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x6E18, symBinAddr: 0x14DD0, symSize: 0x24C } + - { offsetInCU: 0x19E3, offset: 0x6289D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x7064, symBinAddr: 0x1501C, symSize: 0x200 } + - { offsetInCU: 0x1BB7, offset: 0x62A71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x7264, symBinAddr: 0x1521C, symSize: 0x22C } + - { offsetInCU: 0x1D8B, offset: 0x62C45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x7490, symBinAddr: 0x15448, symSize: 0x270 } + - { offsetInCU: 0x1F5F, offset: 0x62E19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x7700, symBinAddr: 0x156B8, symSize: 0x25C } + - { offsetInCU: 0x2133, offset: 0x62FED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x795C, symBinAddr: 0x15914, symSize: 0x234 } + - { offsetInCU: 0x2514, offset: 0x633CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x7B90, symBinAddr: 0x15B48, symSize: 0x308 } + - { offsetInCU: 0x25C7, offset: 0x63481, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x7E98, symBinAddr: 0x15E50, symSize: 0x30C } + - { offsetInCU: 0x267A, offset: 0x63534, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x81A4, symBinAddr: 0x1615C, symSize: 0x30C } + - { offsetInCU: 0x28A5, offset: 0x6375F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x3660, symBinAddr: 0x116C4, symSize: 0x288 } + - { offsetInCU: 0x2CB7, offset: 0x63B71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x5054, symBinAddr: 0x130B8, symSize: 0x8 } + - { offsetInCU: 0x2EE6, offset: 0x63DA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5BA8, symBinAddr: 0x13C0C, symSize: 0x4 } + - { offsetInCU: 0x2F06, offset: 0x63DC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5BA8, symBinAddr: 0x13C0C, symSize: 0x4 } + - { offsetInCU: 0x2F2B, offset: 0x63DE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5BAC, symBinAddr: 0x13C10, symSize: 0x4 } + - { offsetInCU: 0x2F47, offset: 0x63E01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5BB0, symBinAddr: 0x13C14, symSize: 0x4 } + - { offsetInCU: 0x2F63, offset: 0x63E1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5BB4, symBinAddr: 0x13C18, symSize: 0x4 } + - { offsetInCU: 0x2F7F, offset: 0x63E39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5BB8, symBinAddr: 0x13C1C, symSize: 0x4 } + - { offsetInCU: 0x2F9B, offset: 0x63E55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5BBC, symBinAddr: 0x13C20, symSize: 0x4 } + - { offsetInCU: 0x2FB7, offset: 0x63E71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5BC0, symBinAddr: 0x13C24, symSize: 0x204 } + - { offsetInCU: 0x3047, offset: 0x63F01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5DC4, symBinAddr: 0x13E28, symSize: 0x140 } + - { offsetInCU: 0x3154, offset: 0x6400E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5F04, symBinAddr: 0x13F68, symSize: 0x24 } + - { offsetInCU: 0x324B, offset: 0x64105, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x5F28, symBinAddr: 0x13F8C, symSize: 0x8 } + - { offsetInCU: 0x329C, offset: 0x64156, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x5F30, symBinAddr: 0x13F94, symSize: 0x40 } + - { offsetInCU: 0x32ED, offset: 0x641A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x5F70, symBinAddr: 0x13FD4, symSize: 0x40 } + - { offsetInCU: 0x333E, offset: 0x641F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x5FB0, symBinAddr: 0x14014, symSize: 0x8 } + - { offsetInCU: 0x338F, offset: 0x64249, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x5FB8, symBinAddr: 0x1401C, symSize: 0x8 } + - { offsetInCU: 0x33E0, offset: 0x6429A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5FC0, symBinAddr: 0x14024, symSize: 0x8 } + - { offsetInCU: 0x3431, offset: 0x642EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5FC8, symBinAddr: 0x1402C, symSize: 0x8 } + - { offsetInCU: 0x3488, offset: 0x64342, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x5FD0, symBinAddr: 0x14034, symSize: 0x4 } + - { offsetInCU: 0x34A8, offset: 0x64362, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x5FD0, symBinAddr: 0x14034, symSize: 0x4 } + - { offsetInCU: 0x34BB, offset: 0x64375, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x6038, symBinAddr: 0x1405C, symSize: 0x8 } + - { offsetInCU: 0x34EA, offset: 0x643A4, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tgm5', symObjAddr: 0x6430, symBinAddr: 0x143E8, symSize: 0x54 } + - { offsetInCU: 0x35C5, offset: 0x6447F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x84B0, symBinAddr: 0x16468, symSize: 0xAC } + - { offsetInCU: 0x3607, offset: 0x644C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x855C, symBinAddr: 0x16514, symSize: 0x94 } + - { offsetInCU: 0x3649, offset: 0x64503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x85F0, symBinAddr: 0x165A8, symSize: 0x20 } + - { offsetInCU: 0x365D, offset: 0x64517, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8660, symBinAddr: 0x16600, symSize: 0x8 } + - { offsetInCU: 0x3671, offset: 0x6452B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8668, symBinAddr: 0x16608, symSize: 0x10 } + - { offsetInCU: 0x3685, offset: 0x6453F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8678, symBinAddr: 0x16618, symSize: 0x8 } + - { offsetInCU: 0x3699, offset: 0x64553, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8758, symBinAddr: 0x16620, symSize: 0x8 } + - { offsetInCU: 0x36EC, offset: 0x645A6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x8760, symBinAddr: 0x16628, symSize: 0xC4 } + - { offsetInCU: 0x3762, offset: 0x6461C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8824, symBinAddr: 0x166EC, symSize: 0x78 } + - { offsetInCU: 0x378F, offset: 0x64649, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x889C, symBinAddr: 0x16764, symSize: 0x80 } + - { offsetInCU: 0x3823, offset: 0x646DD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x891C, symBinAddr: 0x167E4, symSize: 0x68 } + - { offsetInCU: 0x3CB5, offset: 0x64B6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xB2D0, symBinAddr: 0x19198, symSize: 0x8 } + - { offsetInCU: 0x3CC9, offset: 0x64B83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xB2D8, symBinAddr: 0x191A0, symSize: 0x4 } + - { offsetInCU: 0x3CDD, offset: 0x64B97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xB2DC, symBinAddr: 0x191A4, symSize: 0x44 } + - { offsetInCU: 0x3CF1, offset: 0x64BAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xB320, symBinAddr: 0x191E8, symSize: 0x10 } + - { offsetInCU: 0x3D05, offset: 0x64BBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xB330, symBinAddr: 0x191F8, symSize: 0x24 } + - { offsetInCU: 0x3D19, offset: 0x64BD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xB41C, symBinAddr: 0x192E4, symSize: 0x10 } + - { offsetInCU: 0x3D2D, offset: 0x64BE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xB49C, symBinAddr: 0x19364, symSize: 0x10 } + - { offsetInCU: 0x3D41, offset: 0x64BFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xB52C, symBinAddr: 0x193B0, symSize: 0x8 } + - { offsetInCU: 0x3D55, offset: 0x64C0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xB534, symBinAddr: 0x193B8, symSize: 0x8 } + - { offsetInCU: 0x3D69, offset: 0x64C23, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xB54C, symBinAddr: 0x193D0, symSize: 0x8 } + - { offsetInCU: 0x3D7D, offset: 0x64C37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xB554, symBinAddr: 0x193D8, symSize: 0x8 } + - { offsetInCU: 0x3DC3, offset: 0x64C7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xBC30, symBinAddr: 0x198B0, symSize: 0x10 } + - { offsetInCU: 0x3DD7, offset: 0x64C91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xBCE4, symBinAddr: 0x19920, symSize: 0x10 } + - { offsetInCU: 0x3DEB, offset: 0x64CA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xBD18, symBinAddr: 0x19954, symSize: 0xC } + - { offsetInCU: 0x3DFF, offset: 0x64CB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xBDF0, symBinAddr: 0x199E8, symSize: 0xC } + - { offsetInCU: 0x3F3A, offset: 0x64DF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x25C, symBinAddr: 0xE2C0, symSize: 0x14 } + - { offsetInCU: 0x3FEA, offset: 0x64EA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x270, symBinAddr: 0xE2D4, symSize: 0x44 } + - { offsetInCU: 0x4079, offset: 0x64F33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2B4, symBinAddr: 0xE318, symSize: 0x28 } + - { offsetInCU: 0x40CC, offset: 0x64F86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2DC, symBinAddr: 0xE340, symSize: 0x40 } + - { offsetInCU: 0x4A0B, offset: 0x658C5, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xE064, symSize: 0xE4 } + - { offsetInCU: 0x4ADA, offset: 0x65994, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE4, symBinAddr: 0xE148, symSize: 0xAC } + - { offsetInCU: 0x4B72, offset: 0x65A2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0xE1F4, symSize: 0xA0 } + - { offsetInCU: 0x4B97, offset: 0x65A51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x230, symBinAddr: 0xE294, symSize: 0x28 } + - { offsetInCU: 0x4BB6, offset: 0x65A70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x258, symBinAddr: 0xE2BC, symSize: 0x4 } + - { offsetInCU: 0x4CA4, offset: 0x65B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x4EC, symBinAddr: 0xE550, symSize: 0x48 } + - { offsetInCU: 0x4CC3, offset: 0x65B7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x534, symBinAddr: 0xE598, symSize: 0x58 } + - { offsetInCU: 0x4CF8, offset: 0x65BB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x58C, symBinAddr: 0xE5F0, symSize: 0x70 } + - { offsetInCU: 0x4D1D, offset: 0x65BD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x5FC, symBinAddr: 0xE660, symSize: 0x6C } + - { offsetInCU: 0x4D3E, offset: 0x65BF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x688, symBinAddr: 0xE6EC, symSize: 0x44 } + - { offsetInCU: 0x4D63, offset: 0x65C1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvg', symObjAddr: 0x6CC, symBinAddr: 0xE730, symSize: 0x44 } + - { offsetInCU: 0x4D82, offset: 0x65C3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvs', symObjAddr: 0x710, symBinAddr: 0xE774, symSize: 0x48 } + - { offsetInCU: 0x4DB7, offset: 0x65C71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x758, symBinAddr: 0xE7BC, symSize: 0x44 } + - { offsetInCU: 0x4DDC, offset: 0x65C96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x80C, symBinAddr: 0xE870, symSize: 0x44 } + - { offsetInCU: 0x4E01, offset: 0x65CBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x868, symBinAddr: 0xE8CC, symSize: 0x44 } + - { offsetInCU: 0x4E26, offset: 0x65CE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x96C, symBinAddr: 0xE9D0, symSize: 0x44 } + - { offsetInCU: 0x4E4B, offset: 0x65D05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvg', symObjAddr: 0x9B0, symBinAddr: 0xEA14, symSize: 0x44 } + - { offsetInCU: 0x4E6A, offset: 0x65D24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvs', symObjAddr: 0x9F4, symBinAddr: 0xEA58, symSize: 0x48 } + - { offsetInCU: 0x4E9B, offset: 0x65D55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0xA3C, symBinAddr: 0xEAA0, symSize: 0x44 } + - { offsetInCU: 0x4EC0, offset: 0x65D7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvg', symObjAddr: 0xA80, symBinAddr: 0xEAE4, symSize: 0x50 } + - { offsetInCU: 0x4EDF, offset: 0x65D99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0xADC, symBinAddr: 0xEB40, symSize: 0x44 } + - { offsetInCU: 0x4F04, offset: 0x65DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0xB20, symBinAddr: 0xEB84, symSize: 0x4 } + - { offsetInCU: 0x4F58, offset: 0x65E12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0xB24, symBinAddr: 0xEB88, symSize: 0xC0 } + - { offsetInCU: 0x4FC7, offset: 0x65E81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xBF0, symBinAddr: 0xEC54, symSize: 0xF4 } + - { offsetInCU: 0x5039, offset: 0x65EF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCF0, symBinAddr: 0xED54, symSize: 0x44 } + - { offsetInCU: 0x5058, offset: 0x65F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xD34, symBinAddr: 0xED98, symSize: 0x50 } + - { offsetInCU: 0x508D, offset: 0x65F47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD84, symBinAddr: 0xEDE8, symSize: 0x44 } + - { offsetInCU: 0x511B, offset: 0x65FD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xEE0, symBinAddr: 0xEF44, symSize: 0x214 } + - { offsetInCU: 0x519C, offset: 0x66056, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x505C, symBinAddr: 0x130C0, symSize: 0x5C } + - { offsetInCU: 0x51DB, offset: 0x66095, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0x10F4, symBinAddr: 0xF158, symSize: 0x44 } + - { offsetInCU: 0x520E, offset: 0x660C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1138, symBinAddr: 0xF19C, symSize: 0x90 } + - { offsetInCU: 0x5256, offset: 0x66110, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x11C8, symBinAddr: 0xF22C, symSize: 0x48 } + - { offsetInCU: 0x527B, offset: 0x66135, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x1210, symBinAddr: 0xF274, symSize: 0x80 } + - { offsetInCU: 0x52DD, offset: 0x66197, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1290, symBinAddr: 0xF2F4, symSize: 0x20 } + - { offsetInCU: 0x52FD, offset: 0x661B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1290, symBinAddr: 0xF2F4, symSize: 0x20 } + - { offsetInCU: 0x535B, offset: 0x66215, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x12B0, symBinAddr: 0xF314, symSize: 0x20 } + - { offsetInCU: 0x5390, offset: 0x6624A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x12B0, symBinAddr: 0xF314, symSize: 0x20 } + - { offsetInCU: 0x53E6, offset: 0x662A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x12D0, symBinAddr: 0xF334, symSize: 0x34 } + - { offsetInCU: 0x5449, offset: 0x66303, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1304, symBinAddr: 0xF368, symSize: 0x20 } + - { offsetInCU: 0x546D, offset: 0x66327, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1304, symBinAddr: 0xF368, symSize: 0x20 } + - { offsetInCU: 0x5481, offset: 0x6633B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1304, symBinAddr: 0xF368, symSize: 0x20 } + - { offsetInCU: 0x54A8, offset: 0x66362, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1324, symBinAddr: 0xF388, symSize: 0x20 } + - { offsetInCU: 0x54C8, offset: 0x66382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1324, symBinAddr: 0xF388, symSize: 0x20 } + - { offsetInCU: 0x5526, offset: 0x663E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1344, symBinAddr: 0xF3A8, symSize: 0x20 } + - { offsetInCU: 0x555A, offset: 0x66414, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1344, symBinAddr: 0xF3A8, symSize: 0x20 } + - { offsetInCU: 0x55AF, offset: 0x66469, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x1364, symBinAddr: 0xF3C8, symSize: 0x34 } + - { offsetInCU: 0x5612, offset: 0x664CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x1398, symBinAddr: 0xF3FC, symSize: 0x20 } + - { offsetInCU: 0x5636, offset: 0x664F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x1398, symBinAddr: 0xF3FC, symSize: 0x20 } + - { offsetInCU: 0x564A, offset: 0x66504, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x1398, symBinAddr: 0xF3FC, symSize: 0x20 } + - { offsetInCU: 0x5671, offset: 0x6652B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13B8, symBinAddr: 0xF41C, symSize: 0x20 } + - { offsetInCU: 0x5691, offset: 0x6654B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13B8, symBinAddr: 0xF41C, symSize: 0x20 } + - { offsetInCU: 0x56EA, offset: 0x665A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x13D8, symBinAddr: 0xF43C, symSize: 0x20 } + - { offsetInCU: 0x571E, offset: 0x665D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x13D8, symBinAddr: 0xF43C, symSize: 0x20 } + - { offsetInCU: 0x5773, offset: 0x6662D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x13F8, symBinAddr: 0xF45C, symSize: 0x34 } + - { offsetInCU: 0x57D6, offset: 0x66690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x142C, symBinAddr: 0xF490, symSize: 0x20 } + - { offsetInCU: 0x57FA, offset: 0x666B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x142C, symBinAddr: 0xF490, symSize: 0x20 } + - { offsetInCU: 0x580E, offset: 0x666C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x142C, symBinAddr: 0xF490, symSize: 0x20 } + - { offsetInCU: 0x5821, offset: 0x666DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvg', symObjAddr: 0x144C, symBinAddr: 0xF4B0, symSize: 0x44 } + - { offsetInCU: 0x5840, offset: 0x666FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvs', symObjAddr: 0x1490, symBinAddr: 0xF4F4, symSize: 0x48 } + - { offsetInCU: 0x5875, offset: 0x6672F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x14D8, symBinAddr: 0xF53C, symSize: 0x44 } + - { offsetInCU: 0x589A, offset: 0x66754, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvg', symObjAddr: 0x151C, symBinAddr: 0xF580, symSize: 0x44 } + - { offsetInCU: 0x58B9, offset: 0x66773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvs', symObjAddr: 0x1560, symBinAddr: 0xF5C4, symSize: 0x48 } + - { offsetInCU: 0x58EA, offset: 0x667A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x15A8, symBinAddr: 0xF60C, symSize: 0x44 } + - { offsetInCU: 0x590F, offset: 0x667C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x15EC, symBinAddr: 0xF650, symSize: 0x44 } + - { offsetInCU: 0x592E, offset: 0x667E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1630, symBinAddr: 0xF694, symSize: 0x48 } + - { offsetInCU: 0x5963, offset: 0x6681D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1678, symBinAddr: 0xF6DC, symSize: 0x44 } + - { offsetInCU: 0x5988, offset: 0x66842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x16BC, symBinAddr: 0xF720, symSize: 0x44 } + - { offsetInCU: 0x59A7, offset: 0x66861, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1700, symBinAddr: 0xF764, symSize: 0x48 } + - { offsetInCU: 0x59DC, offset: 0x66896, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1748, symBinAddr: 0xF7AC, symSize: 0x44 } + - { offsetInCU: 0x5A01, offset: 0x668BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvg', symObjAddr: 0x178C, symBinAddr: 0xF7F0, symSize: 0x50 } + - { offsetInCU: 0x5A20, offset: 0x668DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x17E8, symBinAddr: 0xF84C, symSize: 0x44 } + - { offsetInCU: 0x5A45, offset: 0x668FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvg', symObjAddr: 0x182C, symBinAddr: 0xF890, symSize: 0x50 } + - { offsetInCU: 0x5A6A, offset: 0x66924, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x18D4, symBinAddr: 0xF938, symSize: 0x44 } + - { offsetInCU: 0x5AAE, offset: 0x66968, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x1918, symBinAddr: 0xF97C, symSize: 0x78 } + - { offsetInCU: 0x5B19, offset: 0x669D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x1990, symBinAddr: 0xF9F4, symSize: 0x7C } + - { offsetInCU: 0x5B91, offset: 0x66A4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1A0C, symBinAddr: 0xFA70, symSize: 0x90 } + - { offsetInCU: 0x5BEA, offset: 0x66AA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x1A9C, symBinAddr: 0xFB00, symSize: 0x24 } + - { offsetInCU: 0x5C0B, offset: 0x66AC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1AC0, symBinAddr: 0xFB24, symSize: 0x88 } + - { offsetInCU: 0x5C5D, offset: 0x66B17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x1B48, symBinAddr: 0xFBAC, symSize: 0x7C } + - { offsetInCU: 0x5CBE, offset: 0x66B78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1BC4, symBinAddr: 0xFC28, symSize: 0xA8 } + - { offsetInCU: 0x5D12, offset: 0x66BCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1C6C, symBinAddr: 0xFCD0, symSize: 0x80 } + - { offsetInCU: 0x5D71, offset: 0x66C2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1CEC, symBinAddr: 0xFD50, symSize: 0xC8 } + - { offsetInCU: 0x5DF3, offset: 0x66CAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1DB4, symBinAddr: 0xFE18, symSize: 0xD4 } + - { offsetInCU: 0x5E79, offset: 0x66D33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1E88, symBinAddr: 0xFEEC, symSize: 0xFC } + - { offsetInCU: 0x5F10, offset: 0x66DCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1F84, symBinAddr: 0xFFE8, symSize: 0x130 } + - { offsetInCU: 0x5FB7, offset: 0x66E71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x20B4, symBinAddr: 0x10118, symSize: 0xC0 } + - { offsetInCU: 0x6029, offset: 0x66EE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x2240, symBinAddr: 0x102A4, symSize: 0xF4 } + - { offsetInCU: 0x609E, offset: 0x66F58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2418, symBinAddr: 0x1047C, symSize: 0x48 } + - { offsetInCU: 0x60BD, offset: 0x66F77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2460, symBinAddr: 0x104C4, symSize: 0x50 } + - { offsetInCU: 0x60F4, offset: 0x66FAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x24B0, symBinAddr: 0x10514, symSize: 0x44 } + - { offsetInCU: 0x611A, offset: 0x66FD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2528, symBinAddr: 0x1058C, symSize: 0x44 } + - { offsetInCU: 0x6140, offset: 0x66FFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x25A0, symBinAddr: 0x10604, symSize: 0x44 } + - { offsetInCU: 0x6166, offset: 0x67020, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2618, symBinAddr: 0x1067C, symSize: 0x44 } + - { offsetInCU: 0x618C, offset: 0x67046, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x268C, symBinAddr: 0x106F0, symSize: 0x44 } + - { offsetInCU: 0x61B2, offset: 0x6706C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x2704, symBinAddr: 0x10768, symSize: 0x44 } + - { offsetInCU: 0x61D8, offset: 0x67092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x277C, symBinAddr: 0x107E0, symSize: 0x44 } + - { offsetInCU: 0x61FE, offset: 0x670B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x27F4, symBinAddr: 0x10858, symSize: 0x44 } + - { offsetInCU: 0x6224, offset: 0x670DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x286C, symBinAddr: 0x108D0, symSize: 0x44 } + - { offsetInCU: 0x624A, offset: 0x67104, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x28E4, symBinAddr: 0x10948, symSize: 0x44 } + - { offsetInCU: 0x6270, offset: 0x6712A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x295C, symBinAddr: 0x109C0, symSize: 0x44 } + - { offsetInCU: 0x6296, offset: 0x67150, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x29D0, symBinAddr: 0x10A34, symSize: 0x44 } + - { offsetInCU: 0x62BC, offset: 0x67176, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2A44, symBinAddr: 0x10AA8, symSize: 0x44 } + - { offsetInCU: 0x62E2, offset: 0x6719C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x2ABC, symBinAddr: 0x10B20, symSize: 0x44 } + - { offsetInCU: 0x6308, offset: 0x671C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2B30, symBinAddr: 0x10B94, symSize: 0x44 } + - { offsetInCU: 0x632E, offset: 0x671E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2C54, symBinAddr: 0x10CB8, symSize: 0x44 } + - { offsetInCU: 0x635A, offset: 0x67214, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2C98, symBinAddr: 0x10CFC, symSize: 0x70 } + - { offsetInCU: 0x640C, offset: 0x672C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2D08, symBinAddr: 0x10D6C, symSize: 0x7BC } + - { offsetInCU: 0x6726, offset: 0x675E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x34C4, symBinAddr: 0x11528, symSize: 0x178 } + - { offsetInCU: 0x686A, offset: 0x67724, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x38E8, symBinAddr: 0x1194C, symSize: 0x388 } + - { offsetInCU: 0x6A2D, offset: 0x678E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3C70, symBinAddr: 0x11CD4, symSize: 0x8 } + - { offsetInCU: 0x6B25, offset: 0x679DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3C78, symBinAddr: 0x11CDC, symSize: 0x624 } + - { offsetInCU: 0x6E13, offset: 0x67CCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x429C, symBinAddr: 0x12300, symSize: 0xC0 } + - { offsetInCU: 0x6EF6, offset: 0x67DB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x435C, symBinAddr: 0x123C0, symSize: 0xC4 } + - { offsetInCU: 0x6FA1, offset: 0x67E5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x4420, symBinAddr: 0x12484, symSize: 0x4 } + - { offsetInCU: 0x6FE3, offset: 0x67E9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x4424, symBinAddr: 0x12488, symSize: 0x100 } + - { offsetInCU: 0x70C9, offset: 0x67F83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x4524, symBinAddr: 0x12588, symSize: 0x100 } + - { offsetInCU: 0x7145, offset: 0x67FFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x4624, symBinAddr: 0x12688, symSize: 0xB0 } + - { offsetInCU: 0x71E6, offset: 0x680A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x46D4, symBinAddr: 0x12738, symSize: 0xC4 } + - { offsetInCU: 0x72DB, offset: 0x68195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4798, symBinAddr: 0x127FC, symSize: 0x8 } + - { offsetInCU: 0x72EF, offset: 0x681A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x47A0, symBinAddr: 0x12804, symSize: 0x6C } + - { offsetInCU: 0x735C, offset: 0x68216, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x480C, symBinAddr: 0x12870, symSize: 0xC4 } + - { offsetInCU: 0x74D1, offset: 0x6838B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x48D0, symBinAddr: 0x12934, symSize: 0x124 } + - { offsetInCU: 0x7656, offset: 0x68510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x49F4, symBinAddr: 0x12A58, symSize: 0xF4 } + - { offsetInCU: 0x77D6, offset: 0x68690, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4AE8, symBinAddr: 0x12B4C, symSize: 0x114 } + - { offsetInCU: 0x7A63, offset: 0x6891D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4BFC, symBinAddr: 0x12C60, symSize: 0x1BC } + - { offsetInCU: 0x7C5E, offset: 0x68B18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4DB8, symBinAddr: 0x12E1C, symSize: 0xD4 } + - { offsetInCU: 0x7D82, offset: 0x68C3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x4E8C, symBinAddr: 0x12EF0, symSize: 0x10C } + - { offsetInCU: 0x7E40, offset: 0x68CFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x4F98, symBinAddr: 0x12FFC, symSize: 0x20 } + - { offsetInCU: 0x7E54, offset: 0x68D0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x4FB8, symBinAddr: 0x1301C, symSize: 0x2C } + - { offsetInCU: 0x7EB4, offset: 0x68D6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x50B8, symBinAddr: 0x1311C, symSize: 0x4 } + - { offsetInCU: 0x7F04, offset: 0x68DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x50BC, symBinAddr: 0x13120, symSize: 0x1EC } + - { offsetInCU: 0x7FF9, offset: 0x68EB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x52A8, symBinAddr: 0x1330C, symSize: 0x1AC } + - { offsetInCU: 0x80D4, offset: 0x68F8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5454, symBinAddr: 0x134B8, symSize: 0xC4 } + - { offsetInCU: 0x814F, offset: 0x69009, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x5518, symBinAddr: 0x1357C, symSize: 0x4 } + - { offsetInCU: 0x8230, offset: 0x690EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x551C, symBinAddr: 0x13580, symSize: 0x24C } + - { offsetInCU: 0x8661, offset: 0x6951B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x5768, symBinAddr: 0x137CC, symSize: 0x390 } + - { offsetInCU: 0x8888, offset: 0x69742, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5AF8, symBinAddr: 0x13B5C, symSize: 0xB0 } + - { offsetInCU: 0x8A07, offset: 0x698C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x60AC, symBinAddr: 0x14064, symSize: 0x1B8 } + - { offsetInCU: 0x8A69, offset: 0x69923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6264, symBinAddr: 0x1421C, symSize: 0xC4 } + - { offsetInCU: 0x8AD8, offset: 0x69992, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x6328, symBinAddr: 0x142E0, symSize: 0x108 } + - { offsetInCU: 0x8B79, offset: 0x69A33, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x6498, symBinAddr: 0x14450, symSize: 0x1DC } + - { offsetInCU: 0x8DC8, offset: 0x69C82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x8984, symBinAddr: 0x1684C, symSize: 0x6BC } + - { offsetInCU: 0x939B, offset: 0x6A255, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x9040, symBinAddr: 0x16F08, symSize: 0x3F8 } + - { offsetInCU: 0x96E1, offset: 0x6A59B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9690, symBinAddr: 0x17558, symSize: 0x19C } + - { offsetInCU: 0x984F, offset: 0x6A709, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x982C, symBinAddr: 0x176F4, symSize: 0x270 } + - { offsetInCU: 0x9B31, offset: 0x6A9EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0x9A9C, symBinAddr: 0x17964, symSize: 0x9B4 } + - { offsetInCU: 0xA1D3, offset: 0x6B08D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xA450, symBinAddr: 0x18318, symSize: 0x6E0 } + - { offsetInCU: 0xA6EA, offset: 0x6B5A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAB30, symBinAddr: 0x189F8, symSize: 0x140 } + - { offsetInCU: 0xA83F, offset: 0x6B6F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xAC70, symBinAddr: 0x18B38, symSize: 0x660 } + - { offsetInCU: 0xACF6, offset: 0x6BBB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xB55C, symBinAddr: 0x193E0, symSize: 0x29C } + - { offsetInCU: 0x4DE, offset: 0x6C2F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x18C4, symBinAddr: 0x1B3E4, symSize: 0x2C } + - { offsetInCU: 0x7ED, offset: 0x6C604, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1920, symBinAddr: 0x1B440, symSize: 0x84 } + - { offsetInCU: 0x81C, offset: 0x6C633, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x19A4, symBinAddr: 0x1B4C4, symSize: 0x58 } + - { offsetInCU: 0x9EE, offset: 0x6C805, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x1E0C, symBinAddr: 0x1B92C, symSize: 0xB4 } + - { offsetInCU: 0xB28, offset: 0x6C93F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0x1EC0, symBinAddr: 0x1B9E0, symSize: 0x64 } + - { offsetInCU: 0xBE8, offset: 0x6C9FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x2210, symBinAddr: 0x1BCF0, symSize: 0x20 } + - { offsetInCU: 0xC17, offset: 0x6CA2E, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x2394, symBinAddr: 0x1BE30, symSize: 0x8 } + - { offsetInCU: 0xC5D, offset: 0x6CA74, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTgm5', symObjAddr: 0x0, symBinAddr: 0x19B20, symSize: 0xD0 } + - { offsetInCU: 0xEE1, offset: 0x6CCF8, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x1F24, symBinAddr: 0x1BA44, symSize: 0x2AC } + - { offsetInCU: 0x116D, offset: 0x6CF84, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTgm5Tf4g_n', symObjAddr: 0x2230, symBinAddr: 0x1BD10, symSize: 0x110 } + - { offsetInCU: 0x132E, offset: 0x6D145, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0xD0, symBinAddr: 0x19BF0, symSize: 0x70 } + - { offsetInCU: 0x1342, offset: 0x6D159, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x140, symBinAddr: 0x19C60, symSize: 0x60 } + - { offsetInCU: 0x1356, offset: 0x6D16D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x1A0, symBinAddr: 0x19CC0, symSize: 0x44 } + - { offsetInCU: 0x137B, offset: 0x6D192, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x1E4, symBinAddr: 0x19D04, symSize: 0x48 } + - { offsetInCU: 0x13B0, offset: 0x6D1C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x22C, symBinAddr: 0x19D4C, symSize: 0x44 } + - { offsetInCU: 0x13D5, offset: 0x6D1EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x270, symBinAddr: 0x19D90, symSize: 0x54 } + - { offsetInCU: 0x13F4, offset: 0x6D20B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x2C4, symBinAddr: 0x19DE4, symSize: 0x5C } + - { offsetInCU: 0x1429, offset: 0x6D240, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x320, symBinAddr: 0x19E40, symSize: 0x44 } + - { offsetInCU: 0x144E, offset: 0x6D265, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x364, symBinAddr: 0x19E84, symSize: 0x48 } + - { offsetInCU: 0x146D, offset: 0x6D284, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x3AC, symBinAddr: 0x19ECC, symSize: 0x50 } + - { offsetInCU: 0x14A2, offset: 0x6D2B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x3FC, symBinAddr: 0x19F1C, symSize: 0x44 } + - { offsetInCU: 0x14C7, offset: 0x6D2DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvg', symObjAddr: 0x440, symBinAddr: 0x19F60, symSize: 0x44 } + - { offsetInCU: 0x14EC, offset: 0x6D303, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvs', symObjAddr: 0x484, symBinAddr: 0x19FA4, symSize: 0x48 } + - { offsetInCU: 0x151D, offset: 0x6D334, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x4CC, symBinAddr: 0x19FEC, symSize: 0x44 } + - { offsetInCU: 0x1542, offset: 0x6D359, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvg', symObjAddr: 0x510, symBinAddr: 0x1A030, symSize: 0x44 } + - { offsetInCU: 0x1567, offset: 0x6D37E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvs', symObjAddr: 0x554, symBinAddr: 0x1A074, symSize: 0x48 } + - { offsetInCU: 0x1598, offset: 0x6D3AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x59C, symBinAddr: 0x1A0BC, symSize: 0x44 } + - { offsetInCU: 0x15BD, offset: 0x6D3D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x5E0, symBinAddr: 0x1A100, symSize: 0x4 } + - { offsetInCU: 0x15DE, offset: 0x6D3F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvg', symObjAddr: 0x5E4, symBinAddr: 0x1A104, symSize: 0x44 } + - { offsetInCU: 0x15FD, offset: 0x6D414, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvs', symObjAddr: 0x628, symBinAddr: 0x1A148, symSize: 0x48 } + - { offsetInCU: 0x162E, offset: 0x6D445, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x670, symBinAddr: 0x1A190, symSize: 0x44 } + - { offsetInCU: 0x1653, offset: 0x6D46A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x6CC, symBinAddr: 0x1A1EC, symSize: 0x44 } + - { offsetInCU: 0x1678, offset: 0x6D48F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x7C4, symBinAddr: 0x1A2E4, symSize: 0x44 } + - { offsetInCU: 0x169D, offset: 0x6D4B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x820, symBinAddr: 0x1A340, symSize: 0x44 } + - { offsetInCU: 0x16C2, offset: 0x6D4D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x924, symBinAddr: 0x1A444, symSize: 0x44 } + - { offsetInCU: 0x16E7, offset: 0x6D4FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x980, symBinAddr: 0x1A4A0, symSize: 0x44 } + - { offsetInCU: 0x170C, offset: 0x6D523, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0xA6C, symBinAddr: 0x1A58C, symSize: 0x44 } + - { offsetInCU: 0x178F, offset: 0x6D5A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0xAB0, symBinAddr: 0x1A5D0, symSize: 0x110 } + - { offsetInCU: 0x19C9, offset: 0x6D7E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xBC0, symBinAddr: 0x1A6E0, symSize: 0x6AC } + - { offsetInCU: 0x25A6, offset: 0x6E3BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x126C, symBinAddr: 0x1AD8C, symSize: 0x178 } + - { offsetInCU: 0x2646, offset: 0x6E45D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x13E4, symBinAddr: 0x1AF04, symSize: 0x13C } + - { offsetInCU: 0x26A7, offset: 0x6E4BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x1520, symBinAddr: 0x1B040, symSize: 0x70 } + - { offsetInCU: 0x26BB, offset: 0x6E4D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x1590, symBinAddr: 0x1B0B0, symSize: 0x2E8 } + - { offsetInCU: 0x274C, offset: 0x6E563, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x1878, symBinAddr: 0x1B398, symSize: 0x20 } + - { offsetInCU: 0x2760, offset: 0x6E577, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x1898, symBinAddr: 0x1B3B8, symSize: 0x2C } + - { offsetInCU: 0x27B9, offset: 0x6E5D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x18F0, symBinAddr: 0x1B410, symSize: 0x30 } + - { offsetInCU: 0x285A, offset: 0x6E671, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x19FC, symBinAddr: 0x1B51C, symSize: 0x218 } + - { offsetInCU: 0x2A67, offset: 0x6E87E, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1C14, symBinAddr: 0x1B734, symSize: 0xD0 } + - { offsetInCU: 0x2C78, offset: 0x6EA8F, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1CE4, symBinAddr: 0x1B804, symSize: 0x128 } + - { offsetInCU: 0x20B, offset: 0x6EEE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xD44, symBinAddr: 0x1CBA8, symSize: 0x6C0 } + - { offsetInCU: 0x5F2, offset: 0x6F2CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x1404, symBinAddr: 0x1D268, symSize: 0xA4 } + - { offsetInCU: 0x6B0, offset: 0x6F38B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x16F8, symBinAddr: 0x1D55C, symSize: 0x20 } + - { offsetInCU: 0x8B6, offset: 0x6F591, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x658, symBinAddr: 0x1C4BC, symSize: 0x20 } + - { offsetInCU: 0x8CA, offset: 0x6F5A5, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x678, symBinAddr: 0x1C4DC, symSize: 0x20 } + - { offsetInCU: 0xA79, offset: 0x6F754, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x1748, symBinAddr: 0x1D5AC, symSize: 0x78 } + - { offsetInCU: 0xAA8, offset: 0x6F783, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x17C0, symBinAddr: 0x1D624, symSize: 0x20 } + - { offsetInCU: 0xABC, offset: 0x6F797, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x17E0, symBinAddr: 0x1D644, symSize: 0x30 } + - { offsetInCU: 0xAD0, offset: 0x6F7AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1810, symBinAddr: 0x1D674, symSize: 0x4 } + - { offsetInCU: 0xAE4, offset: 0x6F7BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1834, symBinAddr: 0x1D678, symSize: 0x40 } + - { offsetInCU: 0xAF8, offset: 0x6F7D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x1874, symBinAddr: 0x1D6B8, symSize: 0x30 } + - { offsetInCU: 0xB0C, offset: 0x6F7E7, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x18A4, symBinAddr: 0x1D6E8, symSize: 0x168 } + - { offsetInCU: 0xB20, offset: 0x6F7FB, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1A0C, symBinAddr: 0x1D850, symSize: 0x14 } + - { offsetInCU: 0xB34, offset: 0x6F80F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1A20, symBinAddr: 0x1D864, symSize: 0x40 } + - { offsetInCU: 0xB48, offset: 0x6F823, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1A60, symBinAddr: 0x1D8A4, symSize: 0x48 } + - { offsetInCU: 0xB5C, offset: 0x6F837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1AA8, symBinAddr: 0x1D8EC, symSize: 0x4C } + - { offsetInCU: 0xB70, offset: 0x6F84B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1AF4, symBinAddr: 0x1D938, symSize: 0x10 } + - { offsetInCU: 0xDA5, offset: 0x6FA80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x248C, symBinAddr: 0x1E2D0, symSize: 0x840 } + - { offsetInCU: 0x12CA, offset: 0x6FFA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2D00, symBinAddr: 0x1EB44, symSize: 0xC } + - { offsetInCU: 0x12E9, offset: 0x6FFC4, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x2D1C, symBinAddr: 0x1EB60, symSize: 0x20 } + - { offsetInCU: 0x1312, offset: 0x6FFED, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2D3C, symBinAddr: 0x1EB80, symSize: 0x10 } + - { offsetInCU: 0x1326, offset: 0x70001, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2D4C, symBinAddr: 0x1EB90, symSize: 0x8 } + - { offsetInCU: 0x133A, offset: 0x70015, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x2D78, symBinAddr: 0x1EBBC, symSize: 0x18 } + - { offsetInCU: 0x138E, offset: 0x70069, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x2E60, symBinAddr: 0x1EBFC, symSize: 0x78 } + - { offsetInCU: 0x1408, offset: 0x700E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x2ED8, symBinAddr: 0x1EC74, symSize: 0x590 } + - { offsetInCU: 0x15EF, offset: 0x702CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x3468, symBinAddr: 0x1F204, symSize: 0x55C } + - { offsetInCU: 0x17B9, offset: 0x70494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x39C4, symBinAddr: 0x1F760, symSize: 0x44 } + - { offsetInCU: 0x17CD, offset: 0x704A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0x3A08, symBinAddr: 0x1F7A4, symSize: 0x18 } + - { offsetInCU: 0x17E1, offset: 0x704BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3A20, symBinAddr: 0x1F7BC, symSize: 0x8 } + - { offsetInCU: 0x17F5, offset: 0x704D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3A4C, symBinAddr: 0x1F7E8, symSize: 0x20 } + - { offsetInCU: 0x182E, offset: 0x70509, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3A6C, symBinAddr: 0x1F808, symSize: 0x48 } + - { offsetInCU: 0x1857, offset: 0x70532, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3AB4, symBinAddr: 0x1F850, symSize: 0x48 } + - { offsetInCU: 0x1872, offset: 0x7054D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3AFC, symBinAddr: 0x1F898, symSize: 0x24 } + - { offsetInCU: 0x18A2, offset: 0x7057D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3B48, symBinAddr: 0x1F8BC, symSize: 0x38 } + - { offsetInCU: 0x18CB, offset: 0x705A6, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3B80, symBinAddr: 0x1F8F4, symSize: 0x3C } + - { offsetInCU: 0x18DF, offset: 0x705BA, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3BC4, symBinAddr: 0x1F938, symSize: 0x3C } + - { offsetInCU: 0x18F3, offset: 0x705CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3C80, symBinAddr: 0x1F9F4, symSize: 0x24 } + - { offsetInCU: 0x1907, offset: 0x705E2, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3CA4, symBinAddr: 0x1FA18, symSize: 0x178 } + - { offsetInCU: 0x1B0F, offset: 0x707EA, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x3E1C, symBinAddr: 0x1FB90, symSize: 0x40 } + - { offsetInCU: 0x1B23, offset: 0x707FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x3EDC, symBinAddr: 0x1FC50, symSize: 0x44 } + - { offsetInCU: 0x1B37, offset: 0x70812, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x4000, symBinAddr: 0x1FD74, symSize: 0xC } + - { offsetInCU: 0x1B4B, offset: 0x70826, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x4088, symBinAddr: 0x1FD90, symSize: 0x18 } + - { offsetInCU: 0x1FB2, offset: 0x70C8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1BE64, symSize: 0x328 } + - { offsetInCU: 0x2096, offset: 0x70D71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x328, symBinAddr: 0x1C18C, symSize: 0x330 } + - { offsetInCU: 0x256A, offset: 0x71245, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x698, symBinAddr: 0x1C4FC, symSize: 0xA4 } + - { offsetInCU: 0x2710, offset: 0x713EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x73C, symBinAddr: 0x1C5A0, symSize: 0x47C } + - { offsetInCU: 0x290D, offset: 0x715E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xBB8, symBinAddr: 0x1CA1C, symSize: 0x138 } + - { offsetInCU: 0x2BD6, offset: 0x718B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x14A8, symBinAddr: 0x1D30C, symSize: 0x250 } + - { offsetInCU: 0x2C25, offset: 0x71900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1718, symBinAddr: 0x1D57C, symSize: 0x30 } + - { offsetInCU: 0x2C64, offset: 0x7193F, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1B04, symBinAddr: 0x1D948, symSize: 0xA0 } + - { offsetInCU: 0x2DD1, offset: 0x71AAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1BA4, symBinAddr: 0x1D9E8, symSize: 0x264 } + - { offsetInCU: 0x2FD1, offset: 0x71CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x1E08, symBinAddr: 0x1DC4C, symSize: 0x214 } + - { offsetInCU: 0x30DE, offset: 0x71DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x201C, symBinAddr: 0x1DE60, symSize: 0x470 } + - { offsetInCU: 0x34C8, offset: 0x721A3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x2E38, symBinAddr: 0x1EBD4, symSize: 0x14 } + - { offsetInCU: 0x34F8, offset: 0x721D3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x2E4C, symBinAddr: 0x1EBE8, symSize: 0x14 } + - { offsetInCU: 0x27, offset: 0x722A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x1FDDC, symSize: 0x40 } + - { offsetInCU: 0x4B, offset: 0x722CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x4960, symBinAddr: 0x62270, symSize: 0x0 } + - { offsetInCU: 0xF3, offset: 0x72373, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x318, symBinAddr: 0x200F4, symSize: 0x4C } + - { offsetInCU: 0x17D, offset: 0x723FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x1FDDC, symSize: 0x40 } + - { offsetInCU: 0x1CA, offset: 0x7244A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x10C, symBinAddr: 0x1FEE8, symSize: 0x28 } + - { offsetInCU: 0x1FB, offset: 0x7247B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x134, symBinAddr: 0x1FF10, symSize: 0xC } + - { offsetInCU: 0x217, offset: 0x72497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x4E0, symBinAddr: 0x202BC, symSize: 0x10 } + - { offsetInCU: 0x26E, offset: 0x724EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x140, symBinAddr: 0x1FF1C, symSize: 0x2C } + - { offsetInCU: 0x334, offset: 0x725B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x4DC, symBinAddr: 0x202B8, symSize: 0x4 } + - { offsetInCU: 0x35F, offset: 0x725DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x4F0, symBinAddr: 0x202CC, symSize: 0x20 } + - { offsetInCU: 0x373, offset: 0x725F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x550, symBinAddr: 0x202EC, symSize: 0x4 } + - { offsetInCU: 0x387, offset: 0x72607, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x554, symBinAddr: 0x202F0, symSize: 0x44 } + - { offsetInCU: 0x39B, offset: 0x7261B, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x598, symBinAddr: 0x20334, symSize: 0xC } + - { offsetInCU: 0x3AF, offset: 0x7262F, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x5A4, symBinAddr: 0x20340, symSize: 0x4 } + - { offsetInCU: 0x3C3, offset: 0x72643, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x5A8, symBinAddr: 0x20344, symSize: 0x90 } + - { offsetInCU: 0x3D7, offset: 0x72657, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x638, symBinAddr: 0x203D4, symSize: 0xBC } + - { offsetInCU: 0x3EB, offset: 0x7266B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6F4, symBinAddr: 0x20490, symSize: 0x8 } + - { offsetInCU: 0x3FF, offset: 0x7267F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6FC, symBinAddr: 0x20498, symSize: 0x4 } + - { offsetInCU: 0x413, offset: 0x72693, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x700, symBinAddr: 0x2049C, symSize: 0x8 } + - { offsetInCU: 0x427, offset: 0x726A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x708, symBinAddr: 0x204A4, symSize: 0x10 } + - { offsetInCU: 0x464, offset: 0x726E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x4C, symBinAddr: 0x1FE28, symSize: 0x14 } + - { offsetInCU: 0x514, offset: 0x72794, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x60, symBinAddr: 0x1FE3C, symSize: 0x44 } + - { offsetInCU: 0x5C3, offset: 0x72843, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA4, symBinAddr: 0x1FE80, symSize: 0x28 } + - { offsetInCU: 0x616, offset: 0x72896, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xCC, symBinAddr: 0x1FEA8, symSize: 0x40 } + - { offsetInCU: 0x7A4, offset: 0x72A24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x40, symBinAddr: 0x1FE1C, symSize: 0x4 } + - { offsetInCU: 0x7B8, offset: 0x72A38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x44, symBinAddr: 0x1FE20, symSize: 0x8 } + - { offsetInCU: 0x817, offset: 0x72A97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x16C, symBinAddr: 0x1FF48, symSize: 0x20 } + - { offsetInCU: 0x831, offset: 0x72AB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x18C, symBinAddr: 0x1FF68, symSize: 0x68 } + - { offsetInCU: 0x85E, offset: 0x72ADE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1F4, symBinAddr: 0x1FFD0, symSize: 0x74 } + - { offsetInCU: 0x89B, offset: 0x72B1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x268, symBinAddr: 0x20044, symSize: 0x6C } + - { offsetInCU: 0x8C8, offset: 0x72B48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2D4, symBinAddr: 0x200B0, symSize: 0x4 } + - { offsetInCU: 0x8E9, offset: 0x72B69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2D8, symBinAddr: 0x200B4, symSize: 0x40 } + - { offsetInCU: 0x985, offset: 0x72C05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x364, symBinAddr: 0x20140, symSize: 0x148 } + - { offsetInCU: 0xB0E, offset: 0x72D8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x4AC, symBinAddr: 0x20288, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x72DEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x204B4, symSize: 0x120 } + - { offsetInCU: 0x2AE, offset: 0x73073, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0x980, symBinAddr: 0x20E34, symSize: 0x2C } + - { offsetInCU: 0x3BD, offset: 0x73182, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0x9DC, symBinAddr: 0x20E90, symSize: 0x3C } + - { offsetInCU: 0x3EC, offset: 0x731B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xA18, symBinAddr: 0x20ECC, symSize: 0x58 } + - { offsetInCU: 0x473, offset: 0x73238, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xC88, symBinAddr: 0x2113C, symSize: 0x20 } + - { offsetInCU: 0x6C5, offset: 0x7348A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x204B4, symSize: 0x120 } + - { offsetInCU: 0x78C, offset: 0x73551, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x120, symBinAddr: 0x205D4, symSize: 0xF0 } + - { offsetInCU: 0x7D1, offset: 0x73596, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x210, symBinAddr: 0x206C4, symSize: 0x44 } + - { offsetInCU: 0x7F6, offset: 0x735BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x254, symBinAddr: 0x20708, symSize: 0x48 } + - { offsetInCU: 0x82B, offset: 0x735F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x29C, symBinAddr: 0x20750, symSize: 0x44 } + - { offsetInCU: 0x850, offset: 0x73615, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x2E0, symBinAddr: 0x20794, symSize: 0x54 } + - { offsetInCU: 0x86F, offset: 0x73634, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x334, symBinAddr: 0x207E8, symSize: 0x5C } + - { offsetInCU: 0x8A4, offset: 0x73669, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x390, symBinAddr: 0x20844, symSize: 0x44 } + - { offsetInCU: 0x8C9, offset: 0x7368E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x3D4, symBinAddr: 0x20888, symSize: 0x48 } + - { offsetInCU: 0x8E8, offset: 0x736AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x41C, symBinAddr: 0x208D0, symSize: 0x50 } + - { offsetInCU: 0x91D, offset: 0x736E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x46C, symBinAddr: 0x20920, symSize: 0x44 } + - { offsetInCU: 0x942, offset: 0x73707, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvg', symObjAddr: 0x4B0, symBinAddr: 0x20964, symSize: 0x44 } + - { offsetInCU: 0x967, offset: 0x7372C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvs', symObjAddr: 0x4F4, symBinAddr: 0x209A8, symSize: 0x48 } + - { offsetInCU: 0x998, offset: 0x7375D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x53C, symBinAddr: 0x209F0, symSize: 0x44 } + - { offsetInCU: 0x9BD, offset: 0x73782, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvg', symObjAddr: 0x580, symBinAddr: 0x20A34, symSize: 0x44 } + - { offsetInCU: 0x9E2, offset: 0x737A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvs', symObjAddr: 0x5C4, symBinAddr: 0x20A78, symSize: 0x48 } + - { offsetInCU: 0xA13, offset: 0x737D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x60C, symBinAddr: 0x20AC0, symSize: 0x44 } + - { offsetInCU: 0xA38, offset: 0x737FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x650, symBinAddr: 0x20B04, symSize: 0x4 } + - { offsetInCU: 0xAB2, offset: 0x73877, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x654, symBinAddr: 0x20B08, symSize: 0x110 } + - { offsetInCU: 0xBB4, offset: 0x73979, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x764, symBinAddr: 0x20C18, symSize: 0x104 } + - { offsetInCU: 0xC36, offset: 0x739FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x868, symBinAddr: 0x20D1C, symSize: 0xCC } + - { offsetInCU: 0xC79, offset: 0x73A3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x934, symBinAddr: 0x20DE8, symSize: 0x20 } + - { offsetInCU: 0xC8D, offset: 0x73A52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x954, symBinAddr: 0x20E08, symSize: 0x2C } + - { offsetInCU: 0xCE6, offset: 0x73AAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0x9AC, symBinAddr: 0x20E60, symSize: 0x30 } + - { offsetInCU: 0xD82, offset: 0x73B47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xA70, symBinAddr: 0x20F24, symSize: 0x218 } + - { offsetInCU: 0x27, offset: 0x73D52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x2116C, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x73DB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x104, symBinAddr: 0x21270, symSize: 0x28 } + - { offsetInCU: 0xB8, offset: 0x73DE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x12C, symBinAddr: 0x21298, symSize: 0x18 } + - { offsetInCU: 0xE1, offset: 0x73E0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x754, symBinAddr: 0x218C0, symSize: 0x2C } + - { offsetInCU: 0x180, offset: 0x73EAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x248, symBinAddr: 0x213B4, symSize: 0x28 } + - { offsetInCU: 0x1B1, offset: 0x73EDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x213DC, symSize: 0x18 } + - { offsetInCU: 0x1DA, offset: 0x73F05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x780, symBinAddr: 0x218EC, symSize: 0x58 } + - { offsetInCU: 0x305, offset: 0x74030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x288, symBinAddr: 0x213F4, symSize: 0x220 } + - { offsetInCU: 0x5E2, offset: 0x7430D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x4B8, symBinAddr: 0x21624, symSize: 0x11C } + - { offsetInCU: 0x872, offset: 0x7459D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x5D4, symBinAddr: 0x21740, symSize: 0xC0 } + - { offsetInCU: 0x9BA, offset: 0x746E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x694, symBinAddr: 0x21800, symSize: 0xC0 } + - { offsetInCU: 0xAE7, offset: 0x74812, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x7D8, symBinAddr: 0x21944, symSize: 0x4 } + - { offsetInCU: 0xAFB, offset: 0x74826, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x7DC, symBinAddr: 0x21948, symSize: 0x44 } + - { offsetInCU: 0xB0F, offset: 0x7483A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x820, symBinAddr: 0x2198C, symSize: 0x4 } + - { offsetInCU: 0xB23, offset: 0x7484E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x824, symBinAddr: 0x21990, symSize: 0x44 } + - { offsetInCU: 0xB37, offset: 0x74862, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x878, symBinAddr: 0x219D4, symSize: 0x90 } + - { offsetInCU: 0xB4B, offset: 0x74876, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x908, symBinAddr: 0x21A64, symSize: 0xBC } + - { offsetInCU: 0xB5F, offset: 0x7488A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0x9C4, symBinAddr: 0x21B20, symSize: 0x8 } + - { offsetInCU: 0xB73, offset: 0x7489E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0x9CC, symBinAddr: 0x21B28, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x748B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0x9D0, symBinAddr: 0x21B2C, symSize: 0x8 } + - { offsetInCU: 0xB9B, offset: 0x748C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0x9D8, symBinAddr: 0x21B34, symSize: 0x10 } + - { offsetInCU: 0xBAF, offset: 0x748DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0x9E8, symBinAddr: 0x21B44, symSize: 0x90 } + - { offsetInCU: 0xBC3, offset: 0x748EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xA78, symBinAddr: 0x21BD4, symSize: 0xBC } + - { offsetInCU: 0xBD7, offset: 0x74902, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xB34, symBinAddr: 0x21C90, symSize: 0x4 } + - { offsetInCU: 0xBEB, offset: 0x74916, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xB38, symBinAddr: 0x21C94, symSize: 0x10 } + - { offsetInCU: 0xBFF, offset: 0x7492A, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xB88, symBinAddr: 0x21CA4, symSize: 0x4C } + - { offsetInCU: 0xC3C, offset: 0x74967, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x18, symBinAddr: 0x21184, symSize: 0x24 } + - { offsetInCU: 0xD36, offset: 0x74A61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x3C, symBinAddr: 0x211A8, symSize: 0x4C } + - { offsetInCU: 0xE0E, offset: 0x74B39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x88, symBinAddr: 0x211F4, symSize: 0x34 } + - { offsetInCU: 0xE8A, offset: 0x74BB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBC, symBinAddr: 0x21228, symSize: 0x48 } + - { offsetInCU: 0xF45, offset: 0x74C70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C, symBinAddr: 0x212C8, symSize: 0x24 } + - { offsetInCU: 0x1039, offset: 0x74D64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x180, symBinAddr: 0x212EC, symSize: 0x4C } + - { offsetInCU: 0x1111, offset: 0x74E3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CC, symBinAddr: 0x21338, symSize: 0x34 } + - { offsetInCU: 0x118D, offset: 0x74EB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x2136C, symSize: 0x48 } + - { offsetInCU: 0x13AB, offset: 0x750D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x2116C, symSize: 0x14 } + - { offsetInCU: 0x13D0, offset: 0x750FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x14, symBinAddr: 0x21180, symSize: 0x4 } + - { offsetInCU: 0x142A, offset: 0x75155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x144, symBinAddr: 0x212B0, symSize: 0x4 } + - { offsetInCU: 0x143E, offset: 0x75169, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x148, symBinAddr: 0x212B4, symSize: 0x14 } + - { offsetInCU: 0x3C4, offset: 0x75633, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1010, symBinAddr: 0x22D08, symSize: 0x20 } + - { offsetInCU: 0x3D8, offset: 0x75647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1030, symBinAddr: 0x22D28, symSize: 0x44 } + - { offsetInCU: 0x3EC, offset: 0x7565B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x10F8, symBinAddr: 0x22D6C, symSize: 0x34 } + - { offsetInCU: 0x400, offset: 0x7566F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x112C, symBinAddr: 0x22DA0, symSize: 0x50 } + - { offsetInCU: 0x414, offset: 0x75683, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x117C, symBinAddr: 0x22DF0, symSize: 0x34 } + - { offsetInCU: 0x428, offset: 0x75697, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x11B0, symBinAddr: 0x22E24, symSize: 0x5C } + - { offsetInCU: 0x43C, offset: 0x756AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x12C0, symBinAddr: 0x22F34, symSize: 0x50 } + - { offsetInCU: 0x450, offset: 0x756BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1310, symBinAddr: 0x22F84, symSize: 0x80 } + - { offsetInCU: 0x464, offset: 0x756D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x1390, symBinAddr: 0x23004, symSize: 0x24 } + - { offsetInCU: 0x6AB, offset: 0x7591A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x21CF8, symSize: 0x164 } + - { offsetInCU: 0x82A, offset: 0x75A99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x164, symBinAddr: 0x21E5C, symSize: 0x1CC } + - { offsetInCU: 0xAE5, offset: 0x75D54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x340, symBinAddr: 0x22038, symSize: 0xC9C } + - { offsetInCU: 0x10BC, offset: 0x7632B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0xFDC, symBinAddr: 0x22CD4, symSize: 0x34 } + - { offsetInCU: 0x78, offset: 0x76420, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x84, symBinAddr: 0x230AC, symSize: 0x34 } + - { offsetInCU: 0xA9, offset: 0x76451, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xB8, symBinAddr: 0x230E0, symSize: 0xC } + - { offsetInCU: 0x12A, offset: 0x764D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xDC, symBinAddr: 0x23104, symSize: 0x30 } + - { offsetInCU: 0x15B, offset: 0x76503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x23478, symSize: 0x4C } + - { offsetInCU: 0x1C0, offset: 0x76568, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x23174, symSize: 0x30 } + - { offsetInCU: 0x1F1, offset: 0x76599, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x234C8, symSize: 0x4C } + - { offsetInCU: 0x256, offset: 0x765FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x1B4, symBinAddr: 0x231DC, symSize: 0x30 } + - { offsetInCU: 0x303, offset: 0x766AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x248, symBinAddr: 0x23270, symSize: 0x30 } + - { offsetInCU: 0x36E, offset: 0x76716, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x290, symBinAddr: 0x232B8, symSize: 0x30 } + - { offsetInCU: 0x39F, offset: 0x76747, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x538, symBinAddr: 0x23560, symSize: 0x58 } + - { offsetInCU: 0x404, offset: 0x767AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2D8, symBinAddr: 0x23300, symSize: 0x30 } + - { offsetInCU: 0x435, offset: 0x767DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x590, symBinAddr: 0x235B8, symSize: 0x4C } + - { offsetInCU: 0x49A, offset: 0x76842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x33C, symBinAddr: 0x23364, symSize: 0x20 } + - { offsetInCU: 0x505, offset: 0x768AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x420, symBinAddr: 0x23448, symSize: 0x30 } + - { offsetInCU: 0x537, offset: 0x768DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0x5DC, symBinAddr: 0x23604, symSize: 0x4 } + - { offsetInCU: 0x54B, offset: 0x768F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0x5E0, symBinAddr: 0x23608, symSize: 0x44 } + - { offsetInCU: 0x55F, offset: 0x76907, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x624, symBinAddr: 0x2364C, symSize: 0x4 } + - { offsetInCU: 0x573, offset: 0x7691B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x628, symBinAddr: 0x23650, symSize: 0x44 } + - { offsetInCU: 0x587, offset: 0x7692F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x66C, symBinAddr: 0x23694, symSize: 0x4 } + - { offsetInCU: 0x59B, offset: 0x76943, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x23698, symSize: 0x44 } + - { offsetInCU: 0x5AF, offset: 0x76957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x6B4, symBinAddr: 0x236DC, symSize: 0x4 } + - { offsetInCU: 0x5C3, offset: 0x7696B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x6B8, symBinAddr: 0x236E0, symSize: 0x44 } + - { offsetInCU: 0x5D7, offset: 0x7697F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x6FC, symBinAddr: 0x23724, symSize: 0x4 } + - { offsetInCU: 0x5EB, offset: 0x76993, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x700, symBinAddr: 0x23728, symSize: 0x44 } + - { offsetInCU: 0x5FF, offset: 0x769A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x744, symBinAddr: 0x2376C, symSize: 0x4 } + - { offsetInCU: 0x613, offset: 0x769BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x748, symBinAddr: 0x23770, symSize: 0x44 } + - { offsetInCU: 0x627, offset: 0x769CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x78C, symBinAddr: 0x237B4, symSize: 0x4 } + - { offsetInCU: 0x63B, offset: 0x769E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x790, symBinAddr: 0x237B8, symSize: 0x44 } + - { offsetInCU: 0x64F, offset: 0x769F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x7D4, symBinAddr: 0x237FC, symSize: 0x4 } + - { offsetInCU: 0x663, offset: 0x76A0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x7D8, symBinAddr: 0x23800, symSize: 0x44 } + - { offsetInCU: 0x677, offset: 0x76A1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x81C, symBinAddr: 0x23844, symSize: 0x4 } + - { offsetInCU: 0x68B, offset: 0x76A33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x820, symBinAddr: 0x23848, symSize: 0x44 } + - { offsetInCU: 0x69F, offset: 0x76A47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x864, symBinAddr: 0x2388C, symSize: 0x4 } + - { offsetInCU: 0x6B3, offset: 0x76A5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x868, symBinAddr: 0x23890, symSize: 0x44 } + - { offsetInCU: 0x6C7, offset: 0x76A6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x8AC, symBinAddr: 0x238D4, symSize: 0x4 } + - { offsetInCU: 0x6DB, offset: 0x76A83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x8B0, symBinAddr: 0x238D8, symSize: 0x44 } + - { offsetInCU: 0x6EF, offset: 0x76A97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x8F4, symBinAddr: 0x2391C, symSize: 0x10 } + - { offsetInCU: 0x703, offset: 0x76AAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x904, symBinAddr: 0x2392C, symSize: 0x10 } + - { offsetInCU: 0x717, offset: 0x76ABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x914, symBinAddr: 0x2393C, symSize: 0x10 } + - { offsetInCU: 0x72B, offset: 0x76AD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x924, symBinAddr: 0x2394C, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x76AE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x934, symBinAddr: 0x2395C, symSize: 0x10 } + - { offsetInCU: 0x753, offset: 0x76AFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x944, symBinAddr: 0x2396C, symSize: 0x10 } + - { offsetInCU: 0x767, offset: 0x76B0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x954, symBinAddr: 0x2397C, symSize: 0x10 } + - { offsetInCU: 0x77B, offset: 0x76B23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x964, symBinAddr: 0x2398C, symSize: 0x10 } + - { offsetInCU: 0x78F, offset: 0x76B37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x974, symBinAddr: 0x2399C, symSize: 0x10 } + - { offsetInCU: 0x7A3, offset: 0x76B4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x984, symBinAddr: 0x239AC, symSize: 0x10 } + - { offsetInCU: 0x7B7, offset: 0x76B5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x994, symBinAddr: 0x239BC, symSize: 0x10 } + - { offsetInCU: 0x7F4, offset: 0x76B9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x40, symBinAddr: 0x23068, symSize: 0x14 } + - { offsetInCU: 0x859, offset: 0x76C01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x58, symBinAddr: 0x23080, symSize: 0x28 } + - { offsetInCU: 0x96F, offset: 0x76D17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x23028, symSize: 0x3C } + - { offsetInCU: 0x98E, offset: 0x76D36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3C, symBinAddr: 0x23064, symSize: 0x4 } + - { offsetInCU: 0x9DA, offset: 0x76D82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0xD0, symBinAddr: 0x230F8, symSize: 0x4 } + - { offsetInCU: 0xA08, offset: 0x76DB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x140, symBinAddr: 0x23168, symSize: 0x4 } + - { offsetInCU: 0xA36, offset: 0x76DDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1A8, symBinAddr: 0x231D0, symSize: 0x4 } + - { offsetInCU: 0xA64, offset: 0x76E0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1E8, symBinAddr: 0x23210, symSize: 0x4 } + - { offsetInCU: 0xA85, offset: 0x76E2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1F8, symBinAddr: 0x23220, symSize: 0x4 } + - { offsetInCU: 0xAA6, offset: 0x76E4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x23C, symBinAddr: 0x23264, symSize: 0x4 } + - { offsetInCU: 0xADF, offset: 0x76E87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x284, symBinAddr: 0x232AC, symSize: 0x4 } + - { offsetInCU: 0xB0D, offset: 0x76EB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2CC, symBinAddr: 0x232F4, symSize: 0x4 } + - { offsetInCU: 0xB41, offset: 0x76EE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x308, symBinAddr: 0x23330, symSize: 0x28 } + - { offsetInCU: 0xB60, offset: 0x76F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x330, symBinAddr: 0x23358, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x76F41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x35C, symBinAddr: 0x23384, symSize: 0x34 } + - { offsetInCU: 0xBB8, offset: 0x76F60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x390, symBinAddr: 0x233B8, symSize: 0x4 } + - { offsetInCU: 0x1AD, offset: 0x77177, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x460, symBinAddr: 0x23EAC, symSize: 0x20 } + - { offsetInCU: 0x210, offset: 0x771DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x720, symBinAddr: 0x2416C, symSize: 0x48 } + - { offsetInCU: 0x24D, offset: 0x77217, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x768, symBinAddr: 0x241B4, symSize: 0x4C } + - { offsetInCU: 0x28A, offset: 0x77254, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x7B4, symBinAddr: 0x24200, symSize: 0x48 } + - { offsetInCU: 0x2C8, offset: 0x77292, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x440, symBinAddr: 0x23E8C, symSize: 0x20 } + - { offsetInCU: 0x2DC, offset: 0x772A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x4B0, symBinAddr: 0x23EFC, symSize: 0x48 } + - { offsetInCU: 0x3E8, offset: 0x773B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x7FC, symBinAddr: 0x24248, symSize: 0x20 } + - { offsetInCU: 0x404, offset: 0x773CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x81C, symBinAddr: 0x24268, symSize: 0x24 } + - { offsetInCU: 0x457, offset: 0x77421, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x840, symBinAddr: 0x2428C, symSize: 0x20 } + - { offsetInCU: 0x47A, offset: 0x77444, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x860, symBinAddr: 0x242AC, symSize: 0x1C } + - { offsetInCU: 0x4B7, offset: 0x77481, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x87C, symBinAddr: 0x242C8, symSize: 0x24 } + - { offsetInCU: 0x50D, offset: 0x774D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x8A0, symBinAddr: 0x242EC, symSize: 0x68 } + - { offsetInCU: 0x6DE, offset: 0x776A8, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xEE8, symBinAddr: 0x24914, symSize: 0x2C } + - { offsetInCU: 0x6F6, offset: 0x776C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xF14, symBinAddr: 0x24940, symSize: 0x84 } + - { offsetInCU: 0x742, offset: 0x7770C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0x1060, symBinAddr: 0x24A8C, symSize: 0x1C0 } + - { offsetInCU: 0x7D6, offset: 0x777A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1224, symBinAddr: 0x24C50, symSize: 0x4C } + - { offsetInCU: 0x826, offset: 0x777F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x1278, symBinAddr: 0x24CA4, symSize: 0x54 } + - { offsetInCU: 0x87D, offset: 0x77847, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x1388, symBinAddr: 0x24DB4, symSize: 0x158 } + - { offsetInCU: 0x8E5, offset: 0x778AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x14E8, symBinAddr: 0x24F14, symSize: 0x68 } + - { offsetInCU: 0x96B, offset: 0x77935, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x18C4, symBinAddr: 0x252A4, symSize: 0x3C } + - { offsetInCU: 0x97F, offset: 0x77949, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x1924, symBinAddr: 0x25304, symSize: 0x8 } + - { offsetInCU: 0x993, offset: 0x7795D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x192C, symBinAddr: 0x2530C, symSize: 0x10 } + - { offsetInCU: 0x9A7, offset: 0x77971, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x193C, symBinAddr: 0x2531C, symSize: 0x8 } + - { offsetInCU: 0xA25, offset: 0x779EF, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1DA8, symBinAddr: 0x25744, symSize: 0x14 } + - { offsetInCU: 0xA4E, offset: 0x77A18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1DBC, symBinAddr: 0x25758, symSize: 0x24 } + - { offsetInCU: 0xCE0, offset: 0x77CAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x23A4C, symSize: 0x20 } + - { offsetInCU: 0xCF4, offset: 0x77CBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvg', symObjAddr: 0x20, symBinAddr: 0x23A6C, symSize: 0x44 } + - { offsetInCU: 0xD19, offset: 0x77CE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvs', symObjAddr: 0x64, symBinAddr: 0x23AB0, symSize: 0x48 } + - { offsetInCU: 0xD4A, offset: 0x77D14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0xAC, symBinAddr: 0x23AF8, symSize: 0x44 } + - { offsetInCU: 0xD6F, offset: 0x77D39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvg', symObjAddr: 0xF0, symBinAddr: 0x23B3C, symSize: 0x44 } + - { offsetInCU: 0xD8E, offset: 0x77D58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvs', symObjAddr: 0x134, symBinAddr: 0x23B80, symSize: 0x48 } + - { offsetInCU: 0xDB3, offset: 0x77D7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x17C, symBinAddr: 0x23BC8, symSize: 0x44 } + - { offsetInCU: 0xDD2, offset: 0x77D9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1C0, symBinAddr: 0x23C0C, symSize: 0x48 } + - { offsetInCU: 0xDF1, offset: 0x77DBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x208, symBinAddr: 0x23C54, symSize: 0x50 } + - { offsetInCU: 0xE26, offset: 0x77DF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x258, symBinAddr: 0x23CA4, symSize: 0x44 } + - { offsetInCU: 0xE4B, offset: 0x77E15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x29C, symBinAddr: 0x23CE8, symSize: 0x4 } + - { offsetInCU: 0xE6C, offset: 0x77E36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvg', symObjAddr: 0x2A0, symBinAddr: 0x23CEC, symSize: 0x44 } + - { offsetInCU: 0xE8B, offset: 0x77E55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvs', symObjAddr: 0x2E4, symBinAddr: 0x23D30, symSize: 0x48 } + - { offsetInCU: 0xEBC, offset: 0x77E86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x32C, symBinAddr: 0x23D78, symSize: 0x44 } + - { offsetInCU: 0xEEF, offset: 0x77EB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x370, symBinAddr: 0x23DBC, symSize: 0xD0 } + - { offsetInCU: 0xF36, offset: 0x77F00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x480, symBinAddr: 0x23ECC, symSize: 0x30 } + - { offsetInCU: 0xF97, offset: 0x77F61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x4F8, symBinAddr: 0x23F44, symSize: 0x88 } + - { offsetInCU: 0x1022, offset: 0x77FEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x580, symBinAddr: 0x23FCC, symSize: 0x18 } + - { offsetInCU: 0x1053, offset: 0x7801D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x598, symBinAddr: 0x23FE4, symSize: 0xEC } + - { offsetInCU: 0x10A8, offset: 0x78072, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x684, symBinAddr: 0x240D0, symSize: 0x18 } + - { offsetInCU: 0x10C5, offset: 0x7808F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x69C, symBinAddr: 0x240E8, symSize: 0x20 } + - { offsetInCU: 0x10FF, offset: 0x780C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x6BC, symBinAddr: 0x24108, symSize: 0x64 } + - { offsetInCU: 0x1377, offset: 0x78341, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x908, symBinAddr: 0x24354, symSize: 0x478 } + - { offsetInCU: 0x164D, offset: 0x78617, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xDA0, symBinAddr: 0x247CC, symSize: 0x148 } + - { offsetInCU: 0x1729, offset: 0x786F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xF98, symBinAddr: 0x249C4, symSize: 0xC8 } + - { offsetInCU: 0x17F3, offset: 0x787BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1220, symBinAddr: 0x24C4C, symSize: 0x4 } + - { offsetInCU: 0x180E, offset: 0x787D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x1270, symBinAddr: 0x24C9C, symSize: 0x8 } + - { offsetInCU: 0x1829, offset: 0x787F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x12CC, symBinAddr: 0x24CF8, symSize: 0xBC } + - { offsetInCU: 0x18B0, offset: 0x7887A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x14E0, symBinAddr: 0x24F0C, symSize: 0x8 } + - { offsetInCU: 0x18E0, offset: 0x788AA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x1550, symBinAddr: 0x24F7C, symSize: 0x4C } + - { offsetInCU: 0x1979, offset: 0x78943, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x1944, symBinAddr: 0x25324, symSize: 0x12C } + - { offsetInCU: 0x1A02, offset: 0x789CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x1A70, symBinAddr: 0x25450, symSize: 0x19C } + - { offsetInCU: 0x1AC9, offset: 0x78A93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1C0C, symBinAddr: 0x255EC, symSize: 0x134 } + - { offsetInCU: 0x960, offset: 0x79494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x584C, symBinAddr: 0x2AFD8, symSize: 0x20 } + - { offsetInCU: 0xD4D, offset: 0x79881, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x5FB4, symBinAddr: 0x2B740, symSize: 0x68 } + - { offsetInCU: 0xE28, offset: 0x7995C, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x601C, symBinAddr: 0x2B7A8, symSize: 0xFC } + - { offsetInCU: 0x1101, offset: 0x79C35, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6118, symBinAddr: 0x2B8A4, symSize: 0x3E8 } + - { offsetInCU: 0x159A, offset: 0x7A0CE, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x6500, symBinAddr: 0x2BC8C, symSize: 0x12C } + - { offsetInCU: 0x17C5, offset: 0x7A2F9, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x662C, symBinAddr: 0x2BDB8, symSize: 0x284 } + - { offsetInCU: 0x1B9C, offset: 0x7A6D0, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x68B0, symBinAddr: 0x2C03C, symSize: 0x14C } + - { offsetInCU: 0x1D96, offset: 0x7A8CA, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x69FC, symBinAddr: 0x2C188, symSize: 0x2FC } + - { offsetInCU: 0x1F52, offset: 0x7AA86, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x6E10, symBinAddr: 0x2C594, symSize: 0x48 } + - { offsetInCU: 0x1F66, offset: 0x7AA9A, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x6E98, symBinAddr: 0x2C5DC, symSize: 0x10 } + - { offsetInCU: 0x2003, offset: 0x7AB37, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x7134, symBinAddr: 0x2C860, symSize: 0x40 } + - { offsetInCU: 0x2694, offset: 0x7B1C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x2578C, symSize: 0xA78 } + - { offsetInCU: 0x3318, offset: 0x7BE4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x14DC, symBinAddr: 0x26C68, symSize: 0x9DC } + - { offsetInCU: 0x3DE8, offset: 0x7C91C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x1EB8, symBinAddr: 0x27644, symSize: 0x970 } + - { offsetInCU: 0x487C, offset: 0x7D3B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2828, symBinAddr: 0x27FB4, symSize: 0xB90 } + - { offsetInCU: 0x56D5, offset: 0x7E209, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x33B8, symBinAddr: 0x28B44, symSize: 0xB54 } + - { offsetInCU: 0x6541, offset: 0x7F075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x3F24, symBinAddr: 0x296B0, symSize: 0xA88 } + - { offsetInCU: 0x7209, offset: 0x7FD3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x49AC, symBinAddr: 0x2A138, symSize: 0xA10 } + - { offsetInCU: 0x7D46, offset: 0x8087A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x53BC, symBinAddr: 0x2AB48, symSize: 0x190 } + - { offsetInCU: 0x7E41, offset: 0x80975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x554C, symBinAddr: 0x2ACD8, symSize: 0x180 } + - { offsetInCU: 0x7F09, offset: 0x80A3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x56CC, symBinAddr: 0x2AE58, symSize: 0x128 } + - { offsetInCU: 0x8064, offset: 0x80B98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x57F4, symBinAddr: 0x2AF80, symSize: 0x58 } + - { offsetInCU: 0x8266, offset: 0x80D9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x586C, symBinAddr: 0x2AFF8, symSize: 0x748 } + - { offsetInCU: 0x8B34, offset: 0x81668, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x6CF8, symBinAddr: 0x2C484, symSize: 0x14 } + - { offsetInCU: 0x8B56, offset: 0x8168A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x6D0C, symBinAddr: 0x2C498, symSize: 0xFC } + - { offsetInCU: 0x8BFC, offset: 0x81730, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x6EA8, symBinAddr: 0x2C5EC, symSize: 0x138 } + - { offsetInCU: 0x8CD0, offset: 0x81804, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x6FE0, symBinAddr: 0x2C724, symSize: 0x14 } + - { offsetInCU: 0x4F, offset: 0x818E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x1140, symBinAddr: 0x5EF10, symSize: 0x0 } + - { offsetInCU: 0x7F, offset: 0x81914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2C8E4, symSize: 0xB4 } + - { offsetInCU: 0x11E, offset: 0x819B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x2D124, symSize: 0x14 } + - { offsetInCU: 0x19C, offset: 0x81A31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x854, symBinAddr: 0x2D138, symSize: 0x44 } + - { offsetInCU: 0x27F, offset: 0x81B14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x898, symBinAddr: 0x2D17C, symSize: 0x28 } + - { offsetInCU: 0x31F, offset: 0x81BB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAB4, symBinAddr: 0x2D398, symSize: 0x4 } + - { offsetInCU: 0x399, offset: 0x81C2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xD6C, symBinAddr: 0x2D5BC, symSize: 0xAC } + - { offsetInCU: 0x464, offset: 0x81CF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE18, symBinAddr: 0x2D668, symSize: 0x110 } + - { offsetInCU: 0x52E, offset: 0x81DC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB4, symBinAddr: 0x2C998, symSize: 0x11C } + - { offsetInCU: 0x58F, offset: 0x81E24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAD8, symBinAddr: 0x2D3BC, symSize: 0x20 } + - { offsetInCU: 0x5A3, offset: 0x81E38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB08, symBinAddr: 0x2D3DC, symSize: 0x90 } + - { offsetInCU: 0x5B7, offset: 0x81E4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xB98, symBinAddr: 0x2D46C, symSize: 0xBC } + - { offsetInCU: 0x5CB, offset: 0x81E60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC54, symBinAddr: 0x2D528, symSize: 0x8 } + - { offsetInCU: 0x5DF, offset: 0x81E74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC5C, symBinAddr: 0x2D530, symSize: 0x4 } + - { offsetInCU: 0x5F3, offset: 0x81E88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC60, symBinAddr: 0x2D534, symSize: 0x8 } + - { offsetInCU: 0x607, offset: 0x81E9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC68, symBinAddr: 0x2D53C, symSize: 0x10 } + - { offsetInCU: 0x61B, offset: 0x81EB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xC78, symBinAddr: 0x2D54C, symSize: 0x4 } + - { offsetInCU: 0x62F, offset: 0x81EC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xC7C, symBinAddr: 0x2D550, symSize: 0x44 } + - { offsetInCU: 0x643, offset: 0x81ED8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCC0, symBinAddr: 0x2D594, symSize: 0x10 } + - { offsetInCU: 0x657, offset: 0x81EEC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xCD0, symBinAddr: 0x2D5A4, symSize: 0x8 } + - { offsetInCU: 0x66B, offset: 0x81F00, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xCD8, symBinAddr: 0x2D5AC, symSize: 0x10 } + - { offsetInCU: 0x67F, offset: 0x81F14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xF78, symBinAddr: 0x2D7C8, symSize: 0xC } + - { offsetInCU: 0x693, offset: 0x81F28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x103C, symBinAddr: 0x2D88C, symSize: 0x8 } + - { offsetInCU: 0x6A7, offset: 0x81F3C, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x1044, symBinAddr: 0x2D894, symSize: 0x10 } + - { offsetInCU: 0x769, offset: 0x81FFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x2D1A4, symSize: 0x40 } + - { offsetInCU: 0x922, offset: 0x821B7, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x794, symBinAddr: 0x2D078, symSize: 0xAC } + - { offsetInCU: 0x979, offset: 0x8220E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1D0, symBinAddr: 0x2CAB4, symSize: 0x5C } + - { offsetInCU: 0x99D, offset: 0x82232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x22C, symBinAddr: 0x2CB10, symSize: 0x4EC } + - { offsetInCU: 0xA91, offset: 0x82326, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x718, symBinAddr: 0x2CFFC, symSize: 0x7C } + - { offsetInCU: 0xB67, offset: 0x823FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x900, symBinAddr: 0x2D1E4, symSize: 0x1B4 } + - { offsetInCU: 0xBC8, offset: 0x8245D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAB8, symBinAddr: 0x2D39C, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x82521, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2D8AC, symSize: 0x5C } + - { offsetInCU: 0x232, offset: 0x82728, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x2DC88, symSize: 0x14 } + - { offsetInCU: 0x274, offset: 0x8276A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x3F0, symBinAddr: 0x2DC9C, symSize: 0x44 } + - { offsetInCU: 0x357, offset: 0x8284D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x434, symBinAddr: 0x2DCE0, symSize: 0x28 } + - { offsetInCU: 0x3EA, offset: 0x828E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x49C, symBinAddr: 0x2DD48, symSize: 0x4 } + - { offsetInCU: 0x3FE, offset: 0x828F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4A0, symBinAddr: 0x2DD4C, symSize: 0x44 } + - { offsetInCU: 0x412, offset: 0x82908, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x504, symBinAddr: 0x2DDA0, symSize: 0x90 } + - { offsetInCU: 0x426, offset: 0x8291C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x594, symBinAddr: 0x2DE30, symSize: 0xBC } + - { offsetInCU: 0x43A, offset: 0x82930, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x650, symBinAddr: 0x2DEEC, symSize: 0x8 } + - { offsetInCU: 0x44E, offset: 0x82944, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x658, symBinAddr: 0x2DEF4, symSize: 0x4 } + - { offsetInCU: 0x462, offset: 0x82958, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x65C, symBinAddr: 0x2DEF8, symSize: 0x8 } + - { offsetInCU: 0x476, offset: 0x8296C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x664, symBinAddr: 0x2DF00, symSize: 0x10 } + - { offsetInCU: 0x48A, offset: 0x82980, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x674, symBinAddr: 0x2DF10, symSize: 0xC } + - { offsetInCU: 0x49E, offset: 0x82994, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x680, symBinAddr: 0x2DF1C, symSize: 0x20 } + - { offsetInCU: 0x4B2, offset: 0x829A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x6A0, symBinAddr: 0x2DF3C, symSize: 0x28 } + - { offsetInCU: 0x4C6, offset: 0x829BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x6C8, symBinAddr: 0x2DF64, symSize: 0x8 } + - { offsetInCU: 0x4DA, offset: 0x829D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x6D0, symBinAddr: 0x2DF6C, symSize: 0x4 } + - { offsetInCU: 0x4EE, offset: 0x829E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x6D4, symBinAddr: 0x2DF70, symSize: 0x4 } + - { offsetInCU: 0x502, offset: 0x829F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x6D8, symBinAddr: 0x2DF74, symSize: 0x10 } + - { offsetInCU: 0x692, offset: 0x82B88, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0x954, symBinAddr: 0x2E1A8, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x82C95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x354, symBinAddr: 0x2DC00, symSize: 0x4 } + - { offsetInCU: 0x7BB, offset: 0x82CB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x358, symBinAddr: 0x2DC04, symSize: 0x4 } + - { offsetInCU: 0x7D7, offset: 0x82CCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x35C, symBinAddr: 0x2DC08, symSize: 0x4 } + - { offsetInCU: 0x7F3, offset: 0x82CE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x360, symBinAddr: 0x2DC0C, symSize: 0x4 } + - { offsetInCU: 0x846, offset: 0x82D3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x45C, symBinAddr: 0x2DD08, symSize: 0x40 } + - { offsetInCU: 0x8E2, offset: 0x82DD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x4E4, symBinAddr: 0x2DD90, symSize: 0x4 } + - { offsetInCU: 0x8FE, offset: 0x82DF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x4E8, symBinAddr: 0x2DD94, symSize: 0x4 } + - { offsetInCU: 0x91A, offset: 0x82E10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x4EC, symBinAddr: 0x2DD98, symSize: 0x4 } + - { offsetInCU: 0x936, offset: 0x82E2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x4F0, symBinAddr: 0x2DD9C, symSize: 0x4 } + - { offsetInCU: 0xAE7, offset: 0x82FDD, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x2D8AC, symSize: 0x5C } + - { offsetInCU: 0xB67, offset: 0x8305D, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x5C, symBinAddr: 0x2D908, symSize: 0x104 } + - { offsetInCU: 0xBFA, offset: 0x830F0, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x160, symBinAddr: 0x2DA0C, symSize: 0xB4 } + - { offsetInCU: 0xD96, offset: 0x8328C, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x214, symBinAddr: 0x2DAC0, symSize: 0x140 } + - { offsetInCU: 0xF65, offset: 0x8345B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x364, symBinAddr: 0x2DC10, symSize: 0x10 } + - { offsetInCU: 0xFA1, offset: 0x83497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x374, symBinAddr: 0x2DC20, symSize: 0x24 } + - { offsetInCU: 0x1030, offset: 0x83526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x398, symBinAddr: 0x2DC44, symSize: 0x44 } + - { offsetInCU: 0x1184, offset: 0x8367A, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x6E8, symBinAddr: 0x2DF84, symSize: 0x224 } + - { offsetInCU: 0x2B, offset: 0x8394E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2E1EC, symSize: 0x28 } + - { offsetInCU: 0x93, offset: 0x839B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x250, symBinAddr: 0x2E43C, symSize: 0x30 } + - { offsetInCU: 0xC4, offset: 0x839E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x280, symBinAddr: 0x2E46C, symSize: 0xC } + - { offsetInCU: 0xE0, offset: 0x83A03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x28C, symBinAddr: 0x2E478, symSize: 0xA0 } + - { offsetInCU: 0x10A, offset: 0x83A2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4E0, symBinAddr: 0x2E6CC, symSize: 0x34 } + - { offsetInCU: 0x1AF, offset: 0x83AD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x474, symBinAddr: 0x2E660, symSize: 0x28 } + - { offsetInCU: 0x1E0, offset: 0x83B03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x49C, symBinAddr: 0x2E688, symSize: 0x10 } + - { offsetInCU: 0x212, offset: 0x83B35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x4AC, symBinAddr: 0x2E698, symSize: 0x34 } + - { offsetInCU: 0x303, offset: 0x83C26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x35C, symBinAddr: 0x2E548, symSize: 0x14 } + - { offsetInCU: 0x346, offset: 0x83C69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x370, symBinAddr: 0x2E55C, symSize: 0x14 } + - { offsetInCU: 0x389, offset: 0x83CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x384, symBinAddr: 0x2E570, symSize: 0x14 } + - { offsetInCU: 0x3CC, offset: 0x83CEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x398, symBinAddr: 0x2E584, symSize: 0x14 } + - { offsetInCU: 0x40F, offset: 0x83D32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x514, symBinAddr: 0x2E700, symSize: 0x4 } + - { offsetInCU: 0x423, offset: 0x83D46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x518, symBinAddr: 0x2E704, symSize: 0x44 } + - { offsetInCU: 0x437, offset: 0x83D5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x55C, symBinAddr: 0x2E748, symSize: 0x4 } + - { offsetInCU: 0x44B, offset: 0x83D6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x560, symBinAddr: 0x2E74C, symSize: 0x10 } + - { offsetInCU: 0x45F, offset: 0x83D82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x580, symBinAddr: 0x2E75C, symSize: 0x90 } + - { offsetInCU: 0x473, offset: 0x83D96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x610, symBinAddr: 0x2E7EC, symSize: 0xBC } + - { offsetInCU: 0x487, offset: 0x83DAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x6CC, symBinAddr: 0x2E8A8, symSize: 0x8 } + - { offsetInCU: 0x49B, offset: 0x83DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x6D4, symBinAddr: 0x2E8B0, symSize: 0x4 } + - { offsetInCU: 0x4AF, offset: 0x83DD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x6D8, symBinAddr: 0x2E8B4, symSize: 0x8 } + - { offsetInCU: 0x4C3, offset: 0x83DE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x6E0, symBinAddr: 0x2E8BC, symSize: 0x10 } + - { offsetInCU: 0x4D7, offset: 0x83DFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x6F0, symBinAddr: 0x2E8CC, symSize: 0x4 } + - { offsetInCU: 0x4EB, offset: 0x83E0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x6F4, symBinAddr: 0x2E8D0, symSize: 0x44 } + - { offsetInCU: 0x52E, offset: 0x83E51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x190, symBinAddr: 0x2E37C, symSize: 0x14 } + - { offsetInCU: 0x5D8, offset: 0x83EFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1A4, symBinAddr: 0x2E390, symSize: 0x44 } + - { offsetInCU: 0x667, offset: 0x83F8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1E8, symBinAddr: 0x2E3D4, symSize: 0x28 } + - { offsetInCU: 0x6BA, offset: 0x83FDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x210, symBinAddr: 0x2E3FC, symSize: 0x40 } + - { offsetInCU: 0x726, offset: 0x84049, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3AC, symBinAddr: 0x2E598, symSize: 0x18 } + - { offsetInCU: 0x7D0, offset: 0x840F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3C4, symBinAddr: 0x2E5B0, symSize: 0x44 } + - { offsetInCU: 0x8B1, offset: 0x841D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x408, symBinAddr: 0x2E5F4, symSize: 0x2C } + - { offsetInCU: 0x936, offset: 0x84259, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x434, symBinAddr: 0x2E620, symSize: 0x40 } + - { offsetInCU: 0xA9A, offset: 0x843BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x2E1EC, symSize: 0x28 } + - { offsetInCU: 0xAF8, offset: 0x8441B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x28, symBinAddr: 0x2E214, symSize: 0x4 } + - { offsetInCU: 0xB1F, offset: 0x84442, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x2C, symBinAddr: 0x2E218, symSize: 0x5C } + - { offsetInCU: 0xB6F, offset: 0x84492, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0x88, symBinAddr: 0x2E274, symSize: 0x30 } + - { offsetInCU: 0xBCB, offset: 0x844EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xB8, symBinAddr: 0x2E2A4, symSize: 0x10 } + - { offsetInCU: 0xBF9, offset: 0x8451C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xC8, symBinAddr: 0x2E2B4, symSize: 0xA0 } + - { offsetInCU: 0xC18, offset: 0x8453B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x168, symBinAddr: 0x2E354, symSize: 0x28 } + - { offsetInCU: 0xC68, offset: 0x8458B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x32C, symBinAddr: 0x2E518, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x845B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x33C, symBinAddr: 0x2E528, symSize: 0x10 } + - { offsetInCU: 0xCC4, offset: 0x845E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x34C, symBinAddr: 0x2E538, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8478C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2E914, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x847C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E91C, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x847E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2E91C, symSize: 0x8 } + - { offsetInCU: 0x1A2, offset: 0x848E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0xD8, symBinAddr: 0x2E9EC, symSize: 0x8 } + - { offsetInCU: 0x1B6, offset: 0x848F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x120, symBinAddr: 0x2EA34, symSize: 0x50 } + - { offsetInCU: 0x1CA, offset: 0x8490B, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x170, symBinAddr: 0x2EA84, symSize: 0xC } + - { offsetInCU: 0x1DE, offset: 0x8491F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x17C, symBinAddr: 0x2EA90, symSize: 0x40 } + - { offsetInCU: 0x1F2, offset: 0x84933, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x1BC, symBinAddr: 0x2EAD0, symSize: 0x5C } + - { offsetInCU: 0x206, offset: 0x84947, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x218, symBinAddr: 0x2EB2C, symSize: 0x50 } + - { offsetInCU: 0x21A, offset: 0x8495B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x268, symBinAddr: 0x2EB7C, symSize: 0x10 } + - { offsetInCU: 0x3B6, offset: 0x84AF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2E924, symSize: 0xC4 } + - { offsetInCU: 0x4B, offset: 0x84CD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2EB8C, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x84D06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2EB94, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x84D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2EB94, symSize: 0x8 } + - { offsetInCU: 0xC7, offset: 0x84D4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x2EB9C, symSize: 0x1C } + - { offsetInCU: 0x156, offset: 0x84DDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x2C, symBinAddr: 0x2EBB8, symSize: 0xE4 } + - { offsetInCU: 0x2EC, offset: 0x84F72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x110, symBinAddr: 0x2EC9C, symSize: 0x110 } + - { offsetInCU: 0x407, offset: 0x8508D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x264, symBinAddr: 0x2EDB0, symSize: 0x28 } + - { offsetInCU: 0x41B, offset: 0x850A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x2DC, symBinAddr: 0x2EE28, symSize: 0x7C } + - { offsetInCU: 0x42F, offset: 0x850B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x358, symBinAddr: 0x2EEA4, symSize: 0x14 } + - { offsetInCU: 0x443, offset: 0x850C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x36C, symBinAddr: 0x2EEB8, symSize: 0x5C } + - { offsetInCU: 0x457, offset: 0x850DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x3C8, symBinAddr: 0x2EF14, symSize: 0x5C } + - { offsetInCU: 0x46B, offset: 0x850F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x424, symBinAddr: 0x2EF70, symSize: 0x54 } + - { offsetInCU: 0x47F, offset: 0x85105, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x478, symBinAddr: 0x2EFC4, symSize: 0x10 } + - { offsetInCU: 0x4F, offset: 0x8539C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x2EFD4, symSize: 0x8 } + - { offsetInCU: 0x84, offset: 0x853D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2EFDC, symSize: 0x8 } + - { offsetInCU: 0xA4, offset: 0x853F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x2EFDC, symSize: 0x8 } + - { offsetInCU: 0x36D, offset: 0x856BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xDE0, symBinAddr: 0x2FDB4, symSize: 0x58 } + - { offsetInCU: 0x389, offset: 0x856D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0xEBC, symBinAddr: 0x2FE50, symSize: 0x30 } + - { offsetInCU: 0x39D, offset: 0x856EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0xF30, symBinAddr: 0x2FE80, symSize: 0x78 } + - { offsetInCU: 0x3B1, offset: 0x856FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0xFEC, symBinAddr: 0x2FEF8, symSize: 0x140 } + - { offsetInCU: 0x3C5, offset: 0x85712, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x112C, symBinAddr: 0x30038, symSize: 0x1F0 } + - { offsetInCU: 0x3D9, offset: 0x85726, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x131C, symBinAddr: 0x30228, symSize: 0x34 } + - { offsetInCU: 0x3ED, offset: 0x8573A, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x1350, symBinAddr: 0x3025C, symSize: 0x3C } + - { offsetInCU: 0x401, offset: 0x8574E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x138C, symBinAddr: 0x30298, symSize: 0x138 } + - { offsetInCU: 0x415, offset: 0x85762, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x14C4, symBinAddr: 0x303D0, symSize: 0x48 } + - { offsetInCU: 0x429, offset: 0x85776, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x150C, symBinAddr: 0x30418, symSize: 0x68 } + - { offsetInCU: 0x43D, offset: 0x8578A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x1574, symBinAddr: 0x30480, symSize: 0x10 } + - { offsetInCU: 0x721, offset: 0x85A6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x2EFE4, symSize: 0x2E4 } + - { offsetInCU: 0xBA7, offset: 0x85EF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x2F4, symBinAddr: 0x2F2C8, symSize: 0x340 } + - { offsetInCU: 0x10A3, offset: 0x863F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x634, symBinAddr: 0x2F608, symSize: 0x274 } + - { offsetInCU: 0x14EA, offset: 0x86837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x8A8, symBinAddr: 0x2F87C, symSize: 0x27C } + - { offsetInCU: 0x19B2, offset: 0x86CFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xB24, symBinAddr: 0x2FAF8, symSize: 0x2BC } + - { offsetInCU: 0x4B, offset: 0x86FDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30490, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8700F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30498, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8702F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30498, symSize: 0x8 } + - { offsetInCU: 0x204, offset: 0x87193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x370, symBinAddr: 0x30800, symSize: 0x1C } + - { offsetInCU: 0x220, offset: 0x871AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x410, symBinAddr: 0x30860, symSize: 0x30 } + - { offsetInCU: 0x234, offset: 0x871C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x440, symBinAddr: 0x30890, symSize: 0x30 } + - { offsetInCU: 0x248, offset: 0x871D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x470, symBinAddr: 0x308C0, symSize: 0x74 } + - { offsetInCU: 0x25C, offset: 0x871EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x4E4, symBinAddr: 0x30934, symSize: 0xAC } + - { offsetInCU: 0x270, offset: 0x871FF, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x590, symBinAddr: 0x309E0, symSize: 0x1C } + - { offsetInCU: 0x284, offset: 0x87213, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x5AC, symBinAddr: 0x309FC, symSize: 0x74 } + - { offsetInCU: 0x298, offset: 0x87227, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x620, symBinAddr: 0x30A70, symSize: 0x5C } + - { offsetInCU: 0x2AC, offset: 0x8723B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x67C, symBinAddr: 0x30ACC, symSize: 0x60 } + - { offsetInCU: 0x2C0, offset: 0x8724F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x6DC, symBinAddr: 0x30B2C, symSize: 0x10 } + - { offsetInCU: 0x472, offset: 0x87401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x304A0, symSize: 0xD8 } + - { offsetInCU: 0x615, offset: 0x875A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0xE8, symBinAddr: 0x30578, symSize: 0x288 } + - { offsetInCU: 0x27, offset: 0x879E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B3C, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x87A08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B3C, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x87A3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30B44, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x87A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30B44, symSize: 0x8 } + - { offsetInCU: 0xAE, offset: 0x87A70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30B4C, symSize: 0x10 } + - { offsetInCU: 0xCA, offset: 0x87A8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x20, symBinAddr: 0x30B5C, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x87B5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B6C, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x87B7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B6C, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x87BB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30B74, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x87BD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30B74, symSize: 0x8 } + - { offsetInCU: 0xAE, offset: 0x87BE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x30B7C, symSize: 0x10 } + - { offsetInCU: 0xCA, offset: 0x87C02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x20, symBinAddr: 0x30B8C, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x87CF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x30B9C, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x87D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30BA4, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x87D4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x30BA4, symSize: 0x8 } + - { offsetInCU: 0x25D, offset: 0x87F0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x260, symBinAddr: 0x30DFC, symSize: 0x88 } + - { offsetInCU: 0x327, offset: 0x87FD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2E8, symBinAddr: 0x30E84, symSize: 0x118 } + - { offsetInCU: 0x487, offset: 0x88135, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x484, symBinAddr: 0x30FE0, symSize: 0x30 } + - { offsetInCU: 0x49B, offset: 0x88149, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x4B4, symBinAddr: 0x31010, symSize: 0x30 } + - { offsetInCU: 0x4AF, offset: 0x8815D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x4E4, symBinAddr: 0x31040, symSize: 0x5C } + - { offsetInCU: 0x4C3, offset: 0x88171, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x540, symBinAddr: 0x3109C, symSize: 0x94 } + - { offsetInCU: 0x4D7, offset: 0x88185, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5D4, symBinAddr: 0x31130, symSize: 0x14 } + - { offsetInCU: 0x4EB, offset: 0x88199, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x5E8, symBinAddr: 0x31144, symSize: 0x64 } + - { offsetInCU: 0x4FF, offset: 0x881AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x64C, symBinAddr: 0x311A8, symSize: 0x5C } + - { offsetInCU: 0x513, offset: 0x881C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x6A8, symBinAddr: 0x31204, symSize: 0x5C } + - { offsetInCU: 0x527, offset: 0x881D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x704, symBinAddr: 0x31260, symSize: 0x10 } + - { offsetInCU: 0x745, offset: 0x883F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x30BAC, symSize: 0x128 } + - { offsetInCU: 0x951, offset: 0x885FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x30CD4, symSize: 0x128 } + - { offsetInCU: 0x4B, offset: 0x8884D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31270, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x88882, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31278, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x888A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x31278, symSize: 0x8 } + - { offsetInCU: 0x25D, offset: 0x88A5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x260, symBinAddr: 0x314D0, symSize: 0x88 } + - { offsetInCU: 0x30D, offset: 0x88B0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2E8, symBinAddr: 0x31558, symSize: 0xD4 } + - { offsetInCU: 0x41E, offset: 0x88C20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x440, symBinAddr: 0x31670, symSize: 0x30 } + - { offsetInCU: 0x432, offset: 0x88C34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x470, symBinAddr: 0x316A0, symSize: 0x30 } + - { offsetInCU: 0x446, offset: 0x88C48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x4A0, symBinAddr: 0x316D0, symSize: 0x5C } + - { offsetInCU: 0x45A, offset: 0x88C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x4FC, symBinAddr: 0x3172C, symSize: 0x94 } + - { offsetInCU: 0x46E, offset: 0x88C70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x5A4, symBinAddr: 0x317C0, symSize: 0x64 } + - { offsetInCU: 0x482, offset: 0x88C84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x608, symBinAddr: 0x31824, symSize: 0x5C } + - { offsetInCU: 0x496, offset: 0x88C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x664, symBinAddr: 0x31880, symSize: 0x5C } + - { offsetInCU: 0x4AA, offset: 0x88CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x6C0, symBinAddr: 0x318DC, symSize: 0x10 } + - { offsetInCU: 0x6C8, offset: 0x88ECA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x31280, symSize: 0x128 } + - { offsetInCU: 0x8D4, offset: 0x890D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x313A8, symSize: 0x128 } + - { offsetInCU: 0x27, offset: 0x892EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x318EC, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8930F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x318EC, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x89344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x318F4, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x89364, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x318F4, symSize: 0x8 } + - { offsetInCU: 0x2A4, offset: 0x89568, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3EC, symBinAddr: 0x31CD8, symSize: 0x40 } + - { offsetInCU: 0x453, offset: 0x89717, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x42C, symBinAddr: 0x31D18, symSize: 0x804 } + - { offsetInCU: 0xA69, offset: 0x89D2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xC30, symBinAddr: 0x3251C, symSize: 0x48 } + - { offsetInCU: 0xA7D, offset: 0x89D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xCB8, symBinAddr: 0x32564, symSize: 0x30 } + - { offsetInCU: 0xA91, offset: 0x89D55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xCE8, symBinAddr: 0x32594, symSize: 0x48 } + - { offsetInCU: 0xAA5, offset: 0x89D69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xD30, symBinAddr: 0x325DC, symSize: 0xB4 } + - { offsetInCU: 0xAB9, offset: 0x89D7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xDE4, symBinAddr: 0x32690, symSize: 0x104 } + - { offsetInCU: 0xACD, offset: 0x89D91, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xEE8, symBinAddr: 0x32794, symSize: 0x1C } + - { offsetInCU: 0xAE1, offset: 0x89DA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xF04, symBinAddr: 0x327B0, symSize: 0xB4 } + - { offsetInCU: 0xAF5, offset: 0x89DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0xFB8, symBinAddr: 0x32864, symSize: 0x48 } + - { offsetInCU: 0xB09, offset: 0x89DCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0x1000, symBinAddr: 0x328AC, symSize: 0x58 } + - { offsetInCU: 0xB1D, offset: 0x89DE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0x1058, symBinAddr: 0x32904, symSize: 0x10 } + - { offsetInCU: 0xE84, offset: 0x8A148, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x318FC, symSize: 0x128 } + - { offsetInCU: 0x1119, offset: 0x8A3DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x31A24, symSize: 0x180 } + - { offsetInCU: 0x146E, offset: 0x8A732, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2B8, symBinAddr: 0x31BA4, symSize: 0x134 } + - { offsetInCU: 0x4B, offset: 0x8AA67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32914, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8AA9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3291C, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8AABC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x3291C, symSize: 0x8 } + - { offsetInCU: 0x25D, offset: 0x8AC79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x260, symBinAddr: 0x32B74, symSize: 0x88 } + - { offsetInCU: 0x30D, offset: 0x8AD29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2E8, symBinAddr: 0x32BFC, symSize: 0xD4 } + - { offsetInCU: 0x41E, offset: 0x8AE3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x440, symBinAddr: 0x32D14, symSize: 0x30 } + - { offsetInCU: 0x432, offset: 0x8AE4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x470, symBinAddr: 0x32D44, symSize: 0x30 } + - { offsetInCU: 0x446, offset: 0x8AE62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x4A0, symBinAddr: 0x32D74, symSize: 0x5C } + - { offsetInCU: 0x45A, offset: 0x8AE76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x4FC, symBinAddr: 0x32DD0, symSize: 0x94 } + - { offsetInCU: 0x46E, offset: 0x8AE8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x5A4, symBinAddr: 0x32E64, symSize: 0x64 } + - { offsetInCU: 0x482, offset: 0x8AE9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x608, symBinAddr: 0x32EC8, symSize: 0x5C } + - { offsetInCU: 0x496, offset: 0x8AEB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x664, symBinAddr: 0x32F24, symSize: 0x5C } + - { offsetInCU: 0x4AA, offset: 0x8AEC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x6C0, symBinAddr: 0x32F80, symSize: 0x10 } + - { offsetInCU: 0x6C8, offset: 0x8B0E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32924, symSize: 0x128 } + - { offsetInCU: 0x8D4, offset: 0x8B2F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x138, symBinAddr: 0x32A4C, symSize: 0x128 } + - { offsetInCU: 0x4B, offset: 0x8B529, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x32F90, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8B55E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32F98, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8B57E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x32F98, symSize: 0x8 } + - { offsetInCU: 0x25D, offset: 0x8B73B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x228, symBinAddr: 0x331B8, symSize: 0x88 } + - { offsetInCU: 0x2D1, offset: 0x8B7AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x2B0, symBinAddr: 0x33240, symSize: 0xD0 } + - { offsetInCU: 0x3E2, offset: 0x8B8C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x404, symBinAddr: 0x33354, symSize: 0x30 } + - { offsetInCU: 0x3F6, offset: 0x8B8D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x434, symBinAddr: 0x33384, symSize: 0x30 } + - { offsetInCU: 0x40A, offset: 0x8B8E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x464, symBinAddr: 0x333B4, symSize: 0x64 } + - { offsetInCU: 0x41E, offset: 0x8B8FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x4C8, symBinAddr: 0x33418, symSize: 0x94 } + - { offsetInCU: 0x432, offset: 0x8B910, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x570, symBinAddr: 0x334AC, symSize: 0x6C } + - { offsetInCU: 0x446, offset: 0x8B924, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x5DC, symBinAddr: 0x33518, symSize: 0x5C } + - { offsetInCU: 0x45A, offset: 0x8B938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x638, symBinAddr: 0x33574, symSize: 0x5C } + - { offsetInCU: 0x46E, offset: 0x8B94C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x694, symBinAddr: 0x335D0, symSize: 0x10 } + - { offsetInCU: 0x685, offset: 0x8BB63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x32FA0, symSize: 0xF0 } + - { offsetInCU: 0x87C, offset: 0x8BD5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x100, symBinAddr: 0x33090, symSize: 0x128 } + - { offsetInCU: 0x27, offset: 0x8BF70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x335E0, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8BF94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x335E0, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8BFC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x335E8, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8BFE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x335E8, symSize: 0x8 } + - { offsetInCU: 0xC9, offset: 0x8C012, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x335F0, symSize: 0x88 } + - { offsetInCU: 0x35A, offset: 0x8C2A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x98, symBinAddr: 0x33678, symSize: 0x4E8 } + - { offsetInCU: 0xAD8, offset: 0x8CA21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x580, symBinAddr: 0x33B60, symSize: 0x30 } + - { offsetInCU: 0xAEC, offset: 0x8CA35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x5B0, symBinAddr: 0x33B90, symSize: 0x40 } + - { offsetInCU: 0xB00, offset: 0x8CA49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x5F0, symBinAddr: 0x33BD0, symSize: 0x7C } + - { offsetInCU: 0xB14, offset: 0x8CA5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x66C, symBinAddr: 0x33C4C, symSize: 0xBC } + - { offsetInCU: 0xB28, offset: 0x8CA71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x744, symBinAddr: 0x33D08, symSize: 0x84 } + - { offsetInCU: 0xB3C, offset: 0x8CA85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x7C8, symBinAddr: 0x33D8C, symSize: 0x48 } + - { offsetInCU: 0xB50, offset: 0x8CA99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x810, symBinAddr: 0x33DD4, symSize: 0x4C } + - { offsetInCU: 0xB64, offset: 0x8CAAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x85C, symBinAddr: 0x33E20, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8CEE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33E30, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8CF15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33E38, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8CF35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x33E38, symSize: 0x8 } + - { offsetInCU: 0x551, offset: 0x8D3E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xAA8, symBinAddr: 0x348D8, symSize: 0x38 } + - { offsetInCU: 0x582, offset: 0x8D417, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xD34, symBinAddr: 0x34B24, symSize: 0x28 } + - { offsetInCU: 0x596, offset: 0x8D42B, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xD64, symBinAddr: 0x34B4C, symSize: 0x28 } + - { offsetInCU: 0x5AA, offset: 0x8D43F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xD8C, symBinAddr: 0x34B74, symSize: 0x30 } + - { offsetInCU: 0x5BE, offset: 0x8D453, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xDBC, symBinAddr: 0x34BA4, symSize: 0x30 } + - { offsetInCU: 0x5D2, offset: 0x8D467, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xDEC, symBinAddr: 0x34BD4, symSize: 0x84 } + - { offsetInCU: 0x5E6, offset: 0x8D47B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xE70, symBinAddr: 0x34C58, symSize: 0xAC } + - { offsetInCU: 0x5FA, offset: 0x8D48F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0xF30, symBinAddr: 0x34D04, symSize: 0x8C } + - { offsetInCU: 0x60E, offset: 0x8D4A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0xFBC, symBinAddr: 0x34D90, symSize: 0x5C } + - { offsetInCU: 0x622, offset: 0x8D4B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x1018, symBinAddr: 0x34DEC, symSize: 0x60 } + - { offsetInCU: 0x636, offset: 0x8D4CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x1078, symBinAddr: 0x34E4C, symSize: 0x10 } + - { offsetInCU: 0xAAA, offset: 0x8D93F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x10, symBinAddr: 0x33E40, symSize: 0xAC } + - { offsetInCU: 0xC7F, offset: 0x8DB14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xBC, symBinAddr: 0x33EEC, symSize: 0x294 } + - { offsetInCU: 0x1114, offset: 0x8DFA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x350, symBinAddr: 0x34180, symSize: 0x1B4 } + - { offsetInCU: 0x1583, offset: 0x8E418, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x504, symBinAddr: 0x34334, symSize: 0x5A4 } + - { offsetInCU: 0x1A2B, offset: 0x8E8C0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xB20, symBinAddr: 0x34910, symSize: 0x1D0 } + - { offsetInCU: 0x27, offset: 0x8E962, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34E5C, symSize: 0x8 } + - { offsetInCU: 0x4B, offset: 0x8E986, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34E5C, symSize: 0x8 } + - { offsetInCU: 0x80, offset: 0x8E9BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34E64, symSize: 0x8 } + - { offsetInCU: 0xA0, offset: 0x8E9DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x34E64, symSize: 0x8 } + - { offsetInCU: 0xDE, offset: 0x8EA19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBC, symBinAddr: 0x34F18, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x8EAB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF4, symBinAddr: 0x34F50, symSize: 0xDC } + - { offsetInCU: 0x286, offset: 0x8EBC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x1D0, symBinAddr: 0x3502C, symSize: 0x30 } + - { offsetInCU: 0x29A, offset: 0x8EBD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x200, symBinAddr: 0x3505C, symSize: 0x38 } + - { offsetInCU: 0x2AE, offset: 0x8EBE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x238, symBinAddr: 0x35094, symSize: 0x6C } + - { offsetInCU: 0x2C2, offset: 0x8EBFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x2A4, symBinAddr: 0x35100, symSize: 0xA4 } + - { offsetInCU: 0x2D6, offset: 0x8EC11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x35C, symBinAddr: 0x351A4, symSize: 0x74 } + - { offsetInCU: 0x2EA, offset: 0x8EC25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x3D0, symBinAddr: 0x35218, symSize: 0x48 } + - { offsetInCU: 0x2FE, offset: 0x8EC39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x418, symBinAddr: 0x35260, symSize: 0x4C } + - { offsetInCU: 0x312, offset: 0x8EC4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x464, symBinAddr: 0x352AC, symSize: 0x10 } + - { offsetInCU: 0x44D, offset: 0x8ED88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x10, symBinAddr: 0x34E6C, symSize: 0xAC } + - { offsetInCU: 0x27, offset: 0x8EE75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x352BC, symSize: 0x8 } + - { offsetInCU: 0x46, offset: 0x8EE94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x352BC, symSize: 0x8 } + - { offsetInCU: 0x7B, offset: 0x8EEC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x352C4, symSize: 0x8 } + - { offsetInCU: 0x9B, offset: 0x8EEE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x8, symBinAddr: 0x352C4, symSize: 0x8 } + - { offsetInCU: 0xC2, offset: 0x8EF10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x10, symBinAddr: 0x352CC, symSize: 0x1C } + - { offsetInCU: 0x2A1, offset: 0x8F0EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x2C, symBinAddr: 0x352E8, symSize: 0x1B0 } + - { offsetInCU: 0x613, offset: 0x8F461, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1DC, symBinAddr: 0x35498, symSize: 0x88 } + - { offsetInCU: 0x7A5, offset: 0x8F5F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x264, symBinAddr: 0x35520, symSize: 0x134 } + - { offsetInCU: 0xB3F, offset: 0x8F98D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x398, symBinAddr: 0x35654, symSize: 0x4F8 } + - { offsetInCU: 0xFD4, offset: 0x8FE22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x8D8, symBinAddr: 0x35B4C, symSize: 0x30 } + - { offsetInCU: 0xFE8, offset: 0x8FE36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0x908, symBinAddr: 0x35B7C, symSize: 0x30 } + - { offsetInCU: 0xFFC, offset: 0x8FE4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0x938, symBinAddr: 0x35BAC, symSize: 0x64 } + - { offsetInCU: 0x1010, offset: 0x8FE5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0x99C, symBinAddr: 0x35C10, symSize: 0x8C } + - { offsetInCU: 0x1024, offset: 0x8FE72, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xA28, symBinAddr: 0x35C9C, symSize: 0xC } + - { offsetInCU: 0x1038, offset: 0x8FE86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xA34, symBinAddr: 0x35CA8, symSize: 0x6C } + - { offsetInCU: 0x104C, offset: 0x8FE9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xAA0, symBinAddr: 0x35D14, symSize: 0x5C } + - { offsetInCU: 0x1060, offset: 0x8FEAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xAFC, symBinAddr: 0x35D70, symSize: 0x54 } + - { offsetInCU: 0x1074, offset: 0x8FEC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xB50, symBinAddr: 0x35DC4, symSize: 0x10 } + - { offsetInCU: 0x153, offset: 0x905FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x5EC, symBinAddr: 0x363C0, symSize: 0x74 } + - { offsetInCU: 0x29F, offset: 0x9074A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x690, symBinAddr: 0x36464, symSize: 0x60 } + - { offsetInCU: 0x2CE, offset: 0x90779, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x6F0, symBinAddr: 0x364C4, symSize: 0x20 } + - { offsetInCU: 0x40D, offset: 0x908B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x18, symBinAddr: 0x35DEC, symSize: 0x44 } + - { offsetInCU: 0x432, offset: 0x908DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x74, symBinAddr: 0x35E48, symSize: 0x44 } + - { offsetInCU: 0x457, offset: 0x90902, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x178, symBinAddr: 0x35F4C, symSize: 0x44 } + - { offsetInCU: 0x47C, offset: 0x90927, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x264, symBinAddr: 0x36038, symSize: 0x44 } + - { offsetInCU: 0x4A1, offset: 0x9094C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x2A8, symBinAddr: 0x3607C, symSize: 0x4 } + - { offsetInCU: 0x560, offset: 0x90A0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x2AC, symBinAddr: 0x36080, symSize: 0x2B8 } + - { offsetInCU: 0x9CA, offset: 0x90E75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x564, symBinAddr: 0x36338, symSize: 0x20 } + - { offsetInCU: 0x9DE, offset: 0x90E89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x584, symBinAddr: 0x36358, symSize: 0x68 } + - { offsetInCU: 0xA0F, offset: 0x90EBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x660, symBinAddr: 0x36434, symSize: 0x30 } + - { offsetInCU: 0x24A, offset: 0x91131, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xE00, symBinAddr: 0x372F0, symSize: 0x20 } + - { offsetInCU: 0x3E2, offset: 0x912C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xE50, symBinAddr: 0x37340, symSize: 0x4C } + - { offsetInCU: 0x411, offset: 0x912F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0xE9C, symBinAddr: 0x3738C, symSize: 0x20 } + - { offsetInCU: 0x57C, offset: 0x91463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x18, symBinAddr: 0x36508, symSize: 0x44 } + - { offsetInCU: 0x5A1, offset: 0x91488, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x74, symBinAddr: 0x36564, symSize: 0x44 } + - { offsetInCU: 0x5C6, offset: 0x914AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x16C, symBinAddr: 0x3665C, symSize: 0x44 } + - { offsetInCU: 0x5EB, offset: 0x914D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x25C, symBinAddr: 0x3674C, symSize: 0x44 } + - { offsetInCU: 0x610, offset: 0x914F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x2B8, symBinAddr: 0x367A8, symSize: 0x44 } + - { offsetInCU: 0x635, offset: 0x9151C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x3A8, symBinAddr: 0x36898, symSize: 0x44 } + - { offsetInCU: 0x65A, offset: 0x91541, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x404, symBinAddr: 0x368F4, symSize: 0x44 } + - { offsetInCU: 0x67F, offset: 0x91566, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x448, symBinAddr: 0x36938, symSize: 0x4 } + - { offsetInCU: 0x6A0, offset: 0x91587, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x44C, symBinAddr: 0x3693C, symSize: 0x54 } + - { offsetInCU: 0x6BF, offset: 0x915A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x4A0, symBinAddr: 0x36990, symSize: 0x5C } + - { offsetInCU: 0x6F4, offset: 0x915DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x4FC, symBinAddr: 0x369EC, symSize: 0x44 } + - { offsetInCU: 0x719, offset: 0x91600, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x5E8, symBinAddr: 0x36AD8, symSize: 0x44 } + - { offsetInCU: 0x889, offset: 0x91770, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x62C, symBinAddr: 0x36B1C, symSize: 0x6EC } + - { offsetInCU: 0x1637, offset: 0x9251E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xD18, symBinAddr: 0x37208, symSize: 0x20 } + - { offsetInCU: 0x164B, offset: 0x92532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xD38, symBinAddr: 0x37228, symSize: 0xC8 } + - { offsetInCU: 0x166E, offset: 0x92555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xE20, symBinAddr: 0x37310, symSize: 0x30 } + - { offsetInCU: 0x4CA, offset: 0x92A56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1860, symBinAddr: 0x38C2C, symSize: 0x20 } + - { offsetInCU: 0x716, offset: 0x92CA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x18B0, symBinAddr: 0x38C7C, symSize: 0x9C } + - { offsetInCU: 0x973, offset: 0x92EFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x33FC, symBinAddr: 0x3A7C8, symSize: 0x20 } + - { offsetInCU: 0xC47, offset: 0x931D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x373CC, symSize: 0x20 } + - { offsetInCU: 0xC5B, offset: 0x931E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x373EC, symSize: 0x48 } + - { offsetInCU: 0xC80, offset: 0x9320C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x37434, symSize: 0x5C } + - { offsetInCU: 0xCA9, offset: 0x93235, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x37490, symSize: 0x44 } + - { offsetInCU: 0xCCE, offset: 0x9325A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x120, symBinAddr: 0x374EC, symSize: 0x44 } + - { offsetInCU: 0xCF3, offset: 0x9327F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x17C, symBinAddr: 0x37548, symSize: 0x44 } + - { offsetInCU: 0xD18, offset: 0x932A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1C0, symBinAddr: 0x3758C, symSize: 0x4C } + - { offsetInCU: 0xD3D, offset: 0x932C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x20C, symBinAddr: 0x375D8, symSize: 0x50 } + - { offsetInCU: 0xD62, offset: 0x932EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x25C, symBinAddr: 0x37628, symSize: 0x44 } + - { offsetInCU: 0xD87, offset: 0x93313, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x3766C, symSize: 0x4 } + - { offsetInCU: 0xDA8, offset: 0x93334, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2A4, symBinAddr: 0x37670, symSize: 0x44 } + - { offsetInCU: 0xDCD, offset: 0x93359, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvs', symObjAddr: 0x2E8, symBinAddr: 0x376B4, symSize: 0x48 } + - { offsetInCU: 0xDF6, offset: 0x93382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x330, symBinAddr: 0x376FC, symSize: 0x44 } + - { offsetInCU: 0xE1B, offset: 0x933A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x428, symBinAddr: 0x377F4, symSize: 0x44 } + - { offsetInCU: 0xE40, offset: 0x933CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x484, symBinAddr: 0x37850, symSize: 0x44 } + - { offsetInCU: 0xE65, offset: 0x933F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x4E0, symBinAddr: 0x378AC, symSize: 0x44 } + - { offsetInCU: 0xE8A, offset: 0x93416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x53C, symBinAddr: 0x37908, symSize: 0x44 } + - { offsetInCU: 0xEAF, offset: 0x9343B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x580, symBinAddr: 0x3794C, symSize: 0x48 } + - { offsetInCU: 0xED4, offset: 0x93460, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x5C8, symBinAddr: 0x37994, symSize: 0x50 } + - { offsetInCU: 0xF09, offset: 0x93495, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x618, symBinAddr: 0x379E4, symSize: 0x44 } + - { offsetInCU: 0xF28, offset: 0x934B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x65C, symBinAddr: 0x37A28, symSize: 0x44 } + - { offsetInCU: 0xF4D, offset: 0x934D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvs', symObjAddr: 0x6A0, symBinAddr: 0x37A6C, symSize: 0x48 } + - { offsetInCU: 0xF76, offset: 0x93502, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x6E8, symBinAddr: 0x37AB4, symSize: 0x44 } + - { offsetInCU: 0xF9B, offset: 0x93527, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x72C, symBinAddr: 0x37AF8, symSize: 0x44 } + - { offsetInCU: 0xFC0, offset: 0x9354C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvs', symObjAddr: 0x770, symBinAddr: 0x37B3C, symSize: 0x48 } + - { offsetInCU: 0xFE9, offset: 0x93575, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x7B8, symBinAddr: 0x37B84, symSize: 0x44 } + - { offsetInCU: 0x100E, offset: 0x9359A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x7FC, symBinAddr: 0x37BC8, symSize: 0x44 } + - { offsetInCU: 0x1033, offset: 0x935BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvs', symObjAddr: 0x840, symBinAddr: 0x37C0C, symSize: 0x48 } + - { offsetInCU: 0x105C, offset: 0x935E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x888, symBinAddr: 0x37C54, symSize: 0x44 } + - { offsetInCU: 0x1081, offset: 0x9360D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x978, symBinAddr: 0x37D44, symSize: 0x44 } + - { offsetInCU: 0x10A6, offset: 0x93632, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0x9D4, symBinAddr: 0x37DA0, symSize: 0x44 } + - { offsetInCU: 0x10CB, offset: 0x93657, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0xA30, symBinAddr: 0x37DFC, symSize: 0x44 } + - { offsetInCU: 0x10F0, offset: 0x9367C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xB34, symBinAddr: 0x37F00, symSize: 0x44 } + - { offsetInCU: 0x1115, offset: 0x936A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xB78, symBinAddr: 0x37F44, symSize: 0x48 } + - { offsetInCU: 0x113A, offset: 0x936C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xBC0, symBinAddr: 0x37F8C, symSize: 0x50 } + - { offsetInCU: 0x1163, offset: 0x936EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xC10, symBinAddr: 0x37FDC, symSize: 0x44 } + - { offsetInCU: 0x14F1, offset: 0x93A7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xC54, symBinAddr: 0x38020, symSize: 0xA3C } + - { offsetInCU: 0x216A, offset: 0x946F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x1700, symBinAddr: 0x38ACC, symSize: 0x160 } + - { offsetInCU: 0x218D, offset: 0x94719, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1880, symBinAddr: 0x38C4C, symSize: 0x30 } + - { offsetInCU: 0x21B7, offset: 0x94743, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x194C, symBinAddr: 0x38D18, symSize: 0x64 } + - { offsetInCU: 0x21FC, offset: 0x94788, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x19B0, symBinAddr: 0x38D7C, symSize: 0x34 } + - { offsetInCU: 0x223A, offset: 0x947C6, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19E4, symBinAddr: 0x38DB0, symSize: 0xE0 } + - { offsetInCU: 0x22AE, offset: 0x9483A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1AC4, symBinAddr: 0x38E90, symSize: 0xA0 } + - { offsetInCU: 0x22DE, offset: 0x9486A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1B88, symBinAddr: 0x38F54, symSize: 0x1C8 } + - { offsetInCU: 0x238C, offset: 0x94918, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1D50, symBinAddr: 0x3911C, symSize: 0x1B8 } + - { offsetInCU: 0x245C, offset: 0x949E8, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x2278, symBinAddr: 0x39644, symSize: 0x1C4 } + - { offsetInCU: 0x2511, offset: 0x94A9D, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2460, symBinAddr: 0x3982C, symSize: 0x354 } + - { offsetInCU: 0x25F4, offset: 0x94B80, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x27B4, symBinAddr: 0x39B80, symSize: 0x338 } + - { offsetInCU: 0x26D7, offset: 0x94C63, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x30BC, symBinAddr: 0x3A488, symSize: 0x340 } + - { offsetInCU: 0x27, offset: 0x94D92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A82C, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x94F32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3AC64, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x94FFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x488, symBinAddr: 0x3ACB4, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x95217, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xA78, symBinAddr: 0x3B2A4, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x9543B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3A82C, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x9544F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3A84C, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x9547A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3A898, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x9549F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3A8E8, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x954C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3A92C, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x954E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3A930, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x9550A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3A974, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x95533, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3A9BC, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x95558, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3AA00, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9557D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3AA54, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x955A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3AAB0, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x955CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3AAF4, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x955F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3AB3C, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x95625, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3AB8C, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x95644, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3ABD0, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x95658, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3ABD8, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x9567B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x458, symBinAddr: 0x3AC84, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x958B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3ACF0, symSize: 0x5B4 } + - { offsetInCU: 0x27, offset: 0x95F8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3B2D0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9612A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3B708, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x961F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x488, symBinAddr: 0x3B758, symSize: 0x3C } + - { offsetInCU: 0x4CD, offset: 0x96430, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xAB4, symBinAddr: 0x3BD84, symSize: 0x20 } + - { offsetInCU: 0x6F1, offset: 0x96654, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3B2D0, symSize: 0x20 } + - { offsetInCU: 0x705, offset: 0x96668, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3B2F0, symSize: 0x4C } + - { offsetInCU: 0x730, offset: 0x96693, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3B33C, symSize: 0x50 } + - { offsetInCU: 0x755, offset: 0x966B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3B38C, symSize: 0x44 } + - { offsetInCU: 0x77A, offset: 0x966DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3B3D0, symSize: 0x4 } + - { offsetInCU: 0x79B, offset: 0x966FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3B3D4, symSize: 0x44 } + - { offsetInCU: 0x7C0, offset: 0x96723, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3B418, symSize: 0x48 } + - { offsetInCU: 0x7E9, offset: 0x9674C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3B460, symSize: 0x44 } + - { offsetInCU: 0x80E, offset: 0x96771, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3B4A4, symSize: 0x54 } + - { offsetInCU: 0x833, offset: 0x96796, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3B4F8, symSize: 0x5C } + - { offsetInCU: 0x85C, offset: 0x967BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3B554, symSize: 0x44 } + - { offsetInCU: 0x881, offset: 0x967E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3B598, symSize: 0x48 } + - { offsetInCU: 0x8A6, offset: 0x96809, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3B5E0, symSize: 0x50 } + - { offsetInCU: 0x8DB, offset: 0x9683E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3B630, symSize: 0x44 } + - { offsetInCU: 0x8FA, offset: 0x9685D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3B674, symSize: 0x8 } + - { offsetInCU: 0x90E, offset: 0x96871, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3B67C, symSize: 0x8C } + - { offsetInCU: 0x931, offset: 0x96894, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x458, symBinAddr: 0x3B728, symSize: 0x30 } + - { offsetInCU: 0xB6F, offset: 0x96AD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3B794, symSize: 0x5F0 } + - { offsetInCU: 0x393, offset: 0x97549, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x15F0, symBinAddr: 0x3D3A0, symSize: 0x20 } + - { offsetInCU: 0x761, offset: 0x97917, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x1640, symBinAddr: 0x3D3F0, symSize: 0x74 } + - { offsetInCU: 0x790, offset: 0x97946, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x16B4, symBinAddr: 0x3D464, symSize: 0x20 } + - { offsetInCU: 0xA9A, offset: 0x97C50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x3BDB0, symSize: 0x20 } + - { offsetInCU: 0xAAE, offset: 0x97C64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3BDD0, symSize: 0x48 } + - { offsetInCU: 0xAD3, offset: 0x97C89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x68, symBinAddr: 0x3BE18, symSize: 0x5C } + - { offsetInCU: 0xAFC, offset: 0x97CB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xC4, symBinAddr: 0x3BE74, symSize: 0x44 } + - { offsetInCU: 0xB21, offset: 0x97CD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0x108, symBinAddr: 0x3BEB8, symSize: 0x4C } + - { offsetInCU: 0xB46, offset: 0x97CFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x154, symBinAddr: 0x3BF04, symSize: 0x50 } + - { offsetInCU: 0xB6B, offset: 0x97D21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x1A4, symBinAddr: 0x3BF54, symSize: 0x44 } + - { offsetInCU: 0xB90, offset: 0x97D46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1E8, symBinAddr: 0x3BF98, symSize: 0x54 } + - { offsetInCU: 0xBB5, offset: 0x97D6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x23C, symBinAddr: 0x3BFEC, symSize: 0x50 } + - { offsetInCU: 0xBDA, offset: 0x97D90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x28C, symBinAddr: 0x3C03C, symSize: 0x44 } + - { offsetInCU: 0xBFF, offset: 0x97DB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2E8, symBinAddr: 0x3C098, symSize: 0x44 } + - { offsetInCU: 0xC24, offset: 0x97DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x32C, symBinAddr: 0x3C0DC, symSize: 0x4 } + - { offsetInCU: 0xC45, offset: 0x97DFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x348, symBinAddr: 0x3C0F8, symSize: 0x44 } + - { offsetInCU: 0xC6A, offset: 0x97E20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3A4, symBinAddr: 0x3C154, symSize: 0x44 } + - { offsetInCU: 0xC8F, offset: 0x97E45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x490, symBinAddr: 0x3C240, symSize: 0x44 } + - { offsetInCU: 0xCAE, offset: 0x97E64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivg', symObjAddr: 0x4D4, symBinAddr: 0x3C284, symSize: 0x44 } + - { offsetInCU: 0xCD3, offset: 0x97E89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivs', symObjAddr: 0x518, symBinAddr: 0x3C2C8, symSize: 0x48 } + - { offsetInCU: 0xCFC, offset: 0x97EB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x560, symBinAddr: 0x3C310, symSize: 0x44 } + - { offsetInCU: 0xD21, offset: 0x97ED7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x3C414, symSize: 0x44 } + - { offsetInCU: 0xD46, offset: 0x97EFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x6A8, symBinAddr: 0x3C458, symSize: 0x54 } + - { offsetInCU: 0xD65, offset: 0x97F1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x6FC, symBinAddr: 0x3C4AC, symSize: 0x5C } + - { offsetInCU: 0xD8E, offset: 0x97F44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x758, symBinAddr: 0x3C508, symSize: 0x44 } + - { offsetInCU: 0xDB3, offset: 0x97F69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x848, symBinAddr: 0x3C5F8, symSize: 0x44 } + - { offsetInCU: 0xDD8, offset: 0x97F8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivg', symObjAddr: 0x88C, symBinAddr: 0x3C63C, symSize: 0x44 } + - { offsetInCU: 0xDFD, offset: 0x97FB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivs', symObjAddr: 0x8D0, symBinAddr: 0x3C680, symSize: 0x48 } + - { offsetInCU: 0xE26, offset: 0x97FDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x918, symBinAddr: 0x3C6C8, symSize: 0x44 } + - { offsetInCU: 0x11CC, offset: 0x98382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x95C, symBinAddr: 0x3C70C, symSize: 0xB2C } + - { offsetInCU: 0x1E95, offset: 0x9904B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x14F8, symBinAddr: 0x3D2A8, symSize: 0xF8 } + - { offsetInCU: 0x1EB8, offset: 0x9906E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1610, symBinAddr: 0x3D3C0, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x990D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D4B0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x99278, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3D8E8, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x99343, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x488, symBinAddr: 0x3D938, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x9955D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xA78, symBinAddr: 0x3DF28, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x99781, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x3D4B0, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x99795, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3D4D0, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x997C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3D51C, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x997E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3D56C, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x9980A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3D5B0, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x9982B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3D5B4, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x99850, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3D5F8, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x99879, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3D640, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x9989E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3D684, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x998C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3D6D8, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x998EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3D734, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x99911, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3D778, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x99936, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3D7C0, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x9996B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3D810, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x9998A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3D854, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x9999E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3D85C, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x999C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x458, symBinAddr: 0x3D908, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x99BF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3D974, symSize: 0x5B4 } + - { offsetInCU: 0x27, offset: 0x9A2D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DF54, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9A470, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3E38C, symSize: 0x20 } + - { offsetInCU: 0x292, offset: 0x9A53B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x488, symBinAddr: 0x3E3DC, symSize: 0x3C } + - { offsetInCU: 0x4AC, offset: 0x9A755, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xAB4, symBinAddr: 0x3EA08, symSize: 0x20 } + - { offsetInCU: 0x6D0, offset: 0x9A979, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DF54, symSize: 0x20 } + - { offsetInCU: 0x6E4, offset: 0x9A98D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3DF74, symSize: 0x4C } + - { offsetInCU: 0x70F, offset: 0x9A9B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x6C, symBinAddr: 0x3DFC0, symSize: 0x50 } + - { offsetInCU: 0x734, offset: 0x9A9DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xBC, symBinAddr: 0x3E010, symSize: 0x44 } + - { offsetInCU: 0x759, offset: 0x9AA02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x3E054, symSize: 0x4 } + - { offsetInCU: 0x77A, offset: 0x9AA23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x104, symBinAddr: 0x3E058, symSize: 0x44 } + - { offsetInCU: 0x79F, offset: 0x9AA48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x148, symBinAddr: 0x3E09C, symSize: 0x48 } + - { offsetInCU: 0x7C8, offset: 0x9AA71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x190, symBinAddr: 0x3E0E4, symSize: 0x44 } + - { offsetInCU: 0x7ED, offset: 0x9AA96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1D4, symBinAddr: 0x3E128, symSize: 0x54 } + - { offsetInCU: 0x812, offset: 0x9AABB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x228, symBinAddr: 0x3E17C, symSize: 0x5C } + - { offsetInCU: 0x83B, offset: 0x9AAE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x284, symBinAddr: 0x3E1D8, symSize: 0x44 } + - { offsetInCU: 0x860, offset: 0x9AB09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C8, symBinAddr: 0x3E21C, symSize: 0x48 } + - { offsetInCU: 0x885, offset: 0x9AB2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x310, symBinAddr: 0x3E264, symSize: 0x50 } + - { offsetInCU: 0x8BA, offset: 0x9AB63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x360, symBinAddr: 0x3E2B4, symSize: 0x44 } + - { offsetInCU: 0x8D9, offset: 0x9AB82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x3A4, symBinAddr: 0x3E2F8, symSize: 0x8 } + - { offsetInCU: 0x8ED, offset: 0x9AB96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x3AC, symBinAddr: 0x3E300, symSize: 0x8C } + - { offsetInCU: 0x910, offset: 0x9ABB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x458, symBinAddr: 0x3E3AC, symSize: 0x30 } + - { offsetInCU: 0xB48, offset: 0x9ADF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4C4, symBinAddr: 0x3E418, symSize: 0x5F0 } + - { offsetInCU: 0x27, offset: 0x9B4FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3EA34, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9B69C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3EE6C, symSize: 0x9C } + - { offsetInCU: 0x2C7, offset: 0x9B79C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x504, symBinAddr: 0x3EF38, symSize: 0x4C } + - { offsetInCU: 0x5A4, offset: 0x9BA79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xC64, symBinAddr: 0x3F698, symSize: 0x20 } + - { offsetInCU: 0x807, offset: 0x9BCDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3EA34, symSize: 0x20 } + - { offsetInCU: 0x81B, offset: 0x9BCF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x3EA54, symSize: 0x48 } + - { offsetInCU: 0x846, offset: 0x9BD1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x3EA9C, symSize: 0x50 } + - { offsetInCU: 0x87B, offset: 0x9BD50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x3EAEC, symSize: 0x44 } + - { offsetInCU: 0x89A, offset: 0x9BD6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x3EB30, symSize: 0x4 } + - { offsetInCU: 0x8BB, offset: 0x9BD90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3EB34, symSize: 0x44 } + - { offsetInCU: 0x8E0, offset: 0x9BDB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x3EB78, symSize: 0x48 } + - { offsetInCU: 0x909, offset: 0x9BDDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x3EBC0, symSize: 0x44 } + - { offsetInCU: 0x92E, offset: 0x9BE03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x3EC04, symSize: 0x54 } + - { offsetInCU: 0x953, offset: 0x9BE28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x3EC58, symSize: 0x5C } + - { offsetInCU: 0x97C, offset: 0x9BE51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x3ECB4, symSize: 0x44 } + - { offsetInCU: 0x9A1, offset: 0x9BE76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x3ECF8, symSize: 0x48 } + - { offsetInCU: 0x9C6, offset: 0x9BE9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x3ED40, symSize: 0x50 } + - { offsetInCU: 0x9FB, offset: 0x9BED0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x3ED90, symSize: 0x44 } + - { offsetInCU: 0xA1A, offset: 0x9BEEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x3EDD4, symSize: 0x8 } + - { offsetInCU: 0xA2E, offset: 0x9BF03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x3EDDC, symSize: 0x90 } + - { offsetInCU: 0xA64, offset: 0x9BF39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x4D4, symBinAddr: 0x3EF08, symSize: 0x30 } + - { offsetInCU: 0xCEE, offset: 0x9C1C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x550, symBinAddr: 0x3EF84, symSize: 0x6A4 } + - { offsetInCU: 0x27, offset: 0x9CA3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F6C4, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9CBDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x438, symBinAddr: 0x3FAFC, symSize: 0x9C } + - { offsetInCU: 0x2C7, offset: 0x9CCDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x504, symBinAddr: 0x3FBC8, symSize: 0x4C } + - { offsetInCU: 0x5A4, offset: 0x9CFBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xC64, symBinAddr: 0x40328, symSize: 0x20 } + - { offsetInCU: 0x807, offset: 0x9D21D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F6C4, symSize: 0x20 } + - { offsetInCU: 0x81B, offset: 0x9D231, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x3F6E4, symSize: 0x48 } + - { offsetInCU: 0x846, offset: 0x9D25C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x68, symBinAddr: 0x3F72C, symSize: 0x50 } + - { offsetInCU: 0x87B, offset: 0x9D291, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB8, symBinAddr: 0x3F77C, symSize: 0x44 } + - { offsetInCU: 0x89A, offset: 0x9D2B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xFC, symBinAddr: 0x3F7C0, symSize: 0x4 } + - { offsetInCU: 0x8BB, offset: 0x9D2D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3F7C4, symSize: 0x44 } + - { offsetInCU: 0x8E0, offset: 0x9D2F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x144, symBinAddr: 0x3F808, symSize: 0x48 } + - { offsetInCU: 0x909, offset: 0x9D31F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x18C, symBinAddr: 0x3F850, symSize: 0x44 } + - { offsetInCU: 0x92E, offset: 0x9D344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1D0, symBinAddr: 0x3F894, symSize: 0x54 } + - { offsetInCU: 0x953, offset: 0x9D369, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x224, symBinAddr: 0x3F8E8, symSize: 0x5C } + - { offsetInCU: 0x97C, offset: 0x9D392, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x280, symBinAddr: 0x3F944, symSize: 0x44 } + - { offsetInCU: 0x9A1, offset: 0x9D3B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x2C4, symBinAddr: 0x3F988, symSize: 0x48 } + - { offsetInCU: 0x9C6, offset: 0x9D3DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x30C, symBinAddr: 0x3F9D0, symSize: 0x50 } + - { offsetInCU: 0x9FB, offset: 0x9D411, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x35C, symBinAddr: 0x3FA20, symSize: 0x44 } + - { offsetInCU: 0xA1A, offset: 0x9D430, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x3A0, symBinAddr: 0x3FA64, symSize: 0x8 } + - { offsetInCU: 0xA2E, offset: 0x9D444, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x3A8, symBinAddr: 0x3FA6C, symSize: 0x90 } + - { offsetInCU: 0xA64, offset: 0x9D47A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x4D4, symBinAddr: 0x3FB98, symSize: 0x30 } + - { offsetInCU: 0xCEE, offset: 0x9D704, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x550, symBinAddr: 0x3FC14, symSize: 0x6A4 } + - { offsetInCU: 0x306, offset: 0x9E25D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x1218, symBinAddr: 0x4156C, symSize: 0x2C } + - { offsetInCU: 0x384, offset: 0x9E2DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0xA34, symBinAddr: 0x40D88, symSize: 0x20 } + - { offsetInCU: 0x62F, offset: 0x9E586, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1274, symBinAddr: 0x415C8, symSize: 0x60 } + - { offsetInCU: 0x678, offset: 0x9E5CF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS_Tgm5', symObjAddr: 0x12D4, symBinAddr: 0x41628, symSize: 0x78 } + - { offsetInCU: 0x6DC, offset: 0x9E633, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x134C, symBinAddr: 0x416A0, symSize: 0x84 } + - { offsetInCU: 0x85A, offset: 0x9E7B1, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x177C, symBinAddr: 0x41AC8, symSize: 0x3C } + - { offsetInCU: 0xB49, offset: 0x9EAA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x40354, symSize: 0x48 } + - { offsetInCU: 0xB74, offset: 0x9EACB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x48, symBinAddr: 0x4039C, symSize: 0x5C } + - { offsetInCU: 0xBA9, offset: 0x9EB00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0xA4, symBinAddr: 0x403F8, symSize: 0x44 } + - { offsetInCU: 0xBCE, offset: 0x9EB25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xE8, symBinAddr: 0x4043C, symSize: 0x4C } + - { offsetInCU: 0xBED, offset: 0x9EB44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x134, symBinAddr: 0x40488, symSize: 0x50 } + - { offsetInCU: 0xC1E, offset: 0x9EB75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x184, symBinAddr: 0x404D8, symSize: 0x44 } + - { offsetInCU: 0xC43, offset: 0x9EB9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x40534, symSize: 0x44 } + - { offsetInCU: 0xC68, offset: 0x9EBBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x224, symBinAddr: 0x40578, symSize: 0x4C } + - { offsetInCU: 0xC87, offset: 0x9EBDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x270, symBinAddr: 0x405C4, symSize: 0x50 } + - { offsetInCU: 0xCB8, offset: 0x9EC0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2C0, symBinAddr: 0x40614, symSize: 0x44 } + - { offsetInCU: 0xCDD, offset: 0x9EC34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x40658, symSize: 0x4 } + - { offsetInCU: 0xCFE, offset: 0x9EC55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x320, symBinAddr: 0x40674, symSize: 0x44 } + - { offsetInCU: 0xD23, offset: 0x9EC7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x37C, symBinAddr: 0x406D0, symSize: 0x44 } + - { offsetInCU: 0xD48, offset: 0x9EC9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x468, symBinAddr: 0x407BC, symSize: 0x44 } + - { offsetInCU: 0xD6D, offset: 0x9ECC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x408B4, symSize: 0x44 } + - { offsetInCU: 0xD92, offset: 0x9ECE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x664, symBinAddr: 0x409B8, symSize: 0x44 } + - { offsetInCU: 0xDBD, offset: 0x9ED14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x6A8, symBinAddr: 0x409FC, symSize: 0xBC } + - { offsetInCU: 0xDD1, offset: 0x9ED28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x764, symBinAddr: 0x40AB8, symSize: 0x2D0 } + - { offsetInCU: 0x100F, offset: 0x9EF66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0xA54, symBinAddr: 0x40DA8, symSize: 0x778 } + - { offsetInCU: 0x1E33, offset: 0x9FD8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0x11CC, symBinAddr: 0x41520, symSize: 0x20 } + - { offsetInCU: 0x1E47, offset: 0x9FD9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0x11EC, symBinAddr: 0x41540, symSize: 0x2C } + - { offsetInCU: 0x1EA0, offset: 0x9FDF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x1244, symBinAddr: 0x41598, symSize: 0x30 } + - { offsetInCU: 0x1F02, offset: 0x9FE59, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x13D0, symBinAddr: 0x41724, symSize: 0x1C8 } + - { offsetInCU: 0x2001, offset: 0x9FF58, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x15A0, symBinAddr: 0x418EC, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0xA00F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x41B24, symSize: 0xC8 } + - { offsetInCU: 0x390, offset: 0xA0459, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0x998, symBinAddr: 0x424BC, symSize: 0x20 } + - { offsetInCU: 0x4EC, offset: 0xA05B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x41B24, symSize: 0xC8 } + - { offsetInCU: 0x549, offset: 0xA0612, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xC8, symBinAddr: 0x41BEC, symSize: 0xC4 } + - { offsetInCU: 0x586, offset: 0xA064F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x18C, symBinAddr: 0x41CB0, symSize: 0x48 } + - { offsetInCU: 0x5A0, offset: 0xA0669, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x1D4, symBinAddr: 0x41CF8, symSize: 0x50 } + - { offsetInCU: 0x5B4, offset: 0xA067D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x224, symBinAddr: 0x41D48, symSize: 0x3C } + - { offsetInCU: 0x5C8, offset: 0xA0691, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x260, symBinAddr: 0x41D84, symSize: 0x30 } + - { offsetInCU: 0x5DC, offset: 0xA06A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x290, symBinAddr: 0x41DB4, symSize: 0x3C } + - { offsetInCU: 0x5F0, offset: 0xA06B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x2CC, symBinAddr: 0x41DF0, symSize: 0x3C } + - { offsetInCU: 0x604, offset: 0xA06CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x308, symBinAddr: 0x41E2C, symSize: 0x30 } + - { offsetInCU: 0x618, offset: 0xA06E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x338, symBinAddr: 0x41E5C, symSize: 0x3C } + - { offsetInCU: 0x62C, offset: 0xA06F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x374, symBinAddr: 0x41E98, symSize: 0x3C } + - { offsetInCU: 0x640, offset: 0xA0709, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x3B0, symBinAddr: 0x41ED4, symSize: 0x30 } + - { offsetInCU: 0x654, offset: 0xA071D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x3E0, symBinAddr: 0x41F04, symSize: 0x3C } + - { offsetInCU: 0x668, offset: 0xA0731, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x41C, symBinAddr: 0x41F40, symSize: 0x3C } + - { offsetInCU: 0x67C, offset: 0xA0745, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x458, symBinAddr: 0x41F7C, symSize: 0x30 } + - { offsetInCU: 0x690, offset: 0xA0759, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x488, symBinAddr: 0x41FAC, symSize: 0x3C } + - { offsetInCU: 0x6A4, offset: 0xA076D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x4C4, symBinAddr: 0x41FE8, symSize: 0x3C } + - { offsetInCU: 0x6B8, offset: 0xA0781, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x500, symBinAddr: 0x42024, symSize: 0x4 } + - { offsetInCU: 0x6CC, offset: 0xA0795, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x504, symBinAddr: 0x42028, symSize: 0x30 } + - { offsetInCU: 0x6E0, offset: 0xA07A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x534, symBinAddr: 0x42058, symSize: 0x3C } + - { offsetInCU: 0x6F4, offset: 0xA07BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x570, symBinAddr: 0x42094, symSize: 0x3C } + - { offsetInCU: 0x708, offset: 0xA07D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x5AC, symBinAddr: 0x420D0, symSize: 0xA0 } + - { offsetInCU: 0x731, offset: 0xA07FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x64C, symBinAddr: 0x42170, symSize: 0xA4 } + - { offsetInCU: 0x7E3, offset: 0xA08AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x6F0, symBinAddr: 0x42214, symSize: 0x268 } + - { offsetInCU: 0x994, offset: 0xA0A5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0x958, symBinAddr: 0x4247C, symSize: 0x1C } + - { offsetInCU: 0x9C5, offset: 0xA0A8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0x974, symBinAddr: 0x42498, symSize: 0x24 } + - { offsetInCU: 0x18D, offset: 0xA0C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xE8C, symBinAddr: 0x43340, symSize: 0xE4 } + - { offsetInCU: 0x1A9, offset: 0xA0C78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xF70, symBinAddr: 0x43424, symSize: 0x54 } + - { offsetInCU: 0x1FB, offset: 0xA0CCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x133C, symBinAddr: 0x437F0, symSize: 0x3C } + - { offsetInCU: 0x24E, offset: 0xA0D1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x290, symBinAddr: 0x42780, symSize: 0x20 } + - { offsetInCU: 0x262, offset: 0xA0D31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x2B0, symBinAddr: 0x427A0, symSize: 0x20 } + - { offsetInCU: 0x276, offset: 0xA0D45, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x440, symBinAddr: 0x428F4, symSize: 0x20 } + - { offsetInCU: 0x28A, offset: 0xA0D59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x19D0, symBinAddr: 0x43E84, symSize: 0x18 } + - { offsetInCU: 0x29E, offset: 0xA0D6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x19E8, symBinAddr: 0x43E9C, symSize: 0x20 } + - { offsetInCU: 0x2B2, offset: 0xA0D81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1A08, symBinAddr: 0x43EBC, symSize: 0x18 } + - { offsetInCU: 0x2C6, offset: 0xA0D95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x1A68, symBinAddr: 0x43F1C, symSize: 0xC } + - { offsetInCU: 0x2DA, offset: 0xA0DA9, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1A74, symBinAddr: 0x43F28, symSize: 0x10 } + - { offsetInCU: 0x2EE, offset: 0xA0DBD, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1A84, symBinAddr: 0x43F38, symSize: 0x8 } + - { offsetInCU: 0x302, offset: 0xA0DD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1A8C, symBinAddr: 0x43F40, symSize: 0x10 } + - { offsetInCU: 0x316, offset: 0xA0DE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1A9C, symBinAddr: 0x43F50, symSize: 0x10 } + - { offsetInCU: 0x32A, offset: 0xA0DF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1AAC, symBinAddr: 0x43F60, symSize: 0x10 } + - { offsetInCU: 0x33E, offset: 0xA0E0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1ABC, symBinAddr: 0x43F70, symSize: 0x10 } + - { offsetInCU: 0x352, offset: 0xA0E21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1ACC, symBinAddr: 0x43F80, symSize: 0x10 } + - { offsetInCU: 0x366, offset: 0xA0E35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1ADC, symBinAddr: 0x43F90, symSize: 0x4 } + - { offsetInCU: 0x37A, offset: 0xA0E49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1AE0, symBinAddr: 0x43F94, symSize: 0x50 } + - { offsetInCU: 0x38E, offset: 0xA0E5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B30, symBinAddr: 0x43FE4, symSize: 0xC } + - { offsetInCU: 0x3A2, offset: 0xA0E71, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B3C, symBinAddr: 0x43FF0, symSize: 0xC } + - { offsetInCU: 0x3B6, offset: 0xA0E85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1D8C, symBinAddr: 0x44240, symSize: 0x7C } + - { offsetInCU: 0x3CA, offset: 0xA0E99, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E08, symBinAddr: 0x442BC, symSize: 0x2C } + - { offsetInCU: 0x40A, offset: 0xA0ED9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0x109C, symBinAddr: 0x43550, symSize: 0x50 } + - { offsetInCU: 0x426, offset: 0xA0EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0x10EC, symBinAddr: 0x435A0, symSize: 0x40 } + - { offsetInCU: 0x442, offset: 0xA0F11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0x112C, symBinAddr: 0x435E0, symSize: 0x4 } + - { offsetInCU: 0x45E, offset: 0xA0F2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0x1130, symBinAddr: 0x435E4, symSize: 0x4 } + - { offsetInCU: 0x499, offset: 0xA0F68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1134, symBinAddr: 0x435E8, symSize: 0x10 } + - { offsetInCU: 0x4B9, offset: 0xA0F88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1134, symBinAddr: 0x435E8, symSize: 0x10 } + - { offsetInCU: 0x4CA, offset: 0xA0F99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0x1144, symBinAddr: 0x435F8, symSize: 0x60 } + - { offsetInCU: 0x4E6, offset: 0xA0FB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x11A4, symBinAddr: 0x43658, symSize: 0x64 } + - { offsetInCU: 0x502, offset: 0xA0FD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1208, symBinAddr: 0x436BC, symSize: 0x50 } + - { offsetInCU: 0x542, offset: 0xA1011, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x12EC, symBinAddr: 0x437A0, symSize: 0x50 } + - { offsetInCU: 0x58C, offset: 0xA105B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x1378, symBinAddr: 0x4382C, symSize: 0x78 } + - { offsetInCU: 0x5E4, offset: 0xA10B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x13F0, symBinAddr: 0x438A4, symSize: 0x60 } + - { offsetInCU: 0x622, offset: 0xA10F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x1450, symBinAddr: 0x43904, symSize: 0x34 } + - { offsetInCU: 0x63E, offset: 0xA110D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1484, symBinAddr: 0x43938, symSize: 0x8 } + - { offsetInCU: 0x674, offset: 0xA1143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x148C, symBinAddr: 0x43940, symSize: 0x5C } + - { offsetInCU: 0x6A5, offset: 0xA1174, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x14E8, symBinAddr: 0x4399C, symSize: 0x5C } + - { offsetInCU: 0x6C1, offset: 0xA1190, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x1544, symBinAddr: 0x439F8, symSize: 0x70 } + - { offsetInCU: 0x6E4, offset: 0xA11B3, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x1758, symBinAddr: 0x43C0C, symSize: 0x4 } + - { offsetInCU: 0x70D, offset: 0xA11DC, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B48, symBinAddr: 0x43FFC, symSize: 0x178 } + - { offsetInCU: 0x894, offset: 0xA1363, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x424F0, symSize: 0x54 } + - { offsetInCU: 0x8A8, offset: 0xA1377, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x170, symBinAddr: 0x42660, symSize: 0x120 } + - { offsetInCU: 0x917, offset: 0xA13E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x30C, symBinAddr: 0x427C0, symSize: 0x78 } + - { offsetInCU: 0x967, offset: 0xA1436, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x384, symBinAddr: 0x42838, symSize: 0xBC } + - { offsetInCU: 0x9D1, offset: 0xA14A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x460, symBinAddr: 0x42914, symSize: 0x60 } + - { offsetInCU: 0x9F9, offset: 0xA14C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x4C0, symBinAddr: 0x42974, symSize: 0x140 } + - { offsetInCU: 0xA61, offset: 0xA1530, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x600, symBinAddr: 0x42AB4, symSize: 0x64 } + - { offsetInCU: 0xAA3, offset: 0xA1572, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x664, symBinAddr: 0x42B18, symSize: 0x90 } + - { offsetInCU: 0xB01, offset: 0xA15D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x6F4, symBinAddr: 0x42BA8, symSize: 0xC4 } + - { offsetInCU: 0xB53, offset: 0xA1622, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x7B8, symBinAddr: 0x42C6C, symSize: 0xDC } + - { offsetInCU: 0xB96, offset: 0xA1665, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x894, symBinAddr: 0x42D48, symSize: 0x104 } + - { offsetInCU: 0xBE6, offset: 0xA16B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x998, symBinAddr: 0x42E4C, symSize: 0xD8 } + - { offsetInCU: 0xC44, offset: 0xA1713, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0xA70, symBinAddr: 0x42F24, symSize: 0xBC } + - { offsetInCU: 0xC86, offset: 0xA1755, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0xB2C, symBinAddr: 0x42FE0, symSize: 0x88 } + - { offsetInCU: 0xCE4, offset: 0xA17B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xBB4, symBinAddr: 0x43068, symSize: 0x190 } + - { offsetInCU: 0xD31, offset: 0xA1800, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xD44, symBinAddr: 0x431F8, symSize: 0xB0 } + - { offsetInCU: 0xD7F, offset: 0xA184E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xDF4, symBinAddr: 0x432A8, symSize: 0x24 } + - { offsetInCU: 0xDB5, offset: 0xA1884, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xE18, symBinAddr: 0x432CC, symSize: 0x2C } + - { offsetInCU: 0xDF5, offset: 0xA18C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xFC4, symBinAddr: 0x43478, symSize: 0xA8 } + - { offsetInCU: 0xE44, offset: 0xA1913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0x106C, symBinAddr: 0x43520, symSize: 0x30 } + - { offsetInCU: 0xEB2, offset: 0xA1981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x175C, symBinAddr: 0x43C10, symSize: 0x274 } ... diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml index fcc5401..139d989 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/CocoaMQTT.framework.dSYM/Contents/Resources/Relocations/x86_64/CocoaMQTT.yml @@ -2,1629 +2,1665 @@ triple: 'x86_64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/CocoaMQTT.framework/CocoaMQTT' relocations: - - { offsetInCU: 0x34, offset: 0x55539, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x4E7C0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x5556E, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x4E7E8, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x555D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x2590, symSize: 0x10 } - - { offsetInCU: 0x6B, offset: 0x555EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x10, symBinAddr: 0x25A0, symSize: 0x10 } - - { offsetInCU: 0x94, offset: 0x55618, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x20, symBinAddr: 0x25B0, symSize: 0x80 } - - { offsetInCU: 0xB1, offset: 0x55635, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0xA0, symBinAddr: 0x2630, symSize: 0x100 } - - { offsetInCU: 0xFA, offset: 0x5567E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x250, symBinAddr: 0x27E0, symSize: 0x20 } - - { offsetInCU: 0x12B, offset: 0x556AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x2800, symSize: 0x10 } - - { offsetInCU: 0x147, offset: 0x556CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x280, symBinAddr: 0x2810, symSize: 0x10 } - - { offsetInCU: 0x163, offset: 0x556E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x8FC0, symBinAddr: 0xB530, symSize: 0x20 } - - { offsetInCU: 0x2BC, offset: 0x55840, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x290, symBinAddr: 0x2820, symSize: 0x180 } - - { offsetInCU: 0x407, offset: 0x5598B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x410, symBinAddr: 0x29A0, symSize: 0x10 } - - { offsetInCU: 0x42B, offset: 0x559AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x420, symBinAddr: 0x29B0, symSize: 0x40 } - - { offsetInCU: 0x44A, offset: 0x559CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x460, symBinAddr: 0x29F0, symSize: 0x50 } - - { offsetInCU: 0x489, offset: 0x55A0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x4B0, symBinAddr: 0x2A40, symSize: 0x70 } - - { offsetInCU: 0x4B6, offset: 0x55A3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x520, symBinAddr: 0x2AB0, symSize: 0x60 } - - { offsetInCU: 0x4E1, offset: 0x55A65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x600, symBinAddr: 0x2B90, symSize: 0x40 } - - { offsetInCU: 0x510, offset: 0x55A94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x690, symBinAddr: 0x2C20, symSize: 0x40 } - - { offsetInCU: 0x53F, offset: 0x55AC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x7A0, symBinAddr: 0x2D30, symSize: 0x40 } - - { offsetInCU: 0x56E, offset: 0x55AF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x830, symBinAddr: 0x2DC0, symSize: 0x40 } - - { offsetInCU: 0x59D, offset: 0x55B21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x950, symBinAddr: 0x2EE0, symSize: 0x40 } - - { offsetInCU: 0x5CC, offset: 0x55B50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x9E0, symBinAddr: 0x2F70, symSize: 0x40 } - - { offsetInCU: 0x5FB, offset: 0x55B7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0xA30, symBinAddr: 0x2FC0, symSize: 0x40 } - - { offsetInCU: 0x618, offset: 0x55B9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0xA70, symBinAddr: 0x3000, symSize: 0x50 } - - { offsetInCU: 0x655, offset: 0x55BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0xAC0, symBinAddr: 0x3050, symSize: 0x40 } - - { offsetInCU: 0x684, offset: 0x55C08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0xB00, symBinAddr: 0x3090, symSize: 0x10 } - - { offsetInCU: 0x6CF, offset: 0x55C53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0xB10, symBinAddr: 0x30A0, symSize: 0xB0 } - - { offsetInCU: 0x741, offset: 0x55CC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xBE0, symBinAddr: 0x3170, symSize: 0xF0 } - - { offsetInCU: 0x7B6, offset: 0x55D3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCF0, symBinAddr: 0x3280, symSize: 0x40 } - - { offsetInCU: 0x7D3, offset: 0x55D57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xD30, symBinAddr: 0x32C0, symSize: 0x50 } - - { offsetInCU: 0x810, offset: 0x55D94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD80, symBinAddr: 0x3310, symSize: 0x40 } - - { offsetInCU: 0x89B, offset: 0x55E1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xDD0, symBinAddr: 0x3360, symSize: 0x100 } - - { offsetInCU: 0x971, offset: 0x55EF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0x1110, symBinAddr: 0x36A0, symSize: 0x30 } - - { offsetInCU: 0x9AC, offset: 0x55F30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x1140, symBinAddr: 0x36D0, symSize: 0x80 } - - { offsetInCU: 0x9F4, offset: 0x55F78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x11C0, symBinAddr: 0x3750, symSize: 0x40 } - - { offsetInCU: 0xA23, offset: 0x55FA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x1200, symBinAddr: 0x3790, symSize: 0x80 } - - { offsetInCU: 0xA80, offset: 0x56004, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x1290, symBinAddr: 0x3820, symSize: 0x30 } - - { offsetInCU: 0xAD0, offset: 0x56054, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x12C0, symBinAddr: 0x3850, symSize: 0x30 } - - { offsetInCU: 0xB4F, offset: 0x560D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x12F0, symBinAddr: 0x3880, symSize: 0x40 } - - { offsetInCU: 0xBF6, offset: 0x5617A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1330, symBinAddr: 0x38C0, symSize: 0x30 } - - { offsetInCU: 0xCB0, offset: 0x56234, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1360, symBinAddr: 0x38F0, symSize: 0x20 } - - { offsetInCU: 0xD1E, offset: 0x562A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x13A0, symBinAddr: 0x3930, symSize: 0x40 } - - { offsetInCU: 0xD9B, offset: 0x5631F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x1400, symBinAddr: 0x3990, symSize: 0x20 } - - { offsetInCU: 0xE09, offset: 0x5638D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1460, symBinAddr: 0x39F0, symSize: 0x40 } - - { offsetInCU: 0xE86, offset: 0x5640A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x1530, symBinAddr: 0x3AC0, symSize: 0x40 } - - { offsetInCU: 0xEB5, offset: 0x56439, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x1640, symBinAddr: 0x3BD0, symSize: 0x40 } - - { offsetInCU: 0xEE4, offset: 0x56468, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x16D0, symBinAddr: 0x3C60, symSize: 0x40 } - - { offsetInCU: 0xF13, offset: 0x56497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x17D0, symBinAddr: 0x3D60, symSize: 0x40 } - - { offsetInCU: 0xF42, offset: 0x564C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x1840, symBinAddr: 0x3DD0, symSize: 0x60 } - - { offsetInCU: 0xF7F, offset: 0x56503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x18A0, symBinAddr: 0x3E30, symSize: 0x60 } - - { offsetInCU: 0xFED, offset: 0x56571, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x1900, symBinAddr: 0x3E90, symSize: 0x70 } - - { offsetInCU: 0x1071, offset: 0x565F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x1970, symBinAddr: 0x3F00, symSize: 0x30 } - - { offsetInCU: 0x10D9, offset: 0x5665D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x19A0, symBinAddr: 0x3F30, symSize: 0x70 } - - { offsetInCU: 0x1138, offset: 0x566BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x1A10, symBinAddr: 0x3FA0, symSize: 0x70 } - - { offsetInCU: 0x1197, offset: 0x5671B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x1A80, symBinAddr: 0x4010, symSize: 0xA0 } - - { offsetInCU: 0x122D, offset: 0x567B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1B20, symBinAddr: 0x40B0, symSize: 0x80 } - - { offsetInCU: 0x12C3, offset: 0x56847, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1BA0, symBinAddr: 0x4130, symSize: 0xB0 } - - { offsetInCU: 0x1317, offset: 0x5689B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1C50, symBinAddr: 0x41E0, symSize: 0xC0 } - - { offsetInCU: 0x139C, offset: 0x56920, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1D10, symBinAddr: 0x42A0, symSize: 0x100 } - - { offsetInCU: 0x143B, offset: 0x569BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1E10, symBinAddr: 0x43A0, symSize: 0x140 } - - { offsetInCU: 0x14BF, offset: 0x56A43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1F50, symBinAddr: 0x44E0, symSize: 0xB0 } - - { offsetInCU: 0x1535, offset: 0x56AB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x20D0, symBinAddr: 0x4660, symSize: 0xF0 } - - { offsetInCU: 0x15AE, offset: 0x56B32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2310, symBinAddr: 0x48A0, symSize: 0x40 } - - { offsetInCU: 0x15DD, offset: 0x56B61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2350, symBinAddr: 0x48E0, symSize: 0x50 } - - { offsetInCU: 0x161D, offset: 0x56BA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x23A0, symBinAddr: 0x4930, symSize: 0x40 } - - { offsetInCU: 0x163C, offset: 0x56BC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2460, symBinAddr: 0x49F0, symSize: 0x10 } - - { offsetInCU: 0x1654, offset: 0x56BD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x2470, symBinAddr: 0x4A00, symSize: 0x10 } - - { offsetInCU: 0x168E, offset: 0x56C12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x24C0, symBinAddr: 0x4A50, symSize: 0x40 } - - { offsetInCU: 0x16BF, offset: 0x56C43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2500, symBinAddr: 0x4A90, symSize: 0x10 } - - { offsetInCU: 0x16D7, offset: 0x56C5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x2510, symBinAddr: 0x4AA0, symSize: 0x10 } - - { offsetInCU: 0x1720, offset: 0x56CA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2560, symBinAddr: 0x4AF0, symSize: 0x40 } - - { offsetInCU: 0x1751, offset: 0x56CD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x25A0, symBinAddr: 0x4B30, symSize: 0x10 } - - { offsetInCU: 0x1769, offset: 0x56CED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x25B0, symBinAddr: 0x4B40, symSize: 0x10 } - - { offsetInCU: 0x17A3, offset: 0x56D27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x2600, symBinAddr: 0x4B90, symSize: 0x40 } - - { offsetInCU: 0x17D4, offset: 0x56D58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2640, symBinAddr: 0x4BD0, symSize: 0x10 } - - { offsetInCU: 0x17EC, offset: 0x56D70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2690, symBinAddr: 0x4C20, symSize: 0x40 } - - { offsetInCU: 0x181D, offset: 0x56DA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x26D0, symBinAddr: 0x4C60, symSize: 0x10 } - - { offsetInCU: 0x1835, offset: 0x56DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x26E0, symBinAddr: 0x4C70, symSize: 0x10 } - - { offsetInCU: 0x187E, offset: 0x56E02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x2730, symBinAddr: 0x4CC0, symSize: 0x40 } - - { offsetInCU: 0x18AF, offset: 0x56E33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x2770, symBinAddr: 0x4D00, symSize: 0x10 } - - { offsetInCU: 0x18C7, offset: 0x56E4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x27C0, symBinAddr: 0x4D50, symSize: 0x40 } - - { offsetInCU: 0x18F8, offset: 0x56E7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x2800, symBinAddr: 0x4D90, symSize: 0x10 } - - { offsetInCU: 0x1910, offset: 0x56E94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2810, symBinAddr: 0x4DA0, symSize: 0x10 } - - { offsetInCU: 0x193B, offset: 0x56EBF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x2860, symBinAddr: 0x4DF0, symSize: 0x40 } - - { offsetInCU: 0x196C, offset: 0x56EF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x28A0, symBinAddr: 0x4E30, symSize: 0x10 } - - { offsetInCU: 0x1984, offset: 0x56F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x28B0, symBinAddr: 0x4E40, symSize: 0x10 } - - { offsetInCU: 0x19AF, offset: 0x56F33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2900, symBinAddr: 0x4E90, symSize: 0x40 } - - { offsetInCU: 0x19E0, offset: 0x56F64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x2940, symBinAddr: 0x4ED0, symSize: 0x10 } - - { offsetInCU: 0x19F8, offset: 0x56F7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x2950, symBinAddr: 0x4EE0, symSize: 0x10 } - - { offsetInCU: 0x1A32, offset: 0x56FB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x29A0, symBinAddr: 0x4F30, symSize: 0x40 } - - { offsetInCU: 0x1A63, offset: 0x56FE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x29E0, symBinAddr: 0x4F70, symSize: 0x10 } - - { offsetInCU: 0x1A7B, offset: 0x56FFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x29F0, symBinAddr: 0x4F80, symSize: 0x10 } - - { offsetInCU: 0x1AC6, offset: 0x5704A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x2A40, symBinAddr: 0x4FD0, symSize: 0x40 } - - { offsetInCU: 0x1AF7, offset: 0x5707B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2A80, symBinAddr: 0x5010, symSize: 0x10 } - - { offsetInCU: 0x1B0F, offset: 0x57093, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2AD0, symBinAddr: 0x5060, symSize: 0x40 } - - { offsetInCU: 0x1B40, offset: 0x570C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2B10, symBinAddr: 0x50A0, symSize: 0x10 } - - { offsetInCU: 0x1B58, offset: 0x570DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2BF0, symBinAddr: 0x5180, symSize: 0x40 } - - { offsetInCU: 0x1B89, offset: 0x5710D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2C30, symBinAddr: 0x51C0, symSize: 0x60 } - - { offsetInCU: 0x1BA8, offset: 0x5712C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2C90, symBinAddr: 0x5220, symSize: 0x690 } - - { offsetInCU: 0x1DB8, offset: 0x5733C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x3320, symBinAddr: 0x58B0, symSize: 0x180 } - - { offsetInCU: 0x1E41, offset: 0x573C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x34A0, symBinAddr: 0x5A30, symSize: 0x20 } - - { offsetInCU: 0x1F40, offset: 0x574C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x36B0, symBinAddr: 0x5C40, symSize: 0x620 } - - { offsetInCU: 0x20FC, offset: 0x57680, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3CD0, symBinAddr: 0x6260, symSize: 0x20 } - - { offsetInCU: 0x2182, offset: 0x57706, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x3CF0, symBinAddr: 0x6280, symSize: 0x690 } - - { offsetInCU: 0x2498, offset: 0x57A1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4380, symBinAddr: 0x6910, symSize: 0xB0 } - - { offsetInCU: 0x254B, offset: 0x57ACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x4460, symBinAddr: 0x69F0, symSize: 0x10 } - - { offsetInCU: 0x25A4, offset: 0x57B28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19internal_disconnectyyF', symObjAddr: 0x4470, symBinAddr: 0x6A00, symSize: 0xD0 } - - { offsetInCU: 0x265C, offset: 0x57BE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x4540, symBinAddr: 0x6AD0, symSize: 0xF0 } - - { offsetInCU: 0x26D8, offset: 0x57C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x4630, symBinAddr: 0x6BC0, symSize: 0xA0 } - - { offsetInCU: 0x2764, offset: 0x57CE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x46D0, symBinAddr: 0x6C60, symSize: 0x180 } - - { offsetInCU: 0x28E9, offset: 0x57E6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x4850, symBinAddr: 0x6DE0, symSize: 0x710 } - - { offsetInCU: 0x2B64, offset: 0x580E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x4F60, symBinAddr: 0x74F0, symSize: 0x70 } - - { offsetInCU: 0x2BD1, offset: 0x58155, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x4FD0, symBinAddr: 0x7560, symSize: 0xC0 } - - { offsetInCU: 0x2CBD, offset: 0x58241, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x5090, symBinAddr: 0x7620, symSize: 0x70 } - - { offsetInCU: 0x2D83, offset: 0x58307, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x5100, symBinAddr: 0x7690, symSize: 0xF0 } - - { offsetInCU: 0x2FF1, offset: 0x58575, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x51F0, symBinAddr: 0x7780, symSize: 0x120 } - - { offsetInCU: 0x31A8, offset: 0x5872C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x5310, symBinAddr: 0x78A0, symSize: 0xE0 } - - { offsetInCU: 0x32D2, offset: 0x58856, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x53F0, symBinAddr: 0x7980, symSize: 0x20 } - - { offsetInCU: 0x32F0, offset: 0x58874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x5410, symBinAddr: 0x79A0, symSize: 0x30 } - - { offsetInCU: 0x3353, offset: 0x588D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x5440, symBinAddr: 0x79D0, symSize: 0x30 } - - { offsetInCU: 0x33BA, offset: 0x5893E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x5470, symBinAddr: 0x7A00, symSize: 0x40 } - - { offsetInCU: 0x35A7, offset: 0x58B2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x78F0, symBinAddr: 0x9E60, symSize: 0x240 } - - { offsetInCU: 0x3747, offset: 0x58CCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubAckV_Tg5', symObjAddr: 0x7B30, symBinAddr: 0xA0A0, symSize: 0x240 } - - { offsetInCU: 0x38E7, offset: 0x58E6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRecV_Tg5', symObjAddr: 0x7D70, symBinAddr: 0xA2E0, symSize: 0x240 } - - { offsetInCU: 0x3A87, offset: 0x5900B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PubCompV_Tg5', symObjAddr: 0x7FB0, symBinAddr: 0xA520, symSize: 0x240 } - - { offsetInCU: 0x3C27, offset: 0x591AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x81F0, symBinAddr: 0xA760, symSize: 0x250 } - - { offsetInCU: 0x3DC7, offset: 0x5934B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x8440, symBinAddr: 0xA9B0, symSize: 0x200 } - - { offsetInCU: 0x3F67, offset: 0x594EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x8640, symBinAddr: 0xABB0, symSize: 0x240 } - - { offsetInCU: 0x4107, offset: 0x5968B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x8880, symBinAddr: 0xADF0, symSize: 0x2A0 } - - { offsetInCU: 0x42A9, offset: 0x5982D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x8B20, symBinAddr: 0xB090, symSize: 0x260 } - - { offsetInCU: 0x4449, offset: 0x599CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L6PubRelV_Tg5', symObjAddr: 0x8D80, symBinAddr: 0xB2F0, symSize: 0x240 } - - { offsetInCU: 0x4757, offset: 0x59CDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x580, symBinAddr: 0x2B10, symSize: 0x20 } - - { offsetInCU: 0x476F, offset: 0x59CF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x5A0, symBinAddr: 0x2B30, symSize: 0x20 } - - { offsetInCU: 0x4787, offset: 0x59D0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x640, symBinAddr: 0x2BD0, symSize: 0x10 } - - { offsetInCU: 0x479F, offset: 0x59D23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x7E0, symBinAddr: 0x2D70, symSize: 0x10 } - - { offsetInCU: 0x47B7, offset: 0x59D3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x870, symBinAddr: 0x2E00, symSize: 0x10 } - - { offsetInCU: 0x47CF, offset: 0x59D53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x990, symBinAddr: 0x2F20, symSize: 0x10 } - - { offsetInCU: 0x47E7, offset: 0x59D6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0xA20, symBinAddr: 0x2FB0, symSize: 0x10 } - - { offsetInCU: 0x489C, offset: 0x59E20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xDC0, symBinAddr: 0x3350, symSize: 0x10 } - - { offsetInCU: 0x48CB, offset: 0x59E4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xED0, symBinAddr: 0x3460, symSize: 0x240 } - - { offsetInCU: 0x494F, offset: 0x59ED3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x54C0, symBinAddr: 0x7A50, symSize: 0x50 } - - { offsetInCU: 0x4AA5, offset: 0x5A029, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x14E0, symBinAddr: 0x3A70, symSize: 0x10 } - - { offsetInCU: 0x4ABD, offset: 0x5A041, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1570, symBinAddr: 0x3B00, symSize: 0x10 } - - { offsetInCU: 0x4AD5, offset: 0x5A059, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1580, symBinAddr: 0x3B10, symSize: 0x10 } - - { offsetInCU: 0x4AED, offset: 0x5A071, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1680, symBinAddr: 0x3C10, symSize: 0x10 } - - { offsetInCU: 0x4B05, offset: 0x5A089, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1710, symBinAddr: 0x3CA0, symSize: 0x10 } - - { offsetInCU: 0x4B1D, offset: 0x5A0A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x1810, symBinAddr: 0x3DA0, symSize: 0x10 } - - { offsetInCU: 0x4B35, offset: 0x5A0B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1820, symBinAddr: 0x3DB0, symSize: 0x10 } - - { offsetInCU: 0x4B4D, offset: 0x5A0D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x1830, symBinAddr: 0x3DC0, symSize: 0x10 } - - { offsetInCU: 0x4C7F, offset: 0x5A203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x22D0, symBinAddr: 0x4860, symSize: 0x40 } - - { offsetInCU: 0x4CAE, offset: 0x5A232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x23E0, symBinAddr: 0x4970, symSize: 0x20 } - - { offsetInCU: 0x4CDD, offset: 0x5A261, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x2400, symBinAddr: 0x4990, symSize: 0x20 } - - { offsetInCU: 0x4D0C, offset: 0x5A290, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x2420, symBinAddr: 0x49B0, symSize: 0x20 } - - { offsetInCU: 0x4D3B, offset: 0x5A2BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x2440, symBinAddr: 0x49D0, symSize: 0x10 } - - { offsetInCU: 0x4D53, offset: 0x5A2D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x2450, symBinAddr: 0x49E0, symSize: 0x10 } - - { offsetInCU: 0x4DE8, offset: 0x5A36C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x34C0, symBinAddr: 0x5A50, symSize: 0x1F0 } - - { offsetInCU: 0x4F9F, offset: 0x5A523, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x4430, symBinAddr: 0x69C0, symSize: 0x30 } - - { offsetInCU: 0x5372, offset: 0x5A8F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x54B0, symBinAddr: 0x7A40, symSize: 0x10 } - - { offsetInCU: 0x53A5, offset: 0x5A929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5510, symBinAddr: 0x7AA0, symSize: 0x10 } - - { offsetInCU: 0x53D3, offset: 0x5A957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5520, symBinAddr: 0x7AB0, symSize: 0x1E0 } - - { offsetInCU: 0x54C7, offset: 0x5AA4B, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x5700, symBinAddr: 0x7C90, symSize: 0x40 } - - { offsetInCU: 0x54EA, offset: 0x5AA6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5740, symBinAddr: 0x7CD0, symSize: 0x1A0 } - - { offsetInCU: 0x55D0, offset: 0x5AB54, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x58E0, symBinAddr: 0x7E70, symSize: 0x60 } - - { offsetInCU: 0x55E8, offset: 0x5AB6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5940, symBinAddr: 0x7ED0, symSize: 0xB0 } - - { offsetInCU: 0x566E, offset: 0x5ABF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x59F0, symBinAddr: 0x7F80, symSize: 0x10 } - - { offsetInCU: 0x5755, offset: 0x5ACD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5A00, symBinAddr: 0x7F90, symSize: 0x270 } - - { offsetInCU: 0x5AE4, offset: 0x5B068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5C70, symBinAddr: 0x8200, symSize: 0x380 } - - { offsetInCU: 0x5D4B, offset: 0x5B2CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x5FF0, symBinAddr: 0x8580, symSize: 0xA0 } - - { offsetInCU: 0x5E31, offset: 0x5B3B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x6090, symBinAddr: 0x8620, symSize: 0x10 } - - { offsetInCU: 0x5E76, offset: 0x5B3FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x60A0, symBinAddr: 0x8630, symSize: 0x10 } - - { offsetInCU: 0x5E92, offset: 0x5B416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x60B0, symBinAddr: 0x8640, symSize: 0x10 } - - { offsetInCU: 0x5EAE, offset: 0x5B432, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x60C0, symBinAddr: 0x8650, symSize: 0x10 } - - { offsetInCU: 0x5ECA, offset: 0x5B44E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x60D0, symBinAddr: 0x8660, symSize: 0x10 } - - { offsetInCU: 0x5EE6, offset: 0x5B46A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x60E0, symBinAddr: 0x8670, symSize: 0x10 } - - { offsetInCU: 0x5F02, offset: 0x5B486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x60F0, symBinAddr: 0x8680, symSize: 0x220 } - - { offsetInCU: 0x5F8A, offset: 0x5B50E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x6310, symBinAddr: 0x88A0, symSize: 0x130 } - - { offsetInCU: 0x60A3, offset: 0x5B627, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x6440, symBinAddr: 0x89D0, symSize: 0x30 } - - { offsetInCU: 0x60E5, offset: 0x5B669, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x6470, symBinAddr: 0x8A00, symSize: 0x10 } - - { offsetInCU: 0x6127, offset: 0x5B6AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x6480, symBinAddr: 0x8A10, symSize: 0x10 } - - { offsetInCU: 0x6169, offset: 0x5B6ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x6490, symBinAddr: 0x8A20, symSize: 0x10 } - - { offsetInCU: 0x61AB, offset: 0x5B72F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x64A0, symBinAddr: 0x8A30, symSize: 0x10 } - - { offsetInCU: 0x61ED, offset: 0x5B771, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x64B0, symBinAddr: 0x8A40, symSize: 0x10 } - - { offsetInCU: 0x622F, offset: 0x5B7B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x64C0, symBinAddr: 0x8A50, symSize: 0x10 } - - { offsetInCU: 0x6271, offset: 0x5B7F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x64D0, symBinAddr: 0x8A60, symSize: 0x10 } - - { offsetInCU: 0x62B3, offset: 0x5B837, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x64E0, symBinAddr: 0x8A70, symSize: 0x10 } - - { offsetInCU: 0x62E6, offset: 0x5B86A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x64F0, symBinAddr: 0x8A80, symSize: 0x10 } - - { offsetInCU: 0x62FE, offset: 0x5B882, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x6500, symBinAddr: 0x8A90, symSize: 0x20 } - - { offsetInCU: 0x6316, offset: 0x5B89A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x6520, symBinAddr: 0x8AB0, symSize: 0x20 } - - { offsetInCU: 0x632E, offset: 0x5B8B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x6540, symBinAddr: 0x8AD0, symSize: 0x10 } - - { offsetInCU: 0x6346, offset: 0x5B8CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x6550, symBinAddr: 0x8AE0, symSize: 0x10 } - - { offsetInCU: 0x635E, offset: 0x5B8E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x6560, symBinAddr: 0x8AF0, symSize: 0x10 } - - { offsetInCU: 0x6376, offset: 0x5B8FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x6570, symBinAddr: 0x8B00, symSize: 0x10 } - - { offsetInCU: 0x638E, offset: 0x5B912, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x6580, symBinAddr: 0x8B10, symSize: 0x10 } - - { offsetInCU: 0x63A6, offset: 0x5B92A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x6590, symBinAddr: 0x8B20, symSize: 0x30 } - - { offsetInCU: 0x63BE, offset: 0x5B942, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x65C0, symBinAddr: 0x8B50, symSize: 0x10 } - - { offsetInCU: 0x63D6, offset: 0x5B95A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x6610, symBinAddr: 0x8BA0, symSize: 0x10 } - - { offsetInCU: 0x63EE, offset: 0x5B972, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x6620, symBinAddr: 0x8BB0, symSize: 0x10 } - - { offsetInCU: 0x6406, offset: 0x5B98A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x6630, symBinAddr: 0x8BC0, symSize: 0x10 } - - { offsetInCU: 0x641E, offset: 0x5B9A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x6640, symBinAddr: 0x8BD0, symSize: 0x10 } - - { offsetInCU: 0x6436, offset: 0x5B9BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x6650, symBinAddr: 0x8BE0, symSize: 0x10 } - - { offsetInCU: 0x644E, offset: 0x5B9D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x6660, symBinAddr: 0x8BF0, symSize: 0x10 } - - { offsetInCU: 0x6466, offset: 0x5B9EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x6670, symBinAddr: 0x8C00, symSize: 0x10 } - - { offsetInCU: 0x647E, offset: 0x5BA02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6680, symBinAddr: 0x8C10, symSize: 0x10 } - - { offsetInCU: 0x6496, offset: 0x5BA1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x6690, symBinAddr: 0x8C20, symSize: 0x10 } - - { offsetInCU: 0x64AE, offset: 0x5BA32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x66A0, symBinAddr: 0x8C30, symSize: 0x10 } - - { offsetInCU: 0x6521, offset: 0x5BAA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x66B0, symBinAddr: 0x8C40, symSize: 0x160 } - - { offsetInCU: 0x659F, offset: 0x5BB23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x69C0, symBinAddr: 0x8F50, symSize: 0x20 } - - { offsetInCU: 0x65CE, offset: 0x5BB52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x69E0, symBinAddr: 0x8F70, symSize: 0x10 } - - { offsetInCU: 0x65E6, offset: 0x5BB6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x69F0, symBinAddr: 0x8F80, symSize: 0x10 } - - { offsetInCU: 0x65FE, offset: 0x5BB82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6A00, symBinAddr: 0x8F90, symSize: 0x10 } - - { offsetInCU: 0x6616, offset: 0x5BB9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x6A10, symBinAddr: 0x8FA0, symSize: 0x10 } - - { offsetInCU: 0x662E, offset: 0x5BBB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x6A20, symBinAddr: 0x8FB0, symSize: 0x10 } - - { offsetInCU: 0x6646, offset: 0x5BBCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x6A30, symBinAddr: 0x8FC0, symSize: 0x10 } - - { offsetInCU: 0x665E, offset: 0x5BBE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x6A40, symBinAddr: 0x8FD0, symSize: 0x10 } - - { offsetInCU: 0x6676, offset: 0x5BBFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x6A50, symBinAddr: 0x8FE0, symSize: 0x10 } - - { offsetInCU: 0x668E, offset: 0x5BC12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x6A60, symBinAddr: 0x8FF0, symSize: 0x10 } - - { offsetInCU: 0x66A6, offset: 0x5BC2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x6A70, symBinAddr: 0x9000, symSize: 0x10 } - - { offsetInCU: 0x66BE, offset: 0x5BC42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6A80, symBinAddr: 0x9010, symSize: 0x10 } - - { offsetInCU: 0x66D6, offset: 0x5BC5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x6A90, symBinAddr: 0x9020, symSize: 0x10 } - - { offsetInCU: 0x66EE, offset: 0x5BC72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x6AA0, symBinAddr: 0x9030, symSize: 0x10 } - - { offsetInCU: 0x6706, offset: 0x5BC8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6AB0, symBinAddr: 0x9040, symSize: 0x10 } - - { offsetInCU: 0x671E, offset: 0x5BCA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x6AC0, symBinAddr: 0x9050, symSize: 0x10 } - - { offsetInCU: 0x6736, offset: 0x5BCBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x6AD0, symBinAddr: 0x9060, symSize: 0x10 } - - { offsetInCU: 0x674E, offset: 0x5BCD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x6AE0, symBinAddr: 0x9070, symSize: 0x10 } - - { offsetInCU: 0x6766, offset: 0x5BCEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x6AF0, symBinAddr: 0x9080, symSize: 0x10 } - - { offsetInCU: 0x677E, offset: 0x5BD02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x6B00, symBinAddr: 0x9090, symSize: 0x10 } - - { offsetInCU: 0x6796, offset: 0x5BD1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x6B10, symBinAddr: 0x90A0, symSize: 0x10 } - - { offsetInCU: 0x67AE, offset: 0x5BD32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x6B20, symBinAddr: 0x90B0, symSize: 0x20 } - - { offsetInCU: 0x67F1, offset: 0x5BD75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x6B40, symBinAddr: 0x90D0, symSize: 0x10 } - - { offsetInCU: 0x6809, offset: 0x5BD8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6B50, symBinAddr: 0x90E0, symSize: 0x10 } - - { offsetInCU: 0x6821, offset: 0x5BDA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6B60, symBinAddr: 0x90F0, symSize: 0x10 } - - { offsetInCU: 0x6839, offset: 0x5BDBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x6B70, symBinAddr: 0x9100, symSize: 0x10 } - - { offsetInCU: 0x6851, offset: 0x5BDD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x6B80, symBinAddr: 0x9110, symSize: 0x10 } - - { offsetInCU: 0x6869, offset: 0x5BDED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x6B90, symBinAddr: 0x9120, symSize: 0x10 } - - { offsetInCU: 0x6881, offset: 0x5BE05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6BA0, symBinAddr: 0x9130, symSize: 0x10 } - - { offsetInCU: 0x6899, offset: 0x5BE1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6BB0, symBinAddr: 0x9140, symSize: 0x10 } - - { offsetInCU: 0x68B1, offset: 0x5BE35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x6BC0, symBinAddr: 0x9150, symSize: 0x10 } - - { offsetInCU: 0x68C9, offset: 0x5BE4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x6BD0, symBinAddr: 0x9160, symSize: 0x10 } - - { offsetInCU: 0x68E1, offset: 0x5BE65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x6BE0, symBinAddr: 0x9170, symSize: 0x10 } - - { offsetInCU: 0x68F9, offset: 0x5BE7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x6BF0, symBinAddr: 0x9180, symSize: 0x10 } - - { offsetInCU: 0x6911, offset: 0x5BE95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x6C00, symBinAddr: 0x9190, symSize: 0x10 } - - { offsetInCU: 0x6929, offset: 0x5BEAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x6C10, symBinAddr: 0x91A0, symSize: 0x10 } - - { offsetInCU: 0x6941, offset: 0x5BEC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6C20, symBinAddr: 0x91B0, symSize: 0x10 } - - { offsetInCU: 0x6959, offset: 0x5BEDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6C30, symBinAddr: 0x91C0, symSize: 0x10 } - - { offsetInCU: 0x6971, offset: 0x5BEF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x6C40, symBinAddr: 0x91D0, symSize: 0x10 } - - { offsetInCU: 0x6989, offset: 0x5BF0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6C50, symBinAddr: 0x91E0, symSize: 0x10 } - - { offsetInCU: 0x69A1, offset: 0x5BF25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x6C60, symBinAddr: 0x91F0, symSize: 0x10 } - - { offsetInCU: 0x69B9, offset: 0x5BF3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x6C70, symBinAddr: 0x9200, symSize: 0x10 } - - { offsetInCU: 0x69D1, offset: 0x5BF55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x6C80, symBinAddr: 0x9210, symSize: 0x10 } - - { offsetInCU: 0x69E9, offset: 0x5BF6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x6C90, symBinAddr: 0x9220, symSize: 0x20 } - - { offsetInCU: 0x6A01, offset: 0x5BF85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x6CB0, symBinAddr: 0x9240, symSize: 0x10 } - - { offsetInCU: 0x6A19, offset: 0x5BF9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x6CC0, symBinAddr: 0x9250, symSize: 0x10 } - - { offsetInCU: 0x6A31, offset: 0x5BFB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x6CD0, symBinAddr: 0x9260, symSize: 0x10 } - - { offsetInCU: 0x6A49, offset: 0x5BFCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6CE0, symBinAddr: 0x9270, symSize: 0x10 } - - { offsetInCU: 0x6A61, offset: 0x5BFE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6CF0, symBinAddr: 0x9280, symSize: 0x10 } - - { offsetInCU: 0x6A79, offset: 0x5BFFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6D00, symBinAddr: 0x9290, symSize: 0x10 } - - { offsetInCU: 0x6A91, offset: 0x5C015, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6D10, symBinAddr: 0x92A0, symSize: 0x10 } - - { offsetInCU: 0x6AA9, offset: 0x5C02D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x6D20, symBinAddr: 0x92B0, symSize: 0x10 } - - { offsetInCU: 0x6AC1, offset: 0x5C045, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x6D30, symBinAddr: 0x92C0, symSize: 0x10 } - - { offsetInCU: 0x6AD9, offset: 0x5C05D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x6D40, symBinAddr: 0x92D0, symSize: 0x10 } - - { offsetInCU: 0x6AF1, offset: 0x5C075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x6D50, symBinAddr: 0x92E0, symSize: 0x10 } - - { offsetInCU: 0x6B09, offset: 0x5C08D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x6D60, symBinAddr: 0x92F0, symSize: 0x10 } - - { offsetInCU: 0x6B21, offset: 0x5C0A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6D70, symBinAddr: 0x9300, symSize: 0x10 } - - { offsetInCU: 0x6B39, offset: 0x5C0BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x6D80, symBinAddr: 0x9310, symSize: 0x10 } - - { offsetInCU: 0x6B51, offset: 0x5C0D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x6D90, symBinAddr: 0x9320, symSize: 0x10 } - - { offsetInCU: 0x6B69, offset: 0x5C0ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6DA0, symBinAddr: 0x9330, symSize: 0x10 } - - { offsetInCU: 0x6B81, offset: 0x5C105, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6DB0, symBinAddr: 0x9340, symSize: 0x10 } - - { offsetInCU: 0x6B99, offset: 0x5C11D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x6DC0, symBinAddr: 0x9350, symSize: 0x10 } - - { offsetInCU: 0x6BB1, offset: 0x5C135, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x6DD0, symBinAddr: 0x9360, symSize: 0x10 } - - { offsetInCU: 0x6BC9, offset: 0x5C14D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x6DE0, symBinAddr: 0x9370, symSize: 0x20 } - - { offsetInCU: 0x6BE1, offset: 0x5C165, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x6E00, symBinAddr: 0x9390, symSize: 0x10 } - - { offsetInCU: 0x6BF9, offset: 0x5C17D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x6E10, symBinAddr: 0x93A0, symSize: 0x10 } - - { offsetInCU: 0x6C11, offset: 0x5C195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x6E20, symBinAddr: 0x93B0, symSize: 0x10 } - - { offsetInCU: 0x6C29, offset: 0x5C1AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x6E30, symBinAddr: 0x93C0, symSize: 0x10 } - - { offsetInCU: 0x6C41, offset: 0x5C1C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x6E40, symBinAddr: 0x93D0, symSize: 0x10 } - - { offsetInCU: 0x6C59, offset: 0x5C1DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x6E50, symBinAddr: 0x93E0, symSize: 0x10 } - - { offsetInCU: 0x6C71, offset: 0x5C1F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6E60, symBinAddr: 0x93F0, symSize: 0x10 } - - { offsetInCU: 0x6C89, offset: 0x5C20D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x6E70, symBinAddr: 0x9400, symSize: 0x10 } - - { offsetInCU: 0x6CA1, offset: 0x5C225, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x6E80, symBinAddr: 0x9410, symSize: 0x10 } - - { offsetInCU: 0x6CB9, offset: 0x5C23D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x6E90, symBinAddr: 0x9420, symSize: 0x10 } - - { offsetInCU: 0x6CD1, offset: 0x5C255, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x6EA0, symBinAddr: 0x9430, symSize: 0x10 } - - { offsetInCU: 0x6CE9, offset: 0x5C26D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6EB0, symBinAddr: 0x9440, symSize: 0x10 } - - { offsetInCU: 0x6D01, offset: 0x5C285, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6EC0, symBinAddr: 0x9450, symSize: 0x10 } - - { offsetInCU: 0x6D19, offset: 0x5C29D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x6ED0, symBinAddr: 0x9460, symSize: 0x10 } - - { offsetInCU: 0x6D31, offset: 0x5C2B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x6EE0, symBinAddr: 0x9470, symSize: 0x10 } - - { offsetInCU: 0x6D49, offset: 0x5C2CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x6EF0, symBinAddr: 0x9480, symSize: 0x10 } - - { offsetInCU: 0x6D61, offset: 0x5C2E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x6F00, symBinAddr: 0x9490, symSize: 0x20 } - - { offsetInCU: 0x6D79, offset: 0x5C2FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6F20, symBinAddr: 0x94B0, symSize: 0x10 } - - { offsetInCU: 0x6D91, offset: 0x5C315, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6F30, symBinAddr: 0x94C0, symSize: 0x10 } - - { offsetInCU: 0x6DA9, offset: 0x5C32D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6F40, symBinAddr: 0x94D0, symSize: 0x10 } - - { offsetInCU: 0x6DC1, offset: 0x5C345, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x6F50, symBinAddr: 0x94E0, symSize: 0x10 } - - { offsetInCU: 0x6DD9, offset: 0x5C35D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x6F60, symBinAddr: 0x94F0, symSize: 0x10 } - - { offsetInCU: 0x6DF1, offset: 0x5C375, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x6F70, symBinAddr: 0x9500, symSize: 0x10 } - - { offsetInCU: 0x6E09, offset: 0x5C38D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x6F80, symBinAddr: 0x9510, symSize: 0x20 } - - { offsetInCU: 0x6E21, offset: 0x5C3A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6FA0, symBinAddr: 0x9530, symSize: 0x10 } - - { offsetInCU: 0x6E39, offset: 0x5C3BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6FB0, symBinAddr: 0x9540, symSize: 0x10 } - - { offsetInCU: 0x6E51, offset: 0x5C3D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6FC0, symBinAddr: 0x9550, symSize: 0x10 } - - { offsetInCU: 0x6E69, offset: 0x5C3ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x6FD0, symBinAddr: 0x9560, symSize: 0x10 } - - { offsetInCU: 0x6E81, offset: 0x5C405, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x6FE0, symBinAddr: 0x9570, symSize: 0x10 } - - { offsetInCU: 0x6E99, offset: 0x5C41D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6FF0, symBinAddr: 0x9580, symSize: 0x10 } - - { offsetInCU: 0x6EB1, offset: 0x5C435, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x7000, symBinAddr: 0x9590, symSize: 0x10 } - - { offsetInCU: 0x6EC9, offset: 0x5C44D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x7010, symBinAddr: 0x95A0, symSize: 0x10 } - - { offsetInCU: 0x6EE1, offset: 0x5C465, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x7020, symBinAddr: 0x95B0, symSize: 0x10 } - - { offsetInCU: 0x6EF9, offset: 0x5C47D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x7030, symBinAddr: 0x95C0, symSize: 0x10 } - - { offsetInCU: 0x6F11, offset: 0x5C495, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x7040, symBinAddr: 0x95D0, symSize: 0x10 } - - { offsetInCU: 0x6F29, offset: 0x5C4AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x7050, symBinAddr: 0x95E0, symSize: 0x10 } - - { offsetInCU: 0x6FBA, offset: 0x5C53E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x70A0, symBinAddr: 0x9610, symSize: 0xE0 } - - { offsetInCU: 0x7149, offset: 0x5C6CD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x7180, symBinAddr: 0x96F0, symSize: 0xB0 } - - { offsetInCU: 0x728C, offset: 0x5C810, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x7320, symBinAddr: 0x9890, symSize: 0xC0 } - - { offsetInCU: 0x73D7, offset: 0x5C95B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x7400, symBinAddr: 0x9970, symSize: 0xD0 } - - { offsetInCU: 0x74EB, offset: 0x5CA6F, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x74D0, symBinAddr: 0x9A40, symSize: 0xA0 } - - { offsetInCU: 0x7572, offset: 0x5CAF6, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x7780, symBinAddr: 0x9CF0, symSize: 0x170 } - - { offsetInCU: 0x7600, offset: 0x5CB84, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x8FE0, symBinAddr: 0xB550, symSize: 0x40 } - - { offsetInCU: 0x7614, offset: 0x5CB98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x9050, symBinAddr: 0xB5C0, symSize: 0x10 } - - { offsetInCU: 0x7628, offset: 0x5CBAC, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x9060, symBinAddr: 0xB5D0, symSize: 0x30 } - - { offsetInCU: 0x763C, offset: 0x5CBC0, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x9090, symBinAddr: 0xB600, symSize: 0x30 } - - { offsetInCU: 0x7650, offset: 0x5CBD4, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x90C0, symBinAddr: 0xB630, symSize: 0x30 } - - { offsetInCU: 0x76BC, offset: 0x5CC40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x92D0, symBinAddr: 0xB840, symSize: 0x20 } - - { offsetInCU: 0x76D0, offset: 0x5CC54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x9320, symBinAddr: 0xB890, symSize: 0x10 } - - { offsetInCU: 0x76E4, offset: 0x5CC68, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x9330, symBinAddr: 0xB8A0, symSize: 0x20 } - - { offsetInCU: 0x76F8, offset: 0x5CC7C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x9350, symBinAddr: 0xB8C0, symSize: 0x10 } - - { offsetInCU: 0x770C, offset: 0x5CC90, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x9390, symBinAddr: 0xB900, symSize: 0x50 } - - { offsetInCU: 0x7720, offset: 0x5CCA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x93E0, symBinAddr: 0xB950, symSize: 0x10 } - - { offsetInCU: 0x77D9, offset: 0x5CD5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x9760, symBinAddr: 0xBCD0, symSize: 0x20 } - - { offsetInCU: 0x77ED, offset: 0x5CD71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x9780, symBinAddr: 0xBCF0, symSize: 0x80 } - - { offsetInCU: 0x7801, offset: 0x5CD85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x9800, symBinAddr: 0xBD70, symSize: 0x70 } - - { offsetInCU: 0x7815, offset: 0x5CD99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x98A0, symBinAddr: 0xBE10, symSize: 0x20 } - - { offsetInCU: 0x7829, offset: 0x5CDAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOs', symObjAddr: 0x98C0, symBinAddr: 0xBE30, symSize: 0x40 } - - { offsetInCU: 0x783D, offset: 0x5CDC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x9900, symBinAddr: 0xBE70, symSize: 0x10 } - - { offsetInCU: 0x786F, offset: 0x5CDF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x9910, symBinAddr: 0xBE80, symSize: 0x3D0 } - - { offsetInCU: 0x7A5A, offset: 0x5CFDE, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfC9CocoaMQTT5Frame_p_Tg5Tf4nnd_n', symObjAddr: 0x9D80, symBinAddr: 0xC2F0, symSize: 0x90 } - - { offsetInCU: 0x7AF4, offset: 0x5D078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x9E10, symBinAddr: 0xC380, symSize: 0x650 } - - { offsetInCU: 0x8025, offset: 0x5D5A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0xA460, symBinAddr: 0xC9D0, symSize: 0x4C0 } - - { offsetInCU: 0x83EF, offset: 0x5D973, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0xA920, symBinAddr: 0xCE90, symSize: 0x1B0 } - - { offsetInCU: 0x8526, offset: 0x5DAAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0xAAD0, symBinAddr: 0xD040, symSize: 0x130 } - - { offsetInCU: 0x8657, offset: 0x5DBDB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0xAC00, symBinAddr: 0xD170, symSize: 0x120 } - - { offsetInCU: 0x878E, offset: 0x5DD12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0xAD20, symBinAddr: 0xD290, symSize: 0x1D0 } - - { offsetInCU: 0x898B, offset: 0x5DF0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xAEF0, symBinAddr: 0xD460, symSize: 0x750 } - - { offsetInCU: 0x900B, offset: 0x5E58F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xB6B0, symBinAddr: 0xDC20, symSize: 0x400 } - - { offsetInCU: 0x9385, offset: 0x5E909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xBAB0, symBinAddr: 0xE020, symSize: 0x120 } - - { offsetInCU: 0x943C, offset: 0x5E9C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xBBD0, symBinAddr: 0xE140, symSize: 0x10 } - - { offsetInCU: 0x9450, offset: 0x5E9D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xBBE0, symBinAddr: 0xE150, symSize: 0x30 } - - { offsetInCU: 0x9464, offset: 0x5E9E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xBC10, symBinAddr: 0xE180, symSize: 0x10 } - - { offsetInCU: 0x9478, offset: 0x5E9FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xBD20, symBinAddr: 0xE290, symSize: 0x20 } - - { offsetInCU: 0x948C, offset: 0x5EA10, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xBD50, symBinAddr: 0xE2C0, symSize: 0x40 } - - { offsetInCU: 0x94A0, offset: 0x5EA24, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xBD90, symBinAddr: 0xE300, symSize: 0x20 } - - { offsetInCU: 0x94B4, offset: 0x5EA38, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xBDB0, symBinAddr: 0xE320, symSize: 0x20 } - - { offsetInCU: 0x94C8, offset: 0x5EA4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xBDF0, symBinAddr: 0xE360, symSize: 0x10 } - - { offsetInCU: 0x94DC, offset: 0x5EA60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xBE20, symBinAddr: 0xE390, symSize: 0x10 } - - { offsetInCU: 0x94F0, offset: 0x5EA74, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xBE50, symBinAddr: 0xE3C0, symSize: 0x20 } - - { offsetInCU: 0x9504, offset: 0x5EA88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xBE70, symBinAddr: 0xE3E0, symSize: 0x10 } - - { offsetInCU: 0x9518, offset: 0x5EA9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xBFE0, symBinAddr: 0xE550, symSize: 0xE0 } - - { offsetInCU: 0x952C, offset: 0x5EAB0, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xC0C0, symBinAddr: 0xE630, symSize: 0x20 } - - { offsetInCU: 0x9540, offset: 0x5EAC4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xC0E0, symBinAddr: 0xE650, symSize: 0x60 } - - { offsetInCU: 0x9554, offset: 0x5EAD8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xC140, symBinAddr: 0xE6B0, symSize: 0x20 } - - { offsetInCU: 0x9568, offset: 0x5EAEC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xC280, symBinAddr: 0xE7F0, symSize: 0x40 } - - { offsetInCU: 0x957C, offset: 0x5EB00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xC300, symBinAddr: 0xE870, symSize: 0x40 } - - { offsetInCU: 0x9590, offset: 0x5EB14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xC370, symBinAddr: 0xE8E0, symSize: 0x20 } - - { offsetInCU: 0x9609, offset: 0x5EB8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1A0, symBinAddr: 0x2730, symSize: 0x10 } - - { offsetInCU: 0x96A6, offset: 0x5EC2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x1B0, symBinAddr: 0x2740, symSize: 0x40 } - - { offsetInCU: 0x9735, offset: 0x5ECB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1F0, symBinAddr: 0x2780, symSize: 0x20 } - - { offsetInCU: 0x9788, offset: 0x5ED0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x210, symBinAddr: 0x27A0, symSize: 0x40 } - - { offsetInCU: 0x9BBD, offset: 0x5F141, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTg5Tf4gd_n', symObjAddr: 0x90F0, symBinAddr: 0xB660, symSize: 0xE0 } - - { offsetInCU: 0x9CF6, offset: 0x5F27A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x93F0, symBinAddr: 0xB960, symSize: 0x100 } - - { offsetInCU: 0x9E19, offset: 0x5F39D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x9610, symBinAddr: 0xBB80, symSize: 0xF0 } - - { offsetInCU: 0xE9, offset: 0x5FC6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x180, symBinAddr: 0xEF80, symSize: 0x50 } - - { offsetInCU: 0x118, offset: 0x5FC9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x1D0, symBinAddr: 0xEFD0, symSize: 0x20 } - - { offsetInCU: 0x135, offset: 0x5FCB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x1F0, symBinAddr: 0xEFF0, symSize: 0x10 } - - { offsetInCU: 0x178, offset: 0x5FCFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2B0, symBinAddr: 0xF0B0, symSize: 0x20 } - - { offsetInCU: 0x1A9, offset: 0x5FD2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2D0, symBinAddr: 0xF0D0, symSize: 0x10 } - - { offsetInCU: 0x1C5, offset: 0x5FD48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2E0, symBinAddr: 0xF0E0, symSize: 0x10 } - - { offsetInCU: 0x2B6, offset: 0x5FE39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x2F0, symBinAddr: 0xF0F0, symSize: 0x170 } - - { offsetInCU: 0x40D, offset: 0x5FF90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x460, symBinAddr: 0xF260, symSize: 0x40 } - - { offsetInCU: 0x42C, offset: 0x5FFAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x4A0, symBinAddr: 0xF2A0, symSize: 0x50 } - - { offsetInCU: 0x46B, offset: 0x5FFEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x4F0, symBinAddr: 0xF2F0, symSize: 0x70 } - - { offsetInCU: 0x498, offset: 0x6001B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x560, symBinAddr: 0xF360, symSize: 0x60 } - - { offsetInCU: 0x4C3, offset: 0x60046, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x600, symBinAddr: 0xF400, symSize: 0x40 } - - { offsetInCU: 0x4F2, offset: 0x60075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x680, symBinAddr: 0xF480, symSize: 0x40 } - - { offsetInCU: 0x521, offset: 0x600A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x790, symBinAddr: 0xF590, symSize: 0x40 } - - { offsetInCU: 0x550, offset: 0x600D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x810, symBinAddr: 0xF610, symSize: 0x40 } - - { offsetInCU: 0x57F, offset: 0x60102, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x920, symBinAddr: 0xF720, symSize: 0x40 } - - { offsetInCU: 0x5AE, offset: 0x60131, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0x9A0, symBinAddr: 0xF7A0, symSize: 0x40 } - - { offsetInCU: 0x5DD, offset: 0x60160, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0xA20, symBinAddr: 0xF820, symSize: 0x40 } - - { offsetInCU: 0x60C, offset: 0x6018F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0xA60, symBinAddr: 0xF860, symSize: 0x10 } - - { offsetInCU: 0x657, offset: 0x601DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0xA70, symBinAddr: 0xF870, symSize: 0xB0 } - - { offsetInCU: 0x6C9, offset: 0x6024C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xB40, symBinAddr: 0xF940, symSize: 0xF0 } - - { offsetInCU: 0x73E, offset: 0x602C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xC50, symBinAddr: 0xFA50, symSize: 0x40 } - - { offsetInCU: 0x75B, offset: 0x602DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xC90, symBinAddr: 0xFA90, symSize: 0x50 } - - { offsetInCU: 0x798, offset: 0x6031B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xCE0, symBinAddr: 0xFAE0, symSize: 0x40 } - - { offsetInCU: 0x823, offset: 0x603A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xD20, symBinAddr: 0xFB20, symSize: 0x100 } - - { offsetInCU: 0x8F9, offset: 0x6047C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0x1060, symBinAddr: 0xFE60, symSize: 0x30 } - - { offsetInCU: 0x934, offset: 0x604B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1090, symBinAddr: 0xFE90, symSize: 0x80 } - - { offsetInCU: 0x97C, offset: 0x604FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1110, symBinAddr: 0xFF10, symSize: 0x40 } - - { offsetInCU: 0x9AB, offset: 0x6052E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x1150, symBinAddr: 0xFF50, symSize: 0x80 } - - { offsetInCU: 0xA08, offset: 0x6058B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x11D0, symBinAddr: 0xFFD0, symSize: 0x30 } - - { offsetInCU: 0xA58, offset: 0x605DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x1200, symBinAddr: 0x10000, symSize: 0x30 } - - { offsetInCU: 0xAD7, offset: 0x6065A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x1230, symBinAddr: 0x10030, symSize: 0x40 } - - { offsetInCU: 0xB7E, offset: 0x60701, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x1270, symBinAddr: 0x10070, symSize: 0x30 } - - { offsetInCU: 0xC38, offset: 0x607BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x12A0, symBinAddr: 0x100A0, symSize: 0x20 } - - { offsetInCU: 0xCA6, offset: 0x60829, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x12E0, symBinAddr: 0x100E0, symSize: 0x40 } - - { offsetInCU: 0xD23, offset: 0x608A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x1340, symBinAddr: 0x10140, symSize: 0x20 } - - { offsetInCU: 0xD91, offset: 0x60914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x13A0, symBinAddr: 0x101A0, symSize: 0x40 } - - { offsetInCU: 0xE0E, offset: 0x60991, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x1460, symBinAddr: 0x10260, symSize: 0x40 } - - { offsetInCU: 0xE3D, offset: 0x609C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x1550, symBinAddr: 0x10350, symSize: 0x40 } - - { offsetInCU: 0xE6C, offset: 0x609EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x15D0, symBinAddr: 0x103D0, symSize: 0x40 } - - { offsetInCU: 0xE9B, offset: 0x60A1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x16C0, symBinAddr: 0x104C0, symSize: 0x40 } - - { offsetInCU: 0xECA, offset: 0x60A4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x1740, symBinAddr: 0x10540, symSize: 0x40 } - - { offsetInCU: 0xEF9, offset: 0x60A7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x1840, symBinAddr: 0x10640, symSize: 0x40 } - - { offsetInCU: 0xF28, offset: 0x60AAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x1880, symBinAddr: 0x10680, symSize: 0x60 } - - { offsetInCU: 0xF65, offset: 0x60AE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x18E0, symBinAddr: 0x106E0, symSize: 0x60 } - - { offsetInCU: 0xFD3, offset: 0x60B56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1940, symBinAddr: 0x10740, symSize: 0x70 } - - { offsetInCU: 0x1057, offset: 0x60BDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x19B0, symBinAddr: 0x107B0, symSize: 0x30 } - - { offsetInCU: 0x10BF, offset: 0x60C42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x19E0, symBinAddr: 0x107E0, symSize: 0x70 } - - { offsetInCU: 0x111E, offset: 0x60CA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x1A50, symBinAddr: 0x10850, symSize: 0x70 } - - { offsetInCU: 0x117D, offset: 0x60D00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1AC0, symBinAddr: 0x108C0, symSize: 0xA0 } - - { offsetInCU: 0x1213, offset: 0x60D96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1B60, symBinAddr: 0x10960, symSize: 0x80 } - - { offsetInCU: 0x12A9, offset: 0x60E2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1BE0, symBinAddr: 0x109E0, symSize: 0xB0 } - - { offsetInCU: 0x12FF, offset: 0x60E82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1C90, symBinAddr: 0x10A90, symSize: 0xC0 } - - { offsetInCU: 0x1388, offset: 0x60F0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1D50, symBinAddr: 0x10B50, symSize: 0x100 } - - { offsetInCU: 0x142E, offset: 0x60FB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1E50, symBinAddr: 0x10C50, symSize: 0x140 } - - { offsetInCU: 0x14B7, offset: 0x6103A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x1F90, symBinAddr: 0x10D90, symSize: 0xB0 } - - { offsetInCU: 0x152D, offset: 0x610B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x2110, symBinAddr: 0x10F10, symSize: 0xF0 } - - { offsetInCU: 0x15A6, offset: 0x61129, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2310, symBinAddr: 0x11110, symSize: 0x40 } - - { offsetInCU: 0x15C3, offset: 0x61146, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2350, symBinAddr: 0x11150, symSize: 0x50 } - - { offsetInCU: 0x1603, offset: 0x61186, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x23A0, symBinAddr: 0x111A0, symSize: 0x40 } - - { offsetInCU: 0x1634, offset: 0x611B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x23E0, symBinAddr: 0x111E0, symSize: 0x10 } - - { offsetInCU: 0x164C, offset: 0x611CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x23F0, symBinAddr: 0x111F0, symSize: 0x10 } - - { offsetInCU: 0x1695, offset: 0x61218, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2440, symBinAddr: 0x11240, symSize: 0x40 } - - { offsetInCU: 0x16C6, offset: 0x61249, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x2480, symBinAddr: 0x11280, symSize: 0x10 } - - { offsetInCU: 0x16DE, offset: 0x61261, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x2490, symBinAddr: 0x11290, symSize: 0x10 } - - { offsetInCU: 0x1727, offset: 0x612AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x24E0, symBinAddr: 0x112E0, symSize: 0x40 } - - { offsetInCU: 0x1758, offset: 0x612DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2520, symBinAddr: 0x11320, symSize: 0x10 } - - { offsetInCU: 0x1770, offset: 0x612F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2530, symBinAddr: 0x11330, symSize: 0x10 } - - { offsetInCU: 0x17B9, offset: 0x6133C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2580, symBinAddr: 0x11380, symSize: 0x40 } - - { offsetInCU: 0x17EA, offset: 0x6136D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x25C0, symBinAddr: 0x113C0, symSize: 0x10 } - - { offsetInCU: 0x1802, offset: 0x61385, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2610, symBinAddr: 0x11410, symSize: 0x40 } - - { offsetInCU: 0x1833, offset: 0x613B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x2650, symBinAddr: 0x11450, symSize: 0x10 } - - { offsetInCU: 0x184B, offset: 0x613CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x2660, symBinAddr: 0x11460, symSize: 0x10 } - - { offsetInCU: 0x18A3, offset: 0x61426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x26B0, symBinAddr: 0x114B0, symSize: 0x40 } - - { offsetInCU: 0x18D4, offset: 0x61457, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x26F0, symBinAddr: 0x114F0, symSize: 0x10 } - - { offsetInCU: 0x18EC, offset: 0x6146F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2700, symBinAddr: 0x11500, symSize: 0x10 } - - { offsetInCU: 0x1944, offset: 0x614C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x2750, symBinAddr: 0x11550, symSize: 0x40 } - - { offsetInCU: 0x1975, offset: 0x614F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x2790, symBinAddr: 0x11590, symSize: 0x10 } - - { offsetInCU: 0x198D, offset: 0x61510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x27A0, symBinAddr: 0x115A0, symSize: 0x10 } - - { offsetInCU: 0x19D6, offset: 0x61559, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x27F0, symBinAddr: 0x115F0, symSize: 0x40 } - - { offsetInCU: 0x1A07, offset: 0x6158A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2830, symBinAddr: 0x11630, symSize: 0x10 } - - { offsetInCU: 0x1A1F, offset: 0x615A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2840, symBinAddr: 0x11640, symSize: 0x10 } - - { offsetInCU: 0x1A4A, offset: 0x615CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x2890, symBinAddr: 0x11690, symSize: 0x40 } - - { offsetInCU: 0x1A7B, offset: 0x615FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x28D0, symBinAddr: 0x116D0, symSize: 0x10 } - - { offsetInCU: 0x1A93, offset: 0x61616, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x28E0, symBinAddr: 0x116E0, symSize: 0x10 } - - { offsetInCU: 0x1ABE, offset: 0x61641, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2930, symBinAddr: 0x11730, symSize: 0x40 } - - { offsetInCU: 0x1AEF, offset: 0x61672, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x2970, symBinAddr: 0x11770, symSize: 0x10 } - - { offsetInCU: 0x1B07, offset: 0x6168A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x2980, symBinAddr: 0x11780, symSize: 0x10 } - - { offsetInCU: 0x1B41, offset: 0x616C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x29D0, symBinAddr: 0x117D0, symSize: 0x40 } - - { offsetInCU: 0x1B72, offset: 0x616F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x2A10, symBinAddr: 0x11810, symSize: 0x10 } - - { offsetInCU: 0x1B8A, offset: 0x6170D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x2A60, symBinAddr: 0x11860, symSize: 0x40 } - - { offsetInCU: 0x1BBB, offset: 0x6173E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2AA0, symBinAddr: 0x118A0, symSize: 0x10 } - - { offsetInCU: 0x1BD3, offset: 0x61756, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2AF0, symBinAddr: 0x118F0, symSize: 0x40 } - - { offsetInCU: 0x1C04, offset: 0x61787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2B30, symBinAddr: 0x11930, symSize: 0x10 } - - { offsetInCU: 0x1C1C, offset: 0x6179F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x2B40, symBinAddr: 0x11940, symSize: 0x10 } - - { offsetInCU: 0x1C67, offset: 0x617EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x2B90, symBinAddr: 0x11990, symSize: 0x40 } - - { offsetInCU: 0x1C98, offset: 0x6181B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2BD0, symBinAddr: 0x119D0, symSize: 0x10 } - - { offsetInCU: 0x1CB0, offset: 0x61833, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2C20, symBinAddr: 0x11A20, symSize: 0x40 } - - { offsetInCU: 0x1CE1, offset: 0x61864, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x2C60, symBinAddr: 0x11A60, symSize: 0x10 } - - { offsetInCU: 0x1CF9, offset: 0x6187C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x2C70, symBinAddr: 0x11A70, symSize: 0x10 } - - { offsetInCU: 0x1D33, offset: 0x618B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2D50, symBinAddr: 0x11B50, symSize: 0x40 } - - { offsetInCU: 0x1D64, offset: 0x618E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2D90, symBinAddr: 0x11B90, symSize: 0x60 } - - { offsetInCU: 0x1D83, offset: 0x61906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2DF0, symBinAddr: 0x11BF0, symSize: 0x9B0 } - - { offsetInCU: 0x206A, offset: 0x61BED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x37A0, symBinAddr: 0x125A0, symSize: 0x180 } - - { offsetInCU: 0x20F3, offset: 0x61C76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x3920, symBinAddr: 0x12720, symSize: 0x20 } - - { offsetInCU: 0x2210, offset: 0x61D93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3B80, symBinAddr: 0x12980, symSize: 0x670 } - - { offsetInCU: 0x23EB, offset: 0x61F6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x41F0, symBinAddr: 0x12FF0, symSize: 0x20 } - - { offsetInCU: 0x2471, offset: 0x61FF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x4210, symBinAddr: 0x13010, symSize: 0x690 } - - { offsetInCU: 0x2787, offset: 0x6230A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x48A0, symBinAddr: 0x136A0, symSize: 0xB0 } - - { offsetInCU: 0x283A, offset: 0x623BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x4950, symBinAddr: 0x13750, symSize: 0x10 } - - { offsetInCU: 0x2869, offset: 0x623EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x4960, symBinAddr: 0x13760, symSize: 0x10 } - - { offsetInCU: 0x28E0, offset: 0x62463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19internal_disconnectyyF', symObjAddr: 0x4970, symBinAddr: 0x13770, symSize: 0xD0 } - - { offsetInCU: 0x299F, offset: 0x62522, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x4A40, symBinAddr: 0x13840, symSize: 0x110 } - - { offsetInCU: 0x2A70, offset: 0x625F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x4B50, symBinAddr: 0x13950, symSize: 0xF0 } - - { offsetInCU: 0x2AEC, offset: 0x6266F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x4C40, symBinAddr: 0x13A40, symSize: 0xA0 } - - { offsetInCU: 0x2B87, offset: 0x6270A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4CE0, symBinAddr: 0x13AE0, symSize: 0xC0 } - - { offsetInCU: 0x2C90, offset: 0x62813, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4DA0, symBinAddr: 0x13BA0, symSize: 0x10 } - - { offsetInCU: 0x2CA4, offset: 0x62827, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x4DB0, symBinAddr: 0x13BB0, symSize: 0x60 } - - { offsetInCU: 0x2D11, offset: 0x62894, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x4E10, symBinAddr: 0x13C10, symSize: 0xC0 } - - { offsetInCU: 0x2EF7, offset: 0x62A7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4ED0, symBinAddr: 0x13CD0, symSize: 0x220 } - - { offsetInCU: 0x3172, offset: 0x62CF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x50F0, symBinAddr: 0x13EF0, symSize: 0xE0 } - - { offsetInCU: 0x32D4, offset: 0x62E57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x51D0, symBinAddr: 0x13FD0, symSize: 0xF0 } - - { offsetInCU: 0x34F5, offset: 0x63078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x52C0, symBinAddr: 0x140C0, symSize: 0x1F0 } - - { offsetInCU: 0x370E, offset: 0x63291, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x54B0, symBinAddr: 0x142B0, symSize: 0xC0 } - - { offsetInCU: 0x382A, offset: 0x633AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x5570, symBinAddr: 0x14370, symSize: 0xF0 } - - { offsetInCU: 0x38F3, offset: 0x63476, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x5660, symBinAddr: 0x14460, symSize: 0x20 } - - { offsetInCU: 0x3911, offset: 0x63494, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x5680, symBinAddr: 0x14480, symSize: 0x30 } - - { offsetInCU: 0x3974, offset: 0x634F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x56B0, symBinAddr: 0x144B0, symSize: 0x30 } - - { offsetInCU: 0x39DB, offset: 0x6355E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x56E0, symBinAddr: 0x144E0, symSize: 0x40 } - - { offsetInCU: 0x3BC8, offset: 0x6374B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x7100, symBinAddr: 0x15E30, symSize: 0x250 } - - { offsetInCU: 0x3D68, offset: 0x638EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubAckV_Tg5', symObjAddr: 0x7350, symBinAddr: 0x16080, symSize: 0x240 } - - { offsetInCU: 0x3F08, offset: 0x63A8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRecV_Tg5', symObjAddr: 0x7590, symBinAddr: 0x162C0, symSize: 0x240 } - - { offsetInCU: 0x40A8, offset: 0x63C2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PubCompV_Tg5', symObjAddr: 0x77D0, symBinAddr: 0x16500, symSize: 0x240 } - - { offsetInCU: 0x4248, offset: 0x63DCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x7A10, symBinAddr: 0x16740, symSize: 0x240 } - - { offsetInCU: 0x43E8, offset: 0x63F6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x7C50, symBinAddr: 0x16980, symSize: 0x200 } - - { offsetInCU: 0x4588, offset: 0x6410B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x7E50, symBinAddr: 0x16B80, symSize: 0x240 } - - { offsetInCU: 0x4728, offset: 0x642AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x8090, symBinAddr: 0x16DC0, symSize: 0x2A0 } - - { offsetInCU: 0x48CA, offset: 0x6444D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x8330, symBinAddr: 0x17060, symSize: 0x290 } - - { offsetInCU: 0x4A6A, offset: 0x645ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x85C0, symBinAddr: 0x172F0, symSize: 0x260 } - - { offsetInCU: 0x4C0A, offset: 0x6478D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N6PubRelV_Tg5', symObjAddr: 0x8820, symBinAddr: 0x17550, symSize: 0x240 } - - { offsetInCU: 0x4EF7, offset: 0x64A7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xBE40, symBinAddr: 0x1AB20, symSize: 0x8C0 } - - { offsetInCU: 0x5425, offset: 0x64FA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xE20, symBinAddr: 0xFC20, symSize: 0x240 } - - { offsetInCU: 0x54A9, offset: 0x6502C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x5730, symBinAddr: 0x14530, symSize: 0x50 } - - { offsetInCU: 0x55D1, offset: 0x65154, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x8A60, symBinAddr: 0x17790, symSize: 0x3A0 } - - { offsetInCU: 0x5680, offset: 0x65203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x8E00, symBinAddr: 0x17B30, symSize: 0x3B0 } - - { offsetInCU: 0x572F, offset: 0x652B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x91B0, symBinAddr: 0x17EE0, symSize: 0x3B0 } - - { offsetInCU: 0x59AF, offset: 0x65532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x67B0, symBinAddr: 0x154E0, symSize: 0x1B0 } - - { offsetInCU: 0x5A15, offset: 0x65598, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6960, symBinAddr: 0x15690, symSize: 0xB0 } - - { offsetInCU: 0x5A84, offset: 0x65607, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x6A10, symBinAddr: 0x15740, symSize: 0x100 } - - { offsetInCU: 0x5CA6, offset: 0x65829, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x3940, symBinAddr: 0x12740, symSize: 0x240 } - - { offsetInCU: 0x6142, offset: 0x65CC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x5720, symBinAddr: 0x14520, symSize: 0x10 } - - { offsetInCU: 0x6175, offset: 0x65CF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5780, symBinAddr: 0x14580, symSize: 0x10 } - - { offsetInCU: 0x61A3, offset: 0x65D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5790, symBinAddr: 0x14590, symSize: 0x1E0 } - - { offsetInCU: 0x62A2, offset: 0x65E25, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5970, symBinAddr: 0x14770, symSize: 0x1A0 } - - { offsetInCU: 0x6388, offset: 0x65F0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5B10, symBinAddr: 0x14910, symSize: 0xB0 } - - { offsetInCU: 0x640E, offset: 0x65F91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x5BC0, symBinAddr: 0x149C0, symSize: 0x10 } - - { offsetInCU: 0x64F5, offset: 0x66078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5BD0, symBinAddr: 0x149D0, symSize: 0x260 } - - { offsetInCU: 0x6884, offset: 0x66407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x5E30, symBinAddr: 0x14C30, symSize: 0x380 } - - { offsetInCU: 0x6AEB, offset: 0x6666E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x61B0, symBinAddr: 0x14FB0, symSize: 0xA0 } - - { offsetInCU: 0x6BD1, offset: 0x66754, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x6250, symBinAddr: 0x15050, symSize: 0x10 } - - { offsetInCU: 0x6C16, offset: 0x66799, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x6260, symBinAddr: 0x15060, symSize: 0x10 } - - { offsetInCU: 0x6C32, offset: 0x667B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x6270, symBinAddr: 0x15070, symSize: 0x10 } - - { offsetInCU: 0x6C4E, offset: 0x667D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x6280, symBinAddr: 0x15080, symSize: 0x10 } - - { offsetInCU: 0x6C6A, offset: 0x667ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x6290, symBinAddr: 0x15090, symSize: 0x10 } - - { offsetInCU: 0x6C86, offset: 0x66809, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x62A0, symBinAddr: 0x150A0, symSize: 0x10 } - - { offsetInCU: 0x6CA2, offset: 0x66825, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x62B0, symBinAddr: 0x150B0, symSize: 0x220 } - - { offsetInCU: 0x6D2A, offset: 0x668AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x64D0, symBinAddr: 0x152D0, symSize: 0x130 } - - { offsetInCU: 0x6E43, offset: 0x669C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x6600, symBinAddr: 0x15400, symSize: 0x20 } - - { offsetInCU: 0x6E85, offset: 0x66A08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x6620, symBinAddr: 0x15420, symSize: 0x10 } - - { offsetInCU: 0x6EC7, offset: 0x66A4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x6630, symBinAddr: 0x15430, symSize: 0x10 } - - { offsetInCU: 0x6F09, offset: 0x66A8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x6640, symBinAddr: 0x15440, symSize: 0x10 } - - { offsetInCU: 0x6F4B, offset: 0x66ACE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6650, symBinAddr: 0x15450, symSize: 0x10 } - - { offsetInCU: 0x6F8D, offset: 0x66B10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x6660, symBinAddr: 0x15460, symSize: 0x10 } - - { offsetInCU: 0x6FCF, offset: 0x66B52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6670, symBinAddr: 0x15470, symSize: 0x10 } - - { offsetInCU: 0x7011, offset: 0x66B94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x6680, symBinAddr: 0x15480, symSize: 0x10 } - - { offsetInCU: 0x7053, offset: 0x66BD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6690, symBinAddr: 0x15490, symSize: 0x10 } - - { offsetInCU: 0x7086, offset: 0x66C09, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x6710, symBinAddr: 0x154D0, symSize: 0x10 } - - { offsetInCU: 0x70DC, offset: 0x66C5F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x6B50, symBinAddr: 0x15880, symSize: 0x210 } - - { offsetInCU: 0x7165, offset: 0x66CE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x9560, symBinAddr: 0x18290, symSize: 0xB0 } - - { offsetInCU: 0x71A7, offset: 0x66D2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x9610, symBinAddr: 0x18340, symSize: 0x90 } - - { offsetInCU: 0x71EF, offset: 0x66D72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x96A0, symBinAddr: 0x183D0, symSize: 0x20 } - - { offsetInCU: 0x7203, offset: 0x66D86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x96F0, symBinAddr: 0x18420, symSize: 0x10 } - - { offsetInCU: 0x7217, offset: 0x66D9A, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x9700, symBinAddr: 0x18430, symSize: 0x20 } - - { offsetInCU: 0x722B, offset: 0x66DAE, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x9720, symBinAddr: 0x18450, symSize: 0x10 } - - { offsetInCU: 0x723F, offset: 0x66DC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x97B0, symBinAddr: 0x18490, symSize: 0x10 } - - { offsetInCU: 0x7274, offset: 0x66DF7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x97C0, symBinAddr: 0x184A0, symSize: 0xC0 } - - { offsetInCU: 0x72EA, offset: 0x66E6D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x9880, symBinAddr: 0x18560, symSize: 0x80 } - - { offsetInCU: 0x7317, offset: 0x66E9A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x9900, symBinAddr: 0x185E0, symSize: 0x80 } - - { offsetInCU: 0x738D, offset: 0x66F10, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x9980, symBinAddr: 0x18660, symSize: 0x70 } - - { offsetInCU: 0x741E, offset: 0x66FA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x99F0, symBinAddr: 0x186D0, symSize: 0x690 } - - { offsetInCU: 0x79C5, offset: 0x67548, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0xA080, symBinAddr: 0x18D60, symSize: 0x420 } - - { offsetInCU: 0x7D7B, offset: 0x678FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0xA4A0, symBinAddr: 0x19180, symSize: 0x200 } - - { offsetInCU: 0x7EB5, offset: 0x67A38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0xA6A0, symBinAddr: 0x19380, symSize: 0x200 } - - { offsetInCU: 0x803E, offset: 0x67BC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0xA8A0, symBinAddr: 0x19580, symSize: 0x120 } - - { offsetInCU: 0x817C, offset: 0x67CFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0xA9C0, symBinAddr: 0x196A0, symSize: 0x210 } - - { offsetInCU: 0x83D7, offset: 0x67F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xABD0, symBinAddr: 0x198B0, symSize: 0x920 } - - { offsetInCU: 0x8A23, offset: 0x685A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xB4F0, symBinAddr: 0x1A1D0, symSize: 0x830 } - - { offsetInCU: 0x8E1F, offset: 0x689A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xBD20, symBinAddr: 0x1AA00, symSize: 0x120 } - - { offsetInCU: 0x8F5E, offset: 0x68AE1, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tg5Tf4d_n', symObjAddr: 0xC700, symBinAddr: 0x1B3E0, symSize: 0x50 } - - { offsetInCU: 0x8F8B, offset: 0x68B0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xC790, symBinAddr: 0x1B430, symSize: 0x10 } - - { offsetInCU: 0x8F9F, offset: 0x68B22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xC7A0, symBinAddr: 0x1B440, symSize: 0x10 } - - { offsetInCU: 0x8FB3, offset: 0x68B36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xC7B0, symBinAddr: 0x1B450, symSize: 0x30 } - - { offsetInCU: 0x8FC7, offset: 0x68B4A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xC7E0, symBinAddr: 0x1B480, symSize: 0x10 } - - { offsetInCU: 0x8FDB, offset: 0x68B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xC7F0, symBinAddr: 0x1B490, symSize: 0x20 } - - { offsetInCU: 0x8FEF, offset: 0x68B72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xC8E0, symBinAddr: 0x1B580, symSize: 0x20 } - - { offsetInCU: 0x9003, offset: 0x68B86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0xC970, symBinAddr: 0x1B610, symSize: 0x20 } - - { offsetInCU: 0x9017, offset: 0x68B9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xC990, symBinAddr: 0x1B630, symSize: 0x20 } - - { offsetInCU: 0x902B, offset: 0x68BAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xCA60, symBinAddr: 0x1B6C0, symSize: 0x10 } - - { offsetInCU: 0x903F, offset: 0x68BC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xCA70, symBinAddr: 0x1B6D0, symSize: 0x10 } - - { offsetInCU: 0x9053, offset: 0x68BD6, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xCAA0, symBinAddr: 0x1B700, symSize: 0x20 } - - { offsetInCU: 0x9067, offset: 0x68BEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xCAC0, symBinAddr: 0x1B720, symSize: 0x10 } - - { offsetInCU: 0x9099, offset: 0x68C1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xCAD0, symBinAddr: 0x1B730, symSize: 0x2E0 } - - { offsetInCU: 0x9238, offset: 0x68DBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xD2B0, symBinAddr: 0x1BCA0, symSize: 0x20 } - - { offsetInCU: 0x924C, offset: 0x68DCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xD390, symBinAddr: 0x1BD40, symSize: 0x20 } - - { offsetInCU: 0x9260, offset: 0x68DE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xD3E0, symBinAddr: 0x1BD90, symSize: 0x20 } - - { offsetInCU: 0x9274, offset: 0x68DF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xD4E0, symBinAddr: 0x1BE50, symSize: 0x20 } - - { offsetInCU: 0x9317, offset: 0x68E9A, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xEE00, symSize: 0xE0 } - - { offsetInCU: 0x93D8, offset: 0x68F5B, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE0, symBinAddr: 0xEEE0, symSize: 0xA0 } - - { offsetInCU: 0x9487, offset: 0x6900A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x200, symBinAddr: 0xF000, symSize: 0x10 } - - { offsetInCU: 0x9518, offset: 0x6909B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x210, symBinAddr: 0xF010, symSize: 0x40 } - - { offsetInCU: 0x95A7, offset: 0x6912A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x250, symBinAddr: 0xF050, symSize: 0x20 } - - { offsetInCU: 0x95FA, offset: 0x6917D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x270, symBinAddr: 0xF070, symSize: 0x40 } - - { offsetInCU: 0x5A, offset: 0x69C3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x1C320, symSize: 0x70 } - - { offsetInCU: 0x8E, offset: 0x69C73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x70, symBinAddr: 0x1C390, symSize: 0x50 } - - { offsetInCU: 0xAC, offset: 0x69C91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0xC0, symBinAddr: 0x1C3E0, symSize: 0x30 } - - { offsetInCU: 0xC9, offset: 0x69CAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0xF0, symBinAddr: 0x1C410, symSize: 0x40 } - - { offsetInCU: 0x106, offset: 0x69CEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x130, symBinAddr: 0x1C450, symSize: 0x40 } - - { offsetInCU: 0x135, offset: 0x69D1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x170, symBinAddr: 0x1C490, symSize: 0x50 } - - { offsetInCU: 0x152, offset: 0x69D37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x1C0, symBinAddr: 0x1C4E0, symSize: 0x50 } - - { offsetInCU: 0x18F, offset: 0x69D74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x210, symBinAddr: 0x1C530, symSize: 0x40 } - - { offsetInCU: 0x1BE, offset: 0x69DA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x250, symBinAddr: 0x1C570, symSize: 0x40 } - - { offsetInCU: 0x1DB, offset: 0x69DC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x290, symBinAddr: 0x1C5B0, symSize: 0x50 } - - { offsetInCU: 0x218, offset: 0x69DFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x2E0, symBinAddr: 0x1C600, symSize: 0x40 } - - { offsetInCU: 0x247, offset: 0x69E2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x360, symBinAddr: 0x1C680, symSize: 0x40 } - - { offsetInCU: 0x276, offset: 0x69E5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x3E0, symBinAddr: 0x1C700, symSize: 0x40 } - - { offsetInCU: 0x2A5, offset: 0x69E8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x420, symBinAddr: 0x1C740, symSize: 0x10 } - - { offsetInCU: 0x2D0, offset: 0x69EB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x4E0, symBinAddr: 0x1C800, symSize: 0x40 } - - { offsetInCU: 0x2FF, offset: 0x69EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x560, symBinAddr: 0x1C880, symSize: 0x40 } - - { offsetInCU: 0x32E, offset: 0x69F13, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x670, symBinAddr: 0x1C990, symSize: 0x40 } - - { offsetInCU: 0x35D, offset: 0x69F42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x6F0, symBinAddr: 0x1CA10, symSize: 0x40 } - - { offsetInCU: 0x38C, offset: 0x69F71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x800, symBinAddr: 0x1CB20, symSize: 0x40 } - - { offsetInCU: 0x3BB, offset: 0x69FA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x880, symBinAddr: 0x1CBA0, symSize: 0x40 } - - { offsetInCU: 0x3EA, offset: 0x69FCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0x980, symBinAddr: 0x1CCA0, symSize: 0x40 } - - { offsetInCU: 0x437, offset: 0x6A01C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0x9C0, symBinAddr: 0x1CCE0, symSize: 0xF0 } - - { offsetInCU: 0x613, offset: 0x6A1F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xAB0, symBinAddr: 0x1CDD0, symSize: 0x790 } - - { offsetInCU: 0x109F, offset: 0x6AC84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1240, symBinAddr: 0x1D560, symSize: 0x40 } - - { offsetInCU: 0x10B3, offset: 0x6AC98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1280, symBinAddr: 0x1D5A0, symSize: 0x1A0 } - - { offsetInCU: 0x1120, offset: 0x6AD05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x1420, symBinAddr: 0x1D740, symSize: 0x60 } - - { offsetInCU: 0x1145, offset: 0x6AD2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x1480, symBinAddr: 0x1D7A0, symSize: 0x4D0 } - - { offsetInCU: 0x11E6, offset: 0x6ADCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x1950, symBinAddr: 0x1DC70, symSize: 0x20 } - - { offsetInCU: 0x1204, offset: 0x6ADE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x1970, symBinAddr: 0x1DC90, symSize: 0x30 } - - { offsetInCU: 0x1267, offset: 0x6AE4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x19A0, symBinAddr: 0x1DCC0, symSize: 0x30 } - - { offsetInCU: 0x12CE, offset: 0x6AEB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x19D0, symBinAddr: 0x1DCF0, symSize: 0x30 } - - { offsetInCU: 0x1337, offset: 0x6AF1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfcTf4ggnnn_n', symObjAddr: 0x25D0, symBinAddr: 0x1E8F0, symSize: 0x1C0 } - - { offsetInCU: 0x1574, offset: 0x6B159, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1A00, symBinAddr: 0x1DD20, symSize: 0x80 } - - { offsetInCU: 0x15A3, offset: 0x6B188, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x1A80, symBinAddr: 0x1DDA0, symSize: 0x60 } - - { offsetInCU: 0x163B, offset: 0x6B220, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1AE0, symBinAddr: 0x1DE00, symSize: 0x200 } - - { offsetInCU: 0x189F, offset: 0x6B484, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1CE0, symBinAddr: 0x1E000, symSize: 0xC0 } - - { offsetInCU: 0x1A9C, offset: 0x6B681, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1DA0, symBinAddr: 0x1E0C0, symSize: 0x140 } - - { offsetInCU: 0x1C4D, offset: 0x6B832, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x1EE0, symBinAddr: 0x1E200, symSize: 0xC0 } - - { offsetInCU: 0x1E7B, offset: 0x6BA60, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x2380, symBinAddr: 0x1E6A0, symSize: 0x70 } - - { offsetInCU: 0x1F2A, offset: 0x6BB0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x27D0, symBinAddr: 0x1EAB0, symSize: 0x20 } - - { offsetInCU: 0x1F3E, offset: 0x6BB23, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x2830, symBinAddr: 0x1EAD0, symSize: 0x20 } - - { offsetInCU: 0x20D0, offset: 0x6BCB5, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x1FA0, symBinAddr: 0x1E2C0, symSize: 0x330 } - - { offsetInCU: 0x233A, offset: 0x6BF1F, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS_SD6ValuesVyS2S_GTg5Tf4gd_n', symObjAddr: 0x22D0, symBinAddr: 0x1E5F0, symSize: 0xB0 } - - { offsetInCU: 0x2426, offset: 0x6C00B, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTg5Tf4nd_n', symObjAddr: 0x23F0, symBinAddr: 0x1E710, symSize: 0xE0 } - - { offsetInCU: 0x24D3, offset: 0x6C0B8, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTg5Tf4gd_n', symObjAddr: 0x24D0, symBinAddr: 0x1E7F0, symSize: 0x100 } - - { offsetInCU: 0x134, offset: 0x6C46C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1EBA0, symSize: 0x390 } - - { offsetInCU: 0x21E, offset: 0x6C556, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x390, symBinAddr: 0x1EF30, symSize: 0x3A0 } - - { offsetInCU: 0x65F, offset: 0x6C997, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x800, symBinAddr: 0x1F3A0, symSize: 0x4D0 } - - { offsetInCU: 0x87D, offset: 0x6CBB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xCD0, symBinAddr: 0x1F870, symSize: 0x160 } - - { offsetInCU: 0xA29, offset: 0x6CD61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xE80, symBinAddr: 0x1FA20, symSize: 0x830 } - - { offsetInCU: 0xE15, offset: 0x6D14D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x16B0, symBinAddr: 0x20250, symSize: 0xB0 } - - { offsetInCU: 0xEBD, offset: 0x6D1F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x1760, symBinAddr: 0x20300, symSize: 0x240 } - - { offsetInCU: 0xF0E, offset: 0x6D246, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x19A0, symBinAddr: 0x20540, symSize: 0x20 } - - { offsetInCU: 0xF2A, offset: 0x6D262, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x19C0, symBinAddr: 0x20560, symSize: 0x30 } - - { offsetInCU: 0x1196, offset: 0x6D4CE, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x730, symBinAddr: 0x1F2D0, symSize: 0x20 } - - { offsetInCU: 0x11AA, offset: 0x6D4E2, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x750, symBinAddr: 0x1F2F0, symSize: 0x20 } - - { offsetInCU: 0x11D8, offset: 0x6D510, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x770, symBinAddr: 0x1F310, symSize: 0x90 } - - { offsetInCU: 0x14AA, offset: 0x6D7E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x19F0, symBinAddr: 0x20590, symSize: 0x70 } - - { offsetInCU: 0x14D9, offset: 0x6D811, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x1A60, symBinAddr: 0x20600, symSize: 0x20 } - - { offsetInCU: 0x14ED, offset: 0x6D825, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x1A80, symBinAddr: 0x20620, symSize: 0x30 } - - { offsetInCU: 0x1501, offset: 0x6D839, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1AB0, symBinAddr: 0x20650, symSize: 0x10 } - - { offsetInCU: 0x1515, offset: 0x6D84D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1AF0, symBinAddr: 0x20660, symSize: 0x40 } - - { offsetInCU: 0x1529, offset: 0x6D861, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x1B30, symBinAddr: 0x206A0, symSize: 0x30 } - - { offsetInCU: 0x153D, offset: 0x6D875, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x1B60, symBinAddr: 0x206D0, symSize: 0x130 } - - { offsetInCU: 0x1551, offset: 0x6D889, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1C90, symBinAddr: 0x20800, symSize: 0x20 } - - { offsetInCU: 0x1565, offset: 0x6D89D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1CB0, symBinAddr: 0x20820, symSize: 0x40 } - - { offsetInCU: 0x1579, offset: 0x6D8B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1CF0, symBinAddr: 0x20860, symSize: 0x40 } - - { offsetInCU: 0x158D, offset: 0x6D8C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1D30, symBinAddr: 0x208A0, symSize: 0x50 } - - { offsetInCU: 0x15A1, offset: 0x6D8D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1D80, symBinAddr: 0x208F0, symSize: 0x10 } - - { offsetInCU: 0x163D, offset: 0x6D975, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1E20, symBinAddr: 0x20990, symSize: 0x2C0 } - - { offsetInCU: 0x188D, offset: 0x6DBC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x20E0, symBinAddr: 0x20C50, symSize: 0x210 } - - { offsetInCU: 0x19AE, offset: 0x6DCE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x22F0, symBinAddr: 0x20E60, symSize: 0x460 } - - { offsetInCU: 0x1D65, offset: 0x6E09D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x2750, symBinAddr: 0x212C0, symSize: 0x8D0 } - - { offsetInCU: 0x2263, offset: 0x6E59B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x3060, symBinAddr: 0x21BD0, symSize: 0x20 } - - { offsetInCU: 0x2282, offset: 0x6E5BA, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x30A0, symBinAddr: 0x21C10, symSize: 0x20 } - - { offsetInCU: 0x22AB, offset: 0x6E5E3, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x30C0, symBinAddr: 0x21C30, symSize: 0x20 } - - { offsetInCU: 0x22BF, offset: 0x6E5F7, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x30E0, symBinAddr: 0x21C50, symSize: 0x10 } - - { offsetInCU: 0x22D3, offset: 0x6E60B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x3110, symBinAddr: 0x21C80, symSize: 0x10 } - - { offsetInCU: 0x22F2, offset: 0x6E62A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x31D0, symBinAddr: 0x21CD0, symSize: 0x20 } - - { offsetInCU: 0x232A, offset: 0x6E662, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x31F0, symBinAddr: 0x21CF0, symSize: 0x20 } - - { offsetInCU: 0x2357, offset: 0x6E68F, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x3210, symBinAddr: 0x21D10, symSize: 0x70 } - - { offsetInCU: 0x23A3, offset: 0x6E6DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x3280, symBinAddr: 0x21D80, symSize: 0x5C0 } - - { offsetInCU: 0x259E, offset: 0x6E8D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x3840, symBinAddr: 0x22340, symSize: 0x580 } - - { offsetInCU: 0x27AE, offset: 0x6EAE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3DC0, symBinAddr: 0x228C0, symSize: 0x30 } - - { offsetInCU: 0x27C2, offset: 0x6EAFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3E10, symBinAddr: 0x228F0, symSize: 0x10 } - - { offsetInCU: 0x27D6, offset: 0x6EB0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3E50, symBinAddr: 0x22930, symSize: 0x20 } - - { offsetInCU: 0x280F, offset: 0x6EB47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3E70, symBinAddr: 0x22950, symSize: 0x40 } - - { offsetInCU: 0x2838, offset: 0x6EB70, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3EB0, symBinAddr: 0x22990, symSize: 0x40 } - - { offsetInCU: 0x2853, offset: 0x6EB8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3EF0, symBinAddr: 0x229D0, symSize: 0x20 } - - { offsetInCU: 0x2883, offset: 0x6EBBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3F40, symBinAddr: 0x229F0, symSize: 0x30 } - - { offsetInCU: 0x28AC, offset: 0x6EBE4, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3F70, symBinAddr: 0x22A20, symSize: 0x30 } - - { offsetInCU: 0x28C0, offset: 0x6EBF8, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3FC0, symBinAddr: 0x22A70, symSize: 0x30 } - - { offsetInCU: 0x28D4, offset: 0x6EC0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x4060, symBinAddr: 0x22B10, symSize: 0x20 } - - { offsetInCU: 0x28E8, offset: 0x6EC20, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x4080, symBinAddr: 0x22B30, symSize: 0x1B0 } - - { offsetInCU: 0x2A80, offset: 0x6EDB8, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x4230, symBinAddr: 0x22CE0, symSize: 0x30 } - - { offsetInCU: 0x2A94, offset: 0x6EDCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x4300, symBinAddr: 0x22DB0, symSize: 0x40 } - - { offsetInCU: 0x2AA8, offset: 0x6EDE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOs', symObjAddr: 0x4340, symBinAddr: 0x22DF0, symSize: 0x40 } - - { offsetInCU: 0x2ABC, offset: 0x6EDF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x4490, symBinAddr: 0x22F40, symSize: 0x20 } - - { offsetInCU: 0x2AD0, offset: 0x6EE08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x4550, symBinAddr: 0x22F80, symSize: 0x10 } - - { offsetInCU: 0x2C35, offset: 0x6EF6D, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1D90, symBinAddr: 0x20900, symSize: 0x90 } - - { offsetInCU: 0x27, offset: 0x6F298, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x23060, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x6F2BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x4B10, symBinAddr: 0x69AF8, symSize: 0x0 } - - { offsetInCU: 0x76, offset: 0x6F2E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x170, symBinAddr: 0x231D0, symSize: 0x20 } - - { offsetInCU: 0x8A, offset: 0x6F2FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x190, symBinAddr: 0x231F0, symSize: 0x50 } - - { offsetInCU: 0xC1, offset: 0x6F332, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1E0, symBinAddr: 0x23240, symSize: 0x60 } - - { offsetInCU: 0x108, offset: 0x6F379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x240, symBinAddr: 0x232A0, symSize: 0x60 } - - { offsetInCU: 0x13F, offset: 0x6F3B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x23300, symSize: 0x10 } - - { offsetInCU: 0x16A, offset: 0x6F3DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2B0, symBinAddr: 0x23310, symSize: 0x40 } - - { offsetInCU: 0x1A7, offset: 0x6F418, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x310, symBinAddr: 0x23370, symSize: 0x40 } - - { offsetInCU: 0x202, offset: 0x6F473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x350, symBinAddr: 0x233B0, symSize: 0x140 } - - { offsetInCU: 0x3AA, offset: 0x6F61B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x4D0, symBinAddr: 0x234F0, symSize: 0x30 } - - { offsetInCU: 0x3D8, offset: 0x6F649, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x23060, symSize: 0x30 } - - { offsetInCU: 0x3F8, offset: 0x6F669, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x30, symBinAddr: 0x23090, symSize: 0x20 } - - { offsetInCU: 0x415, offset: 0x6F686, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x50, symBinAddr: 0x230B0, symSize: 0x10 } - - { offsetInCU: 0x458, offset: 0x6F6C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x110, symBinAddr: 0x23170, symSize: 0x20 } - - { offsetInCU: 0x489, offset: 0x6F6FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x130, symBinAddr: 0x23190, symSize: 0x10 } - - { offsetInCU: 0x4C7, offset: 0x6F738, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x140, symBinAddr: 0x231A0, symSize: 0x30 } - - { offsetInCU: 0x508, offset: 0x6F779, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x2F0, symBinAddr: 0x23350, symSize: 0x20 } - - { offsetInCU: 0x57F, offset: 0x6F7F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x500, symBinAddr: 0x23520, symSize: 0x10 } - - { offsetInCU: 0x593, offset: 0x6F804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x510, symBinAddr: 0x23530, symSize: 0x30 } - - { offsetInCU: 0x5A7, offset: 0x6F818, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x540, symBinAddr: 0x23560, symSize: 0x10 } - - { offsetInCU: 0x5BB, offset: 0x6F82C, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x550, symBinAddr: 0x23570, symSize: 0x10 } - - { offsetInCU: 0x5CF, offset: 0x6F840, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x560, symBinAddr: 0x23580, symSize: 0x80 } - - { offsetInCU: 0x5E3, offset: 0x6F854, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x5E0, symBinAddr: 0x23600, symSize: 0xD0 } - - { offsetInCU: 0x5F7, offset: 0x6F868, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6B0, symBinAddr: 0x236D0, symSize: 0x10 } - - { offsetInCU: 0x60B, offset: 0x6F87C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6C0, symBinAddr: 0x236E0, symSize: 0x10 } - - { offsetInCU: 0x61F, offset: 0x6F890, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x6D0, symBinAddr: 0x236F0, symSize: 0x10 } - - { offsetInCU: 0x633, offset: 0x6F8A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x6E0, symBinAddr: 0x23700, symSize: 0x10 } - - { offsetInCU: 0x647, offset: 0x6F8B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x6F0, symBinAddr: 0x23710, symSize: 0x6 } - - { offsetInCU: 0x695, offset: 0x6F906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x60, symBinAddr: 0x230C0, symSize: 0x10 } - - { offsetInCU: 0x726, offset: 0x6F997, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x70, symBinAddr: 0x230D0, symSize: 0x40 } - - { offsetInCU: 0x7D5, offset: 0x6FA46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB0, symBinAddr: 0x23110, symSize: 0x20 } - - { offsetInCU: 0x828, offset: 0x6FA99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xD0, symBinAddr: 0x23130, symSize: 0x40 } - - { offsetInCU: 0x99, offset: 0x6FCD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x23720, symSize: 0x170 } - - { offsetInCU: 0x182, offset: 0x6FDB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x170, symBinAddr: 0x23890, symSize: 0x130 } - - { offsetInCU: 0x1E6, offset: 0x6FE1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x2A0, symBinAddr: 0x239C0, symSize: 0x30 } - - { offsetInCU: 0x203, offset: 0x6FE3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2D0, symBinAddr: 0x239F0, symSize: 0x40 } - - { offsetInCU: 0x240, offset: 0x6FE77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x310, symBinAddr: 0x23A30, symSize: 0x40 } - - { offsetInCU: 0x26F, offset: 0x6FEA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x350, symBinAddr: 0x23A70, symSize: 0x50 } - - { offsetInCU: 0x28C, offset: 0x6FEC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x3A0, symBinAddr: 0x23AC0, symSize: 0x50 } - - { offsetInCU: 0x2C9, offset: 0x6FF00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x3F0, symBinAddr: 0x23B10, symSize: 0x40 } - - { offsetInCU: 0x2F8, offset: 0x6FF2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x430, symBinAddr: 0x23B50, symSize: 0x40 } - - { offsetInCU: 0x315, offset: 0x6FF4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x470, symBinAddr: 0x23B90, symSize: 0x50 } - - { offsetInCU: 0x352, offset: 0x6FF89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x4C0, symBinAddr: 0x23BE0, symSize: 0x40 } - - { offsetInCU: 0x381, offset: 0x6FFB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x540, symBinAddr: 0x23C60, symSize: 0x40 } - - { offsetInCU: 0x3B0, offset: 0x6FFE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x630, symBinAddr: 0x23D50, symSize: 0x40 } - - { offsetInCU: 0x3DF, offset: 0x70016, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x670, symBinAddr: 0x23D90, symSize: 0x10 } - - { offsetInCU: 0x428, offset: 0x7005F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x680, symBinAddr: 0x23DA0, symSize: 0xF0 } - - { offsetInCU: 0x532, offset: 0x70169, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x770, symBinAddr: 0x23E90, symSize: 0x160 } - - { offsetInCU: 0x5B6, offset: 0x701ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x8D0, symBinAddr: 0x23FF0, symSize: 0x120 } - - { offsetInCU: 0x5FB, offset: 0x70232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x9F0, symBinAddr: 0x24110, symSize: 0x20 } - - { offsetInCU: 0x619, offset: 0x70250, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0xA10, symBinAddr: 0x24130, symSize: 0x30 } - - { offsetInCU: 0x67C, offset: 0x702B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0xA40, symBinAddr: 0x24160, symSize: 0x30 } - - { offsetInCU: 0x6E3, offset: 0x7031A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0xA70, symBinAddr: 0x24190, symSize: 0x30 } - - { offsetInCU: 0x7F5, offset: 0x7042C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0xAA0, symBinAddr: 0x241C0, symSize: 0x30 } - - { offsetInCU: 0x824, offset: 0x7045B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0xAD0, symBinAddr: 0x241F0, symSize: 0x60 } - - { offsetInCU: 0x882, offset: 0x704B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0xB30, symBinAddr: 0x24250, symSize: 0x200 } - - { offsetInCU: 0xA8E, offset: 0x706C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xD30, symBinAddr: 0x24450, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x70842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x244B0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x70866, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x244B0, symSize: 0x20 } - - { offsetInCU: 0x68, offset: 0x70883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x20, symBinAddr: 0x244D0, symSize: 0x10 } - - { offsetInCU: 0xB4, offset: 0x708CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x245B0, symSize: 0x20 } - - { offsetInCU: 0xE5, offset: 0x70900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x120, symBinAddr: 0x245D0, symSize: 0x20 } - - { offsetInCU: 0x10E, offset: 0x70929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x8A0, symBinAddr: 0x24D50, symSize: 0x20 } - - { offsetInCU: 0x167, offset: 0x70982, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x140, symBinAddr: 0x245F0, symSize: 0x90 } - - { offsetInCU: 0x186, offset: 0x709A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x1D0, symBinAddr: 0x24680, symSize: 0x20 } - - { offsetInCU: 0x1E6, offset: 0x70A01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2C0, symBinAddr: 0x24770, symSize: 0x90 } - - { offsetInCU: 0x217, offset: 0x70A32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x350, symBinAddr: 0x24800, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x70B26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x370, symBinAddr: 0x24820, symSize: 0x250 } - - { offsetInCU: 0x5AC, offset: 0x70DC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x5C0, symBinAddr: 0x24A70, symSize: 0x150 } - - { offsetInCU: 0x848, offset: 0x71063, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x710, symBinAddr: 0x24BC0, symSize: 0xC0 } - - { offsetInCU: 0x98D, offset: 0x711A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x7D0, symBinAddr: 0x24C80, symSize: 0xD0 } - - { offsetInCU: 0xAB9, offset: 0x712D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x8C0, symBinAddr: 0x24D70, symSize: 0x10 } - - { offsetInCU: 0xACD, offset: 0x712E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x8D0, symBinAddr: 0x24D80, symSize: 0x30 } - - { offsetInCU: 0xAE1, offset: 0x712FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x900, symBinAddr: 0x24DB0, symSize: 0x10 } - - { offsetInCU: 0xAF5, offset: 0x71310, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x910, symBinAddr: 0x24DC0, symSize: 0x30 } - - { offsetInCU: 0xB09, offset: 0x71324, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x960, symBinAddr: 0x24DF0, symSize: 0x80 } - - { offsetInCU: 0xB1D, offset: 0x71338, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x9E0, symBinAddr: 0x24E70, symSize: 0xD0 } - - { offsetInCU: 0xB31, offset: 0x7134C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0xAB0, symBinAddr: 0x24F40, symSize: 0x10 } - - { offsetInCU: 0xB45, offset: 0x71360, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0xAC0, symBinAddr: 0x24F50, symSize: 0x10 } - - { offsetInCU: 0xB59, offset: 0x71374, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0xAD0, symBinAddr: 0x24F60, symSize: 0x10 } - - { offsetInCU: 0xB6D, offset: 0x71388, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0xAE0, symBinAddr: 0x24F70, symSize: 0x10 } - - { offsetInCU: 0xB81, offset: 0x7139C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0xAF0, symBinAddr: 0x24F80, symSize: 0x80 } - - { offsetInCU: 0xB95, offset: 0x713B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xB70, symBinAddr: 0x25000, symSize: 0xD0 } - - { offsetInCU: 0xBA9, offset: 0x713C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xC40, symBinAddr: 0x250D0, symSize: 0x10 } - - { offsetInCU: 0xBBD, offset: 0x713D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xC50, symBinAddr: 0x250E0, symSize: 0x10 } - - { offsetInCU: 0xBD1, offset: 0x713EC, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xCA0, symBinAddr: 0x250F0, symSize: 0x40 } - - { offsetInCU: 0xBE5, offset: 0x71400, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGMa', symObjAddr: 0xCE0, symBinAddr: 0x25130, symSize: 0x30 } - - { offsetInCU: 0xC1C, offset: 0x71437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x30, symBinAddr: 0x244E0, symSize: 0x20 } - - { offsetInCU: 0xCD6, offset: 0x714F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x50, symBinAddr: 0x24500, symSize: 0x40 } - - { offsetInCU: 0xDAE, offset: 0x715C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x90, symBinAddr: 0x24540, symSize: 0x30 } - - { offsetInCU: 0xE2A, offset: 0x71645, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC0, symBinAddr: 0x24570, symSize: 0x40 } - - { offsetInCU: 0xEE5, offset: 0x71700, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1F0, symBinAddr: 0x246A0, symSize: 0x20 } - - { offsetInCU: 0xF9F, offset: 0x717BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x210, symBinAddr: 0x246C0, symSize: 0x40 } - - { offsetInCU: 0x1077, offset: 0x71892, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x250, symBinAddr: 0x24700, symSize: 0x30 } - - { offsetInCU: 0x10F3, offset: 0x7190E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x280, symBinAddr: 0x24730, symSize: 0x40 } - - { offsetInCU: 0xCA, offset: 0x71BFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x25180, symSize: 0x170 } - - { offsetInCU: 0x206, offset: 0x71D37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x170, symBinAddr: 0x252F0, symSize: 0x190 } - - { offsetInCU: 0x364, offset: 0x71E95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x370, symBinAddr: 0x254F0, symSize: 0xFC0 } - - { offsetInCU: 0xAC4, offset: 0x725F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0x1330, symBinAddr: 0x264B0, symSize: 0x40 } - - { offsetInCU: 0xCCB, offset: 0x727FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1370, symBinAddr: 0x264F0, symSize: 0x20 } - - { offsetInCU: 0xCDF, offset: 0x72810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1390, symBinAddr: 0x26510, symSize: 0x30 } - - { offsetInCU: 0xCF3, offset: 0x72824, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x1460, symBinAddr: 0x26540, symSize: 0x30 } - - { offsetInCU: 0xD07, offset: 0x72838, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x1490, symBinAddr: 0x26570, symSize: 0x50 } - - { offsetInCU: 0xD1B, offset: 0x7284C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x14E0, symBinAddr: 0x265C0, symSize: 0x40 } - - { offsetInCU: 0xD2F, offset: 0x72860, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x1520, symBinAddr: 0x26600, symSize: 0x60 } - - { offsetInCU: 0xD43, offset: 0x72874, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x1620, symBinAddr: 0x26700, symSize: 0x50 } - - { offsetInCU: 0xD57, offset: 0x72888, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1670, symBinAddr: 0x26750, symSize: 0x80 } - - { offsetInCU: 0xD6B, offset: 0x7289C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x16F0, symBinAddr: 0x267D0, symSize: 0x18 } - - { offsetInCU: 0xDDB, offset: 0x7290C, size: 0x8, addend: 0x0, symName: '_$sSa9repeating5countSayxGx_SitcfCs5UInt8V_Tg5', symObjAddr: 0x300, symBinAddr: 0x25480, symSize: 0x70 } - - { offsetInCU: 0x4B, offset: 0x72B5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x267F0, symSize: 0x40 } - - { offsetInCU: 0x68, offset: 0x72B7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x40, symBinAddr: 0x26830, symSize: 0x10 } - - { offsetInCU: 0xAB, offset: 0x72BBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA0, symBinAddr: 0x26890, symSize: 0x30 } - - { offsetInCU: 0xDC, offset: 0x72BEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xD0, symBinAddr: 0x268C0, symSize: 0x10 } - - { offsetInCU: 0x126, offset: 0x72C39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x100, symBinAddr: 0x268F0, symSize: 0x10 } - - { offsetInCU: 0x14F, offset: 0x72C62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x5F0, symBinAddr: 0x26DE0, symSize: 0x340 } - - { offsetInCU: 0x185, offset: 0x72C98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x170, symBinAddr: 0x26960, symSize: 0x10 } - - { offsetInCU: 0x1AE, offset: 0x72CC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x930, symBinAddr: 0x27120, symSize: 0x380 } - - { offsetInCU: 0x1E4, offset: 0x72CF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x200, symBinAddr: 0x269F0, symSize: 0x10 } - - { offsetInCU: 0x21A, offset: 0x72D2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x280, symBinAddr: 0x26A70, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x72D63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2A0, symBinAddr: 0x26A90, symSize: 0x10 } - - { offsetInCU: 0x286, offset: 0x72D99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x310, symBinAddr: 0x26B00, symSize: 0x10 } - - { offsetInCU: 0x2C9, offset: 0x72DDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x320, symBinAddr: 0x26B10, symSize: 0x30 } - - { offsetInCU: 0x307, offset: 0x72E1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x370, symBinAddr: 0x26B60, symSize: 0x10 } - - { offsetInCU: 0x330, offset: 0x72E43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0xD90, symBinAddr: 0x27580, symSize: 0x140 } - - { offsetInCU: 0x366, offset: 0x72E79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x3A0, symBinAddr: 0x26B90, symSize: 0xB0 } - - { offsetInCU: 0x383, offset: 0x72E96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x450, symBinAddr: 0x26C40, symSize: 0x10 } - - { offsetInCU: 0x3C6, offset: 0x72ED9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x460, symBinAddr: 0x26C50, symSize: 0x40 } - - { offsetInCU: 0x3FC, offset: 0x72F0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x4A0, symBinAddr: 0x26C90, symSize: 0x20 } - - { offsetInCU: 0x419, offset: 0x72F2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x4C0, symBinAddr: 0x26CB0, symSize: 0x10 } - - { offsetInCU: 0x45C, offset: 0x72F6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x4D0, symBinAddr: 0x26CC0, symSize: 0x20 } - - { offsetInCU: 0x49A, offset: 0x72FAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x4F0, symBinAddr: 0x26CE0, symSize: 0x40 } - - { offsetInCU: 0x4B7, offset: 0x72FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x530, symBinAddr: 0x26D20, symSize: 0x10 } - - { offsetInCU: 0x4FA, offset: 0x7300D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x5C0, symBinAddr: 0x26DB0, symSize: 0x30 } - - { offsetInCU: 0x52C, offset: 0x7303F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0xED0, symBinAddr: 0x276C0, symSize: 0x10 } - - { offsetInCU: 0x540, offset: 0x73053, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0xEE0, symBinAddr: 0x276D0, symSize: 0x30 } - - { offsetInCU: 0x554, offset: 0x73067, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0xF10, symBinAddr: 0x27700, symSize: 0x10 } - - { offsetInCU: 0x568, offset: 0x7307B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0xF20, symBinAddr: 0x27710, symSize: 0x30 } - - { offsetInCU: 0x57C, offset: 0x7308F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0xF50, symBinAddr: 0x27740, symSize: 0x10 } - - { offsetInCU: 0x590, offset: 0x730A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0xF60, symBinAddr: 0x27750, symSize: 0x30 } - - { offsetInCU: 0x5A4, offset: 0x730B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0xF90, symBinAddr: 0x27780, symSize: 0x10 } - - { offsetInCU: 0x5B8, offset: 0x730CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0xFA0, symBinAddr: 0x27790, symSize: 0x30 } - - { offsetInCU: 0x5CC, offset: 0x730DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0xFD0, symBinAddr: 0x277C0, symSize: 0x10 } - - { offsetInCU: 0x5E0, offset: 0x730F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0xFE0, symBinAddr: 0x277D0, symSize: 0x30 } - - { offsetInCU: 0x5F4, offset: 0x73107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x1010, symBinAddr: 0x27800, symSize: 0x10 } - - { offsetInCU: 0x608, offset: 0x7311B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x1020, symBinAddr: 0x27810, symSize: 0x30 } - - { offsetInCU: 0x61C, offset: 0x7312F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x1050, symBinAddr: 0x27840, symSize: 0x10 } - - { offsetInCU: 0x630, offset: 0x73143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x1060, symBinAddr: 0x27850, symSize: 0x30 } - - { offsetInCU: 0x644, offset: 0x73157, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x1090, symBinAddr: 0x27880, symSize: 0x10 } - - { offsetInCU: 0x658, offset: 0x7316B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x10A0, symBinAddr: 0x27890, symSize: 0x30 } - - { offsetInCU: 0x66C, offset: 0x7317F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x10D0, symBinAddr: 0x278C0, symSize: 0x10 } - - { offsetInCU: 0x680, offset: 0x73193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x10E0, symBinAddr: 0x278D0, symSize: 0x30 } - - { offsetInCU: 0x694, offset: 0x731A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x1110, symBinAddr: 0x27900, symSize: 0x10 } - - { offsetInCU: 0x6A8, offset: 0x731BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x1120, symBinAddr: 0x27910, symSize: 0x30 } - - { offsetInCU: 0x6BC, offset: 0x731CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x1150, symBinAddr: 0x27940, symSize: 0x10 } - - { offsetInCU: 0x6D0, offset: 0x731E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x1160, symBinAddr: 0x27950, symSize: 0x30 } - - { offsetInCU: 0x6E4, offset: 0x731F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x1190, symBinAddr: 0x27980, symSize: 0x10 } - - { offsetInCU: 0x6F8, offset: 0x7320B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x11A0, symBinAddr: 0x27990, symSize: 0x10 } - - { offsetInCU: 0x70C, offset: 0x7321F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x11B0, symBinAddr: 0x279A0, symSize: 0x10 } - - { offsetInCU: 0x720, offset: 0x73233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x11C0, symBinAddr: 0x279B0, symSize: 0x10 } - - { offsetInCU: 0x734, offset: 0x73247, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x11D0, symBinAddr: 0x279C0, symSize: 0x10 } - - { offsetInCU: 0x748, offset: 0x7325B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x11E0, symBinAddr: 0x279D0, symSize: 0x10 } - - { offsetInCU: 0x75C, offset: 0x7326F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x11F0, symBinAddr: 0x279E0, symSize: 0x10 } - - { offsetInCU: 0x770, offset: 0x73283, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x1200, symBinAddr: 0x279F0, symSize: 0x10 } - - { offsetInCU: 0x784, offset: 0x73297, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x1210, symBinAddr: 0x27A00, symSize: 0x10 } - - { offsetInCU: 0x798, offset: 0x732AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x1220, symBinAddr: 0x27A10, symSize: 0x10 } - - { offsetInCU: 0x7AC, offset: 0x732BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x1230, symBinAddr: 0x27A20, symSize: 0x10 } - - { offsetInCU: 0x7E3, offset: 0x732F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x26840, symSize: 0x10 } - - { offsetInCU: 0x838, offset: 0x7334B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x70, symBinAddr: 0x26860, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x734EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x27D40, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x7350A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0x60, symBinAddr: 0x27DA0, symSize: 0x40 } - - { offsetInCU: 0x9C, offset: 0x73539, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0xE0, symBinAddr: 0x27E20, symSize: 0x40 } - - { offsetInCU: 0xBB, offset: 0x73558, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x120, symBinAddr: 0x27E60, symSize: 0x40 } - - { offsetInCU: 0xD8, offset: 0x73575, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x160, symBinAddr: 0x27EA0, symSize: 0x50 } - - { offsetInCU: 0x115, offset: 0x735B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1B0, symBinAddr: 0x27EF0, symSize: 0x40 } - - { offsetInCU: 0x144, offset: 0x735E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1F0, symBinAddr: 0x27F30, symSize: 0x10 } - - { offsetInCU: 0x16F, offset: 0x7360C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x2B0, symBinAddr: 0x27FF0, symSize: 0x40 } - - { offsetInCU: 0x19E, offset: 0x7363B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x2F0, symBinAddr: 0x28030, symSize: 0xD0 } - - { offsetInCU: 0x1E7, offset: 0x73684, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x3E0, symBinAddr: 0x28120, symSize: 0x20 } - - { offsetInCU: 0x203, offset: 0x736A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x400, symBinAddr: 0x28140, symSize: 0x30 } - - { offsetInCU: 0x296, offset: 0x73733, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x6A0, symBinAddr: 0x283E0, symSize: 0x40 } - - { offsetInCU: 0x2F2, offset: 0x7378F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x6E0, symBinAddr: 0x28420, symSize: 0x40 } - - { offsetInCU: 0x34D, offset: 0x737EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x720, symBinAddr: 0x28460, symSize: 0x40 } - - { offsetInCU: 0x3DA, offset: 0x73877, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x3C0, symBinAddr: 0x28100, symSize: 0x20 } - - { offsetInCU: 0x3EE, offset: 0x7388B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x430, symBinAddr: 0x28170, symSize: 0x40 } - - { offsetInCU: 0x429, offset: 0x738C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x470, symBinAddr: 0x281B0, symSize: 0x90 } - - { offsetInCU: 0x4BE, offset: 0x7395B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x500, symBinAddr: 0x28240, symSize: 0x20 } - - { offsetInCU: 0x4EF, offset: 0x7398C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x520, symBinAddr: 0x28260, symSize: 0xD0 } - - { offsetInCU: 0x554, offset: 0x739F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x5F0, symBinAddr: 0x28330, symSize: 0x20 } - - { offsetInCU: 0x571, offset: 0x73A0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x610, symBinAddr: 0x28350, symSize: 0x30 } - - { offsetInCU: 0x5AA, offset: 0x73A47, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x640, symBinAddr: 0x28380, symSize: 0x60 } - - { offsetInCU: 0x5E5, offset: 0x73A82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x760, symBinAddr: 0x284A0, symSize: 0x20 } - - { offsetInCU: 0x63D, offset: 0x73ADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x780, symBinAddr: 0x284C0, symSize: 0x20 } - - { offsetInCU: 0x690, offset: 0x73B2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x7A0, symBinAddr: 0x284E0, symSize: 0x20 } - - { offsetInCU: 0x6D1, offset: 0x73B6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x7C0, symBinAddr: 0x28500, symSize: 0x20 } - - { offsetInCU: 0x745, offset: 0x73BE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x7E0, symBinAddr: 0x28520, symSize: 0x30 } - - { offsetInCU: 0x7D6, offset: 0x73C73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x810, symBinAddr: 0x28550, symSize: 0x60 } - - { offsetInCU: 0x97B, offset: 0x73E18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x870, symBinAddr: 0x285B0, symSize: 0x4A0 } - - { offsetInCU: 0xC76, offset: 0x74113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xD40, symBinAddr: 0x28A50, symSize: 0x130 } - - { offsetInCU: 0xD4E, offset: 0x741EB, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xE70, symBinAddr: 0x28B80, symSize: 0x30 } - - { offsetInCU: 0xD66, offset: 0x74203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xEA0, symBinAddr: 0x28BB0, symSize: 0x80 } - - { offsetInCU: 0xD82, offset: 0x7421F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xF20, symBinAddr: 0x28C30, symSize: 0xC0 } - - { offsetInCU: 0xE4D, offset: 0x742EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0xFE0, symBinAddr: 0x28CF0, symSize: 0x1B0 } - - { offsetInCU: 0xEDC, offset: 0x74379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1190, symBinAddr: 0x28EA0, symSize: 0x10 } - - { offsetInCU: 0xEFF, offset: 0x7439C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x11A0, symBinAddr: 0x28EB0, symSize: 0x50 } - - { offsetInCU: 0xF31, offset: 0x743CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x11F0, symBinAddr: 0x28F00, symSize: 0x10 } - - { offsetInCU: 0xF54, offset: 0x743F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x1200, symBinAddr: 0x28F10, symSize: 0x60 } - - { offsetInCU: 0xF86, offset: 0x74423, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x1260, symBinAddr: 0x28F70, symSize: 0xB0 } - - { offsetInCU: 0x1017, offset: 0x744B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x1310, symBinAddr: 0x29020, symSize: 0x140 } - - { offsetInCU: 0x1061, offset: 0x744FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x1450, symBinAddr: 0x29160, symSize: 0x10 } - - { offsetInCU: 0x1084, offset: 0x74521, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x1460, symBinAddr: 0x29170, symSize: 0x70 } - - { offsetInCU: 0x10D7, offset: 0x74574, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x14D0, symBinAddr: 0x291E0, symSize: 0x50 } - - { offsetInCU: 0x1154, offset: 0x745F1, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x1860, symBinAddr: 0x29520, symSize: 0x30 } - - { offsetInCU: 0x1168, offset: 0x74605, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x18C0, symBinAddr: 0x29580, symSize: 0x10 } - - { offsetInCU: 0x117C, offset: 0x74619, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x18D0, symBinAddr: 0x29590, symSize: 0x20 } - - { offsetInCU: 0x1190, offset: 0x7462D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18F0, symBinAddr: 0x295B0, symSize: 0x10 } - - { offsetInCU: 0x11C2, offset: 0x7465F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x1900, symBinAddr: 0x295C0, symSize: 0x120 } - - { offsetInCU: 0x124E, offset: 0x746EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x1A20, symBinAddr: 0x296E0, symSize: 0x1B0 } - - { offsetInCU: 0x133E, offset: 0x747DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1BD0, symBinAddr: 0x29890, symSize: 0x120 } - - { offsetInCU: 0x13DA, offset: 0x74877, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1D50, symBinAddr: 0x299D0, symSize: 0x20 } - - { offsetInCU: 0x1403, offset: 0x748A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1D70, symBinAddr: 0x299F0, symSize: 0x20 } - - { offsetInCU: 0x229, offset: 0x74CDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x29A50, symSize: 0xBA0 } - - { offsetInCU: 0xEF1, offset: 0x759A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x1750, symBinAddr: 0x2B1A0, symSize: 0xB10 } - - { offsetInCU: 0x1A5D, offset: 0x76512, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x2260, symBinAddr: 0x2BCB0, symSize: 0xA70 } - - { offsetInCU: 0x2644, offset: 0x770F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2CD0, symBinAddr: 0x2C720, symSize: 0xD20 } - - { offsetInCU: 0x35B8, offset: 0x7806D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x39F0, symBinAddr: 0x2D440, symSize: 0xCB0 } - - { offsetInCU: 0x4507, offset: 0x78FBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x46C0, symBinAddr: 0x2E110, symSize: 0xB90 } - - { offsetInCU: 0x51F7, offset: 0x79CAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x5250, symBinAddr: 0x2ECA0, symSize: 0xB50 } - - { offsetInCU: 0x5D6F, offset: 0x7A824, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x5DA0, symBinAddr: 0x2F7F0, symSize: 0x190 } - - { offsetInCU: 0x5E40, offset: 0x7A8F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x5F30, symBinAddr: 0x2F980, symSize: 0x180 } - - { offsetInCU: 0x5EEA, offset: 0x7A99F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x60B0, symBinAddr: 0x2FB00, symSize: 0x140 } - - { offsetInCU: 0x6053, offset: 0x7AB08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x61F0, symBinAddr: 0x2FC40, symSize: 0x60 } - - { offsetInCU: 0x60CB, offset: 0x7AB80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x6270, symBinAddr: 0x2FCC0, symSize: 0x820 } - - { offsetInCU: 0x676F, offset: 0x7B224, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x6250, symBinAddr: 0x2FCA0, symSize: 0x20 } - - { offsetInCU: 0x69FD, offset: 0x7B4B2, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6A90, symBinAddr: 0x304E0, symSize: 0x60 } - - { offsetInCU: 0x6B04, offset: 0x7B5B9, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6AF0, symBinAddr: 0x30540, symSize: 0xF0 } - - { offsetInCU: 0x6CFA, offset: 0x7B7AF, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6BE0, symBinAddr: 0x30630, symSize: 0x590 } - - { offsetInCU: 0x70D3, offset: 0x7BB88, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x7170, symBinAddr: 0x30BC0, symSize: 0x190 } - - { offsetInCU: 0x7271, offset: 0x7BD26, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x7300, symBinAddr: 0x30D50, symSize: 0x2E0 } - - { offsetInCU: 0x7472, offset: 0x7BF27, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x75E0, symBinAddr: 0x31030, symSize: 0x180 } - - { offsetInCU: 0x7602, offset: 0x7C0B7, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x7760, symBinAddr: 0x311B0, symSize: 0x3B0 } - - { offsetInCU: 0x76AC, offset: 0x7C161, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x7B10, symBinAddr: 0x31560, symSize: 0x20 } - - { offsetInCU: 0x76E5, offset: 0x7C19A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x7B30, symBinAddr: 0x31580, symSize: 0xB0 } - - { offsetInCU: 0x779E, offset: 0x7C253, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x7BE0, symBinAddr: 0x31630, symSize: 0x230 } - - { offsetInCU: 0x78A0, offset: 0x7C355, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x7E10, symBinAddr: 0x31860, symSize: 0x260 } - - { offsetInCU: 0x79A7, offset: 0x7C45C, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x8150, symBinAddr: 0x31BA0, symSize: 0x20 } - - { offsetInCU: 0x7A16, offset: 0x7C4CB, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayVyAByxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x8220, symBinAddr: 0x31C70, symSize: 0xB0 } - - { offsetInCU: 0x7AF8, offset: 0x7C5AD, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x82D0, symBinAddr: 0x31D20, symSize: 0x40 } - - { offsetInCU: 0x7B0C, offset: 0x7C5C1, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x8350, symBinAddr: 0x31D60, symSize: 0x20 } - - { offsetInCU: 0x7B20, offset: 0x7C5D5, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSnySiG_Tgq5Tf4nnd_n', symObjAddr: 0x8370, symBinAddr: 0x31D80, symSize: 0x90 } - - { offsetInCU: 0x7B56, offset: 0x7C60B, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x84E0, symBinAddr: 0x31EB0, symSize: 0x30 } - - { offsetInCU: 0x7B6A, offset: 0x7C61F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x8510, symBinAddr: 0x31EE0, symSize: 0x30 } - - { offsetInCU: 0x7B7E, offset: 0x7C633, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOr', symObjAddr: 0x8570, symBinAddr: 0x31F40, symSize: 0x20 } - - { offsetInCU: 0x7B92, offset: 0x7C647, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOs', symObjAddr: 0x8590, symBinAddr: 0x31F60, symSize: 0x1B } - - { offsetInCU: 0x7E76, offset: 0x7C92B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x8070, symBinAddr: 0x31AC0, symSize: 0xE0 } - - { offsetInCU: 0x4F, offset: 0x7CC99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x10F8, symBinAddr: 0x66550, symSize: 0x0 } - - { offsetInCU: 0x9F, offset: 0x7CCE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x327C0, symSize: 0x10 } - - { offsetInCU: 0x126, offset: 0x7CD70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x850, symBinAddr: 0x327D0, symSize: 0x40 } - - { offsetInCU: 0x20A, offset: 0x7CE54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x890, symBinAddr: 0x32810, symSize: 0x20 } - - { offsetInCU: 0x29C, offset: 0x7CEE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x31F80, symSize: 0xB0 } - - { offsetInCU: 0x30A, offset: 0x7CF54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1B0, symBinAddr: 0x32130, symSize: 0x50 } - - { offsetInCU: 0x336, offset: 0x7CF80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x200, symBinAddr: 0x32180, symSize: 0x530 } - - { offsetInCU: 0x424, offset: 0x7D06E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x730, symBinAddr: 0x326B0, symSize: 0x70 } - - { offsetInCU: 0x46E, offset: 0x7D0B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x8F0, symBinAddr: 0x32870, symSize: 0x1B0 } - - { offsetInCU: 0x4EE, offset: 0x7D138, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAA0, symBinAddr: 0x32A20, symSize: 0x10 } - - { offsetInCU: 0x508, offset: 0x7D152, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAB0, symBinAddr: 0x32A30, symSize: 0x20 } - - { offsetInCU: 0x58B, offset: 0x7D1D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xDB0, symBinAddr: 0x32CD0, symSize: 0xC0 } - - { offsetInCU: 0x659, offset: 0x7D2A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE70, symBinAddr: 0x32D90, symSize: 0x120 } - - { offsetInCU: 0x738, offset: 0x7D382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB0, symBinAddr: 0x32030, symSize: 0x100 } - - { offsetInCU: 0x78F, offset: 0x7D3D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAD0, symBinAddr: 0x32A50, symSize: 0x20 } - - { offsetInCU: 0x7A3, offset: 0x7D3ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB10, symBinAddr: 0x32A70, symSize: 0x80 } - - { offsetInCU: 0x7B7, offset: 0x7D401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xB90, symBinAddr: 0x32AF0, symSize: 0xD0 } - - { offsetInCU: 0x7CB, offset: 0x7D415, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC60, symBinAddr: 0x32BC0, symSize: 0x10 } - - { offsetInCU: 0x7DF, offset: 0x7D429, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC70, symBinAddr: 0x32BD0, symSize: 0x10 } - - { offsetInCU: 0x7F3, offset: 0x7D43D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC80, symBinAddr: 0x32BE0, symSize: 0x10 } - - { offsetInCU: 0x807, offset: 0x7D451, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC90, symBinAddr: 0x32BF0, symSize: 0x10 } - - { offsetInCU: 0x81B, offset: 0x7D465, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xCA0, symBinAddr: 0x32C00, symSize: 0x10 } - - { offsetInCU: 0x82F, offset: 0x7D479, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x32C10, symSize: 0x30 } - - { offsetInCU: 0x843, offset: 0x7D48D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCE0, symBinAddr: 0x32C40, symSize: 0x20 } - - { offsetInCU: 0x857, offset: 0x7D4A1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xD00, symBinAddr: 0x32C60, symSize: 0x10 } - - { offsetInCU: 0x86B, offset: 0x7D4B5, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xD10, symBinAddr: 0x32C70, symSize: 0x20 } - - { offsetInCU: 0x87F, offset: 0x7D4C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xFE0, symBinAddr: 0x32F00, symSize: 0x20 } - - { offsetInCU: 0x893, offset: 0x7D4DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x10A0, symBinAddr: 0x32FC0, symSize: 0x10 } - - { offsetInCU: 0x8A7, offset: 0x7D4F1, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x10B0, symBinAddr: 0x32FD0, symSize: 0x20 } - - { offsetInCU: 0x946, offset: 0x7D590, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8B0, symBinAddr: 0x32830, symSize: 0x40 } - - { offsetInCU: 0xAFA, offset: 0x7D744, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x7A0, symBinAddr: 0x32720, symSize: 0xA0 } - - { offsetInCU: 0x2B, offset: 0x7D804, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x33010, symSize: 0x60 } - - { offsetInCU: 0x64, offset: 0x7D83D, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x33010, symSize: 0x60 } - - { offsetInCU: 0xE7, offset: 0x7D8C0, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x60, symBinAddr: 0x33070, symSize: 0xF0 } - - { offsetInCU: 0x181, offset: 0x7D95A, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x150, symBinAddr: 0x33160, symSize: 0xD0 } - - { offsetInCU: 0x2FF, offset: 0x7DAD8, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x220, symBinAddr: 0x33230, symSize: 0x170 } - - { offsetInCU: 0x49A, offset: 0x7DC73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x3D0, symBinAddr: 0x333E0, symSize: 0x10 } - - { offsetInCU: 0x4C6, offset: 0x7DC9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x3E0, symBinAddr: 0x333F0, symSize: 0x20 } - - { offsetInCU: 0x560, offset: 0x7DD39, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x400, symBinAddr: 0x33410, symSize: 0x40 } - - { offsetInCU: 0x669, offset: 0x7DE42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x440, symBinAddr: 0x33450, symSize: 0x10 } - - { offsetInCU: 0x6BD, offset: 0x7DE96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x450, symBinAddr: 0x33460, symSize: 0x40 } - - { offsetInCU: 0x7A1, offset: 0x7DF7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x490, symBinAddr: 0x334A0, symSize: 0x20 } - - { offsetInCU: 0x82A, offset: 0x7E003, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x4F0, symBinAddr: 0x33500, symSize: 0x10 } - - { offsetInCU: 0x83E, offset: 0x7E017, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x500, symBinAddr: 0x33510, symSize: 0x30 } - - { offsetInCU: 0x852, offset: 0x7E02B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x590, symBinAddr: 0x33580, symSize: 0x80 } - - { offsetInCU: 0x866, offset: 0x7E03F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x610, symBinAddr: 0x33600, symSize: 0xD0 } - - { offsetInCU: 0x87A, offset: 0x7E053, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x6E0, symBinAddr: 0x336D0, symSize: 0x10 } - - { offsetInCU: 0x88E, offset: 0x7E067, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x6F0, symBinAddr: 0x336E0, symSize: 0x10 } - - { offsetInCU: 0x8A2, offset: 0x7E07B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x700, symBinAddr: 0x336F0, symSize: 0x10 } - - { offsetInCU: 0x8B6, offset: 0x7E08F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x710, symBinAddr: 0x33700, symSize: 0x10 } - - { offsetInCU: 0x8CA, offset: 0x7E0A3, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x720, symBinAddr: 0x33710, symSize: 0x10 } - - { offsetInCU: 0x8DE, offset: 0x7E0B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x730, symBinAddr: 0x33720, symSize: 0x20 } - - { offsetInCU: 0x8F2, offset: 0x7E0CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x750, symBinAddr: 0x33740, symSize: 0x20 } - - { offsetInCU: 0x906, offset: 0x7E0DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x770, symBinAddr: 0x33760, symSize: 0x10 } - - { offsetInCU: 0x91A, offset: 0x7E0F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x780, symBinAddr: 0x33770, symSize: 0x10 } - - { offsetInCU: 0x92E, offset: 0x7E107, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x790, symBinAddr: 0x33780, symSize: 0x10 } - - { offsetInCU: 0x942, offset: 0x7E11B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x7A0, symBinAddr: 0x33790, symSize: 0x10 } - - { offsetInCU: 0x9B9, offset: 0x7E192, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x7B0, symBinAddr: 0x337A0, symSize: 0x2A0 } - - { offsetInCU: 0xC56, offset: 0x7E42F, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAB0, symBinAddr: 0x33A40, symSize: 0x30 } - - { offsetInCU: 0xCF9, offset: 0x7E4D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x390, symBinAddr: 0x333A0, symSize: 0x10 } - - { offsetInCU: 0xD15, offset: 0x7E4EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x3A0, symBinAddr: 0x333B0, symSize: 0x10 } - - { offsetInCU: 0xD31, offset: 0x7E50A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x3B0, symBinAddr: 0x333C0, symSize: 0x10 } - - { offsetInCU: 0xD4D, offset: 0x7E526, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x3C0, symBinAddr: 0x333D0, symSize: 0x10 } - - { offsetInCU: 0xD96, offset: 0x7E56F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4B0, symBinAddr: 0x334C0, symSize: 0x40 } - - { offsetInCU: 0xE33, offset: 0x7E60C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x530, symBinAddr: 0x33540, symSize: 0x10 } - - { offsetInCU: 0xE4F, offset: 0x7E628, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x540, symBinAddr: 0x33550, symSize: 0x10 } - - { offsetInCU: 0xE6B, offset: 0x7E644, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x550, symBinAddr: 0x33560, symSize: 0x10 } - - { offsetInCU: 0xE87, offset: 0x7E660, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x560, symBinAddr: 0x33570, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x7E85A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x33A70, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x7E898, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x20, symBinAddr: 0x33A90, symSize: 0x10 } - - { offsetInCU: 0x92, offset: 0x7E8C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xB0, symBinAddr: 0x33B20, symSize: 0x90 } - - { offsetInCU: 0xC1, offset: 0x7E8F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x140, symBinAddr: 0x33BB0, symSize: 0x50 } - - { offsetInCU: 0xDE, offset: 0x7E90D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x240, symBinAddr: 0x33CB0, symSize: 0x30 } - - { offsetInCU: 0x10F, offset: 0x7E93E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x33CE0, symSize: 0x10 } - - { offsetInCU: 0x12B, offset: 0x7E95A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x280, symBinAddr: 0x33CF0, symSize: 0x10 } - - { offsetInCU: 0x148, offset: 0x7E977, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x33A70, symSize: 0x20 } - - { offsetInCU: 0x1B7, offset: 0x7E9E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x30, symBinAddr: 0x33AA0, symSize: 0x50 } - - { offsetInCU: 0x247, offset: 0x7EA76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x420, symBinAddr: 0x33E90, symSize: 0x20 } - - { offsetInCU: 0x278, offset: 0x7EAA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x440, symBinAddr: 0x33EB0, symSize: 0x10 } - - { offsetInCU: 0x2AA, offset: 0x7EAD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x450, symBinAddr: 0x33EC0, symSize: 0x30 } - - { offsetInCU: 0x2D6, offset: 0x7EB05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0x80, symBinAddr: 0x33AF0, symSize: 0x20 } - - { offsetInCU: 0x33C, offset: 0x7EB6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xA0, symBinAddr: 0x33B10, symSize: 0x10 } - - { offsetInCU: 0x389, offset: 0x7EBB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x290, symBinAddr: 0x33D00, symSize: 0x10 } - - { offsetInCU: 0x3B5, offset: 0x7EBE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x2A0, symBinAddr: 0x33D10, symSize: 0x10 } - - { offsetInCU: 0x3E1, offset: 0x7EC10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x2B0, symBinAddr: 0x33D20, symSize: 0x10 } - - { offsetInCU: 0x40D, offset: 0x7EC3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x2C0, symBinAddr: 0x33D30, symSize: 0x10 } - - { offsetInCU: 0x421, offset: 0x7EC50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x2D0, symBinAddr: 0x33D40, symSize: 0x30 } - - { offsetInCU: 0x435, offset: 0x7EC64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x300, symBinAddr: 0x33D70, symSize: 0x10 } - - { offsetInCU: 0x47F, offset: 0x7ECAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x310, symBinAddr: 0x33D80, symSize: 0x10 } - - { offsetInCU: 0x4F0, offset: 0x7ED1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x320, symBinAddr: 0x33D90, symSize: 0x10 } - - { offsetInCU: 0x561, offset: 0x7ED90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x330, symBinAddr: 0x33DA0, symSize: 0x10 } - - { offsetInCU: 0x5D2, offset: 0x7EE01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x340, symBinAddr: 0x33DB0, symSize: 0x10 } - - { offsetInCU: 0x60D, offset: 0x7EE3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x350, symBinAddr: 0x33DC0, symSize: 0x10 } - - { offsetInCU: 0x621, offset: 0x7EE50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x4A0, symBinAddr: 0x33EF0, symSize: 0x80 } - - { offsetInCU: 0x635, offset: 0x7EE64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x520, symBinAddr: 0x33F70, symSize: 0xD0 } - - { offsetInCU: 0x649, offset: 0x7EE78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x5F0, symBinAddr: 0x34040, symSize: 0x10 } - - { offsetInCU: 0x65D, offset: 0x7EE8C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x600, symBinAddr: 0x34050, symSize: 0x10 } - - { offsetInCU: 0x671, offset: 0x7EEA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x610, symBinAddr: 0x34060, symSize: 0x10 } - - { offsetInCU: 0x685, offset: 0x7EEB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x620, symBinAddr: 0x34070, symSize: 0x10 } - - { offsetInCU: 0x699, offset: 0x7EEC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x630, symBinAddr: 0x34080, symSize: 0x10 } - - { offsetInCU: 0x6AD, offset: 0x7EEDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x640, symBinAddr: 0x34090, symSize: 0x2E } - - { offsetInCU: 0x6F0, offset: 0x7EF1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x190, symBinAddr: 0x33C00, symSize: 0x10 } - - { offsetInCU: 0x781, offset: 0x7EFB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x1A0, symBinAddr: 0x33C10, symSize: 0x40 } - - { offsetInCU: 0x810, offset: 0x7F03F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1E0, symBinAddr: 0x33C50, symSize: 0x20 } - - { offsetInCU: 0x863, offset: 0x7F092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x33C70, symSize: 0x40 } - - { offsetInCU: 0x8CF, offset: 0x7F0FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x360, symBinAddr: 0x33DD0, symSize: 0x10 } - - { offsetInCU: 0x960, offset: 0x7F18F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x370, symBinAddr: 0x33DE0, symSize: 0x40 } - - { offsetInCU: 0xA41, offset: 0x7F270, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x3B0, symBinAddr: 0x33E20, symSize: 0x30 } - - { offsetInCU: 0xAC6, offset: 0x7F2F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x3E0, symBinAddr: 0x33E50, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x7F4C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x340C0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x7F4EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x340C0, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x7F517, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x340D0, symSize: 0x10 } - - { offsetInCU: 0x140, offset: 0x7F5E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x340E0, symSize: 0xE0 } - - { offsetInCU: 0x303, offset: 0x7F7A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwCP', symObjAddr: 0x100, symBinAddr: 0x341C0, symSize: 0x30 } - - { offsetInCU: 0x317, offset: 0x7F7B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0x130, symBinAddr: 0x341F0, symSize: 0x10 } - - { offsetInCU: 0x32B, offset: 0x7F7CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwcp', symObjAddr: 0x140, symBinAddr: 0x34200, symSize: 0x30 } - - { offsetInCU: 0x33F, offset: 0x7F7E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x170, symBinAddr: 0x34230, symSize: 0x50 } - - { offsetInCU: 0x353, offset: 0x7F7F4, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x1C0, symBinAddr: 0x34280, symSize: 0x10 } - - { offsetInCU: 0x367, offset: 0x7F808, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x1D0, symBinAddr: 0x34290, symSize: 0x30 } - - { offsetInCU: 0x37B, offset: 0x7F81C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x200, symBinAddr: 0x342C0, symSize: 0x50 } - - { offsetInCU: 0x38F, offset: 0x7F830, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x250, symBinAddr: 0x34310, symSize: 0x50 } - - { offsetInCU: 0x3A3, offset: 0x7F844, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x2A0, symBinAddr: 0x34360, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x7F992, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34370, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x7F9B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34370, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x7F9E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x34380, symSize: 0x10 } - - { offsetInCU: 0xB8, offset: 0x7FA23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x34390, symSize: 0x20 } - - { offsetInCU: 0x125, offset: 0x7FA90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x40, symBinAddr: 0x343B0, symSize: 0xF0 } - - { offsetInCU: 0x26C, offset: 0x7FBD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x130, symBinAddr: 0x344A0, symSize: 0x120 } - - { offsetInCU: 0x39C, offset: 0x7FD07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwCP', symObjAddr: 0x290, symBinAddr: 0x345C0, symSize: 0x50 } - - { offsetInCU: 0x3B0, offset: 0x7FD1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x2E0, symBinAddr: 0x34610, symSize: 0x30 } - - { offsetInCU: 0x3C4, offset: 0x7FD2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwcp', symObjAddr: 0x310, symBinAddr: 0x34640, symSize: 0x50 } - - { offsetInCU: 0x3D8, offset: 0x7FD43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x360, symBinAddr: 0x34690, symSize: 0x70 } - - { offsetInCU: 0x3EC, offset: 0x7FD57, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x3D0, symBinAddr: 0x34700, symSize: 0x20 } - - { offsetInCU: 0x400, offset: 0x7FD6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x3F0, symBinAddr: 0x34720, symSize: 0x50 } - - { offsetInCU: 0x414, offset: 0x7FD7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x440, symBinAddr: 0x34770, symSize: 0x50 } - - { offsetInCU: 0x428, offset: 0x7FD93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x490, symBinAddr: 0x347C0, symSize: 0x50 } - - { offsetInCU: 0x43C, offset: 0x7FDA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x4E0, symBinAddr: 0x34810, symSize: 0xA } - - { offsetInCU: 0x4F, offset: 0x7FF57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34820, symSize: 0x10 } - - { offsetInCU: 0x7A, offset: 0x7FF82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x34830, symSize: 0x10 } - - { offsetInCU: 0xAC, offset: 0x7FFB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8clientIDACSS_tcfCTf4gd_nTf4n_g', symObjAddr: 0x1000, symBinAddr: 0x357E0, symSize: 0x100 } - - { offsetInCU: 0x1C6, offset: 0x800CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x34840, symSize: 0x330 } - - { offsetInCU: 0x56B, offset: 0x80473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x350, symBinAddr: 0x34B70, symSize: 0x3A0 } - - { offsetInCU: 0x968, offset: 0x80870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x6F0, symBinAddr: 0x34F10, symSize: 0x2C0 } - - { offsetInCU: 0xC92, offset: 0x80B9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x9B0, symBinAddr: 0x351D0, symSize: 0x2C0 } - - { offsetInCU: 0x1093, offset: 0x80F9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xC70, symBinAddr: 0x35490, symSize: 0x2E0 } - - { offsetInCU: 0x133A, offset: 0x81242, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xF50, symBinAddr: 0x35770, symSize: 0x40 } - - { offsetInCU: 0x1356, offset: 0x8125E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0x1160, symBinAddr: 0x358E0, symSize: 0x30 } - - { offsetInCU: 0x136A, offset: 0x81272, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0x11F0, symBinAddr: 0x35910, symSize: 0x90 } - - { offsetInCU: 0x137E, offset: 0x81286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x1280, symBinAddr: 0x359A0, symSize: 0x1A0 } - - { offsetInCU: 0x1392, offset: 0x8129A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x1420, symBinAddr: 0x35B40, symSize: 0x230 } - - { offsetInCU: 0x13A6, offset: 0x812AE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x1650, symBinAddr: 0x35D70, symSize: 0x30 } - - { offsetInCU: 0x13BA, offset: 0x812C2, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x1680, symBinAddr: 0x35DA0, symSize: 0x10 } - - { offsetInCU: 0x13CE, offset: 0x812D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x1690, symBinAddr: 0x35DB0, symSize: 0x1A0 } - - { offsetInCU: 0x13E2, offset: 0x812EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x1830, symBinAddr: 0x35F50, symSize: 0x40 } - - { offsetInCU: 0x13F6, offset: 0x812FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x1870, symBinAddr: 0x35F90, symSize: 0x70 } - - { offsetInCU: 0x140A, offset: 0x81312, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x18E0, symBinAddr: 0x36000, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x814D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36010, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x81501, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36020, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x815A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x36030, symSize: 0xF0 } - - { offsetInCU: 0x2FC, offset: 0x81787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0x110, symBinAddr: 0x36120, symSize: 0x2D0 } - - { offsetInCU: 0x6DB, offset: 0x81B66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3E0, symBinAddr: 0x363F0, symSize: 0x10 } - - { offsetInCU: 0x70D, offset: 0x81B98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV11descriptionSSvgTf4d_n', symObjAddr: 0x3F0, symBinAddr: 0x36400, symSize: 0x20 } - - { offsetInCU: 0x72B, offset: 0x81BB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x480, symBinAddr: 0x36450, symSize: 0x30 } - - { offsetInCU: 0x73F, offset: 0x81BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x4B0, symBinAddr: 0x36480, symSize: 0x30 } - - { offsetInCU: 0x753, offset: 0x81BDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x4E0, symBinAddr: 0x364B0, symSize: 0x70 } - - { offsetInCU: 0x767, offset: 0x81BF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x550, symBinAddr: 0x36520, symSize: 0xA0 } - - { offsetInCU: 0x77B, offset: 0x81C06, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x5F0, symBinAddr: 0x365C0, symSize: 0x30 } - - { offsetInCU: 0x78F, offset: 0x81C1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x620, symBinAddr: 0x365F0, symSize: 0x70 } - - { offsetInCU: 0x7A3, offset: 0x81C2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x690, symBinAddr: 0x36660, symSize: 0x50 } - - { offsetInCU: 0x7B7, offset: 0x81C42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x6E0, symBinAddr: 0x366B0, symSize: 0x50 } - - { offsetInCU: 0x7CB, offset: 0x81C56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x730, symBinAddr: 0x36700, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x81DD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36710, symSize: 0x10 } - - { offsetInCU: 0x46, offset: 0x81DF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36710, symSize: 0x10 } - - { offsetInCU: 0x71, offset: 0x81E21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36720, symSize: 0x10 } - - { offsetInCU: 0xB3, offset: 0x81E63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x36730, symSize: 0x10 } - - { offsetInCU: 0xE5, offset: 0x81E95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqV11descriptionSSvgTf4d_n', symObjAddr: 0x30, symBinAddr: 0x36740, symSize: 0x20 } - - { offsetInCU: 0x103, offset: 0x81EB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x50, symBinAddr: 0x36760, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x81F7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36770, symSize: 0x10 } - - { offsetInCU: 0x46, offset: 0x81F9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36770, symSize: 0x10 } - - { offsetInCU: 0x71, offset: 0x81FC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36780, symSize: 0x10 } - - { offsetInCU: 0xB3, offset: 0x8200B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x36790, symSize: 0x10 } - - { offsetInCU: 0xE5, offset: 0x8203D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespV11descriptionSSvgTf4d_n', symObjAddr: 0x30, symBinAddr: 0x367A0, symSize: 0x20 } - - { offsetInCU: 0x103, offset: 0x8205B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x50, symBinAddr: 0x367C0, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x8214B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x367D0, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x82176, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x367E0, symSize: 0x10 } - - { offsetInCU: 0x156, offset: 0x82256, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x367F0, symSize: 0x130 } - - { offsetInCU: 0x3A7, offset: 0x824A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x36920, symSize: 0x160 } - - { offsetInCU: 0x53C, offset: 0x8263C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV11descriptionSSvg', symObjAddr: 0x2B0, symBinAddr: 0x36A80, symSize: 0x90 } - - { offsetInCU: 0x595, offset: 0x82695, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x340, symBinAddr: 0x36B10, symSize: 0x40 } - - { offsetInCU: 0x60B, offset: 0x8270B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x380, symBinAddr: 0x36B50, symSize: 0x230 } - - { offsetInCU: 0x7A5, offset: 0x828A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x620, symBinAddr: 0x36DB0, symSize: 0x30 } - - { offsetInCU: 0x7B9, offset: 0x828B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x650, symBinAddr: 0x36DE0, symSize: 0x30 } - - { offsetInCU: 0x7CD, offset: 0x828CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x680, symBinAddr: 0x36E10, symSize: 0x60 } - - { offsetInCU: 0x7E1, offset: 0x828E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x6E0, symBinAddr: 0x36E70, symSize: 0x90 } - - { offsetInCU: 0x7F5, offset: 0x828F5, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x770, symBinAddr: 0x36F00, symSize: 0x20 } - - { offsetInCU: 0x809, offset: 0x82909, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x790, symBinAddr: 0x36F20, symSize: 0x60 } - - { offsetInCU: 0x81D, offset: 0x8291D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x7F0, symBinAddr: 0x36F80, symSize: 0x50 } - - { offsetInCU: 0x831, offset: 0x82931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x840, symBinAddr: 0x36FD0, symSize: 0x50 } - - { offsetInCU: 0x845, offset: 0x82945, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x890, symBinAddr: 0x37020, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x82B1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37030, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x82B49, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x37040, symSize: 0x10 } - - { offsetInCU: 0x156, offset: 0x82C29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x37050, symSize: 0x130 } - - { offsetInCU: 0x3A7, offset: 0x82E7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x37180, symSize: 0x160 } - - { offsetInCU: 0x53C, offset: 0x8300F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV11descriptionSSvg', symObjAddr: 0x2B0, symBinAddr: 0x372E0, symSize: 0x90 } - - { offsetInCU: 0x595, offset: 0x83068, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x340, symBinAddr: 0x37370, symSize: 0x40 } - - { offsetInCU: 0x5E4, offset: 0x830B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x380, symBinAddr: 0x373B0, symSize: 0x100 } - - { offsetInCU: 0x6C6, offset: 0x83199, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x4F0, symBinAddr: 0x374E0, symSize: 0x30 } - - { offsetInCU: 0x6DA, offset: 0x831AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x520, symBinAddr: 0x37510, symSize: 0x30 } - - { offsetInCU: 0x6EE, offset: 0x831C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x550, symBinAddr: 0x37540, symSize: 0x60 } - - { offsetInCU: 0x702, offset: 0x831D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x5B0, symBinAddr: 0x375A0, symSize: 0x90 } - - { offsetInCU: 0x716, offset: 0x831E9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x660, symBinAddr: 0x37630, symSize: 0x60 } - - { offsetInCU: 0x72A, offset: 0x831FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x6C0, symBinAddr: 0x37690, symSize: 0x50 } - - { offsetInCU: 0x73E, offset: 0x83211, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x710, symBinAddr: 0x376E0, symSize: 0x50 } - - { offsetInCU: 0x752, offset: 0x83225, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x760, symBinAddr: 0x37730, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x833C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37740, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x833EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37740, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x83416, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x37750, symSize: 0x10 } - - { offsetInCU: 0xA8, offset: 0x83448, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV5topic7payload3qos5msgidACSS_Says5UInt8VGAA0A7MQTTQoSOs6UInt16VtcfCTf4nnnnd_n', symObjAddr: 0x490, symBinAddr: 0x37BD0, symSize: 0x60 } - - { offsetInCU: 0x1F2, offset: 0x83592, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x37760, symSize: 0x120 } - - { offsetInCU: 0x3C2, offset: 0x83762, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x140, symBinAddr: 0x37880, symSize: 0x1B0 } - - { offsetInCU: 0x672, offset: 0x83A12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2F0, symBinAddr: 0x37A30, symSize: 0x140 } - - { offsetInCU: 0x806, offset: 0x83BA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x430, symBinAddr: 0x37B70, symSize: 0x60 } - - { offsetInCU: 0x9CB, offset: 0x83D6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x4F0, symBinAddr: 0x37C30, symSize: 0x7D0 } - - { offsetInCU: 0xF99, offset: 0x84339, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xCC0, symBinAddr: 0x38400, symSize: 0x40 } - - { offsetInCU: 0xFAD, offset: 0x8434D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xD40, symBinAddr: 0x38440, symSize: 0x30 } - - { offsetInCU: 0xFC1, offset: 0x84361, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xD70, symBinAddr: 0x38470, symSize: 0x50 } - - { offsetInCU: 0xFD5, offset: 0x84375, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xDC0, symBinAddr: 0x384C0, symSize: 0xD0 } - - { offsetInCU: 0xFE9, offset: 0x84389, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xE90, symBinAddr: 0x38590, symSize: 0x110 } - - { offsetInCU: 0xFFD, offset: 0x8439D, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0xFA0, symBinAddr: 0x386A0, symSize: 0x40 } - - { offsetInCU: 0x1011, offset: 0x843B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0xFE0, symBinAddr: 0x386E0, symSize: 0xC0 } - - { offsetInCU: 0x1025, offset: 0x843C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0x10A0, symBinAddr: 0x387A0, symSize: 0x40 } - - { offsetInCU: 0x1039, offset: 0x843D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0x10E0, symBinAddr: 0x387E0, symSize: 0x60 } - - { offsetInCU: 0x104D, offset: 0x843ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0x1140, symBinAddr: 0x38840, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x84655, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38850, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x84680, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x38860, symSize: 0x10 } - - { offsetInCU: 0x156, offset: 0x84760, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x38870, symSize: 0x130 } - - { offsetInCU: 0x3A7, offset: 0x849B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x389A0, symSize: 0x160 } - - { offsetInCU: 0x53C, offset: 0x84B46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV11descriptionSSvg', symObjAddr: 0x2B0, symBinAddr: 0x38B00, symSize: 0x90 } - - { offsetInCU: 0x595, offset: 0x84B9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x340, symBinAddr: 0x38B90, symSize: 0x40 } - - { offsetInCU: 0x5E4, offset: 0x84BEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x380, symBinAddr: 0x38BD0, symSize: 0x100 } - - { offsetInCU: 0x6C6, offset: 0x84CD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x4F0, symBinAddr: 0x38D00, symSize: 0x30 } - - { offsetInCU: 0x6DA, offset: 0x84CE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x520, symBinAddr: 0x38D30, symSize: 0x30 } - - { offsetInCU: 0x6EE, offset: 0x84CF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x550, symBinAddr: 0x38D60, symSize: 0x60 } - - { offsetInCU: 0x702, offset: 0x84D0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x5B0, symBinAddr: 0x38DC0, symSize: 0x90 } - - { offsetInCU: 0x716, offset: 0x84D20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x660, symBinAddr: 0x38E50, symSize: 0x60 } - - { offsetInCU: 0x72A, offset: 0x84D34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x6C0, symBinAddr: 0x38EB0, symSize: 0x50 } - - { offsetInCU: 0x73E, offset: 0x84D48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x710, symBinAddr: 0x38F00, symSize: 0x50 } - - { offsetInCU: 0x752, offset: 0x84D5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x760, symBinAddr: 0x38F50, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x84F22, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38F60, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x84F4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x38F70, symSize: 0x10 } - - { offsetInCU: 0x156, offset: 0x8502D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x38F80, symSize: 0x100 } - - { offsetInCU: 0x392, offset: 0x85269, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x120, symBinAddr: 0x39080, symSize: 0x160 } - - { offsetInCU: 0x527, offset: 0x853FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV11descriptionSSvg', symObjAddr: 0x280, symBinAddr: 0x391E0, symSize: 0x90 } - - { offsetInCU: 0x580, offset: 0x85457, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0x39270, symSize: 0x40 } - - { offsetInCU: 0x5A7, offset: 0x8547E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x350, symBinAddr: 0x392B0, symSize: 0x100 } - - { offsetInCU: 0x689, offset: 0x85560, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x4C0, symBinAddr: 0x393E0, symSize: 0x30 } - - { offsetInCU: 0x69D, offset: 0x85574, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x4F0, symBinAddr: 0x39410, symSize: 0x30 } - - { offsetInCU: 0x6B1, offset: 0x85588, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x520, symBinAddr: 0x39440, symSize: 0x70 } - - { offsetInCU: 0x6C5, offset: 0x8559C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x590, symBinAddr: 0x394B0, symSize: 0x90 } - - { offsetInCU: 0x6D9, offset: 0x855B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x640, symBinAddr: 0x39540, symSize: 0x60 } - - { offsetInCU: 0x6ED, offset: 0x855C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x6A0, symBinAddr: 0x395A0, symSize: 0x50 } - - { offsetInCU: 0x701, offset: 0x855D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x6F0, symBinAddr: 0x395F0, symSize: 0x50 } - - { offsetInCU: 0x715, offset: 0x855EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x740, symBinAddr: 0x39640, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x8578E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x39650, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x857B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x39650, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x857DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x39660, symSize: 0x10 } - - { offsetInCU: 0xA9, offset: 0x85810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV11descriptionSSvg', symObjAddr: 0x20, symBinAddr: 0x39670, symSize: 0x90 } - - { offsetInCU: 0x102, offset: 0x85869, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xB0, symBinAddr: 0x39700, symSize: 0x40 } - - { offsetInCU: 0x2DA, offset: 0x85A41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xF0, symBinAddr: 0x39740, symSize: 0x5A0 } - - { offsetInCU: 0xA53, offset: 0x861BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x690, symBinAddr: 0x39CE0, symSize: 0x30 } - - { offsetInCU: 0xA67, offset: 0x861CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x6C0, symBinAddr: 0x39D10, symSize: 0x40 } - - { offsetInCU: 0xA7B, offset: 0x861E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x700, symBinAddr: 0x39D50, symSize: 0x90 } - - { offsetInCU: 0xA8F, offset: 0x861F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x790, symBinAddr: 0x39DE0, symSize: 0xC0 } - - { offsetInCU: 0xAA3, offset: 0x8620A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x880, symBinAddr: 0x39EA0, symSize: 0x80 } - - { offsetInCU: 0xAB7, offset: 0x8621E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x900, symBinAddr: 0x39F20, symSize: 0x40 } - - { offsetInCU: 0xACB, offset: 0x86232, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x940, symBinAddr: 0x39F60, symSize: 0x50 } - - { offsetInCU: 0xADF, offset: 0x86246, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x990, symBinAddr: 0x39FB0, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x8647A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x39FC0, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x864A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x39FD0, symSize: 0x10 } - - { offsetInCU: 0xA8, offset: 0x864D7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV5msgid16subscriptionList16packetIdentifier0fI012userPropertyACs6UInt16V_SayAA16MqttSubscriptionCGAJSgs6UInt32VSgSDyS2SGtcfCTf4nnnnnd_n', symObjAddr: 0xE50, symBinAddr: 0x3ADD0, symSize: 0xE0 } - - { offsetInCU: 0x192, offset: 0x865C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x39FE0, symSize: 0xB0 } - - { offsetInCU: 0x3B5, offset: 0x867E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xD0, symBinAddr: 0x3A090, symSize: 0x270 } - - { offsetInCU: 0x800, offset: 0x86C2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x340, symBinAddr: 0x3A300, symSize: 0x210 } - - { offsetInCU: 0xCAD, offset: 0x870DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x550, symBinAddr: 0x3A510, symSize: 0x680 } - - { offsetInCU: 0x1165, offset: 0x87594, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBD0, symBinAddr: 0x3AB90, symSize: 0x40 } - - { offsetInCU: 0x1181, offset: 0x875B0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xC50, symBinAddr: 0x3ABD0, symSize: 0x200 } - - { offsetInCU: 0x11E7, offset: 0x87616, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xF60, symBinAddr: 0x3AEE0, symSize: 0x20 } - - { offsetInCU: 0x11FB, offset: 0x8762A, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xF80, symBinAddr: 0x3AF00, symSize: 0x20 } - - { offsetInCU: 0x120F, offset: 0x8763E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xFA0, symBinAddr: 0x3AF20, symSize: 0x30 } - - { offsetInCU: 0x1223, offset: 0x87652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xFD0, symBinAddr: 0x3AF50, symSize: 0x30 } - - { offsetInCU: 0x1237, offset: 0x87666, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0x1000, symBinAddr: 0x3AF80, symSize: 0x80 } - - { offsetInCU: 0x124B, offset: 0x8767A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0x1080, symBinAddr: 0x3B000, symSize: 0xA0 } - - { offsetInCU: 0x125F, offset: 0x8768E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0x1140, symBinAddr: 0x3B0A0, symSize: 0x80 } - - { offsetInCU: 0x1273, offset: 0x876A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0x11C0, symBinAddr: 0x3B120, symSize: 0x50 } - - { offsetInCU: 0x1287, offset: 0x876B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x1210, symBinAddr: 0x3B170, symSize: 0x50 } - - { offsetInCU: 0x129B, offset: 0x876CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x1260, symBinAddr: 0x3B1C0, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x87A9B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3B1D0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x87ABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3B1D0, symSize: 0x10 } - - { offsetInCU: 0x76, offset: 0x87AEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x3B1E0, symSize: 0x10 } - - { offsetInCU: 0xBF, offset: 0x87B33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x20, symBinAddr: 0x3B1F0, symSize: 0xC0 } - - { offsetInCU: 0x157, offset: 0x87BCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xE0, symBinAddr: 0x3B2B0, symSize: 0x40 } - - { offsetInCU: 0x1A6, offset: 0x87C1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x120, symBinAddr: 0x3B2F0, symSize: 0x120 } - - { offsetInCU: 0x280, offset: 0x87CF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x240, symBinAddr: 0x3B410, symSize: 0x30 } - - { offsetInCU: 0x294, offset: 0x87D08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x270, symBinAddr: 0x3B440, symSize: 0x40 } - - { offsetInCU: 0x2A8, offset: 0x87D1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x2B0, symBinAddr: 0x3B480, symSize: 0x70 } - - { offsetInCU: 0x2BC, offset: 0x87D30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x320, symBinAddr: 0x3B4F0, symSize: 0xA0 } - - { offsetInCU: 0x2D0, offset: 0x87D44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x3E0, symBinAddr: 0x3B590, symSize: 0x70 } - - { offsetInCU: 0x2E4, offset: 0x87D58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x450, symBinAddr: 0x3B600, symSize: 0x40 } - - { offsetInCU: 0x2F8, offset: 0x87D6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x490, symBinAddr: 0x3B640, symSize: 0x50 } - - { offsetInCU: 0x30C, offset: 0x87D80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x4E0, symBinAddr: 0x3B690, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x87E9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3B6A0, symSize: 0x10 } - - { offsetInCU: 0x46, offset: 0x87EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x3B6A0, symSize: 0x10 } - - { offsetInCU: 0x71, offset: 0x87EE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x3B6B0, symSize: 0x10 } - - { offsetInCU: 0xB3, offset: 0x87F2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x3B6C0, symSize: 0x30 } - - { offsetInCU: 0x1C3, offset: 0x8803B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x50, symBinAddr: 0x3B6F0, symSize: 0x170 } - - { offsetInCU: 0x4A3, offset: 0x8831B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1C0, symBinAddr: 0x3B860, symSize: 0x90 } - - { offsetInCU: 0x603, offset: 0x8847B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x250, symBinAddr: 0x3B8F0, symSize: 0x150 } - - { offsetInCU: 0x996, offset: 0x8880E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x3A0, symBinAddr: 0x3BA40, symSize: 0x610 } - - { offsetInCU: 0xE3E, offset: 0x88CB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0x9F0, symBinAddr: 0x3C050, symSize: 0x30 } - - { offsetInCU: 0xE52, offset: 0x88CCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0xA20, symBinAddr: 0x3C080, symSize: 0x30 } - - { offsetInCU: 0xE66, offset: 0x88CDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0xA50, symBinAddr: 0x3C0B0, symSize: 0x60 } - - { offsetInCU: 0xE7A, offset: 0x88CF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0xAB0, symBinAddr: 0x3C110, symSize: 0x80 } - - { offsetInCU: 0xE8E, offset: 0x88D06, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xB30, symBinAddr: 0x3C190, symSize: 0x20 } - - { offsetInCU: 0xEA2, offset: 0x88D1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xB50, symBinAddr: 0x3C1B0, symSize: 0x60 } - - { offsetInCU: 0xEB6, offset: 0x88D2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xBB0, symBinAddr: 0x3C210, symSize: 0x50 } - - { offsetInCU: 0xECA, offset: 0x88D42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xC00, symBinAddr: 0x3C260, symSize: 0x50 } - - { offsetInCU: 0xEDE, offset: 0x88D56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xC50, symBinAddr: 0x3C2B0, symSize: 0xA } - - { offsetInCU: 0x4B, offset: 0x89092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x40, symBinAddr: 0x3C300, symSize: 0x40 } - - { offsetInCU: 0x7A, offset: 0x890C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0xC0, symBinAddr: 0x3C380, symSize: 0x40 } - - { offsetInCU: 0xA9, offset: 0x890F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x1D0, symBinAddr: 0x3C490, symSize: 0x40 } - - { offsetInCU: 0xD8, offset: 0x8911F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x2D0, symBinAddr: 0x3C590, symSize: 0x40 } - - { offsetInCU: 0x107, offset: 0x8914E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x3C5D0, symSize: 0x10 } - - { offsetInCU: 0x1AA, offset: 0x891F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x320, symBinAddr: 0x3C5E0, symSize: 0x2F0 } - - { offsetInCU: 0x5DA, offset: 0x89621, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x610, symBinAddr: 0x3C8D0, symSize: 0x20 } - - { offsetInCU: 0x5F8, offset: 0x8963F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x630, symBinAddr: 0x3C8F0, symSize: 0x70 } - - { offsetInCU: 0x633, offset: 0x8967A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x6A0, symBinAddr: 0x3C960, symSize: 0x70 } - - { offsetInCU: 0x66E, offset: 0x896B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x710, symBinAddr: 0x3C9D0, symSize: 0x30 } - - { offsetInCU: 0x740, offset: 0x89787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x740, symBinAddr: 0x3CA00, symSize: 0x60 } - - { offsetInCU: 0x76F, offset: 0x897B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x7A0, symBinAddr: 0x3CA60, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8993D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x40, symBinAddr: 0x3CAF0, symSize: 0x40 } - - { offsetInCU: 0x7A, offset: 0x8996C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0xC0, symBinAddr: 0x3CB70, symSize: 0x40 } - - { offsetInCU: 0xA9, offset: 0x8999B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x1D0, symBinAddr: 0x3CC80, symSize: 0x40 } - - { offsetInCU: 0xD8, offset: 0x899CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x2E0, symBinAddr: 0x3CD90, symSize: 0x40 } - - { offsetInCU: 0x107, offset: 0x899F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x360, symBinAddr: 0x3CE10, symSize: 0x40 } - - { offsetInCU: 0x136, offset: 0x89A28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x470, symBinAddr: 0x3CF20, symSize: 0x40 } - - { offsetInCU: 0x165, offset: 0x89A57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x4F0, symBinAddr: 0x3CFA0, symSize: 0x40 } - - { offsetInCU: 0x194, offset: 0x89A86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x530, symBinAddr: 0x3CFE0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x89AB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x540, symBinAddr: 0x3CFF0, symSize: 0x50 } - - { offsetInCU: 0x1DC, offset: 0x89ACE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x590, symBinAddr: 0x3D040, symSize: 0x50 } - - { offsetInCU: 0x219, offset: 0x89B0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x5E0, symBinAddr: 0x3D090, symSize: 0x40 } - - { offsetInCU: 0x248, offset: 0x89B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x6E0, symBinAddr: 0x3D190, symSize: 0x40 } - - { offsetInCU: 0x385, offset: 0x89C77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x720, symBinAddr: 0x3D1D0, symSize: 0x790 } - - { offsetInCU: 0xE77, offset: 0x8A769, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xEB0, symBinAddr: 0x3D960, symSize: 0x20 } - - { offsetInCU: 0xE95, offset: 0x8A787, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xED0, symBinAddr: 0x3D980, symSize: 0xD0 } - - { offsetInCU: 0xEC2, offset: 0x8A7B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xFA0, symBinAddr: 0x3DA50, symSize: 0x20 } - - { offsetInCU: 0xEDE, offset: 0x8A7D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xFC0, symBinAddr: 0x3DA70, symSize: 0x30 } - - { offsetInCU: 0xFC6, offset: 0x8A8B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xFF0, symBinAddr: 0x3DAA0, symSize: 0x40 } - - { offsetInCU: 0xFF5, offset: 0x8A8E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0x1030, symBinAddr: 0x3DAE0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8AABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3DB80, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8AADD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3DBA0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x8AB0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x60, symBinAddr: 0x3DBE0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8AB31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xB0, symBinAddr: 0x3DC30, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x8AB60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x130, symBinAddr: 0x3DCB0, symSize: 0x40 } - - { offsetInCU: 0x11B, offset: 0x8AB8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x1B0, symBinAddr: 0x3DD30, symSize: 0x40 } - - { offsetInCU: 0x14A, offset: 0x8ABBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1F0, symBinAddr: 0x3DD70, symSize: 0x40 } - - { offsetInCU: 0x177, offset: 0x8ABEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x230, symBinAddr: 0x3DDB0, symSize: 0x50 } - - { offsetInCU: 0x19E, offset: 0x8AC12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x280, symBinAddr: 0x3DE00, symSize: 0x40 } - - { offsetInCU: 0x1CD, offset: 0x8AC41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2C0, symBinAddr: 0x3DE40, symSize: 0x10 } - - { offsetInCU: 0x1F8, offset: 0x8AC6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2D0, symBinAddr: 0x3DE50, symSize: 0x30 } - - { offsetInCU: 0x225, offset: 0x8AC99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x320, symBinAddr: 0x3DEA0, symSize: 0x40 } - - { offsetInCU: 0x254, offset: 0x8ACC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x430, symBinAddr: 0x3DFB0, symSize: 0x40 } - - { offsetInCU: 0x283, offset: 0x8ACF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x4B0, symBinAddr: 0x3E030, symSize: 0x40 } - - { offsetInCU: 0x2B2, offset: 0x8AD26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x530, symBinAddr: 0x3E0B0, symSize: 0x40 } - - { offsetInCU: 0x2E1, offset: 0x8AD55, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x5B0, symBinAddr: 0x3E130, symSize: 0x40 } - - { offsetInCU: 0x310, offset: 0x8AD84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x5F0, symBinAddr: 0x3E170, symSize: 0x40 } - - { offsetInCU: 0x33D, offset: 0x8ADB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x630, symBinAddr: 0x3E1B0, symSize: 0x50 } - - { offsetInCU: 0x37A, offset: 0x8ADEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x680, symBinAddr: 0x3E200, symSize: 0x40 } - - { offsetInCU: 0x399, offset: 0x8AE0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x6C0, symBinAddr: 0x3E240, symSize: 0x30 } - - { offsetInCU: 0x3C6, offset: 0x8AE3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x710, symBinAddr: 0x3E290, symSize: 0x40 } - - { offsetInCU: 0x3F5, offset: 0x8AE69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x750, symBinAddr: 0x3E2D0, symSize: 0x30 } - - { offsetInCU: 0x422, offset: 0x8AE96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x7A0, symBinAddr: 0x3E320, symSize: 0x40 } - - { offsetInCU: 0x451, offset: 0x8AEC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x7E0, symBinAddr: 0x3E360, symSize: 0x30 } - - { offsetInCU: 0x47E, offset: 0x8AEF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x870, symBinAddr: 0x3E3F0, symSize: 0x40 } - - { offsetInCU: 0x4AD, offset: 0x8AF21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x980, symBinAddr: 0x3E500, symSize: 0x40 } - - { offsetInCU: 0x4DC, offset: 0x8AF50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0xA00, symBinAddr: 0x3E580, symSize: 0x40 } - - { offsetInCU: 0x50B, offset: 0x8AF7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0xA80, symBinAddr: 0x3E600, symSize: 0x40 } - - { offsetInCU: 0x53A, offset: 0x8AFAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xB90, symBinAddr: 0x3E710, symSize: 0x40 } - - { offsetInCU: 0x569, offset: 0x8AFDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xBD0, symBinAddr: 0x3E750, symSize: 0x40 } - - { offsetInCU: 0x596, offset: 0x8B00A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xC10, symBinAddr: 0x3E790, symSize: 0x50 } - - { offsetInCU: 0x5BD, offset: 0x8B031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xC60, symBinAddr: 0x3E7E0, symSize: 0x40 } - - { offsetInCU: 0x8D4, offset: 0x8B348, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xCA0, symBinAddr: 0x3E820, symSize: 0xC80 } - - { offsetInCU: 0x13C0, offset: 0x8BE34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x1920, symBinAddr: 0x3F4A0, symSize: 0x170 } - - { offsetInCU: 0x13ED, offset: 0x8BE61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1A90, symBinAddr: 0x3F610, symSize: 0x20 } - - { offsetInCU: 0x1409, offset: 0x8BE7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1AB0, symBinAddr: 0x3F630, symSize: 0x30 } - - { offsetInCU: 0x1630, offset: 0x8C0A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x1AE0, symBinAddr: 0x3F660, symSize: 0x90 } - - { offsetInCU: 0x1675, offset: 0x8C0E9, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1B70, symBinAddr: 0x3F6F0, symSize: 0x60 } - - { offsetInCU: 0x16CD, offset: 0x8C141, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1BD0, symBinAddr: 0x3F750, symSize: 0x30 } - - { offsetInCU: 0x171A, offset: 0x8C18E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1C00, symBinAddr: 0x3F780, symSize: 0xE0 } - - { offsetInCU: 0x1764, offset: 0x8C1D8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1CE0, symBinAddr: 0x3F860, symSize: 0x90 } - - { offsetInCU: 0x1794, offset: 0x8C208, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1DD0, symBinAddr: 0x3F950, symSize: 0x220 } - - { offsetInCU: 0x1812, offset: 0x8C286, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1FF0, symBinAddr: 0x3FB70, symSize: 0x210 } - - { offsetInCU: 0x18AC, offset: 0x8C320, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x2620, symBinAddr: 0x401A0, symSize: 0x220 } - - { offsetInCU: 0x1946, offset: 0x8C3BA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x28A0, symBinAddr: 0x40420, symSize: 0x3C0 } - - { offsetInCU: 0x1A4A, offset: 0x8C4BE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x2C60, symBinAddr: 0x407E0, symSize: 0x3B0 } - - { offsetInCU: 0x1B6A, offset: 0x8C5DE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x36F0, symBinAddr: 0x41270, symSize: 0x3B0 } - - { offsetInCU: 0x1C7F, offset: 0x8C6F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x3AA0, symBinAddr: 0x41620, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8CA0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x41750, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8CA33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x41750, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8CA51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x41770, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x8CA7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x417B0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8CAA5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x41800, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x8CAD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x41840, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x8CAFF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x41850, symSize: 0x30 } - - { offsetInCU: 0x144, offset: 0x8CB2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x41880, symSize: 0x40 } - - { offsetInCU: 0x16B, offset: 0x8CB53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x418C0, symSize: 0x40 } - - { offsetInCU: 0x19A, offset: 0x8CB82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x41900, symSize: 0x50 } - - { offsetInCU: 0x1C7, offset: 0x8CBAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x41950, symSize: 0x50 } - - { offsetInCU: 0x1EE, offset: 0x8CBD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x419A0, symSize: 0x40 } - - { offsetInCU: 0x21D, offset: 0x8CC05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x419E0, symSize: 0x40 } - - { offsetInCU: 0x24A, offset: 0x8CC32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x41A20, symSize: 0x50 } - - { offsetInCU: 0x287, offset: 0x8CC6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x41A70, symSize: 0x40 } - - { offsetInCU: 0x2A6, offset: 0x8CC8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x41AB0, symSize: 0x10 } - - { offsetInCU: 0x2C2, offset: 0x8CCAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x41AC0, symSize: 0xA0 } - - { offsetInCU: 0x2EF, offset: 0x8CCD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x41B60, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x8CCF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x430, symBinAddr: 0x41B80, symSize: 0x30 } - - { offsetInCU: 0x470, offset: 0x8CE58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x41BE0, symSize: 0x6B0 } - - { offsetInCU: 0xB5A, offset: 0x8D542, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x460, symBinAddr: 0x41BB0, symSize: 0x30 } - - { offsetInCU: 0xD49, offset: 0x8D731, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xB40, symBinAddr: 0x42290, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8D993, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x422E0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8D9B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x422E0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8D9D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x42300, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x8DA02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x42340, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8DA29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x42390, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x8DA58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x423D0, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x8DA83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x423E0, symSize: 0x30 } - - { offsetInCU: 0x144, offset: 0x8DAB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x42410, symSize: 0x40 } - - { offsetInCU: 0x16B, offset: 0x8DAD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x42450, symSize: 0x40 } - - { offsetInCU: 0x19A, offset: 0x8DB06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x42490, symSize: 0x50 } - - { offsetInCU: 0x1C7, offset: 0x8DB33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x424E0, symSize: 0x50 } - - { offsetInCU: 0x1EE, offset: 0x8DB5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x42530, symSize: 0x40 } - - { offsetInCU: 0x21D, offset: 0x8DB89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x42570, symSize: 0x40 } - - { offsetInCU: 0x24A, offset: 0x8DBB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x425B0, symSize: 0x50 } - - { offsetInCU: 0x287, offset: 0x8DBF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x42600, symSize: 0x40 } - - { offsetInCU: 0x2A6, offset: 0x8DC12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x42640, symSize: 0x10 } - - { offsetInCU: 0x2C2, offset: 0x8DC2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x370, symBinAddr: 0x42650, symSize: 0xA0 } - - { offsetInCU: 0x2EF, offset: 0x8DC5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x426F0, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x8DC77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x430, symBinAddr: 0x42710, symSize: 0x30 } - - { offsetInCU: 0x470, offset: 0x8DDDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x42770, symSize: 0x690 } - - { offsetInCU: 0xB72, offset: 0x8E4DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x460, symBinAddr: 0x42740, symSize: 0x30 } - - { offsetInCU: 0xD78, offset: 0x8E6E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xB20, symBinAddr: 0x42E00, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x8E96A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x42E50, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8E988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x42E70, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x8E9B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x60, symBinAddr: 0x42EB0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x8E9DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xB0, symBinAddr: 0x42F00, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x8EA0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xF0, symBinAddr: 0x42F40, symSize: 0x40 } - - { offsetInCU: 0x119, offset: 0x8EA38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x130, symBinAddr: 0x42F80, symSize: 0x50 } - - { offsetInCU: 0x140, offset: 0x8EA5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x180, symBinAddr: 0x42FD0, symSize: 0x40 } - - { offsetInCU: 0x16F, offset: 0x8EA8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1C0, symBinAddr: 0x43010, symSize: 0x40 } - - { offsetInCU: 0x19C, offset: 0x8EABB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x200, symBinAddr: 0x43050, symSize: 0x50 } - - { offsetInCU: 0x1C3, offset: 0x8EAE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x250, symBinAddr: 0x430A0, symSize: 0x40 } - - { offsetInCU: 0x1F2, offset: 0x8EB11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2D0, symBinAddr: 0x43120, symSize: 0x40 } - - { offsetInCU: 0x221, offset: 0x8EB40, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x43160, symSize: 0x10 } - - { offsetInCU: 0x24C, offset: 0x8EB6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x360, symBinAddr: 0x431B0, symSize: 0x40 } - - { offsetInCU: 0x27B, offset: 0x8EB9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3E0, symBinAddr: 0x43230, symSize: 0x40 } - - { offsetInCU: 0x2AA, offset: 0x8EBC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x4E0, symBinAddr: 0x43330, symSize: 0x40 } - - { offsetInCU: 0x2C9, offset: 0x8EBE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x560, symBinAddr: 0x433B0, symSize: 0x40 } - - { offsetInCU: 0x2F8, offset: 0x8EC17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x670, symBinAddr: 0x434C0, symSize: 0x40 } - - { offsetInCU: 0x327, offset: 0x8EC46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x6B0, symBinAddr: 0x43500, symSize: 0x50 } - - { offsetInCU: 0x344, offset: 0x8EC63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x700, symBinAddr: 0x43550, symSize: 0x50 } - - { offsetInCU: 0x36B, offset: 0x8EC8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x750, symBinAddr: 0x435A0, symSize: 0x40 } - - { offsetInCU: 0x39A, offset: 0x8ECB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x860, symBinAddr: 0x436B0, symSize: 0x40 } - - { offsetInCU: 0x3C9, offset: 0x8ECE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x950, symBinAddr: 0x437A0, symSize: 0x40 } - - { offsetInCU: 0x64A, offset: 0x8EF69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x990, symBinAddr: 0x437E0, symSize: 0xC40 } - - { offsetInCU: 0x104B, offset: 0x8F96A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x15D0, symBinAddr: 0x44420, symSize: 0x110 } - - { offsetInCU: 0x1078, offset: 0x8F997, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x16E0, symBinAddr: 0x44530, symSize: 0x20 } - - { offsetInCU: 0x1094, offset: 0x8F9B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1700, symBinAddr: 0x44550, symSize: 0x30 } - - { offsetInCU: 0x1394, offset: 0x8FCB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x1730, symBinAddr: 0x44580, symSize: 0x70 } - - { offsetInCU: 0x13C3, offset: 0x8FCE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x17A0, symBinAddr: 0x445F0, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90007, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x446C0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x9002B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x446C0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90049, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x446E0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x90076, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x44720, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x9009D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x44770, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x900CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x447B0, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x900F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x447C0, symSize: 0x30 } - - { offsetInCU: 0x144, offset: 0x90124, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x447F0, symSize: 0x40 } - - { offsetInCU: 0x16B, offset: 0x9014B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x44830, symSize: 0x40 } - - { offsetInCU: 0x19A, offset: 0x9017A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x44870, symSize: 0x50 } - - { offsetInCU: 0x1C7, offset: 0x901A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x448C0, symSize: 0x50 } - - { offsetInCU: 0x1EE, offset: 0x901CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x44910, symSize: 0x40 } - - { offsetInCU: 0x21D, offset: 0x901FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x44950, symSize: 0x40 } - - { offsetInCU: 0x24A, offset: 0x9022A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x44990, symSize: 0x50 } - - { offsetInCU: 0x287, offset: 0x90267, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x449E0, symSize: 0x40 } - - { offsetInCU: 0x2A6, offset: 0x90286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x44A20, symSize: 0x10 } - - { offsetInCU: 0x2C2, offset: 0x902A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x370, symBinAddr: 0x44A30, symSize: 0xA0 } - - { offsetInCU: 0x2EF, offset: 0x902CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x44AD0, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x902EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x430, symBinAddr: 0x44AF0, symSize: 0x30 } - - { offsetInCU: 0x470, offset: 0x90450, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x44B50, symSize: 0x6B0 } - - { offsetInCU: 0xB5A, offset: 0x90B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x460, symBinAddr: 0x44B20, symSize: 0x30 } - - { offsetInCU: 0xD49, offset: 0x90D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xB40, symBinAddr: 0x45200, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90F8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x45250, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x90FAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x45250, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x90FCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x45270, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x90FFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x452B0, symSize: 0x50 } - - { offsetInCU: 0xBD, offset: 0x91021, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x45300, symSize: 0x40 } - - { offsetInCU: 0xEC, offset: 0x91050, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x45340, symSize: 0x10 } - - { offsetInCU: 0x117, offset: 0x9107B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x45350, symSize: 0x30 } - - { offsetInCU: 0x144, offset: 0x910A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x45380, symSize: 0x40 } - - { offsetInCU: 0x16B, offset: 0x910CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x453C0, symSize: 0x40 } - - { offsetInCU: 0x19A, offset: 0x910FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x45400, symSize: 0x50 } - - { offsetInCU: 0x1C7, offset: 0x9112B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x45450, symSize: 0x50 } - - { offsetInCU: 0x1EE, offset: 0x91152, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x454A0, symSize: 0x40 } - - { offsetInCU: 0x21D, offset: 0x91181, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x454E0, symSize: 0x40 } - - { offsetInCU: 0x24A, offset: 0x911AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x45520, symSize: 0x50 } - - { offsetInCU: 0x287, offset: 0x911EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x45570, symSize: 0x40 } - - { offsetInCU: 0x2A6, offset: 0x9120A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x455B0, symSize: 0x10 } - - { offsetInCU: 0x2C2, offset: 0x91226, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x370, symBinAddr: 0x455C0, symSize: 0xA0 } - - { offsetInCU: 0x2EF, offset: 0x91253, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x45660, symSize: 0x20 } - - { offsetInCU: 0x30B, offset: 0x9126F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x430, symBinAddr: 0x45680, symSize: 0x30 } - - { offsetInCU: 0x470, offset: 0x913D4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x456E0, symSize: 0x690 } - - { offsetInCU: 0xB72, offset: 0x91AD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x460, symBinAddr: 0x456B0, symSize: 0x30 } - - { offsetInCU: 0xD61, offset: 0x91CC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xB20, symBinAddr: 0x45D70, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x91F27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x45DC0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x91F4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x45DC0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x91F69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x45DE0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x91F96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x60, symBinAddr: 0x45E20, symSize: 0x50 } - - { offsetInCU: 0xD3, offset: 0x91FD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB0, symBinAddr: 0x45E70, symSize: 0x40 } - - { offsetInCU: 0xF2, offset: 0x91FF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x45EB0, symSize: 0x10 } - - { offsetInCU: 0x11D, offset: 0x9201D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x45EC0, symSize: 0x30 } - - { offsetInCU: 0x14A, offset: 0x9204A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x45EF0, symSize: 0x40 } - - { offsetInCU: 0x171, offset: 0x92071, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x45F30, symSize: 0x40 } - - { offsetInCU: 0x1A0, offset: 0x920A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x45F70, symSize: 0x50 } - - { offsetInCU: 0x1CD, offset: 0x920CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x45FC0, symSize: 0x50 } - - { offsetInCU: 0x1F4, offset: 0x920F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x46010, symSize: 0x40 } - - { offsetInCU: 0x223, offset: 0x92123, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x46050, symSize: 0x40 } - - { offsetInCU: 0x250, offset: 0x92150, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x46090, symSize: 0x50 } - - { offsetInCU: 0x28D, offset: 0x9218D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x460E0, symSize: 0x40 } - - { offsetInCU: 0x2AC, offset: 0x921AC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x46120, symSize: 0x10 } - - { offsetInCU: 0x2C8, offset: 0x921C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x46130, symSize: 0xB0 } - - { offsetInCU: 0x2F5, offset: 0x921F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x420, symBinAddr: 0x461E0, symSize: 0x20 } - - { offsetInCU: 0x311, offset: 0x92211, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x440, symBinAddr: 0x46200, symSize: 0x30 } - - { offsetInCU: 0x46A, offset: 0x9236A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4B0, symBinAddr: 0x46270, symSize: 0x810 } - - { offsetInCU: 0xC60, offset: 0x92B60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x470, symBinAddr: 0x46230, symSize: 0x40 } - - { offsetInCU: 0xEB2, offset: 0x92DB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xCC0, symBinAddr: 0x46A80, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x93037, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x46AD0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x9305B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x46AD0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x93079, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x46AF0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x930A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x60, symBinAddr: 0x46B30, symSize: 0x50 } - - { offsetInCU: 0xD3, offset: 0x930E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB0, symBinAddr: 0x46B80, symSize: 0x40 } - - { offsetInCU: 0xF2, offset: 0x93102, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x46BC0, symSize: 0x10 } - - { offsetInCU: 0x11D, offset: 0x9312D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x46BD0, symSize: 0x30 } - - { offsetInCU: 0x14A, offset: 0x9315A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x46C00, symSize: 0x40 } - - { offsetInCU: 0x171, offset: 0x93181, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x46C40, symSize: 0x40 } - - { offsetInCU: 0x1A0, offset: 0x931B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x46C80, symSize: 0x50 } - - { offsetInCU: 0x1CD, offset: 0x931DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x46CD0, symSize: 0x50 } - - { offsetInCU: 0x1F4, offset: 0x93204, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x46D20, symSize: 0x40 } - - { offsetInCU: 0x223, offset: 0x93233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x46D60, symSize: 0x40 } - - { offsetInCU: 0x250, offset: 0x93260, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x46DA0, symSize: 0x50 } - - { offsetInCU: 0x28D, offset: 0x9329D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x46DF0, symSize: 0x40 } - - { offsetInCU: 0x2AC, offset: 0x932BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x46E30, symSize: 0x10 } - - { offsetInCU: 0x2C8, offset: 0x932D8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x46E40, symSize: 0xB0 } - - { offsetInCU: 0x2F5, offset: 0x93305, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x420, symBinAddr: 0x46EF0, symSize: 0x20 } - - { offsetInCU: 0x311, offset: 0x93321, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x440, symBinAddr: 0x46F10, symSize: 0x30 } - - { offsetInCU: 0x46A, offset: 0x9347A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4B0, symBinAddr: 0x46F80, symSize: 0x820 } - - { offsetInCU: 0xC58, offset: 0x93C68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x470, symBinAddr: 0x46F40, symSize: 0x40 } - - { offsetInCU: 0xEC6, offset: 0x93ED6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xCD0, symBinAddr: 0x477A0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x94185, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x477F0, symSize: 0x40 } - - { offsetInCU: 0x78, offset: 0x941B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x40, symBinAddr: 0x47830, symSize: 0x50 } - - { offsetInCU: 0xB5, offset: 0x941EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0x90, symBinAddr: 0x47880, symSize: 0x40 } - - { offsetInCU: 0xE4, offset: 0x9421E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xD0, symBinAddr: 0x478C0, symSize: 0x40 } - - { offsetInCU: 0x101, offset: 0x9423B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x110, symBinAddr: 0x47900, symSize: 0x50 } - - { offsetInCU: 0x13E, offset: 0x94278, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x160, symBinAddr: 0x47950, symSize: 0x40 } - - { offsetInCU: 0x16D, offset: 0x942A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x479D0, symSize: 0x40 } - - { offsetInCU: 0x19C, offset: 0x942D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x220, symBinAddr: 0x47A10, symSize: 0x40 } - - { offsetInCU: 0x1B9, offset: 0x942F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x260, symBinAddr: 0x47A50, symSize: 0x50 } - - { offsetInCU: 0x1F6, offset: 0x94330, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2B0, symBinAddr: 0x47AA0, symSize: 0x40 } - - { offsetInCU: 0x225, offset: 0x9435F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x2F0, symBinAddr: 0x47AE0, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x9438A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x340, symBinAddr: 0x47B30, symSize: 0x40 } - - { offsetInCU: 0x27F, offset: 0x943B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3C0, symBinAddr: 0x47BB0, symSize: 0x40 } - - { offsetInCU: 0x2AE, offset: 0x943E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x4C0, symBinAddr: 0x47CB0, symSize: 0x40 } - - { offsetInCU: 0x2DD, offset: 0x94417, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x5D0, symBinAddr: 0x47DC0, symSize: 0x40 } - - { offsetInCU: 0x30C, offset: 0x94446, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x6E0, symBinAddr: 0x47ED0, symSize: 0x40 } - - { offsetInCU: 0x34A, offset: 0x94484, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x720, symBinAddr: 0x47F10, symSize: 0x100 } - - { offsetInCU: 0x37E, offset: 0x944B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x820, symBinAddr: 0x48010, symSize: 0xC0 } - - { offsetInCU: 0x482, offset: 0x945BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x8E0, symBinAddr: 0x480D0, symSize: 0x7E0 } - - { offsetInCU: 0x10A9, offset: 0x951E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0x10C0, symBinAddr: 0x488B0, symSize: 0x20 } - - { offsetInCU: 0x10C7, offset: 0x95201, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0x10E0, symBinAddr: 0x488D0, symSize: 0x30 } - - { offsetInCU: 0x112A, offset: 0x95264, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x1110, symBinAddr: 0x48900, symSize: 0x30 } - - { offsetInCU: 0x1191, offset: 0x952CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x1140, symBinAddr: 0x48930, symSize: 0x30 } - - { offsetInCU: 0x11BE, offset: 0x952F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfcTf4nnnngggngn_n', symObjAddr: 0x11D0, symBinAddr: 0x489C0, symSize: 0x3C0 } - - { offsetInCU: 0x13F0, offset: 0x9552A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1170, symBinAddr: 0x48960, symSize: 0x60 } - - { offsetInCU: 0x141F, offset: 0x95559, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0x1590, symBinAddr: 0x48D80, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x95825, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x48E20, symSize: 0xF0 } - - { offsetInCU: 0x81, offset: 0x9587F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x48E20, symSize: 0xF0 } - - { offsetInCU: 0xFB, offset: 0x958F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xF0, symBinAddr: 0x48F10, symSize: 0xF0 } - - { offsetInCU: 0x142, offset: 0x95940, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x1E0, symBinAddr: 0x49000, symSize: 0x40 } - - { offsetInCU: 0x15E, offset: 0x9595C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x220, symBinAddr: 0x49040, symSize: 0x40 } - - { offsetInCU: 0x17A, offset: 0x95978, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x260, symBinAddr: 0x49080, symSize: 0x30 } - - { offsetInCU: 0x196, offset: 0x95994, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x290, symBinAddr: 0x490B0, symSize: 0x30 } - - { offsetInCU: 0x1B2, offset: 0x959B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x2C0, symBinAddr: 0x490E0, symSize: 0x30 } - - { offsetInCU: 0x1CE, offset: 0x959CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x2F0, symBinAddr: 0x49110, symSize: 0x30 } - - { offsetInCU: 0x1EA, offset: 0x959E8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x320, symBinAddr: 0x49140, symSize: 0x30 } - - { offsetInCU: 0x206, offset: 0x95A04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x350, symBinAddr: 0x49170, symSize: 0x30 } - - { offsetInCU: 0x222, offset: 0x95A20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x380, symBinAddr: 0x491A0, symSize: 0x30 } - - { offsetInCU: 0x23E, offset: 0x95A3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x3B0, symBinAddr: 0x491D0, symSize: 0x30 } - - { offsetInCU: 0x25A, offset: 0x95A58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x3E0, symBinAddr: 0x49200, symSize: 0x30 } - - { offsetInCU: 0x276, offset: 0x95A74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x410, symBinAddr: 0x49230, symSize: 0x30 } - - { offsetInCU: 0x292, offset: 0x95A90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x440, symBinAddr: 0x49260, symSize: 0x30 } - - { offsetInCU: 0x2AE, offset: 0x95AAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x470, symBinAddr: 0x49290, symSize: 0x30 } - - { offsetInCU: 0x2CA, offset: 0x95AC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x4A0, symBinAddr: 0x492C0, symSize: 0x30 } - - { offsetInCU: 0x2E6, offset: 0x95AE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x4D0, symBinAddr: 0x492F0, symSize: 0x10 } - - { offsetInCU: 0x302, offset: 0x95B00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x4E0, symBinAddr: 0x49300, symSize: 0x30 } - - { offsetInCU: 0x31E, offset: 0x95B1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x510, symBinAddr: 0x49330, symSize: 0x30 } - - { offsetInCU: 0x33A, offset: 0x95B38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x540, symBinAddr: 0x49360, symSize: 0x30 } - - { offsetInCU: 0x356, offset: 0x95B54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x570, symBinAddr: 0x49390, symSize: 0xD0 } - - { offsetInCU: 0x37D, offset: 0x95B7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x640, symBinAddr: 0x49460, symSize: 0xE0 } - - { offsetInCU: 0x3AE, offset: 0x95BAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x720, symBinAddr: 0x49540, symSize: 0x250 } - - { offsetInCU: 0x54E, offset: 0x95D4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0x970, symBinAddr: 0x49790, symSize: 0x20 } - - { offsetInCU: 0x589, offset: 0x95D87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0x990, symBinAddr: 0x497B0, symSize: 0x20 } - - { offsetInCU: 0x69E, offset: 0x95E9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0x9B0, symBinAddr: 0x497D0, symSize: 0x20 } - - { offsetInCU: 0x5E, offset: 0x9601A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x49840, symSize: 0x50 } - - { offsetInCU: 0x92, offset: 0x9604E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x190, symBinAddr: 0x499D0, symSize: 0x30 } - - { offsetInCU: 0xA6, offset: 0x96062, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x1C0, symBinAddr: 0x49A00, symSize: 0x70 } - - { offsetInCU: 0x100, offset: 0x960BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x230, symBinAddr: 0x49A70, symSize: 0xB0 } - - { offsetInCU: 0x15E, offset: 0x9611A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x2E0, symBinAddr: 0x49B20, symSize: 0x50 } - - { offsetInCU: 0x186, offset: 0x96142, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x330, symBinAddr: 0x49B70, symSize: 0x120 } - - { offsetInCU: 0x1EE, offset: 0x961AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x450, symBinAddr: 0x49C90, symSize: 0x60 } - - { offsetInCU: 0x23A, offset: 0x961F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x4B0, symBinAddr: 0x49CF0, symSize: 0x80 } - - { offsetInCU: 0x298, offset: 0x96254, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x530, symBinAddr: 0x49D70, symSize: 0xC0 } - - { offsetInCU: 0x2D8, offset: 0x96294, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x5F0, symBinAddr: 0x49E30, symSize: 0xF0 } - - { offsetInCU: 0x309, offset: 0x962C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x6E0, symBinAddr: 0x49F20, symSize: 0xE0 } - - { offsetInCU: 0x363, offset: 0x9631F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x7C0, symBinAddr: 0x4A000, symSize: 0xC0 } - - { offsetInCU: 0x3C1, offset: 0x9637D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0x880, symBinAddr: 0x4A0C0, symSize: 0xB0 } - - { offsetInCU: 0x40D, offset: 0x963C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0x930, symBinAddr: 0x4A170, symSize: 0x70 } - - { offsetInCU: 0x46B, offset: 0x96427, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0x9A0, symBinAddr: 0x4A1E0, symSize: 0x180 } - - { offsetInCU: 0x4C6, offset: 0x96482, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xB20, symBinAddr: 0x4A360, symSize: 0xA0 } - - { offsetInCU: 0x50E, offset: 0x964CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xBC0, symBinAddr: 0x4A400, symSize: 0x20 } - - { offsetInCU: 0x549, offset: 0x96505, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xBE0, symBinAddr: 0x4A420, symSize: 0x30 } - - { offsetInCU: 0x593, offset: 0x9654F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xC80, symBinAddr: 0x4A4C0, symSize: 0xD0 } - - { offsetInCU: 0x5AF, offset: 0x9656B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xD50, symBinAddr: 0x4A590, symSize: 0x50 } - - { offsetInCU: 0x5CB, offset: 0x96587, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xDA0, symBinAddr: 0x4A5E0, symSize: 0xA0 } - - { offsetInCU: 0x622, offset: 0x965DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0xE40, symBinAddr: 0x4A680, symSize: 0x30 } - - { offsetInCU: 0x66B, offset: 0x96627, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x1140, symBinAddr: 0x4A980, symSize: 0x40 } - - { offsetInCU: 0x69D, offset: 0x96659, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfcTf4ngn_n', symObjAddr: 0x1520, symBinAddr: 0x4AD60, symSize: 0x110 } - - { offsetInCU: 0x716, offset: 0x966D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x1690, symBinAddr: 0x4AED0, symSize: 0x2C0 } - - { offsetInCU: 0x797, offset: 0x96753, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1630, symBinAddr: 0x4AE70, symSize: 0x20 } - - { offsetInCU: 0x7AB, offset: 0x96767, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x1650, symBinAddr: 0x4AE90, symSize: 0x20 } - - { offsetInCU: 0x7BF, offset: 0x9677B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x1670, symBinAddr: 0x4AEB0, symSize: 0x20 } - - { offsetInCU: 0x7D3, offset: 0x9678F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x1950, symBinAddr: 0x4B190, symSize: 0x20 } - - { offsetInCU: 0x7E7, offset: 0x967A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x1970, symBinAddr: 0x4B1B0, symSize: 0x20 } - - { offsetInCU: 0x7FB, offset: 0x967B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1990, symBinAddr: 0x4B1D0, symSize: 0x20 } - - { offsetInCU: 0x80F, offset: 0x967CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x19F0, symBinAddr: 0x4B230, symSize: 0x20 } - - { offsetInCU: 0x823, offset: 0x967DF, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1A10, symBinAddr: 0x4B250, symSize: 0x20 } - - { offsetInCU: 0x837, offset: 0x967F3, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1A30, symBinAddr: 0x4B270, symSize: 0x10 } - - { offsetInCU: 0x84B, offset: 0x96807, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x1A40, symBinAddr: 0x4B280, symSize: 0x20 } - - { offsetInCU: 0x85F, offset: 0x9681B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1A60, symBinAddr: 0x4B2A0, symSize: 0x20 } - - { offsetInCU: 0x873, offset: 0x9682F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1A80, symBinAddr: 0x4B2C0, symSize: 0x20 } - - { offsetInCU: 0x887, offset: 0x96843, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1AA0, symBinAddr: 0x4B2E0, symSize: 0x20 } - - { offsetInCU: 0x89B, offset: 0x96857, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1AC0, symBinAddr: 0x4B300, symSize: 0x20 } - - { offsetInCU: 0x8AF, offset: 0x9686B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1AE0, symBinAddr: 0x4B320, symSize: 0x10 } - - { offsetInCU: 0x8C3, offset: 0x9687F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1AF0, symBinAddr: 0x4B330, symSize: 0x50 } - - { offsetInCU: 0x8D7, offset: 0x96893, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1B40, symBinAddr: 0x4B380, symSize: 0x10 } - - { offsetInCU: 0x8EB, offset: 0x968A7, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B50, symBinAddr: 0x4B390, symSize: 0x20 } - - { offsetInCU: 0x8FF, offset: 0x968BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1D90, symBinAddr: 0x4B5D0, symSize: 0x80 } - - { offsetInCU: 0x913, offset: 0x968CF, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1E40, symBinAddr: 0x4B650, symSize: 0x30 } - - { offsetInCU: 0x93B, offset: 0x968F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0xE70, symBinAddr: 0x4A6B0, symSize: 0x50 } - - { offsetInCU: 0x957, offset: 0x96913, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0xEC0, symBinAddr: 0x4A700, symSize: 0x40 } - - { offsetInCU: 0x973, offset: 0x9692F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0xF00, symBinAddr: 0x4A740, symSize: 0x10 } - - { offsetInCU: 0x98F, offset: 0x9694B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0xF10, symBinAddr: 0x4A750, symSize: 0x10 } - - { offsetInCU: 0x9C0, offset: 0x9697C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0xF20, symBinAddr: 0x4A760, symSize: 0x10 } - - { offsetInCU: 0x9F1, offset: 0x969AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0xF30, symBinAddr: 0x4A770, symSize: 0x50 } - - { offsetInCU: 0xA0D, offset: 0x969C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0xF80, symBinAddr: 0x4A7C0, symSize: 0x60 } - - { offsetInCU: 0xA29, offset: 0x969E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0xFE0, symBinAddr: 0x4A820, symSize: 0x50 } - - { offsetInCU: 0xA54, offset: 0x96A10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x10F0, symBinAddr: 0x4A930, symSize: 0x50 } - - { offsetInCU: 0xAA0, offset: 0x96A5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x1180, symBinAddr: 0x4A9C0, symSize: 0x80 } - - { offsetInCU: 0xAEB, offset: 0x96AA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x1200, symBinAddr: 0x4AA40, symSize: 0x60 } - - { offsetInCU: 0xB29, offset: 0x96AE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x1260, symBinAddr: 0x4AAA0, symSize: 0x30 } - - { offsetInCU: 0xB45, offset: 0x96B01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x1290, symBinAddr: 0x4AAD0, symSize: 0x10 } - - { offsetInCU: 0xB76, offset: 0x96B32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x12A0, symBinAddr: 0x4AAE0, symSize: 0x50 } - - { offsetInCU: 0xBA7, offset: 0x96B63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x12F0, symBinAddr: 0x4AB30, symSize: 0x50 } - - { offsetInCU: 0xBC3, offset: 0x96B7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x1340, symBinAddr: 0x4AB80, symSize: 0x60 } - - { offsetInCU: 0xBE6, offset: 0x96BA2, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x1510, symBinAddr: 0x4AD50, symSize: 0x10 } - - { offsetInCU: 0xC0F, offset: 0x96BCB, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B70, symBinAddr: 0x4B3B0, symSize: 0x150 } + - { offsetInCU: 0x34, offset: 0x569F9, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionString, symObjAddr: 0x0, symBinAddr: 0x4B7D0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x56A2E, size: 0x8, addend: 0x0, symName: _CocoaMQTTVersionNumber, symObjAddr: 0x28, symBinAddr: 0x4B7F8, symSize: 0x0 } + - { offsetInCU: 0xAB, offset: 0x56AEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x240, symBinAddr: 0x1AB0, symSize: 0x30 } + - { offsetInCU: 0xD4, offset: 0x56B18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x270, symBinAddr: 0x1AE0, symSize: 0x10 } + - { offsetInCU: 0xF0, offset: 0x56B34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x280, symBinAddr: 0x1AF0, symSize: 0x10 } + - { offsetInCU: 0x10C, offset: 0x56B50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x82A0, symBinAddr: 0x9AF0, symSize: 0x20 } + - { offsetInCU: 0x190, offset: 0x56BD4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x82C0, symBinAddr: 0x9B10, symSize: 0x80 } + - { offsetInCU: 0x280, offset: 0x56CC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt3VersionyyF', symObjAddr: 0x290, symBinAddr: 0x1B00, symSize: 0x130 } + - { offsetInCU: 0x3AE, offset: 0x56DF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvpfi', symObjAddr: 0x3C0, symBinAddr: 0x1C30, symSize: 0x10 } + - { offsetInCU: 0x629, offset: 0x5706D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_', symObjAddr: 0xD90, symBinAddr: 0x2600, symSize: 0x100 } + - { offsetInCU: 0xB2D, offset: 0x57571, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x23E0, symBinAddr: 0x3C50, symSize: 0x10 } + - { offsetInCU: 0xB45, offset: 0x57589, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvpfiyAB_AEtcfU_', symObjAddr: 0x23F0, symBinAddr: 0x3C60, symSize: 0x10 } + - { offsetInCU: 0xB96, offset: 0x575DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x2480, symBinAddr: 0x3CF0, symSize: 0x10 } + - { offsetInCU: 0xBAE, offset: 0x575F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvpfiyAB_AeGtcfU_', symObjAddr: 0x2490, symBinAddr: 0x3D00, symSize: 0x10 } + - { offsetInCU: 0xC0E, offset: 0x57652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2520, symBinAddr: 0x3D90, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x5766A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvpfiyAB_AEtcfU_', symObjAddr: 0x2530, symBinAddr: 0x3DA0, symSize: 0x10 } + - { offsetInCU: 0xC77, offset: 0x576BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16Vtcvpfi', symObjAddr: 0x25C0, symBinAddr: 0x3E30, symSize: 0x10 } + - { offsetInCU: 0xCA6, offset: 0x576EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfi', symObjAddr: 0x2650, symBinAddr: 0x3EC0, symSize: 0x10 } + - { offsetInCU: 0xCBE, offset: 0x57702, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvpfiyAB_AeFtcfU_', symObjAddr: 0x2660, symBinAddr: 0x3ED0, symSize: 0x10 } + - { offsetInCU: 0xD1E, offset: 0x57762, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvpfi', symObjAddr: 0x26F0, symBinAddr: 0x3F60, symSize: 0x10 } + - { offsetInCU: 0xD4D, offset: 0x57791, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfi', symObjAddr: 0x2780, symBinAddr: 0x3FF0, symSize: 0x10 } + - { offsetInCU: 0xD65, offset: 0x577A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvpfiyABcfU_', symObjAddr: 0x2790, symBinAddr: 0x4000, symSize: 0x10 } + - { offsetInCU: 0xDA7, offset: 0x577EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfi', symObjAddr: 0x2820, symBinAddr: 0x4090, symSize: 0x10 } + - { offsetInCU: 0xDBF, offset: 0x57803, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvpfiyABcfU_', symObjAddr: 0x2830, symBinAddr: 0x40A0, symSize: 0x10 } + - { offsetInCU: 0xE01, offset: 0x57845, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfi', symObjAddr: 0x28C0, symBinAddr: 0x4130, symSize: 0x10 } + - { offsetInCU: 0xE19, offset: 0x5785D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvpfiyAB_AEtcfU_', symObjAddr: 0x28D0, symBinAddr: 0x4140, symSize: 0x10 } + - { offsetInCU: 0xE6A, offset: 0x578AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfi', symObjAddr: 0x2960, symBinAddr: 0x41D0, symSize: 0x10 } + - { offsetInCU: 0xE82, offset: 0x578C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvpfiyAB_AEySbctcfU_', symObjAddr: 0x2970, symBinAddr: 0x41E0, symSize: 0x10 } + - { offsetInCU: 0xEE4, offset: 0x57928, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16Vtcvpfi', symObjAddr: 0x2A00, symBinAddr: 0x4270, symSize: 0x10 } + - { offsetInCU: 0xF13, offset: 0x57957, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0Otcvpfi', symObjAddr: 0x2A90, symBinAddr: 0x4300, symSize: 0x10 } + - { offsetInCU: 0xFAF, offset: 0x579F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfDTo', symObjAddr: 0x3370, symBinAddr: 0x4BE0, symSize: 0x20 } + - { offsetInCU: 0x12AC, offset: 0x57CF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfcTo', symObjAddr: 0x4F20, symBinAddr: 0x6790, symSize: 0x30 } + - { offsetInCU: 0x1313, offset: 0x57D57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x4F50, symBinAddr: 0x67C0, symSize: 0x40 } + - { offsetInCU: 0x140F, offset: 0x57E53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7ConnectV_Tg5', symObjAddr: 0x72A0, symBinAddr: 0x8AF0, symSize: 0x240 } + - { offsetInCU: 0x15AF, offset: 0x57FF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L10DisconnectV_Tg5', symObjAddr: 0x7710, symBinAddr: 0x8F60, symSize: 0x250 } + - { offsetInCU: 0x174F, offset: 0x58193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PingReqV_Tg5', symObjAddr: 0x7960, symBinAddr: 0x91B0, symSize: 0x200 } + - { offsetInCU: 0x18EF, offset: 0x58333, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L9SubscribeV_Tg5', symObjAddr: 0x7B60, symBinAddr: 0x93B0, symSize: 0x240 } + - { offsetInCU: 0x1A8F, offset: 0x584D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L11UnsubscribeV_Tg5', symObjAddr: 0x7DA0, symBinAddr: 0x95F0, symSize: 0x2A0 } + - { offsetInCU: 0x1C31, offset: 0x58675, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4send33_B3FA8972440FEDD4D0FAB874FCB8E06BLL_3tagyAA5Frame_p_SitFTf4enn_nAA0L7PublishV_Tg5', symObjAddr: 0x8040, symBinAddr: 0x9890, symSize: 0x260 } + - { offsetInCU: 0x1EC2, offset: 0x58906, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7version33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSSvpfi', symObjAddr: 0x530, symBinAddr: 0x1DA0, symSize: 0x20 } + - { offsetInCU: 0x1EDA, offset: 0x5891E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvpfi', symObjAddr: 0x550, symBinAddr: 0x1DC0, symSize: 0x20 } + - { offsetInCU: 0x1EF2, offset: 0x58936, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvpfi', symObjAddr: 0x5F0, symBinAddr: 0x1E60, symSize: 0x10 } + - { offsetInCU: 0x1F0A, offset: 0x5894E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvpfi', symObjAddr: 0x770, symBinAddr: 0x1FE0, symSize: 0x10 } + - { offsetInCU: 0x1F22, offset: 0x58966, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvpfi', symObjAddr: 0x800, symBinAddr: 0x2070, symSize: 0x10 } + - { offsetInCU: 0x1F3A, offset: 0x5897E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvpfi', symObjAddr: 0x920, symBinAddr: 0x2190, symSize: 0x10 } + - { offsetInCU: 0x1F52, offset: 0x58996, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvpfi', symObjAddr: 0x9E0, symBinAddr: 0x2250, symSize: 0x10 } + - { offsetInCU: 0x1FE0, offset: 0x58A24, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovpfi', symObjAddr: 0xD80, symBinAddr: 0x25F0, symSize: 0x10 } + - { offsetInCU: 0x2141, offset: 0x58B85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvpfi', symObjAddr: 0x1480, symBinAddr: 0x2CF0, symSize: 0x10 } + - { offsetInCU: 0x2159, offset: 0x58B9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10aliveTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x1540, symBinAddr: 0x2DB0, symSize: 0x10 } + - { offsetInCU: 0x2171, offset: 0x58BB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvpfi', symObjAddr: 0x1550, symBinAddr: 0x2DC0, symSize: 0x10 } + - { offsetInCU: 0x2189, offset: 0x58BCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x1610, symBinAddr: 0x2E80, symSize: 0x10 } + - { offsetInCU: 0x21A1, offset: 0x58BE5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x16D0, symBinAddr: 0x2F40, symSize: 0x10 } + - { offsetInCU: 0x21B9, offset: 0x58BFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC21reconnectTimeInterval33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x1790, symBinAddr: 0x3000, symSize: 0x10 } + - { offsetInCU: 0x21D1, offset: 0x58C15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15autoReconnTimer33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x17A0, symBinAddr: 0x3010, symSize: 0x10 } + - { offsetInCU: 0x21E9, offset: 0x58C2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC24is_internal_disconnected33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSbvpfi', symObjAddr: 0x17B0, symBinAddr: 0x3020, symSize: 0x10 } + - { offsetInCU: 0x22C8, offset: 0x58D0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvpfi', symObjAddr: 0x2250, symBinAddr: 0x3AC0, symSize: 0x40 } + - { offsetInCU: 0x22F7, offset: 0x58D3B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC23subscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySS_AA0A7MQTTQoSOtGGvpfi', symObjAddr: 0x2360, symBinAddr: 0x3BD0, symSize: 0x20 } + - { offsetInCU: 0x2326, offset: 0x58D6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25unsubscriptionsWaitingAck33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VSaySSGGvpfi', symObjAddr: 0x2380, symBinAddr: 0x3BF0, symSize: 0x20 } + - { offsetInCU: 0x2355, offset: 0x58D99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15sendingMessages33_B3FA8972440FEDD4D0FAB874FCB8E06BLLSDys6UInt16VAA0A11MQTTMessageCGvpfi', symObjAddr: 0x23A0, symBinAddr: 0x3C10, symSize: 0x20 } + - { offsetInCU: 0x2384, offset: 0x58DC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6_msgid33_B3FA8972440FEDD4D0FAB874FCB8E06BLLs6UInt16Vvpfi', symObjAddr: 0x23C0, symBinAddr: 0x3C30, symSize: 0x10 } + - { offsetInCU: 0x239C, offset: 0x58DE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6reader33_B3FA8972440FEDD4D0FAB874FCB8E06BLLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x23D0, symBinAddr: 0x3C40, symSize: 0x10 } + - { offsetInCU: 0x2455, offset: 0x58E99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfETo', symObjAddr: 0x3390, symBinAddr: 0x4C00, symSize: 0x1F0 } + - { offsetInCU: 0x25D8, offset: 0x5901C, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x40D0, symBinAddr: 0x5940, symSize: 0x30 } + - { offsetInCU: 0x29EE, offset: 0x59432, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A19MQTTDeliverProtocolA2aCP7deliver_10wantToSendyAA0aC0C_AA5Frame_ptFTW', symObjAddr: 0x4F90, symBinAddr: 0x6800, symSize: 0x10 } + - { offsetInCU: 0x2A6E, offset: 0x594B2, size: 0x8, addend: 0x0, symName: '_$sSbIegy_10ObjectiveC8ObjCBoolVIeyBy_TR', symObjAddr: 0x51D0, symBinAddr: 0x6A40, symSize: 0x40 } + - { offsetInCU: 0x2ABC, offset: 0x59500, size: 0x8, addend: 0x0, symName: '_$sSo36NSURLSessionAuthChallengeDispositionVSo15NSURLCredentialCSgIegyg_AbEIeyByy_TR', symObjAddr: 0x53A0, symBinAddr: 0x6C10, symSize: 0x60 } + - { offsetInCU: 0x2C73, offset: 0x596B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP15socketConnectedyyAA0aC8Protocol_pFTW', symObjAddr: 0x5B40, symBinAddr: 0x73B0, symSize: 0x10 } + - { offsetInCU: 0x2CB8, offset: 0x596FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_10didReceive17completionHandleryAA0aC8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5B50, symBinAddr: 0x73C0, symSize: 0x10 } + - { offsetInCU: 0x2CD4, offset: 0x59718, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP16socketUrlSession_15didReceiveTrust0hI9Challenge17completionHandleryAA0aC8Protocol_p_So03SecJ3RefaSo019NSURLAuthenticationK0CySo016NSURLSessionAuthK11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5B60, symBinAddr: 0x73D0, symSize: 0x10 } + - { offsetInCU: 0x2CF0, offset: 0x59734, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_19didWriteDataWithTagyAA0aC8Protocol_p_SitFTW', symObjAddr: 0x5B70, symBinAddr: 0x73E0, symSize: 0x10 } + - { offsetInCU: 0x2D0C, offset: 0x59750, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP6socket_7didRead7withTagyAA0aC8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5B80, symBinAddr: 0x73F0, symSize: 0x10 } + - { offsetInCU: 0x2D28, offset: 0x5976C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTSocketDelegateA2aCP19socketDidDisconnect_9withErroryAA0aC8Protocol_p_s0I0_pSgtFTW', symObjAddr: 0x5B90, symBinAddr: 0x7400, symSize: 0x10 } + - { offsetInCU: 0x2D44, offset: 0x59788, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5BA0, symBinAddr: 0x7410, symSize: 0x220 } + - { offsetInCU: 0x2DCC, offset: 0x59810, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x5DC0, symBinAddr: 0x7630, symSize: 0x130 } + - { offsetInCU: 0x2F04, offset: 0x59948, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7connackyAA0aC0C_AA12FrameConnAckVtFTW', symObjAddr: 0x5EF0, symBinAddr: 0x7760, symSize: 0x30 } + - { offsetInCU: 0x2F55, offset: 0x59999, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7publishyAA0aC0C_AA12FramePublishVtFTW', symObjAddr: 0x5F20, symBinAddr: 0x7790, symSize: 0x10 } + - { offsetInCU: 0x2FB2, offset: 0x599F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubackyAA0aC0C_AA11FramePubAckVtFTW', symObjAddr: 0x5F30, symBinAddr: 0x77A0, symSize: 0x10 } + - { offsetInCU: 0x300F, offset: 0x59A53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrecyAA0aC0C_AA11FramePubRecVtFTW', symObjAddr: 0x5F40, symBinAddr: 0x77B0, symSize: 0x10 } + - { offsetInCU: 0x306C, offset: 0x59AB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6pubrelyAA0aC0C_AA11FramePubRelVtFTW', symObjAddr: 0x5F50, symBinAddr: 0x77C0, symSize: 0x10 } + - { offsetInCU: 0x30C9, offset: 0x59B0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_7pubcompyAA0aC0C_AA12FramePubCompVtFTW', symObjAddr: 0x5F60, symBinAddr: 0x77D0, symSize: 0x10 } + - { offsetInCU: 0x3126, offset: 0x59B6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_6subackyAA0aC0C_AA11FrameSubAckVtFTW', symObjAddr: 0x5F70, symBinAddr: 0x77E0, symSize: 0x10 } + - { offsetInCU: 0x3183, offset: 0x59BC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8unsubackyAA0aC0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x5F80, symBinAddr: 0x77F0, symSize: 0x10 } + - { offsetInCU: 0x31DA, offset: 0x59C1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACAA0A18MQTTReaderDelegateA2aCP10didReceive_8pingrespyAA0aC0C_AA13FramePingRespVtFTW', symObjAddr: 0x5F90, symBinAddr: 0x7800, symSize: 0x10 } + - { offsetInCU: 0x320D, offset: 0x59C51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvpfi', symObjAddr: 0x5FA0, symBinAddr: 0x7810, symSize: 0x10 } + - { offsetInCU: 0x3225, offset: 0x59C69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7version33_AF8BB6527D0EA3A0219B32C04023BCD8LLSSvpfi', symObjAddr: 0x5FB0, symBinAddr: 0x7820, symSize: 0x20 } + - { offsetInCU: 0x323D, offset: 0x59C81, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvpfi', symObjAddr: 0x5FD0, symBinAddr: 0x7840, symSize: 0x20 } + - { offsetInCU: 0x3255, offset: 0x59C99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvpfi', symObjAddr: 0x5FF0, symBinAddr: 0x7860, symSize: 0x10 } + - { offsetInCU: 0x326D, offset: 0x59CB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvpfi', symObjAddr: 0x6000, symBinAddr: 0x7870, symSize: 0x10 } + - { offsetInCU: 0x3285, offset: 0x59CC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvpfi', symObjAddr: 0x6010, symBinAddr: 0x7880, symSize: 0x10 } + - { offsetInCU: 0x329D, offset: 0x59CE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvpfi', symObjAddr: 0x6020, symBinAddr: 0x7890, symSize: 0x10 } + - { offsetInCU: 0x32B5, offset: 0x59CF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvpfi', symObjAddr: 0x6030, symBinAddr: 0x78A0, symSize: 0x10 } + - { offsetInCU: 0x32CD, offset: 0x59D11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvpfi', symObjAddr: 0x6040, symBinAddr: 0x78B0, symSize: 0x30 } + - { offsetInCU: 0x32E5, offset: 0x59D29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovpfi', symObjAddr: 0x6070, symBinAddr: 0x78E0, symSize: 0x10 } + - { offsetInCU: 0x32FD, offset: 0x59D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvpfi', symObjAddr: 0x60C0, symBinAddr: 0x7930, symSize: 0x10 } + - { offsetInCU: 0x3315, offset: 0x59D59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10aliveTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x60D0, symBinAddr: 0x7940, symSize: 0x10 } + - { offsetInCU: 0x332D, offset: 0x59D71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvpfi', symObjAddr: 0x60E0, symBinAddr: 0x7950, symSize: 0x10 } + - { offsetInCU: 0x3345, offset: 0x59D89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x60F0, symBinAddr: 0x7960, symSize: 0x10 } + - { offsetInCU: 0x335D, offset: 0x59DA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvpfi', symObjAddr: 0x6100, symBinAddr: 0x7970, symSize: 0x10 } + - { offsetInCU: 0x3375, offset: 0x59DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvpfi', symObjAddr: 0x6110, symBinAddr: 0x7980, symSize: 0x10 } + - { offsetInCU: 0x338D, offset: 0x59DD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvpfi', symObjAddr: 0x6120, symBinAddr: 0x7990, symSize: 0x10 } + - { offsetInCU: 0x33A5, offset: 0x59DE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C21reconnectTimeInterval33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6130, symBinAddr: 0x79A0, symSize: 0x10 } + - { offsetInCU: 0x33BD, offset: 0x59E01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15autoReconnTimer33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A9MQTTTimerCSgvpfi', symObjAddr: 0x6140, symBinAddr: 0x79B0, symSize: 0x10 } + - { offsetInCU: 0x33D5, offset: 0x59E19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C24is_internal_disconnected33_AF8BB6527D0EA3A0219B32C04023BCD8LLSbvpfi', symObjAddr: 0x6150, symBinAddr: 0x79C0, symSize: 0x10 } + - { offsetInCU: 0x33ED, offset: 0x59E31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15sendingMessages33_AF8BB6527D0EA3A0219B32C04023BCD8LLSDys6UInt16VAA0aC7MessageCGvpfi', symObjAddr: 0x6320, symBinAddr: 0x7B90, symSize: 0x20 } + - { offsetInCU: 0x341C, offset: 0x59E60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6_msgid33_AF8BB6527D0EA3A0219B32C04023BCD8LLs6UInt16Vvpfi', symObjAddr: 0x6340, symBinAddr: 0x7BB0, symSize: 0x10 } + - { offsetInCU: 0x3434, offset: 0x59E78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6reader33_AF8BB6527D0EA3A0219B32C04023BCD8LLAA0A10MQTTReaderCSgvpfi', symObjAddr: 0x6350, symBinAddr: 0x7BC0, symSize: 0x10 } + - { offsetInCU: 0x344C, offset: 0x59E90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6360, symBinAddr: 0x7BD0, symSize: 0x10 } + - { offsetInCU: 0x3464, offset: 0x59EA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvpfi', symObjAddr: 0x6370, symBinAddr: 0x7BE0, symSize: 0x10 } + - { offsetInCU: 0x347C, offset: 0x59EC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvpfi', symObjAddr: 0x6380, symBinAddr: 0x7BF0, symSize: 0x10 } + - { offsetInCU: 0x3494, offset: 0x59ED8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvpfi', symObjAddr: 0x6390, symBinAddr: 0x7C00, symSize: 0x10 } + - { offsetInCU: 0x34AC, offset: 0x59EF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvpfi', symObjAddr: 0x63A0, symBinAddr: 0x7C10, symSize: 0x10 } + - { offsetInCU: 0x34C4, offset: 0x59F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvpfi', symObjAddr: 0x63B0, symBinAddr: 0x7C20, symSize: 0x10 } + - { offsetInCU: 0x34DC, offset: 0x59F20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvpfi', symObjAddr: 0x63C0, symBinAddr: 0x7C30, symSize: 0x10 } + - { offsetInCU: 0x34F4, offset: 0x59F38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvpfi', symObjAddr: 0x63D0, symBinAddr: 0x7C40, symSize: 0x10 } + - { offsetInCU: 0x350C, offset: 0x59F50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvpfi', symObjAddr: 0x63E0, symBinAddr: 0x7C50, symSize: 0x10 } + - { offsetInCU: 0x3524, offset: 0x59F68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvpfi', symObjAddr: 0x63F0, symBinAddr: 0x7C60, symSize: 0x10 } + - { offsetInCU: 0x353C, offset: 0x59F80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC8minLevelAA0acE0Ovpfi', symObjAddr: 0x6400, symBinAddr: 0x7C70, symSize: 0x10 } + - { offsetInCU: 0x3554, offset: 0x59F98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6410, symBinAddr: 0x7C80, symSize: 0x10 } + - { offsetInCU: 0x356C, offset: 0x59FB0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvpfi', symObjAddr: 0x6420, symBinAddr: 0x7C90, symSize: 0x10 } + - { offsetInCU: 0x3584, offset: 0x59FC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvpfi', symObjAddr: 0x6430, symBinAddr: 0x7CA0, symSize: 0x10 } + - { offsetInCU: 0x359C, offset: 0x59FE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvpfi', symObjAddr: 0x6440, symBinAddr: 0x7CB0, symSize: 0x10 } + - { offsetInCU: 0x35B4, offset: 0x59FF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvpfi', symObjAddr: 0x6450, symBinAddr: 0x7CC0, symSize: 0x10 } + - { offsetInCU: 0x35CC, offset: 0x5A010, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvpfi', symObjAddr: 0x6460, symBinAddr: 0x7CD0, symSize: 0x10 } + - { offsetInCU: 0x35E4, offset: 0x5A028, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvpfi', symObjAddr: 0x6470, symBinAddr: 0x7CE0, symSize: 0x10 } + - { offsetInCU: 0x35FC, offset: 0x5A040, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9reference33_F756E48C973C9652514EBA786DF1D180LLSo15MGCDAsyncSocketCvpfi', symObjAddr: 0x6480, symBinAddr: 0x7CF0, symSize: 0x20 } + - { offsetInCU: 0x363F, offset: 0x5A083, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8delegate33_F756E48C973C9652514EBA786DF1D180LLAA0aC8Delegate_pSgvpfi', symObjAddr: 0x64A0, symBinAddr: 0x7D10, symSize: 0x10 } + - { offsetInCU: 0x3657, offset: 0x5A09B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x64B0, symBinAddr: 0x7D20, symSize: 0x10 } + - { offsetInCU: 0x366F, offset: 0x5A0B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x64C0, symBinAddr: 0x7D30, symSize: 0x10 } + - { offsetInCU: 0x3687, offset: 0x5A0CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvpfi', symObjAddr: 0x64D0, symBinAddr: 0x7D40, symSize: 0x10 } + - { offsetInCU: 0x369F, offset: 0x5A0E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x64E0, symBinAddr: 0x7D50, symSize: 0x10 } + - { offsetInCU: 0x36B7, offset: 0x5A0FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvpfi', symObjAddr: 0x64F0, symBinAddr: 0x7D60, symSize: 0x10 } + - { offsetInCU: 0x36CF, offset: 0x5A113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvpfi', symObjAddr: 0x6500, symBinAddr: 0x7D70, symSize: 0x10 } + - { offsetInCU: 0x36E7, offset: 0x5A12B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6510, symBinAddr: 0x7D80, symSize: 0x10 } + - { offsetInCU: 0x36FF, offset: 0x5A143, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvpfi', symObjAddr: 0x6520, symBinAddr: 0x7D90, symSize: 0x10 } + - { offsetInCU: 0x3717, offset: 0x5A15B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvpfi', symObjAddr: 0x6530, symBinAddr: 0x7DA0, symSize: 0x10 } + - { offsetInCU: 0x372F, offset: 0x5A173, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvpfi', symObjAddr: 0x6540, symBinAddr: 0x7DB0, symSize: 0x10 } + - { offsetInCU: 0x3747, offset: 0x5A18B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvpfi', symObjAddr: 0x6550, symBinAddr: 0x7DC0, symSize: 0x10 } + - { offsetInCU: 0x375F, offset: 0x5A1A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvpfi', symObjAddr: 0x6560, symBinAddr: 0x7DD0, symSize: 0x10 } + - { offsetInCU: 0x3777, offset: 0x5A1BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvpfi', symObjAddr: 0x6570, symBinAddr: 0x7DE0, symSize: 0x10 } + - { offsetInCU: 0x378F, offset: 0x5A1D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6580, symBinAddr: 0x7DF0, symSize: 0x10 } + - { offsetInCU: 0x37A7, offset: 0x5A1EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvpfi', symObjAddr: 0x6590, symBinAddr: 0x7E00, symSize: 0x10 } + - { offsetInCU: 0x37BF, offset: 0x5A203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvpfi', symObjAddr: 0x65A0, symBinAddr: 0x7E10, symSize: 0x10 } + - { offsetInCU: 0x37D7, offset: 0x5A21B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvpfi', symObjAddr: 0x65B0, symBinAddr: 0x7E20, symSize: 0x10 } + - { offsetInCU: 0x37EF, offset: 0x5A233, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvpfi', symObjAddr: 0x65C0, symBinAddr: 0x7E30, symSize: 0x10 } + - { offsetInCU: 0x3807, offset: 0x5A24B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvpfi', symObjAddr: 0x65D0, symBinAddr: 0x7E40, symSize: 0x10 } + - { offsetInCU: 0x381F, offset: 0x5A263, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvpfi', symObjAddr: 0x65E0, symBinAddr: 0x7E50, symSize: 0x10 } + - { offsetInCU: 0x3837, offset: 0x5A27B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvpfi', symObjAddr: 0x65F0, symBinAddr: 0x7E60, symSize: 0x20 } + - { offsetInCU: 0x384F, offset: 0x5A293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10totalCountSivpfi', symObjAddr: 0x6610, symBinAddr: 0x7E80, symSize: 0x10 } + - { offsetInCU: 0x3867, offset: 0x5A2AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC9dataIndexSivpfi', symObjAddr: 0x6620, symBinAddr: 0x7E90, symSize: 0x10 } + - { offsetInCU: 0x387F, offset: 0x5A2C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC14propertyLengthSivpfi', symObjAddr: 0x6630, symBinAddr: 0x7EA0, symSize: 0x10 } + - { offsetInCU: 0x3897, offset: 0x5A2DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvpfi', symObjAddr: 0x6640, symBinAddr: 0x7EB0, symSize: 0x10 } + - { offsetInCU: 0x38AF, offset: 0x5A2F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6650, symBinAddr: 0x7EC0, symSize: 0x10 } + - { offsetInCU: 0x38C7, offset: 0x5A30B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6660, symBinAddr: 0x7ED0, symSize: 0x10 } + - { offsetInCU: 0x38DF, offset: 0x5A323, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6670, symBinAddr: 0x7EE0, symSize: 0x10 } + - { offsetInCU: 0x38F7, offset: 0x5A33B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10totalCountSivpfi', symObjAddr: 0x6680, symBinAddr: 0x7EF0, symSize: 0x10 } + - { offsetInCU: 0x390F, offset: 0x5A353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC9dataIndexSivpfi', symObjAddr: 0x6690, symBinAddr: 0x7F00, symSize: 0x10 } + - { offsetInCU: 0x3927, offset: 0x5A36B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC14propertyLengthSivpfi', symObjAddr: 0x66A0, symBinAddr: 0x7F10, symSize: 0x10 } + - { offsetInCU: 0x393F, offset: 0x5A383, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvpfi', symObjAddr: 0x66B0, symBinAddr: 0x7F20, symSize: 0x10 } + - { offsetInCU: 0x3957, offset: 0x5A39B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvpfi', symObjAddr: 0x66C0, symBinAddr: 0x7F30, symSize: 0x10 } + - { offsetInCU: 0x396F, offset: 0x5A3B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x66D0, symBinAddr: 0x7F40, symSize: 0x10 } + - { offsetInCU: 0x3987, offset: 0x5A3CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvpfi', symObjAddr: 0x66E0, symBinAddr: 0x7F50, symSize: 0x10 } + - { offsetInCU: 0x399F, offset: 0x5A3E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvpfi', symObjAddr: 0x66F0, symBinAddr: 0x7F60, symSize: 0x10 } + - { offsetInCU: 0x39B7, offset: 0x5A3FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6700, symBinAddr: 0x7F70, symSize: 0x10 } + - { offsetInCU: 0x39CF, offset: 0x5A413, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6710, symBinAddr: 0x7F80, symSize: 0x10 } + - { offsetInCU: 0x39E7, offset: 0x5A42B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivpfi', symObjAddr: 0x6720, symBinAddr: 0x7F90, symSize: 0x10 } + - { offsetInCU: 0x39FF, offset: 0x5A443, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvpfi', symObjAddr: 0x6730, symBinAddr: 0x7FA0, symSize: 0x10 } + - { offsetInCU: 0x3A17, offset: 0x5A45B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvpfi', symObjAddr: 0x6740, symBinAddr: 0x7FB0, symSize: 0x20 } + - { offsetInCU: 0x3A2F, offset: 0x5A473, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivpfi', symObjAddr: 0x6760, symBinAddr: 0x7FD0, symSize: 0x10 } + - { offsetInCU: 0x3A47, offset: 0x5A48B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10totalCountSivpfi', symObjAddr: 0x6770, symBinAddr: 0x7FE0, symSize: 0x10 } + - { offsetInCU: 0x3A5F, offset: 0x5A4A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC9dataIndexSivpfi', symObjAddr: 0x6780, symBinAddr: 0x7FF0, symSize: 0x10 } + - { offsetInCU: 0x3A77, offset: 0x5A4BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC14propertyLengthSivpfi', symObjAddr: 0x6790, symBinAddr: 0x8000, symSize: 0x10 } + - { offsetInCU: 0x3A8F, offset: 0x5A4D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvpfi', symObjAddr: 0x67A0, symBinAddr: 0x8010, symSize: 0x10 } + - { offsetInCU: 0x3AA7, offset: 0x5A4EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvpfi', symObjAddr: 0x67B0, symBinAddr: 0x8020, symSize: 0x10 } + - { offsetInCU: 0x3ABF, offset: 0x5A503, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x67C0, symBinAddr: 0x8030, symSize: 0x10 } + - { offsetInCU: 0x3AD7, offset: 0x5A51B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10totalCountSivpfi', symObjAddr: 0x67D0, symBinAddr: 0x8040, symSize: 0x10 } + - { offsetInCU: 0x3AEF, offset: 0x5A533, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC9dataIndexSivpfi', symObjAddr: 0x67E0, symBinAddr: 0x8050, symSize: 0x10 } + - { offsetInCU: 0x3B07, offset: 0x5A54B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC14propertyLengthSivpfi', symObjAddr: 0x67F0, symBinAddr: 0x8060, symSize: 0x10 } + - { offsetInCU: 0x3B1F, offset: 0x5A563, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvpfi', symObjAddr: 0x6800, symBinAddr: 0x8070, symSize: 0x10 } + - { offsetInCU: 0x3B37, offset: 0x5A57B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvpfi', symObjAddr: 0x6810, symBinAddr: 0x8080, symSize: 0x10 } + - { offsetInCU: 0x3B4F, offset: 0x5A593, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6820, symBinAddr: 0x8090, symSize: 0x10 } + - { offsetInCU: 0x3B67, offset: 0x5A5AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC10totalCountSivpfi', symObjAddr: 0x6830, symBinAddr: 0x80A0, symSize: 0x10 } + - { offsetInCU: 0x3B7F, offset: 0x5A5C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC9dataIndexSivpfi', symObjAddr: 0x6840, symBinAddr: 0x80B0, symSize: 0x10 } + - { offsetInCU: 0x3B97, offset: 0x5A5DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC14propertyLengthSivpfi', symObjAddr: 0x6850, symBinAddr: 0x80C0, symSize: 0x10 } + - { offsetInCU: 0x3BAF, offset: 0x5A5F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvpfi', symObjAddr: 0x6860, symBinAddr: 0x80D0, symSize: 0x20 } + - { offsetInCU: 0x3BC7, offset: 0x5A60B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6880, symBinAddr: 0x80F0, symSize: 0x10 } + - { offsetInCU: 0x3BDF, offset: 0x5A623, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6890, symBinAddr: 0x8100, symSize: 0x10 } + - { offsetInCU: 0x3BF7, offset: 0x5A63B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x68A0, symBinAddr: 0x8110, symSize: 0x10 } + - { offsetInCU: 0x3C0F, offset: 0x5A653, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC10totalCountSivpfi', symObjAddr: 0x68B0, symBinAddr: 0x8120, symSize: 0x10 } + - { offsetInCU: 0x3C27, offset: 0x5A66B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC9dataIndexSivpfi', symObjAddr: 0x68C0, symBinAddr: 0x8130, symSize: 0x10 } + - { offsetInCU: 0x3C3F, offset: 0x5A683, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC14propertyLengthSivpfi', symObjAddr: 0x68D0, symBinAddr: 0x8140, symSize: 0x10 } + - { offsetInCU: 0x3C57, offset: 0x5A69B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvpfi', symObjAddr: 0x68E0, symBinAddr: 0x8150, symSize: 0x20 } + - { offsetInCU: 0x3C6F, offset: 0x5A6B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvpfi', symObjAddr: 0x6900, symBinAddr: 0x8170, symSize: 0x10 } + - { offsetInCU: 0x3C87, offset: 0x5A6CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvpfi', symObjAddr: 0x6910, symBinAddr: 0x8180, symSize: 0x10 } + - { offsetInCU: 0x3C9F, offset: 0x5A6E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6920, symBinAddr: 0x8190, symSize: 0x10 } + - { offsetInCU: 0x3CB7, offset: 0x5A6FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvpfi', symObjAddr: 0x6930, symBinAddr: 0x81A0, symSize: 0x10 } + - { offsetInCU: 0x3CCF, offset: 0x5A713, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvpfi', symObjAddr: 0x6940, symBinAddr: 0x81B0, symSize: 0x10 } + - { offsetInCU: 0x3CE7, offset: 0x5A72B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvpfi', symObjAddr: 0x6950, symBinAddr: 0x81C0, symSize: 0x10 } + - { offsetInCU: 0x3CFF, offset: 0x5A743, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvpfi', symObjAddr: 0x6960, symBinAddr: 0x81D0, symSize: 0x10 } + - { offsetInCU: 0x3D17, offset: 0x5A75B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvpfi', symObjAddr: 0x6970, symBinAddr: 0x81E0, symSize: 0x10 } + - { offsetInCU: 0x3D2F, offset: 0x5A773, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvpfi', symObjAddr: 0x6980, symBinAddr: 0x81F0, symSize: 0x10 } + - { offsetInCU: 0x3D47, offset: 0x5A78B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvpfi', symObjAddr: 0x6990, symBinAddr: 0x8200, symSize: 0x10 } + - { offsetInCU: 0x3D5F, offset: 0x5A7A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvpfi', symObjAddr: 0x69A0, symBinAddr: 0x8210, symSize: 0x10 } + - { offsetInCU: 0x3D77, offset: 0x5A7BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvpfi', symObjAddr: 0x69B0, symBinAddr: 0x8220, symSize: 0x10 } + - { offsetInCU: 0x41AB, offset: 0x5ABEF, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFSS8UTF8ViewV_Tgq5', symObjAddr: 0x7130, symBinAddr: 0x8980, symSize: 0x170 } + - { offsetInCU: 0x425D, offset: 0x5ACA1, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0x8340, symBinAddr: 0x9B90, symSize: 0x40 } + - { offsetInCU: 0x4271, offset: 0x5ACB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvWyycfU_TA', symObjAddr: 0x83B0, symBinAddr: 0x9C00, symSize: 0x10 } + - { offsetInCU: 0x4285, offset: 0x5ACC9, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x83C0, symBinAddr: 0x9C10, symSize: 0x30 } + - { offsetInCU: 0x4299, offset: 0x5ACDD, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x83F0, symBinAddr: 0x9C40, symSize: 0x30 } + - { offsetInCU: 0x42AD, offset: 0x5ACF1, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x8420, symBinAddr: 0x9C70, symSize: 0x30 } + - { offsetInCU: 0x4364, offset: 0x5ADA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACMa', symObjAddr: 0x8650, symBinAddr: 0x9EA0, symSize: 0x20 } + - { offsetInCU: 0x4378, offset: 0x5ADBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOb', symObjAddr: 0x8670, symBinAddr: 0x9EC0, symSize: 0x20 } + - { offsetInCU: 0x438C, offset: 0x5ADD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x86C0, symBinAddr: 0x9F10, symSize: 0x10 } + - { offsetInCU: 0x43A0, offset: 0x5ADE4, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x86D0, symBinAddr: 0x9F20, symSize: 0x20 } + - { offsetInCU: 0x43B4, offset: 0x5ADF8, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x86F0, symBinAddr: 0x9F40, symSize: 0x10 } + - { offsetInCU: 0x43C8, offset: 0x5AE0C, size: 0x8, addend: 0x0, symName: '_$sSay8Dispatch0A13WorkItemFlagsVGMa', symObjAddr: 0x8730, symBinAddr: 0x9F80, symSize: 0x50 } + - { offsetInCU: 0x43DC, offset: 0x5AE20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_TA', symObjAddr: 0x8780, symBinAddr: 0x9FD0, symSize: 0x10 } + - { offsetInCU: 0x43F0, offset: 0x5AE34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_TA', symObjAddr: 0x87D0, symBinAddr: 0xA020, symSize: 0x20 } + - { offsetInCU: 0x4404, offset: 0x5AE48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOr', symObjAddr: 0x87F0, symBinAddr: 0xA040, symSize: 0x80 } + - { offsetInCU: 0x4418, offset: 0x5AE5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVWOs', symObjAddr: 0x8870, symBinAddr: 0xA0C0, symSize: 0x70 } + - { offsetInCU: 0x442C, offset: 0x5AE70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_TA', symObjAddr: 0x8910, symBinAddr: 0xA160, symSize: 0x20 } + - { offsetInCU: 0x4440, offset: 0x5AE84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_TA', symObjAddr: 0x8930, symBinAddr: 0xA180, symSize: 0x10 } + - { offsetInCU: 0x494F, offset: 0x5B393, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASQWb', symObjAddr: 0xAFA0, symBinAddr: 0xC7F0, symSize: 0x10 } + - { offsetInCU: 0x4963, offset: 0x5B3A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOACSQAAWl', symObjAddr: 0xAFB0, symBinAddr: 0xC800, symSize: 0x30 } + - { offsetInCU: 0x4977, offset: 0x5B3BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOMa', symObjAddr: 0xAFE0, symBinAddr: 0xC830, symSize: 0x10 } + - { offsetInCU: 0x498B, offset: 0x5B3CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTTDelegate_pSgXwWOh', symObjAddr: 0xB060, symBinAddr: 0xC8B0, symSize: 0x20 } + - { offsetInCU: 0x499F, offset: 0x5B3E3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0xB090, symBinAddr: 0xC8E0, symSize: 0x40 } + - { offsetInCU: 0x49B3, offset: 0x5B3F7, size: 0x8, addend: 0x0, symName: '_$sSSWOr', symObjAddr: 0xB0D0, symBinAddr: 0xC920, symSize: 0x20 } + - { offsetInCU: 0x49C7, offset: 0x5B40B, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGWOr', symObjAddr: 0xB0F0, symBinAddr: 0xC940, symSize: 0x20 } + - { offsetInCU: 0x49DB, offset: 0x5B41F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xB130, symBinAddr: 0xC980, symSize: 0x10 } + - { offsetInCU: 0x49EF, offset: 0x5B433, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xB160, symBinAddr: 0xC9B0, symSize: 0x10 } + - { offsetInCU: 0x4A03, offset: 0x5B447, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xB190, symBinAddr: 0xC9E0, symSize: 0x20 } + - { offsetInCU: 0x4A17, offset: 0x5B45B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xB1B0, symBinAddr: 0xCA00, symSize: 0x10 } + - { offsetInCU: 0x4A2B, offset: 0x5B46F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0xB320, symBinAddr: 0xCB70, symSize: 0x20 } + - { offsetInCU: 0x4A3F, offset: 0x5B483, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0xB340, symBinAddr: 0xCB90, symSize: 0x40 } + - { offsetInCU: 0x4A53, offset: 0x5B497, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0xB380, symBinAddr: 0xCBD0, symSize: 0x20 } + - { offsetInCU: 0x4A67, offset: 0x5B4AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVWOr', symObjAddr: 0xB440, symBinAddr: 0xCC90, symSize: 0xE0 } + - { offsetInCU: 0x4A7B, offset: 0x5B4BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVWOr', symObjAddr: 0xB5A0, symBinAddr: 0xCDF0, symSize: 0x40 } + - { offsetInCU: 0x4A8F, offset: 0x5B4D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVWOr', symObjAddr: 0xB620, symBinAddr: 0xCE70, symSize: 0x40 } + - { offsetInCU: 0x4AA3, offset: 0x5B4E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xB690, symBinAddr: 0xCEE0, symSize: 0x20 } + - { offsetInCU: 0x4B16, offset: 0x5B55A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x190, symBinAddr: 0x1A00, symSize: 0x10 } + - { offsetInCU: 0x4BD2, offset: 0x5B616, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH9hashValueSivgTW', symObjAddr: 0x1A0, symBinAddr: 0x1A10, symSize: 0x40 } + - { offsetInCU: 0x4C61, offset: 0x5B6A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1E0, symBinAddr: 0x1A50, symSize: 0x20 } + - { offsetInCU: 0x4CB4, offset: 0x5B6F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x1A70, symSize: 0x40 } + - { offsetInCU: 0x525D, offset: 0x5BCA1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_9CocoaMQTT0C7MQTTQoSOTgm5Tf4g_n', symObjAddr: 0x8450, symBinAddr: 0x9CA0, symSize: 0xF0 } + - { offsetInCU: 0x53B7, offset: 0x5BDFB, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x8A70, symBinAddr: 0xA2C0, symSize: 0xF0 } + - { offsetInCU: 0x5950, offset: 0x5C394, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO4byteACs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x1870, symSize: 0x10 } + - { offsetInCU: 0x5964, offset: 0x5C3A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValues5UInt8Vvg', symObjAddr: 0x10, symBinAddr: 0x1880, symSize: 0x10 } + - { offsetInCU: 0x5985, offset: 0x5C3C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x20, symBinAddr: 0x1890, symSize: 0x30 } + - { offsetInCU: 0x59A0, offset: 0x5C3E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTConnAckO11descriptionSSvg', symObjAddr: 0x50, symBinAddr: 0x18C0, symSize: 0x140 } + - { offsetInCU: 0x5A8B, offset: 0x5C4CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvg', symObjAddr: 0x3D0, symBinAddr: 0x1C40, symSize: 0x40 } + - { offsetInCU: 0x5AAA, offset: 0x5C4EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvs', symObjAddr: 0x410, symBinAddr: 0x1C80, symSize: 0x50 } + - { offsetInCU: 0x5ADF, offset: 0x5C523, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM', symObjAddr: 0x460, symBinAddr: 0x1CD0, symSize: 0x70 } + - { offsetInCU: 0x5B02, offset: 0x5C546, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8delegateAA0A12MQTTDelegate_pSgvM.resume.0', symObjAddr: 0x4D0, symBinAddr: 0x1D40, symSize: 0x60 } + - { offsetInCU: 0x5B23, offset: 0x5C567, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4hostSSvM', symObjAddr: 0x5B0, symBinAddr: 0x1E20, symSize: 0x40 } + - { offsetInCU: 0x5B48, offset: 0x5C58C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvg', symObjAddr: 0x600, symBinAddr: 0x1E70, symSize: 0x30 } + - { offsetInCU: 0x5B65, offset: 0x5C5A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16Vvs', symObjAddr: 0x630, symBinAddr: 0x1EA0, symSize: 0x40 } + - { offsetInCU: 0x5B98, offset: 0x5C5DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4ports6UInt16VvM', symObjAddr: 0x670, symBinAddr: 0x1EE0, symSize: 0x40 } + - { offsetInCU: 0x5BBD, offset: 0x5C601, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientIDSSvM', symObjAddr: 0x730, symBinAddr: 0x1FA0, symSize: 0x40 } + - { offsetInCU: 0x5BE2, offset: 0x5C626, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8usernameSSSgvM', symObjAddr: 0x7C0, symBinAddr: 0x2030, symSize: 0x40 } + - { offsetInCU: 0x5C07, offset: 0x5C64B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8passwordSSSgvM', symObjAddr: 0x8E0, symBinAddr: 0x2150, symSize: 0x40 } + - { offsetInCU: 0x5C2C, offset: 0x5C670, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvg', symObjAddr: 0x930, symBinAddr: 0x21A0, symSize: 0x30 } + - { offsetInCU: 0x5C49, offset: 0x5C68D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvs', symObjAddr: 0x960, symBinAddr: 0x21D0, symSize: 0x40 } + - { offsetInCU: 0x5C7C, offset: 0x5C6C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC12cleanSessionSbvM', symObjAddr: 0x9A0, symBinAddr: 0x2210, symSize: 0x40 } + - { offsetInCU: 0x5CA1, offset: 0x5C6E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvg', symObjAddr: 0x9F0, symBinAddr: 0x2260, symSize: 0x40 } + - { offsetInCU: 0x5CBE, offset: 0x5C702, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvs', symObjAddr: 0xA30, symBinAddr: 0x22A0, symSize: 0x50 } + - { offsetInCU: 0x5CF1, offset: 0x5C735, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM', symObjAddr: 0xA80, symBinAddr: 0x22F0, symSize: 0x40 } + - { offsetInCU: 0x5D16, offset: 0x5C75A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11willMessageAA0A11MQTTMessageCSgvM.resume.0', symObjAddr: 0xAC0, symBinAddr: 0x2330, symSize: 0x10 } + - { offsetInCU: 0x5D6A, offset: 0x5C7AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvg', symObjAddr: 0xAD0, symBinAddr: 0x2340, symSize: 0xB0 } + - { offsetInCU: 0x5DDB, offset: 0x5C81F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18backgroundOnSocketSbvM', symObjAddr: 0xBA0, symBinAddr: 0x2410, symSize: 0xF0 } + - { offsetInCU: 0x5E4F, offset: 0x5C893, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCB0, symBinAddr: 0x2520, symSize: 0x40 } + - { offsetInCU: 0x5E6C, offset: 0x5C8B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xCF0, symBinAddr: 0x2560, symSize: 0x50 } + - { offsetInCU: 0x5E9F, offset: 0x5C8E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD40, symBinAddr: 0x25B0, symSize: 0x40 } + - { offsetInCU: 0x5F2D, offset: 0x5C971, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycF', symObjAddr: 0xE90, symBinAddr: 0x2700, symSize: 0x240 } + - { offsetInCU: 0x5FA6, offset: 0x5C9EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x4FA0, symBinAddr: 0x6810, symSize: 0x50 } + - { offsetInCU: 0x5FE5, offset: 0x5CA29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovg', symObjAddr: 0x10D0, symBinAddr: 0x2940, symSize: 0x30 } + - { offsetInCU: 0x6016, offset: 0x5CA5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0Ovs', symObjAddr: 0x1100, symBinAddr: 0x2970, symSize: 0x80 } + - { offsetInCU: 0x605E, offset: 0x5CAA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM', symObjAddr: 0x1180, symBinAddr: 0x29F0, symSize: 0x40 } + - { offsetInCU: 0x6083, offset: 0x5CAC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9connStateAA0a8MQTTConnD0OvM.resume.0', symObjAddr: 0x11C0, symBinAddr: 0x2A30, symSize: 0x80 } + - { offsetInCU: 0x60E5, offset: 0x5CB29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvg', symObjAddr: 0x1250, symBinAddr: 0x2AC0, symSize: 0x30 } + - { offsetInCU: 0x6163, offset: 0x5CBA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvs', symObjAddr: 0x1280, symBinAddr: 0x2AF0, symSize: 0x30 } + - { offsetInCU: 0x61EC, offset: 0x5CC30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM', symObjAddr: 0x12B0, symBinAddr: 0x2B20, symSize: 0x40 } + - { offsetInCU: 0x6268, offset: 0x5CCAC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14deliverTimeoutSdvM.resume.0', symObjAddr: 0x12F0, symBinAddr: 0x2B60, symSize: 0x30 } + - { offsetInCU: 0x62C7, offset: 0x5CD0B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvg', symObjAddr: 0x1320, symBinAddr: 0x2B90, symSize: 0x20 } + - { offsetInCU: 0x6345, offset: 0x5CD89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvs', symObjAddr: 0x1340, symBinAddr: 0x2BB0, symSize: 0x20 } + - { offsetInCU: 0x63CE, offset: 0x5CE12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM', symObjAddr: 0x1360, symBinAddr: 0x2BD0, symSize: 0x40 } + - { offsetInCU: 0x644A, offset: 0x5CE8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13A0, symBinAddr: 0x2C10, symSize: 0x30 } + - { offsetInCU: 0x6499, offset: 0x5CEDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvg', symObjAddr: 0x13D0, symBinAddr: 0x2C40, symSize: 0x20 } + - { offsetInCU: 0x6512, offset: 0x5CF56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvs', symObjAddr: 0x13F0, symBinAddr: 0x2C60, symSize: 0x20 } + - { offsetInCU: 0x659B, offset: 0x5CFDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM', symObjAddr: 0x1410, symBinAddr: 0x2C80, symSize: 0x40 } + - { offsetInCU: 0x6617, offset: 0x5D05B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1450, symBinAddr: 0x2CC0, symSize: 0x30 } + - { offsetInCU: 0x6652, offset: 0x5D096, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvg', symObjAddr: 0x1490, symBinAddr: 0x2D00, symSize: 0x30 } + - { offsetInCU: 0x666F, offset: 0x5D0B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16Vvs', symObjAddr: 0x14C0, symBinAddr: 0x2D30, symSize: 0x40 } + - { offsetInCU: 0x66A2, offset: 0x5D0E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9keepAlives6UInt16VvM', symObjAddr: 0x1500, symBinAddr: 0x2D70, symSize: 0x40 } + - { offsetInCU: 0x66C7, offset: 0x5D10B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvg', symObjAddr: 0x1560, symBinAddr: 0x2DD0, symSize: 0x30 } + - { offsetInCU: 0x66E4, offset: 0x5D128, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvs', symObjAddr: 0x1590, symBinAddr: 0x2E00, symSize: 0x40 } + - { offsetInCU: 0x6717, offset: 0x5D15B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13autoReconnectSbvM', symObjAddr: 0x15D0, symBinAddr: 0x2E40, symSize: 0x40 } + - { offsetInCU: 0x673C, offset: 0x5D180, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1620, symBinAddr: 0x2E90, symSize: 0x30 } + - { offsetInCU: 0x6759, offset: 0x5D19D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1650, symBinAddr: 0x2EC0, symSize: 0x40 } + - { offsetInCU: 0x678C, offset: 0x5D1D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1690, symBinAddr: 0x2F00, symSize: 0x40 } + - { offsetInCU: 0x67B1, offset: 0x5D1F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x16E0, symBinAddr: 0x2F50, symSize: 0x30 } + - { offsetInCU: 0x67CE, offset: 0x5D212, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1710, symBinAddr: 0x2F80, symSize: 0x40 } + - { offsetInCU: 0x6801, offset: 0x5D245, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1750, symBinAddr: 0x2FC0, symSize: 0x40 } + - { offsetInCU: 0x6845, offset: 0x5D289, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovg', symObjAddr: 0x17C0, symBinAddr: 0x3030, symSize: 0x60 } + - { offsetInCU: 0x68B0, offset: 0x5D2F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0Ovs', symObjAddr: 0x1820, symBinAddr: 0x3090, symSize: 0x60 } + - { offsetInCU: 0x6928, offset: 0x5D36C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM', symObjAddr: 0x1880, symBinAddr: 0x30F0, symSize: 0x70 } + - { offsetInCU: 0x6981, offset: 0x5D3C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8logLevelAA0a10MQTTLoggerD0OvM.resume.0', symObjAddr: 0x18F0, symBinAddr: 0x3160, symSize: 0x30 } + - { offsetInCU: 0x69A2, offset: 0x5D3E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvg', symObjAddr: 0x1920, symBinAddr: 0x3190, symSize: 0x70 } + - { offsetInCU: 0x69F6, offset: 0x5D43A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvs', symObjAddr: 0x1990, symBinAddr: 0x3200, symSize: 0x70 } + - { offsetInCU: 0x6A57, offset: 0x5D49B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM', symObjAddr: 0x1A00, symBinAddr: 0x3270, symSize: 0xA0 } + - { offsetInCU: 0x6AB9, offset: 0x5D4FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9enableSSLSbvM.resume.0', symObjAddr: 0x1AA0, symBinAddr: 0x3310, symSize: 0x80 } + - { offsetInCU: 0x6B18, offset: 0x5D55C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1B20, symBinAddr: 0x3390, symSize: 0xB0 } + - { offsetInCU: 0x6B9A, offset: 0x5D5DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1BD0, symBinAddr: 0x3440, symSize: 0xC0 } + - { offsetInCU: 0x6C1D, offset: 0x5D661, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1C90, symBinAddr: 0x3500, symSize: 0x100 } + - { offsetInCU: 0x6CB1, offset: 0x5D6F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1D90, symBinAddr: 0x3600, symSize: 0x140 } + - { offsetInCU: 0x6D54, offset: 0x5D798, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvg', symObjAddr: 0x1ED0, symBinAddr: 0x3740, symSize: 0xB0 } + - { offsetInCU: 0x6DC8, offset: 0x5D80C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC25allowUntrustCACertificateSbvM', symObjAddr: 0x2050, symBinAddr: 0x38C0, symSize: 0xF0 } + - { offsetInCU: 0x6E3F, offset: 0x5D883, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2290, symBinAddr: 0x3B00, symSize: 0x40 } + - { offsetInCU: 0x6E63, offset: 0x5D8A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvs', symObjAddr: 0x22D0, symBinAddr: 0x3B40, symSize: 0x50 } + - { offsetInCU: 0x6E98, offset: 0x5D8DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13subscriptionsSDySSAA0A7MQTTQoSOGvM', symObjAddr: 0x2320, symBinAddr: 0x3B90, symSize: 0x40 } + - { offsetInCU: 0x6EB7, offset: 0x5D8FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didConnectAckyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2440, symBinAddr: 0x3CB0, symSize: 0x40 } + - { offsetInCU: 0x6EDD, offset: 0x5D921, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didPublishMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x24E0, symBinAddr: 0x3D50, symSize: 0x40 } + - { offsetInCU: 0x6F03, offset: 0x5D947, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didPublishAckyyAB_s6UInt16VtcvM', symObjAddr: 0x2580, symBinAddr: 0x3DF0, symSize: 0x40 } + - { offsetInCU: 0x6F29, offset: 0x5D96D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC17didReceiveMessageyyAB_AA0A11MQTTMessageCs6UInt16VtcvM', symObjAddr: 0x2610, symBinAddr: 0x3E80, symSize: 0x40 } + - { offsetInCU: 0x6F4F, offset: 0x5D993, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didSubscribeTopicsyyAB_So12NSDictionaryCSaySSGtcvM', symObjAddr: 0x26B0, symBinAddr: 0x3F20, symSize: 0x40 } + - { offsetInCU: 0x6F75, offset: 0x5D9B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC20didUnsubscribeTopicsyyAB_SaySSGtcvM', symObjAddr: 0x2740, symBinAddr: 0x3FB0, symSize: 0x40 } + - { offsetInCU: 0x6F9B, offset: 0x5D9DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7didPingyyABcvM', symObjAddr: 0x27E0, symBinAddr: 0x4050, symSize: 0x40 } + - { offsetInCU: 0x6FC1, offset: 0x5DA05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didReceivePongyyABcvM', symObjAddr: 0x2880, symBinAddr: 0x40F0, symSize: 0x40 } + - { offsetInCU: 0x6FE7, offset: 0x5DA2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC13didDisconnectyyAB_s5Error_pSgtcvM', symObjAddr: 0x2920, symBinAddr: 0x4190, symSize: 0x40 } + - { offsetInCU: 0x700D, offset: 0x5DA51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15didReceiveTrustyyAB_So03SecE3RefaySbctcvM', symObjAddr: 0x29C0, symBinAddr: 0x4230, symSize: 0x40 } + - { offsetInCU: 0x7033, offset: 0x5DA77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC18didCompletePublishyyAB_s6UInt16VtcvM', symObjAddr: 0x2A50, symBinAddr: 0x42C0, symSize: 0x40 } + - { offsetInCU: 0x7059, offset: 0x5DA9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC14didChangeStateyyAB_AA0a8MQTTConnE0OtcvM', symObjAddr: 0x2B70, symBinAddr: 0x43E0, symSize: 0x40 } + - { offsetInCU: 0x7085, offset: 0x5DAC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2BB0, symBinAddr: 0x4420, symSize: 0x60 } + - { offsetInCU: 0x70CB, offset: 0x5DB0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC8clientID4host4port6socketABSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2C10, symBinAddr: 0x4480, symSize: 0x5E0 } + - { offsetInCU: 0x72F3, offset: 0x5DD37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACfD', symObjAddr: 0x31F0, symBinAddr: 0x4A60, symSize: 0x180 } + - { offsetInCU: 0x744D, offset: 0x5DE91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16sendConnectFrame33_B3FA8972440FEDD4D0FAB874FCB8E06BLLyyF', symObjAddr: 0x3580, symBinAddr: 0x4DF0, symSize: 0x400 } + - { offsetInCU: 0x75F1, offset: 0x5E035, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connectSbyF', symObjAddr: 0x3980, symBinAddr: 0x51F0, symSize: 0x20 } + - { offsetInCU: 0x76EF, offset: 0x5E133, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tF', symObjAddr: 0x39A0, symBinAddr: 0x5210, symSize: 0x680 } + - { offsetInCU: 0x79EE, offset: 0x5E432, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4020, symBinAddr: 0x5890, symSize: 0xB0 } + - { offsetInCU: 0x7AD6, offset: 0x5E51A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10disconnectyyF', symObjAddr: 0x4100, symBinAddr: 0x5970, symSize: 0xC0 } + - { offsetInCU: 0x7BA3, offset: 0x5E5E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyF', symObjAddr: 0x41C0, symBinAddr: 0x5A30, symSize: 0xF0 } + - { offsetInCU: 0x7C1F, offset: 0x5E663, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC4pingyyFyycfU_', symObjAddr: 0x42B0, symBinAddr: 0x5B20, symSize: 0xA0 } + - { offsetInCU: 0x7D0E, offset: 0x5E752, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publish_10withString3qos8retainedSiSS_SSAA0A7MQTTQoSOSbtF', symObjAddr: 0x4350, symBinAddr: 0x5BC0, symSize: 0x150 } + - { offsetInCU: 0x7F02, offset: 0x5E946, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCF', symObjAddr: 0x44A0, symBinAddr: 0x5D10, symSize: 0x5A0 } + - { offsetInCU: 0x81CC, offset: 0x5EC10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU_', symObjAddr: 0x4A40, symBinAddr: 0x62B0, symSize: 0x70 } + - { offsetInCU: 0x8239, offset: 0x5EC7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7publishySiAA0A11MQTTMessageCFyyYbcfU0_', symObjAddr: 0x4AB0, symBinAddr: 0x6320, symSize: 0xC0 } + - { offsetInCU: 0x836B, offset: 0x5EDAF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4B70, symBinAddr: 0x63E0, symSize: 0x70 } + - { offsetInCU: 0x843A, offset: 0x5EE7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC9subscribeyySaySS_AA0A7MQTTQoSOtGF', symObjAddr: 0x4BE0, symBinAddr: 0x6450, symSize: 0xF0 } + - { offsetInCU: 0x865D, offset: 0x5F0A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySSF', symObjAddr: 0x4CD0, symBinAddr: 0x6540, symSize: 0x120 } + - { offsetInCU: 0x8809, offset: 0x5F24D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC11unsubscribeyySaySSGF', symObjAddr: 0x4DF0, symBinAddr: 0x6660, symSize: 0xE0 } + - { offsetInCU: 0x8933, offset: 0x5F377, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfC', symObjAddr: 0x4ED0, symBinAddr: 0x6740, symSize: 0x20 } + - { offsetInCU: 0x8947, offset: 0x5F38B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAACABycfc', symObjAddr: 0x4EF0, symBinAddr: 0x6760, symSize: 0x30 } + - { offsetInCU: 0x89A7, offset: 0x5F3EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x4FF0, symBinAddr: 0x6860, symSize: 0x10 } + - { offsetInCU: 0x8A1B, offset: 0x5F45F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5000, symBinAddr: 0x6870, symSize: 0x1D0 } + - { offsetInCU: 0x8B10, offset: 0x5F554, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC16socketUrlSession_15didReceiveTrust0fG9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecH3RefaSo019NSURLAuthenticationI0CySo016NSURLSessionAuthI11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x5210, symBinAddr: 0x6A80, symSize: 0x190 } + - { offsetInCU: 0x8BEB, offset: 0x5F62F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5400, symBinAddr: 0x6C70, symSize: 0xB0 } + - { offsetInCU: 0x8C66, offset: 0x5F6AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x54B0, symBinAddr: 0x6D20, symSize: 0x10 } + - { offsetInCU: 0x8D4D, offset: 0x5F791, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x54C0, symBinAddr: 0x6D30, symSize: 0x260 } + - { offsetInCU: 0x9184, offset: 0x5FBC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtF', symObjAddr: 0x5720, symBinAddr: 0x6F90, symSize: 0x380 } + - { offsetInCU: 0x93CB, offset: 0x5FE0F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0G0_pSgtFyycfU_', symObjAddr: 0x5AA0, symBinAddr: 0x7310, symSize: 0xA0 } + - { offsetInCU: 0x958F, offset: 0x5FFD3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5UInt8V_Tg5', symObjAddr: 0x69E0, symBinAddr: 0x8230, symSize: 0xA0 } + - { offsetInCU: 0x9678, offset: 0x600BC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x6A80, symBinAddr: 0x82D0, symSize: 0xE0 } + - { offsetInCU: 0x9761, offset: 0x601A5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x6B60, symBinAddr: 0x83B0, symSize: 0xB0 } + - { offsetInCU: 0x9832, offset: 0x60276, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x6C50, symBinAddr: 0x84A0, symSize: 0xB0 } + - { offsetInCU: 0x991B, offset: 0x6035F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x6DC0, symBinAddr: 0x8610, symSize: 0xC0 } + - { offsetInCU: 0x99E8, offset: 0x6042C, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_9CocoaMQTT0F7MQTTQoSOTg5', symObjAddr: 0x6E80, symBinAddr: 0x86D0, symSize: 0xA0 } + - { offsetInCU: 0x9BED, offset: 0x60631, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0x8B60, symBinAddr: 0xA3B0, symSize: 0x3A0 } + - { offsetInCU: 0x9E47, offset: 0x6088B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x8F00, symBinAddr: 0xA750, symSize: 0x700 } + - { offsetInCU: 0xA3D2, offset: 0x60E16, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x9600, symBinAddr: 0xAE50, symSize: 0x490 } + - { offsetInCU: 0xA79F, offset: 0x611E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubackyAA0A10MQTTReaderC_AA11FramePubAckVtFTf4dnn_n', symObjAddr: 0x9A90, symBinAddr: 0xB2E0, symSize: 0x210 } + - { offsetInCU: 0xA90F, offset: 0x61353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrecyAA0A10MQTTReaderC_AA11FramePubRecVtFTf4dnn_n', symObjAddr: 0x9CA0, symBinAddr: 0xB4F0, symSize: 0x190 } + - { offsetInCU: 0xAA42, offset: 0x61486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9E30, symBinAddr: 0xB680, symSize: 0x190 } + - { offsetInCU: 0xABA9, offset: 0x615ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9FC0, symBinAddr: 0xB810, symSize: 0x230 } + - { offsetInCU: 0xAE0C, offset: 0x61850, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA1F0, symBinAddr: 0xBA40, symSize: 0x890 } + - { offsetInCU: 0xB4F2, offset: 0x61F36, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xAA80, symBinAddr: 0xC2D0, symSize: 0x400 } + - { offsetInCU: 0xB861, offset: 0x622A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTTAAC10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xAE80, symBinAddr: 0xC6D0, symSize: 0x120 } + - { offsetInCU: 0x19A, offset: 0x6255D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x2E0, symBinAddr: 0xD6E0, symSize: 0x20 } + - { offsetInCU: 0x1CB, offset: 0x6258E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x300, symBinAddr: 0xD700, symSize: 0x10 } + - { offsetInCU: 0x1E7, offset: 0x625AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0xD710, symSize: 0x80 } + - { offsetInCU: 0x248, offset: 0x6260B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15setMqtt5VersionyyF', symObjAddr: 0x390, symBinAddr: 0xD790, symSize: 0x120 } + - { offsetInCU: 0x5BE, offset: 0x62981, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_', symObjAddr: 0xDA0, symBinAddr: 0xE1A0, symSize: 0x100 } + - { offsetInCU: 0xB1E, offset: 0x62EE1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfi', symObjAddr: 0x2420, symBinAddr: 0xF820, symSize: 0x10 } + - { offsetInCU: 0xB36, offset: 0x62EF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2430, symBinAddr: 0xF830, symSize: 0x10 } + - { offsetInCU: 0xB96, offset: 0x62F59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16Vtcvpfi', symObjAddr: 0x24C0, symBinAddr: 0xF8C0, symSize: 0x10 } + - { offsetInCU: 0xBAE, offset: 0x62F71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvpfiyAC_AfHtcfU_', symObjAddr: 0x24D0, symBinAddr: 0xF8D0, symSize: 0x10 } + - { offsetInCU: 0xC0E, offset: 0x62FD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2560, symBinAddr: 0xF960, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x62FE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfiyAC_AfItcfU_', symObjAddr: 0x2570, symBinAddr: 0xF970, symSize: 0x10 } + - { offsetInCU: 0xC86, offset: 0x63049, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvpfi', symObjAddr: 0x2600, symBinAddr: 0xFA00, symSize: 0x10 } + - { offsetInCU: 0xCB5, offset: 0x63078, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfi', symObjAddr: 0x2690, symBinAddr: 0xFA90, symSize: 0x10 } + - { offsetInCU: 0xCCD, offset: 0x63090, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvpfiyAC_AfhKtcfU_', symObjAddr: 0x26A0, symBinAddr: 0xFAA0, symSize: 0x10 } + - { offsetInCU: 0xD3C, offset: 0x630FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfi', symObjAddr: 0x2730, symBinAddr: 0xFB30, symSize: 0x10 } + - { offsetInCU: 0xD54, offset: 0x63117, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvpfiyAC_AfgJtcfU_', symObjAddr: 0x2740, symBinAddr: 0xFB40, symSize: 0x10 } + - { offsetInCU: 0xDC3, offset: 0x63186, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfi', symObjAddr: 0x27D0, symBinAddr: 0xFBD0, symSize: 0x10 } + - { offsetInCU: 0xDDB, offset: 0x6319E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvpfiyAC_AeHtcfU_', symObjAddr: 0x27E0, symBinAddr: 0xFBE0, symSize: 0x10 } + - { offsetInCU: 0xE3B, offset: 0x631FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfi', symObjAddr: 0x2870, symBinAddr: 0xFC70, symSize: 0x10 } + - { offsetInCU: 0xE53, offset: 0x63216, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvpfiyACcfU_', symObjAddr: 0x2880, symBinAddr: 0xFC80, symSize: 0x10 } + - { offsetInCU: 0xE95, offset: 0x63258, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfi', symObjAddr: 0x2910, symBinAddr: 0xFD10, symSize: 0x10 } + - { offsetInCU: 0xEAD, offset: 0x63270, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvpfiyACcfU_', symObjAddr: 0x2920, symBinAddr: 0xFD20, symSize: 0x10 } + - { offsetInCU: 0xEEF, offset: 0x632B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfi', symObjAddr: 0x29B0, symBinAddr: 0xFDB0, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x632CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvpfiyAC_AFtcfU_', symObjAddr: 0x29C0, symBinAddr: 0xFDC0, symSize: 0x10 } + - { offsetInCU: 0xF58, offset: 0x6331B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0Otcvpfi', symObjAddr: 0x2A50, symBinAddr: 0xFE50, symSize: 0x10 } + - { offsetInCU: 0xF87, offset: 0x6334A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0Otcvpfi', symObjAddr: 0x2AE0, symBinAddr: 0xFEE0, symSize: 0x10 } + - { offsetInCU: 0xFB6, offset: 0x63379, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfi', symObjAddr: 0x2B70, symBinAddr: 0xFF70, symSize: 0x10 } + - { offsetInCU: 0xFCE, offset: 0x63391, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvpfiyAC_AFySbctcfU_', symObjAddr: 0x2B80, symBinAddr: 0xFF80, symSize: 0x10 } + - { offsetInCU: 0x1030, offset: 0x633F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvpfi', symObjAddr: 0x2C10, symBinAddr: 0x10010, symSize: 0x10 } + - { offsetInCU: 0x105F, offset: 0x63422, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0Otcvpfi', symObjAddr: 0x2CA0, symBinAddr: 0x100A0, symSize: 0x10 } + - { offsetInCU: 0x1077, offset: 0x6343A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvpfiyAC_AFtcfU_', symObjAddr: 0x2CB0, symBinAddr: 0x100B0, symSize: 0x10 } + - { offsetInCU: 0x1135, offset: 0x634F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfDTo', symObjAddr: 0x3830, symBinAddr: 0x10C30, symSize: 0x20 } + - { offsetInCU: 0x14D6, offset: 0x63899, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfcTo', symObjAddr: 0x5240, symBinAddr: 0x12640, symSize: 0x30 } + - { offsetInCU: 0x153D, offset: 0x63900, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP13delegateQueueSo17OS_dispatch_queueCvgTW', symObjAddr: 0x5270, symBinAddr: 0x12670, symSize: 0x40 } + - { offsetInCU: 0x1639, offset: 0x639FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N10DisconnectV_Tg5', symObjAddr: 0x6D20, symBinAddr: 0x14050, symSize: 0x250 } + - { offsetInCU: 0x17D9, offset: 0x63B9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7ConnectV_Tg5', symObjAddr: 0x71A0, symBinAddr: 0x144D0, symSize: 0x240 } + - { offsetInCU: 0x1979, offset: 0x63D3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PingReqV_Tg5', symObjAddr: 0x73E0, symBinAddr: 0x14710, symSize: 0x200 } + - { offsetInCU: 0x1B19, offset: 0x63EDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N9SubscribeV_Tg5', symObjAddr: 0x75E0, symBinAddr: 0x14910, symSize: 0x240 } + - { offsetInCU: 0x1CB9, offset: 0x6407C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N11UnsubscribeV_Tg5', symObjAddr: 0x7820, symBinAddr: 0x14B50, symSize: 0x2A0 } + - { offsetInCU: 0x1E5B, offset: 0x6421E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N4AuthV_Tg5', symObjAddr: 0x7AC0, symBinAddr: 0x14DF0, symSize: 0x290 } + - { offsetInCU: 0x1FFB, offset: 0x643BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4send33_AF8BB6527D0EA3A0219B32C04023BCD8LL_3tagyAA5Frame_p_SitFTf4enn_nAA0N7PublishV_Tg5', symObjAddr: 0x7D50, symBinAddr: 0x15080, symSize: 0x260 } + - { offsetInCU: 0x23A8, offset: 0x6476B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubAckV_Tg5', symObjAddr: 0x7FB0, symBinAddr: 0x152E0, symSize: 0x3A0 } + - { offsetInCU: 0x2457, offset: 0x6481A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F6PubRecV_Tg5', symObjAddr: 0x8350, symBinAddr: 0x15680, symSize: 0x3B0 } + - { offsetInCU: 0x2506, offset: 0x648C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFTf4en_nAA0F7PubCompV_Tg5', symObjAddr: 0x8700, symBinAddr: 0x15A30, symSize: 0x3B0 } + - { offsetInCU: 0x272D, offset: 0x64AF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfETo', symObjAddr: 0x3850, symBinAddr: 0x10C50, symSize: 0x240 } + - { offsetInCU: 0x2B2F, offset: 0x64EF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A19MQTTDeliverProtocolA2aDP7deliver_10wantToSendyAA0aD0C_AA5Frame_ptFTW', symObjAddr: 0x52B0, symBinAddr: 0x126B0, symSize: 0x10 } + - { offsetInCU: 0x2D5E, offset: 0x65121, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP15socketConnectedyyAA0aD8Protocol_pFTW', symObjAddr: 0x5DC0, symBinAddr: 0x131C0, symSize: 0x10 } + - { offsetInCU: 0x2DA3, offset: 0x65166, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_10didReceive17completionHandleryAA0aD8Protocol_p_So11SecTrustRefaySbctFTW', symObjAddr: 0x5DD0, symBinAddr: 0x131D0, symSize: 0x10 } + - { offsetInCU: 0x2DBF, offset: 0x65182, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP16socketUrlSession_15didReceiveTrust0iJ9Challenge17completionHandleryAA0aD8Protocol_p_So03SecK3RefaSo019NSURLAuthenticationL0CySo016NSURLSessionAuthL11DispositionV_So15NSURLCredentialCSgtctFTW', symObjAddr: 0x5DE0, symBinAddr: 0x131E0, symSize: 0x10 } + - { offsetInCU: 0x2DDB, offset: 0x6519E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_19didWriteDataWithTagyAA0aD8Protocol_p_SitFTW', symObjAddr: 0x5DF0, symBinAddr: 0x131F0, symSize: 0x10 } + - { offsetInCU: 0x2DF7, offset: 0x651BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP6socket_7didRead7withTagyAA0aD8Protocol_p_10Foundation4DataVSitFTW', symObjAddr: 0x5E00, symBinAddr: 0x13200, symSize: 0x10 } + - { offsetInCU: 0x2E13, offset: 0x651D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTSocketDelegateA2aDP19socketDidDisconnect_9withErroryAA0aD8Protocol_p_s0J0_pSgtFTW', symObjAddr: 0x5E10, symBinAddr: 0x13210, symSize: 0x10 } + - { offsetInCU: 0x2E2F, offset: 0x651F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_', symObjAddr: 0x5E20, symBinAddr: 0x13220, symSize: 0x220 } + - { offsetInCU: 0x2EB7, offset: 0x6527A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_', symObjAddr: 0x6040, symBinAddr: 0x13440, symSize: 0x130 } + - { offsetInCU: 0x2FEF, offset: 0x653B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7connackyAA0aD0C_AA12FrameConnAckVtFTW', symObjAddr: 0x6170, symBinAddr: 0x13570, symSize: 0x20 } + - { offsetInCU: 0x30E6, offset: 0x654A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7publishyAA0aD0C_AA12FramePublishVtFTW', symObjAddr: 0x6190, symBinAddr: 0x13590, symSize: 0x10 } + - { offsetInCU: 0x3137, offset: 0x654FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubackyAA0aD0C_AA11FramePubAckVtFTW', symObjAddr: 0x61A0, symBinAddr: 0x135A0, symSize: 0x30 } + - { offsetInCU: 0x3188, offset: 0x6554B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrecyAA0aD0C_AA11FramePubRecVtFTW', symObjAddr: 0x61D0, symBinAddr: 0x135D0, symSize: 0x30 } + - { offsetInCU: 0x31D9, offset: 0x6559C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6pubrelyAA0aD0C_AA11FramePubRelVtFTW', symObjAddr: 0x6200, symBinAddr: 0x13600, symSize: 0x10 } + - { offsetInCU: 0x322A, offset: 0x655ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_7pubcompyAA0aD0C_AA12FramePubCompVtFTW', symObjAddr: 0x6210, symBinAddr: 0x13610, symSize: 0x10 } + - { offsetInCU: 0x327B, offset: 0x6563E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_6subackyAA0aD0C_AA11FrameSubAckVtFTW', symObjAddr: 0x6220, symBinAddr: 0x13620, symSize: 0x10 } + - { offsetInCU: 0x32CC, offset: 0x6568F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8unsubackyAA0aD0C_AA13FrameUnsubAckVtFTW', symObjAddr: 0x6230, symBinAddr: 0x13630, symSize: 0x10 } + - { offsetInCU: 0x3323, offset: 0x656E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CAA0A18MQTTReaderDelegateA2aDP10didReceive_8pingrespyAA0aD0C_AA13FramePingRespVtFTW', symObjAddr: 0x6240, symBinAddr: 0x13640, symSize: 0x10 } + - { offsetInCU: 0x3356, offset: 0x65719, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvWyycfU_TA', symObjAddr: 0x62C0, symBinAddr: 0x13680, symSize: 0x10 } + - { offsetInCU: 0x3395, offset: 0x65758, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlF9CocoaMQTT16MqttSubscriptionC_Tgm5', symObjAddr: 0x66C0, symBinAddr: 0x139F0, symSize: 0x50 } + - { offsetInCU: 0x3440, offset: 0x65803, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5', symObjAddr: 0x8AB0, symBinAddr: 0x15DE0, symSize: 0xB0 } + - { offsetInCU: 0x3482, offset: 0x65845, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5', symObjAddr: 0x8B60, symBinAddr: 0x15E90, symSize: 0x90 } + - { offsetInCU: 0x34CA, offset: 0x6588D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CMa', symObjAddr: 0x8BF0, symBinAddr: 0x15F20, symSize: 0x20 } + - { offsetInCU: 0x34DE, offset: 0x658A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_TA', symObjAddr: 0x8C60, symBinAddr: 0x15F70, symSize: 0x10 } + - { offsetInCU: 0x34F2, offset: 0x658B5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x8C70, symBinAddr: 0x15F80, symSize: 0x20 } + - { offsetInCU: 0x3506, offset: 0x658C9, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x8C90, symBinAddr: 0x15FA0, symSize: 0x10 } + - { offsetInCU: 0x351A, offset: 0x658DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_TA', symObjAddr: 0x8D20, symBinAddr: 0x15FE0, symSize: 0x10 } + - { offsetInCU: 0x356D, offset: 0x65930, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x8D30, symBinAddr: 0x15FF0, symSize: 0xC0 } + - { offsetInCU: 0x35E3, offset: 0x659A6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8DF0, symBinAddr: 0x160B0, symSize: 0x80 } + - { offsetInCU: 0x3610, offset: 0x659D3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x8E70, symBinAddr: 0x16130, symSize: 0x80 } + - { offsetInCU: 0x36A4, offset: 0x65A67, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x8EF0, symBinAddr: 0x161B0, symSize: 0x70 } + - { offsetInCU: 0x3B2C, offset: 0x65EEF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_TA', symObjAddr: 0xBC60, symBinAddr: 0x18F20, symSize: 0x10 } + - { offsetInCU: 0x3B40, offset: 0x65F03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASQWb', symObjAddr: 0xBC70, symBinAddr: 0x18F30, symSize: 0x10 } + - { offsetInCU: 0x3B54, offset: 0x65F17, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOACSQAAWl', symObjAddr: 0xBC80, symBinAddr: 0x18F40, symSize: 0x30 } + - { offsetInCU: 0x3B68, offset: 0x65F2B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOMa', symObjAddr: 0xBCB0, symBinAddr: 0x18F70, symSize: 0x10 } + - { offsetInCU: 0x3B7C, offset: 0x65F3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTT5Delegate_pSgXwWOh', symObjAddr: 0xBCC0, symBinAddr: 0x18F80, symSize: 0x20 } + - { offsetInCU: 0x3B90, offset: 0x65F53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_SS_AA0A7MQTTQoSOTG5TA', symObjAddr: 0xBDB0, symBinAddr: 0x19070, symSize: 0x20 } + - { offsetInCU: 0x3BA4, offset: 0x65F67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_nTA', symObjAddr: 0xBE40, symBinAddr: 0x19100, symSize: 0x20 } + - { offsetInCU: 0x3BB8, offset: 0x65F7B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_TA', symObjAddr: 0xBF10, symBinAddr: 0x19190, symSize: 0x10 } + - { offsetInCU: 0x3BCC, offset: 0x65F8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_TA', symObjAddr: 0xBF20, symBinAddr: 0x191A0, symSize: 0x10 } + - { offsetInCU: 0x3BE0, offset: 0x65FA3, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0xBF50, symBinAddr: 0x191D0, symSize: 0x20 } + - { offsetInCU: 0x3BF4, offset: 0x65FB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFyycfU_yyYbcfU_TA', symObjAddr: 0xBF70, symBinAddr: 0x191F0, symSize: 0x10 } + - { offsetInCU: 0x3C3A, offset: 0x65FFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_s6UInt16V_SayAA16MqttSubscriptionCGTG5TA', symObjAddr: 0xC750, symBinAddr: 0x19780, symSize: 0x20 } + - { offsetInCU: 0x3C4E, offset: 0x66011, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_TA', symObjAddr: 0xC830, symBinAddr: 0x19820, symSize: 0x20 } + - { offsetInCU: 0x3C62, offset: 0x66025, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_TA', symObjAddr: 0xC880, symBinAddr: 0x19870, symSize: 0x20 } + - { offsetInCU: 0x3C76, offset: 0x66039, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_TA', symObjAddr: 0xC980, symBinAddr: 0x19930, symSize: 0x20 } + - { offsetInCU: 0x3DB1, offset: 0x66174, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x230, symBinAddr: 0xD630, symSize: 0x10 } + - { offsetInCU: 0x3E61, offset: 0x66224, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH9hashValueSivgTW', symObjAddr: 0x240, symBinAddr: 0xD640, symSize: 0x40 } + - { offsetInCU: 0x3EF0, offset: 0x662B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x280, symBinAddr: 0xD680, symSize: 0x20 } + - { offsetInCU: 0x3F43, offset: 0x66306, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x2A0, symBinAddr: 0xD6A0, symSize: 0x40 } + - { offsetInCU: 0x488A, offset: 0x66C4D, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_9CocoaMQTT0A7MQTTQoSOTg5', symObjAddr: 0x0, symBinAddr: 0xD400, symSize: 0xE0 } + - { offsetInCU: 0x4959, offset: 0x66D1C, size: 0x8, addend: 0x0, symName: '_$sSDyq_Sgxciss6UInt16V_Say9CocoaMQTT16MqttSubscriptionCGTg5', symObjAddr: 0xE0, symBinAddr: 0xD4E0, symSize: 0xA0 } + - { offsetInCU: 0x49F1, offset: 0x66DB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO11descriptionSSvg', symObjAddr: 0x180, symBinAddr: 0xD580, symSize: 0x80 } + - { offsetInCU: 0x4A16, offset: 0x66DD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x200, symBinAddr: 0xD600, symSize: 0x20 } + - { offsetInCU: 0x4A33, offset: 0x66DF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A13MQTTConnStateO8rawValues5UInt8Vvg', symObjAddr: 0x220, symBinAddr: 0xD620, symSize: 0x10 } + - { offsetInCU: 0x4B21, offset: 0x66EE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvg', symObjAddr: 0x4B0, symBinAddr: 0xD8B0, symSize: 0x40 } + - { offsetInCU: 0x4B40, offset: 0x66F03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvs', symObjAddr: 0x4F0, symBinAddr: 0xD8F0, symSize: 0x50 } + - { offsetInCU: 0x4B75, offset: 0x66F38, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM', symObjAddr: 0x540, symBinAddr: 0xD940, symSize: 0x70 } + - { offsetInCU: 0x4B98, offset: 0x66F5B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8delegateAA0aC8Delegate_pSgvM.resume.0', symObjAddr: 0x5B0, symBinAddr: 0xD9B0, symSize: 0x60 } + - { offsetInCU: 0x4BB9, offset: 0x66F7C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4hostSSvM', symObjAddr: 0x650, symBinAddr: 0xDA50, symSize: 0x40 } + - { offsetInCU: 0x4BDE, offset: 0x66FA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvg', symObjAddr: 0x690, symBinAddr: 0xDA90, symSize: 0x30 } + - { offsetInCU: 0x4BFB, offset: 0x66FBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16Vvs', symObjAddr: 0x6C0, symBinAddr: 0xDAC0, symSize: 0x40 } + - { offsetInCU: 0x4C2E, offset: 0x66FF1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4ports6UInt16VvM', symObjAddr: 0x700, symBinAddr: 0xDB00, symSize: 0x40 } + - { offsetInCU: 0x4C53, offset: 0x67016, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientIDSSvM', symObjAddr: 0x7C0, symBinAddr: 0xDBC0, symSize: 0x40 } + - { offsetInCU: 0x4C78, offset: 0x6703B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8usernameSSSgvM', symObjAddr: 0x840, symBinAddr: 0xDC40, symSize: 0x40 } + - { offsetInCU: 0x4C9D, offset: 0x67060, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8passwordSSSgvM', symObjAddr: 0x950, symBinAddr: 0xDD50, symSize: 0x40 } + - { offsetInCU: 0x4CC2, offset: 0x67085, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvg', symObjAddr: 0x990, symBinAddr: 0xDD90, symSize: 0x30 } + - { offsetInCU: 0x4CDF, offset: 0x670A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvs', symObjAddr: 0x9C0, symBinAddr: 0xDDC0, symSize: 0x40 } + - { offsetInCU: 0x4D12, offset: 0x670D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C12cleanSessionSbvM', symObjAddr: 0xA00, symBinAddr: 0xDE00, symSize: 0x40 } + - { offsetInCU: 0x4D37, offset: 0x670FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvg', symObjAddr: 0xA40, symBinAddr: 0xDE40, symSize: 0x40 } + - { offsetInCU: 0x4D54, offset: 0x67117, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM', symObjAddr: 0xAA0, symBinAddr: 0xDEA0, symSize: 0x40 } + - { offsetInCU: 0x4D79, offset: 0x6713C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11willMessageAA0acE0CSgvM.resume.0', symObjAddr: 0xAE0, symBinAddr: 0xDEE0, symSize: 0x10 } + - { offsetInCU: 0x4DCD, offset: 0x67190, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvg', symObjAddr: 0xAF0, symBinAddr: 0xDEF0, symSize: 0xB0 } + - { offsetInCU: 0x4E3E, offset: 0x67201, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18backgroundOnSocketSbvM', symObjAddr: 0xBC0, symBinAddr: 0xDFC0, symSize: 0xF0 } + - { offsetInCU: 0x4EB2, offset: 0x67275, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvg', symObjAddr: 0xCD0, symBinAddr: 0xE0D0, symSize: 0x40 } + - { offsetInCU: 0x4ECF, offset: 0x67292, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvs', symObjAddr: 0xD10, symBinAddr: 0xE110, symSize: 0x50 } + - { offsetInCU: 0x4F02, offset: 0x672C5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13delegateQueueSo17OS_dispatch_queueCvM', symObjAddr: 0xD60, symBinAddr: 0xE160, symSize: 0x40 } + - { offsetInCU: 0x4F90, offset: 0x67353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycF', symObjAddr: 0xEA0, symBinAddr: 0xE2A0, symSize: 0x240 } + - { offsetInCU: 0x5009, offset: 0x673CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16__delegate_queueyyyycFyyYbcfU_', symObjAddr: 0x52C0, symBinAddr: 0x126C0, symSize: 0x50 } + - { offsetInCU: 0x5048, offset: 0x6740B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovg', symObjAddr: 0x10E0, symBinAddr: 0xE4E0, symSize: 0x30 } + - { offsetInCU: 0x5079, offset: 0x6743C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0Ovs', symObjAddr: 0x1110, symBinAddr: 0xE510, symSize: 0x80 } + - { offsetInCU: 0x50C1, offset: 0x67484, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM', symObjAddr: 0x1190, symBinAddr: 0xE590, symSize: 0x40 } + - { offsetInCU: 0x50E6, offset: 0x674A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9connStateAA0a8MQTTConnE0OvM.resume.0', symObjAddr: 0x11D0, symBinAddr: 0xE5D0, symSize: 0x80 } + - { offsetInCU: 0x5148, offset: 0x6750B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvg', symObjAddr: 0x1250, symBinAddr: 0xE650, symSize: 0x30 } + - { offsetInCU: 0x51C6, offset: 0x67589, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvs', symObjAddr: 0x1280, symBinAddr: 0xE680, symSize: 0x30 } + - { offsetInCU: 0x524F, offset: 0x67612, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM', symObjAddr: 0x12B0, symBinAddr: 0xE6B0, symSize: 0x40 } + - { offsetInCU: 0x52CB, offset: 0x6768E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14deliverTimeoutSdvM.resume.0', symObjAddr: 0x12F0, symBinAddr: 0xE6F0, symSize: 0x30 } + - { offsetInCU: 0x532A, offset: 0x676ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvg', symObjAddr: 0x1320, symBinAddr: 0xE720, symSize: 0x20 } + - { offsetInCU: 0x53A8, offset: 0x6776B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvs', symObjAddr: 0x1340, symBinAddr: 0xE740, symSize: 0x20 } + - { offsetInCU: 0x5431, offset: 0x677F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM', symObjAddr: 0x1360, symBinAddr: 0xE760, symSize: 0x40 } + - { offsetInCU: 0x54AD, offset: 0x67870, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16messageQueueSizeSuvM.resume.0', symObjAddr: 0x13A0, symBinAddr: 0xE7A0, symSize: 0x30 } + - { offsetInCU: 0x54FC, offset: 0x678BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvg', symObjAddr: 0x13D0, symBinAddr: 0xE7D0, symSize: 0x20 } + - { offsetInCU: 0x5575, offset: 0x67938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvs', symObjAddr: 0x13F0, symBinAddr: 0xE7F0, symSize: 0x20 } + - { offsetInCU: 0x55FE, offset: 0x679C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM', symObjAddr: 0x1410, symBinAddr: 0xE810, symSize: 0x40 } + - { offsetInCU: 0x567A, offset: 0x67A3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18inflightWindowSizeSuvM.resume.0', symObjAddr: 0x1450, symBinAddr: 0xE850, symSize: 0x30 } + - { offsetInCU: 0x56B5, offset: 0x67A78, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvg', symObjAddr: 0x1480, symBinAddr: 0xE880, symSize: 0x30 } + - { offsetInCU: 0x56D2, offset: 0x67A95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16Vvs', symObjAddr: 0x14B0, symBinAddr: 0xE8B0, symSize: 0x40 } + - { offsetInCU: 0x5705, offset: 0x67AC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9keepAlives6UInt16VvM', symObjAddr: 0x14F0, symBinAddr: 0xE8F0, symSize: 0x40 } + - { offsetInCU: 0x572A, offset: 0x67AED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvg', symObjAddr: 0x1530, symBinAddr: 0xE930, symSize: 0x30 } + - { offsetInCU: 0x5747, offset: 0x67B0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvs', symObjAddr: 0x1560, symBinAddr: 0xE960, symSize: 0x40 } + - { offsetInCU: 0x577A, offset: 0x67B3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13autoReconnectSbvM', symObjAddr: 0x15A0, symBinAddr: 0xE9A0, symSize: 0x40 } + - { offsetInCU: 0x579F, offset: 0x67B62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x15E0, symBinAddr: 0xE9E0, symSize: 0x30 } + - { offsetInCU: 0x57BC, offset: 0x67B7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x1610, symBinAddr: 0xEA10, symSize: 0x40 } + - { offsetInCU: 0x57EF, offset: 0x67BB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25autoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1650, symBinAddr: 0xEA50, symSize: 0x40 } + - { offsetInCU: 0x5814, offset: 0x67BD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvg', symObjAddr: 0x1690, symBinAddr: 0xEA90, symSize: 0x30 } + - { offsetInCU: 0x5831, offset: 0x67BF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16Vvs', symObjAddr: 0x16C0, symBinAddr: 0xEAC0, symSize: 0x40 } + - { offsetInCU: 0x5864, offset: 0x67C27, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C28maxAutoReconnectTimeIntervals6UInt16VvM', symObjAddr: 0x1700, symBinAddr: 0xEB00, symSize: 0x40 } + - { offsetInCU: 0x5889, offset: 0x67C4C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvg', symObjAddr: 0x1740, symBinAddr: 0xEB40, symSize: 0x40 } + - { offsetInCU: 0x58A6, offset: 0x67C69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17connectPropertiesAA011MqttConnectE0CSgvM', symObjAddr: 0x17A0, symBinAddr: 0xEBA0, symSize: 0x40 } + - { offsetInCU: 0x58CB, offset: 0x67C8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvg', symObjAddr: 0x17E0, symBinAddr: 0xEBE0, symSize: 0x40 } + - { offsetInCU: 0x58EE, offset: 0x67CB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14authPropertiesAA08MqttAuthE0CSgvM', symObjAddr: 0x1880, symBinAddr: 0xEC80, symSize: 0x40 } + - { offsetInCU: 0x5932, offset: 0x67CF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovg', symObjAddr: 0x18C0, symBinAddr: 0xECC0, symSize: 0x60 } + - { offsetInCU: 0x599D, offset: 0x67D60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0Ovs', symObjAddr: 0x1920, symBinAddr: 0xED20, symSize: 0x60 } + - { offsetInCU: 0x5A15, offset: 0x67DD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM', symObjAddr: 0x1980, symBinAddr: 0xED80, symSize: 0x70 } + - { offsetInCU: 0x5A6E, offset: 0x67E31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8logLevelAA0a10MQTTLoggerE0OvM.resume.0', symObjAddr: 0x19F0, symBinAddr: 0xEDF0, symSize: 0x30 } + - { offsetInCU: 0x5A8F, offset: 0x67E52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvg', symObjAddr: 0x1A20, symBinAddr: 0xEE20, symSize: 0x70 } + - { offsetInCU: 0x5AE3, offset: 0x67EA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvs', symObjAddr: 0x1A90, symBinAddr: 0xEE90, symSize: 0x70 } + - { offsetInCU: 0x5B44, offset: 0x67F07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM', symObjAddr: 0x1B00, symBinAddr: 0xEF00, symSize: 0xA0 } + - { offsetInCU: 0x5BA6, offset: 0x67F69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9enableSSLSbvM.resume.0', symObjAddr: 0x1BA0, symBinAddr: 0xEFA0, symSize: 0x80 } + - { offsetInCU: 0x5C05, offset: 0x67FC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x1C20, symBinAddr: 0xF020, symSize: 0xB0 } + - { offsetInCU: 0x5C89, offset: 0x6804C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1CD0, symBinAddr: 0xF0D0, symSize: 0xC0 } + - { offsetInCU: 0x5D0F, offset: 0x680D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x1D90, symBinAddr: 0xF190, symSize: 0x100 } + - { offsetInCU: 0x5DA8, offset: 0x6816B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x1E90, symBinAddr: 0xF290, symSize: 0x140 } + - { offsetInCU: 0x5E4F, offset: 0x68212, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvg', symObjAddr: 0x1FD0, symBinAddr: 0xF3D0, symSize: 0xB0 } + - { offsetInCU: 0x5EC3, offset: 0x68286, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C25allowUntrustCACertificateSbvM', symObjAddr: 0x2150, symBinAddr: 0xF550, symSize: 0xF0 } + - { offsetInCU: 0x5F3A, offset: 0x682FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvg', symObjAddr: 0x2350, symBinAddr: 0xF750, symSize: 0x40 } + - { offsetInCU: 0x5F57, offset: 0x6831A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvs', symObjAddr: 0x2390, symBinAddr: 0xF790, symSize: 0x50 } + - { offsetInCU: 0x5F8C, offset: 0x6834F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13subscriptionsAA20ThreadSafeDictionaryCySSAA0A7MQTTQoSOGvM', symObjAddr: 0x23E0, symBinAddr: 0xF7E0, symSize: 0x40 } + - { offsetInCU: 0x5FB2, offset: 0x68375, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didConnectAckyyAC_AA0A21MQTTCONNACKReasonCodeOAA014MqttDecodeConnF0CSgtcvM', symObjAddr: 0x2480, symBinAddr: 0xF880, symSize: 0x40 } + - { offsetInCU: 0x5FD8, offset: 0x6839B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didPublishMessageyyAC_AA0acF0Cs6UInt16VtcvM', symObjAddr: 0x2520, symBinAddr: 0xF920, symSize: 0x40 } + - { offsetInCU: 0x5FFE, offset: 0x683C1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishAckyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x25C0, symBinAddr: 0xF9C0, symSize: 0x40 } + - { offsetInCU: 0x6024, offset: 0x683E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didPublishRecyyAC_s6UInt16VAA013MqttDecodePubF0CSgtcvM', symObjAddr: 0x2650, symBinAddr: 0xFA50, symSize: 0x40 } + - { offsetInCU: 0x604A, offset: 0x6840D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didReceiveMessageyyAC_AA0acF0Cs6UInt16VAA17MqttDecodePublishCSgtcvM', symObjAddr: 0x26F0, symBinAddr: 0xFAF0, symSize: 0x40 } + - { offsetInCU: 0x6070, offset: 0x68433, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didSubscribeTopicsyyAC_So12NSDictionaryCSaySSGAA16MqttDecodeSubAckCSgtcvM', symObjAddr: 0x2790, symBinAddr: 0xFB90, symSize: 0x40 } + - { offsetInCU: 0x6096, offset: 0x68459, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C20didUnsubscribeTopicsyyAC_SaySSGAA18MqttDecodeUnsubAckCSgtcvM', symObjAddr: 0x2830, symBinAddr: 0xFC30, symSize: 0x40 } + - { offsetInCU: 0x60BC, offset: 0x6847F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7didPingyyACcvM', symObjAddr: 0x28D0, symBinAddr: 0xFCD0, symSize: 0x40 } + - { offsetInCU: 0x60E2, offset: 0x684A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didReceivePongyyACcvM', symObjAddr: 0x2970, symBinAddr: 0xFD70, symSize: 0x40 } + - { offsetInCU: 0x6108, offset: 0x684CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C13didDisconnectyyAC_s5Error_pSgtcvM', symObjAddr: 0x2A10, symBinAddr: 0xFE10, symSize: 0x40 } + - { offsetInCU: 0x612E, offset: 0x684F1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C23didDisconnectReasonCodeyyAC_AA0a20MQTTDISCONNECTReasonG0OtcvM', symObjAddr: 0x2AA0, symBinAddr: 0xFEA0, symSize: 0x40 } + - { offsetInCU: 0x6154, offset: 0x68517, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C17didAuthReasonCodeyyAC_AA0a14MQTTAUTHReasonG0OtcvM', symObjAddr: 0x2B30, symBinAddr: 0xFF30, symSize: 0x40 } + - { offsetInCU: 0x617A, offset: 0x6853D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15didReceiveTrustyyAC_So03SecF3RefaySbctcvM', symObjAddr: 0x2BD0, symBinAddr: 0xFFD0, symSize: 0x40 } + - { offsetInCU: 0x61A0, offset: 0x68563, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C18didCompletePublishyyAC_s6UInt16VAA17MqttDecodePubCompCSgtcvM', symObjAddr: 0x2C60, symBinAddr: 0x10060, symSize: 0x40 } + - { offsetInCU: 0x61C6, offset: 0x68589, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C14didChangeStateyyAC_AA0a8MQTTConnF0OtcvM', symObjAddr: 0x2D90, symBinAddr: 0x10190, symSize: 0x40 } + - { offsetInCU: 0x61F2, offset: 0x685B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfC', symObjAddr: 0x2DD0, symBinAddr: 0x101D0, symSize: 0x60 } + - { offsetInCU: 0x62A4, offset: 0x68667, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C8clientID4host4port6socketACSS_SSs6UInt16VAA0A18MQTTSocketProtocol_ptcfc', symObjAddr: 0x2E30, symBinAddr: 0x10230, symSize: 0x880 } + - { offsetInCU: 0x659B, offset: 0x6895E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CfD', symObjAddr: 0x36B0, symBinAddr: 0x10AB0, symSize: 0x180 } + - { offsetInCU: 0x6709, offset: 0x68ACC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16sendConnectFrame33_AF8BB6527D0EA3A0219B32C04023BCD8LLyyF', symObjAddr: 0x3A90, symBinAddr: 0x10E90, symSize: 0x450 } + - { offsetInCU: 0x68CC, offset: 0x68C8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connectSbyF', symObjAddr: 0x3EE0, symBinAddr: 0x112E0, symSize: 0x20 } + - { offsetInCU: 0x69C4, offset: 0x68D87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tF', symObjAddr: 0x3F00, symBinAddr: 0x11300, symSize: 0x680 } + - { offsetInCU: 0x6CC3, offset: 0x69086, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7connect7timeoutSbSd_tFyyYbcfU_', symObjAddr: 0x4580, symBinAddr: 0x11980, symSize: 0xB0 } + - { offsetInCU: 0x6DA6, offset: 0x69169, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnectyyF', symObjAddr: 0x4630, symBinAddr: 0x11A30, symSize: 0xC0 } + - { offsetInCU: 0x6E53, offset: 0x69216, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10disconnect10reasonCode14userPropertiesyAA0a20MQTTDISCONNECTReasonF0O_SDyS2SGtF', symObjAddr: 0x46F0, symBinAddr: 0x11AF0, symSize: 0x10 } + - { offsetInCU: 0x6E95, offset: 0x69258, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C34internal_disconnect_withProperties10reasonCode04userG0yAA0a20MQTTDISCONNECTReasonI0O_SDyS2SGtF', symObjAddr: 0x4700, symBinAddr: 0x11B00, symSize: 0x100 } + - { offsetInCU: 0x6F7B, offset: 0x6933E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyF', symObjAddr: 0x4800, symBinAddr: 0x11C00, symSize: 0xF0 } + - { offsetInCU: 0x6FF7, offset: 0x693BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4pingyyFyycfU_', symObjAddr: 0x48F0, symBinAddr: 0x11CF0, symSize: 0xA0 } + - { offsetInCU: 0x7098, offset: 0x6945B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_10withString3qos3DUP8retained10propertiesSiSS_SSAA0A7MQTTQoSOS2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4990, symBinAddr: 0x11D90, symSize: 0xB0 } + - { offsetInCU: 0x7188, offset: 0x6954B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtF', symObjAddr: 0x4A40, symBinAddr: 0x11E40, symSize: 0x10 } + - { offsetInCU: 0x719C, offset: 0x6955F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU_', symObjAddr: 0x4A50, symBinAddr: 0x11E50, symSize: 0x60 } + - { offsetInCU: 0x7209, offset: 0x695CC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFyyYbcfU0_', symObjAddr: 0x4AB0, symBinAddr: 0x11EB0, symSize: 0xC0 } + - { offsetInCU: 0x737E, offset: 0x69741, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_3qosySS_AA0A7MQTTQoSOtF', symObjAddr: 0x4B70, symBinAddr: 0x11F70, symSize: 0x120 } + - { offsetInCU: 0x750C, offset: 0x698CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x4C90, symBinAddr: 0x12090, symSize: 0x100 } + - { offsetInCU: 0x7688, offset: 0x69A4B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C9subscribe_16packetIdentifier012subscriptionF012userPropertyySayAA16MqttSubscriptionCG_s6UInt16VSgs6UInt32VSgSDyS2SGtF', symObjAddr: 0x4D90, symBinAddr: 0x12190, symSize: 0x110 } + - { offsetInCU: 0x7901, offset: 0x69CC4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySSF', symObjAddr: 0x4EA0, symBinAddr: 0x122A0, symSize: 0x1A0 } + - { offsetInCU: 0x7AF9, offset: 0x69EBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C11unsubscribeyySayAA16MqttSubscriptionCGF', symObjAddr: 0x5040, symBinAddr: 0x12440, symSize: 0xC0 } + - { offsetInCU: 0x7C15, offset: 0x69FD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C4auth10reasonCode0D10PropertiesyAA0a14MQTTAUTHReasonF0O_AA08MqttAuthG0CtF', symObjAddr: 0x5100, symBinAddr: 0x12500, symSize: 0xF0 } + - { offsetInCU: 0x7CD3, offset: 0x6A096, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfC', symObjAddr: 0x51F0, symBinAddr: 0x125F0, symSize: 0x20 } + - { offsetInCU: 0x7CE7, offset: 0x6A0AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5CACycfc', symObjAddr: 0x5210, symBinAddr: 0x12610, symSize: 0x30 } + - { offsetInCU: 0x7D47, offset: 0x6A10A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketConnectedyyAA0A18MQTTSocketProtocol_pF', symObjAddr: 0x5310, symBinAddr: 0x12710, symSize: 0x10 } + - { offsetInCU: 0x7D97, offset: 0x6A15A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_10didReceive17completionHandleryAA0A18MQTTSocketProtocol_p_So11SecTrustRefaySbctF', symObjAddr: 0x5320, symBinAddr: 0x12720, symSize: 0x1D0 } + - { offsetInCU: 0x7E8C, offset: 0x6A24F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C16socketUrlSession_15didReceiveTrust0gH9Challenge17completionHandleryAA0A18MQTTSocketProtocol_p_So03SecI3RefaSo019NSURLAuthenticationJ0CySo016NSURLSessionAuthJ11DispositionV_So15NSURLCredentialCSgtctF', symObjAddr: 0x54F0, symBinAddr: 0x128F0, symSize: 0x190 } + - { offsetInCU: 0x7F67, offset: 0x6A32A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x5680, symBinAddr: 0x12A80, symSize: 0xB0 } + - { offsetInCU: 0x7FE2, offset: 0x6A3A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_19didWriteDataWithTagyAA0A18MQTTSocketProtocol_p_SitF', symObjAddr: 0x5730, symBinAddr: 0x12B30, symSize: 0x10 } + - { offsetInCU: 0x80C3, offset: 0x6A486, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C6socket_7didRead7withTagyAA0A18MQTTSocketProtocol_p_10Foundation4DataVSitF', symObjAddr: 0x5740, symBinAddr: 0x12B40, symSize: 0x260 } + - { offsetInCU: 0x84F4, offset: 0x6A8B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtF', symObjAddr: 0x59A0, symBinAddr: 0x12DA0, symSize: 0x380 } + - { offsetInCU: 0x873B, offset: 0x6AAFE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C19socketDidDisconnect_9withErroryAA0A18MQTTSocketProtocol_p_s0H0_pSgtFyycfU_', symObjAddr: 0x5D20, symBinAddr: 0x13120, symSize: 0xA0 } + - { offsetInCU: 0x88BA, offset: 0x6AC7D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxciss6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6360, symBinAddr: 0x13690, symSize: 0x1B0 } + - { offsetInCU: 0x891C, offset: 0x6ACDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_s6UInt16V_SayAA16MqttSubscriptionCGTg5', symObjAddr: 0x6510, symBinAddr: 0x13840, symSize: 0xB0 } + - { offsetInCU: 0x898B, offset: 0x6AD4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_SS_AA0A7MQTTQoSOTg5', symObjAddr: 0x65C0, symBinAddr: 0x138F0, symSize: 0x100 } + - { offsetInCU: 0x8A34, offset: 0x6ADF7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_9CocoaMQTT0H7MQTTQoSOTg5', symObjAddr: 0x6750, symBinAddr: 0x13A80, symSize: 0x220 } + - { offsetInCU: 0x8C66, offset: 0x6B029, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7connackyAA0A10MQTTReaderC_AA12FrameConnAckVtFTf4dxn_n', symObjAddr: 0x8F60, symBinAddr: 0x16220, symSize: 0x750 } + - { offsetInCU: 0x926A, offset: 0x6B62D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7publishyAA0A10MQTTReaderC_AA12FramePublishVtFTf4dnn_n', symObjAddr: 0x96B0, symBinAddr: 0x16970, symSize: 0x430 } + - { offsetInCU: 0x95D4, offset: 0x6B997, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6pubrelyAA0A10MQTTReaderC_AA11FramePubRelVtFTf4dnn_n', symObjAddr: 0x9D30, symBinAddr: 0x16FF0, symSize: 0x190 } + - { offsetInCU: 0x974E, offset: 0x6BB11, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_7pubcompyAA0A10MQTTReaderC_AA12FramePubCompVtFTf4dnn_n', symObjAddr: 0x9EC0, symBinAddr: 0x17180, symSize: 0x260 } + - { offsetInCU: 0x9A28, offset: 0x6BDEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_6subackyAA0A10MQTTReaderC_AA11FrameSubAckVtFTf4dnn_n', symObjAddr: 0xA120, symBinAddr: 0x173E0, symSize: 0xA90 } + - { offsetInCU: 0xA0FC, offset: 0x6C4BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8unsubackyAA0A10MQTTReaderC_AA13FrameUnsubAckVtFTf4dnn_n', symObjAddr: 0xABB0, symBinAddr: 0x17E70, symSize: 0x810 } + - { offsetInCU: 0xA60E, offset: 0x6C9D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C10didReceive_8pingrespyAA0A10MQTTReaderC_AA13FramePingRespVtFTf4ddn_n', symObjAddr: 0xB3C0, symBinAddr: 0x18680, symSize: 0x120 } + - { offsetInCU: 0xA763, offset: 0x6CB26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7publish_3DUP8retained10propertiesSiAA0aC7MessageC_S2bAA21MqttPublishPropertiesCtFTf4nndnn_n', symObjAddr: 0xB4E0, symBinAddr: 0x187A0, symSize: 0x780 } + - { offsetInCU: 0xAC3D, offset: 0x6D000, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A5MQTT5C7deliver_10wantToSendyAA0A11MQTTDeliverC_AA5Frame_ptFTf4dnn_n', symObjAddr: 0xBF80, symBinAddr: 0x19200, symSize: 0x300 } + - { offsetInCU: 0x4EE, offset: 0x6D757, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfcTo', symObjAddr: 0x19A0, symBinAddr: 0x1B7A0, symSize: 0x30 } + - { offsetInCU: 0x7C7, offset: 0x6DA30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfETo', symObjAddr: 0x1A00, symBinAddr: 0x1B800, symSize: 0x80 } + - { offsetInCU: 0x7F6, offset: 0x6DA5F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvgTo', symObjAddr: 0x1A80, symBinAddr: 0x1B880, symSize: 0x50 } + - { offsetInCU: 0x992, offset: 0x6DBFB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfC9CocoaMQTT5Frame_p_Tgm5', symObjAddr: 0x1EF0, symBinAddr: 0x1BCF0, symSize: 0x90 } + - { offsetInCU: 0xA87, offset: 0x6DCF0, size: 0x8, addend: 0x0, symName: '_$ss32_copyCollectionToContiguousArrayys0dE0Vy7ElementQzGxSlRzlFs0E5SliceVys5UInt8VG_Tg5', symObjAddr: 0x21C0, symBinAddr: 0x1BFC0, symSize: 0xC0 } + - { offsetInCU: 0xBFA, offset: 0x6DE63, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0x2280, symBinAddr: 0x1C080, symSize: 0x70 } + - { offsetInCU: 0xCCA, offset: 0x6DF33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCMa', symObjAddr: 0x2660, symBinAddr: 0x1C420, symSize: 0x20 } + - { offsetInCU: 0xD5B, offset: 0x6DFC4, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x2880, symBinAddr: 0x1C600, symSize: 0x20 } + - { offsetInCU: 0xDA1, offset: 0x6E00A, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_s10ArraySliceVyAEGTgm5', symObjAddr: 0x0, symBinAddr: 0x19E00, symSize: 0xE0 } + - { offsetInCU: 0x1050, offset: 0x6E2B9, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDyS2SG_Tg579$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvgySS3key_SS5valuet_tXEfU_Says0L0VG0E4MQTT0ehI0CTf1cn_nTf4nng_n', symObjAddr: 0x22F0, symBinAddr: 0x1C0F0, symSize: 0x330 } + - { offsetInCU: 0x1319, offset: 0x6E582, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS_SD6ValuesVyS2S_GTgm5Tf4g_n', symObjAddr: 0x2680, symBinAddr: 0x1C440, symSize: 0xC0 } + - { offsetInCU: 0x13EB, offset: 0x6E654, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCs5UInt8V_10Foundation4DataVTgm5Tf4g_n', symObjAddr: 0x2740, symBinAddr: 0x1C500, symSize: 0x100 } + - { offsetInCU: 0x15CD, offset: 0x6E836, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0xE0, symBinAddr: 0x19EE0, symSize: 0x60 } + - { offsetInCU: 0x15E1, offset: 0x6E84A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x140, symBinAddr: 0x19F40, symSize: 0x50 } + - { offsetInCU: 0x15F5, offset: 0x6E85E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x190, symBinAddr: 0x19F90, symSize: 0x30 } + - { offsetInCU: 0x1618, offset: 0x6E881, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x1C0, symBinAddr: 0x19FC0, symSize: 0x40 } + - { offsetInCU: 0x164B, offset: 0x6E8B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x200, symBinAddr: 0x1A000, symSize: 0x40 } + - { offsetInCU: 0x1670, offset: 0x6E8D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvg', symObjAddr: 0x240, symBinAddr: 0x1A040, symSize: 0x50 } + - { offsetInCU: 0x168D, offset: 0x6E8F6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvs', symObjAddr: 0x290, symBinAddr: 0x1A090, symSize: 0x50 } + - { offsetInCU: 0x16C0, offset: 0x6E929, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topicSSvM', symObjAddr: 0x2E0, symBinAddr: 0x1A0E0, symSize: 0x40 } + - { offsetInCU: 0x16E5, offset: 0x6E94E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvg', symObjAddr: 0x320, symBinAddr: 0x1A120, symSize: 0x40 } + - { offsetInCU: 0x1702, offset: 0x6E96B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvs', symObjAddr: 0x360, symBinAddr: 0x1A160, symSize: 0x50 } + - { offsetInCU: 0x1735, offset: 0x6E99E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC7payloadSays5UInt8VGvM', symObjAddr: 0x3B0, symBinAddr: 0x1A1B0, symSize: 0x40 } + - { offsetInCU: 0x175A, offset: 0x6E9C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvg', symObjAddr: 0x3F0, symBinAddr: 0x1A1F0, symSize: 0x30 } + - { offsetInCU: 0x177D, offset: 0x6E9E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvs', symObjAddr: 0x420, symBinAddr: 0x1A220, symSize: 0x40 } + - { offsetInCU: 0x17B0, offset: 0x6EA19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC8retainedSbvM', symObjAddr: 0x460, symBinAddr: 0x1A260, symSize: 0x40 } + - { offsetInCU: 0x17D5, offset: 0x6EA3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvg', symObjAddr: 0x4A0, symBinAddr: 0x1A2A0, symSize: 0x30 } + - { offsetInCU: 0x17F8, offset: 0x6EA61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvs', symObjAddr: 0x4D0, symBinAddr: 0x1A2D0, symSize: 0x40 } + - { offsetInCU: 0x182B, offset: 0x6EA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM', symObjAddr: 0x510, symBinAddr: 0x1A310, symSize: 0x40 } + - { offsetInCU: 0x1850, offset: 0x6EAB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10duplicatedSbvM.resume.0', symObjAddr: 0x550, symBinAddr: 0x1A350, symSize: 0x10 } + - { offsetInCU: 0x1871, offset: 0x6EADA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvg', symObjAddr: 0x560, symBinAddr: 0x1A360, symSize: 0x30 } + - { offsetInCU: 0x188E, offset: 0x6EAF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvs', symObjAddr: 0x590, symBinAddr: 0x1A390, symSize: 0x40 } + - { offsetInCU: 0x18C1, offset: 0x6EB2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17isUTF8EncodedDataSbvM', symObjAddr: 0x5D0, symBinAddr: 0x1A3D0, symSize: 0x40 } + - { offsetInCU: 0x18E6, offset: 0x6EB4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willDelayIntervals6UInt32VSgvM', symObjAddr: 0x650, symBinAddr: 0x1A450, symSize: 0x40 } + - { offsetInCU: 0x190B, offset: 0x6EB74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC18willExpiryIntervals6UInt32VSgvM', symObjAddr: 0x760, symBinAddr: 0x1A560, symSize: 0x40 } + - { offsetInCU: 0x1930, offset: 0x6EB99, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11contentTypeSSSgvM', symObjAddr: 0x7E0, symBinAddr: 0x1A5E0, symSize: 0x40 } + - { offsetInCU: 0x1955, offset: 0x6EBBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC17willResponseTopicSSSgvM', symObjAddr: 0x8F0, symBinAddr: 0x1A6F0, symSize: 0x40 } + - { offsetInCU: 0x197A, offset: 0x6EBE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC19willCorrelationDataSays5UInt8VGSgvM', symObjAddr: 0x970, symBinAddr: 0x1A770, symSize: 0x40 } + - { offsetInCU: 0x199F, offset: 0x6EC08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC16willUserPropertySDyS2SGSgvM', symObjAddr: 0xA70, symBinAddr: 0x1A870, symSize: 0x40 } + - { offsetInCU: 0x1A22, offset: 0x6EC8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC6stringSSSgvg', symObjAddr: 0xAB0, symBinAddr: 0x1A8B0, symSize: 0xF0 } + - { offsetInCU: 0x1C38, offset: 0x6EEA1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC10propertiesSays5UInt8VGvg', symObjAddr: 0xBA0, symBinAddr: 0x1A9A0, symSize: 0x750 } + - { offsetInCU: 0x273D, offset: 0x6F9A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x12F0, symBinAddr: 0x1B0F0, symSize: 0x180 } + - { offsetInCU: 0x27DF, offset: 0x6FA48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x1470, symBinAddr: 0x1B270, symSize: 0x140 } + - { offsetInCU: 0x2842, offset: 0x6FAAB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfC', symObjAddr: 0x15B0, symBinAddr: 0x1B3B0, symSize: 0x60 } + - { offsetInCU: 0x2856, offset: 0x6FABF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC5topic7payload3qos8retainedACSS_SDySSypGAA0A7MQTTQoSOSbtKcfc', symObjAddr: 0x1610, symBinAddr: 0x1B410, symSize: 0x340 } + - { offsetInCU: 0x28E7, offset: 0x6FB50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfC', symObjAddr: 0x1950, symBinAddr: 0x1B750, symSize: 0x20 } + - { offsetInCU: 0x28FB, offset: 0x6FB64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCACycfc', symObjAddr: 0x1970, symBinAddr: 0x1B770, symSize: 0x30 } + - { offsetInCU: 0x2954, offset: 0x6FBBD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageCfD', symObjAddr: 0x19D0, symBinAddr: 0x1B7D0, symSize: 0x30 } + - { offsetInCU: 0x29F5, offset: 0x6FC5E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A12MQTT5MessageC11descriptionSSvg', symObjAddr: 0x1AD0, symBinAddr: 0x1B8D0, symSize: 0x1F0 } + - { offsetInCU: 0x2C19, offset: 0x6FE82, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SayAFGTg5', symObjAddr: 0x1CC0, symBinAddr: 0x1BAC0, symSize: 0xC0 } + - { offsetInCU: 0x2E47, offset: 0x700B0, size: 0x8, addend: 0x0, symName: '_$sSa6append10contentsOfyqd__n_t7ElementQyd__RszSTRd__lFs5UInt8V_SS8UTF8ViewVTg5', symObjAddr: 0x1D80, symBinAddr: 0x1BB80, symSize: 0x130 } + - { offsetInCU: 0x20B, offset: 0x70515, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3ack2byyAA5Frame_p_tFyyYbcfU_Tf2nin_n', symObjAddr: 0xE60, symBinAddr: 0x1D530, symSize: 0x820 } + - { offsetInCU: 0x608, offset: 0x70912, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC8cleanAllyyFyyXEfU_', symObjAddr: 0x1680, symBinAddr: 0x1DD50, symSize: 0xB0 } + - { offsetInCU: 0x6C6, offset: 0x709D0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfcTo', symObjAddr: 0x1970, symBinAddr: 0x1E040, symSize: 0x20 } + - { offsetInCU: 0x8DC, offset: 0x70BE6, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TR', symObjAddr: 0x710, symBinAddr: 0x1CDE0, symSize: 0x20 } + - { offsetInCU: 0x8F0, offset: 0x70BFA, size: 0x8, addend: 0x0, symName: '_$sIeg_IyB_TR', symObjAddr: 0x730, symBinAddr: 0x1CE00, symSize: 0x20 } + - { offsetInCU: 0xA7F, offset: 0x70D89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfETo', symObjAddr: 0x19C0, symBinAddr: 0x1E090, symSize: 0x70 } + - { offsetInCU: 0xAAE, offset: 0x70DB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCMa', symObjAddr: 0x1A30, symBinAddr: 0x1E100, symSize: 0x20 } + - { offsetInCU: 0xAC2, offset: 0x70DCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwCP', symObjAddr: 0x1A50, symBinAddr: 0x1E120, symSize: 0x30 } + - { offsetInCU: 0xAD6, offset: 0x70DE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwxx', symObjAddr: 0x1A80, symBinAddr: 0x1E150, symSize: 0x10 } + - { offsetInCU: 0xAEA, offset: 0x70DF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwcp', symObjAddr: 0x1AC0, symBinAddr: 0x1E160, symSize: 0x40 } + - { offsetInCU: 0xAFE, offset: 0x70E08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwca', symObjAddr: 0x1B00, symBinAddr: 0x1E1A0, symSize: 0x30 } + - { offsetInCU: 0xB12, offset: 0x70E1C, size: 0x8, addend: 0x0, symName: ___swift_assign_boxed_opaque_existential_1, symObjAddr: 0x1B30, symBinAddr: 0x1E1D0, symSize: 0x130 } + - { offsetInCU: 0xB26, offset: 0x70E30, size: 0x8, addend: 0x0, symName: ___swift_memcpy48_8, symObjAddr: 0x1C60, symBinAddr: 0x1E300, symSize: 0x20 } + - { offsetInCU: 0xB3A, offset: 0x70E44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwta', symObjAddr: 0x1C80, symBinAddr: 0x1E320, symSize: 0x40 } + - { offsetInCU: 0xB4E, offset: 0x70E58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwet', symObjAddr: 0x1CC0, symBinAddr: 0x1E360, symSize: 0x40 } + - { offsetInCU: 0xB62, offset: 0x70E6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVwst', symObjAddr: 0x1D00, symBinAddr: 0x1E3A0, symSize: 0x50 } + - { offsetInCU: 0xB76, offset: 0x70E80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVMa', symObjAddr: 0x1D50, symBinAddr: 0x1E3F0, symSize: 0x10 } + - { offsetInCU: 0xDA6, offset: 0x710B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16ackInflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_', symObjAddr: 0x26D0, symBinAddr: 0x1ED70, symSize: 0x8B0 } + - { offsetInCU: 0x1298, offset: 0x715A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_TA', symObjAddr: 0x2FC0, symBinAddr: 0x1F660, symSize: 0x20 } + - { offsetInCU: 0x12B7, offset: 0x715C1, size: 0x8, addend: 0x0, symName: '_$sIg_Ieg_TRTA', symObjAddr: 0x3000, symBinAddr: 0x1F6A0, symSize: 0x20 } + - { offsetInCU: 0x12E0, offset: 0x715EA, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x3020, symBinAddr: 0x1F6C0, symSize: 0x20 } + - { offsetInCU: 0x12F4, offset: 0x715FE, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x3040, symBinAddr: 0x1F6E0, symSize: 0x10 } + - { offsetInCU: 0x1308, offset: 0x71612, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyYbcfU0_TA', symObjAddr: 0x3070, symBinAddr: 0x1F710, symSize: 0x10 } + - { offsetInCU: 0x135C, offset: 0x71666, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF9CocoaMQTT5Frame_p_Tg5Tf4nen_n', symObjAddr: 0x3170, symBinAddr: 0x1F7A0, symSize: 0x70 } + - { offsetInCU: 0x13AD, offset: 0x716B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_nAA0O6PubRelV_Tg5', symObjAddr: 0x31E0, symBinAddr: 0x1F810, symSize: 0x5C0 } + - { offsetInCU: 0x159A, offset: 0x718A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7sendfun33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFTf4en_n', symObjAddr: 0x37A0, symBinAddr: 0x1FDD0, symSize: 0x580 } + - { offsetInCU: 0x1795, offset: 0x71A9F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOc', symObjAddr: 0x3D20, symBinAddr: 0x20350, symSize: 0x30 } + - { offsetInCU: 0x17A9, offset: 0x71AB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5Frame_pWOb', symObjAddr: 0x3D50, symBinAddr: 0x20380, symSize: 0x20 } + - { offsetInCU: 0x17BD, offset: 0x71AC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_TA', symObjAddr: 0x3D70, symBinAddr: 0x203A0, symSize: 0x10 } + - { offsetInCU: 0x17D1, offset: 0x71ADB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_yyYbcfU_TA', symObjAddr: 0x3DB0, symBinAddr: 0x203E0, symSize: 0x20 } + - { offsetInCU: 0x180A, offset: 0x71B14, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOc', symObjAddr: 0x3DD0, symBinAddr: 0x20400, symSize: 0x40 } + - { offsetInCU: 0x1833, offset: 0x71B3D, size: 0x8, addend: 0x0, symName: '_$sSi6offset_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV7elementtSgWOb', symObjAddr: 0x3E10, symBinAddr: 0x20440, symSize: 0x40 } + - { offsetInCU: 0x184E, offset: 0x71B58, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOh', symObjAddr: 0x3E50, symBinAddr: 0x20480, symSize: 0x20 } + - { offsetInCU: 0x187E, offset: 0x71B88, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVWOf', symObjAddr: 0x3EA0, symBinAddr: 0x204A0, symSize: 0x30 } + - { offsetInCU: 0x18A7, offset: 0x71BB1, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_1, symObjAddr: 0x3ED0, symBinAddr: 0x204D0, symSize: 0x30 } + - { offsetInCU: 0x18BB, offset: 0x71BC5, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x3F20, symBinAddr: 0x20520, symSize: 0x30 } + - { offsetInCU: 0x18CF, offset: 0x71BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A19MQTTDeliverProtocol_pSgXwWOh', symObjAddr: 0x3FC0, symBinAddr: 0x205C0, symSize: 0x20 } + - { offsetInCU: 0x18E3, offset: 0x71BED, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTAA13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVRszlE9filterMapACLL10isIncludedSayADGSb_ADtADXE_tF03$s9a25MQTT0A11MQTTDeliverC16ackc10Frame33_95efghijklmN72LL9withMsgid4typeSayAA0F0_pGs6UInt16V_AA0F4TypeOtFSb_AA0eF0AELLVtAOXEfU_s6UInt16VAA0D4TypeOAA0aV0CSayAA0D0_pGTf1cn_nTf4nnngn_n', symObjAddr: 0x3FE0, symBinAddr: 0x205E0, symSize: 0x1C0 } + - { offsetInCU: 0x1AD6, offset: 0x71DE0, size: 0x8, addend: 0x0, symName: '_$sSb_9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLVtWOh', symObjAddr: 0x41A0, symBinAddr: 0x207A0, symSize: 0x30 } + - { offsetInCU: 0x1AEA, offset: 0x71DF4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVWOr', symObjAddr: 0x4270, symBinAddr: 0x20870, symSize: 0x40 } + - { offsetInCU: 0x1AFE, offset: 0x71E08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_TA', symObjAddr: 0x43C0, symBinAddr: 0x209C0, symSize: 0x20 } + - { offsetInCU: 0x1B12, offset: 0x71E1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyYbcfU0_TA', symObjAddr: 0x4480, symBinAddr: 0x20A00, symSize: 0x10 } + - { offsetInCU: 0x1F88, offset: 0x72292, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCF', symObjAddr: 0x0, symBinAddr: 0x1C6D0, symSize: 0x370 } + - { offsetInCU: 0x2069, offset: 0x72373, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC16recoverSessionByyyAA0A11MQTTStorageCFyyXEfU_', symObjAddr: 0x370, symBinAddr: 0x1CA40, symSize: 0x3A0 } + - { offsetInCU: 0x2553, offset: 0x7285D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC12tryTransport33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x750, symBinAddr: 0x1CE20, symSize: 0x90 } + - { offsetInCU: 0x26BF, offset: 0x729C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVF', symObjAddr: 0x7E0, symBinAddr: 0x1CEB0, symSize: 0x4D0 } + - { offsetInCU: 0x28BE, offset: 0x72BC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC3addySbAA12FramePublishVFyyXEfU_', symObjAddr: 0xCB0, symBinAddr: 0x1D380, symSize: 0x160 } + - { offsetInCU: 0x2B64, offset: 0x72E6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCACycfc', symObjAddr: 0x1730, symBinAddr: 0x1DE00, symSize: 0x240 } + - { offsetInCU: 0x2BAB, offset: 0x72EB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverCfD', symObjAddr: 0x1990, symBinAddr: 0x1E060, symSize: 0x30 } + - { offsetInCU: 0x2BEA, offset: 0x72EF4, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x1D60, symBinAddr: 0x1E400, symSize: 0x90 } + - { offsetInCU: 0x2D27, offset: 0x73031, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pF', symObjAddr: 0x1DF0, symBinAddr: 0x1E490, symSize: 0x280 } + - { offsetInCU: 0x2F43, offset: 0x7324D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC7deliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyAA5Frame_pFyycfU_', symObjAddr: 0x2070, symBinAddr: 0x1E710, symSize: 0x210 } + - { offsetInCU: 0x3048, offset: 0x73352, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTDeliverC9redeliver33_95E0A6B76F6AC9616E232A5BF1E96E76LLyyF', symObjAddr: 0x2280, symBinAddr: 0x1E920, symSize: 0x450 } + - { offsetInCU: 0x33D7, offset: 0x736E1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT5Frame_p_Tg5', symObjAddr: 0x3130, symBinAddr: 0x1F760, symSize: 0x20 } + - { offsetInCU: 0x3407, offset: 0x73711, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF9CocoaMQTT13InflightFrame33_95E0A6B76F6AC9616E232A5BF1E96E76LLV_Tg5', symObjAddr: 0x3150, symBinAddr: 0x1F780, symSize: 0x20 } + - { offsetInCU: 0x27, offset: 0x737E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x20AE0, symSize: 0x30 } + - { offsetInCU: 0x4B, offset: 0x73809, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvpZ', symObjAddr: 0x4D68, symBinAddr: 0x66AE8, symSize: 0x0 } + - { offsetInCU: 0xF3, offset: 0x738B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfcTo', symObjAddr: 0x2E0, symBinAddr: 0x20DC0, symSize: 0x40 } + - { offsetInCU: 0x17D, offset: 0x7393B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvau', symObjAddr: 0x0, symBinAddr: 0x20AE0, symSize: 0x30 } + - { offsetInCU: 0x1CA, offset: 0x73988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x20BE0, symSize: 0x20 } + - { offsetInCU: 0x1FB, offset: 0x739B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x120, symBinAddr: 0x20C00, symSize: 0x10 } + - { offsetInCU: 0x217, offset: 0x739D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x4A0, symBinAddr: 0x20F80, symSize: 0x20 } + - { offsetInCU: 0x26C, offset: 0x73A2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6logger_WZ', symObjAddr: 0x130, symBinAddr: 0x20C10, symSize: 0x30 } + - { offsetInCU: 0x332, offset: 0x73AF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfETo', symObjAddr: 0x490, symBinAddr: 0x20F70, symSize: 0x10 } + - { offsetInCU: 0x35D, offset: 0x73B1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCMa', symObjAddr: 0x4C0, symBinAddr: 0x20FA0, symSize: 0x20 } + - { offsetInCU: 0x371, offset: 0x73B2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASQWb', symObjAddr: 0x520, symBinAddr: 0x20FC0, symSize: 0x10 } + - { offsetInCU: 0x385, offset: 0x73B43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOACSQAAWl', symObjAddr: 0x530, symBinAddr: 0x20FD0, symSize: 0x30 } + - { offsetInCU: 0x399, offset: 0x73B57, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x560, symBinAddr: 0x21000, symSize: 0x10 } + - { offsetInCU: 0x3AD, offset: 0x73B6B, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x570, symBinAddr: 0x21010, symSize: 0x10 } + - { offsetInCU: 0x3C1, offset: 0x73B7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwet', symObjAddr: 0x580, symBinAddr: 0x21020, symSize: 0x80 } + - { offsetInCU: 0x3D5, offset: 0x73B93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwst', symObjAddr: 0x600, symBinAddr: 0x210A0, symSize: 0xD0 } + - { offsetInCU: 0x3E9, offset: 0x73BA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwug', symObjAddr: 0x6D0, symBinAddr: 0x21170, symSize: 0x10 } + - { offsetInCU: 0x3FD, offset: 0x73BBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwup', symObjAddr: 0x6E0, symBinAddr: 0x21180, symSize: 0x10 } + - { offsetInCU: 0x411, offset: 0x73BCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOwui', symObjAddr: 0x6F0, symBinAddr: 0x21190, symSize: 0x10 } + - { offsetInCU: 0x425, offset: 0x73BE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOMa', symObjAddr: 0x700, symBinAddr: 0x211A0, symSize: 0xA } + - { offsetInCU: 0x462, offset: 0x73C20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x20B30, symSize: 0x10 } + - { offsetInCU: 0x512, offset: 0x73CD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH9hashValueSivgTW', symObjAddr: 0x60, symBinAddr: 0x20B40, symSize: 0x40 } + - { offsetInCU: 0x5C1, offset: 0x73D7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA0, symBinAddr: 0x20B80, symSize: 0x20 } + - { offsetInCU: 0x614, offset: 0x73DD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC0, symBinAddr: 0x20BA0, symSize: 0x40 } + - { offsetInCU: 0x7A2, offset: 0x73F60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueACSgSi_tcfC', symObjAddr: 0x30, symBinAddr: 0x20B10, symSize: 0x10 } + - { offsetInCU: 0x7B6, offset: 0x73F74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A15MQTTLoggerLevelO8rawValueSivg', symObjAddr: 0x40, symBinAddr: 0x20B20, symSize: 0x10 } + - { offsetInCU: 0x813, offset: 0x73FD1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfC', symObjAddr: 0x160, symBinAddr: 0x20C40, symSize: 0x20 } + - { offsetInCU: 0x82D, offset: 0x73FEB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvgZ', symObjAddr: 0x180, symBinAddr: 0x20C60, symSize: 0x50 } + - { offsetInCU: 0x85A, offset: 0x74018, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvsZ', symObjAddr: 0x1D0, symBinAddr: 0x20CB0, symSize: 0x60 } + - { offsetInCU: 0x897, offset: 0x74055, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ', symObjAddr: 0x230, symBinAddr: 0x20D10, symSize: 0x60 } + - { offsetInCU: 0x8C4, offset: 0x74082, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC6loggerACvMZ.resume.0', symObjAddr: 0x290, symBinAddr: 0x20D70, symSize: 0x10 } + - { offsetInCU: 0x8E5, offset: 0x740A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCACycfc', symObjAddr: 0x2A0, symBinAddr: 0x20D80, symSize: 0x40 } + - { offsetInCU: 0x981, offset: 0x7413F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerC3log5level7messageyAA0aC5LevelO_SStF', symObjAddr: 0x320, symBinAddr: 0x20E00, symSize: 0x140 } + - { offsetInCU: 0xB0A, offset: 0x742C8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTLoggerCfD', symObjAddr: 0x460, symBinAddr: 0x20F40, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x74326, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x211B0, symSize: 0x120 } + - { offsetInCU: 0x2AE, offset: 0x745AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfcTo', symObjAddr: 0x900, symBinAddr: 0x21AB0, symSize: 0x30 } + - { offsetInCU: 0x3BD, offset: 0x746BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfETo', symObjAddr: 0x960, symBinAddr: 0x21B10, symSize: 0x30 } + - { offsetInCU: 0x3EC, offset: 0x746EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvgTo', symObjAddr: 0x990, symBinAddr: 0x21B40, symSize: 0x50 } + - { offsetInCU: 0x473, offset: 0x74772, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCMa', symObjAddr: 0xBD0, symBinAddr: 0x21D80, symSize: 0x20 } + - { offsetInCU: 0x6C5, offset: 0x749C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x0, symBinAddr: 0x211B0, symSize: 0x120 } + - { offsetInCU: 0x79F, offset: 0x74A9E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfC', symObjAddr: 0x120, symBinAddr: 0x212D0, symSize: 0xF0 } + - { offsetInCU: 0x7F8, offset: 0x74AF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x210, symBinAddr: 0x213C0, symSize: 0x30 } + - { offsetInCU: 0x81B, offset: 0x74B1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x240, symBinAddr: 0x213F0, symSize: 0x40 } + - { offsetInCU: 0x84E, offset: 0x74B4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x280, symBinAddr: 0x21430, symSize: 0x40 } + - { offsetInCU: 0x873, offset: 0x74B72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvg', symObjAddr: 0x2C0, symBinAddr: 0x21470, symSize: 0x50 } + - { offsetInCU: 0x890, offset: 0x74B8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvs', symObjAddr: 0x310, symBinAddr: 0x214C0, symSize: 0x50 } + - { offsetInCU: 0x8C3, offset: 0x74BC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topicSSvM', symObjAddr: 0x360, symBinAddr: 0x21510, symSize: 0x40 } + - { offsetInCU: 0x8E8, offset: 0x74BE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvg', symObjAddr: 0x3A0, symBinAddr: 0x21550, symSize: 0x40 } + - { offsetInCU: 0x905, offset: 0x74C04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvs', symObjAddr: 0x3E0, symBinAddr: 0x21590, symSize: 0x50 } + - { offsetInCU: 0x938, offset: 0x74C37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC7payloadSays5UInt8VGvM', symObjAddr: 0x430, symBinAddr: 0x215E0, symSize: 0x40 } + - { offsetInCU: 0x95D, offset: 0x74C5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvg', symObjAddr: 0x470, symBinAddr: 0x21620, symSize: 0x30 } + - { offsetInCU: 0x980, offset: 0x74C7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvs', symObjAddr: 0x4A0, symBinAddr: 0x21650, symSize: 0x40 } + - { offsetInCU: 0x9B3, offset: 0x74CB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC8retainedSbvM', symObjAddr: 0x4E0, symBinAddr: 0x21690, symSize: 0x40 } + - { offsetInCU: 0x9D8, offset: 0x74CD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvg', symObjAddr: 0x520, symBinAddr: 0x216D0, symSize: 0x30 } + - { offsetInCU: 0x9FB, offset: 0x74CFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvs', symObjAddr: 0x550, symBinAddr: 0x21700, symSize: 0x40 } + - { offsetInCU: 0xA2E, offset: 0x74D2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM', symObjAddr: 0x590, symBinAddr: 0x21740, symSize: 0x40 } + - { offsetInCU: 0xA53, offset: 0x74D52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC10duplicatedSbvM.resume.0', symObjAddr: 0x5D0, symBinAddr: 0x21780, symSize: 0x10 } + - { offsetInCU: 0xACD, offset: 0x74DCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC6stringSSSgvg', symObjAddr: 0x5E0, symBinAddr: 0x21790, symSize: 0xF0 } + - { offsetInCU: 0xBCD, offset: 0x74ECC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic6string3qos8retainedACSS_SSAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x6D0, symBinAddr: 0x21880, symSize: 0x110 } + - { offsetInCU: 0xC51, offset: 0x74F50, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC5topic7payload3qos8retainedACSS_Says5UInt8VGAA0A7MQTTQoSOSbtcfc', symObjAddr: 0x7E0, symBinAddr: 0x21990, symSize: 0xD0 } + - { offsetInCU: 0xC96, offset: 0x74F95, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfC', symObjAddr: 0x8B0, symBinAddr: 0x21A60, symSize: 0x20 } + - { offsetInCU: 0xCAA, offset: 0x74FA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCACycfc', symObjAddr: 0x8D0, symBinAddr: 0x21A80, symSize: 0x30 } + - { offsetInCU: 0xD03, offset: 0x75002, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageCfD', symObjAddr: 0x930, symBinAddr: 0x21AE0, symSize: 0x30 } + - { offsetInCU: 0xD9F, offset: 0x7509E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTMessageC11descriptionSSvg', symObjAddr: 0x9E0, symBinAddr: 0x21B90, symSize: 0x1F0 } + - { offsetInCU: 0x27, offset: 0x752B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x21DE0, symSize: 0x20 } + - { offsetInCU: 0x87, offset: 0x75312, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x21EE0, symSize: 0x20 } + - { offsetInCU: 0xB8, offset: 0x75343, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x120, symBinAddr: 0x21F00, symSize: 0x20 } + - { offsetInCU: 0xE1, offset: 0x7536C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x7B0, symBinAddr: 0x22590, symSize: 0x20 } + - { offsetInCU: 0x180, offset: 0x7540B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x240, symBinAddr: 0x22020, symSize: 0x20 } + - { offsetInCU: 0x1B1, offset: 0x7543C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x260, symBinAddr: 0x22040, symSize: 0x20 } + - { offsetInCU: 0x1DA, offset: 0x75465, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfCTf4nd_n', symObjAddr: 0x7D0, symBinAddr: 0x225B0, symSize: 0x90 } + - { offsetInCU: 0x31B, offset: 0x755A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToString4data6offsetSS6resStr_Si9newOffsettSgSays5UInt8VG_SitF', symObjAddr: 0x280, symBinAddr: 0x22060, symSize: 0x250 } + - { offsetInCU: 0x5FC, offset: 0x75887, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20unsignedByteToBinary4data6offsetSays5UInt8VG6resStr_Si9newOffsettSgAG_SitF', symObjAddr: 0x4D0, symBinAddr: 0x222B0, symSize: 0x150 } + - { offsetInCU: 0x898, offset: 0x75B23, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT25decodeVariableByteInteger4data6offsetSi3res_Si9newOffsettSays5UInt8VG_SitF', symObjAddr: 0x620, symBinAddr: 0x22400, symSize: 0xC0 } + - { offsetInCU: 0x9DD, offset: 0x75C68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21beVariableByteInteger6lengthSays5UInt8VGSi_tF', symObjAddr: 0x6E0, symBinAddr: 0x224C0, symSize: 0xD0 } + - { offsetInCU: 0xB09, offset: 0x75D94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASQWb', symObjAddr: 0x860, symBinAddr: 0x22640, symSize: 0x10 } + - { offsetInCU: 0xB1D, offset: 0x75DA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOACSQAAWl', symObjAddr: 0x870, symBinAddr: 0x22650, symSize: 0x30 } + - { offsetInCU: 0xB31, offset: 0x75DBC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASQWb', symObjAddr: 0x8A0, symBinAddr: 0x22680, symSize: 0x10 } + - { offsetInCU: 0xB45, offset: 0x75DD0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOACSQAAWl', symObjAddr: 0x8B0, symBinAddr: 0x22690, symSize: 0x30 } + - { offsetInCU: 0xB59, offset: 0x75DE4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwet', symObjAddr: 0x900, symBinAddr: 0x226C0, symSize: 0x80 } + - { offsetInCU: 0xB6D, offset: 0x75DF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwst', symObjAddr: 0x980, symBinAddr: 0x22740, symSize: 0xD0 } + - { offsetInCU: 0xB81, offset: 0x75E0C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwug', symObjAddr: 0xA50, symBinAddr: 0x22810, symSize: 0x10 } + - { offsetInCU: 0xB95, offset: 0x75E20, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwup', symObjAddr: 0xA60, symBinAddr: 0x22820, symSize: 0x10 } + - { offsetInCU: 0xBA9, offset: 0x75E34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOwui', symObjAddr: 0xA70, symBinAddr: 0x22830, symSize: 0x10 } + - { offsetInCU: 0xBBD, offset: 0x75E48, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOMa', symObjAddr: 0xA80, symBinAddr: 0x22840, symSize: 0x10 } + - { offsetInCU: 0xBD1, offset: 0x75E5C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwet', symObjAddr: 0xA90, symBinAddr: 0x22850, symSize: 0x80 } + - { offsetInCU: 0xBE5, offset: 0x75E70, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwst', symObjAddr: 0xB10, symBinAddr: 0x228D0, symSize: 0xD0 } + - { offsetInCU: 0xBF9, offset: 0x75E84, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOwup', symObjAddr: 0xBE0, symBinAddr: 0x229A0, symSize: 0x10 } + - { offsetInCU: 0xC0D, offset: 0x75E98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOMa', symObjAddr: 0xBF0, symBinAddr: 0x229B0, symSize: 0x10 } + - { offsetInCU: 0xC21, offset: 0x75EAC, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGAByxG10Foundation15ContiguousBytesAgDRszlWl', symObjAddr: 0xC40, symBinAddr: 0x229C0, symSize: 0x40 } + - { offsetInCU: 0xC35, offset: 0x75EC0, size: 0x8, addend: 0x0, symName: '_$ss15CollectionOfOneVys5UInt8VGMa', symObjAddr: 0xC80, symBinAddr: 0x22A00, symSize: 0x30 } + - { offsetInCU: 0xC72, offset: 0x75EFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x30, symBinAddr: 0x21E10, symSize: 0x20 } + - { offsetInCU: 0xD4B, offset: 0x75FD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH9hashValueSivgTW', symObjAddr: 0x50, symBinAddr: 0x21E30, symSize: 0x40 } + - { offsetInCU: 0xE23, offset: 0x760AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x90, symBinAddr: 0x21E70, symSize: 0x30 } + - { offsetInCU: 0xE9F, offset: 0x7612A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC0, symBinAddr: 0x21EA0, symSize: 0x40 } + - { offsetInCU: 0xF5A, offset: 0x761E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x170, symBinAddr: 0x21F50, symSize: 0x20 } + - { offsetInCU: 0x102D, offset: 0x762B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH9hashValueSivgTW', symObjAddr: 0x190, symBinAddr: 0x21F70, symSize: 0x40 } + - { offsetInCU: 0x1105, offset: 0x76390, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D0, symBinAddr: 0x21FB0, symSize: 0x30 } + - { offsetInCU: 0x1181, offset: 0x7640C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x200, symBinAddr: 0x21FE0, symSize: 0x40 } + - { offsetInCU: 0x1399, offset: 0x76624, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValues5UInt8Vvg', symObjAddr: 0x0, symBinAddr: 0x21DE0, symSize: 0x20 } + - { offsetInCU: 0x13BC, offset: 0x76647, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A16MQTTPropertyNameO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x20, symBinAddr: 0x21E00, symSize: 0x10 } + - { offsetInCU: 0x1416, offset: 0x766A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueACSgSi_tcfC', symObjAddr: 0x140, symBinAddr: 0x21F20, symSize: 0x10 } + - { offsetInCU: 0x142A, offset: 0x766B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9formatIntO8rawValueSivg', symObjAddr: 0x150, symBinAddr: 0x21F30, symSize: 0x20 } + - { offsetInCU: 0x3AF, offset: 0x76B61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCMa', symObjAddr: 0x1370, symBinAddr: 0x23DC0, symSize: 0x20 } + - { offsetInCU: 0x3C3, offset: 0x76B75, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketProtocol_pWOc', symObjAddr: 0x1390, symBinAddr: 0x23DE0, symSize: 0x30 } + - { offsetInCU: 0x3D7, offset: 0x76B89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOs', symObjAddr: 0x1460, symBinAddr: 0x23E10, symSize: 0x30 } + - { offsetInCU: 0x3EB, offset: 0x76B9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVSgWOe', symObjAddr: 0x1490, symBinAddr: 0x23E40, symSize: 0x50 } + - { offsetInCU: 0x3FF, offset: 0x76BB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOs', symObjAddr: 0x14E0, symBinAddr: 0x23E90, symSize: 0x40 } + - { offsetInCU: 0x413, offset: 0x76BC5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVSgWOe', symObjAddr: 0x1520, symBinAddr: 0x23ED0, symSize: 0x60 } + - { offsetInCU: 0x427, offset: 0x76BD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOs', symObjAddr: 0x1620, symBinAddr: 0x23FD0, symSize: 0x50 } + - { offsetInCU: 0x43B, offset: 0x76BED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVSgWOe', symObjAddr: 0x1670, symBinAddr: 0x24020, symSize: 0x80 } + - { offsetInCU: 0x44F, offset: 0x76C01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTReaderDelegate_pSgXwWOh', symObjAddr: 0x16F0, symBinAddr: 0x240A0, symSize: 0x18 } + - { offsetInCU: 0x4CB, offset: 0x76C7D, size: 0x8, addend: 0x0, symName: '_$sSa9repeating5countSayxGx_SitcfCs5UInt8V_Tgm5', symObjAddr: 0x300, symBinAddr: 0x22D50, symSize: 0x70 } + - { offsetInCU: 0x714, offset: 0x76EC6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC11lengthReadyyys5UInt8VF', symObjAddr: 0x0, symBinAddr: 0x22A50, symSize: 0x170 } + - { offsetInCU: 0x893, offset: 0x77045, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC12payloadReadyyy10Foundation4DataVF', symObjAddr: 0x170, symBinAddr: 0x22BC0, symSize: 0x190 } + - { offsetInCU: 0xAD9, offset: 0x7728B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderC10frameReady33_0D6E282728A53EF46CE82C7394F5C5BDLLyyF', symObjAddr: 0x370, symBinAddr: 0x22DC0, symSize: 0xFC0 } + - { offsetInCU: 0x1159, offset: 0x7790B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTReaderCfD', symObjAddr: 0x1330, symBinAddr: 0x23D80, symSize: 0x40 } + - { offsetInCU: 0x78, offset: 0x77A00, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA0, symBinAddr: 0x24160, symSize: 0x30 } + - { offsetInCU: 0xA9, offset: 0x77A31, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xD0, symBinAddr: 0x24190, symSize: 0x10 } + - { offsetInCU: 0x12A, offset: 0x77AB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x130, symBinAddr: 0x241F0, symSize: 0x30 } + - { offsetInCU: 0x153, offset: 0x77ADB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x650, symBinAddr: 0x24710, symSize: 0x340 } + - { offsetInCU: 0x1B6, offset: 0x77B3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x1D0, symBinAddr: 0x24290, symSize: 0x30 } + - { offsetInCU: 0x1DF, offset: 0x77B67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x9A0, symBinAddr: 0x24A60, symSize: 0x380 } + - { offsetInCU: 0x242, offset: 0x77BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x270, symBinAddr: 0x24330, symSize: 0x30 } + - { offsetInCU: 0x2E7, offset: 0x77C6F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x3A0, symBinAddr: 0x24460, symSize: 0x30 } + - { offsetInCU: 0x352, offset: 0x77CDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x420, symBinAddr: 0x244E0, symSize: 0x30 } + - { offsetInCU: 0x37B, offset: 0x77D03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0xE00, symBinAddr: 0x24EC0, symSize: 0x120 } + - { offsetInCU: 0x3DE, offset: 0x77D66, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x4A0, symBinAddr: 0x24560, symSize: 0x30 } + - { offsetInCU: 0x407, offset: 0x77D8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0xF20, symBinAddr: 0x24FE0, symSize: 0xB0 } + - { offsetInCU: 0x46A, offset: 0x77DF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x520, symBinAddr: 0x245E0, symSize: 0x20 } + - { offsetInCU: 0x4D5, offset: 0x77E5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x620, symBinAddr: 0x246E0, symSize: 0x30 } + - { offsetInCU: 0x507, offset: 0x77E8F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASQWb', symObjAddr: 0xFD0, symBinAddr: 0x25090, symSize: 0x10 } + - { offsetInCU: 0x51B, offset: 0x77EA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOACSQAAWl', symObjAddr: 0xFE0, symBinAddr: 0x250A0, symSize: 0x30 } + - { offsetInCU: 0x52F, offset: 0x77EB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOSHAASQWb', symObjAddr: 0x1010, symBinAddr: 0x250D0, symSize: 0x10 } + - { offsetInCU: 0x543, offset: 0x77ECB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOACSQAAWl', symObjAddr: 0x1020, symBinAddr: 0x250E0, symSize: 0x30 } + - { offsetInCU: 0x557, offset: 0x77EDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOSHAASQWb', symObjAddr: 0x1050, symBinAddr: 0x25110, symSize: 0x10 } + - { offsetInCU: 0x56B, offset: 0x77EF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOACSQAAWl', symObjAddr: 0x1060, symBinAddr: 0x25120, symSize: 0x30 } + - { offsetInCU: 0x57F, offset: 0x77F07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOSHAASQWb', symObjAddr: 0x1090, symBinAddr: 0x25150, symSize: 0x10 } + - { offsetInCU: 0x593, offset: 0x77F1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOACSQAAWl', symObjAddr: 0x10A0, symBinAddr: 0x25160, symSize: 0x30 } + - { offsetInCU: 0x5A7, offset: 0x77F2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOSHAASQWb', symObjAddr: 0x10D0, symBinAddr: 0x25190, symSize: 0x10 } + - { offsetInCU: 0x5BB, offset: 0x77F43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOACSQAAWl', symObjAddr: 0x10E0, symBinAddr: 0x251A0, symSize: 0x30 } + - { offsetInCU: 0x5CF, offset: 0x77F57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOSHAASQWb', symObjAddr: 0x1110, symBinAddr: 0x251D0, symSize: 0x10 } + - { offsetInCU: 0x5E3, offset: 0x77F6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOACSQAAWl', symObjAddr: 0x1120, symBinAddr: 0x251E0, symSize: 0x30 } + - { offsetInCU: 0x5F7, offset: 0x77F7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOSHAASQWb', symObjAddr: 0x1150, symBinAddr: 0x25210, symSize: 0x10 } + - { offsetInCU: 0x60B, offset: 0x77F93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOACSQAAWl', symObjAddr: 0x1160, symBinAddr: 0x25220, symSize: 0x30 } + - { offsetInCU: 0x61F, offset: 0x77FA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x1190, symBinAddr: 0x25250, symSize: 0x10 } + - { offsetInCU: 0x633, offset: 0x77FBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x11A0, symBinAddr: 0x25260, symSize: 0x30 } + - { offsetInCU: 0x647, offset: 0x77FCF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOSHAASQWb', symObjAddr: 0x11D0, symBinAddr: 0x25290, symSize: 0x10 } + - { offsetInCU: 0x65B, offset: 0x77FE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOACSQAAWl', symObjAddr: 0x11E0, symBinAddr: 0x252A0, symSize: 0x30 } + - { offsetInCU: 0x66F, offset: 0x77FF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOSHAASQWb', symObjAddr: 0x1210, symBinAddr: 0x252D0, symSize: 0x10 } + - { offsetInCU: 0x683, offset: 0x7800B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOACSQAAWl', symObjAddr: 0x1220, symBinAddr: 0x252E0, symSize: 0x30 } + - { offsetInCU: 0x697, offset: 0x7801F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOSHAASQWb', symObjAddr: 0x1250, symBinAddr: 0x25310, symSize: 0x10 } + - { offsetInCU: 0x6AB, offset: 0x78033, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOACSQAAWl', symObjAddr: 0x1260, symBinAddr: 0x25320, symSize: 0x30 } + - { offsetInCU: 0x6BF, offset: 0x78047, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOMa', symObjAddr: 0x1290, symBinAddr: 0x25350, symSize: 0x10 } + - { offsetInCU: 0x6D3, offset: 0x7805B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeOMa', symObjAddr: 0x12A0, symBinAddr: 0x25360, symSize: 0x10 } + - { offsetInCU: 0x6E7, offset: 0x7806F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeOMa', symObjAddr: 0x12B0, symBinAddr: 0x25370, symSize: 0x10 } + - { offsetInCU: 0x6FB, offset: 0x78083, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeOMa', symObjAddr: 0x12C0, symBinAddr: 0x25380, symSize: 0x10 } + - { offsetInCU: 0x70F, offset: 0x78097, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeOMa', symObjAddr: 0x12D0, symBinAddr: 0x25390, symSize: 0x10 } + - { offsetInCU: 0x723, offset: 0x780AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeOMa', symObjAddr: 0x12E0, symBinAddr: 0x253A0, symSize: 0x10 } + - { offsetInCU: 0x737, offset: 0x780BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeOMa', symObjAddr: 0x12F0, symBinAddr: 0x253B0, symSize: 0x10 } + - { offsetInCU: 0x74B, offset: 0x780D3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeOMa', symObjAddr: 0x1300, symBinAddr: 0x253C0, symSize: 0x10 } + - { offsetInCU: 0x75F, offset: 0x780E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeOMa', symObjAddr: 0x1310, symBinAddr: 0x253D0, symSize: 0x10 } + - { offsetInCU: 0x773, offset: 0x780FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionOMa', symObjAddr: 0x1320, symBinAddr: 0x253E0, symSize: 0x10 } + - { offsetInCU: 0x787, offset: 0x7810F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorOMa', symObjAddr: 0x1330, symBinAddr: 0x253F0, symSize: 0x10 } + - { offsetInCU: 0x7C4, offset: 0x7814C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x24110, symSize: 0x10 } + - { offsetInCU: 0x829, offset: 0x781B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x70, symBinAddr: 0x24130, symSize: 0x20 } + - { offsetInCU: 0x93F, offset: 0x782C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x0, symBinAddr: 0x240C0, symSize: 0x40 } + - { offsetInCU: 0x95C, offset: 0x782E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTAUTHReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x40, symBinAddr: 0x24100, symSize: 0x10 } + - { offsetInCU: 0x9A8, offset: 0x78330, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTCONNACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x100, symBinAddr: 0x241C0, symSize: 0x10 } + - { offsetInCU: 0x9D6, offset: 0x7835E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A24MQTTDISCONNECTReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x1A0, symBinAddr: 0x24260, symSize: 0x10 } + - { offsetInCU: 0xA04, offset: 0x7838C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x240, symBinAddr: 0x24300, symSize: 0x10 } + - { offsetInCU: 0xA32, offset: 0x783BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A21MQTTPUBCOMPReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2B0, symBinAddr: 0x24370, symSize: 0x10 } + - { offsetInCU: 0xA53, offset: 0x783DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRECReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x2F0, symBinAddr: 0x243B0, symSize: 0x10 } + - { offsetInCU: 0xA74, offset: 0x783FC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTPUBRELReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x370, symBinAddr: 0x24430, symSize: 0x10 } + - { offsetInCU: 0xAAD, offset: 0x78435, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20MQTTSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x3F0, symBinAddr: 0x244B0, symSize: 0x10 } + - { offsetInCU: 0xADB, offset: 0x78463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A22MQTTUNSUBACKReasonCodeO8rawValues5UInt8Vvg', symObjAddr: 0x470, symBinAddr: 0x24530, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x78497, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x4D0, symBinAddr: 0x24590, symSize: 0x20 } + - { offsetInCU: 0xB2C, offset: 0x784B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A20RetainHandlingOptionO8rawValues5UInt8Vvg', symObjAddr: 0x4F0, symBinAddr: 0x245B0, symSize: 0x10 } + - { offsetInCU: 0xB65, offset: 0x784ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x540, symBinAddr: 0x24600, symSize: 0x30 } + - { offsetInCU: 0xB82, offset: 0x7850A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT22PayloadFormatIndicatorO8rawValues5UInt8Vvg', symObjAddr: 0x570, symBinAddr: 0x24630, symSize: 0x10 } + - { offsetInCU: 0x1AD, offset: 0x78721, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfcTo', symObjAddr: 0x400, symBinAddr: 0x25A00, symSize: 0x20 } + - { offsetInCU: 0x210, offset: 0x78784, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvgTW', symObjAddr: 0x6C0, symBinAddr: 0x25CC0, symSize: 0x40 } + - { offsetInCU: 0x24B, offset: 0x787BF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvsTW', symObjAddr: 0x700, symBinAddr: 0x25D00, symSize: 0x40 } + - { offsetInCU: 0x290, offset: 0x78804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP9enableSSLSbvMTW', symObjAddr: 0x740, symBinAddr: 0x25D40, symSize: 0x40 } + - { offsetInCU: 0x2CE, offset: 0x78842, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCMa', symObjAddr: 0x3E0, symBinAddr: 0x259E0, symSize: 0x20 } + - { offsetInCU: 0x2E2, offset: 0x78856, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfETo', symObjAddr: 0x450, symBinAddr: 0x25A50, symSize: 0x40 } + - { offsetInCU: 0x3EE, offset: 0x78962, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP11setDelegate_13delegateQueueyAA0acF0_pSg_So17OS_dispatch_queueCSgtFTW', symObjAddr: 0x780, symBinAddr: 0x25D80, symSize: 0x20 } + - { offsetInCU: 0x40A, offset: 0x7897E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPortySS_s6UInt16VtKFTW', symObjAddr: 0x7A0, symBinAddr: 0x25DA0, symSize: 0x20 } + - { offsetInCU: 0x45D, offset: 0x789D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKFTW', symObjAddr: 0x7C0, symBinAddr: 0x25DC0, symSize: 0x20 } + - { offsetInCU: 0x480, offset: 0x789F4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP10disconnectyyFTW', symObjAddr: 0x7E0, symBinAddr: 0x25DE0, symSize: 0x20 } + - { offsetInCU: 0x4BB, offset: 0x78A2F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP8readData8toLength11withTimeout3tagySu_SdSitFTW', symObjAddr: 0x800, symBinAddr: 0x25E00, symSize: 0x30 } + - { offsetInCU: 0x512, offset: 0x78A86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCAA0aC8ProtocolA2aDP5write_11withTimeout3tagy10Foundation4DataV_SdSitFTW', symObjAddr: 0x830, symBinAddr: 0x25E30, symSize: 0x60 } + - { offsetInCU: 0x6E6, offset: 0x78C5A, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0xE60, symBinAddr: 0x26430, symSize: 0x30 } + - { offsetInCU: 0x6FE, offset: 0x78C72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFTo', symObjAddr: 0xE90, symBinAddr: 0x26460, symSize: 0x80 } + - { offsetInCU: 0x74A, offset: 0x78CBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctFTo', symObjAddr: 0xFD0, symBinAddr: 0x265A0, symSize: 0x1A0 } + - { offsetInCU: 0x7DE, offset: 0x78D52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTo', symObjAddr: 0x1180, symBinAddr: 0x26750, symSize: 0x50 } + - { offsetInCU: 0x82E, offset: 0x78DA2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTo', symObjAddr: 0x11E0, symBinAddr: 0x267B0, symSize: 0x60 } + - { offsetInCU: 0x885, offset: 0x78DF9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitFTo', symObjAddr: 0x12F0, symBinAddr: 0x268C0, symSize: 0x140 } + - { offsetInCU: 0x8ED, offset: 0x78E61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTo', symObjAddr: 0x1440, symBinAddr: 0x26A10, symSize: 0x70 } + - { offsetInCU: 0x973, offset: 0x78EE7, size: 0x8, addend: 0x0, symName: '_$sSo8NSObjectCMa', symObjAddr: 0x1840, symBinAddr: 0x26DC0, symSize: 0x30 } + - { offsetInCU: 0x987, offset: 0x78EFB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_TA', symObjAddr: 0x18A0, symBinAddr: 0x26E20, symSize: 0x10 } + - { offsetInCU: 0x99B, offset: 0x78F0F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x18B0, symBinAddr: 0x26E30, symSize: 0x20 } + - { offsetInCU: 0x9AF, offset: 0x78F23, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18D0, symBinAddr: 0x26E50, symSize: 0x10 } + - { offsetInCU: 0xA2D, offset: 0x78FA1, size: 0x8, addend: 0x0, symName: '_$s10ObjectiveC8ObjCBoolVIeyBy_SbIegy_TRTA', symObjAddr: 0x1D30, symBinAddr: 0x27270, symSize: 0x20 } + - { offsetInCU: 0xA56, offset: 0x78FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A18MQTTSocketDelegate_pSgXwWOh', symObjAddr: 0x1D50, symBinAddr: 0x27290, symSize: 0x20 } + - { offsetInCU: 0xCE8, offset: 0x7925C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfC', symObjAddr: 0x0, symBinAddr: 0x25600, symSize: 0x20 } + - { offsetInCU: 0xCFC, offset: 0x79270, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvg', symObjAddr: 0x20, symBinAddr: 0x25620, symSize: 0x30 } + - { offsetInCU: 0xD1F, offset: 0x79293, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvs', symObjAddr: 0x50, symBinAddr: 0x25650, symSize: 0x40 } + - { offsetInCU: 0xD52, offset: 0x792C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC18backgroundOnSocketSbvM', symObjAddr: 0x90, symBinAddr: 0x25690, symSize: 0x40 } + - { offsetInCU: 0xD77, offset: 0x792EB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvg', symObjAddr: 0xD0, symBinAddr: 0x256D0, symSize: 0x30 } + - { offsetInCU: 0xD94, offset: 0x79308, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvs', symObjAddr: 0x100, symBinAddr: 0x25700, symSize: 0x40 } + - { offsetInCU: 0xDBB, offset: 0x7932F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC9enableSSLSbvM', symObjAddr: 0x140, symBinAddr: 0x25740, symSize: 0x40 } + - { offsetInCU: 0xDDA, offset: 0x7934E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvg', symObjAddr: 0x180, symBinAddr: 0x25780, symSize: 0x40 } + - { offsetInCU: 0xDF7, offset: 0x7936B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvs', symObjAddr: 0x1C0, symBinAddr: 0x257C0, symSize: 0x50 } + - { offsetInCU: 0xE2A, offset: 0x7939E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM', symObjAddr: 0x210, symBinAddr: 0x25810, symSize: 0x40 } + - { offsetInCU: 0xE4F, offset: 0x793C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11sslSettingsSDySSSo8NSObjectCGSgvM.resume.0', symObjAddr: 0x250, symBinAddr: 0x25850, symSize: 0x10 } + - { offsetInCU: 0xE70, offset: 0x793E4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvg', symObjAddr: 0x260, symBinAddr: 0x25860, symSize: 0x30 } + - { offsetInCU: 0xE8D, offset: 0x79401, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvs', symObjAddr: 0x290, symBinAddr: 0x25890, symSize: 0x40 } + - { offsetInCU: 0xEC0, offset: 0x79434, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC25allowUntrustCACertificateSbvM', symObjAddr: 0x2D0, symBinAddr: 0x258D0, symSize: 0x40 } + - { offsetInCU: 0xEF3, offset: 0x79467, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCACycfc', symObjAddr: 0x310, symBinAddr: 0x25910, symSize: 0xD0 } + - { offsetInCU: 0xF3A, offset: 0x794AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketCfD', symObjAddr: 0x420, symBinAddr: 0x25A20, symSize: 0x30 } + - { offsetInCU: 0xF9B, offset: 0x7950F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC11setDelegate_13delegateQueueyAA0acE0_pSg_So17OS_dispatch_queueCSgtF', symObjAddr: 0x490, symBinAddr: 0x25A90, symSize: 0x90 } + - { offsetInCU: 0x1024, offset: 0x79598, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPortySS_s6UInt16VtKF', symObjAddr: 0x520, symBinAddr: 0x25B20, symSize: 0x20 } + - { offsetInCU: 0x1055, offset: 0x795C9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC7connect6toHost6onPort11withTimeoutySS_s6UInt16VSdtKF', symObjAddr: 0x540, symBinAddr: 0x25B40, symSize: 0xD0 } + - { offsetInCU: 0x10AA, offset: 0x7961E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC10disconnectyyF', symObjAddr: 0x610, symBinAddr: 0x25C10, symSize: 0x20 } + - { offsetInCU: 0x10C7, offset: 0x7963B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC8readData8toLength11withTimeout3tagySu_SdSitF', symObjAddr: 0x630, symBinAddr: 0x25C30, symSize: 0x30 } + - { offsetInCU: 0x1100, offset: 0x79674, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC5write_11withTimeout3tagy10Foundation4DataV_SdSitF', symObjAddr: 0x660, symBinAddr: 0x25C60, symSize: 0x60 } + - { offsetInCU: 0x1376, offset: 0x798EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtF', symObjAddr: 0x890, symBinAddr: 0x25E90, symSize: 0x470 } + - { offsetInCU: 0x165E, offset: 0x79BD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_16didConnectToHost4portySo15MGCDAsyncSocketC_SSs6UInt16VtFyycfU_', symObjAddr: 0xD30, symBinAddr: 0x26300, symSize: 0x130 } + - { offsetInCU: 0x1744, offset: 0x79CB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_10didReceive17completionHandlerySo15MGCDAsyncSocketC_So11SecTrustRefaySbctF', symObjAddr: 0xF10, symBinAddr: 0x264E0, symSize: 0xC0 } + - { offsetInCU: 0x180E, offset: 0x79D82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCF', symObjAddr: 0x1170, symBinAddr: 0x26740, symSize: 0x10 } + - { offsetInCU: 0x1829, offset: 0x79D9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitF', symObjAddr: 0x11D0, symBinAddr: 0x267A0, symSize: 0x10 } + - { offsetInCU: 0x1844, offset: 0x79DB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_7didRead7withTagySo15MGCDAsyncSocketC_10Foundation4DataVSitF', symObjAddr: 0x1240, symBinAddr: 0x26810, symSize: 0xB0 } + - { offsetInCU: 0x18CB, offset: 0x79E3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtF', symObjAddr: 0x1430, symBinAddr: 0x26A00, symSize: 0x10 } + - { offsetInCU: 0x18FB, offset: 0x79E6F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_9CocoaMQTT0J7MQTTQoSOTg5', symObjAddr: 0x14B0, symBinAddr: 0x26A80, symSize: 0x50 } + - { offsetInCU: 0x1994, offset: 0x79F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC15socketDidSecureyySo15MGCDAsyncSocketCFTf4dn_n', symObjAddr: 0x18E0, symBinAddr: 0x26E60, symSize: 0x120 } + - { offsetInCU: 0x1A1D, offset: 0x79F91, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC6socket_19didWriteDataWithTagySo15MGCDAsyncSocketC_SitFTf4dnn_n', symObjAddr: 0x1A00, symBinAddr: 0x26F80, symSize: 0x1B0 } + - { offsetInCU: 0x1AEE, offset: 0x7A062, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A10MQTTSocketC19socketDidDisconnect_9withErrorySo15MGCDAsyncSocketC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x1BB0, symBinAddr: 0x27130, symSize: 0x120 } + - { offsetInCU: 0x986, offset: 0x7AA89, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCMa', symObjAddr: 0x6250, symBinAddr: 0x2D540, symSize: 0x20 } + - { offsetInCU: 0xD18, offset: 0x7AE1B, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFs15ContiguousArrayVySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6A90, symBinAddr: 0x2DD80, symSize: 0x60 } + - { offsetInCU: 0xE03, offset: 0x7AF06, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1cn_n', symObjAddr: 0x6AF0, symBinAddr: 0x2DDE0, symSize: 0xF0 } + - { offsetInCU: 0x10B6, offset: 0x7B1B9, size: 0x8, addend: 0x0, symName: '_$sSr15_stableSortImpl2byySbx_xtKXE_tKFySryxGz_SiztKXEfU_SS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnncn_n', symObjAddr: 0x6BE0, symBinAddr: 0x2DED0, symSize: 0x590 } + - { offsetInCU: 0x15BC, offset: 0x7B6BF, size: 0x8, addend: 0x0, symName: '_$sSMsSKRzrlE14_insertionSort6within9sortedEnd2byySny5IndexSlQzG_AFSb7ElementSTQz_AItKXEtKFSrySS3key_yp5valuetG_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x7170, symBinAddr: 0x2E460, symSize: 0x190 } + - { offsetInCU: 0x1810, offset: 0x7B913, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x7300, symBinAddr: 0x2E5F0, symSize: 0x2E0 } + - { offsetInCU: 0x1BD2, offset: 0x7BCD5, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nncn_n', symObjAddr: 0x75E0, symBinAddr: 0x2E8D0, symSize: 0x180 } + - { offsetInCU: 0x1DCD, offset: 0x7BED0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSS3key_yp5valuet_Tg5138$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tFSbSS3key_yp5valuet_SSAI_ypAJttXEfU_Tf1nnnnc_n', symObjAddr: 0x7760, symBinAddr: 0x2EA50, symSize: 0x3C0 } + - { offsetInCU: 0x1F83, offset: 0x7C086, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSnySiG_Tgmq5', symObjAddr: 0x7BF0, symBinAddr: 0x2EEE0, symSize: 0x80 } + - { offsetInCU: 0x2183, offset: 0x7C286, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayVyAByxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x82B0, symBinAddr: 0x2F5A0, symSize: 0xC0 } + - { offsetInCU: 0x2251, offset: 0x7C354, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0x8370, symBinAddr: 0x2F660, symSize: 0x40 } + - { offsetInCU: 0x2265, offset: 0x7C368, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0x83F0, symBinAddr: 0x2F6A0, symSize: 0x20 } + - { offsetInCU: 0x2279, offset: 0x7C37C, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0x84F0, symBinAddr: 0x2F760, symSize: 0x30 } + - { offsetInCU: 0x228D, offset: 0x7C390, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOh', symObjAddr: 0x8520, symBinAddr: 0x2F790, symSize: 0x30 } + - { offsetInCU: 0x22A1, offset: 0x7C3A4, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOr', symObjAddr: 0x8580, symBinAddr: 0x2F7F0, symSize: 0x20 } + - { offsetInCU: 0x22B5, offset: 0x7C3B8, size: 0x8, addend: 0x0, symName: '_$sSay9CocoaMQTT16MqttSubscriptionCGSgWOs', symObjAddr: 0x85A0, symBinAddr: 0x2F810, symSize: 0x1B } + - { offsetInCU: 0x298F, offset: 0x7CA92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7ConnectV_Tg5', symObjAddr: 0x0, symBinAddr: 0x272F0, symSize: 0xBA0 } + - { offsetInCU: 0x356A, offset: 0x7D66D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C10DisconnectV_Tg5', symObjAddr: 0x1750, symBinAddr: 0x28A40, symSize: 0xB10 } + - { offsetInCU: 0x3FFA, offset: 0x7E0FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PingReqV_Tg5', symObjAddr: 0x2260, symBinAddr: 0x29550, symSize: 0xA70 } + - { offsetInCU: 0x4A73, offset: 0x7EB76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C9SubscribeV_Tg5', symObjAddr: 0x2CD0, symBinAddr: 0x29FC0, symSize: 0xD20 } + - { offsetInCU: 0x588B, offset: 0x7F98E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C11UnsubscribeV_Tg5', symObjAddr: 0x39F0, symBinAddr: 0x2ACE0, symSize: 0xCB0 } + - { offsetInCU: 0x66C0, offset: 0x807C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C7PublishV_Tg5', symObjAddr: 0x46C0, symBinAddr: 0x2B9B0, symSize: 0xB90 } + - { offsetInCU: 0x72E4, offset: 0x813E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE5bytes7versionSays5UInt8VGSS_tFAA0C4AuthV_Tg5', symObjAddr: 0x5250, symBinAddr: 0x2C540, symSize: 0xB50 } + - { offsetInCU: 0x7DD1, offset: 0x81ED4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA12FramePublishVF', symObjAddr: 0x5DA0, symBinAddr: 0x2D090, symSize: 0x190 } + - { offsetInCU: 0x7EE4, offset: 0x81FE7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC5writeySbAA11FramePubRelVF', symObjAddr: 0x5F30, symBinAddr: 0x2D220, symSize: 0x180 } + - { offsetInCU: 0x7FB7, offset: 0x820BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC2byACSgSS_tcfc', symObjAddr: 0x60B0, symBinAddr: 0x2D3A0, symSize: 0x140 } + - { offsetInCU: 0x8112, offset: 0x82215, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageCfD', symObjAddr: 0x61F0, symBinAddr: 0x2D4E0, symSize: 0x60 } + - { offsetInCU: 0x82E9, offset: 0x823EC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A11MQTTStorageC6__read33_15982FB19A8FB3CBA3D96845B8B465AELL10needDeleteSayAA5Frame_pGSb_tF', symObjAddr: 0x6270, symBinAddr: 0x2D560, symSize: 0x820 } + - { offsetInCU: 0x8AA9, offset: 0x82BAC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0x7B20, symBinAddr: 0x2EE10, symSize: 0x20 } + - { offsetInCU: 0x8ACB, offset: 0x82BCE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0x7B40, symBinAddr: 0x2EE30, symSize: 0xB0 } + - { offsetInCU: 0x8B44, offset: 0x82C47, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSD6ValuesVyS2S_G_Tg5', symObjAddr: 0x7C70, symBinAddr: 0x2EF60, symSize: 0x230 } + - { offsetInCU: 0x8C36, offset: 0x82D39, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x7EA0, symBinAddr: 0x2F190, symSize: 0x260 } + - { offsetInCU: 0x8D46, offset: 0x82E49, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS3key_yp5valuet_Tg5', symObjAddr: 0x8100, symBinAddr: 0x2F3F0, symSize: 0xE0 } + - { offsetInCU: 0x8DD4, offset: 0x82ED7, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNewAByxGyFSS3key_yp5valuet_Tg5', symObjAddr: 0x81E0, symBinAddr: 0x2F4D0, symSize: 0x20 } + - { offsetInCU: 0x4F, offset: 0x82FCC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLLSo012OS_dispatch_E0CvpZ', symObjAddr: 0x10F8, symBinAddr: 0x63540, symSize: 0x0 } + - { offsetInCU: 0x99, offset: 0x83016, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x30070, symSize: 0x10 } + - { offsetInCU: 0x10F, offset: 0x8308C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH9hashValueSivgTW', symObjAddr: 0x850, symBinAddr: 0x30080, symSize: 0x40 } + - { offsetInCU: 0x1F3, offset: 0x83170, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x890, symBinAddr: 0x300C0, symSize: 0x20 } + - { offsetInCU: 0x27D, offset: 0x831FA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_', symObjAddr: 0x0, symBinAddr: 0x2F830, symSize: 0xB0 } + - { offsetInCU: 0x32D, offset: 0x832AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfdyycfU_', symObjAddr: 0xAA0, symBinAddr: 0x302D0, symSize: 0x10 } + - { offsetInCU: 0x3A7, offset: 0x83324, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5every_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xDB0, symBinAddr: 0x30580, symSize: 0xC0 } + - { offsetInCU: 0x475, offset: 0x833F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZTf4nnnd_n', symObjAddr: 0xE70, symBinAddr: 0x30640, symSize: 0x120 } + - { offsetInCU: 0x554, offset: 0x834D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC12target_queue33_B851D19791007544D3693839F2C22EFBLL_WZ', symObjAddr: 0xB0, symBinAddr: 0x2F8E0, symSize: 0x100 } + - { offsetInCU: 0x5B5, offset: 0x83532, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCMa', symObjAddr: 0xAD0, symBinAddr: 0x30300, symSize: 0x20 } + - { offsetInCU: 0x5C9, offset: 0x83546, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwet', symObjAddr: 0xB10, symBinAddr: 0x30320, symSize: 0x80 } + - { offsetInCU: 0x5DD, offset: 0x8355A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwst', symObjAddr: 0xB90, symBinAddr: 0x303A0, symSize: 0xD0 } + - { offsetInCU: 0x5F1, offset: 0x8356E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwug', symObjAddr: 0xC60, symBinAddr: 0x30470, symSize: 0x10 } + - { offsetInCU: 0x605, offset: 0x83582, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwup', symObjAddr: 0xC70, symBinAddr: 0x30480, symSize: 0x10 } + - { offsetInCU: 0x619, offset: 0x83596, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOwui', symObjAddr: 0xC80, symBinAddr: 0x30490, symSize: 0x10 } + - { offsetInCU: 0x62D, offset: 0x835AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOMa', symObjAddr: 0xC90, symBinAddr: 0x304A0, symSize: 0x10 } + - { offsetInCU: 0x641, offset: 0x835BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASQWb', symObjAddr: 0xCA0, symBinAddr: 0x304B0, symSize: 0x10 } + - { offsetInCU: 0x655, offset: 0x835D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOAFSQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x304C0, symSize: 0x30 } + - { offsetInCU: 0x669, offset: 0x835E6, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0xCE0, symBinAddr: 0x304F0, symSize: 0x20 } + - { offsetInCU: 0x67D, offset: 0x835FA, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0xD00, symBinAddr: 0x30510, symSize: 0x10 } + - { offsetInCU: 0x691, offset: 0x8360E, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOe', symObjAddr: 0xD10, symBinAddr: 0x30520, symSize: 0x20 } + - { offsetInCU: 0x6A5, offset: 0x83622, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5after_4name_ACSd_SSyyctFZyycfU_TA', symObjAddr: 0xFE0, symBinAddr: 0x307B0, symSize: 0x20 } + - { offsetInCU: 0x6B9, offset: 0x83636, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_TA', symObjAddr: 0x10A0, symBinAddr: 0x30870, symSize: 0x10 } + - { offsetInCU: 0x6CD, offset: 0x8364A, size: 0x8, addend: 0x0, symName: '_$sIeg_SgWOy', symObjAddr: 0x10B0, symBinAddr: 0x30880, symSize: 0x20 } + - { offsetInCU: 0x78F, offset: 0x8370C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5State33_B851D19791007544D3693839F2C22EFBLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8B0, symBinAddr: 0x300E0, symSize: 0x40 } + - { offsetInCU: 0x949, offset: 0x838C6, size: 0x8, addend: 0x0, symName: '_$sSo18OS_dispatch_sourceP8DispatchE15setEventHandler3qos5flags7handleryAC0D3QoSV_AC0D13WorkItemFlagsVyyXBSgtFfA0_', symObjAddr: 0x7A0, symBinAddr: 0x2FFD0, symSize: 0xA0 } + - { offsetInCU: 0x9C7, offset: 0x83944, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvg', symObjAddr: 0x1B0, symBinAddr: 0x2F9E0, symSize: 0x50 } + - { offsetInCU: 0x9E9, offset: 0x83966, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_', symObjAddr: 0x200, symBinAddr: 0x2FA30, symSize: 0x530 } + - { offsetInCU: 0xAD7, offset: 0x83A54, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerC5timer33_B851D19791007544D3693839F2C22EFBLLSo019OS_dispatch_source_D0_pvgSoAF_pyXEfU_yycfU_', symObjAddr: 0x730, symBinAddr: 0x2FF60, symSize: 0x70 } + - { offsetInCU: 0xB86, offset: 0x83B03, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfd', symObjAddr: 0x8F0, symBinAddr: 0x30120, symSize: 0x1B0 } + - { offsetInCU: 0xBFC, offset: 0x83B79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTTimerCfD', symObjAddr: 0xAB0, symBinAddr: 0x302E0, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x83C3D, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x308C0, symSize: 0x60 } + - { offsetInCU: 0x207, offset: 0x83E19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x430, symBinAddr: 0x30CF0, symSize: 0x10 } + - { offsetInCU: 0x241, offset: 0x83E53, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH9hashValueSivgTW', symObjAddr: 0x440, symBinAddr: 0x30D00, symSize: 0x40 } + - { offsetInCU: 0x325, offset: 0x83F37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x480, symBinAddr: 0x30D40, symSize: 0x20 } + - { offsetInCU: 0x3B8, offset: 0x83FCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASQWb', symObjAddr: 0x4E0, symBinAddr: 0x30DA0, symSize: 0x10 } + - { offsetInCU: 0x3CC, offset: 0x83FDE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOACSQAAWl', symObjAddr: 0x4F0, symBinAddr: 0x30DB0, symSize: 0x30 } + - { offsetInCU: 0x3E0, offset: 0x83FF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwet', symObjAddr: 0x580, symBinAddr: 0x30E20, symSize: 0x80 } + - { offsetInCU: 0x3F4, offset: 0x84006, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwst', symObjAddr: 0x600, symBinAddr: 0x30EA0, symSize: 0xD0 } + - { offsetInCU: 0x408, offset: 0x8401A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwug', symObjAddr: 0x6D0, symBinAddr: 0x30F70, symSize: 0x10 } + - { offsetInCU: 0x41C, offset: 0x8402E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwup', symObjAddr: 0x6E0, symBinAddr: 0x30F80, symSize: 0x10 } + - { offsetInCU: 0x430, offset: 0x84042, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOwui', symObjAddr: 0x6F0, symBinAddr: 0x30F90, symSize: 0x10 } + - { offsetInCU: 0x444, offset: 0x84056, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOMa', symObjAddr: 0x700, symBinAddr: 0x30FA0, symSize: 0x10 } + - { offsetInCU: 0x458, offset: 0x8406A, size: 0x8, addend: 0x0, symName: ___swift_memcpy8_8, symObjAddr: 0x710, symBinAddr: 0x30FB0, symSize: 0x10 } + - { offsetInCU: 0x46C, offset: 0x8407E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwet', symObjAddr: 0x720, symBinAddr: 0x30FC0, symSize: 0x20 } + - { offsetInCU: 0x480, offset: 0x84092, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwst', symObjAddr: 0x740, symBinAddr: 0x30FE0, symSize: 0x20 } + - { offsetInCU: 0x494, offset: 0x840A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwug', symObjAddr: 0x760, symBinAddr: 0x31000, symSize: 0x10 } + - { offsetInCU: 0x4A8, offset: 0x840BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwup', symObjAddr: 0x770, symBinAddr: 0x31010, symSize: 0x10 } + - { offsetInCU: 0x4BC, offset: 0x840CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOwui', symObjAddr: 0x780, symBinAddr: 0x31020, symSize: 0x10 } + - { offsetInCU: 0x4D0, offset: 0x840E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOMa', symObjAddr: 0x790, symBinAddr: 0x31030, symSize: 0x10 } + - { offsetInCU: 0x660, offset: 0x84272, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAA0, symBinAddr: 0x312E0, symSize: 0x30 } + - { offsetInCU: 0x744, offset: 0x84356, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP7_domainSSvgTW', symObjAddr: 0x380, symBinAddr: 0x30C40, symSize: 0x10 } + - { offsetInCU: 0x760, offset: 0x84372, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP5_codeSivgTW', symObjAddr: 0x390, symBinAddr: 0x30C50, symSize: 0x10 } + - { offsetInCU: 0x77C, offset: 0x8438E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP9_userInfoyXlSgvgTW', symObjAddr: 0x3A0, symBinAddr: 0x30C60, symSize: 0x10 } + - { offsetInCU: 0x798, offset: 0x843AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO20FoundationConnectionOs5ErrorAAsAFP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x3B0, symBinAddr: 0x30C70, symSize: 0x10 } + - { offsetInCU: 0x7EB, offset: 0x843FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4A0, symBinAddr: 0x30D60, symSize: 0x40 } + - { offsetInCU: 0x888, offset: 0x8449A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP7_domainSSvgTW', symObjAddr: 0x520, symBinAddr: 0x30DE0, symSize: 0x10 } + - { offsetInCU: 0x8A4, offset: 0x844B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP5_codeSivgTW', symObjAddr: 0x530, symBinAddr: 0x30DF0, symSize: 0x10 } + - { offsetInCU: 0x8C0, offset: 0x844D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x540, symBinAddr: 0x30E00, symSize: 0x10 } + - { offsetInCU: 0x8DC, offset: 0x844EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorOs5ErrorAAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x550, symBinAddr: 0x30E10, symSize: 0x10 } + - { offsetInCU: 0xA93, offset: 0x846A5, size: 0x8, addend: 0x0, symName: '_$ss6UInt32V9CocoaMQTTE21byteArrayLittleEndianSays5UInt8VGvg', symObjAddr: 0x0, symBinAddr: 0x308C0, symSize: 0x60 } + - { offsetInCU: 0xB13, offset: 0x84725, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE10stringUTF8SSvg', symObjAddr: 0x60, symBinAddr: 0x30920, symSize: 0xF0 } + - { offsetInCU: 0xB92, offset: 0x847A4, size: 0x8, addend: 0x0, symName: '_$sSS9CocoaMQTTE15bytesWithLengthSays5UInt8VGvg', symObjAddr: 0x150, symBinAddr: 0x30A10, symSize: 0xD0 } + - { offsetInCU: 0xD01, offset: 0x84913, size: 0x8, addend: 0x0, symName: '_$sSa9CocoaMQTTs5UInt8VRszlE7summarySSvg', symObjAddr: 0x220, symBinAddr: 0x30AE0, symSize: 0x160 } + - { offsetInCU: 0xE92, offset: 0x84AA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO21__derived_enum_equalsySbAC_ACtFZ', symObjAddr: 0x3C0, symBinAddr: 0x30C80, symSize: 0x10 } + - { offsetInCU: 0xECC, offset: 0x84ADE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO4hash4intoys6HasherVz_tF', symObjAddr: 0x3D0, symBinAddr: 0x30C90, symSize: 0x20 } + - { offsetInCU: 0xF5B, offset: 0x84B6D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A9MQTTErrorO9hashValueSivg', symObjAddr: 0x3F0, symBinAddr: 0x30CB0, symSize: 0x40 } + - { offsetInCU: 0x10B7, offset: 0x84CC9, size: 0x8, addend: 0x0, symName: '_$sSD9CocoaMQTTSSRszSSRs_rlE17userPropertyBytesSays5UInt8VGvg', symObjAddr: 0x7A0, symBinAddr: 0x31040, symSize: 0x2A0 } + - { offsetInCU: 0x2B, offset: 0x84F8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x31310, symSize: 0x20 } + - { offsetInCU: 0x93, offset: 0x84FF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x210, symBinAddr: 0x31520, symSize: 0x30 } + - { offsetInCU: 0xBC, offset: 0x8501F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0x240, symBinAddr: 0x31550, symSize: 0x10 } + - { offsetInCU: 0xD8, offset: 0x8503B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x250, symBinAddr: 0x31560, symSize: 0x80 } + - { offsetInCU: 0x10D, offset: 0x85070, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x460, symBinAddr: 0x31770, symSize: 0x50 } + - { offsetInCU: 0x1B0, offset: 0x85113, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x400, symBinAddr: 0x31710, symSize: 0x20 } + - { offsetInCU: 0x1E1, offset: 0x85144, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x420, symBinAddr: 0x31730, symSize: 0x10 } + - { offsetInCU: 0x213, offset: 0x85176, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeO8rawValueACSgs5UInt8V_tcfCTf4nd_n', symObjAddr: 0x430, symBinAddr: 0x31740, symSize: 0x30 } + - { offsetInCU: 0x304, offset: 0x85267, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1loiySbx_xtFZTW', symObjAddr: 0x300, symBinAddr: 0x31610, symSize: 0x10 } + - { offsetInCU: 0x33F, offset: 0x852A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2leoiySbx_xtFZTW', symObjAddr: 0x310, symBinAddr: 0x31620, symSize: 0x10 } + - { offsetInCU: 0x37A, offset: 0x852DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL2geoiySbx_xtFZTW', symObjAddr: 0x320, symBinAddr: 0x31630, symSize: 0x10 } + - { offsetInCU: 0x3B5, offset: 0x85318, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASL1goiySbx_xtFZTW', symObjAddr: 0x330, symBinAddr: 0x31640, symSize: 0x10 } + - { offsetInCU: 0x3F0, offset: 0x85353, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASQWb', symObjAddr: 0x4B0, symBinAddr: 0x317C0, symSize: 0x10 } + - { offsetInCU: 0x404, offset: 0x85367, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOACSQAAWl', symObjAddr: 0x4C0, symBinAddr: 0x317D0, symSize: 0x30 } + - { offsetInCU: 0x418, offset: 0x8537B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSLAASQWb', symObjAddr: 0x4F0, symBinAddr: 0x31800, symSize: 0x10 } + - { offsetInCU: 0x42C, offset: 0x8538F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOMa', symObjAddr: 0x500, symBinAddr: 0x31810, symSize: 0x10 } + - { offsetInCU: 0x440, offset: 0x853A3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwet', symObjAddr: 0x530, symBinAddr: 0x31820, symSize: 0x80 } + - { offsetInCU: 0x454, offset: 0x853B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwst', symObjAddr: 0x5B0, symBinAddr: 0x318A0, symSize: 0xD0 } + - { offsetInCU: 0x468, offset: 0x853CB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwug', symObjAddr: 0x680, symBinAddr: 0x31970, symSize: 0x10 } + - { offsetInCU: 0x47C, offset: 0x853DF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwup', symObjAddr: 0x690, symBinAddr: 0x31980, symSize: 0x10 } + - { offsetInCU: 0x490, offset: 0x853F3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOwui', symObjAddr: 0x6A0, symBinAddr: 0x31990, symSize: 0x10 } + - { offsetInCU: 0x4A4, offset: 0x85407, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOMa', symObjAddr: 0x6B0, symBinAddr: 0x319A0, symSize: 0x10 } + - { offsetInCU: 0x4B8, offset: 0x8541B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASQWb', symObjAddr: 0x6C0, symBinAddr: 0x319B0, symSize: 0x10 } + - { offsetInCU: 0x4CC, offset: 0x8542F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOACSQAAWl', symObjAddr: 0x6D0, symBinAddr: 0x319C0, symSize: 0x2E } + - { offsetInCU: 0x50F, offset: 0x85472, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x160, symBinAddr: 0x31470, symSize: 0x10 } + - { offsetInCU: 0x5B9, offset: 0x8551C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH9hashValueSivgTW', symObjAddr: 0x170, symBinAddr: 0x31480, symSize: 0x40 } + - { offsetInCU: 0x648, offset: 0x855AB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1B0, symBinAddr: 0x314C0, symSize: 0x20 } + - { offsetInCU: 0x69B, offset: 0x855FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D0, symBinAddr: 0x314E0, symSize: 0x40 } + - { offsetInCU: 0x707, offset: 0x8566A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x340, symBinAddr: 0x31650, symSize: 0x10 } + - { offsetInCU: 0x7B1, offset: 0x85714, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x350, symBinAddr: 0x31660, symSize: 0x40 } + - { offsetInCU: 0x892, offset: 0x857F5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x390, symBinAddr: 0x316A0, symSize: 0x30 } + - { offsetInCU: 0x917, offset: 0x8587A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x3C0, symBinAddr: 0x316D0, symSize: 0x40 } + - { offsetInCU: 0xA7B, offset: 0x859DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3qosAA0A7MQTTQoSOvg', symObjAddr: 0x0, symBinAddr: 0x31310, symSize: 0x20 } + - { offsetInCU: 0xAD9, offset: 0x85A3C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValues5UInt8Vvg', symObjAddr: 0x20, symBinAddr: 0x31330, symSize: 0x10 } + - { offsetInCU: 0xB00, offset: 0x85A63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE3dupSbvs', symObjAddr: 0x30, symBinAddr: 0x31340, symSize: 0x50 } + - { offsetInCU: 0xB4F, offset: 0x85AB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT5FramePAAE4typeAA0C4TypeOvg', symObjAddr: 0x80, symBinAddr: 0x31390, symSize: 0x20 } + - { offsetInCU: 0xBAB, offset: 0x85B0E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1goiySbAC_ACtFZ', symObjAddr: 0xA0, symBinAddr: 0x313B0, symSize: 0x10 } + - { offsetInCU: 0xBD7, offset: 0x85B3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO11descriptionSSvg', symObjAddr: 0xB0, symBinAddr: 0x313C0, symSize: 0x80 } + - { offsetInCU: 0xBF6, offset: 0x85B59, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO8rawValueACSgs5UInt8V_tcfC', symObjAddr: 0x130, symBinAddr: 0x31440, symSize: 0x30 } + - { offsetInCU: 0xC46, offset: 0x85BA9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO1loiySbAC_ACtFZ', symObjAddr: 0x2D0, symBinAddr: 0x315E0, symSize: 0x10 } + - { offsetInCU: 0xC72, offset: 0x85BD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2leoiySbAC_ACtFZ', symObjAddr: 0x2E0, symBinAddr: 0x315F0, symSize: 0x10 } + - { offsetInCU: 0xC9E, offset: 0x85C01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT0A7MQTTQoSO2geoiySbAC_ACtFZ', symObjAddr: 0x2F0, symBinAddr: 0x31600, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x85D80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x319F0, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x85DA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x319F0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x85DD9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x31A00, symSize: 0x10 } + - { offsetInCU: 0x1A8, offset: 0x85F01, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwCP', symObjAddr: 0x100, symBinAddr: 0x31AF0, symSize: 0x30 } + - { offsetInCU: 0x1BC, offset: 0x85F15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwxx', symObjAddr: 0x130, symBinAddr: 0x31B20, symSize: 0x10 } + - { offsetInCU: 0x1D0, offset: 0x85F29, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwca', symObjAddr: 0x140, symBinAddr: 0x31B30, symSize: 0x50 } + - { offsetInCU: 0x1E4, offset: 0x85F3D, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_8, symObjAddr: 0x190, symBinAddr: 0x31B80, symSize: 0x10 } + - { offsetInCU: 0x1F8, offset: 0x85F51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwta', symObjAddr: 0x1A0, symBinAddr: 0x31B90, symSize: 0x30 } + - { offsetInCU: 0x20C, offset: 0x85F65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwet', symObjAddr: 0x1D0, symBinAddr: 0x31BC0, symSize: 0x50 } + - { offsetInCU: 0x220, offset: 0x85F79, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVwst', symObjAddr: 0x220, symBinAddr: 0x31C10, symSize: 0x50 } + - { offsetInCU: 0x234, offset: 0x85F8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthVMa', symObjAddr: 0x270, symBinAddr: 0x31C60, symSize: 0x10 } + - { offsetInCU: 0x3DE, offset: 0x86137, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT9FrameAuthV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x31A10, symSize: 0xE0 } + - { offsetInCU: 0x4B, offset: 0x8633B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x31C80, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x86370, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x31C90, symSize: 0x10 } + - { offsetInCU: 0xC7, offset: 0x863B7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x31CA0, symSize: 0x20 } + - { offsetInCU: 0x136, offset: 0x86426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4ngd_n', symObjAddr: 0x40, symBinAddr: 0x31CC0, symSize: 0xE0 } + - { offsetInCU: 0x295, offset: 0x86585, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckV11descriptionSSvgTf4x_n', symObjAddr: 0x120, symBinAddr: 0x31DA0, symSize: 0x120 } + - { offsetInCU: 0x3B0, offset: 0x866A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwxx', symObjAddr: 0x290, symBinAddr: 0x31ED0, symSize: 0x30 } + - { offsetInCU: 0x3C4, offset: 0x866B4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwca', symObjAddr: 0x320, symBinAddr: 0x31F60, symSize: 0x70 } + - { offsetInCU: 0x3D8, offset: 0x866C8, size: 0x8, addend: 0x0, symName: ___swift_memcpy24_8, symObjAddr: 0x390, symBinAddr: 0x31FD0, symSize: 0x20 } + - { offsetInCU: 0x3EC, offset: 0x866DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwta', symObjAddr: 0x3B0, symBinAddr: 0x31FF0, symSize: 0x50 } + - { offsetInCU: 0x400, offset: 0x866F0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwet', symObjAddr: 0x400, symBinAddr: 0x32040, symSize: 0x50 } + - { offsetInCU: 0x414, offset: 0x86704, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVwst', symObjAddr: 0x450, symBinAddr: 0x32090, symSize: 0x50 } + - { offsetInCU: 0x428, offset: 0x86718, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnAckVMa', symObjAddr: 0x4A0, symBinAddr: 0x320E0, symSize: 0xA } + - { offsetInCU: 0x4F, offset: 0x86980, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x320F0, symSize: 0x10 } + - { offsetInCU: 0x84, offset: 0x869B5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x32100, symSize: 0x10 } + - { offsetInCU: 0x34D, offset: 0x86C7E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xF60, symBinAddr: 0x33050, symSize: 0x40 } + - { offsetInCU: 0x369, offset: 0x86C9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwCP', symObjAddr: 0x1010, symBinAddr: 0x330C0, symSize: 0x30 } + - { offsetInCU: 0x37D, offset: 0x86CAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwxx', symObjAddr: 0x1080, symBinAddr: 0x330F0, symSize: 0x90 } + - { offsetInCU: 0x391, offset: 0x86CC2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwcp', symObjAddr: 0x1150, symBinAddr: 0x33180, symSize: 0x1A0 } + - { offsetInCU: 0x3A5, offset: 0x86CD6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwca', symObjAddr: 0x12F0, symBinAddr: 0x33320, symSize: 0x230 } + - { offsetInCU: 0x3B9, offset: 0x86CEA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVWOh', symObjAddr: 0x1520, symBinAddr: 0x33550, symSize: 0x30 } + - { offsetInCU: 0x3CD, offset: 0x86CFE, size: 0x8, addend: 0x0, symName: ___swift_memcpy168_8, symObjAddr: 0x1550, symBinAddr: 0x33580, symSize: 0x10 } + - { offsetInCU: 0x3E1, offset: 0x86D12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwta', symObjAddr: 0x1560, symBinAddr: 0x33590, symSize: 0x1A0 } + - { offsetInCU: 0x3F5, offset: 0x86D26, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwet', symObjAddr: 0x1700, symBinAddr: 0x33730, symSize: 0x40 } + - { offsetInCU: 0x409, offset: 0x86D3A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVwst', symObjAddr: 0x1740, symBinAddr: 0x33770, symSize: 0x70 } + - { offsetInCU: 0x41D, offset: 0x86D4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectVMa', symObjAddr: 0x17B0, symBinAddr: 0x337E0, symSize: 0xA } + - { offsetInCU: 0x6DE, offset: 0x8700F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x32110, symSize: 0x320 } + - { offsetInCU: 0xAAF, offset: 0x873E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x340, symBinAddr: 0x32430, symSize: 0x3A0 } + - { offsetInCU: 0xF4B, offset: 0x8787C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV7payloadSays5UInt8VGyF', symObjAddr: 0x6E0, symBinAddr: 0x327D0, symSize: 0x2C0 } + - { offsetInCU: 0x1320, offset: 0x87C51, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV8payload5Says5UInt8VGyF', symObjAddr: 0x9A0, symBinAddr: 0x32A90, symSize: 0x2D0 } + - { offsetInCU: 0x1788, offset: 0x880B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FrameConnectV11descriptionSSvg', symObjAddr: 0xC70, symBinAddr: 0x32D60, symSize: 0x2F0 } + - { offsetInCU: 0x4B, offset: 0x8837C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x337F0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x883B1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x33800, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x88525, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x3E0, symBinAddr: 0x33BD0, symSize: 0x20 } + - { offsetInCU: 0x210, offset: 0x88541, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwCP', symObjAddr: 0x470, symBinAddr: 0x33C20, symSize: 0x30 } + - { offsetInCU: 0x224, offset: 0x88555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwxx', symObjAddr: 0x4A0, symBinAddr: 0x33C50, symSize: 0x30 } + - { offsetInCU: 0x238, offset: 0x88569, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwcp', symObjAddr: 0x4D0, symBinAddr: 0x33C80, symSize: 0x70 } + - { offsetInCU: 0x24C, offset: 0x8857D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwca', symObjAddr: 0x540, symBinAddr: 0x33CF0, symSize: 0xA0 } + - { offsetInCU: 0x260, offset: 0x88591, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x5E0, symBinAddr: 0x33D90, symSize: 0x30 } + - { offsetInCU: 0x274, offset: 0x885A5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwta', symObjAddr: 0x610, symBinAddr: 0x33DC0, symSize: 0x70 } + - { offsetInCU: 0x288, offset: 0x885B9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwet', symObjAddr: 0x680, symBinAddr: 0x33E30, symSize: 0x50 } + - { offsetInCU: 0x29C, offset: 0x885CD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVwst', symObjAddr: 0x6D0, symBinAddr: 0x33E80, symSize: 0x50 } + - { offsetInCU: 0x2B0, offset: 0x885E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectVMa', symObjAddr: 0x720, symBinAddr: 0x33ED0, symSize: 0xA } + - { offsetInCU: 0x455, offset: 0x88786, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x33810, symSize: 0xF0 } + - { offsetInCU: 0x5E3, offset: 0x88914, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT15FrameDisconnectV10propertiesSays5UInt8VGyF', symObjAddr: 0x110, symBinAddr: 0x33900, symSize: 0x2D0 } + - { offsetInCU: 0x27, offset: 0x88D15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33EE0, symSize: 0x10 } + - { offsetInCU: 0x46, offset: 0x88D34, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33EE0, symSize: 0x10 } + - { offsetInCU: 0x7B, offset: 0x88D69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x33EF0, symSize: 0x10 } + - { offsetInCU: 0xAE, offset: 0x88D9C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x33F00, symSize: 0x20 } + - { offsetInCU: 0xCA, offset: 0x88DB8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePingReqVMa', symObjAddr: 0x40, symBinAddr: 0x33F20, symSize: 0xA } + - { offsetInCU: 0x27, offset: 0x88E8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33F30, symSize: 0x10 } + - { offsetInCU: 0x46, offset: 0x88EAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33F30, symSize: 0x10 } + - { offsetInCU: 0x7B, offset: 0x88EDF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x33F40, symSize: 0x10 } + - { offsetInCU: 0xAE, offset: 0x88F12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x33F50, symSize: 0x20 } + - { offsetInCU: 0xCA, offset: 0x88F2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FramePingRespVMa', symObjAddr: 0x40, symBinAddr: 0x33F70, symSize: 0xA } + - { offsetInCU: 0x4B, offset: 0x89025, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x33F80, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8905A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x33F90, symSize: 0x10 } + - { offsetInCU: 0x237, offset: 0x89211, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2B0, symBinAddr: 0x34230, symSize: 0x90 } + - { offsetInCU: 0x301, offset: 0x892DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x340, symBinAddr: 0x342C0, symSize: 0x130 } + - { offsetInCU: 0x461, offset: 0x8943B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwCP', symObjAddr: 0x4E0, symBinAddr: 0x34420, symSize: 0x30 } + - { offsetInCU: 0x475, offset: 0x8944F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwxx', symObjAddr: 0x510, symBinAddr: 0x34450, symSize: 0x30 } + - { offsetInCU: 0x489, offset: 0x89463, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwcp', symObjAddr: 0x540, symBinAddr: 0x34480, symSize: 0x60 } + - { offsetInCU: 0x49D, offset: 0x89477, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwca', symObjAddr: 0x5A0, symBinAddr: 0x344E0, symSize: 0x90 } + - { offsetInCU: 0x4B1, offset: 0x8948B, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x630, symBinAddr: 0x34570, symSize: 0x20 } + - { offsetInCU: 0x4C5, offset: 0x8949F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwta', symObjAddr: 0x650, symBinAddr: 0x34590, symSize: 0x60 } + - { offsetInCU: 0x4D9, offset: 0x894B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwet', symObjAddr: 0x6B0, symBinAddr: 0x345F0, symSize: 0x50 } + - { offsetInCU: 0x4ED, offset: 0x894C7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVwst', symObjAddr: 0x700, symBinAddr: 0x34640, symSize: 0x50 } + - { offsetInCU: 0x501, offset: 0x894DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckVMa', symObjAddr: 0x750, symBinAddr: 0x34690, symSize: 0xA } + - { offsetInCU: 0x704, offset: 0x896DE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x33FA0, symSize: 0x130 } + - { offsetInCU: 0x8DE, offset: 0x898B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubAckV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x340D0, symSize: 0x160 } + - { offsetInCU: 0x4B, offset: 0x89AE9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x346A0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x89B1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x346B0, symSize: 0x10 } + - { offsetInCU: 0x237, offset: 0x89CD5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2B0, symBinAddr: 0x34950, symSize: 0x90 } + - { offsetInCU: 0x2E7, offset: 0x89D85, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x340, symBinAddr: 0x349E0, symSize: 0xE0 } + - { offsetInCU: 0x3B9, offset: 0x89E57, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwCP', symObjAddr: 0x490, symBinAddr: 0x34AF0, symSize: 0x30 } + - { offsetInCU: 0x3CD, offset: 0x89E6B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwxx', symObjAddr: 0x4C0, symBinAddr: 0x34B20, symSize: 0x30 } + - { offsetInCU: 0x3E1, offset: 0x89E7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwcp', symObjAddr: 0x4F0, symBinAddr: 0x34B50, symSize: 0x60 } + - { offsetInCU: 0x3F5, offset: 0x89E93, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwca', symObjAddr: 0x550, symBinAddr: 0x34BB0, symSize: 0x90 } + - { offsetInCU: 0x409, offset: 0x89EA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwta', symObjAddr: 0x600, symBinAddr: 0x34C40, symSize: 0x60 } + - { offsetInCU: 0x41D, offset: 0x89EBB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwet', symObjAddr: 0x660, symBinAddr: 0x34CA0, symSize: 0x50 } + - { offsetInCU: 0x431, offset: 0x89ECF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVwst', symObjAddr: 0x6B0, symBinAddr: 0x34CF0, symSize: 0x50 } + - { offsetInCU: 0x445, offset: 0x89EE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompVMa', symObjAddr: 0x700, symBinAddr: 0x34D40, symSize: 0xA } + - { offsetInCU: 0x648, offset: 0x8A0E6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x346C0, symSize: 0x130 } + - { offsetInCU: 0x822, offset: 0x8A2C0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePubCompV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x347F0, symSize: 0x160 } + - { offsetInCU: 0x27, offset: 0x8A4B8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34D50, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8A4DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x34D50, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8A511, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x34D60, symSize: 0x10 } + - { offsetInCU: 0x26E, offset: 0x8A6FF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x430, symBinAddr: 0x35180, symSize: 0x60 } + - { offsetInCU: 0x41D, offset: 0x8A8AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x490, symBinAddr: 0x351E0, symSize: 0x890 } + - { offsetInCU: 0xA3D, offset: 0x8AECE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCSgWOb', symObjAddr: 0xD20, symBinAddr: 0x35A70, symSize: 0x40 } + - { offsetInCU: 0xA51, offset: 0x8AEE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwCP', symObjAddr: 0xDA0, symBinAddr: 0x35AB0, symSize: 0x30 } + - { offsetInCU: 0xA65, offset: 0x8AEF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwxx', symObjAddr: 0xDD0, symBinAddr: 0x35AE0, symSize: 0x50 } + - { offsetInCU: 0xA79, offset: 0x8AF0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwcp', symObjAddr: 0xE20, symBinAddr: 0x35B30, symSize: 0xD0 } + - { offsetInCU: 0xA8D, offset: 0x8AF1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwca', symObjAddr: 0xEF0, symBinAddr: 0x35C00, symSize: 0x110 } + - { offsetInCU: 0xAA1, offset: 0x8AF32, size: 0x8, addend: 0x0, symName: ___swift_memcpy96_8, symObjAddr: 0x1000, symBinAddr: 0x35D10, symSize: 0x40 } + - { offsetInCU: 0xAB5, offset: 0x8AF46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwta', symObjAddr: 0x1040, symBinAddr: 0x35D50, symSize: 0xC0 } + - { offsetInCU: 0xAC9, offset: 0x8AF5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwet', symObjAddr: 0x1100, symBinAddr: 0x35E10, symSize: 0x40 } + - { offsetInCU: 0xADD, offset: 0x8AF6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVwst', symObjAddr: 0x1140, symBinAddr: 0x35E50, symSize: 0x60 } + - { offsetInCU: 0xAF1, offset: 0x8AF82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishVMa', symObjAddr: 0x11A0, symBinAddr: 0x35EB0, symSize: 0xA } + - { offsetInCU: 0xE2C, offset: 0x8B2BD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV14variableHeaderSays5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x34D70, symSize: 0x120 } + - { offsetInCU: 0x1050, offset: 0x8B4E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x140, symBinAddr: 0x34E90, symSize: 0x1B0 } + - { offsetInCU: 0x1367, offset: 0x8B7F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT12FramePublishV11descriptionSSvg', symObjAddr: 0x2F0, symBinAddr: 0x35040, symSize: 0x140 } + - { offsetInCU: 0x4B, offset: 0x8BB32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x35EC0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8BB67, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x35ED0, symSize: 0x10 } + - { offsetInCU: 0x237, offset: 0x8BD1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x2B0, symBinAddr: 0x36170, symSize: 0x90 } + - { offsetInCU: 0x2E7, offset: 0x8BDCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x340, symBinAddr: 0x36200, symSize: 0xE0 } + - { offsetInCU: 0x3B9, offset: 0x8BEA0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwCP', symObjAddr: 0x490, symBinAddr: 0x36310, symSize: 0x30 } + - { offsetInCU: 0x3CD, offset: 0x8BEB4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwxx', symObjAddr: 0x4C0, symBinAddr: 0x36340, symSize: 0x30 } + - { offsetInCU: 0x3E1, offset: 0x8BEC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwcp', symObjAddr: 0x4F0, symBinAddr: 0x36370, symSize: 0x60 } + - { offsetInCU: 0x3F5, offset: 0x8BEDC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwca', symObjAddr: 0x550, symBinAddr: 0x363D0, symSize: 0x90 } + - { offsetInCU: 0x409, offset: 0x8BEF0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwta', symObjAddr: 0x600, symBinAddr: 0x36460, symSize: 0x60 } + - { offsetInCU: 0x41D, offset: 0x8BF04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwet', symObjAddr: 0x660, symBinAddr: 0x364C0, symSize: 0x50 } + - { offsetInCU: 0x431, offset: 0x8BF18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVwst', symObjAddr: 0x6B0, symBinAddr: 0x36510, symSize: 0x50 } + - { offsetInCU: 0x445, offset: 0x8BF2C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecVMa', symObjAddr: 0x700, symBinAddr: 0x36560, symSize: 0xA } + - { offsetInCU: 0x648, offset: 0x8C12F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x35EE0, symSize: 0x130 } + - { offsetInCU: 0x822, offset: 0x8C309, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRecV10propertiesSays5UInt8VGyF', symObjAddr: 0x150, symBinAddr: 0x36010, symSize: 0x160 } + - { offsetInCU: 0x4B, offset: 0x8C525, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36570, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8C55A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36580, symSize: 0x10 } + - { offsetInCU: 0x237, offset: 0x8C711, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x280, symBinAddr: 0x367F0, symSize: 0x90 } + - { offsetInCU: 0x2AB, offset: 0x8C785, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x310, symBinAddr: 0x36880, symSize: 0xE0 } + - { offsetInCU: 0x37D, offset: 0x8C857, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwCP', symObjAddr: 0x460, symBinAddr: 0x36990, symSize: 0x30 } + - { offsetInCU: 0x391, offset: 0x8C86B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwxx', symObjAddr: 0x490, symBinAddr: 0x369C0, symSize: 0x30 } + - { offsetInCU: 0x3A5, offset: 0x8C87F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwcp', symObjAddr: 0x4C0, symBinAddr: 0x369F0, symSize: 0x70 } + - { offsetInCU: 0x3B9, offset: 0x8C893, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwca', symObjAddr: 0x530, symBinAddr: 0x36A60, symSize: 0x90 } + - { offsetInCU: 0x3CD, offset: 0x8C8A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwta', symObjAddr: 0x5E0, symBinAddr: 0x36AF0, symSize: 0x60 } + - { offsetInCU: 0x3E1, offset: 0x8C8BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwet', symObjAddr: 0x640, symBinAddr: 0x36B50, symSize: 0x50 } + - { offsetInCU: 0x3F5, offset: 0x8C8CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVwst', symObjAddr: 0x690, symBinAddr: 0x36BA0, symSize: 0x50 } + - { offsetInCU: 0x409, offset: 0x8C8E3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelVMa', symObjAddr: 0x6E0, symBinAddr: 0x36BF0, symSize: 0xA } + - { offsetInCU: 0x605, offset: 0x8CADF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x36590, symSize: 0x100 } + - { offsetInCU: 0x7CA, offset: 0x8CCA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FramePubRelV10propertiesSays5UInt8VGyF', symObjAddr: 0x120, symBinAddr: 0x36690, symSize: 0x160 } + - { offsetInCU: 0x27, offset: 0x8CE9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36C00, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8CEC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x36C00, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8CEF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x36C10, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x8CF3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x36C20, symSize: 0x90 } + - { offsetInCU: 0x345, offset: 0x8D1BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0xB0, symBinAddr: 0x36CB0, symSize: 0x570 } + - { offsetInCU: 0xAC2, offset: 0x8D938, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwCP', symObjAddr: 0x620, symBinAddr: 0x37220, symSize: 0x30 } + - { offsetInCU: 0xAD6, offset: 0x8D94C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwxx', symObjAddr: 0x650, symBinAddr: 0x37250, symSize: 0x40 } + - { offsetInCU: 0xAEA, offset: 0x8D960, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwcp', symObjAddr: 0x690, symBinAddr: 0x37290, symSize: 0x90 } + - { offsetInCU: 0xAFE, offset: 0x8D974, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwca', symObjAddr: 0x720, symBinAddr: 0x37320, symSize: 0xC0 } + - { offsetInCU: 0xB12, offset: 0x8D988, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwta', symObjAddr: 0x810, symBinAddr: 0x373E0, symSize: 0x80 } + - { offsetInCU: 0xB26, offset: 0x8D99C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwet', symObjAddr: 0x890, symBinAddr: 0x37460, symSize: 0x40 } + - { offsetInCU: 0xB3A, offset: 0x8D9B0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVwst', symObjAddr: 0x8D0, symBinAddr: 0x374A0, symSize: 0x50 } + - { offsetInCU: 0xB4E, offset: 0x8D9C4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT11FrameSubAckVMa', symObjAddr: 0x920, symBinAddr: 0x374F0, symSize: 0xA } + - { offsetInCU: 0x4B, offset: 0x8DDDD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x37500, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8DE12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x37510, symSize: 0x10 } + - { offsetInCU: 0x4FA, offset: 0x8E28C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xBB0, symBinAddr: 0x380B0, symSize: 0x40 } + - { offsetInCU: 0x52B, offset: 0x8E2BD, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOr', symObjAddr: 0xE40, symBinAddr: 0x38300, symSize: 0x20 } + - { offsetInCU: 0x53F, offset: 0x8E2D1, size: 0x8, addend: 0x0, symName: '_$sSDyS2SGSgWOs', symObjAddr: 0xE60, symBinAddr: 0x38320, symSize: 0x20 } + - { offsetInCU: 0x553, offset: 0x8E2E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwCP', symObjAddr: 0xE80, symBinAddr: 0x38340, symSize: 0x30 } + - { offsetInCU: 0x567, offset: 0x8E2F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwxx', symObjAddr: 0xEB0, symBinAddr: 0x38370, symSize: 0x30 } + - { offsetInCU: 0x57B, offset: 0x8E30D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwcp', symObjAddr: 0xEE0, symBinAddr: 0x383A0, symSize: 0x80 } + - { offsetInCU: 0x58F, offset: 0x8E321, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwca', symObjAddr: 0xF60, symBinAddr: 0x38420, symSize: 0xA0 } + - { offsetInCU: 0x5A3, offset: 0x8E335, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwta', symObjAddr: 0x1020, symBinAddr: 0x384C0, symSize: 0x80 } + - { offsetInCU: 0x5B7, offset: 0x8E349, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwet', symObjAddr: 0x10A0, symBinAddr: 0x38540, symSize: 0x50 } + - { offsetInCU: 0x5CB, offset: 0x8E35D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVwst', symObjAddr: 0x10F0, symBinAddr: 0x38590, symSize: 0x50 } + - { offsetInCU: 0x5DF, offset: 0x8E371, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeVMa', symObjAddr: 0x1140, symBinAddr: 0x385E0, symSize: 0xA } + - { offsetInCU: 0xA0A, offset: 0x8E79C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV15variableHeader5Says5UInt8VGyF', symObjAddr: 0x20, symBinAddr: 0x37520, symSize: 0xB0 } + - { offsetInCU: 0xB90, offset: 0x8E922, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV10propertiesSays5UInt8VGyF', symObjAddr: 0xD0, symBinAddr: 0x375D0, symSize: 0x270 } + - { offsetInCU: 0xFA1, offset: 0x8ED33, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV7payloadSays5UInt8VGyF', symObjAddr: 0x340, symBinAddr: 0x37840, symSize: 0x210 } + - { offsetInCU: 0x13ED, offset: 0x8F17F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT14FrameSubscribeV11descriptionSSvg', symObjAddr: 0x550, symBinAddr: 0x37A50, symSize: 0x660 } + - { offsetInCU: 0x18A2, offset: 0x8F634, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiF9CocoaMQTT16MqttSubscriptionC_Tg5', symObjAddr: 0xC30, symBinAddr: 0x380F0, symSize: 0x1E0 } + - { offsetInCU: 0x27, offset: 0x8F6EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x385F0, symSize: 0x10 } + - { offsetInCU: 0x4B, offset: 0x8F713, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x385F0, symSize: 0x10 } + - { offsetInCU: 0x80, offset: 0x8F748, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x38600, symSize: 0x10 } + - { offsetInCU: 0xDE, offset: 0x8F7A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0xE0, symBinAddr: 0x386D0, symSize: 0x40 } + - { offsetInCU: 0x155, offset: 0x8F81D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV21packetFixedHeaderType5bytesACSgs5UInt8V_SayAHGtcfCTf4nnd_n', symObjAddr: 0x120, symBinAddr: 0x38710, symSize: 0x110 } + - { offsetInCU: 0x21F, offset: 0x8F8E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwCP', symObjAddr: 0x230, symBinAddr: 0x38820, symSize: 0x30 } + - { offsetInCU: 0x233, offset: 0x8F8FB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwxx', symObjAddr: 0x260, symBinAddr: 0x38850, symSize: 0x40 } + - { offsetInCU: 0x247, offset: 0x8F90F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwcp', symObjAddr: 0x2A0, symBinAddr: 0x38890, symSize: 0x70 } + - { offsetInCU: 0x25B, offset: 0x8F923, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwca', symObjAddr: 0x310, symBinAddr: 0x38900, symSize: 0xA0 } + - { offsetInCU: 0x26F, offset: 0x8F937, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwta', symObjAddr: 0x3D0, symBinAddr: 0x389A0, symSize: 0x70 } + - { offsetInCU: 0x283, offset: 0x8F94B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwet', symObjAddr: 0x440, symBinAddr: 0x38A10, symSize: 0x40 } + - { offsetInCU: 0x297, offset: 0x8F95F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVwst', symObjAddr: 0x480, symBinAddr: 0x38A50, symSize: 0x50 } + - { offsetInCU: 0x2AB, offset: 0x8F973, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckVMa', symObjAddr: 0x4D0, symBinAddr: 0x38AA0, symSize: 0xA } + - { offsetInCU: 0x3CC, offset: 0x8FA94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT13FrameUnsubAckV11descriptionSSvg', symObjAddr: 0x20, symBinAddr: 0x38610, symSize: 0xC0 } + - { offsetInCU: 0x27, offset: 0x8FB6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38AB0, symSize: 0x10 } + - { offsetInCU: 0x46, offset: 0x8FB8B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvgTW', symObjAddr: 0x0, symBinAddr: 0x38AB0, symSize: 0x10 } + - { offsetInCU: 0x7B, offset: 0x8FBC0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVAA0C0A2aDP21packetFixedHeaderTypes5UInt8VvsTW', symObjAddr: 0x10, symBinAddr: 0x38AC0, symSize: 0x10 } + - { offsetInCU: 0xC2, offset: 0x8FC07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVs23CustomStringConvertibleAAsADP11descriptionSSvgTW', symObjAddr: 0x20, symBinAddr: 0x38AD0, symSize: 0x30 } + - { offsetInCU: 0x245, offset: 0x8FD8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV10propertiesSays5UInt8VGyFTf4x_n', symObjAddr: 0x50, symBinAddr: 0x38B00, symSize: 0x180 } + - { offsetInCU: 0x53B, offset: 0x90080, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV15variableHeader5Says5UInt8VGyFTf4x_n', symObjAddr: 0x1D0, symBinAddr: 0x38C80, symSize: 0x90 } + - { offsetInCU: 0x6A0, offset: 0x901E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV7payloadSays5UInt8VGyFTf4x_n', symObjAddr: 0x260, symBinAddr: 0x38D10, symSize: 0x160 } + - { offsetInCU: 0xA21, offset: 0x90566, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeV11descriptionSSvgTf4x_n', symObjAddr: 0x3C0, symBinAddr: 0x38E70, symSize: 0x610 } + - { offsetInCU: 0xEC3, offset: 0x90A08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwCP', symObjAddr: 0xA10, symBinAddr: 0x39480, symSize: 0x30 } + - { offsetInCU: 0xED7, offset: 0x90A1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwxx', symObjAddr: 0xA40, symBinAddr: 0x394B0, symSize: 0x30 } + - { offsetInCU: 0xEEB, offset: 0x90A30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwcp', symObjAddr: 0xA70, symBinAddr: 0x394E0, symSize: 0x60 } + - { offsetInCU: 0xEFF, offset: 0x90A44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwca', symObjAddr: 0xAD0, symBinAddr: 0x39540, symSize: 0x80 } + - { offsetInCU: 0xF13, offset: 0x90A58, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0xB50, symBinAddr: 0x395C0, symSize: 0x20 } + - { offsetInCU: 0xF27, offset: 0x90A6C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwta', symObjAddr: 0xB70, symBinAddr: 0x395E0, symSize: 0x60 } + - { offsetInCU: 0xF3B, offset: 0x90A80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwet', symObjAddr: 0xBD0, symBinAddr: 0x39640, symSize: 0x50 } + - { offsetInCU: 0xF4F, offset: 0x90A94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVwst', symObjAddr: 0xC20, symBinAddr: 0x39690, symSize: 0x50 } + - { offsetInCU: 0xF63, offset: 0x90AA8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16FrameUnsubscribeVMa', symObjAddr: 0xC70, symBinAddr: 0x396E0, symSize: 0xA } + - { offsetInCU: 0x153, offset: 0x9116C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfcTo', symObjAddr: 0x6A0, symBinAddr: 0x39D90, symSize: 0x70 } + - { offsetInCU: 0x291, offset: 0x912AA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfETo', symObjAddr: 0x740, symBinAddr: 0x39E30, symSize: 0x60 } + - { offsetInCU: 0x2C0, offset: 0x912D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCMa', symObjAddr: 0x7A0, symBinAddr: 0x39E90, symSize: 0x20 } + - { offsetInCU: 0x3F9, offset: 0x91412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x40, symBinAddr: 0x39730, symSize: 0x40 } + - { offsetInCU: 0x41E, offset: 0x91437, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0xC0, symBinAddr: 0x397B0, symSize: 0x40 } + - { offsetInCU: 0x443, offset: 0x9145C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC12reasonStringSSSgvM', symObjAddr: 0x1D0, symBinAddr: 0x398C0, symSize: 0x40 } + - { offsetInCU: 0x468, offset: 0x91481, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x2D0, symBinAddr: 0x399C0, symSize: 0x40 } + - { offsetInCU: 0x48D, offset: 0x914A6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x39A00, symSize: 0x10 } + - { offsetInCU: 0x545, offset: 0x9155E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x320, symBinAddr: 0x39A10, symSize: 0x2F0 } + - { offsetInCU: 0x971, offset: 0x9198A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfC', symObjAddr: 0x610, symBinAddr: 0x39D00, symSize: 0x20 } + - { offsetInCU: 0x985, offset: 0x9199E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCACycfc', symObjAddr: 0x630, symBinAddr: 0x39D20, symSize: 0x70 } + - { offsetInCU: 0x9B6, offset: 0x919CF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttAuthPropertiesCfD', symObjAddr: 0x710, symBinAddr: 0x39E00, symSize: 0x30 } + - { offsetInCU: 0x24A, offset: 0x91C46, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfcTo', symObjAddr: 0xFA0, symBinAddr: 0x3AE80, symSize: 0x20 } + - { offsetInCU: 0x396, offset: 0x91D92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfETo', symObjAddr: 0xFF0, symBinAddr: 0x3AED0, symSize: 0x40 } + - { offsetInCU: 0x3C5, offset: 0x91DC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCMa', symObjAddr: 0x1030, symBinAddr: 0x3AF10, symSize: 0x20 } + - { offsetInCU: 0x539, offset: 0x91F35, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x40, symBinAddr: 0x39F20, symSize: 0x40 } + - { offsetInCU: 0x55E, offset: 0x91F5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC14receiveMaximums6UInt16VSgvM', symObjAddr: 0xC0, symBinAddr: 0x39FA0, symSize: 0x40 } + - { offsetInCU: 0x583, offset: 0x91F7F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x1D0, symBinAddr: 0x3A0B0, symSize: 0x40 } + - { offsetInCU: 0x5A8, offset: 0x91FA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x2E0, symBinAddr: 0x3A1C0, symSize: 0x40 } + - { offsetInCU: 0x5CD, offset: 0x91FC9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC26requestResponseInformations5UInt8VSgvM', symObjAddr: 0x360, symBinAddr: 0x3A240, symSize: 0x40 } + - { offsetInCU: 0x5F2, offset: 0x91FEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC24requestProblemInfomations5UInt8VSgvM', symObjAddr: 0x470, symBinAddr: 0x3A350, symSize: 0x40 } + - { offsetInCU: 0x617, offset: 0x92013, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM', symObjAddr: 0x4F0, symBinAddr: 0x3A3D0, symSize: 0x40 } + - { offsetInCU: 0x63C, offset: 0x92038, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC04userE0SDyS2SGSgvM.resume.0', symObjAddr: 0x530, symBinAddr: 0x3A410, symSize: 0x10 } + - { offsetInCU: 0x65D, offset: 0x92059, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvg', symObjAddr: 0x540, symBinAddr: 0x3A420, symSize: 0x50 } + - { offsetInCU: 0x67A, offset: 0x92076, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvs', symObjAddr: 0x590, symBinAddr: 0x3A470, symSize: 0x50 } + - { offsetInCU: 0x6AD, offset: 0x920A9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC20authenticationMethodSSSgvM', symObjAddr: 0x5E0, symBinAddr: 0x3A4C0, symSize: 0x40 } + - { offsetInCU: 0x6D2, offset: 0x920CE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC18authenticationDataSays5UInt8VGSgvM', symObjAddr: 0x6E0, symBinAddr: 0x3A5C0, symSize: 0x40 } + - { offsetInCU: 0x807, offset: 0x92203, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0x720, symBinAddr: 0x3A600, symSize: 0x790 } + - { offsetInCU: 0x140B, offset: 0x92E07, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfC', symObjAddr: 0xEB0, symBinAddr: 0x3AD90, symSize: 0x20 } + - { offsetInCU: 0x141F, offset: 0x92E1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCACycfc', symObjAddr: 0xED0, symBinAddr: 0x3ADB0, symSize: 0xD0 } + - { offsetInCU: 0x1442, offset: 0x92E3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttConnectPropertiesCfD', symObjAddr: 0xFC0, symBinAddr: 0x3AEA0, symSize: 0x30 } + - { offsetInCU: 0x4CA, offset: 0x93344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfcTo', symObjAddr: 0x1A00, symBinAddr: 0x3C9B0, symSize: 0x20 } + - { offsetInCU: 0x710, offset: 0x9358A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfETo', symObjAddr: 0x1A50, symBinAddr: 0x3CA00, symSize: 0x90 } + - { offsetInCU: 0x96D, offset: 0x937E7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCMa', symObjAddr: 0x3A70, symBinAddr: 0x3EA20, symSize: 0x20 } + - { offsetInCU: 0xC41, offset: 0x93ABB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3AFB0, symSize: 0x20 } + - { offsetInCU: 0xC55, offset: 0x93ACF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x3AFD0, symSize: 0x40 } + - { offsetInCU: 0xC7E, offset: 0x93AF8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvs', symObjAddr: 0x60, symBinAddr: 0x3B010, symSize: 0x50 } + - { offsetInCU: 0xCA5, offset: 0x93B1F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14propertyLengthSiSgvM', symObjAddr: 0xB0, symBinAddr: 0x3B060, symSize: 0x40 } + - { offsetInCU: 0xCCA, offset: 0x93B44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC21sessionExpiryIntervals6UInt32VSgvM', symObjAddr: 0x130, symBinAddr: 0x3B0E0, symSize: 0x40 } + - { offsetInCU: 0xCEF, offset: 0x93B69, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC14receiveMaximums6UInt16VSgvM', symObjAddr: 0x1B0, symBinAddr: 0x3B160, symSize: 0x40 } + - { offsetInCU: 0xD14, offset: 0x93B8E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvg', symObjAddr: 0x1F0, symBinAddr: 0x3B1A0, symSize: 0x40 } + - { offsetInCU: 0xD37, offset: 0x93BB1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvs', symObjAddr: 0x230, symBinAddr: 0x3B1E0, symSize: 0x50 } + - { offsetInCU: 0xD5E, offset: 0x93BD8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM', symObjAddr: 0x280, symBinAddr: 0x3B230, symSize: 0x40 } + - { offsetInCU: 0xD83, offset: 0x93BFD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10maximumQoSAA0A7MQTTQoSOSgvM.resume.0', symObjAddr: 0x2C0, symBinAddr: 0x3B270, symSize: 0x10 } + - { offsetInCU: 0xDA4, offset: 0x93C1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvg', symObjAddr: 0x2D0, symBinAddr: 0x3B280, symSize: 0x30 } + - { offsetInCU: 0xDC7, offset: 0x93C41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvs', symObjAddr: 0x300, symBinAddr: 0x3B2B0, symSize: 0x40 } + - { offsetInCU: 0xDEE, offset: 0x93C68, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15retainAvailableSbSgvM', symObjAddr: 0x340, symBinAddr: 0x3B2F0, symSize: 0x40 } + - { offsetInCU: 0xE13, offset: 0x93C8D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17maximumPacketSizes6UInt32VSgvM', symObjAddr: 0x450, symBinAddr: 0x3B400, symSize: 0x40 } + - { offsetInCU: 0xE38, offset: 0x93CB2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC24assignedClientIdentifierSSSgvM', symObjAddr: 0x4D0, symBinAddr: 0x3B480, symSize: 0x40 } + - { offsetInCU: 0xE5D, offset: 0x93CD7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC17topicAliasMaximums6UInt16VSgvM', symObjAddr: 0x550, symBinAddr: 0x3B500, symSize: 0x40 } + - { offsetInCU: 0xE82, offset: 0x93CFC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12reasonStringSSSgvM', symObjAddr: 0x5D0, symBinAddr: 0x3B580, symSize: 0x40 } + - { offsetInCU: 0xEA7, offset: 0x93D21, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x610, symBinAddr: 0x3B5C0, symSize: 0x40 } + - { offsetInCU: 0xECA, offset: 0x93D44, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x650, symBinAddr: 0x3B600, symSize: 0x50 } + - { offsetInCU: 0xEFD, offset: 0x93D77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x6A0, symBinAddr: 0x3B650, symSize: 0x40 } + - { offsetInCU: 0xF1C, offset: 0x93D96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvg', symObjAddr: 0x6E0, symBinAddr: 0x3B690, symSize: 0x30 } + - { offsetInCU: 0xF3F, offset: 0x93DB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvs', symObjAddr: 0x710, symBinAddr: 0x3B6C0, symSize: 0x40 } + - { offsetInCU: 0xF66, offset: 0x93DE0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC29wildcardSubscriptionAvailableSbSgvM', symObjAddr: 0x750, symBinAddr: 0x3B700, symSize: 0x40 } + - { offsetInCU: 0xF8B, offset: 0x93E05, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvg', symObjAddr: 0x790, symBinAddr: 0x3B740, symSize: 0x30 } + - { offsetInCU: 0xFAE, offset: 0x93E28, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvs', symObjAddr: 0x7C0, symBinAddr: 0x3B770, symSize: 0x40 } + - { offsetInCU: 0xFD5, offset: 0x93E4F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC32subscriptionIdentifiersAvailableSbSgvM', symObjAddr: 0x800, symBinAddr: 0x3B7B0, symSize: 0x40 } + - { offsetInCU: 0xFFA, offset: 0x93E74, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvg', symObjAddr: 0x840, symBinAddr: 0x3B7F0, symSize: 0x30 } + - { offsetInCU: 0x101D, offset: 0x93E97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvs', symObjAddr: 0x870, symBinAddr: 0x3B820, symSize: 0x40 } + - { offsetInCU: 0x1044, offset: 0x93EBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC27sharedSubscriptionAvailableSbSgvM', symObjAddr: 0x8B0, symBinAddr: 0x3B860, symSize: 0x40 } + - { offsetInCU: 0x1069, offset: 0x93EE3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverKeepAlives6UInt16VSgvM', symObjAddr: 0x9C0, symBinAddr: 0x3B970, symSize: 0x40 } + - { offsetInCU: 0x108E, offset: 0x93F08, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC19responseInformationSSSgvM', symObjAddr: 0xA40, symBinAddr: 0x3B9F0, symSize: 0x40 } + - { offsetInCU: 0x10B3, offset: 0x93F2D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC15serverReferenceSSSgvM', symObjAddr: 0xAC0, symBinAddr: 0x3BA70, symSize: 0x40 } + - { offsetInCU: 0x10D8, offset: 0x93F52, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC20authenticationMethodSSSgvM', symObjAddr: 0xBD0, symBinAddr: 0x3BB80, symSize: 0x40 } + - { offsetInCU: 0x10FD, offset: 0x93F77, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvg', symObjAddr: 0xC10, symBinAddr: 0x3BBC0, symSize: 0x40 } + - { offsetInCU: 0x1120, offset: 0x93F9A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvs', symObjAddr: 0xC50, symBinAddr: 0x3BC00, symSize: 0x50 } + - { offsetInCU: 0x1147, offset: 0x93FC1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC18authenticationDataSays5UInt8VGvM', symObjAddr: 0xCA0, symBinAddr: 0x3BC50, symSize: 0x40 } + - { offsetInCU: 0x14C1, offset: 0x9433B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckC10properties11connackDataySays5UInt8VG_tF', symObjAddr: 0xCE0, symBinAddr: 0x3BC90, symSize: 0xBB0 } + - { offsetInCU: 0x2000, offset: 0x94E7A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCACycfc', symObjAddr: 0x1890, symBinAddr: 0x3C840, symSize: 0x170 } + - { offsetInCU: 0x2023, offset: 0x94E9D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodeConnAckCfD', symObjAddr: 0x1A20, symBinAddr: 0x3C9D0, symSize: 0x30 } + - { offsetInCU: 0x204D, offset: 0x94EC7, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1AE0, symBinAddr: 0x3CA90, symSize: 0x60 } + - { offsetInCU: 0x2092, offset: 0x94F0C, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1B40, symBinAddr: 0x3CAF0, symSize: 0x30 } + - { offsetInCU: 0x20D0, offset: 0x94F4A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1B70, symBinAddr: 0x3CB20, symSize: 0xE0 } + - { offsetInCU: 0x2134, offset: 0x94FAE, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs6UInt16V_Tg5', symObjAddr: 0x1C50, symBinAddr: 0x3CC00, symSize: 0x90 } + - { offsetInCU: 0x215C, offset: 0x94FD6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_SSTg5', symObjAddr: 0x1D40, symBinAddr: 0x3CCF0, symSize: 0x220 } + - { offsetInCU: 0x221E, offset: 0x95098, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_9CocoaMQTT0D7MQTTQoSOTg5', symObjAddr: 0x1F60, symBinAddr: 0x3CF10, symSize: 0x210 } + - { offsetInCU: 0x2302, offset: 0x9517C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x2590, symBinAddr: 0x3D540, symSize: 0x220 } + - { offsetInCU: 0x23CB, offset: 0x95245, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_SSTg5', symObjAddr: 0x2810, symBinAddr: 0x3D7C0, symSize: 0x3D0 } + - { offsetInCU: 0x24AE, offset: 0x95328, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_9CocoaMQTT0K7MQTTQoSOTg5', symObjAddr: 0x2BE0, symBinAddr: 0x3DB90, symSize: 0x3C0 } + - { offsetInCU: 0x2591, offset: 0x9540B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0x36A0, symBinAddr: 0x3E650, symSize: 0x3D0 } + - { offsetInCU: 0x27, offset: 0x9553A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3EB50, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x956DA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x3EF60, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9578F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfETo', symObjAddr: 0x460, symBinAddr: 0x3EFB0, symSize: 0x30 } + - { offsetInCU: 0x482, offset: 0x95995, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCMa', symObjAddr: 0xB00, symBinAddr: 0x3F650, symSize: 0x20 } + - { offsetInCU: 0x6A6, offset: 0x95BB9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x3EB50, symSize: 0x20 } + - { offsetInCU: 0x6BA, offset: 0x95BCD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3EB70, symSize: 0x40 } + - { offsetInCU: 0x6E3, offset: 0x95BF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x3EBB0, symSize: 0x50 } + - { offsetInCU: 0x70A, offset: 0x95C1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x3EC00, symSize: 0x40 } + - { offsetInCU: 0x72F, offset: 0x95C42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x3EC40, symSize: 0x10 } + - { offsetInCU: 0x750, offset: 0x95C63, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3EC50, symSize: 0x30 } + - { offsetInCU: 0x773, offset: 0x95C86, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x3EC80, symSize: 0x40 } + - { offsetInCU: 0x79A, offset: 0x95CAD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x3ECC0, symSize: 0x40 } + - { offsetInCU: 0x7BF, offset: 0x95CD2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x3ED00, symSize: 0x50 } + - { offsetInCU: 0x7E2, offset: 0x95CF5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x3ED50, symSize: 0x50 } + - { offsetInCU: 0x809, offset: 0x95D1C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x3EDA0, symSize: 0x40 } + - { offsetInCU: 0x82E, offset: 0x95D41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x3EDE0, symSize: 0x40 } + - { offsetInCU: 0x851, offset: 0x95D64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x3EE20, symSize: 0x50 } + - { offsetInCU: 0x884, offset: 0x95D97, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x3EE70, symSize: 0x40 } + - { offsetInCU: 0x8A3, offset: 0x95DB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x3EEB0, symSize: 0x10 } + - { offsetInCU: 0x8B7, offset: 0x95DCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x3EEC0, symSize: 0xA0 } + - { offsetInCU: 0x8DA, offset: 0x95DED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckCfD', symObjAddr: 0x430, symBinAddr: 0x3EF80, symSize: 0x30 } + - { offsetInCU: 0xAF7, offset: 0x9600A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x3EFE0, symSize: 0x670 } + - { offsetInCU: 0x27, offset: 0x966F7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F6A0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x96897, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x3FAB0, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9694C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfETo', symObjAddr: 0x460, symBinAddr: 0x3FB00, symSize: 0x30 } + - { offsetInCU: 0x4C2, offset: 0x96B92, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCMa', symObjAddr: 0xB10, symBinAddr: 0x401B0, symSize: 0x20 } + - { offsetInCU: 0x6E6, offset: 0x96DB6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfC', symObjAddr: 0x0, symBinAddr: 0x3F6A0, symSize: 0x20 } + - { offsetInCU: 0x6FA, offset: 0x96DCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x3F6C0, symSize: 0x40 } + - { offsetInCU: 0x723, offset: 0x96DF3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x3F700, symSize: 0x50 } + - { offsetInCU: 0x74A, offset: 0x96E1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x3F750, symSize: 0x40 } + - { offsetInCU: 0x76F, offset: 0x96E3F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC10reasonCodeAA0a17MQTTPUBCOMPReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x3F790, symSize: 0x10 } + - { offsetInCU: 0x790, offset: 0x96E60, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x3F7A0, symSize: 0x30 } + - { offsetInCU: 0x7B3, offset: 0x96E83, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x3F7D0, symSize: 0x40 } + - { offsetInCU: 0x7DA, offset: 0x96EAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x3F810, symSize: 0x40 } + - { offsetInCU: 0x7FF, offset: 0x96ECF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x3F850, symSize: 0x50 } + - { offsetInCU: 0x822, offset: 0x96EF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x3F8A0, symSize: 0x50 } + - { offsetInCU: 0x849, offset: 0x96F19, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x3F8F0, symSize: 0x40 } + - { offsetInCU: 0x86E, offset: 0x96F3E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x3F930, symSize: 0x40 } + - { offsetInCU: 0x891, offset: 0x96F61, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x3F970, symSize: 0x50 } + - { offsetInCU: 0x8C4, offset: 0x96F94, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x3F9C0, symSize: 0x40 } + - { offsetInCU: 0x8E3, offset: 0x96FB3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x3FA00, symSize: 0x10 } + - { offsetInCU: 0x8F7, offset: 0x96FC7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCACycfc', symObjAddr: 0x370, symBinAddr: 0x3FA10, symSize: 0xA0 } + - { offsetInCU: 0x91A, offset: 0x96FEA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompCfD', symObjAddr: 0x430, symBinAddr: 0x3FAD0, symSize: 0x30 } + - { offsetInCU: 0xB44, offset: 0x97214, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePubCompC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x3FB30, symSize: 0x680 } + - { offsetInCU: 0x393, offset: 0x97CA7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfcTo', symObjAddr: 0x1760, symBinAddr: 0x41960, symSize: 0x20 } + - { offsetInCU: 0x761, offset: 0x98075, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfETo', symObjAddr: 0x17B0, symBinAddr: 0x419B0, symSize: 0x70 } + - { offsetInCU: 0x790, offset: 0x980A4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCMa', symObjAddr: 0x1820, symBinAddr: 0x41A20, symSize: 0x20 } + - { offsetInCU: 0xA94, offset: 0x983A8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfC', symObjAddr: 0x0, symBinAddr: 0x40200, symSize: 0x20 } + - { offsetInCU: 0xAA8, offset: 0x983BC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvg', symObjAddr: 0x20, symBinAddr: 0x40220, symSize: 0x40 } + - { offsetInCU: 0xAD1, offset: 0x983E5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvs', symObjAddr: 0x60, symBinAddr: 0x40260, symSize: 0x50 } + - { offsetInCU: 0xAF8, offset: 0x9840C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14propertyLengthSiSgvM', symObjAddr: 0xB0, symBinAddr: 0x402B0, symSize: 0x40 } + - { offsetInCU: 0xB1D, offset: 0x98431, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xF0, symBinAddr: 0x402F0, symSize: 0x40 } + - { offsetInCU: 0xB40, offset: 0x98454, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x130, symBinAddr: 0x40330, symSize: 0x50 } + - { offsetInCU: 0xB67, offset: 0x9847B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x180, symBinAddr: 0x40380, symSize: 0x40 } + - { offsetInCU: 0xB8C, offset: 0x984A0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvg', symObjAddr: 0x1C0, symBinAddr: 0x403C0, symSize: 0x40 } + - { offsetInCU: 0xBAF, offset: 0x984C3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvs', symObjAddr: 0x200, symBinAddr: 0x40400, symSize: 0x50 } + - { offsetInCU: 0xBD6, offset: 0x984EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x250, symBinAddr: 0x40450, symSize: 0x40 } + - { offsetInCU: 0xBFB, offset: 0x9850F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM', symObjAddr: 0x2D0, symBinAddr: 0x404D0, symSize: 0x40 } + - { offsetInCU: 0xC20, offset: 0x98534, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x40510, symSize: 0x10 } + - { offsetInCU: 0xC41, offset: 0x98555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC13responseTopicSSSgvM', symObjAddr: 0x360, symBinAddr: 0x40560, symSize: 0x40 } + - { offsetInCU: 0xC66, offset: 0x9857A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3E0, symBinAddr: 0x405E0, symSize: 0x40 } + - { offsetInCU: 0xC8B, offset: 0x9859F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC12userPropertySDyS2SGSgvM', symObjAddr: 0x4E0, symBinAddr: 0x406E0, symSize: 0x40 } + - { offsetInCU: 0xCAA, offset: 0x985BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivg', symObjAddr: 0x520, symBinAddr: 0x40720, symSize: 0x30 } + - { offsetInCU: 0xCCD, offset: 0x985E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivs', symObjAddr: 0x550, symBinAddr: 0x40750, symSize: 0x40 } + - { offsetInCU: 0xCF4, offset: 0x98608, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC22subscriptionIdentifierSivM', symObjAddr: 0x590, symBinAddr: 0x40790, symSize: 0x40 } + - { offsetInCU: 0xD19, offset: 0x9862D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC11contentTypeSSSgvM', symObjAddr: 0x6A0, symBinAddr: 0x408A0, symSize: 0x40 } + - { offsetInCU: 0xD3E, offset: 0x98652, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvg', symObjAddr: 0x6E0, symBinAddr: 0x408E0, symSize: 0x50 } + - { offsetInCU: 0xD5B, offset: 0x9866F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvs', symObjAddr: 0x730, symBinAddr: 0x40930, symSize: 0x50 } + - { offsetInCU: 0xD82, offset: 0x98696, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC5topicSSvM', symObjAddr: 0x780, symBinAddr: 0x40980, symSize: 0x40 } + - { offsetInCU: 0xDA7, offset: 0x986BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC16packetIdentifiers6UInt16VSgvM', symObjAddr: 0x890, symBinAddr: 0x40A90, symSize: 0x40 } + - { offsetInCU: 0xDCC, offset: 0x986E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivg', symObjAddr: 0x8D0, symBinAddr: 0x40AD0, symSize: 0x30 } + - { offsetInCU: 0xDEF, offset: 0x98703, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivs', symObjAddr: 0x900, symBinAddr: 0x40B00, symSize: 0x40 } + - { offsetInCU: 0xE16, offset: 0x9872A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC14mqtt5DataIndexSivM', symObjAddr: 0x940, symBinAddr: 0x40B40, symSize: 0x40 } + - { offsetInCU: 0x11A1, offset: 0x98AB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishC06decodeE011fixedHeader11publishDatays5UInt8V_SayAHGtF', symObjAddr: 0x980, symBinAddr: 0x40B80, symSize: 0xCD0 } + - { offsetInCU: 0x1D9A, offset: 0x996AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCACycfc', symObjAddr: 0x1650, symBinAddr: 0x41850, symSize: 0x110 } + - { offsetInCU: 0x1DBD, offset: 0x996D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT17MqttDecodePublishCfD', symObjAddr: 0x1780, symBinAddr: 0x41980, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x9973B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x41AF0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x998DB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x41F00, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x99990, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfETo', symObjAddr: 0x460, symBinAddr: 0x41F50, symSize: 0x30 } + - { offsetInCU: 0x482, offset: 0x99B96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCMa', symObjAddr: 0xB00, symBinAddr: 0x425F0, symSize: 0x20 } + - { offsetInCU: 0x6A6, offset: 0x99DBA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfC', symObjAddr: 0x0, symBinAddr: 0x41AF0, symSize: 0x20 } + - { offsetInCU: 0x6BA, offset: 0x99DCE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x41B10, symSize: 0x40 } + - { offsetInCU: 0x6E3, offset: 0x99DF7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x41B50, symSize: 0x50 } + - { offsetInCU: 0x70A, offset: 0x99E1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x41BA0, symSize: 0x40 } + - { offsetInCU: 0x72F, offset: 0x99E43, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC10reasonCodeAA0a16MQTTPUBACKReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x41BE0, symSize: 0x10 } + - { offsetInCU: 0x750, offset: 0x99E64, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x41BF0, symSize: 0x30 } + - { offsetInCU: 0x773, offset: 0x99E87, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x41C20, symSize: 0x40 } + - { offsetInCU: 0x79A, offset: 0x99EAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x41C60, symSize: 0x40 } + - { offsetInCU: 0x7BF, offset: 0x99ED3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x41CA0, symSize: 0x50 } + - { offsetInCU: 0x7E2, offset: 0x99EF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x41CF0, symSize: 0x50 } + - { offsetInCU: 0x809, offset: 0x99F1D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x41D40, symSize: 0x40 } + - { offsetInCU: 0x82E, offset: 0x99F42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x41D80, symSize: 0x40 } + - { offsetInCU: 0x851, offset: 0x99F65, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x41DC0, symSize: 0x50 } + - { offsetInCU: 0x884, offset: 0x99F98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x41E10, symSize: 0x40 } + - { offsetInCU: 0x8A3, offset: 0x99FB7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x41E50, symSize: 0x10 } + - { offsetInCU: 0x8B7, offset: 0x99FCB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCACycfc', symObjAddr: 0x370, symBinAddr: 0x41E60, symSize: 0xA0 } + - { offsetInCU: 0x8DA, offset: 0x99FEE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecCfD', symObjAddr: 0x430, symBinAddr: 0x41F20, symSize: 0x30 } + - { offsetInCU: 0xAF7, offset: 0x9A20B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRecC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x41F80, symSize: 0x670 } + - { offsetInCU: 0x27, offset: 0x9A8F8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x42640, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9AA98, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfcTo', symObjAddr: 0x410, symBinAddr: 0x42A50, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9AB4D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfETo', symObjAddr: 0x460, symBinAddr: 0x42AA0, symSize: 0x30 } + - { offsetInCU: 0x4A1, offset: 0x9AD72, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCMa', symObjAddr: 0xB10, symBinAddr: 0x43150, symSize: 0x20 } + - { offsetInCU: 0x6C5, offset: 0x9AF96, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfC', symObjAddr: 0x0, symBinAddr: 0x42640, symSize: 0x20 } + - { offsetInCU: 0x6D9, offset: 0x9AFAA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvg', symObjAddr: 0x20, symBinAddr: 0x42660, symSize: 0x40 } + - { offsetInCU: 0x702, offset: 0x9AFD3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvs', symObjAddr: 0x60, symBinAddr: 0x426A0, symSize: 0x50 } + - { offsetInCU: 0x729, offset: 0x9AFFA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM', symObjAddr: 0xB0, symBinAddr: 0x426F0, symSize: 0x40 } + - { offsetInCU: 0x74E, offset: 0x9B01F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC10reasonCodeAA0a16MQTTPUBRELReasonH0OSgvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x42730, symSize: 0x10 } + - { offsetInCU: 0x76F, offset: 0x9B040, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x42740, symSize: 0x30 } + - { offsetInCU: 0x792, offset: 0x9B063, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x42770, symSize: 0x40 } + - { offsetInCU: 0x7B9, offset: 0x9B08A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x427B0, symSize: 0x40 } + - { offsetInCU: 0x7DE, offset: 0x9B0AF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x427F0, symSize: 0x50 } + - { offsetInCU: 0x801, offset: 0x9B0D2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x42840, symSize: 0x50 } + - { offsetInCU: 0x828, offset: 0x9B0F9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x42890, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x9B11E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x428D0, symSize: 0x40 } + - { offsetInCU: 0x870, offset: 0x9B141, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x42910, symSize: 0x50 } + - { offsetInCU: 0x8A3, offset: 0x9B174, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x42960, symSize: 0x40 } + - { offsetInCU: 0x8C2, offset: 0x9B193, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x429A0, symSize: 0x10 } + - { offsetInCU: 0x8D6, offset: 0x9B1A7, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCACycfc', symObjAddr: 0x370, symBinAddr: 0x429B0, symSize: 0xA0 } + - { offsetInCU: 0x8F9, offset: 0x9B1CA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelCfD', symObjAddr: 0x430, symBinAddr: 0x42A70, symSize: 0x30 } + - { offsetInCU: 0xB1D, offset: 0x9B3EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodePubRelC06decodeeF011fixedHeader10pubAckDatays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x490, symBinAddr: 0x42AD0, symSize: 0x680 } + - { offsetInCU: 0x27, offset: 0x9BB15, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x431A0, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9BCB5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfcTo', symObjAddr: 0x420, symBinAddr: 0x435C0, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9BD6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfETo', symObjAddr: 0x470, symBinAddr: 0x43610, symSize: 0x40 } + - { offsetInCU: 0x554, offset: 0x9C042, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCMa', symObjAddr: 0xC60, symBinAddr: 0x43E00, symSize: 0x20 } + - { offsetInCU: 0x7B1, offset: 0x9C29F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x431A0, symSize: 0x20 } + - { offsetInCU: 0x7C5, offset: 0x9C2B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x431C0, symSize: 0x40 } + - { offsetInCU: 0x7EE, offset: 0x9C2DC, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvs', symObjAddr: 0x60, symBinAddr: 0x43200, symSize: 0x50 } + - { offsetInCU: 0x821, offset: 0x9C30F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM', symObjAddr: 0xB0, symBinAddr: 0x43250, symSize: 0x40 } + - { offsetInCU: 0x840, offset: 0x9C32E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC11reasonCodesSayAA0A20MQTTSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x43290, symSize: 0x10 } + - { offsetInCU: 0x861, offset: 0x9C34F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x432A0, symSize: 0x30 } + - { offsetInCU: 0x884, offset: 0x9C372, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x432D0, symSize: 0x40 } + - { offsetInCU: 0x8AB, offset: 0x9C399, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x43310, symSize: 0x40 } + - { offsetInCU: 0x8D0, offset: 0x9C3BE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x43350, symSize: 0x50 } + - { offsetInCU: 0x8F3, offset: 0x9C3E1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x433A0, symSize: 0x50 } + - { offsetInCU: 0x91A, offset: 0x9C408, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x433F0, symSize: 0x40 } + - { offsetInCU: 0x93F, offset: 0x9C42D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x43430, symSize: 0x40 } + - { offsetInCU: 0x962, offset: 0x9C450, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x43470, symSize: 0x50 } + - { offsetInCU: 0x995, offset: 0x9C483, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x434C0, symSize: 0x40 } + - { offsetInCU: 0x9B4, offset: 0x9C4A2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x43500, symSize: 0x10 } + - { offsetInCU: 0x9C8, offset: 0x9C4B6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x43510, symSize: 0xB0 } + - { offsetInCU: 0x9EB, offset: 0x9C4D9, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckCfD', symObjAddr: 0x440, symBinAddr: 0x435E0, symSize: 0x30 } + - { offsetInCU: 0xC4B, offset: 0x9C739, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttDecodeSubAckC06decodeeF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4B0, symBinAddr: 0x43650, symSize: 0x7B0 } + - { offsetInCU: 0x27, offset: 0x9CF80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x43E50, symSize: 0x20 } + - { offsetInCU: 0x1C7, offset: 0x9D120, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfcTo', symObjAddr: 0x420, symBinAddr: 0x44270, symSize: 0x20 } + - { offsetInCU: 0x27C, offset: 0x9D1D5, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfETo', symObjAddr: 0x470, symBinAddr: 0x442C0, symSize: 0x40 } + - { offsetInCU: 0x554, offset: 0x9D4AD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCMa', symObjAddr: 0xC50, symBinAddr: 0x44AA0, symSize: 0x20 } + - { offsetInCU: 0x7B1, offset: 0x9D70A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfC', symObjAddr: 0x0, symBinAddr: 0x43E50, symSize: 0x20 } + - { offsetInCU: 0x7C5, offset: 0x9D71E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvg', symObjAddr: 0x20, symBinAddr: 0x43E70, symSize: 0x40 } + - { offsetInCU: 0x7EE, offset: 0x9D747, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvs', symObjAddr: 0x60, symBinAddr: 0x43EB0, symSize: 0x50 } + - { offsetInCU: 0x821, offset: 0x9D77A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM', symObjAddr: 0xB0, symBinAddr: 0x43F00, symSize: 0x40 } + - { offsetInCU: 0x840, offset: 0x9D799, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC11reasonCodesSayAA0A22MQTTUNSUBACKReasonCodeOGvM.resume.0', symObjAddr: 0xF0, symBinAddr: 0x43F40, symSize: 0x10 } + - { offsetInCU: 0x861, offset: 0x9D7BA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvg', symObjAddr: 0x100, symBinAddr: 0x43F50, symSize: 0x30 } + - { offsetInCU: 0x884, offset: 0x9D7DD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16Vvs', symObjAddr: 0x130, symBinAddr: 0x43F80, symSize: 0x40 } + - { offsetInCU: 0x8AB, offset: 0x9D804, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC5msgids6UInt16VvM', symObjAddr: 0x170, symBinAddr: 0x43FC0, symSize: 0x40 } + - { offsetInCU: 0x8D0, offset: 0x9D829, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvg', symObjAddr: 0x1B0, symBinAddr: 0x44000, symSize: 0x50 } + - { offsetInCU: 0x8F3, offset: 0x9D84C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvs', symObjAddr: 0x200, symBinAddr: 0x44050, symSize: 0x50 } + - { offsetInCU: 0x91A, offset: 0x9D873, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12reasonStringSSSgvM', symObjAddr: 0x250, symBinAddr: 0x440A0, symSize: 0x40 } + - { offsetInCU: 0x93F, offset: 0x9D898, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvg', symObjAddr: 0x290, symBinAddr: 0x440E0, symSize: 0x40 } + - { offsetInCU: 0x962, offset: 0x9D8BB, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvs', symObjAddr: 0x2D0, symBinAddr: 0x44120, symSize: 0x50 } + - { offsetInCU: 0x995, offset: 0x9D8EE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC12userPropertySDyS2SGSgvM', symObjAddr: 0x320, symBinAddr: 0x44170, symSize: 0x40 } + - { offsetInCU: 0x9B4, offset: 0x9D90D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtF', symObjAddr: 0x360, symBinAddr: 0x441B0, symSize: 0x10 } + - { offsetInCU: 0x9C8, offset: 0x9D921, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCACycfc', symObjAddr: 0x370, symBinAddr: 0x441C0, symSize: 0xB0 } + - { offsetInCU: 0x9EB, offset: 0x9D944, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckCfD', symObjAddr: 0x440, symBinAddr: 0x44290, symSize: 0x30 } + - { offsetInCU: 0xC4B, offset: 0x9DBA4, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT18MqttDecodeUnsubAckC011decodeUnSubF011fixedHeader03pubF4Datays5UInt8V_SayAHGtFTf4dnn_n', symObjAddr: 0x4B0, symBinAddr: 0x44300, symSize: 0x7A0 } + - { offsetInCU: 0x306, offset: 0x9E6C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfcTo', symObjAddr: 0x13B0, symBinAddr: 0x45EA0, symSize: 0x30 } + - { offsetInCU: 0x384, offset: 0x9E740, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCMa', symObjAddr: 0xB60, symBinAddr: 0x45650, symSize: 0x20 } + - { offsetInCU: 0x597, offset: 0x9E953, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfETo', symObjAddr: 0x1410, symBinAddr: 0x45F00, symSize: 0x60 } + - { offsetInCU: 0x836, offset: 0x9EBF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvg', symObjAddr: 0x0, symBinAddr: 0x44AF0, symSize: 0x40 } + - { offsetInCU: 0x85F, offset: 0x9EC1B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvs', symObjAddr: 0x40, symBinAddr: 0x44B30, symSize: 0x50 } + - { offsetInCU: 0x892, offset: 0x9EC4E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLengthSiSgvM', symObjAddr: 0x90, symBinAddr: 0x44B80, symSize: 0x40 } + - { offsetInCU: 0x8B7, offset: 0x9EC73, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvg', symObjAddr: 0xD0, symBinAddr: 0x44BC0, symSize: 0x40 } + - { offsetInCU: 0x8D4, offset: 0x9EC90, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvs', symObjAddr: 0x110, symBinAddr: 0x44C00, symSize: 0x50 } + - { offsetInCU: 0x907, offset: 0x9ECC3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22payloadFormatIndicatorAA07PayloadgH0OSgvM', symObjAddr: 0x160, symBinAddr: 0x44C50, symSize: 0x40 } + - { offsetInCU: 0x92C, offset: 0x9ECE8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC21messageExpiryIntervals6UInt32VSgvM', symObjAddr: 0x1E0, symBinAddr: 0x44CD0, symSize: 0x40 } + - { offsetInCU: 0x951, offset: 0x9ED0D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvg', symObjAddr: 0x220, symBinAddr: 0x44D10, symSize: 0x40 } + - { offsetInCU: 0x96E, offset: 0x9ED2A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvs', symObjAddr: 0x260, symBinAddr: 0x44D50, symSize: 0x50 } + - { offsetInCU: 0x9A1, offset: 0x9ED5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM', symObjAddr: 0x2B0, symBinAddr: 0x44DA0, symSize: 0x40 } + - { offsetInCU: 0x9C6, offset: 0x9ED82, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10topicAliass6UInt16VSgvM.resume.0', symObjAddr: 0x2F0, symBinAddr: 0x44DE0, symSize: 0x10 } + - { offsetInCU: 0x9E7, offset: 0x9EDA3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC13responseTopicSSSgvM', symObjAddr: 0x340, symBinAddr: 0x44E30, symSize: 0x40 } + - { offsetInCU: 0xA0C, offset: 0x9EDC8, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC15correlationDataSays5UInt8VGSgvM', symObjAddr: 0x3C0, symBinAddr: 0x44EB0, symSize: 0x40 } + - { offsetInCU: 0xA31, offset: 0x9EDED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC12userPropertySDyS2SGSgvM', symObjAddr: 0x4C0, symBinAddr: 0x44FB0, symSize: 0x40 } + - { offsetInCU: 0xA56, offset: 0x9EE12, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC22subscriptionIdentifiers6UInt32VSgvM', symObjAddr: 0x5D0, symBinAddr: 0x450C0, symSize: 0x40 } + - { offsetInCU: 0xA7B, offset: 0x9EE37, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC11contentTypeSSSgvM', symObjAddr: 0x6E0, symBinAddr: 0x451D0, symSize: 0x40 } + - { offsetInCU: 0xAA6, offset: 0x9EE62, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfC', symObjAddr: 0x720, symBinAddr: 0x45210, symSize: 0xD0 } + - { offsetInCU: 0xABA, offset: 0x9EE76, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC14propertyLength22payloadFormatIndicator21messageExpiryInterval10topicAlias13responseTopic11correlation12userProperty22subscriptionIdentifier11contentTypeACSiSg_AA07PayloadiJ0OSgs6UInt32VSgs6UInt16VSgSSSgAWSDyS2SGSgAsWtcfc', symObjAddr: 0x7F0, symBinAddr: 0x452E0, symSize: 0x370 } + - { offsetInCU: 0xCA0, offset: 0x9F05C, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesC10propertiesSays5UInt8VGvg', symObjAddr: 0xB80, symBinAddr: 0x45670, symSize: 0x7E0 } + - { offsetInCU: 0x1948, offset: 0x9FD04, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfC', symObjAddr: 0x1360, symBinAddr: 0x45E50, symSize: 0x20 } + - { offsetInCU: 0x195C, offset: 0x9FD18, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCACycfc', symObjAddr: 0x1380, symBinAddr: 0x45E70, symSize: 0x30 } + - { offsetInCU: 0x19B5, offset: 0x9FD71, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT21MqttPublishPropertiesCfD', symObjAddr: 0x13E0, symBinAddr: 0x45ED0, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x9FDF2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x45FE0, symSize: 0xB0 } + - { offsetInCU: 0x380, offset: 0xA014B, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCMa', symObjAddr: 0x8A0, symBinAddr: 0x46880, symSize: 0x20 } + - { offsetInCU: 0x4D6, offset: 0xA02A1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfC', symObjAddr: 0x0, symBinAddr: 0x45FE0, symSize: 0xB0 } + - { offsetInCU: 0x53C, offset: 0xA0307, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfC', symObjAddr: 0xB0, symBinAddr: 0x46090, symSize: 0xB0 } + - { offsetInCU: 0x579, offset: 0xA0344, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvg', symObjAddr: 0x160, symBinAddr: 0x46140, symSize: 0x40 } + - { offsetInCU: 0x593, offset: 0xA035E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvs', symObjAddr: 0x1A0, symBinAddr: 0x46180, symSize: 0x40 } + - { offsetInCU: 0x5A7, offset: 0xA0372, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicSSvM', symObjAddr: 0x1E0, symBinAddr: 0x461C0, symSize: 0x30 } + - { offsetInCU: 0x5BB, offset: 0xA0386, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvg', symObjAddr: 0x210, symBinAddr: 0x461F0, symSize: 0x30 } + - { offsetInCU: 0x5CF, offset: 0xA039A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvs', symObjAddr: 0x240, symBinAddr: 0x46220, symSize: 0x30 } + - { offsetInCU: 0x5E3, offset: 0xA03AE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC3qosAA0A7MQTTQoSOvM', symObjAddr: 0x270, symBinAddr: 0x46250, symSize: 0x30 } + - { offsetInCU: 0x5F7, offset: 0xA03C2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvg', symObjAddr: 0x2A0, symBinAddr: 0x46280, symSize: 0x30 } + - { offsetInCU: 0x60B, offset: 0xA03D6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvs', symObjAddr: 0x2D0, symBinAddr: 0x462B0, symSize: 0x30 } + - { offsetInCU: 0x61F, offset: 0xA03EA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC7noLocalSbvM', symObjAddr: 0x300, symBinAddr: 0x462E0, symSize: 0x30 } + - { offsetInCU: 0x633, offset: 0xA03FE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvg', symObjAddr: 0x330, symBinAddr: 0x46310, symSize: 0x30 } + - { offsetInCU: 0x647, offset: 0xA0412, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvs', symObjAddr: 0x360, symBinAddr: 0x46340, symSize: 0x30 } + - { offsetInCU: 0x65B, offset: 0xA0426, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC17retainAsPublishedSbvM', symObjAddr: 0x390, symBinAddr: 0x46370, symSize: 0x30 } + - { offsetInCU: 0x66F, offset: 0xA043A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvg', symObjAddr: 0x3C0, symBinAddr: 0x463A0, symSize: 0x30 } + - { offsetInCU: 0x683, offset: 0xA044E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvs', symObjAddr: 0x3F0, symBinAddr: 0x463D0, symSize: 0x30 } + - { offsetInCU: 0x697, offset: 0xA0462, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM', symObjAddr: 0x420, symBinAddr: 0x46400, symSize: 0x30 } + - { offsetInCU: 0x6AB, offset: 0xA0476, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC14retainHandlingAA0a6RetainF6OptionOvM.resume.0', symObjAddr: 0x450, symBinAddr: 0x46430, symSize: 0x10 } + - { offsetInCU: 0x6BF, offset: 0xA048A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvg', symObjAddr: 0x460, symBinAddr: 0x46440, symSize: 0x30 } + - { offsetInCU: 0x6D3, offset: 0xA049E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvs', symObjAddr: 0x490, symBinAddr: 0x46470, symSize: 0x30 } + - { offsetInCU: 0x6E7, offset: 0xA04B2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC19subscriptionOptionsSbvM', symObjAddr: 0x4C0, symBinAddr: 0x464A0, symSize: 0x30 } + - { offsetInCU: 0x6FB, offset: 0xA04C6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topicACSS_tcfc', symObjAddr: 0x4F0, symBinAddr: 0x464D0, symSize: 0x90 } + - { offsetInCU: 0x722, offset: 0xA04ED, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC5topic3qosACSS_AA0A7MQTTQoSOtcfc', symObjAddr: 0x580, symBinAddr: 0x46560, symSize: 0x90 } + - { offsetInCU: 0x7CB, offset: 0xA0596, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionC16subscriptionDataSays5UInt8VGvg', symObjAddr: 0x610, symBinAddr: 0x465F0, symSize: 0x250 } + - { offsetInCU: 0x967, offset: 0xA0732, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfd', symObjAddr: 0x860, symBinAddr: 0x46840, symSize: 0x20 } + - { offsetInCU: 0x998, offset: 0xA0763, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT16MqttSubscriptionCfD', symObjAddr: 0x880, symBinAddr: 0x46860, symSize: 0x20 } + - { offsetInCU: 0x18D, offset: 0xA0931, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW', symObjAddr: 0xDD0, symBinAddr: 0x47690, symSize: 0xD0 } + - { offsetInCU: 0x1A9, offset: 0xA094D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly7ElementQz5IndexQzcirTW.resume.0', symObjAddr: 0xEA0, symBinAddr: 0x47760, symSize: 0x50 } + - { offsetInCU: 0x1FB, offset: 0xA099F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index5after5IndexQzAH_tFTW', symObjAddr: 0x1270, symBinAddr: 0x47B30, symSize: 0x40 } + - { offsetInCU: 0x24E, offset: 0xA09F2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC10startIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x280, symBinAddr: 0x46B70, symSize: 0x20 } + - { offsetInCU: 0x262, offset: 0xA0A06, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC8endIndexSD0G0Vyxq__GvgAGyXEfU_TA', symObjAddr: 0x2A0, symBinAddr: 0x46B90, symSize: 0x20 } + - { offsetInCU: 0x276, offset: 0xA0A1A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_TA', symObjAddr: 0x410, symBinAddr: 0x46CD0, symSize: 0x20 } + - { offsetInCU: 0x28A, offset: 0xA0A2E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_TA', symObjAddr: 0x1900, symBinAddr: 0x481C0, symSize: 0x20 } + - { offsetInCU: 0x29E, offset: 0xA0A42, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_TA', symObjAddr: 0x1920, symBinAddr: 0x481E0, symSize: 0x20 } + - { offsetInCU: 0x2B2, offset: 0xA0A56, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_TA', symObjAddr: 0x1940, symBinAddr: 0x48200, symSize: 0x20 } + - { offsetInCU: 0x2C6, offset: 0xA0A6A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_TA', symObjAddr: 0x19A0, symBinAddr: 0x48260, symSize: 0x20 } + - { offsetInCU: 0x2DA, offset: 0xA0A7E, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x19C0, symBinAddr: 0x48280, symSize: 0x20 } + - { offsetInCU: 0x2EE, offset: 0xA0A92, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x19E0, symBinAddr: 0x482A0, symSize: 0x10 } + - { offsetInCU: 0x302, offset: 0xA0AA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASTWb', symObjAddr: 0x19F0, symBinAddr: 0x482B0, symSize: 0x20 } + - { offsetInCU: 0x316, offset: 0xA0ABA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA5IndexSl_SLWT', symObjAddr: 0x1A10, symBinAddr: 0x482D0, symSize: 0x20 } + - { offsetInCU: 0x32A, offset: 0xA0ACE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA7IndicesSl_SlWT', symObjAddr: 0x1A30, symBinAddr: 0x482F0, symSize: 0x20 } + - { offsetInCU: 0x33E, offset: 0xA0AE2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAA11SubSequenceSl_SlWT', symObjAddr: 0x1A50, symBinAddr: 0x48310, symSize: 0x20 } + - { offsetInCU: 0x352, offset: 0xA0AF6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAA8IteratorST_StWT', symObjAddr: 0x1A70, symBinAddr: 0x48330, symSize: 0x20 } + - { offsetInCU: 0x366, offset: 0xA0B0A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMi', symObjAddr: 0x1A90, symBinAddr: 0x48350, symSize: 0x10 } + - { offsetInCU: 0x37A, offset: 0xA0B1E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMr', symObjAddr: 0x1AA0, symBinAddr: 0x48360, symSize: 0x50 } + - { offsetInCU: 0x38E, offset: 0xA0B32, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCMa', symObjAddr: 0x1AF0, symBinAddr: 0x483B0, symSize: 0x10 } + - { offsetInCU: 0x3A2, offset: 0xA0B46, size: 0x8, addend: 0x0, symName: '_$sSD5IndexV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0x1B00, symBinAddr: 0x483C0, symSize: 0x20 } + - { offsetInCU: 0x3B6, offset: 0xA0B5A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_TA', symObjAddr: 0x1D40, symBinAddr: 0x48600, symSize: 0x80 } + - { offsetInCU: 0x3CA, offset: 0xA0B6E, size: 0x8, addend: 0x0, symName: ___swift_instantiateGenericMetadata, symObjAddr: 0x1DC0, symBinAddr: 0x48680, symSize: 0x30 } + - { offsetInCU: 0x40A, offset: 0xA0BAE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASly11SubSequenceQzSny5IndexQzGcigTW', symObjAddr: 0xFC0, symBinAddr: 0x47880, symSize: 0x50 } + - { offsetInCU: 0x426, offset: 0xA0BCA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl7indices7IndicesQzvgTW', symObjAddr: 0x1010, symBinAddr: 0x478D0, symSize: 0x40 } + - { offsetInCU: 0x442, offset: 0xA0BE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl7isEmptySbvgTW', symObjAddr: 0x1050, symBinAddr: 0x47910, symSize: 0x10 } + - { offsetInCU: 0x45E, offset: 0xA0C02, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSlAASl5countSivgTW', symObjAddr: 0x1060, symBinAddr: 0x47920, symSize: 0x10 } + - { offsetInCU: 0x499, offset: 0xA0C3D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl30_customIndexOfEquatableElementy0G0QzSgSg0J0QzFTW', symObjAddr: 0x1070, symBinAddr: 0x47930, symSize: 0x10 } + - { offsetInCU: 0x4CA, offset: 0xA0C6E, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy5IndexQzAH_SitFTW', symObjAddr: 0x1080, symBinAddr: 0x47940, symSize: 0x50 } + - { offsetInCU: 0x4E6, offset: 0xA0C8A, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl5index_8offsetBy07limitedH05IndexQzSgAI_SiAItFTW', symObjAddr: 0x10D0, symBinAddr: 0x47990, symSize: 0x60 } + - { offsetInCU: 0x502, offset: 0xA0CA6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl8distance4from2toSi5IndexQz_AItFTW', symObjAddr: 0x1130, symBinAddr: 0x479F0, symSize: 0x50 } + - { offsetInCU: 0x542, offset: 0xA0CE6, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW', symObjAddr: 0x1220, symBinAddr: 0x47AE0, symSize: 0x50 } + - { offsetInCU: 0x58C, offset: 0xA0D30, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSlAASl9formIndex5aftery0G0Qzz_tFTW', symObjAddr: 0x12B0, symBinAddr: 0x47B70, symSize: 0x80 } + - { offsetInCU: 0x5DC, offset: 0xA0D80, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST12makeIterator0G0QzyFTW', symObjAddr: 0x1330, symBinAddr: 0x47BF0, symSize: 0x60 } + - { offsetInCU: 0x61A, offset: 0xA0DBE, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyqd__qd_0_GSTAAST19underestimatedCountSivgTW', symObjAddr: 0x1390, symBinAddr: 0x47C50, symSize: 0x30 } + - { offsetInCU: 0x636, offset: 0xA0DDA, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST31_customContainsEquatableElementySbSg0I0QzFTW', symObjAddr: 0x13C0, symBinAddr: 0x47C80, symSize: 0x10 } + - { offsetInCU: 0x66C, offset: 0xA0E10, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST22_copyToContiguousArrays0hI0Vy7ElementQzGyFTW', symObjAddr: 0x13D0, symBinAddr: 0x47C90, symSize: 0x50 } + - { offsetInCU: 0x69D, offset: 0xA0E41, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW', symObjAddr: 0x1420, symBinAddr: 0x47CE0, symSize: 0x50 } + - { offsetInCU: 0x6B9, offset: 0xA0E5D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyxq_GSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW', symObjAddr: 0x1470, symBinAddr: 0x47D30, symSize: 0x60 } + - { offsetInCU: 0x6DC, offset: 0xA0E80, size: 0x8, addend: 0x0, symName: '_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n', symObjAddr: 0x1630, symBinAddr: 0x47EF0, symSize: 0x10 } + - { offsetInCU: 0x705, offset: 0xA0EA9, size: 0x8, addend: 0x0, symName: '_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n', symObjAddr: 0x1B20, symBinAddr: 0x483E0, symSize: 0x150 } + - { offsetInCU: 0x88C, offset: 0xA1030, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_GtcfC', symObjAddr: 0x0, symBinAddr: 0x468F0, symSize: 0x50 } + - { offsetInCU: 0x8A0, offset: 0xA1044, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5label4dictACyxq_GSS_SDyxq_Gtcfc', symObjAddr: 0x190, symBinAddr: 0x46A80, symSize: 0xF0 } + - { offsetInCU: 0x90F, offset: 0xA10B3, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tF', symObjAddr: 0x2F0, symBinAddr: 0x46BB0, symSize: 0x70 } + - { offsetInCU: 0x95F, offset: 0xA1103, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC5index5afterSD5IndexVyxq__GAH_tFAHyXEfU_', symObjAddr: 0x360, symBinAddr: 0x46C20, symSize: 0xB0 } + - { offsetInCU: 0x9C9, offset: 0xA116D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcis', symObjAddr: 0x430, symBinAddr: 0x46CF0, symSize: 0x50 } + - { offsetInCU: 0x9F1, offset: 0xA1195, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisyyYbcfU_', symObjAddr: 0x480, symBinAddr: 0x46D40, symSize: 0x120 } + - { offsetInCU: 0xA59, offset: 0xA11FD, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_Sgxcig', symObjAddr: 0x5A0, symBinAddr: 0x46E60, symSize: 0x60 } + - { offsetInCU: 0xA9B, offset: 0xA123F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcigADyXEfU_', symObjAddr: 0x600, symBinAddr: 0x46EC0, symSize: 0x80 } + - { offsetInCU: 0xAF9, offset: 0xA129D, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM', symObjAddr: 0x680, symBinAddr: 0x46F40, symSize: 0xC0 } + - { offsetInCU: 0xB4B, offset: 0xA12EF, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxciM.resume.0', symObjAddr: 0x740, symBinAddr: 0x47000, symSize: 0xF0 } + - { offsetInCU: 0xB8E, offset: 0xA1332, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcig', symObjAddr: 0x830, symBinAddr: 0x470F0, symSize: 0xE0 } + - { offsetInCU: 0xBDE, offset: 0xA1382, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__GcigxAD_q_AEtyXEfU_', symObjAddr: 0x910, symBinAddr: 0x471D0, symSize: 0xC0 } + - { offsetInCU: 0xC3C, offset: 0xA13E0, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tF', symObjAddr: 0x9D0, symBinAddr: 0x47290, symSize: 0xB0 } + - { offsetInCU: 0xC7E, offset: 0xA1422, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC11removeValue6forKeyq_Sgx_tFAFyXEfU_', symObjAddr: 0xA80, symBinAddr: 0x47340, symSize: 0x70 } + - { offsetInCU: 0xCDC, offset: 0xA1480, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyF', symObjAddr: 0xAF0, symBinAddr: 0x473B0, symSize: 0x180 } + - { offsetInCU: 0xD2D, offset: 0xA14D1, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryC9removeAllyyFyyYbcfU_', symObjAddr: 0xC70, symBinAddr: 0x47530, symSize: 0xA0 } + - { offsetInCU: 0xD7B, offset: 0xA151F, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfd', symObjAddr: 0xD10, symBinAddr: 0x475D0, symSize: 0x20 } + - { offsetInCU: 0xDB1, offset: 0xA1555, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCfD', symObjAddr: 0xD30, symBinAddr: 0x475F0, symSize: 0x30 } + - { offsetInCU: 0xDF1, offset: 0xA1595, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir', symObjAddr: 0xEF0, symBinAddr: 0x477B0, symSize: 0xA0 } + - { offsetInCU: 0xE3E, offset: 0xA15E2, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyx3key_q_5valuetSD5IndexVyxq__Gcir.resume.0', symObjAddr: 0xF90, symBinAddr: 0x47850, symSize: 0x30 } + - { offsetInCU: 0xEAC, offset: 0xA1650, size: 0x8, addend: 0x0, symName: '_$s9CocoaMQTT20ThreadSafeDictionaryCyq_SgxcisTf4ggn_n', symObjAddr: 0x1640, symBinAddr: 0x47F00, symSize: 0x2C0 } ... diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 index 976250b..e8ba9e3 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml index 1e0ad3f..6d88bb1 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml @@ -2,1828 +2,1659 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' relocations: - - { offsetInCU: 0x34, offset: 0x5847B, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6B9F0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x584B0, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6BA20, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E028, symBinAddr: 0x85328, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58540, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x2B98, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5855C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x2BDC, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x58578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x2BE0, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x585D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x2E9C, symSize: 0xD84 } - - { offsetInCU: 0x470, offset: 0x58936, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1144, symBinAddr: 0x3C20, symSize: 0x384 } - - { offsetInCU: 0x4D3, offset: 0x58999, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x14C8, symBinAddr: 0x3FA4, symSize: 0x20 } - - { offsetInCU: 0x500, offset: 0x589C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1694, symBinAddr: 0x4170, symSize: 0x698 } - - { offsetInCU: 0x804, offset: 0x58CCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D2C, symBinAddr: 0x4808, symSize: 0x3D4 } - - { offsetInCU: 0xABA, offset: 0x58F80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2100, symBinAddr: 0x4BDC, symSize: 0x914 } - - { offsetInCU: 0xF90, offset: 0x59456, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A14, symBinAddr: 0x54F0, symSize: 0x668 } - - { offsetInCU: 0x138A, offset: 0x59850, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x307C, symBinAddr: 0x5B58, symSize: 0x3C18 } - - { offsetInCU: 0x2E80, offset: 0x5B346, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6CA4, symBinAddr: 0x9770, symSize: 0x150 } - - { offsetInCU: 0x2F6A, offset: 0x5B430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6DF4, symBinAddr: 0x98C0, symSize: 0x304 } - - { offsetInCU: 0x315B, offset: 0x5B621, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x70F8, symBinAddr: 0x9BC4, symSize: 0x3C8 } - - { offsetInCU: 0x34C4, offset: 0x5B98A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x74C0, symBinAddr: 0x9F8C, symSize: 0x2E4 } - - { offsetInCU: 0x3698, offset: 0x5BB5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x77A4, symBinAddr: 0xA270, symSize: 0x240 } - - { offsetInCU: 0x382A, offset: 0x5BCF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x79E4, symBinAddr: 0xA4B0, symSize: 0x244 } - - { offsetInCU: 0x39BC, offset: 0x5BE82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C28, symBinAddr: 0xA6F4, symSize: 0x430 } - - { offsetInCU: 0x3B25, offset: 0x5BFEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x8058, symBinAddr: 0xAB24, symSize: 0x650 } - - { offsetInCU: 0x3E38, offset: 0x5C2FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x86A8, symBinAddr: 0xB174, symSize: 0x224 } - - { offsetInCU: 0x4049, offset: 0x5C50F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9AF4, symBinAddr: 0xC5C0, symSize: 0x1514 } - - { offsetInCU: 0x5725, offset: 0x5DBEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x2B1C, symSize: 0x3C } - - { offsetInCU: 0x5755, offset: 0x5DC1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x2B58, symSize: 0x40 } - - { offsetInCU: 0x592D, offset: 0x5DDF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x14E8, symBinAddr: 0x3FC4, symSize: 0x8 } - - { offsetInCU: 0x5941, offset: 0x5DE07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x14F0, symBinAddr: 0x3FCC, symSize: 0x3C } - - { offsetInCU: 0x5955, offset: 0x5DE1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x152C, symBinAddr: 0x4008, symSize: 0x168 } - - { offsetInCU: 0x5E9B, offset: 0x5E361, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8940, symBinAddr: 0xB40C, symSize: 0xC } - - { offsetInCU: 0x5EAF, offset: 0x5E375, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x894C, symBinAddr: 0xB418, symSize: 0x4 } - - { offsetInCU: 0x5EC3, offset: 0x5E389, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8950, symBinAddr: 0xB41C, symSize: 0x20 } - - { offsetInCU: 0x5ED7, offset: 0x5E39D, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x8970, symBinAddr: 0xB43C, symSize: 0x28 } - - { offsetInCU: 0x5FE8, offset: 0x5E4AE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8EA8, symBinAddr: 0xB974, symSize: 0x2C } - - { offsetInCU: 0x5FFC, offset: 0x5E4C2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8ED4, symBinAddr: 0xB9A0, symSize: 0x2C } - - { offsetInCU: 0x6010, offset: 0x5E4D6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8F40, symBinAddr: 0xBA0C, symSize: 0x2C } - - { offsetInCU: 0x6024, offset: 0x5E4EA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8F6C, symBinAddr: 0xBA38, symSize: 0x2C } - - { offsetInCU: 0x6059, offset: 0x5E51F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x9188, symBinAddr: 0xBC54, symSize: 0x210 } - - { offsetInCU: 0x60AB, offset: 0x5E571, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x9398, symBinAddr: 0xBE64, symSize: 0x68 } - - { offsetInCU: 0x610C, offset: 0x5E5D2, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x955C, symBinAddr: 0xC028, symSize: 0x1DC } - - { offsetInCU: 0x6657, offset: 0x5EB1D, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB078, symBinAddr: 0xDB44, symSize: 0x40 } - - { offsetInCU: 0x666B, offset: 0x5EB31, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB0B8, symBinAddr: 0xDB84, symSize: 0x20 } - - { offsetInCU: 0x667F, offset: 0x5EB45, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB0D8, symBinAddr: 0xDBA4, symSize: 0x10 } - - { offsetInCU: 0x6693, offset: 0x5EB59, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB0E8, symBinAddr: 0xDBB4, symSize: 0x3C } - - { offsetInCU: 0x66A7, offset: 0x5EB6D, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB184, symBinAddr: 0xDC50, symSize: 0x44 } - - { offsetInCU: 0x66BB, offset: 0x5EB81, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB334, symBinAddr: 0xDE00, symSize: 0x10 } - - { offsetInCU: 0x66CF, offset: 0x5EB95, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB344, symBinAddr: 0xDE10, symSize: 0x10 } - - { offsetInCU: 0x66E3, offset: 0x5EBA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xB354, symBinAddr: 0xDE20, symSize: 0x5C } - - { offsetInCU: 0x66F7, offset: 0x5EBBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xB3B0, symBinAddr: 0xDE7C, symSize: 0x30C } - - { offsetInCU: 0x670B, offset: 0x5EBD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB6BC, symBinAddr: 0xE188, symSize: 0x240 } - - { offsetInCU: 0x671F, offset: 0x5EBE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB8FC, symBinAddr: 0xE3C8, symSize: 0x70 } - - { offsetInCU: 0x6733, offset: 0x5EBF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xB96C, symBinAddr: 0xE438, symSize: 0x34 } - - { offsetInCU: 0x6747, offset: 0x5EC0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xB9A0, symBinAddr: 0xE46C, symSize: 0x174 } - - { offsetInCU: 0x675B, offset: 0x5EC21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xBB14, symBinAddr: 0xE5E0, symSize: 0xB4 } - - { offsetInCU: 0x676F, offset: 0x5EC35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xBBC8, symBinAddr: 0xE694, symSize: 0x10 } - - { offsetInCU: 0x6783, offset: 0x5EC49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xBBD8, symBinAddr: 0xE6A4, symSize: 0x34 } - - { offsetInCU: 0x6797, offset: 0x5EC5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xBC8C, symBinAddr: 0xE758, symSize: 0x5C } - - { offsetInCU: 0x67AB, offset: 0x5EC71, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBD8C, symBinAddr: 0xE858, symSize: 0x2C } - - { offsetInCU: 0x67BF, offset: 0x5EC85, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBDB8, symBinAddr: 0xE884, symSize: 0x2C } - - { offsetInCU: 0x67D3, offset: 0x5EC99, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBDE4, symBinAddr: 0xE8B0, symSize: 0x2C } - - { offsetInCU: 0x67E7, offset: 0x5ECAD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBE10, symBinAddr: 0xE8DC, symSize: 0x2C } - - { offsetInCU: 0x67FB, offset: 0x5ECC1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBE3C, symBinAddr: 0xE908, symSize: 0x2C } - - { offsetInCU: 0x680F, offset: 0x5ECD5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBE68, symBinAddr: 0xE934, symSize: 0x2C } - - { offsetInCU: 0x6823, offset: 0x5ECE9, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBE94, symBinAddr: 0xE960, symSize: 0x2C } - - { offsetInCU: 0x6C2B, offset: 0x5F0F1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x89AC, symBinAddr: 0xB478, symSize: 0x14 } - - { offsetInCU: 0x6C69, offset: 0x5F12F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x89CC, symBinAddr: 0xB498, symSize: 0x8 } - - { offsetInCU: 0x6CB8, offset: 0x5F17E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x89D4, symBinAddr: 0xB4A0, symSize: 0x14 } - - { offsetInCU: 0x6D55, offset: 0x5F21B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x89E8, symBinAddr: 0xB4B4, symSize: 0x14 } - - { offsetInCU: 0x6DEA, offset: 0x5F2B0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x89FC, symBinAddr: 0xB4C8, symSize: 0x14 } - - { offsetInCU: 0x6E87, offset: 0x5F34D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A10, symBinAddr: 0xB4DC, symSize: 0x30 } - - { offsetInCU: 0x6FFA, offset: 0x5F4C0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8A40, symBinAddr: 0xB50C, symSize: 0x2C } - - { offsetInCU: 0x7187, offset: 0x5F64D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8A6C, symBinAddr: 0xB538, symSize: 0x24 } - - { offsetInCU: 0x7273, offset: 0x5F739, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8A90, symBinAddr: 0xB55C, symSize: 0x14 } - - { offsetInCU: 0x72D9, offset: 0x5F79F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8AA4, symBinAddr: 0xB570, symSize: 0x14 } - - { offsetInCU: 0x733F, offset: 0x5F805, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8AB8, symBinAddr: 0xB584, symSize: 0x14 } - - { offsetInCU: 0x73B4, offset: 0x5F87A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8ACC, symBinAddr: 0xB598, symSize: 0x14 } - - { offsetInCU: 0x745D, offset: 0x5F923, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8AE0, symBinAddr: 0xB5AC, symSize: 0x14 } - - { offsetInCU: 0x74D4, offset: 0x5F99A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8AF4, symBinAddr: 0xB5C0, symSize: 0x14 } - - { offsetInCU: 0x758C, offset: 0x5FA52, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B08, symBinAddr: 0xB5D4, symSize: 0x14 } - - { offsetInCU: 0x7626, offset: 0x5FAEC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B1C, symBinAddr: 0xB5E8, symSize: 0x10 } - - { offsetInCU: 0x768E, offset: 0x5FB54, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B2C, symBinAddr: 0xB5F8, symSize: 0x28 } - - { offsetInCU: 0x76AA, offset: 0x5FB70, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8B54, symBinAddr: 0xB620, symSize: 0x14 } - - { offsetInCU: 0x7726, offset: 0x5FBEC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8B84, symBinAddr: 0xB650, symSize: 0x14 } - - { offsetInCU: 0x7757, offset: 0x5FC1D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8B98, symBinAddr: 0xB664, symSize: 0x14 } - - { offsetInCU: 0x7788, offset: 0x5FC4E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8BAC, symBinAddr: 0xB678, symSize: 0x14 } - - { offsetInCU: 0x77B9, offset: 0x5FC7F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8BC0, symBinAddr: 0xB68C, symSize: 0x30 } - - { offsetInCU: 0x77E8, offset: 0x5FCAE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8BF0, symBinAddr: 0xB6BC, symSize: 0x2C } - - { offsetInCU: 0x7819, offset: 0x5FCDF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C1C, symBinAddr: 0xB6E8, symSize: 0x24 } - - { offsetInCU: 0x784A, offset: 0x5FD10, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8C40, symBinAddr: 0xB70C, symSize: 0x14 } - - { offsetInCU: 0x787B, offset: 0x5FD41, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8C54, symBinAddr: 0xB720, symSize: 0x14 } - - { offsetInCU: 0x78AC, offset: 0x5FD72, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8C68, symBinAddr: 0xB734, symSize: 0x14 } - - { offsetInCU: 0x78DD, offset: 0x5FDA3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8C7C, symBinAddr: 0xB748, symSize: 0x14 } - - { offsetInCU: 0x790E, offset: 0x5FDD4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8C90, symBinAddr: 0xB75C, symSize: 0x14 } - - { offsetInCU: 0x793F, offset: 0x5FE05, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8CA4, symBinAddr: 0xB770, symSize: 0x14 } - - { offsetInCU: 0x7970, offset: 0x5FE36, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8CB8, symBinAddr: 0xB784, symSize: 0x14 } - - { offsetInCU: 0x79A1, offset: 0x5FE67, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8CCC, symBinAddr: 0xB798, symSize: 0x10 } - - { offsetInCU: 0x79D2, offset: 0x5FE98, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8CDC, symBinAddr: 0xB7A8, symSize: 0x28 } - - { offsetInCU: 0x79EE, offset: 0x5FEB4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D04, symBinAddr: 0xB7D0, symSize: 0x14 } - - { offsetInCU: 0x7A2E, offset: 0x5FEF4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D24, symBinAddr: 0xB7F0, symSize: 0x40 } - - { offsetInCU: 0x7AAC, offset: 0x5FF72, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8D64, symBinAddr: 0xB830, symSize: 0x70 } - - { offsetInCU: 0x7B3F, offset: 0x60005, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E1C, symBinAddr: 0xB8E8, symSize: 0x4 } - - { offsetInCU: 0x7B5F, offset: 0x60025, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E1C, symBinAddr: 0xB8E8, symSize: 0x4 } - - { offsetInCU: 0x7B7F, offset: 0x60045, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E20, symBinAddr: 0xB8EC, symSize: 0x4 } - - { offsetInCU: 0x7B9F, offset: 0x60065, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E20, symBinAddr: 0xB8EC, symSize: 0x4 } - - { offsetInCU: 0x7BC5, offset: 0x6008B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E24, symBinAddr: 0xB8F0, symSize: 0x40 } - - { offsetInCU: 0x7C34, offset: 0x600FA, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8E64, symBinAddr: 0xB930, symSize: 0x8 } - - { offsetInCU: 0x7C5F, offset: 0x60125, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8E6C, symBinAddr: 0xB938, symSize: 0x3C } - - { offsetInCU: 0x7C90, offset: 0x60156, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8F98, symBinAddr: 0xBA64, symSize: 0x14 } - - { offsetInCU: 0x7CC1, offset: 0x60187, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8FAC, symBinAddr: 0xBA78, symSize: 0x3C } - - { offsetInCU: 0x7D01, offset: 0x601C7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FE8, symBinAddr: 0xBAB4, symSize: 0x88 } - - { offsetInCU: 0x7D82, offset: 0x60248, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9104, symBinAddr: 0xBBD0, symSize: 0x84 } - - { offsetInCU: 0x7DB6, offset: 0x6027C, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x9738, symBinAddr: 0xC204, symSize: 0xB0 } - - { offsetInCU: 0x7EA2, offset: 0x60368, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x97E8, symBinAddr: 0xC2B4, symSize: 0x1F0 } - - { offsetInCU: 0x80D1, offset: 0x60597, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x80F1, offset: 0x605B7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8105, offset: 0x605CB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8125, offset: 0x605EB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8139, offset: 0x605FF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x814D, offset: 0x60613, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8161, offset: 0x60627, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8244, offset: 0x6070A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x8264, offset: 0x6072A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x8278, offset: 0x6073E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x8298, offset: 0x6075E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x82AC, offset: 0x60772, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x82C0, offset: 0x60786, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x82D4, offset: 0x6079A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x837B, offset: 0x60841, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBEC0, symBinAddr: 0xE98C, symSize: 0x80 } - - { offsetInCU: 0x840C, offset: 0x608D2, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBF40, symBinAddr: 0xEA0C, symSize: 0x90 } - - { offsetInCU: 0x85CE, offset: 0x60A94, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x907C, symBinAddr: 0xBB48, symSize: 0x10 } - - { offsetInCU: 0x85EA, offset: 0x60AB0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x908C, symBinAddr: 0xBB58, symSize: 0xC } - - { offsetInCU: 0x8654, offset: 0x60B1A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x9098, symBinAddr: 0xBB64, symSize: 0x44 } - - { offsetInCU: 0x867D, offset: 0x60B43, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x90DC, symBinAddr: 0xBBA8, symSize: 0x28 } - - { offsetInCU: 0x86B8, offset: 0x60B7E, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x9070, symBinAddr: 0xBB3C, symSize: 0xC } - - { offsetInCU: 0x8796, offset: 0x60C5C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x89C0, symBinAddr: 0xB48C, symSize: 0xC } - - { offsetInCU: 0x87C8, offset: 0x60C8E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8B68, symBinAddr: 0xB634, symSize: 0x10 } - - { offsetInCU: 0x87E4, offset: 0x60CAA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8B78, symBinAddr: 0xB644, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x60EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xEACC, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x60ED6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xEACC, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x60F06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xEADC, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x61035, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xEB08, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x61049, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xEB1C, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x61089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xEB2C, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x610D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0xEB4C, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x6113E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0xEB64, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x611B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0xEB90, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x611E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0xEB98, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x61214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0xEBBC, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x61230, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0xEBC8, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x6124C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2058, symBinAddr: 0x10B54, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x61292, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0xEC24, symSize: 0x40C } - - { offsetInCU: 0x2F5, offset: 0x612E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1388, symBinAddr: 0xFE84, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x6131E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x13D8, symBinAddr: 0xFED4, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x61341, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x242C, symBinAddr: 0x10F28, symSize: 0x144C } - - { offsetInCU: 0x381, offset: 0x61373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x534, symBinAddr: 0xF030, symSize: 0x100 } - - { offsetInCU: 0x3CD, offset: 0x613BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1428, symBinAddr: 0xFF24, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x61413, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1430, symBinAddr: 0xFF2C, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x614F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1470, symBinAddr: 0xFF6C, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61576, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xFFCC, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61596, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xFFCC, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x615B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14D4, symBinAddr: 0xFFD0, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x615E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x14FC, symBinAddr: 0xFFF8, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x61603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1508, symBinAddr: 0x10004, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x6161F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3878, symBinAddr: 0x12374, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x61663, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvgTf4d_n', symObjAddr: 0x38E4, symBinAddr: 0x123E0, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x61697, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1564, symBinAddr: 0x10060, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x616CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15B4, symBinAddr: 0x100B0, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x616F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x38F0, symBinAddr: 0x123EC, symSize: 0x248 } - - { offsetInCU: 0x771, offset: 0x61763, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x634, symBinAddr: 0xF130, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x6178E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1604, symBinAddr: 0x10100, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x617B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x160C, symBinAddr: 0x10108, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x617EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1630, symBinAddr: 0x1012C, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x61806, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x163C, symBinAddr: 0x10138, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x61822, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5A94, symBinAddr: 0x1454C, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x61868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x654, symBinAddr: 0xF150, symSize: 0x17C } - - { offsetInCU: 0x8CB, offset: 0x618BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1698, symBinAddr: 0x10194, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x618F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16E8, symBinAddr: 0x101E4, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x61917, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5C2C, symBinAddr: 0x146E4, symSize: 0x310 } - - { offsetInCU: 0x975, offset: 0x61967, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x7D0, symBinAddr: 0xF2CC, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x61992, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1728, symBinAddr: 0x10224, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x619BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1730, symBinAddr: 0x1022C, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x619EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1754, symBinAddr: 0x10250, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x61A0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5F3C, symBinAddr: 0x149F4, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x61A50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7F0, symBinAddr: 0xF2EC, symSize: 0x154 } - - { offsetInCU: 0xAB3, offset: 0x61AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0x102AC, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x61ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17F0, symBinAddr: 0x102EC, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x61AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6094, symBinAddr: 0x14B4C, symSize: 0x2C8 } - - { offsetInCU: 0xB51, offset: 0x61B43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x944, symBinAddr: 0xF440, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x61B6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1828, symBinAddr: 0x10324, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x61B99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1830, symBinAddr: 0x1032C, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x61BCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1854, symBinAddr: 0x10350, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x61BE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0x1035C, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x61C02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x635C, symBinAddr: 0x14E14, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x61C48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x964, symBinAddr: 0xF460, symSize: 0x1A4 } - - { offsetInCU: 0xCAB, offset: 0x61C9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18BC, symBinAddr: 0x103B8, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x61CD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x192C, symBinAddr: 0x10428, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x61CF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x64A4, symBinAddr: 0x14F5C, symSize: 0x4D8 } - - { offsetInCU: 0xD55, offset: 0x61D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xB08, symBinAddr: 0xF604, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x10488, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x61D9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1994, symBinAddr: 0x10490, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x61DCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x19B8, symBinAddr: 0x104B4, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x61DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x19C4, symBinAddr: 0x104C0, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x61E06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6A48, symBinAddr: 0x15500, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x61E4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB28, symBinAddr: 0xF624, symSize: 0x1F4 } - - { offsetInCU: 0xEAF, offset: 0x61EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x1051C, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x61ED8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A84, symBinAddr: 0x10580, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x61EFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CBC, symBinAddr: 0x15774, symSize: 0x57C } - - { offsetInCU: 0xF59, offset: 0x61F4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xD1C, symBinAddr: 0xF818, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61F96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1AD4, symBinAddr: 0x105D0, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x62027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1AEC, symBinAddr: 0x105E8, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x6210A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1B30, symBinAddr: 0x1062C, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x6217C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0x10694, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x621A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x1069C, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x621D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC4, symBinAddr: 0x106C0, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x621F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x106CC, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x62210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x727C, symBinAddr: 0x15D34, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x62256, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD34, symBinAddr: 0xF830, symSize: 0x118 } - - { offsetInCU: 0x12B9, offset: 0x622AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C2C, symBinAddr: 0x10728, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x622E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C58, symBinAddr: 0x10754, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x62305, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7334, symBinAddr: 0x15DEC, symSize: 0x1A0 } - - { offsetInCU: 0x136F, offset: 0x62361, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xE4C, symBinAddr: 0xF948, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x6238C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1C74, symBinAddr: 0x10770, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x623B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C7C, symBinAddr: 0x10778, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x623E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1CA0, symBinAddr: 0x1079C, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x62404, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1CAC, symBinAddr: 0x107A8, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x62420, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7518, symBinAddr: 0x15FD0, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x62466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE6C, symBinAddr: 0xF968, symSize: 0x1CC } - - { offsetInCU: 0x14C9, offset: 0x624BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D08, symBinAddr: 0x10804, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x624F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1D60, symBinAddr: 0x1085C, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x62515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x772C, symBinAddr: 0x161E4, symSize: 0x360 } - - { offsetInCU: 0x1567, offset: 0x62559, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1038, symBinAddr: 0xFB34, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DA8, symBinAddr: 0x108A4, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x625AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x108AC, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x625E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DD4, symBinAddr: 0x108D0, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x625FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0x108DC, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x62618, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7A8C, symBinAddr: 0x16544, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x6265E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1058, symBinAddr: 0xFB54, symSize: 0x1EC } - - { offsetInCU: 0x16C1, offset: 0x626B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E3C, symBinAddr: 0x10938, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x626EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E84, symBinAddr: 0x10980, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x6270D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C60, symBinAddr: 0x16718, symSize: 0x380 } - - { offsetInCU: 0x176B, offset: 0x6275D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1244, symBinAddr: 0xFD40, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x62788, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F48, symBinAddr: 0x10A44, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x627B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F50, symBinAddr: 0x10A4C, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x627E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1F74, symBinAddr: 0x10A70, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x62800, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F80, symBinAddr: 0x10A7C, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x6281C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8068, symBinAddr: 0x16B20, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x62862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x125C, symBinAddr: 0xFD58, symSize: 0x12C } - - { offsetInCU: 0x18C5, offset: 0x628B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FDC, symBinAddr: 0x10AD8, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x628EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2020, symBinAddr: 0x10B1C, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x62911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8164, symBinAddr: 0x16C1C, symSize: 0x1CC } - - { offsetInCU: 0x195C, offset: 0x6294E, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3B78, symBinAddr: 0x12634, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x62962, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3B9C, symBinAddr: 0x12658, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62976, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3BE0, symBinAddr: 0x1269C, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x6298A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3C00, symBinAddr: 0x126BC, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x6299E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3C44, symBinAddr: 0x12700, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x629B2, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3C88, symBinAddr: 0x12744, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x629C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3C90, symBinAddr: 0x12748, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x629DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x3CE0, symBinAddr: 0x12798, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x629EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x3D6C, symBinAddr: 0x12824, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x62A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x3D74, symBinAddr: 0x1282C, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x62A16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x3D78, symBinAddr: 0x12830, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x62A2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x3D7C, symBinAddr: 0x12834, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x62A3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x3D8C, symBinAddr: 0x12844, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62A52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x4654, symBinAddr: 0x1310C, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62A66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x4664, symBinAddr: 0x1311C, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x62A7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4668, symBinAddr: 0x13120, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x62A8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x46AC, symBinAddr: 0x13164, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x62AA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x46B0, symBinAddr: 0x13168, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x62AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x46F4, symBinAddr: 0x131AC, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x62ACA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x46F8, symBinAddr: 0x131B0, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x62ADE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x473C, symBinAddr: 0x131F4, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x62AF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4780, symBinAddr: 0x13238, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x62B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x47C4, symBinAddr: 0x1327C, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x62B1A, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4808, symBinAddr: 0x132C0, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x62B2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x484C, symBinAddr: 0x13304, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62B42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4890, symBinAddr: 0x13348, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62B56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x48D4, symBinAddr: 0x1338C, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x62B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x4918, symBinAddr: 0x133D0, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x62B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x495C, symBinAddr: 0x13414, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x49A0, symBinAddr: 0x13458, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x62BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x49E4, symBinAddr: 0x1349C, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x62BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4A28, symBinAddr: 0x134E0, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x62BCE, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4A6C, symBinAddr: 0x13524, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x62BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4A78, symBinAddr: 0x13530, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x62BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4B08, symBinAddr: 0x135C0, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x62C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4BC4, symBinAddr: 0x1367C, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x62C1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4BCC, symBinAddr: 0x13684, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4BD0, symBinAddr: 0x13688, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62C46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4BD8, symBinAddr: 0x13690, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x62C5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4BE8, symBinAddr: 0x136A0, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x62C6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4C10, symBinAddr: 0x136C8, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4C54, symBinAddr: 0x1370C, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62C96, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4CC8, symBinAddr: 0x13780, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x62CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4CDC, symBinAddr: 0x13794, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x62CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x4D28, symBinAddr: 0x137E0, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x62CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x4D70, symBinAddr: 0x13828, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x62CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x4DB8, symBinAddr: 0x13870, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x62CFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x4DC8, symBinAddr: 0x13880, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x62D0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x4E00, symBinAddr: 0x138B8, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x4E74, symBinAddr: 0x1392C, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62D36, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4F30, symBinAddr: 0x139E8, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x62D4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x4F4C, symBinAddr: 0x13A04, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x62D5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x4FC8, symBinAddr: 0x13A80, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5010, symBinAddr: 0x13AC8, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62D86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x5064, symBinAddr: 0x13B1C, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x62D9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x5074, symBinAddr: 0x13B2C, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x62DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x509C, symBinAddr: 0x13B54, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x62DC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x50D8, symBinAddr: 0x13B90, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x62DD6, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5144, symBinAddr: 0x13BFC, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x62DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5150, symBinAddr: 0x13C08, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x62DFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5194, symBinAddr: 0x13C4C, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x62E12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x51DC, symBinAddr: 0x13C94, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x521C, symBinAddr: 0x13CD4, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x62E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x522C, symBinAddr: 0x13CE4, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x62E4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x527C, symBinAddr: 0x13D34, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62E62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5328, symBinAddr: 0x13DE0, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62E76, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x543C, symBinAddr: 0x13EF4, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x62E8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5468, symBinAddr: 0x13F20, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x62E9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x5504, symBinAddr: 0x13FBC, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x62EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x554C, symBinAddr: 0x14004, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x62EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x55A8, symBinAddr: 0x14060, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x62EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x55B8, symBinAddr: 0x14070, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x62EEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5610, symBinAddr: 0x140C8, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x62F02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x56D4, symBinAddr: 0x1418C, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x62F16, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5818, symBinAddr: 0x142D0, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x584C, symBinAddr: 0x14304, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62F3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x5900, symBinAddr: 0x143B8, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62F52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5948, symBinAddr: 0x14400, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x59AC, symBinAddr: 0x14464, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x59BC, symBinAddr: 0x14474, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62F8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x59C0, symBinAddr: 0x14478, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62FA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5A04, symBinAddr: 0x144BC, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5A08, symBinAddr: 0x144C0, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62FCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5A4C, symBinAddr: 0x14504, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62FDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5A50, symBinAddr: 0x14508, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62FF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x697C, symBinAddr: 0x15434, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x63006, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x69C0, symBinAddr: 0x15478, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x6301A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6A04, symBinAddr: 0x154BC, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x6302E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7238, symBinAddr: 0x15CF0, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x63042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x74D4, symBinAddr: 0x15F8C, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x63056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7FE0, symBinAddr: 0x16A98, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x6306A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8024, symBinAddr: 0x16ADC, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x6307E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8330, symBinAddr: 0x16DE8, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x63092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8374, symBinAddr: 0x16E2C, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x630A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x83B8, symBinAddr: 0x16E70, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x630BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x8460, symBinAddr: 0x16F18, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x630CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x84A4, symBinAddr: 0x16F5C, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x630E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8534, symBinAddr: 0x16FEC, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x630F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x85F0, symBinAddr: 0x170A8, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x6310A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x85F4, symBinAddr: 0x170AC, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x6311E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8604, symBinAddr: 0x170BC, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x63132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8694, symBinAddr: 0x1714C, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x63146, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8750, symBinAddr: 0x17208, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x6315A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8754, symBinAddr: 0x1720C, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x6316E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8764, symBinAddr: 0x1721C, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x63182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x87F4, symBinAddr: 0x172AC, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x63196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x88B0, symBinAddr: 0x17368, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x631AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x88B8, symBinAddr: 0x17370, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x631BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x88BC, symBinAddr: 0x17374, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x631D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x88C8, symBinAddr: 0x17380, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x631E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x88D8, symBinAddr: 0x17390, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x631FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8968, symBinAddr: 0x17420, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x6320E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A24, symBinAddr: 0x174DC, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x63222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A28, symBinAddr: 0x174E0, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x63236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A40, symBinAddr: 0x174F8, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x6324A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A44, symBinAddr: 0x174FC, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x6325E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8A54, symBinAddr: 0x1750C, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x63272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8A8C, symBinAddr: 0x17544, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x63286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8B00, symBinAddr: 0x175B8, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x6329A, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8BC4, symBinAddr: 0x1767C, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x632AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x8BE8, symBinAddr: 0x176A0, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x632C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x8C5C, symBinAddr: 0x17714, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x632D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x8CA4, symBinAddr: 0x1775C, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x632EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x8CF8, symBinAddr: 0x177B0, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x632FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x8D08, symBinAddr: 0x177C0, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x63312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x8D40, symBinAddr: 0x177F8, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x63326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x8DA4, symBinAddr: 0x1785C, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x6333A, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8E50, symBinAddr: 0x17908, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x6334E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x8E64, symBinAddr: 0x1791C, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x63362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x8EC8, symBinAddr: 0x17980, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x63376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x8F10, symBinAddr: 0x179C8, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x6338A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x8F60, symBinAddr: 0x17A18, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x6339E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x8F70, symBinAddr: 0x17A28, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x633B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x8FA8, symBinAddr: 0x17A60, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x633C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9014, symBinAddr: 0x17ACC, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x633DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x90C8, symBinAddr: 0x17B80, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x633EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x90EC, symBinAddr: 0x17BA4, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x63402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9158, symBinAddr: 0x17C10, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x63416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x91A0, symBinAddr: 0x17C58, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x6342A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x91F0, symBinAddr: 0x17CA8, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x6343E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9200, symBinAddr: 0x17CB8, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9204, symBinAddr: 0x17CBC, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x63466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9248, symBinAddr: 0x17D00, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x6347A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x924C, symBinAddr: 0x17D04, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x6348E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9290, symBinAddr: 0x17D48, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x634A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9294, symBinAddr: 0x17D4C, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x634B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x92D8, symBinAddr: 0x17D90, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x634CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x92DC, symBinAddr: 0x17D94, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x634DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9320, symBinAddr: 0x17DD8, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x634F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9324, symBinAddr: 0x17DDC, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x63506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9368, symBinAddr: 0x17E20, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x6351A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x936C, symBinAddr: 0x17E24, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x6352E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x93B0, symBinAddr: 0x17E68, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x63542, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x93B4, symBinAddr: 0x17E6C, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x93F8, symBinAddr: 0x17EB0, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x6356A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x93FC, symBinAddr: 0x17EB4, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9440, symBinAddr: 0x17EF8, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x63592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9444, symBinAddr: 0x17EFC, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x635A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9488, symBinAddr: 0x17F40, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x635BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x948C, symBinAddr: 0x17F44, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x635CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94D0, symBinAddr: 0x17F88, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x635E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94D4, symBinAddr: 0x17F8C, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x635F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9518, symBinAddr: 0x17FD0, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x6360A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x951C, symBinAddr: 0x17FD4, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9560, symBinAddr: 0x18018, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x63632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9564, symBinAddr: 0x1801C, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95A8, symBinAddr: 0x18060, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95AC, symBinAddr: 0x18064, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x6366E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x95F0, symBinAddr: 0x180A8, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x63682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x95F4, symBinAddr: 0x180AC, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9638, symBinAddr: 0x180F0, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x636AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x967C, symBinAddr: 0x18134, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x636BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x96C0, symBinAddr: 0x18178, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x636D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9704, symBinAddr: 0x181BC, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x636E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9794, symBinAddr: 0x1824C, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x636FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9850, symBinAddr: 0x18308, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x6370E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9854, symBinAddr: 0x1830C, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x63722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x99B8, symBinAddr: 0x18470, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x99BC, symBinAddr: 0x18474, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x6374A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x99CC, symBinAddr: 0x18484, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x6375E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9A5C, symBinAddr: 0x18514, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x63772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9B18, symBinAddr: 0x185D0, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9B1C, symBinAddr: 0x185D4, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x6379A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B2C, symBinAddr: 0x185E4, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x637AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9B30, symBinAddr: 0x185E8, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x637C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B74, symBinAddr: 0x1862C, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x637D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9B78, symBinAddr: 0x18630, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x637EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9BBC, symBinAddr: 0x18674, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x637FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9BC0, symBinAddr: 0x18678, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x63812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C04, symBinAddr: 0x186BC, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C08, symBinAddr: 0x186C0, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x6383A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9C4C, symBinAddr: 0x18704, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x6384E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9C50, symBinAddr: 0x18708, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x63862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C94, symBinAddr: 0x1874C, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C98, symBinAddr: 0x18750, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x6388A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CDC, symBinAddr: 0x18794, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x6389E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9CE0, symBinAddr: 0x18798, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x638B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D24, symBinAddr: 0x187DC, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x638C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D28, symBinAddr: 0x187E0, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x638DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D6C, symBinAddr: 0x18824, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x638EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D70, symBinAddr: 0x18828, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x6393E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0xEBD4, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x6395A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0xEBFC, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x639A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1494, symBinAddr: 0xFF90, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63A45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1514, symBinAddr: 0x10010, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63A61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x153C, symBinAddr: 0x10038, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63A83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1648, symBinAddr: 0x10144, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x63A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1670, symBinAddr: 0x1016C, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x63AC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x1025C, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x63ADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0x10284, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x63AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x186C, symBinAddr: 0x10368, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x63B1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1894, symBinAddr: 0x10390, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x63B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x19D0, symBinAddr: 0x104CC, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x63B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0x104F4, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x63BA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1B58, symBinAddr: 0x10654, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63C44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BDC, symBinAddr: 0x106D8, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x63C60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C04, symBinAddr: 0x10700, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1CB8, symBinAddr: 0x107B4, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x63C9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0x107DC, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x63CC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DEC, symBinAddr: 0x108E8, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x63CDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E14, symBinAddr: 0x10910, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1F8C, symBinAddr: 0x10A88, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x63D1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FB4, symBinAddr: 0x10AB0, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x63EC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x18944, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63F43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x18944, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x189C8, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63FBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x18A04, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63FF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x18A58, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x64017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x18A68, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x64042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x128, symBinAddr: 0x18A6C, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x64060, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x13C, symBinAddr: 0x18A80, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x6409A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x150, symBinAddr: 0x18A94, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x640C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x18AA4, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x640F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x18AA8, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x64111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x18AD4, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x64150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x18B08, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x6417E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x18B18, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x641A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x18B1C, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x641C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x18B24, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x64201, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x18B2C, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x6422F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x18B3C, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x6425A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x18B40, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x64278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x18B48, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x642B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x18B50, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x642E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x18B60, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x6430B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x18B64, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x64329, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x18B90, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x64368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x18BC4, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x64396, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x18BD4, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x643C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x18BD8, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x643DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x18C04, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x6441E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x18C38, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x6444C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x18C48, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x64477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x18C4C, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x64495, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x18C58, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x644D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x18C64, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x64501, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x18C74, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x6452C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x18C78, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x6454A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x18C84, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x64588, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x18C90, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x645B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x18CA0, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x645E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x18CA4, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x645F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x18CD4, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x6460A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x18D14, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x6461E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x18DB8, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x64632, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x18EBC, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x18EE8, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x6465A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x18F84, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x6466E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x18FCC, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x1902C, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64864, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1903C, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x6488F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x195E0, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x648AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x19850, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x648E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x192E8, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x6490E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x19828, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x6492A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x198A8, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64956, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x19900, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64986, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x19A04, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x6499A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x19A94, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x649AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x19B50, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x649C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x19B54, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x649D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x19B64, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x649EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x19BF4, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x649FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x19CB0, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x64A12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x19CB8, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x19CBC, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x64A3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x19CC4, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x64A4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x19CD4, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x19CD8, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64A76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x19D1C, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x64A8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x19D20, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x64BE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x19D6C, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x64C15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x19E80, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64C42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC9printLogs33_D78766567F29622279F8000760588BB6LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x1A258, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64D74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x19E9C, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x64DC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x19EBC, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x64E1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x19F48, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64E44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x19F4C, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x64E6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x19F50, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64E92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x19FC4, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x64EE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x19FC8, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64F3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x1A058, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x1A0BC, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64FD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x1A14C, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x65027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x1A1DC, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x65059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x1A250, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x65075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x1A254, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x650EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x1A304, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x651D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1A9D0, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x6522B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1AA44, symSize: 0x294 } - - { offsetInCU: 0x7C0, offset: 0x65359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF6C, symBinAddr: 0x1ACD8, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x653D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFD4, symBinAddr: 0x1AD40, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x65416, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1038, symBinAddr: 0x1ADA4, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x6542A, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1048, symBinAddr: 0x1ADB4, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x6543E, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10DC, symBinAddr: 0x1ADC4, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x65452, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1124, symBinAddr: 0x1AE0C, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x65466, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1138, symBinAddr: 0x1AE20, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x6547A, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x117C, symBinAddr: 0x1AE64, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x6548E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11BC, symBinAddr: 0x1AEA4, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x654A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1380, symBinAddr: 0x1B068, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x654B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13B0, symBinAddr: 0x1B098, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x654CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x156C, symBinAddr: 0x1B254, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x65771, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AB8, symBinAddr: 0x83AC8, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x6578B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2AC0, symBinAddr: 0x83AD0, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65799, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1B294, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x657D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1B2C8, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x6580B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1B308, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65836, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1B33C, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65886, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1B37C, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x658B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1B3AC, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x658DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1B3B0, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x658F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1B3D4, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x65928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1B3E8, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x659B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1B458, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x659D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1B458, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x65A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1B4B4, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x65A9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1B520, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x65B27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1B658, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65B46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1B6B4, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x65B6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1B714, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x65B9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1B750, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x65C11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1B888, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x65C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1B8D4, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x65C59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1B924, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x65C88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1B960, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x65CB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1B968, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x65CD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1B998, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x65CF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1B9D4, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x65D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1BA6C, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x65D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x818, symBinAddr: 0x1BA9C, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65D94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x85C, symBinAddr: 0x1BAE0, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x65DC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1BB1C, symSize: 0x68 } - - { offsetInCU: 0x74C, offset: 0x65E6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1BB84, symSize: 0xC0 } - - { offsetInCU: 0x7E5, offset: 0x65F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9C0, symBinAddr: 0x1BC44, symSize: 0xC0 } - - { offsetInCU: 0x865, offset: 0x65F87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xC84, symBinAddr: 0x1BF08, symSize: 0x70 } - - { offsetInCU: 0x88F, offset: 0x65FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xCF4, symBinAddr: 0x1BF78, symSize: 0x30 } - - { offsetInCU: 0x8B4, offset: 0x65FD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xD24, symBinAddr: 0x1BFA8, symSize: 0x188 } - - { offsetInCU: 0x969, offset: 0x6608B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xEAC, symBinAddr: 0x1C130, symSize: 0x14 } - - { offsetInCU: 0x9B6, offset: 0x660D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0xEC0, symBinAddr: 0x1C144, symSize: 0x64 } - - { offsetInCU: 0xA52, offset: 0x66174, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0xF54, symBinAddr: 0x1C1D8, symSize: 0x6C } - - { offsetInCU: 0xB86, offset: 0x662A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x18B8, symBinAddr: 0x1CB3C, symSize: 0x228 } - - { offsetInCU: 0xC17, offset: 0x66339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B44, symBinAddr: 0x1CDC8, symSize: 0x190 } - - { offsetInCU: 0xD1D, offset: 0x6643F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1B524, symSize: 0x88 } - - { offsetInCU: 0xD53, offset: 0x66475, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1B5AC, symSize: 0xAC } - - { offsetInCU: 0xD93, offset: 0x664B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1B6A4, symSize: 0x10 } - - { offsetInCU: 0xDA7, offset: 0x664C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1B704, symSize: 0x10 } - - { offsetInCU: 0xDBB, offset: 0x664DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1B754, symSize: 0x88 } - - { offsetInCU: 0xDF1, offset: 0x66513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1B7DC, symSize: 0xAC } - - { offsetInCU: 0xE31, offset: 0x66553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1BA10, symSize: 0x5C } - - { offsetInCU: 0xE95, offset: 0x665B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xA80, symBinAddr: 0x1BD04, symSize: 0x204 } - - { offsetInCU: 0xF09, offset: 0x6662B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x172C, symBinAddr: 0x1C9B0, symSize: 0x13C } - - { offsetInCU: 0xFD3, offset: 0x666F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0xF24, symBinAddr: 0x1C1A8, symSize: 0x30 } - - { offsetInCU: 0x10C2, offset: 0x667E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x1894, symBinAddr: 0x1CB18, symSize: 0x24 } - - { offsetInCU: 0x1112, offset: 0x66834, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1C244, symSize: 0x21C } - - { offsetInCU: 0x1304, offset: 0x66A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x11DC, symBinAddr: 0x1C460, symSize: 0xC } - - { offsetInCU: 0x135B, offset: 0x66A7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1C46C, symSize: 0x4 } - - { offsetInCU: 0x1377, offset: 0x66A99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1C46C, symSize: 0x4 } - - { offsetInCU: 0x1390, offset: 0x66AB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1C46C, symSize: 0x4 } - - { offsetInCU: 0x13A9, offset: 0x66ACB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11EC, symBinAddr: 0x1C470, symSize: 0x4 } - - { offsetInCU: 0x13C1, offset: 0x66AE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11F0, symBinAddr: 0x1C474, symSize: 0xB8 } - - { offsetInCU: 0x1461, offset: 0x66B83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12E8, symBinAddr: 0x1C56C, symSize: 0x4 } - - { offsetInCU: 0x1479, offset: 0x66B9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x251C, symBinAddr: 0x1D790, symSize: 0x7C } - - { offsetInCU: 0x1556, offset: 0x66C78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x12A8, symBinAddr: 0x1C52C, symSize: 0x40 } - - { offsetInCU: 0x158B, offset: 0x66CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x12F8, symBinAddr: 0x1C57C, symSize: 0x98 } - - { offsetInCU: 0x1648, offset: 0x66D6A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x1440, symBinAddr: 0x1C6C4, symSize: 0x198 } - - { offsetInCU: 0x1AF7, offset: 0x67219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x15D8, symBinAddr: 0x1C85C, symSize: 0x13C } - - { offsetInCU: 0x1BF4, offset: 0x67316, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1714, symBinAddr: 0x1C998, symSize: 0x18 } - - { offsetInCU: 0x1C08, offset: 0x6732A, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1868, symBinAddr: 0x1CAEC, symSize: 0x2C } - - { offsetInCU: 0x1C20, offset: 0x67342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1AE0, symBinAddr: 0x1CD64, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x67356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1B24, symBinAddr: 0x1CDA8, symSize: 0x20 } - - { offsetInCU: 0x1C48, offset: 0x6736A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1CD4, symBinAddr: 0x1CF58, symSize: 0x20 } - - { offsetInCU: 0x1C5C, offset: 0x6737E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1CF4, symBinAddr: 0x1CF78, symSize: 0x4 } - - { offsetInCU: 0x1C70, offset: 0x67392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x1CF7C, symSize: 0x44 } - - { offsetInCU: 0x1C84, offset: 0x673A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D3C, symBinAddr: 0x1CFC0, symSize: 0x4 } - - { offsetInCU: 0x1C98, offset: 0x673BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D40, symBinAddr: 0x1CFC4, symSize: 0x44 } - - { offsetInCU: 0x1CAC, offset: 0x673CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwCP', symObjAddr: 0x1E60, symBinAddr: 0x1D0E4, symSize: 0x5C } - - { offsetInCU: 0x1CC0, offset: 0x673E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1EBC, symBinAddr: 0x1D140, symSize: 0x18 } - - { offsetInCU: 0x1CD4, offset: 0x673F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1ED4, symBinAddr: 0x1D158, symSize: 0x14 } - - { offsetInCU: 0x1CE8, offset: 0x6740A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1EE8, symBinAddr: 0x1D16C, symSize: 0x18 } - - { offsetInCU: 0x1CFC, offset: 0x6741E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwcp', symObjAddr: 0x1F00, symBinAddr: 0x1D184, symSize: 0x5C } - - { offsetInCU: 0x1D10, offset: 0x67432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x1F5C, symBinAddr: 0x1D1E0, symSize: 0x6C } - - { offsetInCU: 0x1D24, offset: 0x67446, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1FC8, symBinAddr: 0x1D24C, symSize: 0x14 } - - { offsetInCU: 0x1D38, offset: 0x6745A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x1FDC, symBinAddr: 0x1D260, symSize: 0x50 } - - { offsetInCU: 0x1D4C, offset: 0x6746E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x202C, symBinAddr: 0x1D2B0, symSize: 0x48 } - - { offsetInCU: 0x1D60, offset: 0x67482, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x2074, symBinAddr: 0x1D2F8, symSize: 0x48 } - - { offsetInCU: 0x1D74, offset: 0x67496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x20BC, symBinAddr: 0x1D340, symSize: 0x8 } - - { offsetInCU: 0x1D88, offset: 0x674AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x20C4, symBinAddr: 0x1D348, symSize: 0x4 } - - { offsetInCU: 0x1D9C, offset: 0x674BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x20C8, symBinAddr: 0x1D34C, symSize: 0x8 } - - { offsetInCU: 0x1DB0, offset: 0x674D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x20D0, symBinAddr: 0x1D354, symSize: 0x10 } - - { offsetInCU: 0x1DC4, offset: 0x674E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x21B8, symBinAddr: 0x1D42C, symSize: 0x90 } - - { offsetInCU: 0x1DD8, offset: 0x674FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2248, symBinAddr: 0x1D4BC, symSize: 0xBC } - - { offsetInCU: 0x1DEC, offset: 0x6750E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2304, symBinAddr: 0x1D578, symSize: 0x4 } - - { offsetInCU: 0x1E00, offset: 0x67522, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2308, symBinAddr: 0x1D57C, symSize: 0x10 } - - { offsetInCU: 0x1E14, offset: 0x67536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x2318, symBinAddr: 0x1D58C, symSize: 0x90 } - - { offsetInCU: 0x1E28, offset: 0x6754A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x23A8, symBinAddr: 0x1D61C, symSize: 0xBC } - - { offsetInCU: 0x1E3C, offset: 0x6755E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x2464, symBinAddr: 0x1D6D8, symSize: 0x8 } - - { offsetInCU: 0x1E50, offset: 0x67572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x246C, symBinAddr: 0x1D6E0, symSize: 0x4 } - - { offsetInCU: 0x1E64, offset: 0x67586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2470, symBinAddr: 0x1D6E4, symSize: 0x8 } - - { offsetInCU: 0x1E78, offset: 0x6759A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2478, symBinAddr: 0x1D6EC, symSize: 0x10 } - - { offsetInCU: 0x1E97, offset: 0x675B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x24B0, symBinAddr: 0x1D724, symSize: 0x24 } - - { offsetInCU: 0x1EC0, offset: 0x675E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x25BC, symBinAddr: 0x1D830, symSize: 0x8 } - - { offsetInCU: 0x1ED4, offset: 0x675F6, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x25C4, symBinAddr: 0x1D838, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x6760A, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x25D4, symBinAddr: 0x1D848, symSize: 0x8 } - - { offsetInCU: 0x1EFC, offset: 0x6761E, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2660, symBinAddr: 0x1D850, symSize: 0x3C } - - { offsetInCU: 0x1F7E, offset: 0x676A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1B284, symSize: 0x4 } - - { offsetInCU: 0x1F9A, offset: 0x676BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1B288, symSize: 0x4 } - - { offsetInCU: 0x1FB6, offset: 0x676D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1B28C, symSize: 0x4 } - - { offsetInCU: 0x1FD2, offset: 0x676F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1B290, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x67AE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1D9A4, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x67AFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1D9E0, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67B0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1DA64, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x67B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1DB8C, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x67B53, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1DBBC, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x67B67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1DBD8, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x67B7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1DC74, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x67B8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1DCD8, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x67BA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1DD34, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x67BB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1DD44, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x67BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1DD74, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67BDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1DD9C, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67BF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1DDF8, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x67C07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1DE7C, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x67C1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1DEE0, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x67C2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1DF3C, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x67C43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1DF9C, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x67C63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1DFAC, symSize: 0x10C } - - { offsetInCU: 0x20B, offset: 0x67CAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x1E404, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67D03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA68, symBinAddr: 0x1E40C, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x67DE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA8, symBinAddr: 0x1E44C, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x67E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1E4AC, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x67E86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1E4AC, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x67EA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB0C, symBinAddr: 0x1E4B0, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67ED7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB34, symBinAddr: 0x1E4D8, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67EF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB40, symBinAddr: 0x1E4E4, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67F0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF18, symBinAddr: 0x1E8BC, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF84, symBinAddr: 0x1E928, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67F87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x1E540, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE8, symBinAddr: 0x1E58C, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF90, symBinAddr: 0x1E934, symSize: 0x144 } - - { offsetInCU: 0x58D, offset: 0x68031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x714, symBinAddr: 0x1E0B8, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x68080, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC28, symBinAddr: 0x1E5CC, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x680E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x1E5E4, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x68160, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC6C, symBinAddr: 0x1E610, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x6818B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC74, symBinAddr: 0x1E618, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x681BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC98, symBinAddr: 0x1E63C, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x681D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1E648, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x681F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1224, symBinAddr: 0x1EB44, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x6823A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x734, symBinAddr: 0x1E0D8, symSize: 0x1B8 } - - { offsetInCU: 0x7EB, offset: 0x6828F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1E6A4, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x682C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD4C, symBinAddr: 0x1E6F0, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x682E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1360, symBinAddr: 0x1EC80, symSize: 0x254 } - - { offsetInCU: 0x895, offset: 0x68339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x8EC, symBinAddr: 0x1E290, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x68364, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE18, symBinAddr: 0x1E7BC, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x6838F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE20, symBinAddr: 0x1E7C4, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x683C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE44, symBinAddr: 0x1E7E8, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x683DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CEC, symBinAddr: 0x1F5A0, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x68422, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x90C, symBinAddr: 0x1E2B0, symSize: 0x154 } - - { offsetInCU: 0x9D3, offset: 0x68477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xEA0, symBinAddr: 0x1E844, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x684AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEE0, symBinAddr: 0x1E884, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x684D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E44, symBinAddr: 0x1F6F8, symSize: 0x2A8 } - - { offsetInCU: 0xA80, offset: 0x68524, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1138, symBinAddr: 0x1EA78, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x68538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x119C, symBinAddr: 0x1EABC, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x6854C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x11E0, symBinAddr: 0x1EB00, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x68560, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x15B4, symBinAddr: 0x1EED4, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x68574, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x163C, symBinAddr: 0x1EF18, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x68588, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x172C, symBinAddr: 0x1F008, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x6859C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1788, symBinAddr: 0x1F054, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x685B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1790, symBinAddr: 0x1F05C, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x685C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1794, symBinAddr: 0x1F060, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x685D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x179C, symBinAddr: 0x1F068, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x685EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x1F078, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x68600, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x1F0C8, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x68614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x188C, symBinAddr: 0x1F154, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x68628, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1894, symBinAddr: 0x1F15C, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x6863C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1898, symBinAddr: 0x1F160, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x68650, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x189C, symBinAddr: 0x1F164, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x68664, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18AC, symBinAddr: 0x1F174, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x68678, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x18E4, symBinAddr: 0x1F1AC, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x6868C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1948, symBinAddr: 0x1F210, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x686A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A08, symBinAddr: 0x1F2BC, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x686B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1A6C, symBinAddr: 0x1F320, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x686C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1AC8, symBinAddr: 0x1F37C, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x686DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B2C, symBinAddr: 0x1F3E0, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x686F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B3C, symBinAddr: 0x1F3F0, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x68704, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B40, symBinAddr: 0x1F3F4, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x68718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B84, symBinAddr: 0x1F438, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x6872C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B88, symBinAddr: 0x1F43C, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x68740, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BCC, symBinAddr: 0x1F480, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x68754, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x1F484, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x68768, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C14, symBinAddr: 0x1F4C8, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x6877C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C18, symBinAddr: 0x1F4CC, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x68790, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C5C, symBinAddr: 0x1F510, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x687A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C60, symBinAddr: 0x1F514, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x687B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CA4, symBinAddr: 0x1F558, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x687CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CA8, symBinAddr: 0x1F55C, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x687E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x20EC, symBinAddr: 0x1F9A0, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x687F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x2284, symBinAddr: 0x1FB38, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x68808, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2288, symBinAddr: 0x1FB3C, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x6881C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2298, symBinAddr: 0x1FB4C, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x68830, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x229C, symBinAddr: 0x1FB50, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x68844, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22E0, symBinAddr: 0x1FB94, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x68858, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E4, symBinAddr: 0x1FB98, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x6886C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2328, symBinAddr: 0x1FBDC, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x68880, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x232C, symBinAddr: 0x1FBE0, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x688D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xACC, symBinAddr: 0x1E470, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x68977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB4C, symBinAddr: 0x1E4F0, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x68993, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB74, symBinAddr: 0x1E518, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x689B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCB0, symBinAddr: 0x1E654, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x689D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCD8, symBinAddr: 0x1E67C, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x689F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE50, symBinAddr: 0x1E7F4, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x68A0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE78, symBinAddr: 0x1E81C, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x68B5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1FC50, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x68B80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1FC50, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68BB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x20198, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x68C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x201C0, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x68D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x20204, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x68D63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x20204, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x68DA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x2021C, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x68E86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x20260, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x1FC68, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68F81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x20004, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68F95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x20014, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68FB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x20024, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68FD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x20050, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x69012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x20084, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x69030, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x20094, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x6905B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x20098, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x69079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x200A0, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x690B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x200A8, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x690E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x200B8, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x69114, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x584, symBinAddr: 0x200BC, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x69132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x598, symBinAddr: 0x200D0, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x69158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x200E4, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x69176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x20110, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x691A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x2013C, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x691BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x20144, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x691FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x2014C, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x69219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x2015C, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x69244, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x20160, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x69262, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x20168, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x6929E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x20170, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x692CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x20180, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x692F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x20184, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x69325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x20194, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x69367, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x202C8, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x6937B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x202CC, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x6938F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x20310, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x693A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x20340, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x693B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x203BC, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x693CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x20540, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x693E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x208D4, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x6940F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x20904, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x69423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x20930, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x69437, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x20964, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x6944B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x209A8, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x6945F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x20B54, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x69473, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x20B9C, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x69487, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x20C14, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x6949B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x20C24, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x694AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x20C58, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x694C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x20C60, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x694D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x20C94, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x694EB, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x20CE8, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x694FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x20CFC, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x69513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x20D38, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x69527, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x20D80, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x6953B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x20DC0, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x6954F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x20DD0, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x69563, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x20E08, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x69577, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x20E74, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x6958B, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x20F50, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x6959F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x20F6C, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x695B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x20FE0, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x695C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x2103C, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x695DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x210A0, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x695EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x210B0, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x69603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x210D8, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x69617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x21114, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x6962B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x21180, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x6963F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x211C4, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x69653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x2120C, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x69667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x2124C, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x6967B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x2125C, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x6968F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x212B0, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x696A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x212F4, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x696B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x21304, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x696CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x21394, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x696DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x21450, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x696F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x21458, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x69707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x2145C, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x6971B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x21468, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x69770, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x20288, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x699BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x21488, symSize: 0x190 } - - { offsetInCU: 0x373, offset: 0x69CC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x218, symBinAddr: 0x216A0, symSize: 0x2220 } - - { offsetInCU: 0x15CE, offset: 0x6AF1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB0E0, symBinAddr: 0x2C568, symSize: 0x3C84 } - - { offsetInCU: 0x3157, offset: 0x6CAA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xED64, symBinAddr: 0x301EC, symSize: 0x634 } - - { offsetInCU: 0x372B, offset: 0x6D078, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0xF3C0, symBinAddr: 0x30848, symSize: 0x40 } - - { offsetInCU: 0x3753, offset: 0x6D0A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x14074, symBinAddr: 0x354FC, symSize: 0x3E0 } - - { offsetInCU: 0x38E2, offset: 0x6D22F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10AE0, symBinAddr: 0x31F68, symSize: 0x271C } - - { offsetInCU: 0x5016, offset: 0x6E963, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x2438, symBinAddr: 0x238C0, symSize: 0x2A8 } - - { offsetInCU: 0x53D1, offset: 0x6ED1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x26E0, symBinAddr: 0x23B68, symSize: 0x6E8 } - - { offsetInCU: 0x5835, offset: 0x6F182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x2DC8, symBinAddr: 0x24250, symSize: 0x5D8 } - - { offsetInCU: 0x5B68, offset: 0x6F4B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x33A0, symBinAddr: 0x24828, symSize: 0x394C } - - { offsetInCU: 0x7562, offset: 0x70EAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6CEC, symBinAddr: 0x28174, symSize: 0x278 } - - { offsetInCU: 0x7679, offset: 0x70FC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x73E8, symBinAddr: 0x28870, symSize: 0x17AC } - - { offsetInCU: 0x7FD3, offset: 0x71920, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6F64, symBinAddr: 0x283EC, symSize: 0x118 } - - { offsetInCU: 0x803C, offset: 0x71989, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x71D8, symBinAddr: 0x28660, symSize: 0x1E8 } - - { offsetInCU: 0x8109, offset: 0x71A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x73C0, symBinAddr: 0x28848, symSize: 0x28 } - - { offsetInCU: 0x84A1, offset: 0x71DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x8BE8, symBinAddr: 0x2A070, symSize: 0x754 } - - { offsetInCU: 0x88B2, offset: 0x721FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA270, symBinAddr: 0x2B6F8, symSize: 0xE70 } - - { offsetInCU: 0x917A, offset: 0x72AC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x933C, symBinAddr: 0x2A7C4, symSize: 0xB2C } - - { offsetInCU: 0x9BDB, offset: 0x73528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF82C, symBinAddr: 0x30CB4, symSize: 0x12B4 } - - { offsetInCU: 0xAC2E, offset: 0x7457B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x18320, symBinAddr: 0x396D8, symSize: 0xBD0 } - - { offsetInCU: 0xB955, offset: 0x752A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x131FC, symBinAddr: 0x34684, symSize: 0xE78 } - - { offsetInCU: 0xC283, offset: 0x75BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x14454, symBinAddr: 0x358DC, symSize: 0x1E8 } - - { offsetInCU: 0xC319, offset: 0x75C66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x1463C, symBinAddr: 0x35AC4, symSize: 0x290 } - - { offsetInCU: 0xC40A, offset: 0x75D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x148DC, symBinAddr: 0x35D64, symSize: 0x90 } - - { offsetInCU: 0xC49F, offset: 0x75DEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x149C0, symBinAddr: 0x35E48, symSize: 0x1004 } - - { offsetInCU: 0xCE94, offset: 0x767E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x159C4, symBinAddr: 0x36E4C, symSize: 0x4C } - - { offsetInCU: 0xCEB0, offset: 0x767FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x15A10, symBinAddr: 0x36E98, symSize: 0x150 } - - { offsetInCU: 0xCFBF, offset: 0x7690C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x15B60, symBinAddr: 0x36FE8, symSize: 0x54 } - - { offsetInCU: 0xD038, offset: 0x76985, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x15C08, symBinAddr: 0x3703C, symSize: 0x4C } - - { offsetInCU: 0xD0BC, offset: 0x76A09, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x15C54, symBinAddr: 0x37088, symSize: 0x50 } - - { offsetInCU: 0xD135, offset: 0x76A82, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x15CA4, symBinAddr: 0x370D8, symSize: 0x64 } - - { offsetInCU: 0xD177, offset: 0x76AC4, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15D08, symBinAddr: 0x3713C, symSize: 0x30 } - - { offsetInCU: 0xD1A4, offset: 0x76AF1, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15D38, symBinAddr: 0x3716C, symSize: 0x80 } - - { offsetInCU: 0xD242, offset: 0x76B8F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x15DB8, symBinAddr: 0x371EC, symSize: 0x6C } - - { offsetInCU: 0xD2DC, offset: 0x76C29, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15E24, symBinAddr: 0x37258, symSize: 0x4C } - - { offsetInCU: 0xD360, offset: 0x76CAD, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x15E9C, symBinAddr: 0x372D0, symSize: 0xE0 } - - { offsetInCU: 0xD3AA, offset: 0x76CF7, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15F7C, symBinAddr: 0x373B0, symSize: 0xC4 } - - { offsetInCU: 0xD3D7, offset: 0x76D24, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16040, symBinAddr: 0x37474, symSize: 0x174 } - - { offsetInCU: 0xD48B, offset: 0x76DD8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x161B4, symBinAddr: 0x375E8, symSize: 0x104 } - - { offsetInCU: 0xD61E, offset: 0x76F6B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x162B8, symBinAddr: 0x376EC, symSize: 0x128 } - - { offsetInCU: 0xD7C1, offset: 0x7710E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x163E0, symBinAddr: 0x37814, symSize: 0x16C } - - { offsetInCU: 0xD996, offset: 0x772E3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1654C, symBinAddr: 0x37980, symSize: 0x174 } - - { offsetInCU: 0xDB51, offset: 0x7749E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x166C0, symBinAddr: 0x37AF4, symSize: 0xFC } - - { offsetInCU: 0xDCF4, offset: 0x77641, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x167BC, symBinAddr: 0x37BF0, symSize: 0xFC } - - { offsetInCU: 0xDE97, offset: 0x777E4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x169BC, symBinAddr: 0x37DF0, symSize: 0xFC } - - { offsetInCU: 0xDFC1, offset: 0x7790E, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16AB8, symBinAddr: 0x37EEC, symSize: 0x40 } - - { offsetInCU: 0xE00E, offset: 0x7795B, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x16D5C, symBinAddr: 0x38190, symSize: 0x138 } - - { offsetInCU: 0xE0AD, offset: 0x779FA, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16E94, symBinAddr: 0x382C8, symSize: 0xB4 } - - { offsetInCU: 0xE15D, offset: 0x77AAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x17194, symBinAddr: 0x38588, symSize: 0x638 } - - { offsetInCU: 0xE501, offset: 0x77E4E, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x177CC, symBinAddr: 0x38BC0, symSize: 0x18C } - - { offsetInCU: 0xE612, offset: 0x77F5F, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17958, symBinAddr: 0x38D4C, symSize: 0xC0 } - - { offsetInCU: 0xE715, offset: 0x78062, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17C34, symBinAddr: 0x38FEC, symSize: 0x1A0 } - - { offsetInCU: 0xE86A, offset: 0x781B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17DD4, symBinAddr: 0x3918C, symSize: 0x380 } - - { offsetInCU: 0xEB96, offset: 0x784E3, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18EF0, symBinAddr: 0x3A2A8, symSize: 0x198 } - - { offsetInCU: 0xECB2, offset: 0x785FF, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19088, symBinAddr: 0x3A440, symSize: 0xC0 } - - { offsetInCU: 0xEFE4, offset: 0x78931, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x19148, symBinAddr: 0x3A500, symSize: 0xD28 } - - { offsetInCU: 0x1025F, offset: 0x79BAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19E70, symBinAddr: 0x3B228, symSize: 0x1C0 } - - { offsetInCU: 0x1040D, offset: 0x79D5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A030, symBinAddr: 0x3B3E8, symSize: 0x1A4 } - - { offsetInCU: 0x10500, offset: 0x79E4D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A1D4, symBinAddr: 0x3B58C, symSize: 0x84 } - - { offsetInCU: 0x1070D, offset: 0x7A05A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1ACD8, symBinAddr: 0x3C090, symSize: 0x8 } - - { offsetInCU: 0x10721, offset: 0x7A06E, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1ADBC, symBinAddr: 0x3C174, symSize: 0x10 } - - { offsetInCU: 0x10735, offset: 0x7A082, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1ADCC, symBinAddr: 0x3C184, symSize: 0x14 } - - { offsetInCU: 0x10749, offset: 0x7A096, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1ADE0, symBinAddr: 0x3C198, symSize: 0x50 } - - { offsetInCU: 0x1075D, offset: 0x7A0AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1AE40, symBinAddr: 0x3C1E8, symSize: 0x44 } - - { offsetInCU: 0x10771, offset: 0x7A0BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1AE84, symBinAddr: 0x3C22C, symSize: 0x30C } - - { offsetInCU: 0x10785, offset: 0x7A0D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1B190, symBinAddr: 0x3C538, symSize: 0x240 } - - { offsetInCU: 0x10799, offset: 0x7A0E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1B3D0, symBinAddr: 0x3C778, symSize: 0x70 } - - { offsetInCU: 0x107AD, offset: 0x7A0FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1B440, symBinAddr: 0x3C7E8, symSize: 0x34 } - - { offsetInCU: 0x107C1, offset: 0x7A10E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1B474, symBinAddr: 0x3C81C, symSize: 0x174 } - - { offsetInCU: 0x107D5, offset: 0x7A122, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1B5E8, symBinAddr: 0x3C990, symSize: 0xB4 } - - { offsetInCU: 0x1080A, offset: 0x7A157, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1BEB4, symBinAddr: 0x3CA44, symSize: 0xC4 } - - { offsetInCU: 0x10880, offset: 0x7A1CD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BF78, symBinAddr: 0x3CB08, symSize: 0x78 } - - { offsetInCU: 0x108AD, offset: 0x7A1FA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BFF0, symBinAddr: 0x3CB80, symSize: 0x80 } - - { offsetInCU: 0x10923, offset: 0x7A270, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C070, symBinAddr: 0x3CC00, symSize: 0x68 } - - { offsetInCU: 0x10A47, offset: 0x7A394, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C0D8, symBinAddr: 0x3CC68, symSize: 0x644 } - - { offsetInCU: 0x10EEB, offset: 0x7A838, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1C72C, symBinAddr: 0x3D2BC, symSize: 0x4C } - - { offsetInCU: 0x10EFF, offset: 0x7A84C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1C820, symBinAddr: 0x3D328, symSize: 0x8 } - - { offsetInCU: 0x10F13, offset: 0x7A860, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1C828, symBinAddr: 0x3D330, symSize: 0x44 } - - { offsetInCU: 0x10F27, offset: 0x7A874, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1C86C, symBinAddr: 0x3D374, symSize: 0x44 } - - { offsetInCU: 0x10F3B, offset: 0x7A888, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1C918, symBinAddr: 0x3D3DC, symSize: 0x8 } - - { offsetInCU: 0x10F4F, offset: 0x7A89C, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1C930, symBinAddr: 0x3D3E4, symSize: 0x3C } - - { offsetInCU: 0x10F63, offset: 0x7A8B0, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1C96C, symBinAddr: 0x3D420, symSize: 0x34 } - - { offsetInCU: 0x10F77, offset: 0x7A8C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1CA20, symBinAddr: 0x3D4D4, symSize: 0x44 } - - { offsetInCU: 0x10FAC, offset: 0x7A8F9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CB28, symBinAddr: 0x3D5DC, symSize: 0x48 } - - { offsetInCU: 0x10FCB, offset: 0x7A918, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CB70, symBinAddr: 0x3D624, symSize: 0x64 } - - { offsetInCU: 0x1100E, offset: 0x7A95B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CBD4, symBinAddr: 0x3D688, symSize: 0x80 } - - { offsetInCU: 0x110A3, offset: 0x7A9F0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CC54, symBinAddr: 0x3D708, symSize: 0x120 } - - { offsetInCU: 0x1118B, offset: 0x7AAD8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1CDBC, symBinAddr: 0x3D870, symSize: 0x48 } - - { offsetInCU: 0x1119F, offset: 0x7AAEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1CE04, symBinAddr: 0x3D8B8, symSize: 0x40 } - - { offsetInCU: 0x111B3, offset: 0x7AB00, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1CF18, symBinAddr: 0x3D9CC, symSize: 0x48 } - - { offsetInCU: 0x111C7, offset: 0x7AB14, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1CFE0, symBinAddr: 0x3DA94, symSize: 0x18 } - - { offsetInCU: 0x111DB, offset: 0x7AB28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1CFF8, symBinAddr: 0x3DAAC, symSize: 0x10 } - - { offsetInCU: 0x111EF, offset: 0x7AB3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1D008, symBinAddr: 0x3DABC, symSize: 0x34 } - - { offsetInCU: 0x11203, offset: 0x7AB50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D078, symBinAddr: 0x3DB2C, symSize: 0x30 } - - { offsetInCU: 0x11250, offset: 0x7AB9D, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x190, symBinAddr: 0x21618, symSize: 0x88 } - - { offsetInCU: 0x11698, offset: 0x7AFE5, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9E68, symBinAddr: 0x2B2F0, symSize: 0x408 } - - { offsetInCU: 0x11973, offset: 0x7B2C0, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF6A0, symBinAddr: 0x30B28, symSize: 0x18C } - - { offsetInCU: 0x11B91, offset: 0x7B4DE, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x1496C, symBinAddr: 0x35DF4, symSize: 0x54 } - - { offsetInCU: 0x11CFE, offset: 0x7B64B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x16F48, symBinAddr: 0x3837C, symSize: 0x110 } - - { offsetInCU: 0x11E3F, offset: 0x7B78C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x17098, symBinAddr: 0x3848C, symSize: 0xFC } - - { offsetInCU: 0x11F40, offset: 0x7B88D, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17A78, symBinAddr: 0x38E30, symSize: 0x1BC } - - { offsetInCU: 0x1200E, offset: 0x7B95B, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18154, symBinAddr: 0x3950C, symSize: 0x1CC } - - { offsetInCU: 0x122D1, offset: 0x7BC1E, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A434, symBinAddr: 0x3B7EC, symSize: 0x1DC } - - { offsetInCU: 0x123BD, offset: 0x7BD0A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A610, symBinAddr: 0x3B9C8, symSize: 0x11C } - - { offsetInCU: 0x12504, offset: 0x7BE51, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1A72C, symBinAddr: 0x3BAE4, symSize: 0xFC } - - { offsetInCU: 0x1264B, offset: 0x7BF98, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1A828, symBinAddr: 0x3BBE0, symSize: 0xE4 } - - { offsetInCU: 0x12786, offset: 0x7C0D3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1A90C, symBinAddr: 0x3BCC4, symSize: 0x114 } - - { offsetInCU: 0x128C7, offset: 0x7C214, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AA20, symBinAddr: 0x3BDD8, symSize: 0xEC } - - { offsetInCU: 0x12A0E, offset: 0x7C35B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1ABF4, symBinAddr: 0x3BFAC, symSize: 0xE4 } - - { offsetInCU: 0x12B6D, offset: 0x7C4BA, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CA64, symBinAddr: 0x3D518, symSize: 0xC4 } - - { offsetInCU: 0x12E13, offset: 0x7C760, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x707C, symBinAddr: 0x28504, symSize: 0x15C } - - { offsetInCU: 0x27, offset: 0x7CD0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3DB94, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7CD26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3DB94, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7CD3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3DBC4, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7CD4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3DCB0, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7CD62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3DF28, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7CD76, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3E344, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7CD8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3E34C, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7CD9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3E594, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7CDB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3E5DC, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7CDC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x3E698, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7D0F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x3EB54, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7D1A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x3ED58, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D62F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x3F968, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D84F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x3FEA8, symSize: 0x920 } - - { offsetInCU: 0xD3E, offset: 0x7DBE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x2154, symBinAddr: 0x407F4, symSize: 0x20FC } - - { offsetInCU: 0x202F, offset: 0x7EED6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xDDC0, symBinAddr: 0x4C460, symSize: 0x6B8 } - - { offsetInCU: 0x23FC, offset: 0x7F2A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4250, symBinAddr: 0x428F0, symSize: 0x1190 } - - { offsetInCU: 0x2F50, offset: 0x7FDF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x53E0, symBinAddr: 0x43A80, symSize: 0xB94 } - - { offsetInCU: 0x377E, offset: 0x80625, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x5F74, symBinAddr: 0x44614, symSize: 0x3DC } - - { offsetInCU: 0x3895, offset: 0x8073C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6BD4, symBinAddr: 0x45274, symSize: 0x1EC } - - { offsetInCU: 0x3B41, offset: 0x809E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x6DC0, symBinAddr: 0x45460, symSize: 0x914 } - - { offsetInCU: 0x42D4, offset: 0x8117B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x76D4, symBinAddr: 0x45D74, symSize: 0x2A8 } - - { offsetInCU: 0x440C, offset: 0x812B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x797C, symBinAddr: 0x4601C, symSize: 0x628 } - - { offsetInCU: 0x47FD, offset: 0x816A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x7FA4, symBinAddr: 0x46644, symSize: 0x658 } - - { offsetInCU: 0x4ABF, offset: 0x81966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x85FC, symBinAddr: 0x46C9C, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x81A24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x882C, symBinAddr: 0x46ECC, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x81AA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x8A58, symBinAddr: 0x470F8, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x81AD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x8AD8, symBinAddr: 0x47178, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81B10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xCA08, symBinAddr: 0x4B0A8, symSize: 0x780 } - - { offsetInCU: 0x4FB4, offset: 0x81E5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD188, symBinAddr: 0x4B828, symSize: 0x9BC } - - { offsetInCU: 0x52A3, offset: 0x8214A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xDB44, symBinAddr: 0x4C1E4, symSize: 0x218 } - - { offsetInCU: 0x5378, offset: 0x8221F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xE478, symBinAddr: 0x4CB18, symSize: 0x81C } - - { offsetInCU: 0x5683, offset: 0x8252A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xEC94, symBinAddr: 0x4D334, symSize: 0xBA8 } - - { offsetInCU: 0x5972, offset: 0x82819, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xF83C, symBinAddr: 0x4DEDC, symSize: 0x278 } - - { offsetInCU: 0x5A47, offset: 0x828EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0xFAB4, symBinAddr: 0x4E154, symSize: 0x214 } - - { offsetInCU: 0x5F3D, offset: 0x82DE4, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2128, symBinAddr: 0x407C8, symSize: 0x2C } - - { offsetInCU: 0x623B, offset: 0x830E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x8AF4, symBinAddr: 0x47194, symSize: 0x20 } - - { offsetInCU: 0x6294, offset: 0x8313B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8B14, symBinAddr: 0x471B4, symSize: 0x8C } - - { offsetInCU: 0x632C, offset: 0x831D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x8BA0, symBinAddr: 0x47240, symSize: 0xC04 } - - { offsetInCU: 0x683E, offset: 0x836E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x97A4, symBinAddr: 0x47E44, symSize: 0x40 } - - { offsetInCU: 0x6882, offset: 0x83729, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0x97E4, symBinAddr: 0x47E84, symSize: 0x58 } - - { offsetInCU: 0x68AD, offset: 0x83754, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0x983C, symBinAddr: 0x47EDC, symSize: 0x54 } - - { offsetInCU: 0x68EF, offset: 0x83796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9890, symBinAddr: 0x47F30, symSize: 0x64 } - - { offsetInCU: 0x6922, offset: 0x837C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x98F4, symBinAddr: 0x47F94, symSize: 0x4 } - - { offsetInCU: 0x694D, offset: 0x837F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x98F8, symBinAddr: 0x47F98, symSize: 0x78 } - - { offsetInCU: 0x698F, offset: 0x83836, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9970, symBinAddr: 0x48010, symSize: 0x90 } - - { offsetInCU: 0x69D1, offset: 0x83878, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x9A00, symBinAddr: 0x480A0, symSize: 0x6C } - - { offsetInCU: 0x6A04, offset: 0x838AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x9A6C, symBinAddr: 0x4810C, symSize: 0x4 } - - { offsetInCU: 0x6A20, offset: 0x838C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x9A70, symBinAddr: 0x48110, symSize: 0x4 } - - { offsetInCU: 0x6A4B, offset: 0x838F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0x9A74, symBinAddr: 0x48114, symSize: 0x74 } - - { offsetInCU: 0x6A7E, offset: 0x83925, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0x9AE8, symBinAddr: 0x48188, symSize: 0x4 } - - { offsetInCU: 0x6A9D, offset: 0x83944, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9AEC, symBinAddr: 0x4818C, symSize: 0x8 } - - { offsetInCU: 0x6AB9, offset: 0x83960, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9AEC, symBinAddr: 0x4818C, symSize: 0x8 } - - { offsetInCU: 0x6ACA, offset: 0x83971, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0x9AF4, symBinAddr: 0x48194, symSize: 0xC8 } - - { offsetInCU: 0x6B67, offset: 0x83A0E, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0x9BBC, symBinAddr: 0x4825C, symSize: 0xCC } - - { offsetInCU: 0x6C13, offset: 0x83ABA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0x9D84, symBinAddr: 0x48424, symSize: 0x1F4 } - - { offsetInCU: 0x6C9F, offset: 0x83B46, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x9F78, symBinAddr: 0x48618, symSize: 0x1C4 } - - { offsetInCU: 0x6D57, offset: 0x83BFE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA13C, symBinAddr: 0x487DC, symSize: 0x3A0 } - - { offsetInCU: 0x6E77, offset: 0x83D1E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xA4DC, symBinAddr: 0x48B7C, symSize: 0x398 } - - { offsetInCU: 0x6F8E, offset: 0x83E35, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xA874, symBinAddr: 0x48F14, symSize: 0x1E4 } - - { offsetInCU: 0x701F, offset: 0x83EC6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xAA58, symBinAddr: 0x490F8, symSize: 0x204 } - - { offsetInCU: 0x70A5, offset: 0x83F4C, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xAC5C, symBinAddr: 0x492FC, symSize: 0x4C } - - { offsetInCU: 0x7162, offset: 0x84009, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xACA8, symBinAddr: 0x49348, symSize: 0x90 } - - { offsetInCU: 0x71FD, offset: 0x840A4, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xAD38, symBinAddr: 0x493D8, symSize: 0x40 } - - { offsetInCU: 0x723A, offset: 0x840E1, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xAD78, symBinAddr: 0x49418, symSize: 0x18 } - - { offsetInCU: 0x728C, offset: 0x84133, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xAD90, symBinAddr: 0x49430, symSize: 0x3C } - - { offsetInCU: 0x72B5, offset: 0x8415C, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xADCC, symBinAddr: 0x4946C, symSize: 0x1C } - - { offsetInCU: 0x7385, offset: 0x8422C, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xADE8, symBinAddr: 0x49488, symSize: 0xE0 } - - { offsetInCU: 0x74A8, offset: 0x8434F, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xAFAC, symBinAddr: 0x4964C, symSize: 0x294 } - - { offsetInCU: 0x751F, offset: 0x843C6, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xB4DC, symBinAddr: 0x49B7C, symSize: 0x8C } - - { offsetInCU: 0x7537, offset: 0x843DE, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xB568, symBinAddr: 0x49C08, symSize: 0x4C } - - { offsetInCU: 0x758C, offset: 0x84433, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xB5B4, symBinAddr: 0x49C54, symSize: 0x154 } - - { offsetInCU: 0x75FA, offset: 0x844A1, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xB708, symBinAddr: 0x49DA8, symSize: 0xF0 } - - { offsetInCU: 0x761F, offset: 0x844C6, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xB7F8, symBinAddr: 0x49E98, symSize: 0x214 } - - { offsetInCU: 0x7658, offset: 0x844FF, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xBA0C, symBinAddr: 0x4A0AC, symSize: 0x78 } - - { offsetInCU: 0x7670, offset: 0x84517, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xBA84, symBinAddr: 0x4A124, symSize: 0x1C } - - { offsetInCU: 0x7688, offset: 0x8452F, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBAA0, symBinAddr: 0x4A140, symSize: 0x1C } - - { offsetInCU: 0x76A0, offset: 0x84547, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBABC, symBinAddr: 0x4A15C, symSize: 0x1C } - - { offsetInCU: 0x7705, offset: 0x845AC, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xBAD8, symBinAddr: 0x4A178, symSize: 0x104 } - - { offsetInCU: 0x7868, offset: 0x8470F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBBDC, symBinAddr: 0x4A27C, symSize: 0x174 } - - { offsetInCU: 0x79D8, offset: 0x8487F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBD50, symBinAddr: 0x4A3F0, symSize: 0x124 } - - { offsetInCU: 0x7AD8, offset: 0x8497F, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xBE74, symBinAddr: 0x4A514, symSize: 0x120 } - - { offsetInCU: 0x7D24, offset: 0x84BCB, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xBF94, symBinAddr: 0x4A634, symSize: 0x36C } - - { offsetInCU: 0x8312, offset: 0x851B9, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC300, symBinAddr: 0x4A9A0, symSize: 0x290 } - - { offsetInCU: 0x84FF, offset: 0x853A6, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC590, symBinAddr: 0x4AC30, symSize: 0x150 } - - { offsetInCU: 0x8665, offset: 0x8550C, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xC6E0, symBinAddr: 0x4AD80, symSize: 0x218 } - - { offsetInCU: 0x86B1, offset: 0x85558, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xC8F8, symBinAddr: 0x4AF98, symSize: 0x14 } - - { offsetInCU: 0x86EA, offset: 0x85591, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xC90C, symBinAddr: 0x4AFAC, symSize: 0xFC } - - { offsetInCU: 0x87A8, offset: 0x8564F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xDD5C, symBinAddr: 0x4C3FC, symSize: 0x64 } - - { offsetInCU: 0x8854, offset: 0x856FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0xFCC8, symBinAddr: 0x4E368, symSize: 0xA78 } - - { offsetInCU: 0x8E22, offset: 0x85CC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10740, symBinAddr: 0x4EDE0, symSize: 0x104 } - - { offsetInCU: 0x8F8E, offset: 0x85E35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10844, symBinAddr: 0x4EEE4, symSize: 0x2D5C } - - { offsetInCU: 0x9654, offset: 0x864FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x135A0, symBinAddr: 0x51C40, symSize: 0x120 } - - { offsetInCU: 0x9765, offset: 0x8660C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x136C0, symBinAddr: 0x51D60, symSize: 0x80 } - - { offsetInCU: 0x97E8, offset: 0x8668F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13740, symBinAddr: 0x51DE0, symSize: 0x654 } - - { offsetInCU: 0x9B84, offset: 0x86A2B, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x13DF4, symBinAddr: 0x52434, symSize: 0x10 } - - { offsetInCU: 0x9B98, offset: 0x86A3F, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x13E04, symBinAddr: 0x52444, symSize: 0x10 } - - { offsetInCU: 0x9BAC, offset: 0x86A53, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x13E58, symBinAddr: 0x52454, symSize: 0x48 } - - { offsetInCU: 0x9BC0, offset: 0x86A67, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x13F08, symBinAddr: 0x5249C, symSize: 0x3C } - - { offsetInCU: 0x9BD4, offset: 0x86A7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x13F44, symBinAddr: 0x524D8, symSize: 0x44 } - - { offsetInCU: 0x9BE8, offset: 0x86A8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOf', symObjAddr: 0x13F88, symBinAddr: 0x5251C, symSize: 0x48 } - - { offsetInCU: 0x9BFC, offset: 0x86AA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x14048, symBinAddr: 0x525A0, symSize: 0x8 } - - { offsetInCU: 0x9C10, offset: 0x86AB7, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14050, symBinAddr: 0x525A8, symSize: 0x10 } - - { offsetInCU: 0x9C24, offset: 0x86ACB, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14060, symBinAddr: 0x525B8, symSize: 0x8 } - - { offsetInCU: 0x9C38, offset: 0x86ADF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x140E8, symBinAddr: 0x525FC, symSize: 0x30 } - - { offsetInCU: 0x9C90, offset: 0x86B37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x141A8, symBinAddr: 0x526BC, symSize: 0x24 } - - { offsetInCU: 0x9CCC, offset: 0x86B73, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14214, symBinAddr: 0x526E0, symSize: 0x44 } - - { offsetInCU: 0x9CFB, offset: 0x86BA2, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x3E6A8, symSize: 0x12C } - - { offsetInCU: 0x9D31, offset: 0x86BD8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x3E7D4, symSize: 0x58 } - - { offsetInCU: 0x9E11, offset: 0x86CB8, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x3E82C, symSize: 0x90 } - - { offsetInCU: 0x9E3A, offset: 0x86CE1, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x3E8BC, symSize: 0xA0 } - - { offsetInCU: 0x9F66, offset: 0x86E0D, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x3E95C, symSize: 0x9C } - - { offsetInCU: 0xA075, offset: 0x86F1C, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x3E9F8, symSize: 0x74 } - - { offsetInCU: 0xA0FA, offset: 0x86FA1, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x3EA6C, symSize: 0x4 } - - { offsetInCU: 0xA11C, offset: 0x86FC3, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x3EA70, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x879BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x527E8, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x879EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x53658, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x87A15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE78, symBinAddr: 0x53660, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x87A46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE9C, symBinAddr: 0x53684, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x87A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEA8, symBinAddr: 0x53690, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x87A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5B80, symBinAddr: 0x582D8, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87AC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x52808, symSize: 0x17C } - - { offsetInCU: 0x1BC, offset: 0x87B19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF04, symBinAddr: 0x536EC, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x87B50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF54, symBinAddr: 0x5373C, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x87B73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CAC, symBinAddr: 0x58404, symSize: 0x132C } - - { offsetInCU: 0x267, offset: 0x87BC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x19C, symBinAddr: 0x52984, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x87C13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xFA4, symBinAddr: 0x5378C, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x87C79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xFBC, symBinAddr: 0x537A4, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFE8, symBinAddr: 0x537D0, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87D1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xFF0, symBinAddr: 0x537D8, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x87D4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1014, symBinAddr: 0x537FC, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x87D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1020, symBinAddr: 0x53808, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x87D87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7ABC, symBinAddr: 0x597FC, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x87DCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BC, symBinAddr: 0x529A4, symSize: 0x264 } - - { offsetInCU: 0x4C5, offset: 0x87E22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x107C, symBinAddr: 0x53864, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x87E59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10CC, symBinAddr: 0x538B4, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x87E7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C98, symBinAddr: 0x599D8, symSize: 0xF38 } - - { offsetInCU: 0x569, offset: 0x87EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x420, symBinAddr: 0x52C08, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x87EFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x52C28, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x87F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x52C28, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x87F81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1140, symBinAddr: 0x53928, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x87FE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x11A4, symBinAddr: 0x5398C, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x88003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x11CC, symBinAddr: 0x539B4, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x88039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11D4, symBinAddr: 0x539BC, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x880BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x123C, symBinAddr: 0x53A24, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x880DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1248, symBinAddr: 0x53A30, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x880F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x460, symBinAddr: 0x52C48, symSize: 0x190 } - - { offsetInCU: 0x7EF, offset: 0x8814C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x12A4, symBinAddr: 0x53A8C, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x88183, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12EC, symBinAddr: 0x53AD4, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x881A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DAC, symBinAddr: 0x5AAEC, symSize: 0x220 } - - { offsetInCU: 0x899, offset: 0x881F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x5F0, symBinAddr: 0x52DD8, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x88221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x132C, symBinAddr: 0x53B14, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x8824C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1334, symBinAddr: 0x53B1C, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x8827D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1358, symBinAddr: 0x53B40, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x88299, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1364, symBinAddr: 0x53B4C, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x882B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8FCC, symBinAddr: 0x5AD0C, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x882FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x610, symBinAddr: 0x52DF8, symSize: 0x268 } - - { offsetInCU: 0x9F3, offset: 0x88350, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13C0, symBinAddr: 0x53BA8, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x88387, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1420, symBinAddr: 0x53C08, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x883AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9278, symBinAddr: 0x5AFB8, symSize: 0x538 } - - { offsetInCU: 0xA9D, offset: 0x883FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x878, symBinAddr: 0x53060, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x88445, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1478, symBinAddr: 0x53C60, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x884D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x53C78, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x885B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D4, symBinAddr: 0x53CBC, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x8862B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x153C, symBinAddr: 0x53D24, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x88656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1544, symBinAddr: 0x53D2C, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x88687, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1568, symBinAddr: 0x53D50, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x886A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x53D5C, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x886BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x97B0, symBinAddr: 0x5B4F0, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x88705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x898, symBinAddr: 0x53080, symSize: 0x118 } - - { offsetInCU: 0xDFD, offset: 0x8875A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15D0, symBinAddr: 0x53DB8, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x88791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15FC, symBinAddr: 0x53DE4, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x887B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9864, symBinAddr: 0x5B5A4, symSize: 0x1A0 } - - { offsetInCU: 0xEA8, offset: 0x88805, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x9B0, symBinAddr: 0x53198, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x88830, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x169C, symBinAddr: 0x53E84, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x8885B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16A4, symBinAddr: 0x53E8C, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x8888C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16C8, symBinAddr: 0x53EB0, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x888A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16D4, symBinAddr: 0x53EBC, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x888C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9A04, symBinAddr: 0x5B744, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x8890A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9D0, symBinAddr: 0x531B8, symSize: 0x214 } - - { offsetInCU: 0x1002, offset: 0x8895F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1730, symBinAddr: 0x53F18, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x88996, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x53F88, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x889B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9C38, symBinAddr: 0x5B978, symSize: 0x8C8 } - - { offsetInCU: 0x10A6, offset: 0x88A03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBE4, symBinAddr: 0x533CC, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x88A3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x533EC, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x88A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x533EC, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88AB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x198C, symBinAddr: 0x54174, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x88AF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x19D0, symBinAddr: 0x541B8, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x88B0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0x541E0, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x88B43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A00, symBinAddr: 0x541E8, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x88BA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1A3C, symBinAddr: 0x54224, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88BC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A48, symBinAddr: 0x54230, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x88BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA5CC, symBinAddr: 0x5C30C, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x88C0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC24, symBinAddr: 0x5340C, symSize: 0x244 } - - { offsetInCU: 0x1304, offset: 0x88C61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA4, symBinAddr: 0x5428C, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x88C98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AFC, symBinAddr: 0x542E4, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x88CBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA61C, symBinAddr: 0x5C35C, symSize: 0x760 } - - { offsetInCU: 0x13D3, offset: 0x88D30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1B4C, symBinAddr: 0x54334, symSize: 0x1B8 } - - { offsetInCU: 0x142F, offset: 0x88D8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x1D04, symBinAddr: 0x544EC, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x88DD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5948, symBinAddr: 0x58124, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x88E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x599C, symBinAddr: 0x58178, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x88E91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A1C, symBinAddr: 0x581F8, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x88EC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5A24, symBinAddr: 0x58200, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x88F47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5A84, symBinAddr: 0x58260, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x88F64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x1D14, symBinAddr: 0x544FC, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x88F78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x1D34, symBinAddr: 0x5451C, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x88F8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x1E28, symBinAddr: 0x54610, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x88FA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x21AC, symBinAddr: 0x54994, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x88FBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x2E04, symBinAddr: 0x555EC, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x88FE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x2E34, symBinAddr: 0x5561C, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x88FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x2E60, symBinAddr: 0x55648, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x8900C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x2E8C, symBinAddr: 0x55674, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x89020, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x2EB8, symBinAddr: 0x556A0, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x89034, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2EE4, symBinAddr: 0x556CC, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x89048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x2EEC, symBinAddr: 0x556D4, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x8905C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x32AC, symBinAddr: 0x55A94, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x89070, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3308, symBinAddr: 0x55AF0, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x89084, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x33F4, symBinAddr: 0x55BDC, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x89098, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3404, symBinAddr: 0x55BEC, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x890AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x3434, symBinAddr: 0x55C1C, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x890C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x3514, symBinAddr: 0x55CFC, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x890D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x384C, symBinAddr: 0x56034, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x890E8, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x40B0, symBinAddr: 0x56898, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x890FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x40B8, symBinAddr: 0x568A0, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x89110, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x441C, symBinAddr: 0x56C04, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x89124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x4478, symBinAddr: 0x56C60, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x89138, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x455C, symBinAddr: 0x56D44, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x8914C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x456C, symBinAddr: 0x56D54, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x89160, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x4610, symBinAddr: 0x56DF8, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x89174, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x479C, symBinAddr: 0x56F84, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x89188, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4B44, symBinAddr: 0x5732C, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x8919C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4B88, symBinAddr: 0x57370, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x891B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x4D04, symBinAddr: 0x574EC, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x891C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x4D60, symBinAddr: 0x57548, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x891D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x4DF4, symBinAddr: 0x575DC, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x891EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x4E04, symBinAddr: 0x575EC, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x89200, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x4E6C, symBinAddr: 0x57654, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x89214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x4F48, symBinAddr: 0x57730, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x89228, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x50B4, symBinAddr: 0x5789C, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x8923C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x50E0, symBinAddr: 0x578C8, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x89250, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x51A4, symBinAddr: 0x5798C, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x89264, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x5200, symBinAddr: 0x579E8, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x89278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x527C, symBinAddr: 0x57A64, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x8928C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x528C, symBinAddr: 0x57A74, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x892A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x52D4, symBinAddr: 0x57ABC, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x892B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x53B8, symBinAddr: 0x57BA0, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x892C8, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5550, symBinAddr: 0x57D38, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x892DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x5584, symBinAddr: 0x57D6C, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x892F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5680, symBinAddr: 0x57E68, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x89304, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x56DC, symBinAddr: 0x57EC4, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x89318, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x5758, symBinAddr: 0x57F40, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x8932C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x5768, symBinAddr: 0x57F50, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x89340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5790, symBinAddr: 0x57F78, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x89354, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x57CC, symBinAddr: 0x57FB4, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x89368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x5844, symBinAddr: 0x58020, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x8937C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5888, symBinAddr: 0x58064, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x89390, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x58E4, symBinAddr: 0x580C0, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x893A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x5938, symBinAddr: 0x58114, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x893B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5A8C, symBinAddr: 0x58268, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x893CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5A90, symBinAddr: 0x5826C, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x893E0, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5B58, symBinAddr: 0x582B0, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x893F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x6FD8, symBinAddr: 0x59730, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x89408, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x701C, symBinAddr: 0x59774, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x8941C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7A78, symBinAddr: 0x597B8, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x89430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x5A910, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x89444, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x8C14, symBinAddr: 0x5A954, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x89458, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x8C58, symBinAddr: 0x5A998, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x8946C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x8C9C, symBinAddr: 0x5A9DC, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x89480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x8CE0, symBinAddr: 0x5AA20, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x89494, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x8D24, symBinAddr: 0x5AA64, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x894A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x8D68, symBinAddr: 0x5AAA8, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x894BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA500, symBinAddr: 0x5C240, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x894D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xA544, symBinAddr: 0x5C284, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x894E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xA588, symBinAddr: 0x5C2C8, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x894F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xAD7C, symBinAddr: 0x5CABC, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x8950C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xADC0, symBinAddr: 0x5CB00, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x89520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xAE04, symBinAddr: 0x5CB44, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x89534, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xAE8C, symBinAddr: 0x5CBCC, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x89548, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xAED0, symBinAddr: 0x5CC10, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x8955C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xAF24, symBinAddr: 0x5CC54, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x89570, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xAFB4, symBinAddr: 0x5CCE4, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x89584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB070, symBinAddr: 0x5CDA0, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x89598, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB078, symBinAddr: 0x5CDA8, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x895AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB07C, symBinAddr: 0x5CDAC, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x895C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB088, symBinAddr: 0x5CDB8, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x895D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB098, symBinAddr: 0x5CDC8, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x895E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB128, symBinAddr: 0x5CE58, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x895FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB1E4, symBinAddr: 0x5CF14, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x89610, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB1E8, symBinAddr: 0x5CF18, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x89624, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB1F8, symBinAddr: 0x5CF28, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x89638, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB288, symBinAddr: 0x5CFB8, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x8964C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB344, symBinAddr: 0x5D074, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x89660, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB348, symBinAddr: 0x5D078, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x89674, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB358, symBinAddr: 0x5D088, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x89688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB3E8, symBinAddr: 0x5D118, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x8969C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB4A4, symBinAddr: 0x5D1D4, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x896B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB4A8, symBinAddr: 0x5D1D8, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x896C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB4B8, symBinAddr: 0x5D1E8, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x896D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB548, symBinAddr: 0x5D278, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x896EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB604, symBinAddr: 0x5D334, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x89700, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB60C, symBinAddr: 0x5D33C, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x89714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB610, symBinAddr: 0x5D340, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x89728, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB618, symBinAddr: 0x5D348, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x8973C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB628, symBinAddr: 0x5D358, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x89750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB6B8, symBinAddr: 0x5D3E8, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x89764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB774, symBinAddr: 0x5D4A4, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x89778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB778, symBinAddr: 0x5D4A8, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x8978C, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB788, symBinAddr: 0x5D4B8, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x897A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xB7AC, symBinAddr: 0x5D4DC, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x897B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xB7CC, symBinAddr: 0x5D4FC, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x897C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xB80C, symBinAddr: 0x5D53C, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x897DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB81C, symBinAddr: 0x5D54C, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x897F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB820, symBinAddr: 0x5D550, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x89804, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB864, symBinAddr: 0x5D594, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x89818, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB868, symBinAddr: 0x5D598, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x8982C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB8AC, symBinAddr: 0x5D5DC, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x89840, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB8B0, symBinAddr: 0x5D5E0, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x89854, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB8F4, symBinAddr: 0x5D624, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x89868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB8F8, symBinAddr: 0x5D628, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x8987C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB93C, symBinAddr: 0x5D66C, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB940, symBinAddr: 0x5D670, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x898A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB984, symBinAddr: 0x5D6B4, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x898B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB988, symBinAddr: 0x5D6B8, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x898CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xB9CC, symBinAddr: 0x5D6FC, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x898E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xB9D0, symBinAddr: 0x5D700, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x898F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBA14, symBinAddr: 0x5D744, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x89908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBA18, symBinAddr: 0x5D748, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x8991C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBA5C, symBinAddr: 0x5D78C, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x89930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBA60, symBinAddr: 0x5D790, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x89944, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBAA4, symBinAddr: 0x5D7D4, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x89958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBAA8, symBinAddr: 0x5D7D8, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x8996C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBAEC, symBinAddr: 0x5D81C, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x89980, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAF0, symBinAddr: 0x5D820, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89994, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB34, symBinAddr: 0x5D864, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x899A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBB38, symBinAddr: 0x5D868, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x899BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB7C, symBinAddr: 0x5D8AC, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x899D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB80, symBinAddr: 0x5D8B0, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x899E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBBC4, symBinAddr: 0x5D8F4, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x899F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBBC8, symBinAddr: 0x5D8F8, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x89A0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC0C, symBinAddr: 0x5D93C, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x89A20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC10, symBinAddr: 0x5D940, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x89A34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC54, symBinAddr: 0x5D984, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x89A48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBC58, symBinAddr: 0x5D988, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x89A5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC9C, symBinAddr: 0x5D9CC, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x89A70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBCA0, symBinAddr: 0x5D9D0, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x89A84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCE4, symBinAddr: 0x5DA14, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x89A98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCE8, symBinAddr: 0x5DA18, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x89AAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xBD2C, symBinAddr: 0x5DA5C, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89AC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xBD70, symBinAddr: 0x5DAA0, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89AD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xBE00, symBinAddr: 0x5DB30, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x89AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xBEBC, symBinAddr: 0x5DBEC, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x89AFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xBEC0, symBinAddr: 0x5DBF0, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x89B10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBED0, symBinAddr: 0x5DC00, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x89B24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBED4, symBinAddr: 0x5DC04, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x89B38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF18, symBinAddr: 0x5DC48, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x89B4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF1C, symBinAddr: 0x5DC4C, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x89B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF60, symBinAddr: 0x5DC90, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x89B74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBF64, symBinAddr: 0x5DC94, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89BA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xEB4, symBinAddr: 0x5369C, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEDC, symBinAddr: 0x536C4, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x89BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x102C, symBinAddr: 0x53814, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x89BFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1054, symBinAddr: 0x5383C, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x89C18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x111C, symBinAddr: 0x53904, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x89C34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1128, symBinAddr: 0x53910, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x89C50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1130, symBinAddr: 0x53918, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x89C6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1138, symBinAddr: 0x53920, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89C8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1254, symBinAddr: 0x53A3C, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x89CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x127C, symBinAddr: 0x53A64, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x89CCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x53B58, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x89CE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1398, symBinAddr: 0x53B80, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x89D31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14FC, symBinAddr: 0x53CE4, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x89DD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1580, symBinAddr: 0x53D68, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x89DEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15A8, symBinAddr: 0x53D90, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x89E11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x53EC8, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x89E2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1708, symBinAddr: 0x53EF0, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x89E67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1808, symBinAddr: 0x53FF0, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x89F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1890, symBinAddr: 0x54078, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x89F94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x18F0, symBinAddr: 0x540D8, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x89FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1930, symBinAddr: 0x54118, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x8A048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x5423C, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x8A064, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A7C, symBinAddr: 0x54264, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x8A09B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5A48, symBinAddr: 0x58224, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x8A2A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DD40, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8A2C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DD40, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x8A2E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5DD48, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x8A322, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5DD50, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8A340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5DD60, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x8A36B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5DD64, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x8A389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5DD6C, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x8A3C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5DD74, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x8A3F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5DD84, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x8A41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5DD88, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x8A43C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5DD90, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x8A476, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5DD98, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A4A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5DDA8, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A4D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5DDAC, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A4E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5DE00, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A4F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5DE44, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DE54, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DE54, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A6A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5DE78, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8A7BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DE98, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8A7FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DE98, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8A849, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5DEBC, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8A966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DEDC, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8A9A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DEDC, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8A9F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5DF3C, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8AA0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5DF44, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8AA1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5DF80, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8AB37, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DFF8, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8ABF4, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DFF8, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8ADED, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5E360, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8AF9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E3A8, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8AFDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E3A8, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8B02B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5E3CC, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8B16C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5E3EC, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8B197, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5E480, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8B1DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x5EDB8, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8B24A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA70, symBinAddr: 0x5EE1C, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8B266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA7C, symBinAddr: 0x5EE28, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8B294, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA0, symBinAddr: 0x5EE4C, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8B326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5E458, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8B351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF0, symBinAddr: 0x5EE9C, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8B37C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB94, symBinAddr: 0x5EF40, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8B398, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xBA0, symBinAddr: 0x5EF4C, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B659, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x5ECEC, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B6D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x5EF70, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8B928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC0, symBinAddr: 0x5F36C, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8BAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x10FC, symBinAddr: 0x5F4A8, symSize: 0xA58 } - - { offsetInCU: 0xF95, offset: 0x8C0B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B54, symBinAddr: 0x5FF00, symSize: 0x654 } - - { offsetInCU: 0x1345, offset: 0x8C462, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x21A8, symBinAddr: 0x60554, symSize: 0x470 } - - { offsetInCU: 0x14E4, offset: 0x8C601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2618, symBinAddr: 0x609C4, symSize: 0x618 } - - { offsetInCU: 0x1A13, offset: 0x8CB30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2C30, symBinAddr: 0x60FDC, symSize: 0x150 } - - { offsetInCU: 0x1B2D, offset: 0x8CC4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2D80, symBinAddr: 0x6112C, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8CC8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3330, symBinAddr: 0x61680, symSize: 0x204 } - - { offsetInCU: 0x1C21, offset: 0x8CD3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3534, symBinAddr: 0x61884, symSize: 0x23C } - - { offsetInCU: 0x1C86, offset: 0x8CDA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3770, symBinAddr: 0x61AC0, symSize: 0x238 } - - { offsetInCU: 0x1DAE, offset: 0x8CECB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39EC, symBinAddr: 0x61CF8, symSize: 0x29C } - - { offsetInCU: 0x1EED, offset: 0x8D00A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3C88, symBinAddr: 0x61F94, symSize: 0x188 } - - { offsetInCU: 0x1F33, offset: 0x8D050, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E10, symBinAddr: 0x6211C, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8D3A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4284, symBinAddr: 0x62590, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D4A0, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2DFC, symBinAddr: 0x611A8, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D4E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2E00, symBinAddr: 0x611AC, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D4F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2E04, symBinAddr: 0x611B0, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D50A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2E48, symBinAddr: 0x611F4, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D51E, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2E4C, symBinAddr: 0x611F8, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D532, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x2EDC, symBinAddr: 0x61244, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D546, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x2EE0, symBinAddr: 0x61248, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D55A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x2F34, symBinAddr: 0x6128C, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D56E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x2FC4, symBinAddr: 0x6131C, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x3080, symBinAddr: 0x613D8, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D596, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x3088, symBinAddr: 0x613E0, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D5AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x308C, symBinAddr: 0x613E4, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D5BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3094, symBinAddr: 0x613EC, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D5D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x30A4, symBinAddr: 0x613FC, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D5E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3134, symBinAddr: 0x6148C, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D5FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x31F0, symBinAddr: 0x61548, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D60E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x31F8, symBinAddr: 0x61550, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D622, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x31FC, symBinAddr: 0x61554, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D636, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x3208, symBinAddr: 0x61560, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D64A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x3218, symBinAddr: 0x61570, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D65E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3240, symBinAddr: 0x61590, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D672, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x324C, symBinAddr: 0x6159C, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D686, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3250, symBinAddr: 0x615A0, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D69A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3294, symBinAddr: 0x615E4, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D6AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x32A0, symBinAddr: 0x615F0, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D6C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x32A4, symBinAddr: 0x615F4, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D6D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x32E8, symBinAddr: 0x61638, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D6F5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x32F4, symBinAddr: 0x61644, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D72D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3308, symBinAddr: 0x61658, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D765, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x331C, symBinAddr: 0x6166C, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8D7C9, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x439C, symBinAddr: 0x626A8, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8D7DD, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4440, symBinAddr: 0x626F0, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8D7F1, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x447C, symBinAddr: 0x6272C, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8D805, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x44D4, symBinAddr: 0x62774, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8D819, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x44DC, symBinAddr: 0x6277C, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8D82D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x44EC, symBinAddr: 0x6278C, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8D841, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x454C, symBinAddr: 0x62794, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8D855, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x4600, symBinAddr: 0x62848, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8D884, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8D89C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8D8B0, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8D8C4, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8D8D8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8D8EC, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x5E4A8, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8D96A, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x5E4CC, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8D9F9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x5E550, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8DA88, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x5E5D4, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8DB1F, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x5E660, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8DBF9, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x5E6C8, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8DCD3, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x5E730, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8DD48, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x5E79C, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8DDA5, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x5E7DC, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8DE02, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x5E81C, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8DE2B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x5E860, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8DE7E, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x5E8C8, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8DEFA, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x5E92C, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8DF8B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x5E990, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8E0F1, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8E111, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8E131, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8E145, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8E159, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8E16D, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8E216, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5EA9C, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8E2BD, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x5EB24, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8E360, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x5EBA4, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8E44C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8E46C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8E480, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E494, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E4A8, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E518, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA4C, symBinAddr: 0x5EDF8, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E534, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x5EE04, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x5EE0C, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA68, symBinAddr: 0x5EE14, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E57E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB70, symBinAddr: 0x5EF1C, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E59A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB7C, symBinAddr: 0x5EF28, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E5B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB84, symBinAddr: 0x5EF30, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E5CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x5EF38, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8EA7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x62864, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8EA91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x629EC, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8EAA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x62A90, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8EAB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x62BEC, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8EACD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x62DD4, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8EAE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x62EC0, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8EAF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x63048, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8EB09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x630E0, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8EB1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x63178, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8EB31, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x63200, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8EB45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x63254, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8EB59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x63374, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8EB6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x633F8, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8EB81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x634EC, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8EB95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x6364C, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8EBA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x63728, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8EBBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x63870, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8EBD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x63908, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8EBE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x639D4, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8EC17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x63A5C, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8EC66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x63FB4, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8ECCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A8, symBinAddr: 0x63FCC, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8ED46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D4, symBinAddr: 0x63FF8, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8ED71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17DC, symBinAddr: 0x64000, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8EDA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1800, symBinAddr: 0x64024, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8EDBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x180C, symBinAddr: 0x64030, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8EDDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E30, symBinAddr: 0x65558, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8EE20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x63A7C, symSize: 0x200 } - - { offsetInCU: 0x425, offset: 0x8EE5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1458, symBinAddr: 0x63C7C, symSize: 0x338 } - - { offsetInCU: 0x456, offset: 0x8EE90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1868, symBinAddr: 0x6408C, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8EEB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x187C, symBinAddr: 0x640A0, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8EF0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x640B4, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8EF36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A64, symBinAddr: 0x64288, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8EF61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A6C, symBinAddr: 0x64290, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8EF92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A90, symBinAddr: 0x642B4, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8EFAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A9C, symBinAddr: 0x642C0, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8EFCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FEC, symBinAddr: 0x65714, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8F010, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x640D4, symSize: 0x1AC } - - { offsetInCU: 0x62B, offset: 0x8F065, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AF8, symBinAddr: 0x6431C, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8F09C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B44, symBinAddr: 0x64368, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8F0BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3138, symBinAddr: 0x65860, symSize: 0x294 } - - { offsetInCU: 0x6D5, offset: 0x8F10F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1B84, symBinAddr: 0x643A8, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8F13A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2300, symBinAddr: 0x64B24, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8F165, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2308, symBinAddr: 0x64B2C, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8F196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x232C, symBinAddr: 0x64B50, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8F1B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2338, symBinAddr: 0x64B5C, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8F1CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33CC, symBinAddr: 0x65AF4, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8F214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BA4, symBinAddr: 0x643C8, symSize: 0x264 } - - { offsetInCU: 0x819, offset: 0x8F253, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E08, symBinAddr: 0x6462C, symSize: 0x474 } - - { offsetInCU: 0x84A, offset: 0x8F284, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2394, symBinAddr: 0x64BB8, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8F2A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A8, symBinAddr: 0x64BCC, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8F2CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x23E0, symBinAddr: 0x64BE0, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8F2DF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2444, symBinAddr: 0x64C24, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8F2F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x250C, symBinAddr: 0x64CA4, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8F307, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2594, symBinAddr: 0x64CE8, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8F31B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x26C0, symBinAddr: 0x64E14, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8F32F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2714, symBinAddr: 0x64E58, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8F343, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x27A4, symBinAddr: 0x64EE8, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8F357, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2860, symBinAddr: 0x64FA4, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8F36B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2868, symBinAddr: 0x64FAC, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8F37F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x286C, symBinAddr: 0x64FB0, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8F393, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2874, symBinAddr: 0x64FB8, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8F3A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2884, symBinAddr: 0x64FC8, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8F3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2914, symBinAddr: 0x65058, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8F3CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x29D0, symBinAddr: 0x65114, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8F3E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x29D4, symBinAddr: 0x65118, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8F3F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x29E4, symBinAddr: 0x65128, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8F40B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2A14, symBinAddr: 0x65158, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8F41F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2A44, symBinAddr: 0x65188, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8F433, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2AA0, symBinAddr: 0x651E4, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8F447, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2B50, symBinAddr: 0x65278, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8F45B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2BB4, symBinAddr: 0x652DC, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8F46F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2C10, symBinAddr: 0x65338, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8F483, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2C70, symBinAddr: 0x65398, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F497, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2C80, symBinAddr: 0x653A8, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F4AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2C84, symBinAddr: 0x653AC, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F4BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2CC8, symBinAddr: 0x653F0, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F4D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2CCC, symBinAddr: 0x653F4, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F4E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D10, symBinAddr: 0x65438, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F4FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D14, symBinAddr: 0x6543C, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F50F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2D58, symBinAddr: 0x65480, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F523, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2D5C, symBinAddr: 0x65484, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DA0, symBinAddr: 0x654C8, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F54B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA4, symBinAddr: 0x654CC, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F55F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE8, symBinAddr: 0x65510, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F573, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DEC, symBinAddr: 0x65514, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x36A4, symBinAddr: 0x65DCC, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F5A6, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x36E8, symBinAddr: 0x65E10, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F5BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x37B4, symBinAddr: 0x65EDC, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F5CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3844, symBinAddr: 0x65F6C, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F5E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3900, symBinAddr: 0x66028, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F5F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3904, symBinAddr: 0x6602C, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F60A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3914, symBinAddr: 0x6603C, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F61E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3918, symBinAddr: 0x66040, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x395C, symBinAddr: 0x66084, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3960, symBinAddr: 0x66088, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F65A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39A4, symBinAddr: 0x660CC, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F66E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39A8, symBinAddr: 0x660D0, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F69C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1818, symBinAddr: 0x6403C, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F6B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x64064, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F6DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AA8, symBinAddr: 0x642CC, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F6F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x642F4, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2344, symBinAddr: 0x64B68, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F734, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x236C, symBinAddr: 0x64B90, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8F886, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6613C, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8F8AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6613C, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8F8C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x66168, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8F907, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x6619C, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8F925, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x661AC, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8F950, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x661B0, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8F96E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x661DC, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8F9AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x66210, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8F9DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x66220, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8FA07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x66224, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8FA1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x66254, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8FA2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6627C, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8FA43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x662B8, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8FA57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x66324, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8FA6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x66368, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8FA7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x663B0, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8FA93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x663F0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8FBD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x66400, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8FBFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8languageSSvpZ', symObjAddr: 0x8D10, symBinAddr: 0x853D8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8FC17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7versionSSvpZ', symObjAddr: 0x8D20, symBinAddr: 0x853E8, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8FC31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8D30, symBinAddr: 0x853F8, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8FC4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8D40, symBinAddr: 0x85408, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8FC65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8D50, symBinAddr: 0x85418, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8FC7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8D60, symBinAddr: 0x85428, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8FC99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x8D70, symBinAddr: 0x85438, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8FCB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x8D80, symBinAddr: 0x85448, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x8D90, symBinAddr: 0x85458, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8FCE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x8DA0, symBinAddr: 0x85468, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8FD01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x8DB0, symBinAddr: 0x85478, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8FD1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x8DC0, symBinAddr: 0x85488, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8FD35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x8DD0, symBinAddr: 0x85498, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8FD4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x8DE0, symBinAddr: 0x854A8, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8FD69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x8DF0, symBinAddr: 0x854B8, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8FD83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x8E00, symBinAddr: 0x854C8, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8FD9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x8E10, symBinAddr: 0x854D8, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x8FDB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x8E20, symBinAddr: 0x854E8, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x8FDD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x8E30, symBinAddr: 0x854F8, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x8FDEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x8E40, symBinAddr: 0x85508, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x8FE05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x8E50, symBinAddr: 0x85518, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x8FE1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x8E60, symBinAddr: 0x85528, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x8FE39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x8E70, symBinAddr: 0x85538, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x8FE53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x8E80, symBinAddr: 0x85548, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x8FE6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x8E90, symBinAddr: 0x85558, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x8FE87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x8EA0, symBinAddr: 0x85568, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x8FEA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x8EB0, symBinAddr: 0x85578, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x8FEBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x8EC0, symBinAddr: 0x85588, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x8FED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x8ED0, symBinAddr: 0x85598, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x8FEEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKeySSvpZ', symObjAddr: 0x8EE0, symBinAddr: 0x855A8, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x8FF09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKeySSvpZ', symObjAddr: 0x8EF0, symBinAddr: 0x855B8, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x8FF23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvpZ', symObjAddr: 0x8F00, symBinAddr: 0x855C8, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x8FF3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKeySSvpZ', symObjAddr: 0x8F10, symBinAddr: 0x855D8, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x8FF57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKeySSvpZ', symObjAddr: 0x8F20, symBinAddr: 0x855E8, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x8FF71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKeySSvpZ', symObjAddr: 0x8F30, symBinAddr: 0x855F8, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x8FF8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKeySSvpZ', symObjAddr: 0x8F40, symBinAddr: 0x85608, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x8FFA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvpZ', symObjAddr: 0x8F50, symBinAddr: 0x85618, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x8FFBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvpZ', symObjAddr: 0x8F60, symBinAddr: 0x85628, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x8FFD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvpZ', symObjAddr: 0x8F70, symBinAddr: 0x85638, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x8FFF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkeySSvpZ', symObjAddr: 0x8F80, symBinAddr: 0x85648, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x9000D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvpZ', symObjAddr: 0x8F90, symBinAddr: 0x85658, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x90027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKeySSvpZ', symObjAddr: 0x8FA0, symBinAddr: 0x85668, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x90041, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKeySSvpZ', symObjAddr: 0x8FB0, symBinAddr: 0x85678, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x9005B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKeySSvpZ', symObjAddr: 0x8FC0, symBinAddr: 0x85688, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x90075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKeySSvpZ', symObjAddr: 0x8FD0, symBinAddr: 0x85698, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x9008F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKeySSvpZ', symObjAddr: 0x8FE0, symBinAddr: 0x856A8, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x900A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKeySSvpZ', symObjAddr: 0x8FF0, symBinAddr: 0x856B8, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x900C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x9000, symBinAddr: 0x856C8, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x900DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x9010, symBinAddr: 0x856D8, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x900F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x9020, symBinAddr: 0x856E8, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x90111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKeySSvpZ', symObjAddr: 0x9030, symBinAddr: 0x856F8, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x9012B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKeySSvpZ', symObjAddr: 0x9040, symBinAddr: 0x85708, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x90145, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKeySSvpZ', symObjAddr: 0x9050, symBinAddr: 0x85718, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x9015F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x9060, symBinAddr: 0x85728, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x90179, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x9070, symBinAddr: 0x85738, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x90193, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x9080, symBinAddr: 0x85748, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x901AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x9090, symBinAddr: 0x85758, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x901C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x90A0, symBinAddr: 0x85768, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x901E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkeySSvpZ', symObjAddr: 0x90B0, symBinAddr: 0x85778, symSize: 0x0 } - - { offsetInCU: 0x63D, offset: 0x901EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x66400, symSize: 0x40 } - - { offsetInCU: 0x65B, offset: 0x9020D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x66440, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x9022B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x66480, symSize: 0x40 } - - { offsetInCU: 0x697, offset: 0x90249, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x664C0, symSize: 0x40 } - - { offsetInCU: 0x6B5, offset: 0x90267, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x66500, symSize: 0x40 } - - { offsetInCU: 0x6DF, offset: 0x90291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x66540, symSize: 0x14 } - - { offsetInCU: 0x6FA, offset: 0x902AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x666D4, symSize: 0x108 } - - { offsetInCU: 0x74C, offset: 0x902FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x66910, symSize: 0x8 } - - { offsetInCU: 0x768, offset: 0x9031A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x66918, symSize: 0x18 } - - { offsetInCU: 0x780, offset: 0x90332, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x66918, symSize: 0x18 } - - { offsetInCU: 0x792, offset: 0x90344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x66554, symSize: 0x40 } - - { offsetInCU: 0x7B0, offset: 0x90362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x66594, symSize: 0x40 } - - { offsetInCU: 0x7CE, offset: 0x90380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x665D4, symSize: 0x40 } - - { offsetInCU: 0x7EC, offset: 0x9039E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x66614, symSize: 0x40 } - - { offsetInCU: 0x80A, offset: 0x903BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x66654, symSize: 0x40 } - - { offsetInCU: 0x828, offset: 0x903DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x66694, symSize: 0x40 } - - { offsetInCU: 0x851, offset: 0x90403, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x66800, symSize: 0x4 } - - { offsetInCU: 0x865, offset: 0x90417, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x66804, symSize: 0x44 } - - { offsetInCU: 0x88F, offset: 0x90441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x66930, symSize: 0x90 } - - { offsetInCU: 0x8A3, offset: 0x90455, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x669C0, symSize: 0xBC } - - { offsetInCU: 0x8B7, offset: 0x90469, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x66A7C, symSize: 0x8 } - - { offsetInCU: 0x8CB, offset: 0x9047D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x66A84, symSize: 0x4 } - - { offsetInCU: 0x8DF, offset: 0x90491, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x66A88, symSize: 0x8 } - - { offsetInCU: 0x8F3, offset: 0x904A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x66A90, symSize: 0x10 } - - { offsetInCU: 0x907, offset: 0x904B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8language_WZ', symObjAddr: 0x6B0, symBinAddr: 0x66AA0, symSize: 0x20 } - - { offsetInCU: 0x921, offset: 0x904D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7version_WZ', symObjAddr: 0x6D0, symBinAddr: 0x66AC0, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x904ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x6EC, symBinAddr: 0x66ADC, symSize: 0x1C } - - { offsetInCU: 0x955, offset: 0x90507, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x708, symBinAddr: 0x66AF8, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x90521, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x724, symBinAddr: 0x66B14, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x9053B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPassword_WZ', symObjAddr: 0x740, symBinAddr: 0x66B30, symSize: 0x14 } - - { offsetInCU: 0x9AA, offset: 0x9055C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x754, symBinAddr: 0x66B44, symSize: 0x1C } - - { offsetInCU: 0x9C4, offset: 0x90576, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x770, symBinAddr: 0x66B60, symSize: 0x24 } - - { offsetInCU: 0x9DE, offset: 0x90590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x794, symBinAddr: 0x66B84, symSize: 0x20 } - - { offsetInCU: 0x9F8, offset: 0x905AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7B4, symBinAddr: 0x66BA4, symSize: 0x28 } - - { offsetInCU: 0xA12, offset: 0x905C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7DC, symBinAddr: 0x66BCC, symSize: 0x24 } - - { offsetInCU: 0xA2C, offset: 0x905DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x800, symBinAddr: 0x66BF0, symSize: 0x24 } - - { offsetInCU: 0xA46, offset: 0x905F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x824, symBinAddr: 0x66C14, symSize: 0x20 } - - { offsetInCU: 0xA60, offset: 0x90612, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x844, symBinAddr: 0x66C34, symSize: 0x28 } - - { offsetInCU: 0xA7A, offset: 0x9062C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x86C, symBinAddr: 0x66C5C, symSize: 0x1C } - - { offsetInCU: 0xA95, offset: 0x90647, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKey_WZ', symObjAddr: 0x888, symBinAddr: 0x66C78, symSize: 0x18 } - - { offsetInCU: 0xAAF, offset: 0x90661, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKey_WZ', symObjAddr: 0x8A0, symBinAddr: 0x66C90, symSize: 0x18 } - - { offsetInCU: 0xAC9, offset: 0x9067B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKey_WZ', symObjAddr: 0x8B8, symBinAddr: 0x66CA8, symSize: 0x1C } - - { offsetInCU: 0xAE3, offset: 0x90695, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x66CC4, symSize: 0x1C } - - { offsetInCU: 0xAFD, offset: 0x906AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x66CE0, symSize: 0x18 } - - { offsetInCU: 0xB17, offset: 0x906C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKey_WZ', symObjAddr: 0x908, symBinAddr: 0x66CF8, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x906E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKey_WZ', symObjAddr: 0x924, symBinAddr: 0x66D14, symSize: 0x1C } - - { offsetInCU: 0xB4B, offset: 0x906FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x940, symBinAddr: 0x66D30, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x90717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x66D4C, symSize: 0x18 } - - { offsetInCU: 0xB7F, offset: 0x90731, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKey_WZ', symObjAddr: 0x974, symBinAddr: 0x66D64, symSize: 0x18 } - - { offsetInCU: 0xB99, offset: 0x9074B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x98C, symBinAddr: 0x66D7C, symSize: 0x1C } - - { offsetInCU: 0xBB3, offset: 0x90765, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x66D98, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x9077F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkey_WZ', symObjAddr: 0x9C0, symBinAddr: 0x66DB0, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x90799, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x66DCC, symSize: 0x24 } - - { offsetInCU: 0xC01, offset: 0x907B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKey_WZ', symObjAddr: 0xA00, symBinAddr: 0x66DF0, symSize: 0x18 } - - { offsetInCU: 0xC1B, offset: 0x907CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKey_WZ', symObjAddr: 0xA18, symBinAddr: 0x66E08, symSize: 0x18 } - - { offsetInCU: 0xC35, offset: 0x907E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKey_WZ', symObjAddr: 0xA30, symBinAddr: 0x66E20, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x90801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKey_WZ', symObjAddr: 0xA48, symBinAddr: 0x66E38, symSize: 0x1C } - - { offsetInCU: 0xC69, offset: 0x9081B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x66E54, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x90835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKey_WZ', symObjAddr: 0xA7C, symBinAddr: 0x66E6C, symSize: 0x18 } - - { offsetInCU: 0xC9D, offset: 0x9084F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKey_WZ', symObjAddr: 0xA94, symBinAddr: 0x66E84, symSize: 0x1C } - - { offsetInCU: 0xCB7, offset: 0x90869, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x66EA0, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x90883, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkey_WZ', symObjAddr: 0xAC8, symBinAddr: 0x66EB8, symSize: 0x18 } - - { offsetInCU: 0xCEB, offset: 0x9089D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekey_WZ', symObjAddr: 0xAE0, symBinAddr: 0x66ED0, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x908B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkey_WZ', symObjAddr: 0xAF8, symBinAddr: 0x66EE8, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x908D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkey_WZ', symObjAddr: 0xB10, symBinAddr: 0x66F00, symSize: 0x20 } - - { offsetInCU: 0xD39, offset: 0x908EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKey_WZ', symObjAddr: 0xB30, symBinAddr: 0x66F20, symSize: 0x24 } - - { offsetInCU: 0xD53, offset: 0x90905, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKey_WZ', symObjAddr: 0xB54, symBinAddr: 0x66F44, symSize: 0x1C } - - { offsetInCU: 0xD6D, offset: 0x9091F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x66F60, symSize: 0x1C } - - { offsetInCU: 0xD87, offset: 0x90939, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x66F7C, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x90953, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x66F98, symSize: 0x18 } - - { offsetInCU: 0xDBB, offset: 0x9096D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKey_WZ', symObjAddr: 0xBC0, symBinAddr: 0x66FB0, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x90987, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x66FCC, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x909A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xBF4, symBinAddr: 0x66FE4, symSize: 0x18 } - - { offsetInCU: 0xE09, offset: 0x909BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC0C, symBinAddr: 0x66FFC, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x909D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKey_WZ', symObjAddr: 0xC24, symBinAddr: 0x67014, symSize: 0x1C } - - { offsetInCU: 0xE3D, offset: 0x909EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x67030, symSize: 0x24 } - - { offsetInCU: 0xE57, offset: 0x90A09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKey_WZ', symObjAddr: 0xC64, symBinAddr: 0x67054, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x90A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x67070, symSize: 0x20 } - - { offsetInCU: 0xE8B, offset: 0x90A3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCA0, symBinAddr: 0x67090, symSize: 0x18 } - - { offsetInCU: 0xEA5, offset: 0x90A57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCB8, symBinAddr: 0x670A8, symSize: 0x18 } - - { offsetInCU: 0xEBF, offset: 0x90A71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCD0, symBinAddr: 0x670C0, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x90A8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekey_WZ', symObjAddr: 0xCE8, symBinAddr: 0x670D8, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkey_WZ', symObjAddr: 0xD00, symBinAddr: 0x670F0, symSize: 0x18 } - - { offsetInCU: 0xF56, offset: 0x90B08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0xD18, symBinAddr: 0x67108, symSize: 0x13C } - - { offsetInCU: 0x1191, offset: 0x90D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x667DC, symSize: 0x24 } - - { offsetInCU: 0x1233, offset: 0x90DE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x66848, symSize: 0x4C } - - { offsetInCU: 0x130B, offset: 0x90EBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x66894, symSize: 0x34 } - - { offsetInCU: 0x1387, offset: 0x90F39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x668C8, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x910F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67244, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x91135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67244, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x91181, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x67268, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x912C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1AE8, symBinAddr: 0x84DA0, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x9130B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x67364, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x9138A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x673A4, symSize: 0x3EC } - - { offsetInCU: 0x302, offset: 0x91575, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x55C, symBinAddr: 0x677A4, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x915DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C0, symBinAddr: 0x67808, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x91641, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x624, symBinAddr: 0x6786C, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x916A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x688, symBinAddr: 0x678D0, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x9170D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6EC, symBinAddr: 0x67934, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x9180A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x814, symBinAddr: 0x67A00, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x9187B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x67A3C, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x918B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x67A3C, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x918E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x860, symBinAddr: 0x67A4C, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x91967, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x9C4, symBinAddr: 0x67BB0, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x919C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x9F8, symBinAddr: 0x67BE4, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x91A49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA4C, symBinAddr: 0x67C38, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91AE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA98, symBinAddr: 0x67C84, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x91B93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB2C, symBinAddr: 0x67D08, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x91C56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA0, symBinAddr: 0x67D7C, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91D05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC24, symBinAddr: 0x67E00, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC5C, symBinAddr: 0x67E38, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC94, symBinAddr: 0x67E70, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x91EB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCCC, symBinAddr: 0x67EA8, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x91F4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD04, symBinAddr: 0x67EE0, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x91FE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD3C, symBinAddr: 0x67F18, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x92078, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD74, symBinAddr: 0x67F50, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x9210D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDAC, symBinAddr: 0x67F88, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x92178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDE4, symBinAddr: 0x67FC0, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x921D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE28, symBinAddr: 0x68004, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x922BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xF60, symBinAddr: 0x6813C, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x923A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x100C, symBinAddr: 0x681E8, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x92441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1084, symBinAddr: 0x68260, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x9246E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1108, symBinAddr: 0x682E4, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x92514, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x672C8, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x9252C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x67318, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x925CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5B8, symBinAddr: 0x67800, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x925DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x61C, symBinAddr: 0x67864, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x925F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x680, symBinAddr: 0x678C8, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x92606, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6E4, symBinAddr: 0x6792C, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x9261A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x748, symBinAddr: 0x67990, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x9262E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x7AC, symBinAddr: 0x67998, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x92642, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOf', symObjAddr: 0x7CC, symBinAddr: 0x679B8, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x926A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1250, symBinAddr: 0x6842C, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x926B7, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1258, symBinAddr: 0x68434, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x926CB, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1268, symBinAddr: 0x68444, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x9270C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x129C, symBinAddr: 0x6844C, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x9280E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15BC, symBinAddr: 0x6876C, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x92961, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x67288, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x9297D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x6728C, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x92999, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x67290, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x929B5, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x67294, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x929D1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x67298, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x929ED, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x6729C, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x92A09, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x672A0, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92A25, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x672A4, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x92A41, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x672A8, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x92A5D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x672AC, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x92A79, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x672B0, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x92A95, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x672BC, symSize: 0xC } + - { offsetInCU: 0x34, offset: 0x58E66, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x682C0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x58E9B, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x682F0, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58F00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x39B80, symBinAddr: 0x81478, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x591A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9380, symBinAddr: 0xA90C, symSize: 0x1558 } + - { offsetInCU: 0x1C16, offset: 0x5AAC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x15F4, symSize: 0x3C } + - { offsetInCU: 0x1E0E, offset: 0x5ACBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1B48, symBinAddr: 0x30FC, symSize: 0x8 } + - { offsetInCU: 0x1E22, offset: 0x5ACD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1B50, symBinAddr: 0x3104, symSize: 0x3C } + - { offsetInCU: 0x1E36, offset: 0x5ACE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1B8C, symBinAddr: 0x3140, symSize: 0x168 } + - { offsetInCU: 0x227B, offset: 0x5B12C, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8164, symBinAddr: 0x9708, symSize: 0xC } + - { offsetInCU: 0x228F, offset: 0x5B140, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8170, symBinAddr: 0x9714, symSize: 0x4 } + - { offsetInCU: 0x22A3, offset: 0x5B154, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8174, symBinAddr: 0x9718, symSize: 0x20 } + - { offsetInCU: 0x22B7, offset: 0x5B168, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x8194, symBinAddr: 0x9738, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x5B38D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x87D4, symBinAddr: 0x9D60, symSize: 0x2C } + - { offsetInCU: 0x24F0, offset: 0x5B3A1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8800, symBinAddr: 0x9D8C, symSize: 0x2C } + - { offsetInCU: 0x2504, offset: 0x5B3B5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x886C, symBinAddr: 0x9DF8, symSize: 0x2C } + - { offsetInCU: 0x2518, offset: 0x5B3C9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8898, symBinAddr: 0x9E24, symSize: 0x2C } + - { offsetInCU: 0x2581, offset: 0x5B432, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x8CA8, symBinAddr: 0xA234, symSize: 0x68 } + - { offsetInCU: 0x2BB6, offset: 0x5BA67, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xA948, symBinAddr: 0xBED4, symSize: 0x48 } + - { offsetInCU: 0x2BCA, offset: 0x5BA7B, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xA990, symBinAddr: 0xBF1C, symSize: 0x40 } + - { offsetInCU: 0x2BDE, offset: 0x5BA8F, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xA9D0, symBinAddr: 0xBF5C, symSize: 0x20 } + - { offsetInCU: 0x2BF2, offset: 0x5BAA3, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xA9F0, symBinAddr: 0xBF7C, symSize: 0x10 } + - { offsetInCU: 0x2C06, offset: 0x5BAB7, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xAA00, symBinAddr: 0xBF8C, symSize: 0x3C } + - { offsetInCU: 0x2C1A, offset: 0x5BACB, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAA9C, symBinAddr: 0xC028, symSize: 0x44 } + - { offsetInCU: 0x2C2E, offset: 0x5BADF, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xAC68, symBinAddr: 0xC1F4, symSize: 0x8 } + - { offsetInCU: 0x2C42, offset: 0x5BAF3, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xAC70, symBinAddr: 0xC1FC, symSize: 0x10 } + - { offsetInCU: 0x2C56, offset: 0x5BB07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xAC80, symBinAddr: 0xC20C, symSize: 0x5C } + - { offsetInCU: 0x2C6A, offset: 0x5BB1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xACDC, symBinAddr: 0xC268, symSize: 0x30C } + - { offsetInCU: 0x2C7E, offset: 0x5BB2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xAFE8, symBinAddr: 0xC574, symSize: 0x240 } + - { offsetInCU: 0x2C92, offset: 0x5BB43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB228, symBinAddr: 0xC7B4, symSize: 0x70 } + - { offsetInCU: 0x2CA6, offset: 0x5BB57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xB298, symBinAddr: 0xC824, symSize: 0x34 } + - { offsetInCU: 0x2CBA, offset: 0x5BB6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xB2CC, symBinAddr: 0xC858, symSize: 0x174 } + - { offsetInCU: 0x2CCE, offset: 0x5BB7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xB440, symBinAddr: 0xC9CC, symSize: 0xB4 } + - { offsetInCU: 0x2CE2, offset: 0x5BB93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xB4F4, symBinAddr: 0xCA80, symSize: 0x10 } + - { offsetInCU: 0x2CF6, offset: 0x5BBA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xB504, symBinAddr: 0xCA90, symSize: 0x34 } + - { offsetInCU: 0x2D0A, offset: 0x5BBBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xB574, symBinAddr: 0xCB00, symSize: 0x5C } + - { offsetInCU: 0x2D1E, offset: 0x5BBCF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xB674, symBinAddr: 0xCC00, symSize: 0x2C } + - { offsetInCU: 0x2D32, offset: 0x5BBE3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xB6A0, symBinAddr: 0xCC2C, symSize: 0x2C } + - { offsetInCU: 0x2D46, offset: 0x5BBF7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xB6CC, symBinAddr: 0xCC58, symSize: 0x2C } + - { offsetInCU: 0x2D5A, offset: 0x5BC0B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xB6F8, symBinAddr: 0xCC84, symSize: 0x2C } + - { offsetInCU: 0x2D6E, offset: 0x5BC1F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xB724, symBinAddr: 0xCCB0, symSize: 0x2C } + - { offsetInCU: 0x2D82, offset: 0x5BC33, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xB750, symBinAddr: 0xCCDC, symSize: 0x2C } + - { offsetInCU: 0x2D96, offset: 0x5BC47, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xB77C, symBinAddr: 0xCD08, symSize: 0x2C } + - { offsetInCU: 0x30F4, offset: 0x5BFA5, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6A80, symBinAddr: 0x8034, symSize: 0x6C } + - { offsetInCU: 0x3208, offset: 0x5C0B9, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x81D0, symBinAddr: 0x9774, symSize: 0x80 } + - { offsetInCU: 0x3299, offset: 0x5C14A, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8250, symBinAddr: 0x97F4, symSize: 0x90 } + - { offsetInCU: 0x3339, offset: 0x5C1EA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x82E0, symBinAddr: 0x9884, symSize: 0x14 } + - { offsetInCU: 0x3377, offset: 0x5C228, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8300, symBinAddr: 0x98A4, symSize: 0x8 } + - { offsetInCU: 0x33DA, offset: 0x5C28B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8308, symBinAddr: 0x98AC, symSize: 0x14 } + - { offsetInCU: 0x348B, offset: 0x5C33C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x831C, symBinAddr: 0x98C0, symSize: 0x14 } + - { offsetInCU: 0x3534, offset: 0x5C3E5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8330, symBinAddr: 0x98D4, symSize: 0x14 } + - { offsetInCU: 0x35DB, offset: 0x5C48C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8344, symBinAddr: 0x98E8, symSize: 0x30 } + - { offsetInCU: 0x3767, offset: 0x5C618, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8374, symBinAddr: 0x9918, symSize: 0x2C } + - { offsetInCU: 0x38FE, offset: 0x5C7AF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x83A0, symBinAddr: 0x9944, symSize: 0x24 } + - { offsetInCU: 0x39EA, offset: 0x5C89B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x83C4, symBinAddr: 0x9968, symSize: 0x14 } + - { offsetInCU: 0x3A50, offset: 0x5C901, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x83D8, symBinAddr: 0x997C, symSize: 0x14 } + - { offsetInCU: 0x3AB6, offset: 0x5C967, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x83EC, symBinAddr: 0x9990, symSize: 0x14 } + - { offsetInCU: 0x3B35, offset: 0x5C9E6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8400, symBinAddr: 0x99A4, symSize: 0x14 } + - { offsetInCU: 0x3BE8, offset: 0x5CA99, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8414, symBinAddr: 0x99B8, symSize: 0x14 } + - { offsetInCU: 0x3C69, offset: 0x5CB1A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8428, symBinAddr: 0x99CC, symSize: 0x14 } + - { offsetInCU: 0x3D2B, offset: 0x5CBDC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x843C, symBinAddr: 0x99E0, symSize: 0x14 } + - { offsetInCU: 0x3DC5, offset: 0x5CC76, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8450, symBinAddr: 0x99F4, symSize: 0x10 } + - { offsetInCU: 0x3E2D, offset: 0x5CCDE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8460, symBinAddr: 0x9A04, symSize: 0x18 } + - { offsetInCU: 0x3E49, offset: 0x5CCFA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8478, symBinAddr: 0x9A1C, symSize: 0x14 } + - { offsetInCU: 0x3EC5, offset: 0x5CD76, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x84A8, symBinAddr: 0x9A4C, symSize: 0x8 } + - { offsetInCU: 0x3EE1, offset: 0x5CD92, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x84B0, symBinAddr: 0x9A54, symSize: 0x14 } + - { offsetInCU: 0x3F12, offset: 0x5CDC3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x84C4, symBinAddr: 0x9A68, symSize: 0x14 } + - { offsetInCU: 0x3F43, offset: 0x5CDF4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x84D8, symBinAddr: 0x9A7C, symSize: 0x14 } + - { offsetInCU: 0x3F74, offset: 0x5CE25, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x84EC, symBinAddr: 0x9A90, symSize: 0x30 } + - { offsetInCU: 0x3FA3, offset: 0x5CE54, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x851C, symBinAddr: 0x9AC0, symSize: 0x2C } + - { offsetInCU: 0x3FD4, offset: 0x5CE85, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8548, symBinAddr: 0x9AEC, symSize: 0x24 } + - { offsetInCU: 0x4005, offset: 0x5CEB6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x856C, symBinAddr: 0x9B10, symSize: 0x14 } + - { offsetInCU: 0x4036, offset: 0x5CEE7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8580, symBinAddr: 0x9B24, symSize: 0x14 } + - { offsetInCU: 0x4067, offset: 0x5CF18, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8594, symBinAddr: 0x9B38, symSize: 0x14 } + - { offsetInCU: 0x4098, offset: 0x5CF49, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x85A8, symBinAddr: 0x9B4C, symSize: 0x14 } + - { offsetInCU: 0x40C9, offset: 0x5CF7A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x85BC, symBinAddr: 0x9B60, symSize: 0x14 } + - { offsetInCU: 0x40FA, offset: 0x5CFAB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x85D0, symBinAddr: 0x9B74, symSize: 0x14 } + - { offsetInCU: 0x412B, offset: 0x5CFDC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x85E4, symBinAddr: 0x9B88, symSize: 0x14 } + - { offsetInCU: 0x415C, offset: 0x5D00D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x85F8, symBinAddr: 0x9B9C, symSize: 0x10 } + - { offsetInCU: 0x418D, offset: 0x5D03E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8608, symBinAddr: 0x9BAC, symSize: 0x18 } + - { offsetInCU: 0x41A9, offset: 0x5D05A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8620, symBinAddr: 0x9BC4, symSize: 0x14 } + - { offsetInCU: 0x41F9, offset: 0x5D0AA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8640, symBinAddr: 0x9BE4, symSize: 0x40 } + - { offsetInCU: 0x4281, offset: 0x5D132, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8680, symBinAddr: 0x9C24, symSize: 0x70 } + - { offsetInCU: 0x4305, offset: 0x5D1B6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8738, symBinAddr: 0x9CDC, symSize: 0x4 } + - { offsetInCU: 0x4321, offset: 0x5D1D2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x873C, symBinAddr: 0x9CE0, symSize: 0x4 } + - { offsetInCU: 0x434C, offset: 0x5D1FD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8740, symBinAddr: 0x9CE4, symSize: 0x40 } + - { offsetInCU: 0x43DA, offset: 0x5D28B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8798, symBinAddr: 0x9D24, symSize: 0x3C } + - { offsetInCU: 0x440B, offset: 0x5D2BC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x88C4, symBinAddr: 0x9E50, symSize: 0x14 } + - { offsetInCU: 0x4442, offset: 0x5D2F3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x88D8, symBinAddr: 0x9E64, symSize: 0x3C } + - { offsetInCU: 0x4482, offset: 0x5D333, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8914, symBinAddr: 0x9EA0, symSize: 0x88 } + - { offsetInCU: 0x452C, offset: 0x5D3DD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8A30, symBinAddr: 0x9FBC, symSize: 0x84 } + - { offsetInCU: 0x4560, offset: 0x5D411, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9048, symBinAddr: 0xA5D4, symSize: 0xB8 } + - { offsetInCU: 0x4638, offset: 0x5D4E9, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9100, symBinAddr: 0xA68C, symSize: 0x164 } + - { offsetInCU: 0x48B6, offset: 0x5D767, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x48D6, offset: 0x5D787, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x48EA, offset: 0x5D79B, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x490A, offset: 0x5D7BB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x491E, offset: 0x5D7CF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x4932, offset: 0x5D7E3, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x4946, offset: 0x5D7F7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x4A43, offset: 0x5D8F4, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4A63, offset: 0x5D914, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4A77, offset: 0x5D928, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4A97, offset: 0x5D948, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4AAB, offset: 0x5D95C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4ABF, offset: 0x5D970, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4AD3, offset: 0x5D984, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4D00, offset: 0x5DBB1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x89C4, symBinAddr: 0x9F50, symSize: 0x44 } + - { offsetInCU: 0x4D29, offset: 0x5DBDA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8A08, symBinAddr: 0x9F94, symSize: 0x28 } + - { offsetInCU: 0x4D64, offset: 0x5DC15, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x89A8, symBinAddr: 0x9F34, symSize: 0x10 } + - { offsetInCU: 0x4D80, offset: 0x5DC31, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x89B8, symBinAddr: 0x9F44, symSize: 0xC } + - { offsetInCU: 0x4DAE, offset: 0x5DC5F, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x899C, symBinAddr: 0x9F28, symSize: 0xC } + - { offsetInCU: 0x4E86, offset: 0x5DD37, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x82F4, symBinAddr: 0x9898, symSize: 0xC } + - { offsetInCU: 0x4EB8, offset: 0x5DD69, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x848C, symBinAddr: 0x9A30, symSize: 0x10 } + - { offsetInCU: 0x4ED4, offset: 0x5DD85, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x849C, symBinAddr: 0x9A40, symSize: 0xC } + - { offsetInCU: 0x4F32, offset: 0x5DDE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x1630, symSize: 0x44 } + - { offsetInCU: 0x4F46, offset: 0x5DDF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x1674, symSize: 0x4 } + - { offsetInCU: 0x4F6E, offset: 0x5DE1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x1678, symSize: 0x2BC } + - { offsetInCU: 0x50A6, offset: 0x5DF57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x1934, symSize: 0x1420 } + - { offsetInCU: 0x53BC, offset: 0x5E26D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x17A0, symBinAddr: 0x2D54, symSize: 0x384 } + - { offsetInCU: 0x5415, offset: 0x5E2C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1B24, symBinAddr: 0x30D8, symSize: 0x24 } + - { offsetInCU: 0x544D, offset: 0x5E2FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1CF4, symBinAddr: 0x32A8, symSize: 0x298 } + - { offsetInCU: 0x55BE, offset: 0x5E46F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1F8C, symBinAddr: 0x3540, symSize: 0x3D4 } + - { offsetInCU: 0x5869, offset: 0x5E71A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2360, symBinAddr: 0x3914, symSize: 0x7A8 } + - { offsetInCU: 0x5E84, offset: 0x5ED35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2B18, symBinAddr: 0x40CC, symSize: 0x524 } + - { offsetInCU: 0x6279, offset: 0x5F12A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x303C, symBinAddr: 0x45F0, symSize: 0x3A44 } + - { offsetInCU: 0x7252, offset: 0x60103, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6AFC, symBinAddr: 0x80A0, symSize: 0x150 } + - { offsetInCU: 0x7331, offset: 0x601E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6C4C, symBinAddr: 0x81F0, symSize: 0x300 } + - { offsetInCU: 0x7594, offset: 0x60445, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x6F4C, symBinAddr: 0x84F0, symSize: 0x3C8 } + - { offsetInCU: 0x78F2, offset: 0x607A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7314, symBinAddr: 0x88B8, symSize: 0x2B0 } + - { offsetInCU: 0x7A99, offset: 0x6094A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7814, symBinAddr: 0x8DB8, symSize: 0x31C } + - { offsetInCU: 0x7BF4, offset: 0x60AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x7B30, symBinAddr: 0x90D4, symSize: 0x438 } + - { offsetInCU: 0x7E5E, offset: 0x60D0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x7F68, symBinAddr: 0x950C, symSize: 0x188 } + - { offsetInCU: 0x811A, offset: 0x60FCB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8AB4, symBinAddr: 0xA040, symSize: 0x1F4 } + - { offsetInCU: 0x819F, offset: 0x61050, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x8E6C, symBinAddr: 0xA3F8, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x6134E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xCD40, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x61389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xCD50, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x61470, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xCD40, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x614DD, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xCD7C, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x614F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xCD90, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61563, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0xCE70, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x615BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0xCE88, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x61638, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0xCEB4, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x6166D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0xCEBC, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x6169E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0xCEE0, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x616BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0xCEEC, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x616D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x22F8, symBinAddr: 0xF068, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61896, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1348, symBinAddr: 0xE0B8, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x618CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1398, symBinAddr: 0xE108, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x618F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2714, symBinAddr: 0xF484, symSize: 0x144C } + - { offsetInCU: 0x4B4, offset: 0x6194E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x13E8, symBinAddr: 0xE158, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x619A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x13F0, symBinAddr: 0xE160, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x61A89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1430, symBinAddr: 0xE1A0, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x61AFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1490, symBinAddr: 0xE200, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x61B49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x149C, symBinAddr: 0xE20C, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x61BA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1518, symBinAddr: 0xE288, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x61BBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1524, symBinAddr: 0xE294, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x61BFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0xE2F0, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61C33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0xE340, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61C56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3B60, symBinAddr: 0x108D0, symSize: 0x248 } + - { offsetInCU: 0x857, offset: 0x61CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1628, symBinAddr: 0xE398, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1684, symBinAddr: 0xE3F4, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16A8, symBinAddr: 0xE418, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61D73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16B4, symBinAddr: 0xE424, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x12A18, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x61E68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1710, symBinAddr: 0xE480, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x61E9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1760, symBinAddr: 0xE4D0, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x61EC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5E9C, symBinAddr: 0x12BC8, symSize: 0x310 } + - { offsetInCU: 0xA97, offset: 0x61F31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17A8, symBinAddr: 0xE518, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F8, symBinAddr: 0xE568, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61F97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x181C, symBinAddr: 0xE58C, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61FB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1828, symBinAddr: 0xE598, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61FCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x61AC, symBinAddr: 0x12ED8, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x6207F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1884, symBinAddr: 0xE5F4, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x620B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C4, symBinAddr: 0xE634, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x620D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6314, symBinAddr: 0x13040, symSize: 0x2C8 } + - { offsetInCU: 0xCA2, offset: 0x6213C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0xE674, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x62171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1950, symBinAddr: 0xE6C0, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x621A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1974, symBinAddr: 0xE6E4, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x621BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1980, symBinAddr: 0xE6F0, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x621DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x65DC, symBinAddr: 0x13308, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x6229A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19DC, symBinAddr: 0xE74C, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x622D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A4C, symBinAddr: 0xE7BC, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x622F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x673C, symBinAddr: 0x13468, symSize: 0x4D8 } + - { offsetInCU: 0xEC9, offset: 0x62363, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AAC, symBinAddr: 0xE81C, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x62398, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B34, symBinAddr: 0xE8A4, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x623C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B58, symBinAddr: 0xE8C8, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x623E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B64, symBinAddr: 0xE8D4, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x62401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x13A0C, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x62515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BC0, symBinAddr: 0xE930, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x6254C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C24, symBinAddr: 0xE994, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x6256F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6F74, symBinAddr: 0x13CA0, symSize: 0x57C } + - { offsetInCU: 0x1162, offset: 0x625FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C74, symBinAddr: 0xE9E4, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6267C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1C8C, symBinAddr: 0xE9FC, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x6275F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CD0, symBinAddr: 0xEA40, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x627E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D38, symBinAddr: 0xEAA8, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x6283A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D54, symBinAddr: 0xEAC4, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x6286B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D78, symBinAddr: 0xEAE8, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x62887, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D84, symBinAddr: 0xEAF4, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x628A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7534, symBinAddr: 0x14260, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62931, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0xEB50, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x62968, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E0C, symBinAddr: 0xEB7C, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x6298B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x75F4, symBinAddr: 0x14320, symSize: 0x1A0 } + - { offsetInCU: 0x156C, offset: 0x62A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0xEBA0, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x62A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1EA0, symBinAddr: 0xEC10, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x62A6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1EC4, symBinAddr: 0xEC34, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x62A88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0xEC40, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x62AA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x77D8, symBinAddr: 0x14504, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x62BAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1F2C, symBinAddr: 0xEC9C, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x62BE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F84, symBinAddr: 0xECF4, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x62C09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7A1C, symBinAddr: 0x14748, symSize: 0x360 } + - { offsetInCU: 0x17D2, offset: 0x62C6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FD4, symBinAddr: 0xED44, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x62CA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2038, symBinAddr: 0xEDA8, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x62CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x205C, symBinAddr: 0xEDCC, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x62CEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2068, symBinAddr: 0xEDD8, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x62D0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7D7C, symBinAddr: 0x14AA8, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x62DEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x20C4, symBinAddr: 0xEE34, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62E23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x210C, symBinAddr: 0xEE7C, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62E46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7F70, symBinAddr: 0x14C9C, symSize: 0x380 } + - { offsetInCU: 0x1A2F, offset: 0x62EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x21D8, symBinAddr: 0xEF48, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62F13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x21F0, symBinAddr: 0xEF60, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62F44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2214, symBinAddr: 0xEF84, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62F60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2220, symBinAddr: 0xEF90, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62F7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8378, symBinAddr: 0x150A4, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x63023, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x227C, symBinAddr: 0xEFEC, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x6305A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x22C0, symBinAddr: 0xF030, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x6307D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8484, symBinAddr: 0x151B0, symSize: 0x1CC } + - { offsetInCU: 0x1C20, offset: 0x630BA, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3DE8, symBinAddr: 0x10B18, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x630CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3E0C, symBinAddr: 0x10B3C, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x630E2, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3E50, symBinAddr: 0x10B80, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x630F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3E70, symBinAddr: 0x10BA0, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x6310A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3EB4, symBinAddr: 0x10BE4, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x6311E, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3EF8, symBinAddr: 0x10C28, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x63132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3F00, symBinAddr: 0x10C2C, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x63146, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x3F50, symBinAddr: 0x10C7C, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x6315A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x3FDC, symBinAddr: 0x10D08, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x6316E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x3FE4, symBinAddr: 0x10D10, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x63182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x3FE8, symBinAddr: 0x10D14, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x63196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x3FEC, symBinAddr: 0x10D18, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x631AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x3FFC, symBinAddr: 0x10D28, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x631BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x48AC, symBinAddr: 0x115D8, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x631D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x48BC, symBinAddr: 0x115E8, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x631E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x48C0, symBinAddr: 0x115EC, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x631FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4904, symBinAddr: 0x11630, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x6320E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4908, symBinAddr: 0x11634, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x63222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x494C, symBinAddr: 0x11678, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x63236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4950, symBinAddr: 0x1167C, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x6324A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x4994, symBinAddr: 0x116C0, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x6325E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x49D8, symBinAddr: 0x11704, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x63272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x11748, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x63286, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4A60, symBinAddr: 0x1178C, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x6329A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x117D0, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x632AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x11814, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x632C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x4B2C, symBinAddr: 0x11858, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x632D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x4B70, symBinAddr: 0x1189C, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x632EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x4BB4, symBinAddr: 0x118E0, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x632FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x4BF8, symBinAddr: 0x11924, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x63312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x4C3C, symBinAddr: 0x11968, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x63326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4C80, symBinAddr: 0x119AC, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x6333A, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4CC4, symBinAddr: 0x119F0, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x6334E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4CD0, symBinAddr: 0x119FC, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x63362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4D60, symBinAddr: 0x11A8C, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x63376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4E1C, symBinAddr: 0x11B48, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x6338A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4E24, symBinAddr: 0x11B50, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x6339E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4E28, symBinAddr: 0x11B54, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x633B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4E30, symBinAddr: 0x11B5C, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x633C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4E40, symBinAddr: 0x11B6C, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x633DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4E68, symBinAddr: 0x11B94, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x633EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4EAC, symBinAddr: 0x11BD8, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x63402, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4F20, symBinAddr: 0x11C4C, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x63416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4F34, symBinAddr: 0x11C60, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x6342A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x4F80, symBinAddr: 0x11CAC, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x6343E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x4FC8, symBinAddr: 0x11CF4, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x5010, symBinAddr: 0x11D3C, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x63466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x5020, symBinAddr: 0x11D4C, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x6347A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5058, symBinAddr: 0x11D84, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x6348E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x50CC, symBinAddr: 0x11DF8, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x634A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5188, symBinAddr: 0x11EB4, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x634B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x51A4, symBinAddr: 0x11ED0, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x634CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5220, symBinAddr: 0x11F4C, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x634DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5268, symBinAddr: 0x11F94, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x634F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x52BC, symBinAddr: 0x11FE8, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x63506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x52CC, symBinAddr: 0x11FF8, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x6351A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x52F4, symBinAddr: 0x12020, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x6352E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5330, symBinAddr: 0x1205C, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x63542, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x539C, symBinAddr: 0x120C8, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x63556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x53A8, symBinAddr: 0x120D4, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x6356A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x53EC, symBinAddr: 0x12118, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x5434, symBinAddr: 0x12160, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5474, symBinAddr: 0x121A0, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x635A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x5484, symBinAddr: 0x121B0, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x635BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x54D4, symBinAddr: 0x12200, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x635CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5580, symBinAddr: 0x122AC, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x635E2, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5694, symBinAddr: 0x123C0, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x635F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x56C0, symBinAddr: 0x123EC, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x6360A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x575C, symBinAddr: 0x12488, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x57A4, symBinAddr: 0x124D0, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x63632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x5800, symBinAddr: 0x1252C, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x63646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x5810, symBinAddr: 0x1253C, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5868, symBinAddr: 0x12594, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x6366E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x592C, symBinAddr: 0x12658, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63682, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5A70, symBinAddr: 0x1279C, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x5AA4, symBinAddr: 0x127D0, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x636AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x5B58, symBinAddr: 0x12884, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x636BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5BA0, symBinAddr: 0x128CC, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x636D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x5C04, symBinAddr: 0x12930, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x636E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5C14, symBinAddr: 0x12940, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x636FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x5C18, symBinAddr: 0x12944, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x6370E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5C5C, symBinAddr: 0x12988, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x63722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5C60, symBinAddr: 0x1298C, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5CA4, symBinAddr: 0x129D0, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x6374A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5CA8, symBinAddr: 0x129D4, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x6375E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x6C14, symBinAddr: 0x13940, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x6C58, symBinAddr: 0x13984, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6C9C, symBinAddr: 0x139C8, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x6379A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x74F0, symBinAddr: 0x1421C, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x637AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7794, symBinAddr: 0x144C0, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x637C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x82F0, symBinAddr: 0x1501C, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x637D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8334, symBinAddr: 0x15060, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x637EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8650, symBinAddr: 0x1537C, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x637FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8694, symBinAddr: 0x153C0, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x86D8, symBinAddr: 0x15404, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x8780, symBinAddr: 0x154AC, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x6383A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x87C4, symBinAddr: 0x154F0, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x6384E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8854, symBinAddr: 0x15580, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8910, symBinAddr: 0x1563C, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8914, symBinAddr: 0x15640, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x6388A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8924, symBinAddr: 0x15650, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x6389E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x89B4, symBinAddr: 0x156E0, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x638B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A70, symBinAddr: 0x1579C, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x638C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A74, symBinAddr: 0x157A0, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x638DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8A84, symBinAddr: 0x157B0, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x638EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8B14, symBinAddr: 0x15840, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x8BD0, symBinAddr: 0x158FC, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63916, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8BD8, symBinAddr: 0x15904, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x6392A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x8BDC, symBinAddr: 0x15908, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x6393E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8BE8, symBinAddr: 0x15914, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63952, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8BF8, symBinAddr: 0x15924, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8C88, symBinAddr: 0x159B4, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x6397A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8D44, symBinAddr: 0x15A70, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x6398E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8D48, symBinAddr: 0x15A74, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x639A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8D60, symBinAddr: 0x15A8C, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x639B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8D64, symBinAddr: 0x15A90, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x639CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8D74, symBinAddr: 0x15AA0, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x639DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8DAC, symBinAddr: 0x15AD8, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x639F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8E20, symBinAddr: 0x15B4C, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63A06, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8EE4, symBinAddr: 0x15C10, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x63A1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x8F08, symBinAddr: 0x15C34, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63A2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x8F7C, symBinAddr: 0x15CA8, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63A42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x8FC4, symBinAddr: 0x15CF0, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x9018, symBinAddr: 0x15D44, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x63A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x9028, symBinAddr: 0x15D54, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x9060, symBinAddr: 0x15D8C, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63A92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x90C4, symBinAddr: 0x15DF0, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x63AA6, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9170, symBinAddr: 0x15E9C, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x63ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x9184, symBinAddr: 0x15EB0, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x63ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x91E8, symBinAddr: 0x15F14, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x63AE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9230, symBinAddr: 0x15F5C, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x63AF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x9280, symBinAddr: 0x15FAC, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x63B0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x9290, symBinAddr: 0x15FBC, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63B1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x92C8, symBinAddr: 0x15FF4, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63B32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9334, symBinAddr: 0x16060, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63B46, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x93E8, symBinAddr: 0x16114, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x63B5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x940C, symBinAddr: 0x16138, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63B6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9478, symBinAddr: 0x161A4, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x94C0, symBinAddr: 0x161EC, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63B96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9510, symBinAddr: 0x1623C, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x63BAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9520, symBinAddr: 0x1624C, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x63BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9524, symBinAddr: 0x16250, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9568, symBinAddr: 0x16294, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x63BE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x956C, symBinAddr: 0x16298, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x63BFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x95B0, symBinAddr: 0x162DC, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63C0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x95B4, symBinAddr: 0x162E0, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63C22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x95F8, symBinAddr: 0x16324, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63C36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x95FC, symBinAddr: 0x16328, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x63C4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9640, symBinAddr: 0x1636C, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63C5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9644, symBinAddr: 0x16370, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63C72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9688, symBinAddr: 0x163B4, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63C86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x968C, symBinAddr: 0x163B8, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x63C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96D0, symBinAddr: 0x163FC, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x63CAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96D4, symBinAddr: 0x16400, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x63CC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9718, symBinAddr: 0x16444, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x63CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x971C, symBinAddr: 0x16448, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x63CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9760, symBinAddr: 0x1648C, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9764, symBinAddr: 0x16490, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63D12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97A8, symBinAddr: 0x164D4, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97AC, symBinAddr: 0x164D8, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x63D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x97F0, symBinAddr: 0x1651C, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x97F4, symBinAddr: 0x16520, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63D62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9838, symBinAddr: 0x16564, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63D76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x983C, symBinAddr: 0x16568, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x63D8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9880, symBinAddr: 0x165AC, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x63D9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9884, symBinAddr: 0x165B0, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x63DB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98C8, symBinAddr: 0x165F4, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x63DC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98CC, symBinAddr: 0x165F8, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x63DDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9910, symBinAddr: 0x1663C, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x63DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9914, symBinAddr: 0x16640, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63E02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9958, symBinAddr: 0x16684, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x999C, symBinAddr: 0x166C8, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x63E2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x99E0, symBinAddr: 0x1670C, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9A24, symBinAddr: 0x16750, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63E52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9AB4, symBinAddr: 0x167E0, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9B70, symBinAddr: 0x1689C, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x63E7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9B74, symBinAddr: 0x168A0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9CD8, symBinAddr: 0x16A04, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x63EA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9CDC, symBinAddr: 0x16A08, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x63EB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9CEC, symBinAddr: 0x16A18, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x63ECA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9D7C, symBinAddr: 0x16AA8, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x63EDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9E38, symBinAddr: 0x16B64, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x63EF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9E3C, symBinAddr: 0x16B68, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63F06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9E4C, symBinAddr: 0x16B78, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63F1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9E50, symBinAddr: 0x16B7C, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63F2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9E94, symBinAddr: 0x16BC0, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63F42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9E98, symBinAddr: 0x16BC4, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63F56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9EDC, symBinAddr: 0x16C08, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63F6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9EE0, symBinAddr: 0x16C0C, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63F7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9F24, symBinAddr: 0x16C50, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63F92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9F28, symBinAddr: 0x16C54, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63FA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9F6C, symBinAddr: 0x16C98, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63FBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9F70, symBinAddr: 0x16C9C, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63FCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9FB4, symBinAddr: 0x16CE0, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63FE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9FB8, symBinAddr: 0x16CE4, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9FFC, symBinAddr: 0x16D28, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x6400A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA000, symBinAddr: 0x16D2C, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x6401E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA044, symBinAddr: 0x16D70, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x64032, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA048, symBinAddr: 0x16D74, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x64046, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA08C, symBinAddr: 0x16DB8, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x6405A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x16DBC, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x640B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0xCEF8, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x640D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0xCF20, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x6413B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1454, symBinAddr: 0xE1C4, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x641FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1530, symBinAddr: 0xE2A0, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x64217, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1558, symBinAddr: 0xE2C8, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x64239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16C0, symBinAddr: 0xE430, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x64255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0xE458, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x64277, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1834, symBinAddr: 0xE5A4, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x64293, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0xE5CC, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x642B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0xE6FC, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x642D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19B4, symBinAddr: 0xE724, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x642F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B70, symBinAddr: 0xE8E0, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x6430F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0xE908, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x64362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1CF8, symBinAddr: 0xEA68, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x64404, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D90, symBinAddr: 0xEB00, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x64420, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DB8, symBinAddr: 0xEB28, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x64442, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EDC, symBinAddr: 0xEC4C, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x6445E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1F04, symBinAddr: 0xEC74, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x64480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2074, symBinAddr: 0xEDE4, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x6449C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x209C, symBinAddr: 0xEE0C, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x644BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x222C, symBinAddr: 0xEF9C, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x644DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2254, symBinAddr: 0xEFC4, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x645C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xCDA0, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x64644, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0xCF48, symSize: 0x40C } + - { offsetInCU: 0x31DB, offset: 0x64675, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5E4, symBinAddr: 0xD354, symSize: 0x100 } + - { offsetInCU: 0x320C, offset: 0x646A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6E4, symBinAddr: 0xD454, symSize: 0x17C } + - { offsetInCU: 0x323D, offset: 0x646D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x860, symBinAddr: 0xD5D0, symSize: 0x154 } + - { offsetInCU: 0x326E, offset: 0x64708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9B4, symBinAddr: 0xD724, symSize: 0x1A4 } + - { offsetInCU: 0x329F, offset: 0x64739, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB58, symBinAddr: 0xD8C8, symSize: 0x1F4 } + - { offsetInCU: 0x32D0, offset: 0x6476A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD4C, symBinAddr: 0xDABC, symSize: 0x118 } + - { offsetInCU: 0x3301, offset: 0x6479B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE64, symBinAddr: 0xDBD4, symSize: 0x1CC } + - { offsetInCU: 0x3332, offset: 0x647CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1030, symBinAddr: 0xDDA0, symSize: 0x1EC } + - { offsetInCU: 0x3363, offset: 0x647FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x121C, symBinAddr: 0xDF8C, symSize: 0x12C } + - { offsetInCU: 0x27, offset: 0x64A39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x16E94, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64DFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x171A8, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64E13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x171D8, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x64E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x17218, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x64E3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x172BC, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64E4F, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x173C0, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64E63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x173EC, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x64E77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x17488, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x64E8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x174D0, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x64E9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x17530, symSize: 0x10 } + - { offsetInCU: 0x614, offset: 0x65026, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x16E94, symSize: 0x38 } + - { offsetInCU: 0x62C, offset: 0x6503E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x16E94, symSize: 0x38 } + - { offsetInCU: 0x653, offset: 0x65065, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x16ECC, symSize: 0x3C } + - { offsetInCU: 0x66D, offset: 0x6507F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x16F08, symSize: 0x54 } + - { offsetInCU: 0x6A2, offset: 0x650B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x16F5C, symSize: 0x10 } + - { offsetInCU: 0x6B6, offset: 0x650C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x16F6C, symSize: 0x4 } + - { offsetInCU: 0x6D7, offset: 0x650E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0xDC, symBinAddr: 0x16F70, symSize: 0x14 } + - { offsetInCU: 0x6EB, offset: 0x650FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0xF0, symBinAddr: 0x16F84, symSize: 0x14 } + - { offsetInCU: 0x71B, offset: 0x6512D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x104, symBinAddr: 0x16F98, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x65151, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x16FA8, symSize: 0x4 } + - { offsetInCU: 0x760, offset: 0x65172, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x16FAC, symSize: 0x2C } + - { offsetInCU: 0x774, offset: 0x65186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x16FD8, symSize: 0x34 } + - { offsetInCU: 0x7A9, offset: 0x651BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1700C, symSize: 0x10 } + - { offsetInCU: 0x7CD, offset: 0x651DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1701C, symSize: 0x4 } + - { offsetInCU: 0x7EE, offset: 0x65200, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x17020, symSize: 0x8 } + - { offsetInCU: 0x802, offset: 0x65214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x17028, symSize: 0x8 } + - { offsetInCU: 0x832, offset: 0x65244, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x17030, symSize: 0x10 } + - { offsetInCU: 0x856, offset: 0x65268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x17040, symSize: 0x4 } + - { offsetInCU: 0x877, offset: 0x65289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x17044, symSize: 0x8 } + - { offsetInCU: 0x88B, offset: 0x6529D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1704C, symSize: 0x8 } + - { offsetInCU: 0x8BB, offset: 0x652CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x17054, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x652F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x17064, symSize: 0x4 } + - { offsetInCU: 0x900, offset: 0x65312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x17068, symSize: 0x2C } + - { offsetInCU: 0x914, offset: 0x65326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x17094, symSize: 0x34 } + - { offsetInCU: 0x949, offset: 0x6535B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x170C8, symSize: 0x10 } + - { offsetInCU: 0x96D, offset: 0x6537F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x170D8, symSize: 0x4 } + - { offsetInCU: 0x98E, offset: 0x653A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x170DC, symSize: 0x2C } + - { offsetInCU: 0x9A2, offset: 0x653B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x17108, symSize: 0x34 } + - { offsetInCU: 0x9D7, offset: 0x653E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1713C, symSize: 0x10 } + - { offsetInCU: 0x9FB, offset: 0x6540D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1714C, symSize: 0x4 } + - { offsetInCU: 0xA1C, offset: 0x6542E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x17150, symSize: 0xC } + - { offsetInCU: 0xA30, offset: 0x65442, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1715C, symSize: 0xC } + - { offsetInCU: 0xA64, offset: 0x65476, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x17168, symSize: 0x10 } + - { offsetInCU: 0xA88, offset: 0x6549A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x17178, symSize: 0x4 } + - { offsetInCU: 0xAA9, offset: 0x654BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1717C, symSize: 0xC } + - { offsetInCU: 0xABD, offset: 0x654CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x17188, symSize: 0xC } + - { offsetInCU: 0xAF1, offset: 0x65503, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x17194, symSize: 0x10 } + - { offsetInCU: 0xB15, offset: 0x65527, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x171A4, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x655EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x598, symBinAddr: 0x17AD8, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x6561B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5C4, symBinAddr: 0x17B04, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x65637, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x17D40, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x656B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x7AC, symBinAddr: 0x17CEC, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x656E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7D8, symBinAddr: 0x17D18, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x656FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x864, symBinAddr: 0x17DA4, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x6573D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C8, symBinAddr: 0x17E08, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x6576D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9DC, symBinAddr: 0x17F0C, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x65781, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA6C, symBinAddr: 0x17F9C, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65795, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB28, symBinAddr: 0x18058, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x657A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB2C, symBinAddr: 0x1805C, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x657BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB3C, symBinAddr: 0x1806C, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x657D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBCC, symBinAddr: 0x180FC, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x657E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC88, symBinAddr: 0x181B8, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x657F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC90, symBinAddr: 0x181C0, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x6580D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC94, symBinAddr: 0x181C4, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x65821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC9C, symBinAddr: 0x181CC, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x65835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCAC, symBinAddr: 0x181DC, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x65849, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x181E0, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x6585D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF4, symBinAddr: 0x18224, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x65871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF8, symBinAddr: 0x18228, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x6597B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x17540, symSize: 0x2AC } + - { offsetInCU: 0x433, offset: 0x6599E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x177EC, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x65AC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x183A8, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x65B0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x183C8, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x65B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x18454, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65B87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x18458, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x65BAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1845C, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x65BD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x184D0, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x65C11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x184D4, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65C7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x18554, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x65CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x185B8, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65D24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x18648, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x65D81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x186C8, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x65DB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1872C, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x65DCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x18730, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x65EB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x18E84, symSize: 0x374 } + - { offsetInCU: 0x7D5, offset: 0x661CA, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1050, symBinAddr: 0x192C4, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x661DE, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1060, symBinAddr: 0x192D4, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x661F2, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10F4, symBinAddr: 0x192E4, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x66206, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x113C, symBinAddr: 0x1932C, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x6621A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1150, symBinAddr: 0x19340, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x6622E, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1194, symBinAddr: 0x19384, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x66242, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11D4, symBinAddr: 0x193C4, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x66256, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1398, symBinAddr: 0x19588, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x6626A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13C8, symBinAddr: 0x195B8, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x6627E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1584, symBinAddr: 0x19774, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x66488, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x18274, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x664B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x18388, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x665E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x18734, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x666BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x18E10, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x66751, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF84, symBinAddr: 0x191F8, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x667C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFEC, symBinAddr: 0x19260, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x66871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2BF0, symBinAddr: 0x7FC18, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x6688B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2BF8, symBinAddr: 0x7FC20, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x66899, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x197B4, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x668D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x197E8, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x6690B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x19828, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x6697B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x19908, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x6699B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x19908, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x66A13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x19A70, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x66A33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x19A70, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x66A59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x19ACC, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x66AD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x19B38, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x66AF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x19B38, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x66E0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1D28, symBinAddr: 0x1B4CC, symSize: 0x190 } + - { offsetInCU: 0x6B4, offset: 0x66ED6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x19BBC, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66F0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x19C44, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66F4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x19D3C, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66F60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x19D9C, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66F74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x19DEC, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66FAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x19E74, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x1A0A8, symSize: 0x5C } + - { offsetInCU: 0x98E, offset: 0x671B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x17CC, symBinAddr: 0x1AF70, symSize: 0x140 } + - { offsetInCU: 0xA8A, offset: 0x672AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x190C, symBinAddr: 0x1B0B0, symSize: 0x18 } + - { offsetInCU: 0xA9E, offset: 0x672C0, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A60, symBinAddr: 0x1B204, symSize: 0x2C } + - { offsetInCU: 0xAB6, offset: 0x672D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1CC4, symBinAddr: 0x1B468, symSize: 0x44 } + - { offsetInCU: 0xACA, offset: 0x672EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1D08, symBinAddr: 0x1B4AC, symSize: 0x20 } + - { offsetInCU: 0xADE, offset: 0x67300, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1EB8, symBinAddr: 0x1B65C, symSize: 0x20 } + - { offsetInCU: 0xAF2, offset: 0x67314, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1ED8, symBinAddr: 0x1B67C, symSize: 0x4 } + - { offsetInCU: 0xB06, offset: 0x67328, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1EDC, symBinAddr: 0x1B680, symSize: 0x44 } + - { offsetInCU: 0xB1A, offset: 0x6733C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1F20, symBinAddr: 0x1B6C4, symSize: 0x4 } + - { offsetInCU: 0xB2E, offset: 0x67350, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1F24, symBinAddr: 0x1B6C8, symSize: 0x44 } + - { offsetInCU: 0xB42, offset: 0x67364, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x2048, symBinAddr: 0x1B7EC, symSize: 0x18 } + - { offsetInCU: 0xB56, offset: 0x67378, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x2060, symBinAddr: 0x1B804, symSize: 0x14 } + - { offsetInCU: 0xB6A, offset: 0x6738C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x2074, symBinAddr: 0x1B818, symSize: 0x18 } + - { offsetInCU: 0xB7E, offset: 0x673A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x20EC, symBinAddr: 0x1B890, symSize: 0x6C } + - { offsetInCU: 0xB92, offset: 0x673B4, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2158, symBinAddr: 0x1B8FC, symSize: 0x14 } + - { offsetInCU: 0xBA6, offset: 0x673C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x216C, symBinAddr: 0x1B910, symSize: 0x50 } + - { offsetInCU: 0xBBA, offset: 0x673DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x21BC, symBinAddr: 0x1B960, symSize: 0x48 } + - { offsetInCU: 0xBCE, offset: 0x673F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x2204, symBinAddr: 0x1B9A8, symSize: 0x48 } + - { offsetInCU: 0xBE2, offset: 0x67404, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x224C, symBinAddr: 0x1B9F0, symSize: 0x8 } + - { offsetInCU: 0xBF6, offset: 0x67418, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2254, symBinAddr: 0x1B9F8, symSize: 0x4 } + - { offsetInCU: 0xC0A, offset: 0x6742C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2258, symBinAddr: 0x1B9FC, symSize: 0x8 } + - { offsetInCU: 0xC1E, offset: 0x67440, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x1BA04, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x67454, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2348, symBinAddr: 0x1BADC, symSize: 0x90 } + - { offsetInCU: 0xC46, offset: 0x67468, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23D8, symBinAddr: 0x1BB6C, symSize: 0xBC } + - { offsetInCU: 0xC5A, offset: 0x6747C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2494, symBinAddr: 0x1BC28, symSize: 0x4 } + - { offsetInCU: 0xC6E, offset: 0x67490, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2498, symBinAddr: 0x1BC2C, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x674A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x24A8, symBinAddr: 0x1BC3C, symSize: 0x90 } + - { offsetInCU: 0xC96, offset: 0x674B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2538, symBinAddr: 0x1BCCC, symSize: 0xBC } + - { offsetInCU: 0xCAA, offset: 0x674CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x25F4, symBinAddr: 0x1BD88, symSize: 0x8 } + - { offsetInCU: 0xCBE, offset: 0x674E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x25FC, symBinAddr: 0x1BD90, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x674F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2600, symBinAddr: 0x1BD94, symSize: 0x8 } + - { offsetInCU: 0xCE6, offset: 0x67508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2608, symBinAddr: 0x1BD9C, symSize: 0x10 } + - { offsetInCU: 0xD05, offset: 0x67527, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2640, symBinAddr: 0x1BDD4, symSize: 0x24 } + - { offsetInCU: 0xD2E, offset: 0x67550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x274C, symBinAddr: 0x1BEE0, symSize: 0x8 } + - { offsetInCU: 0xD42, offset: 0x67564, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2754, symBinAddr: 0x1BEE8, symSize: 0x10 } + - { offsetInCU: 0xD56, offset: 0x67578, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2764, symBinAddr: 0x1BEF8, symSize: 0x8 } + - { offsetInCU: 0xD6A, offset: 0x6758C, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x27F0, symBinAddr: 0x1BF00, symSize: 0x3C } + - { offsetInCU: 0xDEC, offset: 0x6760E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x197A4, symSize: 0x4 } + - { offsetInCU: 0xE08, offset: 0x6762A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x197A8, symSize: 0x4 } + - { offsetInCU: 0xE24, offset: 0x67646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x197AC, symSize: 0x4 } + - { offsetInCU: 0xE40, offset: 0x67662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x197B0, symSize: 0x4 } + - { offsetInCU: 0x10B2, offset: 0x678D4, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1985C, symSize: 0x40 } + - { offsetInCU: 0x10E0, offset: 0x67902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1989C, symSize: 0x60 } + - { offsetInCU: 0x1118, offset: 0x6793A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x19968, symSize: 0x84 } + - { offsetInCU: 0x113F, offset: 0x67961, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x199EC, symSize: 0x14 } + - { offsetInCU: 0x1186, offset: 0x679A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x19A00, symSize: 0x28 } + - { offsetInCU: 0x128D, offset: 0x67AAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x19CF0, symSize: 0x4C } + - { offsetInCU: 0x12AC, offset: 0x67ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x19D4C, symSize: 0x50 } + - { offsetInCU: 0x12D5, offset: 0x67AF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x19DAC, symSize: 0x3C } + - { offsetInCU: 0x12FA, offset: 0x67B1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x19DE8, symSize: 0x4 } + - { offsetInCU: 0x134F, offset: 0x67B71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x19F20, symSize: 0x4C } + - { offsetInCU: 0x136E, offset: 0x67B90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x19F6C, symSize: 0x50 } + - { offsetInCU: 0x1397, offset: 0x67BB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x19FBC, symSize: 0x3C } + - { offsetInCU: 0x13BC, offset: 0x67BDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x19FF8, symSize: 0x8 } + - { offsetInCU: 0x13DD, offset: 0x67BFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x1A000, symSize: 0x30 } + - { offsetInCU: 0x13FA, offset: 0x67C1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x1A030, symSize: 0x3C } + - { offsetInCU: 0x141F, offset: 0x67C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x1A06C, symSize: 0x3C } + - { offsetInCU: 0x1469, offset: 0x67C8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x960, symBinAddr: 0x1A104, symSize: 0x30 } + - { offsetInCU: 0x1486, offset: 0x67CA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x990, symBinAddr: 0x1A134, symSize: 0x44 } + - { offsetInCU: 0x14AF, offset: 0x67CD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x9D4, symBinAddr: 0x1A178, symSize: 0x3C } + - { offsetInCU: 0x14DB, offset: 0x67CFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x1A1B4, symSize: 0xC8 } + - { offsetInCU: 0x1552, offset: 0x67D74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x1A27C, symSize: 0xC0 } + - { offsetInCU: 0x15E1, offset: 0x67E03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB98, symBinAddr: 0x1A33C, symSize: 0xC0 } + - { offsetInCU: 0x16BA, offset: 0x67EDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xC58, symBinAddr: 0x1A3FC, symSize: 0x204 } + - { offsetInCU: 0x1723, offset: 0x67F45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1924, symBinAddr: 0x1B0C8, symSize: 0x13C } + - { offsetInCU: 0x17D1, offset: 0x67FF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xE5C, symBinAddr: 0x1A600, symSize: 0x70 } + - { offsetInCU: 0x17FB, offset: 0x6801D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xECC, symBinAddr: 0x1A670, symSize: 0x30 } + - { offsetInCU: 0x181D, offset: 0x6803F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xEFC, symBinAddr: 0x1A6A0, symSize: 0x178 } + - { offsetInCU: 0x18C2, offset: 0x680E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0x1074, symBinAddr: 0x1A818, symSize: 0x14 } + - { offsetInCU: 0x190F, offset: 0x68131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0x10F8, symBinAddr: 0x1A89C, symSize: 0x3C } + - { offsetInCU: 0x1995, offset: 0x681B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0x1088, symBinAddr: 0x1A82C, symSize: 0x70 } + - { offsetInCU: 0x1A29, offset: 0x6824B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0x1134, symBinAddr: 0x1A8D8, symSize: 0x78 } + - { offsetInCU: 0x1B0D, offset: 0x6832F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0x11AC, symBinAddr: 0x1A950, symSize: 0x224 } + - { offsetInCU: 0x1CF9, offset: 0x6851B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x13D0, symBinAddr: 0x1AB74, symSize: 0xC } + - { offsetInCU: 0x1D50, offset: 0x68572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1AB80, symSize: 0x4 } + - { offsetInCU: 0x1D6C, offset: 0x6858E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1AB80, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x685A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1AB80, symSize: 0x4 } + - { offsetInCU: 0x1D9E, offset: 0x685C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13E0, symBinAddr: 0x1AB84, symSize: 0x4 } + - { offsetInCU: 0x1DB6, offset: 0x685D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13E4, symBinAddr: 0x1AB88, symSize: 0xB8 } + - { offsetInCU: 0x1E56, offset: 0x68678, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14DC, symBinAddr: 0x1AC80, symSize: 0x4 } + - { offsetInCU: 0x1E6E, offset: 0x68690, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26AC, symBinAddr: 0x1BE40, symSize: 0x7C } + - { offsetInCU: 0x1F45, offset: 0x68767, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x149C, symBinAddr: 0x1AC40, symSize: 0x40 } + - { offsetInCU: 0x1F7A, offset: 0x6879C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14EC, symBinAddr: 0x1AC90, symSize: 0x98 } + - { offsetInCU: 0x2021, offset: 0x68843, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x1634, symBinAddr: 0x1ADD8, symSize: 0x198 } + - { offsetInCU: 0x251E, offset: 0x68D40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x1A8C, symBinAddr: 0x1B230, symSize: 0x24 } + - { offsetInCU: 0x2561, offset: 0x68D83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1AB0, symBinAddr: 0x1B254, symSize: 0x214 } + - { offsetInCU: 0x43, offset: 0x68F3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1C054, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68F4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1C090, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68F63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1C114, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68F7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1C23C, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68FA7, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1C26C, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68FBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1C288, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68FCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1C324, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68FE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1C388, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68FF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1C3E4, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x6900B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1C3F4, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x6901F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1C424, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x69033, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1C44C, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x69047, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1C4A8, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x6905B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1C52C, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x6906F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1C590, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x69083, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1C5EC, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x69097, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1C64C, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x690E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x1CA74, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x6913B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA28, symBinAddr: 0x1CA7C, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x6921E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA68, symBinAddr: 0x1CABC, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x6928F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAC8, symBinAddr: 0x1CB1C, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x692DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD4, symBinAddr: 0x1CB28, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x69338, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB50, symBinAddr: 0x1CBA4, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x69354, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB5C, symBinAddr: 0x1CBB0, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x69391, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBB8, symBinAddr: 0x1CC0C, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x693C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC04, symBinAddr: 0x1CC58, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x693EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC8, symBinAddr: 0x1D01C, symSize: 0x144 } + - { offsetInCU: 0x580, offset: 0x69478, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC44, symBinAddr: 0x1CC98, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x694D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC5C, symBinAddr: 0x1CCB0, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x6954D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC88, symBinAddr: 0x1CCDC, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x69582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x1CD24, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x695B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF4, symBinAddr: 0x1CD48, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x695CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1CD54, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x695EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x125C, symBinAddr: 0x1D22C, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x696AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD5C, symBinAddr: 0x1CDB0, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x696E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDA8, symBinAddr: 0x1CDFC, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x69705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13B0, symBinAddr: 0x1D380, symSize: 0x254 } + - { offsetInCU: 0x87C, offset: 0x69774, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE74, symBinAddr: 0x1CEC8, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x697A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEC4, symBinAddr: 0x1CF18, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x697DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xEE8, symBinAddr: 0x1CF3C, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x697F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x1CF48, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x69812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x1DCA0, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x698C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF50, symBinAddr: 0x1CFA4, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x698F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF90, symBinAddr: 0x1CFE4, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x6991C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EA4, symBinAddr: 0x1DE08, symSize: 0x2A8 } + - { offsetInCU: 0xA81, offset: 0x69979, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1170, symBinAddr: 0x1D160, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x6998D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x11D4, symBinAddr: 0x1D1A4, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x699A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1218, symBinAddr: 0x1D1E8, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x699B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x1D5D4, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x699C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x1D618, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x699DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x1D708, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x699F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x1D754, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x69A05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x1D75C, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x69A19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x1D760, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x69A2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x1D768, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x69A41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x1D778, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x69A55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x1D7C8, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x1D854, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x69A7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x1D85C, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69A91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x1D860, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x69AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x1D864, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x1D874, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x69ACD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x1D8AC, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69AE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x1D910, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x69AF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x1D9BC, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x69B09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x1DA20, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x69B1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x1DA7C, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x69B31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x1DAE0, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x69B45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x1DAF0, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x1DAF4, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x69B6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x1DB38, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69B81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x1DB3C, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x69B95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x1DB80, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69BA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x1DB84, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x69BBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x1DBC8, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x1DBCC, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69BE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x1DC10, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x69BF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x1DC14, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x69C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x1DC58, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x69C21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x1DC5C, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x69C35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x1E0B0, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x69C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x1E248, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69C5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x1E24C, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69C71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x1E25C, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x1E260, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69C99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x1E2A4, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x1E2A8, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69CC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x1E2EC, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69CD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x1E2F0, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x69D34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA8C, symBinAddr: 0x1CAE0, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x69DF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB68, symBinAddr: 0x1CBBC, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x69E10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB90, symBinAddr: 0x1CBE4, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x69E32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD0C, symBinAddr: 0x1CD60, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x69E4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD34, symBinAddr: 0x1CD88, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69E70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF00, symBinAddr: 0x1CF54, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69E8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF28, symBinAddr: 0x1CF7C, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69F7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1C65C, symSize: 0x10C } + - { offsetInCU: 0x10B4, offset: 0x69FAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x714, symBinAddr: 0x1C768, symSize: 0x1B8 } + - { offsetInCU: 0x10E5, offset: 0x69FDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8CC, symBinAddr: 0x1C920, symSize: 0x154 } + - { offsetInCU: 0xA6, offset: 0x6A198, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x1E5D8, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x6A1B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x1E5D8, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x6A1DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x2D4, symBinAddr: 0x1E5F0, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x6A2C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x318, symBinAddr: 0x1E634, symSize: 0x28 } + - { offsetInCU: 0x4BB, offset: 0x6A5AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x380, symBinAddr: 0x1E69C, symSize: 0x4 } + - { offsetInCU: 0x4CF, offset: 0x6A5C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x384, symBinAddr: 0x1E6A0, symSize: 0x44 } + - { offsetInCU: 0x4E3, offset: 0x6A5D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x3C8, symBinAddr: 0x1E6E4, symSize: 0x30 } + - { offsetInCU: 0x4F7, offset: 0x6A5E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x3F8, symBinAddr: 0x1E714, symSize: 0x7C } + - { offsetInCU: 0x50B, offset: 0x6A5FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x474, symBinAddr: 0x1E790, symSize: 0x184 } + - { offsetInCU: 0x51F, offset: 0x6A611, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0x5F8, symBinAddr: 0x1E914, symSize: 0x394 } + - { offsetInCU: 0x53A, offset: 0x6A62C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0x98C, symBinAddr: 0x1ECA8, symSize: 0x30 } + - { offsetInCU: 0x563, offset: 0x6A655, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0x9BC, symBinAddr: 0x1ECD8, symSize: 0x2C } + - { offsetInCU: 0x577, offset: 0x6A669, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0x9E8, symBinAddr: 0x1ED04, symSize: 0x34 } + - { offsetInCU: 0x58B, offset: 0x6A67D, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xA1C, symBinAddr: 0x1ED38, symSize: 0x44 } + - { offsetInCU: 0x59F, offset: 0x6A691, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xA60, symBinAddr: 0x1ED7C, symSize: 0x1B4 } + - { offsetInCU: 0x5B3, offset: 0x6A6A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0xC14, symBinAddr: 0x1EF30, symSize: 0x48 } + - { offsetInCU: 0x5C7, offset: 0x6A6B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0xC5C, symBinAddr: 0x1EF78, symSize: 0x78 } + - { offsetInCU: 0x5DB, offset: 0x6A6CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0xCD4, symBinAddr: 0x1EFF0, symSize: 0x10 } + - { offsetInCU: 0x5EF, offset: 0x6A6E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0xCE8, symBinAddr: 0x1F004, symSize: 0x8 } + - { offsetInCU: 0x603, offset: 0x6A6F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0xD28, symBinAddr: 0x1F044, symSize: 0x54 } + - { offsetInCU: 0x617, offset: 0x6A709, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xD7C, symBinAddr: 0x1F098, symSize: 0x14 } + - { offsetInCU: 0x62B, offset: 0x6A71D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0xD90, symBinAddr: 0x1F0AC, symSize: 0x3C } + - { offsetInCU: 0x63F, offset: 0x6A731, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0xDCC, symBinAddr: 0x1F0E8, symSize: 0x48 } + - { offsetInCU: 0x653, offset: 0x6A745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0xE14, symBinAddr: 0x1F130, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x6A759, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0xE54, symBinAddr: 0x1F170, symSize: 0x10 } + - { offsetInCU: 0x67B, offset: 0x6A76D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0xE64, symBinAddr: 0x1F180, symSize: 0x38 } + - { offsetInCU: 0x68F, offset: 0x6A781, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0xE9C, symBinAddr: 0x1F1B8, symSize: 0x6C } + - { offsetInCU: 0x6A3, offset: 0x6A795, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x1F224, symSize: 0xDC } + - { offsetInCU: 0x6B7, offset: 0x6A7A9, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0xFE4, symBinAddr: 0x1F300, symSize: 0x1C } + - { offsetInCU: 0x6CB, offset: 0x6A7BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1000, symBinAddr: 0x1F31C, symSize: 0x74 } + - { offsetInCU: 0x6DF, offset: 0x6A7D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1074, symBinAddr: 0x1F390, symSize: 0x5C } + - { offsetInCU: 0x6F3, offset: 0x6A7E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x10D0, symBinAddr: 0x1F3EC, symSize: 0x64 } + - { offsetInCU: 0x707, offset: 0x6A7F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1134, symBinAddr: 0x1F450, symSize: 0x10 } + - { offsetInCU: 0x71B, offset: 0x6A80D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1144, symBinAddr: 0x1F460, symSize: 0x28 } + - { offsetInCU: 0x72F, offset: 0x6A821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x116C, symBinAddr: 0x1F488, symSize: 0x3C } + - { offsetInCU: 0x743, offset: 0x6A835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x11A8, symBinAddr: 0x1F4C4, symSize: 0x6C } + - { offsetInCU: 0x757, offset: 0x6A849, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1220, symBinAddr: 0x1F530, symSize: 0x44 } + - { offsetInCU: 0x76B, offset: 0x6A85D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1264, symBinAddr: 0x1F574, symSize: 0x48 } + - { offsetInCU: 0x77F, offset: 0x6A871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x12AC, symBinAddr: 0x1F5BC, symSize: 0x40 } + - { offsetInCU: 0x793, offset: 0x6A885, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x12EC, symBinAddr: 0x1F5FC, symSize: 0x10 } + - { offsetInCU: 0x7A7, offset: 0x6A899, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1300, symBinAddr: 0x1F60C, symSize: 0x54 } + - { offsetInCU: 0x7BB, offset: 0x6A8AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1354, symBinAddr: 0x1F660, symSize: 0x44 } + - { offsetInCU: 0x7CF, offset: 0x6A8C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1398, symBinAddr: 0x1F6A4, symSize: 0x10 } + - { offsetInCU: 0x7E3, offset: 0x6A8D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x13B4, symBinAddr: 0x1F6B4, symSize: 0x90 } + - { offsetInCU: 0x7F7, offset: 0x6A8E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1444, symBinAddr: 0x1F744, symSize: 0xBC } + - { offsetInCU: 0x80B, offset: 0x6A8FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1500, symBinAddr: 0x1F800, symSize: 0x8 } + - { offsetInCU: 0x81F, offset: 0x6A911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1508, symBinAddr: 0x1F808, symSize: 0x4 } + - { offsetInCU: 0x833, offset: 0x6A925, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x150C, symBinAddr: 0x1F80C, symSize: 0xC } + - { offsetInCU: 0x847, offset: 0x6A939, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1518, symBinAddr: 0x1F818, symSize: 0x10 } + - { offsetInCU: 0x8BE, offset: 0x6A9B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x340, symBinAddr: 0x1E65C, symSize: 0x40 } + - { offsetInCU: 0xA61, offset: 0x6AB53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1E34C, symSize: 0x18 } + - { offsetInCU: 0xA9A, offset: 0x6AB8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x1E364, symSize: 0x94 } + - { offsetInCU: 0xAFB, offset: 0x6ABED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xAC, symBinAddr: 0x1E3F8, symSize: 0x2C } + - { offsetInCU: 0xB15, offset: 0x6AC07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0xD8, symBinAddr: 0x1E424, symSize: 0x34 } + - { offsetInCU: 0xB4A, offset: 0x6AC3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x10C, symBinAddr: 0x1E458, symSize: 0x10 } + - { offsetInCU: 0xB5E, offset: 0x6AC50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x11C, symBinAddr: 0x1E468, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x6AC71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x120, symBinAddr: 0x1E46C, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x6AC85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x128, symBinAddr: 0x1E474, symSize: 0x8 } + - { offsetInCU: 0xBC3, offset: 0x6ACB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x130, symBinAddr: 0x1E47C, symSize: 0x10 } + - { offsetInCU: 0xBE7, offset: 0x6ACD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x1E48C, symSize: 0x4 } + - { offsetInCU: 0xC08, offset: 0x6ACFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x144, symBinAddr: 0x1E490, symSize: 0x14 } + - { offsetInCU: 0xC1C, offset: 0x6AD0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x188, symBinAddr: 0x1E4A4, symSize: 0x14 } + - { offsetInCU: 0xC30, offset: 0x6AD22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x19C, symBinAddr: 0x1E4B8, symSize: 0x2C } + - { offsetInCU: 0xC44, offset: 0x6AD36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x1C8, symBinAddr: 0x1E4E4, symSize: 0x2C } + - { offsetInCU: 0xC58, offset: 0x6AD4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x1F4, symBinAddr: 0x1E510, symSize: 0x8 } + - { offsetInCU: 0xC6C, offset: 0x6AD5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x1FC, symBinAddr: 0x1E518, symSize: 0x8 } + - { offsetInCU: 0xC9E, offset: 0x6AD90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x204, symBinAddr: 0x1E520, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x6ADA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x214, symBinAddr: 0x1E530, symSize: 0x4 } + - { offsetInCU: 0xCD3, offset: 0x6ADC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x218, symBinAddr: 0x1E534, symSize: 0x8 } + - { offsetInCU: 0xCE7, offset: 0x6ADD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x220, symBinAddr: 0x1E53C, symSize: 0x8 } + - { offsetInCU: 0xD19, offset: 0x6AE0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x228, symBinAddr: 0x1E544, symSize: 0x10 } + - { offsetInCU: 0xD3D, offset: 0x6AE2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x238, symBinAddr: 0x1E554, symSize: 0x4 } + - { offsetInCU: 0xD5E, offset: 0x6AE50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x23C, symBinAddr: 0x1E558, symSize: 0x10 } + - { offsetInCU: 0xD82, offset: 0x6AE74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x24C, symBinAddr: 0x1E568, symSize: 0x4 } + - { offsetInCU: 0xDB1, offset: 0x6AEA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x250, symBinAddr: 0x1E56C, symSize: 0x28 } + - { offsetInCU: 0xE3C, offset: 0x6AF2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x278, symBinAddr: 0x1E594, symSize: 0x44 } + - { offsetInCU: 0x549, offset: 0x6B59E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x21FC, symBinAddr: 0x21A34, symSize: 0x6C0 } + - { offsetInCU: 0xA7A, offset: 0x6BACF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x6C5C, symBinAddr: 0x26494, symSize: 0x28 } + - { offsetInCU: 0x1B3D, offset: 0x6CB92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x13E70, symBinAddr: 0x336A8, symSize: 0x90 } + - { offsetInCU: 0x1BD5, offset: 0x6CC2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x14DD4, symBinAddr: 0x3460C, symSize: 0x44 } + - { offsetInCU: 0x1BF1, offset: 0x6CC46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x14E18, symBinAddr: 0x34650, symSize: 0x150 } + - { offsetInCU: 0x1D0A, offset: 0x6CD5F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x14F68, symBinAddr: 0x347A0, symSize: 0x54 } + - { offsetInCU: 0x1D88, offset: 0x6CDDD, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x15010, symBinAddr: 0x347F4, symSize: 0x4C } + - { offsetInCU: 0x1E16, offset: 0x6CE6B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x1505C, symBinAddr: 0x34840, symSize: 0x50 } + - { offsetInCU: 0x1E84, offset: 0x6CED9, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x150AC, symBinAddr: 0x34890, symSize: 0x64 } + - { offsetInCU: 0x251A, offset: 0x6D56F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x15F24, symBinAddr: 0x35708, symSize: 0x84 } + - { offsetInCU: 0x257E, offset: 0x6D5D3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x15FA8, symBinAddr: 0x3578C, symSize: 0x80 } + - { offsetInCU: 0x264B, offset: 0x6D6A0, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16144, symBinAddr: 0x35928, symSize: 0x40 } + - { offsetInCU: 0x286C, offset: 0x6D8C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x171B4, symBinAddr: 0x3691C, symSize: 0x1A0 } + - { offsetInCU: 0x29C1, offset: 0x6DA16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17354, symBinAddr: 0x36ABC, symSize: 0x360 } + - { offsetInCU: 0x30E3, offset: 0x6E138, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x184E4, symBinAddr: 0x37C4C, symSize: 0xBB8 } + - { offsetInCU: 0x414F, offset: 0x6F1A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1909C, symBinAddr: 0x38804, symSize: 0x1C0 } + - { offsetInCU: 0x42D0, offset: 0x6F325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1925C, symBinAddr: 0x389C4, symSize: 0x1A0 } + - { offsetInCU: 0x46D8, offset: 0x6F72D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x19E58, symBinAddr: 0x395C0, symSize: 0x8 } + - { offsetInCU: 0x46EC, offset: 0x6F741, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x19F28, symBinAddr: 0x39690, symSize: 0x10 } + - { offsetInCU: 0x4700, offset: 0x6F755, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x19F38, symBinAddr: 0x396A0, symSize: 0x14 } + - { offsetInCU: 0x4714, offset: 0x6F769, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x19F4C, symBinAddr: 0x396B4, symSize: 0x44 } + - { offsetInCU: 0x4728, offset: 0x6F77D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x19FA0, symBinAddr: 0x396F8, symSize: 0x44 } + - { offsetInCU: 0x473C, offset: 0x6F791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x19FE4, symBinAddr: 0x3973C, symSize: 0x30C } + - { offsetInCU: 0x4750, offset: 0x6F7A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1A2F0, symBinAddr: 0x39A48, symSize: 0x240 } + - { offsetInCU: 0x4764, offset: 0x6F7B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1A530, symBinAddr: 0x39C88, symSize: 0x70 } + - { offsetInCU: 0x4778, offset: 0x6F7CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1A5A0, symBinAddr: 0x39CF8, symSize: 0x34 } + - { offsetInCU: 0x478C, offset: 0x6F7E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1A5D4, symBinAddr: 0x39D2C, symSize: 0x174 } + - { offsetInCU: 0x47A0, offset: 0x6F7F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1A748, symBinAddr: 0x39EA0, symSize: 0xB4 } + - { offsetInCU: 0x47F3, offset: 0x6F848, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1B014, symBinAddr: 0x39F54, symSize: 0xC4 } + - { offsetInCU: 0x4869, offset: 0x6F8BE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B0D8, symBinAddr: 0x3A018, symSize: 0x78 } + - { offsetInCU: 0x4896, offset: 0x6F8EB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B150, symBinAddr: 0x3A090, symSize: 0x80 } + - { offsetInCU: 0x492A, offset: 0x6F97F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B1D0, symBinAddr: 0x3A110, symSize: 0x68 } + - { offsetInCU: 0x4A91, offset: 0x6FAE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B238, symBinAddr: 0x3A178, symSize: 0x640 } + - { offsetInCU: 0x4F55, offset: 0x6FFAA, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1B888, symBinAddr: 0x3A7C8, symSize: 0x4C } + - { offsetInCU: 0x4F69, offset: 0x6FFBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1B97C, symBinAddr: 0x3A834, symSize: 0x8 } + - { offsetInCU: 0x4F7D, offset: 0x6FFD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1B984, symBinAddr: 0x3A83C, symSize: 0x44 } + - { offsetInCU: 0x4F91, offset: 0x6FFE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1B9C8, symBinAddr: 0x3A880, symSize: 0x44 } + - { offsetInCU: 0x4FA5, offset: 0x6FFFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BA74, symBinAddr: 0x3A8E8, symSize: 0x8 } + - { offsetInCU: 0x4FB9, offset: 0x7000E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1BB04, symBinAddr: 0x3A970, symSize: 0x44 } + - { offsetInCU: 0x4FEE, offset: 0x70043, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BC0C, symBinAddr: 0x3AA78, symSize: 0x48 } + - { offsetInCU: 0x5002, offset: 0x70057, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BC78, symBinAddr: 0x3AAE4, symSize: 0x3C } + - { offsetInCU: 0x5016, offset: 0x7006B, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BCB4, symBinAddr: 0x3AB20, symSize: 0x34 } + - { offsetInCU: 0x502A, offset: 0x7007F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1BD0C, symBinAddr: 0x3AB78, symSize: 0x40 } + - { offsetInCU: 0x503E, offset: 0x70093, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1BD4C, symBinAddr: 0x3ABB8, symSize: 0x48 } + - { offsetInCU: 0x5052, offset: 0x700A7, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1BE58, symBinAddr: 0x3ACC4, symSize: 0x18 } + - { offsetInCU: 0x5066, offset: 0x700BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1BE70, symBinAddr: 0x3ACDC, symSize: 0x10 } + - { offsetInCU: 0x507A, offset: 0x700CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1BE80, symBinAddr: 0x3ACEC, symSize: 0x34 } + - { offsetInCU: 0x508E, offset: 0x700E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1BEF0, symBinAddr: 0x3AD5C, symSize: 0x30 } + - { offsetInCU: 0x56FF, offset: 0x70754, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9490, symBinAddr: 0x28CC8, symSize: 0x400 } + - { offsetInCU: 0x5862, offset: 0x708B7, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xA70C, symBinAddr: 0x29F44, symSize: 0x390 } + - { offsetInCU: 0x5B26, offset: 0x70B7B, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xAA9C, symBinAddr: 0x2A2D4, symSize: 0x3B8 } + - { offsetInCU: 0x5F84, offset: 0x70FD9, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xEE8C, symBinAddr: 0x2E6C4, symSize: 0x18C } + - { offsetInCU: 0x635A, offset: 0x713AF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x165D4, symBinAddr: 0x35DB8, symSize: 0x110 } + - { offsetInCU: 0x64B6, offset: 0x7150B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x16724, symBinAddr: 0x35EC8, symSize: 0xFC } + - { offsetInCU: 0x65D3, offset: 0x71628, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1700C, symBinAddr: 0x36774, symSize: 0x1A8 } + - { offsetInCU: 0x66E3, offset: 0x71738, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x176B4, symBinAddr: 0x36E1C, symSize: 0x188 } + - { offsetInCU: 0x6A30, offset: 0x71A85, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x195C4, symBinAddr: 0x38D2C, symSize: 0x1C8 } + - { offsetInCU: 0x6B5F, offset: 0x71BB4, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x1978C, symBinAddr: 0x38EF4, symSize: 0x11C } + - { offsetInCU: 0x6CC1, offset: 0x71D16, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x198A8, symBinAddr: 0x39010, symSize: 0xFC } + - { offsetInCU: 0x6E23, offset: 0x71E78, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x199A4, symBinAddr: 0x3910C, symSize: 0xE4 } + - { offsetInCU: 0x6F79, offset: 0x71FCE, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19A88, symBinAddr: 0x391F0, symSize: 0x114 } + - { offsetInCU: 0x70CF, offset: 0x72124, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19B9C, symBinAddr: 0x39304, symSize: 0xF0 } + - { offsetInCU: 0x7231, offset: 0x72286, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x19D74, symBinAddr: 0x394DC, symSize: 0xE4 } + - { offsetInCU: 0x73A8, offset: 0x723FD, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BB48, symBinAddr: 0x3A9B4, symSize: 0xC4 } + - { offsetInCU: 0x790F, offset: 0x72964, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x1F838, symSize: 0x190 } + - { offsetInCU: 0x798C, offset: 0x729E1, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x190, symBinAddr: 0x1F9C8, symSize: 0x88 } + - { offsetInCU: 0x7B04, offset: 0x72B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x218, symBinAddr: 0x1FA50, symSize: 0x1D04 } + - { offsetInCU: 0x8CA1, offset: 0x73CF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xAE54, symBinAddr: 0x2A68C, symSize: 0x37E0 } + - { offsetInCU: 0x9FC8, offset: 0x7501D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xE634, symBinAddr: 0x2DE6C, symSize: 0x578 } + - { offsetInCU: 0xA41A, offset: 0x7546F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10158, symBinAddr: 0x2F990, symSize: 0x2568 } + - { offsetInCU: 0xBAA8, offset: 0x76AFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13608, symBinAddr: 0x32E40, symSize: 0x3DC } + - { offsetInCU: 0xBC43, offset: 0x76C98, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x1F1C, symBinAddr: 0x21754, symSize: 0x2E0 } + - { offsetInCU: 0xC09A, offset: 0x770EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x28BC, symBinAddr: 0x220F4, symSize: 0x3B8 } + - { offsetInCU: 0xC326, offset: 0x7737B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x2C74, symBinAddr: 0x224AC, symSize: 0x3914 } + - { offsetInCU: 0xDED3, offset: 0x78F28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6588, symBinAddr: 0x25DC0, symSize: 0x278 } + - { offsetInCU: 0xDFDF, offset: 0x79034, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x6C84, symBinAddr: 0x264BC, symSize: 0x1848 } + - { offsetInCU: 0xEA66, offset: 0x79ABB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6800, symBinAddr: 0x26038, symSize: 0x118 } + - { offsetInCU: 0xEADF, offset: 0x79B34, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6918, symBinAddr: 0x26150, symSize: 0x15C } + - { offsetInCU: 0xEAFA, offset: 0x79B4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x6A74, symBinAddr: 0x262AC, symSize: 0x1E8 } + - { offsetInCU: 0xEE07, offset: 0x79E5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x8520, symBinAddr: 0x27D58, symSize: 0x3F8 } + - { offsetInCU: 0xF028, offset: 0x7A07D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9890, symBinAddr: 0x290C8, symSize: 0xE7C } + - { offsetInCU: 0xF934, offset: 0x7A989, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8918, symBinAddr: 0x28150, symSize: 0xB78 } + - { offsetInCU: 0x10304, offset: 0x7B359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF018, symBinAddr: 0x2E850, symSize: 0x1140 } + - { offsetInCU: 0x114B9, offset: 0x7C50E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1783C, symBinAddr: 0x36FA4, symSize: 0xB10 } + - { offsetInCU: 0x11F49, offset: 0x7CF9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x126C0, symBinAddr: 0x31EF8, symSize: 0xF48 } + - { offsetInCU: 0x12A2D, offset: 0x7DA82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x139E4, symBinAddr: 0x3321C, symSize: 0x1E8 } + - { offsetInCU: 0x12AB1, offset: 0x7DB06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x13BCC, symBinAddr: 0x33404, symSize: 0x294 } + - { offsetInCU: 0x12BC1, offset: 0x7DC16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x13F00, symBinAddr: 0x33738, symSize: 0xED4 } + - { offsetInCU: 0x135EC, offset: 0x7E641, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x15110, symBinAddr: 0x348F4, symSize: 0x64 } + - { offsetInCU: 0x1362A, offset: 0x7E67F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15174, symBinAddr: 0x34958, symSize: 0x30 } + - { offsetInCU: 0x13671, offset: 0x7E6C6, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x151A4, symBinAddr: 0x34988, symSize: 0x80 } + - { offsetInCU: 0x1370B, offset: 0x7E760, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x15224, symBinAddr: 0x34A08, symSize: 0x6C } + - { offsetInCU: 0x137BB, offset: 0x7E810, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15290, symBinAddr: 0x34A74, symSize: 0x4C } + - { offsetInCU: 0x13834, offset: 0x7E889, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x15308, symBinAddr: 0x34AEC, symSize: 0xE0 } + - { offsetInCU: 0x138A8, offset: 0x7E8FD, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x153E8, symBinAddr: 0x34BCC, symSize: 0xC4 } + - { offsetInCU: 0x138D1, offset: 0x7E926, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x154AC, symBinAddr: 0x34C90, symSize: 0x174 } + - { offsetInCU: 0x139AA, offset: 0x7E9FF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x15620, symBinAddr: 0x34E04, symSize: 0x104 } + - { offsetInCU: 0x13AD9, offset: 0x7EB2E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x15724, symBinAddr: 0x34F08, symSize: 0x124 } + - { offsetInCU: 0x13BFA, offset: 0x7EC4F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x15848, symBinAddr: 0x3502C, symSize: 0x170 } + - { offsetInCU: 0x13D7B, offset: 0x7EDD0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x159B8, symBinAddr: 0x3519C, symSize: 0x174 } + - { offsetInCU: 0x13EC9, offset: 0x7EF1E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x15B2C, symBinAddr: 0x35310, symSize: 0xFC } + - { offsetInCU: 0x13FFF, offset: 0x7F054, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x15C28, symBinAddr: 0x3540C, symSize: 0xFC } + - { offsetInCU: 0x14135, offset: 0x7F18A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x15E28, symBinAddr: 0x3560C, symSize: 0xFC } + - { offsetInCU: 0x1426B, offset: 0x7F2C0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x16028, symBinAddr: 0x3580C, symSize: 0x11C } + - { offsetInCU: 0x14356, offset: 0x7F3AB, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x163E8, symBinAddr: 0x35BCC, symSize: 0x138 } + - { offsetInCU: 0x14425, offset: 0x7F47A, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16520, symBinAddr: 0x35D04, symSize: 0xB4 } + - { offsetInCU: 0x144CB, offset: 0x7F520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x16820, symBinAddr: 0x35FC4, symSize: 0x5F0 } + - { offsetInCU: 0x147E4, offset: 0x7F839, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x16E20, symBinAddr: 0x365C4, symSize: 0x18C } + - { offsetInCU: 0x149E6, offset: 0x7FA3B, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1834C, symBinAddr: 0x37AB4, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x8016E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3ADC4, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x80186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3ADC4, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x8019A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3ADF4, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x801AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3AEE0, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x801C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x3B148, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x801D6, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x3B564, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x801EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x3B56C, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x801FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x3B7A8, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x80212, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x3B7F0, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x80226, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x3B8AC, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x80820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8BF0, symBinAddr: 0x444AC, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x808DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8E10, symBinAddr: 0x446CC, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x809AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xCDBC, symBinAddr: 0x48678, symSize: 0x774 } + - { offsetInCU: 0x9DA, offset: 0x80CE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD530, symBinAddr: 0x48DEC, symSize: 0x9CC } + - { offsetInCU: 0xCB4, offset: 0x80FBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xDEFC, symBinAddr: 0x497B8, symSize: 0x2AC } + - { offsetInCU: 0xDF6, offset: 0x810FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xE860, symBinAddr: 0x4A11C, symSize: 0x810 } + - { offsetInCU: 0x10EC, offset: 0x813F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF070, symBinAddr: 0x4A92C, symSize: 0xBB4 } + - { offsetInCU: 0x13C6, offset: 0x816CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xFC24, symBinAddr: 0x4B4E0, symSize: 0x314 } + - { offsetInCU: 0x1508, offset: 0x8180F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0xFF38, symBinAddr: 0x4B7F4, symSize: 0x208 } + - { offsetInCU: 0x1989, offset: 0x81C90, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1E38, symBinAddr: 0x3D6F4, symSize: 0x2C } + - { offsetInCU: 0x1E8E, offset: 0x82195, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x90D4, symBinAddr: 0x44990, symSize: 0x20 } + - { offsetInCU: 0x1ED3, offset: 0x821DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x90F4, symBinAddr: 0x449B0, symSize: 0x8C } + - { offsetInCU: 0x1F8F, offset: 0x82296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0x9BE4, symBinAddr: 0x454A0, symSize: 0x54 } + - { offsetInCU: 0x1FC9, offset: 0x822D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0x9C38, symBinAddr: 0x454F4, symSize: 0x50 } + - { offsetInCU: 0x201F, offset: 0x82326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9C88, symBinAddr: 0x45544, symSize: 0x64 } + - { offsetInCU: 0x2052, offset: 0x82359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x9CEC, symBinAddr: 0x455A8, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x82398, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9CF0, symBinAddr: 0x455AC, symSize: 0x78 } + - { offsetInCU: 0x20E7, offset: 0x823EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9D68, symBinAddr: 0x45624, symSize: 0x88 } + - { offsetInCU: 0x2158, offset: 0x8245F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x9DF0, symBinAddr: 0x456AC, symSize: 0xDC } + - { offsetInCU: 0x21DA, offset: 0x824E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x9ECC, symBinAddr: 0x45788, symSize: 0x4 } + - { offsetInCU: 0x21F6, offset: 0x824FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x9ED0, symBinAddr: 0x4578C, symSize: 0x4 } + - { offsetInCU: 0x2230, offset: 0x82537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0x9ED4, symBinAddr: 0x45790, symSize: 0x64 } + - { offsetInCU: 0x259D, offset: 0x828A4, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB17C, symBinAddr: 0x46A38, symSize: 0xE4 } + - { offsetInCU: 0x2681, offset: 0x82988, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xB344, symBinAddr: 0x46C00, symSize: 0x280 } + - { offsetInCU: 0x281D, offset: 0x82B24, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xBB74, symBinAddr: 0x47430, symSize: 0x64 } + - { offsetInCU: 0x2DFE, offset: 0x83105, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xC378, symBinAddr: 0x47C34, symSize: 0x374 } + - { offsetInCU: 0x35A0, offset: 0x838A7, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xC6EC, symBinAddr: 0x47FA8, symSize: 0x280 } + - { offsetInCU: 0x3977, offset: 0x83C7E, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xC96C, symBinAddr: 0x48228, symSize: 0x148 } + - { offsetInCU: 0x3B71, offset: 0x83E78, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xCAB4, symBinAddr: 0x48370, symSize: 0x1F8 } + - { offsetInCU: 0x3D30, offset: 0x84037, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x108F0, symBinAddr: 0x4C1AC, symSize: 0x104 } + - { offsetInCU: 0x3E7A, offset: 0x84181, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x133A8, symBinAddr: 0x4EC64, symSize: 0x120 } + - { offsetInCU: 0x3F92, offset: 0x84299, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x139B0, symBinAddr: 0x4F20C, symSize: 0x10 } + - { offsetInCU: 0x3FA6, offset: 0x842AD, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x139C0, symBinAddr: 0x4F21C, symSize: 0x10 } + - { offsetInCU: 0x3FBA, offset: 0x842C1, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x13A54, symBinAddr: 0x4F22C, symSize: 0x48 } + - { offsetInCU: 0x3FCE, offset: 0x842D5, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x13B40, symBinAddr: 0x4F274, symSize: 0x3C } + - { offsetInCU: 0x3FE2, offset: 0x842E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x13B7C, symBinAddr: 0x4F2B0, symSize: 0x44 } + - { offsetInCU: 0x3FF6, offset: 0x842FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOd', symObjAddr: 0x13BC0, symBinAddr: 0x4F2F4, symSize: 0x48 } + - { offsetInCU: 0x400A, offset: 0x84311, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x13C08, symBinAddr: 0x4F33C, symSize: 0x8 } + - { offsetInCU: 0x401E, offset: 0x84325, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x13C10, symBinAddr: 0x4F344, symSize: 0x10 } + - { offsetInCU: 0x4032, offset: 0x84339, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x13C20, symBinAddr: 0x4F354, symSize: 0x8 } + - { offsetInCU: 0x4046, offset: 0x8434D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x13CA8, symBinAddr: 0x4F398, symSize: 0x30 } + - { offsetInCU: 0x409E, offset: 0x843A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x13D68, symBinAddr: 0x4F458, symSize: 0x24 } + - { offsetInCU: 0x40DA, offset: 0x843E1, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x13DD0, symBinAddr: 0x4F4C0, symSize: 0x44 } + - { offsetInCU: 0x4BF8, offset: 0x84EFF, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x3B8BC, symSize: 0x80 } + - { offsetInCU: 0x4C60, offset: 0x84F67, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x80, symBinAddr: 0x3B93C, symSize: 0xA0 } + - { offsetInCU: 0x4DC3, offset: 0x850CA, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x120, symBinAddr: 0x3B9DC, symSize: 0x9C } + - { offsetInCU: 0x4EEE, offset: 0x851F5, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1BC, symBinAddr: 0x3BA78, symSize: 0x74 } + - { offsetInCU: 0x4F73, offset: 0x8527A, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x230, symBinAddr: 0x3BAEC, symSize: 0x4 } + - { offsetInCU: 0x4F8E, offset: 0x85295, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x234, symBinAddr: 0x3BAF0, symSize: 0x134 } + - { offsetInCU: 0x4FF9, offset: 0x85300, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x3BC24, symSize: 0xE8 } + - { offsetInCU: 0x50DB, offset: 0x853E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x3BD0C, symSize: 0x204 } + - { offsetInCU: 0x525A, offset: 0x85561, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x3BF10, symSize: 0xAF8 } + - { offsetInCU: 0x56EC, offset: 0x859F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x114C, symBinAddr: 0x3CA08, symSize: 0x3CC } + - { offsetInCU: 0x5903, offset: 0x85C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1518, symBinAddr: 0x3CDD4, symSize: 0x920 } + - { offsetInCU: 0x5C7A, offset: 0x85F81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x1E64, symBinAddr: 0x3D720, symSize: 0x21E4 } + - { offsetInCU: 0x7197, offset: 0x8749E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE1A8, symBinAddr: 0x49A64, symSize: 0x6B8 } + - { offsetInCU: 0x75A2, offset: 0x878A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4048, symBinAddr: 0x3F904, symSize: 0x158C } + - { offsetInCU: 0x845D, offset: 0x88764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x55D4, symBinAddr: 0x40E90, symSize: 0xFD4 } + - { offsetInCU: 0x8E64, offset: 0x8916B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x65A8, symBinAddr: 0x41E64, symSize: 0x3B0 } + - { offsetInCU: 0x8FCD, offset: 0x892D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x71DC, symBinAddr: 0x42A98, symSize: 0x1E8 } + - { offsetInCU: 0x921F, offset: 0x89526, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x73C4, symBinAddr: 0x42C80, symSize: 0x92C } + - { offsetInCU: 0x9A1F, offset: 0x89D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7CF0, symBinAddr: 0x435AC, symSize: 0x2A8 } + - { offsetInCU: 0x9B71, offset: 0x89E78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7F98, symBinAddr: 0x43854, symSize: 0x614 } + - { offsetInCU: 0x9F3E, offset: 0x8A245, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x85AC, symBinAddr: 0x43E68, symSize: 0x644 } + - { offsetInCU: 0xA1E0, offset: 0x8A4E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x9034, symBinAddr: 0x448F0, symSize: 0x80 } + - { offsetInCU: 0xA203, offset: 0x8A50A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x90B4, symBinAddr: 0x44970, symSize: 0x20 } + - { offsetInCU: 0xA28E, offset: 0x8A595, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x9180, symBinAddr: 0x44A3C, symSize: 0xA24 } + - { offsetInCU: 0xA6BD, offset: 0x8A9C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x9BA4, symBinAddr: 0x45460, symSize: 0x40 } + - { offsetInCU: 0xA730, offset: 0x8AA37, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0x9F38, symBinAddr: 0x457F4, symSize: 0x4 } + - { offsetInCU: 0xA74B, offset: 0x8AA52, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F3C, symBinAddr: 0x457F8, symSize: 0x8 } + - { offsetInCU: 0xA763, offset: 0x8AA6A, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F3C, symBinAddr: 0x457F8, symSize: 0x8 } + - { offsetInCU: 0xA774, offset: 0x8AA7B, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0x9F44, symBinAddr: 0x45800, symSize: 0xC8 } + - { offsetInCU: 0xA7FC, offset: 0x8AB03, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA00C, symBinAddr: 0x458C8, symSize: 0xCC } + - { offsetInCU: 0xA89C, offset: 0x8ABA3, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA1D4, symBinAddr: 0x45A90, symSize: 0x1F4 } + - { offsetInCU: 0xA93C, offset: 0x8AC43, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA3C8, symBinAddr: 0x45C84, symSize: 0x1C4 } + - { offsetInCU: 0xA9F8, offset: 0x8ACFF, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA58C, symBinAddr: 0x45E48, symSize: 0x340 } + - { offsetInCU: 0xAAEF, offset: 0x8ADF6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xA8CC, symBinAddr: 0x46188, symSize: 0x340 } + - { offsetInCU: 0xABD9, offset: 0x8AEE0, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xAC0C, symBinAddr: 0x464C8, symSize: 0x1DC } + - { offsetInCU: 0xAC7E, offset: 0x8AF85, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xADE8, symBinAddr: 0x466A4, symSize: 0x204 } + - { offsetInCU: 0xAD1C, offset: 0x8B023, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xAFEC, symBinAddr: 0x468A8, symSize: 0x4C } + - { offsetInCU: 0xADC8, offset: 0x8B0CF, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB038, symBinAddr: 0x468F4, symSize: 0x90 } + - { offsetInCU: 0xAE54, offset: 0x8B15B, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB0C8, symBinAddr: 0x46984, symSize: 0x40 } + - { offsetInCU: 0xAE91, offset: 0x8B198, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB108, symBinAddr: 0x469C4, symSize: 0x18 } + - { offsetInCU: 0xAEE3, offset: 0x8B1EA, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB120, symBinAddr: 0x469DC, symSize: 0x3C } + - { offsetInCU: 0xAF0C, offset: 0x8B213, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB15C, symBinAddr: 0x46A18, symSize: 0x1C } + - { offsetInCU: 0xAF4D, offset: 0x8B254, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xB848, symBinAddr: 0x47104, symSize: 0x8C } + - { offsetInCU: 0xAF61, offset: 0x8B268, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xB8D4, symBinAddr: 0x47190, symSize: 0x4C } + - { offsetInCU: 0xAF91, offset: 0x8B298, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xB920, symBinAddr: 0x471DC, symSize: 0x164 } + - { offsetInCU: 0xAFEE, offset: 0x8B2F5, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBA84, symBinAddr: 0x47340, symSize: 0xF0 } + - { offsetInCU: 0xB015, offset: 0x8B31C, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xBBD8, symBinAddr: 0x47494, symSize: 0x214 } + - { offsetInCU: 0xB04A, offset: 0x8B351, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xBDEC, symBinAddr: 0x476A8, symSize: 0x78 } + - { offsetInCU: 0xB05E, offset: 0x8B365, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xBE64, symBinAddr: 0x47720, symSize: 0x1C } + - { offsetInCU: 0xB072, offset: 0x8B379, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBE80, symBinAddr: 0x4773C, symSize: 0x1C } + - { offsetInCU: 0xB086, offset: 0x8B38D, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBE9C, symBinAddr: 0x47758, symSize: 0x1C } + - { offsetInCU: 0xB0BD, offset: 0x8B3C4, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xBEB8, symBinAddr: 0x47774, symSize: 0x104 } + - { offsetInCU: 0xB1BB, offset: 0x8B4C2, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBFBC, symBinAddr: 0x47878, symSize: 0x174 } + - { offsetInCU: 0xB2D1, offset: 0x8B5D8, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC130, symBinAddr: 0x479EC, symSize: 0x124 } + - { offsetInCU: 0xB3A5, offset: 0x8B6AC, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC254, symBinAddr: 0x47B10, symSize: 0x124 } + - { offsetInCU: 0xB4E4, offset: 0x8B7EB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xCCAC, symBinAddr: 0x48568, symSize: 0x14 } + - { offsetInCU: 0xB506, offset: 0x8B80D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xCCC0, symBinAddr: 0x4857C, symSize: 0xFC } + - { offsetInCU: 0xB5E0, offset: 0x8B8E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x10140, symBinAddr: 0x4B9FC, symSize: 0x7B0 } + - { offsetInCU: 0xBA67, offset: 0x8BD6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x109F4, symBinAddr: 0x4C2B0, symSize: 0x29B4 } + - { offsetInCU: 0xC1FB, offset: 0x8C502, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x134C8, symBinAddr: 0x4ED84, symSize: 0x488 } + - { offsetInCU: 0x95, offset: 0x8C922, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x5050C, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8C975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xF98, symBinAddr: 0x50558, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8C9A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xFBC, symBinAddr: 0x5057C, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8C9C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xFC8, symBinAddr: 0x50588, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8C9DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5F38, symBinAddr: 0x55468, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8CA75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1024, symBinAddr: 0x505E4, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8CAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1074, symBinAddr: 0x50634, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8CACF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x606C, symBinAddr: 0x5559C, symSize: 0x132C } + - { offsetInCU: 0x2D0, offset: 0x8CB5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x10C4, symBinAddr: 0x50684, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8CBB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x10DC, symBinAddr: 0x5069C, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8CC32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1108, symBinAddr: 0x506C8, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8CC67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1170, symBinAddr: 0x50730, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8CC98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1194, symBinAddr: 0x50754, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8CCB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11A0, symBinAddr: 0x50760, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8CCD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E7C, symBinAddr: 0x56994, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8CDC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11FC, symBinAddr: 0x507BC, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8CDF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x124C, symBinAddr: 0x5080C, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8CE1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8078, symBinAddr: 0x56B90, symSize: 0xF38 } + - { offsetInCU: 0x611, offset: 0x8CE9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x146C, symBinAddr: 0x50A2C, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8CECF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1498, symBinAddr: 0x50A58, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8CEEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1508, symBinAddr: 0x50AC8, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8CF20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1568, symBinAddr: 0x50B28, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8CF70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x158C, symBinAddr: 0x50B4C, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8CF8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1598, symBinAddr: 0x50B58, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8CFA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x918C, symBinAddr: 0x57CA4, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8D007, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15F4, symBinAddr: 0x50BB4, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8D03E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x163C, symBinAddr: 0x50BFC, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8D061, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x91E8, symBinAddr: 0x57D00, symSize: 0x220 } + - { offsetInCU: 0x838, offset: 0x8D0C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1684, symBinAddr: 0x50C44, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8D0FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x168C, symBinAddr: 0x50C4C, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8D12B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16B0, symBinAddr: 0x50C70, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8D147, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16BC, symBinAddr: 0x50C7C, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8D163, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9408, symBinAddr: 0x57F20, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8D2BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1718, symBinAddr: 0x50CD8, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8D2F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1778, symBinAddr: 0x50D38, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8D319, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x96F4, symBinAddr: 0x5820C, symSize: 0x538 } + - { offsetInCU: 0xB19, offset: 0x8D3A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x50D90, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8D426, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x17E8, symBinAddr: 0x50DA8, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8D509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x182C, symBinAddr: 0x50DEC, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8D58F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1894, symBinAddr: 0x50E54, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8D5E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18B8, symBinAddr: 0x50E78, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8D615, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18DC, symBinAddr: 0x50E9C, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8D631, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18E8, symBinAddr: 0x50EA8, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8D64D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9C2C, symBinAddr: 0x58744, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8D6DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1944, symBinAddr: 0x50F04, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8D712, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1970, symBinAddr: 0x50F30, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8D735, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9CE8, symBinAddr: 0x58800, symSize: 0x1A0 } + - { offsetInCU: 0xF18, offset: 0x8D7A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A18, symBinAddr: 0x50FD8, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8D7DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x51050, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8D80B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x51074, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8D827, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x51080, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8D843, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9E88, symBinAddr: 0x589A0, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8D93E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B1C, symBinAddr: 0x510DC, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8D975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B8C, symBinAddr: 0x5114C, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8D998, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA0D4, symBinAddr: 0x58BEC, symSize: 0x8C8 } + - { offsetInCU: 0x11A5, offset: 0x8DA32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1D78, symBinAddr: 0x51338, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8DA63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1DA4, symBinAddr: 0x51364, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8DA77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1DCC, symBinAddr: 0x5138C, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8DAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DD4, symBinAddr: 0x51394, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8DAFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1DF8, symBinAddr: 0x513B8, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8DB18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E04, symBinAddr: 0x513C4, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8DB34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAA68, symBinAddr: 0x59580, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8DBB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x51420, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8DBE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EB8, symBinAddr: 0x51478, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8DC0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAAC4, symBinAddr: 0x595DC, symSize: 0x760 } + - { offsetInCU: 0x1457, offset: 0x8DCE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D00, symBinAddr: 0x552B4, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8DD3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5D54, symBinAddr: 0x55308, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8DD90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5DD4, symBinAddr: 0x55388, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8DDC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5DDC, symBinAddr: 0x55390, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8DE45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5E3C, symBinAddr: 0x553F0, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8DE62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x20D0, symBinAddr: 0x51690, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8DE76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x20F0, symBinAddr: 0x516B0, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8DE8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x21E4, symBinAddr: 0x517A4, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8DE9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x2564, symBinAddr: 0x51B24, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8DEB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x31BC, symBinAddr: 0x5277C, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8DEE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x31EC, symBinAddr: 0x527AC, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8DEF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x3218, symBinAddr: 0x527D8, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8DF0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x3244, symBinAddr: 0x52804, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8DF1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x3270, symBinAddr: 0x52830, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8DF32, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x329C, symBinAddr: 0x5285C, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8DF46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x32A4, symBinAddr: 0x52864, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8DF5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x3664, symBinAddr: 0x52C24, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8DF6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x36C0, symBinAddr: 0x52C80, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8DF82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x37AC, symBinAddr: 0x52D6C, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8DF96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x37BC, symBinAddr: 0x52D7C, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8DFAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x37EC, symBinAddr: 0x52DAC, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8DFBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x38CC, symBinAddr: 0x52E8C, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8DFD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x3C04, symBinAddr: 0x531C4, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8DFE6, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4468, symBinAddr: 0x53A28, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8DFFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4470, symBinAddr: 0x53A30, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8E00E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x47D4, symBinAddr: 0x53D94, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8E022, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x4830, symBinAddr: 0x53DF0, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8E036, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x4914, symBinAddr: 0x53ED4, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8E04A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x4924, symBinAddr: 0x53EE4, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8E05E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x49C8, symBinAddr: 0x53F88, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8E072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x4B54, symBinAddr: 0x54114, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8E086, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4EFC, symBinAddr: 0x544BC, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8E09A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4F40, symBinAddr: 0x54500, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8E0AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x50BC, symBinAddr: 0x5467C, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8E0C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x5118, symBinAddr: 0x546D8, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8E0D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x51AC, symBinAddr: 0x5476C, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8E0EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x51BC, symBinAddr: 0x5477C, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8E0FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x5224, symBinAddr: 0x547E4, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8E112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x5300, symBinAddr: 0x548C0, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8E126, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x546C, symBinAddr: 0x54A2C, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8E13A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5498, symBinAddr: 0x54A58, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8E14E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x555C, symBinAddr: 0x54B1C, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8E162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x55B8, symBinAddr: 0x54B78, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8E176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x5634, symBinAddr: 0x54BF4, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8E18A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x5644, symBinAddr: 0x54C04, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8E19E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x568C, symBinAddr: 0x54C4C, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8E1B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x5770, symBinAddr: 0x54D30, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8E1C6, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5908, symBinAddr: 0x54EC8, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8E1DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x593C, symBinAddr: 0x54EFC, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8E1EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5A38, symBinAddr: 0x54FF8, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8E202, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x5A94, symBinAddr: 0x55054, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8E216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x5B10, symBinAddr: 0x550D0, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8E22A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x5B20, symBinAddr: 0x550E0, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8E23E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5B48, symBinAddr: 0x55108, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8E252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x5B84, symBinAddr: 0x55144, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8E266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x5BFC, symBinAddr: 0x551B0, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8E27A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5C40, symBinAddr: 0x551F4, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8E28E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x5C9C, symBinAddr: 0x55250, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8E2A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x5CF0, symBinAddr: 0x552A4, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8E2B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5E44, symBinAddr: 0x553F8, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8E2CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5E48, symBinAddr: 0x553FC, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8E2DE, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F10, symBinAddr: 0x55440, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8E2F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x7398, symBinAddr: 0x568C8, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8E306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x73DC, symBinAddr: 0x5690C, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8E31A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7E38, symBinAddr: 0x56950, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8E32E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x8FB0, symBinAddr: 0x57AC8, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8E342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x8FF4, symBinAddr: 0x57B0C, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8E356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x9038, symBinAddr: 0x57B50, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8E36A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x907C, symBinAddr: 0x57B94, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8E37E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x90C0, symBinAddr: 0x57BD8, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8E392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x9104, symBinAddr: 0x57C1C, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8E3A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x9148, symBinAddr: 0x57C60, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8E3BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA99C, symBinAddr: 0x594B4, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8E3CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xA9E0, symBinAddr: 0x594F8, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8E3E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xAA24, symBinAddr: 0x5953C, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8E3F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xB224, symBinAddr: 0x59D3C, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8E40A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB268, symBinAddr: 0x59D80, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8E41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xB2AC, symBinAddr: 0x59DC4, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8E432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xB334, symBinAddr: 0x59E4C, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8E446, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB378, symBinAddr: 0x59E90, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E45A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB3CC, symBinAddr: 0x59ED4, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E46E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB45C, symBinAddr: 0x59F64, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E482, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB518, symBinAddr: 0x5A020, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8E496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB520, symBinAddr: 0x5A028, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8E4AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB524, symBinAddr: 0x5A02C, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8E4BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB530, symBinAddr: 0x5A038, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8E4D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB540, symBinAddr: 0x5A048, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8E4E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB5D0, symBinAddr: 0x5A0D8, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8E4FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB68C, symBinAddr: 0x5A194, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8E50E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB690, symBinAddr: 0x5A198, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8E522, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB6A0, symBinAddr: 0x5A1A8, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8E536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB730, symBinAddr: 0x5A238, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8E54A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB7EC, symBinAddr: 0x5A2F4, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8E55E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB7F0, symBinAddr: 0x5A2F8, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8E572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB800, symBinAddr: 0x5A308, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8E586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB890, symBinAddr: 0x5A398, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8E59A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB94C, symBinAddr: 0x5A454, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8E5AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB950, symBinAddr: 0x5A458, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8E5C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB960, symBinAddr: 0x5A468, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8E5D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB9F0, symBinAddr: 0x5A4F8, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8E5EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xBAAC, symBinAddr: 0x5A5B4, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8E5FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBAB4, symBinAddr: 0x5A5BC, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8E612, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xBAB8, symBinAddr: 0x5A5C0, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8E626, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBAC0, symBinAddr: 0x5A5C8, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8E63A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xBAD0, symBinAddr: 0x5A5D8, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8E64E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xBB60, symBinAddr: 0x5A668, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8E662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBC1C, symBinAddr: 0x5A724, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8E676, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBC20, symBinAddr: 0x5A728, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8E68A, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBC30, symBinAddr: 0x5A738, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8E69E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xBC54, symBinAddr: 0x5A75C, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8E6B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xBC74, symBinAddr: 0x5A77C, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8E6C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xBCB4, symBinAddr: 0x5A7BC, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8E6DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBCC4, symBinAddr: 0x5A7CC, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8E6EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBCC8, symBinAddr: 0x5A7D0, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8E702, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBD0C, symBinAddr: 0x5A814, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8E716, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBD10, symBinAddr: 0x5A818, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8E72A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBD54, symBinAddr: 0x5A85C, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8E73E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBD58, symBinAddr: 0x5A860, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8E752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBD9C, symBinAddr: 0x5A8A4, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8E766, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBDA0, symBinAddr: 0x5A8A8, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8E77A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBDE4, symBinAddr: 0x5A8EC, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8E78E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBDE8, symBinAddr: 0x5A8F0, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8E7A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBE2C, symBinAddr: 0x5A934, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8E7B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBE30, symBinAddr: 0x5A938, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8E7CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBE74, symBinAddr: 0x5A97C, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8E7DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBE78, symBinAddr: 0x5A980, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8E7F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBEBC, symBinAddr: 0x5A9C4, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8E806, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBEC0, symBinAddr: 0x5A9C8, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8E81A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF04, symBinAddr: 0x5AA0C, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8E82E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF08, symBinAddr: 0x5AA10, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8E842, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF4C, symBinAddr: 0x5AA54, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8E856, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBF50, symBinAddr: 0x5AA58, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8E86A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF94, symBinAddr: 0x5AA9C, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8E87E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF98, symBinAddr: 0x5AAA0, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8E892, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFDC, symBinAddr: 0x5AAE4, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8E8A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBFE0, symBinAddr: 0x5AAE8, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8E8BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC024, symBinAddr: 0x5AB2C, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8E8CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC028, symBinAddr: 0x5AB30, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8E8E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC06C, symBinAddr: 0x5AB74, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8E8F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC070, symBinAddr: 0x5AB78, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8E90A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC0B4, symBinAddr: 0x5ABBC, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8E91E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC0B8, symBinAddr: 0x5ABC0, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8E932, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0FC, symBinAddr: 0x5AC04, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8E946, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC100, symBinAddr: 0x5AC08, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8E95A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC144, symBinAddr: 0x5AC4C, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8E96E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC148, symBinAddr: 0x5AC50, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8E982, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC18C, symBinAddr: 0x5AC94, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8E996, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC190, symBinAddr: 0x5AC98, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8E9AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xC1D4, symBinAddr: 0x5ACDC, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8E9BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xC218, symBinAddr: 0x5AD20, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8E9D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xC2A8, symBinAddr: 0x5ADB0, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8E9E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xC364, symBinAddr: 0x5AE6C, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8E9FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xC368, symBinAddr: 0x5AE70, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8EA0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC378, symBinAddr: 0x5AE80, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8EA22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC37C, symBinAddr: 0x5AE84, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8EA36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC3C0, symBinAddr: 0x5AEC8, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8EA4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC3C4, symBinAddr: 0x5AECC, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8EA5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC408, symBinAddr: 0x5AF10, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8EA72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC40C, symBinAddr: 0x5AF14, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8EAA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xFD4, symBinAddr: 0x50594, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8EABC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xFFC, symBinAddr: 0x505BC, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8EADE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11AC, symBinAddr: 0x5076C, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8EAFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11D4, symBinAddr: 0x50794, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8EB16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x129C, symBinAddr: 0x5085C, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8EB96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12A8, symBinAddr: 0x50868, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8EC18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x134C, symBinAddr: 0x5090C, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8EC56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x13CC, symBinAddr: 0x5098C, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8ECBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x15A4, symBinAddr: 0x50B64, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8ECD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x15CC, symBinAddr: 0x50B8C, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8ECFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x50C88, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8ED16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x16F0, symBinAddr: 0x50CB0, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8ED69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1854, symBinAddr: 0x50E14, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8EE0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x18F4, symBinAddr: 0x50EB4, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8EE27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x191C, symBinAddr: 0x50EDC, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8EE49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1ACC, symBinAddr: 0x5108C, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8EE65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x510B4, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8EEAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1BF4, symBinAddr: 0x511B4, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8EF82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1C7C, symBinAddr: 0x5123C, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8F000, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CDC, symBinAddr: 0x5129C, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8F052, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D1C, symBinAddr: 0x512DC, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8F0B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E10, symBinAddr: 0x513D0, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8F0D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1E38, symBinAddr: 0x513F8, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8F111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E00, symBinAddr: 0x553B4, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8F2A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x4F5C0, symSize: 0x17C } + - { offsetInCU: 0x2A47, offset: 0x8F2D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x17C, symBinAddr: 0x4F73C, symSize: 0x264 } + - { offsetInCU: 0x2A78, offset: 0x8F305, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x3E0, symBinAddr: 0x4F9A0, symSize: 0x190 } + - { offsetInCU: 0x2AA9, offset: 0x8F336, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x570, symBinAddr: 0x4FB30, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8F359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x60C, symBinAddr: 0x4FBCC, symSize: 0x268 } + - { offsetInCU: 0x2AFD, offset: 0x8F38A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x874, symBinAddr: 0x4FE34, symSize: 0x118 } + - { offsetInCU: 0x2B2E, offset: 0x8F3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x98C, symBinAddr: 0x4FF4C, symSize: 0x214 } + - { offsetInCU: 0x2B5F, offset: 0x8F3EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBA0, symBinAddr: 0x50160, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8F422, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC50, symBinAddr: 0x50210, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F464, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x502C0, symSize: 0x244 } + - { offsetInCU: 0x2DE8, offset: 0x8F675, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F08, symBinAddr: 0x514C8, symSize: 0x1B8 } + - { offsetInCU: 0x2E34, offset: 0x8F6C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x20C0, symBinAddr: 0x51680, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8F7A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5AFB0, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8F8E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5B01C, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8F8F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5B070, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8F908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5B0B4, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8F9E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5AFB0, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8FA03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5AFB8, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8FA35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5AFC0, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8FA49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5AFD0, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8FA6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5AFD4, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8FA7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5AFDC, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x8FAB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5AFE4, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x8FAD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5AFF4, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x8FAF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5AFF8, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x8FB09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5B000, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x8FB39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5B008, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x8FB5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5B018, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x8FBB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5B0C4, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x8FC04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5B0E8, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x8FD0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5B0C4, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x8FD72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5B108, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x8FDC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5B12C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x8FEC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5B108, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x8FF35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5B14C, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x8FF86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5B1AC, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x8FF9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5B1B4, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x8FFAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5B1F0, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x900B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5B14C, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x9011E, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5B268, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x90272, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5B5D0, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x90498, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5B268, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x906D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5B618, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x90724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5B63C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x9082A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5B618, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x9090C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA34, symBinAddr: 0x5C050, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x90928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA40, symBinAddr: 0x5C05C, symSize: 0x64 } + - { offsetInCU: 0xD5, offset: 0x90940, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA40, symBinAddr: 0x5C05C, symSize: 0x64 } + - { offsetInCU: 0xE6, offset: 0x90951, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x5C0C0, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x909E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xC78, symBinAddr: 0x5C294, symSize: 0xC } + - { offsetInCU: 0x191, offset: 0x909FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xC84, symBinAddr: 0x5C2A0, symSize: 0x2C } + - { offsetInCU: 0x1A9, offset: 0x90A14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xC84, symBinAddr: 0x5C2A0, symSize: 0x2C } + - { offsetInCU: 0x560, offset: 0x90DCB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x790, symBinAddr: 0x5BDAC, symSize: 0xC8 } + - { offsetInCU: 0x5D4, offset: 0x90E3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xCB0, symBinAddr: 0x5C2CC, symSize: 0x3EC } + - { offsetInCU: 0x7FD, offset: 0x91068, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x109C, symBinAddr: 0x5C6B8, symSize: 0x13C } + - { offsetInCU: 0xA1F, offset: 0x9128A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3344, symBinAddr: 0x5E8C0, symSize: 0x204 } + - { offsetInCU: 0xAD0, offset: 0x9133B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x35EC, symBinAddr: 0x5EB0C, symSize: 0x23C } + - { offsetInCU: 0xB35, offset: 0x913A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3828, symBinAddr: 0x5ED48, symSize: 0x238 } + - { offsetInCU: 0xC5D, offset: 0x914C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3A60, symBinAddr: 0x5EF80, symSize: 0x29C } + - { offsetInCU: 0xD9C, offset: 0x91607, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3CFC, symBinAddr: 0x5F21C, symSize: 0x188 } + - { offsetInCU: 0xDE2, offset: 0x9164D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E84, symBinAddr: 0x5F3A4, symSize: 0x43C } + - { offsetInCU: 0x1119, offset: 0x91984, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x42C0, symBinAddr: 0x5F7E0, symSize: 0xC4 } + - { offsetInCU: 0x125E, offset: 0x91AC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2DD0, symBinAddr: 0x5E3EC, symSize: 0x4 } + - { offsetInCU: 0x1272, offset: 0x91ADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2DD4, symBinAddr: 0x5E3F0, symSize: 0x44 } + - { offsetInCU: 0x1286, offset: 0x91AF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2E18, symBinAddr: 0x5E434, symSize: 0x4 } + - { offsetInCU: 0x129A, offset: 0x91B05, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2E1C, symBinAddr: 0x5E438, symSize: 0x4C } + - { offsetInCU: 0x12AE, offset: 0x91B19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x2EAC, symBinAddr: 0x5E484, symSize: 0x4 } + - { offsetInCU: 0x12C2, offset: 0x91B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x2EB0, symBinAddr: 0x5E488, symSize: 0x44 } + - { offsetInCU: 0x12D6, offset: 0x91B41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x2F04, symBinAddr: 0x5E4CC, symSize: 0x90 } + - { offsetInCU: 0x12EA, offset: 0x91B55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x2F94, symBinAddr: 0x5E55C, symSize: 0xBC } + - { offsetInCU: 0x12FE, offset: 0x91B69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x3050, symBinAddr: 0x5E618, symSize: 0x8 } + - { offsetInCU: 0x1312, offset: 0x91B7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x3058, symBinAddr: 0x5E620, symSize: 0x4 } + - { offsetInCU: 0x1326, offset: 0x91B91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x305C, symBinAddr: 0x5E624, symSize: 0x8 } + - { offsetInCU: 0x133A, offset: 0x91BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3064, symBinAddr: 0x5E62C, symSize: 0x10 } + - { offsetInCU: 0x134E, offset: 0x91BB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3074, symBinAddr: 0x5E63C, symSize: 0x90 } + - { offsetInCU: 0x1362, offset: 0x91BCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3104, symBinAddr: 0x5E6CC, symSize: 0xBC } + - { offsetInCU: 0x1376, offset: 0x91BE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x31C0, symBinAddr: 0x5E788, symSize: 0x8 } + - { offsetInCU: 0x138A, offset: 0x91BF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x31C8, symBinAddr: 0x5E790, symSize: 0x4 } + - { offsetInCU: 0x139E, offset: 0x91C09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x31CC, symBinAddr: 0x5E794, symSize: 0xC } + - { offsetInCU: 0x13B2, offset: 0x91C1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x31D8, symBinAddr: 0x5E7A0, symSize: 0x10 } + - { offsetInCU: 0x13C6, offset: 0x91C31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x31E8, symBinAddr: 0x5E7B0, symSize: 0x20 } + - { offsetInCU: 0x13DA, offset: 0x91C45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3210, symBinAddr: 0x5E7D0, symSize: 0xC } + - { offsetInCU: 0x13EE, offset: 0x91C59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x321C, symBinAddr: 0x5E7DC, symSize: 0x4 } + - { offsetInCU: 0x1402, offset: 0x91C6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3220, symBinAddr: 0x5E7E0, symSize: 0x44 } + - { offsetInCU: 0x1416, offset: 0x91C81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3264, symBinAddr: 0x5E824, symSize: 0xC } + - { offsetInCU: 0x142A, offset: 0x91C95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x3270, symBinAddr: 0x5E830, symSize: 0x4 } + - { offsetInCU: 0x143E, offset: 0x91CA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3274, symBinAddr: 0x5E834, symSize: 0x44 } + - { offsetInCU: 0x1452, offset: 0x91CBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x32B8, symBinAddr: 0x5E878, symSize: 0xC } + - { offsetInCU: 0x14C6, offset: 0x91D31, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x3548, symBinAddr: 0x5EAC4, symSize: 0x48 } + - { offsetInCU: 0x1525, offset: 0x91D90, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4384, symBinAddr: 0x5F8A4, symSize: 0x3C } + - { offsetInCU: 0x1539, offset: 0x91DA4, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x43C0, symBinAddr: 0x5F8E0, symSize: 0x24 } + - { offsetInCU: 0x154D, offset: 0x91DB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4418, symBinAddr: 0x5F928, symSize: 0x8 } + - { offsetInCU: 0x1561, offset: 0x91DCC, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4420, symBinAddr: 0x5F930, symSize: 0x10 } + - { offsetInCU: 0x1575, offset: 0x91DE0, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4430, symBinAddr: 0x5F940, symSize: 0x8 } + - { offsetInCU: 0x1589, offset: 0x91DF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4490, symBinAddr: 0x5F948, symSize: 0x8 } + - { offsetInCU: 0x159D, offset: 0x91E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x4544, symBinAddr: 0x5F9FC, symSize: 0x10 } + - { offsetInCU: 0x169B, offset: 0x91F06, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x154, symBinAddr: 0x5B770, symSize: 0x134 } + - { offsetInCU: 0x175C, offset: 0x91FC7, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x288, symBinAddr: 0x5B8A4, symSize: 0x11C } + - { offsetInCU: 0x181D, offset: 0x92088, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x3A4, symBinAddr: 0x5B9C0, symSize: 0x90 } + - { offsetInCU: 0x19FD, offset: 0x92268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x87C, symBinAddr: 0x5BE98, symSize: 0xC } + - { offsetInCU: 0x1A7D, offset: 0x922E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x888, symBinAddr: 0x5BEA4, symSize: 0x9C } + - { offsetInCU: 0x1AFF, offset: 0x9236A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x924, symBinAddr: 0x5BF40, symSize: 0x78 } + - { offsetInCU: 0x1B3D, offset: 0x923A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x99C, symBinAddr: 0x5BFB8, symSize: 0x98 } + - { offsetInCU: 0x1BA3, offset: 0x9240E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x5C16C, symSize: 0xC } + - { offsetInCU: 0x1C23, offset: 0x9248E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB5C, symBinAddr: 0x5C178, symSize: 0x6C } + - { offsetInCU: 0x1CD7, offset: 0x92542, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xBC8, symBinAddr: 0x5C1E4, symSize: 0x48 } + - { offsetInCU: 0x1D49, offset: 0x925B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC10, symBinAddr: 0x5C22C, symSize: 0x68 } + - { offsetInCU: 0x2136, offset: 0x929A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5B65C, symSize: 0x6C } + - { offsetInCU: 0x216D, offset: 0x929D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5B6C8, symSize: 0x28 } + - { offsetInCU: 0x218C, offset: 0x929F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5B6F0, symSize: 0x58 } + - { offsetInCU: 0x21BB, offset: 0x92A26, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x21D3, offset: 0x92A3E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x21E7, offset: 0x92A52, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x21FB, offset: 0x92A66, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x220F, offset: 0x92A7A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x222F, offset: 0x92A9A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x130, symBinAddr: 0x5B74C, symSize: 0x24 } + - { offsetInCU: 0x22DA, offset: 0x92B45, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x434, symBinAddr: 0x5BA50, symSize: 0xC4 } + - { offsetInCU: 0x248D, offset: 0x92CF8, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x24A5, offset: 0x92D10, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x24C5, offset: 0x92D30, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x24D9, offset: 0x92D44, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x24ED, offset: 0x92D58, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x2501, offset: 0x92D6C, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x25D5, offset: 0x92E40, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x540, symBinAddr: 0x5BB5C, symSize: 0x88 } + - { offsetInCU: 0x2692, offset: 0x92EFD, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x5C8, symBinAddr: 0x5BBE4, symSize: 0x80 } + - { offsetInCU: 0x272D, offset: 0x92F98, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x648, symBinAddr: 0x5BC64, symSize: 0xE4 } + - { offsetInCU: 0x2881, offset: 0x930EC, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x2899, offset: 0x93104, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x28AD, offset: 0x93118, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x28C1, offset: 0x9312C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x28D5, offset: 0x93140, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x2952, offset: 0x931BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x858, symBinAddr: 0x5BE74, symSize: 0x24 } + - { offsetInCU: 0x29B4, offset: 0x9321F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xADC, symBinAddr: 0x5C0F8, symSize: 0x74 } + - { offsetInCU: 0x2A63, offset: 0x932CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x11D8, symBinAddr: 0x5C7F4, symSize: 0x938 } + - { offsetInCU: 0x3011, offset: 0x9387C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B10, symBinAddr: 0x5D12C, symSize: 0x654 } + - { offsetInCU: 0x3380, offset: 0x93BEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2164, symBinAddr: 0x5D780, symSize: 0x470 } + - { offsetInCU: 0x3549, offset: 0x93DB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x25D4, symBinAddr: 0x5DBF0, symSize: 0x5FC } + - { offsetInCU: 0x3A4C, offset: 0x942B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2BD0, symBinAddr: 0x5E1EC, symSize: 0x150 } + - { offsetInCU: 0x3B58, offset: 0x943C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2D20, symBinAddr: 0x5E33C, symSize: 0x2C } + - { offsetInCU: 0x3B91, offset: 0x943FC, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2DCC, symBinAddr: 0x5E3E8, symSize: 0x4 } + - { offsetInCU: 0x3BBE, offset: 0x94429, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3308, symBinAddr: 0x5E884, symSize: 0x14 } + - { offsetInCU: 0x3BEE, offset: 0x94459, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x331C, symBinAddr: 0x5E898, symSize: 0x14 } + - { offsetInCU: 0x3C1E, offset: 0x94489, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3330, symBinAddr: 0x5E8AC, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x9461E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x5FA18, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x94632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x5FBA0, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x94646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x5FC44, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x9465A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x5FDA0, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x9466E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x5FF88, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x94682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x60074, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x94696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x601FC, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x946AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x60294, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x946BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x6032C, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x946D2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x603B4, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x946E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x60408, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x946FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x6052C, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x9470E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x605B0, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x94722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x606A4, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x94736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x60804, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x9474A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x608E0, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x9475E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x60A28, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x94772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x60AC0, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x94786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x60B8C, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x94814, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x176C, symBinAddr: 0x61144, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x9486F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1784, symBinAddr: 0x6115C, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x948E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x61188, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x9491E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x611F8, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x9494F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1844, symBinAddr: 0x6121C, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x9496B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x61228, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x94987, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2ED4, symBinAddr: 0x627B0, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x94A41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18AC, symBinAddr: 0x61284, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x94A64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x61298, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x94AE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x61460, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x94B1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AD0, symBinAddr: 0x614A8, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x94B4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x614CC, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x94B67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x614D8, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x94B83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30BC, symBinAddr: 0x62998, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x94C33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B5C, symBinAddr: 0x61534, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x94C6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BA8, symBinAddr: 0x61580, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x94C8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3210, symBinAddr: 0x62AEC, symSize: 0x294 } + - { offsetInCU: 0x716, offset: 0x94CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23A4, symBinAddr: 0x61D7C, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x94D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23AC, symBinAddr: 0x61D84, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x94D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23D0, symBinAddr: 0x61DA8, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x94D73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23DC, symBinAddr: 0x61DB4, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x94D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x34A4, symBinAddr: 0x62D80, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x94EEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2438, symBinAddr: 0x61E10, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x94F0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x244C, symBinAddr: 0x61E24, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x94F32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2484, symBinAddr: 0x61E38, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x94F46, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24E8, symBinAddr: 0x61E7C, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x94F5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x25B0, symBinAddr: 0x61EFC, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x94F6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2638, symBinAddr: 0x61F40, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x94F82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x2764, symBinAddr: 0x6206C, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x94F96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x27B8, symBinAddr: 0x620B0, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x94FAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2848, symBinAddr: 0x62140, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x94FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2904, symBinAddr: 0x621FC, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x94FD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x290C, symBinAddr: 0x62204, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x94FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x2910, symBinAddr: 0x62208, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x94FFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2918, symBinAddr: 0x62210, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x9500E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2928, symBinAddr: 0x62220, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x95022, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x29B8, symBinAddr: 0x622B0, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x95036, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2A74, symBinAddr: 0x6236C, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x9504A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2A78, symBinAddr: 0x62370, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x9505E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2A88, symBinAddr: 0x62380, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x95072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2AB8, symBinAddr: 0x623B0, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x95086, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2AE8, symBinAddr: 0x623E0, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x9509A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2B44, symBinAddr: 0x6243C, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x950AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2BF4, symBinAddr: 0x624D0, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x950C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2C58, symBinAddr: 0x62534, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x950D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2CB4, symBinAddr: 0x62590, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x950EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2D14, symBinAddr: 0x625F0, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x950FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D24, symBinAddr: 0x62600, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x95112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D28, symBinAddr: 0x62604, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x95126, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D6C, symBinAddr: 0x62648, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x9513A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D70, symBinAddr: 0x6264C, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x9514E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DB4, symBinAddr: 0x62690, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x95162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DB8, symBinAddr: 0x62694, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x95176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DFC, symBinAddr: 0x626D8, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x9518A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E00, symBinAddr: 0x626DC, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x9519E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E44, symBinAddr: 0x62720, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x951B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E48, symBinAddr: 0x62724, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x951C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E8C, symBinAddr: 0x62768, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x951DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E90, symBinAddr: 0x6276C, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x951F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x37C0, symBinAddr: 0x6309C, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x9520D, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3804, symBinAddr: 0x630E0, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x95221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x38D0, symBinAddr: 0x631AC, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x95235, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3960, symBinAddr: 0x6323C, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x95249, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3A1C, symBinAddr: 0x632F8, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x9525D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3A20, symBinAddr: 0x632FC, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x95271, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3A30, symBinAddr: 0x6330C, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x95285, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3A34, symBinAddr: 0x63310, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x95299, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3A78, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x952AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3A7C, symBinAddr: 0x63358, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x952C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3AC0, symBinAddr: 0x6339C, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x952D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3AC4, symBinAddr: 0x633A0, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x95303, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0x61234, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x9531F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1884, symBinAddr: 0x6125C, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x95341, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B0C, symBinAddr: 0x614E4, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x9535D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B34, symBinAddr: 0x6150C, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x9537F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23E8, symBinAddr: 0x61DC0, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x9539B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x61DE8, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x954A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x60C14, symSize: 0x200 } + - { offsetInCU: 0xF04, offset: 0x954DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x143C, symBinAddr: 0x60E14, symSize: 0x330 } + - { offsetInCU: 0xF7F, offset: 0x9555A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18D4, symBinAddr: 0x612AC, symSize: 0x1AC } + - { offsetInCU: 0xFCA, offset: 0x955A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1BE8, symBinAddr: 0x615C0, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x955C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1C90, symBinAddr: 0x61668, symSize: 0x264 } + - { offsetInCU: 0x1024, offset: 0x955FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1EF4, symBinAddr: 0x618CC, symSize: 0x424 } + - { offsetInCU: 0x27, offset: 0x95686, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x63404, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x95765, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x634EC, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x95779, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x6351C, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x9578D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x63544, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x957A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x63580, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x957B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x635EC, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x957C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x63630, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x957DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x63678, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x957F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x636B8, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x95900, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x63404, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x9591A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x63430, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x9594F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x63464, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x95963, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x63474, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x95984, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x63478, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x95998, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x634A4, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x959CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x634D8, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x959F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x634E8, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x95A43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x636C8, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x95AA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x63960, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x95ABF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x63968, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x95AD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x63968, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x95AF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x63850, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x95B08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x63854, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x95B3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x63980, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x95B50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x63A10, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x95B64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x63ACC, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x95B78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x63AD4, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x95B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x63AD8, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x95BA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x63AE0, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x95C10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0x438, symBinAddr: 0x63AF0, symSize: 0x13C } + - { offsetInCU: 0x421, offset: 0x95E3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x6382C, symSize: 0x24 } + - { offsetInCU: 0x515, offset: 0x95F31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x63898, symSize: 0x4C } + - { offsetInCU: 0x5ED, offset: 0x96009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x638E4, symSize: 0x34 } + - { offsetInCU: 0x669, offset: 0x96085, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x63918, symSize: 0x48 } + - { offsetInCU: 0x82E, offset: 0x9624A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x636C8, symSize: 0x14 } + - { offsetInCU: 0x84F, offset: 0x9626B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x636DC, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x96330, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63C2C, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x96381, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x63C50, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x96487, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63C2C, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x96517, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1A48, symBinAddr: 0x80EF0, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x96A7F, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x63CA4, symSize: 0x4C } + - { offsetInCU: 0x5CF, offset: 0x96A97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x63CF0, symSize: 0x4C } + - { offsetInCU: 0x72F, offset: 0x96BF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1624, symBinAddr: 0x65228, symSize: 0x8 } + - { offsetInCU: 0x743, offset: 0x96C0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x162C, symBinAddr: 0x65230, symSize: 0x8 } + - { offsetInCU: 0x757, offset: 0x96C1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1634, symBinAddr: 0x65238, symSize: 0x8 } + - { offsetInCU: 0x76B, offset: 0x96C33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x163C, symBinAddr: 0x65240, symSize: 0x8 } + - { offsetInCU: 0x77F, offset: 0x96C47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1644, symBinAddr: 0x65248, symSize: 0x8 } + - { offsetInCU: 0x793, offset: 0x96C5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x16A8, symBinAddr: 0x65250, symSize: 0x20 } + - { offsetInCU: 0x7A7, offset: 0x96C6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOb', symObjAddr: 0x16C8, symBinAddr: 0x65270, symSize: 0x48 } + - { offsetInCU: 0x7BB, offset: 0x96C83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOd', symObjAddr: 0x1710, symBinAddr: 0x652B8, symSize: 0x48 } + - { offsetInCU: 0x7CF, offset: 0x96C97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1894, symBinAddr: 0x6542C, symSize: 0x8 } + - { offsetInCU: 0x7E3, offset: 0x96CAB, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x189C, symBinAddr: 0x65434, symSize: 0x10 } + - { offsetInCU: 0x7F7, offset: 0x96CBF, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18AC, symBinAddr: 0x65444, symSize: 0x8 } + - { offsetInCU: 0x840, offset: 0x96D08, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6544C, symSize: 0x10 } + - { offsetInCU: 0x85C, offset: 0x96D24, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6544C, symSize: 0x10 } + - { offsetInCU: 0x870, offset: 0x96D38, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6544C, symSize: 0x10 } + - { offsetInCU: 0x8AF, offset: 0x96D77, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x63C70, symSize: 0x4 } + - { offsetInCU: 0x8CB, offset: 0x96D93, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x63C74, symSize: 0x4 } + - { offsetInCU: 0x8E7, offset: 0x96DAF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x63C78, symSize: 0x4 } + - { offsetInCU: 0x903, offset: 0x96DCB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x63C7C, symSize: 0x4 } + - { offsetInCU: 0x91F, offset: 0x96DE7, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x63C80, symSize: 0x4 } + - { offsetInCU: 0x93B, offset: 0x96E03, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x63C84, symSize: 0x4 } + - { offsetInCU: 0x957, offset: 0x96E1F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x63C88, symSize: 0x4 } + - { offsetInCU: 0x973, offset: 0x96E3B, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x63C8C, symSize: 0xC } + - { offsetInCU: 0x98F, offset: 0x96E57, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x63C98, symSize: 0xC } + - { offsetInCU: 0xBEF, offset: 0x970B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xCC, symBinAddr: 0x63D3C, symSize: 0x40 } + - { offsetInCU: 0xC9C, offset: 0x97164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x10C, symBinAddr: 0x63D7C, symSize: 0x458 } + - { offsetInCU: 0xF01, offset: 0x973C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x5C8, symBinAddr: 0x641F8, symSize: 0x5C } + - { offsetInCU: 0xF67, offset: 0x9742F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x624, symBinAddr: 0x64254, symSize: 0x5C } + - { offsetInCU: 0xFCD, offset: 0x97495, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x680, symBinAddr: 0x642B0, symSize: 0x5C } + - { offsetInCU: 0x1033, offset: 0x974FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x6DC, symBinAddr: 0x6430C, symSize: 0x5C } + - { offsetInCU: 0x1099, offset: 0x97561, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x738, symBinAddr: 0x64368, symSize: 0x5C } + - { offsetInCU: 0x1164, offset: 0x9762C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x794, symBinAddr: 0x643C4, symSize: 0x44 } + - { offsetInCU: 0x11CE, offset: 0x97696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7D8, symBinAddr: 0x64408, symSize: 0x10 } + - { offsetInCU: 0x1200, offset: 0x976C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7D8, symBinAddr: 0x64408, symSize: 0x10 } + - { offsetInCU: 0x122F, offset: 0x976F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x7E8, symBinAddr: 0x64418, symSize: 0x54 } + - { offsetInCU: 0x12A6, offset: 0x9776E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x94C, symBinAddr: 0x6457C, symSize: 0x34 } + - { offsetInCU: 0x1309, offset: 0x977D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x980, symBinAddr: 0x645B0, symSize: 0x54 } + - { offsetInCU: 0x1380, offset: 0x97848, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0x9D4, symBinAddr: 0x64604, symSize: 0x4C } + - { offsetInCU: 0x140C, offset: 0x978D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA20, symBinAddr: 0x64650, symSize: 0x84 } + - { offsetInCU: 0x14A7, offset: 0x9796F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xAA4, symBinAddr: 0x646D4, symSize: 0x74 } + - { offsetInCU: 0x1556, offset: 0x97A1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xB18, symBinAddr: 0x64748, symSize: 0x84 } + - { offsetInCU: 0x15F1, offset: 0x97AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xB9C, symBinAddr: 0x647CC, symSize: 0x38 } + - { offsetInCU: 0x166E, offset: 0x97B36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBD4, symBinAddr: 0x64804, symSize: 0x38 } + - { offsetInCU: 0x16EB, offset: 0x97BB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC0C, symBinAddr: 0x6483C, symSize: 0x38 } + - { offsetInCU: 0x176B, offset: 0x97C33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC44, symBinAddr: 0x64874, symSize: 0x38 } + - { offsetInCU: 0x17EB, offset: 0x97CB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC7C, symBinAddr: 0x648AC, symSize: 0x38 } + - { offsetInCU: 0x186B, offset: 0x97D33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCB4, symBinAddr: 0x648E4, symSize: 0x38 } + - { offsetInCU: 0x18EB, offset: 0x97DB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCEC, symBinAddr: 0x6491C, symSize: 0x38 } + - { offsetInCU: 0x196B, offset: 0x97E33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xD24, symBinAddr: 0x64954, symSize: 0x38 } + - { offsetInCU: 0x19CB, offset: 0x97E93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xD5C, symBinAddr: 0x6498C, symSize: 0x44 } + - { offsetInCU: 0x1A62, offset: 0x97F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xDA0, symBinAddr: 0x649D0, symSize: 0x13C } + - { offsetInCU: 0x1B33, offset: 0x97FFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xEDC, symBinAddr: 0x64B0C, symSize: 0xAC } + - { offsetInCU: 0x1C05, offset: 0x980CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0xF88, symBinAddr: 0x64BB8, symSize: 0x78 } + - { offsetInCU: 0x1C9B, offset: 0x98163, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1000, symBinAddr: 0x64C30, symSize: 0x84 } + - { offsetInCU: 0x1CBE, offset: 0x98186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1084, symBinAddr: 0x64CB4, symSize: 0x20 } + - { offsetInCU: 0x1D03, offset: 0x981CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x10D0, symBinAddr: 0x64CD4, symSize: 0x254 } + - { offsetInCU: 0x1DFE, offset: 0x982C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1324, symBinAddr: 0x64F28, symSize: 0x300 } ... diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml index 3a1ce5c..d98067c 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml @@ -2,1790 +2,1620 @@ triple: 'x86_64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' relocations: - - { offsetInCU: 0x34, offset: 0x59050, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x78F80, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x59085, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x78FB0, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x590EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x44A60, symBinAddr: 0x91320, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x59115, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xF0, symBinAddr: 0x2BF0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x59131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x130, symBinAddr: 0x2C30, symSize: 0x10 } - - { offsetInCU: 0xB2, offset: 0x5914D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x140, symBinAddr: 0x2C40, symSize: 0x320 } - - { offsetInCU: 0x109, offset: 0x591A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x460, symBinAddr: 0x2F60, symSize: 0xFF0 } - - { offsetInCU: 0x46E, offset: 0x59509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1450, symBinAddr: 0x3F50, symSize: 0x660 } - - { offsetInCU: 0x4EF, offset: 0x5958A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1AB0, symBinAddr: 0x45B0, symSize: 0x20 } - - { offsetInCU: 0x51C, offset: 0x595B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D30, symBinAddr: 0x4830, symSize: 0x770 } - - { offsetInCU: 0x7E1, offset: 0x5987C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x24A0, symBinAddr: 0x4FA0, symSize: 0x480 } - - { offsetInCU: 0xA95, offset: 0x59B30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2920, symBinAddr: 0x5420, symSize: 0xA40 } - - { offsetInCU: 0xEC1, offset: 0x59F5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3360, symBinAddr: 0x5E60, symSize: 0x7A0 } - - { offsetInCU: 0x12A5, offset: 0x5A340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3B00, symBinAddr: 0x6600, symSize: 0x4B00 } - - { offsetInCU: 0x2C82, offset: 0x5BD1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8610, symBinAddr: 0xB100, symSize: 0x190 } - - { offsetInCU: 0x2D56, offset: 0x5BDF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x87A0, symBinAddr: 0xB290, symSize: 0x3B0 } - - { offsetInCU: 0x2F41, offset: 0x5BFDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8B50, symBinAddr: 0xB640, symSize: 0x480 } - - { offsetInCU: 0x32D0, offset: 0x5C36B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8FD0, symBinAddr: 0xBAC0, symSize: 0x360 } - - { offsetInCU: 0x348E, offset: 0x5C529, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x9330, symBinAddr: 0xBE20, symSize: 0x2A0 } - - { offsetInCU: 0x360A, offset: 0x5C6A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x95D0, symBinAddr: 0xC0C0, symSize: 0x2B0 } - - { offsetInCU: 0x3786, offset: 0x5C821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x9880, symBinAddr: 0xC370, symSize: 0x4A0 } - - { offsetInCU: 0x38B0, offset: 0x5C94B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x9D20, symBinAddr: 0xC810, symSize: 0x740 } - - { offsetInCU: 0x3B84, offset: 0x5CC1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0xA460, symBinAddr: 0xCF50, symSize: 0x250 } - - { offsetInCU: 0x3D99, offset: 0x5CE34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB980, symBinAddr: 0xE470, symSize: 0x1B60 } - - { offsetInCU: 0x546D, offset: 0x5E508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x2B80, symSize: 0x40 } - - { offsetInCU: 0x549D, offset: 0x5E538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0xC0, symBinAddr: 0x2BC0, symSize: 0x30 } - - { offsetInCU: 0x5675, offset: 0x5E710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1AD0, symBinAddr: 0x45D0, symSize: 0x10 } - - { offsetInCU: 0x5689, offset: 0x5E724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1AE0, symBinAddr: 0x45E0, symSize: 0x30 } - - { offsetInCU: 0x569D, offset: 0x5E738, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1B10, symBinAddr: 0x4610, symSize: 0x220 } - - { offsetInCU: 0x5BF9, offset: 0x5EC94, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0xA730, symBinAddr: 0xD220, symSize: 0x10 } - - { offsetInCU: 0x5C0D, offset: 0x5ECA8, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0xA740, symBinAddr: 0xD230, symSize: 0x10 } - - { offsetInCU: 0x5C21, offset: 0x5ECBC, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0xA750, symBinAddr: 0xD240, symSize: 0x20 } - - { offsetInCU: 0x5C35, offset: 0x5ECD0, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0xA770, symBinAddr: 0xD260, symSize: 0x30 } - - { offsetInCU: 0x5D46, offset: 0x5EDE1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xACE0, symBinAddr: 0xD7D0, symSize: 0x20 } - - { offsetInCU: 0x5D5A, offset: 0x5EDF5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xAD00, symBinAddr: 0xD7F0, symSize: 0x20 } - - { offsetInCU: 0x5D6E, offset: 0x5EE09, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xAD50, symBinAddr: 0xD840, symSize: 0x20 } - - { offsetInCU: 0x5D82, offset: 0x5EE1D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xAD70, symBinAddr: 0xD860, symSize: 0x20 } - - { offsetInCU: 0x5DB7, offset: 0x5EE52, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xAF50, symBinAddr: 0xDA40, symSize: 0x230 } - - { offsetInCU: 0x5E1D, offset: 0x5EEB8, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xB180, symBinAddr: 0xDC70, symSize: 0x50 } - - { offsetInCU: 0x5E7E, offset: 0x5EF19, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xB320, symBinAddr: 0xDE10, symSize: 0x260 } - - { offsetInCU: 0x63F5, offset: 0x5F490, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xD680, symBinAddr: 0x10170, symSize: 0x40 } - - { offsetInCU: 0x6409, offset: 0x5F4A4, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xD6C0, symBinAddr: 0x101B0, symSize: 0x30 } - - { offsetInCU: 0x641D, offset: 0x5F4B8, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xD6F0, symBinAddr: 0x101E0, symSize: 0x20 } - - { offsetInCU: 0x6431, offset: 0x5F4CC, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xD710, symBinAddr: 0x10200, symSize: 0x30 } - - { offsetInCU: 0x6445, offset: 0x5F4E0, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xD790, symBinAddr: 0x10280, symSize: 0x30 } - - { offsetInCU: 0x6459, offset: 0x5F4F4, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD930, symBinAddr: 0x10420, symSize: 0x20 } - - { offsetInCU: 0x646D, offset: 0x5F508, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD950, symBinAddr: 0x10440, symSize: 0x20 } - - { offsetInCU: 0x6481, offset: 0x5F51C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xD970, symBinAddr: 0x10460, symSize: 0x50 } - - { offsetInCU: 0x6495, offset: 0x5F530, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xD9C0, symBinAddr: 0x104B0, symSize: 0x180 } - - { offsetInCU: 0x64A9, offset: 0x5F544, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xDB40, symBinAddr: 0x10630, symSize: 0x2D0 } - - { offsetInCU: 0x64BD, offset: 0x5F558, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xDE10, symBinAddr: 0x10900, symSize: 0x70 } - - { offsetInCU: 0x64D1, offset: 0x5F56C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xDE80, symBinAddr: 0x10970, symSize: 0x30 } - - { offsetInCU: 0x64E5, offset: 0x5F580, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xDEB0, symBinAddr: 0x109A0, symSize: 0xD0 } - - { offsetInCU: 0x64F9, offset: 0x5F594, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xDF80, symBinAddr: 0x10A70, symSize: 0xB0 } - - { offsetInCU: 0x650D, offset: 0x5F5A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xE030, symBinAddr: 0x10B20, symSize: 0x20 } - - { offsetInCU: 0x6521, offset: 0x5F5BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xE050, symBinAddr: 0x10B40, symSize: 0x30 } - - { offsetInCU: 0x6535, offset: 0x5F5D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xE0E0, symBinAddr: 0x10BD0, symSize: 0x50 } - - { offsetInCU: 0x6549, offset: 0x5F5E4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xE1D0, symBinAddr: 0x10CC0, symSize: 0x20 } - - { offsetInCU: 0x655D, offset: 0x5F5F8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xE1F0, symBinAddr: 0x10CE0, symSize: 0x20 } - - { offsetInCU: 0x6571, offset: 0x5F60C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xE210, symBinAddr: 0x10D00, symSize: 0x20 } - - { offsetInCU: 0x6585, offset: 0x5F620, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xE230, symBinAddr: 0x10D20, symSize: 0x20 } - - { offsetInCU: 0x6599, offset: 0x5F634, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xE250, symBinAddr: 0x10D40, symSize: 0x20 } - - { offsetInCU: 0x65AD, offset: 0x5F648, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xE270, symBinAddr: 0x10D60, symSize: 0x20 } - - { offsetInCU: 0x65C1, offset: 0x5F65C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xE290, symBinAddr: 0x10D80, symSize: 0x20 } - - { offsetInCU: 0x69B1, offset: 0x5FA4C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA7C0, symBinAddr: 0xD2B0, symSize: 0x10 } - - { offsetInCU: 0x69EF, offset: 0x5FA8A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA7E0, symBinAddr: 0xD2D0, symSize: 0x10 } - - { offsetInCU: 0x6A3E, offset: 0x5FAD9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA7F0, symBinAddr: 0xD2E0, symSize: 0x10 } - - { offsetInCU: 0x6ADB, offset: 0x5FB76, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA800, symBinAddr: 0xD2F0, symSize: 0x10 } - - { offsetInCU: 0x6B70, offset: 0x5FC0B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA810, symBinAddr: 0xD300, symSize: 0x10 } - - { offsetInCU: 0x6C0D, offset: 0x5FCA8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA820, symBinAddr: 0xD310, symSize: 0x30 } - - { offsetInCU: 0x6D68, offset: 0x5FE03, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA850, symBinAddr: 0xD340, symSize: 0x30 } - - { offsetInCU: 0x6E65, offset: 0x5FF00, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA880, symBinAddr: 0xD370, symSize: 0x20 } - - { offsetInCU: 0x6F51, offset: 0x5FFEC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA8A0, symBinAddr: 0xD390, symSize: 0x10 } - - { offsetInCU: 0x6F8F, offset: 0x6002A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA8B0, symBinAddr: 0xD3A0, symSize: 0x10 } - - { offsetInCU: 0x6FCD, offset: 0x60068, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA8C0, symBinAddr: 0xD3B0, symSize: 0x10 } - - { offsetInCU: 0x701A, offset: 0x600B5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA8D0, symBinAddr: 0xD3C0, symSize: 0x10 } - - { offsetInCU: 0x70C3, offset: 0x6015E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA8E0, symBinAddr: 0xD3D0, symSize: 0x20 } - - { offsetInCU: 0x713A, offset: 0x601D5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA900, symBinAddr: 0xD3F0, symSize: 0x10 } - - { offsetInCU: 0x71F2, offset: 0x6028D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA910, symBinAddr: 0xD400, symSize: 0x20 } - - { offsetInCU: 0x728C, offset: 0x60327, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA930, symBinAddr: 0xD420, symSize: 0x10 } - - { offsetInCU: 0x72F4, offset: 0x6038F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA940, symBinAddr: 0xD430, symSize: 0x20 } - - { offsetInCU: 0x7310, offset: 0x603AB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA960, symBinAddr: 0xD450, symSize: 0x10 } - - { offsetInCU: 0x738C, offset: 0x60427, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA990, symBinAddr: 0xD480, symSize: 0x10 } - - { offsetInCU: 0x73BD, offset: 0x60458, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA9A0, symBinAddr: 0xD490, symSize: 0x10 } - - { offsetInCU: 0x73EE, offset: 0x60489, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA9B0, symBinAddr: 0xD4A0, symSize: 0x10 } - - { offsetInCU: 0x741F, offset: 0x604BA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA9C0, symBinAddr: 0xD4B0, symSize: 0x30 } - - { offsetInCU: 0x744E, offset: 0x604E9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA9F0, symBinAddr: 0xD4E0, symSize: 0x30 } - - { offsetInCU: 0x747F, offset: 0x6051A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xAA20, symBinAddr: 0xD510, symSize: 0x30 } - - { offsetInCU: 0x74B0, offset: 0x6054B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xAA50, symBinAddr: 0xD540, symSize: 0x10 } - - { offsetInCU: 0x74E1, offset: 0x6057C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xAA60, symBinAddr: 0xD550, symSize: 0x10 } - - { offsetInCU: 0x7512, offset: 0x605AD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xAA70, symBinAddr: 0xD560, symSize: 0x10 } - - { offsetInCU: 0x7543, offset: 0x605DE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xAA80, symBinAddr: 0xD570, symSize: 0x20 } - - { offsetInCU: 0x7574, offset: 0x6060F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xAAA0, symBinAddr: 0xD590, symSize: 0x20 } - - { offsetInCU: 0x75A5, offset: 0x60640, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xAAC0, symBinAddr: 0xD5B0, symSize: 0x10 } - - { offsetInCU: 0x75D6, offset: 0x60671, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xAAD0, symBinAddr: 0xD5C0, symSize: 0x20 } - - { offsetInCU: 0x7607, offset: 0x606A2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xAAF0, symBinAddr: 0xD5E0, symSize: 0x10 } - - { offsetInCU: 0x7638, offset: 0x606D3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xAB00, symBinAddr: 0xD5F0, symSize: 0x20 } - - { offsetInCU: 0x7654, offset: 0x606EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xAB20, symBinAddr: 0xD610, symSize: 0x10 } - - { offsetInCU: 0x7694, offset: 0x6072F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAB50, symBinAddr: 0xD640, symSize: 0x30 } - - { offsetInCU: 0x7712, offset: 0x607AD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAB80, symBinAddr: 0xD670, symSize: 0x60 } - - { offsetInCU: 0x77A5, offset: 0x60840, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC40, symBinAddr: 0xD730, symSize: 0x10 } - - { offsetInCU: 0x77E5, offset: 0x60880, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC50, symBinAddr: 0xD740, symSize: 0x10 } - - { offsetInCU: 0x782B, offset: 0x608C6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xAC60, symBinAddr: 0xD750, symSize: 0x40 } - - { offsetInCU: 0x789A, offset: 0x60935, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xACA0, symBinAddr: 0xD790, symSize: 0x10 } - - { offsetInCU: 0x78C5, offset: 0x60960, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xACB0, symBinAddr: 0xD7A0, symSize: 0x30 } - - { offsetInCU: 0x78F6, offset: 0x60991, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xAD90, symBinAddr: 0xD880, symSize: 0x10 } - - { offsetInCU: 0x7927, offset: 0x609C2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xADA0, symBinAddr: 0xD890, symSize: 0x30 } - - { offsetInCU: 0x7967, offset: 0x60A02, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xADD0, symBinAddr: 0xD8C0, symSize: 0x80 } - - { offsetInCU: 0x7A00, offset: 0x60A9B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xAEE0, symBinAddr: 0xD9D0, symSize: 0x70 } - - { offsetInCU: 0x7A43, offset: 0x60ADE, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0xB580, symBinAddr: 0xE070, symSize: 0xA0 } - - { offsetInCU: 0x7B2F, offset: 0x60BCA, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xB620, symBinAddr: 0xE110, symSize: 0x220 } - - { offsetInCU: 0x7D5D, offset: 0x60DF8, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xD4E0, symBinAddr: 0xFFD0, symSize: 0xD0 } - - { offsetInCU: 0x7EA5, offset: 0x60F40, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xD5B0, symBinAddr: 0x100A0, symSize: 0xD0 } - - { offsetInCU: 0x7FD8, offset: 0x61073, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE2B0, symBinAddr: 0x10DA0, symSize: 0x80 } - - { offsetInCU: 0x8069, offset: 0x61104, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE330, symBinAddr: 0x10E20, symSize: 0x80 } - - { offsetInCU: 0x822B, offset: 0x612C6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xAE60, symBinAddr: 0xD950, symSize: 0x10 } - - { offsetInCU: 0x8247, offset: 0x612E2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xAE70, symBinAddr: 0xD960, symSize: 0x10 } - - { offsetInCU: 0x82B1, offset: 0x6134C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xAE80, symBinAddr: 0xD970, symSize: 0x40 } - - { offsetInCU: 0x82DA, offset: 0x61375, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xAEC0, symBinAddr: 0xD9B0, symSize: 0x20 } - - { offsetInCU: 0x8315, offset: 0x613B0, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xAE50, symBinAddr: 0xD940, symSize: 0x10 } - - { offsetInCU: 0x83F3, offset: 0x6148E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0xA7D0, symBinAddr: 0xD2C0, symSize: 0x10 } - - { offsetInCU: 0x8416, offset: 0x614B1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA970, symBinAddr: 0xD460, symSize: 0x10 } - - { offsetInCU: 0x8432, offset: 0x614CD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA980, symBinAddr: 0xD470, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x616DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x61701, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0x20 } - - { offsetInCU: 0x79, offset: 0x6172F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0x10F00, symSize: 0x14 } - - { offsetInCU: 0x43, offset: 0x6185E, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0x10F50, symSize: 0x10 } - - { offsetInCU: 0x57, offset: 0x61872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0x10F90, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x618B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0x10FA0, symSize: 0x20 } - - { offsetInCU: 0xE4, offset: 0x618FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA0, symBinAddr: 0x10FC0, symSize: 0x10 } - - { offsetInCU: 0x142, offset: 0x6195D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC0, symBinAddr: 0x10FE0, symSize: 0x20 } - - { offsetInCU: 0x1BC, offset: 0x619D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0xF0, symBinAddr: 0x11010, symSize: 0x10 } - - { offsetInCU: 0x1E7, offset: 0x61A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x11020, symSize: 0x20 } - - { offsetInCU: 0x218, offset: 0x61A33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x120, symBinAddr: 0x11040, symSize: 0x10 } - - { offsetInCU: 0x234, offset: 0x61A4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x130, symBinAddr: 0x11050, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x61A6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2240, symBinAddr: 0x13160, symSize: 0x340 } - - { offsetInCU: 0x296, offset: 0x61AB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x180, symBinAddr: 0x110A0, symSize: 0x4C0 } - - { offsetInCU: 0x2EB, offset: 0x61B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0x124A0, symSize: 0x50 } - - { offsetInCU: 0x322, offset: 0x61B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0x124F0, symSize: 0x50 } - - { offsetInCU: 0x345, offset: 0x61B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2580, symBinAddr: 0x134A0, symSize: 0x14F0 } - - { offsetInCU: 0x377, offset: 0x61B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x11560, symSize: 0xE0 } - - { offsetInCU: 0x3C3, offset: 0x61BDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1620, symBinAddr: 0x12540, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x61C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1630, symBinAddr: 0x12550, symSize: 0x30 } - - { offsetInCU: 0x4FB, offset: 0x61D16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1660, symBinAddr: 0x12580, symSize: 0x20 } - - { offsetInCU: 0x57C, offset: 0x61D97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16B0, symBinAddr: 0x125D0, symSize: 0x10 } - - { offsetInCU: 0x5BC, offset: 0x61DD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16C0, symBinAddr: 0x125E0, symSize: 0x20 } - - { offsetInCU: 0x5ED, offset: 0x61E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x12600, symSize: 0x10 } - - { offsetInCU: 0x609, offset: 0x61E24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x12610, symSize: 0x10 } - - { offsetInCU: 0x625, offset: 0x61E40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3A70, symBinAddr: 0x14990, symSize: 0x60 } - - { offsetInCU: 0x669, offset: 0x61E84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvgTf4d_n', symObjAddr: 0x3AD0, symBinAddr: 0x149F0, symSize: 0x20 } - - { offsetInCU: 0x69D, offset: 0x61EB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x12660, symSize: 0x50 } - - { offsetInCU: 0x6D4, offset: 0x61EEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x126B0, symSize: 0x50 } - - { offsetInCU: 0x6F7, offset: 0x61F12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3AF0, symBinAddr: 0x14A10, symSize: 0x3A0 } - - { offsetInCU: 0x769, offset: 0x61F84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x720, symBinAddr: 0x11640, symSize: 0x20 } - - { offsetInCU: 0x792, offset: 0x61FAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x12700, symSize: 0x10 } - - { offsetInCU: 0x7BD, offset: 0x61FD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x12710, symSize: 0x20 } - - { offsetInCU: 0x7EE, offset: 0x62009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x12730, symSize: 0x10 } - - { offsetInCU: 0x80A, offset: 0x62025, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x12740, symSize: 0x10 } - - { offsetInCU: 0x826, offset: 0x62041, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6310, symBinAddr: 0x171E0, symSize: 0x160 } - - { offsetInCU: 0x86C, offset: 0x62087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x740, symBinAddr: 0x11660, symSize: 0x1A0 } - - { offsetInCU: 0x8C1, offset: 0x620DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x12790, symSize: 0x50 } - - { offsetInCU: 0x8F8, offset: 0x62113, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x127E0, symSize: 0x50 } - - { offsetInCU: 0x91B, offset: 0x62136, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6470, symBinAddr: 0x17340, symSize: 0x320 } - - { offsetInCU: 0x96B, offset: 0x62186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x8E0, symBinAddr: 0x11800, symSize: 0x20 } - - { offsetInCU: 0x994, offset: 0x621AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1910, symBinAddr: 0x12830, symSize: 0x10 } - - { offsetInCU: 0x9BF, offset: 0x621DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1920, symBinAddr: 0x12840, symSize: 0x20 } - - { offsetInCU: 0x9F0, offset: 0x6220B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1940, symBinAddr: 0x12860, symSize: 0x10 } - - { offsetInCU: 0xA0C, offset: 0x62227, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6790, symBinAddr: 0x17660, symSize: 0x120 } - - { offsetInCU: 0xA52, offset: 0x6226D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x900, symBinAddr: 0x11820, symSize: 0x170 } - - { offsetInCU: 0xAA7, offset: 0x622C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1990, symBinAddr: 0x128B0, symSize: 0x40 } - - { offsetInCU: 0xADE, offset: 0x622F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19D0, symBinAddr: 0x128F0, symSize: 0x40 } - - { offsetInCU: 0xB01, offset: 0x6231C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x68B0, symBinAddr: 0x17780, symSize: 0x310 } - - { offsetInCU: 0xB45, offset: 0x62360, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xA70, symBinAddr: 0x11990, symSize: 0x20 } - - { offsetInCU: 0xB6E, offset: 0x62389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A10, symBinAddr: 0x12930, symSize: 0x10 } - - { offsetInCU: 0xB99, offset: 0x623B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x12940, symSize: 0x20 } - - { offsetInCU: 0xBCA, offset: 0x623E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x12960, symSize: 0x10 } - - { offsetInCU: 0xBE6, offset: 0x62401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x12970, symSize: 0x10 } - - { offsetInCU: 0xC02, offset: 0x6241D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6BC0, symBinAddr: 0x17A90, symSize: 0x120 } - - { offsetInCU: 0xC48, offset: 0x62463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA90, symBinAddr: 0x119B0, symSize: 0x1D0 } - - { offsetInCU: 0xC9D, offset: 0x624B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x129C0, symSize: 0x50 } - - { offsetInCU: 0xCD4, offset: 0x624EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AF0, symBinAddr: 0x12A10, symSize: 0x50 } - - { offsetInCU: 0xCF7, offset: 0x62512, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x17BB0, symSize: 0x580 } - - { offsetInCU: 0xD47, offset: 0x62562, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xC60, symBinAddr: 0x11B80, symSize: 0x20 } - - { offsetInCU: 0xD70, offset: 0x6258B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x12A80, symSize: 0x10 } - - { offsetInCU: 0xD9B, offset: 0x625B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B70, symBinAddr: 0x12A90, symSize: 0x20 } - - { offsetInCU: 0xDCC, offset: 0x625E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B90, symBinAddr: 0x12AB0, symSize: 0x10 } - - { offsetInCU: 0xDE8, offset: 0x62603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x12AC0, symSize: 0x10 } - - { offsetInCU: 0xE04, offset: 0x6261F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x72F0, symBinAddr: 0x181C0, symSize: 0x210 } - - { offsetInCU: 0xE4A, offset: 0x62665, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC80, symBinAddr: 0x11BA0, symSize: 0x230 } - - { offsetInCU: 0xE9F, offset: 0x626BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BF0, symBinAddr: 0x12B10, symSize: 0x60 } - - { offsetInCU: 0xED6, offset: 0x626F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C50, symBinAddr: 0x12B70, symSize: 0x70 } - - { offsetInCU: 0xEF9, offset: 0x62714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7500, symBinAddr: 0x183D0, symSize: 0x660 } - - { offsetInCU: 0xF49, offset: 0x62764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xEB0, symBinAddr: 0x11DD0, symSize: 0x30 } - - { offsetInCU: 0xF94, offset: 0x627AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1CC0, symBinAddr: 0x12BE0, symSize: 0x10 } - - { offsetInCU: 0x101D, offset: 0x62838, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1CD0, symBinAddr: 0x12BF0, symSize: 0x40 } - - { offsetInCU: 0x1101, offset: 0x6291C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D10, symBinAddr: 0x12C30, symSize: 0x20 } - - { offsetInCU: 0x1173, offset: 0x6298E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D70, symBinAddr: 0x12C90, symSize: 0x10 } - - { offsetInCU: 0x119E, offset: 0x629B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D80, symBinAddr: 0x12CA0, symSize: 0x20 } - - { offsetInCU: 0x11CF, offset: 0x629EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DA0, symBinAddr: 0x12CC0, symSize: 0x10 } - - { offsetInCU: 0x11EB, offset: 0x62A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x12CD0, symSize: 0x10 } - - { offsetInCU: 0x1207, offset: 0x62A22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B90, symBinAddr: 0x18A60, symSize: 0xA0 } - - { offsetInCU: 0x124D, offset: 0x62A68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x11E00, symSize: 0x110 } - - { offsetInCU: 0x12A2, offset: 0x62ABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E00, symBinAddr: 0x12D20, symSize: 0x30 } - - { offsetInCU: 0x12D9, offset: 0x62AF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E30, symBinAddr: 0x12D50, symSize: 0x20 } - - { offsetInCU: 0x12FC, offset: 0x62B17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C30, symBinAddr: 0x18B00, symSize: 0x180 } - - { offsetInCU: 0x1358, offset: 0x62B73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xFF0, symBinAddr: 0x11F10, symSize: 0x20 } - - { offsetInCU: 0x1381, offset: 0x62B9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E50, symBinAddr: 0x12D70, symSize: 0x10 } - - { offsetInCU: 0x13AC, offset: 0x62BC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x12D80, symSize: 0x20 } - - { offsetInCU: 0x13DD, offset: 0x62BF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1E80, symBinAddr: 0x12DA0, symSize: 0x10 } - - { offsetInCU: 0x13F9, offset: 0x62C14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E90, symBinAddr: 0x12DB0, symSize: 0x10 } - - { offsetInCU: 0x1415, offset: 0x62C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7DE0, symBinAddr: 0x18CB0, symSize: 0x1C0 } - - { offsetInCU: 0x145B, offset: 0x62C76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1010, symBinAddr: 0x11F30, symSize: 0x1F0 } - - { offsetInCU: 0x14B0, offset: 0x62CCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EE0, symBinAddr: 0x12E00, symSize: 0x50 } - - { offsetInCU: 0x14E7, offset: 0x62D02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F30, symBinAddr: 0x12E50, symSize: 0x50 } - - { offsetInCU: 0x150A, offset: 0x62D25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x18E70, symSize: 0x3A0 } - - { offsetInCU: 0x154E, offset: 0x62D69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1200, symBinAddr: 0x12120, symSize: 0x20 } - - { offsetInCU: 0x1577, offset: 0x62D92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F80, symBinAddr: 0x12EA0, symSize: 0x10 } - - { offsetInCU: 0x15A2, offset: 0x62DBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F90, symBinAddr: 0x12EB0, symSize: 0x20 } - - { offsetInCU: 0x15D3, offset: 0x62DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FB0, symBinAddr: 0x12ED0, symSize: 0x10 } - - { offsetInCU: 0x15EF, offset: 0x62E0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FC0, symBinAddr: 0x12EE0, symSize: 0x10 } - - { offsetInCU: 0x160B, offset: 0x62E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x19210, symSize: 0x190 } - - { offsetInCU: 0x1651, offset: 0x62E6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1220, symBinAddr: 0x12140, symSize: 0x210 } - - { offsetInCU: 0x16A6, offset: 0x62EC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2010, symBinAddr: 0x12F30, symSize: 0x50 } - - { offsetInCU: 0x16DD, offset: 0x62EF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2060, symBinAddr: 0x12F80, symSize: 0x50 } - - { offsetInCU: 0x1700, offset: 0x62F1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x84D0, symBinAddr: 0x193A0, symSize: 0x3D0 } - - { offsetInCU: 0x1750, offset: 0x62F6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1430, symBinAddr: 0x12350, symSize: 0x20 } - - { offsetInCU: 0x1779, offset: 0x62F94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2130, symBinAddr: 0x13050, symSize: 0x10 } - - { offsetInCU: 0x17A4, offset: 0x62FBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x13060, symSize: 0x20 } - - { offsetInCU: 0x17D5, offset: 0x62FF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2160, symBinAddr: 0x13080, symSize: 0x10 } - - { offsetInCU: 0x17F1, offset: 0x6300C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2170, symBinAddr: 0x13090, symSize: 0x10 } - - { offsetInCU: 0x180D, offset: 0x63028, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8900, symBinAddr: 0x197D0, symSize: 0xE0 } - - { offsetInCU: 0x1853, offset: 0x6306E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1450, symBinAddr: 0x12370, symSize: 0x130 } - - { offsetInCU: 0x18A8, offset: 0x630C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x21C0, symBinAddr: 0x130E0, symSize: 0x40 } - - { offsetInCU: 0x18DF, offset: 0x630FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2200, symBinAddr: 0x13120, symSize: 0x40 } - - { offsetInCU: 0x1902, offset: 0x6311D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x89E0, symBinAddr: 0x198B0, symSize: 0x1C0 } - - { offsetInCU: 0x193F, offset: 0x6315A, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3ED0, symBinAddr: 0x14DB0, symSize: 0x30 } - - { offsetInCU: 0x1953, offset: 0x6316E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3F00, symBinAddr: 0x14DE0, symSize: 0x30 } - - { offsetInCU: 0x1967, offset: 0x63182, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F30, symBinAddr: 0x14E10, symSize: 0x30 } - - { offsetInCU: 0x197B, offset: 0x63196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3F60, symBinAddr: 0x14E40, symSize: 0x30 } - - { offsetInCU: 0x198F, offset: 0x631AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3F90, symBinAddr: 0x14E70, symSize: 0x30 } - - { offsetInCU: 0x19A3, offset: 0x631BE, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FC0, symBinAddr: 0x14EA0, symSize: 0x10 } - - { offsetInCU: 0x19B7, offset: 0x631D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3FE0, symBinAddr: 0x14EB0, symSize: 0x50 } - - { offsetInCU: 0x19CB, offset: 0x631E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4030, symBinAddr: 0x14F00, symSize: 0xA0 } - - { offsetInCU: 0x19DF, offset: 0x631FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x40D0, symBinAddr: 0x14FA0, symSize: 0x10 } - - { offsetInCU: 0x19F3, offset: 0x6320E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x40E0, symBinAddr: 0x14FB0, symSize: 0x10 } - - { offsetInCU: 0x1A07, offset: 0x63222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x40F0, symBinAddr: 0x14FC0, symSize: 0x10 } - - { offsetInCU: 0x1A1B, offset: 0x63236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4100, symBinAddr: 0x14FD0, symSize: 0x10 } - - { offsetInCU: 0x1A2F, offset: 0x6324A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x4110, symBinAddr: 0x14FE0, symSize: 0x30 } - - { offsetInCU: 0x1A43, offset: 0x6325E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x4E60, symBinAddr: 0x15D30, symSize: 0x10 } - - { offsetInCU: 0x1A57, offset: 0x63272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x4E70, symBinAddr: 0x15D40, symSize: 0x10 } - - { offsetInCU: 0x1A6B, offset: 0x63286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4E80, symBinAddr: 0x15D50, symSize: 0x30 } - - { offsetInCU: 0x1A7F, offset: 0x6329A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4EB0, symBinAddr: 0x15D80, symSize: 0x10 } - - { offsetInCU: 0x1A93, offset: 0x632AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4EC0, symBinAddr: 0x15D90, symSize: 0x30 } - - { offsetInCU: 0x1AA7, offset: 0x632C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4EF0, symBinAddr: 0x15DC0, symSize: 0x10 } - - { offsetInCU: 0x1ABB, offset: 0x632D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4F00, symBinAddr: 0x15DD0, symSize: 0x30 } - - { offsetInCU: 0x1ACF, offset: 0x632EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x4F30, symBinAddr: 0x15E00, symSize: 0x30 } - - { offsetInCU: 0x1AE3, offset: 0x632FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4F60, symBinAddr: 0x15E30, symSize: 0x30 } - - { offsetInCU: 0x1AF7, offset: 0x63312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4F90, symBinAddr: 0x15E60, symSize: 0x30 } - - { offsetInCU: 0x1B0B, offset: 0x63326, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4FC0, symBinAddr: 0x15E90, symSize: 0x40 } - - { offsetInCU: 0x1B1F, offset: 0x6333A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x5000, symBinAddr: 0x15ED0, symSize: 0x30 } - - { offsetInCU: 0x1B33, offset: 0x6334E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x5030, symBinAddr: 0x15F00, symSize: 0x30 } - - { offsetInCU: 0x1B47, offset: 0x63362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x5060, symBinAddr: 0x15F30, symSize: 0x30 } - - { offsetInCU: 0x1B5B, offset: 0x63376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x5090, symBinAddr: 0x15F60, symSize: 0x30 } - - { offsetInCU: 0x1B6F, offset: 0x6338A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x50C0, symBinAddr: 0x15F90, symSize: 0x30 } - - { offsetInCU: 0x1B83, offset: 0x6339E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x50F0, symBinAddr: 0x15FC0, symSize: 0x30 } - - { offsetInCU: 0x1B97, offset: 0x633B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x5120, symBinAddr: 0x15FF0, symSize: 0x30 } - - { offsetInCU: 0x1BAB, offset: 0x633C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x5150, symBinAddr: 0x16020, symSize: 0x30 } - - { offsetInCU: 0x1BBF, offset: 0x633DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x5180, symBinAddr: 0x16050, symSize: 0x10 } - - { offsetInCU: 0x1BD3, offset: 0x633EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x5190, symBinAddr: 0x16060, symSize: 0x80 } - - { offsetInCU: 0x1BE7, offset: 0x63402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x5210, symBinAddr: 0x160E0, symSize: 0xD0 } - - { offsetInCU: 0x1BFB, offset: 0x63416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x52E0, symBinAddr: 0x161B0, symSize: 0x10 } - - { offsetInCU: 0x1C0F, offset: 0x6342A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x52F0, symBinAddr: 0x161C0, symSize: 0x10 } - - { offsetInCU: 0x1C23, offset: 0x6343E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x5300, symBinAddr: 0x161D0, symSize: 0x10 } - - { offsetInCU: 0x1C37, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x5310, symBinAddr: 0x161E0, symSize: 0x10 } - - { offsetInCU: 0x1C4B, offset: 0x63466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x5320, symBinAddr: 0x161F0, symSize: 0x30 } - - { offsetInCU: 0x1C5F, offset: 0x6347A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x5350, symBinAddr: 0x16220, symSize: 0x40 } - - { offsetInCU: 0x1C73, offset: 0x6348E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x5390, symBinAddr: 0x16260, symSize: 0x70 } - - { offsetInCU: 0x1C87, offset: 0x634A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5400, symBinAddr: 0x162D0, symSize: 0x20 } - - { offsetInCU: 0x1C9B, offset: 0x634B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x5420, symBinAddr: 0x162F0, symSize: 0x50 } - - { offsetInCU: 0x1CAF, offset: 0x634CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x5470, symBinAddr: 0x16340, symSize: 0x40 } - - { offsetInCU: 0x1CC3, offset: 0x634DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x54B0, symBinAddr: 0x16380, symSize: 0x40 } - - { offsetInCU: 0x1CD7, offset: 0x634F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x54F0, symBinAddr: 0x163C0, symSize: 0x10 } - - { offsetInCU: 0x1CEB, offset: 0x63506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x5500, symBinAddr: 0x163D0, symSize: 0x40 } - - { offsetInCU: 0x1CFF, offset: 0x6351A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5540, symBinAddr: 0x16410, symSize: 0x80 } - - { offsetInCU: 0x1D13, offset: 0x6352E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x55C0, symBinAddr: 0x16490, symSize: 0xB0 } - - { offsetInCU: 0x1D27, offset: 0x63542, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5670, symBinAddr: 0x16540, symSize: 0x30 } - - { offsetInCU: 0x1D3B, offset: 0x63556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x56A0, symBinAddr: 0x16570, symSize: 0x80 } - - { offsetInCU: 0x1D4F, offset: 0x6356A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5720, symBinAddr: 0x165F0, symSize: 0x40 } - - { offsetInCU: 0x1D63, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5760, symBinAddr: 0x16630, symSize: 0x50 } - - { offsetInCU: 0x1D77, offset: 0x63592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x57B0, symBinAddr: 0x16680, symSize: 0x10 } - - { offsetInCU: 0x1D8B, offset: 0x635A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x57C0, symBinAddr: 0x16690, symSize: 0x30 } - - { offsetInCU: 0x1D9F, offset: 0x635BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x57F0, symBinAddr: 0x166C0, symSize: 0x40 } - - { offsetInCU: 0x1DB3, offset: 0x635CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5830, symBinAddr: 0x16700, symSize: 0x60 } - - { offsetInCU: 0x1DC7, offset: 0x635E2, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5890, symBinAddr: 0x16760, symSize: 0x20 } - - { offsetInCU: 0x1DDB, offset: 0x635F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x58B0, symBinAddr: 0x16780, symSize: 0x50 } - - { offsetInCU: 0x1DEF, offset: 0x6360A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5900, symBinAddr: 0x167D0, symSize: 0x40 } - - { offsetInCU: 0x1E03, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x5940, symBinAddr: 0x16810, symSize: 0x50 } - - { offsetInCU: 0x1E17, offset: 0x63632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5990, symBinAddr: 0x16860, symSize: 0x10 } - - { offsetInCU: 0x1E2B, offset: 0x63646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x59A0, symBinAddr: 0x16870, symSize: 0x50 } - - { offsetInCU: 0x1E3F, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x59F0, symBinAddr: 0x168C0, symSize: 0xE0 } - - { offsetInCU: 0x1E53, offset: 0x6366E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5AD0, symBinAddr: 0x169A0, symSize: 0x110 } - - { offsetInCU: 0x1E67, offset: 0x63682, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5BE0, symBinAddr: 0x16AB0, symSize: 0x50 } - - { offsetInCU: 0x1E7B, offset: 0x63696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5C30, symBinAddr: 0x16B00, symSize: 0xD0 } - - { offsetInCU: 0x1E8F, offset: 0x636AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x5D00, symBinAddr: 0x16BD0, symSize: 0x40 } - - { offsetInCU: 0x1EA3, offset: 0x636BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x5D40, symBinAddr: 0x16C10, symSize: 0x60 } - - { offsetInCU: 0x1EB7, offset: 0x636D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x5DA0, symBinAddr: 0x16C70, symSize: 0x10 } - - { offsetInCU: 0x1ECB, offset: 0x636E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x5DB0, symBinAddr: 0x16C80, symSize: 0x60 } - - { offsetInCU: 0x1EDF, offset: 0x636FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5E10, symBinAddr: 0x16CE0, symSize: 0x110 } - - { offsetInCU: 0x1EF3, offset: 0x6370E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x5F20, symBinAddr: 0x16DF0, symSize: 0x160 } - - { offsetInCU: 0x1F07, offset: 0x63722, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x6080, symBinAddr: 0x16F50, symSize: 0x10 } - - { offsetInCU: 0x1F1B, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x6090, symBinAddr: 0x16F60, symSize: 0x100 } - - { offsetInCU: 0x1F2F, offset: 0x6374A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x6190, symBinAddr: 0x17060, symSize: 0x40 } - - { offsetInCU: 0x1F43, offset: 0x6375E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x61D0, symBinAddr: 0x170A0, symSize: 0x70 } - - { offsetInCU: 0x1F57, offset: 0x63772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x6240, symBinAddr: 0x17110, symSize: 0x10 } - - { offsetInCU: 0x1F6B, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x6250, symBinAddr: 0x17120, symSize: 0x10 } - - { offsetInCU: 0x1F7F, offset: 0x6379A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x6260, symBinAddr: 0x17130, symSize: 0x30 } - - { offsetInCU: 0x1F93, offset: 0x637AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x6290, symBinAddr: 0x17160, symSize: 0x10 } - - { offsetInCU: 0x1FA7, offset: 0x637C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x62A0, symBinAddr: 0x17170, symSize: 0x30 } - - { offsetInCU: 0x1FBB, offset: 0x637D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x62D0, symBinAddr: 0x171A0, symSize: 0x10 } - - { offsetInCU: 0x1FCF, offset: 0x637EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x62E0, symBinAddr: 0x171B0, symSize: 0x30 } - - { offsetInCU: 0x1FE3, offset: 0x637FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7260, symBinAddr: 0x18130, symSize: 0x30 } - - { offsetInCU: 0x1FF7, offset: 0x63812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x7290, symBinAddr: 0x18160, symSize: 0x30 } - - { offsetInCU: 0x200B, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x72C0, symBinAddr: 0x18190, symSize: 0x30 } - - { offsetInCU: 0x201F, offset: 0x6383A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7B60, symBinAddr: 0x18A30, symSize: 0x30 } - - { offsetInCU: 0x2033, offset: 0x6384E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7DB0, symBinAddr: 0x18C80, symSize: 0x30 } - - { offsetInCU: 0x2047, offset: 0x63862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x88A0, symBinAddr: 0x19770, symSize: 0x30 } - - { offsetInCU: 0x205B, offset: 0x63876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x88D0, symBinAddr: 0x197A0, symSize: 0x30 } - - { offsetInCU: 0x206F, offset: 0x6388A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8BA0, symBinAddr: 0x19A70, symSize: 0x30 } - - { offsetInCU: 0x2083, offset: 0x6389E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x19AA0, symSize: 0x30 } - - { offsetInCU: 0x2097, offset: 0x638B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x8C00, symBinAddr: 0x19AD0, symSize: 0x30 } - - { offsetInCU: 0x20AB, offset: 0x638C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x8C90, symBinAddr: 0x19B60, symSize: 0x30 } - - { offsetInCU: 0x20BF, offset: 0x638DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8CC0, symBinAddr: 0x19B90, symSize: 0x80 } - - { offsetInCU: 0x20D3, offset: 0x638EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8D40, symBinAddr: 0x19C10, symSize: 0xD0 } - - { offsetInCU: 0x20E7, offset: 0x63902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8E10, symBinAddr: 0x19CE0, symSize: 0x10 } - - { offsetInCU: 0x20FB, offset: 0x63916, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8E20, symBinAddr: 0x19CF0, symSize: 0x10 } - - { offsetInCU: 0x210F, offset: 0x6392A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8E30, symBinAddr: 0x19D00, symSize: 0x80 } - - { offsetInCU: 0x2123, offset: 0x6393E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8EB0, symBinAddr: 0x19D80, symSize: 0xD0 } - - { offsetInCU: 0x2137, offset: 0x63952, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8F80, symBinAddr: 0x19E50, symSize: 0x10 } - - { offsetInCU: 0x214B, offset: 0x63966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8F90, symBinAddr: 0x19E60, symSize: 0x10 } - - { offsetInCU: 0x215F, offset: 0x6397A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8FA0, symBinAddr: 0x19E70, symSize: 0x80 } - - { offsetInCU: 0x2173, offset: 0x6398E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9020, symBinAddr: 0x19EF0, symSize: 0xD0 } - - { offsetInCU: 0x2187, offset: 0x639A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x90F0, symBinAddr: 0x19FC0, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x639B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9100, symBinAddr: 0x19FD0, symSize: 0x10 } - - { offsetInCU: 0x21AF, offset: 0x639CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x9110, symBinAddr: 0x19FE0, symSize: 0x10 } - - { offsetInCU: 0x21C3, offset: 0x639DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9120, symBinAddr: 0x19FF0, symSize: 0x10 } - - { offsetInCU: 0x21D7, offset: 0x639F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9130, symBinAddr: 0x1A000, symSize: 0x80 } - - { offsetInCU: 0x21EB, offset: 0x63A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x91B0, symBinAddr: 0x1A080, symSize: 0xD0 } - - { offsetInCU: 0x21FF, offset: 0x63A1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9280, symBinAddr: 0x1A150, symSize: 0x10 } - - { offsetInCU: 0x2213, offset: 0x63A2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9290, symBinAddr: 0x1A160, symSize: 0x10 } - - { offsetInCU: 0x2227, offset: 0x63A42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x92C0, symBinAddr: 0x1A190, symSize: 0x10 } - - { offsetInCU: 0x223B, offset: 0x63A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x92D0, symBinAddr: 0x1A1A0, symSize: 0x10 } - - { offsetInCU: 0x224F, offset: 0x63A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x92E0, symBinAddr: 0x1A1B0, symSize: 0x40 } - - { offsetInCU: 0x2263, offset: 0x63A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x9320, symBinAddr: 0x1A1F0, symSize: 0x80 } - - { offsetInCU: 0x2277, offset: 0x63A92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x93A0, symBinAddr: 0x1A270, symSize: 0xC0 } - - { offsetInCU: 0x228B, offset: 0x63AA6, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9460, symBinAddr: 0x1A330, symSize: 0x40 } - - { offsetInCU: 0x229F, offset: 0x63ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x94A0, symBinAddr: 0x1A370, symSize: 0x90 } - - { offsetInCU: 0x22B3, offset: 0x63ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x9530, symBinAddr: 0x1A400, symSize: 0x40 } - - { offsetInCU: 0x22C7, offset: 0x63AE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x9570, symBinAddr: 0x1A440, symSize: 0x50 } - - { offsetInCU: 0x22DB, offset: 0x63AF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x95C0, symBinAddr: 0x1A490, symSize: 0x10 } - - { offsetInCU: 0x22EF, offset: 0x63B0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x95D0, symBinAddr: 0x1A4A0, symSize: 0x40 } - - { offsetInCU: 0x2303, offset: 0x63B1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x9610, symBinAddr: 0x1A4E0, symSize: 0x80 } - - { offsetInCU: 0x2317, offset: 0x63B32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x9690, symBinAddr: 0x1A560, symSize: 0xA0 } - - { offsetInCU: 0x232B, offset: 0x63B46, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9730, symBinAddr: 0x1A600, symSize: 0x30 } - - { offsetInCU: 0x233F, offset: 0x63B5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x9760, symBinAddr: 0x1A630, symSize: 0x80 } - - { offsetInCU: 0x2353, offset: 0x63B6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x97E0, symBinAddr: 0x1A6B0, symSize: 0x40 } - - { offsetInCU: 0x2367, offset: 0x63B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9820, symBinAddr: 0x1A6F0, symSize: 0x50 } - - { offsetInCU: 0x237B, offset: 0x63B96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x9870, symBinAddr: 0x1A740, symSize: 0x10 } - - { offsetInCU: 0x238F, offset: 0x63BAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x9880, symBinAddr: 0x1A750, symSize: 0x40 } - - { offsetInCU: 0x23A3, offset: 0x63BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x98C0, symBinAddr: 0x1A790, symSize: 0x80 } - - { offsetInCU: 0x23B7, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9940, symBinAddr: 0x1A810, symSize: 0xB0 } - - { offsetInCU: 0x23CB, offset: 0x63BE6, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x99F0, symBinAddr: 0x1A8C0, symSize: 0x30 } - - { offsetInCU: 0x23DF, offset: 0x63BFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x9A20, symBinAddr: 0x1A8F0, symSize: 0x80 } - - { offsetInCU: 0x23F3, offset: 0x63C0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9AA0, symBinAddr: 0x1A970, symSize: 0x40 } - - { offsetInCU: 0x2407, offset: 0x63C22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x9AE0, symBinAddr: 0x1A9B0, symSize: 0x50 } - - { offsetInCU: 0x241B, offset: 0x63C36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9B30, symBinAddr: 0x1AA00, symSize: 0x10 } - - { offsetInCU: 0x242F, offset: 0x63C4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B40, symBinAddr: 0x1AA10, symSize: 0x10 } - - { offsetInCU: 0x2443, offset: 0x63C5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9B50, symBinAddr: 0x1AA20, symSize: 0x30 } - - { offsetInCU: 0x2457, offset: 0x63C72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B80, symBinAddr: 0x1AA50, symSize: 0x10 } - - { offsetInCU: 0x246B, offset: 0x63C86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9B90, symBinAddr: 0x1AA60, symSize: 0x30 } - - { offsetInCU: 0x247F, offset: 0x63C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9BC0, symBinAddr: 0x1AA90, symSize: 0x10 } - - { offsetInCU: 0x2493, offset: 0x63CAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9BD0, symBinAddr: 0x1AAA0, symSize: 0x30 } - - { offsetInCU: 0x24A7, offset: 0x63CC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9C00, symBinAddr: 0x1AAD0, symSize: 0x10 } - - { offsetInCU: 0x24BB, offset: 0x63CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9C10, symBinAddr: 0x1AAE0, symSize: 0x30 } - - { offsetInCU: 0x24CF, offset: 0x63CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9C40, symBinAddr: 0x1AB10, symSize: 0x10 } - - { offsetInCU: 0x24E3, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9C50, symBinAddr: 0x1AB20, symSize: 0x30 } - - { offsetInCU: 0x24F7, offset: 0x63D12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C80, symBinAddr: 0x1AB50, symSize: 0x10 } - - { offsetInCU: 0x250B, offset: 0x63D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C90, symBinAddr: 0x1AB60, symSize: 0x30 } - - { offsetInCU: 0x251F, offset: 0x63D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CC0, symBinAddr: 0x1AB90, symSize: 0x10 } - - { offsetInCU: 0x2533, offset: 0x63D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9CD0, symBinAddr: 0x1ABA0, symSize: 0x30 } - - { offsetInCU: 0x2547, offset: 0x63D62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D00, symBinAddr: 0x1ABD0, symSize: 0x10 } - - { offsetInCU: 0x255B, offset: 0x63D76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D10, symBinAddr: 0x1ABE0, symSize: 0x30 } - - { offsetInCU: 0x256F, offset: 0x63D8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D40, symBinAddr: 0x1AC10, symSize: 0x10 } - - { offsetInCU: 0x2583, offset: 0x63D9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9D50, symBinAddr: 0x1AC20, symSize: 0x30 } - - { offsetInCU: 0x2597, offset: 0x63DB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D80, symBinAddr: 0x1AC50, symSize: 0x10 } - - { offsetInCU: 0x25AB, offset: 0x63DC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x1AC60, symSize: 0x30 } - - { offsetInCU: 0x25BF, offset: 0x63DDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9DC0, symBinAddr: 0x1AC90, symSize: 0x10 } - - { offsetInCU: 0x25D3, offset: 0x63DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x1ACA0, symSize: 0x30 } - - { offsetInCU: 0x25E7, offset: 0x63E02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E00, symBinAddr: 0x1ACD0, symSize: 0x10 } - - { offsetInCU: 0x25FB, offset: 0x63E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E10, symBinAddr: 0x1ACE0, symSize: 0x30 } - - { offsetInCU: 0x260F, offset: 0x63E2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E40, symBinAddr: 0x1AD10, symSize: 0x10 } - - { offsetInCU: 0x2623, offset: 0x63E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9E50, symBinAddr: 0x1AD20, symSize: 0x30 } - - { offsetInCU: 0x2637, offset: 0x63E52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E80, symBinAddr: 0x1AD50, symSize: 0x10 } - - { offsetInCU: 0x264B, offset: 0x63E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E90, symBinAddr: 0x1AD60, symSize: 0x30 } - - { offsetInCU: 0x265F, offset: 0x63E7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EC0, symBinAddr: 0x1AD90, symSize: 0x10 } - - { offsetInCU: 0x2673, offset: 0x63E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9ED0, symBinAddr: 0x1ADA0, symSize: 0x30 } - - { offsetInCU: 0x2687, offset: 0x63EA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9F00, symBinAddr: 0x1ADD0, symSize: 0x30 } - - { offsetInCU: 0x269B, offset: 0x63EB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9F30, symBinAddr: 0x1AE00, symSize: 0x30 } - - { offsetInCU: 0x26AF, offset: 0x63ECA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9F60, symBinAddr: 0x1AE30, symSize: 0x30 } - - { offsetInCU: 0x26C3, offset: 0x63EDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9F90, symBinAddr: 0x1AE60, symSize: 0x80 } - - { offsetInCU: 0x26D7, offset: 0x63EF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA010, symBinAddr: 0x1AEE0, symSize: 0xD0 } - - { offsetInCU: 0x26EB, offset: 0x63F06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA0E0, symBinAddr: 0x1AFB0, symSize: 0x10 } - - { offsetInCU: 0x26FF, offset: 0x63F1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA0F0, symBinAddr: 0x1AFC0, symSize: 0x10 } - - { offsetInCU: 0x2713, offset: 0x63F2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA270, symBinAddr: 0x1B140, symSize: 0x10 } - - { offsetInCU: 0x2727, offset: 0x63F42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA280, symBinAddr: 0x1B150, symSize: 0x10 } - - { offsetInCU: 0x273B, offset: 0x63F56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0xA290, symBinAddr: 0x1B160, symSize: 0x80 } - - { offsetInCU: 0x274F, offset: 0x63F6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA310, symBinAddr: 0x1B1E0, symSize: 0xD0 } - - { offsetInCU: 0x2763, offset: 0x63F7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA3E0, symBinAddr: 0x1B2B0, symSize: 0x10 } - - { offsetInCU: 0x2777, offset: 0x63F92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA3F0, symBinAddr: 0x1B2C0, symSize: 0x10 } - - { offsetInCU: 0x278B, offset: 0x63FA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA400, symBinAddr: 0x1B2D0, symSize: 0x10 } - - { offsetInCU: 0x279F, offset: 0x63FBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA410, symBinAddr: 0x1B2E0, symSize: 0x30 } - - { offsetInCU: 0x27B3, offset: 0x63FCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA440, symBinAddr: 0x1B310, symSize: 0x10 } - - { offsetInCU: 0x27C7, offset: 0x63FE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA450, symBinAddr: 0x1B320, symSize: 0x30 } - - { offsetInCU: 0x27DB, offset: 0x63FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA480, symBinAddr: 0x1B350, symSize: 0x10 } - - { offsetInCU: 0x27EF, offset: 0x6400A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA490, symBinAddr: 0x1B360, symSize: 0x30 } - - { offsetInCU: 0x2803, offset: 0x6401E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA4C0, symBinAddr: 0x1B390, symSize: 0x10 } - - { offsetInCU: 0x2817, offset: 0x64032, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA4D0, symBinAddr: 0x1B3A0, symSize: 0x30 } - - { offsetInCU: 0x282B, offset: 0x64046, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA500, symBinAddr: 0x1B3D0, symSize: 0x10 } - - { offsetInCU: 0x283F, offset: 0x6405A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA510, symBinAddr: 0x1B3E0, symSize: 0x30 } - - { offsetInCU: 0x2853, offset: 0x6406E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA540, symBinAddr: 0x1B410, symSize: 0x10 } - - { offsetInCU: 0x2867, offset: 0x64082, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA550, symBinAddr: 0x1B420, symSize: 0x30 } - - { offsetInCU: 0x287B, offset: 0x64096, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA580, symBinAddr: 0x1B450, symSize: 0x10 } - - { offsetInCU: 0x288F, offset: 0x640AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA590, symBinAddr: 0x1B460, symSize: 0x30 } - - { offsetInCU: 0x28A3, offset: 0x640BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA5C0, symBinAddr: 0x1B490, symSize: 0x10 } - - { offsetInCU: 0x28B7, offset: 0x640D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA5D0, symBinAddr: 0x1B4A0, symSize: 0x30 } - - { offsetInCU: 0x28CB, offset: 0x640E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA600, symBinAddr: 0x1B4D0, symSize: 0x10 } - - { offsetInCU: 0x28DF, offset: 0x640FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA610, symBinAddr: 0x1B4E0, symSize: 0x30 } - - { offsetInCU: 0x292F, offset: 0x6414A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x140, symBinAddr: 0x11060, symSize: 0x20 } - - { offsetInCU: 0x294B, offset: 0x64166, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x160, symBinAddr: 0x11080, symSize: 0x20 } - - { offsetInCU: 0x2994, offset: 0x641AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1680, symBinAddr: 0x125A0, symSize: 0x30 } - - { offsetInCU: 0x2A37, offset: 0x64252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x12620, symSize: 0x20 } - - { offsetInCU: 0x2A53, offset: 0x6426E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x12640, symSize: 0x20 } - - { offsetInCU: 0x2A75, offset: 0x64290, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x12750, symSize: 0x20 } - - { offsetInCU: 0x2A91, offset: 0x642AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x12770, symSize: 0x20 } - - { offsetInCU: 0x2AB3, offset: 0x642CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1950, symBinAddr: 0x12870, symSize: 0x20 } - - { offsetInCU: 0x2ACF, offset: 0x642EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1970, symBinAddr: 0x12890, symSize: 0x20 } - - { offsetInCU: 0x2AF1, offset: 0x6430C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x12980, symSize: 0x20 } - - { offsetInCU: 0x2B0D, offset: 0x64328, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x129A0, symSize: 0x20 } - - { offsetInCU: 0x2B2F, offset: 0x6434A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x12AD0, symSize: 0x20 } - - { offsetInCU: 0x2B4B, offset: 0x64366, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1BD0, symBinAddr: 0x12AF0, symSize: 0x20 } - - { offsetInCU: 0x2B94, offset: 0x643AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D30, symBinAddr: 0x12C50, symSize: 0x40 } - - { offsetInCU: 0x2C37, offset: 0x64452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DC0, symBinAddr: 0x12CE0, symSize: 0x20 } - - { offsetInCU: 0x2C53, offset: 0x6446E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DE0, symBinAddr: 0x12D00, symSize: 0x20 } - - { offsetInCU: 0x2C75, offset: 0x64490, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EA0, symBinAddr: 0x12DC0, symSize: 0x20 } - - { offsetInCU: 0x2C91, offset: 0x644AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1EC0, symBinAddr: 0x12DE0, symSize: 0x20 } - - { offsetInCU: 0x2CB3, offset: 0x644CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x12EF0, symSize: 0x20 } - - { offsetInCU: 0x2CCF, offset: 0x644EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x12F10, symSize: 0x20 } - - { offsetInCU: 0x2CF1, offset: 0x6450C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2180, symBinAddr: 0x130A0, symSize: 0x20 } - - { offsetInCU: 0x2D0D, offset: 0x64528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x21A0, symBinAddr: 0x130C0, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x646D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1B830, symSize: 0xA0 } - - { offsetInCU: 0xA5, offset: 0x64751, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1B830, symSize: 0xA0 } - - { offsetInCU: 0xFE, offset: 0x647AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0xA0, symBinAddr: 0x1B8D0, symSize: 0x40 } - - { offsetInCU: 0x11C, offset: 0x647C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xE0, symBinAddr: 0x1B910, symSize: 0x50 } - - { offsetInCU: 0x156, offset: 0x64802, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x130, symBinAddr: 0x1B960, symSize: 0x10 } - - { offsetInCU: 0x174, offset: 0x64820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x1B970, symSize: 0x10 } - - { offsetInCU: 0x19F, offset: 0x6484B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x150, symBinAddr: 0x1B980, symSize: 0x20 } - - { offsetInCU: 0x1BD, offset: 0x64869, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x170, symBinAddr: 0x1B9A0, symSize: 0x20 } - - { offsetInCU: 0x1F7, offset: 0x648A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x190, symBinAddr: 0x1B9C0, symSize: 0x20 } - - { offsetInCU: 0x225, offset: 0x648D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x1B0, symBinAddr: 0x1B9E0, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x648FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x1C0, symBinAddr: 0x1B9F0, symSize: 0x30 } - - { offsetInCU: 0x26E, offset: 0x6491A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1F0, symBinAddr: 0x1BA20, symSize: 0x30 } - - { offsetInCU: 0x2AC, offset: 0x64958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x220, symBinAddr: 0x1BA50, symSize: 0x20 } - - { offsetInCU: 0x2DA, offset: 0x64986, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x240, symBinAddr: 0x1BA70, symSize: 0x10 } - - { offsetInCU: 0x305, offset: 0x649B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x250, symBinAddr: 0x1BA80, symSize: 0x10 } - - { offsetInCU: 0x323, offset: 0x649CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x260, symBinAddr: 0x1BA90, symSize: 0x10 } - - { offsetInCU: 0x361, offset: 0x64A0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x270, symBinAddr: 0x1BAA0, symSize: 0x20 } - - { offsetInCU: 0x38F, offset: 0x64A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1BAC0, symSize: 0x10 } - - { offsetInCU: 0x3BA, offset: 0x64A66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x2A0, symBinAddr: 0x1BAD0, symSize: 0x10 } - - { offsetInCU: 0x3D8, offset: 0x64A84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x2B0, symBinAddr: 0x1BAE0, symSize: 0x10 } - - { offsetInCU: 0x416, offset: 0x64AC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x2C0, symBinAddr: 0x1BAF0, symSize: 0x20 } - - { offsetInCU: 0x444, offset: 0x64AF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2E0, symBinAddr: 0x1BB10, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x64B1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2F0, symBinAddr: 0x1BB20, symSize: 0x30 } - - { offsetInCU: 0x48D, offset: 0x64B39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x320, symBinAddr: 0x1BB50, symSize: 0x30 } - - { offsetInCU: 0x4CB, offset: 0x64B77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x350, symBinAddr: 0x1BB80, symSize: 0x20 } - - { offsetInCU: 0x4F9, offset: 0x64BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x370, symBinAddr: 0x1BBA0, symSize: 0x10 } - - { offsetInCU: 0x524, offset: 0x64BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x380, symBinAddr: 0x1BBB0, symSize: 0x30 } - - { offsetInCU: 0x542, offset: 0x64BEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x3B0, symBinAddr: 0x1BBE0, symSize: 0x30 } - - { offsetInCU: 0x580, offset: 0x64C2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3E0, symBinAddr: 0x1BC10, symSize: 0x20 } - - { offsetInCU: 0x5AE, offset: 0x64C5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x400, symBinAddr: 0x1BC30, symSize: 0x10 } - - { offsetInCU: 0x5D9, offset: 0x64C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x410, symBinAddr: 0x1BC40, symSize: 0x10 } - - { offsetInCU: 0x5F7, offset: 0x64CA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x420, symBinAddr: 0x1BC50, symSize: 0x10 } - - { offsetInCU: 0x635, offset: 0x64CE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x430, symBinAddr: 0x1BC60, symSize: 0x20 } - - { offsetInCU: 0x663, offset: 0x64D0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x450, symBinAddr: 0x1BC80, symSize: 0x10 } - - { offsetInCU: 0x68E, offset: 0x64D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x460, symBinAddr: 0x1BC90, symSize: 0x10 } - - { offsetInCU: 0x6AC, offset: 0x64D58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x470, symBinAddr: 0x1BCA0, symSize: 0x10 } - - { offsetInCU: 0x6EA, offset: 0x64D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x480, symBinAddr: 0x1BCB0, symSize: 0x20 } - - { offsetInCU: 0x718, offset: 0x64DC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x4A0, symBinAddr: 0x1BCD0, symSize: 0x10 } - - { offsetInCU: 0x744, offset: 0x64DF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x4B0, symBinAddr: 0x1BCE0, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x64E04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x4E0, symBinAddr: 0x1BD10, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x64E18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x520, symBinAddr: 0x1BD50, symSize: 0xD0 } - - { offsetInCU: 0x780, offset: 0x64E2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x5F0, symBinAddr: 0x1BE20, symSize: 0x100 } - - { offsetInCU: 0x794, offset: 0x64E40, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6F0, symBinAddr: 0x1BF20, symSize: 0x50 } - - { offsetInCU: 0x7A8, offset: 0x64E54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x740, symBinAddr: 0x1BF70, symSize: 0xD0 } - - { offsetInCU: 0x7BC, offset: 0x64E68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x810, symBinAddr: 0x1C040, symSize: 0x40 } - - { offsetInCU: 0x7D0, offset: 0x64E7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x850, symBinAddr: 0x1C080, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64E90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x8B0, symBinAddr: 0x1C0E0, symSize: 0xA } - - { offsetInCU: 0x52, offset: 0x65072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1C0F0, symSize: 0x350 } - - { offsetInCU: 0x7D, offset: 0x6509D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x700, symBinAddr: 0x1C7F0, symSize: 0x30 } - - { offsetInCU: 0x99, offset: 0x650B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x990, symBinAddr: 0x1CA80, symSize: 0x50 } - - { offsetInCU: 0xD1, offset: 0x650F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1C440, symSize: 0x310 } - - { offsetInCU: 0xFC, offset: 0x6511C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x960, symBinAddr: 0x1CA50, symSize: 0x30 } - - { offsetInCU: 0x118, offset: 0x65138, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x9E0, symBinAddr: 0x1CAD0, symSize: 0x50 } - - { offsetInCU: 0x144, offset: 0x65164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1CB20, symSize: 0x120 } - - { offsetInCU: 0x174, offset: 0x65194, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1CC40, symSize: 0x80 } - - { offsetInCU: 0x188, offset: 0x651A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1CCC0, symSize: 0xD0 } - - { offsetInCU: 0x19C, offset: 0x651BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1CD90, symSize: 0x10 } - - { offsetInCU: 0x1B0, offset: 0x651D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1CDA0, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x651E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1CDB0, symSize: 0x80 } - - { offsetInCU: 0x1D8, offset: 0x651F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1CE30, symSize: 0xD0 } - - { offsetInCU: 0x1EC, offset: 0x6520C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1CF00, symSize: 0x10 } - - { offsetInCU: 0x200, offset: 0x65220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1CF10, symSize: 0x10 } - - { offsetInCU: 0x214, offset: 0x65234, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1CF20, symSize: 0x10 } - - { offsetInCU: 0x228, offset: 0x65248, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1CF30, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x6525C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1CF40, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x65270, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1CF50, symSize: 0x30 } - - { offsetInCU: 0x264, offset: 0x65284, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1CF80, symSize: 0x10 } - - { offsetInCU: 0x278, offset: 0x65298, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1CF90, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x653F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1CFE0, symSize: 0x2B0 } - - { offsetInCU: 0x7C, offset: 0x65423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1D290, symSize: 0x20 } - - { offsetInCU: 0xA9, offset: 0x65450, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC9printLogs33_D78766567F29622279F8000760588BB6LL3msgySS_tFTf4nd_n', symObjAddr: 0x6D0, symBinAddr: 0x1D6B0, symSize: 0xC0 } - - { offsetInCU: 0x1DB, offset: 0x65582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1D2B0, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x655D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1D2D0, symSize: 0x90 } - - { offsetInCU: 0x284, offset: 0x6562B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1D360, symSize: 0x10 } - - { offsetInCU: 0x2AD, offset: 0x65654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1D370, symSize: 0x10 } - - { offsetInCU: 0x2D6, offset: 0x6567D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1D380, symSize: 0x10 } - - { offsetInCU: 0x2FF, offset: 0x656A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1D420, symSize: 0x10 } - - { offsetInCU: 0x351, offset: 0x656F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1D430, symSize: 0x80 } - - { offsetInCU: 0x3A9, offset: 0x65750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1D4B0, symSize: 0x60 } - - { offsetInCU: 0x3EA, offset: 0x65791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1D510, symSize: 0x90 } - - { offsetInCU: 0x446, offset: 0x657ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1D5A0, symSize: 0x80 } - - { offsetInCU: 0x494, offset: 0x6583B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1D620, symSize: 0x70 } - - { offsetInCU: 0x4C6, offset: 0x6586D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1D690, symSize: 0x10 } - - { offsetInCU: 0x4E2, offset: 0x65889, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6C0, symBinAddr: 0x1D6A0, symSize: 0x10 } - - { offsetInCU: 0x567, offset: 0x6590E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x790, symBinAddr: 0x1D770, symSize: 0x910 } - - { offsetInCU: 0x678, offset: 0x65A1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0x10A0, symBinAddr: 0x1E080, symSize: 0x70 } - - { offsetInCU: 0x6CD, offset: 0x65A74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1110, symBinAddr: 0x1E0F0, symSize: 0x2A0 } - - { offsetInCU: 0x7E5, offset: 0x65B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x13B0, symBinAddr: 0x1E390, symSize: 0x60 } - - { offsetInCU: 0x824, offset: 0x65BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0x1410, symBinAddr: 0x1E3F0, symSize: 0x60 } - - { offsetInCU: 0x863, offset: 0x65C0A, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1470, symBinAddr: 0x1E450, symSize: 0x20 } - - { offsetInCU: 0x877, offset: 0x65C1E, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1490, symBinAddr: 0x1E470, symSize: 0x20 } - - { offsetInCU: 0x88B, offset: 0x65C32, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1520, symBinAddr: 0x1E490, symSize: 0x40 } - - { offsetInCU: 0x89F, offset: 0x65C46, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1560, symBinAddr: 0x1E4D0, symSize: 0x20 } - - { offsetInCU: 0x8B3, offset: 0x65C5A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1580, symBinAddr: 0x1E4F0, symSize: 0x40 } - - { offsetInCU: 0x8C7, offset: 0x65C6E, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x15C0, symBinAddr: 0x1E530, symSize: 0x30 } - - { offsetInCU: 0x8DB, offset: 0x65C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x15F0, symBinAddr: 0x1E560, symSize: 0x260 } - - { offsetInCU: 0x8EF, offset: 0x65C96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1850, symBinAddr: 0x1E7C0, symSize: 0x30 } - - { offsetInCU: 0x903, offset: 0x65CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x1880, symBinAddr: 0x1E7F0, symSize: 0x260 } - - { offsetInCU: 0x917, offset: 0x65CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1AE0, symBinAddr: 0x1EA50, symSize: 0x25 } - - { offsetInCU: 0x4F, offset: 0x65F65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2A10, symBinAddr: 0x8FAC0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x65F7F, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2A18, symBinAddr: 0x8FAC8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65F8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1EAC0, symSize: 0x30 } - - { offsetInCU: 0xB3, offset: 0x65FC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1EAF0, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x65FFF, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1EB30, symSize: 0x30 } - - { offsetInCU: 0x114, offset: 0x6602A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1EB60, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x6607A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1EBA0, symSize: 0x30 } - - { offsetInCU: 0x18F, offset: 0x660A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x180, symBinAddr: 0x1EC00, symSize: 0x10 } - - { offsetInCU: 0x1B8, offset: 0x660CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0x1EC10, symSize: 0x30 } - - { offsetInCU: 0x1D3, offset: 0x660E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x1C0, symBinAddr: 0x1EC40, symSize: 0x10 } - - { offsetInCU: 0x202, offset: 0x66118, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x1D0, symBinAddr: 0x1EC50, symSize: 0x20 } - - { offsetInCU: 0x293, offset: 0x661A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x240, symBinAddr: 0x1ECC0, symSize: 0x10 } - - { offsetInCU: 0x2F3, offset: 0x66209, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2A0, symBinAddr: 0x1ED20, symSize: 0x20 } - - { offsetInCU: 0x36D, offset: 0x66283, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0x1ED90, symSize: 0x10 } - - { offsetInCU: 0x3F7, offset: 0x6630D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x450, symBinAddr: 0x1EED0, symSize: 0x40 } - - { offsetInCU: 0x414, offset: 0x6632A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x4B0, symBinAddr: 0x1EF30, symSize: 0x50 } - - { offsetInCU: 0x43B, offset: 0x66351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x520, symBinAddr: 0x1EFA0, symSize: 0x30 } - - { offsetInCU: 0x468, offset: 0x6637E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x550, symBinAddr: 0x1EFD0, symSize: 0x10 } - - { offsetInCU: 0x4DB, offset: 0x663F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x690, symBinAddr: 0x1F110, symSize: 0x40 } - - { offsetInCU: 0x4F8, offset: 0x6640E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x6D0, symBinAddr: 0x1F150, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x66435, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x720, symBinAddr: 0x1F1A0, symSize: 0x30 } - - { offsetInCU: 0x54C, offset: 0x66462, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x750, symBinAddr: 0x1F1D0, symSize: 0x10 } - - { offsetInCU: 0x577, offset: 0x6648D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x760, symBinAddr: 0x1F1E0, symSize: 0x30 } - - { offsetInCU: 0x594, offset: 0x664AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x790, symBinAddr: 0x1F210, symSize: 0x30 } - - { offsetInCU: 0x5BB, offset: 0x664D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x7C0, symBinAddr: 0x1F240, symSize: 0x30 } - - { offsetInCU: 0x612, offset: 0x66528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x840, symBinAddr: 0x1F2C0, symSize: 0x30 } - - { offsetInCU: 0x62F, offset: 0x66545, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x870, symBinAddr: 0x1F2F0, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x6656C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x8B0, symBinAddr: 0x1F330, symSize: 0x30 } - - { offsetInCU: 0x683, offset: 0x66599, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0x8E0, symBinAddr: 0x1F360, symSize: 0x70 } - - { offsetInCU: 0x72E, offset: 0x66644, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0x950, symBinAddr: 0x1F3D0, symSize: 0xA0 } - - { offsetInCU: 0x7AB, offset: 0x666C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9F0, symBinAddr: 0x1F470, symSize: 0xA0 } - - { offsetInCU: 0x80F, offset: 0x66725, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xC80, symBinAddr: 0x1F700, symSize: 0x60 } - - { offsetInCU: 0x839, offset: 0x6674F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xCE0, symBinAddr: 0x1F760, symSize: 0x30 } - - { offsetInCU: 0x85E, offset: 0x66774, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xD10, symBinAddr: 0x1F790, symSize: 0x180 } - - { offsetInCU: 0x913, offset: 0x66829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1F910, symSize: 0x10 } - - { offsetInCU: 0x960, offset: 0x66876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0xEA0, symBinAddr: 0x1F920, symSize: 0x70 } - - { offsetInCU: 0x9FC, offset: 0x66912, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0xF40, symBinAddr: 0x1F9C0, symSize: 0x80 } - - { offsetInCU: 0xB12, offset: 0x66A28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1900, symBinAddr: 0x20380, symSize: 0x220 } - - { offsetInCU: 0xBA3, offset: 0x66AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B70, symBinAddr: 0x205F0, symSize: 0x170 } - - { offsetInCU: 0xCA8, offset: 0x66BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x320, symBinAddr: 0x1EDA0, symSize: 0x80 } - - { offsetInCU: 0xCE0, offset: 0x66BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x3A0, symBinAddr: 0x1EE20, symSize: 0xB0 } - - { offsetInCU: 0xD20, offset: 0x66C36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x490, symBinAddr: 0x1EF10, symSize: 0x20 } - - { offsetInCU: 0xD34, offset: 0x66C4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x500, symBinAddr: 0x1EF80, symSize: 0x20 } - - { offsetInCU: 0xD48, offset: 0x66C5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x560, symBinAddr: 0x1EFE0, symSize: 0x80 } - - { offsetInCU: 0xD80, offset: 0x66C96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x5E0, symBinAddr: 0x1F060, symSize: 0xB0 } - - { offsetInCU: 0xDC0, offset: 0x66CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x7F0, symBinAddr: 0x1F270, symSize: 0x50 } - - { offsetInCU: 0xE24, offset: 0x66D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xA90, symBinAddr: 0x1F510, symSize: 0x1F0 } - - { offsetInCU: 0xE98, offset: 0x66DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1790, symBinAddr: 0x20210, symSize: 0x120 } - - { offsetInCU: 0xF78, offset: 0x66E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0xF10, symBinAddr: 0x1F990, symSize: 0x30 } - - { offsetInCU: 0x1067, offset: 0x66F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x18E0, symBinAddr: 0x20360, symSize: 0x20 } - - { offsetInCU: 0x10B7, offset: 0x66FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1FA40, symSize: 0x220 } - - { offsetInCU: 0x128D, offset: 0x671A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x11E0, symBinAddr: 0x1FC60, symSize: 0x10 } - - { offsetInCU: 0x12E4, offset: 0x671FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11F0, symBinAddr: 0x1FC70, symSize: 0x10 } - - { offsetInCU: 0x1332, offset: 0x67248, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1200, symBinAddr: 0x1FC80, symSize: 0x10 } - - { offsetInCU: 0x134A, offset: 0x67260, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1210, symBinAddr: 0x1FC90, symSize: 0xB0 } - - { offsetInCU: 0x13F0, offset: 0x67306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1300, symBinAddr: 0x1FD80, symSize: 0x10 } - - { offsetInCU: 0x1408, offset: 0x6731E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26E0, symBinAddr: 0x21140, symSize: 0x70 } - - { offsetInCU: 0x14E5, offset: 0x673FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x12C0, symBinAddr: 0x1FD40, symSize: 0x40 } - - { offsetInCU: 0x1520, offset: 0x67436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1330, symBinAddr: 0x1FDB0, symSize: 0x90 } - - { offsetInCU: 0x1617, offset: 0x6752D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x1480, symBinAddr: 0x1FF00, symSize: 0x1D0 } - - { offsetInCU: 0x1CC0, offset: 0x67BD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x1650, symBinAddr: 0x200D0, symSize: 0x130 } - - { offsetInCU: 0x1DBD, offset: 0x67CD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x20200, symSize: 0x10 } - - { offsetInCU: 0x1DD1, offset: 0x67CE7, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x18B0, symBinAddr: 0x20330, symSize: 0x30 } - - { offsetInCU: 0x1DE9, offset: 0x67CFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1B20, symBinAddr: 0x205A0, symSize: 0x30 } - - { offsetInCU: 0x1DFD, offset: 0x67D13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1B50, symBinAddr: 0x205D0, symSize: 0x20 } - - { offsetInCU: 0x1E11, offset: 0x67D27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1CE0, symBinAddr: 0x20760, symSize: 0x20 } - - { offsetInCU: 0x1E25, offset: 0x67D3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1D00, symBinAddr: 0x20780, symSize: 0x10 } - - { offsetInCU: 0x1E39, offset: 0x67D4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1D10, symBinAddr: 0x20790, symSize: 0x30 } - - { offsetInCU: 0x1E4D, offset: 0x67D63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D40, symBinAddr: 0x207C0, symSize: 0x10 } - - { offsetInCU: 0x1E61, offset: 0x67D77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D50, symBinAddr: 0x207D0, symSize: 0x30 } - - { offsetInCU: 0x1E75, offset: 0x67D8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwCP', symObjAddr: 0x1E90, symBinAddr: 0x20910, symSize: 0x60 } - - { offsetInCU: 0x1E89, offset: 0x67D9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1EF0, symBinAddr: 0x20970, symSize: 0x20 } - - { offsetInCU: 0x1E9D, offset: 0x67DB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1F10, symBinAddr: 0x20990, symSize: 0x20 } - - { offsetInCU: 0x1EB1, offset: 0x67DC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1F30, symBinAddr: 0x209B0, symSize: 0x20 } - - { offsetInCU: 0x1EC5, offset: 0x67DDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwcp', symObjAddr: 0x1F50, symBinAddr: 0x209D0, symSize: 0x60 } - - { offsetInCU: 0x1ED9, offset: 0x67DEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x1FB0, symBinAddr: 0x20A30, symSize: 0x70 } - - { offsetInCU: 0x1EED, offset: 0x67E03, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2020, symBinAddr: 0x20AA0, symSize: 0x20 } - - { offsetInCU: 0x1F01, offset: 0x67E17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x2040, symBinAddr: 0x20AC0, symSize: 0x40 } - - { offsetInCU: 0x1F15, offset: 0x67E2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x2080, symBinAddr: 0x20B00, symSize: 0x50 } - - { offsetInCU: 0x1F29, offset: 0x67E3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x20D0, symBinAddr: 0x20B50, symSize: 0x50 } - - { offsetInCU: 0x1F3D, offset: 0x67E53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x2120, symBinAddr: 0x20BA0, symSize: 0x10 } - - { offsetInCU: 0x1F51, offset: 0x67E67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2130, symBinAddr: 0x20BB0, symSize: 0x10 } - - { offsetInCU: 0x1F65, offset: 0x67E7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2140, symBinAddr: 0x20BC0, symSize: 0x10 } - - { offsetInCU: 0x1F79, offset: 0x67E8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x2150, symBinAddr: 0x20BD0, symSize: 0x10 } - - { offsetInCU: 0x1F8D, offset: 0x67EA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2340, symBinAddr: 0x20DA0, symSize: 0x80 } - - { offsetInCU: 0x1FA1, offset: 0x67EB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23C0, symBinAddr: 0x20E20, symSize: 0xD0 } - - { offsetInCU: 0x1FB5, offset: 0x67ECB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2490, symBinAddr: 0x20EF0, symSize: 0x10 } - - { offsetInCU: 0x1FC9, offset: 0x67EDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x24A0, symBinAddr: 0x20F00, symSize: 0x10 } - - { offsetInCU: 0x1FDD, offset: 0x67EF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x24B0, symBinAddr: 0x20F10, symSize: 0x80 } - - { offsetInCU: 0x1FF1, offset: 0x67F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2530, symBinAddr: 0x20F90, symSize: 0xD0 } - - { offsetInCU: 0x2005, offset: 0x67F1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x2600, symBinAddr: 0x21060, symSize: 0x10 } - - { offsetInCU: 0x2019, offset: 0x67F2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x2610, symBinAddr: 0x21070, symSize: 0x10 } - - { offsetInCU: 0x202D, offset: 0x67F43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2620, symBinAddr: 0x21080, symSize: 0x10 } - - { offsetInCU: 0x2041, offset: 0x67F57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2630, symBinAddr: 0x21090, symSize: 0x10 } - - { offsetInCU: 0x2060, offset: 0x67F76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2670, symBinAddr: 0x210D0, symSize: 0x20 } - - { offsetInCU: 0x2089, offset: 0x67F9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x2770, symBinAddr: 0x211D0, symSize: 0x10 } - - { offsetInCU: 0x209D, offset: 0x67FB3, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2780, symBinAddr: 0x211E0, symSize: 0x20 } - - { offsetInCU: 0x20B1, offset: 0x67FC7, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x27A0, symBinAddr: 0x21200, symSize: 0x10 } - - { offsetInCU: 0x20C5, offset: 0x67FDB, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2830, symBinAddr: 0x21210, symSize: 0x30 } - - { offsetInCU: 0x2147, offset: 0x6805D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1EA80, symSize: 0x10 } - - { offsetInCU: 0x2163, offset: 0x68079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1EA90, symSize: 0x10 } - - { offsetInCU: 0x217F, offset: 0x68095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1EAA0, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x680B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1EAB0, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x6854F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x213D0, symSize: 0x30 } - - { offsetInCU: 0x57, offset: 0x68563, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x21400, symSize: 0x80 } - - { offsetInCU: 0x6B, offset: 0x68577, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x21480, symSize: 0x130 } - - { offsetInCU: 0x86, offset: 0x68592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x215B0, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x685BB, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x215E0, symSize: 0x30 } - - { offsetInCU: 0xC3, offset: 0x685CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x21610, symSize: 0xC0 } - - { offsetInCU: 0xD7, offset: 0x685E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x216D0, symSize: 0x50 } - - { offsetInCU: 0xEB, offset: 0x685F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x21720, symSize: 0x50 } - - { offsetInCU: 0xFF, offset: 0x6860B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x21770, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x6861F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x21780, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x68633, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x217B0, symSize: 0x30 } - - { offsetInCU: 0x13B, offset: 0x68647, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x217E0, symSize: 0x60 } - - { offsetInCU: 0x14F, offset: 0x6865B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x21840, symSize: 0x80 } - - { offsetInCU: 0x163, offset: 0x6866F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x218C0, symSize: 0x60 } - - { offsetInCU: 0x177, offset: 0x68683, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x21920, symSize: 0x50 } - - { offsetInCU: 0x18B, offset: 0x68697, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x21970, symSize: 0x50 } - - { offsetInCU: 0x19F, offset: 0x686AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x219C0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x686CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x219D0, symSize: 0x100 } - - { offsetInCU: 0x20B, offset: 0x68717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x21E30, symSize: 0x10 } - - { offsetInCU: 0x25F, offset: 0x6876B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA70, symBinAddr: 0x21E40, symSize: 0x30 } - - { offsetInCU: 0x343, offset: 0x6884F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA0, symBinAddr: 0x21E70, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x688D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF0, symBinAddr: 0x21EC0, symSize: 0x10 } - - { offsetInCU: 0x404, offset: 0x68910, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB00, symBinAddr: 0x21ED0, symSize: 0x20 } - - { offsetInCU: 0x435, offset: 0x68941, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB20, symBinAddr: 0x21EF0, symSize: 0x10 } - - { offsetInCU: 0x451, offset: 0x6895D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB30, symBinAddr: 0x21F00, symSize: 0x10 } - - { offsetInCU: 0x46D, offset: 0x68979, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF00, symBinAddr: 0x222D0, symSize: 0x60 } - - { offsetInCU: 0x4B1, offset: 0x689BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF60, symBinAddr: 0x22330, symSize: 0x20 } - - { offsetInCU: 0x4E5, offset: 0x689F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB80, symBinAddr: 0x21F50, symSize: 0x40 } - - { offsetInCU: 0x51C, offset: 0x68A28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBC0, symBinAddr: 0x21F90, symSize: 0x40 } - - { offsetInCU: 0x53F, offset: 0x68A4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF80, symBinAddr: 0x22350, symSize: 0x140 } - - { offsetInCU: 0x58F, offset: 0x68A9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x700, symBinAddr: 0x21AD0, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x68AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC00, symBinAddr: 0x21FD0, symSize: 0x10 } - - { offsetInCU: 0x63A, offset: 0x68B46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC20, symBinAddr: 0x21FF0, symSize: 0x20 } - - { offsetInCU: 0x6B4, offset: 0x68BC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC50, symBinAddr: 0x22020, symSize: 0x10 } - - { offsetInCU: 0x6DF, offset: 0x68BEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC60, symBinAddr: 0x22030, symSize: 0x20 } - - { offsetInCU: 0x710, offset: 0x68C1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC80, symBinAddr: 0x22050, symSize: 0x10 } - - { offsetInCU: 0x72C, offset: 0x68C38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xC90, symBinAddr: 0x22060, symSize: 0x10 } - - { offsetInCU: 0x748, offset: 0x68C54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x11F0, symBinAddr: 0x22520, symSize: 0x110 } - - { offsetInCU: 0x78E, offset: 0x68C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x720, symBinAddr: 0x21AF0, symSize: 0x1B0 } - - { offsetInCU: 0x7E3, offset: 0x68CEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xCE0, symBinAddr: 0x220B0, symSize: 0x40 } - - { offsetInCU: 0x81A, offset: 0x68D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD20, symBinAddr: 0x220F0, symSize: 0x40 } - - { offsetInCU: 0x83D, offset: 0x68D49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1300, symBinAddr: 0x22630, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x68D99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x8D0, symBinAddr: 0x21CA0, symSize: 0x20 } - - { offsetInCU: 0x8B6, offset: 0x68DC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE00, symBinAddr: 0x221D0, symSize: 0x10 } - - { offsetInCU: 0x8E1, offset: 0x68DED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE10, symBinAddr: 0x221E0, symSize: 0x20 } - - { offsetInCU: 0x912, offset: 0x68E1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE30, symBinAddr: 0x22200, symSize: 0x10 } - - { offsetInCU: 0x92E, offset: 0x68E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CC0, symBinAddr: 0x22F50, symSize: 0x120 } - - { offsetInCU: 0x974, offset: 0x68E80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8F0, symBinAddr: 0x21CC0, symSize: 0x170 } - - { offsetInCU: 0x9C9, offset: 0x68ED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xE80, symBinAddr: 0x22250, symSize: 0x40 } - - { offsetInCU: 0xA00, offset: 0x68F0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEC0, symBinAddr: 0x22290, symSize: 0x40 } - - { offsetInCU: 0xA23, offset: 0x68F2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1DE0, symBinAddr: 0x23070, symSize: 0x2F0 } - - { offsetInCU: 0xA76, offset: 0x68F82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1130, symBinAddr: 0x22490, symSize: 0x30 } - - { offsetInCU: 0xA8A, offset: 0x68F96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x1190, symBinAddr: 0x224C0, symSize: 0x30 } - - { offsetInCU: 0xA9E, offset: 0x68FAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x11C0, symBinAddr: 0x224F0, symSize: 0x30 } - - { offsetInCU: 0xAB2, offset: 0x68FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1550, symBinAddr: 0x22880, symSize: 0x30 } - - { offsetInCU: 0xAC6, offset: 0x68FD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x15C0, symBinAddr: 0x228B0, symSize: 0x30 } - - { offsetInCU: 0xADA, offset: 0x68FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x1680, symBinAddr: 0x22970, symSize: 0x30 } - - { offsetInCU: 0xAEE, offset: 0x68FFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x16F0, symBinAddr: 0x229C0, symSize: 0x10 } - - { offsetInCU: 0xB02, offset: 0x6900E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1700, symBinAddr: 0x229D0, symSize: 0x10 } - - { offsetInCU: 0xB16, offset: 0x69022, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1710, symBinAddr: 0x229E0, symSize: 0x10 } - - { offsetInCU: 0xB2A, offset: 0x69036, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x1720, symBinAddr: 0x229F0, symSize: 0x10 } - - { offsetInCU: 0xB3E, offset: 0x6904A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1740, symBinAddr: 0x22A00, symSize: 0x50 } - - { offsetInCU: 0xB52, offset: 0x6905E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1790, symBinAddr: 0x22A50, symSize: 0xA0 } - - { offsetInCU: 0xB66, offset: 0x69072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1830, symBinAddr: 0x22AF0, symSize: 0x10 } - - { offsetInCU: 0xB7A, offset: 0x69086, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1840, symBinAddr: 0x22B00, symSize: 0x10 } - - { offsetInCU: 0xB8E, offset: 0x6909A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1850, symBinAddr: 0x22B10, symSize: 0x10 } - - { offsetInCU: 0xBA2, offset: 0x690AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x1860, symBinAddr: 0x22B20, symSize: 0x10 } - - { offsetInCU: 0xBB6, offset: 0x690C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x1870, symBinAddr: 0x22B30, symSize: 0x40 } - - { offsetInCU: 0xBCA, offset: 0x690D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x18B0, symBinAddr: 0x22B70, symSize: 0x80 } - - { offsetInCU: 0xBDE, offset: 0x690EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1930, symBinAddr: 0x22BF0, symSize: 0xA0 } - - { offsetInCU: 0xBF2, offset: 0x690FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A00, symBinAddr: 0x22C90, symSize: 0x80 } - - { offsetInCU: 0xC06, offset: 0x69112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1A80, symBinAddr: 0x22D10, symSize: 0x50 } - - { offsetInCU: 0xC1A, offset: 0x69126, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1AD0, symBinAddr: 0x22D60, symSize: 0x60 } - - { offsetInCU: 0xC2E, offset: 0x6913A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B30, symBinAddr: 0x22DC0, symSize: 0x10 } - - { offsetInCU: 0xC42, offset: 0x6914E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B40, symBinAddr: 0x22DD0, symSize: 0x10 } - - { offsetInCU: 0xC56, offset: 0x69162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B50, symBinAddr: 0x22DE0, symSize: 0x30 } - - { offsetInCU: 0xC6A, offset: 0x69176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B80, symBinAddr: 0x22E10, symSize: 0x10 } - - { offsetInCU: 0xC7E, offset: 0x6918A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x22E20, symSize: 0x30 } - - { offsetInCU: 0xC92, offset: 0x6919E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BC0, symBinAddr: 0x22E50, symSize: 0x10 } - - { offsetInCU: 0xCA6, offset: 0x691B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x22E60, symSize: 0x30 } - - { offsetInCU: 0xCBA, offset: 0x691C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C00, symBinAddr: 0x22E90, symSize: 0x10 } - - { offsetInCU: 0xCCE, offset: 0x691DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C10, symBinAddr: 0x22EA0, symSize: 0x30 } - - { offsetInCU: 0xCE2, offset: 0x691EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C40, symBinAddr: 0x22ED0, symSize: 0x10 } - - { offsetInCU: 0xCF6, offset: 0x69202, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C50, symBinAddr: 0x22EE0, symSize: 0x30 } - - { offsetInCU: 0xD0A, offset: 0x69216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C80, symBinAddr: 0x22F10, symSize: 0x10 } - - { offsetInCU: 0xD1E, offset: 0x6922A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C90, symBinAddr: 0x22F20, symSize: 0x30 } - - { offsetInCU: 0xD32, offset: 0x6923E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x20D0, symBinAddr: 0x23360, symSize: 0x30 } - - { offsetInCU: 0xD46, offset: 0x69252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x2270, symBinAddr: 0x23500, symSize: 0x10 } - - { offsetInCU: 0xD5A, offset: 0x69266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2280, symBinAddr: 0x23510, symSize: 0x10 } - - { offsetInCU: 0xD6E, offset: 0x6927A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2290, symBinAddr: 0x23520, symSize: 0x10 } - - { offsetInCU: 0xD82, offset: 0x6928E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x22A0, symBinAddr: 0x23530, symSize: 0x30 } - - { offsetInCU: 0xD96, offset: 0x692A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22D0, symBinAddr: 0x23560, symSize: 0x10 } - - { offsetInCU: 0xDAA, offset: 0x692B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E0, symBinAddr: 0x23570, symSize: 0x30 } - - { offsetInCU: 0xDBE, offset: 0x692CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2310, symBinAddr: 0x235A0, symSize: 0x10 } - - { offsetInCU: 0xDD2, offset: 0x692DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2320, symBinAddr: 0x235B0, symSize: 0x30 } - - { offsetInCU: 0xE27, offset: 0x69333, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAC0, symBinAddr: 0x21E90, symSize: 0x30 } - - { offsetInCU: 0xECA, offset: 0x693D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB40, symBinAddr: 0x21F10, symSize: 0x20 } - - { offsetInCU: 0xEE6, offset: 0x693F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x21F30, symSize: 0x20 } - - { offsetInCU: 0xF08, offset: 0x69414, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCA0, symBinAddr: 0x22070, symSize: 0x20 } - - { offsetInCU: 0xF24, offset: 0x69430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCC0, symBinAddr: 0x22090, symSize: 0x20 } - - { offsetInCU: 0xF46, offset: 0x69452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE40, symBinAddr: 0x22210, symSize: 0x20 } - - { offsetInCU: 0xF62, offset: 0x6946E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE60, symBinAddr: 0x22230, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x695BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x23650, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x695DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x23650, symSize: 0x10 } - - { offsetInCU: 0x7A, offset: 0x6960E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x810, symBinAddr: 0x23D60, symSize: 0x20 } - - { offsetInCU: 0x110, offset: 0x696A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x830, symBinAddr: 0x23D80, symSize: 0x40 } - - { offsetInCU: 0x20B, offset: 0x6979F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x870, symBinAddr: 0x23DC0, symSize: 0x10 } - - { offsetInCU: 0x261, offset: 0x697F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x880, symBinAddr: 0x23DD0, symSize: 0x40 } - - { offsetInCU: 0x345, offset: 0x698D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x23E10, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x69958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x23660, symSize: 0x480 } - - { offsetInCU: 0x440, offset: 0x699D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOy', symObjAddr: 0x490, symBinAddr: 0x23AE0, symSize: 0x20 } - - { offsetInCU: 0x454, offset: 0x699E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOe', symObjAddr: 0x4E0, symBinAddr: 0x23B00, symSize: 0x20 } - - { offsetInCU: 0x474, offset: 0x69A08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x5D0, symBinAddr: 0x23B20, symSize: 0x30 } - - { offsetInCU: 0x492, offset: 0x69A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x600, symBinAddr: 0x23B50, symSize: 0x30 } - - { offsetInCU: 0x4D0, offset: 0x69A64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x630, symBinAddr: 0x23B80, symSize: 0x10 } - - { offsetInCU: 0x4EE, offset: 0x69A82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x640, symBinAddr: 0x23B90, symSize: 0x10 } - - { offsetInCU: 0x519, offset: 0x69AAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x650, symBinAddr: 0x23BA0, symSize: 0x10 } - - { offsetInCU: 0x537, offset: 0x69ACB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x660, symBinAddr: 0x23BB0, symSize: 0x10 } - - { offsetInCU: 0x575, offset: 0x69B09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x670, symBinAddr: 0x23BC0, symSize: 0x20 } - - { offsetInCU: 0x5A3, offset: 0x69B37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x690, symBinAddr: 0x23BE0, symSize: 0x10 } - - { offsetInCU: 0x5D6, offset: 0x69B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x6A0, symBinAddr: 0x23BF0, symSize: 0x30 } - - { offsetInCU: 0x5F4, offset: 0x69B88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x6D0, symBinAddr: 0x23C20, symSize: 0x20 } - - { offsetInCU: 0x61A, offset: 0x69BAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x6F0, symBinAddr: 0x23C40, symSize: 0x30 } - - { offsetInCU: 0x638, offset: 0x69BCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x720, symBinAddr: 0x23C70, symSize: 0x30 } - - { offsetInCU: 0x663, offset: 0x69BF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x750, symBinAddr: 0x23CA0, symSize: 0x10 } - - { offsetInCU: 0x681, offset: 0x69C15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x760, symBinAddr: 0x23CB0, symSize: 0x10 } - - { offsetInCU: 0x6BD, offset: 0x69C51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x770, symBinAddr: 0x23CC0, symSize: 0x10 } - - { offsetInCU: 0x6DB, offset: 0x69C6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x780, symBinAddr: 0x23CD0, symSize: 0x10 } - - { offsetInCU: 0x706, offset: 0x69C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x790, symBinAddr: 0x23CE0, symSize: 0x10 } - - { offsetInCU: 0x724, offset: 0x69CB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x7A0, symBinAddr: 0x23CF0, symSize: 0x10 } - - { offsetInCU: 0x760, offset: 0x69CF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x7B0, symBinAddr: 0x23D00, symSize: 0x20 } - - { offsetInCU: 0x78E, offset: 0x69D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x7D0, symBinAddr: 0x23D20, symSize: 0x10 } - - { offsetInCU: 0x7B9, offset: 0x69D4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x7E0, symBinAddr: 0x23D30, symSize: 0x20 } - - { offsetInCU: 0x7E7, offset: 0x69D7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x800, symBinAddr: 0x23D50, symSize: 0x10 } - - { offsetInCU: 0x829, offset: 0x69DBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x920, symBinAddr: 0x23E70, symSize: 0x10 } - - { offsetInCU: 0x83D, offset: 0x69DD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x930, symBinAddr: 0x23E80, symSize: 0x30 } - - { offsetInCU: 0x851, offset: 0x69DE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x960, symBinAddr: 0x23EB0, symSize: 0x30 } - - { offsetInCU: 0x865, offset: 0x69DF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x990, symBinAddr: 0x23EE0, symSize: 0x80 } - - { offsetInCU: 0x879, offset: 0x69E0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0xA10, symBinAddr: 0x23F60, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x69E21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0xC60, symBinAddr: 0x241B0, symSize: 0x4F0 } - - { offsetInCU: 0x8A8, offset: 0x69E3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0x1150, symBinAddr: 0x246A0, symSize: 0x30 } - - { offsetInCU: 0x8D1, offset: 0x69E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0x1180, symBinAddr: 0x246D0, symSize: 0x20 } - - { offsetInCU: 0x8E5, offset: 0x69E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0x11A0, symBinAddr: 0x246F0, symSize: 0x30 } - - { offsetInCU: 0x8F9, offset: 0x69E8D, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0x11D0, symBinAddr: 0x24720, symSize: 0x10 } - - { offsetInCU: 0x90D, offset: 0x69EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x24730, symSize: 0x340 } - - { offsetInCU: 0x921, offset: 0x69EB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x1520, symBinAddr: 0x24A70, symSize: 0x40 } - - { offsetInCU: 0x935, offset: 0x69EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1560, symBinAddr: 0x24AB0, symSize: 0x90 } - - { offsetInCU: 0x949, offset: 0x69EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x24B40, symSize: 0x10 } - - { offsetInCU: 0x95D, offset: 0x69EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwCP', symObjAddr: 0x1600, symBinAddr: 0x24B50, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x69F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1630, symBinAddr: 0x24B80, symSize: 0x10 } - - { offsetInCU: 0x985, offset: 0x69F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwcp', symObjAddr: 0x1640, symBinAddr: 0x24B90, symSize: 0x30 } - - { offsetInCU: 0x999, offset: 0x69F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x24BC0, symSize: 0x50 } - - { offsetInCU: 0x9AD, offset: 0x69F41, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x16C0, symBinAddr: 0x24C10, symSize: 0x20 } - - { offsetInCU: 0x9C1, offset: 0x69F55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x16E0, symBinAddr: 0x24C30, symSize: 0x40 } - - { offsetInCU: 0x9D5, offset: 0x69F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1720, symBinAddr: 0x24C70, symSize: 0x40 } - - { offsetInCU: 0x9E9, offset: 0x69F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1760, symBinAddr: 0x24CB0, symSize: 0x50 } - - { offsetInCU: 0x9FD, offset: 0x69F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x17B0, symBinAddr: 0x24D00, symSize: 0x10 } - - { offsetInCU: 0xA11, offset: 0x69FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x17C0, symBinAddr: 0x24D10, symSize: 0x30 } - - { offsetInCU: 0xA25, offset: 0x69FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x17F0, symBinAddr: 0x24D40, symSize: 0x80 } - - { offsetInCU: 0xA39, offset: 0x69FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x1870, symBinAddr: 0x24DC0, symSize: 0xE0 } - - { offsetInCU: 0xA4D, offset: 0x69FE1, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1950, symBinAddr: 0x24EA0, symSize: 0x30 } - - { offsetInCU: 0xA61, offset: 0x69FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1980, symBinAddr: 0x24ED0, symSize: 0x90 } - - { offsetInCU: 0xA75, offset: 0x6A009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1A10, symBinAddr: 0x24F60, symSize: 0x50 } - - { offsetInCU: 0xA89, offset: 0x6A01D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1A60, symBinAddr: 0x24FB0, symSize: 0x60 } - - { offsetInCU: 0xA9D, offset: 0x6A031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1AC0, symBinAddr: 0x25010, symSize: 0x10 } - - { offsetInCU: 0xAB1, offset: 0x6A045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1AD0, symBinAddr: 0x25020, symSize: 0x30 } - - { offsetInCU: 0xAC5, offset: 0x6A059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x1B00, symBinAddr: 0x25050, symSize: 0x40 } - - { offsetInCU: 0xAD9, offset: 0x6A06D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x1B40, symBinAddr: 0x25090, symSize: 0x60 } - - { offsetInCU: 0xAED, offset: 0x6A081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1BC0, symBinAddr: 0x250F0, symSize: 0x50 } - - { offsetInCU: 0xB01, offset: 0x6A095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1C10, symBinAddr: 0x25140, symSize: 0x40 } - - { offsetInCU: 0xB15, offset: 0x6A0A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x1C50, symBinAddr: 0x25180, symSize: 0x50 } - - { offsetInCU: 0xB29, offset: 0x6A0BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x1CA0, symBinAddr: 0x251D0, symSize: 0x10 } - - { offsetInCU: 0xB3D, offset: 0x6A0D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1CC0, symBinAddr: 0x251E0, symSize: 0x40 } - - { offsetInCU: 0xB51, offset: 0x6A0E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1D00, symBinAddr: 0x25220, symSize: 0x50 } - - { offsetInCU: 0xB65, offset: 0x6A0F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1D50, symBinAddr: 0x25270, symSize: 0x10 } - - { offsetInCU: 0xB79, offset: 0x6A10D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x1D70, symBinAddr: 0x25280, symSize: 0x80 } - - { offsetInCU: 0xB8D, offset: 0x6A121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1DF0, symBinAddr: 0x25300, symSize: 0xD0 } - - { offsetInCU: 0xBA1, offset: 0x6A135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1EC0, symBinAddr: 0x253D0, symSize: 0x10 } - - { offsetInCU: 0xBB5, offset: 0x6A149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1ED0, symBinAddr: 0x253E0, symSize: 0x10 } - - { offsetInCU: 0xBC9, offset: 0x6A15D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1EE0, symBinAddr: 0x253F0, symSize: 0x10 } - - { offsetInCU: 0xBDD, offset: 0x6A171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1EF0, symBinAddr: 0x25400, symSize: 0x10 } - - { offsetInCU: 0xC32, offset: 0x6A1C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x23E30, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x6A412, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x25450, symSize: 0x170 } - - { offsetInCU: 0x373, offset: 0x6A717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x1F0, symBinAddr: 0x25640, symSize: 0x25F0 } - - { offsetInCU: 0x13EF, offset: 0x6B793, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xD460, symBinAddr: 0x328B0, symSize: 0x42E0 } - - { offsetInCU: 0x3193, offset: 0x6D537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x11740, symBinAddr: 0x36B90, symSize: 0x790 } - - { offsetInCU: 0x3783, offset: 0x6DB27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0x11ED0, symBinAddr: 0x37320, symSize: 0x40 } - - { offsetInCU: 0x37AB, offset: 0x6DB4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x17980, symBinAddr: 0x3CDD0, symSize: 0x450 } - - { offsetInCU: 0x3924, offset: 0x6DCC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x13B00, symBinAddr: 0x38F50, symSize: 0x2F60 } - - { offsetInCU: 0x4F6B, offset: 0x6F30F, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x27E0, symBinAddr: 0x27C30, symSize: 0x2F0 } - - { offsetInCU: 0x52C2, offset: 0x6F666, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2AD0, symBinAddr: 0x27F20, symSize: 0x7A0 } - - { offsetInCU: 0x573A, offset: 0x6FADE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x3270, symBinAddr: 0x286C0, symSize: 0x6E0 } - - { offsetInCU: 0x5A6D, offset: 0x6FE11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3950, symBinAddr: 0x28DA0, symSize: 0x4C30 } - - { offsetInCU: 0x75E7, offset: 0x7198B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x8580, symBinAddr: 0x2D9D0, symSize: 0x2E0 } - - { offsetInCU: 0x76E9, offset: 0x71A8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x8CE0, symBinAddr: 0x2E130, symSize: 0x1BC0 } - - { offsetInCU: 0x7FD5, offset: 0x72379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x8860, symBinAddr: 0x2DCB0, symSize: 0x120 } - - { offsetInCU: 0x803E, offset: 0x723E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x8AA0, symBinAddr: 0x2DEF0, symSize: 0x210 } - - { offsetInCU: 0x812B, offset: 0x724CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x8CB0, symBinAddr: 0x2E100, symSize: 0x30 } - - { offsetInCU: 0x84CE, offset: 0x72872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0xA8A0, symBinAddr: 0x2FCF0, symSize: 0x8B0 } - - { offsetInCU: 0x88F3, offset: 0x72C97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xC210, symBinAddr: 0x31660, symSize: 0x1250 } - - { offsetInCU: 0x91BB, offset: 0x7355F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xB150, symBinAddr: 0x305A0, symSize: 0xC00 } - - { offsetInCU: 0x9C8B, offset: 0x7402F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x12380, symBinAddr: 0x377D0, symSize: 0x1780 } - - { offsetInCU: 0xAC1F, offset: 0x74FC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1C210, symBinAddr: 0x415A0, symSize: 0xE00 } - - { offsetInCU: 0xB861, offset: 0x75C05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x16A60, symBinAddr: 0x3BEB0, symSize: 0xF20 } - - { offsetInCU: 0xC1CF, offset: 0x76573, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x17DD0, symBinAddr: 0x3D220, symSize: 0x1C0 } - - { offsetInCU: 0xC270, offset: 0x76614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x17F90, symBinAddr: 0x3D3E0, symSize: 0x2D0 } - - { offsetInCU: 0xC376, offset: 0x7671A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x18260, symBinAddr: 0x3D6B0, symSize: 0x80 } - - { offsetInCU: 0xC3F5, offset: 0x76799, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x18350, symBinAddr: 0x3D7A0, symSize: 0x1260 } - - { offsetInCU: 0xCD4E, offset: 0x770F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x195B0, symBinAddr: 0x3EA00, symSize: 0x50 } - - { offsetInCU: 0xCD6A, offset: 0x7710E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x19600, symBinAddr: 0x3EA50, symSize: 0x160 } - - { offsetInCU: 0xCE6E, offset: 0x77212, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x19760, symBinAddr: 0x3EBB0, symSize: 0x50 } - - { offsetInCU: 0xCEE7, offset: 0x7728B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x19800, symBinAddr: 0x3EC00, symSize: 0x40 } - - { offsetInCU: 0xCF6B, offset: 0x7730F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x19840, symBinAddr: 0x3EC40, symSize: 0x40 } - - { offsetInCU: 0xCFE4, offset: 0x77388, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x19880, symBinAddr: 0x3EC80, symSize: 0x60 } - - { offsetInCU: 0xD026, offset: 0x773CA, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x198E0, symBinAddr: 0x3ECE0, symSize: 0x30 } - - { offsetInCU: 0xD053, offset: 0x773F7, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19910, symBinAddr: 0x3ED10, symSize: 0x80 } - - { offsetInCU: 0xD0F1, offset: 0x77495, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x19990, symBinAddr: 0x3ED90, symSize: 0x60 } - - { offsetInCU: 0xD177, offset: 0x7751B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x199F0, symBinAddr: 0x3EDF0, symSize: 0x50 } - - { offsetInCU: 0xD1FB, offset: 0x7759F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19A90, symBinAddr: 0x3EE90, symSize: 0xE0 } - - { offsetInCU: 0xD245, offset: 0x775E9, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19B70, symBinAddr: 0x3EF70, symSize: 0xC0 } - - { offsetInCU: 0xD272, offset: 0x77616, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19C30, symBinAddr: 0x3F030, symSize: 0x180 } - - { offsetInCU: 0xD326, offset: 0x776CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x19DB0, symBinAddr: 0x3F1B0, symSize: 0x110 } - - { offsetInCU: 0xD4B9, offset: 0x7785D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x19EC0, symBinAddr: 0x3F2C0, symSize: 0x130 } - - { offsetInCU: 0xD685, offset: 0x77A29, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x19FF0, symBinAddr: 0x3F3F0, symSize: 0x180 } - - { offsetInCU: 0xD858, offset: 0x77BFC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1A170, symBinAddr: 0x3F570, symSize: 0x1A0 } - - { offsetInCU: 0xDA3D, offset: 0x77DE1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x1A310, symBinAddr: 0x3F710, symSize: 0x110 } - - { offsetInCU: 0xDBE0, offset: 0x77F84, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x1A420, symBinAddr: 0x3F820, symSize: 0x110 } - - { offsetInCU: 0xDD83, offset: 0x78127, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1A660, symBinAddr: 0x3FA60, symSize: 0x110 } - - { offsetInCU: 0xDE95, offset: 0x78239, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1A770, symBinAddr: 0x3FB70, symSize: 0x40 } - - { offsetInCU: 0xDEE2, offset: 0x78286, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1AA80, symBinAddr: 0x3FE80, symSize: 0x180 } - - { offsetInCU: 0xDF81, offset: 0x78325, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1AC00, symBinAddr: 0x40000, symSize: 0xD0 } - - { offsetInCU: 0xE03C, offset: 0x783E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x1AEE0, symBinAddr: 0x402A0, symSize: 0x700 } - - { offsetInCU: 0xE3F4, offset: 0x78798, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1B5E0, symBinAddr: 0x409A0, symSize: 0x170 } - - { offsetInCU: 0xE505, offset: 0x788A9, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x1B750, symBinAddr: 0x40B10, symSize: 0xA0 } - - { offsetInCU: 0xE608, offset: 0x789AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1BA70, symBinAddr: 0x40E00, symSize: 0x1B0 } - - { offsetInCU: 0xE75D, offset: 0x78B01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1BC20, symBinAddr: 0x40FB0, symSize: 0x400 } - - { offsetInCU: 0xEA71, offset: 0x78E15, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1D010, symBinAddr: 0x423A0, symSize: 0x170 } - - { offsetInCU: 0xEB8D, offset: 0x78F31, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x1D180, symBinAddr: 0x42510, symSize: 0xA0 } - - { offsetInCU: 0xEF17, offset: 0x792BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1D220, symBinAddr: 0x425B0, symSize: 0x1130 } - - { offsetInCU: 0x102DF, offset: 0x7A683, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E350, symBinAddr: 0x436E0, symSize: 0x1E0 } - - { offsetInCU: 0x1047D, offset: 0x7A821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E530, symBinAddr: 0x438C0, symSize: 0x1B0 } - - { offsetInCU: 0x10570, offset: 0x7A914, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1E6E0, symBinAddr: 0x43A70, symSize: 0x90 } - - { offsetInCU: 0x10772, offset: 0x7AB16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1F240, symBinAddr: 0x445D0, symSize: 0x10 } - - { offsetInCU: 0x10786, offset: 0x7AB2A, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1F310, symBinAddr: 0x446A0, symSize: 0x20 } - - { offsetInCU: 0x1079A, offset: 0x7AB3E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1F330, symBinAddr: 0x446C0, symSize: 0x20 } - - { offsetInCU: 0x107AE, offset: 0x7AB52, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1F350, symBinAddr: 0x446E0, symSize: 0x60 } - - { offsetInCU: 0x107C2, offset: 0x7AB66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1F3D0, symBinAddr: 0x44740, symSize: 0x30 } - - { offsetInCU: 0x107D6, offset: 0x7AB7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1F400, symBinAddr: 0x44770, symSize: 0x180 } - - { offsetInCU: 0x107EA, offset: 0x7AB8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1F580, symBinAddr: 0x448F0, symSize: 0x2D0 } - - { offsetInCU: 0x107FE, offset: 0x7ABA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1F850, symBinAddr: 0x44BC0, symSize: 0x70 } - - { offsetInCU: 0x10812, offset: 0x7ABB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1F8C0, symBinAddr: 0x44C30, symSize: 0x30 } - - { offsetInCU: 0x10826, offset: 0x7ABCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1F8F0, symBinAddr: 0x44C60, symSize: 0xD0 } - - { offsetInCU: 0x1083A, offset: 0x7ABDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1F9C0, symBinAddr: 0x44D30, symSize: 0xB0 } - - { offsetInCU: 0x1086F, offset: 0x7AC13, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x200E0, symBinAddr: 0x44DE0, symSize: 0xC0 } - - { offsetInCU: 0x108E5, offset: 0x7AC89, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x201A0, symBinAddr: 0x44EA0, symSize: 0x80 } - - { offsetInCU: 0x10912, offset: 0x7ACB6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x20220, symBinAddr: 0x44F20, symSize: 0x80 } - - { offsetInCU: 0x10988, offset: 0x7AD2C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x202A0, symBinAddr: 0x44FA0, symSize: 0x70 } - - { offsetInCU: 0x10AA1, offset: 0x7AE45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x20310, symBinAddr: 0x45010, symSize: 0x800 } - - { offsetInCU: 0x10F5A, offset: 0x7B2FE, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x20B10, symBinAddr: 0x45810, symSize: 0x40 } - - { offsetInCU: 0x10F6E, offset: 0x7B312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x20C00, symBinAddr: 0x45880, symSize: 0x10 } - - { offsetInCU: 0x10F82, offset: 0x7B326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x20C10, symBinAddr: 0x45890, symSize: 0x30 } - - { offsetInCU: 0x10F96, offset: 0x7B33A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x20C40, symBinAddr: 0x458C0, symSize: 0x30 } - - { offsetInCU: 0x10FAA, offset: 0x7B34E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x20CE0, symBinAddr: 0x45910, symSize: 0x20 } - - { offsetInCU: 0x10FBE, offset: 0x7B362, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x20D20, symBinAddr: 0x45930, symSize: 0x30 } - - { offsetInCU: 0x10FD2, offset: 0x7B376, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x20D50, symBinAddr: 0x45960, symSize: 0x30 } - - { offsetInCU: 0x10FE6, offset: 0x7B38A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x20DE0, symBinAddr: 0x459F0, symSize: 0x30 } - - { offsetInCU: 0x1101B, offset: 0x7B3BF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x20EE0, symBinAddr: 0x45AF0, symSize: 0x40 } - - { offsetInCU: 0x1103A, offset: 0x7B3DE, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x20F20, symBinAddr: 0x45B30, symSize: 0x60 } - - { offsetInCU: 0x1107D, offset: 0x7B421, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x20F80, symBinAddr: 0x45B90, symSize: 0x80 } - - { offsetInCU: 0x11112, offset: 0x7B4B6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x21000, symBinAddr: 0x45C10, symSize: 0x120 } - - { offsetInCU: 0x111FA, offset: 0x7B59E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x21170, symBinAddr: 0x45D80, symSize: 0x40 } - - { offsetInCU: 0x1120E, offset: 0x7B5B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x211B0, symBinAddr: 0x45DC0, symSize: 0x50 } - - { offsetInCU: 0x11222, offset: 0x7B5C6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x212C0, symBinAddr: 0x45ED0, symSize: 0x40 } - - { offsetInCU: 0x11236, offset: 0x7B5DA, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x21360, symBinAddr: 0x45F70, symSize: 0x10 } - - { offsetInCU: 0x1124A, offset: 0x7B5EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x21370, symBinAddr: 0x45F80, symSize: 0x20 } - - { offsetInCU: 0x1125E, offset: 0x7B602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x21390, symBinAddr: 0x45FA0, symSize: 0x30 } - - { offsetInCU: 0x11272, offset: 0x7B616, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x21400, symBinAddr: 0x46010, symSize: 0x40 } - - { offsetInCU: 0x112B9, offset: 0x7B65D, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x170, symBinAddr: 0x255C0, symSize: 0x80 } - - { offsetInCU: 0x116F2, offset: 0x7BA96, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xBD50, symBinAddr: 0x311A0, symSize: 0x4C0 } - - { offsetInCU: 0x119D4, offset: 0x7BD78, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x121D0, symBinAddr: 0x37620, symSize: 0x1B0 } - - { offsetInCU: 0x11C01, offset: 0x7BFA5, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x182E0, symBinAddr: 0x3D730, symSize: 0x70 } - - { offsetInCU: 0x11D6E, offset: 0x7C112, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x1ACD0, symBinAddr: 0x400D0, symSize: 0xE0 } - - { offsetInCU: 0x11E9B, offset: 0x7C23F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x1ADF0, symBinAddr: 0x401B0, symSize: 0xF0 } - - { offsetInCU: 0x11FA2, offset: 0x7C346, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1B840, symBinAddr: 0x40BD0, symSize: 0x230 } - - { offsetInCU: 0x12070, offset: 0x7C414, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1C020, symBinAddr: 0x413B0, symSize: 0x1F0 } - - { offsetInCU: 0x1232C, offset: 0x7C6D0, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1E990, symBinAddr: 0x43D20, symSize: 0x260 } - - { offsetInCU: 0x12412, offset: 0x7C7B6, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1EBF0, symBinAddr: 0x43F80, symSize: 0xF0 } - - { offsetInCU: 0x12545, offset: 0x7C8E9, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1ECE0, symBinAddr: 0x44070, symSize: 0xF0 } - - { offsetInCU: 0x1268C, offset: 0x7CA30, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1EDD0, symBinAddr: 0x44160, symSize: 0xE0 } - - { offsetInCU: 0x127C7, offset: 0x7CB6B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1EEB0, symBinAddr: 0x44240, symSize: 0xF0 } - - { offsetInCU: 0x128F4, offset: 0x7CC98, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1EFA0, symBinAddr: 0x44330, symSize: 0xE0 } - - { offsetInCU: 0x12A3B, offset: 0x7CDDF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1F160, symBinAddr: 0x444F0, symSize: 0xE0 } - - { offsetInCU: 0x12B9A, offset: 0x7CF3E, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x20E10, symBinAddr: 0x45A20, symSize: 0xD0 } - - { offsetInCU: 0x12E40, offset: 0x7D1E4, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x8980, symBinAddr: 0x2DDD0, symSize: 0x120 } - - { offsetInCU: 0x27, offset: 0x7D79E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x46080, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7D7B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x46080, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7D7CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x460B0, symSize: 0x140 } - - { offsetInCU: 0x67, offset: 0x7D7DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x461F0, symSize: 0x440 } - - { offsetInCU: 0x7B, offset: 0x7D7F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x46630, symSize: 0x590 } - - { offsetInCU: 0x8F, offset: 0x7D806, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x46BC0, symSize: 0x10 } - - { offsetInCU: 0xA3, offset: 0x7D81A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x46BD0, symSize: 0x440 } - - { offsetInCU: 0xB7, offset: 0x7D82E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x47010, symSize: 0x40 } - - { offsetInCU: 0xCB, offset: 0x7D842, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x47050, symSize: 0x110 } - - { offsetInCU: 0xDF, offset: 0x7D856, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x47160, symSize: 0xA } - - { offsetInCU: 0x23B, offset: 0x7DB72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x480, symBinAddr: 0x475E0, symSize: 0x2D0 } - - { offsetInCU: 0x2F0, offset: 0x7DC27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x750, symBinAddr: 0x478B0, symSize: 0xE40 } - - { offsetInCU: 0x762, offset: 0x7E099, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x1590, symBinAddr: 0x486F0, symSize: 0x690 } - - { offsetInCU: 0x982, offset: 0x7E2B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1C20, symBinAddr: 0x48D80, symSize: 0xB00 } - - { offsetInCU: 0xD14, offset: 0x7E64B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x2750, symBinAddr: 0x498B0, symSize: 0x28F0 } - - { offsetInCU: 0x1EF3, offset: 0x7F82A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x10210, symBinAddr: 0x57370, symSize: 0x7F0 } - - { offsetInCU: 0x2281, offset: 0x7FBB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x5040, symBinAddr: 0x4C1A0, symSize: 0x1620 } - - { offsetInCU: 0x2DF3, offset: 0x8072A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x6660, symBinAddr: 0x4D7C0, symSize: 0xE80 } - - { offsetInCU: 0x3649, offset: 0x80F80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x74E0, symBinAddr: 0x4E640, symSize: 0x430 } - - { offsetInCU: 0x3760, offset: 0x81097, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8330, symBinAddr: 0x4F490, symSize: 0x210 } - - { offsetInCU: 0x3A1F, offset: 0x81356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8540, symBinAddr: 0x4F6A0, symSize: 0xA50 } - - { offsetInCU: 0x4168, offset: 0x81A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8F90, symBinAddr: 0x500F0, symSize: 0x2F0 } - - { offsetInCU: 0x42A0, offset: 0x81BD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9280, symBinAddr: 0x503E0, symSize: 0x710 } - - { offsetInCU: 0x4693, offset: 0x81FCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x9990, symBinAddr: 0x50AF0, symSize: 0x760 } - - { offsetInCU: 0x496D, offset: 0x822A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA0F0, symBinAddr: 0x51250, symSize: 0x260 } - - { offsetInCU: 0x4A41, offset: 0x82378, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA350, symBinAddr: 0x514B0, symSize: 0x270 } - - { offsetInCU: 0x4ADA, offset: 0x82411, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0xA5C0, symBinAddr: 0x51720, symSize: 0xC0 } - - { offsetInCU: 0x4B07, offset: 0x8243E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0xA680, symBinAddr: 0x517E0, symSize: 0x20 } - - { offsetInCU: 0x4B43, offset: 0x8247A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xEC10, symBinAddr: 0x55D70, symSize: 0x8F0 } - - { offsetInCU: 0x4E8E, offset: 0x827C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xF500, symBinAddr: 0x56660, symSize: 0xA60 } - - { offsetInCU: 0x517D, offset: 0x82AB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xFF60, symBinAddr: 0x570C0, symSize: 0x240 } - - { offsetInCU: 0x5228, offset: 0x82B5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x10A00, symBinAddr: 0x57B60, symSize: 0x960 } - - { offsetInCU: 0x5533, offset: 0x82E6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11360, symBinAddr: 0x584C0, symSize: 0xBC0 } - - { offsetInCU: 0x5822, offset: 0x83159, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x11F20, symBinAddr: 0x59080, symSize: 0x2C0 } - - { offsetInCU: 0x58CD, offset: 0x83204, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x121E0, symBinAddr: 0x59340, symSize: 0x210 } - - { offsetInCU: 0x5D83, offset: 0x836BA, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2720, symBinAddr: 0x49880, symSize: 0x30 } - - { offsetInCU: 0x609A, offset: 0x839D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0xA6A0, symBinAddr: 0x51800, symSize: 0x20 } - - { offsetInCU: 0x60F3, offset: 0x83A2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xA6C0, symBinAddr: 0x51820, symSize: 0x90 } - - { offsetInCU: 0x61A1, offset: 0x83AD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0xA750, symBinAddr: 0x518B0, symSize: 0xDF0 } - - { offsetInCU: 0x66B3, offset: 0x83FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0xB540, symBinAddr: 0x526A0, symSize: 0x40 } - - { offsetInCU: 0x66F7, offset: 0x8402E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0xB580, symBinAddr: 0x526E0, symSize: 0x50 } - - { offsetInCU: 0x6722, offset: 0x84059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0xB5D0, symBinAddr: 0x52730, symSize: 0x50 } - - { offsetInCU: 0x6764, offset: 0x8409B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB620, symBinAddr: 0x52780, symSize: 0x60 } - - { offsetInCU: 0x6797, offset: 0x840CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xB680, symBinAddr: 0x527E0, symSize: 0x10 } - - { offsetInCU: 0x67C2, offset: 0x840F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB690, symBinAddr: 0x527F0, symSize: 0x70 } - - { offsetInCU: 0x6804, offset: 0x8413B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xB700, symBinAddr: 0x52860, symSize: 0x90 } - - { offsetInCU: 0x6846, offset: 0x8417D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xB790, symBinAddr: 0x528F0, symSize: 0x70 } - - { offsetInCU: 0x6879, offset: 0x841B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xB800, symBinAddr: 0x52960, symSize: 0x10 } - - { offsetInCU: 0x6895, offset: 0x841CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xB810, symBinAddr: 0x52970, symSize: 0x10 } - - { offsetInCU: 0x68C0, offset: 0x841F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xB820, symBinAddr: 0x52980, symSize: 0x70 } - - { offsetInCU: 0x68F3, offset: 0x8422A, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xB890, symBinAddr: 0x529F0, symSize: 0x10 } - - { offsetInCU: 0x6912, offset: 0x84249, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0xB8A0, symBinAddr: 0x52A00, symSize: 0x10 } - - { offsetInCU: 0x693F, offset: 0x84276, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xB8B0, symBinAddr: 0x52A10, symSize: 0xC0 } - - { offsetInCU: 0x69C7, offset: 0x842FE, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xB970, symBinAddr: 0x52AD0, symSize: 0xC0 } - - { offsetInCU: 0x6A7F, offset: 0x843B6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xBB00, symBinAddr: 0x52C60, symSize: 0x260 } - - { offsetInCU: 0x6AF7, offset: 0x8442E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xBD60, symBinAddr: 0x52EC0, symSize: 0x220 } - - { offsetInCU: 0x6BA7, offset: 0x844DE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xBF80, symBinAddr: 0x530E0, symSize: 0x3C0 } - - { offsetInCU: 0x6CB3, offset: 0x845EA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xC340, symBinAddr: 0x534A0, symSize: 0x3B0 } - - { offsetInCU: 0x6DE9, offset: 0x84720, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xC6F0, symBinAddr: 0x53850, symSize: 0x220 } - - { offsetInCU: 0x6E72, offset: 0x847A9, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xC910, symBinAddr: 0x53A70, symSize: 0x220 } - - { offsetInCU: 0x6EF0, offset: 0x84827, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xCB30, symBinAddr: 0x53C90, symSize: 0x40 } - - { offsetInCU: 0x6FB8, offset: 0x848EF, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xCB70, symBinAddr: 0x53CD0, symSize: 0xA0 } - - { offsetInCU: 0x7071, offset: 0x849A8, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xCC10, symBinAddr: 0x53D70, symSize: 0x40 } - - { offsetInCU: 0x70AE, offset: 0x849E5, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xCC50, symBinAddr: 0x53DB0, symSize: 0x20 } - - { offsetInCU: 0x70D7, offset: 0x84A0E, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xCC70, symBinAddr: 0x53DD0, symSize: 0x30 } - - { offsetInCU: 0x7100, offset: 0x84A37, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xCCA0, symBinAddr: 0x53E00, symSize: 0x20 } - - { offsetInCU: 0x7164, offset: 0x84A9B, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xCCC0, symBinAddr: 0x53E20, symSize: 0x120 } - - { offsetInCU: 0x7209, offset: 0x84B40, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xCF00, symBinAddr: 0x54060, symSize: 0x2C0 } - - { offsetInCU: 0x7280, offset: 0x84BB7, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xD470, symBinAddr: 0x545D0, symSize: 0x80 } - - { offsetInCU: 0x7298, offset: 0x84BCF, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xD4F0, symBinAddr: 0x54650, symSize: 0x60 } - - { offsetInCU: 0x72ED, offset: 0x84C24, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xD550, symBinAddr: 0x546B0, symSize: 0x170 } - - { offsetInCU: 0x735B, offset: 0x84C92, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xD6C0, symBinAddr: 0x54820, symSize: 0x100 } - - { offsetInCU: 0x7380, offset: 0x84CB7, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xD7C0, symBinAddr: 0x54920, symSize: 0x2D0 } - - { offsetInCU: 0x73B9, offset: 0x84CF0, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xDA90, symBinAddr: 0x54BF0, symSize: 0xA0 } - - { offsetInCU: 0x73D1, offset: 0x84D08, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xDB30, symBinAddr: 0x54C90, symSize: 0x20 } - - { offsetInCU: 0x73E9, offset: 0x84D20, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDB50, symBinAddr: 0x54CB0, symSize: 0x20 } - - { offsetInCU: 0x7401, offset: 0x84D38, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xDB70, symBinAddr: 0x54CD0, symSize: 0x20 } - - { offsetInCU: 0x7471, offset: 0x84DA8, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xDB90, symBinAddr: 0x54CF0, symSize: 0x110 } - - { offsetInCU: 0x75EA, offset: 0x84F21, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDCA0, symBinAddr: 0x54E00, symSize: 0x1A0 } - - { offsetInCU: 0x778F, offset: 0x850C6, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xDE40, symBinAddr: 0x54FA0, symSize: 0x130 } - - { offsetInCU: 0x788F, offset: 0x851C6, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xDF70, symBinAddr: 0x550D0, symSize: 0x100 } - - { offsetInCU: 0x7ADB, offset: 0x85412, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xE070, symBinAddr: 0x551D0, symSize: 0x440 } - - { offsetInCU: 0x8108, offset: 0x85A3F, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xE4B0, symBinAddr: 0x55610, symSize: 0x2D0 } - - { offsetInCU: 0x8309, offset: 0x85C40, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xE780, symBinAddr: 0x558E0, symSize: 0x160 } - - { offsetInCU: 0x8499, offset: 0x85DD0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xE8E0, symBinAddr: 0x55A40, symSize: 0x200 } - - { offsetInCU: 0x8524, offset: 0x85E5B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xEAE0, symBinAddr: 0x55C40, symSize: 0x20 } - - { offsetInCU: 0x855D, offset: 0x85E94, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xEB00, symBinAddr: 0x55C60, symSize: 0x110 } - - { offsetInCU: 0x8613, offset: 0x85F4A, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x101A0, symBinAddr: 0x57300, symSize: 0x70 } - - { offsetInCU: 0x86BF, offset: 0x85FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x123F0, symBinAddr: 0x59550, symSize: 0xB50 } - - { offsetInCU: 0x8C3A, offset: 0x86571, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x12F40, symBinAddr: 0x5A0A0, symSize: 0x130 } - - { offsetInCU: 0x8DA6, offset: 0x866DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13070, symBinAddr: 0x5A1D0, symSize: 0x32B0 } - - { offsetInCU: 0x946C, offset: 0x86DA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x16320, symBinAddr: 0x5D480, symSize: 0x130 } - - { offsetInCU: 0x957D, offset: 0x86EB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x16450, symBinAddr: 0x5D5B0, symSize: 0x90 } - - { offsetInCU: 0x9600, offset: 0x86F37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x164E0, symBinAddr: 0x5D640, symSize: 0x7E0 } - - { offsetInCU: 0x99B0, offset: 0x872E7, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x16D30, symBinAddr: 0x5DE20, symSize: 0x20 } - - { offsetInCU: 0x99C4, offset: 0x872FB, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x16D50, symBinAddr: 0x5DE40, symSize: 0x20 } - - { offsetInCU: 0x99D8, offset: 0x8730F, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x16DA0, symBinAddr: 0x5DE60, symSize: 0x40 } - - { offsetInCU: 0x99EC, offset: 0x87323, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x16E60, symBinAddr: 0x5DEA0, symSize: 0x30 } - - { offsetInCU: 0x9A00, offset: 0x87337, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x16E90, symBinAddr: 0x5DED0, symSize: 0x30 } - - { offsetInCU: 0x9A14, offset: 0x8734B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOf', symObjAddr: 0x16EC0, symBinAddr: 0x5DF00, symSize: 0x40 } - - { offsetInCU: 0x9A28, offset: 0x8735F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x16F60, symBinAddr: 0x5DF70, symSize: 0x10 } - - { offsetInCU: 0x9A3C, offset: 0x87373, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16F70, symBinAddr: 0x5DF80, symSize: 0x20 } - - { offsetInCU: 0x9A50, offset: 0x87387, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x16F90, symBinAddr: 0x5DFA0, symSize: 0x10 } - - { offsetInCU: 0x9A64, offset: 0x8739B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x17020, symBinAddr: 0x5DFF0, symSize: 0x40 } - - { offsetInCU: 0x9ABC, offset: 0x873F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x170E0, symBinAddr: 0x5E0B0, symSize: 0x20 } - - { offsetInCU: 0x9AF8, offset: 0x8742F, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x17140, symBinAddr: 0x5E0D0, symSize: 0x30 } - - { offsetInCU: 0x9B27, offset: 0x8745E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x47170, symSize: 0x110 } - - { offsetInCU: 0x9B5D, offset: 0x87494, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x110, symBinAddr: 0x47280, symSize: 0x50 } - - { offsetInCU: 0x9C3D, offset: 0x87574, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x160, symBinAddr: 0x472D0, symSize: 0x90 } - - { offsetInCU: 0x9C60, offset: 0x87597, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x1F0, symBinAddr: 0x47360, symSize: 0xA0 } - - { offsetInCU: 0x9D71, offset: 0x876A8, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x290, symBinAddr: 0x47400, symSize: 0x90 } - - { offsetInCU: 0x9E6B, offset: 0x877A2, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x320, symBinAddr: 0x47490, symSize: 0x60 } - - { offsetInCU: 0x9EC7, offset: 0x877FE, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x380, symBinAddr: 0x474F0, symSize: 0x10 } - - { offsetInCU: 0x9EEF, offset: 0x87826, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3A0, symBinAddr: 0x47500, symSize: 0xE0 } - - { offsetInCU: 0x62, offset: 0x8823D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x5E210, symSize: 0x20 } - - { offsetInCU: 0x8B, offset: 0x88266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1000, symBinAddr: 0x5F210, symSize: 0x10 } - - { offsetInCU: 0xB6, offset: 0x88291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1010, symBinAddr: 0x5F220, symSize: 0x20 } - - { offsetInCU: 0xE7, offset: 0x882C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1030, symBinAddr: 0x5F240, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x882DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1040, symBinAddr: 0x5F250, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x882FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B80, symBinAddr: 0x64CD0, symSize: 0xE0 } - - { offsetInCU: 0x165, offset: 0x88340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x5E230, symSize: 0x190 } - - { offsetInCU: 0x1BA, offset: 0x88395, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1090, symBinAddr: 0x5F2A0, symSize: 0x50 } - - { offsetInCU: 0x1F1, offset: 0x883CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E0, symBinAddr: 0x5F2F0, symSize: 0x50 } - - { offsetInCU: 0x214, offset: 0x883EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6C60, symBinAddr: 0x64DB0, symSize: 0x13C0 } - - { offsetInCU: 0x265, offset: 0x88440, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x1B0, symBinAddr: 0x5E3C0, symSize: 0x20 } - - { offsetInCU: 0x2B2, offset: 0x8848D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1130, symBinAddr: 0x5F340, symSize: 0x10 } - - { offsetInCU: 0x310, offset: 0x884EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1150, symBinAddr: 0x5F360, symSize: 0x20 } - - { offsetInCU: 0x38A, offset: 0x88565, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1180, symBinAddr: 0x5F390, symSize: 0x10 } - - { offsetInCU: 0x3B5, offset: 0x88590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1190, symBinAddr: 0x5F3A0, symSize: 0x20 } - - { offsetInCU: 0x3E6, offset: 0x885C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x11B0, symBinAddr: 0x5F3C0, symSize: 0x10 } - - { offsetInCU: 0x402, offset: 0x885DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11C0, symBinAddr: 0x5F3D0, symSize: 0x10 } - - { offsetInCU: 0x41E, offset: 0x885F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8A90, symBinAddr: 0x66200, symSize: 0x190 } - - { offsetInCU: 0x464, offset: 0x8863F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D0, symBinAddr: 0x5E3E0, symSize: 0x2B0 } - - { offsetInCU: 0x4B9, offset: 0x88694, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1210, symBinAddr: 0x5F420, symSize: 0x50 } - - { offsetInCU: 0x4F0, offset: 0x886CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1260, symBinAddr: 0x5F470, symSize: 0x50 } - - { offsetInCU: 0x513, offset: 0x886EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8C20, symBinAddr: 0x66390, symSize: 0x1180 } - - { offsetInCU: 0x55D, offset: 0x88738, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x480, symBinAddr: 0x5E690, symSize: 0x20 } - - { offsetInCU: 0x594, offset: 0x8876F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x4A0, symBinAddr: 0x5E6B0, symSize: 0x20 } - - { offsetInCU: 0x612, offset: 0x887ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x12F0, symBinAddr: 0x5F500, symSize: 0x70 } - - { offsetInCU: 0x678, offset: 0x88853, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1360, symBinAddr: 0x5F570, symSize: 0x30 } - - { offsetInCU: 0x694, offset: 0x8886F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5F5A0, symSize: 0x10 } - - { offsetInCU: 0x6CA, offset: 0x888A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A0, symBinAddr: 0x5F5B0, symSize: 0x60 } - - { offsetInCU: 0x74F, offset: 0x8892A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1400, symBinAddr: 0x5F610, symSize: 0x10 } - - { offsetInCU: 0x76B, offset: 0x88946, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1410, symBinAddr: 0x5F620, symSize: 0x10 } - - { offsetInCU: 0x788, offset: 0x88963, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x4C0, symBinAddr: 0x5E6D0, symSize: 0x190 } - - { offsetInCU: 0x7DD, offset: 0x889B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1460, symBinAddr: 0x5F670, symSize: 0x50 } - - { offsetInCU: 0x814, offset: 0x889EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x14B0, symBinAddr: 0x5F6C0, symSize: 0x50 } - - { offsetInCU: 0x837, offset: 0x88A12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9EF0, symBinAddr: 0x67660, symSize: 0x210 } - - { offsetInCU: 0x887, offset: 0x88A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x650, symBinAddr: 0x5E860, symSize: 0x20 } - - { offsetInCU: 0x8B0, offset: 0x88A8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1500, symBinAddr: 0x5F710, symSize: 0x10 } - - { offsetInCU: 0x8DB, offset: 0x88AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1510, symBinAddr: 0x5F720, symSize: 0x20 } - - { offsetInCU: 0x90C, offset: 0x88AE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1530, symBinAddr: 0x5F740, symSize: 0x10 } - - { offsetInCU: 0x928, offset: 0x88B03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1540, symBinAddr: 0x5F750, symSize: 0x10 } - - { offsetInCU: 0x944, offset: 0x88B1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA100, symBinAddr: 0x67870, symSize: 0x240 } - - { offsetInCU: 0x98A, offset: 0x88B65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x670, symBinAddr: 0x5E880, symSize: 0x2A0 } - - { offsetInCU: 0x9DF, offset: 0x88BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1590, symBinAddr: 0x5F7A0, symSize: 0x50 } - - { offsetInCU: 0xA16, offset: 0x88BF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15E0, symBinAddr: 0x5F7F0, symSize: 0x50 } - - { offsetInCU: 0xA39, offset: 0x88C14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA340, symBinAddr: 0x67AB0, symSize: 0x5E0 } - - { offsetInCU: 0xA89, offset: 0x88C64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x910, symBinAddr: 0x5EB20, symSize: 0x30 } - - { offsetInCU: 0xAD8, offset: 0x88CB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1630, symBinAddr: 0x5F840, symSize: 0x10 } - - { offsetInCU: 0xB61, offset: 0x88D3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1640, symBinAddr: 0x5F850, symSize: 0x40 } - - { offsetInCU: 0xC45, offset: 0x88E20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1680, symBinAddr: 0x5F890, symSize: 0x20 } - - { offsetInCU: 0xCB7, offset: 0x88E92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x5F8F0, symSize: 0x10 } - - { offsetInCU: 0xCE2, offset: 0x88EBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x5F900, symSize: 0x20 } - - { offsetInCU: 0xD13, offset: 0x88EEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1710, symBinAddr: 0x5F920, symSize: 0x10 } - - { offsetInCU: 0xD2F, offset: 0x88F0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1720, symBinAddr: 0x5F930, symSize: 0x10 } - - { offsetInCU: 0xD4B, offset: 0x88F26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA920, symBinAddr: 0x68090, symSize: 0xA0 } - - { offsetInCU: 0xD91, offset: 0x88F6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x940, symBinAddr: 0x5EB50, symSize: 0x110 } - - { offsetInCU: 0xDE6, offset: 0x88FC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5F980, symSize: 0x30 } - - { offsetInCU: 0xE1D, offset: 0x88FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x5F9B0, symSize: 0x20 } - - { offsetInCU: 0xE40, offset: 0x8901B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA9C0, symBinAddr: 0x68130, symSize: 0x180 } - - { offsetInCU: 0xE91, offset: 0x8906C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0xA50, symBinAddr: 0x5EC60, symSize: 0x20 } - - { offsetInCU: 0xEBA, offset: 0x89095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x5FA50, symSize: 0x10 } - - { offsetInCU: 0xEE5, offset: 0x890C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x5FA60, symSize: 0x20 } - - { offsetInCU: 0xF16, offset: 0x890F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x5FA80, symSize: 0x10 } - - { offsetInCU: 0xF32, offset: 0x8910D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x5FA90, symSize: 0x10 } - - { offsetInCU: 0xF4E, offset: 0x89129, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAB40, symBinAddr: 0x682B0, symSize: 0x1E0 } - - { offsetInCU: 0xF94, offset: 0x8916F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA70, symBinAddr: 0x5EC80, symSize: 0x250 } - - { offsetInCU: 0xFE9, offset: 0x891C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x5FAE0, symSize: 0x50 } - - { offsetInCU: 0x1020, offset: 0x891FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1920, symBinAddr: 0x5FB30, symSize: 0x50 } - - { offsetInCU: 0x1043, offset: 0x8921E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAD20, symBinAddr: 0x68490, symSize: 0x840 } - - { offsetInCU: 0x108D, offset: 0x89268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xCC0, symBinAddr: 0x5EED0, symSize: 0x20 } - - { offsetInCU: 0x10C4, offset: 0x8929F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCE0, symBinAddr: 0x5EEF0, symSize: 0x20 } - - { offsetInCU: 0x1137, offset: 0x89312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5FCD0, symSize: 0x40 } - - { offsetInCU: 0x117D, offset: 0x89358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5FD10, symSize: 0x30 } - - { offsetInCU: 0x1191, offset: 0x8936C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1B30, symBinAddr: 0x5FD40, symSize: 0x10 } - - { offsetInCU: 0x11C7, offset: 0x893A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5FD50, symSize: 0x30 } - - { offsetInCU: 0x122C, offset: 0x89407, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1B70, symBinAddr: 0x5FD80, symSize: 0x10 } - - { offsetInCU: 0x1248, offset: 0x89423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B80, symBinAddr: 0x5FD90, symSize: 0x10 } - - { offsetInCU: 0x1264, offset: 0x8943F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xB5F0, symBinAddr: 0x68D60, symSize: 0x50 } - - { offsetInCU: 0x1290, offset: 0x8946B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x5EF10, symSize: 0x2E0 } - - { offsetInCU: 0x12E5, offset: 0x894C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x5FDE0, symSize: 0x50 } - - { offsetInCU: 0x131C, offset: 0x894F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C20, symBinAddr: 0x5FE30, symSize: 0x50 } - - { offsetInCU: 0x133F, offset: 0x8951A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB640, symBinAddr: 0x68DB0, symSize: 0x950 } - - { offsetInCU: 0x13B4, offset: 0x8958F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1C70, symBinAddr: 0x5FE80, symSize: 0x1D0 } - - { offsetInCU: 0x1410, offset: 0x895EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x1E40, symBinAddr: 0x60050, symSize: 0x20 } - - { offsetInCU: 0x1455, offset: 0x89630, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6930, symBinAddr: 0x64B20, symSize: 0x50 } - - { offsetInCU: 0x14C0, offset: 0x8969B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6980, symBinAddr: 0x64B70, symSize: 0x80 } - - { offsetInCU: 0x1514, offset: 0x896EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6A00, symBinAddr: 0x64BF0, symSize: 0x10 } - - { offsetInCU: 0x154A, offset: 0x89725, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6A10, symBinAddr: 0x64C00, symSize: 0x20 } - - { offsetInCU: 0x15CB, offset: 0x897A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6A60, symBinAddr: 0x64C50, symSize: 0x10 } - - { offsetInCU: 0x15E8, offset: 0x897C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x1E60, symBinAddr: 0x60070, symSize: 0x20 } - - { offsetInCU: 0x15FC, offset: 0x897D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x1E80, symBinAddr: 0x60090, symSize: 0x140 } - - { offsetInCU: 0x1610, offset: 0x897EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x1FC0, symBinAddr: 0x601D0, symSize: 0x500 } - - { offsetInCU: 0x1624, offset: 0x897FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x24C0, symBinAddr: 0x606D0, symSize: 0xED0 } - - { offsetInCU: 0x163F, offset: 0x8981A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x3390, symBinAddr: 0x615A0, symSize: 0x30 } - - { offsetInCU: 0x1668, offset: 0x89843, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x33C0, symBinAddr: 0x615D0, symSize: 0x20 } - - { offsetInCU: 0x167C, offset: 0x89857, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x33E0, symBinAddr: 0x615F0, symSize: 0x20 } - - { offsetInCU: 0x1690, offset: 0x8986B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x3400, symBinAddr: 0x61610, symSize: 0x20 } - - { offsetInCU: 0x16A4, offset: 0x8987F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x3420, symBinAddr: 0x61630, symSize: 0x20 } - - { offsetInCU: 0x16B8, offset: 0x89893, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3440, symBinAddr: 0x61650, symSize: 0x10 } - - { offsetInCU: 0x16CC, offset: 0x898A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x3450, symBinAddr: 0x61660, symSize: 0x580 } - - { offsetInCU: 0x16E0, offset: 0x898BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x39D0, symBinAddr: 0x61BE0, symSize: 0x50 } - - { offsetInCU: 0x16F4, offset: 0x898CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3A20, symBinAddr: 0x61C30, symSize: 0x140 } - - { offsetInCU: 0x1708, offset: 0x898E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x3B60, symBinAddr: 0x61D70, symSize: 0x10 } - - { offsetInCU: 0x171C, offset: 0x898F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3B70, symBinAddr: 0x61D80, symSize: 0x30 } - - { offsetInCU: 0x1730, offset: 0x8990B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x3BA0, symBinAddr: 0x61DB0, symSize: 0x120 } - - { offsetInCU: 0x1744, offset: 0x8991F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x3CC0, symBinAddr: 0x61ED0, symSize: 0x480 } - - { offsetInCU: 0x1758, offset: 0x89933, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x4140, symBinAddr: 0x62350, symSize: 0x9D0 } - - { offsetInCU: 0x176C, offset: 0x89947, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4B10, symBinAddr: 0x62D20, symSize: 0x10 } - - { offsetInCU: 0x1780, offset: 0x8995B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4B20, symBinAddr: 0x62D30, symSize: 0x500 } - - { offsetInCU: 0x1794, offset: 0x8996F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x5020, symBinAddr: 0x63230, symSize: 0x50 } - - { offsetInCU: 0x17A8, offset: 0x89983, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x5070, symBinAddr: 0x63280, symSize: 0x130 } - - { offsetInCU: 0x17BC, offset: 0x89997, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x51A0, symBinAddr: 0x633B0, symSize: 0x10 } - - { offsetInCU: 0x17D0, offset: 0x899AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x51B0, symBinAddr: 0x633C0, symSize: 0xC0 } - - { offsetInCU: 0x17E4, offset: 0x899BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x5270, symBinAddr: 0x63480, symSize: 0x240 } - - { offsetInCU: 0x17F8, offset: 0x899D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x54B0, symBinAddr: 0x636C0, symSize: 0x450 } - - { offsetInCU: 0x180C, offset: 0x899E7, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5900, symBinAddr: 0x63B10, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x899FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x5910, symBinAddr: 0x63B20, symSize: 0x250 } - - { offsetInCU: 0x1834, offset: 0x89A0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x5B60, symBinAddr: 0x63D70, symSize: 0x50 } - - { offsetInCU: 0x1848, offset: 0x89A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x5BB0, symBinAddr: 0x63DC0, symSize: 0xA0 } - - { offsetInCU: 0x185C, offset: 0x89A37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x5C50, symBinAddr: 0x63E60, symSize: 0x10 } - - { offsetInCU: 0x1870, offset: 0x89A4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x5C60, symBinAddr: 0x63E70, symSize: 0x70 } - - { offsetInCU: 0x1884, offset: 0x89A5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x5CD0, symBinAddr: 0x63EE0, symSize: 0x150 } - - { offsetInCU: 0x1898, offset: 0x89A73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x5E20, symBinAddr: 0x64030, symSize: 0x190 } - - { offsetInCU: 0x18AC, offset: 0x89A87, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5FB0, symBinAddr: 0x641C0, symSize: 0x10 } - - { offsetInCU: 0x18C0, offset: 0x89A9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5FC0, symBinAddr: 0x641D0, symSize: 0x130 } - - { offsetInCU: 0x18D4, offset: 0x89AAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x60F0, symBinAddr: 0x64300, symSize: 0x50 } - - { offsetInCU: 0x18E8, offset: 0x89AC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x6140, symBinAddr: 0x64350, symSize: 0x80 } - - { offsetInCU: 0x18FC, offset: 0x89AD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x61C0, symBinAddr: 0x643D0, symSize: 0x10 } - - { offsetInCU: 0x1910, offset: 0x89AEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x61D0, symBinAddr: 0x643E0, symSize: 0x50 } - - { offsetInCU: 0x1924, offset: 0x89AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x6220, symBinAddr: 0x64430, symSize: 0x120 } - - { offsetInCU: 0x1938, offset: 0x89B13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x6340, symBinAddr: 0x64550, symSize: 0x1C0 } - - { offsetInCU: 0x194C, offset: 0x89B27, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6500, symBinAddr: 0x64710, symSize: 0x10 } - - { offsetInCU: 0x1960, offset: 0x89B3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x6510, symBinAddr: 0x64720, symSize: 0x150 } - - { offsetInCU: 0x1974, offset: 0x89B4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x6660, symBinAddr: 0x64870, symSize: 0x50 } - - { offsetInCU: 0x1988, offset: 0x89B63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x66B0, symBinAddr: 0x648C0, symSize: 0x80 } - - { offsetInCU: 0x199C, offset: 0x89B77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x6730, symBinAddr: 0x64940, symSize: 0x10 } - - { offsetInCU: 0x19B0, offset: 0x89B8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x6740, symBinAddr: 0x64950, symSize: 0x30 } - - { offsetInCU: 0x19C4, offset: 0x89B9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x6770, symBinAddr: 0x64980, symSize: 0x40 } - - { offsetInCU: 0x19D8, offset: 0x89BB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x67B0, symBinAddr: 0x649C0, symSize: 0x60 } - - { offsetInCU: 0x19EC, offset: 0x89BC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x6830, symBinAddr: 0x64A20, symSize: 0x50 } - - { offsetInCU: 0x1A00, offset: 0x89BDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x6880, symBinAddr: 0x64A70, symSize: 0x50 } - - { offsetInCU: 0x1A14, offset: 0x89BEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x68D0, symBinAddr: 0x64AC0, symSize: 0x50 } - - { offsetInCU: 0x1A28, offset: 0x89C03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x6920, symBinAddr: 0x64B10, symSize: 0x10 } - - { offsetInCU: 0x1A3C, offset: 0x89C17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x6A70, symBinAddr: 0x64C60, symSize: 0x10 } - - { offsetInCU: 0x1A50, offset: 0x89C2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x6A80, symBinAddr: 0x64C70, symSize: 0x30 } - - { offsetInCU: 0x1A64, offset: 0x89C3F, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6B50, symBinAddr: 0x64CA0, symSize: 0x30 } - - { offsetInCU: 0x1A78, offset: 0x89C53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x8020, symBinAddr: 0x66170, symSize: 0x30 } - - { offsetInCU: 0x1A8C, offset: 0x89C67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x8050, symBinAddr: 0x661A0, symSize: 0x30 } - - { offsetInCU: 0x1AA0, offset: 0x89C7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x8A60, symBinAddr: 0x661D0, symSize: 0x30 } - - { offsetInCU: 0x1AB4, offset: 0x89C8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x9DA0, symBinAddr: 0x67510, symSize: 0x30 } - - { offsetInCU: 0x1AC8, offset: 0x89CA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x67540, symSize: 0x30 } - - { offsetInCU: 0x1ADC, offset: 0x89CB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x9E00, symBinAddr: 0x67570, symSize: 0x30 } - - { offsetInCU: 0x1AF0, offset: 0x89CCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x9E30, symBinAddr: 0x675A0, symSize: 0x30 } - - { offsetInCU: 0x1B04, offset: 0x89CDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x9E60, symBinAddr: 0x675D0, symSize: 0x30 } - - { offsetInCU: 0x1B18, offset: 0x89CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x9E90, symBinAddr: 0x67600, symSize: 0x30 } - - { offsetInCU: 0x1B2C, offset: 0x89D07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x9EC0, symBinAddr: 0x67630, symSize: 0x30 } - - { offsetInCU: 0x1B40, offset: 0x89D1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xB560, symBinAddr: 0x68CD0, symSize: 0x30 } - - { offsetInCU: 0x1B54, offset: 0x89D2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xB590, symBinAddr: 0x68D00, symSize: 0x30 } - - { offsetInCU: 0x1B68, offset: 0x89D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xB5C0, symBinAddr: 0x68D30, symSize: 0x30 } - - { offsetInCU: 0x1B7C, offset: 0x89D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xBF90, symBinAddr: 0x69700, symSize: 0x30 } - - { offsetInCU: 0x1B90, offset: 0x89D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xBFC0, symBinAddr: 0x69730, symSize: 0x30 } - - { offsetInCU: 0x1BA4, offset: 0x89D7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xBFF0, symBinAddr: 0x69760, symSize: 0x30 } - - { offsetInCU: 0x1BB8, offset: 0x89D93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xC050, symBinAddr: 0x697C0, symSize: 0x30 } - - { offsetInCU: 0x1BCC, offset: 0x89DA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xC080, symBinAddr: 0x697F0, symSize: 0x30 } - - { offsetInCU: 0x1BE0, offset: 0x89DBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC0D0, symBinAddr: 0x69820, symSize: 0x80 } - - { offsetInCU: 0x1BF4, offset: 0x89DCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC150, symBinAddr: 0x698A0, symSize: 0xD0 } - - { offsetInCU: 0x1C08, offset: 0x89DE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xC220, symBinAddr: 0x69970, symSize: 0x10 } - - { offsetInCU: 0x1C1C, offset: 0x89DF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC230, symBinAddr: 0x69980, symSize: 0x10 } - - { offsetInCU: 0x1C30, offset: 0x89E0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xC240, symBinAddr: 0x69990, symSize: 0x10 } - - { offsetInCU: 0x1C44, offset: 0x89E1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC250, symBinAddr: 0x699A0, symSize: 0x10 } - - { offsetInCU: 0x1C58, offset: 0x89E33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC260, symBinAddr: 0x699B0, symSize: 0x80 } - - { offsetInCU: 0x1C6C, offset: 0x89E47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC2E0, symBinAddr: 0x69A30, symSize: 0xD0 } - - { offsetInCU: 0x1C80, offset: 0x89E5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC3B0, symBinAddr: 0x69B00, symSize: 0x10 } - - { offsetInCU: 0x1C94, offset: 0x89E6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC3C0, symBinAddr: 0x69B10, symSize: 0x10 } - - { offsetInCU: 0x1CA8, offset: 0x89E83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xC3D0, symBinAddr: 0x69B20, symSize: 0x80 } - - { offsetInCU: 0x1CBC, offset: 0x89E97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xC450, symBinAddr: 0x69BA0, symSize: 0xD0 } - - { offsetInCU: 0x1CD0, offset: 0x89EAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xC520, symBinAddr: 0x69C70, symSize: 0x10 } - - { offsetInCU: 0x1CE4, offset: 0x89EBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xC530, symBinAddr: 0x69C80, symSize: 0x10 } - - { offsetInCU: 0x1CF8, offset: 0x89ED3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC540, symBinAddr: 0x69C90, symSize: 0x80 } - - { offsetInCU: 0x1D0C, offset: 0x89EE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC5C0, symBinAddr: 0x69D10, symSize: 0xD0 } - - { offsetInCU: 0x1D20, offset: 0x89EFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC690, symBinAddr: 0x69DE0, symSize: 0x10 } - - { offsetInCU: 0x1D34, offset: 0x89F0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC6A0, symBinAddr: 0x69DF0, symSize: 0x10 } - - { offsetInCU: 0x1D48, offset: 0x89F23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC6B0, symBinAddr: 0x69E00, symSize: 0x80 } - - { offsetInCU: 0x1D5C, offset: 0x89F37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC730, symBinAddr: 0x69E80, symSize: 0xD0 } - - { offsetInCU: 0x1D70, offset: 0x89F4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xC800, symBinAddr: 0x69F50, symSize: 0x10 } - - { offsetInCU: 0x1D84, offset: 0x89F5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC810, symBinAddr: 0x69F60, symSize: 0x10 } - - { offsetInCU: 0x1D98, offset: 0x89F73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xC820, symBinAddr: 0x69F70, symSize: 0x10 } - - { offsetInCU: 0x1DAC, offset: 0x89F87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC830, symBinAddr: 0x69F80, symSize: 0x10 } - - { offsetInCU: 0x1DC0, offset: 0x89F9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC840, symBinAddr: 0x69F90, symSize: 0x80 } - - { offsetInCU: 0x1DD4, offset: 0x89FAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC8C0, symBinAddr: 0x6A010, symSize: 0xD0 } - - { offsetInCU: 0x1DE8, offset: 0x89FC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC990, symBinAddr: 0x6A0E0, symSize: 0x10 } - - { offsetInCU: 0x1DFC, offset: 0x89FD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC9A0, symBinAddr: 0x6A0F0, symSize: 0x10 } - - { offsetInCU: 0x1E10, offset: 0x89FEB, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xC9B0, symBinAddr: 0x6A100, symSize: 0x30 } - - { offsetInCU: 0x1E24, offset: 0x89FFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xC9E0, symBinAddr: 0x6A130, symSize: 0x20 } - - { offsetInCU: 0x1E38, offset: 0x8A013, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xCA00, symBinAddr: 0x6A150, symSize: 0x40 } - - { offsetInCU: 0x1E4C, offset: 0x8A027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xCA40, symBinAddr: 0x6A190, symSize: 0x10 } - - { offsetInCU: 0x1E60, offset: 0x8A03B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCA50, symBinAddr: 0x6A1A0, symSize: 0x10 } - - { offsetInCU: 0x1E74, offset: 0x8A04F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCA60, symBinAddr: 0x6A1B0, symSize: 0x30 } - - { offsetInCU: 0x1E88, offset: 0x8A063, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCA90, symBinAddr: 0x6A1E0, symSize: 0x10 } - - { offsetInCU: 0x1E9C, offset: 0x8A077, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCAA0, symBinAddr: 0x6A1F0, symSize: 0x30 } - - { offsetInCU: 0x1EB0, offset: 0x8A08B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCAD0, symBinAddr: 0x6A220, symSize: 0x10 } - - { offsetInCU: 0x1EC4, offset: 0x8A09F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCAE0, symBinAddr: 0x6A230, symSize: 0x30 } - - { offsetInCU: 0x1ED8, offset: 0x8A0B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xCB10, symBinAddr: 0x6A260, symSize: 0x10 } - - { offsetInCU: 0x1EEC, offset: 0x8A0C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xCB20, symBinAddr: 0x6A270, symSize: 0x30 } - - { offsetInCU: 0x1F00, offset: 0x8A0DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCB50, symBinAddr: 0x6A2A0, symSize: 0x10 } - - { offsetInCU: 0x1F14, offset: 0x8A0EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCB60, symBinAddr: 0x6A2B0, symSize: 0x30 } - - { offsetInCU: 0x1F28, offset: 0x8A103, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCB90, symBinAddr: 0x6A2E0, symSize: 0x10 } - - { offsetInCU: 0x1F3C, offset: 0x8A117, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCBA0, symBinAddr: 0x6A2F0, symSize: 0x30 } - - { offsetInCU: 0x1F50, offset: 0x8A12B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCBD0, symBinAddr: 0x6A320, symSize: 0x10 } - - { offsetInCU: 0x1F64, offset: 0x8A13F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCBE0, symBinAddr: 0x6A330, symSize: 0x30 } - - { offsetInCU: 0x1F78, offset: 0x8A153, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC10, symBinAddr: 0x6A360, symSize: 0x10 } - - { offsetInCU: 0x1F8C, offset: 0x8A167, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCC20, symBinAddr: 0x6A370, symSize: 0x30 } - - { offsetInCU: 0x1FA0, offset: 0x8A17B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCC50, symBinAddr: 0x6A3A0, symSize: 0x10 } - - { offsetInCU: 0x1FB4, offset: 0x8A18F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCC60, symBinAddr: 0x6A3B0, symSize: 0x30 } - - { offsetInCU: 0x1FC8, offset: 0x8A1A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC90, symBinAddr: 0x6A3E0, symSize: 0x10 } - - { offsetInCU: 0x1FDC, offset: 0x8A1B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCCA0, symBinAddr: 0x6A3F0, symSize: 0x30 } - - { offsetInCU: 0x1FF0, offset: 0x8A1CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCCD0, symBinAddr: 0x6A420, symSize: 0x10 } - - { offsetInCU: 0x2004, offset: 0x8A1DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCCE0, symBinAddr: 0x6A430, symSize: 0x30 } - - { offsetInCU: 0x2018, offset: 0x8A1F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD10, symBinAddr: 0x6A460, symSize: 0x10 } - - { offsetInCU: 0x202C, offset: 0x8A207, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xCD20, symBinAddr: 0x6A470, symSize: 0x30 } - - { offsetInCU: 0x2040, offset: 0x8A21B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCD50, symBinAddr: 0x6A4A0, symSize: 0x10 } - - { offsetInCU: 0x2054, offset: 0x8A22F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCD60, symBinAddr: 0x6A4B0, symSize: 0x30 } - - { offsetInCU: 0x2068, offset: 0x8A243, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD90, symBinAddr: 0x6A4E0, symSize: 0x10 } - - { offsetInCU: 0x207C, offset: 0x8A257, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCDA0, symBinAddr: 0x6A4F0, symSize: 0x30 } - - { offsetInCU: 0x2090, offset: 0x8A26B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCDD0, symBinAddr: 0x6A520, symSize: 0x10 } - - { offsetInCU: 0x20A4, offset: 0x8A27F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCDE0, symBinAddr: 0x6A530, symSize: 0x30 } - - { offsetInCU: 0x20B8, offset: 0x8A293, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE10, symBinAddr: 0x6A560, symSize: 0x10 } - - { offsetInCU: 0x20CC, offset: 0x8A2A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCE20, symBinAddr: 0x6A570, symSize: 0x30 } - - { offsetInCU: 0x20E0, offset: 0x8A2BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCE50, symBinAddr: 0x6A5A0, symSize: 0x10 } - - { offsetInCU: 0x20F4, offset: 0x8A2CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCE60, symBinAddr: 0x6A5B0, symSize: 0x30 } - - { offsetInCU: 0x2108, offset: 0x8A2E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE90, symBinAddr: 0x6A5E0, symSize: 0x10 } - - { offsetInCU: 0x211C, offset: 0x8A2F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCEA0, symBinAddr: 0x6A5F0, symSize: 0x30 } - - { offsetInCU: 0x2130, offset: 0x8A30B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xCED0, symBinAddr: 0x6A620, symSize: 0x30 } - - { offsetInCU: 0x2144, offset: 0x8A31F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xCF00, symBinAddr: 0x6A650, symSize: 0x80 } - - { offsetInCU: 0x2158, offset: 0x8A333, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xCF80, symBinAddr: 0x6A6D0, symSize: 0xD0 } - - { offsetInCU: 0x216C, offset: 0x8A347, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xD050, symBinAddr: 0x6A7A0, symSize: 0x10 } - - { offsetInCU: 0x2180, offset: 0x8A35B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xD060, symBinAddr: 0x6A7B0, symSize: 0x10 } - - { offsetInCU: 0x2194, offset: 0x8A36F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD070, symBinAddr: 0x6A7C0, symSize: 0x10 } - - { offsetInCU: 0x21A8, offset: 0x8A383, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD080, symBinAddr: 0x6A7D0, symSize: 0x30 } - - { offsetInCU: 0x21BC, offset: 0x8A397, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD0B0, symBinAddr: 0x6A800, symSize: 0x10 } - - { offsetInCU: 0x21D0, offset: 0x8A3AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD0C0, symBinAddr: 0x6A810, symSize: 0x30 } - - { offsetInCU: 0x21E4, offset: 0x8A3BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD0F0, symBinAddr: 0x6A840, symSize: 0x10 } - - { offsetInCU: 0x21F8, offset: 0x8A3D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD100, symBinAddr: 0x6A850, symSize: 0x30 } - - { offsetInCU: 0x2226, offset: 0x8A401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1050, symBinAddr: 0x5F260, symSize: 0x20 } - - { offsetInCU: 0x2242, offset: 0x8A41D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1070, symBinAddr: 0x5F280, symSize: 0x20 } - - { offsetInCU: 0x2264, offset: 0x8A43F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11D0, symBinAddr: 0x5F3E0, symSize: 0x20 } - - { offsetInCU: 0x2280, offset: 0x8A45B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11F0, symBinAddr: 0x5F400, symSize: 0x20 } - - { offsetInCU: 0x229C, offset: 0x8A477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x12B0, symBinAddr: 0x5F4C0, symSize: 0x10 } - - { offsetInCU: 0x22B8, offset: 0x8A493, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12C0, symBinAddr: 0x5F4D0, symSize: 0x10 } - - { offsetInCU: 0x22D4, offset: 0x8A4AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x12D0, symBinAddr: 0x5F4E0, symSize: 0x10 } - - { offsetInCU: 0x22F0, offset: 0x8A4CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x12E0, symBinAddr: 0x5F4F0, symSize: 0x10 } - - { offsetInCU: 0x2312, offset: 0x8A4ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1420, symBinAddr: 0x5F630, symSize: 0x20 } - - { offsetInCU: 0x232E, offset: 0x8A509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1440, symBinAddr: 0x5F650, symSize: 0x20 } - - { offsetInCU: 0x2350, offset: 0x8A52B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1550, symBinAddr: 0x5F760, symSize: 0x20 } - - { offsetInCU: 0x236C, offset: 0x8A547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x5F780, symSize: 0x20 } - - { offsetInCU: 0x23B5, offset: 0x8A590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x16A0, symBinAddr: 0x5F8B0, symSize: 0x40 } - - { offsetInCU: 0x2458, offset: 0x8A633, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1730, symBinAddr: 0x5F940, symSize: 0x20 } - - { offsetInCU: 0x2474, offset: 0x8A64F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x5F960, symSize: 0x20 } - - { offsetInCU: 0x2496, offset: 0x8A671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x5FAA0, symSize: 0x20 } - - { offsetInCU: 0x24B2, offset: 0x8A68D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5FAC0, symSize: 0x20 } - - { offsetInCU: 0x24EC, offset: 0x8A6C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1970, symBinAddr: 0x5FB80, symSize: 0x80 } - - { offsetInCU: 0x25BB, offset: 0x8A796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5FC00, symSize: 0x50 } - - { offsetInCU: 0x2639, offset: 0x8A814, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A40, symBinAddr: 0x5FC50, symSize: 0x30 } - - { offsetInCU: 0x268B, offset: 0x8A866, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A70, symBinAddr: 0x5FC80, symSize: 0x50 } - - { offsetInCU: 0x26ED, offset: 0x8A8C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1B90, symBinAddr: 0x5FDA0, symSize: 0x20 } - - { offsetInCU: 0x2709, offset: 0x8A8E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x5FDC0, symSize: 0x20 } - - { offsetInCU: 0x2740, offset: 0x8A91B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6A30, symBinAddr: 0x64C20, symSize: 0x30 } - - { offsetInCU: 0x27, offset: 0x8AB25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6AA20, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x8AB49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6AA20, symSize: 0x10 } - - { offsetInCU: 0x69, offset: 0x8AB67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x6AA30, symSize: 0x10 } - - { offsetInCU: 0xA5, offset: 0x8ABA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x6AA40, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8ABC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x6AA50, symSize: 0x10 } - - { offsetInCU: 0xEE, offset: 0x8ABEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x6AA60, symSize: 0x10 } - - { offsetInCU: 0x10C, offset: 0x8AC0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x6AA70, symSize: 0x10 } - - { offsetInCU: 0x148, offset: 0x8AC46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x6AA80, symSize: 0x20 } - - { offsetInCU: 0x176, offset: 0x8AC74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x6AAA0, symSize: 0x10 } - - { offsetInCU: 0x1A1, offset: 0x8AC9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x6AAB0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x8ACBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x6AAC0, symSize: 0x10 } - - { offsetInCU: 0x1FD, offset: 0x8ACFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x6AAD0, symSize: 0x20 } - - { offsetInCU: 0x22B, offset: 0x8AD29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x6AAF0, symSize: 0x10 } - - { offsetInCU: 0x257, offset: 0x8AD55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x6AB00, symSize: 0x40 } - - { offsetInCU: 0x26B, offset: 0x8AD69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x6AB40, symSize: 0x50 } - - { offsetInCU: 0x27F, offset: 0x8AD7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x6AB90, symSize: 0xA } - - { offsetInCU: 0x2B, offset: 0x8AE99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6ABA0, symSize: 0x30 } - - { offsetInCU: 0x6D, offset: 0x8AEDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6ABA0, symSize: 0x30 } - - { offsetInCU: 0xB9, offset: 0x8AF27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x6ABD0, symSize: 0x14 } - - { offsetInCU: 0x27, offset: 0x8B040, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6ABF0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B082, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6ABF0, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8B0CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6AC10, symSize: 0x14 } - - { offsetInCU: 0x2B, offset: 0x8B1EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6AC30, symSize: 0x50 } - - { offsetInCU: 0x6D, offset: 0x8B22D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6AC30, symSize: 0x50 } - - { offsetInCU: 0xB9, offset: 0x8B279, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x6AC80, symSize: 0x10 } - - { offsetInCU: 0xCD, offset: 0x8B28D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x6AC90, symSize: 0x30 } - - { offsetInCU: 0xE1, offset: 0x8B2A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x6ACC0, symSize: 0x69 } - - { offsetInCU: 0x27, offset: 0x8B3BA, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AD30, symSize: 0x430 } - - { offsetInCU: 0xD9, offset: 0x8B46C, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AD30, symSize: 0x430 } - - { offsetInCU: 0x2B2, offset: 0x8B645, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x6B160, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x8B7EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B1A0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B831, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B1A0, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8B87D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6B1C0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x8B9BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x6B1E0, symSize: 0x70 } - - { offsetInCU: 0x7A, offset: 0x8B9E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x6B280, symSize: 0x30 } - - { offsetInCU: 0xBE, offset: 0x8BA2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x9D0, symBinAddr: 0x6BB70, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8BA9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA50, symBinAddr: 0x6BBF0, symSize: 0x20 } - - { offsetInCU: 0x149, offset: 0x8BAB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA70, symBinAddr: 0x6BC10, symSize: 0x20 } - - { offsetInCU: 0x177, offset: 0x8BAE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xA90, symBinAddr: 0x6BC30, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8BB78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x6B250, symSize: 0x30 } - - { offsetInCU: 0x230, offset: 0x8BB9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAE0, symBinAddr: 0x6BC80, symSize: 0x70 } - - { offsetInCU: 0x25B, offset: 0x8BBCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB90, symBinAddr: 0x6BD30, symSize: 0x20 } - - { offsetInCU: 0x277, offset: 0x8BBE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xBB0, symBinAddr: 0x6BD50, symSize: 0x20 } - - { offsetInCU: 0x4CA, offset: 0x8BE39, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x8E0, symBinAddr: 0x6BA80, symSize: 0xF0 } - - { offsetInCU: 0x546, offset: 0x8BEB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBD0, symBinAddr: 0x6BD70, symSize: 0x490 } - - { offsetInCU: 0x79D, offset: 0x8C10C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1060, symBinAddr: 0x6C200, symSize: 0x150 } - - { offsetInCU: 0x921, offset: 0x8C290, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x11B0, symBinAddr: 0x6C350, symSize: 0x9A0 } - - { offsetInCU: 0xECB, offset: 0x8C83A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B50, symBinAddr: 0x6CCF0, symSize: 0x7A0 } - - { offsetInCU: 0x127B, offset: 0x8CBEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x22F0, symBinAddr: 0x6D490, symSize: 0x540 } - - { offsetInCU: 0x141A, offset: 0x8CD89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2830, symBinAddr: 0x6D9D0, symSize: 0x680 } - - { offsetInCU: 0x191F, offset: 0x8D28E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2EB0, symBinAddr: 0x6E050, symSize: 0x130 } - - { offsetInCU: 0x1A0F, offset: 0x8D37E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2FE0, symBinAddr: 0x6E180, symSize: 0x30 } - - { offsetInCU: 0x1A52, offset: 0x8D3C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3620, symBinAddr: 0x6E750, symSize: 0x200 } - - { offsetInCU: 0x1B03, offset: 0x8D472, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3820, symBinAddr: 0x6E950, symSize: 0x220 } - - { offsetInCU: 0x1B68, offset: 0x8D4D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3A40, symBinAddr: 0x6EB70, symSize: 0x240 } - - { offsetInCU: 0x1C90, offset: 0x8D5FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3CB0, symBinAddr: 0x6EDB0, symSize: 0x290 } - - { offsetInCU: 0x1DCF, offset: 0x8D73E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3F40, symBinAddr: 0x6F040, symSize: 0x170 } - - { offsetInCU: 0x1E15, offset: 0x8D784, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x40B0, symBinAddr: 0x6F1B0, symSize: 0x570 } - - { offsetInCU: 0x2166, offset: 0x8DAD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4620, symBinAddr: 0x6F720, symSize: 0xD0 } - - { offsetInCU: 0x224C, offset: 0x8DBBB, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x3080, symBinAddr: 0x6E220, symSize: 0x10 } - - { offsetInCU: 0x228E, offset: 0x8DBFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3090, symBinAddr: 0x6E230, symSize: 0x10 } - - { offsetInCU: 0x22A2, offset: 0x8DC11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x30A0, symBinAddr: 0x6E240, symSize: 0x30 } - - { offsetInCU: 0x22B6, offset: 0x8DC25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x30D0, symBinAddr: 0x6E270, symSize: 0x10 } - - { offsetInCU: 0x22CA, offset: 0x8DC39, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x30E0, symBinAddr: 0x6E280, symSize: 0x40 } - - { offsetInCU: 0x22DE, offset: 0x8DC4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3160, symBinAddr: 0x6E2C0, symSize: 0x10 } - - { offsetInCU: 0x22F2, offset: 0x8DC61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3170, symBinAddr: 0x6E2D0, symSize: 0x30 } - - { offsetInCU: 0x2306, offset: 0x8DC75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x31C0, symBinAddr: 0x6E300, symSize: 0x80 } - - { offsetInCU: 0x231A, offset: 0x8DC89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x3240, symBinAddr: 0x6E380, symSize: 0xD0 } - - { offsetInCU: 0x232E, offset: 0x8DC9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x3310, symBinAddr: 0x6E450, symSize: 0x10 } - - { offsetInCU: 0x2342, offset: 0x8DCB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x3320, symBinAddr: 0x6E460, symSize: 0x10 } - - { offsetInCU: 0x2356, offset: 0x8DCC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x3330, symBinAddr: 0x6E470, symSize: 0x10 } - - { offsetInCU: 0x236A, offset: 0x8DCD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3340, symBinAddr: 0x6E480, symSize: 0x10 } - - { offsetInCU: 0x237E, offset: 0x8DCED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3350, symBinAddr: 0x6E490, symSize: 0x80 } - - { offsetInCU: 0x2392, offset: 0x8DD01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x33D0, symBinAddr: 0x6E510, symSize: 0xD0 } - - { offsetInCU: 0x23A6, offset: 0x8DD15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x34A0, symBinAddr: 0x6E5E0, symSize: 0x10 } - - { offsetInCU: 0x23BA, offset: 0x8DD29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x34B0, symBinAddr: 0x6E5F0, symSize: 0x10 } - - { offsetInCU: 0x23CE, offset: 0x8DD3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x34C0, symBinAddr: 0x6E600, symSize: 0x10 } - - { offsetInCU: 0x23E2, offset: 0x8DD51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x34D0, symBinAddr: 0x6E610, symSize: 0x10 } - - { offsetInCU: 0x23F6, offset: 0x8DD65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x34E0, symBinAddr: 0x6E620, symSize: 0x20 } - - { offsetInCU: 0x240A, offset: 0x8DD79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3510, symBinAddr: 0x6E640, symSize: 0x10 } - - { offsetInCU: 0x241E, offset: 0x8DD8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x3520, symBinAddr: 0x6E650, symSize: 0x10 } - - { offsetInCU: 0x2432, offset: 0x8DDA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3530, symBinAddr: 0x6E660, symSize: 0x30 } - - { offsetInCU: 0x2446, offset: 0x8DDB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3560, symBinAddr: 0x6E690, symSize: 0x10 } - - { offsetInCU: 0x245A, offset: 0x8DDC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x3570, symBinAddr: 0x6E6A0, symSize: 0x10 } - - { offsetInCU: 0x246E, offset: 0x8DDDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3580, symBinAddr: 0x6E6B0, symSize: 0x30 } - - { offsetInCU: 0x2482, offset: 0x8DDF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x35B0, symBinAddr: 0x6E6E0, symSize: 0x10 } - - { offsetInCU: 0x24A1, offset: 0x8DE10, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x35C0, symBinAddr: 0x6E6F0, symSize: 0x20 } - - { offsetInCU: 0x24D9, offset: 0x8DE48, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x35E0, symBinAddr: 0x6E710, symSize: 0x20 } - - { offsetInCU: 0x2511, offset: 0x8DE80, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3600, symBinAddr: 0x6E730, symSize: 0x20 } - - { offsetInCU: 0x2575, offset: 0x8DEE4, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x4750, symBinAddr: 0x6F850, symSize: 0x40 } - - { offsetInCU: 0x2589, offset: 0x8DEF8, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x47F0, symBinAddr: 0x6F890, symSize: 0x30 } - - { offsetInCU: 0x259D, offset: 0x8DF0C, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4820, symBinAddr: 0x6F8C0, symSize: 0x30 } - - { offsetInCU: 0x25B1, offset: 0x8DF20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4890, symBinAddr: 0x6F910, symSize: 0x20 } - - { offsetInCU: 0x25C5, offset: 0x8DF34, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x48B0, symBinAddr: 0x6F930, symSize: 0x20 } - - { offsetInCU: 0x25D9, offset: 0x8DF48, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x48D0, symBinAddr: 0x6F950, symSize: 0x10 } - - { offsetInCU: 0x25ED, offset: 0x8DF5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4940, symBinAddr: 0x6F960, symSize: 0x20 } - - { offsetInCU: 0x2601, offset: 0x8DF70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x49F0, symBinAddr: 0x6FA10, symSize: 0x10 } - - { offsetInCU: 0x2630, offset: 0x8DF9F, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x110, symBinAddr: 0x6B2B0, symSize: 0x10 } - - { offsetInCU: 0x2698, offset: 0x8E007, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x6B2C0, symSize: 0x30 } - - { offsetInCU: 0x2716, offset: 0x8E085, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x150, symBinAddr: 0x6B2F0, symSize: 0x70 } - - { offsetInCU: 0x27A5, offset: 0x8E114, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x1C0, symBinAddr: 0x6B360, symSize: 0x70 } - - { offsetInCU: 0x2834, offset: 0x8E1A3, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x230, symBinAddr: 0x6B3D0, symSize: 0x90 } - - { offsetInCU: 0x28CB, offset: 0x8E23A, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x2C0, symBinAddr: 0x6B460, symSize: 0x60 } - - { offsetInCU: 0x29A5, offset: 0x8E314, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x320, symBinAddr: 0x6B4C0, symSize: 0x60 } - - { offsetInCU: 0x2A7F, offset: 0x8E3EE, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x380, symBinAddr: 0x6B520, symSize: 0x60 } - - { offsetInCU: 0x2AF4, offset: 0x8E463, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x3E0, symBinAddr: 0x6B580, symSize: 0x40 } - - { offsetInCU: 0x2B51, offset: 0x8E4C0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x420, symBinAddr: 0x6B5C0, symSize: 0x40 } - - { offsetInCU: 0x2BAE, offset: 0x8E51D, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x460, symBinAddr: 0x6B600, symSize: 0x40 } - - { offsetInCU: 0x2BD7, offset: 0x8E546, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x4A0, symBinAddr: 0x6B640, symSize: 0x60 } - - { offsetInCU: 0x2C2A, offset: 0x8E599, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x500, symBinAddr: 0x6B6A0, symSize: 0x60 } - - { offsetInCU: 0x2CA6, offset: 0x8E615, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x560, symBinAddr: 0x6B700, symSize: 0x60 } - - { offsetInCU: 0x2D37, offset: 0x8E6A6, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5C0, symBinAddr: 0x6B760, symSize: 0xB0 } - - { offsetInCU: 0x2EB0, offset: 0x8E81F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x670, symBinAddr: 0x6B810, symSize: 0x50 } - - { offsetInCU: 0x2F7C, offset: 0x8E8EB, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6C0, symBinAddr: 0x6B860, symSize: 0x90 } - - { offsetInCU: 0x2FFC, offset: 0x8E96B, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x750, symBinAddr: 0x6B8F0, symSize: 0x80 } - - { offsetInCU: 0x3076, offset: 0x8E9E5, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7D0, symBinAddr: 0x6B970, symSize: 0xD0 } - - { offsetInCU: 0x3153, offset: 0x8EAC2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8A0, symBinAddr: 0x6BA40, symSize: 0x40 } - - { offsetInCU: 0x31E4, offset: 0x8EB53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA10, symBinAddr: 0x6BBB0, symSize: 0x10 } - - { offsetInCU: 0x3200, offset: 0x8EB6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA20, symBinAddr: 0x6BBC0, symSize: 0x10 } - - { offsetInCU: 0x321C, offset: 0x8EB8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA30, symBinAddr: 0x6BBD0, symSize: 0x10 } - - { offsetInCU: 0x3230, offset: 0x8EB9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA40, symBinAddr: 0x6BBE0, symSize: 0x10 } - - { offsetInCU: 0x324A, offset: 0x8EBB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x6BCF0, symSize: 0x10 } - - { offsetInCU: 0x3266, offset: 0x8EBD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB60, symBinAddr: 0x6BD00, symSize: 0x10 } - - { offsetInCU: 0x3282, offset: 0x8EBF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB70, symBinAddr: 0x6BD10, symSize: 0x10 } - - { offsetInCU: 0x3296, offset: 0x8EC05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB80, symBinAddr: 0x6BD20, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x8F0A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6FA50, symSize: 0x1A0 } - - { offsetInCU: 0x57, offset: 0x8F0B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6FBF0, symSize: 0x90 } - - { offsetInCU: 0x6B, offset: 0x8F0C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6FC80, symSize: 0x170 } - - { offsetInCU: 0x7F, offset: 0x8F0DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6FDF0, symSize: 0x1F0 } - - { offsetInCU: 0x93, offset: 0x8F0F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6FFE0, symSize: 0xE0 } - - { offsetInCU: 0xA7, offset: 0x8F104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x700C0, symSize: 0x1C0 } - - { offsetInCU: 0xBB, offset: 0x8F118, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x70280, symSize: 0x20 } - - { offsetInCU: 0xCF, offset: 0x8F12C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x70310, symSize: 0x20 } - - { offsetInCU: 0xE3, offset: 0x8F140, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x703B0, symSize: 0x90 } - - { offsetInCU: 0xF7, offset: 0x8F154, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x70440, symSize: 0x50 } - - { offsetInCU: 0x10B, offset: 0x8F168, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x70490, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8F17C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x705B0, symSize: 0x70 } - - { offsetInCU: 0x133, offset: 0x8F190, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x70620, symSize: 0xF0 } - - { offsetInCU: 0x147, offset: 0x8F1A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x70710, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8F1B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x70870, symSize: 0xC0 } - - { offsetInCU: 0x16F, offset: 0x8F1CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x70930, symSize: 0x150 } - - { offsetInCU: 0x183, offset: 0x8F1E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x70A80, symSize: 0x20 } - - { offsetInCU: 0x197, offset: 0x8F1F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x70B10, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x8F208, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x70BD0, symSize: 0x80 } - - { offsetInCU: 0x1DD, offset: 0x8F23A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1240, symBinAddr: 0x70C50, symSize: 0x20 } - - { offsetInCU: 0x22A, offset: 0x8F287, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x711A0, symSize: 0x10 } - - { offsetInCU: 0x288, offset: 0x8F2E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17B0, symBinAddr: 0x711C0, symSize: 0x20 } - - { offsetInCU: 0x302, offset: 0x8F35F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x711F0, symSize: 0x10 } - - { offsetInCU: 0x32D, offset: 0x8F38A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x71200, symSize: 0x20 } - - { offsetInCU: 0x35E, offset: 0x8F3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x71220, symSize: 0x10 } - - { offsetInCU: 0x37A, offset: 0x8F3D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x71230, symSize: 0x10 } - - { offsetInCU: 0x396, offset: 0x8F3F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E80, symBinAddr: 0x72760, symSize: 0x160 } - - { offsetInCU: 0x3DC, offset: 0x8F439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1260, symBinAddr: 0x70C70, symSize: 0x1F0 } - - { offsetInCU: 0x41B, offset: 0x8F478, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1450, symBinAddr: 0x70E60, symSize: 0x340 } - - { offsetInCU: 0x44C, offset: 0x8F4A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x71280, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x8F4CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1880, symBinAddr: 0x71290, symSize: 0x10 } - - { offsetInCU: 0x4C7, offset: 0x8F524, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x712A0, symSize: 0x20 } - - { offsetInCU: 0x4F0, offset: 0x8F54D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x71490, symSize: 0x10 } - - { offsetInCU: 0x51B, offset: 0x8F578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x714A0, symSize: 0x20 } - - { offsetInCU: 0x54C, offset: 0x8F5A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB0, symBinAddr: 0x714C0, symSize: 0x10 } - - { offsetInCU: 0x568, offset: 0x8F5C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x714D0, symSize: 0x10 } - - { offsetInCU: 0x584, offset: 0x8F5E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FE0, symBinAddr: 0x728C0, symSize: 0x120 } - - { offsetInCU: 0x5CA, offset: 0x8F627, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x712C0, symSize: 0x1B0 } - - { offsetInCU: 0x61F, offset: 0x8F67C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B10, symBinAddr: 0x71520, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x8F6B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B50, symBinAddr: 0x71560, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x8F6D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3100, symBinAddr: 0x729E0, symSize: 0x2B0 } - - { offsetInCU: 0x6C9, offset: 0x8F726, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1B90, symBinAddr: 0x715A0, symSize: 0x20 } - - { offsetInCU: 0x6F2, offset: 0x8F74F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23C0, symBinAddr: 0x71DD0, symSize: 0x10 } - - { offsetInCU: 0x71D, offset: 0x8F77A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23D0, symBinAddr: 0x71DE0, symSize: 0x20 } - - { offsetInCU: 0x74E, offset: 0x8F7AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23F0, symBinAddr: 0x71E00, symSize: 0x10 } - - { offsetInCU: 0x76A, offset: 0x8F7C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2400, symBinAddr: 0x71E10, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x8F7E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33B0, symBinAddr: 0x72C90, symSize: 0x250 } - - { offsetInCU: 0x7CC, offset: 0x8F829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BB0, symBinAddr: 0x715C0, symSize: 0x2B0 } - - { offsetInCU: 0x80B, offset: 0x8F868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E60, symBinAddr: 0x71870, symSize: 0x4E0 } - - { offsetInCU: 0x83C, offset: 0x8F899, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2450, symBinAddr: 0x71E60, symSize: 0x10 } - - { offsetInCU: 0x85F, offset: 0x8F8BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2460, symBinAddr: 0x71E70, symSize: 0x10 } - - { offsetInCU: 0x883, offset: 0x8F8E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x24A0, symBinAddr: 0x71E80, symSize: 0x30 } - - { offsetInCU: 0x897, offset: 0x8F8F4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2500, symBinAddr: 0x71EB0, symSize: 0x30 } - - { offsetInCU: 0x8AB, offset: 0x8F908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x25A0, symBinAddr: 0x71F10, symSize: 0x30 } - - { offsetInCU: 0x8BF, offset: 0x8F91C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2610, symBinAddr: 0x71F40, symSize: 0x30 } - - { offsetInCU: 0x8D3, offset: 0x8F930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x2700, symBinAddr: 0x72030, symSize: 0x30 } - - { offsetInCU: 0x8E7, offset: 0x8F944, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2750, symBinAddr: 0x72060, symSize: 0x80 } - - { offsetInCU: 0x8FB, offset: 0x8F958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x27D0, symBinAddr: 0x720E0, symSize: 0xD0 } - - { offsetInCU: 0x90F, offset: 0x8F96C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x28A0, symBinAddr: 0x721B0, symSize: 0x10 } - - { offsetInCU: 0x923, offset: 0x8F980, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x28B0, symBinAddr: 0x721C0, symSize: 0x10 } - - { offsetInCU: 0x937, offset: 0x8F994, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x28C0, symBinAddr: 0x721D0, symSize: 0x10 } - - { offsetInCU: 0x94B, offset: 0x8F9A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x28D0, symBinAddr: 0x721E0, symSize: 0x10 } - - { offsetInCU: 0x95F, offset: 0x8F9BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x28E0, symBinAddr: 0x721F0, symSize: 0x80 } - - { offsetInCU: 0x973, offset: 0x8F9D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2960, symBinAddr: 0x72270, symSize: 0xD0 } - - { offsetInCU: 0x987, offset: 0x8F9E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2A30, symBinAddr: 0x72340, symSize: 0x10 } - - { offsetInCU: 0x99B, offset: 0x8F9F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2A40, symBinAddr: 0x72350, symSize: 0x10 } - - { offsetInCU: 0x9AF, offset: 0x8FA0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2A50, symBinAddr: 0x72360, symSize: 0x30 } - - { offsetInCU: 0x9C3, offset: 0x8FA20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2A80, symBinAddr: 0x72390, symSize: 0x30 } - - { offsetInCU: 0x9D7, offset: 0x8FA34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2AB0, symBinAddr: 0x723C0, symSize: 0x70 } - - { offsetInCU: 0x9EB, offset: 0x8FA48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2B20, symBinAddr: 0x72430, symSize: 0x90 } - - { offsetInCU: 0x9FF, offset: 0x8FA5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2BE0, symBinAddr: 0x724C0, symSize: 0x70 } - - { offsetInCU: 0xA13, offset: 0x8FA70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2C50, symBinAddr: 0x72530, symSize: 0x50 } - - { offsetInCU: 0xA27, offset: 0x8FA84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2CA0, symBinAddr: 0x72580, symSize: 0x50 } - - { offsetInCU: 0xA3B, offset: 0x8FA98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2CF0, symBinAddr: 0x725D0, symSize: 0x10 } - - { offsetInCU: 0xA4F, offset: 0x8FAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D00, symBinAddr: 0x725E0, symSize: 0x10 } - - { offsetInCU: 0xA63, offset: 0x8FAC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x725F0, symSize: 0x30 } - - { offsetInCU: 0xA77, offset: 0x8FAD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D40, symBinAddr: 0x72620, symSize: 0x10 } - - { offsetInCU: 0xA8B, offset: 0x8FAE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D50, symBinAddr: 0x72630, symSize: 0x30 } - - { offsetInCU: 0xA9F, offset: 0x8FAFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D80, symBinAddr: 0x72660, symSize: 0x10 } - - { offsetInCU: 0xAB3, offset: 0x8FB10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D90, symBinAddr: 0x72670, symSize: 0x30 } - - { offsetInCU: 0xAC7, offset: 0x8FB24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DC0, symBinAddr: 0x726A0, symSize: 0x10 } - - { offsetInCU: 0xADB, offset: 0x8FB38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DD0, symBinAddr: 0x726B0, symSize: 0x30 } - - { offsetInCU: 0xAEF, offset: 0x8FB4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E00, symBinAddr: 0x726E0, symSize: 0x10 } - - { offsetInCU: 0xB03, offset: 0x8FB60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E10, symBinAddr: 0x726F0, symSize: 0x30 } - - { offsetInCU: 0xB17, offset: 0x8FB74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E40, symBinAddr: 0x72720, symSize: 0x10 } - - { offsetInCU: 0xB2B, offset: 0x8FB88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E50, symBinAddr: 0x72730, symSize: 0x30 } - - { offsetInCU: 0xB4A, offset: 0x8FBA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3600, symBinAddr: 0x72EE0, symSize: 0x30 } - - { offsetInCU: 0xB5E, offset: 0x8FBBB, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3630, symBinAddr: 0x72F10, symSize: 0x40 } - - { offsetInCU: 0xB72, offset: 0x8FBCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x36E0, symBinAddr: 0x72FC0, symSize: 0x80 } - - { offsetInCU: 0xB86, offset: 0x8FBE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3760, symBinAddr: 0x73040, symSize: 0xD0 } - - { offsetInCU: 0xB9A, offset: 0x8FBF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3830, symBinAddr: 0x73110, symSize: 0x10 } - - { offsetInCU: 0xBAE, offset: 0x8FC0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3840, symBinAddr: 0x73120, symSize: 0x10 } - - { offsetInCU: 0xBC2, offset: 0x8FC1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3850, symBinAddr: 0x73130, symSize: 0x10 } - - { offsetInCU: 0xBD6, offset: 0x8FC33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3860, symBinAddr: 0x73140, symSize: 0x30 } - - { offsetInCU: 0xBEA, offset: 0x8FC47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3890, symBinAddr: 0x73170, symSize: 0x10 } - - { offsetInCU: 0xBFE, offset: 0x8FC5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x38A0, symBinAddr: 0x73180, symSize: 0x30 } - - { offsetInCU: 0xC12, offset: 0x8FC6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x38D0, symBinAddr: 0x731B0, symSize: 0x10 } - - { offsetInCU: 0xC26, offset: 0x8FC83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x38E0, symBinAddr: 0x731C0, symSize: 0x30 } - - { offsetInCU: 0xC54, offset: 0x8FCB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x71240, symSize: 0x20 } - - { offsetInCU: 0xC70, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x71260, symSize: 0x20 } - - { offsetInCU: 0xC92, offset: 0x8FCEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x714E0, symSize: 0x20 } - - { offsetInCU: 0xCAE, offset: 0x8FD0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF0, symBinAddr: 0x71500, symSize: 0x20 } - - { offsetInCU: 0xCD0, offset: 0x8FD2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x71E20, symSize: 0x20 } - - { offsetInCU: 0xCEC, offset: 0x8FD49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2430, symBinAddr: 0x71E40, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8FE9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x73290, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x8FEBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x73290, symSize: 0x30 } - - { offsetInCU: 0x69, offset: 0x8FEDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x732C0, symSize: 0x30 } - - { offsetInCU: 0xA7, offset: 0x8FF1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x732F0, symSize: 0x10 } - - { offsetInCU: 0xC5, offset: 0x8FF39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x73300, symSize: 0x10 } - - { offsetInCU: 0xF0, offset: 0x8FF64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x73310, symSize: 0x30 } - - { offsetInCU: 0x10E, offset: 0x8FF82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x73340, symSize: 0x30 } - - { offsetInCU: 0x14C, offset: 0x8FFC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x73370, symSize: 0x20 } - - { offsetInCU: 0x17A, offset: 0x8FFEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x73390, symSize: 0x10 } - - { offsetInCU: 0x1A6, offset: 0x9001A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x733A0, symSize: 0x30 } - - { offsetInCU: 0x1BA, offset: 0x9002E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x733D0, symSize: 0x30 } - - { offsetInCU: 0x1CE, offset: 0x90042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x73400, symSize: 0x40 } - - { offsetInCU: 0x1E2, offset: 0x90056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x73440, symSize: 0x60 } - - { offsetInCU: 0x1F6, offset: 0x9006A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x734A0, symSize: 0x50 } - - { offsetInCU: 0x20A, offset: 0x9007E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x734F0, symSize: 0x40 } - - { offsetInCU: 0x21E, offset: 0x90092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x73530, symSize: 0x50 } - - { offsetInCU: 0x232, offset: 0x900A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x73580, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x901EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x73590, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x90210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8languageSSvpZ', symObjAddr: 0x9FA0, symBinAddr: 0x913D0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x9022A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7versionSSvpZ', symObjAddr: 0x9FB0, symBinAddr: 0x913E0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x90244, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x9FC0, symBinAddr: 0x913F0, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x9025E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x9FD0, symBinAddr: 0x91400, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x90278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x9FE0, symBinAddr: 0x91410, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x90292, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x9FF0, symBinAddr: 0x91420, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x902AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0xA000, symBinAddr: 0x91430, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x902C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0xA010, symBinAddr: 0x91440, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x902E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0xA020, symBinAddr: 0x91450, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x902FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0xA030, symBinAddr: 0x91460, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x90314, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0xA040, symBinAddr: 0x91470, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x9032E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0xA050, symBinAddr: 0x91480, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x90348, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0xA060, symBinAddr: 0x91490, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x90362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0xA070, symBinAddr: 0x914A0, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x9037C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0xA080, symBinAddr: 0x914B0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x90396, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKeySSvpZ', symObjAddr: 0xA090, symBinAddr: 0x914C0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x903B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKeySSvpZ', symObjAddr: 0xA0A0, symBinAddr: 0x914D0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x903CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKeySSvpZ', symObjAddr: 0xA0B0, symBinAddr: 0x914E0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x903E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKeySSvpZ', symObjAddr: 0xA0C0, symBinAddr: 0x914F0, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x903FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKeySSvpZ', symObjAddr: 0xA0D0, symBinAddr: 0x91500, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x90418, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKeySSvpZ', symObjAddr: 0xA0E0, symBinAddr: 0x91510, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x90432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKeySSvpZ', symObjAddr: 0xA0F0, symBinAddr: 0x91520, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x9044C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0xA100, symBinAddr: 0x91530, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x90466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0xA110, symBinAddr: 0x91540, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x90480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvpZ', symObjAddr: 0xA120, symBinAddr: 0x91550, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x9049A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0xA130, symBinAddr: 0x91560, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x904B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKeySSvpZ', symObjAddr: 0xA140, symBinAddr: 0x91570, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x904CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkeySSvpZ', symObjAddr: 0xA150, symBinAddr: 0x91580, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x904E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0xA160, symBinAddr: 0x91590, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x90502, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKeySSvpZ', symObjAddr: 0xA170, symBinAddr: 0x915A0, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x9051C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKeySSvpZ', symObjAddr: 0xA180, symBinAddr: 0x915B0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x90536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvpZ', symObjAddr: 0xA190, symBinAddr: 0x915C0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x90550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKeySSvpZ', symObjAddr: 0xA1A0, symBinAddr: 0x915D0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x9056A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKeySSvpZ', symObjAddr: 0xA1B0, symBinAddr: 0x915E0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x90584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKeySSvpZ', symObjAddr: 0xA1C0, symBinAddr: 0x915F0, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x9059E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKeySSvpZ', symObjAddr: 0xA1D0, symBinAddr: 0x91600, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x905B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvpZ', symObjAddr: 0xA1E0, symBinAddr: 0x91610, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x905D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvpZ', symObjAddr: 0xA1F0, symBinAddr: 0x91620, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x905EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvpZ', symObjAddr: 0xA200, symBinAddr: 0x91630, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x90606, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkeySSvpZ', symObjAddr: 0xA210, symBinAddr: 0x91640, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x90620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvpZ', symObjAddr: 0xA220, symBinAddr: 0x91650, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x9063A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKeySSvpZ', symObjAddr: 0xA230, symBinAddr: 0x91660, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x90654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKeySSvpZ', symObjAddr: 0xA240, symBinAddr: 0x91670, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x9066E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKeySSvpZ', symObjAddr: 0xA250, symBinAddr: 0x91680, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x90688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKeySSvpZ', symObjAddr: 0xA260, symBinAddr: 0x91690, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x906A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKeySSvpZ', symObjAddr: 0xA270, symBinAddr: 0x916A0, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x906BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKeySSvpZ', symObjAddr: 0xA280, symBinAddr: 0x916B0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x906D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0xA290, symBinAddr: 0x916C0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x906F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0xA2A0, symBinAddr: 0x916D0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x9070A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0xA2B0, symBinAddr: 0x916E0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x90724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKeySSvpZ', symObjAddr: 0xA2C0, symBinAddr: 0x916F0, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x9073E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKeySSvpZ', symObjAddr: 0xA2D0, symBinAddr: 0x91700, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x90758, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKeySSvpZ', symObjAddr: 0xA2E0, symBinAddr: 0x91710, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x90772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKeySSvpZ', symObjAddr: 0xA2F0, symBinAddr: 0x91720, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x9078C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0xA300, symBinAddr: 0x91730, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x907A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0xA310, symBinAddr: 0x91740, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x907C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0xA320, symBinAddr: 0x91750, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x907DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekeySSvpZ', symObjAddr: 0xA330, symBinAddr: 0x91760, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x907F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkeySSvpZ', symObjAddr: 0xA340, symBinAddr: 0x91770, symSize: 0x0 } - - { offsetInCU: 0x63D, offset: 0x90802, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x73590, symSize: 0x30 } - - { offsetInCU: 0x65B, offset: 0x90820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvau', symObjAddr: 0x30, symBinAddr: 0x735C0, symSize: 0x30 } - - { offsetInCU: 0x679, offset: 0x9083E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvau', symObjAddr: 0x60, symBinAddr: 0x735F0, symSize: 0x30 } - - { offsetInCU: 0x697, offset: 0x9085C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvau', symObjAddr: 0x90, symBinAddr: 0x73620, symSize: 0x30 } - - { offsetInCU: 0x6B5, offset: 0x9087A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvau', symObjAddr: 0xC0, symBinAddr: 0x73650, symSize: 0x30 } - - { offsetInCU: 0x6DF, offset: 0x908A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0xF0, symBinAddr: 0x73680, symSize: 0x20 } - - { offsetInCU: 0x6FA, offset: 0x908BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x230, symBinAddr: 0x737C0, symSize: 0x410 } - - { offsetInCU: 0x74E, offset: 0x90913, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x750, symBinAddr: 0x73CE0, symSize: 0x10 } - - { offsetInCU: 0x76A, offset: 0x9092F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x760, symBinAddr: 0x73CF0, symSize: 0x20 } - - { offsetInCU: 0x794, offset: 0x90959, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvau', symObjAddr: 0x110, symBinAddr: 0x736A0, symSize: 0x30 } - - { offsetInCU: 0x7B2, offset: 0x90977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvau', symObjAddr: 0x140, symBinAddr: 0x736D0, symSize: 0x30 } - - { offsetInCU: 0x7D0, offset: 0x90995, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x170, symBinAddr: 0x73700, symSize: 0x30 } - - { offsetInCU: 0x7EE, offset: 0x909B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x1A0, symBinAddr: 0x73730, symSize: 0x30 } - - { offsetInCU: 0x80C, offset: 0x909D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x1D0, symBinAddr: 0x73760, symSize: 0x30 } - - { offsetInCU: 0x82A, offset: 0x909EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvau', symObjAddr: 0x200, symBinAddr: 0x73790, symSize: 0x30 } - - { offsetInCU: 0x853, offset: 0x90A18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x660, symBinAddr: 0x73BF0, symSize: 0x10 } - - { offsetInCU: 0x867, offset: 0x90A2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x73C00, symSize: 0x30 } - - { offsetInCU: 0x891, offset: 0x90A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x7A0, symBinAddr: 0x73D10, symSize: 0x80 } - - { offsetInCU: 0x8A5, offset: 0x90A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x820, symBinAddr: 0x73D90, symSize: 0xD0 } - - { offsetInCU: 0x8B9, offset: 0x90A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x8F0, symBinAddr: 0x73E60, symSize: 0x10 } - - { offsetInCU: 0x8CD, offset: 0x90A92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x900, symBinAddr: 0x73E70, symSize: 0x10 } - - { offsetInCU: 0x8E1, offset: 0x90AA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x910, symBinAddr: 0x73E80, symSize: 0x10 } - - { offsetInCU: 0x8F5, offset: 0x90ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x920, symBinAddr: 0x73E90, symSize: 0x10 } - - { offsetInCU: 0x909, offset: 0x90ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8language_WZ', symObjAddr: 0x930, symBinAddr: 0x73EA0, symSize: 0x30 } - - { offsetInCU: 0x923, offset: 0x90AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7version_WZ', symObjAddr: 0x960, symBinAddr: 0x73ED0, symSize: 0x30 } - - { offsetInCU: 0x93D, offset: 0x90B02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x990, symBinAddr: 0x73F00, symSize: 0x30 } - - { offsetInCU: 0x957, offset: 0x90B1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x9C0, symBinAddr: 0x73F30, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x90B36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x9F0, symBinAddr: 0x73F60, symSize: 0x30 } - - { offsetInCU: 0x98B, offset: 0x90B50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPassword_WZ', symObjAddr: 0xA20, symBinAddr: 0x73F90, symSize: 0x30 } - - { offsetInCU: 0x9AC, offset: 0x90B71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0xA50, symBinAddr: 0x73FC0, symSize: 0x30 } - - { offsetInCU: 0x9C6, offset: 0x90B8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0xA80, symBinAddr: 0x73FF0, symSize: 0x30 } - - { offsetInCU: 0x9E0, offset: 0x90BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6option_WZ', symObjAddr: 0xAB0, symBinAddr: 0x74020, symSize: 0x30 } - - { offsetInCU: 0x9FA, offset: 0x90BBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0xAE0, symBinAddr: 0x74050, symSize: 0x30 } - - { offsetInCU: 0xA14, offset: 0x90BD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0xB10, symBinAddr: 0x74080, symSize: 0x30 } - - { offsetInCU: 0xA2E, offset: 0x90BF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0xB40, symBinAddr: 0x740B0, symSize: 0x30 } - - { offsetInCU: 0xA48, offset: 0x90C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6device_WZ', symObjAddr: 0xB70, symBinAddr: 0x740E0, symSize: 0x30 } - - { offsetInCU: 0xA62, offset: 0x90C27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0xBA0, symBinAddr: 0x74110, symSize: 0x30 } - - { offsetInCU: 0xA7C, offset: 0x90C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0xBD0, symBinAddr: 0x74140, symSize: 0x30 } - - { offsetInCU: 0xA97, offset: 0x90C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKey_WZ', symObjAddr: 0xC00, symBinAddr: 0x74170, symSize: 0x30 } - - { offsetInCU: 0xAB1, offset: 0x90C76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKey_WZ', symObjAddr: 0xC30, symBinAddr: 0x741A0, symSize: 0x30 } - - { offsetInCU: 0xACB, offset: 0x90C90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKey_WZ', symObjAddr: 0xC60, symBinAddr: 0x741D0, symSize: 0x30 } - - { offsetInCU: 0xAE5, offset: 0x90CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKey_WZ', symObjAddr: 0xC90, symBinAddr: 0x74200, symSize: 0x30 } - - { offsetInCU: 0xAFF, offset: 0x90CC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKey_WZ', symObjAddr: 0xCC0, symBinAddr: 0x74230, symSize: 0x30 } - - { offsetInCU: 0xB19, offset: 0x90CDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKey_WZ', symObjAddr: 0xCF0, symBinAddr: 0x74260, symSize: 0x30 } - - { offsetInCU: 0xB33, offset: 0x90CF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKey_WZ', symObjAddr: 0xD20, symBinAddr: 0x74290, symSize: 0x30 } - - { offsetInCU: 0xB4D, offset: 0x90D12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0xD50, symBinAddr: 0x742C0, symSize: 0x30 } - - { offsetInCU: 0xB67, offset: 0x90D2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKey_WZ', symObjAddr: 0xD80, symBinAddr: 0x742F0, symSize: 0x30 } - - { offsetInCU: 0xB81, offset: 0x90D46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKey_WZ', symObjAddr: 0xDB0, symBinAddr: 0x74320, symSize: 0x30 } - - { offsetInCU: 0xB9B, offset: 0x90D60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKey_WZ', symObjAddr: 0xDE0, symBinAddr: 0x74350, symSize: 0x30 } - - { offsetInCU: 0xBB5, offset: 0x90D7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKey_WZ', symObjAddr: 0xE10, symBinAddr: 0x74380, symSize: 0x30 } - - { offsetInCU: 0xBCF, offset: 0x90D94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkey_WZ', symObjAddr: 0xE40, symBinAddr: 0x743B0, symSize: 0x30 } - - { offsetInCU: 0xBE9, offset: 0x90DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKey_WZ', symObjAddr: 0xE70, symBinAddr: 0x743E0, symSize: 0x30 } - - { offsetInCU: 0xC03, offset: 0x90DC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKey_WZ', symObjAddr: 0xEA0, symBinAddr: 0x74410, symSize: 0x30 } - - { offsetInCU: 0xC1D, offset: 0x90DE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKey_WZ', symObjAddr: 0xED0, symBinAddr: 0x74440, symSize: 0x30 } - - { offsetInCU: 0xC37, offset: 0x90DFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKey_WZ', symObjAddr: 0xF00, symBinAddr: 0x74470, symSize: 0x30 } - - { offsetInCU: 0xC51, offset: 0x90E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKey_WZ', symObjAddr: 0xF30, symBinAddr: 0x744A0, symSize: 0x30 } - - { offsetInCU: 0xC6B, offset: 0x90E30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKey_WZ', symObjAddr: 0xF60, symBinAddr: 0x744D0, symSize: 0x30 } - - { offsetInCU: 0xC85, offset: 0x90E4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKey_WZ', symObjAddr: 0xF90, symBinAddr: 0x74500, symSize: 0x30 } - - { offsetInCU: 0xC9F, offset: 0x90E64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKey_WZ', symObjAddr: 0xFC0, symBinAddr: 0x74530, symSize: 0x30 } - - { offsetInCU: 0xCB9, offset: 0x90E7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkey_WZ', symObjAddr: 0xFF0, symBinAddr: 0x74560, symSize: 0x30 } - - { offsetInCU: 0xCD3, offset: 0x90E98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkey_WZ', symObjAddr: 0x1020, symBinAddr: 0x74590, symSize: 0x30 } - - { offsetInCU: 0xCED, offset: 0x90EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekey_WZ', symObjAddr: 0x1050, symBinAddr: 0x745C0, symSize: 0x30 } - - { offsetInCU: 0xD07, offset: 0x90ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkey_WZ', symObjAddr: 0x1080, symBinAddr: 0x745F0, symSize: 0x30 } - - { offsetInCU: 0xD21, offset: 0x90EE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkey_WZ', symObjAddr: 0x10B0, symBinAddr: 0x74620, symSize: 0x30 } - - { offsetInCU: 0xD3B, offset: 0x90F00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKey_WZ', symObjAddr: 0x10E0, symBinAddr: 0x74650, symSize: 0x30 } - - { offsetInCU: 0xD55, offset: 0x90F1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKey_WZ', symObjAddr: 0x1110, symBinAddr: 0x74680, symSize: 0x30 } - - { offsetInCU: 0xD6F, offset: 0x90F34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKey_WZ', symObjAddr: 0x1140, symBinAddr: 0x746B0, symSize: 0x30 } - - { offsetInCU: 0xD89, offset: 0x90F4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKey_WZ', symObjAddr: 0x1170, symBinAddr: 0x746E0, symSize: 0x30 } - - { offsetInCU: 0xDA3, offset: 0x90F68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKey_WZ', symObjAddr: 0x11A0, symBinAddr: 0x74710, symSize: 0x30 } - - { offsetInCU: 0xDBD, offset: 0x90F82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKey_WZ', symObjAddr: 0x11D0, symBinAddr: 0x74740, symSize: 0x30 } - - { offsetInCU: 0xDD7, offset: 0x90F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKey_WZ', symObjAddr: 0x1200, symBinAddr: 0x74770, symSize: 0x30 } - - { offsetInCU: 0xDF1, offset: 0x90FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0x1230, symBinAddr: 0x747A0, symSize: 0x30 } - - { offsetInCU: 0xE0B, offset: 0x90FD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKey_WZ', symObjAddr: 0x1260, symBinAddr: 0x747D0, symSize: 0x30 } - - { offsetInCU: 0xE25, offset: 0x90FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKey_WZ', symObjAddr: 0x1290, symBinAddr: 0x74800, symSize: 0x30 } - - { offsetInCU: 0xE3F, offset: 0x91004, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKey_WZ', symObjAddr: 0x12C0, symBinAddr: 0x74830, symSize: 0x30 } - - { offsetInCU: 0xE59, offset: 0x9101E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKey_WZ', symObjAddr: 0x12F0, symBinAddr: 0x74860, symSize: 0x30 } - - { offsetInCU: 0xE73, offset: 0x91038, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKey_WZ', symObjAddr: 0x1320, symBinAddr: 0x74890, symSize: 0x30 } - - { offsetInCU: 0xE8D, offset: 0x91052, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKey_WZ', symObjAddr: 0x1350, symBinAddr: 0x748C0, symSize: 0x30 } - - { offsetInCU: 0xEA7, offset: 0x9106C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0x1380, symBinAddr: 0x748F0, symSize: 0x30 } - - { offsetInCU: 0xEC1, offset: 0x91086, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekey_WZ', symObjAddr: 0x13B0, symBinAddr: 0x74920, symSize: 0x30 } - - { offsetInCU: 0xEDB, offset: 0x910A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekey_WZ', symObjAddr: 0x13E0, symBinAddr: 0x74950, symSize: 0x30 } - - { offsetInCU: 0xEF5, offset: 0x910BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkey_WZ', symObjAddr: 0x1410, symBinAddr: 0x74980, symSize: 0x30 } - - { offsetInCU: 0xF58, offset: 0x9111D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0x1440, symBinAddr: 0x749B0, symSize: 0x113 } - - { offsetInCU: 0x1193, offset: 0x91358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x640, symBinAddr: 0x73BD0, symSize: 0x20 } - - { offsetInCU: 0x124D, offset: 0x91412, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6A0, symBinAddr: 0x73C30, symSize: 0x40 } - - { offsetInCU: 0x1325, offset: 0x914EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E0, symBinAddr: 0x73C70, symSize: 0x30 } - - { offsetInCU: 0x13A1, offset: 0x91566, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x710, symBinAddr: 0x73CA0, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0x91720, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x74AD0, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x91762, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x74AD0, symSize: 0x20 } - - { offsetInCU: 0xB9, offset: 0x917AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x74AF0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x918EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1FE8, symBinAddr: 0x90D98, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x91938, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0x1B0, symBinAddr: 0x74CC0, symSize: 0x30 } - - { offsetInCU: 0x117, offset: 0x919B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1E0, symBinAddr: 0x74CF0, symSize: 0x580 } - - { offsetInCU: 0x306, offset: 0x91BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x7A0, symBinAddr: 0x75270, symSize: 0x50 } - - { offsetInCU: 0x375, offset: 0x91C15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x800, symBinAddr: 0x752D0, symSize: 0x50 } - - { offsetInCU: 0x3E4, offset: 0x91C84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x860, symBinAddr: 0x75330, symSize: 0x50 } - - { offsetInCU: 0x453, offset: 0x91CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x8C0, symBinAddr: 0x75390, symSize: 0x50 } - - { offsetInCU: 0x4C2, offset: 0x91D62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x920, symBinAddr: 0x753F0, symSize: 0x50 } - - { offsetInCU: 0x5C8, offset: 0x91E68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xA30, symBinAddr: 0x754B0, symSize: 0x40 } - - { offsetInCU: 0x639, offset: 0x91ED9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xA70, symBinAddr: 0x754F0, symSize: 0x10 } - - { offsetInCU: 0x686, offset: 0x91F26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA80, symBinAddr: 0x75500, symSize: 0x50 } - - { offsetInCU: 0x707, offset: 0x91FA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0xBF0, symBinAddr: 0x75670, symSize: 0x30 } - - { offsetInCU: 0x768, offset: 0x92008, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xC20, symBinAddr: 0x756A0, symSize: 0x50 } - - { offsetInCU: 0x7E9, offset: 0x92089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xC70, symBinAddr: 0x756F0, symSize: 0x40 } - - { offsetInCU: 0x884, offset: 0x92124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xCB0, symBinAddr: 0x75730, symSize: 0x80 } - - { offsetInCU: 0x933, offset: 0x921D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xD50, symBinAddr: 0x757B0, symSize: 0x70 } - - { offsetInCU: 0x9F6, offset: 0x92296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xDC0, symBinAddr: 0x75820, symSize: 0x80 } - - { offsetInCU: 0xAA5, offset: 0x92345, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xE40, symBinAddr: 0x758A0, symSize: 0x30 } - - { offsetInCU: 0xB34, offset: 0x923D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE70, symBinAddr: 0x758D0, symSize: 0x30 } - - { offsetInCU: 0xBC3, offset: 0x92463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xEA0, symBinAddr: 0x75900, symSize: 0x40 } - - { offsetInCU: 0xC53, offset: 0x924F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xEE0, symBinAddr: 0x75940, symSize: 0x40 } - - { offsetInCU: 0xCE6, offset: 0x92586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF20, symBinAddr: 0x75980, symSize: 0x40 } - - { offsetInCU: 0xD79, offset: 0x92619, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF60, symBinAddr: 0x759C0, symSize: 0x40 } - - { offsetInCU: 0xE0C, offset: 0x926AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xFA0, symBinAddr: 0x75A00, symSize: 0x40 } - - { offsetInCU: 0xE9F, offset: 0x9273F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xFE0, symBinAddr: 0x75A40, symSize: 0x30 } - - { offsetInCU: 0xF08, offset: 0x927A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x1010, symBinAddr: 0x75A70, symSize: 0x40 } - - { offsetInCU: 0xF69, offset: 0x92809, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x1050, symBinAddr: 0x75AB0, symSize: 0x130 } - - { offsetInCU: 0x1050, offset: 0x928F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0x1180, symBinAddr: 0x75BE0, symSize: 0xB0 } - - { offsetInCU: 0x1137, offset: 0x929D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x1230, symBinAddr: 0x75C90, symSize: 0x90 } - - { offsetInCU: 0x11D2, offset: 0x92A72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x12C0, symBinAddr: 0x75D20, symSize: 0xF0 } - - { offsetInCU: 0x11FF, offset: 0x92A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x13B0, symBinAddr: 0x75E10, symSize: 0x20 } - - { offsetInCU: 0x12A5, offset: 0x92B45, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xE0, symBinAddr: 0x74BF0, symSize: 0x50 } - - { offsetInCU: 0x12BD, offset: 0x92B5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x130, symBinAddr: 0x74C40, symSize: 0x80 } - - { offsetInCU: 0x135B, offset: 0x92BFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x7F0, symBinAddr: 0x752C0, symSize: 0x10 } - - { offsetInCU: 0x136F, offset: 0x92C0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x850, symBinAddr: 0x75320, symSize: 0x10 } - - { offsetInCU: 0x1383, offset: 0x92C23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x8B0, symBinAddr: 0x75380, symSize: 0x10 } - - { offsetInCU: 0x1397, offset: 0x92C37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x910, symBinAddr: 0x753E0, symSize: 0x10 } - - { offsetInCU: 0x13AB, offset: 0x92C4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x970, symBinAddr: 0x75440, symSize: 0x10 } - - { offsetInCU: 0x13BF, offset: 0x92C5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x9D0, symBinAddr: 0x75450, symSize: 0x20 } - - { offsetInCU: 0x13D3, offset: 0x92C73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOf', symObjAddr: 0x9F0, symBinAddr: 0x75470, symSize: 0x40 } - - { offsetInCU: 0x1434, offset: 0x92CD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x16E0, symBinAddr: 0x76140, symSize: 0x10 } - - { offsetInCU: 0x1448, offset: 0x92CE8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16F0, symBinAddr: 0x76150, symSize: 0x20 } - - { offsetInCU: 0x145C, offset: 0x92CFC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1710, symBinAddr: 0x76170, symSize: 0x10 } - - { offsetInCU: 0x1492, offset: 0x92D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1790, symBinAddr: 0x76180, symSize: 0x390 } - - { offsetInCU: 0x156A, offset: 0x92E0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1B20, symBinAddr: 0x76510, symSize: 0x450 } - - { offsetInCU: 0x1686, offset: 0x92F26, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x74B10, symSize: 0x10 } - - { offsetInCU: 0x16A2, offset: 0x92F42, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x10, symBinAddr: 0x74B20, symSize: 0x10 } - - { offsetInCU: 0x16BE, offset: 0x92F5E, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x20, symBinAddr: 0x74B30, symSize: 0x10 } - - { offsetInCU: 0x16DA, offset: 0x92F7A, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0x30, symBinAddr: 0x74B40, symSize: 0x10 } - - { offsetInCU: 0x16F6, offset: 0x92F96, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x40, symBinAddr: 0x74B50, symSize: 0x10 } - - { offsetInCU: 0x1712, offset: 0x92FB2, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x74B60, symSize: 0x10 } - - { offsetInCU: 0x172E, offset: 0x92FCE, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x60, symBinAddr: 0x74B70, symSize: 0x10 } - - { offsetInCU: 0x174A, offset: 0x92FEA, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x70, symBinAddr: 0x74B80, symSize: 0x10 } - - { offsetInCU: 0x1766, offset: 0x93006, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x80, symBinAddr: 0x74B90, symSize: 0x10 } - - { offsetInCU: 0x1782, offset: 0x93022, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x90, symBinAddr: 0x74BA0, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x9303E, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0xA0, symBinAddr: 0x74BB0, symSize: 0x20 } - - { offsetInCU: 0x17BA, offset: 0x9305A, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0xC0, symBinAddr: 0x74BD0, symSize: 0x20 } + - { offsetInCU: 0x34, offset: 0x5A510, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x75930, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5A545, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x75960, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x5A5AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x408C8, symBinAddr: 0x8C470, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x5A84A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB110, symBinAddr: 0xCE00, symSize: 0x1BD0 } + - { offsetInCU: 0x1CEF, offset: 0x5C24A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x1DB0, symSize: 0x40 } + - { offsetInCU: 0x1EE7, offset: 0x5C442, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1E40, symBinAddr: 0x3B70, symSize: 0x10 } + - { offsetInCU: 0x1EFB, offset: 0x5C456, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1E50, symBinAddr: 0x3B80, symSize: 0x30 } + - { offsetInCU: 0x1F0F, offset: 0x5C46A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1E80, symBinAddr: 0x3BB0, symSize: 0x220 } + - { offsetInCU: 0x238F, offset: 0x5C8EA, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x9E20, symBinAddr: 0xBB40, symSize: 0x10 } + - { offsetInCU: 0x23A3, offset: 0x5C8FE, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x9E30, symBinAddr: 0xBB50, symSize: 0x10 } + - { offsetInCU: 0x23B7, offset: 0x5C912, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x9E40, symBinAddr: 0xBB60, symSize: 0x20 } + - { offsetInCU: 0x23CB, offset: 0x5C926, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x9E60, symBinAddr: 0xBB80, symSize: 0x30 } + - { offsetInCU: 0x25F0, offset: 0x5CB4B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xA500, symBinAddr: 0xC1F0, symSize: 0x20 } + - { offsetInCU: 0x2604, offset: 0x5CB5F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xA520, symBinAddr: 0xC210, symSize: 0x20 } + - { offsetInCU: 0x2618, offset: 0x5CB73, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xA570, symBinAddr: 0xC260, symSize: 0x20 } + - { offsetInCU: 0x262C, offset: 0x5CB87, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xA590, symBinAddr: 0xC280, symSize: 0x20 } + - { offsetInCU: 0x2695, offset: 0x5CBF0, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xA990, symBinAddr: 0xC680, symSize: 0x50 } + - { offsetInCU: 0x2D0A, offset: 0x5D265, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xCE80, symBinAddr: 0xEB70, symSize: 0x40 } + - { offsetInCU: 0x2D1E, offset: 0x5D279, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xCEC0, symBinAddr: 0xEBB0, symSize: 0x40 } + - { offsetInCU: 0x2D32, offset: 0x5D28D, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xCF00, symBinAddr: 0xEBF0, symSize: 0x30 } + - { offsetInCU: 0x2D46, offset: 0x5D2A1, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xCF30, symBinAddr: 0xEC20, symSize: 0x20 } + - { offsetInCU: 0x2D5A, offset: 0x5D2B5, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xCF50, symBinAddr: 0xEC40, symSize: 0x30 } + - { offsetInCU: 0x2D6E, offset: 0x5D2C9, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xCFD0, symBinAddr: 0xECC0, symSize: 0x30 } + - { offsetInCU: 0x2D82, offset: 0x5D2DD, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD190, symBinAddr: 0xEE80, symSize: 0x20 } + - { offsetInCU: 0x2D96, offset: 0x5D2F1, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD1B0, symBinAddr: 0xEEA0, symSize: 0x20 } + - { offsetInCU: 0x2DAA, offset: 0x5D305, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xD1D0, symBinAddr: 0xEEC0, symSize: 0x50 } + - { offsetInCU: 0x2DBE, offset: 0x5D319, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xD220, symBinAddr: 0xEF10, symSize: 0x180 } + - { offsetInCU: 0x2DD2, offset: 0x5D32D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xD3A0, symBinAddr: 0xF090, symSize: 0x2D0 } + - { offsetInCU: 0x2DE6, offset: 0x5D341, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xD670, symBinAddr: 0xF360, symSize: 0x70 } + - { offsetInCU: 0x2DFA, offset: 0x5D355, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xD6E0, symBinAddr: 0xF3D0, symSize: 0x30 } + - { offsetInCU: 0x2E0E, offset: 0x5D369, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xD710, symBinAddr: 0xF400, symSize: 0xD0 } + - { offsetInCU: 0x2E22, offset: 0x5D37D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xD7E0, symBinAddr: 0xF4D0, symSize: 0xB0 } + - { offsetInCU: 0x2E36, offset: 0x5D391, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xD890, symBinAddr: 0xF580, symSize: 0x20 } + - { offsetInCU: 0x2E4A, offset: 0x5D3A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xD8B0, symBinAddr: 0xF5A0, symSize: 0x30 } + - { offsetInCU: 0x2E5E, offset: 0x5D3B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xD910, symBinAddr: 0xF600, symSize: 0x50 } + - { offsetInCU: 0x2E72, offset: 0x5D3CD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xDA00, symBinAddr: 0xF6F0, symSize: 0x20 } + - { offsetInCU: 0x2E86, offset: 0x5D3E1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xDA20, symBinAddr: 0xF710, symSize: 0x20 } + - { offsetInCU: 0x2E9A, offset: 0x5D3F5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xDA40, symBinAddr: 0xF730, symSize: 0x20 } + - { offsetInCU: 0x2EAE, offset: 0x5D409, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xDA60, symBinAddr: 0xF750, symSize: 0x20 } + - { offsetInCU: 0x2EC2, offset: 0x5D41D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xDA80, symBinAddr: 0xF770, symSize: 0x20 } + - { offsetInCU: 0x2ED6, offset: 0x5D431, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xDAA0, symBinAddr: 0xF790, symSize: 0x20 } + - { offsetInCU: 0x2EEA, offset: 0x5D445, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xDAC0, symBinAddr: 0xF7B0, symSize: 0x20 } + - { offsetInCU: 0x3234, offset: 0x5D78F, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x82D0, symBinAddr: 0xA000, symSize: 0x70 } + - { offsetInCU: 0x3348, offset: 0x5D8A3, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x9EB0, symBinAddr: 0xBBD0, symSize: 0x80 } + - { offsetInCU: 0x33D9, offset: 0x5D934, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x9F30, symBinAddr: 0xBC50, symSize: 0x80 } + - { offsetInCU: 0x3479, offset: 0x5D9D4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9FB0, symBinAddr: 0xBCD0, symSize: 0x10 } + - { offsetInCU: 0x34B7, offset: 0x5DA12, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x9FD0, symBinAddr: 0xBCF0, symSize: 0x10 } + - { offsetInCU: 0x351A, offset: 0x5DA75, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x9FE0, symBinAddr: 0xBD00, symSize: 0x10 } + - { offsetInCU: 0x35CB, offset: 0x5DB26, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x9FF0, symBinAddr: 0xBD10, symSize: 0x10 } + - { offsetInCU: 0x3674, offset: 0x5DBCF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA000, symBinAddr: 0xBD20, symSize: 0x10 } + - { offsetInCU: 0x371B, offset: 0x5DC76, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA010, symBinAddr: 0xBD30, symSize: 0x30 } + - { offsetInCU: 0x388F, offset: 0x5DDEA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA040, symBinAddr: 0xBD60, symSize: 0x30 } + - { offsetInCU: 0x3996, offset: 0x5DEF1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA070, symBinAddr: 0xBD90, symSize: 0x20 } + - { offsetInCU: 0x3A82, offset: 0x5DFDD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA090, symBinAddr: 0xBDB0, symSize: 0x10 } + - { offsetInCU: 0x3AC0, offset: 0x5E01B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA0A0, symBinAddr: 0xBDC0, symSize: 0x10 } + - { offsetInCU: 0x3AFE, offset: 0x5E059, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA0B0, symBinAddr: 0xBDD0, symSize: 0x10 } + - { offsetInCU: 0x3B55, offset: 0x5E0B0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA0C0, symBinAddr: 0xBDE0, symSize: 0x10 } + - { offsetInCU: 0x3C08, offset: 0x5E163, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA0D0, symBinAddr: 0xBDF0, symSize: 0x20 } + - { offsetInCU: 0x3C89, offset: 0x5E1E4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA0F0, symBinAddr: 0xBE10, symSize: 0x10 } + - { offsetInCU: 0x3D4B, offset: 0x5E2A6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA100, symBinAddr: 0xBE20, symSize: 0x20 } + - { offsetInCU: 0x3DE5, offset: 0x5E340, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA120, symBinAddr: 0xBE40, symSize: 0x10 } + - { offsetInCU: 0x3E4D, offset: 0x5E3A8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA130, symBinAddr: 0xBE50, symSize: 0x20 } + - { offsetInCU: 0x3E69, offset: 0x5E3C4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA150, symBinAddr: 0xBE70, symSize: 0x10 } + - { offsetInCU: 0x3EE5, offset: 0x5E440, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA180, symBinAddr: 0xBEA0, symSize: 0x10 } + - { offsetInCU: 0x3F01, offset: 0x5E45C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA190, symBinAddr: 0xBEB0, symSize: 0x10 } + - { offsetInCU: 0x3F32, offset: 0x5E48D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA1A0, symBinAddr: 0xBEC0, symSize: 0x10 } + - { offsetInCU: 0x3F63, offset: 0x5E4BE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA1B0, symBinAddr: 0xBED0, symSize: 0x10 } + - { offsetInCU: 0x3F94, offset: 0x5E4EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA1C0, symBinAddr: 0xBEE0, symSize: 0x30 } + - { offsetInCU: 0x3FC3, offset: 0x5E51E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA1F0, symBinAddr: 0xBF10, symSize: 0x30 } + - { offsetInCU: 0x3FF4, offset: 0x5E54F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA220, symBinAddr: 0xBF40, symSize: 0x30 } + - { offsetInCU: 0x4025, offset: 0x5E580, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA250, symBinAddr: 0xBF70, symSize: 0x10 } + - { offsetInCU: 0x4056, offset: 0x5E5B1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA260, symBinAddr: 0xBF80, symSize: 0x10 } + - { offsetInCU: 0x4087, offset: 0x5E5E2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA270, symBinAddr: 0xBF90, symSize: 0x10 } + - { offsetInCU: 0x40B8, offset: 0x5E613, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA280, symBinAddr: 0xBFA0, symSize: 0x20 } + - { offsetInCU: 0x40E9, offset: 0x5E644, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA2A0, symBinAddr: 0xBFC0, symSize: 0x20 } + - { offsetInCU: 0x411A, offset: 0x5E675, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA2C0, symBinAddr: 0xBFE0, symSize: 0x10 } + - { offsetInCU: 0x414B, offset: 0x5E6A6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA2D0, symBinAddr: 0xBFF0, symSize: 0x20 } + - { offsetInCU: 0x417C, offset: 0x5E6D7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA2F0, symBinAddr: 0xC010, symSize: 0x10 } + - { offsetInCU: 0x41AD, offset: 0x5E708, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA300, symBinAddr: 0xC020, symSize: 0x20 } + - { offsetInCU: 0x41C9, offset: 0x5E724, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA320, symBinAddr: 0xC040, symSize: 0x10 } + - { offsetInCU: 0x4219, offset: 0x5E774, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA350, symBinAddr: 0xC070, symSize: 0x30 } + - { offsetInCU: 0x42A1, offset: 0x5E7FC, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA380, symBinAddr: 0xC0A0, symSize: 0x60 } + - { offsetInCU: 0x4325, offset: 0x5E880, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA440, symBinAddr: 0xC160, symSize: 0x10 } + - { offsetInCU: 0x4341, offset: 0x5E89C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA450, symBinAddr: 0xC170, symSize: 0x10 } + - { offsetInCU: 0x436C, offset: 0x5E8C7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xA460, symBinAddr: 0xC180, symSize: 0x40 } + - { offsetInCU: 0x43FA, offset: 0x5E955, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xA4D0, symBinAddr: 0xC1C0, symSize: 0x30 } + - { offsetInCU: 0x442B, offset: 0x5E986, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA5B0, symBinAddr: 0xC2A0, symSize: 0x10 } + - { offsetInCU: 0x4462, offset: 0x5E9BD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xA5C0, symBinAddr: 0xC2B0, symSize: 0x30 } + - { offsetInCU: 0x44A2, offset: 0x5E9FD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA5F0, symBinAddr: 0xC2E0, symSize: 0x80 } + - { offsetInCU: 0x4564, offset: 0x5EABF, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xA700, symBinAddr: 0xC3F0, symSize: 0x70 } + - { offsetInCU: 0x45AC, offset: 0x5EB07, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0xAD90, symBinAddr: 0xCA80, symSize: 0xB0 } + - { offsetInCU: 0x4684, offset: 0x5EBDF, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xAE40, symBinAddr: 0xCB30, symSize: 0x190 } + - { offsetInCU: 0x4921, offset: 0x5EE7C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xCCE0, symBinAddr: 0xE9D0, symSize: 0xD0 } + - { offsetInCU: 0x4A83, offset: 0x5EFDE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xCDB0, symBinAddr: 0xEAA0, symSize: 0xD0 } + - { offsetInCU: 0x4D3C, offset: 0x5F297, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA6A0, symBinAddr: 0xC390, symSize: 0x40 } + - { offsetInCU: 0x4D65, offset: 0x5F2C0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA6E0, symBinAddr: 0xC3D0, symSize: 0x20 } + - { offsetInCU: 0x4DA0, offset: 0x5F2FB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xA680, symBinAddr: 0xC370, symSize: 0x10 } + - { offsetInCU: 0x4DBC, offset: 0x5F317, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xA690, symBinAddr: 0xC380, symSize: 0x10 } + - { offsetInCU: 0x4DEA, offset: 0x5F345, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xA670, symBinAddr: 0xC360, symSize: 0x10 } + - { offsetInCU: 0x4EC2, offset: 0x5F41D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x9FC0, symBinAddr: 0xBCE0, symSize: 0x10 } + - { offsetInCU: 0x4EE5, offset: 0x5F440, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA160, symBinAddr: 0xBE80, symSize: 0x10 } + - { offsetInCU: 0x4F01, offset: 0x5F45C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA170, symBinAddr: 0xBE90, symSize: 0x10 } + - { offsetInCU: 0x4F67, offset: 0x5F4C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xC0, symBinAddr: 0x1DF0, symSize: 0x40 } + - { offsetInCU: 0x4F7B, offset: 0x5F4D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x1E30, symSize: 0x10 } + - { offsetInCU: 0x4FA3, offset: 0x5F4FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x110, symBinAddr: 0x1E40, symSize: 0x320 } + - { offsetInCU: 0x50D9, offset: 0x5F634, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x430, symBinAddr: 0x2160, symSize: 0x1390 } + - { offsetInCU: 0x53EF, offset: 0x5F94A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x17C0, symBinAddr: 0x34F0, symSize: 0x660 } + - { offsetInCU: 0x5466, offset: 0x5F9C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1E20, symBinAddr: 0x3B50, symSize: 0x20 } + - { offsetInCU: 0x5490, offset: 0x5F9EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x20A0, symBinAddr: 0x3DD0, symSize: 0x310 } + - { offsetInCU: 0x55C2, offset: 0x5FB1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x23B0, symBinAddr: 0x40E0, symSize: 0x480 } + - { offsetInCU: 0x586B, offset: 0x5FDC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2830, symBinAddr: 0x4560, symSize: 0x910 } + - { offsetInCU: 0x5DFF, offset: 0x6035A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3140, symBinAddr: 0x4E70, symSize: 0x620 } + - { offsetInCU: 0x61E2, offset: 0x6073D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3760, symBinAddr: 0x5490, symSize: 0x4B70 } + - { offsetInCU: 0x7232, offset: 0x6178D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8350, symBinAddr: 0xA070, symSize: 0x190 } + - { offsetInCU: 0x72FB, offset: 0x61856, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x84E0, symBinAddr: 0xA200, symSize: 0x3B0 } + - { offsetInCU: 0x755F, offset: 0x61ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8890, symBinAddr: 0xA5B0, symSize: 0x480 } + - { offsetInCU: 0x78E3, offset: 0x61E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8D10, symBinAddr: 0xAA30, symSize: 0x330 } + - { offsetInCU: 0x7A88, offset: 0x61FE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x9300, symBinAddr: 0xB020, symSize: 0x380 } + - { offsetInCU: 0x7BAB, offset: 0x62106, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x9680, symBinAddr: 0xB3A0, symSize: 0x560 } + - { offsetInCU: 0x7E1E, offset: 0x62379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x9BE0, symBinAddr: 0xB900, symSize: 0x1C0 } + - { offsetInCU: 0x8122, offset: 0x6267D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xA770, symBinAddr: 0xC460, symSize: 0x220 } + - { offsetInCU: 0x81BB, offset: 0x62716, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xAB30, symBinAddr: 0xC820, symSize: 0x260 } + - { offsetInCU: 0x27, offset: 0x62A29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xF800, symSize: 0x20 } + - { offsetInCU: 0x62, offset: 0x62A64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0xF820, symSize: 0x14 } + - { offsetInCU: 0x149, offset: 0x62B4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xF800, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x62BB6, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0xF870, symSize: 0x10 } + - { offsetInCU: 0x57, offset: 0x62BCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0xF8B0, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x62C3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x150, symBinAddr: 0xF990, symSize: 0x10 } + - { offsetInCU: 0x11C, offset: 0x62C8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x170, symBinAddr: 0xF9B0, symSize: 0x20 } + - { offsetInCU: 0x196, offset: 0x62D09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0xF9E0, symSize: 0x10 } + - { offsetInCU: 0x1CB, offset: 0x62D3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B0, symBinAddr: 0xF9F0, symSize: 0x20 } + - { offsetInCU: 0x1FC, offset: 0x62D6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D0, symBinAddr: 0xFA10, symSize: 0x10 } + - { offsetInCU: 0x218, offset: 0x62D8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E0, symBinAddr: 0xFA20, symSize: 0x10 } + - { offsetInCU: 0x234, offset: 0x62DA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x25B0, symBinAddr: 0x11DF0, symSize: 0x370 } + - { offsetInCU: 0x3E4, offset: 0x62F57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1520, symBinAddr: 0x10D60, symSize: 0x50 } + - { offsetInCU: 0x41B, offset: 0x62F8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1570, symBinAddr: 0x10DB0, symSize: 0x50 } + - { offsetInCU: 0x43E, offset: 0x62FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2920, symBinAddr: 0x12160, symSize: 0x14F0 } + - { offsetInCU: 0x49C, offset: 0x6300F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C0, symBinAddr: 0x10E00, symSize: 0x10 } + - { offsetInCU: 0x4F4, offset: 0x63067, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x15D0, symBinAddr: 0x10E10, symSize: 0x30 } + - { offsetInCU: 0x5D8, offset: 0x6314B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1600, symBinAddr: 0x10E40, symSize: 0x20 } + - { offsetInCU: 0x64A, offset: 0x631BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1650, symBinAddr: 0x10E90, symSize: 0x20 } + - { offsetInCU: 0x699, offset: 0x6320C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1670, symBinAddr: 0x10EB0, symSize: 0x70 } + - { offsetInCU: 0x6F3, offset: 0x63266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x10F20, symSize: 0x10 } + - { offsetInCU: 0x70F, offset: 0x63282, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x10F30, symSize: 0x10 } + - { offsetInCU: 0x74C, offset: 0x632BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x10F80, symSize: 0x50 } + - { offsetInCU: 0x783, offset: 0x632F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x10FD0, symSize: 0x50 } + - { offsetInCU: 0x7A6, offset: 0x63319, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3E10, symBinAddr: 0x13650, symSize: 0x3A0 } + - { offsetInCU: 0x841, offset: 0x633B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x11040, symSize: 0x70 } + - { offsetInCU: 0x876, offset: 0x633E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1870, symBinAddr: 0x110B0, symSize: 0x20 } + - { offsetInCU: 0x8A7, offset: 0x6341A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1890, symBinAddr: 0x110D0, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x63436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18A0, symBinAddr: 0x110E0, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6630, symBinAddr: 0x15E20, symSize: 0x170 } + - { offsetInCU: 0x9A8, offset: 0x6351B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x11130, symSize: 0x50 } + - { offsetInCU: 0x9DF, offset: 0x63552, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1940, symBinAddr: 0x11180, symSize: 0x50 } + - { offsetInCU: 0xA02, offset: 0x63575, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x67A0, symBinAddr: 0x15F90, symSize: 0x320 } + - { offsetInCU: 0xA71, offset: 0x635E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x19B0, symBinAddr: 0x111F0, symSize: 0x70 } + - { offsetInCU: 0xAA6, offset: 0x63619, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x11260, symSize: 0x20 } + - { offsetInCU: 0xAD7, offset: 0x6364A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x11280, symSize: 0x10 } + - { offsetInCU: 0xAF3, offset: 0x63666, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x11290, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x63682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6AC0, symBinAddr: 0x162B0, symSize: 0x130 } + - { offsetInCU: 0xBBF, offset: 0x63732, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x112E0, symSize: 0x40 } + - { offsetInCU: 0xBF6, offset: 0x63769, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AE0, symBinAddr: 0x11320, symSize: 0x40 } + - { offsetInCU: 0xC19, offset: 0x6378C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6BF0, symBinAddr: 0x163E0, symSize: 0x310 } + - { offsetInCU: 0xC7C, offset: 0x637EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B40, symBinAddr: 0x11380, symSize: 0x60 } + - { offsetInCU: 0xCB1, offset: 0x63824, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x113E0, symSize: 0x20 } + - { offsetInCU: 0xCE2, offset: 0x63855, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC0, symBinAddr: 0x11400, symSize: 0x10 } + - { offsetInCU: 0xCFE, offset: 0x63871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x11410, symSize: 0x10 } + - { offsetInCU: 0xD1A, offset: 0x6388D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6F00, symBinAddr: 0x166F0, symSize: 0x130 } + - { offsetInCU: 0xDCA, offset: 0x6393D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C20, symBinAddr: 0x11460, symSize: 0x50 } + - { offsetInCU: 0xE01, offset: 0x63974, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C70, symBinAddr: 0x114B0, symSize: 0x50 } + - { offsetInCU: 0xE24, offset: 0x63997, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7030, symBinAddr: 0x16820, symSize: 0x580 } + - { offsetInCU: 0xE93, offset: 0x63A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0x11520, symSize: 0x90 } + - { offsetInCU: 0xEC8, offset: 0x63A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D70, symBinAddr: 0x115B0, symSize: 0x20 } + - { offsetInCU: 0xEF9, offset: 0x63A6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D90, symBinAddr: 0x115D0, symSize: 0x10 } + - { offsetInCU: 0xF15, offset: 0x63A88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DA0, symBinAddr: 0x115E0, symSize: 0x10 } + - { offsetInCU: 0xF31, offset: 0x63AA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7640, symBinAddr: 0x16E30, symSize: 0x220 } + - { offsetInCU: 0x1045, offset: 0x63BB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DF0, symBinAddr: 0x11630, symSize: 0x60 } + - { offsetInCU: 0x107C, offset: 0x63BEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E50, symBinAddr: 0x11690, symSize: 0x70 } + - { offsetInCU: 0x109F, offset: 0x63C12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7860, symBinAddr: 0x17050, symSize: 0x660 } + - { offsetInCU: 0x112C, offset: 0x63C9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1EC0, symBinAddr: 0x11700, symSize: 0x10 } + - { offsetInCU: 0x11A4, offset: 0x63D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1ED0, symBinAddr: 0x11710, symSize: 0x40 } + - { offsetInCU: 0x1288, offset: 0x63DFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1F10, symBinAddr: 0x11750, symSize: 0x20 } + - { offsetInCU: 0x130E, offset: 0x63E81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F70, symBinAddr: 0x117B0, symSize: 0x30 } + - { offsetInCU: 0x1358, offset: 0x63ECB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FA0, symBinAddr: 0x117E0, symSize: 0x20 } + - { offsetInCU: 0x1389, offset: 0x63EFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FC0, symBinAddr: 0x11800, symSize: 0x10 } + - { offsetInCU: 0x13A5, offset: 0x63F18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FD0, symBinAddr: 0x11810, symSize: 0x10 } + - { offsetInCU: 0x13C1, offset: 0x63F34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7EF0, symBinAddr: 0x176E0, symSize: 0xB0 } + - { offsetInCU: 0x143F, offset: 0x63FB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2020, symBinAddr: 0x11860, symSize: 0x30 } + - { offsetInCU: 0x1476, offset: 0x63FE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2050, symBinAddr: 0x11890, symSize: 0x20 } + - { offsetInCU: 0x1499, offset: 0x6400C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x17790, symSize: 0x180 } + - { offsetInCU: 0x1514, offset: 0x64087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x2090, symBinAddr: 0x118D0, symSize: 0x80 } + - { offsetInCU: 0x1549, offset: 0x640BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2110, symBinAddr: 0x11950, symSize: 0x20 } + - { offsetInCU: 0x157A, offset: 0x640ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x2130, symBinAddr: 0x11970, symSize: 0x10 } + - { offsetInCU: 0x1596, offset: 0x64109, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x11980, symSize: 0x10 } + - { offsetInCU: 0x15B2, offset: 0x64125, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x8150, symBinAddr: 0x17940, symSize: 0x1F0 } + - { offsetInCU: 0x16AD, offset: 0x64220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2190, symBinAddr: 0x119D0, symSize: 0x50 } + - { offsetInCU: 0x16E4, offset: 0x64257, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21E0, symBinAddr: 0x11A20, symSize: 0x50 } + - { offsetInCU: 0x1707, offset: 0x6427A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x17B30, symSize: 0x3A0 } + - { offsetInCU: 0x176A, offset: 0x642DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2250, symBinAddr: 0x11A90, symSize: 0x80 } + - { offsetInCU: 0x179F, offset: 0x64312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x22D0, symBinAddr: 0x11B10, symSize: 0x20 } + - { offsetInCU: 0x17D0, offset: 0x64343, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22F0, symBinAddr: 0x11B30, symSize: 0x10 } + - { offsetInCU: 0x17EC, offset: 0x6435F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2300, symBinAddr: 0x11B40, symSize: 0x10 } + - { offsetInCU: 0x1808, offset: 0x6437B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x86E0, symBinAddr: 0x17ED0, symSize: 0x1A0 } + - { offsetInCU: 0x18EA, offset: 0x6445D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2350, symBinAddr: 0x11B90, symSize: 0x50 } + - { offsetInCU: 0x1921, offset: 0x64494, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A0, symBinAddr: 0x11BE0, symSize: 0x50 } + - { offsetInCU: 0x1944, offset: 0x644B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8880, symBinAddr: 0x18070, symSize: 0x3D0 } + - { offsetInCU: 0x19C7, offset: 0x6453A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x11CD0, symSize: 0x20 } + - { offsetInCU: 0x1A11, offset: 0x64584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24B0, symBinAddr: 0x11CF0, symSize: 0x20 } + - { offsetInCU: 0x1A42, offset: 0x645B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24D0, symBinAddr: 0x11D10, symSize: 0x10 } + - { offsetInCU: 0x1A5E, offset: 0x645D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24E0, symBinAddr: 0x11D20, symSize: 0x10 } + - { offsetInCU: 0x1A7A, offset: 0x645ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8CB0, symBinAddr: 0x184A0, symSize: 0xF0 } + - { offsetInCU: 0x1B11, offset: 0x64684, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2530, symBinAddr: 0x11D70, symSize: 0x40 } + - { offsetInCU: 0x1B48, offset: 0x646BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2570, symBinAddr: 0x11DB0, symSize: 0x40 } + - { offsetInCU: 0x1B6B, offset: 0x646DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DA0, symBinAddr: 0x18590, symSize: 0x1C0 } + - { offsetInCU: 0x1BA8, offset: 0x6471B, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x41F0, symBinAddr: 0x139F0, symSize: 0x30 } + - { offsetInCU: 0x1BBC, offset: 0x6472F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x4220, symBinAddr: 0x13A20, symSize: 0x30 } + - { offsetInCU: 0x1BD0, offset: 0x64743, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x4250, symBinAddr: 0x13A50, symSize: 0x30 } + - { offsetInCU: 0x1BE4, offset: 0x64757, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x4280, symBinAddr: 0x13A80, symSize: 0x30 } + - { offsetInCU: 0x1BF8, offset: 0x6476B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x42B0, symBinAddr: 0x13AB0, symSize: 0x30 } + - { offsetInCU: 0x1C0C, offset: 0x6477F, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x42E0, symBinAddr: 0x13AE0, symSize: 0x10 } + - { offsetInCU: 0x1C20, offset: 0x64793, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4300, symBinAddr: 0x13AF0, symSize: 0x50 } + - { offsetInCU: 0x1C34, offset: 0x647A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4350, symBinAddr: 0x13B40, symSize: 0xA0 } + - { offsetInCU: 0x1C48, offset: 0x647BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x43F0, symBinAddr: 0x13BE0, symSize: 0x10 } + - { offsetInCU: 0x1C5C, offset: 0x647CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4400, symBinAddr: 0x13BF0, symSize: 0x10 } + - { offsetInCU: 0x1C70, offset: 0x647E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4410, symBinAddr: 0x13C00, symSize: 0x10 } + - { offsetInCU: 0x1C84, offset: 0x647F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4420, symBinAddr: 0x13C10, symSize: 0x10 } + - { offsetInCU: 0x1C98, offset: 0x6480B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x4430, symBinAddr: 0x13C20, symSize: 0x30 } + - { offsetInCU: 0x1CAC, offset: 0x6481F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x5180, symBinAddr: 0x14970, symSize: 0x10 } + - { offsetInCU: 0x1CC0, offset: 0x64833, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5190, symBinAddr: 0x14980, symSize: 0x10 } + - { offsetInCU: 0x1CD4, offset: 0x64847, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x51A0, symBinAddr: 0x14990, symSize: 0x30 } + - { offsetInCU: 0x1CE8, offset: 0x6485B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x51D0, symBinAddr: 0x149C0, symSize: 0x10 } + - { offsetInCU: 0x1CFC, offset: 0x6486F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x51E0, symBinAddr: 0x149D0, symSize: 0x30 } + - { offsetInCU: 0x1D10, offset: 0x64883, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5210, symBinAddr: 0x14A00, symSize: 0x10 } + - { offsetInCU: 0x1D24, offset: 0x64897, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x5220, symBinAddr: 0x14A10, symSize: 0x30 } + - { offsetInCU: 0x1D38, offset: 0x648AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x5250, symBinAddr: 0x14A40, symSize: 0x30 } + - { offsetInCU: 0x1D4C, offset: 0x648BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x5280, symBinAddr: 0x14A70, symSize: 0x30 } + - { offsetInCU: 0x1D60, offset: 0x648D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x52B0, symBinAddr: 0x14AA0, symSize: 0x30 } + - { offsetInCU: 0x1D74, offset: 0x648E7, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x52E0, symBinAddr: 0x14AD0, symSize: 0x40 } + - { offsetInCU: 0x1D88, offset: 0x648FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x5320, symBinAddr: 0x14B10, symSize: 0x30 } + - { offsetInCU: 0x1D9C, offset: 0x6490F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x5350, symBinAddr: 0x14B40, symSize: 0x30 } + - { offsetInCU: 0x1DB0, offset: 0x64923, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x5380, symBinAddr: 0x14B70, symSize: 0x30 } + - { offsetInCU: 0x1DC4, offset: 0x64937, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x53B0, symBinAddr: 0x14BA0, symSize: 0x30 } + - { offsetInCU: 0x1DD8, offset: 0x6494B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x53E0, symBinAddr: 0x14BD0, symSize: 0x30 } + - { offsetInCU: 0x1DEC, offset: 0x6495F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x5410, symBinAddr: 0x14C00, symSize: 0x30 } + - { offsetInCU: 0x1E00, offset: 0x64973, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x5440, symBinAddr: 0x14C30, symSize: 0x30 } + - { offsetInCU: 0x1E14, offset: 0x64987, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x5470, symBinAddr: 0x14C60, symSize: 0x30 } + - { offsetInCU: 0x1E28, offset: 0x6499B, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x54A0, symBinAddr: 0x14C90, symSize: 0x10 } + - { offsetInCU: 0x1E3C, offset: 0x649AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x54B0, symBinAddr: 0x14CA0, symSize: 0x80 } + - { offsetInCU: 0x1E50, offset: 0x649C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x5530, symBinAddr: 0x14D20, symSize: 0xD0 } + - { offsetInCU: 0x1E64, offset: 0x649D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x5600, symBinAddr: 0x14DF0, symSize: 0x10 } + - { offsetInCU: 0x1E78, offset: 0x649EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x5610, symBinAddr: 0x14E00, symSize: 0x10 } + - { offsetInCU: 0x1E8C, offset: 0x649FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x5620, symBinAddr: 0x14E10, symSize: 0x10 } + - { offsetInCU: 0x1EA0, offset: 0x64A13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x5630, symBinAddr: 0x14E20, symSize: 0x10 } + - { offsetInCU: 0x1EB4, offset: 0x64A27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x5640, symBinAddr: 0x14E30, symSize: 0x30 } + - { offsetInCU: 0x1EC8, offset: 0x64A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x5670, symBinAddr: 0x14E60, symSize: 0x40 } + - { offsetInCU: 0x1EDC, offset: 0x64A4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x56B0, symBinAddr: 0x14EA0, symSize: 0x70 } + - { offsetInCU: 0x1EF0, offset: 0x64A63, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5720, symBinAddr: 0x14F10, symSize: 0x20 } + - { offsetInCU: 0x1F04, offset: 0x64A77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x5740, symBinAddr: 0x14F30, symSize: 0x50 } + - { offsetInCU: 0x1F18, offset: 0x64A8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x5790, symBinAddr: 0x14F80, symSize: 0x40 } + - { offsetInCU: 0x1F2C, offset: 0x64A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x57D0, symBinAddr: 0x14FC0, symSize: 0x40 } + - { offsetInCU: 0x1F40, offset: 0x64AB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x5810, symBinAddr: 0x15000, symSize: 0x10 } + - { offsetInCU: 0x1F54, offset: 0x64AC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x5820, symBinAddr: 0x15010, symSize: 0x40 } + - { offsetInCU: 0x1F68, offset: 0x64ADB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5860, symBinAddr: 0x15050, symSize: 0x80 } + - { offsetInCU: 0x1F7C, offset: 0x64AEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x58E0, symBinAddr: 0x150D0, symSize: 0xB0 } + - { offsetInCU: 0x1F90, offset: 0x64B03, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5990, symBinAddr: 0x15180, symSize: 0x30 } + - { offsetInCU: 0x1FA4, offset: 0x64B17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x59C0, symBinAddr: 0x151B0, symSize: 0x80 } + - { offsetInCU: 0x1FB8, offset: 0x64B2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5A40, symBinAddr: 0x15230, symSize: 0x40 } + - { offsetInCU: 0x1FCC, offset: 0x64B3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5A80, symBinAddr: 0x15270, symSize: 0x50 } + - { offsetInCU: 0x1FE0, offset: 0x64B53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x5AD0, symBinAddr: 0x152C0, symSize: 0x10 } + - { offsetInCU: 0x1FF4, offset: 0x64B67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x5AE0, symBinAddr: 0x152D0, symSize: 0x30 } + - { offsetInCU: 0x2008, offset: 0x64B7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x5B10, symBinAddr: 0x15300, symSize: 0x40 } + - { offsetInCU: 0x201C, offset: 0x64B8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5B50, symBinAddr: 0x15340, symSize: 0x60 } + - { offsetInCU: 0x2030, offset: 0x64BA3, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5BB0, symBinAddr: 0x153A0, symSize: 0x20 } + - { offsetInCU: 0x2044, offset: 0x64BB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5BD0, symBinAddr: 0x153C0, symSize: 0x50 } + - { offsetInCU: 0x2058, offset: 0x64BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5C20, symBinAddr: 0x15410, symSize: 0x40 } + - { offsetInCU: 0x206C, offset: 0x64BDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x5C60, symBinAddr: 0x15450, symSize: 0x50 } + - { offsetInCU: 0x2080, offset: 0x64BF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5CB0, symBinAddr: 0x154A0, symSize: 0x10 } + - { offsetInCU: 0x2094, offset: 0x64C07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x5CC0, symBinAddr: 0x154B0, symSize: 0x50 } + - { offsetInCU: 0x20A8, offset: 0x64C1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x5D10, symBinAddr: 0x15500, symSize: 0xE0 } + - { offsetInCU: 0x20BC, offset: 0x64C2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5DF0, symBinAddr: 0x155E0, symSize: 0x110 } + - { offsetInCU: 0x20D0, offset: 0x64C43, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5F00, symBinAddr: 0x156F0, symSize: 0x50 } + - { offsetInCU: 0x20E4, offset: 0x64C57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5F50, symBinAddr: 0x15740, symSize: 0xD0 } + - { offsetInCU: 0x20F8, offset: 0x64C6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x6020, symBinAddr: 0x15810, symSize: 0x40 } + - { offsetInCU: 0x210C, offset: 0x64C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x6060, symBinAddr: 0x15850, symSize: 0x60 } + - { offsetInCU: 0x2120, offset: 0x64C93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x60C0, symBinAddr: 0x158B0, symSize: 0x10 } + - { offsetInCU: 0x2134, offset: 0x64CA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x60D0, symBinAddr: 0x158C0, symSize: 0x60 } + - { offsetInCU: 0x2148, offset: 0x64CBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x6130, symBinAddr: 0x15920, symSize: 0x110 } + - { offsetInCU: 0x215C, offset: 0x64CCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x6240, symBinAddr: 0x15A30, symSize: 0x160 } + - { offsetInCU: 0x2170, offset: 0x64CE3, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x63A0, symBinAddr: 0x15B90, symSize: 0x10 } + - { offsetInCU: 0x2184, offset: 0x64CF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x63B0, symBinAddr: 0x15BA0, symSize: 0x100 } + - { offsetInCU: 0x2198, offset: 0x64D0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x64B0, symBinAddr: 0x15CA0, symSize: 0x40 } + - { offsetInCU: 0x21AC, offset: 0x64D1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x64F0, symBinAddr: 0x15CE0, symSize: 0x70 } + - { offsetInCU: 0x21C0, offset: 0x64D33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x6560, symBinAddr: 0x15D50, symSize: 0x10 } + - { offsetInCU: 0x21D4, offset: 0x64D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x6570, symBinAddr: 0x15D60, symSize: 0x10 } + - { offsetInCU: 0x21E8, offset: 0x64D5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x6580, symBinAddr: 0x15D70, symSize: 0x30 } + - { offsetInCU: 0x21FC, offset: 0x64D6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x65B0, symBinAddr: 0x15DA0, symSize: 0x10 } + - { offsetInCU: 0x2210, offset: 0x64D83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x65C0, symBinAddr: 0x15DB0, symSize: 0x30 } + - { offsetInCU: 0x2224, offset: 0x64D97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x65F0, symBinAddr: 0x15DE0, symSize: 0x10 } + - { offsetInCU: 0x2238, offset: 0x64DAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x6600, symBinAddr: 0x15DF0, symSize: 0x30 } + - { offsetInCU: 0x224C, offset: 0x64DBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x75B0, symBinAddr: 0x16DA0, symSize: 0x30 } + - { offsetInCU: 0x2260, offset: 0x64DD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x75E0, symBinAddr: 0x16DD0, symSize: 0x30 } + - { offsetInCU: 0x2274, offset: 0x64DE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x7610, symBinAddr: 0x16E00, symSize: 0x30 } + - { offsetInCU: 0x2288, offset: 0x64DFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7EC0, symBinAddr: 0x176B0, symSize: 0x30 } + - { offsetInCU: 0x229C, offset: 0x64E0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8120, symBinAddr: 0x17910, symSize: 0x30 } + - { offsetInCU: 0x22B0, offset: 0x64E23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8C50, symBinAddr: 0x18440, symSize: 0x30 } + - { offsetInCU: 0x22C4, offset: 0x64E37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8C80, symBinAddr: 0x18470, symSize: 0x30 } + - { offsetInCU: 0x22D8, offset: 0x64E4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8F60, symBinAddr: 0x18750, symSize: 0x30 } + - { offsetInCU: 0x22EC, offset: 0x64E5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8F90, symBinAddr: 0x18780, symSize: 0x30 } + - { offsetInCU: 0x2300, offset: 0x64E73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x8FC0, symBinAddr: 0x187B0, symSize: 0x30 } + - { offsetInCU: 0x2314, offset: 0x64E87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x9050, symBinAddr: 0x18840, symSize: 0x30 } + - { offsetInCU: 0x2328, offset: 0x64E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9080, symBinAddr: 0x18870, symSize: 0x80 } + - { offsetInCU: 0x233C, offset: 0x64EAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9100, symBinAddr: 0x188F0, symSize: 0xD0 } + - { offsetInCU: 0x2350, offset: 0x64EC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x91D0, symBinAddr: 0x189C0, symSize: 0x10 } + - { offsetInCU: 0x2364, offset: 0x64ED7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x91E0, symBinAddr: 0x189D0, symSize: 0x10 } + - { offsetInCU: 0x2378, offset: 0x64EEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x91F0, symBinAddr: 0x189E0, symSize: 0x80 } + - { offsetInCU: 0x238C, offset: 0x64EFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9270, symBinAddr: 0x18A60, symSize: 0xD0 } + - { offsetInCU: 0x23A0, offset: 0x64F13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9340, symBinAddr: 0x18B30, symSize: 0x10 } + - { offsetInCU: 0x23B4, offset: 0x64F27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9350, symBinAddr: 0x18B40, symSize: 0x10 } + - { offsetInCU: 0x23C8, offset: 0x64F3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9360, symBinAddr: 0x18B50, symSize: 0x80 } + - { offsetInCU: 0x23DC, offset: 0x64F4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x93E0, symBinAddr: 0x18BD0, symSize: 0xD0 } + - { offsetInCU: 0x23F0, offset: 0x64F63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x94B0, symBinAddr: 0x18CA0, symSize: 0x10 } + - { offsetInCU: 0x2404, offset: 0x64F77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x94C0, symBinAddr: 0x18CB0, symSize: 0x10 } + - { offsetInCU: 0x2418, offset: 0x64F8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x94D0, symBinAddr: 0x18CC0, symSize: 0x10 } + - { offsetInCU: 0x242C, offset: 0x64F9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x94E0, symBinAddr: 0x18CD0, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x64FB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x94F0, symBinAddr: 0x18CE0, symSize: 0x80 } + - { offsetInCU: 0x2454, offset: 0x64FC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9570, symBinAddr: 0x18D60, symSize: 0xD0 } + - { offsetInCU: 0x2468, offset: 0x64FDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9640, symBinAddr: 0x18E30, symSize: 0x10 } + - { offsetInCU: 0x247C, offset: 0x64FEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9650, symBinAddr: 0x18E40, symSize: 0x10 } + - { offsetInCU: 0x2490, offset: 0x65003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9680, symBinAddr: 0x18E70, symSize: 0x10 } + - { offsetInCU: 0x24A4, offset: 0x65017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9690, symBinAddr: 0x18E80, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x6502B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x96A0, symBinAddr: 0x18E90, symSize: 0x40 } + - { offsetInCU: 0x24CC, offset: 0x6503F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x96E0, symBinAddr: 0x18ED0, symSize: 0x80 } + - { offsetInCU: 0x24E0, offset: 0x65053, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x9760, symBinAddr: 0x18F50, symSize: 0xC0 } + - { offsetInCU: 0x24F4, offset: 0x65067, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9820, symBinAddr: 0x19010, symSize: 0x40 } + - { offsetInCU: 0x2508, offset: 0x6507B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x9860, symBinAddr: 0x19050, symSize: 0x90 } + - { offsetInCU: 0x251C, offset: 0x6508F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x98F0, symBinAddr: 0x190E0, symSize: 0x40 } + - { offsetInCU: 0x2530, offset: 0x650A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x9930, symBinAddr: 0x19120, symSize: 0x50 } + - { offsetInCU: 0x2544, offset: 0x650B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x9980, symBinAddr: 0x19170, symSize: 0x10 } + - { offsetInCU: 0x2558, offset: 0x650CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x9990, symBinAddr: 0x19180, symSize: 0x40 } + - { offsetInCU: 0x256C, offset: 0x650DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x99D0, symBinAddr: 0x191C0, symSize: 0x80 } + - { offsetInCU: 0x2580, offset: 0x650F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x9A50, symBinAddr: 0x19240, symSize: 0xA0 } + - { offsetInCU: 0x2594, offset: 0x65107, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9AF0, symBinAddr: 0x192E0, symSize: 0x30 } + - { offsetInCU: 0x25A8, offset: 0x6511B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x9B20, symBinAddr: 0x19310, symSize: 0x80 } + - { offsetInCU: 0x25BC, offset: 0x6512F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x9BA0, symBinAddr: 0x19390, symSize: 0x40 } + - { offsetInCU: 0x25D0, offset: 0x65143, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9BE0, symBinAddr: 0x193D0, symSize: 0x50 } + - { offsetInCU: 0x25E4, offset: 0x65157, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x9C30, symBinAddr: 0x19420, symSize: 0x10 } + - { offsetInCU: 0x25F8, offset: 0x6516B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x9C40, symBinAddr: 0x19430, symSize: 0x40 } + - { offsetInCU: 0x260C, offset: 0x6517F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x9C80, symBinAddr: 0x19470, symSize: 0x80 } + - { offsetInCU: 0x2620, offset: 0x65193, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9D00, symBinAddr: 0x194F0, symSize: 0xB0 } + - { offsetInCU: 0x2634, offset: 0x651A7, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9DB0, symBinAddr: 0x195A0, symSize: 0x30 } + - { offsetInCU: 0x2648, offset: 0x651BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x9DE0, symBinAddr: 0x195D0, symSize: 0x80 } + - { offsetInCU: 0x265C, offset: 0x651CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9E60, symBinAddr: 0x19650, symSize: 0x40 } + - { offsetInCU: 0x2670, offset: 0x651E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x9EA0, symBinAddr: 0x19690, symSize: 0x50 } + - { offsetInCU: 0x2684, offset: 0x651F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9EF0, symBinAddr: 0x196E0, symSize: 0x10 } + - { offsetInCU: 0x2698, offset: 0x6520B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F00, symBinAddr: 0x196F0, symSize: 0x10 } + - { offsetInCU: 0x26AC, offset: 0x6521F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9F10, symBinAddr: 0x19700, symSize: 0x30 } + - { offsetInCU: 0x26C0, offset: 0x65233, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F40, symBinAddr: 0x19730, symSize: 0x10 } + - { offsetInCU: 0x26D4, offset: 0x65247, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9F50, symBinAddr: 0x19740, symSize: 0x30 } + - { offsetInCU: 0x26E8, offset: 0x6525B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F80, symBinAddr: 0x19770, symSize: 0x10 } + - { offsetInCU: 0x26FC, offset: 0x6526F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x19780, symSize: 0x30 } + - { offsetInCU: 0x2710, offset: 0x65283, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9FC0, symBinAddr: 0x197B0, symSize: 0x10 } + - { offsetInCU: 0x2724, offset: 0x65297, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9FD0, symBinAddr: 0x197C0, symSize: 0x30 } + - { offsetInCU: 0x2738, offset: 0x652AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA000, symBinAddr: 0x197F0, symSize: 0x10 } + - { offsetInCU: 0x274C, offset: 0x652BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0xA010, symBinAddr: 0x19800, symSize: 0x30 } + - { offsetInCU: 0x2760, offset: 0x652D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA040, symBinAddr: 0x19830, symSize: 0x10 } + - { offsetInCU: 0x2774, offset: 0x652E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA050, symBinAddr: 0x19840, symSize: 0x30 } + - { offsetInCU: 0x2788, offset: 0x652FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA080, symBinAddr: 0x19870, symSize: 0x10 } + - { offsetInCU: 0x279C, offset: 0x6530F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x19880, symSize: 0x30 } + - { offsetInCU: 0x27B0, offset: 0x65323, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0C0, symBinAddr: 0x198B0, symSize: 0x10 } + - { offsetInCU: 0x27C4, offset: 0x65337, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0D0, symBinAddr: 0x198C0, symSize: 0x30 } + - { offsetInCU: 0x27D8, offset: 0x6534B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA100, symBinAddr: 0x198F0, symSize: 0x10 } + - { offsetInCU: 0x27EC, offset: 0x6535F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA110, symBinAddr: 0x19900, symSize: 0x30 } + - { offsetInCU: 0x2800, offset: 0x65373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA140, symBinAddr: 0x19930, symSize: 0x10 } + - { offsetInCU: 0x2814, offset: 0x65387, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA150, symBinAddr: 0x19940, symSize: 0x30 } + - { offsetInCU: 0x2828, offset: 0x6539B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA180, symBinAddr: 0x19970, symSize: 0x10 } + - { offsetInCU: 0x283C, offset: 0x653AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA190, symBinAddr: 0x19980, symSize: 0x30 } + - { offsetInCU: 0x2850, offset: 0x653C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA1C0, symBinAddr: 0x199B0, symSize: 0x10 } + - { offsetInCU: 0x2864, offset: 0x653D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x199C0, symSize: 0x30 } + - { offsetInCU: 0x2878, offset: 0x653EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA200, symBinAddr: 0x199F0, symSize: 0x10 } + - { offsetInCU: 0x288C, offset: 0x653FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA210, symBinAddr: 0x19A00, symSize: 0x30 } + - { offsetInCU: 0x28A0, offset: 0x65413, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA240, symBinAddr: 0x19A30, symSize: 0x10 } + - { offsetInCU: 0x28B4, offset: 0x65427, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA250, symBinAddr: 0x19A40, symSize: 0x30 } + - { offsetInCU: 0x28C8, offset: 0x6543B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA280, symBinAddr: 0x19A70, symSize: 0x10 } + - { offsetInCU: 0x28DC, offset: 0x6544F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA290, symBinAddr: 0x19A80, symSize: 0x30 } + - { offsetInCU: 0x28F0, offset: 0x65463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0xA2C0, symBinAddr: 0x19AB0, symSize: 0x30 } + - { offsetInCU: 0x2904, offset: 0x65477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0xA2F0, symBinAddr: 0x19AE0, symSize: 0x30 } + - { offsetInCU: 0x2918, offset: 0x6548B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0xA320, symBinAddr: 0x19B10, symSize: 0x30 } + - { offsetInCU: 0x292C, offset: 0x6549F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0xA350, symBinAddr: 0x19B40, symSize: 0x80 } + - { offsetInCU: 0x2940, offset: 0x654B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA3D0, symBinAddr: 0x19BC0, symSize: 0xD0 } + - { offsetInCU: 0x2954, offset: 0x654C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA4A0, symBinAddr: 0x19C90, symSize: 0x10 } + - { offsetInCU: 0x2968, offset: 0x654DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA4B0, symBinAddr: 0x19CA0, symSize: 0x10 } + - { offsetInCU: 0x297C, offset: 0x654EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA630, symBinAddr: 0x19E20, symSize: 0x10 } + - { offsetInCU: 0x2990, offset: 0x65503, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA640, symBinAddr: 0x19E30, symSize: 0x10 } + - { offsetInCU: 0x29A4, offset: 0x65517, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0xA650, symBinAddr: 0x19E40, symSize: 0x80 } + - { offsetInCU: 0x29B8, offset: 0x6552B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA6D0, symBinAddr: 0x19EC0, symSize: 0xD0 } + - { offsetInCU: 0x29CC, offset: 0x6553F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA7A0, symBinAddr: 0x19F90, symSize: 0x10 } + - { offsetInCU: 0x29E0, offset: 0x65553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA7B0, symBinAddr: 0x19FA0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x65567, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA7C0, symBinAddr: 0x19FB0, symSize: 0x10 } + - { offsetInCU: 0x2A08, offset: 0x6557B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA7D0, symBinAddr: 0x19FC0, symSize: 0x30 } + - { offsetInCU: 0x2A1C, offset: 0x6558F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA800, symBinAddr: 0x19FF0, symSize: 0x10 } + - { offsetInCU: 0x2A30, offset: 0x655A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA810, symBinAddr: 0x1A000, symSize: 0x30 } + - { offsetInCU: 0x2A44, offset: 0x655B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA840, symBinAddr: 0x1A030, symSize: 0x10 } + - { offsetInCU: 0x2A58, offset: 0x655CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA850, symBinAddr: 0x1A040, symSize: 0x30 } + - { offsetInCU: 0x2A6C, offset: 0x655DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA880, symBinAddr: 0x1A070, symSize: 0x10 } + - { offsetInCU: 0x2A80, offset: 0x655F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA890, symBinAddr: 0x1A080, symSize: 0x30 } + - { offsetInCU: 0x2A94, offset: 0x65607, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA8C0, symBinAddr: 0x1A0B0, symSize: 0x10 } + - { offsetInCU: 0x2AA8, offset: 0x6561B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA8D0, symBinAddr: 0x1A0C0, symSize: 0x30 } + - { offsetInCU: 0x2ABC, offset: 0x6562F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA900, symBinAddr: 0x1A0F0, symSize: 0x10 } + - { offsetInCU: 0x2AD0, offset: 0x65643, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA910, symBinAddr: 0x1A100, symSize: 0x30 } + - { offsetInCU: 0x2AE4, offset: 0x65657, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA940, symBinAddr: 0x1A130, symSize: 0x10 } + - { offsetInCU: 0x2AF8, offset: 0x6566B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA950, symBinAddr: 0x1A140, symSize: 0x30 } + - { offsetInCU: 0x2B0C, offset: 0x6567F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA980, symBinAddr: 0x1A170, symSize: 0x10 } + - { offsetInCU: 0x2B20, offset: 0x65693, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA990, symBinAddr: 0x1A180, symSize: 0x30 } + - { offsetInCU: 0x2B34, offset: 0x656A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA9C0, symBinAddr: 0x1A1B0, symSize: 0x10 } + - { offsetInCU: 0x2B48, offset: 0x656BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA9D0, symBinAddr: 0x1A1C0, symSize: 0x30 } + - { offsetInCU: 0x2BA2, offset: 0x65715, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F0, symBinAddr: 0xFA30, symSize: 0x20 } + - { offsetInCU: 0x2BBE, offset: 0x65731, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x210, symBinAddr: 0xFA50, symSize: 0x20 } + - { offsetInCU: 0x2C29, offset: 0x6579C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1620, symBinAddr: 0x10E60, symSize: 0x30 } + - { offsetInCU: 0x2CEA, offset: 0x6585D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x10F40, symSize: 0x20 } + - { offsetInCU: 0x2D06, offset: 0x65879, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x10F60, symSize: 0x20 } + - { offsetInCU: 0x2D28, offset: 0x6589B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x110F0, symSize: 0x20 } + - { offsetInCU: 0x2D44, offset: 0x658B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18D0, symBinAddr: 0x11110, symSize: 0x20 } + - { offsetInCU: 0x2D66, offset: 0x658D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x112A0, symSize: 0x20 } + - { offsetInCU: 0x2D82, offset: 0x658F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x112C0, symSize: 0x20 } + - { offsetInCU: 0x2DA4, offset: 0x65917, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BE0, symBinAddr: 0x11420, symSize: 0x20 } + - { offsetInCU: 0x2DC0, offset: 0x65933, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C00, symBinAddr: 0x11440, symSize: 0x20 } + - { offsetInCU: 0x2DE2, offset: 0x65955, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DB0, symBinAddr: 0x115F0, symSize: 0x20 } + - { offsetInCU: 0x2DFE, offset: 0x65971, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DD0, symBinAddr: 0x11610, symSize: 0x20 } + - { offsetInCU: 0x2E51, offset: 0x659C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1F30, symBinAddr: 0x11770, symSize: 0x40 } + - { offsetInCU: 0x2EF4, offset: 0x65A67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FE0, symBinAddr: 0x11820, symSize: 0x20 } + - { offsetInCU: 0x2F10, offset: 0x65A83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2000, symBinAddr: 0x11840, symSize: 0x20 } + - { offsetInCU: 0x2F32, offset: 0x65AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x2150, symBinAddr: 0x11990, symSize: 0x20 } + - { offsetInCU: 0x2F4E, offset: 0x65AC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x2170, symBinAddr: 0x119B0, symSize: 0x20 } + - { offsetInCU: 0x2F70, offset: 0x65AE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2310, symBinAddr: 0x11B50, symSize: 0x20 } + - { offsetInCU: 0x2F8C, offset: 0x65AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2330, symBinAddr: 0x11B70, symSize: 0x20 } + - { offsetInCU: 0x2FAE, offset: 0x65B21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24F0, symBinAddr: 0x11D30, symSize: 0x20 } + - { offsetInCU: 0x2FCA, offset: 0x65B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2510, symBinAddr: 0x11D50, symSize: 0x20 } + - { offsetInCU: 0x30B3, offset: 0x65C26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0xF8C0, symSize: 0xD0 } + - { offsetInCU: 0x3132, offset: 0x65CA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x230, symBinAddr: 0xFA70, symSize: 0x4C0 } + - { offsetInCU: 0x3163, offset: 0x65CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6F0, symBinAddr: 0xFF30, symSize: 0xE0 } + - { offsetInCU: 0x3194, offset: 0x65D07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7D0, symBinAddr: 0x10010, symSize: 0x1A0 } + - { offsetInCU: 0x31C5, offset: 0x65D38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x970, symBinAddr: 0x101B0, symSize: 0x170 } + - { offsetInCU: 0x31F6, offset: 0x65D69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xAE0, symBinAddr: 0x10320, symSize: 0x1D0 } + - { offsetInCU: 0x3227, offset: 0x65D9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xCB0, symBinAddr: 0x104F0, symSize: 0x230 } + - { offsetInCU: 0x3258, offset: 0x65DCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x10720, symSize: 0x110 } + - { offsetInCU: 0x3289, offset: 0x65DFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xFF0, symBinAddr: 0x10830, symSize: 0x1F0 } + - { offsetInCU: 0x32BA, offset: 0x65E2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x11E0, symBinAddr: 0x10A20, symSize: 0x210 } + - { offsetInCU: 0x32EB, offset: 0x65E5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x13F0, symBinAddr: 0x10C30, symSize: 0x130 } + - { offsetInCU: 0x27, offset: 0x6609A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A440, symSize: 0x60 } + - { offsetInCU: 0x3ED, offset: 0x66460, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x470, symBinAddr: 0x1A8B0, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x66474, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x4A0, symBinAddr: 0x1A8E0, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x66488, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x4E0, symBinAddr: 0x1A920, symSize: 0xD0 } + - { offsetInCU: 0x429, offset: 0x6649C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x5B0, symBinAddr: 0x1A9F0, symSize: 0x100 } + - { offsetInCU: 0x43D, offset: 0x664B0, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6B0, symBinAddr: 0x1AAF0, symSize: 0x50 } + - { offsetInCU: 0x451, offset: 0x664C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x700, symBinAddr: 0x1AB40, symSize: 0xD0 } + - { offsetInCU: 0x465, offset: 0x664D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x7D0, symBinAddr: 0x1AC10, symSize: 0x40 } + - { offsetInCU: 0x479, offset: 0x664EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x810, symBinAddr: 0x1AC50, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x66500, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x870, symBinAddr: 0x1ACB0, symSize: 0xA } + - { offsetInCU: 0x614, offset: 0x66687, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A440, symSize: 0x60 } + - { offsetInCU: 0x653, offset: 0x666C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x60, symBinAddr: 0x1A4A0, symSize: 0x40 } + - { offsetInCU: 0x66D, offset: 0x666E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xA0, symBinAddr: 0x1A4E0, symSize: 0x50 } + - { offsetInCU: 0x69D, offset: 0x66710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xF0, symBinAddr: 0x1A530, symSize: 0x10 } + - { offsetInCU: 0x6B1, offset: 0x66724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x1A540, symSize: 0x10 } + - { offsetInCU: 0x6D2, offset: 0x66745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x110, symBinAddr: 0x1A550, symSize: 0x20 } + - { offsetInCU: 0x6E6, offset: 0x66759, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x130, symBinAddr: 0x1A570, symSize: 0x20 } + - { offsetInCU: 0x716, offset: 0x66789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x150, symBinAddr: 0x1A590, symSize: 0x20 } + - { offsetInCU: 0x73A, offset: 0x667AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x170, symBinAddr: 0x1A5B0, symSize: 0x10 } + - { offsetInCU: 0x75B, offset: 0x667CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x180, symBinAddr: 0x1A5C0, symSize: 0x30 } + - { offsetInCU: 0x76F, offset: 0x667E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1B0, symBinAddr: 0x1A5F0, symSize: 0x30 } + - { offsetInCU: 0x7A3, offset: 0x66816, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1E0, symBinAddr: 0x1A620, symSize: 0x20 } + - { offsetInCU: 0x7C7, offset: 0x6683A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x200, symBinAddr: 0x1A640, symSize: 0x10 } + - { offsetInCU: 0x7E8, offset: 0x6685B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x210, symBinAddr: 0x1A650, symSize: 0x10 } + - { offsetInCU: 0x7FC, offset: 0x6686F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x220, symBinAddr: 0x1A660, symSize: 0x10 } + - { offsetInCU: 0x830, offset: 0x668A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x230, symBinAddr: 0x1A670, symSize: 0x20 } + - { offsetInCU: 0x854, offset: 0x668C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x250, symBinAddr: 0x1A690, symSize: 0x10 } + - { offsetInCU: 0x875, offset: 0x668E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x260, symBinAddr: 0x1A6A0, symSize: 0x10 } + - { offsetInCU: 0x889, offset: 0x668FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x270, symBinAddr: 0x1A6B0, symSize: 0x10 } + - { offsetInCU: 0x8BD, offset: 0x66930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x280, symBinAddr: 0x1A6C0, symSize: 0x20 } + - { offsetInCU: 0x8E1, offset: 0x66954, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x1A6E0, symSize: 0x10 } + - { offsetInCU: 0x902, offset: 0x66975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2B0, symBinAddr: 0x1A6F0, symSize: 0x30 } + - { offsetInCU: 0x916, offset: 0x66989, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x2E0, symBinAddr: 0x1A720, symSize: 0x30 } + - { offsetInCU: 0x94A, offset: 0x669BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x310, symBinAddr: 0x1A750, symSize: 0x20 } + - { offsetInCU: 0x96E, offset: 0x669E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1A770, symSize: 0x10 } + - { offsetInCU: 0x98F, offset: 0x66A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x340, symBinAddr: 0x1A780, symSize: 0x30 } + - { offsetInCU: 0x9A3, offset: 0x66A16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x370, symBinAddr: 0x1A7B0, symSize: 0x30 } + - { offsetInCU: 0x9D7, offset: 0x66A4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3A0, symBinAddr: 0x1A7E0, symSize: 0x20 } + - { offsetInCU: 0x9FB, offset: 0x66A6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x3C0, symBinAddr: 0x1A800, symSize: 0x10 } + - { offsetInCU: 0xA1C, offset: 0x66A8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x3D0, symBinAddr: 0x1A810, symSize: 0x10 } + - { offsetInCU: 0xA30, offset: 0x66AA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x3E0, symBinAddr: 0x1A820, symSize: 0x10 } + - { offsetInCU: 0xA64, offset: 0x66AD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x3F0, symBinAddr: 0x1A830, symSize: 0x20 } + - { offsetInCU: 0xA88, offset: 0x66AFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x410, symBinAddr: 0x1A850, symSize: 0x10 } + - { offsetInCU: 0xAA9, offset: 0x66B1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x420, symBinAddr: 0x1A860, symSize: 0x10 } + - { offsetInCU: 0xABD, offset: 0x66B30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x430, symBinAddr: 0x1A870, symSize: 0x10 } + - { offsetInCU: 0xAF1, offset: 0x66B64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x440, symBinAddr: 0x1A880, symSize: 0x20 } + - { offsetInCU: 0xB15, offset: 0x66B88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x460, symBinAddr: 0x1A8A0, symSize: 0x10 } + - { offsetInCU: 0x7F, offset: 0x66C4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x6E0, symBinAddr: 0x1B3A0, symSize: 0x30 } + - { offsetInCU: 0xB0, offset: 0x66C7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x710, symBinAddr: 0x1B3D0, symSize: 0x30 } + - { offsetInCU: 0xCC, offset: 0x66C98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x970, symBinAddr: 0x1B630, symSize: 0x60 } + - { offsetInCU: 0x145, offset: 0x66D11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x910, symBinAddr: 0x1B5D0, symSize: 0x30 } + - { offsetInCU: 0x176, offset: 0x66D42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x940, symBinAddr: 0x1B600, symSize: 0x30 } + - { offsetInCU: 0x192, offset: 0x66D5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x9D0, symBinAddr: 0x1B690, symSize: 0x60 } + - { offsetInCU: 0x1D2, offset: 0x66D9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1B6F0, symSize: 0x120 } + - { offsetInCU: 0x202, offset: 0x66DCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1B810, symSize: 0x80 } + - { offsetInCU: 0x216, offset: 0x66DE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1B890, symSize: 0xD0 } + - { offsetInCU: 0x22A, offset: 0x66DF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1B960, symSize: 0x10 } + - { offsetInCU: 0x23E, offset: 0x66E0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1B970, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x66E1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1B980, symSize: 0x80 } + - { offsetInCU: 0x266, offset: 0x66E32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1BA00, symSize: 0xD0 } + - { offsetInCU: 0x27A, offset: 0x66E46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1BAD0, symSize: 0x10 } + - { offsetInCU: 0x28E, offset: 0x66E5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1BAE0, symSize: 0x10 } + - { offsetInCU: 0x2A2, offset: 0x66E6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1BAF0, symSize: 0x10 } + - { offsetInCU: 0x2B6, offset: 0x66E82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1BB00, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x66E96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1BB10, symSize: 0x10 } + - { offsetInCU: 0x2DE, offset: 0x66EAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1BB20, symSize: 0x30 } + - { offsetInCU: 0x2F2, offset: 0x66EBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1BB50, symSize: 0x10 } + - { offsetInCU: 0x306, offset: 0x66ED2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1BB60, symSize: 0x30 } + - { offsetInCU: 0x410, offset: 0x66FDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1ACC0, symSize: 0x350 } + - { offsetInCU: 0x433, offset: 0x66FFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1B010, symSize: 0x310 } + - { offsetInCU: 0xD3, offset: 0x67129, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1BE80, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x6716D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1BEA0, symSize: 0x90 } + - { offsetInCU: 0x16B, offset: 0x671C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1BF30, symSize: 0x10 } + - { offsetInCU: 0x194, offset: 0x671EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1BF40, symSize: 0x10 } + - { offsetInCU: 0x1BD, offset: 0x67213, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1BF50, symSize: 0x10 } + - { offsetInCU: 0x1E6, offset: 0x6723C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1BFF0, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x67278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1C000, symSize: 0x80 } + - { offsetInCU: 0x28E, offset: 0x672E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1C080, symSize: 0x60 } + - { offsetInCU: 0x2E3, offset: 0x67339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1C0E0, symSize: 0x90 } + - { offsetInCU: 0x335, offset: 0x6738B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1C170, symSize: 0x80 } + - { offsetInCU: 0x392, offset: 0x673E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1C1F0, symSize: 0x60 } + - { offsetInCU: 0x3C4, offset: 0x6741A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6A0, symBinAddr: 0x1C250, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x67436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1C260, symSize: 0x10 } + - { offsetInCU: 0x4D3, offset: 0x67529, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1020, symBinAddr: 0x1CBD0, symSize: 0x3E0 } + - { offsetInCU: 0x7C6, offset: 0x6781C, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x14C0, symBinAddr: 0x1D070, symSize: 0x20 } + - { offsetInCU: 0x7DA, offset: 0x67830, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x14E0, symBinAddr: 0x1D090, symSize: 0x20 } + - { offsetInCU: 0x7EE, offset: 0x67844, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1570, symBinAddr: 0x1D0B0, symSize: 0x40 } + - { offsetInCU: 0x802, offset: 0x67858, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x15B0, symBinAddr: 0x1D0F0, symSize: 0x20 } + - { offsetInCU: 0x816, offset: 0x6786C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x15D0, symBinAddr: 0x1D110, symSize: 0x40 } + - { offsetInCU: 0x82A, offset: 0x67880, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1610, symBinAddr: 0x1D150, symSize: 0x30 } + - { offsetInCU: 0x83E, offset: 0x67894, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x1640, symBinAddr: 0x1D180, symSize: 0x260 } + - { offsetInCU: 0x852, offset: 0x678A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x18A0, symBinAddr: 0x1D3E0, symSize: 0x30 } + - { offsetInCU: 0x866, offset: 0x678BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x18D0, symBinAddr: 0x1D410, symSize: 0x260 } + - { offsetInCU: 0x87A, offset: 0x678D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1B30, symBinAddr: 0x1D670, symSize: 0x25 } + - { offsetInCU: 0xA79, offset: 0x67ACF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1BBB0, symSize: 0x2B0 } + - { offsetInCU: 0xAA2, offset: 0x67AF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1BE60, symSize: 0x20 } + - { offsetInCU: 0xBD2, offset: 0x67C28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x6C0, symBinAddr: 0x1C270, symSize: 0x8F0 } + - { offsetInCU: 0xCD9, offset: 0x67D2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xFB0, symBinAddr: 0x1CB60, symSize: 0x70 } + - { offsetInCU: 0xD57, offset: 0x67DAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x1400, symBinAddr: 0x1CFB0, symSize: 0x60 } + - { offsetInCU: 0xD8C, offset: 0x67DE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0x1460, symBinAddr: 0x1D010, symSize: 0x60 } + - { offsetInCU: 0x4F, offset: 0x67E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2B20, symBinAddr: 0x8AC10, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x67EA8, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2B28, symBinAddr: 0x8AC18, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x67EB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1D6E0, symSize: 0x30 } + - { offsetInCU: 0xB3, offset: 0x67EF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1D710, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x67F28, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1D750, symSize: 0x30 } + - { offsetInCU: 0x159, offset: 0x67F98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0x1D840, symSize: 0x50 } + - { offsetInCU: 0x1E6, offset: 0x68025, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2F0, symBinAddr: 0x1D990, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x68061, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x350, symBinAddr: 0x1D9F0, symSize: 0x20 } + - { offsetInCU: 0x29C, offset: 0x680DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x3C0, symBinAddr: 0x1DA60, symSize: 0x80 } + - { offsetInCU: 0x5C1, offset: 0x68400, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1CC0, symBinAddr: 0x1F360, symSize: 0x170 } + - { offsetInCU: 0x688, offset: 0x684C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x440, symBinAddr: 0x1DAE0, symSize: 0x80 } + - { offsetInCU: 0x6C0, offset: 0x684FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4C0, symBinAddr: 0x1DB60, symSize: 0xB0 } + - { offsetInCU: 0x700, offset: 0x6853F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x5B0, symBinAddr: 0x1DC50, symSize: 0x20 } + - { offsetInCU: 0x714, offset: 0x68553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x620, symBinAddr: 0x1DCC0, symSize: 0x20 } + - { offsetInCU: 0x728, offset: 0x68567, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x680, symBinAddr: 0x1DD20, symSize: 0x80 } + - { offsetInCU: 0x760, offset: 0x6859F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x700, symBinAddr: 0x1DDA0, symSize: 0xB0 } + - { offsetInCU: 0x7A0, offset: 0x685DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x910, symBinAddr: 0x1DFB0, symSize: 0x50 } + - { offsetInCU: 0x9AA, offset: 0x687E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x17C0, symBinAddr: 0x1EE60, symSize: 0x130 } + - { offsetInCU: 0xAA6, offset: 0x688E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x18F0, symBinAddr: 0x1EF90, symSize: 0x10 } + - { offsetInCU: 0xABA, offset: 0x688F9, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A20, symBinAddr: 0x1F0C0, symSize: 0x30 } + - { offsetInCU: 0xAD2, offset: 0x68911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1C70, symBinAddr: 0x1F310, symSize: 0x30 } + - { offsetInCU: 0xAE6, offset: 0x68925, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1CA0, symBinAddr: 0x1F340, symSize: 0x20 } + - { offsetInCU: 0xAFA, offset: 0x68939, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1E30, symBinAddr: 0x1F4D0, symSize: 0x20 } + - { offsetInCU: 0xB0E, offset: 0x6894D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E50, symBinAddr: 0x1F4F0, symSize: 0x10 } + - { offsetInCU: 0xB22, offset: 0x68961, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E60, symBinAddr: 0x1F500, symSize: 0x30 } + - { offsetInCU: 0xB36, offset: 0x68975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E90, symBinAddr: 0x1F530, symSize: 0x10 } + - { offsetInCU: 0xB4A, offset: 0x68989, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1EA0, symBinAddr: 0x1F540, symSize: 0x30 } + - { offsetInCU: 0xB5E, offset: 0x6899D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1FF0, symBinAddr: 0x1F690, symSize: 0x20 } + - { offsetInCU: 0xB72, offset: 0x689B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x2010, symBinAddr: 0x1F6B0, symSize: 0x20 } + - { offsetInCU: 0xB86, offset: 0x689C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x2030, symBinAddr: 0x1F6D0, symSize: 0x20 } + - { offsetInCU: 0xB9A, offset: 0x689D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x20C0, symBinAddr: 0x1F760, symSize: 0x70 } + - { offsetInCU: 0xBAE, offset: 0x689ED, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2130, symBinAddr: 0x1F7D0, symSize: 0x20 } + - { offsetInCU: 0xBC2, offset: 0x68A01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x2150, symBinAddr: 0x1F7F0, symSize: 0x40 } + - { offsetInCU: 0xBD6, offset: 0x68A15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x2190, symBinAddr: 0x1F830, symSize: 0x50 } + - { offsetInCU: 0xBEA, offset: 0x68A29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x21E0, symBinAddr: 0x1F880, symSize: 0x50 } + - { offsetInCU: 0xBFE, offset: 0x68A3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x2230, symBinAddr: 0x1F8D0, symSize: 0x10 } + - { offsetInCU: 0xC12, offset: 0x68A51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2240, symBinAddr: 0x1F8E0, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x68A65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2250, symBinAddr: 0x1F8F0, symSize: 0x10 } + - { offsetInCU: 0xC3A, offset: 0x68A79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x1F900, symSize: 0x10 } + - { offsetInCU: 0xC4E, offset: 0x68A8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2450, symBinAddr: 0x1FAD0, symSize: 0x80 } + - { offsetInCU: 0xC62, offset: 0x68AA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x24D0, symBinAddr: 0x1FB50, symSize: 0xD0 } + - { offsetInCU: 0xC76, offset: 0x68AB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x25A0, symBinAddr: 0x1FC20, symSize: 0x10 } + - { offsetInCU: 0xC8A, offset: 0x68AC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x25B0, symBinAddr: 0x1FC30, symSize: 0x10 } + - { offsetInCU: 0xC9E, offset: 0x68ADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x25C0, symBinAddr: 0x1FC40, symSize: 0x80 } + - { offsetInCU: 0xCB2, offset: 0x68AF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2640, symBinAddr: 0x1FCC0, symSize: 0xD0 } + - { offsetInCU: 0xCC6, offset: 0x68B05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x2710, symBinAddr: 0x1FD90, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x68B19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x2720, symBinAddr: 0x1FDA0, symSize: 0x10 } + - { offsetInCU: 0xCEE, offset: 0x68B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2730, symBinAddr: 0x1FDB0, symSize: 0x10 } + - { offsetInCU: 0xD02, offset: 0x68B41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2740, symBinAddr: 0x1FDC0, symSize: 0x10 } + - { offsetInCU: 0xD21, offset: 0x68B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2780, symBinAddr: 0x1FE00, symSize: 0x20 } + - { offsetInCU: 0xD4A, offset: 0x68B89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x2880, symBinAddr: 0x1FF00, symSize: 0x10 } + - { offsetInCU: 0xD5E, offset: 0x68B9D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2890, symBinAddr: 0x1FF10, symSize: 0x20 } + - { offsetInCU: 0xD72, offset: 0x68BB1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x28B0, symBinAddr: 0x1FF30, symSize: 0x10 } + - { offsetInCU: 0xD86, offset: 0x68BC5, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2940, symBinAddr: 0x1FF40, symSize: 0x30 } + - { offsetInCU: 0xE08, offset: 0x68C47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1D6A0, symSize: 0x10 } + - { offsetInCU: 0xE24, offset: 0x68C63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1D6B0, symSize: 0x10 } + - { offsetInCU: 0xE40, offset: 0x68C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1D6C0, symSize: 0x10 } + - { offsetInCU: 0xE5C, offset: 0x68C9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1D6D0, symSize: 0x10 } + - { offsetInCU: 0x11AB, offset: 0x68FEA, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1D780, symSize: 0x40 } + - { offsetInCU: 0x11D9, offset: 0x69018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1D7C0, symSize: 0x50 } + - { offsetInCU: 0x120D, offset: 0x6904C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1F0, symBinAddr: 0x1D890, symSize: 0x80 } + - { offsetInCU: 0x1234, offset: 0x69073, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x270, symBinAddr: 0x1D910, symSize: 0x10 } + - { offsetInCU: 0x1277, offset: 0x690B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x280, symBinAddr: 0x1D920, symSize: 0x20 } + - { offsetInCU: 0x137E, offset: 0x691BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x570, symBinAddr: 0x1DC10, symSize: 0x40 } + - { offsetInCU: 0x139B, offset: 0x691DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5D0, symBinAddr: 0x1DC70, symSize: 0x50 } + - { offsetInCU: 0x13C2, offset: 0x69201, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x640, symBinAddr: 0x1DCE0, symSize: 0x30 } + - { offsetInCU: 0x13E5, offset: 0x69224, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x670, symBinAddr: 0x1DD10, symSize: 0x10 } + - { offsetInCU: 0x143A, offset: 0x69279, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x7B0, symBinAddr: 0x1DE50, symSize: 0x40 } + - { offsetInCU: 0x1457, offset: 0x69296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7F0, symBinAddr: 0x1DE90, symSize: 0x50 } + - { offsetInCU: 0x147E, offset: 0x692BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x840, symBinAddr: 0x1DEE0, symSize: 0x30 } + - { offsetInCU: 0x14A1, offset: 0x692E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x870, symBinAddr: 0x1DF10, symSize: 0x10 } + - { offsetInCU: 0x14C2, offset: 0x69301, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x880, symBinAddr: 0x1DF20, symSize: 0x30 } + - { offsetInCU: 0x14DF, offset: 0x6931E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x8B0, symBinAddr: 0x1DF50, symSize: 0x30 } + - { offsetInCU: 0x1506, offset: 0x69345, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8E0, symBinAddr: 0x1DF80, symSize: 0x30 } + - { offsetInCU: 0x154E, offset: 0x6938D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x960, symBinAddr: 0x1E000, symSize: 0x30 } + - { offsetInCU: 0x156B, offset: 0x693AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x990, symBinAddr: 0x1E030, symSize: 0x40 } + - { offsetInCU: 0x1592, offset: 0x693D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x9D0, symBinAddr: 0x1E070, symSize: 0x30 } + - { offsetInCU: 0x15BC, offset: 0x693FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0xA00, symBinAddr: 0x1E0A0, symSize: 0xD0 } + - { offsetInCU: 0x1633, offset: 0x69472, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0xAD0, symBinAddr: 0x1E170, symSize: 0xA0 } + - { offsetInCU: 0x16A6, offset: 0x694E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB70, symBinAddr: 0x1E210, symSize: 0xA0 } + - { offsetInCU: 0x1763, offset: 0x695A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xC10, symBinAddr: 0x1E2B0, symSize: 0x1F0 } + - { offsetInCU: 0x17CC, offset: 0x6960B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1900, symBinAddr: 0x1EFA0, symSize: 0x120 } + - { offsetInCU: 0x1890, offset: 0x696CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xE00, symBinAddr: 0x1E4A0, symSize: 0x60 } + - { offsetInCU: 0x18BA, offset: 0x696F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xE60, symBinAddr: 0x1E500, symSize: 0x30 } + - { offsetInCU: 0x18DC, offset: 0x6971B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1E530, symSize: 0x160 } + - { offsetInCU: 0x1981, offset: 0x697C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xFF0, symBinAddr: 0x1E690, symSize: 0x10 } + - { offsetInCU: 0x19CE, offset: 0x6980D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0x1070, symBinAddr: 0x1E710, symSize: 0x30 } + - { offsetInCU: 0x1A52, offset: 0x69891, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0x1000, symBinAddr: 0x1E6A0, symSize: 0x70 } + - { offsetInCU: 0x1AE4, offset: 0x69923, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0x10A0, symBinAddr: 0x1E740, symSize: 0x80 } + - { offsetInCU: 0x1BB2, offset: 0x699F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0x1120, symBinAddr: 0x1E7C0, symSize: 0x230 } + - { offsetInCU: 0x1D80, offset: 0x69BBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x1350, symBinAddr: 0x1E9F0, symSize: 0x10 } + - { offsetInCU: 0x1DD7, offset: 0x69C16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x1360, symBinAddr: 0x1EA00, symSize: 0x10 } + - { offsetInCU: 0x1E25, offset: 0x69C64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1370, symBinAddr: 0x1EA10, symSize: 0x10 } + - { offsetInCU: 0x1E3D, offset: 0x69C7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1380, symBinAddr: 0x1EA20, symSize: 0xB0 } + - { offsetInCU: 0x1EE3, offset: 0x69D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1470, symBinAddr: 0x1EB10, symSize: 0x10 } + - { offsetInCU: 0x1EFB, offset: 0x69D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x27F0, symBinAddr: 0x1FE70, symSize: 0x70 } + - { offsetInCU: 0x1FD2, offset: 0x69E11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x1430, symBinAddr: 0x1EAD0, symSize: 0x40 } + - { offsetInCU: 0x200D, offset: 0x69E4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14A0, symBinAddr: 0x1EB40, symSize: 0x90 } + - { offsetInCU: 0x20EA, offset: 0x69F29, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x15F0, symBinAddr: 0x1EC90, symSize: 0x1D0 } + - { offsetInCU: 0x27E1, offset: 0x6A620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x1A50, symBinAddr: 0x1F0F0, symSize: 0x20 } + - { offsetInCU: 0x2824, offset: 0x6A663, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1A70, symBinAddr: 0x1F110, symSize: 0x200 } + - { offsetInCU: 0x43, offset: 0x6A816, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x20100, symSize: 0x30 } + - { offsetInCU: 0x57, offset: 0x6A82A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x20130, symSize: 0x80 } + - { offsetInCU: 0x6B, offset: 0x6A83E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x201B0, symSize: 0x130 } + - { offsetInCU: 0x86, offset: 0x6A859, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x202E0, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x6A882, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x20310, symSize: 0x30 } + - { offsetInCU: 0xC3, offset: 0x6A896, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x20340, symSize: 0xC0 } + - { offsetInCU: 0xD7, offset: 0x6A8AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x20400, symSize: 0x50 } + - { offsetInCU: 0xEB, offset: 0x6A8BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x20450, symSize: 0x50 } + - { offsetInCU: 0xFF, offset: 0x6A8D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x204A0, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x6A8E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x204B0, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x6A8FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x204E0, symSize: 0x30 } + - { offsetInCU: 0x13B, offset: 0x6A90E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x20510, symSize: 0x60 } + - { offsetInCU: 0x14F, offset: 0x6A922, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x20570, symSize: 0x80 } + - { offsetInCU: 0x163, offset: 0x6A936, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x205F0, symSize: 0x60 } + - { offsetInCU: 0x177, offset: 0x6A94A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x20650, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x6A95E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x206A0, symSize: 0x50 } + - { offsetInCU: 0x19F, offset: 0x6A972, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x206F0, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x6A9BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x20B20, symSize: 0x10 } + - { offsetInCU: 0x243, offset: 0x6AA16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA30, symBinAddr: 0x20B30, symSize: 0x30 } + - { offsetInCU: 0x327, offset: 0x6AAFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x20B60, symSize: 0x20 } + - { offsetInCU: 0x399, offset: 0x6AB6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAB0, symBinAddr: 0x20BB0, symSize: 0x20 } + - { offsetInCU: 0x3E8, offset: 0x6ABBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD0, symBinAddr: 0x20BD0, symSize: 0x70 } + - { offsetInCU: 0x442, offset: 0x6AC15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB40, symBinAddr: 0x20C40, symSize: 0x10 } + - { offsetInCU: 0x45E, offset: 0x6AC31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB50, symBinAddr: 0x20C50, symSize: 0x10 } + - { offsetInCU: 0x49B, offset: 0x6AC6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBA0, symBinAddr: 0x20CA0, symSize: 0x40 } + - { offsetInCU: 0x4D2, offset: 0x6ACA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE0, symBinAddr: 0x20CE0, symSize: 0x40 } + - { offsetInCU: 0x4F5, offset: 0x6ACC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFE0, symBinAddr: 0x210E0, symSize: 0x140 } + - { offsetInCU: 0x582, offset: 0x6AD55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC20, symBinAddr: 0x20D20, symSize: 0x10 } + - { offsetInCU: 0x5D5, offset: 0x6ADA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x20D40, symSize: 0x20 } + - { offsetInCU: 0x64F, offset: 0x6AE22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC70, symBinAddr: 0x20D70, symSize: 0x60 } + - { offsetInCU: 0x684, offset: 0x6AE57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x20DD0, symSize: 0x20 } + - { offsetInCU: 0x6B5, offset: 0x6AE88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF0, symBinAddr: 0x20DF0, symSize: 0x10 } + - { offsetInCU: 0x6D1, offset: 0x6AEA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x20E00, symSize: 0x10 } + - { offsetInCU: 0x6ED, offset: 0x6AEC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1250, symBinAddr: 0x212B0, symSize: 0x120 } + - { offsetInCU: 0x79D, offset: 0x6AF70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD50, symBinAddr: 0x20E50, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x6AFA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD90, symBinAddr: 0x20E90, symSize: 0x40 } + - { offsetInCU: 0x7F7, offset: 0x6AFCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1370, symBinAddr: 0x213D0, symSize: 0x250 } + - { offsetInCU: 0x866, offset: 0x6B039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x20F70, symSize: 0x70 } + - { offsetInCU: 0x89B, offset: 0x6B06E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE0, symBinAddr: 0x20FE0, symSize: 0x20 } + - { offsetInCU: 0x8CC, offset: 0x6B09F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF00, symBinAddr: 0x21000, symSize: 0x10 } + - { offsetInCU: 0x8E8, offset: 0x6B0BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF10, symBinAddr: 0x21010, symSize: 0x10 } + - { offsetInCU: 0x904, offset: 0x6B0D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D30, symBinAddr: 0x21CF0, symSize: 0x130 } + - { offsetInCU: 0x9B4, offset: 0x6B187, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF60, symBinAddr: 0x21060, symSize: 0x40 } + - { offsetInCU: 0x9EB, offset: 0x6B1BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFA0, symBinAddr: 0x210A0, symSize: 0x40 } + - { offsetInCU: 0xA0E, offset: 0x6B1E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E60, symBinAddr: 0x21E20, symSize: 0x2F0 } + - { offsetInCU: 0xA6B, offset: 0x6B23E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1190, symBinAddr: 0x21220, symSize: 0x30 } + - { offsetInCU: 0xA7F, offset: 0x6B252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x11F0, symBinAddr: 0x21250, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x6B266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x21280, symSize: 0x30 } + - { offsetInCU: 0xAA7, offset: 0x6B27A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x15C0, symBinAddr: 0x21620, symSize: 0x30 } + - { offsetInCU: 0xABB, offset: 0x6B28E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x1630, symBinAddr: 0x21650, symSize: 0x30 } + - { offsetInCU: 0xACF, offset: 0x6B2A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x16F0, symBinAddr: 0x21710, symSize: 0x30 } + - { offsetInCU: 0xAE3, offset: 0x6B2B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1760, symBinAddr: 0x21760, symSize: 0x10 } + - { offsetInCU: 0xAF7, offset: 0x6B2CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1770, symBinAddr: 0x21770, symSize: 0x10 } + - { offsetInCU: 0xB0B, offset: 0x6B2DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1780, symBinAddr: 0x21780, symSize: 0x10 } + - { offsetInCU: 0xB1F, offset: 0x6B2F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x1790, symBinAddr: 0x21790, symSize: 0x10 } + - { offsetInCU: 0xB33, offset: 0x6B306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x217A0, symSize: 0x50 } + - { offsetInCU: 0xB47, offset: 0x6B31A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x217F0, symSize: 0xA0 } + - { offsetInCU: 0xB5B, offset: 0x6B32E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x18A0, symBinAddr: 0x21890, symSize: 0x10 } + - { offsetInCU: 0xB6F, offset: 0x6B342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x18B0, symBinAddr: 0x218A0, symSize: 0x10 } + - { offsetInCU: 0xB83, offset: 0x6B356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x18C0, symBinAddr: 0x218B0, symSize: 0x10 } + - { offsetInCU: 0xB97, offset: 0x6B36A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x18D0, symBinAddr: 0x218C0, symSize: 0x10 } + - { offsetInCU: 0xBAB, offset: 0x6B37E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18E0, symBinAddr: 0x218D0, symSize: 0x40 } + - { offsetInCU: 0xBBF, offset: 0x6B392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1920, symBinAddr: 0x21910, symSize: 0x80 } + - { offsetInCU: 0xBD3, offset: 0x6B3A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x19A0, symBinAddr: 0x21990, symSize: 0xA0 } + - { offsetInCU: 0xBE7, offset: 0x6B3BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A70, symBinAddr: 0x21A30, symSize: 0x80 } + - { offsetInCU: 0xBFB, offset: 0x6B3CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1AF0, symBinAddr: 0x21AB0, symSize: 0x50 } + - { offsetInCU: 0xC0F, offset: 0x6B3E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B40, symBinAddr: 0x21B00, symSize: 0x60 } + - { offsetInCU: 0xC23, offset: 0x6B3F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1BA0, symBinAddr: 0x21B60, symSize: 0x10 } + - { offsetInCU: 0xC37, offset: 0x6B40A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BB0, symBinAddr: 0x21B70, symSize: 0x10 } + - { offsetInCU: 0xC4B, offset: 0x6B41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BC0, symBinAddr: 0x21B80, symSize: 0x30 } + - { offsetInCU: 0xC5F, offset: 0x6B432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BF0, symBinAddr: 0x21BB0, symSize: 0x10 } + - { offsetInCU: 0xC73, offset: 0x6B446, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1C00, symBinAddr: 0x21BC0, symSize: 0x30 } + - { offsetInCU: 0xC87, offset: 0x6B45A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C30, symBinAddr: 0x21BF0, symSize: 0x10 } + - { offsetInCU: 0xC9B, offset: 0x6B46E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C40, symBinAddr: 0x21C00, symSize: 0x30 } + - { offsetInCU: 0xCAF, offset: 0x6B482, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C70, symBinAddr: 0x21C30, symSize: 0x10 } + - { offsetInCU: 0xCC3, offset: 0x6B496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C80, symBinAddr: 0x21C40, symSize: 0x30 } + - { offsetInCU: 0xCD7, offset: 0x6B4AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CB0, symBinAddr: 0x21C70, symSize: 0x10 } + - { offsetInCU: 0xCEB, offset: 0x6B4BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CC0, symBinAddr: 0x21C80, symSize: 0x30 } + - { offsetInCU: 0xCFF, offset: 0x6B4D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF0, symBinAddr: 0x21CB0, symSize: 0x10 } + - { offsetInCU: 0xD13, offset: 0x6B4E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x21CC0, symSize: 0x30 } + - { offsetInCU: 0xD27, offset: 0x6B4FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x2150, symBinAddr: 0x22110, symSize: 0x30 } + - { offsetInCU: 0xD3B, offset: 0x6B50E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x22F0, symBinAddr: 0x222B0, symSize: 0x10 } + - { offsetInCU: 0xD4F, offset: 0x6B522, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2300, symBinAddr: 0x222C0, symSize: 0x10 } + - { offsetInCU: 0xD63, offset: 0x6B536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2310, symBinAddr: 0x222D0, symSize: 0x10 } + - { offsetInCU: 0xD77, offset: 0x6B54A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x2320, symBinAddr: 0x222E0, symSize: 0x30 } + - { offsetInCU: 0xD8B, offset: 0x6B55E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2350, symBinAddr: 0x22310, symSize: 0x10 } + - { offsetInCU: 0xD9F, offset: 0x6B572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2360, symBinAddr: 0x22320, symSize: 0x30 } + - { offsetInCU: 0xDB3, offset: 0x6B586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2390, symBinAddr: 0x22350, symSize: 0x10 } + - { offsetInCU: 0xDC7, offset: 0x6B59A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23A0, symBinAddr: 0x22360, symSize: 0x30 } + - { offsetInCU: 0xE26, offset: 0x6B5F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA80, symBinAddr: 0x20B80, symSize: 0x30 } + - { offsetInCU: 0xEE7, offset: 0x6B6BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x20C60, symSize: 0x20 } + - { offsetInCU: 0xF03, offset: 0x6B6D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB80, symBinAddr: 0x20C80, symSize: 0x20 } + - { offsetInCU: 0xF25, offset: 0x6B6F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD10, symBinAddr: 0x20E10, symSize: 0x20 } + - { offsetInCU: 0xF41, offset: 0x6B714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD30, symBinAddr: 0x20E30, symSize: 0x20 } + - { offsetInCU: 0xF63, offset: 0x6B736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF20, symBinAddr: 0x21020, symSize: 0x20 } + - { offsetInCU: 0xF7F, offset: 0x6B752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF40, symBinAddr: 0x21040, symSize: 0x20 } + - { offsetInCU: 0x106E, offset: 0x6B841, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x20700, symSize: 0x100 } + - { offsetInCU: 0x109F, offset: 0x6B872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x700, symBinAddr: 0x20800, symSize: 0x1B0 } + - { offsetInCU: 0x10D0, offset: 0x6B8A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B0, symBinAddr: 0x209B0, symSize: 0x170 } + - { offsetInCU: 0xA6, offset: 0x6BA5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3B0, symBinAddr: 0x22770, symSize: 0x10 } + - { offsetInCU: 0xE2, offset: 0x6BA9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3C0, symBinAddr: 0x22780, symSize: 0x40 } + - { offsetInCU: 0x1C6, offset: 0x6BB7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x400, symBinAddr: 0x227C0, symSize: 0x20 } + - { offsetInCU: 0x4B2, offset: 0x6BE6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x460, symBinAddr: 0x22820, symSize: 0x10 } + - { offsetInCU: 0x4C6, offset: 0x6BE7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x470, symBinAddr: 0x22830, symSize: 0x30 } + - { offsetInCU: 0x4DA, offset: 0x6BE92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x4A0, symBinAddr: 0x22860, symSize: 0x30 } + - { offsetInCU: 0x4EE, offset: 0x6BEA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x4D0, symBinAddr: 0x22890, symSize: 0x80 } + - { offsetInCU: 0x502, offset: 0x6BEBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x550, symBinAddr: 0x22910, symSize: 0x250 } + - { offsetInCU: 0x516, offset: 0x6BECE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0x7A0, symBinAddr: 0x22B60, symSize: 0x4F0 } + - { offsetInCU: 0x531, offset: 0x6BEE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xC90, symBinAddr: 0x23050, symSize: 0x30 } + - { offsetInCU: 0x55A, offset: 0x6BF12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xCC0, symBinAddr: 0x23080, symSize: 0x20 } + - { offsetInCU: 0x56E, offset: 0x6BF26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xCE0, symBinAddr: 0x230A0, symSize: 0x30 } + - { offsetInCU: 0x582, offset: 0x6BF3A, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xD10, symBinAddr: 0x230D0, symSize: 0x10 } + - { offsetInCU: 0x596, offset: 0x6BF4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xD20, symBinAddr: 0x230E0, symSize: 0x340 } + - { offsetInCU: 0x5AA, offset: 0x6BF62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x1060, symBinAddr: 0x23420, symSize: 0x40 } + - { offsetInCU: 0x5BE, offset: 0x6BF76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x10A0, symBinAddr: 0x23460, symSize: 0x90 } + - { offsetInCU: 0x5D2, offset: 0x6BF8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x1130, symBinAddr: 0x234F0, symSize: 0x10 } + - { offsetInCU: 0x5E6, offset: 0x6BF9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1150, symBinAddr: 0x23510, symSize: 0x10 } + - { offsetInCU: 0x5FA, offset: 0x6BFB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x11A0, symBinAddr: 0x23560, symSize: 0x50 } + - { offsetInCU: 0x60E, offset: 0x6BFC6, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11F0, symBinAddr: 0x235B0, symSize: 0x20 } + - { offsetInCU: 0x622, offset: 0x6BFDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x1210, symBinAddr: 0x235D0, symSize: 0x40 } + - { offsetInCU: 0x636, offset: 0x6BFEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1250, symBinAddr: 0x23610, symSize: 0x40 } + - { offsetInCU: 0x64A, offset: 0x6C002, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1290, symBinAddr: 0x23650, symSize: 0x50 } + - { offsetInCU: 0x65E, offset: 0x6C016, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x12E0, symBinAddr: 0x236A0, symSize: 0x10 } + - { offsetInCU: 0x672, offset: 0x6C02A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x12F0, symBinAddr: 0x236B0, symSize: 0x30 } + - { offsetInCU: 0x686, offset: 0x6C03E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x1320, symBinAddr: 0x236E0, symSize: 0x80 } + - { offsetInCU: 0x69A, offset: 0x6C052, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x13A0, symBinAddr: 0x23760, symSize: 0xE0 } + - { offsetInCU: 0x6AE, offset: 0x6C066, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1480, symBinAddr: 0x23840, symSize: 0x30 } + - { offsetInCU: 0x6C2, offset: 0x6C07A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x14B0, symBinAddr: 0x23870, symSize: 0x90 } + - { offsetInCU: 0x6D6, offset: 0x6C08E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1540, symBinAddr: 0x23900, symSize: 0x50 } + - { offsetInCU: 0x6EA, offset: 0x6C0A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1590, symBinAddr: 0x23950, symSize: 0x60 } + - { offsetInCU: 0x6FE, offset: 0x6C0B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x239B0, symSize: 0x10 } + - { offsetInCU: 0x712, offset: 0x6C0CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1600, symBinAddr: 0x239C0, symSize: 0x30 } + - { offsetInCU: 0x726, offset: 0x6C0DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x1630, symBinAddr: 0x239F0, symSize: 0x40 } + - { offsetInCU: 0x73A, offset: 0x6C0F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x23A30, symSize: 0x60 } + - { offsetInCU: 0x74E, offset: 0x6C106, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x16F0, symBinAddr: 0x23A90, symSize: 0x50 } + - { offsetInCU: 0x762, offset: 0x6C11A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1740, symBinAddr: 0x23AE0, symSize: 0x40 } + - { offsetInCU: 0x776, offset: 0x6C12E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x1780, symBinAddr: 0x23B20, symSize: 0x50 } + - { offsetInCU: 0x78A, offset: 0x6C142, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x17D0, symBinAddr: 0x23B70, symSize: 0x10 } + - { offsetInCU: 0x79E, offset: 0x6C156, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x17F0, symBinAddr: 0x23B80, symSize: 0x40 } + - { offsetInCU: 0x7B2, offset: 0x6C16A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1830, symBinAddr: 0x23BC0, symSize: 0x50 } + - { offsetInCU: 0x7C6, offset: 0x6C17E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1880, symBinAddr: 0x23C10, symSize: 0x10 } + - { offsetInCU: 0x7DA, offset: 0x6C192, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x18A0, symBinAddr: 0x23C20, symSize: 0x80 } + - { offsetInCU: 0x7EE, offset: 0x6C1A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1920, symBinAddr: 0x23CA0, symSize: 0xD0 } + - { offsetInCU: 0x802, offset: 0x6C1BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x19F0, symBinAddr: 0x23D70, symSize: 0x10 } + - { offsetInCU: 0x816, offset: 0x6C1CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1A00, symBinAddr: 0x23D80, symSize: 0x10 } + - { offsetInCU: 0x82A, offset: 0x6C1E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1A10, symBinAddr: 0x23D90, symSize: 0x10 } + - { offsetInCU: 0x83E, offset: 0x6C1F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1A20, symBinAddr: 0x23DA0, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x6C26D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x420, symBinAddr: 0x227E0, symSize: 0x40 } + - { offsetInCU: 0xA59, offset: 0x6C411, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x223F0, symSize: 0x10 } + - { offsetInCU: 0xA8E, offset: 0x6C446, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x22400, symSize: 0xD0 } + - { offsetInCU: 0xAEB, offset: 0x6C4A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xE0, symBinAddr: 0x224D0, symSize: 0x30 } + - { offsetInCU: 0xB05, offset: 0x6C4BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x110, symBinAddr: 0x22500, symSize: 0x30 } + - { offsetInCU: 0xB39, offset: 0x6C4F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x140, symBinAddr: 0x22530, symSize: 0x10 } + - { offsetInCU: 0xB4D, offset: 0x6C505, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x150, symBinAddr: 0x22540, symSize: 0x10 } + - { offsetInCU: 0xB6E, offset: 0x6C526, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x160, symBinAddr: 0x22550, symSize: 0x10 } + - { offsetInCU: 0xB82, offset: 0x6C53A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x170, symBinAddr: 0x22560, symSize: 0x10 } + - { offsetInCU: 0xBB6, offset: 0x6C56E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x180, symBinAddr: 0x22570, symSize: 0x20 } + - { offsetInCU: 0xBDA, offset: 0x6C592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x1A0, symBinAddr: 0x22590, symSize: 0x10 } + - { offsetInCU: 0xBFB, offset: 0x6C5B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x1B0, symBinAddr: 0x225A0, symSize: 0x30 } + - { offsetInCU: 0xC0F, offset: 0x6C5C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x210, symBinAddr: 0x225D0, symSize: 0x20 } + - { offsetInCU: 0xC23, offset: 0x6C5DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x230, symBinAddr: 0x225F0, symSize: 0x30 } + - { offsetInCU: 0xC37, offset: 0x6C5EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x260, symBinAddr: 0x22620, symSize: 0x30 } + - { offsetInCU: 0xC4B, offset: 0x6C603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x290, symBinAddr: 0x22650, symSize: 0x10 } + - { offsetInCU: 0xC5F, offset: 0x6C617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x2A0, symBinAddr: 0x22660, symSize: 0x10 } + - { offsetInCU: 0xC91, offset: 0x6C649, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x2B0, symBinAddr: 0x22670, symSize: 0x10 } + - { offsetInCU: 0xCA5, offset: 0x6C65D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x2C0, symBinAddr: 0x22680, symSize: 0x10 } + - { offsetInCU: 0xCC6, offset: 0x6C67E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x2D0, symBinAddr: 0x22690, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x6C692, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x2E0, symBinAddr: 0x226A0, symSize: 0x10 } + - { offsetInCU: 0xD0C, offset: 0x6C6C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x2F0, symBinAddr: 0x226B0, symSize: 0x20 } + - { offsetInCU: 0xD30, offset: 0x6C6E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x310, symBinAddr: 0x226D0, symSize: 0x10 } + - { offsetInCU: 0xD51, offset: 0x6C709, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x320, symBinAddr: 0x226E0, symSize: 0x20 } + - { offsetInCU: 0xD75, offset: 0x6C72D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x340, symBinAddr: 0x22700, symSize: 0x10 } + - { offsetInCU: 0xDA4, offset: 0x6C75C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x350, symBinAddr: 0x22710, symSize: 0x20 } + - { offsetInCU: 0xE2F, offset: 0x6C7E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x370, symBinAddr: 0x22730, symSize: 0x40 } + - { offsetInCU: 0x544, offset: 0x6CE53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2670, symBinAddr: 0x26460, symSize: 0x780 } + - { offsetInCU: 0xA9F, offset: 0x6D3AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x85A0, symBinAddr: 0x2C390, symSize: 0x30 } + - { offsetInCU: 0x1B5D, offset: 0x6E46C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x17800, symBinAddr: 0x3B5F0, symSize: 0x80 } + - { offsetInCU: 0x1BDF, offset: 0x6E4EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x189F0, symBinAddr: 0x3C7E0, symSize: 0x40 } + - { offsetInCU: 0x1BFB, offset: 0x6E50A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x18A30, symBinAddr: 0x3C820, symSize: 0x160 } + - { offsetInCU: 0x1D04, offset: 0x6E613, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x18B90, symBinAddr: 0x3C980, symSize: 0x50 } + - { offsetInCU: 0x1D82, offset: 0x6E691, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x18C30, symBinAddr: 0x3C9D0, symSize: 0x40 } + - { offsetInCU: 0x1E10, offset: 0x6E71F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x18C70, symBinAddr: 0x3CA10, symSize: 0x40 } + - { offsetInCU: 0x1E7E, offset: 0x6E78D, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x18CB0, symBinAddr: 0x3CA50, symSize: 0x60 } + - { offsetInCU: 0x254A, offset: 0x6EE59, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x19C00, symBinAddr: 0x3D9A0, symSize: 0x90 } + - { offsetInCU: 0x25AE, offset: 0x6EEBD, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x19C90, symBinAddr: 0x3DA30, symSize: 0x80 } + - { offsetInCU: 0x267B, offset: 0x6EF8A, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x19E30, symBinAddr: 0x3DBD0, symSize: 0x40 } + - { offsetInCU: 0x289C, offset: 0x6F1AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1B030, symBinAddr: 0x3ED60, symSize: 0x1B0 } + - { offsetInCU: 0x29A1, offset: 0x6F2B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1B1E0, symBinAddr: 0x3EF10, symSize: 0x3E0 } + - { offsetInCU: 0x311A, offset: 0x6FA29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1C640, symBinAddr: 0x40370, symSize: 0xD90 } + - { offsetInCU: 0x4224, offset: 0x70B33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D3D0, symBinAddr: 0x41100, symSize: 0x1E0 } + - { offsetInCU: 0x4395, offset: 0x70CA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D5B0, symBinAddr: 0x412E0, symSize: 0x1B0 } + - { offsetInCU: 0x478D, offset: 0x7109C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1E200, symBinAddr: 0x41F30, symSize: 0x10 } + - { offsetInCU: 0x47A1, offset: 0x710B0, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1E2C0, symBinAddr: 0x41FF0, symSize: 0x20 } + - { offsetInCU: 0x47B5, offset: 0x710C4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1E2E0, symBinAddr: 0x42010, symSize: 0x20 } + - { offsetInCU: 0x47C9, offset: 0x710D8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1E300, symBinAddr: 0x42030, symSize: 0x40 } + - { offsetInCU: 0x47DD, offset: 0x710EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1E360, symBinAddr: 0x42070, symSize: 0x30 } + - { offsetInCU: 0x47F1, offset: 0x71100, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1E390, symBinAddr: 0x420A0, symSize: 0x180 } + - { offsetInCU: 0x4805, offset: 0x71114, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1E510, symBinAddr: 0x42220, symSize: 0x2D0 } + - { offsetInCU: 0x4819, offset: 0x71128, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1E7E0, symBinAddr: 0x424F0, symSize: 0x70 } + - { offsetInCU: 0x482D, offset: 0x7113C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1E850, symBinAddr: 0x42560, symSize: 0x30 } + - { offsetInCU: 0x4841, offset: 0x71150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1E880, symBinAddr: 0x42590, symSize: 0xD0 } + - { offsetInCU: 0x4855, offset: 0x71164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1E950, symBinAddr: 0x42660, symSize: 0xB0 } + - { offsetInCU: 0x48A8, offset: 0x711B7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1F070, symBinAddr: 0x42710, symSize: 0xC0 } + - { offsetInCU: 0x491E, offset: 0x7122D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F130, symBinAddr: 0x427D0, symSize: 0x80 } + - { offsetInCU: 0x494B, offset: 0x7125A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F1B0, symBinAddr: 0x42850, symSize: 0x80 } + - { offsetInCU: 0x49DF, offset: 0x712EE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1F230, symBinAddr: 0x428D0, symSize: 0x70 } + - { offsetInCU: 0x4B36, offset: 0x71445, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1F2A0, symBinAddr: 0x42940, symSize: 0x780 } + - { offsetInCU: 0x500F, offset: 0x7191E, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1FA20, symBinAddr: 0x430C0, symSize: 0x40 } + - { offsetInCU: 0x5023, offset: 0x71932, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1FB10, symBinAddr: 0x43130, symSize: 0x10 } + - { offsetInCU: 0x5037, offset: 0x71946, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1FB20, symBinAddr: 0x43140, symSize: 0x30 } + - { offsetInCU: 0x504B, offset: 0x7195A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1FB50, symBinAddr: 0x43170, symSize: 0x30 } + - { offsetInCU: 0x505F, offset: 0x7196E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1FBF0, symBinAddr: 0x431C0, symSize: 0x20 } + - { offsetInCU: 0x5073, offset: 0x71982, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1FC90, symBinAddr: 0x43240, symSize: 0x30 } + - { offsetInCU: 0x50A8, offset: 0x719B7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1FD90, symBinAddr: 0x43340, symSize: 0x40 } + - { offsetInCU: 0x50BC, offset: 0x719CB, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1FE00, symBinAddr: 0x433B0, symSize: 0x30 } + - { offsetInCU: 0x50D0, offset: 0x719DF, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1FE30, symBinAddr: 0x433E0, symSize: 0x30 } + - { offsetInCU: 0x50E4, offset: 0x719F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1FE80, symBinAddr: 0x43430, symSize: 0x50 } + - { offsetInCU: 0x50F8, offset: 0x71A07, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1FED0, symBinAddr: 0x43480, symSize: 0x40 } + - { offsetInCU: 0x510C, offset: 0x71A1B, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1FFA0, symBinAddr: 0x43550, symSize: 0x10 } + - { offsetInCU: 0x5120, offset: 0x71A2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1FFB0, symBinAddr: 0x43560, symSize: 0x20 } + - { offsetInCU: 0x5134, offset: 0x71A43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1FFD0, symBinAddr: 0x43580, symSize: 0x30 } + - { offsetInCU: 0x5148, offset: 0x71A57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x20040, symBinAddr: 0x435F0, symSize: 0x40 } + - { offsetInCU: 0x57B9, offset: 0x720C8, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xB400, symBinAddr: 0x2F1F0, symSize: 0x4B0 } + - { offsetInCU: 0x5908, offset: 0x72217, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xCAB0, symBinAddr: 0x308A0, symSize: 0x3C0 } + - { offsetInCU: 0x5C0C, offset: 0x7251B, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xCE70, symBinAddr: 0x30C60, symSize: 0x390 } + - { offsetInCU: 0x6084, offset: 0x72993, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x11880, symBinAddr: 0x35670, symSize: 0x1B0 } + - { offsetInCU: 0x646E, offset: 0x72D7D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x1A390, symBinAddr: 0x3E130, symSize: 0xE0 } + - { offsetInCU: 0x65B6, offset: 0x72EC5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x1A4B0, symBinAddr: 0x3E210, symSize: 0xF0 } + - { offsetInCU: 0x66D3, offset: 0x72FE2, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1AE10, symBinAddr: 0x3EB40, symSize: 0x220 } + - { offsetInCU: 0x67E3, offset: 0x730F2, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1B5C0, symBinAddr: 0x3F2F0, symSize: 0x1A0 } + - { offsetInCU: 0x6B29, offset: 0x73438, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1D970, symBinAddr: 0x416A0, symSize: 0x240 } + - { offsetInCU: 0x6C58, offset: 0x73567, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x1DBB0, symBinAddr: 0x418E0, symSize: 0xF0 } + - { offsetInCU: 0x6DA6, offset: 0x736B5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x1DCA0, symBinAddr: 0x419D0, symSize: 0xF0 } + - { offsetInCU: 0x6F08, offset: 0x73817, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x1DD90, symBinAddr: 0x41AC0, symSize: 0xE0 } + - { offsetInCU: 0x705E, offset: 0x7396D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x1DE70, symBinAddr: 0x41BA0, symSize: 0xF0 } + - { offsetInCU: 0x71A0, offset: 0x73AAF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x1DF60, symBinAddr: 0x41C90, symSize: 0xE0 } + - { offsetInCU: 0x7302, offset: 0x73C11, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1E120, symBinAddr: 0x41E50, symSize: 0xE0 } + - { offsetInCU: 0x7479, offset: 0x73D88, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1FCC0, symBinAddr: 0x43270, symSize: 0xD0 } + - { offsetInCU: 0x79E0, offset: 0x742EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x23DF0, symSize: 0x170 } + - { offsetInCU: 0x7A56, offset: 0x74365, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x170, symBinAddr: 0x23F60, symSize: 0x80 } + - { offsetInCU: 0x7BB2, offset: 0x744C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x1F0, symBinAddr: 0x23FE0, symSize: 0x2140 } + - { offsetInCU: 0x8B6D, offset: 0x7547C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xD200, symBinAddr: 0x30FF0, symSize: 0x3D60 } + - { offsetInCU: 0x9FB7, offset: 0x768C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x10F60, symBinAddr: 0x34D50, symSize: 0x640 } + - { offsetInCU: 0xA3D3, offset: 0x76CE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x130C0, symBinAddr: 0x36EB0, symSize: 0x2E30 } + - { offsetInCU: 0xB92A, offset: 0x78239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x16F20, symBinAddr: 0x3AD10, symSize: 0x450 } + - { offsetInCU: 0xBABB, offset: 0x783CA, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x2330, symBinAddr: 0x26120, symSize: 0x340 } + - { offsetInCU: 0xBEBE, offset: 0x787CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x2DF0, symBinAddr: 0x26BE0, symSize: 0x460 } + - { offsetInCU: 0xC14A, offset: 0x78A59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3250, symBinAddr: 0x27040, symSize: 0x4C20 } + - { offsetInCU: 0xDDAC, offset: 0x7A6BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7E70, symBinAddr: 0x2BC60, symSize: 0x2E0 } + - { offsetInCU: 0xDEA3, offset: 0x7A7B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x85D0, symBinAddr: 0x2C3C0, symSize: 0x1CB0 } + - { offsetInCU: 0xE8AC, offset: 0x7B1BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x8150, symBinAddr: 0x2BF40, symSize: 0x120 } + - { offsetInCU: 0xE925, offset: 0x7B234, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x8270, symBinAddr: 0x2C060, symSize: 0x120 } + - { offsetInCU: 0xE940, offset: 0x7B24F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x8390, symBinAddr: 0x2C180, symSize: 0x210 } + - { offsetInCU: 0xEC74, offset: 0x7B583, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0xA280, symBinAddr: 0x2E070, symSize: 0x4C0 } + - { offsetInCU: 0xEED1, offset: 0x7B7E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xB8B0, symBinAddr: 0x2F6A0, symSize: 0x1200 } + - { offsetInCU: 0xF7E6, offset: 0x7C0F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xA740, symBinAddr: 0x2E530, symSize: 0xCC0 } + - { offsetInCU: 0x101FC, offset: 0x7CB0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x11A30, symBinAddr: 0x35820, symSize: 0x1690 } + - { offsetInCU: 0x11314, offset: 0x7DC23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1B760, symBinAddr: 0x3F490, symSize: 0xD70 } + - { offsetInCU: 0x11CCE, offset: 0x7E5DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x15EF0, symBinAddr: 0x39CE0, symSize: 0x1030 } + - { offsetInCU: 0x127C5, offset: 0x7F0D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x17370, symBinAddr: 0x3B160, symSize: 0x1C0 } + - { offsetInCU: 0x12849, offset: 0x7F158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x17530, symBinAddr: 0x3B320, symSize: 0x2D0 } + - { offsetInCU: 0x1296E, offset: 0x7F27D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x17880, symBinAddr: 0x3B670, symSize: 0x1170 } + - { offsetInCU: 0x13336, offset: 0x7FC45, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x18D10, symBinAddr: 0x3CAB0, symSize: 0x60 } + - { offsetInCU: 0x13374, offset: 0x7FC83, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x18D70, symBinAddr: 0x3CB10, symSize: 0x30 } + - { offsetInCU: 0x133BB, offset: 0x7FCCA, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x18DA0, symBinAddr: 0x3CB40, symSize: 0x80 } + - { offsetInCU: 0x13455, offset: 0x7FD64, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x18E20, symBinAddr: 0x3CBC0, symSize: 0x60 } + - { offsetInCU: 0x134F1, offset: 0x7FE00, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x18E80, symBinAddr: 0x3CC20, symSize: 0x50 } + - { offsetInCU: 0x1356A, offset: 0x7FE79, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x18F20, symBinAddr: 0x3CCC0, symSize: 0xE0 } + - { offsetInCU: 0x135CE, offset: 0x7FEDD, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19000, symBinAddr: 0x3CDA0, symSize: 0xC0 } + - { offsetInCU: 0x135F7, offset: 0x7FF06, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x190C0, symBinAddr: 0x3CE60, symSize: 0x180 } + - { offsetInCU: 0x136E0, offset: 0x7FFEF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x19240, symBinAddr: 0x3CFE0, symSize: 0x110 } + - { offsetInCU: 0x1380F, offset: 0x8011E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x19350, symBinAddr: 0x3D0F0, symSize: 0x130 } + - { offsetInCU: 0x1393E, offset: 0x8024D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x19480, symBinAddr: 0x3D220, symSize: 0x180 } + - { offsetInCU: 0x13AAF, offset: 0x803BE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x19600, symBinAddr: 0x3D3A0, symSize: 0x1A0 } + - { offsetInCU: 0x13C27, offset: 0x80536, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x197A0, symBinAddr: 0x3D540, symSize: 0x110 } + - { offsetInCU: 0x13D5D, offset: 0x8066C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x198B0, symBinAddr: 0x3D650, symSize: 0x110 } + - { offsetInCU: 0x13E93, offset: 0x807A2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x19AF0, symBinAddr: 0x3D890, symSize: 0x110 } + - { offsetInCU: 0x13FB1, offset: 0x808C0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x19D10, symBinAddr: 0x3DAB0, symSize: 0x120 } + - { offsetInCU: 0x1409C, offset: 0x809AB, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1A140, symBinAddr: 0x3DEE0, symSize: 0x180 } + - { offsetInCU: 0x1416B, offset: 0x80A7A, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1A2C0, symBinAddr: 0x3E060, symSize: 0xD0 } + - { offsetInCU: 0x14211, offset: 0x80B20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x1A5A0, symBinAddr: 0x3E300, symSize: 0x6B0 } + - { offsetInCU: 0x1452A, offset: 0x80E39, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1AC50, symBinAddr: 0x3E9B0, symSize: 0x170 } + - { offsetInCU: 0x1472C, offset: 0x8103B, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1C4D0, symBinAddr: 0x40200, symSize: 0x170 } + - { offsetInCU: 0x27, offset: 0x81760, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43660, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x81778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43660, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x8178C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x43690, symSize: 0x140 } + - { offsetInCU: 0x67, offset: 0x817A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x437D0, symSize: 0x440 } + - { offsetInCU: 0x7B, offset: 0x817B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x43C10, symSize: 0x590 } + - { offsetInCU: 0x8F, offset: 0x817C8, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x441A0, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x817DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x441B0, symSize: 0x440 } + - { offsetInCU: 0xB7, offset: 0x817F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x445F0, symSize: 0x40 } + - { offsetInCU: 0xCB, offset: 0x81804, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x44630, symSize: 0x110 } + - { offsetInCU: 0xDF, offset: 0x81818, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x44740, symSize: 0xA } + - { offsetInCU: 0x4F9, offset: 0x81DF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA480, symBinAddr: 0x4EBD0, symSize: 0x250 } + - { offsetInCU: 0x5CD, offset: 0x81EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA6D0, symBinAddr: 0x4EE20, symSize: 0x260 } + - { offsetInCU: 0x6B0, offset: 0x81FA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xEE70, symBinAddr: 0x535C0, symSize: 0x8E0 } + - { offsetInCU: 0x9E6, offset: 0x822DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xF750, symBinAddr: 0x53EA0, symSize: 0xA50 } + - { offsetInCU: 0xCC0, offset: 0x825B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0x101A0, symBinAddr: 0x548F0, symSize: 0x300 } + - { offsetInCU: 0xDD8, offset: 0x826D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x10C90, symBinAddr: 0x553E0, symSize: 0x950 } + - { offsetInCU: 0x10CE, offset: 0x829C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x115E0, symBinAddr: 0x55D30, symSize: 0xBD0 } + - { offsetInCU: 0x13A8, offset: 0x82CA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x121B0, symBinAddr: 0x56900, symSize: 0x370 } + - { offsetInCU: 0x14C0, offset: 0x82DB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x12520, symBinAddr: 0x56C70, symSize: 0x210 } + - { offsetInCU: 0x190C, offset: 0x83205, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2480, symBinAddr: 0x46BD0, symSize: 0x30 } + - { offsetInCU: 0x1E10, offset: 0x83709, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0xAA10, symBinAddr: 0x4F160, symSize: 0x20 } + - { offsetInCU: 0x1E55, offset: 0x8374E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xAA30, symBinAddr: 0x4F180, symSize: 0x90 } + - { offsetInCU: 0x1F1C, offset: 0x83815, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0xB710, symBinAddr: 0x4FE60, symSize: 0x50 } + - { offsetInCU: 0x1F56, offset: 0x8384F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0xB760, symBinAddr: 0x4FEB0, symSize: 0x50 } + - { offsetInCU: 0x1FAC, offset: 0x838A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB7B0, symBinAddr: 0x4FF00, symSize: 0x60 } + - { offsetInCU: 0x1FDF, offset: 0x838D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xB810, symBinAddr: 0x4FF60, symSize: 0x10 } + - { offsetInCU: 0x201E, offset: 0x83917, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB820, symBinAddr: 0x4FF70, symSize: 0x70 } + - { offsetInCU: 0x2074, offset: 0x8396D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xB890, symBinAddr: 0x4FFE0, symSize: 0x90 } + - { offsetInCU: 0x20E5, offset: 0x839DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xB920, symBinAddr: 0x50070, symSize: 0xE0 } + - { offsetInCU: 0x2167, offset: 0x83A60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xBA00, symBinAddr: 0x50150, symSize: 0x10 } + - { offsetInCU: 0x2183, offset: 0x83A7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xBA10, symBinAddr: 0x50160, symSize: 0x10 } + - { offsetInCU: 0x21BD, offset: 0x83AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xBA20, symBinAddr: 0x50170, symSize: 0x60 } + - { offsetInCU: 0x24DE, offset: 0x83DD7, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xCEF0, symBinAddr: 0x51640, symSize: 0x120 } + - { offsetInCU: 0x2544, offset: 0x83E3D, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xD130, symBinAddr: 0x51880, symSize: 0x2A0 } + - { offsetInCU: 0x26C8, offset: 0x83FC1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xD9C0, symBinAddr: 0x52110, symSize: 0x70 } + - { offsetInCU: 0x2CC4, offset: 0x845BD, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xE2E0, symBinAddr: 0x52A30, symSize: 0x450 } + - { offsetInCU: 0x34EB, offset: 0x84DE4, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xE730, symBinAddr: 0x52E80, symSize: 0x2D0 } + - { offsetInCU: 0x38AD, offset: 0x851A6, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xEA00, symBinAddr: 0x53150, symSize: 0x160 } + - { offsetInCU: 0x3AA8, offset: 0x853A1, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xEB60, symBinAddr: 0x532B0, symSize: 0x1E0 } + - { offsetInCU: 0x3CF1, offset: 0x855EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x13020, symBinAddr: 0x57770, symSize: 0x130 } + - { offsetInCU: 0x3E3B, offset: 0x85734, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x16020, symBinAddr: 0x5A770, symSize: 0x130 } + - { offsetInCU: 0x3F53, offset: 0x8584C, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x167A0, symBinAddr: 0x5AE80, symSize: 0x20 } + - { offsetInCU: 0x3F67, offset: 0x85860, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x167C0, symBinAddr: 0x5AEA0, symSize: 0x20 } + - { offsetInCU: 0x3F7B, offset: 0x85874, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x16840, symBinAddr: 0x5AEC0, symSize: 0x40 } + - { offsetInCU: 0x3F8F, offset: 0x85888, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x16930, symBinAddr: 0x5AF00, symSize: 0x30 } + - { offsetInCU: 0x3FA3, offset: 0x8589C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x16960, symBinAddr: 0x5AF30, symSize: 0x30 } + - { offsetInCU: 0x3FB7, offset: 0x858B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOd', symObjAddr: 0x16990, symBinAddr: 0x5AF60, symSize: 0x40 } + - { offsetInCU: 0x3FCB, offset: 0x858C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x169D0, symBinAddr: 0x5AFA0, symSize: 0x10 } + - { offsetInCU: 0x3FDF, offset: 0x858D8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x169E0, symBinAddr: 0x5AFB0, symSize: 0x20 } + - { offsetInCU: 0x3FF3, offset: 0x858EC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x16A00, symBinAddr: 0x5AFD0, symSize: 0x10 } + - { offsetInCU: 0x4007, offset: 0x85900, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x16A90, symBinAddr: 0x5B020, symSize: 0x40 } + - { offsetInCU: 0x405F, offset: 0x85958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x16B50, symBinAddr: 0x5B0E0, symSize: 0x20 } + - { offsetInCU: 0x409B, offset: 0x85994, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x16BA0, symBinAddr: 0x5B130, symSize: 0x30 } + - { offsetInCU: 0x4BAE, offset: 0x864A7, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x44750, symSize: 0x70 } + - { offsetInCU: 0x4C0F, offset: 0x86508, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x70, symBinAddr: 0x447C0, symSize: 0xA0 } + - { offsetInCU: 0x4D56, offset: 0x8664F, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x110, symBinAddr: 0x44860, symSize: 0x90 } + - { offsetInCU: 0x4E6C, offset: 0x86765, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x448F0, symSize: 0x60 } + - { offsetInCU: 0x4EC8, offset: 0x867C1, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x200, symBinAddr: 0x44950, symSize: 0x10 } + - { offsetInCU: 0x4EE3, offset: 0x867DC, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x210, symBinAddr: 0x44960, symSize: 0x140 } + - { offsetInCU: 0x4F4E, offset: 0x86847, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x350, symBinAddr: 0x44AA0, symSize: 0xE0 } + - { offsetInCU: 0x5030, offset: 0x86929, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x430, symBinAddr: 0x44B80, symSize: 0x2D0 } + - { offsetInCU: 0x51AE, offset: 0x86AA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x700, symBinAddr: 0x44E50, symSize: 0xD90 } + - { offsetInCU: 0x561D, offset: 0x86F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x1490, symBinAddr: 0x45BE0, symSize: 0x4F0 } + - { offsetInCU: 0x589C, offset: 0x87195, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1980, symBinAddr: 0x460D0, symSize: 0xB00 } + - { offsetInCU: 0x5C0F, offset: 0x87508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x24B0, symBinAddr: 0x46C00, symSize: 0x2870 } + - { offsetInCU: 0x7052, offset: 0x8894B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x104A0, symBinAddr: 0x54BF0, symSize: 0x7F0 } + - { offsetInCU: 0x7410, offset: 0x88D09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4D20, symBinAddr: 0x49470, symSize: 0x19B0 } + - { offsetInCU: 0x8255, offset: 0x89B4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x66D0, symBinAddr: 0x4AE20, symSize: 0x1200 } + - { offsetInCU: 0x8C0F, offset: 0x8A508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x78D0, symBinAddr: 0x4C020, symSize: 0x400 } + - { offsetInCU: 0x8D78, offset: 0x8A671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x86F0, symBinAddr: 0x4CE40, symSize: 0x210 } + - { offsetInCU: 0x9003, offset: 0x8A8FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8900, symBinAddr: 0x4D050, symSize: 0xA60 } + - { offsetInCU: 0x97BC, offset: 0x8B0B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x9360, symBinAddr: 0x4DAB0, symSize: 0x2F0 } + - { offsetInCU: 0x990E, offset: 0x8B207, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9650, symBinAddr: 0x4DDA0, symSize: 0x6F0 } + - { offsetInCU: 0x9CDD, offset: 0x8B5D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x9D40, symBinAddr: 0x4E490, symSize: 0x740 } + - { offsetInCU: 0x9F97, offset: 0x8B890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0xA930, symBinAddr: 0x4F080, symSize: 0xC0 } + - { offsetInCU: 0x9FBA, offset: 0x8B8B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0xA9F0, symBinAddr: 0x4F140, symSize: 0x20 } + - { offsetInCU: 0xA045, offset: 0x8B93E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0xAAC0, symBinAddr: 0x4F210, symSize: 0xC10 } + - { offsetInCU: 0xA4A8, offset: 0x8BDA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0xB6D0, symBinAddr: 0x4FE20, symSize: 0x40 } + - { offsetInCU: 0xA51B, offset: 0x8BE14, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xBA80, symBinAddr: 0x501D0, symSize: 0x10 } + - { offsetInCU: 0xA536, offset: 0x8BE2F, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0xBA90, symBinAddr: 0x501E0, symSize: 0x10 } + - { offsetInCU: 0xA55F, offset: 0x8BE58, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xBAA0, symBinAddr: 0x501F0, symSize: 0xC0 } + - { offsetInCU: 0xA5D2, offset: 0x8BECB, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xBB60, symBinAddr: 0x502B0, symSize: 0xC0 } + - { offsetInCU: 0xA67E, offset: 0x8BF77, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xBCF0, symBinAddr: 0x50440, symSize: 0x260 } + - { offsetInCU: 0xA70A, offset: 0x8C003, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xBF50, symBinAddr: 0x506A0, symSize: 0x220 } + - { offsetInCU: 0xA7DA, offset: 0x8C0D3, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xC170, symBinAddr: 0x508C0, symSize: 0x3C0 } + - { offsetInCU: 0xA8BD, offset: 0x8C1B6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xC530, symBinAddr: 0x50C80, symSize: 0x3D0 } + - { offsetInCU: 0xA9AE, offset: 0x8C2A7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xC900, symBinAddr: 0x51050, symSize: 0x220 } + - { offsetInCU: 0xAA4B, offset: 0x8C344, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xCB20, symBinAddr: 0x51270, symSize: 0x230 } + - { offsetInCU: 0xAAE1, offset: 0x8C3DA, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xCD50, symBinAddr: 0x514A0, symSize: 0x40 } + - { offsetInCU: 0xAB94, offset: 0x8C48D, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xCD90, symBinAddr: 0x514E0, symSize: 0xA0 } + - { offsetInCU: 0xAC49, offset: 0x8C542, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xCE30, symBinAddr: 0x51580, symSize: 0x40 } + - { offsetInCU: 0xAC86, offset: 0x8C57F, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xCE70, symBinAddr: 0x515C0, symSize: 0x20 } + - { offsetInCU: 0xACAF, offset: 0x8C5A8, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xCE90, symBinAddr: 0x515E0, symSize: 0x30 } + - { offsetInCU: 0xACD8, offset: 0x8C5D1, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xCEC0, symBinAddr: 0x51610, symSize: 0x20 } + - { offsetInCU: 0xAD19, offset: 0x8C612, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xD660, symBinAddr: 0x51DB0, symSize: 0x80 } + - { offsetInCU: 0xAD2D, offset: 0x8C626, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xD6E0, symBinAddr: 0x51E30, symSize: 0x60 } + - { offsetInCU: 0xAD5D, offset: 0x8C656, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xD740, symBinAddr: 0x51E90, symSize: 0x180 } + - { offsetInCU: 0xADBA, offset: 0x8C6B3, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xD8C0, symBinAddr: 0x52010, symSize: 0x100 } + - { offsetInCU: 0xADE1, offset: 0x8C6DA, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xDA30, symBinAddr: 0x52180, symSize: 0x2D0 } + - { offsetInCU: 0xAE16, offset: 0x8C70F, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xDD00, symBinAddr: 0x52450, symSize: 0xA0 } + - { offsetInCU: 0xAE2A, offset: 0x8C723, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xDDA0, symBinAddr: 0x524F0, symSize: 0x20 } + - { offsetInCU: 0xAE3E, offset: 0x8C737, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDDC0, symBinAddr: 0x52510, symSize: 0x20 } + - { offsetInCU: 0xAE52, offset: 0x8C74B, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xDDE0, symBinAddr: 0x52530, symSize: 0x20 } + - { offsetInCU: 0xAE89, offset: 0x8C782, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xDE00, symBinAddr: 0x52550, symSize: 0x110 } + - { offsetInCU: 0xAF87, offset: 0x8C880, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDF10, symBinAddr: 0x52660, symSize: 0x1A0 } + - { offsetInCU: 0xB0C7, offset: 0x8C9C0, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE0B0, symBinAddr: 0x52800, symSize: 0x130 } + - { offsetInCU: 0xB19B, offset: 0x8CA94, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xE1E0, symBinAddr: 0x52930, symSize: 0x100 } + - { offsetInCU: 0xB2E1, offset: 0x8CBDA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xED40, symBinAddr: 0x53490, symSize: 0x20 } + - { offsetInCU: 0xB303, offset: 0x8CBFC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xED60, symBinAddr: 0x534B0, symSize: 0x110 } + - { offsetInCU: 0xB3D5, offset: 0x8CCCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x12730, symBinAddr: 0x56E80, symSize: 0x8F0 } + - { offsetInCU: 0xB8E2, offset: 0x8D1DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13150, symBinAddr: 0x578A0, symSize: 0x2ED0 } + - { offsetInCU: 0xC054, offset: 0x8D94D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x16150, symBinAddr: 0x5A8A0, symSize: 0x5E0 } + - { offsetInCU: 0x95, offset: 0x8DDD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x10E0, symBinAddr: 0x5C330, symSize: 0x50 } + - { offsetInCU: 0xDF, offset: 0x8DE1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1130, symBinAddr: 0x5C380, symSize: 0x20 } + - { offsetInCU: 0x110, offset: 0x8DE50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1150, symBinAddr: 0x5C3A0, symSize: 0x10 } + - { offsetInCU: 0x12C, offset: 0x8DE6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1160, symBinAddr: 0x5C3B0, symSize: 0x10 } + - { offsetInCU: 0x148, offset: 0x8DE88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6FD0, symBinAddr: 0x62160, symSize: 0xF0 } + - { offsetInCU: 0x1DF, offset: 0x8DF1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x5C400, symSize: 0x50 } + - { offsetInCU: 0x216, offset: 0x8DF56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1200, symBinAddr: 0x5C450, symSize: 0x50 } + - { offsetInCU: 0x239, offset: 0x8DF79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x70C0, symBinAddr: 0x62250, symSize: 0x13C0 } + - { offsetInCU: 0x2C7, offset: 0x8E007, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1250, symBinAddr: 0x5C4A0, symSize: 0x10 } + - { offsetInCU: 0x31A, offset: 0x8E05A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1270, symBinAddr: 0x5C4C0, symSize: 0x20 } + - { offsetInCU: 0x394, offset: 0x8E0D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x12A0, symBinAddr: 0x5C4F0, symSize: 0x90 } + - { offsetInCU: 0x3C9, offset: 0x8E109, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1330, symBinAddr: 0x5C580, symSize: 0x20 } + - { offsetInCU: 0x3FA, offset: 0x8E13A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1350, symBinAddr: 0x5C5A0, symSize: 0x10 } + - { offsetInCU: 0x416, offset: 0x8E156, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1360, symBinAddr: 0x5C5B0, symSize: 0x10 } + - { offsetInCU: 0x432, offset: 0x8E172, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8EF0, symBinAddr: 0x636A0, symSize: 0x1B0 } + - { offsetInCU: 0x514, offset: 0x8E254, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13B0, symBinAddr: 0x5C600, symSize: 0x50 } + - { offsetInCU: 0x54B, offset: 0x8E28B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1400, symBinAddr: 0x5C650, symSize: 0x50 } + - { offsetInCU: 0x56E, offset: 0x8E2AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x90A0, symBinAddr: 0x63850, symSize: 0x1180 } + - { offsetInCU: 0x5F0, offset: 0x8E330, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1650, symBinAddr: 0x5C8A0, symSize: 0x30 } + - { offsetInCU: 0x621, offset: 0x8E361, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1680, symBinAddr: 0x5C8D0, symSize: 0x80 } + - { offsetInCU: 0x63D, offset: 0x8E37D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x5C950, symSize: 0x70 } + - { offsetInCU: 0x672, offset: 0x8E3B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5C9C0, symSize: 0x20 } + - { offsetInCU: 0x6C2, offset: 0x8E402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1790, symBinAddr: 0x5C9E0, symSize: 0x10 } + - { offsetInCU: 0x6DE, offset: 0x8E41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x5C9F0, symSize: 0x10 } + - { offsetInCU: 0x6FA, offset: 0x8E43A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xA370, symBinAddr: 0x64B20, symSize: 0x60 } + - { offsetInCU: 0x759, offset: 0x8E499, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x5CA40, symSize: 0x50 } + - { offsetInCU: 0x790, offset: 0x8E4D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1840, symBinAddr: 0x5CA90, symSize: 0x50 } + - { offsetInCU: 0x7B3, offset: 0x8E4F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA3D0, symBinAddr: 0x64B80, symSize: 0x210 } + - { offsetInCU: 0x817, offset: 0x8E557, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5CB00, symSize: 0x10 } + - { offsetInCU: 0x84C, offset: 0x8E58C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18C0, symBinAddr: 0x5CB10, symSize: 0x20 } + - { offsetInCU: 0x87D, offset: 0x8E5BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18E0, symBinAddr: 0x5CB30, symSize: 0x10 } + - { offsetInCU: 0x899, offset: 0x8E5D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x5CB40, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x8E5F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA5E0, symBinAddr: 0x64D90, symSize: 0x270 } + - { offsetInCU: 0xA01, offset: 0x8E741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1940, symBinAddr: 0x5CB90, symSize: 0x50 } + - { offsetInCU: 0xA38, offset: 0x8E778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1990, symBinAddr: 0x5CBE0, symSize: 0x50 } + - { offsetInCU: 0xA5B, offset: 0x8E79B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA850, symBinAddr: 0x65000, symSize: 0x5E0 } + - { offsetInCU: 0xAE8, offset: 0x8E828, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x19E0, symBinAddr: 0x5CC30, symSize: 0x10 } + - { offsetInCU: 0xB60, offset: 0x8E8A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5CC40, symSize: 0x40 } + - { offsetInCU: 0xC44, offset: 0x8E984, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A30, symBinAddr: 0x5CC80, symSize: 0x20 } + - { offsetInCU: 0xCCA, offset: 0x8EA0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A90, symBinAddr: 0x5CCE0, symSize: 0x30 } + - { offsetInCU: 0xD14, offset: 0x8EA54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5CD10, symSize: 0x20 } + - { offsetInCU: 0xD45, offset: 0x8EA85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x5CD30, symSize: 0x10 } + - { offsetInCU: 0xD61, offset: 0x8EAA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AF0, symBinAddr: 0x5CD40, symSize: 0x10 } + - { offsetInCU: 0xD7D, offset: 0x8EABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAE30, symBinAddr: 0x655E0, symSize: 0xA0 } + - { offsetInCU: 0xDFB, offset: 0x8EB3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5CD90, symSize: 0x30 } + - { offsetInCU: 0xE32, offset: 0x8EB72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B70, symBinAddr: 0x5CDC0, symSize: 0x20 } + - { offsetInCU: 0xE55, offset: 0x8EB95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAED0, symBinAddr: 0x65680, symSize: 0x180 } + - { offsetInCU: 0xEC5, offset: 0x8EC05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C30, symBinAddr: 0x5CE80, symSize: 0xA0 } + - { offsetInCU: 0xEFA, offset: 0x8EC3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1CD0, symBinAddr: 0x5CF20, symSize: 0x20 } + - { offsetInCU: 0xF2B, offset: 0x8EC6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1CF0, symBinAddr: 0x5CF40, symSize: 0x10 } + - { offsetInCU: 0xF47, offset: 0x8EC87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D00, symBinAddr: 0x5CF50, symSize: 0x10 } + - { offsetInCU: 0xF63, offset: 0x8ECA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xB050, symBinAddr: 0x65800, symSize: 0x1F0 } + - { offsetInCU: 0x105E, offset: 0x8ED9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D50, symBinAddr: 0x5CFA0, symSize: 0x50 } + - { offsetInCU: 0x1095, offset: 0x8EDD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1DA0, symBinAddr: 0x5CFF0, symSize: 0x50 } + - { offsetInCU: 0x10B8, offset: 0x8EDF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB240, symBinAddr: 0x659F0, symSize: 0x840 } + - { offsetInCU: 0x1152, offset: 0x8EE92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x5D190, symSize: 0x30 } + - { offsetInCU: 0x1183, offset: 0x8EEC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1F70, symBinAddr: 0x5D1C0, symSize: 0x30 } + - { offsetInCU: 0x1197, offset: 0x8EED7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1FA0, symBinAddr: 0x5D1F0, symSize: 0x10 } + - { offsetInCU: 0x11CC, offset: 0x8EF0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FB0, symBinAddr: 0x5D200, symSize: 0x20 } + - { offsetInCU: 0x121C, offset: 0x8EF5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x5D220, symSize: 0x10 } + - { offsetInCU: 0x1238, offset: 0x8EF78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FE0, symBinAddr: 0x5D230, symSize: 0x10 } + - { offsetInCU: 0x1254, offset: 0x8EF94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xBB10, symBinAddr: 0x662C0, symSize: 0x60 } + - { offsetInCU: 0x12D2, offset: 0x8F012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2030, symBinAddr: 0x5D280, symSize: 0x50 } + - { offsetInCU: 0x1309, offset: 0x8F049, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2080, symBinAddr: 0x5D2D0, symSize: 0x50 } + - { offsetInCU: 0x132C, offset: 0x8F06C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xBB70, symBinAddr: 0x66320, symSize: 0x950 } + - { offsetInCU: 0x1404, offset: 0x8F144, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6D80, symBinAddr: 0x61FB0, symSize: 0x50 } + - { offsetInCU: 0x145D, offset: 0x8F19D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6DD0, symBinAddr: 0x62000, symSize: 0x80 } + - { offsetInCU: 0x14B1, offset: 0x8F1F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6E50, symBinAddr: 0x62080, symSize: 0x10 } + - { offsetInCU: 0x14E6, offset: 0x8F226, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E60, symBinAddr: 0x62090, symSize: 0x20 } + - { offsetInCU: 0x1567, offset: 0x8F2A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6EB0, symBinAddr: 0x620E0, symSize: 0x10 } + - { offsetInCU: 0x1584, offset: 0x8F2C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x22C0, symBinAddr: 0x5D510, symSize: 0x20 } + - { offsetInCU: 0x1598, offset: 0x8F2D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x22E0, symBinAddr: 0x5D530, symSize: 0x140 } + - { offsetInCU: 0x15AC, offset: 0x8F2EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x2420, symBinAddr: 0x5D670, symSize: 0x4F0 } + - { offsetInCU: 0x15C0, offset: 0x8F300, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x2910, symBinAddr: 0x5DB60, symSize: 0xED0 } + - { offsetInCU: 0x15DB, offset: 0x8F31B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x37E0, symBinAddr: 0x5EA30, symSize: 0x30 } + - { offsetInCU: 0x1604, offset: 0x8F344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x3810, symBinAddr: 0x5EA60, symSize: 0x20 } + - { offsetInCU: 0x1618, offset: 0x8F358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x3830, symBinAddr: 0x5EA80, symSize: 0x20 } + - { offsetInCU: 0x162C, offset: 0x8F36C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x3850, symBinAddr: 0x5EAA0, symSize: 0x20 } + - { offsetInCU: 0x1640, offset: 0x8F380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x3870, symBinAddr: 0x5EAC0, symSize: 0x20 } + - { offsetInCU: 0x1654, offset: 0x8F394, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3890, symBinAddr: 0x5EAE0, symSize: 0x10 } + - { offsetInCU: 0x1668, offset: 0x8F3A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x38A0, symBinAddr: 0x5EAF0, symSize: 0x580 } + - { offsetInCU: 0x167C, offset: 0x8F3BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x3E20, symBinAddr: 0x5F070, symSize: 0x50 } + - { offsetInCU: 0x1690, offset: 0x8F3D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3E70, symBinAddr: 0x5F0C0, symSize: 0x140 } + - { offsetInCU: 0x16A4, offset: 0x8F3E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x3FB0, symBinAddr: 0x5F200, symSize: 0x10 } + - { offsetInCU: 0x16B8, offset: 0x8F3F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3FC0, symBinAddr: 0x5F210, symSize: 0x30 } + - { offsetInCU: 0x16CC, offset: 0x8F40C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x3FF0, symBinAddr: 0x5F240, symSize: 0x120 } + - { offsetInCU: 0x16E0, offset: 0x8F420, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x4110, symBinAddr: 0x5F360, symSize: 0x480 } + - { offsetInCU: 0x16F4, offset: 0x8F434, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x4590, symBinAddr: 0x5F7E0, symSize: 0x9D0 } + - { offsetInCU: 0x1708, offset: 0x8F448, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4F60, symBinAddr: 0x601B0, symSize: 0x10 } + - { offsetInCU: 0x171C, offset: 0x8F45C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4F70, symBinAddr: 0x601C0, symSize: 0x500 } + - { offsetInCU: 0x1730, offset: 0x8F470, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x5470, symBinAddr: 0x606C0, symSize: 0x50 } + - { offsetInCU: 0x1744, offset: 0x8F484, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x54C0, symBinAddr: 0x60710, symSize: 0x130 } + - { offsetInCU: 0x1758, offset: 0x8F498, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x55F0, symBinAddr: 0x60840, symSize: 0x10 } + - { offsetInCU: 0x176C, offset: 0x8F4AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x5600, symBinAddr: 0x60850, symSize: 0xC0 } + - { offsetInCU: 0x1780, offset: 0x8F4C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x56C0, symBinAddr: 0x60910, symSize: 0x240 } + - { offsetInCU: 0x1794, offset: 0x8F4D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x5900, symBinAddr: 0x60B50, symSize: 0x450 } + - { offsetInCU: 0x17A8, offset: 0x8F4E8, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5D50, symBinAddr: 0x60FA0, symSize: 0x10 } + - { offsetInCU: 0x17BC, offset: 0x8F4FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x5D60, symBinAddr: 0x60FB0, symSize: 0x250 } + - { offsetInCU: 0x17D0, offset: 0x8F510, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x5FB0, symBinAddr: 0x61200, symSize: 0x50 } + - { offsetInCU: 0x17E4, offset: 0x8F524, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x6000, symBinAddr: 0x61250, symSize: 0xA0 } + - { offsetInCU: 0x17F8, offset: 0x8F538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x60A0, symBinAddr: 0x612F0, symSize: 0x10 } + - { offsetInCU: 0x180C, offset: 0x8F54C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x60B0, symBinAddr: 0x61300, symSize: 0x70 } + - { offsetInCU: 0x1820, offset: 0x8F560, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x6120, symBinAddr: 0x61370, symSize: 0x150 } + - { offsetInCU: 0x1834, offset: 0x8F574, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x6270, symBinAddr: 0x614C0, symSize: 0x190 } + - { offsetInCU: 0x1848, offset: 0x8F588, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x6400, symBinAddr: 0x61650, symSize: 0x10 } + - { offsetInCU: 0x185C, offset: 0x8F59C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x6410, symBinAddr: 0x61660, symSize: 0x130 } + - { offsetInCU: 0x1870, offset: 0x8F5B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x6540, symBinAddr: 0x61790, symSize: 0x50 } + - { offsetInCU: 0x1884, offset: 0x8F5C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x6590, symBinAddr: 0x617E0, symSize: 0x80 } + - { offsetInCU: 0x1898, offset: 0x8F5D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x6610, symBinAddr: 0x61860, symSize: 0x10 } + - { offsetInCU: 0x18AC, offset: 0x8F5EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x6620, symBinAddr: 0x61870, symSize: 0x50 } + - { offsetInCU: 0x18C0, offset: 0x8F600, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x6670, symBinAddr: 0x618C0, symSize: 0x120 } + - { offsetInCU: 0x18D4, offset: 0x8F614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x6790, symBinAddr: 0x619E0, symSize: 0x1C0 } + - { offsetInCU: 0x18E8, offset: 0x8F628, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6950, symBinAddr: 0x61BA0, symSize: 0x10 } + - { offsetInCU: 0x18FC, offset: 0x8F63C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x6960, symBinAddr: 0x61BB0, symSize: 0x150 } + - { offsetInCU: 0x1910, offset: 0x8F650, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x6AB0, symBinAddr: 0x61D00, symSize: 0x50 } + - { offsetInCU: 0x1924, offset: 0x8F664, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x6B00, symBinAddr: 0x61D50, symSize: 0x80 } + - { offsetInCU: 0x1938, offset: 0x8F678, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x6B80, symBinAddr: 0x61DD0, symSize: 0x10 } + - { offsetInCU: 0x194C, offset: 0x8F68C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x6B90, symBinAddr: 0x61DE0, symSize: 0x30 } + - { offsetInCU: 0x1960, offset: 0x8F6A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x6BC0, symBinAddr: 0x61E10, symSize: 0x40 } + - { offsetInCU: 0x1974, offset: 0x8F6B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x6C00, symBinAddr: 0x61E50, symSize: 0x60 } + - { offsetInCU: 0x1988, offset: 0x8F6C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x6C80, symBinAddr: 0x61EB0, symSize: 0x50 } + - { offsetInCU: 0x199C, offset: 0x8F6DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x6CD0, symBinAddr: 0x61F00, symSize: 0x50 } + - { offsetInCU: 0x19B0, offset: 0x8F6F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x6D20, symBinAddr: 0x61F50, symSize: 0x50 } + - { offsetInCU: 0x19C4, offset: 0x8F704, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x6D70, symBinAddr: 0x61FA0, symSize: 0x10 } + - { offsetInCU: 0x19D8, offset: 0x8F718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x6EC0, symBinAddr: 0x620F0, symSize: 0x10 } + - { offsetInCU: 0x19EC, offset: 0x8F72C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x6ED0, symBinAddr: 0x62100, symSize: 0x30 } + - { offsetInCU: 0x1A00, offset: 0x8F740, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6FA0, symBinAddr: 0x62130, symSize: 0x30 } + - { offsetInCU: 0x1A14, offset: 0x8F754, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x8480, symBinAddr: 0x63610, symSize: 0x30 } + - { offsetInCU: 0x1A28, offset: 0x8F768, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x84B0, symBinAddr: 0x63640, symSize: 0x30 } + - { offsetInCU: 0x1A3C, offset: 0x8F77C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x8EC0, symBinAddr: 0x63670, symSize: 0x30 } + - { offsetInCU: 0x1A50, offset: 0x8F790, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA220, symBinAddr: 0x649D0, symSize: 0x30 } + - { offsetInCU: 0x1A64, offset: 0x8F7A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0xA250, symBinAddr: 0x64A00, symSize: 0x30 } + - { offsetInCU: 0x1A78, offset: 0x8F7B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0xA280, symBinAddr: 0x64A30, symSize: 0x30 } + - { offsetInCU: 0x1A8C, offset: 0x8F7CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0xA2B0, symBinAddr: 0x64A60, symSize: 0x30 } + - { offsetInCU: 0x1AA0, offset: 0x8F7E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0xA2E0, symBinAddr: 0x64A90, symSize: 0x30 } + - { offsetInCU: 0x1AB4, offset: 0x8F7F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0xA310, symBinAddr: 0x64AC0, symSize: 0x30 } + - { offsetInCU: 0x1AC8, offset: 0x8F808, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0xA340, symBinAddr: 0x64AF0, symSize: 0x30 } + - { offsetInCU: 0x1ADC, offset: 0x8F81C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xBA80, symBinAddr: 0x66230, symSize: 0x30 } + - { offsetInCU: 0x1AF0, offset: 0x8F830, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xBAB0, symBinAddr: 0x66260, symSize: 0x30 } + - { offsetInCU: 0x1B04, offset: 0x8F844, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xBAE0, symBinAddr: 0x66290, symSize: 0x30 } + - { offsetInCU: 0x1B18, offset: 0x8F858, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xC4C0, symBinAddr: 0x66C70, symSize: 0x30 } + - { offsetInCU: 0x1B2C, offset: 0x8F86C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xC4F0, symBinAddr: 0x66CA0, symSize: 0x30 } + - { offsetInCU: 0x1B40, offset: 0x8F880, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xC520, symBinAddr: 0x66CD0, symSize: 0x30 } + - { offsetInCU: 0x1B54, offset: 0x8F894, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xC580, symBinAddr: 0x66D30, symSize: 0x30 } + - { offsetInCU: 0x1B68, offset: 0x8F8A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xC5B0, symBinAddr: 0x66D60, symSize: 0x30 } + - { offsetInCU: 0x1B7C, offset: 0x8F8BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC600, symBinAddr: 0x66D90, symSize: 0x80 } + - { offsetInCU: 0x1B90, offset: 0x8F8D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC680, symBinAddr: 0x66E10, symSize: 0xD0 } + - { offsetInCU: 0x1BA4, offset: 0x8F8E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xC750, symBinAddr: 0x66EE0, symSize: 0x10 } + - { offsetInCU: 0x1BB8, offset: 0x8F8F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC760, symBinAddr: 0x66EF0, symSize: 0x10 } + - { offsetInCU: 0x1BCC, offset: 0x8F90C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xC770, symBinAddr: 0x66F00, symSize: 0x10 } + - { offsetInCU: 0x1BE0, offset: 0x8F920, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC780, symBinAddr: 0x66F10, symSize: 0x10 } + - { offsetInCU: 0x1BF4, offset: 0x8F934, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC790, symBinAddr: 0x66F20, symSize: 0x80 } + - { offsetInCU: 0x1C08, offset: 0x8F948, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC810, symBinAddr: 0x66FA0, symSize: 0xD0 } + - { offsetInCU: 0x1C1C, offset: 0x8F95C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC8E0, symBinAddr: 0x67070, symSize: 0x10 } + - { offsetInCU: 0x1C30, offset: 0x8F970, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC8F0, symBinAddr: 0x67080, symSize: 0x10 } + - { offsetInCU: 0x1C44, offset: 0x8F984, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xC900, symBinAddr: 0x67090, symSize: 0x80 } + - { offsetInCU: 0x1C58, offset: 0x8F998, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xC980, symBinAddr: 0x67110, symSize: 0xD0 } + - { offsetInCU: 0x1C6C, offset: 0x8F9AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xCA50, symBinAddr: 0x671E0, symSize: 0x10 } + - { offsetInCU: 0x1C80, offset: 0x8F9C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xCA60, symBinAddr: 0x671F0, symSize: 0x10 } + - { offsetInCU: 0x1C94, offset: 0x8F9D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xCA70, symBinAddr: 0x67200, symSize: 0x80 } + - { offsetInCU: 0x1CA8, offset: 0x8F9E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xCAF0, symBinAddr: 0x67280, symSize: 0xD0 } + - { offsetInCU: 0x1CBC, offset: 0x8F9FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xCBC0, symBinAddr: 0x67350, symSize: 0x10 } + - { offsetInCU: 0x1CD0, offset: 0x8FA10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xCBD0, symBinAddr: 0x67360, symSize: 0x10 } + - { offsetInCU: 0x1CE4, offset: 0x8FA24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xCBE0, symBinAddr: 0x67370, symSize: 0x80 } + - { offsetInCU: 0x1CF8, offset: 0x8FA38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xCC60, symBinAddr: 0x673F0, symSize: 0xD0 } + - { offsetInCU: 0x1D0C, offset: 0x8FA4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xCD30, symBinAddr: 0x674C0, symSize: 0x10 } + - { offsetInCU: 0x1D20, offset: 0x8FA60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xCD40, symBinAddr: 0x674D0, symSize: 0x10 } + - { offsetInCU: 0x1D34, offset: 0x8FA74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xCD50, symBinAddr: 0x674E0, symSize: 0x10 } + - { offsetInCU: 0x1D48, offset: 0x8FA88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xCD60, symBinAddr: 0x674F0, symSize: 0x10 } + - { offsetInCU: 0x1D5C, offset: 0x8FA9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xCD70, symBinAddr: 0x67500, symSize: 0x80 } + - { offsetInCU: 0x1D70, offset: 0x8FAB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xCDF0, symBinAddr: 0x67580, symSize: 0xD0 } + - { offsetInCU: 0x1D84, offset: 0x8FAC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xCEC0, symBinAddr: 0x67650, symSize: 0x10 } + - { offsetInCU: 0x1D98, offset: 0x8FAD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xCED0, symBinAddr: 0x67660, symSize: 0x10 } + - { offsetInCU: 0x1DAC, offset: 0x8FAEC, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xCEE0, symBinAddr: 0x67670, symSize: 0x30 } + - { offsetInCU: 0x1DC0, offset: 0x8FB00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xCF10, symBinAddr: 0x676A0, symSize: 0x20 } + - { offsetInCU: 0x1DD4, offset: 0x8FB14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xCF30, symBinAddr: 0x676C0, symSize: 0x40 } + - { offsetInCU: 0x1DE8, offset: 0x8FB28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xCF70, symBinAddr: 0x67700, symSize: 0x10 } + - { offsetInCU: 0x1DFC, offset: 0x8FB3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCF80, symBinAddr: 0x67710, symSize: 0x10 } + - { offsetInCU: 0x1E10, offset: 0x8FB50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCF90, symBinAddr: 0x67720, symSize: 0x30 } + - { offsetInCU: 0x1E24, offset: 0x8FB64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCFC0, symBinAddr: 0x67750, symSize: 0x10 } + - { offsetInCU: 0x1E38, offset: 0x8FB78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCFD0, symBinAddr: 0x67760, symSize: 0x30 } + - { offsetInCU: 0x1E4C, offset: 0x8FB8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xD000, symBinAddr: 0x67790, symSize: 0x10 } + - { offsetInCU: 0x1E60, offset: 0x8FBA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xD010, symBinAddr: 0x677A0, symSize: 0x30 } + - { offsetInCU: 0x1E74, offset: 0x8FBB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xD040, symBinAddr: 0x677D0, symSize: 0x10 } + - { offsetInCU: 0x1E88, offset: 0x8FBC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xD050, symBinAddr: 0x677E0, symSize: 0x30 } + - { offsetInCU: 0x1E9C, offset: 0x8FBDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xD080, symBinAddr: 0x67810, symSize: 0x10 } + - { offsetInCU: 0x1EB0, offset: 0x8FBF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xD090, symBinAddr: 0x67820, symSize: 0x30 } + - { offsetInCU: 0x1EC4, offset: 0x8FC04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xD0C0, symBinAddr: 0x67850, symSize: 0x10 } + - { offsetInCU: 0x1ED8, offset: 0x8FC18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xD0D0, symBinAddr: 0x67860, symSize: 0x30 } + - { offsetInCU: 0x1EEC, offset: 0x8FC2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD100, symBinAddr: 0x67890, symSize: 0x10 } + - { offsetInCU: 0x1F00, offset: 0x8FC40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD110, symBinAddr: 0x678A0, symSize: 0x30 } + - { offsetInCU: 0x1F14, offset: 0x8FC54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD140, symBinAddr: 0x678D0, symSize: 0x10 } + - { offsetInCU: 0x1F28, offset: 0x8FC68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD150, symBinAddr: 0x678E0, symSize: 0x30 } + - { offsetInCU: 0x1F3C, offset: 0x8FC7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD180, symBinAddr: 0x67910, symSize: 0x10 } + - { offsetInCU: 0x1F50, offset: 0x8FC90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD190, symBinAddr: 0x67920, symSize: 0x30 } + - { offsetInCU: 0x1F64, offset: 0x8FCA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD1C0, symBinAddr: 0x67950, symSize: 0x10 } + - { offsetInCU: 0x1F78, offset: 0x8FCB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD1D0, symBinAddr: 0x67960, symSize: 0x30 } + - { offsetInCU: 0x1F8C, offset: 0x8FCCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD200, symBinAddr: 0x67990, symSize: 0x10 } + - { offsetInCU: 0x1FA0, offset: 0x8FCE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD210, symBinAddr: 0x679A0, symSize: 0x30 } + - { offsetInCU: 0x1FB4, offset: 0x8FCF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD240, symBinAddr: 0x679D0, symSize: 0x10 } + - { offsetInCU: 0x1FC8, offset: 0x8FD08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD250, symBinAddr: 0x679E0, symSize: 0x30 } + - { offsetInCU: 0x1FDC, offset: 0x8FD1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD280, symBinAddr: 0x67A10, symSize: 0x10 } + - { offsetInCU: 0x1FF0, offset: 0x8FD30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD290, symBinAddr: 0x67A20, symSize: 0x30 } + - { offsetInCU: 0x2004, offset: 0x8FD44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD2C0, symBinAddr: 0x67A50, symSize: 0x10 } + - { offsetInCU: 0x2018, offset: 0x8FD58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD2D0, symBinAddr: 0x67A60, symSize: 0x30 } + - { offsetInCU: 0x202C, offset: 0x8FD6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD300, symBinAddr: 0x67A90, symSize: 0x10 } + - { offsetInCU: 0x2040, offset: 0x8FD80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD310, symBinAddr: 0x67AA0, symSize: 0x30 } + - { offsetInCU: 0x2054, offset: 0x8FD94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD340, symBinAddr: 0x67AD0, symSize: 0x10 } + - { offsetInCU: 0x2068, offset: 0x8FDA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD350, symBinAddr: 0x67AE0, symSize: 0x30 } + - { offsetInCU: 0x207C, offset: 0x8FDBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD380, symBinAddr: 0x67B10, symSize: 0x10 } + - { offsetInCU: 0x2090, offset: 0x8FDD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD390, symBinAddr: 0x67B20, symSize: 0x30 } + - { offsetInCU: 0x20A4, offset: 0x8FDE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD3C0, symBinAddr: 0x67B50, symSize: 0x10 } + - { offsetInCU: 0x20B8, offset: 0x8FDF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD3D0, symBinAddr: 0x67B60, symSize: 0x30 } + - { offsetInCU: 0x20CC, offset: 0x8FE0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xD400, symBinAddr: 0x67B90, symSize: 0x30 } + - { offsetInCU: 0x20E0, offset: 0x8FE20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xD430, symBinAddr: 0x67BC0, symSize: 0x80 } + - { offsetInCU: 0x20F4, offset: 0x8FE34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xD4B0, symBinAddr: 0x67C40, symSize: 0xD0 } + - { offsetInCU: 0x2108, offset: 0x8FE48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xD580, symBinAddr: 0x67D10, symSize: 0x10 } + - { offsetInCU: 0x211C, offset: 0x8FE5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xD590, symBinAddr: 0x67D20, symSize: 0x10 } + - { offsetInCU: 0x2130, offset: 0x8FE70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD5A0, symBinAddr: 0x67D30, symSize: 0x10 } + - { offsetInCU: 0x2144, offset: 0x8FE84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD5B0, symBinAddr: 0x67D40, symSize: 0x30 } + - { offsetInCU: 0x2158, offset: 0x8FE98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD5E0, symBinAddr: 0x67D70, symSize: 0x10 } + - { offsetInCU: 0x216C, offset: 0x8FEAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD5F0, symBinAddr: 0x67D80, symSize: 0x30 } + - { offsetInCU: 0x2180, offset: 0x8FEC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD620, symBinAddr: 0x67DB0, symSize: 0x10 } + - { offsetInCU: 0x2194, offset: 0x8FED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD630, symBinAddr: 0x67DC0, symSize: 0x30 } + - { offsetInCU: 0x21C2, offset: 0x8FF02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1170, symBinAddr: 0x5C3C0, symSize: 0x20 } + - { offsetInCU: 0x21DE, offset: 0x8FF1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1190, symBinAddr: 0x5C3E0, symSize: 0x20 } + - { offsetInCU: 0x2200, offset: 0x8FF40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x5C5C0, symSize: 0x20 } + - { offsetInCU: 0x221C, offset: 0x8FF5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5C5E0, symSize: 0x20 } + - { offsetInCU: 0x2238, offset: 0x8FF78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1450, symBinAddr: 0x5C6A0, symSize: 0x10 } + - { offsetInCU: 0x22B8, offset: 0x8FFF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1460, symBinAddr: 0x5C6B0, symSize: 0xB0 } + - { offsetInCU: 0x233A, offset: 0x9007A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x5C760, symSize: 0x90 } + - { offsetInCU: 0x2378, offset: 0x900B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x15A0, symBinAddr: 0x5C7F0, symSize: 0xB0 } + - { offsetInCU: 0x23DE, offset: 0x9011E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x5CA00, symSize: 0x20 } + - { offsetInCU: 0x23FA, offset: 0x9013A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x5CA20, symSize: 0x20 } + - { offsetInCU: 0x241C, offset: 0x9015C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1900, symBinAddr: 0x5CB50, symSize: 0x20 } + - { offsetInCU: 0x2438, offset: 0x90178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1920, symBinAddr: 0x5CB70, symSize: 0x20 } + - { offsetInCU: 0x248B, offset: 0x901CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A50, symBinAddr: 0x5CCA0, symSize: 0x40 } + - { offsetInCU: 0x252E, offset: 0x9026E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5CD50, symSize: 0x20 } + - { offsetInCU: 0x254A, offset: 0x9028A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x5CD70, symSize: 0x20 } + - { offsetInCU: 0x256C, offset: 0x902AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D10, symBinAddr: 0x5CF60, symSize: 0x20 } + - { offsetInCU: 0x2588, offset: 0x902C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1D30, symBinAddr: 0x5CF80, symSize: 0x20 } + - { offsetInCU: 0x25D1, offset: 0x90311, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1DF0, symBinAddr: 0x5D040, symSize: 0x80 } + - { offsetInCU: 0x26BD, offset: 0x903FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1E70, symBinAddr: 0x5D0C0, symSize: 0x50 } + - { offsetInCU: 0x273B, offset: 0x9047B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1EC0, symBinAddr: 0x5D110, symSize: 0x30 } + - { offsetInCU: 0x278D, offset: 0x904CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1EF0, symBinAddr: 0x5D140, symSize: 0x50 } + - { offsetInCU: 0x27EF, offset: 0x9052F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x5D240, symSize: 0x20 } + - { offsetInCU: 0x280B, offset: 0x9054B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x2010, symBinAddr: 0x5D260, symSize: 0x20 } + - { offsetInCU: 0x284C, offset: 0x9058C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6E80, symBinAddr: 0x620B0, symSize: 0x30 } + - { offsetInCU: 0x29DF, offset: 0x9071F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x5B250, symSize: 0x190 } + - { offsetInCU: 0x2A10, offset: 0x90750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x190, symBinAddr: 0x5B3E0, symSize: 0x2B0 } + - { offsetInCU: 0x2A41, offset: 0x90781, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x440, symBinAddr: 0x5B690, symSize: 0x190 } + - { offsetInCU: 0x2A72, offset: 0x907B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x5D0, symBinAddr: 0x5B820, symSize: 0xB0 } + - { offsetInCU: 0x2A93, offset: 0x907D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x680, symBinAddr: 0x5B8D0, symSize: 0x2A0 } + - { offsetInCU: 0x2AC4, offset: 0x90804, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x920, symBinAddr: 0x5BB70, symSize: 0x110 } + - { offsetInCU: 0x2AF5, offset: 0x90835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA30, symBinAddr: 0x5BC80, symSize: 0x250 } + - { offsetInCU: 0x2B26, offset: 0x90866, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC80, symBinAddr: 0x5BED0, symSize: 0xB0 } + - { offsetInCU: 0x2B5A, offset: 0x9089A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xD30, symBinAddr: 0x5BF80, symSize: 0xB0 } + - { offsetInCU: 0x2B9A, offset: 0x908DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDE0, symBinAddr: 0x5C030, symSize: 0x2E0 } + - { offsetInCU: 0x2DAB, offset: 0x90AEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x20D0, symBinAddr: 0x5D320, symSize: 0x1D0 } + - { offsetInCU: 0x2DF7, offset: 0x90B37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x22A0, symBinAddr: 0x5D4F0, symSize: 0x20 } + - { offsetInCU: 0x27, offset: 0x90C18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x67F50, symSize: 0x10 } + - { offsetInCU: 0x163, offset: 0x90D54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x68030, symSize: 0x40 } + - { offsetInCU: 0x177, offset: 0x90D68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x68070, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x90D7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x680C0, symSize: 0xA } + - { offsetInCU: 0x26C, offset: 0x90E5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x67F50, symSize: 0x10 } + - { offsetInCU: 0x286, offset: 0x90E77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x67F60, symSize: 0x10 } + - { offsetInCU: 0x2B8, offset: 0x90EA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x67F70, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x90EBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x67F80, symSize: 0x10 } + - { offsetInCU: 0x2ED, offset: 0x90EDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x67F90, symSize: 0x10 } + - { offsetInCU: 0x301, offset: 0x90EF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x67FA0, symSize: 0x10 } + - { offsetInCU: 0x333, offset: 0x90F24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x67FB0, symSize: 0x20 } + - { offsetInCU: 0x357, offset: 0x90F48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x67FD0, symSize: 0x10 } + - { offsetInCU: 0x378, offset: 0x90F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x67FE0, symSize: 0x10 } + - { offsetInCU: 0x38C, offset: 0x90F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x67FF0, symSize: 0x10 } + - { offsetInCU: 0x3C0, offset: 0x90FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x68000, symSize: 0x20 } + - { offsetInCU: 0x3E4, offset: 0x90FD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x68020, symSize: 0x10 } + - { offsetInCU: 0x2B, offset: 0x9102B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x680D0, symSize: 0x30 } + - { offsetInCU: 0x7C, offset: 0x9107C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x68100, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x91182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x680D0, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x911EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68120, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x9123B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x68140, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x91341, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68120, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x913AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68160, symSize: 0x50 } + - { offsetInCU: 0x7C, offset: 0x913FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x681B0, symSize: 0x10 } + - { offsetInCU: 0x90, offset: 0x91412, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x681C0, symSize: 0x30 } + - { offsetInCU: 0xA4, offset: 0x91426, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x681F0, symSize: 0x69 } + - { offsetInCU: 0x1AA, offset: 0x9152C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68160, symSize: 0x50 } + - { offsetInCU: 0x27, offset: 0x91594, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x68260, symSize: 0x430 } + - { offsetInCU: 0x16B, offset: 0x916D8, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x68690, symSize: 0x40 } + - { offsetInCU: 0x38A, offset: 0x918F7, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x68260, symSize: 0x430 } + - { offsetInCU: 0x27, offset: 0x91AF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x686D0, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x91B47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x686F0, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x91C4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x686D0, symSize: 0x20 } + - { offsetInCU: 0xA1, offset: 0x91D2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB00, symBinAddr: 0x691D0, symSize: 0x20 } + - { offsetInCU: 0xBD, offset: 0x91D4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xB20, symBinAddr: 0x691F0, symSize: 0x80 } + - { offsetInCU: 0xE6, offset: 0x91D74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xBA0, symBinAddr: 0x69270, symSize: 0x30 } + - { offsetInCU: 0x175, offset: 0x91E03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xD50, symBinAddr: 0x69420, symSize: 0x20 } + - { offsetInCU: 0x191, offset: 0x91E1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xD70, symBinAddr: 0x69440, symSize: 0x30 } + - { offsetInCU: 0x497, offset: 0x92125, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x7F0, symBinAddr: 0x68EC0, symSize: 0xF0 } + - { offsetInCU: 0x50B, offset: 0x92199, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xDA0, symBinAddr: 0x69470, symSize: 0x480 } + - { offsetInCU: 0x738, offset: 0x923C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1220, symBinAddr: 0x698F0, symSize: 0x150 } + - { offsetInCU: 0x95A, offset: 0x925E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3800, symBinAddr: 0x6BE30, symSize: 0x1F0 } + - { offsetInCU: 0xA0B, offset: 0x92699, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3A90, symBinAddr: 0x6C060, symSize: 0x220 } + - { offsetInCU: 0xA70, offset: 0x926FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3CB0, symBinAddr: 0x6C280, symSize: 0x240 } + - { offsetInCU: 0xB98, offset: 0x92826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3EF0, symBinAddr: 0x6C4C0, symSize: 0x290 } + - { offsetInCU: 0xCD7, offset: 0x92965, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x4180, symBinAddr: 0x6C750, symSize: 0x170 } + - { offsetInCU: 0xD1D, offset: 0x929AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x42F0, symBinAddr: 0x6C8C0, symSize: 0x520 } + - { offsetInCU: 0x104C, offset: 0x92CDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4810, symBinAddr: 0x6CDE0, symSize: 0xD0 } + - { offsetInCU: 0x1171, offset: 0x92DFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3240, symBinAddr: 0x6B910, symSize: 0x10 } + - { offsetInCU: 0x1185, offset: 0x92E13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x3250, symBinAddr: 0x6B920, symSize: 0x30 } + - { offsetInCU: 0x1199, offset: 0x92E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x3280, symBinAddr: 0x6B950, symSize: 0x10 } + - { offsetInCU: 0x11AD, offset: 0x92E3B, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x3290, symBinAddr: 0x6B960, symSize: 0x40 } + - { offsetInCU: 0x11C1, offset: 0x92E4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3310, symBinAddr: 0x6B9A0, symSize: 0x10 } + - { offsetInCU: 0x11D5, offset: 0x92E63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3320, symBinAddr: 0x6B9B0, symSize: 0x30 } + - { offsetInCU: 0x11E9, offset: 0x92E77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x3370, symBinAddr: 0x6B9E0, symSize: 0x80 } + - { offsetInCU: 0x11FD, offset: 0x92E8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x33F0, symBinAddr: 0x6BA60, symSize: 0xD0 } + - { offsetInCU: 0x1211, offset: 0x92E9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x34C0, symBinAddr: 0x6BB30, symSize: 0x10 } + - { offsetInCU: 0x1225, offset: 0x92EB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x34D0, symBinAddr: 0x6BB40, symSize: 0x10 } + - { offsetInCU: 0x1239, offset: 0x92EC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x34E0, symBinAddr: 0x6BB50, symSize: 0x10 } + - { offsetInCU: 0x124D, offset: 0x92EDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x34F0, symBinAddr: 0x6BB60, symSize: 0x10 } + - { offsetInCU: 0x1261, offset: 0x92EEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3500, symBinAddr: 0x6BB70, symSize: 0x80 } + - { offsetInCU: 0x1275, offset: 0x92F03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3580, symBinAddr: 0x6BBF0, symSize: 0xD0 } + - { offsetInCU: 0x1289, offset: 0x92F17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x3650, symBinAddr: 0x6BCC0, symSize: 0x10 } + - { offsetInCU: 0x129D, offset: 0x92F2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x3660, symBinAddr: 0x6BCD0, symSize: 0x10 } + - { offsetInCU: 0x12B1, offset: 0x92F3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x3670, symBinAddr: 0x6BCE0, symSize: 0x10 } + - { offsetInCU: 0x12C5, offset: 0x92F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x3680, symBinAddr: 0x6BCF0, symSize: 0x10 } + - { offsetInCU: 0x12D9, offset: 0x92F67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x3690, symBinAddr: 0x6BD00, symSize: 0x20 } + - { offsetInCU: 0x12ED, offset: 0x92F7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x36C0, symBinAddr: 0x6BD20, symSize: 0x10 } + - { offsetInCU: 0x1301, offset: 0x92F8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x36D0, symBinAddr: 0x6BD30, symSize: 0x10 } + - { offsetInCU: 0x1315, offset: 0x92FA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x36E0, symBinAddr: 0x6BD40, symSize: 0x30 } + - { offsetInCU: 0x1329, offset: 0x92FB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3710, symBinAddr: 0x6BD70, symSize: 0x10 } + - { offsetInCU: 0x133D, offset: 0x92FCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x3720, symBinAddr: 0x6BD80, symSize: 0x10 } + - { offsetInCU: 0x1351, offset: 0x92FDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3730, symBinAddr: 0x6BD90, symSize: 0x30 } + - { offsetInCU: 0x1365, offset: 0x92FF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x3760, symBinAddr: 0x6BDC0, symSize: 0x10 } + - { offsetInCU: 0x13D9, offset: 0x93067, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x39F0, symBinAddr: 0x6C020, symSize: 0x40 } + - { offsetInCU: 0x1438, offset: 0x930C6, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x48E0, symBinAddr: 0x6CEB0, symSize: 0x30 } + - { offsetInCU: 0x144C, offset: 0x930DA, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4910, symBinAddr: 0x6CEE0, symSize: 0x30 } + - { offsetInCU: 0x1460, offset: 0x930EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4980, symBinAddr: 0x6CF30, symSize: 0x20 } + - { offsetInCU: 0x1474, offset: 0x93102, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x49A0, symBinAddr: 0x6CF50, symSize: 0x20 } + - { offsetInCU: 0x1488, offset: 0x93116, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x49C0, symBinAddr: 0x6CF70, symSize: 0x10 } + - { offsetInCU: 0x149C, offset: 0x9312A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4A30, symBinAddr: 0x6CF80, symSize: 0x20 } + - { offsetInCU: 0x14B0, offset: 0x9313E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x4AE0, symBinAddr: 0x6D030, symSize: 0x10 } + - { offsetInCU: 0x15AE, offset: 0x9323C, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x190, symBinAddr: 0x68860, symSize: 0x160 } + - { offsetInCU: 0x1671, offset: 0x932FF, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x2F0, symBinAddr: 0x689C0, symSize: 0x150 } + - { offsetInCU: 0x1734, offset: 0x933C2, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x440, symBinAddr: 0x68B10, symSize: 0x90 } + - { offsetInCU: 0x18D6, offset: 0x93564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x900, symBinAddr: 0x68FD0, symSize: 0x10 } + - { offsetInCU: 0x1956, offset: 0x935E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x910, symBinAddr: 0x68FE0, symSize: 0xB0 } + - { offsetInCU: 0x19D8, offset: 0x93666, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x9C0, symBinAddr: 0x69090, symSize: 0x90 } + - { offsetInCU: 0x1A16, offset: 0x936A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA50, symBinAddr: 0x69120, symSize: 0xB0 } + - { offsetInCU: 0x1A7C, offset: 0x9370A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC40, symBinAddr: 0x69310, symSize: 0x10 } + - { offsetInCU: 0x1AFC, offset: 0x9378A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xC50, symBinAddr: 0x69320, symSize: 0x60 } + - { offsetInCU: 0x1BA7, offset: 0x93835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xCB0, symBinAddr: 0x69380, symSize: 0x40 } + - { offsetInCU: 0x1C0E, offset: 0x9389C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xCF0, symBinAddr: 0x693C0, symSize: 0x60 } + - { offsetInCU: 0x1FF8, offset: 0x93C86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x68710, symSize: 0x70 } + - { offsetInCU: 0x202F, offset: 0x93CBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x68780, symSize: 0x30 } + - { offsetInCU: 0x204A, offset: 0x93CD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x687B0, symSize: 0x70 } + - { offsetInCU: 0x2079, offset: 0x93D07, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x150, symBinAddr: 0x68820, symSize: 0x10 } + - { offsetInCU: 0x20ED, offset: 0x93D7B, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x160, symBinAddr: 0x68830, symSize: 0x30 } + - { offsetInCU: 0x2198, offset: 0x93E26, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x4D0, symBinAddr: 0x68BA0, symSize: 0xB0 } + - { offsetInCU: 0x234A, offset: 0x93FD8, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x580, symBinAddr: 0x68C50, symSize: 0x50 } + - { offsetInCU: 0x2431, offset: 0x940BF, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x5D0, symBinAddr: 0x68CA0, symSize: 0x90 } + - { offsetInCU: 0x24BF, offset: 0x9414D, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x660, symBinAddr: 0x68D30, symSize: 0x80 } + - { offsetInCU: 0x2531, offset: 0x941BF, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x6E0, symBinAddr: 0x68DB0, symSize: 0xD0 } + - { offsetInCU: 0x2660, offset: 0x942EE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x7B0, symBinAddr: 0x68E80, symSize: 0x40 } + - { offsetInCU: 0x26EE, offset: 0x9437C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x8E0, symBinAddr: 0x68FB0, symSize: 0x20 } + - { offsetInCU: 0x2750, offset: 0x943DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xBD0, symBinAddr: 0x692A0, symSize: 0x70 } + - { offsetInCU: 0x27FF, offset: 0x9448D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x1370, symBinAddr: 0x69A40, symSize: 0x960 } + - { offsetInCU: 0x2DA5, offset: 0x94A33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1CD0, symBinAddr: 0x6A3A0, symSize: 0x7A0 } + - { offsetInCU: 0x3114, offset: 0x94DA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2470, symBinAddr: 0x6AB40, symSize: 0x540 } + - { offsetInCU: 0x32CF, offset: 0x94F5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x29B0, symBinAddr: 0x6B080, symSize: 0x670 } + - { offsetInCU: 0x37A8, offset: 0x95436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x3020, symBinAddr: 0x6B6F0, symSize: 0x130 } + - { offsetInCU: 0x388A, offset: 0x95518, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x3150, symBinAddr: 0x6B820, symSize: 0x30 } + - { offsetInCU: 0x38C3, offset: 0x95551, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x3230, symBinAddr: 0x6B900, symSize: 0x10 } + - { offsetInCU: 0x38F0, offset: 0x9557E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x37A0, symBinAddr: 0x6BDD0, symSize: 0x20 } + - { offsetInCU: 0x3920, offset: 0x955AE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x37C0, symBinAddr: 0x6BDF0, symSize: 0x20 } + - { offsetInCU: 0x3950, offset: 0x955DE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x37E0, symBinAddr: 0x6BE10, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x95773, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6D070, symSize: 0x1A0 } + - { offsetInCU: 0x57, offset: 0x95787, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6D210, symSize: 0x90 } + - { offsetInCU: 0x6B, offset: 0x9579B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6D2A0, symSize: 0x170 } + - { offsetInCU: 0x7F, offset: 0x957AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6D410, symSize: 0x1F0 } + - { offsetInCU: 0x93, offset: 0x957C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6D600, symSize: 0xE0 } + - { offsetInCU: 0xA7, offset: 0x957D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x6D6E0, symSize: 0x1C0 } + - { offsetInCU: 0xBB, offset: 0x957EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x6D8A0, symSize: 0x20 } + - { offsetInCU: 0xCF, offset: 0x957FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x6D930, symSize: 0x20 } + - { offsetInCU: 0xE3, offset: 0x95813, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x6D9D0, symSize: 0x90 } + - { offsetInCU: 0xF7, offset: 0x95827, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x6DA60, symSize: 0x50 } + - { offsetInCU: 0x10B, offset: 0x9583B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x6DAB0, symSize: 0x120 } + - { offsetInCU: 0x11F, offset: 0x9584F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x6DBD0, symSize: 0x70 } + - { offsetInCU: 0x133, offset: 0x95863, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x6DC40, symSize: 0xF0 } + - { offsetInCU: 0x147, offset: 0x95877, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x6DD30, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x9588B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x6DE90, symSize: 0xC0 } + - { offsetInCU: 0x16F, offset: 0x9589F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x6DF50, symSize: 0x150 } + - { offsetInCU: 0x183, offset: 0x958B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x6E0A0, symSize: 0x20 } + - { offsetInCU: 0x197, offset: 0x958C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x6E130, symSize: 0x20 } + - { offsetInCU: 0x1AB, offset: 0x958DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x6E1F0, symSize: 0x80 } + - { offsetInCU: 0x239, offset: 0x95969, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1780, symBinAddr: 0x6E7B0, symSize: 0x10 } + - { offsetInCU: 0x28C, offset: 0x959BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A0, symBinAddr: 0x6E7D0, symSize: 0x20 } + - { offsetInCU: 0x306, offset: 0x95A36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x6E800, symSize: 0x80 } + - { offsetInCU: 0x33B, offset: 0x95A6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x6E880, symSize: 0x20 } + - { offsetInCU: 0x36C, offset: 0x95A9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x6E8A0, symSize: 0x10 } + - { offsetInCU: 0x388, offset: 0x95AB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x6E8B0, symSize: 0x10 } + - { offsetInCU: 0x3A4, offset: 0x95AD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F50, symBinAddr: 0x6FE50, symSize: 0x170 } + - { offsetInCU: 0x44E, offset: 0x95B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x6E900, symSize: 0x10 } + - { offsetInCU: 0x471, offset: 0x95BA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18E0, symBinAddr: 0x6E910, symSize: 0x10 } + - { offsetInCU: 0x4F2, offset: 0x95C22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AC0, symBinAddr: 0x6EAF0, symSize: 0x60 } + - { offsetInCU: 0x527, offset: 0x95C57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x6EB50, symSize: 0x20 } + - { offsetInCU: 0x558, offset: 0x95C88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B40, symBinAddr: 0x6EB70, symSize: 0x10 } + - { offsetInCU: 0x574, offset: 0x95CA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x6EB80, symSize: 0x10 } + - { offsetInCU: 0x590, offset: 0x95CC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30C0, symBinAddr: 0x6FFC0, symSize: 0x120 } + - { offsetInCU: 0x640, offset: 0x95D70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x6EBD0, symSize: 0x40 } + - { offsetInCU: 0x677, offset: 0x95DA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BE0, symBinAddr: 0x6EC10, symSize: 0x40 } + - { offsetInCU: 0x69A, offset: 0x95DCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31E0, symBinAddr: 0x700E0, symSize: 0x2B0 } + - { offsetInCU: 0x6FE, offset: 0x95E2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x6F4C0, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x95E63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24A0, symBinAddr: 0x6F4D0, symSize: 0x20 } + - { offsetInCU: 0x764, offset: 0x95E94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24C0, symBinAddr: 0x6F4F0, symSize: 0x10 } + - { offsetInCU: 0x780, offset: 0x95EB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24D0, symBinAddr: 0x6F500, symSize: 0x10 } + - { offsetInCU: 0x79C, offset: 0x95ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3490, symBinAddr: 0x70390, symSize: 0x270 } + - { offsetInCU: 0x8E8, offset: 0x96018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2520, symBinAddr: 0x6F550, symSize: 0x10 } + - { offsetInCU: 0x90B, offset: 0x9603B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2530, symBinAddr: 0x6F560, symSize: 0x10 } + - { offsetInCU: 0x92F, offset: 0x9605F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2570, symBinAddr: 0x6F570, symSize: 0x30 } + - { offsetInCU: 0x943, offset: 0x96073, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x25D0, symBinAddr: 0x6F5A0, symSize: 0x30 } + - { offsetInCU: 0x957, offset: 0x96087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2670, symBinAddr: 0x6F600, symSize: 0x30 } + - { offsetInCU: 0x96B, offset: 0x9609B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x26E0, symBinAddr: 0x6F630, symSize: 0x30 } + - { offsetInCU: 0x97F, offset: 0x960AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x27D0, symBinAddr: 0x6F720, symSize: 0x30 } + - { offsetInCU: 0x993, offset: 0x960C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2820, symBinAddr: 0x6F750, symSize: 0x80 } + - { offsetInCU: 0x9A7, offset: 0x960D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x28A0, symBinAddr: 0x6F7D0, symSize: 0xD0 } + - { offsetInCU: 0x9BB, offset: 0x960EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2970, symBinAddr: 0x6F8A0, symSize: 0x10 } + - { offsetInCU: 0x9CF, offset: 0x960FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2980, symBinAddr: 0x6F8B0, symSize: 0x10 } + - { offsetInCU: 0x9E3, offset: 0x96113, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x2990, symBinAddr: 0x6F8C0, symSize: 0x10 } + - { offsetInCU: 0x9F7, offset: 0x96127, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x29A0, symBinAddr: 0x6F8D0, symSize: 0x10 } + - { offsetInCU: 0xA0B, offset: 0x9613B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x29B0, symBinAddr: 0x6F8E0, symSize: 0x80 } + - { offsetInCU: 0xA1F, offset: 0x9614F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2A30, symBinAddr: 0x6F960, symSize: 0xD0 } + - { offsetInCU: 0xA33, offset: 0x96163, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2B00, symBinAddr: 0x6FA30, symSize: 0x10 } + - { offsetInCU: 0xA47, offset: 0x96177, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2B10, symBinAddr: 0x6FA40, symSize: 0x10 } + - { offsetInCU: 0xA5B, offset: 0x9618B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2B20, symBinAddr: 0x6FA50, symSize: 0x30 } + - { offsetInCU: 0xA6F, offset: 0x9619F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2B50, symBinAddr: 0x6FA80, symSize: 0x30 } + - { offsetInCU: 0xA83, offset: 0x961B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2B80, symBinAddr: 0x6FAB0, symSize: 0x70 } + - { offsetInCU: 0xA97, offset: 0x961C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2BF0, symBinAddr: 0x6FB20, symSize: 0x90 } + - { offsetInCU: 0xAAB, offset: 0x961DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2CB0, symBinAddr: 0x6FBB0, symSize: 0x70 } + - { offsetInCU: 0xABF, offset: 0x961EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2D20, symBinAddr: 0x6FC20, symSize: 0x50 } + - { offsetInCU: 0xAD3, offset: 0x96203, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2D70, symBinAddr: 0x6FC70, symSize: 0x50 } + - { offsetInCU: 0xAE7, offset: 0x96217, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2DC0, symBinAddr: 0x6FCC0, symSize: 0x10 } + - { offsetInCU: 0xAFB, offset: 0x9622B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2DD0, symBinAddr: 0x6FCD0, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x9623F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2DE0, symBinAddr: 0x6FCE0, symSize: 0x30 } + - { offsetInCU: 0xB23, offset: 0x96253, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2E10, symBinAddr: 0x6FD10, symSize: 0x10 } + - { offsetInCU: 0xB37, offset: 0x96267, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2E20, symBinAddr: 0x6FD20, symSize: 0x30 } + - { offsetInCU: 0xB4B, offset: 0x9627B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E50, symBinAddr: 0x6FD50, symSize: 0x10 } + - { offsetInCU: 0xB5F, offset: 0x9628F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E60, symBinAddr: 0x6FD60, symSize: 0x30 } + - { offsetInCU: 0xB73, offset: 0x962A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x6FD90, symSize: 0x10 } + - { offsetInCU: 0xB87, offset: 0x962B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2EA0, symBinAddr: 0x6FDA0, symSize: 0x30 } + - { offsetInCU: 0xB9B, offset: 0x962CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED0, symBinAddr: 0x6FDD0, symSize: 0x10 } + - { offsetInCU: 0xBAF, offset: 0x962DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EE0, symBinAddr: 0x6FDE0, symSize: 0x30 } + - { offsetInCU: 0xBC3, offset: 0x962F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F10, symBinAddr: 0x6FE10, symSize: 0x10 } + - { offsetInCU: 0xBD7, offset: 0x96307, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F20, symBinAddr: 0x6FE20, symSize: 0x30 } + - { offsetInCU: 0xBF6, offset: 0x96326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3700, symBinAddr: 0x70600, symSize: 0x30 } + - { offsetInCU: 0xC0A, offset: 0x9633A, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3730, symBinAddr: 0x70630, symSize: 0x40 } + - { offsetInCU: 0xC1E, offset: 0x9634E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x37E0, symBinAddr: 0x706E0, symSize: 0x80 } + - { offsetInCU: 0xC32, offset: 0x96362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3860, symBinAddr: 0x70760, symSize: 0xD0 } + - { offsetInCU: 0xC46, offset: 0x96376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3930, symBinAddr: 0x70830, symSize: 0x10 } + - { offsetInCU: 0xC5A, offset: 0x9638A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3940, symBinAddr: 0x70840, symSize: 0x10 } + - { offsetInCU: 0xC6E, offset: 0x9639E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3950, symBinAddr: 0x70850, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x963B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3960, symBinAddr: 0x70860, symSize: 0x30 } + - { offsetInCU: 0xC96, offset: 0x963C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3990, symBinAddr: 0x70890, symSize: 0x10 } + - { offsetInCU: 0xCAA, offset: 0x963DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39A0, symBinAddr: 0x708A0, symSize: 0x30 } + - { offsetInCU: 0xCBE, offset: 0x963EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39D0, symBinAddr: 0x708D0, symSize: 0x10 } + - { offsetInCU: 0xCD2, offset: 0x96402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39E0, symBinAddr: 0x708E0, symSize: 0x30 } + - { offsetInCU: 0xD00, offset: 0x96430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x6E8C0, symSize: 0x20 } + - { offsetInCU: 0xD1C, offset: 0x9644C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x6E8E0, symSize: 0x20 } + - { offsetInCU: 0xD3E, offset: 0x9646E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x6EB90, symSize: 0x20 } + - { offsetInCU: 0xD5A, offset: 0x9648A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B80, symBinAddr: 0x6EBB0, symSize: 0x20 } + - { offsetInCU: 0xD7C, offset: 0x964AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24E0, symBinAddr: 0x6F510, symSize: 0x20 } + - { offsetInCU: 0xD98, offset: 0x964C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2500, symBinAddr: 0x6F530, symSize: 0x20 } + - { offsetInCU: 0xEA5, offset: 0x965D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1240, symBinAddr: 0x6E270, symSize: 0x1F0 } + - { offsetInCU: 0xEDC, offset: 0x9660C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1430, symBinAddr: 0x6E460, symSize: 0x350 } + - { offsetInCU: 0xF57, offset: 0x96687, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x6E920, symSize: 0x1B0 } + - { offsetInCU: 0xFA2, offset: 0x966D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1C20, symBinAddr: 0x6EC50, symSize: 0xB0 } + - { offsetInCU: 0xFC3, offset: 0x966F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CD0, symBinAddr: 0x6ED00, symSize: 0x2B0 } + - { offsetInCU: 0xFFA, offset: 0x9672A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F80, symBinAddr: 0x6EFB0, symSize: 0x470 } + - { offsetInCU: 0x27, offset: 0x967B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x70990, symSize: 0x30 } + - { offsetInCU: 0x106, offset: 0x96890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x70AA0, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x968A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x70AD0, symSize: 0x30 } + - { offsetInCU: 0x12E, offset: 0x968B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x70B00, symSize: 0x40 } + - { offsetInCU: 0x142, offset: 0x968CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x70B40, symSize: 0x60 } + - { offsetInCU: 0x156, offset: 0x968E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x70BA0, symSize: 0x50 } + - { offsetInCU: 0x16A, offset: 0x968F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x70BF0, symSize: 0x40 } + - { offsetInCU: 0x17E, offset: 0x96908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x70C30, symSize: 0x50 } + - { offsetInCU: 0x192, offset: 0x9691C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x70C80, symSize: 0xA } + - { offsetInCU: 0x2A1, offset: 0x96A2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x70990, symSize: 0x30 } + - { offsetInCU: 0x2BB, offset: 0x96A45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x709C0, symSize: 0x30 } + - { offsetInCU: 0x2EF, offset: 0x96A79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x709F0, symSize: 0x10 } + - { offsetInCU: 0x303, offset: 0x96A8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x70A00, symSize: 0x10 } + - { offsetInCU: 0x324, offset: 0x96AAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x70A10, symSize: 0x30 } + - { offsetInCU: 0x338, offset: 0x96AC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x70A40, symSize: 0x30 } + - { offsetInCU: 0x36C, offset: 0x96AF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x70A70, symSize: 0x20 } + - { offsetInCU: 0x390, offset: 0x96B1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x70A90, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x96B6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x70C90, symSize: 0x20 } + - { offsetInCU: 0x87, offset: 0x96BCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x540, symBinAddr: 0x711D0, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x96BE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x550, symBinAddr: 0x711E0, symSize: 0x20 } + - { offsetInCU: 0xD8, offset: 0x96C1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x450, symBinAddr: 0x710E0, symSize: 0x10 } + - { offsetInCU: 0xEC, offset: 0x96C31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x460, symBinAddr: 0x710F0, symSize: 0x30 } + - { offsetInCU: 0x120, offset: 0x96C65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x590, symBinAddr: 0x71200, symSize: 0x80 } + - { offsetInCU: 0x134, offset: 0x96C79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x610, symBinAddr: 0x71280, symSize: 0xD0 } + - { offsetInCU: 0x148, offset: 0x96C8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x6E0, symBinAddr: 0x71350, symSize: 0x10 } + - { offsetInCU: 0x15C, offset: 0x96CA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x6F0, symBinAddr: 0x71360, symSize: 0x10 } + - { offsetInCU: 0x170, offset: 0x96CB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x700, symBinAddr: 0x71370, symSize: 0x10 } + - { offsetInCU: 0x184, offset: 0x96CC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x710, symBinAddr: 0x71380, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x96D39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0x720, symBinAddr: 0x71390, symSize: 0x113 } + - { offsetInCU: 0x421, offset: 0x96F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x430, symBinAddr: 0x710C0, symSize: 0x20 } + - { offsetInCU: 0x4F4, offset: 0x97039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x490, symBinAddr: 0x71120, symSize: 0x40 } + - { offsetInCU: 0x5CC, offset: 0x97111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4D0, symBinAddr: 0x71160, symSize: 0x30 } + - { offsetInCU: 0x648, offset: 0x9718D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x500, symBinAddr: 0x71190, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x97352, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x70C90, symSize: 0x20 } + - { offsetInCU: 0x82E, offset: 0x97373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x20, symBinAddr: 0x70CB0, symSize: 0x410 } + - { offsetInCU: 0x2B, offset: 0x9743A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x714B0, symSize: 0x20 } + - { offsetInCU: 0x7C, offset: 0x9748B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x714D0, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x97591, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x714B0, symSize: 0x20 } + - { offsetInCU: 0x4F, offset: 0x97621, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x2010, symBinAddr: 0x8BEE8, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x97B89, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xB0, symBinAddr: 0x715A0, symSize: 0x50 } + - { offsetInCU: 0x5CF, offset: 0x97BA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x100, symBinAddr: 0x715F0, symSize: 0x80 } + - { offsetInCU: 0x71F, offset: 0x97CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1A60, symBinAddr: 0x72EA0, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x97D05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x1A70, symBinAddr: 0x72EB0, symSize: 0x10 } + - { offsetInCU: 0x747, offset: 0x97D19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1A80, symBinAddr: 0x72EC0, symSize: 0x10 } + - { offsetInCU: 0x75B, offset: 0x97D2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x1A90, symBinAddr: 0x72ED0, symSize: 0x10 } + - { offsetInCU: 0x76F, offset: 0x97D41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1AA0, symBinAddr: 0x72EE0, symSize: 0x10 } + - { offsetInCU: 0x783, offset: 0x97D55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x1B00, symBinAddr: 0x72EF0, symSize: 0x20 } + - { offsetInCU: 0x797, offset: 0x97D69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOb', symObjAddr: 0x1B20, symBinAddr: 0x72F10, symSize: 0x40 } + - { offsetInCU: 0x7AB, offset: 0x97D7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOd', symObjAddr: 0x1B60, symBinAddr: 0x72F50, symSize: 0x40 } + - { offsetInCU: 0x7BF, offset: 0x97D91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1ED0, symBinAddr: 0x732A0, symSize: 0x10 } + - { offsetInCU: 0x7D3, offset: 0x97DA5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1EE0, symBinAddr: 0x732B0, symSize: 0x20 } + - { offsetInCU: 0x7E7, offset: 0x97DB9, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1F00, symBinAddr: 0x732D0, symSize: 0x10 } + - { offsetInCU: 0x830, offset: 0x97E02, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1F10, symBinAddr: 0x732E0, symSize: 0x20 } + - { offsetInCU: 0x89F, offset: 0x97E71, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x714F0, symSize: 0x10 } + - { offsetInCU: 0x8BB, offset: 0x97E8D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x10, symBinAddr: 0x71500, symSize: 0x10 } + - { offsetInCU: 0x8D7, offset: 0x97EA9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x20, symBinAddr: 0x71510, symSize: 0x10 } + - { offsetInCU: 0x8F3, offset: 0x97EC5, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x30, symBinAddr: 0x71520, symSize: 0x10 } + - { offsetInCU: 0x90F, offset: 0x97EE1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x40, symBinAddr: 0x71530, symSize: 0x10 } + - { offsetInCU: 0x92B, offset: 0x97EFD, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x71540, symSize: 0x10 } + - { offsetInCU: 0x947, offset: 0x97F19, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x60, symBinAddr: 0x71550, symSize: 0x10 } + - { offsetInCU: 0x963, offset: 0x97F35, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x70, symBinAddr: 0x71560, symSize: 0x20 } + - { offsetInCU: 0x97F, offset: 0x97F51, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x90, symBinAddr: 0x71580, symSize: 0x20 } + - { offsetInCU: 0xBD3, offset: 0x981A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0x180, symBinAddr: 0x71670, symSize: 0x30 } + - { offsetInCU: 0xC97, offset: 0x98269, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1B0, symBinAddr: 0x716A0, symSize: 0x640 } + - { offsetInCU: 0xF16, offset: 0x984E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x830, symBinAddr: 0x71CE0, symSize: 0x50 } + - { offsetInCU: 0xF85, offset: 0x98557, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x880, symBinAddr: 0x71D30, symSize: 0x50 } + - { offsetInCU: 0xFF4, offset: 0x985C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x8D0, symBinAddr: 0x71D80, symSize: 0x50 } + - { offsetInCU: 0x1063, offset: 0x98635, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x920, symBinAddr: 0x71DD0, symSize: 0x50 } + - { offsetInCU: 0x10D2, offset: 0x986A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x970, symBinAddr: 0x71E20, symSize: 0x50 } + - { offsetInCU: 0x11A6, offset: 0x98778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x9C0, symBinAddr: 0x71E70, symSize: 0x40 } + - { offsetInCU: 0x1210, offset: 0x987E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xA00, symBinAddr: 0x71EB0, symSize: 0x10 } + - { offsetInCU: 0x1253, offset: 0x98825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA10, symBinAddr: 0x71EC0, symSize: 0x50 } + - { offsetInCU: 0x12CA, offset: 0x9889C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0xB80, symBinAddr: 0x72030, symSize: 0x30 } + - { offsetInCU: 0x132D, offset: 0x988FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xBB0, symBinAddr: 0x72060, symSize: 0x50 } + - { offsetInCU: 0x13A4, offset: 0x98976, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xC00, symBinAddr: 0x720B0, symSize: 0x40 } + - { offsetInCU: 0x1430, offset: 0x98A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xC40, symBinAddr: 0x720F0, symSize: 0x80 } + - { offsetInCU: 0x14CB, offset: 0x98A9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xCC0, symBinAddr: 0x72170, symSize: 0x70 } + - { offsetInCU: 0x157A, offset: 0x98B4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xD30, symBinAddr: 0x721E0, symSize: 0x80 } + - { offsetInCU: 0x1615, offset: 0x98BE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xDB0, symBinAddr: 0x72260, symSize: 0x30 } + - { offsetInCU: 0x1690, offset: 0x98C62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xDE0, symBinAddr: 0x72290, symSize: 0x30 } + - { offsetInCU: 0x170B, offset: 0x98CDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE10, symBinAddr: 0x722C0, symSize: 0x40 } + - { offsetInCU: 0x1789, offset: 0x98D5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE50, symBinAddr: 0x72300, symSize: 0x40 } + - { offsetInCU: 0x1807, offset: 0x98DD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE90, symBinAddr: 0x72340, symSize: 0x40 } + - { offsetInCU: 0x1885, offset: 0x98E57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xED0, symBinAddr: 0x72380, symSize: 0x40 } + - { offsetInCU: 0x1903, offset: 0x98ED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF10, symBinAddr: 0x723C0, symSize: 0x40 } + - { offsetInCU: 0x1981, offset: 0x98F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xF50, symBinAddr: 0x72400, symSize: 0x30 } + - { offsetInCU: 0x19DF, offset: 0x98FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xF80, symBinAddr: 0x72430, symSize: 0x40 } + - { offsetInCU: 0x1A76, offset: 0x99048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xFC0, symBinAddr: 0x72470, symSize: 0x130 } + - { offsetInCU: 0x1B48, offset: 0x9911A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0x10F0, symBinAddr: 0x725A0, symSize: 0xB0 } + - { offsetInCU: 0x1C1A, offset: 0x991EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x11A0, symBinAddr: 0x72650, symSize: 0x90 } + - { offsetInCU: 0x1CB0, offset: 0x99282, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1230, symBinAddr: 0x726E0, symSize: 0xF0 } + - { offsetInCU: 0x1CD3, offset: 0x992A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1320, symBinAddr: 0x727D0, symSize: 0x20 } + - { offsetInCU: 0x1D11, offset: 0x992E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x13B0, symBinAddr: 0x727F0, symSize: 0x310 } + - { offsetInCU: 0x1DE2, offset: 0x993B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x16C0, symBinAddr: 0x72B00, symSize: 0x3A0 } ... diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket index 054c36d..b37c996 100644 Binary files a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket and b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/DWARF/MqttCocoaAsyncSocket differ diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml index ca9184b..86615ca 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/aarch64/MqttCocoaAsyncSocket.yml @@ -2,684 +2,684 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket' relocations: - - { offsetInCU: 0x34, offset: 0x536A1, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x22338, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x536D6, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x22370, symSize: 0x0 } - - { offsetInCU: 0x41, offset: 0x5372D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x10AC0, symBinAddr: 0x28108, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x5374D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x10AC8, symBinAddr: 0x28110, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x53763, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x10AD0, symBinAddr: 0x28118, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x53779, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x10AD8, symBinAddr: 0x28120, symSize: 0x0 } - - { offsetInCU: 0xA3, offset: 0x5378F, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x10AE0, symBinAddr: 0x28128, symSize: 0x0 } - - { offsetInCU: 0xB9, offset: 0x537A5, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x10AE8, symBinAddr: 0x28130, symSize: 0x0 } - - { offsetInCU: 0xCF, offset: 0x537BB, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x10AF0, symBinAddr: 0x28138, symSize: 0x0 } - - { offsetInCU: 0xE5, offset: 0x537D1, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x10AF8, symBinAddr: 0x28140, symSize: 0x0 } - - { offsetInCU: 0xFB, offset: 0x537E7, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x10B00, symBinAddr: 0x28148, symSize: 0x0 } - - { offsetInCU: 0x111, offset: 0x537FD, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x10B08, symBinAddr: 0x28150, symSize: 0x0 } - - { offsetInCU: 0x127, offset: 0x53813, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x10B10, symBinAddr: 0x28158, symSize: 0x0 } - - { offsetInCU: 0x13D, offset: 0x53829, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x10B18, symBinAddr: 0x28160, symSize: 0x0 } - - { offsetInCU: 0x153, offset: 0x5383F, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x10B20, symBinAddr: 0x28168, symSize: 0x0 } - - { offsetInCU: 0x16B, offset: 0x53857, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xAB34, symBinAddr: 0xE888, symSize: 0x4F0 } - - { offsetInCU: 0x48C, offset: 0x53B78, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xCD4C, symBinAddr: 0x10AA0, symSize: 0x8C } - - { offsetInCU: 0x4B4, offset: 0x53BA0, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x56258, symBinAddr: 0x2EAB8, symSize: 0x0 } - - { offsetInCU: 0x51C, offset: 0x53C08, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x56270, symBinAddr: 0x2EAD0, symSize: 0x0 } - - { offsetInCU: 0x537, offset: 0x53C23, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x56260, symBinAddr: 0x2EAC0, symSize: 0x0 } - - { offsetInCU: 0x554, offset: 0x53C40, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x56268, symBinAddr: 0x2EAC8, symSize: 0x0 } - - { offsetInCU: 0xB90, offset: 0x5427C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0x3D54, symSize: 0x18 } - - { offsetInCU: 0xBC7, offset: 0x542B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0x18, symBinAddr: 0x3D6C, symSize: 0x60 } - - { offsetInCU: 0xC0E, offset: 0x542FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x78, symBinAddr: 0x3DCC, symSize: 0x4C } - - { offsetInCU: 0xC41, offset: 0x5432D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xC4, symBinAddr: 0x3E18, symSize: 0x64 } - - { offsetInCU: 0xCF9, offset: 0x543E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x128, symBinAddr: 0x3E7C, symSize: 0xC } - - { offsetInCU: 0xD31, offset: 0x5441D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x134, symBinAddr: 0x3E88, symSize: 0x8 } - - { offsetInCU: 0xD69, offset: 0x54455, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x13C, symBinAddr: 0x3E90, symSize: 0x34 } - - { offsetInCU: 0xDBF, offset: 0x544AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x170, symBinAddr: 0x3EC4, symSize: 0x24 } - - { offsetInCU: 0xE00, offset: 0x544EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x194, symBinAddr: 0x3EE8, symSize: 0x14 } - - { offsetInCU: 0xE38, offset: 0x54524, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x1A8, symBinAddr: 0x3EFC, symSize: 0x8 } - - { offsetInCU: 0xE70, offset: 0x5455C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x1B0, symBinAddr: 0x3F04, symSize: 0x34 } - - { offsetInCU: 0xEC6, offset: 0x545B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1E4, symBinAddr: 0x3F38, symSize: 0x10 } - - { offsetInCU: 0xF07, offset: 0x545F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1F4, symBinAddr: 0x3F48, symSize: 0xC } - - { offsetInCU: 0xF39, offset: 0x54625, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x200, symBinAddr: 0x3F54, symSize: 0x18 } - - { offsetInCU: 0xF71, offset: 0x5465D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x218, symBinAddr: 0x3F6C, symSize: 0x144 } - - { offsetInCU: 0x1020, offset: 0x5470C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x35C, symBinAddr: 0x40B0, symSize: 0x50 } - - { offsetInCU: 0x10B4, offset: 0x547A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x3AC, symBinAddr: 0x4100, symSize: 0x88 } - - { offsetInCU: 0x118C, offset: 0x54878, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x434, symBinAddr: 0x4188, symSize: 0x2C } - - { offsetInCU: 0x11F1, offset: 0x548DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x460, symBinAddr: 0x41B4, symSize: 0x6C } - - { offsetInCU: 0x12B8, offset: 0x549A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x4CC, symBinAddr: 0x4220, symSize: 0x234 } - - { offsetInCU: 0x144A, offset: 0x54B36, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x700, symBinAddr: 0x4454, symSize: 0xB0 } - - { offsetInCU: 0x1504, offset: 0x54BF0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7B0, symBinAddr: 0x4504, symSize: 0x30 } - - { offsetInCU: 0x1538, offset: 0x54C24, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7E0, symBinAddr: 0x4534, symSize: 0x18 } - - { offsetInCU: 0x1570, offset: 0x54C5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x7F8, symBinAddr: 0x454C, symSize: 0x90 } - - { offsetInCU: 0x15DB, offset: 0x54CC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x888, symBinAddr: 0x45DC, symSize: 0xC } - - { offsetInCU: 0x160F, offset: 0x54CFB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x894, symBinAddr: 0x45E8, symSize: 0x18 } - - { offsetInCU: 0x1647, offset: 0x54D33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8AC, symBinAddr: 0x4600, symSize: 0x78 } - - { offsetInCU: 0x1690, offset: 0x54D7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x924, symBinAddr: 0x4678, symSize: 0xC } - - { offsetInCU: 0x16C4, offset: 0x54DB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x930, symBinAddr: 0x4684, symSize: 0x10 } - - { offsetInCU: 0x16FA, offset: 0x54DE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x940, symBinAddr: 0x4694, symSize: 0x10 } - - { offsetInCU: 0x1743, offset: 0x54E2F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x950, symBinAddr: 0x46A4, symSize: 0x8 } - - { offsetInCU: 0x1797, offset: 0x54E83, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x958, symBinAddr: 0x46AC, symSize: 0x1B0 } - - { offsetInCU: 0x189B, offset: 0x54F87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB08, symBinAddr: 0x485C, symSize: 0xC8 } - - { offsetInCU: 0x1920, offset: 0x5500C, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xBD0, symBinAddr: 0x4924, symSize: 0xC } - - { offsetInCU: 0x1962, offset: 0x5504E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xBDC, symBinAddr: 0x4930, symSize: 0x8 } - - { offsetInCU: 0x1989, offset: 0x55075, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xBE4, symBinAddr: 0x4938, symSize: 0x8 } - - { offsetInCU: 0x19A8, offset: 0x55094, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xBEC, symBinAddr: 0x4940, symSize: 0x14 } - - { offsetInCU: 0x1A0F, offset: 0x550FB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xC00, symBinAddr: 0x4954, symSize: 0xC } - - { offsetInCU: 0x1A83, offset: 0x5516F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xC0C, symBinAddr: 0x4960, symSize: 0x1C0 } - - { offsetInCU: 0x1B6A, offset: 0x55256, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xDCC, symBinAddr: 0x4B20, symSize: 0x10 } - - { offsetInCU: 0x1B8F, offset: 0x5527B, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xDDC, symBinAddr: 0x4B30, symSize: 0x8 } - - { offsetInCU: 0x1BAE, offset: 0x5529A, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xDE4, symBinAddr: 0x4B38, symSize: 0x21C } - - { offsetInCU: 0x1D01, offset: 0x553ED, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0x1000, symBinAddr: 0x4D54, symSize: 0x44 } - - { offsetInCU: 0x1D2A, offset: 0x55416, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1044, symBinAddr: 0x4D98, symSize: 0x38 } - - { offsetInCU: 0x1D49, offset: 0x55435, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x107C, symBinAddr: 0x4DD0, symSize: 0xD0 } - - { offsetInCU: 0x1DC9, offset: 0x554B5, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x114C, symBinAddr: 0x4EA0, symSize: 0x3C } - - { offsetInCU: 0x1E1C, offset: 0x55508, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x1188, symBinAddr: 0x4EDC, symSize: 0x34 } - - { offsetInCU: 0x1E45, offset: 0x55531, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x11BC, symBinAddr: 0x4F10, symSize: 0x2C } - - { offsetInCU: 0x1E64, offset: 0x55550, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x11E8, symBinAddr: 0x4F3C, symSize: 0xCC } - - { offsetInCU: 0x1F1C, offset: 0x55608, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x12B4, symBinAddr: 0x5008, symSize: 0xC } - - { offsetInCU: 0x1F6F, offset: 0x5565B, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x12C0, symBinAddr: 0x5014, symSize: 0x28 } - - { offsetInCU: 0x1F98, offset: 0x55684, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x12E8, symBinAddr: 0x503C, symSize: 0x28 } - - { offsetInCU: 0x1FB7, offset: 0x556A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x1310, symBinAddr: 0x5064, symSize: 0x8 } - - { offsetInCU: 0x1FF8, offset: 0x556E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x1318, symBinAddr: 0x506C, symSize: 0x8 } - - { offsetInCU: 0x2039, offset: 0x55725, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x1320, symBinAddr: 0x5074, symSize: 0xD0 } - - { offsetInCU: 0x20B9, offset: 0x557A5, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x13F0, symBinAddr: 0x5144, symSize: 0x14 } - - { offsetInCU: 0x210C, offset: 0x557F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x1404, symBinAddr: 0x5158, symSize: 0xCC } - - { offsetInCU: 0x21B1, offset: 0x5589D, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x14D0, symBinAddr: 0x5224, symSize: 0xC } - - { offsetInCU: 0x2204, offset: 0x558F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x14DC, symBinAddr: 0x5230, symSize: 0x8 } - - { offsetInCU: 0x2245, offset: 0x55931, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x14E4, symBinAddr: 0x5238, symSize: 0x8 } - - { offsetInCU: 0x2286, offset: 0x55972, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x14EC, symBinAddr: 0x5240, symSize: 0x138 } - - { offsetInCU: 0x233B, offset: 0x55A27, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x1624, symBinAddr: 0x5378, symSize: 0x54 } - - { offsetInCU: 0x239F, offset: 0x55A8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1678, symBinAddr: 0x53CC, symSize: 0x10C } - - { offsetInCU: 0x2455, offset: 0x55B41, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1784, symBinAddr: 0x54D8, symSize: 0x34 } - - { offsetInCU: 0x24B9, offset: 0x55BA5, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x17B8, symBinAddr: 0x550C, symSize: 0x30 } - - { offsetInCU: 0x24E2, offset: 0x55BCE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x17E8, symBinAddr: 0x553C, symSize: 0x30 } - - { offsetInCU: 0x2501, offset: 0x55BED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x1818, symBinAddr: 0x556C, symSize: 0x8 } - - { offsetInCU: 0x2551, offset: 0x55C3D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x1820, symBinAddr: 0x5574, symSize: 0x8 } - - { offsetInCU: 0x25A1, offset: 0x55C8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x1828, symBinAddr: 0x557C, symSize: 0xB0 } - - { offsetInCU: 0x2621, offset: 0x55D0D, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x18D8, symBinAddr: 0x562C, symSize: 0x1C } - - { offsetInCU: 0x267C, offset: 0x55D68, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x18F4, symBinAddr: 0x5648, symSize: 0x94 } - - { offsetInCU: 0x2706, offset: 0x55DF2, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1988, symBinAddr: 0x56DC, symSize: 0x20 } - - { offsetInCU: 0x275B, offset: 0x55E47, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x19A8, symBinAddr: 0x56FC, symSize: 0xB0 } - - { offsetInCU: 0x27DB, offset: 0x55EC7, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1A58, symBinAddr: 0x57AC, symSize: 0x1C } - - { offsetInCU: 0x2836, offset: 0x55F22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1A74, symBinAddr: 0x57C8, symSize: 0x94 } - - { offsetInCU: 0x28C0, offset: 0x55FAC, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1B08, symBinAddr: 0x585C, symSize: 0x24 } - - { offsetInCU: 0x2915, offset: 0x56001, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1B2C, symBinAddr: 0x5880, symSize: 0xB0 } - - { offsetInCU: 0x2995, offset: 0x56081, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1BDC, symBinAddr: 0x5930, symSize: 0x1C } - - { offsetInCU: 0x29F0, offset: 0x560DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1BF8, symBinAddr: 0x594C, symSize: 0x94 } - - { offsetInCU: 0x2A7A, offset: 0x56166, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1C8C, symBinAddr: 0x59E0, symSize: 0x24 } - - { offsetInCU: 0x2ACF, offset: 0x561BB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1CB0, symBinAddr: 0x5A04, symSize: 0xDC } - - { offsetInCU: 0x2B65, offset: 0x56251, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1D8C, symBinAddr: 0x5AE0, symSize: 0x14 } - - { offsetInCU: 0x2BC0, offset: 0x562AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1DA0, symBinAddr: 0x5AF4, symSize: 0x94 } - - { offsetInCU: 0x2C4E, offset: 0x5633A, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1E34, symBinAddr: 0x5B88, symSize: 0x10 } - - { offsetInCU: 0x2CA3, offset: 0x5638F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1E44, symBinAddr: 0x5B98, symSize: 0xFC } - - { offsetInCU: 0x2D39, offset: 0x56425, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x1F40, symBinAddr: 0x5C94, symSize: 0x14 } - - { offsetInCU: 0x2D8C, offset: 0x56478, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x1F54, symBinAddr: 0x5CA8, symSize: 0xBC } - - { offsetInCU: 0x2E1A, offset: 0x56506, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x2010, symBinAddr: 0x5D64, symSize: 0x1C } - - { offsetInCU: 0x2E6D, offset: 0x56559, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x202C, symBinAddr: 0x5D80, symSize: 0x10 } - - { offsetInCU: 0x2EC5, offset: 0x565B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x203C, symBinAddr: 0x5D90, symSize: 0x210 } - - { offsetInCU: 0x2FC7, offset: 0x566B3, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x224C, symBinAddr: 0x5FA0, symSize: 0x1E8 } - - { offsetInCU: 0x32A7, offset: 0x56993, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.117', symObjAddr: 0x2434, symBinAddr: 0x6188, symSize: 0x4DC } - - { offsetInCU: 0x367F, offset: 0x56D6B, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x2910, symBinAddr: 0x6664, symSize: 0x7C } - - { offsetInCU: 0x3742, offset: 0x56E2E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x298C, symBinAddr: 0x66E0, symSize: 0x30 } - - { offsetInCU: 0x376B, offset: 0x56E57, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x29BC, symBinAddr: 0x6710, symSize: 0x28 } - - { offsetInCU: 0x378A, offset: 0x56E76, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.132', symObjAddr: 0x29E4, symBinAddr: 0x6738, symSize: 0x8 } - - { offsetInCU: 0x37D6, offset: 0x56EC2, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.134', symObjAddr: 0x29EC, symBinAddr: 0x6740, symSize: 0x7C } - - { offsetInCU: 0x3886, offset: 0x56F72, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2A68, symBinAddr: 0x67BC, symSize: 0x8 } - - { offsetInCU: 0x38D2, offset: 0x56FBE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2A70, symBinAddr: 0x67C4, symSize: 0x5C } - - { offsetInCU: 0x38FB, offset: 0x56FE7, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2ACC, symBinAddr: 0x6820, symSize: 0x48 } - - { offsetInCU: 0x391A, offset: 0x57006, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2B14, symBinAddr: 0x6868, symSize: 0x1F0 } - - { offsetInCU: 0x39FA, offset: 0x570E6, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2D04, symBinAddr: 0x6A58, symSize: 0x1E8 } - - { offsetInCU: 0x3C0B, offset: 0x572F7, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x2EEC, symBinAddr: 0x6C40, symSize: 0x360 } - - { offsetInCU: 0x3E17, offset: 0x57503, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x324C, symBinAddr: 0x6FA0, symSize: 0x78 } - - { offsetInCU: 0x3EC7, offset: 0x575B3, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x32C4, symBinAddr: 0x7018, symSize: 0x8 } - - { offsetInCU: 0x3F13, offset: 0x575FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x32CC, symBinAddr: 0x7020, symSize: 0x254 } - - { offsetInCU: 0x4166, offset: 0x57852, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x3520, symBinAddr: 0x7274, symSize: 0x148 } - - { offsetInCU: 0x423A, offset: 0x57926, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3668, symBinAddr: 0x73BC, symSize: 0x34 } - - { offsetInCU: 0x4289, offset: 0x57975, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x369C, symBinAddr: 0x73F0, symSize: 0x1D4 } - - { offsetInCU: 0x43A2, offset: 0x57A8E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x3870, symBinAddr: 0x75C4, symSize: 0x12C } - - { offsetInCU: 0x4489, offset: 0x57B75, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x399C, symBinAddr: 0x76F0, symSize: 0x8 } - - { offsetInCU: 0x44EC, offset: 0x57BD8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x39A4, symBinAddr: 0x76F8, symSize: 0xC } - - { offsetInCU: 0x4561, offset: 0x57C4D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x39B0, symBinAddr: 0x7704, symSize: 0x200 } - - { offsetInCU: 0x4685, offset: 0x57D71, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x3BB0, symBinAddr: 0x7904, symSize: 0x1C4 } - - { offsetInCU: 0x47E8, offset: 0x57ED4, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x3D74, symBinAddr: 0x7AC8, symSize: 0x2D4 } - - { offsetInCU: 0x493C, offset: 0x58028, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x4048, symBinAddr: 0x7D9C, symSize: 0x34 } - - { offsetInCU: 0x499C, offset: 0x58088, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.153', symObjAddr: 0x407C, symBinAddr: 0x7DD0, symSize: 0x38 } - - { offsetInCU: 0x4A0D, offset: 0x580F9, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x40B4, symBinAddr: 0x7E08, symSize: 0x38 } - - { offsetInCU: 0x4A36, offset: 0x58122, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x40EC, symBinAddr: 0x7E40, symSize: 0x30 } - - { offsetInCU: 0x4A55, offset: 0x58141, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x411C, symBinAddr: 0x7E70, symSize: 0x54 } - - { offsetInCU: 0x4A7E, offset: 0x5816A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x4170, symBinAddr: 0x7EC4, symSize: 0x10 } - - { offsetInCU: 0x4AD4, offset: 0x581C0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x4180, symBinAddr: 0x7ED4, symSize: 0xC } - - { offsetInCU: 0x4B3A, offset: 0x58226, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x418C, symBinAddr: 0x7EE0, symSize: 0x208 } - - { offsetInCU: 0x4C4D, offset: 0x58339, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4394, symBinAddr: 0x80E8, symSize: 0x1C8 } - - { offsetInCU: 0x4DA3, offset: 0x5848F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x455C, symBinAddr: 0x82B0, symSize: 0x194 } - - { offsetInCU: 0x4E83, offset: 0x5856F, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x46F0, symBinAddr: 0x8444, symSize: 0x12C } - - { offsetInCU: 0x4F49, offset: 0x58635, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x481C, symBinAddr: 0x8570, symSize: 0x4C } - - { offsetInCU: 0x4F72, offset: 0x5865E, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4868, symBinAddr: 0x85BC, symSize: 0x40 } - - { offsetInCU: 0x4F91, offset: 0x5867D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x48A8, symBinAddr: 0x85FC, symSize: 0x12C } - - { offsetInCU: 0x503C, offset: 0x58728, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x49D4, symBinAddr: 0x8728, symSize: 0xF0 } - - { offsetInCU: 0x510A, offset: 0x587F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x4AC4, symBinAddr: 0x8818, symSize: 0x58 } - - { offsetInCU: 0x5160, offset: 0x5884C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x4B1C, symBinAddr: 0x8870, symSize: 0xFC } - - { offsetInCU: 0x526B, offset: 0x58957, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x4C18, symBinAddr: 0x896C, symSize: 0xE4 } - - { offsetInCU: 0x534E, offset: 0x58A3A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x4CFC, symBinAddr: 0x8A50, symSize: 0x114 } - - { offsetInCU: 0x540F, offset: 0x58AFB, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x4E10, symBinAddr: 0x8B64, symSize: 0xE4 } - - { offsetInCU: 0x5532, offset: 0x58C1E, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x4EF4, symBinAddr: 0x8C48, symSize: 0xD4 } - - { offsetInCU: 0x55E9, offset: 0x58CD5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x4FC8, symBinAddr: 0x8D1C, symSize: 0x7C } - - { offsetInCU: 0x5644, offset: 0x58D30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x5044, symBinAddr: 0x8D98, symSize: 0x24 } - - { offsetInCU: 0x5687, offset: 0x58D73, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5068, symBinAddr: 0x8DBC, symSize: 0x1DC } - - { offsetInCU: 0x57BD, offset: 0x58EA9, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5244, symBinAddr: 0x8F98, symSize: 0x10 } - - { offsetInCU: 0x5832, offset: 0x58F1E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5254, symBinAddr: 0x8FA8, symSize: 0x158 } - - { offsetInCU: 0x59A0, offset: 0x5908C, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x53AC, symBinAddr: 0x9100, symSize: 0x9C } - - { offsetInCU: 0x5A9C, offset: 0x59188, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0xE6E4, symBinAddr: 0x1E0F8, symSize: 0xC0 } - - { offsetInCU: 0x5AD5, offset: 0x591C1, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5448, symBinAddr: 0x919C, symSize: 0x34 } - - { offsetInCU: 0x5B28, offset: 0x59214, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x547C, symBinAddr: 0x91D0, symSize: 0x34 } - - { offsetInCU: 0x5B8C, offset: 0x59278, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x54B0, symBinAddr: 0x9204, symSize: 0x310 } - - { offsetInCU: 0x5D1C, offset: 0x59408, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x57C0, symBinAddr: 0x9514, symSize: 0x84 } - - { offsetInCU: 0x5D5E, offset: 0x5944A, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x5844, symBinAddr: 0x9598, symSize: 0x90 } - - { offsetInCU: 0x5DB1, offset: 0x5949D, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x58D4, symBinAddr: 0x9628, symSize: 0xA0 } - - { offsetInCU: 0x5E54, offset: 0x59540, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x5974, symBinAddr: 0x96C8, symSize: 0x34 } - - { offsetInCU: 0x5E9E, offset: 0x5958A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x59A8, symBinAddr: 0x96FC, symSize: 0x10 } - - { offsetInCU: 0x5EC7, offset: 0x595B3, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x59B8, symBinAddr: 0x970C, symSize: 0x44 } - - { offsetInCU: 0x5EF0, offset: 0x595DC, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x59FC, symBinAddr: 0x9750, symSize: 0x38 } - - { offsetInCU: 0x5F0F, offset: 0x595FB, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.179', symObjAddr: 0x5A34, symBinAddr: 0x9788, symSize: 0x9C } - - { offsetInCU: 0x5FA1, offset: 0x5968D, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.180', symObjAddr: 0x5AD0, symBinAddr: 0x9824, symSize: 0x34 } - - { offsetInCU: 0x5FEB, offset: 0x596D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x5B04, symBinAddr: 0x9858, symSize: 0x18 } - - { offsetInCU: 0x603D, offset: 0x59729, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x5B1C, symBinAddr: 0x9870, symSize: 0x108 } - - { offsetInCU: 0x6141, offset: 0x5982D, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x5C24, symBinAddr: 0x9978, symSize: 0x48 } - - { offsetInCU: 0x619F, offset: 0x5988B, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x5C6C, symBinAddr: 0x99C0, symSize: 0xC } - - { offsetInCU: 0x61C8, offset: 0x598B4, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x5C78, symBinAddr: 0x99CC, symSize: 0x8 } - - { offsetInCU: 0x61E7, offset: 0x598D3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x5C80, symBinAddr: 0x99D4, symSize: 0x68 } - - { offsetInCU: 0x6238, offset: 0x59924, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x5CE8, symBinAddr: 0x9A3C, symSize: 0x44 } - - { offsetInCU: 0x626C, offset: 0x59958, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x5D2C, symBinAddr: 0x9A80, symSize: 0x324 } - - { offsetInCU: 0x64C9, offset: 0x59BB5, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x6050, symBinAddr: 0x9DA4, symSize: 0x34 } - - { offsetInCU: 0x6529, offset: 0x59C15, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6084, symBinAddr: 0x9DD8, symSize: 0x90 } - - { offsetInCU: 0x65A6, offset: 0x59C92, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6114, symBinAddr: 0x9E68, symSize: 0x3C } - - { offsetInCU: 0x65E8, offset: 0x59CD4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x6150, symBinAddr: 0x9EA4, symSize: 0x58 } - - { offsetInCU: 0x6632, offset: 0x59D1E, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x61A8, symBinAddr: 0x9EFC, symSize: 0x48 } - - { offsetInCU: 0x6674, offset: 0x59D60, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x61F0, symBinAddr: 0x9F44, symSize: 0x58 } - - { offsetInCU: 0x66BE, offset: 0x59DAA, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6248, symBinAddr: 0x9F9C, symSize: 0x48 } - - { offsetInCU: 0x6700, offset: 0x59DEC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x6290, symBinAddr: 0x9FE4, symSize: 0x58 } - - { offsetInCU: 0x674A, offset: 0x59E36, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x62E8, symBinAddr: 0xA03C, symSize: 0x48 } - - { offsetInCU: 0x678C, offset: 0x59E78, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x6330, symBinAddr: 0xA084, symSize: 0x70 } - - { offsetInCU: 0x67D1, offset: 0x59EBD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x63A0, symBinAddr: 0xA0F4, symSize: 0xD4 } - - { offsetInCU: 0x6827, offset: 0x59F13, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6474, symBinAddr: 0xA1C8, symSize: 0xD4 } - - { offsetInCU: 0x687D, offset: 0x59F69, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6548, symBinAddr: 0xA29C, symSize: 0xF4 } - - { offsetInCU: 0x690E, offset: 0x59FFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x663C, symBinAddr: 0xA390, symSize: 0x118 } - - { offsetInCU: 0x6986, offset: 0x5A072, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x6754, symBinAddr: 0xA4A8, symSize: 0x100 } - - { offsetInCU: 0x69DC, offset: 0x5A0C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x6854, symBinAddr: 0xA5A8, symSize: 0xC0 } - - { offsetInCU: 0x6A43, offset: 0x5A12F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x6914, symBinAddr: 0xA668, symSize: 0x10C } - - { offsetInCU: 0x6A99, offset: 0x5A185, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x6A20, symBinAddr: 0xA774, symSize: 0x10C } - - { offsetInCU: 0x6AEF, offset: 0x5A1DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x6B2C, symBinAddr: 0xA880, symSize: 0x10C } - - { offsetInCU: 0x6B45, offset: 0x5A231, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x6C38, symBinAddr: 0xA98C, symSize: 0x10C } - - { offsetInCU: 0x6B9B, offset: 0x5A287, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x6D44, symBinAddr: 0xAA98, symSize: 0x10C } - - { offsetInCU: 0x6BF1, offset: 0x5A2DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x6E50, symBinAddr: 0xABA4, symSize: 0xD4 } - - { offsetInCU: 0x6C47, offset: 0x5A333, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x6F24, symBinAddr: 0xAC78, symSize: 0xD8 } - - { offsetInCU: 0x6CDD, offset: 0x5A3C9, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x6FFC, symBinAddr: 0xAD50, symSize: 0x1C } - - { offsetInCU: 0x6D38, offset: 0x5A424, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7018, symBinAddr: 0xAD6C, symSize: 0xD8 } - - { offsetInCU: 0x6DCE, offset: 0x5A4BA, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x70F0, symBinAddr: 0xAE44, symSize: 0x18 } - - { offsetInCU: 0x6E29, offset: 0x5A515, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7108, symBinAddr: 0xAE5C, symSize: 0x10C } - - { offsetInCU: 0x6EA9, offset: 0x5A595, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7214, symBinAddr: 0xAF68, symSize: 0x78 } - - { offsetInCU: 0x6EFC, offset: 0x5A5E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x728C, symBinAddr: 0xAFE0, symSize: 0xE4 } - - { offsetInCU: 0x6F7C, offset: 0x5A668, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x7370, symBinAddr: 0xB0C4, symSize: 0x50 } - - { offsetInCU: 0x6FCF, offset: 0x5A6BB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x73C0, symBinAddr: 0xB114, symSize: 0xEC } - - { offsetInCU: 0x704F, offset: 0x5A73B, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x74AC, symBinAddr: 0xB200, symSize: 0x5C } - - { offsetInCU: 0x70A2, offset: 0x5A78E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7508, symBinAddr: 0xB25C, symSize: 0x10C } - - { offsetInCU: 0x7122, offset: 0x5A80E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x7614, symBinAddr: 0xB368, symSize: 0x78 } - - { offsetInCU: 0x7175, offset: 0x5A861, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x768C, symBinAddr: 0xB3E0, symSize: 0xE4 } - - { offsetInCU: 0x71F5, offset: 0x5A8E1, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x7770, symBinAddr: 0xB4C4, symSize: 0x50 } - - { offsetInCU: 0x7248, offset: 0x5A934, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x77C0, symBinAddr: 0xB514, symSize: 0x30 } - - { offsetInCU: 0x7280, offset: 0x5A96C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x77F0, symBinAddr: 0xB544, symSize: 0x30 } - - { offsetInCU: 0x72B8, offset: 0x5A9A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x7820, symBinAddr: 0xB574, symSize: 0x18 } - - { offsetInCU: 0x72F0, offset: 0x5A9DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x7838, symBinAddr: 0xB58C, symSize: 0x18 } - - { offsetInCU: 0x7328, offset: 0x5AA14, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x7850, symBinAddr: 0xB5A4, symSize: 0x30 } - - { offsetInCU: 0x7360, offset: 0x5AA4C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x7880, symBinAddr: 0xB5D4, symSize: 0x30 } - - { offsetInCU: 0x7398, offset: 0x5AA84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x78B0, symBinAddr: 0xB604, symSize: 0x18 } - - { offsetInCU: 0x73D0, offset: 0x5AABC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x78C8, symBinAddr: 0xB61C, symSize: 0x18 } - - { offsetInCU: 0x7408, offset: 0x5AAF4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x78E0, symBinAddr: 0xB634, symSize: 0x90 } - - { offsetInCU: 0x7497, offset: 0x5AB83, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x7970, symBinAddr: 0xB6C4, symSize: 0x64 } - - { offsetInCU: 0x7526, offset: 0x5AC12, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x79D4, symBinAddr: 0xB728, symSize: 0x88 } - - { offsetInCU: 0x75B5, offset: 0x5ACA1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x7A5C, symBinAddr: 0xB7B0, symSize: 0x5C } - - { offsetInCU: 0x7644, offset: 0x5AD30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x7AB8, symBinAddr: 0xB80C, symSize: 0x90 } - - { offsetInCU: 0x76D3, offset: 0x5ADBF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x7B48, symBinAddr: 0xB89C, symSize: 0x90 } - - { offsetInCU: 0x7783, offset: 0x5AE6F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x7BD8, symBinAddr: 0xB92C, symSize: 0x64 } - - { offsetInCU: 0x7812, offset: 0x5AEFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x7C3C, symBinAddr: 0xB990, symSize: 0x88 } - - { offsetInCU: 0x78A1, offset: 0x5AF8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x7CC4, symBinAddr: 0xBA18, symSize: 0x5C } - - { offsetInCU: 0x7930, offset: 0x5B01C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x7D20, symBinAddr: 0xBA74, symSize: 0xFC } - - { offsetInCU: 0x79C6, offset: 0x5B0B2, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x7E1C, symBinAddr: 0xBB70, symSize: 0x100 } - - { offsetInCU: 0x7AB3, offset: 0x5B19F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x7F1C, symBinAddr: 0xBC70, symSize: 0xFC } - - { offsetInCU: 0x7B49, offset: 0x5B235, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8018, symBinAddr: 0xBD6C, symSize: 0x100 } - - { offsetInCU: 0x7C36, offset: 0x5B322, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8118, symBinAddr: 0xBE6C, symSize: 0xB4 } - - { offsetInCU: 0x7CB6, offset: 0x5B3A2, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x81CC, symBinAddr: 0xBF20, symSize: 0x1C } - - { offsetInCU: 0x7D11, offset: 0x5B3FD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x81E8, symBinAddr: 0xBF3C, symSize: 0xB4 } - - { offsetInCU: 0x7D91, offset: 0x5B47D, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x829C, symBinAddr: 0xBFF0, symSize: 0x1C } - - { offsetInCU: 0x7DEC, offset: 0x5B4D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x82B8, symBinAddr: 0xC00C, symSize: 0xAC } - - { offsetInCU: 0x7E6C, offset: 0x5B558, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8364, symBinAddr: 0xC0B8, symSize: 0x18 } - - { offsetInCU: 0x7EC7, offset: 0x5B5B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x837C, symBinAddr: 0xC0D0, symSize: 0x3FC } - - { offsetInCU: 0x81CE, offset: 0x5B8BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x8778, symBinAddr: 0xC4CC, symSize: 0xDC } - - { offsetInCU: 0x8245, offset: 0x5B931, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x8854, symBinAddr: 0xC5A8, symSize: 0x1F0 } - - { offsetInCU: 0x835F, offset: 0x5BA4B, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x8A44, symBinAddr: 0xC798, symSize: 0x64 } - - { offsetInCU: 0x83CB, offset: 0x5BAB7, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x8AA8, symBinAddr: 0xC7FC, symSize: 0x54 } - - { offsetInCU: 0x8429, offset: 0x5BB15, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x8AFC, symBinAddr: 0xC850, symSize: 0x24 } - - { offsetInCU: 0x8486, offset: 0x5BB72, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x8B20, symBinAddr: 0xC874, symSize: 0x10 } - - { offsetInCU: 0x84AF, offset: 0x5BB9B, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x8B30, symBinAddr: 0xC884, symSize: 0xC } - - { offsetInCU: 0x84CE, offset: 0x5BBBA, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.216', symObjAddr: 0x8B3C, symBinAddr: 0xC890, symSize: 0x24 } - - { offsetInCU: 0x852B, offset: 0x5BC17, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x8B60, symBinAddr: 0xC8B4, symSize: 0x18 } - - { offsetInCU: 0x8563, offset: 0x5BC4F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x8B78, symBinAddr: 0xC8CC, symSize: 0x18 } - - { offsetInCU: 0x859B, offset: 0x5BC87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x8B90, symBinAddr: 0xC8E4, symSize: 0x38 } - - { offsetInCU: 0x85EC, offset: 0x5BCD8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x8BC8, symBinAddr: 0xC91C, symSize: 0x38 } - - { offsetInCU: 0x862E, offset: 0x5BD1A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x8C00, symBinAddr: 0xC954, symSize: 0x38 } - - { offsetInCU: 0x8670, offset: 0x5BD5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x8C38, symBinAddr: 0xC98C, symSize: 0x38 } - - { offsetInCU: 0x86B2, offset: 0x5BD9E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x8C70, symBinAddr: 0xC9C4, symSize: 0x14 } - - { offsetInCU: 0x8705, offset: 0x5BDF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8C84, symBinAddr: 0xC9D8, symSize: 0xC } - - { offsetInCU: 0x8776, offset: 0x5BE62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8C90, symBinAddr: 0xC9E4, symSize: 0xF0 } - - { offsetInCU: 0x882D, offset: 0x5BF19, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x8D80, symBinAddr: 0xCAD4, symSize: 0x54 } - - { offsetInCU: 0x8880, offset: 0x5BF6C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x8DD4, symBinAddr: 0xCB28, symSize: 0x10 } - - { offsetInCU: 0x88E2, offset: 0x5BFCE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8DE4, symBinAddr: 0xCB38, symSize: 0xF8 } - - { offsetInCU: 0x8999, offset: 0x5C085, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x8EDC, symBinAddr: 0xCC30, symSize: 0x54 } - - { offsetInCU: 0x89EC, offset: 0x5C0D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x8F30, symBinAddr: 0xCC84, symSize: 0x14 } - - { offsetInCU: 0x8A4E, offset: 0x5C13A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8F44, symBinAddr: 0xCC98, symSize: 0xC } - - { offsetInCU: 0x8ACE, offset: 0x5C1BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x8F50, symBinAddr: 0xCCA4, symSize: 0x14 } - - { offsetInCU: 0x8B41, offset: 0x5C22D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8F64, symBinAddr: 0xCCB8, symSize: 0x12C } - - { offsetInCU: 0x8C09, offset: 0x5C2F5, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x9090, symBinAddr: 0xCDE4, symSize: 0x54 } - - { offsetInCU: 0x8C5C, offset: 0x5C348, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x90E4, symBinAddr: 0xCE38, symSize: 0xE8 } - - { offsetInCU: 0x8D25, offset: 0x5C411, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x91CC, symBinAddr: 0xCF20, symSize: 0xD0 } - - { offsetInCU: 0x8DDC, offset: 0x5C4C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x929C, symBinAddr: 0xCFF0, symSize: 0x130 } - - { offsetInCU: 0x8E10, offset: 0x5C4FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0x93CC, symBinAddr: 0xD120, symSize: 0x194 } - - { offsetInCU: 0x8FC0, offset: 0x5C6AC, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0x9560, symBinAddr: 0xD2B4, symSize: 0x70 } - - { offsetInCU: 0x9061, offset: 0x5C74D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0x95D0, symBinAddr: 0xD324, symSize: 0x944 } - - { offsetInCU: 0x942E, offset: 0x5CB1A, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0x9F14, symBinAddr: 0xDC68, symSize: 0x34 } - - { offsetInCU: 0x94A3, offset: 0x5CB8F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0x9F48, symBinAddr: 0xDC9C, symSize: 0x200 } - - { offsetInCU: 0x95A5, offset: 0x5CC91, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xA148, symBinAddr: 0xDE9C, symSize: 0x30 } - - { offsetInCU: 0x95F8, offset: 0x5CCE4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xA178, symBinAddr: 0xDECC, symSize: 0x188 } - - { offsetInCU: 0x9716, offset: 0x5CE02, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xA300, symBinAddr: 0xE054, symSize: 0x38 } - - { offsetInCU: 0x978B, offset: 0x5CE77, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xA338, symBinAddr: 0xE08C, symSize: 0x38 } - - { offsetInCU: 0x97B4, offset: 0x5CEA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xA370, symBinAddr: 0xE0C4, symSize: 0x3C } - - { offsetInCU: 0x97F6, offset: 0x5CEE2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xA3AC, symBinAddr: 0xE100, symSize: 0x108 } - - { offsetInCU: 0x98DC, offset: 0x5CFC8, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xA4B4, symBinAddr: 0xE208, symSize: 0x48 } - - { offsetInCU: 0x993A, offset: 0x5D026, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xA4FC, symBinAddr: 0xE250, symSize: 0xF4 } - - { offsetInCU: 0x99B8, offset: 0x5D0A4, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xA5F0, symBinAddr: 0xE344, symSize: 0x90 } - - { offsetInCU: 0x9A52, offset: 0x5D13E, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xA680, symBinAddr: 0xE3D4, symSize: 0x34 } - - { offsetInCU: 0x9AA5, offset: 0x5D191, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xA6B4, symBinAddr: 0xE408, symSize: 0xB0 } - - { offsetInCU: 0x9B34, offset: 0x5D220, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xA764, symBinAddr: 0xE4B8, symSize: 0xCC } - - { offsetInCU: 0x9BC9, offset: 0x5D2B5, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xA830, symBinAddr: 0xE584, symSize: 0x54 } - - { offsetInCU: 0x9C1C, offset: 0x5D308, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xA884, symBinAddr: 0xE5D8, symSize: 0xE8 } - - { offsetInCU: 0x9CE5, offset: 0x5D3D1, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xA96C, symBinAddr: 0xE6C0, symSize: 0xCC } - - { offsetInCU: 0x9D9C, offset: 0x5D488, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xAA38, symBinAddr: 0xE78C, symSize: 0xFC } - - { offsetInCU: 0x9E4D, offset: 0x5D539, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xB024, symBinAddr: 0xED78, symSize: 0x30 } - - { offsetInCU: 0x9E8F, offset: 0x5D57B, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xB054, symBinAddr: 0xEDA8, symSize: 0x34 } - - { offsetInCU: 0x9F04, offset: 0x5D5F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xB088, symBinAddr: 0xEDDC, symSize: 0xC0 } - - { offsetInCU: 0x9F86, offset: 0x5D672, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xB148, symBinAddr: 0xEE9C, symSize: 0x34 } - - { offsetInCU: 0x9FEA, offset: 0x5D6D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xB17C, symBinAddr: 0xEED0, symSize: 0x3C } - - { offsetInCU: 0xA02C, offset: 0x5D718, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xB1B8, symBinAddr: 0xEF0C, symSize: 0x108 } - - { offsetInCU: 0xA112, offset: 0x5D7FE, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xB2C0, symBinAddr: 0xF014, symSize: 0x48 } - - { offsetInCU: 0xA170, offset: 0x5D85C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xB308, symBinAddr: 0xF05C, symSize: 0xF4 } - - { offsetInCU: 0xA1EE, offset: 0x5D8DA, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xB3FC, symBinAddr: 0xF150, symSize: 0x8C } - - { offsetInCU: 0xA288, offset: 0x5D974, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xB488, symBinAddr: 0xF1DC, symSize: 0x34 } - - { offsetInCU: 0xA2DB, offset: 0x5D9C7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xB4BC, symBinAddr: 0xF210, symSize: 0xB0 } - - { offsetInCU: 0xA36A, offset: 0x5DA56, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xB56C, symBinAddr: 0xF2C0, symSize: 0xC8 } - - { offsetInCU: 0xA3DD, offset: 0x5DAC9, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xB634, symBinAddr: 0xF388, symSize: 0x78 } - - { offsetInCU: 0xA430, offset: 0x5DB1C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xB6AC, symBinAddr: 0xF400, symSize: 0xFC } - - { offsetInCU: 0xA4BA, offset: 0x5DBA6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xB7A8, symBinAddr: 0xF4FC, symSize: 0x1BC } - - { offsetInCU: 0xA669, offset: 0x5DD55, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xB964, symBinAddr: 0xF6B8, symSize: 0xCC } - - { offsetInCU: 0xA73F, offset: 0x5DE2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xBA30, symBinAddr: 0xF784, symSize: 0x978 } - - { offsetInCU: 0xABE0, offset: 0x5E2CC, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xC3A8, symBinAddr: 0x100FC, symSize: 0xC } - - { offsetInCU: 0xAC3C, offset: 0x5E328, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xC3B4, symBinAddr: 0x10108, symSize: 0xC } - - { offsetInCU: 0xAC98, offset: 0x5E384, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xC3C0, symBinAddr: 0x10114, symSize: 0x374 } - - { offsetInCU: 0xAE2B, offset: 0x5E517, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xC734, symBinAddr: 0x10488, symSize: 0x30 } - - { offsetInCU: 0xAE7E, offset: 0x5E56A, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xC764, symBinAddr: 0x104B8, symSize: 0xB0 } - - { offsetInCU: 0xAF19, offset: 0x5E605, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xC814, symBinAddr: 0x10568, symSize: 0x78 } - - { offsetInCU: 0xAFB8, offset: 0x5E6A4, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xC88C, symBinAddr: 0x105E0, symSize: 0x38 } - - { offsetInCU: 0xAFE1, offset: 0x5E6CD, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xC8C4, symBinAddr: 0x10618, symSize: 0x2C } - - { offsetInCU: 0xB000, offset: 0x5E6EC, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xC8F0, symBinAddr: 0x10644, symSize: 0x40 } - - { offsetInCU: 0xB029, offset: 0x5E715, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xC930, symBinAddr: 0x10684, symSize: 0x34 } - - { offsetInCU: 0xB048, offset: 0x5E734, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.305', symObjAddr: 0xC964, symBinAddr: 0x106B8, symSize: 0x3C } - - { offsetInCU: 0xB0BD, offset: 0x5E7A9, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xC9A0, symBinAddr: 0x106F4, symSize: 0x4C } - - { offsetInCU: 0xB0E6, offset: 0x5E7D2, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xC9EC, symBinAddr: 0x10740, symSize: 0x3C } - - { offsetInCU: 0xB105, offset: 0x5E7F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xCA28, symBinAddr: 0x1077C, symSize: 0x78 } - - { offsetInCU: 0xB15B, offset: 0x5E847, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xCAA0, symBinAddr: 0x107F4, symSize: 0xE8 } - - { offsetInCU: 0xB1CC, offset: 0x5E8B8, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xCB88, symBinAddr: 0x108DC, symSize: 0x30 } - - { offsetInCU: 0xB21F, offset: 0x5E90B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xCBB8, symBinAddr: 0x1090C, symSize: 0x20 } - - { offsetInCU: 0xB260, offset: 0x5E94C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xCBD8, symBinAddr: 0x1092C, symSize: 0x170 } - - { offsetInCU: 0xB360, offset: 0x5EA4C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xCD48, symBinAddr: 0x10A9C, symSize: 0x4 } - - { offsetInCU: 0xB3D7, offset: 0x5EAC3, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCDD8, symBinAddr: 0x10B2C, symSize: 0x38 } - - { offsetInCU: 0xB415, offset: 0x5EB01, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xCE10, symBinAddr: 0x10B64, symSize: 0x78 } - - { offsetInCU: 0xB457, offset: 0x5EB43, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xCE88, symBinAddr: 0x10BDC, symSize: 0x78 } - - { offsetInCU: 0xB4D5, offset: 0x5EBC1, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCF00, symBinAddr: 0x10C54, symSize: 0xB8 } - - { offsetInCU: 0xB517, offset: 0x5EC03, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xCFB8, symBinAddr: 0x10D0C, symSize: 0x164 } - - { offsetInCU: 0xB59E, offset: 0x5EC8A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xD11C, symBinAddr: 0x10E70, symSize: 0x68 } - - { offsetInCU: 0xB668, offset: 0x5ED54, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xD184, symBinAddr: 0x10ED8, symSize: 0x68 } - - { offsetInCU: 0xB726, offset: 0x5EE12, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xD1EC, symBinAddr: 0x10F40, symSize: 0x104 } - - { offsetInCU: 0xB815, offset: 0x5EF01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xD2F0, symBinAddr: 0x11044, symSize: 0x8C } - - { offsetInCU: 0xB8AC, offset: 0x5EF98, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xD37C, symBinAddr: 0x110D0, symSize: 0x138 } - - { offsetInCU: 0xB975, offset: 0x5F061, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xD4B4, symBinAddr: 0x11208, symSize: 0x138 } - - { offsetInCU: 0xBA3E, offset: 0x5F12A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xD5EC, symBinAddr: 0x11340, symSize: 0x84 } - - { offsetInCU: 0xBA8C, offset: 0x5F178, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xD670, symBinAddr: 0x113C4, symSize: 0x3C } - - { offsetInCU: 0xBACE, offset: 0x5F1BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xD6AC, symBinAddr: 0x11400, symSize: 0x84 } - - { offsetInCU: 0xBB18, offset: 0x5F204, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xD730, symBinAddr: 0x11484, symSize: 0x3C } - - { offsetInCU: 0xBB5A, offset: 0x5F246, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xD76C, symBinAddr: 0x114C0, symSize: 0x64 } - - { offsetInCU: 0xBC61, offset: 0x5F34D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xD7D0, symBinAddr: 0x11524, symSize: 0xB0 } - - { offsetInCU: 0xBCE1, offset: 0x5F3CD, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xD880, symBinAddr: 0x115D4, symSize: 0x1C } - - { offsetInCU: 0xBD3C, offset: 0x5F428, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xD89C, symBinAddr: 0x115F0, symSize: 0x94 } - - { offsetInCU: 0xBDC6, offset: 0x5F4B2, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xD930, symBinAddr: 0x11684, symSize: 0x24 } - - { offsetInCU: 0xBE1B, offset: 0x5F507, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xD954, symBinAddr: 0x116A8, symSize: 0x18 } - - { offsetInCU: 0xBE96, offset: 0x5F582, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xD96C, symBinAddr: 0x116C0, symSize: 0x14 } - - { offsetInCU: 0xBEFE, offset: 0x5F5EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xD980, symBinAddr: 0x116D4, symSize: 0x48 } - - { offsetInCU: 0xBF7B, offset: 0x5F667, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xD9C8, symBinAddr: 0x1171C, symSize: 0x40 } - - { offsetInCU: 0xBFC1, offset: 0x5F6AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xDA08, symBinAddr: 0x1175C, symSize: 0x34 } - - { offsetInCU: 0xC007, offset: 0x5F6F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xDA3C, symBinAddr: 0x11790, symSize: 0x34 } - - { offsetInCU: 0xC04D, offset: 0x5F739, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xDA70, symBinAddr: 0x117C4, symSize: 0x3C } - - { offsetInCU: 0xC093, offset: 0x5F77F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xDAAC, symBinAddr: 0x11800, symSize: 0x3C } - - { offsetInCU: 0xC0D9, offset: 0x5F7C5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xDAE8, symBinAddr: 0x1183C, symSize: 0x9C } - - { offsetInCU: 0xC176, offset: 0x5F862, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xDB84, symBinAddr: 0x118D8, symSize: 0x3C } - - { offsetInCU: 0xC1BC, offset: 0x5F8A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xDBC0, symBinAddr: 0x11914, symSize: 0x3C } - - { offsetInCU: 0xC202, offset: 0x5F8EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xDBFC, symBinAddr: 0x11950, symSize: 0x2C } - - { offsetInCU: 0xC248, offset: 0x5F934, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xDC28, symBinAddr: 0x1197C, symSize: 0x318 } - - { offsetInCU: 0xC48E, offset: 0x5FB7A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xDF40, symBinAddr: 0x11C94, symSize: 0x7C } - - { offsetInCU: 0xC505, offset: 0x5FBF1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xDFBC, symBinAddr: 0x11D10, symSize: 0x7C } - - { offsetInCU: 0xC57D, offset: 0x5FC69, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xE038, symBinAddr: 0x11D8C, symSize: 0x10 } - - { offsetInCU: 0xC5C0, offset: 0x5FCAC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xE048, symBinAddr: 0x11D9C, symSize: 0x10 } - - { offsetInCU: 0xC603, offset: 0x5FCEF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xE058, symBinAddr: 0x11DAC, symSize: 0x5C } - - { offsetInCU: 0xC659, offset: 0x5FD45, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xE0B4, symBinAddr: 0x11E08, symSize: 0x6C } - - { offsetInCU: 0xC6B3, offset: 0x5FD9F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xE120, symBinAddr: 0x11E74, symSize: 0x38 } - - { offsetInCU: 0xC70C, offset: 0x5FDF8, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xE158, symBinAddr: 0x11EAC, symSize: 0x60 } - - { offsetInCU: 0xC771, offset: 0x5FE5D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xE1B8, symBinAddr: 0x11F0C, symSize: 0x60 } - - { offsetInCU: 0xC7D6, offset: 0x5FEC2, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xE218, symBinAddr: 0x11F6C, symSize: 0xC } - - { offsetInCU: 0xC83B, offset: 0x5FF27, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xE224, symBinAddr: 0x11F78, symSize: 0x184 } - - { offsetInCU: 0xC915, offset: 0x60001, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xE3A8, symBinAddr: 0x120FC, symSize: 0x18 } - - { offsetInCU: 0xC949, offset: 0x60035, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xE3C0, symBinAddr: 0x12114, symSize: 0x18 } - - { offsetInCU: 0xC97D, offset: 0x60069, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xE3D8, symBinAddr: 0x1212C, symSize: 0x18 } - - { offsetInCU: 0xC9B1, offset: 0x6009D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xE3F0, symBinAddr: 0x12144, symSize: 0x18 } - - { offsetInCU: 0xC9E5, offset: 0x600D1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xE408, symBinAddr: 0x1215C, symSize: 0x11C } - - { offsetInCU: 0xCA19, offset: 0x60105, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xE524, symBinAddr: 0x12278, symSize: 0x7C } - - { offsetInCU: 0xCA76, offset: 0x60162, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0xE5A0, symBinAddr: 0x122F4, symSize: 0x5C } - - { offsetInCU: 0xCAD6, offset: 0x601C2, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xE5FC, symBinAddr: 0x12350, symSize: 0x7C } - - { offsetInCU: 0xCB46, offset: 0x60232, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0xE678, symBinAddr: 0x123CC, symSize: 0x5C } - - { offsetInCU: 0x27, offset: 0x63E69, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x12428, symSize: 0x18 } - - { offsetInCU: 0x41, offset: 0x63E83, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xD4A8, symBinAddr: 0x28820, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x63EA3, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xD4B0, symBinAddr: 0x28828, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x63EB9, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xD4B8, symBinAddr: 0x28830, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x63ECF, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xD4C0, symBinAddr: 0x28838, symSize: 0x0 } - - { offsetInCU: 0x97, offset: 0x63ED9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xA7F0, symBinAddr: 0x1C928, symSize: 0x6C } - - { offsetInCU: 0xBF, offset: 0x63F01, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x40270, symBinAddr: 0x2EAD8, symSize: 0x0 } - - { offsetInCU: 0x125, offset: 0x63F67, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x40278, symBinAddr: 0x2EAE0, symSize: 0x0 } - - { offsetInCU: 0x65E, offset: 0x644A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x12428, symSize: 0x18 } - - { offsetInCU: 0x696, offset: 0x644D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0x18, symBinAddr: 0x12440, symSize: 0x94 } - - { offsetInCU: 0x701, offset: 0x64543, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0xAC, symBinAddr: 0x124D4, symSize: 0x48 } - - { offsetInCU: 0x735, offset: 0x64577, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xF4, symBinAddr: 0x1251C, symSize: 0x34 } - - { offsetInCU: 0x76D, offset: 0x645AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x128, symBinAddr: 0x12550, symSize: 0x30 } - - { offsetInCU: 0x7A1, offset: 0x645E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x158, symBinAddr: 0x12580, symSize: 0x10 } - - { offsetInCU: 0x7D7, offset: 0x64619, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x168, symBinAddr: 0x12590, symSize: 0x10 } - - { offsetInCU: 0x820, offset: 0x64662, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x178, symBinAddr: 0x125A0, symSize: 0x8 } - - { offsetInCU: 0x874, offset: 0x646B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x180, symBinAddr: 0x125A8, symSize: 0x190 } - - { offsetInCU: 0x96E, offset: 0x647B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x310, symBinAddr: 0x12738, symSize: 0xE4 } - - { offsetInCU: 0x9F3, offset: 0x64835, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x3F4, symBinAddr: 0x1281C, symSize: 0xC } - - { offsetInCU: 0xA35, offset: 0x64877, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x410, symBinAddr: 0x12828, symSize: 0xD0 } - - { offsetInCU: 0xAB5, offset: 0x648F7, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x4E0, symBinAddr: 0x128F8, symSize: 0x10 } - - { offsetInCU: 0xADA, offset: 0x6491C, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x4F0, symBinAddr: 0x12908, symSize: 0x8 } - - { offsetInCU: 0xAF9, offset: 0x6493B, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x4F8, symBinAddr: 0x12910, symSize: 0x3C } - - { offsetInCU: 0xB4C, offset: 0x6498E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x594, symBinAddr: 0x1294C, symSize: 0xCC } - - { offsetInCU: 0xC04, offset: 0x64A46, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x660, symBinAddr: 0x12A18, symSize: 0xC } - - { offsetInCU: 0xC57, offset: 0x64A99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x6BC, symBinAddr: 0x12A24, symSize: 0x8 } - - { offsetInCU: 0xC98, offset: 0x64ADA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x6C4, symBinAddr: 0x12A2C, symSize: 0x8 } - - { offsetInCU: 0xCD9, offset: 0x64B1B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x6CC, symBinAddr: 0x12A34, symSize: 0xD0 } - - { offsetInCU: 0xD59, offset: 0x64B9B, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x79C, symBinAddr: 0x12B04, symSize: 0x14 } - - { offsetInCU: 0xDAC, offset: 0x64BEE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x7B0, symBinAddr: 0x12B18, symSize: 0xCC } - - { offsetInCU: 0xE51, offset: 0x64C93, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x87C, symBinAddr: 0x12BE4, symSize: 0xC } - - { offsetInCU: 0xEA4, offset: 0x64CE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x888, symBinAddr: 0x12BF0, symSize: 0x8 } - - { offsetInCU: 0xEE5, offset: 0x64D27, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x890, symBinAddr: 0x12BF8, symSize: 0x8 } - - { offsetInCU: 0xF26, offset: 0x64D68, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x898, symBinAddr: 0x12C00, symSize: 0x138 } - - { offsetInCU: 0xFDB, offset: 0x64E1D, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x9D0, symBinAddr: 0x12D38, symSize: 0x54 } - - { offsetInCU: 0x103F, offset: 0x64E81, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xAA0, symBinAddr: 0x12D8C, symSize: 0x10C } - - { offsetInCU: 0x10F5, offset: 0x64F37, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xBAC, symBinAddr: 0x12E98, symSize: 0x34 } - - { offsetInCU: 0x1159, offset: 0x64F9B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xC40, symBinAddr: 0x12ECC, symSize: 0x8 } - - { offsetInCU: 0x11A9, offset: 0x64FEB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xC48, symBinAddr: 0x12ED4, symSize: 0x8 } - - { offsetInCU: 0x11F9, offset: 0x6503B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xC50, symBinAddr: 0x12EDC, symSize: 0xD8 } - - { offsetInCU: 0x128F, offset: 0x650D1, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xD28, symBinAddr: 0x12FB4, symSize: 0x1C } - - { offsetInCU: 0x12EA, offset: 0x6512C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xD44, symBinAddr: 0x12FD0, symSize: 0x94 } - - { offsetInCU: 0x1374, offset: 0x651B6, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xDD8, symBinAddr: 0x13064, symSize: 0x20 } - - { offsetInCU: 0x13C9, offset: 0x6520B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xDF8, symBinAddr: 0x13084, symSize: 0xD8 } - - { offsetInCU: 0x145F, offset: 0x652A1, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xED0, symBinAddr: 0x1315C, symSize: 0x1C } - - { offsetInCU: 0x14BA, offset: 0x652FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xEEC, symBinAddr: 0x13178, symSize: 0x94 } - - { offsetInCU: 0x1544, offset: 0x65386, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0xF80, symBinAddr: 0x1320C, symSize: 0x24 } - - { offsetInCU: 0x1599, offset: 0x653DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0xFA4, symBinAddr: 0x13230, symSize: 0xD8 } - - { offsetInCU: 0x162F, offset: 0x65471, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x107C, symBinAddr: 0x13308, symSize: 0x18 } - - { offsetInCU: 0x168A, offset: 0x654CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1094, symBinAddr: 0x13320, symSize: 0xD8 } - - { offsetInCU: 0x1720, offset: 0x65562, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x116C, symBinAddr: 0x133F8, symSize: 0x18 } - - { offsetInCU: 0x177B, offset: 0x655BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x1184, symBinAddr: 0x13410, symSize: 0xD8 } - - { offsetInCU: 0x1811, offset: 0x65653, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x125C, symBinAddr: 0x134E8, symSize: 0x1C } - - { offsetInCU: 0x186C, offset: 0x656AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1278, symBinAddr: 0x13504, symSize: 0x90 } - - { offsetInCU: 0x18E9, offset: 0x6572B, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x1308, symBinAddr: 0x13594, symSize: 0x24 } - - { offsetInCU: 0x192B, offset: 0x6576D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x132C, symBinAddr: 0x135B8, symSize: 0x90 } - - { offsetInCU: 0x19A8, offset: 0x657EA, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x13BC, symBinAddr: 0x13648, symSize: 0x24 } - - { offsetInCU: 0x19EA, offset: 0x6582C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x13E0, symBinAddr: 0x1366C, symSize: 0x90 } - - { offsetInCU: 0x1A67, offset: 0x658A9, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1470, symBinAddr: 0x136FC, symSize: 0x24 } - - { offsetInCU: 0x1AA9, offset: 0x658EB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1494, symBinAddr: 0x13720, symSize: 0xD8 } - - { offsetInCU: 0x1B3F, offset: 0x65981, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x156C, symBinAddr: 0x137F8, symSize: 0x14 } - - { offsetInCU: 0x1B9A, offset: 0x659DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1580, symBinAddr: 0x1380C, symSize: 0x94 } - - { offsetInCU: 0x1C28, offset: 0x65A6A, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x1614, symBinAddr: 0x138A0, symSize: 0x10 } - - { offsetInCU: 0x1C7D, offset: 0x65ABF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x1624, symBinAddr: 0x138B0, symSize: 0xD8 } - - { offsetInCU: 0x1D13, offset: 0x65B55, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x16FC, symBinAddr: 0x13988, symSize: 0x14 } - - { offsetInCU: 0x1D6E, offset: 0x65BB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x1710, symBinAddr: 0x1399C, symSize: 0x94 } - - { offsetInCU: 0x1DFC, offset: 0x65C3E, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x17A4, symBinAddr: 0x13A30, symSize: 0x10 } - - { offsetInCU: 0x1E51, offset: 0x65C93, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x17B4, symBinAddr: 0x13A40, symSize: 0x94 } - - { offsetInCU: 0x1EDF, offset: 0x65D21, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x1848, symBinAddr: 0x13AD4, symSize: 0x10 } - - { offsetInCU: 0x1F34, offset: 0x65D76, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x1858, symBinAddr: 0x13AE4, symSize: 0xD8 } - - { offsetInCU: 0x1FCA, offset: 0x65E0C, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x1930, symBinAddr: 0x13BBC, symSize: 0x14 } - - { offsetInCU: 0x2025, offset: 0x65E67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x1944, symBinAddr: 0x13BD0, symSize: 0xFC } - - { offsetInCU: 0x20BB, offset: 0x65EFD, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1A40, symBinAddr: 0x13CCC, symSize: 0x14 } - - { offsetInCU: 0x210E, offset: 0x65F50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1A54, symBinAddr: 0x13CE0, symSize: 0xBC } - - { offsetInCU: 0x219C, offset: 0x65FDE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1B10, symBinAddr: 0x13D9C, symSize: 0x1C } - - { offsetInCU: 0x21EF, offset: 0x66031, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1B2C, symBinAddr: 0x13DB8, symSize: 0xF4 } - - { offsetInCU: 0x2282, offset: 0x660C4, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1C20, symBinAddr: 0x13EAC, symSize: 0x34 } - - { offsetInCU: 0x22E6, offset: 0x66128, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1C54, symBinAddr: 0x13EE0, symSize: 0xD4 } - - { offsetInCU: 0x2359, offset: 0x6619B, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1D28, symBinAddr: 0x13FB4, symSize: 0x34 } - - { offsetInCU: 0x23BD, offset: 0x661FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1D5C, symBinAddr: 0x13FE8, symSize: 0xB4 } - - { offsetInCU: 0x2430, offset: 0x66272, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1E10, symBinAddr: 0x1409C, symSize: 0x34 } - - { offsetInCU: 0x2494, offset: 0x662D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1E44, symBinAddr: 0x140D0, symSize: 0xE4 } - - { offsetInCU: 0x2518, offset: 0x6635A, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x1F28, symBinAddr: 0x141B4, symSize: 0x34 } - - { offsetInCU: 0x258D, offset: 0x663CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x1F5C, symBinAddr: 0x141E8, symSize: 0x134 } - - { offsetInCU: 0x2633, offset: 0x66475, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2090, symBinAddr: 0x1431C, symSize: 0x38 } - - { offsetInCU: 0x26B9, offset: 0x664FB, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x20C8, symBinAddr: 0x14354, symSize: 0x40 } - - { offsetInCU: 0x26E2, offset: 0x66524, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2108, symBinAddr: 0x14394, symSize: 0x40 } - - { offsetInCU: 0x2701, offset: 0x66543, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x2148, symBinAddr: 0x143D4, symSize: 0xD4 } - - { offsetInCU: 0x2774, offset: 0x665B6, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x221C, symBinAddr: 0x144A8, symSize: 0x34 } - - { offsetInCU: 0x27D8, offset: 0x6661A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2250, symBinAddr: 0x144DC, symSize: 0xD4 } - - { offsetInCU: 0x282E, offset: 0x66670, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2324, symBinAddr: 0x145B0, symSize: 0xD4 } - - { offsetInCU: 0x2884, offset: 0x666C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x23F8, symBinAddr: 0x14684, symSize: 0xF4 } - - { offsetInCU: 0x2915, offset: 0x66757, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x24EC, symBinAddr: 0x14778, symSize: 0x14C } - - { offsetInCU: 0x297C, offset: 0x667BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2638, symBinAddr: 0x148C4, symSize: 0x8 } - - { offsetInCU: 0x29B2, offset: 0x667F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x2640, symBinAddr: 0x148CC, symSize: 0x10C } - - { offsetInCU: 0x2A08, offset: 0x6684A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x274C, symBinAddr: 0x149D8, symSize: 0x10C } - - { offsetInCU: 0x2A5E, offset: 0x668A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x2858, symBinAddr: 0x14AE4, symSize: 0xD4 } - - { offsetInCU: 0x2AB4, offset: 0x668F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x292C, symBinAddr: 0x14BB8, symSize: 0x90 } - - { offsetInCU: 0x2B39, offset: 0x6697B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x29BC, symBinAddr: 0x14C48, symSize: 0x178 } - - { offsetInCU: 0x2C61, offset: 0x66AA3, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2B34, symBinAddr: 0x14DC0, symSize: 0x38 } - - { offsetInCU: 0x2CC3, offset: 0x66B05, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2B6C, symBinAddr: 0x14DF8, symSize: 0x34 } - - { offsetInCU: 0x2CEC, offset: 0x66B2E, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.72', symObjAddr: 0x2BA0, symBinAddr: 0x14E2C, symSize: 0x344 } - - { offsetInCU: 0x2F00, offset: 0x66D42, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x2EE4, symBinAddr: 0x15170, symSize: 0x38 } - - { offsetInCU: 0x2F6C, offset: 0x66DAE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x2F1C, symBinAddr: 0x151A8, symSize: 0x3C } - - { offsetInCU: 0x2F95, offset: 0x66DD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x2F58, symBinAddr: 0x151E4, symSize: 0x374 } - - { offsetInCU: 0x31DA, offset: 0x6701C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x32CC, symBinAddr: 0x15558, symSize: 0x344 } - - { offsetInCU: 0x34D3, offset: 0x67315, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3610, symBinAddr: 0x1589C, symSize: 0x1C8 } - - { offsetInCU: 0x35E5, offset: 0x67427, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x37D8, symBinAddr: 0x15A64, symSize: 0x68 } - - { offsetInCU: 0x3650, offset: 0x67492, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3840, symBinAddr: 0x15ACC, symSize: 0x70 } - - { offsetInCU: 0x36BB, offset: 0x674FD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x38B0, symBinAddr: 0x15B3C, symSize: 0xC0 } - - { offsetInCU: 0x37A1, offset: 0x675E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3970, symBinAddr: 0x15BFC, symSize: 0xC8 } - - { offsetInCU: 0x3874, offset: 0x676B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3A38, symBinAddr: 0x15CC4, symSize: 0x184 } - - { offsetInCU: 0x399D, offset: 0x677DF, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x3BBC, symBinAddr: 0x15E48, symSize: 0x60 } - - { offsetInCU: 0x39DF, offset: 0x67821, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x3C1C, symBinAddr: 0x15EA8, symSize: 0x58 } - - { offsetInCU: 0x3A42, offset: 0x67884, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x3C74, symBinAddr: 0x15F00, symSize: 0x24 } - - { offsetInCU: 0x3AB6, offset: 0x678F8, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.88', symObjAddr: 0x3CB4, symBinAddr: 0x15F24, symSize: 0x24 } - - { offsetInCU: 0x3B13, offset: 0x67955, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x3CD8, symBinAddr: 0x15F48, symSize: 0x184 } - - { offsetInCU: 0x3BF2, offset: 0x67A34, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x3E5C, symBinAddr: 0x160CC, symSize: 0x60 } - - { offsetInCU: 0x3C34, offset: 0x67A76, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x3EBC, symBinAddr: 0x1612C, symSize: 0x58 } - - { offsetInCU: 0x3C84, offset: 0x67AC6, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x3F14, symBinAddr: 0x16184, symSize: 0x24 } - - { offsetInCU: 0x3CE1, offset: 0x67B23, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x3F38, symBinAddr: 0x161A8, symSize: 0x24 } - - { offsetInCU: 0x3D3E, offset: 0x67B80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x3F5C, symBinAddr: 0x161CC, symSize: 0x10C } - - { offsetInCU: 0x3DFC, offset: 0x67C3E, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4068, symBinAddr: 0x162D8, symSize: 0x1DC } - - { offsetInCU: 0x4026, offset: 0x67E68, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x4244, symBinAddr: 0x164B4, symSize: 0x48 } - - { offsetInCU: 0x4089, offset: 0x67ECB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x428C, symBinAddr: 0x164FC, symSize: 0x3C } - - { offsetInCU: 0x40DA, offset: 0x67F1C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x42C8, symBinAddr: 0x16538, symSize: 0x3C } - - { offsetInCU: 0x411C, offset: 0x67F5E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x4304, symBinAddr: 0x16574, symSize: 0x3C } - - { offsetInCU: 0x416D, offset: 0x67FAF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x4340, symBinAddr: 0x165B0, symSize: 0x3C } - - { offsetInCU: 0x41AF, offset: 0x67FF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x437C, symBinAddr: 0x165EC, symSize: 0x3C } - - { offsetInCU: 0x41F1, offset: 0x68033, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x43B8, symBinAddr: 0x16628, symSize: 0x3C } - - { offsetInCU: 0x4233, offset: 0x68075, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x43F4, symBinAddr: 0x16664, symSize: 0x3C } - - { offsetInCU: 0x4275, offset: 0x680B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x4430, symBinAddr: 0x166A0, symSize: 0x3C } - - { offsetInCU: 0x42B7, offset: 0x680F9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x446C, symBinAddr: 0x166DC, symSize: 0x94 } - - { offsetInCU: 0x4316, offset: 0x68158, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x4500, symBinAddr: 0x16770, symSize: 0x94 } - - { offsetInCU: 0x4366, offset: 0x681A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4594, symBinAddr: 0x16804, symSize: 0x34 } - - { offsetInCU: 0x439A, offset: 0x681DC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x45C8, symBinAddr: 0x16838, symSize: 0x1AC } - - { offsetInCU: 0x451E, offset: 0x68360, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4774, symBinAddr: 0x169E4, symSize: 0xD4 } - - { offsetInCU: 0x4585, offset: 0x683C7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4848, symBinAddr: 0x16AB8, symSize: 0xD4 } - - { offsetInCU: 0x45EC, offset: 0x6842E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x491C, symBinAddr: 0x16B8C, symSize: 0x140 } - - { offsetInCU: 0x468A, offset: 0x684CC, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4A5C, symBinAddr: 0x16CCC, symSize: 0x5C } - - { offsetInCU: 0x46DD, offset: 0x6851F, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4AB8, symBinAddr: 0x16D28, symSize: 0x34 } - - { offsetInCU: 0x4727, offset: 0x68569, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x4AFC, symBinAddr: 0x16D5C, symSize: 0x140 } - - { offsetInCU: 0x47C5, offset: 0x68607, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x4C3C, symBinAddr: 0x16E9C, symSize: 0x5C } - - { offsetInCU: 0x4818, offset: 0x6865A, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x4C98, symBinAddr: 0x16EF8, symSize: 0x34 } - - { offsetInCU: 0x4862, offset: 0x686A4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x4CCC, symBinAddr: 0x16F2C, symSize: 0x11C } - - { offsetInCU: 0x4900, offset: 0x68742, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x4DE8, symBinAddr: 0x17048, symSize: 0x50 } - - { offsetInCU: 0x4953, offset: 0x68795, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x4E38, symBinAddr: 0x17098, symSize: 0x34 } - - { offsetInCU: 0x499D, offset: 0x687DF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x4E6C, symBinAddr: 0x170CC, symSize: 0x140 } - - { offsetInCU: 0x4A3B, offset: 0x6887D, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x4FAC, symBinAddr: 0x1720C, symSize: 0x34 } - - { offsetInCU: 0x4A8E, offset: 0x688D0, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x4FE0, symBinAddr: 0x17240, symSize: 0x34 } - - { offsetInCU: 0x4AD8, offset: 0x6891A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x5014, symBinAddr: 0x17274, symSize: 0x140 } - - { offsetInCU: 0x4B76, offset: 0x689B8, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x5154, symBinAddr: 0x173B4, symSize: 0x34 } - - { offsetInCU: 0x4BC9, offset: 0x68A0B, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x5188, symBinAddr: 0x173E8, symSize: 0x34 } - - { offsetInCU: 0x4C13, offset: 0x68A55, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x51BC, symBinAddr: 0x1741C, symSize: 0x11C } - - { offsetInCU: 0x4CB1, offset: 0x68AF3, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x52D8, symBinAddr: 0x17538, symSize: 0x34 } - - { offsetInCU: 0x4D04, offset: 0x68B46, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x530C, symBinAddr: 0x1756C, symSize: 0x34 } - - { offsetInCU: 0x4D4E, offset: 0x68B90, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5340, symBinAddr: 0x175A0, symSize: 0x140 } - - { offsetInCU: 0x4DEC, offset: 0x68C2E, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x5480, symBinAddr: 0x176E0, symSize: 0x34 } - - { offsetInCU: 0x4E3F, offset: 0x68C81, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x54B4, symBinAddr: 0x17714, symSize: 0x34 } - - { offsetInCU: 0x4E89, offset: 0x68CCB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x54E8, symBinAddr: 0x17748, symSize: 0x140 } - - { offsetInCU: 0x4F27, offset: 0x68D69, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5628, symBinAddr: 0x17888, symSize: 0x34 } - - { offsetInCU: 0x4F7A, offset: 0x68DBC, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x565C, symBinAddr: 0x178BC, symSize: 0x34 } - - { offsetInCU: 0x4FC4, offset: 0x68E06, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5690, symBinAddr: 0x178F0, symSize: 0x11C } - - { offsetInCU: 0x5062, offset: 0x68EA4, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x57AC, symBinAddr: 0x17A0C, symSize: 0x34 } - - { offsetInCU: 0x50B5, offset: 0x68EF7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x57E0, symBinAddr: 0x17A40, symSize: 0x34 } - - { offsetInCU: 0x50FF, offset: 0x68F41, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5814, symBinAddr: 0x17A74, symSize: 0x1B0 } - - { offsetInCU: 0x522A, offset: 0x6906C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x59C4, symBinAddr: 0x17C24, symSize: 0x140 } - - { offsetInCU: 0x52C8, offset: 0x6910A, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x5B04, symBinAddr: 0x17D64, symSize: 0x34 } - - { offsetInCU: 0x531B, offset: 0x6915D, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x5B38, symBinAddr: 0x17D98, symSize: 0x34 } - - { offsetInCU: 0x5365, offset: 0x691A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x5B6C, symBinAddr: 0x17DCC, symSize: 0x140 } - - { offsetInCU: 0x5403, offset: 0x69245, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x5CAC, symBinAddr: 0x17F0C, symSize: 0x34 } - - { offsetInCU: 0x5456, offset: 0x69298, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x5CE0, symBinAddr: 0x17F40, symSize: 0x34 } - - { offsetInCU: 0x54A0, offset: 0x692E2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x5D14, symBinAddr: 0x17F74, symSize: 0x11C } - - { offsetInCU: 0x553E, offset: 0x69380, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x5E30, symBinAddr: 0x18090, symSize: 0x34 } - - { offsetInCU: 0x5591, offset: 0x693D3, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x5E64, symBinAddr: 0x180C4, symSize: 0x34 } - - { offsetInCU: 0x55DB, offset: 0x6941D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x5E98, symBinAddr: 0x180F8, symSize: 0xD8 } - - { offsetInCU: 0x5671, offset: 0x694B3, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x5F70, symBinAddr: 0x181D0, symSize: 0x18 } - - { offsetInCU: 0x56CC, offset: 0x6950E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x5F88, symBinAddr: 0x181E8, symSize: 0xDC } - - { offsetInCU: 0x5762, offset: 0x695A4, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x6064, symBinAddr: 0x182C4, symSize: 0x1C } - - { offsetInCU: 0x57BD, offset: 0x695FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6080, symBinAddr: 0x182E0, symSize: 0xD8 } - - { offsetInCU: 0x5853, offset: 0x69695, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6158, symBinAddr: 0x183B8, symSize: 0x48 } - - { offsetInCU: 0x58A6, offset: 0x696E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x61A0, symBinAddr: 0x18400, symSize: 0xD8 } - - { offsetInCU: 0x593C, offset: 0x6977E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x6278, symBinAddr: 0x184D8, symSize: 0x48 } - - { offsetInCU: 0x598F, offset: 0x697D1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x62C0, symBinAddr: 0x18520, symSize: 0xA4 } - - { offsetInCU: 0x59F2, offset: 0x69834, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6364, symBinAddr: 0x185C4, symSize: 0xC } - - { offsetInCU: 0x5A48, offset: 0x6988A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6370, symBinAddr: 0x185D0, symSize: 0x184 } - - { offsetInCU: 0x5B28, offset: 0x6996A, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x64F4, symBinAddr: 0x18754, symSize: 0x26C } - - { offsetInCU: 0x5D0A, offset: 0x69B4C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x67EC, symBinAddr: 0x189C0, symSize: 0x174 } - - { offsetInCU: 0x5DD8, offset: 0x69C1A, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6960, symBinAddr: 0x18B34, symSize: 0x2A4 } - - { offsetInCU: 0x5F85, offset: 0x69DC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x6C04, symBinAddr: 0x18DD8, symSize: 0x90 } - - { offsetInCU: 0x5FE8, offset: 0x69E2A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x6C94, symBinAddr: 0x18E68, symSize: 0x184 } - - { offsetInCU: 0x60C8, offset: 0x69F0A, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x6E18, symBinAddr: 0x18FEC, symSize: 0x190 } - - { offsetInCU: 0x618E, offset: 0x69FD0, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x6FA8, symBinAddr: 0x1917C, symSize: 0x9C } - - { offsetInCU: 0x6203, offset: 0x6A045, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x7044, symBinAddr: 0x19218, symSize: 0x174 } - - { offsetInCU: 0x62D1, offset: 0x6A113, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x71B8, symBinAddr: 0x1938C, symSize: 0x184 } - - { offsetInCU: 0x63A8, offset: 0x6A1EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x733C, symBinAddr: 0x19510, symSize: 0x1E4 } - - { offsetInCU: 0x6458, offset: 0x6A29A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7520, symBinAddr: 0x196F4, symSize: 0xC0 } - - { offsetInCU: 0x6508, offset: 0x6A34A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x75E0, symBinAddr: 0x197B4, symSize: 0xC0 } - - { offsetInCU: 0x6597, offset: 0x6A3D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x76A0, symBinAddr: 0x19874, symSize: 0x84 } - - { offsetInCU: 0x65E0, offset: 0x6A422, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7724, symBinAddr: 0x198F8, symSize: 0xC } - - { offsetInCU: 0x6636, offset: 0x6A478, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7730, symBinAddr: 0x19904, symSize: 0x14 } - - { offsetInCU: 0x669F, offset: 0x6A4E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7744, symBinAddr: 0x19918, symSize: 0xC } - - { offsetInCU: 0x66F5, offset: 0x6A537, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7750, symBinAddr: 0x19924, symSize: 0x14 } - - { offsetInCU: 0x675E, offset: 0x6A5A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7764, symBinAddr: 0x19938, symSize: 0x1C4 } - - { offsetInCU: 0x684F, offset: 0x6A691, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x7928, symBinAddr: 0x19AFC, symSize: 0x270 } - - { offsetInCU: 0x6A5D, offset: 0x6A89F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x7C34, symBinAddr: 0x19D6C, symSize: 0x174 } - - { offsetInCU: 0x6B2B, offset: 0x6A96D, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x7DA8, symBinAddr: 0x19EE0, symSize: 0x18C } - - { offsetInCU: 0x6C52, offset: 0x6AA94, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x7F34, symBinAddr: 0x1A06C, symSize: 0x174 } - - { offsetInCU: 0x6D20, offset: 0x6AB62, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x80A8, symBinAddr: 0x1A1E0, symSize: 0x184 } - - { offsetInCU: 0x6E38, offset: 0x6AC7A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x822C, symBinAddr: 0x1A364, symSize: 0x150 } - - { offsetInCU: 0x6F02, offset: 0x6AD44, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x837C, symBinAddr: 0x1A4B4, symSize: 0x150 } - - { offsetInCU: 0x7021, offset: 0x6AE63, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x84CC, symBinAddr: 0x1A604, symSize: 0x150 } - - { offsetInCU: 0x70EB, offset: 0x6AF2D, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x861C, symBinAddr: 0x1A754, symSize: 0x114 } - - { offsetInCU: 0x71BD, offset: 0x6AFFF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x8730, symBinAddr: 0x1A868, symSize: 0x8 } - - { offsetInCU: 0x720D, offset: 0x6B04F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x8738, symBinAddr: 0x1A870, symSize: 0xCC } - - { offsetInCU: 0x72A2, offset: 0x6B0E4, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x8804, symBinAddr: 0x1A93C, symSize: 0x3C } - - { offsetInCU: 0x72F5, offset: 0x6B137, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x8840, symBinAddr: 0x1A978, symSize: 0x144 } - - { offsetInCU: 0x73AC, offset: 0x6B1EE, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x8984, symBinAddr: 0x1AABC, symSize: 0x94 } - - { offsetInCU: 0x7421, offset: 0x6B263, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x8A18, symBinAddr: 0x1AB50, symSize: 0x3C } - - { offsetInCU: 0x7474, offset: 0x6B2B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x8A54, symBinAddr: 0x1AB8C, symSize: 0x118 } - - { offsetInCU: 0x751A, offset: 0x6B35C, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x8B6C, symBinAddr: 0x1ACA4, symSize: 0x3C } - - { offsetInCU: 0x756D, offset: 0x6B3AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x8BA8, symBinAddr: 0x1ACE0, symSize: 0x8 } - - { offsetInCU: 0x75BD, offset: 0x6B3FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x8BB0, symBinAddr: 0x1ACE8, symSize: 0x13C } - - { offsetInCU: 0x768B, offset: 0x6B4CD, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x8CEC, symBinAddr: 0x1AE24, symSize: 0x50 } - - { offsetInCU: 0x7700, offset: 0x6B542, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x8D3C, symBinAddr: 0x1AE74, symSize: 0x144 } - - { offsetInCU: 0x774C, offset: 0x6B58E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x8E80, symBinAddr: 0x1AFB8, symSize: 0x2CC } - - { offsetInCU: 0x787B, offset: 0x6B6BD, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x914C, symBinAddr: 0x1B284, symSize: 0xB4 } - - { offsetInCU: 0x7913, offset: 0x6B755, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9200, symBinAddr: 0x1B338, symSize: 0x68 } - - { offsetInCU: 0x7977, offset: 0x6B7B9, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.151', symObjAddr: 0x9268, symBinAddr: 0x1B3A0, symSize: 0x54 } - - { offsetInCU: 0x79D6, offset: 0x6B818, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x92BC, symBinAddr: 0x1B3F4, symSize: 0x1A8 } - - { offsetInCU: 0x7B54, offset: 0x6B996, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0x9464, symBinAddr: 0x1B59C, symSize: 0x3C } - - { offsetInCU: 0x7B96, offset: 0x6B9D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0x94A0, symBinAddr: 0x1B5D8, symSize: 0x60 } - - { offsetInCU: 0x7BCA, offset: 0x6BA0C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0x9500, symBinAddr: 0x1B638, symSize: 0xC8 } - - { offsetInCU: 0x7CC5, offset: 0x6BB07, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0x95C8, symBinAddr: 0x1B700, symSize: 0x30 } - - { offsetInCU: 0x7D07, offset: 0x6BB49, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0x95F8, symBinAddr: 0x1B730, symSize: 0x14C } - - { offsetInCU: 0x7DC4, offset: 0x6BC06, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0x9744, symBinAddr: 0x1B87C, symSize: 0xD4 } - - { offsetInCU: 0x7E5E, offset: 0x6BCA0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0x9818, symBinAddr: 0x1B950, symSize: 0x30 } - - { offsetInCU: 0x7EA0, offset: 0x6BCE2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0x9848, symBinAddr: 0x1B980, symSize: 0x14C } - - { offsetInCU: 0x7F5D, offset: 0x6BD9F, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0x9994, symBinAddr: 0x1BACC, symSize: 0xD4 } - - { offsetInCU: 0x7FF7, offset: 0x6BE39, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0x9A68, symBinAddr: 0x1BBA0, symSize: 0x30 } - - { offsetInCU: 0x8039, offset: 0x6BE7B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0x9A98, symBinAddr: 0x1BBD0, symSize: 0x90 } - - { offsetInCU: 0x80B6, offset: 0x6BEF8, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0x9B28, symBinAddr: 0x1BC60, symSize: 0x64 } - - { offsetInCU: 0x80F8, offset: 0x6BF3A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0x9B8C, symBinAddr: 0x1BCC4, symSize: 0x8 } - - { offsetInCU: 0x8148, offset: 0x6BF8A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0x9B94, symBinAddr: 0x1BCCC, symSize: 0x13C } - - { offsetInCU: 0x8216, offset: 0x6C058, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9CD0, symBinAddr: 0x1BE08, symSize: 0x50 } - - { offsetInCU: 0x828B, offset: 0x6C0CD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0x9D20, symBinAddr: 0x1BE58, symSize: 0x658 } - - { offsetInCU: 0x8506, offset: 0x6C348, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xA378, symBinAddr: 0x1C4B0, symSize: 0xF8 } - - { offsetInCU: 0x85BD, offset: 0x6C3FF, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xA470, symBinAddr: 0x1C5A8, symSize: 0x94 } - - { offsetInCU: 0x8643, offset: 0x6C485, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.158', symObjAddr: 0xA504, symBinAddr: 0x1C63C, symSize: 0x80 } - - { offsetInCU: 0x86DD, offset: 0x6C51F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xA584, symBinAddr: 0x1C6BC, symSize: 0x3C } - - { offsetInCU: 0x8711, offset: 0x6C553, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xA5C0, symBinAddr: 0x1C6F8, symSize: 0x7C } - - { offsetInCU: 0x8763, offset: 0x6C5A5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xA63C, symBinAddr: 0x1C774, symSize: 0x90 } - - { offsetInCU: 0x87E0, offset: 0x6C622, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xA6CC, symBinAddr: 0x1C804, symSize: 0x34 } - - { offsetInCU: 0x8822, offset: 0x6C664, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xA700, symBinAddr: 0x1C838, symSize: 0x90 } - - { offsetInCU: 0x889F, offset: 0x6C6E1, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xA790, symBinAddr: 0x1C8C8, symSize: 0x5C } - - { offsetInCU: 0x88E1, offset: 0x6C723, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xA7EC, symBinAddr: 0x1C924, symSize: 0x4 } - - { offsetInCU: 0x8958, offset: 0x6C79A, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xA85C, symBinAddr: 0x1C994, symSize: 0x54 } - - { offsetInCU: 0x899A, offset: 0x6C7DC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xA8B0, symBinAddr: 0x1C9E8, symSize: 0xEC } - - { offsetInCU: 0x89DF, offset: 0x6C821, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xA99C, symBinAddr: 0x1CAD4, symSize: 0x90 } - - { offsetInCU: 0x8AD5, offset: 0x6C917, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xAA2C, symBinAddr: 0x1CB64, symSize: 0x90 } - - { offsetInCU: 0x8BBF, offset: 0x6CA01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xAABC, symBinAddr: 0x1CBF4, symSize: 0x1F8 } - - { offsetInCU: 0x8DEA, offset: 0x6CC2C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xACB4, symBinAddr: 0x1CDEC, symSize: 0x1B0 } - - { offsetInCU: 0x9006, offset: 0x6CE48, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xAE64, symBinAddr: 0x1CF9C, symSize: 0x10C } - - { offsetInCU: 0x90D3, offset: 0x6CF15, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xAF70, symBinAddr: 0x1D0A8, symSize: 0x10C } - - { offsetInCU: 0x91A0, offset: 0x6CFE2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xB07C, symBinAddr: 0x1D1B4, symSize: 0x60 } - - { offsetInCU: 0x91E5, offset: 0x6D027, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xB0DC, symBinAddr: 0x1D214, symSize: 0xD0 } - - { offsetInCU: 0x9300, offset: 0x6D142, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xB1AC, symBinAddr: 0x1D2E4, symSize: 0x50 } - - { offsetInCU: 0x9334, offset: 0x6D176, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xB1FC, symBinAddr: 0x1D334, symSize: 0xCC } - - { offsetInCU: 0x945C, offset: 0x6D29E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xB2C8, symBinAddr: 0x1D400, symSize: 0x90 } - - { offsetInCU: 0x94E6, offset: 0x6D328, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xB358, symBinAddr: 0x1D490, symSize: 0x38 } - - { offsetInCU: 0x9528, offset: 0x6D36A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xB390, symBinAddr: 0x1D4C8, symSize: 0x18 } - - { offsetInCU: 0x95A3, offset: 0x6D3E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xB3A8, symBinAddr: 0x1D4E0, symSize: 0x14 } - - { offsetInCU: 0x960B, offset: 0x6D44D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xB3BC, symBinAddr: 0x1D4F4, symSize: 0x48 } - - { offsetInCU: 0x9688, offset: 0x6D4CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xB404, symBinAddr: 0x1D53C, symSize: 0x40 } - - { offsetInCU: 0x96CE, offset: 0x6D510, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xB444, symBinAddr: 0x1D57C, symSize: 0x34 } - - { offsetInCU: 0x9714, offset: 0x6D556, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xB478, symBinAddr: 0x1D5B0, symSize: 0x34 } - - { offsetInCU: 0x975A, offset: 0x6D59C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xB4AC, symBinAddr: 0x1D5E4, symSize: 0x58 } - - { offsetInCU: 0x97B1, offset: 0x6D5F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xB504, symBinAddr: 0x1D63C, symSize: 0x58 } - - { offsetInCU: 0x9808, offset: 0x6D64A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xB55C, symBinAddr: 0x1D694, symSize: 0x8 } - - { offsetInCU: 0x983C, offset: 0x6D67E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xB564, symBinAddr: 0x1D69C, symSize: 0x7C } - - { offsetInCU: 0x98B3, offset: 0x6D6F5, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xB5E0, symBinAddr: 0x1D718, symSize: 0x7C } - - { offsetInCU: 0x992B, offset: 0x6D76D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xB65C, symBinAddr: 0x1D794, symSize: 0x10 } - - { offsetInCU: 0x996E, offset: 0x6D7B0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xB66C, symBinAddr: 0x1D7A4, symSize: 0x10 } - - { offsetInCU: 0x99B1, offset: 0x6D7F3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xB67C, symBinAddr: 0x1D7B4, symSize: 0x38 } - - { offsetInCU: 0x9A0B, offset: 0x6D84D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xB6B4, symBinAddr: 0x1D7EC, symSize: 0x34 } - - { offsetInCU: 0x9A65, offset: 0x6D8A7, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xB6E8, symBinAddr: 0x1D820, symSize: 0x34 } - - { offsetInCU: 0x9ABF, offset: 0x6D901, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xB71C, symBinAddr: 0x1D854, symSize: 0x3C } - - { offsetInCU: 0x9B19, offset: 0x6D95B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xB758, symBinAddr: 0x1D890, symSize: 0x3C } - - { offsetInCU: 0x9B73, offset: 0x6D9B5, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xB794, symBinAddr: 0x1D8CC, symSize: 0xC } - - { offsetInCU: 0x9BD8, offset: 0x6DA1A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xB7A0, symBinAddr: 0x1D8D8, symSize: 0x154 } - - { offsetInCU: 0x9CB0, offset: 0x6DAF2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xB8F4, symBinAddr: 0x1DA2C, symSize: 0x110 } - - { offsetInCU: 0x9CE4, offset: 0x6DB26, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xBA04, symBinAddr: 0x1DB3C, symSize: 0x50 } - - { offsetInCU: 0x9D44, offset: 0x6DB86, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xBA54, symBinAddr: 0x1DB8C, symSize: 0x50 } + - { offsetInCU: 0x34, offset: 0x54079, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x22338, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x540AE, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x22370, symSize: 0x0 } + - { offsetInCU: 0x41, offset: 0x54105, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x10AC0, symBinAddr: 0x28108, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x54125, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x10AC8, symBinAddr: 0x28110, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x5413B, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x10AD0, symBinAddr: 0x28118, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x54151, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x10AD8, symBinAddr: 0x28120, symSize: 0x0 } + - { offsetInCU: 0xA3, offset: 0x54167, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x10AE0, symBinAddr: 0x28128, symSize: 0x0 } + - { offsetInCU: 0xB9, offset: 0x5417D, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x10AE8, symBinAddr: 0x28130, symSize: 0x0 } + - { offsetInCU: 0xCF, offset: 0x54193, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x10AF0, symBinAddr: 0x28138, symSize: 0x0 } + - { offsetInCU: 0xE5, offset: 0x541A9, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x10AF8, symBinAddr: 0x28140, symSize: 0x0 } + - { offsetInCU: 0xFB, offset: 0x541BF, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x10B00, symBinAddr: 0x28148, symSize: 0x0 } + - { offsetInCU: 0x111, offset: 0x541D5, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x10B08, symBinAddr: 0x28150, symSize: 0x0 } + - { offsetInCU: 0x127, offset: 0x541EB, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x10B10, symBinAddr: 0x28158, symSize: 0x0 } + - { offsetInCU: 0x13D, offset: 0x54201, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x10B18, symBinAddr: 0x28160, symSize: 0x0 } + - { offsetInCU: 0x153, offset: 0x54217, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x10B20, symBinAddr: 0x28168, symSize: 0x0 } + - { offsetInCU: 0x16B, offset: 0x5422F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xAB34, symBinAddr: 0xE888, symSize: 0x4F0 } + - { offsetInCU: 0x48C, offset: 0x54550, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xCD4C, symBinAddr: 0x10AA0, symSize: 0x8C } + - { offsetInCU: 0x4B4, offset: 0x54578, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x56258, symBinAddr: 0x2EAB8, symSize: 0x0 } + - { offsetInCU: 0x51C, offset: 0x545E0, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x56270, symBinAddr: 0x2EAD0, symSize: 0x0 } + - { offsetInCU: 0x537, offset: 0x545FB, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x56260, symBinAddr: 0x2EAC0, symSize: 0x0 } + - { offsetInCU: 0x554, offset: 0x54618, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x56268, symBinAddr: 0x2EAC8, symSize: 0x0 } + - { offsetInCU: 0xB90, offset: 0x54C54, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0x3D54, symSize: 0x18 } + - { offsetInCU: 0xBC7, offset: 0x54C8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0x18, symBinAddr: 0x3D6C, symSize: 0x60 } + - { offsetInCU: 0xC0E, offset: 0x54CD2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x78, symBinAddr: 0x3DCC, symSize: 0x4C } + - { offsetInCU: 0xC41, offset: 0x54D05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xC4, symBinAddr: 0x3E18, symSize: 0x64 } + - { offsetInCU: 0xCF9, offset: 0x54DBD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x128, symBinAddr: 0x3E7C, symSize: 0xC } + - { offsetInCU: 0xD31, offset: 0x54DF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x134, symBinAddr: 0x3E88, symSize: 0x8 } + - { offsetInCU: 0xD69, offset: 0x54E2D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x13C, symBinAddr: 0x3E90, symSize: 0x34 } + - { offsetInCU: 0xDBF, offset: 0x54E83, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x170, symBinAddr: 0x3EC4, symSize: 0x24 } + - { offsetInCU: 0xE00, offset: 0x54EC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x194, symBinAddr: 0x3EE8, symSize: 0x14 } + - { offsetInCU: 0xE38, offset: 0x54EFC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x1A8, symBinAddr: 0x3EFC, symSize: 0x8 } + - { offsetInCU: 0xE70, offset: 0x54F34, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x1B0, symBinAddr: 0x3F04, symSize: 0x34 } + - { offsetInCU: 0xEC6, offset: 0x54F8A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1E4, symBinAddr: 0x3F38, symSize: 0x10 } + - { offsetInCU: 0xF07, offset: 0x54FCB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1F4, symBinAddr: 0x3F48, symSize: 0xC } + - { offsetInCU: 0xF39, offset: 0x54FFD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x200, symBinAddr: 0x3F54, symSize: 0x18 } + - { offsetInCU: 0xF71, offset: 0x55035, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x218, symBinAddr: 0x3F6C, symSize: 0x144 } + - { offsetInCU: 0x1020, offset: 0x550E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x35C, symBinAddr: 0x40B0, symSize: 0x50 } + - { offsetInCU: 0x10B4, offset: 0x55178, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x3AC, symBinAddr: 0x4100, symSize: 0x88 } + - { offsetInCU: 0x118C, offset: 0x55250, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x434, symBinAddr: 0x4188, symSize: 0x2C } + - { offsetInCU: 0x11F1, offset: 0x552B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x460, symBinAddr: 0x41B4, symSize: 0x6C } + - { offsetInCU: 0x12B8, offset: 0x5537C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x4CC, symBinAddr: 0x4220, symSize: 0x234 } + - { offsetInCU: 0x144A, offset: 0x5550E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x700, symBinAddr: 0x4454, symSize: 0xB0 } + - { offsetInCU: 0x1504, offset: 0x555C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7B0, symBinAddr: 0x4504, symSize: 0x30 } + - { offsetInCU: 0x1538, offset: 0x555FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7E0, symBinAddr: 0x4534, symSize: 0x18 } + - { offsetInCU: 0x1570, offset: 0x55634, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x7F8, symBinAddr: 0x454C, symSize: 0x90 } + - { offsetInCU: 0x15DB, offset: 0x5569F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x888, symBinAddr: 0x45DC, symSize: 0xC } + - { offsetInCU: 0x160F, offset: 0x556D3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x894, symBinAddr: 0x45E8, symSize: 0x18 } + - { offsetInCU: 0x1647, offset: 0x5570B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8AC, symBinAddr: 0x4600, symSize: 0x78 } + - { offsetInCU: 0x1690, offset: 0x55754, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x924, symBinAddr: 0x4678, symSize: 0xC } + - { offsetInCU: 0x16C4, offset: 0x55788, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x930, symBinAddr: 0x4684, symSize: 0x10 } + - { offsetInCU: 0x16FA, offset: 0x557BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x940, symBinAddr: 0x4694, symSize: 0x10 } + - { offsetInCU: 0x1743, offset: 0x55807, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x950, symBinAddr: 0x46A4, symSize: 0x8 } + - { offsetInCU: 0x1797, offset: 0x5585B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x958, symBinAddr: 0x46AC, symSize: 0x1B0 } + - { offsetInCU: 0x189B, offset: 0x5595F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB08, symBinAddr: 0x485C, symSize: 0xC8 } + - { offsetInCU: 0x1920, offset: 0x559E4, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xBD0, symBinAddr: 0x4924, symSize: 0xC } + - { offsetInCU: 0x1962, offset: 0x55A26, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xBDC, symBinAddr: 0x4930, symSize: 0x8 } + - { offsetInCU: 0x1989, offset: 0x55A4D, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xBE4, symBinAddr: 0x4938, symSize: 0x8 } + - { offsetInCU: 0x19A8, offset: 0x55A6C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xBEC, symBinAddr: 0x4940, symSize: 0x14 } + - { offsetInCU: 0x1A0F, offset: 0x55AD3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xC00, symBinAddr: 0x4954, symSize: 0xC } + - { offsetInCU: 0x1A83, offset: 0x55B47, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xC0C, symBinAddr: 0x4960, symSize: 0x1C0 } + - { offsetInCU: 0x1B6A, offset: 0x55C2E, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xDCC, symBinAddr: 0x4B20, symSize: 0x10 } + - { offsetInCU: 0x1B8F, offset: 0x55C53, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xDDC, symBinAddr: 0x4B30, symSize: 0x8 } + - { offsetInCU: 0x1BAE, offset: 0x55C72, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xDE4, symBinAddr: 0x4B38, symSize: 0x21C } + - { offsetInCU: 0x1D01, offset: 0x55DC5, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0x1000, symBinAddr: 0x4D54, symSize: 0x44 } + - { offsetInCU: 0x1D2A, offset: 0x55DEE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1044, symBinAddr: 0x4D98, symSize: 0x38 } + - { offsetInCU: 0x1D49, offset: 0x55E0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x107C, symBinAddr: 0x4DD0, symSize: 0xD0 } + - { offsetInCU: 0x1DC9, offset: 0x55E8D, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x114C, symBinAddr: 0x4EA0, symSize: 0x3C } + - { offsetInCU: 0x1E1C, offset: 0x55EE0, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x1188, symBinAddr: 0x4EDC, symSize: 0x34 } + - { offsetInCU: 0x1E45, offset: 0x55F09, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x11BC, symBinAddr: 0x4F10, symSize: 0x2C } + - { offsetInCU: 0x1E64, offset: 0x55F28, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x11E8, symBinAddr: 0x4F3C, symSize: 0xCC } + - { offsetInCU: 0x1F1C, offset: 0x55FE0, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x12B4, symBinAddr: 0x5008, symSize: 0xC } + - { offsetInCU: 0x1F6F, offset: 0x56033, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x12C0, symBinAddr: 0x5014, symSize: 0x28 } + - { offsetInCU: 0x1F98, offset: 0x5605C, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x12E8, symBinAddr: 0x503C, symSize: 0x28 } + - { offsetInCU: 0x1FB7, offset: 0x5607B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x1310, symBinAddr: 0x5064, symSize: 0x8 } + - { offsetInCU: 0x1FF8, offset: 0x560BC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x1318, symBinAddr: 0x506C, symSize: 0x8 } + - { offsetInCU: 0x2039, offset: 0x560FD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x1320, symBinAddr: 0x5074, symSize: 0xD0 } + - { offsetInCU: 0x20B9, offset: 0x5617D, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x13F0, symBinAddr: 0x5144, symSize: 0x14 } + - { offsetInCU: 0x210C, offset: 0x561D0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x1404, symBinAddr: 0x5158, symSize: 0xCC } + - { offsetInCU: 0x21B1, offset: 0x56275, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x14D0, symBinAddr: 0x5224, symSize: 0xC } + - { offsetInCU: 0x2204, offset: 0x562C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x14DC, symBinAddr: 0x5230, symSize: 0x8 } + - { offsetInCU: 0x2245, offset: 0x56309, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x14E4, symBinAddr: 0x5238, symSize: 0x8 } + - { offsetInCU: 0x2286, offset: 0x5634A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x14EC, symBinAddr: 0x5240, symSize: 0x138 } + - { offsetInCU: 0x233B, offset: 0x563FF, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x1624, symBinAddr: 0x5378, symSize: 0x54 } + - { offsetInCU: 0x239F, offset: 0x56463, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1678, symBinAddr: 0x53CC, symSize: 0x10C } + - { offsetInCU: 0x2455, offset: 0x56519, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1784, symBinAddr: 0x54D8, symSize: 0x34 } + - { offsetInCU: 0x24B9, offset: 0x5657D, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x17B8, symBinAddr: 0x550C, symSize: 0x30 } + - { offsetInCU: 0x24E2, offset: 0x565A6, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x17E8, symBinAddr: 0x553C, symSize: 0x30 } + - { offsetInCU: 0x2501, offset: 0x565C5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x1818, symBinAddr: 0x556C, symSize: 0x8 } + - { offsetInCU: 0x2551, offset: 0x56615, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x1820, symBinAddr: 0x5574, symSize: 0x8 } + - { offsetInCU: 0x25A1, offset: 0x56665, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x1828, symBinAddr: 0x557C, symSize: 0xB0 } + - { offsetInCU: 0x2621, offset: 0x566E5, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x18D8, symBinAddr: 0x562C, symSize: 0x1C } + - { offsetInCU: 0x267C, offset: 0x56740, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x18F4, symBinAddr: 0x5648, symSize: 0x94 } + - { offsetInCU: 0x2706, offset: 0x567CA, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1988, symBinAddr: 0x56DC, symSize: 0x20 } + - { offsetInCU: 0x275B, offset: 0x5681F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x19A8, symBinAddr: 0x56FC, symSize: 0xB0 } + - { offsetInCU: 0x27DB, offset: 0x5689F, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1A58, symBinAddr: 0x57AC, symSize: 0x1C } + - { offsetInCU: 0x2836, offset: 0x568FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1A74, symBinAddr: 0x57C8, symSize: 0x94 } + - { offsetInCU: 0x28C0, offset: 0x56984, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1B08, symBinAddr: 0x585C, symSize: 0x24 } + - { offsetInCU: 0x2915, offset: 0x569D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1B2C, symBinAddr: 0x5880, symSize: 0xB0 } + - { offsetInCU: 0x2995, offset: 0x56A59, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1BDC, symBinAddr: 0x5930, symSize: 0x1C } + - { offsetInCU: 0x29F0, offset: 0x56AB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1BF8, symBinAddr: 0x594C, symSize: 0x94 } + - { offsetInCU: 0x2A7A, offset: 0x56B3E, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1C8C, symBinAddr: 0x59E0, symSize: 0x24 } + - { offsetInCU: 0x2ACF, offset: 0x56B93, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1CB0, symBinAddr: 0x5A04, symSize: 0xDC } + - { offsetInCU: 0x2B65, offset: 0x56C29, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1D8C, symBinAddr: 0x5AE0, symSize: 0x14 } + - { offsetInCU: 0x2BC0, offset: 0x56C84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1DA0, symBinAddr: 0x5AF4, symSize: 0x94 } + - { offsetInCU: 0x2C4E, offset: 0x56D12, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1E34, symBinAddr: 0x5B88, symSize: 0x10 } + - { offsetInCU: 0x2CA3, offset: 0x56D67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1E44, symBinAddr: 0x5B98, symSize: 0xFC } + - { offsetInCU: 0x2D39, offset: 0x56DFD, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x1F40, symBinAddr: 0x5C94, symSize: 0x14 } + - { offsetInCU: 0x2D8C, offset: 0x56E50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x1F54, symBinAddr: 0x5CA8, symSize: 0xBC } + - { offsetInCU: 0x2E1A, offset: 0x56EDE, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x2010, symBinAddr: 0x5D64, symSize: 0x1C } + - { offsetInCU: 0x2E6D, offset: 0x56F31, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x202C, symBinAddr: 0x5D80, symSize: 0x10 } + - { offsetInCU: 0x2EC5, offset: 0x56F89, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x203C, symBinAddr: 0x5D90, symSize: 0x210 } + - { offsetInCU: 0x2FC7, offset: 0x5708B, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x224C, symBinAddr: 0x5FA0, symSize: 0x1E8 } + - { offsetInCU: 0x32A7, offset: 0x5736B, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.117', symObjAddr: 0x2434, symBinAddr: 0x6188, symSize: 0x4DC } + - { offsetInCU: 0x367F, offset: 0x57743, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x2910, symBinAddr: 0x6664, symSize: 0x7C } + - { offsetInCU: 0x3742, offset: 0x57806, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x298C, symBinAddr: 0x66E0, symSize: 0x30 } + - { offsetInCU: 0x376B, offset: 0x5782F, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x29BC, symBinAddr: 0x6710, symSize: 0x28 } + - { offsetInCU: 0x378A, offset: 0x5784E, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.132', symObjAddr: 0x29E4, symBinAddr: 0x6738, symSize: 0x8 } + - { offsetInCU: 0x37D6, offset: 0x5789A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.134', symObjAddr: 0x29EC, symBinAddr: 0x6740, symSize: 0x7C } + - { offsetInCU: 0x3886, offset: 0x5794A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2A68, symBinAddr: 0x67BC, symSize: 0x8 } + - { offsetInCU: 0x38D2, offset: 0x57996, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2A70, symBinAddr: 0x67C4, symSize: 0x5C } + - { offsetInCU: 0x38FB, offset: 0x579BF, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2ACC, symBinAddr: 0x6820, symSize: 0x48 } + - { offsetInCU: 0x391A, offset: 0x579DE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2B14, symBinAddr: 0x6868, symSize: 0x1F0 } + - { offsetInCU: 0x39FA, offset: 0x57ABE, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2D04, symBinAddr: 0x6A58, symSize: 0x1E8 } + - { offsetInCU: 0x3C0B, offset: 0x57CCF, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x2EEC, symBinAddr: 0x6C40, symSize: 0x360 } + - { offsetInCU: 0x3E17, offset: 0x57EDB, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x324C, symBinAddr: 0x6FA0, symSize: 0x78 } + - { offsetInCU: 0x3EC7, offset: 0x57F8B, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x32C4, symBinAddr: 0x7018, symSize: 0x8 } + - { offsetInCU: 0x3F13, offset: 0x57FD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x32CC, symBinAddr: 0x7020, symSize: 0x254 } + - { offsetInCU: 0x4166, offset: 0x5822A, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x3520, symBinAddr: 0x7274, symSize: 0x148 } + - { offsetInCU: 0x423A, offset: 0x582FE, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3668, symBinAddr: 0x73BC, symSize: 0x34 } + - { offsetInCU: 0x4289, offset: 0x5834D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x369C, symBinAddr: 0x73F0, symSize: 0x1D4 } + - { offsetInCU: 0x43A2, offset: 0x58466, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x3870, symBinAddr: 0x75C4, symSize: 0x12C } + - { offsetInCU: 0x4489, offset: 0x5854D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x399C, symBinAddr: 0x76F0, symSize: 0x8 } + - { offsetInCU: 0x44EC, offset: 0x585B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x39A4, symBinAddr: 0x76F8, symSize: 0xC } + - { offsetInCU: 0x4561, offset: 0x58625, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x39B0, symBinAddr: 0x7704, symSize: 0x200 } + - { offsetInCU: 0x4685, offset: 0x58749, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x3BB0, symBinAddr: 0x7904, symSize: 0x1C4 } + - { offsetInCU: 0x47E8, offset: 0x588AC, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x3D74, symBinAddr: 0x7AC8, symSize: 0x2D4 } + - { offsetInCU: 0x493C, offset: 0x58A00, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x4048, symBinAddr: 0x7D9C, symSize: 0x34 } + - { offsetInCU: 0x499C, offset: 0x58A60, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.153', symObjAddr: 0x407C, symBinAddr: 0x7DD0, symSize: 0x38 } + - { offsetInCU: 0x4A0D, offset: 0x58AD1, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x40B4, symBinAddr: 0x7E08, symSize: 0x38 } + - { offsetInCU: 0x4A36, offset: 0x58AFA, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x40EC, symBinAddr: 0x7E40, symSize: 0x30 } + - { offsetInCU: 0x4A55, offset: 0x58B19, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x411C, symBinAddr: 0x7E70, symSize: 0x54 } + - { offsetInCU: 0x4A7E, offset: 0x58B42, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x4170, symBinAddr: 0x7EC4, symSize: 0x10 } + - { offsetInCU: 0x4AD4, offset: 0x58B98, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x4180, symBinAddr: 0x7ED4, symSize: 0xC } + - { offsetInCU: 0x4B3A, offset: 0x58BFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x418C, symBinAddr: 0x7EE0, symSize: 0x208 } + - { offsetInCU: 0x4C4D, offset: 0x58D11, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4394, symBinAddr: 0x80E8, symSize: 0x1C8 } + - { offsetInCU: 0x4DA3, offset: 0x58E67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x455C, symBinAddr: 0x82B0, symSize: 0x194 } + - { offsetInCU: 0x4E83, offset: 0x58F47, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x46F0, symBinAddr: 0x8444, symSize: 0x12C } + - { offsetInCU: 0x4F49, offset: 0x5900D, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x481C, symBinAddr: 0x8570, symSize: 0x4C } + - { offsetInCU: 0x4F72, offset: 0x59036, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4868, symBinAddr: 0x85BC, symSize: 0x40 } + - { offsetInCU: 0x4F91, offset: 0x59055, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x48A8, symBinAddr: 0x85FC, symSize: 0x12C } + - { offsetInCU: 0x503C, offset: 0x59100, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x49D4, symBinAddr: 0x8728, symSize: 0xF0 } + - { offsetInCU: 0x510A, offset: 0x591CE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x4AC4, symBinAddr: 0x8818, symSize: 0x58 } + - { offsetInCU: 0x5160, offset: 0x59224, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x4B1C, symBinAddr: 0x8870, symSize: 0xFC } + - { offsetInCU: 0x526B, offset: 0x5932F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x4C18, symBinAddr: 0x896C, symSize: 0xE4 } + - { offsetInCU: 0x534E, offset: 0x59412, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x4CFC, symBinAddr: 0x8A50, symSize: 0x114 } + - { offsetInCU: 0x540F, offset: 0x594D3, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x4E10, symBinAddr: 0x8B64, symSize: 0xE4 } + - { offsetInCU: 0x5532, offset: 0x595F6, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x4EF4, symBinAddr: 0x8C48, symSize: 0xD4 } + - { offsetInCU: 0x55E9, offset: 0x596AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x4FC8, symBinAddr: 0x8D1C, symSize: 0x7C } + - { offsetInCU: 0x5644, offset: 0x59708, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x5044, symBinAddr: 0x8D98, symSize: 0x24 } + - { offsetInCU: 0x5687, offset: 0x5974B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5068, symBinAddr: 0x8DBC, symSize: 0x1DC } + - { offsetInCU: 0x57BD, offset: 0x59881, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5244, symBinAddr: 0x8F98, symSize: 0x10 } + - { offsetInCU: 0x5832, offset: 0x598F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5254, symBinAddr: 0x8FA8, symSize: 0x158 } + - { offsetInCU: 0x59A0, offset: 0x59A64, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x53AC, symBinAddr: 0x9100, symSize: 0x9C } + - { offsetInCU: 0x5A9C, offset: 0x59B60, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0xE6E4, symBinAddr: 0x1E0F8, symSize: 0xC0 } + - { offsetInCU: 0x5AD5, offset: 0x59B99, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5448, symBinAddr: 0x919C, symSize: 0x34 } + - { offsetInCU: 0x5B28, offset: 0x59BEC, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x547C, symBinAddr: 0x91D0, symSize: 0x34 } + - { offsetInCU: 0x5B8C, offset: 0x59C50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x54B0, symBinAddr: 0x9204, symSize: 0x310 } + - { offsetInCU: 0x5D1C, offset: 0x59DE0, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x57C0, symBinAddr: 0x9514, symSize: 0x84 } + - { offsetInCU: 0x5D5E, offset: 0x59E22, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x5844, symBinAddr: 0x9598, symSize: 0x90 } + - { offsetInCU: 0x5DB1, offset: 0x59E75, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x58D4, symBinAddr: 0x9628, symSize: 0xA0 } + - { offsetInCU: 0x5E54, offset: 0x59F18, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x5974, symBinAddr: 0x96C8, symSize: 0x34 } + - { offsetInCU: 0x5E9E, offset: 0x59F62, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x59A8, symBinAddr: 0x96FC, symSize: 0x10 } + - { offsetInCU: 0x5EC7, offset: 0x59F8B, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x59B8, symBinAddr: 0x970C, symSize: 0x44 } + - { offsetInCU: 0x5EF0, offset: 0x59FB4, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x59FC, symBinAddr: 0x9750, symSize: 0x38 } + - { offsetInCU: 0x5F0F, offset: 0x59FD3, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.179', symObjAddr: 0x5A34, symBinAddr: 0x9788, symSize: 0x9C } + - { offsetInCU: 0x5FA1, offset: 0x5A065, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.180', symObjAddr: 0x5AD0, symBinAddr: 0x9824, symSize: 0x34 } + - { offsetInCU: 0x5FEB, offset: 0x5A0AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x5B04, symBinAddr: 0x9858, symSize: 0x18 } + - { offsetInCU: 0x603D, offset: 0x5A101, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x5B1C, symBinAddr: 0x9870, symSize: 0x108 } + - { offsetInCU: 0x6141, offset: 0x5A205, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x5C24, symBinAddr: 0x9978, symSize: 0x48 } + - { offsetInCU: 0x619F, offset: 0x5A263, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x5C6C, symBinAddr: 0x99C0, symSize: 0xC } + - { offsetInCU: 0x61C8, offset: 0x5A28C, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x5C78, symBinAddr: 0x99CC, symSize: 0x8 } + - { offsetInCU: 0x61E7, offset: 0x5A2AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x5C80, symBinAddr: 0x99D4, symSize: 0x68 } + - { offsetInCU: 0x6238, offset: 0x5A2FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x5CE8, symBinAddr: 0x9A3C, symSize: 0x44 } + - { offsetInCU: 0x626C, offset: 0x5A330, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x5D2C, symBinAddr: 0x9A80, symSize: 0x324 } + - { offsetInCU: 0x64C9, offset: 0x5A58D, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x6050, symBinAddr: 0x9DA4, symSize: 0x34 } + - { offsetInCU: 0x6529, offset: 0x5A5ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6084, symBinAddr: 0x9DD8, symSize: 0x90 } + - { offsetInCU: 0x65A6, offset: 0x5A66A, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6114, symBinAddr: 0x9E68, symSize: 0x3C } + - { offsetInCU: 0x65E8, offset: 0x5A6AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x6150, symBinAddr: 0x9EA4, symSize: 0x58 } + - { offsetInCU: 0x6632, offset: 0x5A6F6, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x61A8, symBinAddr: 0x9EFC, symSize: 0x48 } + - { offsetInCU: 0x6674, offset: 0x5A738, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x61F0, symBinAddr: 0x9F44, symSize: 0x58 } + - { offsetInCU: 0x66BE, offset: 0x5A782, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6248, symBinAddr: 0x9F9C, symSize: 0x48 } + - { offsetInCU: 0x6700, offset: 0x5A7C4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x6290, symBinAddr: 0x9FE4, symSize: 0x58 } + - { offsetInCU: 0x674A, offset: 0x5A80E, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x62E8, symBinAddr: 0xA03C, symSize: 0x48 } + - { offsetInCU: 0x678C, offset: 0x5A850, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x6330, symBinAddr: 0xA084, symSize: 0x70 } + - { offsetInCU: 0x67D1, offset: 0x5A895, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x63A0, symBinAddr: 0xA0F4, symSize: 0xD4 } + - { offsetInCU: 0x6827, offset: 0x5A8EB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6474, symBinAddr: 0xA1C8, symSize: 0xD4 } + - { offsetInCU: 0x687D, offset: 0x5A941, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6548, symBinAddr: 0xA29C, symSize: 0xF4 } + - { offsetInCU: 0x690E, offset: 0x5A9D2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x663C, symBinAddr: 0xA390, symSize: 0x118 } + - { offsetInCU: 0x6986, offset: 0x5AA4A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x6754, symBinAddr: 0xA4A8, symSize: 0x100 } + - { offsetInCU: 0x69DC, offset: 0x5AAA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x6854, symBinAddr: 0xA5A8, symSize: 0xC0 } + - { offsetInCU: 0x6A43, offset: 0x5AB07, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x6914, symBinAddr: 0xA668, symSize: 0x10C } + - { offsetInCU: 0x6A99, offset: 0x5AB5D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x6A20, symBinAddr: 0xA774, symSize: 0x10C } + - { offsetInCU: 0x6AEF, offset: 0x5ABB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x6B2C, symBinAddr: 0xA880, symSize: 0x10C } + - { offsetInCU: 0x6B45, offset: 0x5AC09, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x6C38, symBinAddr: 0xA98C, symSize: 0x10C } + - { offsetInCU: 0x6B9B, offset: 0x5AC5F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x6D44, symBinAddr: 0xAA98, symSize: 0x10C } + - { offsetInCU: 0x6BF1, offset: 0x5ACB5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x6E50, symBinAddr: 0xABA4, symSize: 0xD4 } + - { offsetInCU: 0x6C47, offset: 0x5AD0B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x6F24, symBinAddr: 0xAC78, symSize: 0xD8 } + - { offsetInCU: 0x6CDD, offset: 0x5ADA1, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x6FFC, symBinAddr: 0xAD50, symSize: 0x1C } + - { offsetInCU: 0x6D38, offset: 0x5ADFC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7018, symBinAddr: 0xAD6C, symSize: 0xD8 } + - { offsetInCU: 0x6DCE, offset: 0x5AE92, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x70F0, symBinAddr: 0xAE44, symSize: 0x18 } + - { offsetInCU: 0x6E29, offset: 0x5AEED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7108, symBinAddr: 0xAE5C, symSize: 0x10C } + - { offsetInCU: 0x6EA9, offset: 0x5AF6D, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7214, symBinAddr: 0xAF68, symSize: 0x78 } + - { offsetInCU: 0x6EFC, offset: 0x5AFC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x728C, symBinAddr: 0xAFE0, symSize: 0xE4 } + - { offsetInCU: 0x6F7C, offset: 0x5B040, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x7370, symBinAddr: 0xB0C4, symSize: 0x50 } + - { offsetInCU: 0x6FCF, offset: 0x5B093, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x73C0, symBinAddr: 0xB114, symSize: 0xEC } + - { offsetInCU: 0x704F, offset: 0x5B113, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x74AC, symBinAddr: 0xB200, symSize: 0x5C } + - { offsetInCU: 0x70A2, offset: 0x5B166, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7508, symBinAddr: 0xB25C, symSize: 0x10C } + - { offsetInCU: 0x7122, offset: 0x5B1E6, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x7614, symBinAddr: 0xB368, symSize: 0x78 } + - { offsetInCU: 0x7175, offset: 0x5B239, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x768C, symBinAddr: 0xB3E0, symSize: 0xE4 } + - { offsetInCU: 0x71F5, offset: 0x5B2B9, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x7770, symBinAddr: 0xB4C4, symSize: 0x50 } + - { offsetInCU: 0x7248, offset: 0x5B30C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x77C0, symBinAddr: 0xB514, symSize: 0x30 } + - { offsetInCU: 0x7280, offset: 0x5B344, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x77F0, symBinAddr: 0xB544, symSize: 0x30 } + - { offsetInCU: 0x72B8, offset: 0x5B37C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x7820, symBinAddr: 0xB574, symSize: 0x18 } + - { offsetInCU: 0x72F0, offset: 0x5B3B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x7838, symBinAddr: 0xB58C, symSize: 0x18 } + - { offsetInCU: 0x7328, offset: 0x5B3EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x7850, symBinAddr: 0xB5A4, symSize: 0x30 } + - { offsetInCU: 0x7360, offset: 0x5B424, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x7880, symBinAddr: 0xB5D4, symSize: 0x30 } + - { offsetInCU: 0x7398, offset: 0x5B45C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x78B0, symBinAddr: 0xB604, symSize: 0x18 } + - { offsetInCU: 0x73D0, offset: 0x5B494, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x78C8, symBinAddr: 0xB61C, symSize: 0x18 } + - { offsetInCU: 0x7408, offset: 0x5B4CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x78E0, symBinAddr: 0xB634, symSize: 0x90 } + - { offsetInCU: 0x7497, offset: 0x5B55B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x7970, symBinAddr: 0xB6C4, symSize: 0x64 } + - { offsetInCU: 0x7526, offset: 0x5B5EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x79D4, symBinAddr: 0xB728, symSize: 0x88 } + - { offsetInCU: 0x75B5, offset: 0x5B679, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x7A5C, symBinAddr: 0xB7B0, symSize: 0x5C } + - { offsetInCU: 0x7644, offset: 0x5B708, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x7AB8, symBinAddr: 0xB80C, symSize: 0x90 } + - { offsetInCU: 0x76D3, offset: 0x5B797, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x7B48, symBinAddr: 0xB89C, symSize: 0x90 } + - { offsetInCU: 0x7783, offset: 0x5B847, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x7BD8, symBinAddr: 0xB92C, symSize: 0x64 } + - { offsetInCU: 0x7812, offset: 0x5B8D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x7C3C, symBinAddr: 0xB990, symSize: 0x88 } + - { offsetInCU: 0x78A1, offset: 0x5B965, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x7CC4, symBinAddr: 0xBA18, symSize: 0x5C } + - { offsetInCU: 0x7930, offset: 0x5B9F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x7D20, symBinAddr: 0xBA74, symSize: 0xFC } + - { offsetInCU: 0x79C6, offset: 0x5BA8A, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x7E1C, symBinAddr: 0xBB70, symSize: 0x100 } + - { offsetInCU: 0x7AB3, offset: 0x5BB77, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x7F1C, symBinAddr: 0xBC70, symSize: 0xFC } + - { offsetInCU: 0x7B49, offset: 0x5BC0D, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8018, symBinAddr: 0xBD6C, symSize: 0x100 } + - { offsetInCU: 0x7C36, offset: 0x5BCFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8118, symBinAddr: 0xBE6C, symSize: 0xB4 } + - { offsetInCU: 0x7CB6, offset: 0x5BD7A, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x81CC, symBinAddr: 0xBF20, symSize: 0x1C } + - { offsetInCU: 0x7D11, offset: 0x5BDD5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x81E8, symBinAddr: 0xBF3C, symSize: 0xB4 } + - { offsetInCU: 0x7D91, offset: 0x5BE55, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x829C, symBinAddr: 0xBFF0, symSize: 0x1C } + - { offsetInCU: 0x7DEC, offset: 0x5BEB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x82B8, symBinAddr: 0xC00C, symSize: 0xAC } + - { offsetInCU: 0x7E6C, offset: 0x5BF30, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8364, symBinAddr: 0xC0B8, symSize: 0x18 } + - { offsetInCU: 0x7EC7, offset: 0x5BF8B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x837C, symBinAddr: 0xC0D0, symSize: 0x3FC } + - { offsetInCU: 0x81CE, offset: 0x5C292, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x8778, symBinAddr: 0xC4CC, symSize: 0xDC } + - { offsetInCU: 0x8245, offset: 0x5C309, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x8854, symBinAddr: 0xC5A8, symSize: 0x1F0 } + - { offsetInCU: 0x835F, offset: 0x5C423, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x8A44, symBinAddr: 0xC798, symSize: 0x64 } + - { offsetInCU: 0x83CB, offset: 0x5C48F, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x8AA8, symBinAddr: 0xC7FC, symSize: 0x54 } + - { offsetInCU: 0x8429, offset: 0x5C4ED, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x8AFC, symBinAddr: 0xC850, symSize: 0x24 } + - { offsetInCU: 0x8486, offset: 0x5C54A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x8B20, symBinAddr: 0xC874, symSize: 0x10 } + - { offsetInCU: 0x84AF, offset: 0x5C573, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x8B30, symBinAddr: 0xC884, symSize: 0xC } + - { offsetInCU: 0x84CE, offset: 0x5C592, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.216', symObjAddr: 0x8B3C, symBinAddr: 0xC890, symSize: 0x24 } + - { offsetInCU: 0x852B, offset: 0x5C5EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x8B60, symBinAddr: 0xC8B4, symSize: 0x18 } + - { offsetInCU: 0x8563, offset: 0x5C627, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x8B78, symBinAddr: 0xC8CC, symSize: 0x18 } + - { offsetInCU: 0x859B, offset: 0x5C65F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x8B90, symBinAddr: 0xC8E4, symSize: 0x38 } + - { offsetInCU: 0x85EC, offset: 0x5C6B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x8BC8, symBinAddr: 0xC91C, symSize: 0x38 } + - { offsetInCU: 0x862E, offset: 0x5C6F2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x8C00, symBinAddr: 0xC954, symSize: 0x38 } + - { offsetInCU: 0x8670, offset: 0x5C734, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x8C38, symBinAddr: 0xC98C, symSize: 0x38 } + - { offsetInCU: 0x86B2, offset: 0x5C776, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x8C70, symBinAddr: 0xC9C4, symSize: 0x14 } + - { offsetInCU: 0x8705, offset: 0x5C7C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8C84, symBinAddr: 0xC9D8, symSize: 0xC } + - { offsetInCU: 0x8776, offset: 0x5C83A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8C90, symBinAddr: 0xC9E4, symSize: 0xF0 } + - { offsetInCU: 0x882D, offset: 0x5C8F1, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x8D80, symBinAddr: 0xCAD4, symSize: 0x54 } + - { offsetInCU: 0x8880, offset: 0x5C944, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x8DD4, symBinAddr: 0xCB28, symSize: 0x10 } + - { offsetInCU: 0x88E2, offset: 0x5C9A6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8DE4, symBinAddr: 0xCB38, symSize: 0xF8 } + - { offsetInCU: 0x8999, offset: 0x5CA5D, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x8EDC, symBinAddr: 0xCC30, symSize: 0x54 } + - { offsetInCU: 0x89EC, offset: 0x5CAB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x8F30, symBinAddr: 0xCC84, symSize: 0x14 } + - { offsetInCU: 0x8A4E, offset: 0x5CB12, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x8F44, symBinAddr: 0xCC98, symSize: 0xC } + - { offsetInCU: 0x8ACE, offset: 0x5CB92, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x8F50, symBinAddr: 0xCCA4, symSize: 0x14 } + - { offsetInCU: 0x8B41, offset: 0x5CC05, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x8F64, symBinAddr: 0xCCB8, symSize: 0x12C } + - { offsetInCU: 0x8C09, offset: 0x5CCCD, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x9090, symBinAddr: 0xCDE4, symSize: 0x54 } + - { offsetInCU: 0x8C5C, offset: 0x5CD20, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x90E4, symBinAddr: 0xCE38, symSize: 0xE8 } + - { offsetInCU: 0x8D25, offset: 0x5CDE9, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x91CC, symBinAddr: 0xCF20, symSize: 0xD0 } + - { offsetInCU: 0x8DDC, offset: 0x5CEA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x929C, symBinAddr: 0xCFF0, symSize: 0x130 } + - { offsetInCU: 0x8E10, offset: 0x5CED4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0x93CC, symBinAddr: 0xD120, symSize: 0x194 } + - { offsetInCU: 0x8FC0, offset: 0x5D084, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0x9560, symBinAddr: 0xD2B4, symSize: 0x70 } + - { offsetInCU: 0x9061, offset: 0x5D125, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0x95D0, symBinAddr: 0xD324, symSize: 0x944 } + - { offsetInCU: 0x942E, offset: 0x5D4F2, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0x9F14, symBinAddr: 0xDC68, symSize: 0x34 } + - { offsetInCU: 0x94A3, offset: 0x5D567, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0x9F48, symBinAddr: 0xDC9C, symSize: 0x200 } + - { offsetInCU: 0x95A5, offset: 0x5D669, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xA148, symBinAddr: 0xDE9C, symSize: 0x30 } + - { offsetInCU: 0x95F8, offset: 0x5D6BC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xA178, symBinAddr: 0xDECC, symSize: 0x188 } + - { offsetInCU: 0x9716, offset: 0x5D7DA, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xA300, symBinAddr: 0xE054, symSize: 0x38 } + - { offsetInCU: 0x978B, offset: 0x5D84F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xA338, symBinAddr: 0xE08C, symSize: 0x38 } + - { offsetInCU: 0x97B4, offset: 0x5D878, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xA370, symBinAddr: 0xE0C4, symSize: 0x3C } + - { offsetInCU: 0x97F6, offset: 0x5D8BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xA3AC, symBinAddr: 0xE100, symSize: 0x108 } + - { offsetInCU: 0x98DC, offset: 0x5D9A0, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xA4B4, symBinAddr: 0xE208, symSize: 0x48 } + - { offsetInCU: 0x993A, offset: 0x5D9FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xA4FC, symBinAddr: 0xE250, symSize: 0xF4 } + - { offsetInCU: 0x99B8, offset: 0x5DA7C, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xA5F0, symBinAddr: 0xE344, symSize: 0x90 } + - { offsetInCU: 0x9A52, offset: 0x5DB16, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xA680, symBinAddr: 0xE3D4, symSize: 0x34 } + - { offsetInCU: 0x9AA5, offset: 0x5DB69, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xA6B4, symBinAddr: 0xE408, symSize: 0xB0 } + - { offsetInCU: 0x9B34, offset: 0x5DBF8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xA764, symBinAddr: 0xE4B8, symSize: 0xCC } + - { offsetInCU: 0x9BC9, offset: 0x5DC8D, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xA830, symBinAddr: 0xE584, symSize: 0x54 } + - { offsetInCU: 0x9C1C, offset: 0x5DCE0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xA884, symBinAddr: 0xE5D8, symSize: 0xE8 } + - { offsetInCU: 0x9CE5, offset: 0x5DDA9, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xA96C, symBinAddr: 0xE6C0, symSize: 0xCC } + - { offsetInCU: 0x9D9C, offset: 0x5DE60, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xAA38, symBinAddr: 0xE78C, symSize: 0xFC } + - { offsetInCU: 0x9E4D, offset: 0x5DF11, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xB024, symBinAddr: 0xED78, symSize: 0x30 } + - { offsetInCU: 0x9E8F, offset: 0x5DF53, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xB054, symBinAddr: 0xEDA8, symSize: 0x34 } + - { offsetInCU: 0x9F04, offset: 0x5DFC8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xB088, symBinAddr: 0xEDDC, symSize: 0xC0 } + - { offsetInCU: 0x9F86, offset: 0x5E04A, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xB148, symBinAddr: 0xEE9C, symSize: 0x34 } + - { offsetInCU: 0x9FEA, offset: 0x5E0AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xB17C, symBinAddr: 0xEED0, symSize: 0x3C } + - { offsetInCU: 0xA02C, offset: 0x5E0F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xB1B8, symBinAddr: 0xEF0C, symSize: 0x108 } + - { offsetInCU: 0xA112, offset: 0x5E1D6, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xB2C0, symBinAddr: 0xF014, symSize: 0x48 } + - { offsetInCU: 0xA170, offset: 0x5E234, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xB308, symBinAddr: 0xF05C, symSize: 0xF4 } + - { offsetInCU: 0xA1EE, offset: 0x5E2B2, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xB3FC, symBinAddr: 0xF150, symSize: 0x8C } + - { offsetInCU: 0xA288, offset: 0x5E34C, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xB488, symBinAddr: 0xF1DC, symSize: 0x34 } + - { offsetInCU: 0xA2DB, offset: 0x5E39F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xB4BC, symBinAddr: 0xF210, symSize: 0xB0 } + - { offsetInCU: 0xA36A, offset: 0x5E42E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xB56C, symBinAddr: 0xF2C0, symSize: 0xC8 } + - { offsetInCU: 0xA3DD, offset: 0x5E4A1, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xB634, symBinAddr: 0xF388, symSize: 0x78 } + - { offsetInCU: 0xA430, offset: 0x5E4F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xB6AC, symBinAddr: 0xF400, symSize: 0xFC } + - { offsetInCU: 0xA4BA, offset: 0x5E57E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xB7A8, symBinAddr: 0xF4FC, symSize: 0x1BC } + - { offsetInCU: 0xA669, offset: 0x5E72D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xB964, symBinAddr: 0xF6B8, symSize: 0xCC } + - { offsetInCU: 0xA73F, offset: 0x5E803, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xBA30, symBinAddr: 0xF784, symSize: 0x978 } + - { offsetInCU: 0xABE0, offset: 0x5ECA4, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xC3A8, symBinAddr: 0x100FC, symSize: 0xC } + - { offsetInCU: 0xAC3C, offset: 0x5ED00, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xC3B4, symBinAddr: 0x10108, symSize: 0xC } + - { offsetInCU: 0xAC98, offset: 0x5ED5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xC3C0, symBinAddr: 0x10114, symSize: 0x374 } + - { offsetInCU: 0xAE2B, offset: 0x5EEEF, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xC734, symBinAddr: 0x10488, symSize: 0x30 } + - { offsetInCU: 0xAE7E, offset: 0x5EF42, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xC764, symBinAddr: 0x104B8, symSize: 0xB0 } + - { offsetInCU: 0xAF19, offset: 0x5EFDD, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xC814, symBinAddr: 0x10568, symSize: 0x78 } + - { offsetInCU: 0xAFB8, offset: 0x5F07C, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xC88C, symBinAddr: 0x105E0, symSize: 0x38 } + - { offsetInCU: 0xAFE1, offset: 0x5F0A5, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xC8C4, symBinAddr: 0x10618, symSize: 0x2C } + - { offsetInCU: 0xB000, offset: 0x5F0C4, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xC8F0, symBinAddr: 0x10644, symSize: 0x40 } + - { offsetInCU: 0xB029, offset: 0x5F0ED, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xC930, symBinAddr: 0x10684, symSize: 0x34 } + - { offsetInCU: 0xB048, offset: 0x5F10C, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.305', symObjAddr: 0xC964, symBinAddr: 0x106B8, symSize: 0x3C } + - { offsetInCU: 0xB0BD, offset: 0x5F181, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xC9A0, symBinAddr: 0x106F4, symSize: 0x4C } + - { offsetInCU: 0xB0E6, offset: 0x5F1AA, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xC9EC, symBinAddr: 0x10740, symSize: 0x3C } + - { offsetInCU: 0xB105, offset: 0x5F1C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xCA28, symBinAddr: 0x1077C, symSize: 0x78 } + - { offsetInCU: 0xB15B, offset: 0x5F21F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xCAA0, symBinAddr: 0x107F4, symSize: 0xE8 } + - { offsetInCU: 0xB1CC, offset: 0x5F290, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xCB88, symBinAddr: 0x108DC, symSize: 0x30 } + - { offsetInCU: 0xB21F, offset: 0x5F2E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xCBB8, symBinAddr: 0x1090C, symSize: 0x20 } + - { offsetInCU: 0xB260, offset: 0x5F324, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xCBD8, symBinAddr: 0x1092C, symSize: 0x170 } + - { offsetInCU: 0xB360, offset: 0x5F424, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xCD48, symBinAddr: 0x10A9C, symSize: 0x4 } + - { offsetInCU: 0xB3D7, offset: 0x5F49B, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCDD8, symBinAddr: 0x10B2C, symSize: 0x38 } + - { offsetInCU: 0xB415, offset: 0x5F4D9, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xCE10, symBinAddr: 0x10B64, symSize: 0x78 } + - { offsetInCU: 0xB457, offset: 0x5F51B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xCE88, symBinAddr: 0x10BDC, symSize: 0x78 } + - { offsetInCU: 0xB4D5, offset: 0x5F599, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xCF00, symBinAddr: 0x10C54, symSize: 0xB8 } + - { offsetInCU: 0xB517, offset: 0x5F5DB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xCFB8, symBinAddr: 0x10D0C, symSize: 0x164 } + - { offsetInCU: 0xB59E, offset: 0x5F662, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xD11C, symBinAddr: 0x10E70, symSize: 0x68 } + - { offsetInCU: 0xB668, offset: 0x5F72C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xD184, symBinAddr: 0x10ED8, symSize: 0x68 } + - { offsetInCU: 0xB726, offset: 0x5F7EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xD1EC, symBinAddr: 0x10F40, symSize: 0x104 } + - { offsetInCU: 0xB815, offset: 0x5F8D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xD2F0, symBinAddr: 0x11044, symSize: 0x8C } + - { offsetInCU: 0xB8AC, offset: 0x5F970, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xD37C, symBinAddr: 0x110D0, symSize: 0x138 } + - { offsetInCU: 0xB975, offset: 0x5FA39, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xD4B4, symBinAddr: 0x11208, symSize: 0x138 } + - { offsetInCU: 0xBA3E, offset: 0x5FB02, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xD5EC, symBinAddr: 0x11340, symSize: 0x84 } + - { offsetInCU: 0xBA8C, offset: 0x5FB50, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xD670, symBinAddr: 0x113C4, symSize: 0x3C } + - { offsetInCU: 0xBACE, offset: 0x5FB92, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xD6AC, symBinAddr: 0x11400, symSize: 0x84 } + - { offsetInCU: 0xBB18, offset: 0x5FBDC, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xD730, symBinAddr: 0x11484, symSize: 0x3C } + - { offsetInCU: 0xBB5A, offset: 0x5FC1E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xD76C, symBinAddr: 0x114C0, symSize: 0x64 } + - { offsetInCU: 0xBC61, offset: 0x5FD25, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xD7D0, symBinAddr: 0x11524, symSize: 0xB0 } + - { offsetInCU: 0xBCE1, offset: 0x5FDA5, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xD880, symBinAddr: 0x115D4, symSize: 0x1C } + - { offsetInCU: 0xBD3C, offset: 0x5FE00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xD89C, symBinAddr: 0x115F0, symSize: 0x94 } + - { offsetInCU: 0xBDC6, offset: 0x5FE8A, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xD930, symBinAddr: 0x11684, symSize: 0x24 } + - { offsetInCU: 0xBE1B, offset: 0x5FEDF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xD954, symBinAddr: 0x116A8, symSize: 0x18 } + - { offsetInCU: 0xBE96, offset: 0x5FF5A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xD96C, symBinAddr: 0x116C0, symSize: 0x14 } + - { offsetInCU: 0xBEFE, offset: 0x5FFC2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xD980, symBinAddr: 0x116D4, symSize: 0x48 } + - { offsetInCU: 0xBF7B, offset: 0x6003F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xD9C8, symBinAddr: 0x1171C, symSize: 0x40 } + - { offsetInCU: 0xBFC1, offset: 0x60085, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xDA08, symBinAddr: 0x1175C, symSize: 0x34 } + - { offsetInCU: 0xC007, offset: 0x600CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xDA3C, symBinAddr: 0x11790, symSize: 0x34 } + - { offsetInCU: 0xC04D, offset: 0x60111, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xDA70, symBinAddr: 0x117C4, symSize: 0x3C } + - { offsetInCU: 0xC093, offset: 0x60157, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xDAAC, symBinAddr: 0x11800, symSize: 0x3C } + - { offsetInCU: 0xC0D9, offset: 0x6019D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xDAE8, symBinAddr: 0x1183C, symSize: 0x9C } + - { offsetInCU: 0xC176, offset: 0x6023A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xDB84, symBinAddr: 0x118D8, symSize: 0x3C } + - { offsetInCU: 0xC1BC, offset: 0x60280, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xDBC0, symBinAddr: 0x11914, symSize: 0x3C } + - { offsetInCU: 0xC202, offset: 0x602C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xDBFC, symBinAddr: 0x11950, symSize: 0x2C } + - { offsetInCU: 0xC248, offset: 0x6030C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xDC28, symBinAddr: 0x1197C, symSize: 0x318 } + - { offsetInCU: 0xC48E, offset: 0x60552, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xDF40, symBinAddr: 0x11C94, symSize: 0x7C } + - { offsetInCU: 0xC505, offset: 0x605C9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xDFBC, symBinAddr: 0x11D10, symSize: 0x7C } + - { offsetInCU: 0xC57D, offset: 0x60641, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xE038, symBinAddr: 0x11D8C, symSize: 0x10 } + - { offsetInCU: 0xC5C0, offset: 0x60684, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xE048, symBinAddr: 0x11D9C, symSize: 0x10 } + - { offsetInCU: 0xC603, offset: 0x606C7, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xE058, symBinAddr: 0x11DAC, symSize: 0x5C } + - { offsetInCU: 0xC659, offset: 0x6071D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xE0B4, symBinAddr: 0x11E08, symSize: 0x6C } + - { offsetInCU: 0xC6B3, offset: 0x60777, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xE120, symBinAddr: 0x11E74, symSize: 0x38 } + - { offsetInCU: 0xC70C, offset: 0x607D0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xE158, symBinAddr: 0x11EAC, symSize: 0x60 } + - { offsetInCU: 0xC771, offset: 0x60835, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xE1B8, symBinAddr: 0x11F0C, symSize: 0x60 } + - { offsetInCU: 0xC7D6, offset: 0x6089A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xE218, symBinAddr: 0x11F6C, symSize: 0xC } + - { offsetInCU: 0xC83B, offset: 0x608FF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xE224, symBinAddr: 0x11F78, symSize: 0x184 } + - { offsetInCU: 0xC915, offset: 0x609D9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xE3A8, symBinAddr: 0x120FC, symSize: 0x18 } + - { offsetInCU: 0xC949, offset: 0x60A0D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xE3C0, symBinAddr: 0x12114, symSize: 0x18 } + - { offsetInCU: 0xC97D, offset: 0x60A41, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xE3D8, symBinAddr: 0x1212C, symSize: 0x18 } + - { offsetInCU: 0xC9B1, offset: 0x60A75, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xE3F0, symBinAddr: 0x12144, symSize: 0x18 } + - { offsetInCU: 0xC9E5, offset: 0x60AA9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xE408, symBinAddr: 0x1215C, symSize: 0x11C } + - { offsetInCU: 0xCA19, offset: 0x60ADD, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xE524, symBinAddr: 0x12278, symSize: 0x7C } + - { offsetInCU: 0xCA76, offset: 0x60B3A, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0xE5A0, symBinAddr: 0x122F4, symSize: 0x5C } + - { offsetInCU: 0xCAD6, offset: 0x60B9A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xE5FC, symBinAddr: 0x12350, symSize: 0x7C } + - { offsetInCU: 0xCB46, offset: 0x60C0A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0xE678, symBinAddr: 0x123CC, symSize: 0x5C } + - { offsetInCU: 0x27, offset: 0x64841, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x12428, symSize: 0x18 } + - { offsetInCU: 0x41, offset: 0x6485B, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xD4A8, symBinAddr: 0x28820, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x6487B, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xD4B0, symBinAddr: 0x28828, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x64891, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xD4B8, symBinAddr: 0x28830, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x648A7, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xD4C0, symBinAddr: 0x28838, symSize: 0x0 } + - { offsetInCU: 0x97, offset: 0x648B1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xA7F0, symBinAddr: 0x1C928, symSize: 0x6C } + - { offsetInCU: 0xBF, offset: 0x648D9, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x40270, symBinAddr: 0x2EAD8, symSize: 0x0 } + - { offsetInCU: 0x125, offset: 0x6493F, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x40278, symBinAddr: 0x2EAE0, symSize: 0x0 } + - { offsetInCU: 0x65E, offset: 0x64E78, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x12428, symSize: 0x18 } + - { offsetInCU: 0x696, offset: 0x64EB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0x18, symBinAddr: 0x12440, symSize: 0x94 } + - { offsetInCU: 0x701, offset: 0x64F1B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0xAC, symBinAddr: 0x124D4, symSize: 0x48 } + - { offsetInCU: 0x735, offset: 0x64F4F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xF4, symBinAddr: 0x1251C, symSize: 0x34 } + - { offsetInCU: 0x76D, offset: 0x64F87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x128, symBinAddr: 0x12550, symSize: 0x30 } + - { offsetInCU: 0x7A1, offset: 0x64FBB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x158, symBinAddr: 0x12580, symSize: 0x10 } + - { offsetInCU: 0x7D7, offset: 0x64FF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x168, symBinAddr: 0x12590, symSize: 0x10 } + - { offsetInCU: 0x820, offset: 0x6503A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x178, symBinAddr: 0x125A0, symSize: 0x8 } + - { offsetInCU: 0x874, offset: 0x6508E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x180, symBinAddr: 0x125A8, symSize: 0x190 } + - { offsetInCU: 0x96E, offset: 0x65188, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x310, symBinAddr: 0x12738, symSize: 0xE4 } + - { offsetInCU: 0x9F3, offset: 0x6520D, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x3F4, symBinAddr: 0x1281C, symSize: 0xC } + - { offsetInCU: 0xA35, offset: 0x6524F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x410, symBinAddr: 0x12828, symSize: 0xD0 } + - { offsetInCU: 0xAB5, offset: 0x652CF, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x4E0, symBinAddr: 0x128F8, symSize: 0x10 } + - { offsetInCU: 0xADA, offset: 0x652F4, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x4F0, symBinAddr: 0x12908, symSize: 0x8 } + - { offsetInCU: 0xAF9, offset: 0x65313, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x4F8, symBinAddr: 0x12910, symSize: 0x3C } + - { offsetInCU: 0xB4C, offset: 0x65366, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x594, symBinAddr: 0x1294C, symSize: 0xCC } + - { offsetInCU: 0xC04, offset: 0x6541E, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x660, symBinAddr: 0x12A18, symSize: 0xC } + - { offsetInCU: 0xC57, offset: 0x65471, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x6BC, symBinAddr: 0x12A24, symSize: 0x8 } + - { offsetInCU: 0xC98, offset: 0x654B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x6C4, symBinAddr: 0x12A2C, symSize: 0x8 } + - { offsetInCU: 0xCD9, offset: 0x654F3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x6CC, symBinAddr: 0x12A34, symSize: 0xD0 } + - { offsetInCU: 0xD59, offset: 0x65573, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x79C, symBinAddr: 0x12B04, symSize: 0x14 } + - { offsetInCU: 0xDAC, offset: 0x655C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x7B0, symBinAddr: 0x12B18, symSize: 0xCC } + - { offsetInCU: 0xE51, offset: 0x6566B, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x87C, symBinAddr: 0x12BE4, symSize: 0xC } + - { offsetInCU: 0xEA4, offset: 0x656BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x888, symBinAddr: 0x12BF0, symSize: 0x8 } + - { offsetInCU: 0xEE5, offset: 0x656FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x890, symBinAddr: 0x12BF8, symSize: 0x8 } + - { offsetInCU: 0xF26, offset: 0x65740, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x898, symBinAddr: 0x12C00, symSize: 0x138 } + - { offsetInCU: 0xFDB, offset: 0x657F5, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x9D0, symBinAddr: 0x12D38, symSize: 0x54 } + - { offsetInCU: 0x103F, offset: 0x65859, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xAA0, symBinAddr: 0x12D8C, symSize: 0x10C } + - { offsetInCU: 0x10F5, offset: 0x6590F, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xBAC, symBinAddr: 0x12E98, symSize: 0x34 } + - { offsetInCU: 0x1159, offset: 0x65973, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xC40, symBinAddr: 0x12ECC, symSize: 0x8 } + - { offsetInCU: 0x11A9, offset: 0x659C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xC48, symBinAddr: 0x12ED4, symSize: 0x8 } + - { offsetInCU: 0x11F9, offset: 0x65A13, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xC50, symBinAddr: 0x12EDC, symSize: 0xD8 } + - { offsetInCU: 0x128F, offset: 0x65AA9, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xD28, symBinAddr: 0x12FB4, symSize: 0x1C } + - { offsetInCU: 0x12EA, offset: 0x65B04, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xD44, symBinAddr: 0x12FD0, symSize: 0x94 } + - { offsetInCU: 0x1374, offset: 0x65B8E, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xDD8, symBinAddr: 0x13064, symSize: 0x20 } + - { offsetInCU: 0x13C9, offset: 0x65BE3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xDF8, symBinAddr: 0x13084, symSize: 0xD8 } + - { offsetInCU: 0x145F, offset: 0x65C79, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xED0, symBinAddr: 0x1315C, symSize: 0x1C } + - { offsetInCU: 0x14BA, offset: 0x65CD4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xEEC, symBinAddr: 0x13178, symSize: 0x94 } + - { offsetInCU: 0x1544, offset: 0x65D5E, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0xF80, symBinAddr: 0x1320C, symSize: 0x24 } + - { offsetInCU: 0x1599, offset: 0x65DB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0xFA4, symBinAddr: 0x13230, symSize: 0xD8 } + - { offsetInCU: 0x162F, offset: 0x65E49, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x107C, symBinAddr: 0x13308, symSize: 0x18 } + - { offsetInCU: 0x168A, offset: 0x65EA4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1094, symBinAddr: 0x13320, symSize: 0xD8 } + - { offsetInCU: 0x1720, offset: 0x65F3A, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x116C, symBinAddr: 0x133F8, symSize: 0x18 } + - { offsetInCU: 0x177B, offset: 0x65F95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x1184, symBinAddr: 0x13410, symSize: 0xD8 } + - { offsetInCU: 0x1811, offset: 0x6602B, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x125C, symBinAddr: 0x134E8, symSize: 0x1C } + - { offsetInCU: 0x186C, offset: 0x66086, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1278, symBinAddr: 0x13504, symSize: 0x90 } + - { offsetInCU: 0x18E9, offset: 0x66103, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x1308, symBinAddr: 0x13594, symSize: 0x24 } + - { offsetInCU: 0x192B, offset: 0x66145, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x132C, symBinAddr: 0x135B8, symSize: 0x90 } + - { offsetInCU: 0x19A8, offset: 0x661C2, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x13BC, symBinAddr: 0x13648, symSize: 0x24 } + - { offsetInCU: 0x19EA, offset: 0x66204, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x13E0, symBinAddr: 0x1366C, symSize: 0x90 } + - { offsetInCU: 0x1A67, offset: 0x66281, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1470, symBinAddr: 0x136FC, symSize: 0x24 } + - { offsetInCU: 0x1AA9, offset: 0x662C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1494, symBinAddr: 0x13720, symSize: 0xD8 } + - { offsetInCU: 0x1B3F, offset: 0x66359, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x156C, symBinAddr: 0x137F8, symSize: 0x14 } + - { offsetInCU: 0x1B9A, offset: 0x663B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1580, symBinAddr: 0x1380C, symSize: 0x94 } + - { offsetInCU: 0x1C28, offset: 0x66442, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x1614, symBinAddr: 0x138A0, symSize: 0x10 } + - { offsetInCU: 0x1C7D, offset: 0x66497, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x1624, symBinAddr: 0x138B0, symSize: 0xD8 } + - { offsetInCU: 0x1D13, offset: 0x6652D, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x16FC, symBinAddr: 0x13988, symSize: 0x14 } + - { offsetInCU: 0x1D6E, offset: 0x66588, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x1710, symBinAddr: 0x1399C, symSize: 0x94 } + - { offsetInCU: 0x1DFC, offset: 0x66616, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x17A4, symBinAddr: 0x13A30, symSize: 0x10 } + - { offsetInCU: 0x1E51, offset: 0x6666B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x17B4, symBinAddr: 0x13A40, symSize: 0x94 } + - { offsetInCU: 0x1EDF, offset: 0x666F9, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x1848, symBinAddr: 0x13AD4, symSize: 0x10 } + - { offsetInCU: 0x1F34, offset: 0x6674E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x1858, symBinAddr: 0x13AE4, symSize: 0xD8 } + - { offsetInCU: 0x1FCA, offset: 0x667E4, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x1930, symBinAddr: 0x13BBC, symSize: 0x14 } + - { offsetInCU: 0x2025, offset: 0x6683F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x1944, symBinAddr: 0x13BD0, symSize: 0xFC } + - { offsetInCU: 0x20BB, offset: 0x668D5, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1A40, symBinAddr: 0x13CCC, symSize: 0x14 } + - { offsetInCU: 0x210E, offset: 0x66928, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1A54, symBinAddr: 0x13CE0, symSize: 0xBC } + - { offsetInCU: 0x219C, offset: 0x669B6, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1B10, symBinAddr: 0x13D9C, symSize: 0x1C } + - { offsetInCU: 0x21EF, offset: 0x66A09, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1B2C, symBinAddr: 0x13DB8, symSize: 0xF4 } + - { offsetInCU: 0x2282, offset: 0x66A9C, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1C20, symBinAddr: 0x13EAC, symSize: 0x34 } + - { offsetInCU: 0x22E6, offset: 0x66B00, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1C54, symBinAddr: 0x13EE0, symSize: 0xD4 } + - { offsetInCU: 0x2359, offset: 0x66B73, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1D28, symBinAddr: 0x13FB4, symSize: 0x34 } + - { offsetInCU: 0x23BD, offset: 0x66BD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1D5C, symBinAddr: 0x13FE8, symSize: 0xB4 } + - { offsetInCU: 0x2430, offset: 0x66C4A, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1E10, symBinAddr: 0x1409C, symSize: 0x34 } + - { offsetInCU: 0x2494, offset: 0x66CAE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1E44, symBinAddr: 0x140D0, symSize: 0xE4 } + - { offsetInCU: 0x2518, offset: 0x66D32, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x1F28, symBinAddr: 0x141B4, symSize: 0x34 } + - { offsetInCU: 0x258D, offset: 0x66DA7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x1F5C, symBinAddr: 0x141E8, symSize: 0x134 } + - { offsetInCU: 0x2633, offset: 0x66E4D, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2090, symBinAddr: 0x1431C, symSize: 0x38 } + - { offsetInCU: 0x26B9, offset: 0x66ED3, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x20C8, symBinAddr: 0x14354, symSize: 0x40 } + - { offsetInCU: 0x26E2, offset: 0x66EFC, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2108, symBinAddr: 0x14394, symSize: 0x40 } + - { offsetInCU: 0x2701, offset: 0x66F1B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x2148, symBinAddr: 0x143D4, symSize: 0xD4 } + - { offsetInCU: 0x2774, offset: 0x66F8E, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x221C, symBinAddr: 0x144A8, symSize: 0x34 } + - { offsetInCU: 0x27D8, offset: 0x66FF2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2250, symBinAddr: 0x144DC, symSize: 0xD4 } + - { offsetInCU: 0x282E, offset: 0x67048, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2324, symBinAddr: 0x145B0, symSize: 0xD4 } + - { offsetInCU: 0x2884, offset: 0x6709E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x23F8, symBinAddr: 0x14684, symSize: 0xF4 } + - { offsetInCU: 0x2915, offset: 0x6712F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x24EC, symBinAddr: 0x14778, symSize: 0x14C } + - { offsetInCU: 0x297C, offset: 0x67196, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2638, symBinAddr: 0x148C4, symSize: 0x8 } + - { offsetInCU: 0x29B2, offset: 0x671CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x2640, symBinAddr: 0x148CC, symSize: 0x10C } + - { offsetInCU: 0x2A08, offset: 0x67222, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x274C, symBinAddr: 0x149D8, symSize: 0x10C } + - { offsetInCU: 0x2A5E, offset: 0x67278, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x2858, symBinAddr: 0x14AE4, symSize: 0xD4 } + - { offsetInCU: 0x2AB4, offset: 0x672CE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x292C, symBinAddr: 0x14BB8, symSize: 0x90 } + - { offsetInCU: 0x2B39, offset: 0x67353, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x29BC, symBinAddr: 0x14C48, symSize: 0x178 } + - { offsetInCU: 0x2C61, offset: 0x6747B, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2B34, symBinAddr: 0x14DC0, symSize: 0x38 } + - { offsetInCU: 0x2CC3, offset: 0x674DD, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2B6C, symBinAddr: 0x14DF8, symSize: 0x34 } + - { offsetInCU: 0x2CEC, offset: 0x67506, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.72', symObjAddr: 0x2BA0, symBinAddr: 0x14E2C, symSize: 0x344 } + - { offsetInCU: 0x2F00, offset: 0x6771A, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x2EE4, symBinAddr: 0x15170, symSize: 0x38 } + - { offsetInCU: 0x2F6C, offset: 0x67786, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x2F1C, symBinAddr: 0x151A8, symSize: 0x3C } + - { offsetInCU: 0x2F95, offset: 0x677AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x2F58, symBinAddr: 0x151E4, symSize: 0x374 } + - { offsetInCU: 0x31DA, offset: 0x679F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x32CC, symBinAddr: 0x15558, symSize: 0x344 } + - { offsetInCU: 0x34D3, offset: 0x67CED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3610, symBinAddr: 0x1589C, symSize: 0x1C8 } + - { offsetInCU: 0x35E5, offset: 0x67DFF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x37D8, symBinAddr: 0x15A64, symSize: 0x68 } + - { offsetInCU: 0x3650, offset: 0x67E6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3840, symBinAddr: 0x15ACC, symSize: 0x70 } + - { offsetInCU: 0x36BB, offset: 0x67ED5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x38B0, symBinAddr: 0x15B3C, symSize: 0xC0 } + - { offsetInCU: 0x37A1, offset: 0x67FBB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3970, symBinAddr: 0x15BFC, symSize: 0xC8 } + - { offsetInCU: 0x3874, offset: 0x6808E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3A38, symBinAddr: 0x15CC4, symSize: 0x184 } + - { offsetInCU: 0x399D, offset: 0x681B7, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x3BBC, symBinAddr: 0x15E48, symSize: 0x60 } + - { offsetInCU: 0x39DF, offset: 0x681F9, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x3C1C, symBinAddr: 0x15EA8, symSize: 0x58 } + - { offsetInCU: 0x3A42, offset: 0x6825C, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x3C74, symBinAddr: 0x15F00, symSize: 0x24 } + - { offsetInCU: 0x3AB6, offset: 0x682D0, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.88', symObjAddr: 0x3CB4, symBinAddr: 0x15F24, symSize: 0x24 } + - { offsetInCU: 0x3B13, offset: 0x6832D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x3CD8, symBinAddr: 0x15F48, symSize: 0x184 } + - { offsetInCU: 0x3BF2, offset: 0x6840C, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x3E5C, symBinAddr: 0x160CC, symSize: 0x60 } + - { offsetInCU: 0x3C34, offset: 0x6844E, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x3EBC, symBinAddr: 0x1612C, symSize: 0x58 } + - { offsetInCU: 0x3C84, offset: 0x6849E, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x3F14, symBinAddr: 0x16184, symSize: 0x24 } + - { offsetInCU: 0x3CE1, offset: 0x684FB, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x3F38, symBinAddr: 0x161A8, symSize: 0x24 } + - { offsetInCU: 0x3D3E, offset: 0x68558, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x3F5C, symBinAddr: 0x161CC, symSize: 0x10C } + - { offsetInCU: 0x3DFC, offset: 0x68616, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4068, symBinAddr: 0x162D8, symSize: 0x1DC } + - { offsetInCU: 0x4026, offset: 0x68840, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x4244, symBinAddr: 0x164B4, symSize: 0x48 } + - { offsetInCU: 0x4089, offset: 0x688A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x428C, symBinAddr: 0x164FC, symSize: 0x3C } + - { offsetInCU: 0x40DA, offset: 0x688F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x42C8, symBinAddr: 0x16538, symSize: 0x3C } + - { offsetInCU: 0x411C, offset: 0x68936, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x4304, symBinAddr: 0x16574, symSize: 0x3C } + - { offsetInCU: 0x416D, offset: 0x68987, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x4340, symBinAddr: 0x165B0, symSize: 0x3C } + - { offsetInCU: 0x41AF, offset: 0x689C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x437C, symBinAddr: 0x165EC, symSize: 0x3C } + - { offsetInCU: 0x41F1, offset: 0x68A0B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x43B8, symBinAddr: 0x16628, symSize: 0x3C } + - { offsetInCU: 0x4233, offset: 0x68A4D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x43F4, symBinAddr: 0x16664, symSize: 0x3C } + - { offsetInCU: 0x4275, offset: 0x68A8F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x4430, symBinAddr: 0x166A0, symSize: 0x3C } + - { offsetInCU: 0x42B7, offset: 0x68AD1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x446C, symBinAddr: 0x166DC, symSize: 0x94 } + - { offsetInCU: 0x4316, offset: 0x68B30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x4500, symBinAddr: 0x16770, symSize: 0x94 } + - { offsetInCU: 0x4366, offset: 0x68B80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4594, symBinAddr: 0x16804, symSize: 0x34 } + - { offsetInCU: 0x439A, offset: 0x68BB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x45C8, symBinAddr: 0x16838, symSize: 0x1AC } + - { offsetInCU: 0x451E, offset: 0x68D38, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4774, symBinAddr: 0x169E4, symSize: 0xD4 } + - { offsetInCU: 0x4585, offset: 0x68D9F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4848, symBinAddr: 0x16AB8, symSize: 0xD4 } + - { offsetInCU: 0x45EC, offset: 0x68E06, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x491C, symBinAddr: 0x16B8C, symSize: 0x140 } + - { offsetInCU: 0x468A, offset: 0x68EA4, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4A5C, symBinAddr: 0x16CCC, symSize: 0x5C } + - { offsetInCU: 0x46DD, offset: 0x68EF7, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4AB8, symBinAddr: 0x16D28, symSize: 0x34 } + - { offsetInCU: 0x4727, offset: 0x68F41, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x4AFC, symBinAddr: 0x16D5C, symSize: 0x140 } + - { offsetInCU: 0x47C5, offset: 0x68FDF, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x4C3C, symBinAddr: 0x16E9C, symSize: 0x5C } + - { offsetInCU: 0x4818, offset: 0x69032, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x4C98, symBinAddr: 0x16EF8, symSize: 0x34 } + - { offsetInCU: 0x4862, offset: 0x6907C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x4CCC, symBinAddr: 0x16F2C, symSize: 0x11C } + - { offsetInCU: 0x4900, offset: 0x6911A, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x4DE8, symBinAddr: 0x17048, symSize: 0x50 } + - { offsetInCU: 0x4953, offset: 0x6916D, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x4E38, symBinAddr: 0x17098, symSize: 0x34 } + - { offsetInCU: 0x499D, offset: 0x691B7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x4E6C, symBinAddr: 0x170CC, symSize: 0x140 } + - { offsetInCU: 0x4A3B, offset: 0x69255, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x4FAC, symBinAddr: 0x1720C, symSize: 0x34 } + - { offsetInCU: 0x4A8E, offset: 0x692A8, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x4FE0, symBinAddr: 0x17240, symSize: 0x34 } + - { offsetInCU: 0x4AD8, offset: 0x692F2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x5014, symBinAddr: 0x17274, symSize: 0x140 } + - { offsetInCU: 0x4B76, offset: 0x69390, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x5154, symBinAddr: 0x173B4, symSize: 0x34 } + - { offsetInCU: 0x4BC9, offset: 0x693E3, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x5188, symBinAddr: 0x173E8, symSize: 0x34 } + - { offsetInCU: 0x4C13, offset: 0x6942D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x51BC, symBinAddr: 0x1741C, symSize: 0x11C } + - { offsetInCU: 0x4CB1, offset: 0x694CB, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x52D8, symBinAddr: 0x17538, symSize: 0x34 } + - { offsetInCU: 0x4D04, offset: 0x6951E, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x530C, symBinAddr: 0x1756C, symSize: 0x34 } + - { offsetInCU: 0x4D4E, offset: 0x69568, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5340, symBinAddr: 0x175A0, symSize: 0x140 } + - { offsetInCU: 0x4DEC, offset: 0x69606, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x5480, symBinAddr: 0x176E0, symSize: 0x34 } + - { offsetInCU: 0x4E3F, offset: 0x69659, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x54B4, symBinAddr: 0x17714, symSize: 0x34 } + - { offsetInCU: 0x4E89, offset: 0x696A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x54E8, symBinAddr: 0x17748, symSize: 0x140 } + - { offsetInCU: 0x4F27, offset: 0x69741, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5628, symBinAddr: 0x17888, symSize: 0x34 } + - { offsetInCU: 0x4F7A, offset: 0x69794, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x565C, symBinAddr: 0x178BC, symSize: 0x34 } + - { offsetInCU: 0x4FC4, offset: 0x697DE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5690, symBinAddr: 0x178F0, symSize: 0x11C } + - { offsetInCU: 0x5062, offset: 0x6987C, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x57AC, symBinAddr: 0x17A0C, symSize: 0x34 } + - { offsetInCU: 0x50B5, offset: 0x698CF, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x57E0, symBinAddr: 0x17A40, symSize: 0x34 } + - { offsetInCU: 0x50FF, offset: 0x69919, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5814, symBinAddr: 0x17A74, symSize: 0x1B0 } + - { offsetInCU: 0x522A, offset: 0x69A44, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x59C4, symBinAddr: 0x17C24, symSize: 0x140 } + - { offsetInCU: 0x52C8, offset: 0x69AE2, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x5B04, symBinAddr: 0x17D64, symSize: 0x34 } + - { offsetInCU: 0x531B, offset: 0x69B35, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x5B38, symBinAddr: 0x17D98, symSize: 0x34 } + - { offsetInCU: 0x5365, offset: 0x69B7F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x5B6C, symBinAddr: 0x17DCC, symSize: 0x140 } + - { offsetInCU: 0x5403, offset: 0x69C1D, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x5CAC, symBinAddr: 0x17F0C, symSize: 0x34 } + - { offsetInCU: 0x5456, offset: 0x69C70, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x5CE0, symBinAddr: 0x17F40, symSize: 0x34 } + - { offsetInCU: 0x54A0, offset: 0x69CBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x5D14, symBinAddr: 0x17F74, symSize: 0x11C } + - { offsetInCU: 0x553E, offset: 0x69D58, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x5E30, symBinAddr: 0x18090, symSize: 0x34 } + - { offsetInCU: 0x5591, offset: 0x69DAB, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x5E64, symBinAddr: 0x180C4, symSize: 0x34 } + - { offsetInCU: 0x55DB, offset: 0x69DF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x5E98, symBinAddr: 0x180F8, symSize: 0xD8 } + - { offsetInCU: 0x5671, offset: 0x69E8B, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x5F70, symBinAddr: 0x181D0, symSize: 0x18 } + - { offsetInCU: 0x56CC, offset: 0x69EE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x5F88, symBinAddr: 0x181E8, symSize: 0xDC } + - { offsetInCU: 0x5762, offset: 0x69F7C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x6064, symBinAddr: 0x182C4, symSize: 0x1C } + - { offsetInCU: 0x57BD, offset: 0x69FD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6080, symBinAddr: 0x182E0, symSize: 0xD8 } + - { offsetInCU: 0x5853, offset: 0x6A06D, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6158, symBinAddr: 0x183B8, symSize: 0x48 } + - { offsetInCU: 0x58A6, offset: 0x6A0C0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x61A0, symBinAddr: 0x18400, symSize: 0xD8 } + - { offsetInCU: 0x593C, offset: 0x6A156, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x6278, symBinAddr: 0x184D8, symSize: 0x48 } + - { offsetInCU: 0x598F, offset: 0x6A1A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x62C0, symBinAddr: 0x18520, symSize: 0xA4 } + - { offsetInCU: 0x59F2, offset: 0x6A20C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6364, symBinAddr: 0x185C4, symSize: 0xC } + - { offsetInCU: 0x5A48, offset: 0x6A262, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6370, symBinAddr: 0x185D0, symSize: 0x184 } + - { offsetInCU: 0x5B28, offset: 0x6A342, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x64F4, symBinAddr: 0x18754, symSize: 0x26C } + - { offsetInCU: 0x5D0A, offset: 0x6A524, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x67EC, symBinAddr: 0x189C0, symSize: 0x174 } + - { offsetInCU: 0x5DD8, offset: 0x6A5F2, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6960, symBinAddr: 0x18B34, symSize: 0x2A4 } + - { offsetInCU: 0x5F85, offset: 0x6A79F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x6C04, symBinAddr: 0x18DD8, symSize: 0x90 } + - { offsetInCU: 0x5FE8, offset: 0x6A802, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x6C94, symBinAddr: 0x18E68, symSize: 0x184 } + - { offsetInCU: 0x60C8, offset: 0x6A8E2, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x6E18, symBinAddr: 0x18FEC, symSize: 0x190 } + - { offsetInCU: 0x618E, offset: 0x6A9A8, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x6FA8, symBinAddr: 0x1917C, symSize: 0x9C } + - { offsetInCU: 0x6203, offset: 0x6AA1D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x7044, symBinAddr: 0x19218, symSize: 0x174 } + - { offsetInCU: 0x62D1, offset: 0x6AAEB, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x71B8, symBinAddr: 0x1938C, symSize: 0x184 } + - { offsetInCU: 0x63A8, offset: 0x6ABC2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x733C, symBinAddr: 0x19510, symSize: 0x1E4 } + - { offsetInCU: 0x6458, offset: 0x6AC72, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7520, symBinAddr: 0x196F4, symSize: 0xC0 } + - { offsetInCU: 0x6508, offset: 0x6AD22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x75E0, symBinAddr: 0x197B4, symSize: 0xC0 } + - { offsetInCU: 0x6597, offset: 0x6ADB1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x76A0, symBinAddr: 0x19874, symSize: 0x84 } + - { offsetInCU: 0x65E0, offset: 0x6ADFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7724, symBinAddr: 0x198F8, symSize: 0xC } + - { offsetInCU: 0x6636, offset: 0x6AE50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7730, symBinAddr: 0x19904, symSize: 0x14 } + - { offsetInCU: 0x669F, offset: 0x6AEB9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7744, symBinAddr: 0x19918, symSize: 0xC } + - { offsetInCU: 0x66F5, offset: 0x6AF0F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7750, symBinAddr: 0x19924, symSize: 0x14 } + - { offsetInCU: 0x675E, offset: 0x6AF78, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7764, symBinAddr: 0x19938, symSize: 0x1C4 } + - { offsetInCU: 0x684F, offset: 0x6B069, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x7928, symBinAddr: 0x19AFC, symSize: 0x270 } + - { offsetInCU: 0x6A5D, offset: 0x6B277, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x7C34, symBinAddr: 0x19D6C, symSize: 0x174 } + - { offsetInCU: 0x6B2B, offset: 0x6B345, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x7DA8, symBinAddr: 0x19EE0, symSize: 0x18C } + - { offsetInCU: 0x6C52, offset: 0x6B46C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x7F34, symBinAddr: 0x1A06C, symSize: 0x174 } + - { offsetInCU: 0x6D20, offset: 0x6B53A, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x80A8, symBinAddr: 0x1A1E0, symSize: 0x184 } + - { offsetInCU: 0x6E38, offset: 0x6B652, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x822C, symBinAddr: 0x1A364, symSize: 0x150 } + - { offsetInCU: 0x6F02, offset: 0x6B71C, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x837C, symBinAddr: 0x1A4B4, symSize: 0x150 } + - { offsetInCU: 0x7021, offset: 0x6B83B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x84CC, symBinAddr: 0x1A604, symSize: 0x150 } + - { offsetInCU: 0x70EB, offset: 0x6B905, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x861C, symBinAddr: 0x1A754, symSize: 0x114 } + - { offsetInCU: 0x71BD, offset: 0x6B9D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x8730, symBinAddr: 0x1A868, symSize: 0x8 } + - { offsetInCU: 0x720D, offset: 0x6BA27, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x8738, symBinAddr: 0x1A870, symSize: 0xCC } + - { offsetInCU: 0x72A2, offset: 0x6BABC, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x8804, symBinAddr: 0x1A93C, symSize: 0x3C } + - { offsetInCU: 0x72F5, offset: 0x6BB0F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x8840, symBinAddr: 0x1A978, symSize: 0x144 } + - { offsetInCU: 0x73AC, offset: 0x6BBC6, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x8984, symBinAddr: 0x1AABC, symSize: 0x94 } + - { offsetInCU: 0x7421, offset: 0x6BC3B, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x8A18, symBinAddr: 0x1AB50, symSize: 0x3C } + - { offsetInCU: 0x7474, offset: 0x6BC8E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x8A54, symBinAddr: 0x1AB8C, symSize: 0x118 } + - { offsetInCU: 0x751A, offset: 0x6BD34, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x8B6C, symBinAddr: 0x1ACA4, symSize: 0x3C } + - { offsetInCU: 0x756D, offset: 0x6BD87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x8BA8, symBinAddr: 0x1ACE0, symSize: 0x8 } + - { offsetInCU: 0x75BD, offset: 0x6BDD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x8BB0, symBinAddr: 0x1ACE8, symSize: 0x13C } + - { offsetInCU: 0x768B, offset: 0x6BEA5, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x8CEC, symBinAddr: 0x1AE24, symSize: 0x50 } + - { offsetInCU: 0x7700, offset: 0x6BF1A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x8D3C, symBinAddr: 0x1AE74, symSize: 0x144 } + - { offsetInCU: 0x774C, offset: 0x6BF66, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x8E80, symBinAddr: 0x1AFB8, symSize: 0x2CC } + - { offsetInCU: 0x787B, offset: 0x6C095, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x914C, symBinAddr: 0x1B284, symSize: 0xB4 } + - { offsetInCU: 0x7913, offset: 0x6C12D, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9200, symBinAddr: 0x1B338, symSize: 0x68 } + - { offsetInCU: 0x7977, offset: 0x6C191, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.151', symObjAddr: 0x9268, symBinAddr: 0x1B3A0, symSize: 0x54 } + - { offsetInCU: 0x79D6, offset: 0x6C1F0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x92BC, symBinAddr: 0x1B3F4, symSize: 0x1A8 } + - { offsetInCU: 0x7B54, offset: 0x6C36E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0x9464, symBinAddr: 0x1B59C, symSize: 0x3C } + - { offsetInCU: 0x7B96, offset: 0x6C3B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0x94A0, symBinAddr: 0x1B5D8, symSize: 0x60 } + - { offsetInCU: 0x7BCA, offset: 0x6C3E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0x9500, symBinAddr: 0x1B638, symSize: 0xC8 } + - { offsetInCU: 0x7CC5, offset: 0x6C4DF, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0x95C8, symBinAddr: 0x1B700, symSize: 0x30 } + - { offsetInCU: 0x7D07, offset: 0x6C521, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0x95F8, symBinAddr: 0x1B730, symSize: 0x14C } + - { offsetInCU: 0x7DC4, offset: 0x6C5DE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0x9744, symBinAddr: 0x1B87C, symSize: 0xD4 } + - { offsetInCU: 0x7E5E, offset: 0x6C678, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0x9818, symBinAddr: 0x1B950, symSize: 0x30 } + - { offsetInCU: 0x7EA0, offset: 0x6C6BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0x9848, symBinAddr: 0x1B980, symSize: 0x14C } + - { offsetInCU: 0x7F5D, offset: 0x6C777, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0x9994, symBinAddr: 0x1BACC, symSize: 0xD4 } + - { offsetInCU: 0x7FF7, offset: 0x6C811, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0x9A68, symBinAddr: 0x1BBA0, symSize: 0x30 } + - { offsetInCU: 0x8039, offset: 0x6C853, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0x9A98, symBinAddr: 0x1BBD0, symSize: 0x90 } + - { offsetInCU: 0x80B6, offset: 0x6C8D0, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0x9B28, symBinAddr: 0x1BC60, symSize: 0x64 } + - { offsetInCU: 0x80F8, offset: 0x6C912, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0x9B8C, symBinAddr: 0x1BCC4, symSize: 0x8 } + - { offsetInCU: 0x8148, offset: 0x6C962, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0x9B94, symBinAddr: 0x1BCCC, symSize: 0x13C } + - { offsetInCU: 0x8216, offset: 0x6CA30, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9CD0, symBinAddr: 0x1BE08, symSize: 0x50 } + - { offsetInCU: 0x828B, offset: 0x6CAA5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0x9D20, symBinAddr: 0x1BE58, symSize: 0x658 } + - { offsetInCU: 0x8506, offset: 0x6CD20, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xA378, symBinAddr: 0x1C4B0, symSize: 0xF8 } + - { offsetInCU: 0x85BD, offset: 0x6CDD7, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xA470, symBinAddr: 0x1C5A8, symSize: 0x94 } + - { offsetInCU: 0x8643, offset: 0x6CE5D, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.158', symObjAddr: 0xA504, symBinAddr: 0x1C63C, symSize: 0x80 } + - { offsetInCU: 0x86DD, offset: 0x6CEF7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xA584, symBinAddr: 0x1C6BC, symSize: 0x3C } + - { offsetInCU: 0x8711, offset: 0x6CF2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xA5C0, symBinAddr: 0x1C6F8, symSize: 0x7C } + - { offsetInCU: 0x8763, offset: 0x6CF7D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xA63C, symBinAddr: 0x1C774, symSize: 0x90 } + - { offsetInCU: 0x87E0, offset: 0x6CFFA, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xA6CC, symBinAddr: 0x1C804, symSize: 0x34 } + - { offsetInCU: 0x8822, offset: 0x6D03C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xA700, symBinAddr: 0x1C838, symSize: 0x90 } + - { offsetInCU: 0x889F, offset: 0x6D0B9, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xA790, symBinAddr: 0x1C8C8, symSize: 0x5C } + - { offsetInCU: 0x88E1, offset: 0x6D0FB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xA7EC, symBinAddr: 0x1C924, symSize: 0x4 } + - { offsetInCU: 0x8958, offset: 0x6D172, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xA85C, symBinAddr: 0x1C994, symSize: 0x54 } + - { offsetInCU: 0x899A, offset: 0x6D1B4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xA8B0, symBinAddr: 0x1C9E8, symSize: 0xEC } + - { offsetInCU: 0x89DF, offset: 0x6D1F9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xA99C, symBinAddr: 0x1CAD4, symSize: 0x90 } + - { offsetInCU: 0x8AD5, offset: 0x6D2EF, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xAA2C, symBinAddr: 0x1CB64, symSize: 0x90 } + - { offsetInCU: 0x8BBF, offset: 0x6D3D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xAABC, symBinAddr: 0x1CBF4, symSize: 0x1F8 } + - { offsetInCU: 0x8DEA, offset: 0x6D604, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xACB4, symBinAddr: 0x1CDEC, symSize: 0x1B0 } + - { offsetInCU: 0x9006, offset: 0x6D820, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xAE64, symBinAddr: 0x1CF9C, symSize: 0x10C } + - { offsetInCU: 0x90D3, offset: 0x6D8ED, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xAF70, symBinAddr: 0x1D0A8, symSize: 0x10C } + - { offsetInCU: 0x91A0, offset: 0x6D9BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xB07C, symBinAddr: 0x1D1B4, symSize: 0x60 } + - { offsetInCU: 0x91E5, offset: 0x6D9FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xB0DC, symBinAddr: 0x1D214, symSize: 0xD0 } + - { offsetInCU: 0x9300, offset: 0x6DB1A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xB1AC, symBinAddr: 0x1D2E4, symSize: 0x50 } + - { offsetInCU: 0x9334, offset: 0x6DB4E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xB1FC, symBinAddr: 0x1D334, symSize: 0xCC } + - { offsetInCU: 0x945C, offset: 0x6DC76, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xB2C8, symBinAddr: 0x1D400, symSize: 0x90 } + - { offsetInCU: 0x94E6, offset: 0x6DD00, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xB358, symBinAddr: 0x1D490, symSize: 0x38 } + - { offsetInCU: 0x9528, offset: 0x6DD42, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xB390, symBinAddr: 0x1D4C8, symSize: 0x18 } + - { offsetInCU: 0x95A3, offset: 0x6DDBD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xB3A8, symBinAddr: 0x1D4E0, symSize: 0x14 } + - { offsetInCU: 0x960B, offset: 0x6DE25, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xB3BC, symBinAddr: 0x1D4F4, symSize: 0x48 } + - { offsetInCU: 0x9688, offset: 0x6DEA2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xB404, symBinAddr: 0x1D53C, symSize: 0x40 } + - { offsetInCU: 0x96CE, offset: 0x6DEE8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xB444, symBinAddr: 0x1D57C, symSize: 0x34 } + - { offsetInCU: 0x9714, offset: 0x6DF2E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xB478, symBinAddr: 0x1D5B0, symSize: 0x34 } + - { offsetInCU: 0x975A, offset: 0x6DF74, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xB4AC, symBinAddr: 0x1D5E4, symSize: 0x58 } + - { offsetInCU: 0x97B1, offset: 0x6DFCB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xB504, symBinAddr: 0x1D63C, symSize: 0x58 } + - { offsetInCU: 0x9808, offset: 0x6E022, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xB55C, symBinAddr: 0x1D694, symSize: 0x8 } + - { offsetInCU: 0x983C, offset: 0x6E056, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xB564, symBinAddr: 0x1D69C, symSize: 0x7C } + - { offsetInCU: 0x98B3, offset: 0x6E0CD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xB5E0, symBinAddr: 0x1D718, symSize: 0x7C } + - { offsetInCU: 0x992B, offset: 0x6E145, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xB65C, symBinAddr: 0x1D794, symSize: 0x10 } + - { offsetInCU: 0x996E, offset: 0x6E188, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xB66C, symBinAddr: 0x1D7A4, symSize: 0x10 } + - { offsetInCU: 0x99B1, offset: 0x6E1CB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xB67C, symBinAddr: 0x1D7B4, symSize: 0x38 } + - { offsetInCU: 0x9A0B, offset: 0x6E225, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xB6B4, symBinAddr: 0x1D7EC, symSize: 0x34 } + - { offsetInCU: 0x9A65, offset: 0x6E27F, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xB6E8, symBinAddr: 0x1D820, symSize: 0x34 } + - { offsetInCU: 0x9ABF, offset: 0x6E2D9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xB71C, symBinAddr: 0x1D854, symSize: 0x3C } + - { offsetInCU: 0x9B19, offset: 0x6E333, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xB758, symBinAddr: 0x1D890, symSize: 0x3C } + - { offsetInCU: 0x9B73, offset: 0x6E38D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xB794, symBinAddr: 0x1D8CC, symSize: 0xC } + - { offsetInCU: 0x9BD8, offset: 0x6E3F2, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xB7A0, symBinAddr: 0x1D8D8, symSize: 0x154 } + - { offsetInCU: 0x9CB0, offset: 0x6E4CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xB8F4, symBinAddr: 0x1DA2C, symSize: 0x110 } + - { offsetInCU: 0x9CE4, offset: 0x6E4FE, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xBA04, symBinAddr: 0x1DB3C, symSize: 0x50 } + - { offsetInCU: 0x9D44, offset: 0x6E55E, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xBA54, symBinAddr: 0x1DB8C, symSize: 0x50 } ... diff --git a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml index e1d7f5e..5f557d0 100644 --- a/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml +++ b/IoTConnect2/framework_AZ/IoTConnect2.framework-iphonesimulator.xcarchive/dSYMs/MqttCocoaAsyncSocket.framework.dSYM/Contents/Resources/Relocations/x86_64/MqttCocoaAsyncSocket.yml @@ -2,684 +2,684 @@ triple: 'x86_64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/MqttCocoaAsyncSocket.framework/MqttCocoaAsyncSocket' relocations: - - { offsetInCU: 0x34, offset: 0x54D02, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x1E2E0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x54D37, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x1E318, symSize: 0x0 } - - { offsetInCU: 0x41, offset: 0x54D8E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x121B8, symBinAddr: 0x24508, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x54DAE, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x121C0, symBinAddr: 0x24510, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x54DC4, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x121C8, symBinAddr: 0x24518, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x54DDA, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x121D0, symBinAddr: 0x24520, symSize: 0x0 } - - { offsetInCU: 0xA3, offset: 0x54DF0, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x121D8, symBinAddr: 0x24528, symSize: 0x0 } - - { offsetInCU: 0xB9, offset: 0x54E06, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x121E0, symBinAddr: 0x24530, symSize: 0x0 } - - { offsetInCU: 0xCF, offset: 0x54E1C, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x121E8, symBinAddr: 0x24538, symSize: 0x0 } - - { offsetInCU: 0xE5, offset: 0x54E32, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x121F0, symBinAddr: 0x24540, symSize: 0x0 } - - { offsetInCU: 0xFB, offset: 0x54E48, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x121F8, symBinAddr: 0x24548, symSize: 0x0 } - - { offsetInCU: 0x111, offset: 0x54E5E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x12200, symBinAddr: 0x24550, symSize: 0x0 } - - { offsetInCU: 0x127, offset: 0x54E74, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x12208, symBinAddr: 0x24558, symSize: 0x0 } - - { offsetInCU: 0x13D, offset: 0x54E8A, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x12210, symBinAddr: 0x24560, symSize: 0x0 } - - { offsetInCU: 0x153, offset: 0x54EA0, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x12218, symBinAddr: 0x24568, symSize: 0x0 } - - { offsetInCU: 0x16B, offset: 0x54EB8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xBCE8, symBinAddr: 0xCA08, symSize: 0x616 } - - { offsetInCU: 0x69C, offset: 0x553E9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xE6AD, symBinAddr: 0xF3CD, symSize: 0x6F } - - { offsetInCU: 0x6C4, offset: 0x55411, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x62A48, symBinAddr: 0x2AB00, symSize: 0x0 } - - { offsetInCU: 0x72C, offset: 0x55479, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x62A60, symBinAddr: 0x2AB18, symSize: 0x0 } - - { offsetInCU: 0x747, offset: 0x55494, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x62A50, symBinAddr: 0x2AB08, symSize: 0x0 } - - { offsetInCU: 0x764, offset: 0x554B1, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x62A58, symBinAddr: 0x2AB10, symSize: 0x0 } - - { offsetInCU: 0xDA0, offset: 0x55AED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0xD20, symSize: 0xE } - - { offsetInCU: 0xDEC, offset: 0x55B39, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0xE, symBinAddr: 0xD2E, symSize: 0x5B } - - { offsetInCU: 0xE33, offset: 0x55B80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x69, symBinAddr: 0xD89, symSize: 0x3F } - - { offsetInCU: 0xE66, offset: 0x55BB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xA8, symBinAddr: 0xDC8, symSize: 0x5F } - - { offsetInCU: 0xF33, offset: 0x55C80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x107, symBinAddr: 0xE27, symSize: 0xE } - - { offsetInCU: 0xF69, offset: 0x55CB6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x115, symBinAddr: 0xE35, symSize: 0xA } - - { offsetInCU: 0xF9F, offset: 0x55CEC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x11F, symBinAddr: 0xE3F, symSize: 0x31 } - - { offsetInCU: 0x1001, offset: 0x55D4E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x150, symBinAddr: 0xE70, symSize: 0x20 } - - { offsetInCU: 0x1044, offset: 0x55D91, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x170, symBinAddr: 0xE90, symSize: 0x12 } - - { offsetInCU: 0x107A, offset: 0x55DC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x182, symBinAddr: 0xEA2, symSize: 0xA } - - { offsetInCU: 0x10B0, offset: 0x55DFD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x18C, symBinAddr: 0xEAC, symSize: 0x31 } - - { offsetInCU: 0x1112, offset: 0x55E5F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1BD, symBinAddr: 0xEDD, symSize: 0xA } - - { offsetInCU: 0x1153, offset: 0x55EA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1C7, symBinAddr: 0xEE7, symSize: 0x12 } - - { offsetInCU: 0x1185, offset: 0x55ED2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x1D9, symBinAddr: 0xEF9, symSize: 0xE } - - { offsetInCU: 0x11D2, offset: 0x55F1F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x1E7, symBinAddr: 0xF07, symSize: 0x163 } - - { offsetInCU: 0x131C, offset: 0x56069, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x34A, symBinAddr: 0x106A, symSize: 0x4E } - - { offsetInCU: 0x13D0, offset: 0x5611D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x398, symBinAddr: 0x10B8, symSize: 0x77 } - - { offsetInCU: 0x14B4, offset: 0x56201, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x40F, symBinAddr: 0x112F, symSize: 0x28 } - - { offsetInCU: 0x1517, offset: 0x56264, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x437, symBinAddr: 0x1157, symSize: 0x5D } - - { offsetInCU: 0x15EA, offset: 0x56337, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x494, symBinAddr: 0x11B4, symSize: 0x27F } - - { offsetInCU: 0x1805, offset: 0x56552, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x713, symBinAddr: 0x1433, symSize: 0xC0 } - - { offsetInCU: 0x18E3, offset: 0x56630, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7D3, symBinAddr: 0x14F3, symSize: 0x28 } - - { offsetInCU: 0x1917, offset: 0x56664, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7FB, symBinAddr: 0x151B, symSize: 0xE } - - { offsetInCU: 0x1964, offset: 0x566B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x809, symBinAddr: 0x1529, symSize: 0x91 } - - { offsetInCU: 0x19F8, offset: 0x56745, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x89A, symBinAddr: 0x15BA, symSize: 0x10 } - - { offsetInCU: 0x1A2C, offset: 0x56779, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x8AA, symBinAddr: 0x15CA, symSize: 0xE } - - { offsetInCU: 0x1A79, offset: 0x567C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8B8, symBinAddr: 0x15D8, symSize: 0x73 } - - { offsetInCU: 0x1B0B, offset: 0x56858, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x92B, symBinAddr: 0x164B, symSize: 0x10 } - - { offsetInCU: 0x1B3F, offset: 0x5688C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x93B, symBinAddr: 0x165B, symSize: 0x19 } - - { offsetInCU: 0x1B9B, offset: 0x568E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x954, symBinAddr: 0x1674, symSize: 0x19 } - - { offsetInCU: 0x1C0D, offset: 0x5695A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x96D, symBinAddr: 0x168D, symSize: 0x15 } - - { offsetInCU: 0x1C8B, offset: 0x569D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x982, symBinAddr: 0x16A2, symSize: 0x20F } - - { offsetInCU: 0x1EC6, offset: 0x56C13, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB91, symBinAddr: 0x18B1, symSize: 0xC7 } - - { offsetInCU: 0x1F7E, offset: 0x56CCB, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xC58, symBinAddr: 0x1978, symSize: 0x18 } - - { offsetInCU: 0x1FD3, offset: 0x56D20, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xC70, symBinAddr: 0x1990, symSize: 0xF } - - { offsetInCU: 0x2006, offset: 0x56D53, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xC7F, symBinAddr: 0x199F, symSize: 0xF } - - { offsetInCU: 0x2031, offset: 0x56D7E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xC8E, symBinAddr: 0x19AE, symSize: 0x27 } - - { offsetInCU: 0x20CD, offset: 0x56E1A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xCB5, symBinAddr: 0x19D5, symSize: 0x22 } - - { offsetInCU: 0x217C, offset: 0x56EC9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xCD7, symBinAddr: 0x19F7, symSize: 0x20D } - - { offsetInCU: 0x235D, offset: 0x570AA, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xEE4, symBinAddr: 0x1C04, symSize: 0x16 } - - { offsetInCU: 0x2382, offset: 0x570CF, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xEFA, symBinAddr: 0x1C1A, symSize: 0xF } - - { offsetInCU: 0x23AD, offset: 0x570FA, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xF09, symBinAddr: 0x1C29, symSize: 0x227 } - - { offsetInCU: 0x25A9, offset: 0x572F6, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0x1130, symBinAddr: 0x1E50, symSize: 0x42 } - - { offsetInCU: 0x25DE, offset: 0x5732B, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1172, symBinAddr: 0x1E92, symSize: 0x35 } - - { offsetInCU: 0x2609, offset: 0x57356, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x11A7, symBinAddr: 0x1EC7, symSize: 0xDE } - - { offsetInCU: 0x26A2, offset: 0x573EF, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x1285, symBinAddr: 0x1FA5, symSize: 0x32 } - - { offsetInCU: 0x2701, offset: 0x5744E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x12B7, symBinAddr: 0x1FD7, symSize: 0x30 } - - { offsetInCU: 0x2736, offset: 0x57483, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x12E7, symBinAddr: 0x2007, symSize: 0x27 } - - { offsetInCU: 0x2761, offset: 0x574AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x130E, symBinAddr: 0x202E, symSize: 0xC9 } - - { offsetInCU: 0x286E, offset: 0x575BB, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x13D7, symBinAddr: 0x20F7, symSize: 0x19 } - - { offsetInCU: 0x28C1, offset: 0x5760E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x13F0, symBinAddr: 0x2110, symSize: 0x25 } - - { offsetInCU: 0x2902, offset: 0x5764F, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x1415, symBinAddr: 0x2135, symSize: 0x25 } - - { offsetInCU: 0x2939, offset: 0x57686, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x143A, symBinAddr: 0x215A, symSize: 0x14 } - - { offsetInCU: 0x299D, offset: 0x576EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x144E, symBinAddr: 0x216E, symSize: 0x17 } - - { offsetInCU: 0x2A01, offset: 0x5774E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x1465, symBinAddr: 0x2185, symSize: 0xDC } - - { offsetInCU: 0x2AA6, offset: 0x577F3, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x1541, symBinAddr: 0x2261, symSize: 0x1E } - - { offsetInCU: 0x2AF9, offset: 0x57846, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x155F, symBinAddr: 0x227F, symSize: 0xC9 } - - { offsetInCU: 0x2BF3, offset: 0x57940, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1628, symBinAddr: 0x2348, symSize: 0x19 } - - { offsetInCU: 0x2C46, offset: 0x57993, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x1641, symBinAddr: 0x2361, symSize: 0x14 } - - { offsetInCU: 0x2CAA, offset: 0x579F7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x1655, symBinAddr: 0x2375, symSize: 0x17 } - - { offsetInCU: 0x2D0E, offset: 0x57A5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x166C, symBinAddr: 0x238C, symSize: 0x161 } - - { offsetInCU: 0x2DDC, offset: 0x57B29, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x17CD, symBinAddr: 0x24ED, symSize: 0x4B } - - { offsetInCU: 0x2E4C, offset: 0x57B99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1818, symBinAddr: 0x2538, symSize: 0xFF } - - { offsetInCU: 0x2FA7, offset: 0x57CF4, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1917, symBinAddr: 0x2637, symSize: 0x31 } - - { offsetInCU: 0x300B, offset: 0x57D58, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x1948, symBinAddr: 0x2668, symSize: 0x2C } - - { offsetInCU: 0x3058, offset: 0x57DA5, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x1974, symBinAddr: 0x2694, symSize: 0x2C } - - { offsetInCU: 0x309B, offset: 0x57DE8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x19A0, symBinAddr: 0x26C0, symSize: 0x15 } - - { offsetInCU: 0x3116, offset: 0x57E63, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x19B5, symBinAddr: 0x26D5, symSize: 0x18 } - - { offsetInCU: 0x3191, offset: 0x57EDE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x19CD, symBinAddr: 0x26ED, symSize: 0xA6 } - - { offsetInCU: 0x3212, offset: 0x57F5F, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x1A73, symBinAddr: 0x2793, symSize: 0x1C } - - { offsetInCU: 0x326D, offset: 0x57FBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x1A8F, symBinAddr: 0x27AF, symSize: 0x82 } - - { offsetInCU: 0x330F, offset: 0x5805C, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1B11, symBinAddr: 0x2831, symSize: 0x1E } - - { offsetInCU: 0x3364, offset: 0x580B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x1B2F, symBinAddr: 0x284F, symSize: 0xA6 } - - { offsetInCU: 0x33E5, offset: 0x58132, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1BD5, symBinAddr: 0x28F5, symSize: 0x1A } - - { offsetInCU: 0x3440, offset: 0x5818D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1BEF, symBinAddr: 0x290F, symSize: 0x82 } - - { offsetInCU: 0x34E2, offset: 0x5822F, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1C71, symBinAddr: 0x2991, symSize: 0x21 } - - { offsetInCU: 0x3537, offset: 0x58284, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1C92, symBinAddr: 0x29B2, symSize: 0xA6 } - - { offsetInCU: 0x35B8, offset: 0x58305, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1D38, symBinAddr: 0x2A58, symSize: 0x1A } - - { offsetInCU: 0x3613, offset: 0x58360, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1D52, symBinAddr: 0x2A72, symSize: 0x82 } - - { offsetInCU: 0x36B5, offset: 0x58402, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1DD4, symBinAddr: 0x2AF4, symSize: 0x21 } - - { offsetInCU: 0x370A, offset: 0x58457, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1DF5, symBinAddr: 0x2B15, symSize: 0xDD } - - { offsetInCU: 0x37B4, offset: 0x58501, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1ED2, symBinAddr: 0x2BF2, symSize: 0x1F } - - { offsetInCU: 0x380F, offset: 0x5855C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1EF1, symBinAddr: 0x2C11, symSize: 0x84 } - - { offsetInCU: 0x38B1, offset: 0x585FE, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1F75, symBinAddr: 0x2C95, symSize: 0x17 } - - { offsetInCU: 0x3906, offset: 0x58653, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1F8C, symBinAddr: 0x2CAC, symSize: 0x10D } - - { offsetInCU: 0x39C9, offset: 0x58716, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x2099, symBinAddr: 0x2DB9, symSize: 0x21 } - - { offsetInCU: 0x3A1C, offset: 0x58769, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x20BA, symBinAddr: 0x2DDA, symSize: 0xAF } - - { offsetInCU: 0x3AFF, offset: 0x5884C, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x2169, symBinAddr: 0x2E89, symSize: 0x27 } - - { offsetInCU: 0x3B52, offset: 0x5889F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x2190, symBinAddr: 0x2EB0, symSize: 0x19 } - - { offsetInCU: 0x3BD5, offset: 0x58922, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x21A9, symBinAddr: 0x2EC9, symSize: 0x23C } - - { offsetInCU: 0x3D9B, offset: 0x58AE8, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x23E5, symBinAddr: 0x3105, symSize: 0x20F } - - { offsetInCU: 0x4102, offset: 0x58E4F, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.163', symObjAddr: 0x25F4, symBinAddr: 0x3314, symSize: 0x5CA } - - { offsetInCU: 0x466C, offset: 0x593B9, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x2BBE, symBinAddr: 0x38DE, symSize: 0x84 } - - { offsetInCU: 0x474F, offset: 0x5949C, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x2C42, symBinAddr: 0x3962, symSize: 0x2E } - - { offsetInCU: 0x4784, offset: 0x594D1, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x2C70, symBinAddr: 0x3990, symSize: 0x22 } - - { offsetInCU: 0x47AF, offset: 0x594FC, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.192', symObjAddr: 0x2C92, symBinAddr: 0x39B2, symSize: 0xD } - - { offsetInCU: 0x47FB, offset: 0x59548, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.194', symObjAddr: 0x2C9F, symBinAddr: 0x39BF, symSize: 0x84 } - - { offsetInCU: 0x48CB, offset: 0x59618, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2D23, symBinAddr: 0x3A43, symSize: 0xD } - - { offsetInCU: 0x4917, offset: 0x59664, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2D30, symBinAddr: 0x3A50, symSize: 0x68 } - - { offsetInCU: 0x4958, offset: 0x596A5, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2D98, symBinAddr: 0x3AB8, symSize: 0x48 } - - { offsetInCU: 0x499B, offset: 0x596E8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2DE0, symBinAddr: 0x3B00, symSize: 0x217 } - - { offsetInCU: 0x4B1C, offset: 0x59869, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2FF7, symBinAddr: 0x3D17, symSize: 0x20F } - - { offsetInCU: 0x4DB4, offset: 0x59B01, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x3206, symBinAddr: 0x3F26, symSize: 0x3F7 } - - { offsetInCU: 0x513C, offset: 0x59E89, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x35FD, symBinAddr: 0x431D, symSize: 0x7F } - - { offsetInCU: 0x520C, offset: 0x59F59, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x367C, symBinAddr: 0x439C, symSize: 0xD } - - { offsetInCU: 0x5258, offset: 0x59FA5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x3689, symBinAddr: 0x43A9, symSize: 0x291 } - - { offsetInCU: 0x5543, offset: 0x5A290, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x391A, symBinAddr: 0x463A, symSize: 0x173 } - - { offsetInCU: 0x56CE, offset: 0x5A41B, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3A8D, symBinAddr: 0x47AD, symSize: 0x32 } - - { offsetInCU: 0x5729, offset: 0x5A476, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x3ABF, symBinAddr: 0x47DF, symSize: 0x23A } - - { offsetInCU: 0x5984, offset: 0x5A6D1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x3CF9, symBinAddr: 0x4A19, symSize: 0x179 } - - { offsetInCU: 0x5B10, offset: 0x5A85D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x3E72, symBinAddr: 0x4B92, symSize: 0x1A } - - { offsetInCU: 0x5BA0, offset: 0x5A8ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x3E8C, symBinAddr: 0x4BAC, symSize: 0x1B } - - { offsetInCU: 0x5C4F, offset: 0x5A99C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x3EA7, symBinAddr: 0x4BC7, symSize: 0x238 } - - { offsetInCU: 0x5E8D, offset: 0x5ABDA, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x40DF, symBinAddr: 0x4DFF, symSize: 0x1E5 } - - { offsetInCU: 0x6074, offset: 0x5ADC1, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x42C4, symBinAddr: 0x4FE4, symSize: 0x3DD } - - { offsetInCU: 0x6391, offset: 0x5B0DE, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x46A1, symBinAddr: 0x53C1, symSize: 0x36 } - - { offsetInCU: 0x63FD, offset: 0x5B14A, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.247', symObjAddr: 0x46D7, symBinAddr: 0x53F7, symSize: 0x3A } - - { offsetInCU: 0x647A, offset: 0x5B1C7, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x4711, symBinAddr: 0x5431, symSize: 0x42 } - - { offsetInCU: 0x64BB, offset: 0x5B208, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x4753, symBinAddr: 0x5473, symSize: 0x2E } - - { offsetInCU: 0x64F2, offset: 0x5B23F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x4781, symBinAddr: 0x54A1, symSize: 0x5D } - - { offsetInCU: 0x653F, offset: 0x5B28C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x47DE, symBinAddr: 0x54FE, symSize: 0x1F } - - { offsetInCU: 0x65C0, offset: 0x5B30D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x47FD, symBinAddr: 0x551D, symSize: 0x17 } - - { offsetInCU: 0x6658, offset: 0x5B3A5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x4814, symBinAddr: 0x5534, symSize: 0x231 } - - { offsetInCU: 0x6881, offset: 0x5B5CE, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4A45, symBinAddr: 0x5765, symSize: 0x205 } - - { offsetInCU: 0x6AAD, offset: 0x5B7FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x4C4A, symBinAddr: 0x596A, symSize: 0x1C6 } - - { offsetInCU: 0x6BEE, offset: 0x5B93B, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x4E10, symBinAddr: 0x5B30, symSize: 0x168 } - - { offsetInCU: 0x6D4C, offset: 0x5BA99, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4F78, symBinAddr: 0x5C98, symSize: 0x56 } - - { offsetInCU: 0x6D8D, offset: 0x5BADA, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4FCE, symBinAddr: 0x5CEE, symSize: 0x41 } - - { offsetInCU: 0x6DC4, offset: 0x5BB11, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x500F, symBinAddr: 0x5D2F, symSize: 0x172 } - - { offsetInCU: 0x6EE1, offset: 0x5BC2E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x5181, symBinAddr: 0x5EA1, symSize: 0x111 } - - { offsetInCU: 0x7084, offset: 0x5BDD1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x5292, symBinAddr: 0x5FB2, symSize: 0x60 } - - { offsetInCU: 0x7130, offset: 0x5BE7D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x52F2, symBinAddr: 0x6012, symSize: 0x11D } - - { offsetInCU: 0x72B8, offset: 0x5C005, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x540F, symBinAddr: 0x612F, symSize: 0xEB } - - { offsetInCU: 0x740D, offset: 0x5C15A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x54FA, symBinAddr: 0x621A, symSize: 0x11B } - - { offsetInCU: 0x7549, offset: 0x5C296, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x5615, symBinAddr: 0x6335, symSize: 0xFE } - - { offsetInCU: 0x76BA, offset: 0x5C407, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x5713, symBinAddr: 0x6433, symSize: 0x115 } - - { offsetInCU: 0x77ED, offset: 0x5C53A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x5828, symBinAddr: 0x6548, symSize: 0x45 } - - { offsetInCU: 0x7848, offset: 0x5C595, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x586D, symBinAddr: 0x658D, symSize: 0x24 } - - { offsetInCU: 0x7897, offset: 0x5C5E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5891, symBinAddr: 0x65B1, symSize: 0x1E0 } - - { offsetInCU: 0x7AFB, offset: 0x5C848, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5A71, symBinAddr: 0x6791, symSize: 0x24 } - - { offsetInCU: 0x7B7C, offset: 0x5C8C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5A95, symBinAddr: 0x67B5, symSize: 0x169 } - - { offsetInCU: 0x7D44, offset: 0x5CA91, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x5BFE, symBinAddr: 0x691E, symSize: 0x90 } - - { offsetInCU: 0x7E4C, offset: 0x5CB99, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0x101CA, symBinAddr: 0x1DA2A, symSize: 0xBA } - - { offsetInCU: 0x7E64, offset: 0x5CBB1, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5C8E, symBinAddr: 0x69AE, symSize: 0x32 } - - { offsetInCU: 0x7EC3, offset: 0x5CC10, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x5CC0, symBinAddr: 0x69E0, symSize: 0x36 } - - { offsetInCU: 0x7F33, offset: 0x5CC80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x5CF6, symBinAddr: 0x6A16, symSize: 0x369 } - - { offsetInCU: 0x8283, offset: 0x5CFD0, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x605F, symBinAddr: 0x6D7F, symSize: 0xA4 } - - { offsetInCU: 0x831F, offset: 0x5D06C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x6103, symBinAddr: 0x6E23, symSize: 0xAA } - - { offsetInCU: 0x83C6, offset: 0x5D113, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x61AD, symBinAddr: 0x6ECD, symSize: 0xAB } - - { offsetInCU: 0x848D, offset: 0x5D1DA, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x6258, symBinAddr: 0x6F78, symSize: 0x25 } - - { offsetInCU: 0x84D7, offset: 0x5D224, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x627D, symBinAddr: 0x6F9D, symSize: 0x17 } - - { offsetInCU: 0x8500, offset: 0x5D24D, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x6294, symBinAddr: 0x6FB4, symSize: 0x4B } - - { offsetInCU: 0x854D, offset: 0x5D29A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x62DF, symBinAddr: 0x6FFF, symSize: 0x33 } - - { offsetInCU: 0x859C, offset: 0x5D2E9, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.325', symObjAddr: 0x6312, symBinAddr: 0x7032, symSize: 0xA6 } - - { offsetInCU: 0x8652, offset: 0x5D39F, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.326', symObjAddr: 0x63B8, symBinAddr: 0x70D8, symSize: 0x25 } - - { offsetInCU: 0x869C, offset: 0x5D3E9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x63DD, symBinAddr: 0x70FD, symSize: 0x1C } - - { offsetInCU: 0x86FA, offset: 0x5D447, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x63F9, symBinAddr: 0x7119, symSize: 0xF3 } - - { offsetInCU: 0x8812, offset: 0x5D55F, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x64EC, symBinAddr: 0x720C, symSize: 0x4B } - - { offsetInCU: 0x8898, offset: 0x5D5E5, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x6537, symBinAddr: 0x7257, symSize: 0x12 } - - { offsetInCU: 0x88C1, offset: 0x5D60E, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x6549, symBinAddr: 0x7269, symSize: 0xE } - - { offsetInCU: 0x88E0, offset: 0x5D62D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x6557, symBinAddr: 0x7277, symSize: 0x67 } - - { offsetInCU: 0x8955, offset: 0x5D6A2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x65BE, symBinAddr: 0x72DE, symSize: 0x59 } - - { offsetInCU: 0x89D2, offset: 0x5D71F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x6617, symBinAddr: 0x7337, symSize: 0x445 } - - { offsetInCU: 0x8E32, offset: 0x5DB7F, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x6A5C, symBinAddr: 0x777C, symSize: 0x37 } - - { offsetInCU: 0x8E9E, offset: 0x5DBEB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6A93, symBinAddr: 0x77B3, symSize: 0x7F } - - { offsetInCU: 0x8F2F, offset: 0x5DC7C, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6B12, symBinAddr: 0x7832, symSize: 0x37 } - - { offsetInCU: 0x8F84, offset: 0x5DCD1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x6B49, symBinAddr: 0x7869, symSize: 0x4B } - - { offsetInCU: 0x8FCE, offset: 0x5DD1B, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x6B94, symBinAddr: 0x78B4, symSize: 0x41 } - - { offsetInCU: 0x901C, offset: 0x5DD69, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x6BD5, symBinAddr: 0x78F5, symSize: 0x4B } - - { offsetInCU: 0x9066, offset: 0x5DDB3, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6C20, symBinAddr: 0x7940, symSize: 0x41 } - - { offsetInCU: 0x90B4, offset: 0x5DE01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x6C61, symBinAddr: 0x7981, symSize: 0x4B } - - { offsetInCU: 0x90FE, offset: 0x5DE4B, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x6CAC, symBinAddr: 0x79CC, symSize: 0x41 } - - { offsetInCU: 0x914C, offset: 0x5DE99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x6CED, symBinAddr: 0x7A0D, symSize: 0x8D } - - { offsetInCU: 0x91CB, offset: 0x5DF18, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x6D7A, symBinAddr: 0x7A9A, symSize: 0xDE } - - { offsetInCU: 0x9272, offset: 0x5DFBF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6E58, symBinAddr: 0x7B78, symSize: 0xDE } - - { offsetInCU: 0x9319, offset: 0x5E066, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6F36, symBinAddr: 0x7C56, symSize: 0xF3 } - - { offsetInCU: 0x93EE, offset: 0x5E13B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x7029, symBinAddr: 0x7D49, symSize: 0x11B } - - { offsetInCU: 0x94D3, offset: 0x5E220, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x7144, symBinAddr: 0x7E64, symSize: 0x103 } - - { offsetInCU: 0x956D, offset: 0x5E2BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x7247, symBinAddr: 0x7F67, symSize: 0xBE } - - { offsetInCU: 0x95FC, offset: 0x5E349, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x7305, symBinAddr: 0x8025, symSize: 0x118 } - - { offsetInCU: 0x96B6, offset: 0x5E403, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x741D, symBinAddr: 0x813D, symSize: 0x118 } - - { offsetInCU: 0x9770, offset: 0x5E4BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x7535, symBinAddr: 0x8255, symSize: 0x118 } - - { offsetInCU: 0x982A, offset: 0x5E577, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x764D, symBinAddr: 0x836D, symSize: 0x118 } - - { offsetInCU: 0x98E4, offset: 0x5E631, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x7765, symBinAddr: 0x8485, symSize: 0x118 } - - { offsetInCU: 0x999E, offset: 0x5E6EB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x787D, symBinAddr: 0x859D, symSize: 0xDE } - - { offsetInCU: 0x9A45, offset: 0x5E792, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x795B, symBinAddr: 0x867B, symSize: 0xDD } - - { offsetInCU: 0x9AEF, offset: 0x5E83C, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x7A38, symBinAddr: 0x8758, symSize: 0x1C } - - { offsetInCU: 0x9B4A, offset: 0x5E897, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7A54, symBinAddr: 0x8774, symSize: 0xDD } - - { offsetInCU: 0x9BF4, offset: 0x5E941, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x7B31, symBinAddr: 0x8851, symSize: 0x1C } - - { offsetInCU: 0x9C4F, offset: 0x5E99C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7B4D, symBinAddr: 0x886D, symSize: 0x10B } - - { offsetInCU: 0x9CF4, offset: 0x5EA41, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7C58, symBinAddr: 0x8978, symSize: 0x66 } - - { offsetInCU: 0x9D5F, offset: 0x5EAAC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x7CBE, symBinAddr: 0x89DE, symSize: 0xDE } - - { offsetInCU: 0x9DF4, offset: 0x5EB41, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x7D9C, symBinAddr: 0x8ABC, symSize: 0x49 } - - { offsetInCU: 0x9E53, offset: 0x5EBA0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x7DE5, symBinAddr: 0x8B05, symSize: 0xFC } - - { offsetInCU: 0x9EF8, offset: 0x5EC45, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x7EE1, symBinAddr: 0x8C01, symSize: 0x55 } - - { offsetInCU: 0x9F63, offset: 0x5ECB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7F36, symBinAddr: 0x8C56, symSize: 0x10B } - - { offsetInCU: 0xA008, offset: 0x5ED55, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x8041, symBinAddr: 0x8D61, symSize: 0x66 } - - { offsetInCU: 0xA073, offset: 0x5EDC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x80A7, symBinAddr: 0x8DC7, symSize: 0xDE } - - { offsetInCU: 0xA108, offset: 0x5EE55, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x8185, symBinAddr: 0x8EA5, symSize: 0x49 } - - { offsetInCU: 0xA167, offset: 0x5EEB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x81CE, symBinAddr: 0x8EEE, symSize: 0x2E } - - { offsetInCU: 0xA1AB, offset: 0x5EEF8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x81FC, symBinAddr: 0x8F1C, symSize: 0x2E } - - { offsetInCU: 0xA1EF, offset: 0x5EF3C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x822A, symBinAddr: 0x8F4A, symSize: 0x1E } - - { offsetInCU: 0xA231, offset: 0x5EF7E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x8248, symBinAddr: 0x8F68, symSize: 0x1E } - - { offsetInCU: 0xA273, offset: 0x5EFC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x8266, symBinAddr: 0x8F86, symSize: 0x2E } - - { offsetInCU: 0xA2B7, offset: 0x5F004, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x8294, symBinAddr: 0x8FB4, symSize: 0x2E } - - { offsetInCU: 0xA2FB, offset: 0x5F048, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x82C2, symBinAddr: 0x8FE2, symSize: 0x1E } - - { offsetInCU: 0xA33D, offset: 0x5F08A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x82E0, symBinAddr: 0x9000, symSize: 0x1E } - - { offsetInCU: 0xA37F, offset: 0x5F0CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x82FE, symBinAddr: 0x901E, symSize: 0x8D } - - { offsetInCU: 0xA42E, offset: 0x5F17B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x838B, symBinAddr: 0x90AB, symSize: 0x6A } - - { offsetInCU: 0xA4DD, offset: 0x5F22A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x83F5, symBinAddr: 0x9115, symSize: 0x81 } - - { offsetInCU: 0xA594, offset: 0x5F2E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x8476, symBinAddr: 0x9196, symSize: 0x5E } - - { offsetInCU: 0xA64B, offset: 0x5F398, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x84D4, symBinAddr: 0x91F4, symSize: 0x9C } - - { offsetInCU: 0xA6FD, offset: 0x5F44A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x8570, symBinAddr: 0x9290, symSize: 0x8D } - - { offsetInCU: 0xA7CD, offset: 0x5F51A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x85FD, symBinAddr: 0x931D, symSize: 0x6A } - - { offsetInCU: 0xA87C, offset: 0x5F5C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x8667, symBinAddr: 0x9387, symSize: 0x81 } - - { offsetInCU: 0xA933, offset: 0x5F680, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x86E8, symBinAddr: 0x9408, symSize: 0x5E } - - { offsetInCU: 0xA9EA, offset: 0x5F737, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x8746, symBinAddr: 0x9466, symSize: 0x10D } - - { offsetInCU: 0xAAAD, offset: 0x5F7FA, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x8853, symBinAddr: 0x9573, symSize: 0xEE } - - { offsetInCU: 0xABDA, offset: 0x5F927, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x8941, symBinAddr: 0x9661, symSize: 0x10D } - - { offsetInCU: 0xAC9D, offset: 0x5F9EA, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8A4E, symBinAddr: 0x976E, symSize: 0xEE } - - { offsetInCU: 0xADCA, offset: 0x5FB17, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8B3C, symBinAddr: 0x985C, symSize: 0xAB } - - { offsetInCU: 0xAE4B, offset: 0x5FB98, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x8BE7, symBinAddr: 0x9907, symSize: 0x1A } - - { offsetInCU: 0xAEA6, offset: 0x5FBF3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x8C01, symBinAddr: 0x9921, symSize: 0xAB } - - { offsetInCU: 0xAF27, offset: 0x5FC74, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x8CAC, symBinAddr: 0x99CC, symSize: 0x1A } - - { offsetInCU: 0xAF82, offset: 0x5FCCF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x8CC6, symBinAddr: 0x99E6, symSize: 0xA8 } - - { offsetInCU: 0xB003, offset: 0x5FD50, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8D6E, symBinAddr: 0x9A8E, symSize: 0x1D } - - { offsetInCU: 0xB05E, offset: 0x5FDAB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x8D8B, symBinAddr: 0x9AAB, symSize: 0x4AC } - - { offsetInCU: 0xB4F4, offset: 0x60241, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x9237, symBinAddr: 0x9F57, symSize: 0xED } - - { offsetInCU: 0xB5A8, offset: 0x602F5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x9324, symBinAddr: 0xA044, symSize: 0x211 } - - { offsetInCU: 0xB6DC, offset: 0x60429, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x9535, symBinAddr: 0xA255, symSize: 0x6F } - - { offsetInCU: 0xB770, offset: 0x604BD, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x95A4, symBinAddr: 0xA2C4, symSize: 0x50 } - - { offsetInCU: 0xB7F6, offset: 0x60543, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x95F4, symBinAddr: 0xA314, symSize: 0x1C } - - { offsetInCU: 0xB853, offset: 0x605A0, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x9610, symBinAddr: 0xA330, symSize: 0x17 } - - { offsetInCU: 0xB87C, offset: 0x605C9, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x9627, symBinAddr: 0xA347, symSize: 0x13 } - - { offsetInCU: 0xB89B, offset: 0x605E8, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.433', symObjAddr: 0x963A, symBinAddr: 0xA35A, symSize: 0x1C } - - { offsetInCU: 0xB8F8, offset: 0x60645, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x9656, symBinAddr: 0xA376, symSize: 0x13 } - - { offsetInCU: 0xB92E, offset: 0x6067B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x9669, symBinAddr: 0xA389, symSize: 0x13 } - - { offsetInCU: 0xB964, offset: 0x606B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x967C, symBinAddr: 0xA39C, symSize: 0x26 } - - { offsetInCU: 0xB9B5, offset: 0x60702, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x96A2, symBinAddr: 0xA3C2, symSize: 0x26 } - - { offsetInCU: 0xB9F7, offset: 0x60744, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x96C8, symBinAddr: 0xA3E8, symSize: 0x26 } - - { offsetInCU: 0xBA39, offset: 0x60786, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x96EE, symBinAddr: 0xA40E, symSize: 0x26 } - - { offsetInCU: 0xBA7B, offset: 0x607C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x9714, symBinAddr: 0xA434, symSize: 0x1F } - - { offsetInCU: 0xBB04, offset: 0x60851, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x9733, symBinAddr: 0xA453, symSize: 0x1B } - - { offsetInCU: 0xBBAF, offset: 0x608FC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x974E, symBinAddr: 0xA46E, symSize: 0xFF } - - { offsetInCU: 0xBCF8, offset: 0x60A45, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x984D, symBinAddr: 0xA56D, symSize: 0x60 } - - { offsetInCU: 0xBD63, offset: 0x60AB0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x98AD, symBinAddr: 0xA5CD, symSize: 0x1D } - - { offsetInCU: 0xBDFD, offset: 0x60B4A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x98CA, symBinAddr: 0xA5EA, symSize: 0x108 } - - { offsetInCU: 0xBF4E, offset: 0x60C9B, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x99D2, symBinAddr: 0xA6F2, symSize: 0x60 } - - { offsetInCU: 0xBFB9, offset: 0x60D06, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x9A32, symBinAddr: 0xA752, symSize: 0x27 } - - { offsetInCU: 0xC057, offset: 0x60DA4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x9A59, symBinAddr: 0xA779, symSize: 0x22 } - - { offsetInCU: 0xC11B, offset: 0x60E68, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x9A7B, symBinAddr: 0xA79B, symSize: 0x27 } - - { offsetInCU: 0xC1CC, offset: 0x60F19, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x9AA2, symBinAddr: 0xA7C2, symSize: 0x150 } - - { offsetInCU: 0xC392, offset: 0x610DF, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x9BF2, symBinAddr: 0xA912, symSize: 0x60 } - - { offsetInCU: 0xC3FD, offset: 0x6114A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x9C52, symBinAddr: 0xA972, symSize: 0xF0 } - - { offsetInCU: 0xC4DA, offset: 0x61227, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x9D42, symBinAddr: 0xAA62, symSize: 0x12B } - - { offsetInCU: 0xC5A9, offset: 0x612F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x9E6D, symBinAddr: 0xAB8D, symSize: 0x1C1 } - - { offsetInCU: 0xC6DA, offset: 0x61427, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0xA02E, symBinAddr: 0xAD4E, symSize: 0x216 } - - { offsetInCU: 0xC904, offset: 0x61651, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0xA244, symBinAddr: 0xAF64, symSize: 0x72 } - - { offsetInCU: 0xC9B1, offset: 0x616FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0xA2B6, symBinAddr: 0xAFD6, symSize: 0xC0F } - - { offsetInCU: 0xD1DA, offset: 0x61F27, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0xAEC5, symBinAddr: 0xBBE5, symSize: 0x3B } - - { offsetInCU: 0xD25B, offset: 0x61FA8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0xAF00, symBinAddr: 0xBC20, symSize: 0x25C } - - { offsetInCU: 0xD468, offset: 0x621B5, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xB15C, symBinAddr: 0xBE7C, symSize: 0x33 } - - { offsetInCU: 0xD4C7, offset: 0x62214, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xB18F, symBinAddr: 0xBEAF, symSize: 0x1E7 } - - { offsetInCU: 0xD703, offset: 0x62450, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xB376, symBinAddr: 0xC096, symSize: 0x3F } - - { offsetInCU: 0xD784, offset: 0x624D1, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xB3B5, symBinAddr: 0xC0D5, symSize: 0x33 } - - { offsetInCU: 0xD7DD, offset: 0x6252A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xB3E8, symBinAddr: 0xC108, symSize: 0x50 } - - { offsetInCU: 0xD837, offset: 0x62584, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xB438, symBinAddr: 0xC158, symSize: 0x102 } - - { offsetInCU: 0xD931, offset: 0x6267E, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xB53A, symBinAddr: 0xC25A, symSize: 0x4B } - - { offsetInCU: 0xD9B7, offset: 0x62704, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xB585, symBinAddr: 0xC2A5, symSize: 0x103 } - - { offsetInCU: 0xDAD1, offset: 0x6281E, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xB688, symBinAddr: 0xC3A8, symSize: 0x90 } - - { offsetInCU: 0xDB77, offset: 0x628C4, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xB718, symBinAddr: 0xC438, symSize: 0x34 } - - { offsetInCU: 0xDBD6, offset: 0x62923, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xB74C, symBinAddr: 0xC46C, symSize: 0xC8 } - - { offsetInCU: 0xDCB4, offset: 0x62A01, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xB814, symBinAddr: 0xC534, symSize: 0xE7 } - - { offsetInCU: 0xDDCE, offset: 0x62B1B, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xB8FB, symBinAddr: 0xC61B, symSize: 0x60 } - - { offsetInCU: 0xDE39, offset: 0x62B86, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xB95B, symBinAddr: 0xC67B, symSize: 0xF0 } - - { offsetInCU: 0xDF16, offset: 0x62C63, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xBA4B, symBinAddr: 0xC76B, symSize: 0x139 } - - { offsetInCU: 0xDFF1, offset: 0x62D3E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xBB84, symBinAddr: 0xC8A4, symSize: 0x164 } - - { offsetInCU: 0xE16B, offset: 0x62EB8, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xC2FE, symBinAddr: 0xD01E, symSize: 0x2F } - - { offsetInCU: 0xE1B9, offset: 0x62F06, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xC32D, symBinAddr: 0xD04D, symSize: 0x3B } - - { offsetInCU: 0xE23A, offset: 0x62F87, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xC368, symBinAddr: 0xD088, symSize: 0xDC } - - { offsetInCU: 0xE318, offset: 0x63065, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xC444, symBinAddr: 0xD164, symSize: 0x37 } - - { offsetInCU: 0xE388, offset: 0x630D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xC47B, symBinAddr: 0xD19B, symSize: 0x50 } - - { offsetInCU: 0xE3E2, offset: 0x6312F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xC4CB, symBinAddr: 0xD1EB, symSize: 0x102 } - - { offsetInCU: 0xE4DC, offset: 0x63229, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xC5CD, symBinAddr: 0xD2ED, symSize: 0x4B } - - { offsetInCU: 0xE562, offset: 0x632AF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xC618, symBinAddr: 0xD338, symSize: 0x103 } - - { offsetInCU: 0xE67C, offset: 0x633C9, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xC71B, symBinAddr: 0xD43B, symSize: 0x90 } - - { offsetInCU: 0xE722, offset: 0x6346F, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xC7AB, symBinAddr: 0xD4CB, symSize: 0x34 } - - { offsetInCU: 0xE781, offset: 0x634CE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xC7DF, symBinAddr: 0xD4FF, symSize: 0xC8 } - - { offsetInCU: 0xE85F, offset: 0x635AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xC8A7, symBinAddr: 0xD5C7, symSize: 0xDF } - - { offsetInCU: 0xE947, offset: 0x63694, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xC986, symBinAddr: 0xD6A6, symSize: 0x92 } - - { offsetInCU: 0xE9DA, offset: 0x63727, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xCA18, symBinAddr: 0xD738, symSize: 0x111 } - - { offsetInCU: 0xEB28, offset: 0x63875, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xCB29, symBinAddr: 0xD849, symSize: 0x273 } - - { offsetInCU: 0xED83, offset: 0x63AD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xCD9C, symBinAddr: 0xDABC, symSize: 0xB0 } - - { offsetInCU: 0xEE6D, offset: 0x63BBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xCE4C, symBinAddr: 0xDB6C, symSize: 0xD4D } - - { offsetInCU: 0xFA31, offset: 0x6477E, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xDB99, symBinAddr: 0xE8B9, symSize: 0x18 } - - { offsetInCU: 0xFAB2, offset: 0x647FF, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xDBB1, symBinAddr: 0xE8D1, symSize: 0x18 } - - { offsetInCU: 0xFB33, offset: 0x64880, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xDBC9, symBinAddr: 0xE8E9, symSize: 0x406 } - - { offsetInCU: 0xFE9B, offset: 0x64BE8, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xDFCF, symBinAddr: 0xECEF, symSize: 0x33 } - - { offsetInCU: 0xFEFA, offset: 0x64C47, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xE002, symBinAddr: 0xED22, symSize: 0x9C } - - { offsetInCU: 0xFF9A, offset: 0x64CE7, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xE09E, symBinAddr: 0xEDBE, symSize: 0x80 } - - { offsetInCU: 0x10061, offset: 0x64DAE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xE11E, symBinAddr: 0xEE3E, symSize: 0x36 } - - { offsetInCU: 0x1008A, offset: 0x64DD7, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xE154, symBinAddr: 0xEE74, symSize: 0x26 } - - { offsetInCU: 0x100A9, offset: 0x64DF6, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xE17A, symBinAddr: 0xEE9A, symSize: 0x40 } - - { offsetInCU: 0x100DE, offset: 0x64E2B, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xE1BA, symBinAddr: 0xEEDA, symSize: 0x30 } - - { offsetInCU: 0x10109, offset: 0x64E56, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.607', symObjAddr: 0xE1EA, symBinAddr: 0xEF0A, symSize: 0x43 } - - { offsetInCU: 0x1018A, offset: 0x64ED7, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xE22D, symBinAddr: 0xEF4D, symSize: 0x56 } - - { offsetInCU: 0x101CB, offset: 0x64F18, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xE283, symBinAddr: 0xEFA3, symSize: 0x3A } - - { offsetInCU: 0x1020E, offset: 0x64F5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xE2BD, symBinAddr: 0xEFDD, symSize: 0x87 } - - { offsetInCU: 0x102AC, offset: 0x64FF9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xE344, symBinAddr: 0xF064, symSize: 0x10F } - - { offsetInCU: 0x103B5, offset: 0x65102, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xE453, symBinAddr: 0xF173, symSize: 0x33 } - - { offsetInCU: 0x10414, offset: 0x65161, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xE486, symBinAddr: 0xF1A6, symSize: 0x2B } - - { offsetInCU: 0x10461, offset: 0x651AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xE4B1, symBinAddr: 0xF1D1, symSize: 0x1F6 } - - { offsetInCU: 0x1067F, offset: 0x653CC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xE6A7, symBinAddr: 0xF3C7, symSize: 0x6 } - - { offsetInCU: 0x106F6, offset: 0x65443, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xE71C, symBinAddr: 0xF43C, symSize: 0x32 } - - { offsetInCU: 0x10740, offset: 0x6548D, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xE74E, symBinAddr: 0xF46E, symSize: 0x88 } - - { offsetInCU: 0x107AD, offset: 0x654FA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xE7D6, symBinAddr: 0xF4F6, symSize: 0x64 } - - { offsetInCU: 0x10836, offset: 0x65583, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xE83A, symBinAddr: 0xF55A, symSize: 0xDA } - - { offsetInCU: 0x108DD, offset: 0x6562A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xE914, symBinAddr: 0xF634, symSize: 0x1B6 } - - { offsetInCU: 0x10A8C, offset: 0x657D9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xEACA, symBinAddr: 0xF7EA, symSize: 0x64 } - - { offsetInCU: 0x10B7F, offset: 0x658CC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xEB2E, symBinAddr: 0xF84E, symSize: 0x64 } - - { offsetInCU: 0x10C66, offset: 0x659B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xEB92, symBinAddr: 0xF8B2, symSize: 0x114 } - - { offsetInCU: 0x10D69, offset: 0x65AB6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xECA6, symBinAddr: 0xF9C6, symSize: 0x92 } - - { offsetInCU: 0x10E00, offset: 0x65B4D, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xED38, symBinAddr: 0xFA58, symSize: 0x15D } - - { offsetInCU: 0x10F67, offset: 0x65CB4, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xEE95, symBinAddr: 0xFBB5, symSize: 0x15D } - - { offsetInCU: 0x110CE, offset: 0x65E1B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xEFF2, symBinAddr: 0xFD12, symSize: 0x7E } - - { offsetInCU: 0x11134, offset: 0x65E81, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xF070, symBinAddr: 0xFD90, symSize: 0x4A } - - { offsetInCU: 0x11195, offset: 0x65EE2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xF0BA, symBinAddr: 0xFDDA, symSize: 0x7F } - - { offsetInCU: 0x111FF, offset: 0x65F4C, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xF139, symBinAddr: 0xFE59, symSize: 0x4A } - - { offsetInCU: 0x11260, offset: 0x65FAD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xF183, symBinAddr: 0xFEA3, symSize: 0x5F } - - { offsetInCU: 0x1136F, offset: 0x660BC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xF1E2, symBinAddr: 0xFF02, symSize: 0xA6 } - - { offsetInCU: 0x113F0, offset: 0x6613D, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xF288, symBinAddr: 0xFFA8, symSize: 0x1A } - - { offsetInCU: 0x1144B, offset: 0x66198, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xF2A2, symBinAddr: 0xFFC2, symSize: 0x82 } - - { offsetInCU: 0x114ED, offset: 0x6623A, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xF324, symBinAddr: 0x10044, symSize: 0x21 } - - { offsetInCU: 0x11542, offset: 0x6628F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xF345, symBinAddr: 0x10065, symSize: 0x1C } - - { offsetInCU: 0x115BD, offset: 0x6630A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xF361, symBinAddr: 0x10081, symSize: 0x18 } - - { offsetInCU: 0x11625, offset: 0x66372, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xF379, symBinAddr: 0x10099, symSize: 0x38 } - - { offsetInCU: 0x116A2, offset: 0x663EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xF3B1, symBinAddr: 0x100D1, symSize: 0x33 } - - { offsetInCU: 0x116E8, offset: 0x66435, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xF3E4, symBinAddr: 0x10104, symSize: 0x2B } - - { offsetInCU: 0x1172E, offset: 0x6647B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xF40F, symBinAddr: 0x1012F, symSize: 0x2B } - - { offsetInCU: 0x11774, offset: 0x664C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xF43A, symBinAddr: 0x1015A, symSize: 0x48 } - - { offsetInCU: 0x117CE, offset: 0x6651B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xF482, symBinAddr: 0x101A2, symSize: 0x48 } - - { offsetInCU: 0x11828, offset: 0x66575, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xF4CA, symBinAddr: 0x101EA, symSize: 0x9B } - - { offsetInCU: 0x118EE, offset: 0x6663B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xF565, symBinAddr: 0x10285, symSize: 0x3B } - - { offsetInCU: 0x1194E, offset: 0x6669B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xF5A0, symBinAddr: 0x102C0, symSize: 0x3E } - - { offsetInCU: 0x119AE, offset: 0x666FB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xF5DE, symBinAddr: 0x102FE, symSize: 0x2C } - - { offsetInCU: 0x119F4, offset: 0x66741, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xF60A, symBinAddr: 0x1032A, symSize: 0x390 } - - { offsetInCU: 0x11DA6, offset: 0x66AF3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xF99A, symBinAddr: 0x106BA, symSize: 0x7D } - - { offsetInCU: 0x11E29, offset: 0x66B76, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xFA17, symBinAddr: 0x10737, symSize: 0x7D } - - { offsetInCU: 0x11EAD, offset: 0x66BFA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xFA94, symBinAddr: 0x107B4, symSize: 0x11 } - - { offsetInCU: 0x11EF0, offset: 0x66C3D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xFAA5, symBinAddr: 0x107C5, symSize: 0x11 } - - { offsetInCU: 0x11F33, offset: 0x66C80, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xFAB6, symBinAddr: 0x107D6, symSize: 0x62 } - - { offsetInCU: 0x11FB1, offset: 0x66CFE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xFB18, symBinAddr: 0x10838, symSize: 0x67 } - - { offsetInCU: 0x12069, offset: 0x66DB6, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xFB7F, symBinAddr: 0x1089F, symSize: 0x30 } - - { offsetInCU: 0x120ED, offset: 0x66E3A, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xFBAF, symBinAddr: 0x108CF, symSize: 0x5E } - - { offsetInCU: 0x12193, offset: 0x66EE0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xFC0D, symBinAddr: 0x1092D, symSize: 0x5E } - - { offsetInCU: 0x12239, offset: 0x66F86, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xFC6B, symBinAddr: 0x1098B, symSize: 0x18 } - - { offsetInCU: 0x122D1, offset: 0x6701E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xFC83, symBinAddr: 0x109A3, symSize: 0x1D5 } - - { offsetInCU: 0x1247C, offset: 0x671C9, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xFE58, symBinAddr: 0x10B78, symSize: 0x25 } - - { offsetInCU: 0x124C3, offset: 0x67210, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xFE7D, symBinAddr: 0x10B9D, symSize: 0x25 } - - { offsetInCU: 0x1250A, offset: 0x67257, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xFEA2, symBinAddr: 0x10BC2, symSize: 0x25 } - - { offsetInCU: 0x12551, offset: 0x6729E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xFEC7, symBinAddr: 0x10BE7, symSize: 0x25 } - - { offsetInCU: 0x12598, offset: 0x672E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xFEEC, symBinAddr: 0x10C0C, symSize: 0x123 } - - { offsetInCU: 0x125CC, offset: 0x67319, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0x1000F, symBinAddr: 0x10D2F, symSize: 0x7B } - - { offsetInCU: 0x12635, offset: 0x67382, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0x1008A, symBinAddr: 0x10DAA, symSize: 0x58 } - - { offsetInCU: 0x126A1, offset: 0x673EE, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0x100E2, symBinAddr: 0x10E02, symSize: 0x7B } - - { offsetInCU: 0x1271D, offset: 0x6746A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0x1015D, symBinAddr: 0x10E7D, symSize: 0x63 } - - { offsetInCU: 0x27, offset: 0x6B0AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0xE } - - { offsetInCU: 0x41, offset: 0x6B0C7, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xDF08, symBinAddr: 0x24C20, symSize: 0x0 } - - { offsetInCU: 0x61, offset: 0x6B0E7, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xDF10, symBinAddr: 0x24C28, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x6B0FD, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xDF18, symBinAddr: 0x24C30, symSize: 0x0 } - - { offsetInCU: 0x8D, offset: 0x6B113, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xDF20, symBinAddr: 0x24C38, symSize: 0x0 } - - { offsetInCU: 0x97, offset: 0x6B11D, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xB5D6, symBinAddr: 0x1C1AB, symSize: 0x58 } - - { offsetInCU: 0xBF, offset: 0x6B145, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x49200, symBinAddr: 0x2AB20, symSize: 0x0 } - - { offsetInCU: 0x125, offset: 0x6B1AB, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x49208, symBinAddr: 0x2AB28, symSize: 0x0 } - - { offsetInCU: 0x65E, offset: 0x6B6E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0xE } - - { offsetInCU: 0x6AB, offset: 0x6B731, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0xE, symBinAddr: 0x10EEE, symSize: 0x8E } - - { offsetInCU: 0x73F, offset: 0x6B7C5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0x9C, symBinAddr: 0x10F7C, symSize: 0x3E } - - { offsetInCU: 0x773, offset: 0x6B7F9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xDA, symBinAddr: 0x10FBA, symSize: 0x2F } - - { offsetInCU: 0x7AB, offset: 0x6B831, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x109, symBinAddr: 0x10FE9, symSize: 0x28 } - - { offsetInCU: 0x7DF, offset: 0x6B865, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x131, symBinAddr: 0x11011, symSize: 0x19 } - - { offsetInCU: 0x83B, offset: 0x6B8C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x14A, symBinAddr: 0x1102A, symSize: 0x19 } - - { offsetInCU: 0x8AD, offset: 0x6B933, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x163, symBinAddr: 0x11043, symSize: 0x15 } - - { offsetInCU: 0x92B, offset: 0x6B9B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x178, symBinAddr: 0x11058, symSize: 0x1D5 } - - { offsetInCU: 0xB2E, offset: 0x6BBB4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x34D, symBinAddr: 0x1122D, symSize: 0xFF } - - { offsetInCU: 0xC1A, offset: 0x6BCA0, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x44C, symBinAddr: 0x1132C, symSize: 0x18 } - - { offsetInCU: 0xC6F, offset: 0x6BCF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x482, symBinAddr: 0x11344, symSize: 0xDE } - - { offsetInCU: 0xD08, offset: 0x6BD8E, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x560, symBinAddr: 0x11422, symSize: 0x16 } - - { offsetInCU: 0xD2D, offset: 0x6BDB3, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x576, symBinAddr: 0x11438, symSize: 0xF } - - { offsetInCU: 0xD58, offset: 0x6BDDE, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x585, symBinAddr: 0x11447, symSize: 0x32 } - - { offsetInCU: 0xDB7, offset: 0x6BE3D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x60E, symBinAddr: 0x11479, symSize: 0xC9 } - - { offsetInCU: 0xEC4, offset: 0x6BF4A, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x6D7, symBinAddr: 0x11542, symSize: 0x19 } - - { offsetInCU: 0xF17, offset: 0x6BF9D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x73A, symBinAddr: 0x1155B, symSize: 0x14 } - - { offsetInCU: 0xF7B, offset: 0x6C001, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x74E, symBinAddr: 0x1156F, symSize: 0x17 } - - { offsetInCU: 0xFDF, offset: 0x6C065, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x765, symBinAddr: 0x11586, symSize: 0xDC } - - { offsetInCU: 0x1084, offset: 0x6C10A, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x841, symBinAddr: 0x11662, symSize: 0x1E } - - { offsetInCU: 0x10D7, offset: 0x6C15D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x85F, symBinAddr: 0x11680, symSize: 0xC9 } - - { offsetInCU: 0x11D1, offset: 0x6C257, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x928, symBinAddr: 0x11749, symSize: 0x19 } - - { offsetInCU: 0x1224, offset: 0x6C2AA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x941, symBinAddr: 0x11762, symSize: 0x14 } - - { offsetInCU: 0x1288, offset: 0x6C30E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x955, symBinAddr: 0x11776, symSize: 0x17 } - - { offsetInCU: 0x12EC, offset: 0x6C372, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x96C, symBinAddr: 0x1178D, symSize: 0x161 } - - { offsetInCU: 0x13BA, offset: 0x6C440, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0xACD, symBinAddr: 0x118EE, symSize: 0x4B } - - { offsetInCU: 0x142A, offset: 0x6C4B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xB8F, symBinAddr: 0x11939, symSize: 0xFF } - - { offsetInCU: 0x1585, offset: 0x6C60B, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xC8E, symBinAddr: 0x11A38, symSize: 0x31 } - - { offsetInCU: 0x15E9, offset: 0x6C66F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xD17, symBinAddr: 0x11A69, symSize: 0x15 } - - { offsetInCU: 0x1664, offset: 0x6C6EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xD2C, symBinAddr: 0x11A7E, symSize: 0x18 } - - { offsetInCU: 0x16DF, offset: 0x6C765, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xD44, symBinAddr: 0x11A96, symSize: 0xDD } - - { offsetInCU: 0x1789, offset: 0x6C80F, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xE21, symBinAddr: 0x11B73, symSize: 0x1C } - - { offsetInCU: 0x17E4, offset: 0x6C86A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xE3D, symBinAddr: 0x11B8F, symSize: 0x82 } - - { offsetInCU: 0x1886, offset: 0x6C90C, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xEBF, symBinAddr: 0x11C11, symSize: 0x1E } - - { offsetInCU: 0x18DB, offset: 0x6C961, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xEDD, symBinAddr: 0x11C2F, symSize: 0xDD } - - { offsetInCU: 0x1985, offset: 0x6CA0B, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xFBA, symBinAddr: 0x11D0C, symSize: 0x1A } - - { offsetInCU: 0x19E0, offset: 0x6CA66, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xFD4, symBinAddr: 0x11D26, symSize: 0x82 } - - { offsetInCU: 0x1A82, offset: 0x6CB08, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1056, symBinAddr: 0x11DA8, symSize: 0x21 } - - { offsetInCU: 0x1AD7, offset: 0x6CB5D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0x1077, symBinAddr: 0x11DC9, symSize: 0xDD } - - { offsetInCU: 0x1B81, offset: 0x6CC07, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x1154, symBinAddr: 0x11EA6, symSize: 0x1D } - - { offsetInCU: 0x1BDC, offset: 0x6CC62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1171, symBinAddr: 0x11EC3, symSize: 0xDD } - - { offsetInCU: 0x1C86, offset: 0x6CD0C, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x124E, symBinAddr: 0x11FA0, symSize: 0x1D } - - { offsetInCU: 0x1CE1, offset: 0x6CD67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x126B, symBinAddr: 0x11FBD, symSize: 0xDD } - - { offsetInCU: 0x1D8B, offset: 0x6CE11, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x1348, symBinAddr: 0x1209A, symSize: 0x1C } - - { offsetInCU: 0x1DE6, offset: 0x6CE6C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1364, symBinAddr: 0x120B6, symSize: 0x7F } - - { offsetInCU: 0x1E77, offset: 0x6CEFD, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x13E3, symBinAddr: 0x12135, symSize: 0x18 } - - { offsetInCU: 0x1EB9, offset: 0x6CF3F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x13FB, symBinAddr: 0x1214D, symSize: 0x7F } - - { offsetInCU: 0x1F4A, offset: 0x6CFD0, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x147A, symBinAddr: 0x121CC, symSize: 0x18 } - - { offsetInCU: 0x1F8C, offset: 0x6D012, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x1492, symBinAddr: 0x121E4, symSize: 0x7F } - - { offsetInCU: 0x201D, offset: 0x6D0A3, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1511, symBinAddr: 0x12263, symSize: 0x18 } - - { offsetInCU: 0x205F, offset: 0x6D0E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1529, symBinAddr: 0x1227B, symSize: 0xE0 } - - { offsetInCU: 0x2109, offset: 0x6D18F, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x1609, symBinAddr: 0x1235B, symSize: 0x1A } - - { offsetInCU: 0x2164, offset: 0x6D1EA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1623, symBinAddr: 0x12375, symSize: 0x83 } - - { offsetInCU: 0x2206, offset: 0x6D28C, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x16A6, symBinAddr: 0x123F8, symSize: 0x12 } - - { offsetInCU: 0x225B, offset: 0x6D2E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x16B8, symBinAddr: 0x1240A, symSize: 0xE0 } - - { offsetInCU: 0x2305, offset: 0x6D38B, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x1798, symBinAddr: 0x124EA, symSize: 0x18 } - - { offsetInCU: 0x2360, offset: 0x6D3E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x17B0, symBinAddr: 0x12502, symSize: 0x82 } - - { offsetInCU: 0x2402, offset: 0x6D488, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x1832, symBinAddr: 0x12584, symSize: 0x10 } - - { offsetInCU: 0x2457, offset: 0x6D4DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x1842, symBinAddr: 0x12594, symSize: 0x83 } - - { offsetInCU: 0x24F9, offset: 0x6D57F, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x18C5, symBinAddr: 0x12617, symSize: 0x12 } - - { offsetInCU: 0x254E, offset: 0x6D5D4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x18D7, symBinAddr: 0x12629, symSize: 0xE0 } - - { offsetInCU: 0x25F8, offset: 0x6D67E, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x19B7, symBinAddr: 0x12709, symSize: 0x1A } - - { offsetInCU: 0x2653, offset: 0x6D6D9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x19D1, symBinAddr: 0x12723, symSize: 0x10D } - - { offsetInCU: 0x2716, offset: 0x6D79C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1ADE, symBinAddr: 0x12830, symSize: 0x21 } - - { offsetInCU: 0x2769, offset: 0x6D7EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1AFF, symBinAddr: 0x12851, symSize: 0xAF } - - { offsetInCU: 0x284C, offset: 0x6D8D2, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1BAE, symBinAddr: 0x12900, symSize: 0x27 } - - { offsetInCU: 0x289F, offset: 0x6D925, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1BD5, symBinAddr: 0x12927, symSize: 0x111 } - - { offsetInCU: 0x29ED, offset: 0x6DA73, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1CE6, symBinAddr: 0x12A38, symSize: 0x37 } - - { offsetInCU: 0x2A5D, offset: 0x6DAE3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1D1D, symBinAddr: 0x12A6F, symSize: 0xF2 } - - { offsetInCU: 0x2B63, offset: 0x6DBE9, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1E0F, symBinAddr: 0x12B61, symSize: 0x37 } - - { offsetInCU: 0x2BD3, offset: 0x6DC59, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1E46, symBinAddr: 0x12B98, symSize: 0xB9 } - - { offsetInCU: 0x2C8E, offset: 0x6DD14, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1EFF, symBinAddr: 0x12C51, symSize: 0x37 } - - { offsetInCU: 0x2CFE, offset: 0x6DD84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1F36, symBinAddr: 0x12C88, symSize: 0xF3 } - - { offsetInCU: 0x2E15, offset: 0x6DE9B, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x2029, symBinAddr: 0x12D7B, symSize: 0x3B } - - { offsetInCU: 0x2E96, offset: 0x6DF1C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x2064, symBinAddr: 0x12DB6, symSize: 0x135 } - - { offsetInCU: 0x3067, offset: 0x6E0ED, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2199, symBinAddr: 0x12EEB, symSize: 0x3F } - - { offsetInCU: 0x30F9, offset: 0x6E17F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x21D8, symBinAddr: 0x12F2A, symSize: 0x3A } - - { offsetInCU: 0x315E, offset: 0x6E1E4, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2212, symBinAddr: 0x12F64, symSize: 0x3A } - - { offsetInCU: 0x31B9, offset: 0x6E23F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x224C, symBinAddr: 0x12F9E, symSize: 0xF2 } - - { offsetInCU: 0x32BF, offset: 0x6E345, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x233E, symBinAddr: 0x13090, symSize: 0x37 } - - { offsetInCU: 0x332F, offset: 0x6E3B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2375, symBinAddr: 0x130C7, symSize: 0xDE } - - { offsetInCU: 0x33D6, offset: 0x6E45C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2453, symBinAddr: 0x131A5, symSize: 0xDE } - - { offsetInCU: 0x347D, offset: 0x6E503, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x2531, symBinAddr: 0x13283, symSize: 0xF3 } - - { offsetInCU: 0x3552, offset: 0x6E5D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x2624, symBinAddr: 0x13376, symSize: 0x152 } - - { offsetInCU: 0x362A, offset: 0x6E6B0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2776, symBinAddr: 0x134C8, symSize: 0x14 } - - { offsetInCU: 0x367B, offset: 0x6E701, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x278A, symBinAddr: 0x134DC, symSize: 0x118 } - - { offsetInCU: 0x3735, offset: 0x6E7BB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x28A2, symBinAddr: 0x135F4, symSize: 0x118 } - - { offsetInCU: 0x37EF, offset: 0x6E875, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x29BA, symBinAddr: 0x1370C, symSize: 0xDE } - - { offsetInCU: 0x3896, offset: 0x6E91C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x2A98, symBinAddr: 0x137EA, symSize: 0x84 } - - { offsetInCU: 0x3933, offset: 0x6E9B9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x2B1C, symBinAddr: 0x1386E, symSize: 0x194 } - - { offsetInCU: 0x3B2A, offset: 0x6EBB0, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2CB0, symBinAddr: 0x13A02, symSize: 0x2B } - - { offsetInCU: 0x3B8C, offset: 0x6EC12, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2CDB, symBinAddr: 0x13A2D, symSize: 0x30 } - - { offsetInCU: 0x3BC1, offset: 0x6EC47, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.114', symObjAddr: 0x2D0B, symBinAddr: 0x13A5D, symSize: 0x3EC } - - { offsetInCU: 0x3F78, offset: 0x6EFFE, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x30F7, symBinAddr: 0x13E49, symSize: 0x2D } - - { offsetInCU: 0x3FE4, offset: 0x6F06A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x3124, symBinAddr: 0x13E76, symSize: 0x44 } - - { offsetInCU: 0x4025, offset: 0x6F0AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x3168, symBinAddr: 0x13EBA, symSize: 0x55E } - - { offsetInCU: 0x4427, offset: 0x6F4AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x36C6, symBinAddr: 0x14418, symSize: 0x3EA } - - { offsetInCU: 0x47EF, offset: 0x6F875, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3AB0, symBinAddr: 0x14802, symSize: 0x1E4 } - - { offsetInCU: 0x49BB, offset: 0x6FA41, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x3C94, symBinAddr: 0x149E6, symSize: 0x68 } - - { offsetInCU: 0x4A4E, offset: 0x6FAD4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3CFC, symBinAddr: 0x14A4E, symSize: 0x78 } - - { offsetInCU: 0x4AE1, offset: 0x6FB67, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x3D74, symBinAddr: 0x14AC6, symSize: 0xBF } - - { offsetInCU: 0x4C10, offset: 0x6FC96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3E33, symBinAddr: 0x14B85, symSize: 0xD5 } - - { offsetInCU: 0x4D2C, offset: 0x6FDB2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3F08, symBinAddr: 0x14C5A, symSize: 0x186 } - - { offsetInCU: 0x4E6F, offset: 0x6FEF5, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x408E, symBinAddr: 0x14DE0, symSize: 0x65 } - - { offsetInCU: 0x4EBD, offset: 0x6FF43, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x40F3, symBinAddr: 0x14E45, symSize: 0x62 } - - { offsetInCU: 0x4F2C, offset: 0x6FFB2, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x4155, symBinAddr: 0x14EA7, symSize: 0x1C } - - { offsetInCU: 0x4FA0, offset: 0x70026, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.164', symObjAddr: 0x419B, symBinAddr: 0x14EC3, symSize: 0x1C } - - { offsetInCU: 0x4FFD, offset: 0x70083, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x41B7, symBinAddr: 0x14EDF, symSize: 0x192 } - - { offsetInCU: 0x50F6, offset: 0x7017C, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x4349, symBinAddr: 0x15071, symSize: 0x65 } - - { offsetInCU: 0x5144, offset: 0x701CA, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x43AE, symBinAddr: 0x150D6, symSize: 0x65 } - - { offsetInCU: 0x51A0, offset: 0x70226, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x4413, symBinAddr: 0x1513B, symSize: 0x1C } - - { offsetInCU: 0x51FD, offset: 0x70283, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x442F, symBinAddr: 0x15157, symSize: 0x1C } - - { offsetInCU: 0x525A, offset: 0x702E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x444B, symBinAddr: 0x15173, symSize: 0xED } - - { offsetInCU: 0x5354, offset: 0x703DA, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4538, symBinAddr: 0x15260, symSize: 0x217 } - - { offsetInCU: 0x55A8, offset: 0x7062E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x474F, symBinAddr: 0x15477, symSize: 0x53 } - - { offsetInCU: 0x564F, offset: 0x706D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x47A2, symBinAddr: 0x154CA, symSize: 0x28 } - - { offsetInCU: 0x56A0, offset: 0x70726, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x47CA, symBinAddr: 0x154F2, symSize: 0x28 } - - { offsetInCU: 0x56E2, offset: 0x70768, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x47F2, symBinAddr: 0x1551A, symSize: 0x28 } - - { offsetInCU: 0x5733, offset: 0x707B9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x481A, symBinAddr: 0x15542, symSize: 0x28 } - - { offsetInCU: 0x5775, offset: 0x707FB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x4842, symBinAddr: 0x1556A, symSize: 0x28 } - - { offsetInCU: 0x57B7, offset: 0x7083D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x486A, symBinAddr: 0x15592, symSize: 0x2B } - - { offsetInCU: 0x57F9, offset: 0x7087F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x4895, symBinAddr: 0x155BD, symSize: 0x28 } - - { offsetInCU: 0x583B, offset: 0x708C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x48BD, symBinAddr: 0x155E5, symSize: 0x2B } - - { offsetInCU: 0x587D, offset: 0x70903, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x48E8, symBinAddr: 0x15610, symSize: 0xB2 } - - { offsetInCU: 0x5934, offset: 0x709BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x499A, symBinAddr: 0x156C2, symSize: 0xBB } - - { offsetInCU: 0x59DC, offset: 0x70A62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4A55, symBinAddr: 0x1577D, symSize: 0x31 } - - { offsetInCU: 0x5A39, offset: 0x70ABF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x4A86, symBinAddr: 0x157AE, symSize: 0x1D5 } - - { offsetInCU: 0x5C87, offset: 0x70D0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4C5B, symBinAddr: 0x15983, symSize: 0xE5 } - - { offsetInCU: 0x5D69, offset: 0x70DEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4D40, symBinAddr: 0x15A68, symSize: 0xE5 } - - { offsetInCU: 0x5E4B, offset: 0x70ED1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x4E25, symBinAddr: 0x15B4D, symSize: 0x155 } - - { offsetInCU: 0x5F35, offset: 0x70FBB, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4F7A, symBinAddr: 0x15CA2, symSize: 0x6B } - - { offsetInCU: 0x5FB8, offset: 0x7103E, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4FE5, symBinAddr: 0x15D0D, symSize: 0x25 } - - { offsetInCU: 0x6002, offset: 0x71088, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x5021, symBinAddr: 0x15D32, symSize: 0x155 } - - { offsetInCU: 0x60EC, offset: 0x71172, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x5176, symBinAddr: 0x15E87, symSize: 0x6B } - - { offsetInCU: 0x616F, offset: 0x711F5, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x51E1, symBinAddr: 0x15EF2, symSize: 0x25 } - - { offsetInCU: 0x61B9, offset: 0x7123F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x5206, symBinAddr: 0x15F17, symSize: 0x126 } - - { offsetInCU: 0x628B, offset: 0x71311, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x532C, symBinAddr: 0x1603D, symSize: 0x56 } - - { offsetInCU: 0x62EA, offset: 0x71370, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x5382, symBinAddr: 0x16093, symSize: 0x25 } - - { offsetInCU: 0x6334, offset: 0x713BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x53A7, symBinAddr: 0x160B8, symSize: 0x155 } - - { offsetInCU: 0x641E, offset: 0x714A4, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x54FC, symBinAddr: 0x1620D, symSize: 0x3C } - - { offsetInCU: 0x647D, offset: 0x71503, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x5538, symBinAddr: 0x16249, symSize: 0x25 } - - { offsetInCU: 0x64C7, offset: 0x7154D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x555D, symBinAddr: 0x1626E, symSize: 0x155 } - - { offsetInCU: 0x65B1, offset: 0x71637, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x56B2, symBinAddr: 0x163C3, symSize: 0x3C } - - { offsetInCU: 0x6610, offset: 0x71696, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x56EE, symBinAddr: 0x163FF, symSize: 0x25 } - - { offsetInCU: 0x665A, offset: 0x716E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x5713, symBinAddr: 0x16424, symSize: 0x126 } - - { offsetInCU: 0x672C, offset: 0x717B2, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x5839, symBinAddr: 0x1654A, symSize: 0x38 } - - { offsetInCU: 0x678B, offset: 0x71811, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x5871, symBinAddr: 0x16582, symSize: 0x25 } - - { offsetInCU: 0x67D5, offset: 0x7185B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5896, symBinAddr: 0x165A7, symSize: 0x155 } - - { offsetInCU: 0x68BF, offset: 0x71945, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x59EB, symBinAddr: 0x166FC, symSize: 0x3C } - - { offsetInCU: 0x691E, offset: 0x719A4, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x5A27, symBinAddr: 0x16738, symSize: 0x25 } - - { offsetInCU: 0x6968, offset: 0x719EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x5A4C, symBinAddr: 0x1675D, symSize: 0x155 } - - { offsetInCU: 0x6A52, offset: 0x71AD8, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5BA1, symBinAddr: 0x168B2, symSize: 0x3C } - - { offsetInCU: 0x6AB1, offset: 0x71B37, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x5BDD, symBinAddr: 0x168EE, symSize: 0x25 } - - { offsetInCU: 0x6AFB, offset: 0x71B81, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5C02, symBinAddr: 0x16913, symSize: 0x126 } - - { offsetInCU: 0x6BCD, offset: 0x71C53, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x5D28, symBinAddr: 0x16A39, symSize: 0x38 } - - { offsetInCU: 0x6C2C, offset: 0x71CB2, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x5D60, symBinAddr: 0x16A71, symSize: 0x25 } - - { offsetInCU: 0x6C76, offset: 0x71CFC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5D85, symBinAddr: 0x16A96, symSize: 0x211 } - - { offsetInCU: 0x6EB3, offset: 0x71F39, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x5F96, symBinAddr: 0x16CA7, symSize: 0x155 } - - { offsetInCU: 0x6F9D, offset: 0x72023, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x60EB, symBinAddr: 0x16DFC, symSize: 0x3C } - - { offsetInCU: 0x6FFC, offset: 0x72082, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x6127, symBinAddr: 0x16E38, symSize: 0x25 } - - { offsetInCU: 0x7046, offset: 0x720CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x614C, symBinAddr: 0x16E5D, symSize: 0x155 } - - { offsetInCU: 0x7130, offset: 0x721B6, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x62A1, symBinAddr: 0x16FB2, symSize: 0x3C } - - { offsetInCU: 0x718F, offset: 0x72215, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x62DD, symBinAddr: 0x16FEE, symSize: 0x25 } - - { offsetInCU: 0x71D9, offset: 0x7225F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x6302, symBinAddr: 0x17013, symSize: 0x126 } - - { offsetInCU: 0x72AB, offset: 0x72331, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x6428, symBinAddr: 0x17139, symSize: 0x38 } - - { offsetInCU: 0x730A, offset: 0x72390, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x6460, symBinAddr: 0x17171, symSize: 0x25 } - - { offsetInCU: 0x7354, offset: 0x723DA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x6485, symBinAddr: 0x17196, symSize: 0xDD } - - { offsetInCU: 0x73FE, offset: 0x72484, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x6562, symBinAddr: 0x17273, symSize: 0x1D } - - { offsetInCU: 0x7459, offset: 0x724DF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x657F, symBinAddr: 0x17290, symSize: 0xDD } - - { offsetInCU: 0x7503, offset: 0x72589, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x665C, symBinAddr: 0x1736D, symSize: 0x1C } - - { offsetInCU: 0x755E, offset: 0x725E4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6678, symBinAddr: 0x17389, symSize: 0xDD } - - { offsetInCU: 0x7608, offset: 0x7268E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6755, symBinAddr: 0x17466, symSize: 0x3B } - - { offsetInCU: 0x7667, offset: 0x726ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x6790, symBinAddr: 0x174A1, symSize: 0xDD } - - { offsetInCU: 0x7711, offset: 0x72797, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x686D, symBinAddr: 0x1757E, symSize: 0x3B } - - { offsetInCU: 0x7770, offset: 0x727F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x68A8, symBinAddr: 0x175B9, symSize: 0x8A } - - { offsetInCU: 0x77FC, offset: 0x72882, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6932, symBinAddr: 0x17643, symSize: 0x17 } - - { offsetInCU: 0x787D, offset: 0x72903, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6949, symBinAddr: 0x1765A, symSize: 0x1A0 } - - { offsetInCU: 0x79BE, offset: 0x72A44, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x6AE9, symBinAddr: 0x177FA, symSize: 0x2E1 } - - { offsetInCU: 0x7CA4, offset: 0x72D2A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x6E61, symBinAddr: 0x17ADB, symSize: 0x19C } - - { offsetInCU: 0x7DD4, offset: 0x72E5A, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6FFD, symBinAddr: 0x17C77, symSize: 0x315 } - - { offsetInCU: 0x808E, offset: 0x73114, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x7312, symBinAddr: 0x17F8C, symSize: 0x77 } - - { offsetInCU: 0x811A, offset: 0x731A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x7389, symBinAddr: 0x18003, symSize: 0x1A0 } - - { offsetInCU: 0x825B, offset: 0x732E1, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x7529, symBinAddr: 0x181A3, symSize: 0x1E0 } - - { offsetInCU: 0x83D6, offset: 0x7345C, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x7709, symBinAddr: 0x18383, symSize: 0xA6 } - - { offsetInCU: 0x84FA, offset: 0x73580, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x77AF, symBinAddr: 0x18429, symSize: 0x19C } - - { offsetInCU: 0x862A, offset: 0x736B0, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x794B, symBinAddr: 0x185C5, symSize: 0x1D3 } - - { offsetInCU: 0x87D3, offset: 0x73859, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x7B1E, symBinAddr: 0x18798, symSize: 0x230 } - - { offsetInCU: 0x8A2B, offset: 0x73AB1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7D4E, symBinAddr: 0x189C8, symSize: 0xD1 } - - { offsetInCU: 0x8B43, offset: 0x73BC9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x7E1F, symBinAddr: 0x18A99, symSize: 0xD1 } - - { offsetInCU: 0x8C3A, offset: 0x73CC0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x7EF0, symBinAddr: 0x18B6A, symSize: 0x72 } - - { offsetInCU: 0x8CAC, offset: 0x73D32, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7F62, symBinAddr: 0x18BDC, symSize: 0x17 } - - { offsetInCU: 0x8D2D, offset: 0x73DB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7F79, symBinAddr: 0x18BF3, symSize: 0x20 } - - { offsetInCU: 0x8DC9, offset: 0x73E4F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7F99, symBinAddr: 0x18C13, symSize: 0x17 } - - { offsetInCU: 0x8E4A, offset: 0x73ED0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7FB0, symBinAddr: 0x18C2A, symSize: 0x20 } - - { offsetInCU: 0x8EE6, offset: 0x73F6C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7FD0, symBinAddr: 0x18C4A, symSize: 0x1DE } - - { offsetInCU: 0x908D, offset: 0x74113, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x81AE, symBinAddr: 0x18E28, symSize: 0x34E } - - { offsetInCU: 0x941A, offset: 0x744A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x85A1, symBinAddr: 0x19176, symSize: 0x19C } - - { offsetInCU: 0x954A, offset: 0x745D0, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x873D, symBinAddr: 0x19312, symSize: 0x1C1 } - - { offsetInCU: 0x971A, offset: 0x747A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x88FE, symBinAddr: 0x194D3, symSize: 0x19C } - - { offsetInCU: 0x984A, offset: 0x748D0, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x8A9A, symBinAddr: 0x1966F, symSize: 0x1B9 } - - { offsetInCU: 0x9A13, offset: 0x74A99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x8C53, symBinAddr: 0x19828, symSize: 0x164 } - - { offsetInCU: 0x9B01, offset: 0x74B87, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x8DB7, symBinAddr: 0x1998C, symSize: 0x16D } - - { offsetInCU: 0x9C60, offset: 0x74CE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x8F24, symBinAddr: 0x19AF9, symSize: 0x164 } - - { offsetInCU: 0x9D4E, offset: 0x74DD4, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x9088, symBinAddr: 0x19C5D, symSize: 0x131 } - - { offsetInCU: 0x9E60, offset: 0x74EE6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x91B9, symBinAddr: 0x19D8E, symSize: 0x1A } - - { offsetInCU: 0x9ED5, offset: 0x74F5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x91D3, symBinAddr: 0x19DA8, symSize: 0xE7 } - - { offsetInCU: 0x9FEF, offset: 0x75075, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x92BA, symBinAddr: 0x19E8F, symSize: 0x55 } - - { offsetInCU: 0xA05A, offset: 0x750E0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x930F, symBinAddr: 0x19EE4, symSize: 0x171 } - - { offsetInCU: 0xA20D, offset: 0x75293, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x9480, symBinAddr: 0x1A055, symSize: 0x99 } - - { offsetInCU: 0xA2DF, offset: 0x75365, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x9519, symBinAddr: 0x1A0EE, symSize: 0x55 } - - { offsetInCU: 0xA34A, offset: 0x753D0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x956E, symBinAddr: 0x1A143, symSize: 0x12F } - - { offsetInCU: 0xA4C5, offset: 0x7554B, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x969D, symBinAddr: 0x1A272, symSize: 0x55 } - - { offsetInCU: 0xA530, offset: 0x755B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x96F2, symBinAddr: 0x1A2C7, symSize: 0x18 } - - { offsetInCU: 0xA5AB, offset: 0x75631, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x970A, symBinAddr: 0x1A2DF, symSize: 0x12D } - - { offsetInCU: 0xA775, offset: 0x757FB, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9837, symBinAddr: 0x1A40C, symSize: 0x46 } - - { offsetInCU: 0xA7F6, offset: 0x7587C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x987D, symBinAddr: 0x1A452, symSize: 0x1F0 } - - { offsetInCU: 0xA994, offset: 0x75A1A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x9A6D, symBinAddr: 0x1A642, symSize: 0x384 } - - { offsetInCU: 0xAC59, offset: 0x75CDF, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x9DF1, symBinAddr: 0x1A9C6, symSize: 0xB6 } - - { offsetInCU: 0xAD0D, offset: 0x75D93, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9EA7, symBinAddr: 0x1AA7C, symSize: 0x87 } - - { offsetInCU: 0xADA1, offset: 0x75E27, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.334', symObjAddr: 0x9F2E, symBinAddr: 0x1AB03, symSize: 0x47 } - - { offsetInCU: 0xAE00, offset: 0x75E86, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x9F75, symBinAddr: 0x1AB4A, symSize: 0x20D } - - { offsetInCU: 0xB06E, offset: 0x760F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0xA182, symBinAddr: 0x1AD57, symSize: 0x50 } - - { offsetInCU: 0xB0C8, offset: 0x7614E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0xA1D2, symBinAddr: 0x1ADA7, symSize: 0x75 } - - { offsetInCU: 0xB15F, offset: 0x761E5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0xA247, symBinAddr: 0x1AE1C, symSize: 0xBA } - - { offsetInCU: 0xB26D, offset: 0x762F3, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0xA301, symBinAddr: 0x1AED6, symSize: 0x2F } - - { offsetInCU: 0xB2BB, offset: 0x76341, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0xA330, symBinAddr: 0x1AF05, symSize: 0x161 } - - { offsetInCU: 0xB398, offset: 0x7641E, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0xA491, symBinAddr: 0x1B066, symSize: 0xB6 } - - { offsetInCU: 0xB44A, offset: 0x764D0, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0xA547, symBinAddr: 0x1B11C, symSize: 0x2F } - - { offsetInCU: 0xB498, offset: 0x7651E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0xA576, symBinAddr: 0x1B14B, symSize: 0x161 } - - { offsetInCU: 0xB575, offset: 0x765FB, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0xA6D7, symBinAddr: 0x1B2AC, symSize: 0xB6 } - - { offsetInCU: 0xB627, offset: 0x766AD, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0xA78D, symBinAddr: 0x1B362, symSize: 0x2F } - - { offsetInCU: 0xB675, offset: 0x766FB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0xA7BC, symBinAddr: 0x1B391, symSize: 0x7F } - - { offsetInCU: 0xB706, offset: 0x7678C, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0xA83B, symBinAddr: 0x1B410, symSize: 0x5C } - - { offsetInCU: 0xB760, offset: 0x767E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0xA897, symBinAddr: 0x1B46C, symSize: 0x18 } - - { offsetInCU: 0xB7DB, offset: 0x76861, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0xA8AF, symBinAddr: 0x1B484, symSize: 0x12D } - - { offsetInCU: 0xB9A5, offset: 0x76A2B, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0xA9DC, symBinAddr: 0x1B5B1, symSize: 0x46 } - - { offsetInCU: 0xBA26, offset: 0x76AAC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0xAA22, symBinAddr: 0x1B5F7, symSize: 0x71A } - - { offsetInCU: 0xBED9, offset: 0x76F5F, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xB13C, symBinAddr: 0x1BD11, symSize: 0x102 } - - { offsetInCU: 0xBFC0, offset: 0x77046, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xB23E, symBinAddr: 0x1BE13, symSize: 0x92 } - - { offsetInCU: 0xC05E, offset: 0x770E4, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.361', symObjAddr: 0xB2D0, symBinAddr: 0x1BEA5, symSize: 0x79 } - - { offsetInCU: 0xC0F8, offset: 0x7717E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xB349, symBinAddr: 0x1BF1E, symSize: 0x4C } - - { offsetInCU: 0xC160, offset: 0x771E6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xB395, symBinAddr: 0x1BF6A, symSize: 0xA9 } - - { offsetInCU: 0xC252, offset: 0x772D8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xB43E, symBinAddr: 0x1C013, symSize: 0x7F } - - { offsetInCU: 0xC2E3, offset: 0x77369, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xB4BD, symBinAddr: 0x1C092, symSize: 0x31 } - - { offsetInCU: 0xC338, offset: 0x773BE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xB4EE, symBinAddr: 0x1C0C3, symSize: 0x7F } - - { offsetInCU: 0xC3C9, offset: 0x7744F, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xB56D, symBinAddr: 0x1C142, symSize: 0x63 } - - { offsetInCU: 0xC42A, offset: 0x774B0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xB5D0, symBinAddr: 0x1C1A5, symSize: 0x6 } - - { offsetInCU: 0xC4A1, offset: 0x77527, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xB62E, symBinAddr: 0x1C203, symSize: 0x63 } - - { offsetInCU: 0xC50E, offset: 0x77594, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xB691, symBinAddr: 0x1C266, symSize: 0x114 } - - { offsetInCU: 0xC60E, offset: 0x77694, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xB7A5, symBinAddr: 0x1C37A, symSize: 0xA0 } - - { offsetInCU: 0xC72D, offset: 0x777B3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xB845, symBinAddr: 0x1C41A, symSize: 0xA0 } - - { offsetInCU: 0xC840, offset: 0x778C6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xB8E5, symBinAddr: 0x1C4BA, symSize: 0x238 } - - { offsetInCU: 0xCA84, offset: 0x77B0A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xBB1D, symBinAddr: 0x1C6F2, symSize: 0x1C2 } - - { offsetInCU: 0xCCC0, offset: 0x77D46, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xBCDF, symBinAddr: 0x1C8B4, symSize: 0x10E } - - { offsetInCU: 0xCE15, offset: 0x77E9B, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xBDED, symBinAddr: 0x1C9C2, symSize: 0x10E } - - { offsetInCU: 0xCF6A, offset: 0x77FF0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xBEFB, symBinAddr: 0x1CAD0, symSize: 0x72 } - - { offsetInCU: 0xD004, offset: 0x7808A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xBF6D, symBinAddr: 0x1CB42, symSize: 0xBB } - - { offsetInCU: 0xD137, offset: 0x781BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xC028, symBinAddr: 0x1CBFD, symSize: 0x4E } - - { offsetInCU: 0xD191, offset: 0x78217, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xC076, symBinAddr: 0x1CC4B, symSize: 0xF8 } - - { offsetInCU: 0xD2B9, offset: 0x7833F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xC16E, symBinAddr: 0x1CD43, symSize: 0x7F } - - { offsetInCU: 0xD357, offset: 0x783DD, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xC1ED, symBinAddr: 0x1CDC2, symSize: 0x4A } - - { offsetInCU: 0xD3B1, offset: 0x78437, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xC237, symBinAddr: 0x1CE0C, symSize: 0x1C } - - { offsetInCU: 0xD42C, offset: 0x784B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xC253, symBinAddr: 0x1CE28, symSize: 0x18 } - - { offsetInCU: 0xD494, offset: 0x7851A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xC26B, symBinAddr: 0x1CE40, symSize: 0x38 } - - { offsetInCU: 0xD511, offset: 0x78597, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xC2A3, symBinAddr: 0x1CE78, symSize: 0x33 } - - { offsetInCU: 0xD557, offset: 0x785DD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xC2D6, symBinAddr: 0x1CEAB, symSize: 0x2B } - - { offsetInCU: 0xD59D, offset: 0x78623, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xC301, symBinAddr: 0x1CED6, symSize: 0x2B } - - { offsetInCU: 0xD5E3, offset: 0x78669, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xC32C, symBinAddr: 0x1CF01, symSize: 0x57 } - - { offsetInCU: 0xD655, offset: 0x786DB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xC383, symBinAddr: 0x1CF58, symSize: 0x57 } - - { offsetInCU: 0xD6C7, offset: 0x7874D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xC3DA, symBinAddr: 0x1CFAF, symSize: 0x8 } - - { offsetInCU: 0xD6FB, offset: 0x78781, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xC3E2, symBinAddr: 0x1CFB7, symSize: 0x7D } - - { offsetInCU: 0xD77E, offset: 0x78804, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xC45F, symBinAddr: 0x1D034, symSize: 0x7D } - - { offsetInCU: 0xD802, offset: 0x78888, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xC4DC, symBinAddr: 0x1D0B1, symSize: 0x11 } - - { offsetInCU: 0xD845, offset: 0x788CB, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xC4ED, symBinAddr: 0x1D0C2, symSize: 0x11 } - - { offsetInCU: 0xD888, offset: 0x7890E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xC4FE, symBinAddr: 0x1D0D3, symSize: 0x40 } - - { offsetInCU: 0xD91E, offset: 0x789A4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xC53E, symBinAddr: 0x1D113, symSize: 0x31 } - - { offsetInCU: 0xD9A8, offset: 0x78A2E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xC56F, symBinAddr: 0x1D144, symSize: 0x30 } - - { offsetInCU: 0xDA32, offset: 0x78AB8, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xC59F, symBinAddr: 0x1D174, symSize: 0x34 } - - { offsetInCU: 0xDABC, offset: 0x78B42, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xC5D3, symBinAddr: 0x1D1A8, symSize: 0x34 } - - { offsetInCU: 0xDB46, offset: 0x78BCC, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xC607, symBinAddr: 0x1D1DC, symSize: 0x18 } - - { offsetInCU: 0xDBDE, offset: 0x78C64, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xC61F, symBinAddr: 0x1D1F4, symSize: 0x19C } - - { offsetInCU: 0xDD87, offset: 0x78E0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xC7BB, symBinAddr: 0x1D390, symSize: 0x118 } - - { offsetInCU: 0xDDBB, offset: 0x78E41, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xC8D3, symBinAddr: 0x1D4A8, symSize: 0x49 } - - { offsetInCU: 0xDE27, offset: 0x78EAD, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xC91C, symBinAddr: 0x1D4F1, symSize: 0x49 } + - { offsetInCU: 0x34, offset: 0x556B2, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionString, symObjAddr: 0x0, symBinAddr: 0x1E2E0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x556E7, size: 0x8, addend: 0x0, symName: _MqttCocoaAsyncSocketVersionNumber, symObjAddr: 0x38, symBinAddr: 0x1E318, symSize: 0x0 } + - { offsetInCU: 0x41, offset: 0x5573E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketException, symObjAddr: 0x121B8, symBinAddr: 0x24508, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x5575E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketErrorDomain, symObjAddr: 0x121C0, symBinAddr: 0x24510, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x55774, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketQueueName, symObjAddr: 0x121C8, symBinAddr: 0x24518, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x5578A, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketThreadName, symObjAddr: 0x121D0, symBinAddr: 0x24520, symSize: 0x0 } + - { offsetInCU: 0xA3, offset: 0x557A0, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketManuallyEvaluateTrust, symObjAddr: 0x121D8, symBinAddr: 0x24528, symSize: 0x0 } + - { offsetInCU: 0xB9, offset: 0x557B6, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketUseCFStreamForTLS, symObjAddr: 0x121E0, symBinAddr: 0x24530, symSize: 0x0 } + - { offsetInCU: 0xCF, offset: 0x557CC, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLPeerID, symObjAddr: 0x121E8, symBinAddr: 0x24538, symSize: 0x0 } + - { offsetInCU: 0xE5, offset: 0x557E2, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMin, symObjAddr: 0x121F0, symBinAddr: 0x24540, symSize: 0x0 } + - { offsetInCU: 0xFB, offset: 0x557F8, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLProtocolVersionMax, symObjAddr: 0x121F8, symBinAddr: 0x24548, symSize: 0x0 } + - { offsetInCU: 0x111, offset: 0x5580E, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionFalseStart, symObjAddr: 0x12200, symBinAddr: 0x24550, symSize: 0x0 } + - { offsetInCU: 0x127, offset: 0x55824, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLSessionOptionSendOneByteRecord, symObjAddr: 0x12208, symBinAddr: 0x24558, symSize: 0x0 } + - { offsetInCU: 0x13D, offset: 0x5583A, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLCipherSuites, symObjAddr: 0x12210, symBinAddr: 0x24560, symSize: 0x0 } + - { offsetInCU: 0x153, offset: 0x55850, size: 0x8, addend: 0x0, symName: _MGCDAsyncSocketSSLALPN, symObjAddr: 0x12218, symBinAddr: 0x24568, symSize: 0x0 } + - { offsetInCU: 0x16B, offset: 0x55868, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteData]', symObjAddr: 0xBCE8, symBinAddr: 0xCA08, symSize: 0x616 } + - { offsetInCU: 0x69C, offset: 0x55D99, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket startCFStreamThreadIfNeeded]', symObjAddr: 0xE6AD, symBinAddr: 0xF3CD, symSize: 0x6F } + - { offsetInCU: 0x6C4, offset: 0x55DC1, size: 0x8, addend: 0x0, symName: _startCFStreamThreadIfNeeded.predicate, symObjAddr: 0x62A48, symBinAddr: 0x2AB00, symSize: 0x0 } + - { offsetInCU: 0x72C, offset: 0x55E29, size: 0x8, addend: 0x0, symName: _cfstreamThread, symObjAddr: 0x62A60, symBinAddr: 0x2AB18, symSize: 0x0 } + - { offsetInCU: 0x747, offset: 0x55E44, size: 0x8, addend: 0x0, symName: _cfstreamThreadRetainCount, symObjAddr: 0x62A50, symBinAddr: 0x2AB08, symSize: 0x0 } + - { offsetInCU: 0x764, offset: 0x55E61, size: 0x8, addend: 0x0, symName: _cfstreamThreadSetupQueue, symObjAddr: 0x62A58, symBinAddr: 0x2AB10, symSize: 0x0 } + - { offsetInCU: 0xDA0, offset: 0x5649D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer init]', symObjAddr: 0x0, symBinAddr: 0xD20, symSize: 0xE } + - { offsetInCU: 0xDEC, offset: 0x564E9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer initWithCapacity:]', symObjAddr: 0xE, symBinAddr: 0xD2E, symSize: 0x5B } + - { offsetInCU: 0xE33, offset: 0x56530, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer dealloc]', symObjAddr: 0x69, symBinAddr: 0xD89, symSize: 0x3F } + - { offsetInCU: 0xE66, offset: 0x56563, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer ensureCapacityForWrite:]', symObjAddr: 0xA8, symBinAddr: 0xDC8, symSize: 0x5F } + - { offsetInCU: 0xF33, offset: 0x56630, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableBytes]', symObjAddr: 0x107, symBinAddr: 0xE27, symSize: 0xE } + - { offsetInCU: 0xF69, offset: 0x56666, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer readBuffer]', symObjAddr: 0x115, symBinAddr: 0xE35, symSize: 0xA } + - { offsetInCU: 0xF9F, offset: 0x5669C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getReadBuffer:availableBytes:]', symObjAddr: 0x11F, symBinAddr: 0xE3F, symSize: 0x31 } + - { offsetInCU: 0x1001, offset: 0x566FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didRead:]', symObjAddr: 0x150, symBinAddr: 0xE70, symSize: 0x20 } + - { offsetInCU: 0x1044, offset: 0x56741, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer availableSpace]', symObjAddr: 0x170, symBinAddr: 0xE90, symSize: 0x12 } + - { offsetInCU: 0x107A, offset: 0x56777, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer writeBuffer]', symObjAddr: 0x182, symBinAddr: 0xEA2, symSize: 0xA } + - { offsetInCU: 0x10B0, offset: 0x567AD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer getWriteBuffer:availableSpace:]', symObjAddr: 0x18C, symBinAddr: 0xEAC, symSize: 0x31 } + - { offsetInCU: 0x1112, offset: 0x5680F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer didWrite:]', symObjAddr: 0x1BD, symBinAddr: 0xEDD, symSize: 0xA } + - { offsetInCU: 0x1153, offset: 0x56850, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocketPreBuffer reset]', symObjAddr: 0x1C7, symBinAddr: 0xEE7, symSize: 0x12 } + - { offsetInCU: 0x1185, offset: 0x56882, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket init]', symObjAddr: 0x1D9, symBinAddr: 0xEF9, symSize: 0xE } + - { offsetInCU: 0x11D2, offset: 0x568CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket initWithData:startOffset:maxLength:timeout:readLength:terminator:tag:]', symObjAddr: 0x1E7, symBinAddr: 0xF07, symSize: 0x163 } + - { offsetInCU: 0x131C, offset: 0x56A19, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket ensureCapacityForAdditionalDataOfLength:]', symObjAddr: 0x34A, symBinAddr: 0x106A, symSize: 0x4E } + - { offsetInCU: 0x13D0, offset: 0x56ACD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket optimalReadLengthWithDefault:shouldPreBuffer:]', symObjAddr: 0x398, symBinAddr: 0x10B8, symSize: 0x77 } + - { offsetInCU: 0x14B4, offset: 0x56BB1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForNonTermWithHint:]', symObjAddr: 0x40F, symBinAddr: 0x112F, symSize: 0x28 } + - { offsetInCU: 0x1517, offset: 0x56C14, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithHint:shouldPreBuffer:]', symObjAddr: 0x437, symBinAddr: 0x1157, symSize: 0x5D } + - { offsetInCU: 0x15EA, offset: 0x56CE7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket readLengthForTermWithPreBuffer:found:]', symObjAddr: 0x494, symBinAddr: 0x11B4, symSize: 0x27F } + - { offsetInCU: 0x1805, offset: 0x56F02, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket searchForTermAfterPreBuffering:]', symObjAddr: 0x713, symBinAddr: 0x1433, symSize: 0xC0 } + - { offsetInCU: 0x18E3, offset: 0x56FE0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncReadPacket .cxx_destruct]', symObjAddr: 0x7D3, symBinAddr: 0x14F3, symSize: 0x28 } + - { offsetInCU: 0x1917, offset: 0x57014, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket init]', symObjAddr: 0x7FB, symBinAddr: 0x151B, symSize: 0xE } + - { offsetInCU: 0x1964, offset: 0x57061, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket initWithData:timeout:tag:]', symObjAddr: 0x809, symBinAddr: 0x1529, symSize: 0x91 } + - { offsetInCU: 0x19F8, offset: 0x570F5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncWritePacket .cxx_destruct]', symObjAddr: 0x89A, symBinAddr: 0x15BA, symSize: 0x10 } + - { offsetInCU: 0x1A2C, offset: 0x57129, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket init]', symObjAddr: 0x8AA, symBinAddr: 0x15CA, symSize: 0xE } + - { offsetInCU: 0x1A79, offset: 0x57176, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket initWithTLSSettings:]', symObjAddr: 0x8B8, symBinAddr: 0x15D8, symSize: 0x73 } + - { offsetInCU: 0x1B0B, offset: 0x57208, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSpecialPacket .cxx_destruct]', symObjAddr: 0x92B, symBinAddr: 0x164B, symSize: 0x10 } + - { offsetInCU: 0x1B3F, offset: 0x5723C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket init]', symObjAddr: 0x93B, symBinAddr: 0x165B, symSize: 0x19 } + - { offsetInCU: 0x1B9B, offset: 0x57298, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithSocketQueue:]', symObjAddr: 0x954, symBinAddr: 0x1674, symSize: 0x19 } + - { offsetInCU: 0x1C0D, offset: 0x5730A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x96D, symBinAddr: 0x168D, symSize: 0x15 } + - { offsetInCU: 0x1C8B, offset: 0x57388, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x982, symBinAddr: 0x16A2, symSize: 0x20F } + - { offsetInCU: 0x1EC6, offset: 0x575C3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket dealloc]', symObjAddr: 0xB91, symBinAddr: 0x18B1, symSize: 0xC7 } + - { offsetInCU: 0x1F7E, offset: 0x5767B, size: 0x8, addend: 0x0, symName: '___26-[MGCDAsyncSocket dealloc]_block_invoke', symObjAddr: 0xC58, symBinAddr: 0x1978, symSize: 0x18 } + - { offsetInCU: 0x1FD3, offset: 0x576D0, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s, symObjAddr: 0xC70, symBinAddr: 0x1990, symSize: 0xF } + - { offsetInCU: 0x2006, offset: 0x57703, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s, symObjAddr: 0xC7F, symBinAddr: 0x199F, symSize: 0xF } + - { offsetInCU: 0x2031, offset: 0x5772E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:socketQueue:error:]', symObjAddr: 0xC8E, symBinAddr: 0x19AE, symSize: 0x27 } + - { offsetInCU: 0x20CD, offset: 0x577CA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:error:]', symObjAddr: 0xCB5, symBinAddr: 0x19D5, symSize: 0x22 } + - { offsetInCU: 0x217C, offset: 0x57879, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]', symObjAddr: 0xCD7, symBinAddr: 0x19F7, symSize: 0x20D } + - { offsetInCU: 0x235D, offset: 0x57A5A, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0xEE4, symBinAddr: 0x1C04, symSize: 0x16 } + - { offsetInCU: 0x2382, offset: 0x57A7F, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0xEFA, symBinAddr: 0x1C1A, symSize: 0xF } + - { offsetInCU: 0x23AD, offset: 0x57AAA, size: 0x8, addend: 0x0, symName: '___88+[MGCDAsyncSocket socketFromConnectedSocketFD:delegate:delegateQueue:socketQueue:error:]_block_invoke', symObjAddr: 0xF09, symBinAddr: 0x1C29, symSize: 0x227 } + - { offsetInCU: 0x25A9, offset: 0x57CA6, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48r, symObjAddr: 0x1130, symBinAddr: 0x1E50, symSize: 0x42 } + - { offsetInCU: 0x25DE, offset: 0x57CDB, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48r, symObjAddr: 0x1172, symBinAddr: 0x1E92, symSize: 0x35 } + - { offsetInCU: 0x2609, offset: 0x57D06, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegate]', symObjAddr: 0x11A7, symBinAddr: 0x1EC7, symSize: 0xDE } + - { offsetInCU: 0x26A2, offset: 0x57D9F, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket delegate]_block_invoke', symObjAddr: 0x1285, symBinAddr: 0x1FA5, symSize: 0x32 } + - { offsetInCU: 0x2701, offset: 0x57DFE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r, symObjAddr: 0x12B7, symBinAddr: 0x1FD7, symSize: 0x30 } + - { offsetInCU: 0x2736, offset: 0x57E33, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r, symObjAddr: 0x12E7, symBinAddr: 0x2007, symSize: 0x27 } + - { offsetInCU: 0x2761, offset: 0x57E5E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:synchronously:]', symObjAddr: 0x130E, symBinAddr: 0x202E, symSize: 0xC9 } + - { offsetInCU: 0x286E, offset: 0x57F6B, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x13D7, symBinAddr: 0x20F7, symSize: 0x19 } + - { offsetInCU: 0x28C1, offset: 0x57FBE, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s, symObjAddr: 0x13F0, symBinAddr: 0x2110, symSize: 0x25 } + - { offsetInCU: 0x2902, offset: 0x57FFF, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s, symObjAddr: 0x1415, symBinAddr: 0x2135, symSize: 0x25 } + - { offsetInCU: 0x2939, offset: 0x58036, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:]', symObjAddr: 0x143A, symBinAddr: 0x215A, symSize: 0x14 } + - { offsetInCU: 0x299D, offset: 0x5809A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:]', symObjAddr: 0x144E, symBinAddr: 0x216E, symSize: 0x17 } + - { offsetInCU: 0x2A01, offset: 0x580FE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket delegateQueue]', symObjAddr: 0x1465, symBinAddr: 0x2185, symSize: 0xDC } + - { offsetInCU: 0x2AA6, offset: 0x581A3, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket delegateQueue]_block_invoke', symObjAddr: 0x1541, symBinAddr: 0x2261, symSize: 0x1E } + - { offsetInCU: 0x2AF9, offset: 0x581F6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:synchronously:]', symObjAddr: 0x155F, symBinAddr: 0x227F, symSize: 0xC9 } + - { offsetInCU: 0x2BF3, offset: 0x582F0, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1628, symBinAddr: 0x2348, symSize: 0x19 } + - { offsetInCU: 0x2C46, offset: 0x58343, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegateQueue:]', symObjAddr: 0x1641, symBinAddr: 0x2361, symSize: 0x14 } + - { offsetInCU: 0x2CAA, offset: 0x583A7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x1655, symBinAddr: 0x2375, symSize: 0x17 } + - { offsetInCU: 0x2D0E, offset: 0x5840B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getDelegate:delegateQueue:]', symObjAddr: 0x166C, symBinAddr: 0x238C, symSize: 0x161 } + - { offsetInCU: 0x2DDC, offset: 0x584D9, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0x17CD, symBinAddr: 0x24ED, symSize: 0x4B } + - { offsetInCU: 0x2E4C, offset: 0x58549, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0x1818, symBinAddr: 0x2538, symSize: 0xFF } + - { offsetInCU: 0x2FA7, offset: 0x586A4, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0x1917, symBinAddr: 0x2637, symSize: 0x31 } + - { offsetInCU: 0x300B, offset: 0x58708, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s, symObjAddr: 0x1948, symBinAddr: 0x2668, symSize: 0x2C } + - { offsetInCU: 0x3058, offset: 0x58755, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s, symObjAddr: 0x1974, symBinAddr: 0x2694, symSize: 0x2C } + - { offsetInCU: 0x309B, offset: 0x58798, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setDelegate:delegateQueue:]', symObjAddr: 0x19A0, symBinAddr: 0x26C0, symSize: 0x15 } + - { offsetInCU: 0x3116, offset: 0x58813, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0x19B5, symBinAddr: 0x26D5, symSize: 0x18 } + - { offsetInCU: 0x3191, offset: 0x5888E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4Enabled]', symObjAddr: 0x19CD, symBinAddr: 0x26ED, symSize: 0xA6 } + - { offsetInCU: 0x3212, offset: 0x5890F, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv4Enabled]_block_invoke', symObjAddr: 0x1A73, symBinAddr: 0x2793, symSize: 0x1C } + - { offsetInCU: 0x326D, offset: 0x5896A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4Enabled:]', symObjAddr: 0x1A8F, symBinAddr: 0x27AF, symSize: 0x82 } + - { offsetInCU: 0x330F, offset: 0x58A0C, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0x1B11, symBinAddr: 0x2831, symSize: 0x1E } + - { offsetInCU: 0x3364, offset: 0x58A61, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6Enabled]', symObjAddr: 0x1B2F, symBinAddr: 0x284F, symSize: 0xA6 } + - { offsetInCU: 0x33E5, offset: 0x58AE2, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket isIPv6Enabled]_block_invoke', symObjAddr: 0x1BD5, symBinAddr: 0x28F5, symSize: 0x1A } + - { offsetInCU: 0x3440, offset: 0x58B3D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv6Enabled:]', symObjAddr: 0x1BEF, symBinAddr: 0x290F, symSize: 0x82 } + - { offsetInCU: 0x34E2, offset: 0x58BDF, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1C71, symBinAddr: 0x2991, symSize: 0x21 } + - { offsetInCU: 0x3537, offset: 0x58C34, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4PreferredOverIPv6]', symObjAddr: 0x1C92, symBinAddr: 0x29B2, symSize: 0xA6 } + - { offsetInCU: 0x35B8, offset: 0x58CB5, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncSocket isIPv4PreferredOverIPv6]_block_invoke', symObjAddr: 0x1D38, symBinAddr: 0x2A58, symSize: 0x1A } + - { offsetInCU: 0x3613, offset: 0x58D10, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]', symObjAddr: 0x1D52, symBinAddr: 0x2A72, symSize: 0x82 } + - { offsetInCU: 0x36B5, offset: 0x58DB2, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setIPv4PreferredOverIPv6:]_block_invoke', symObjAddr: 0x1DD4, symBinAddr: 0x2AF4, symSize: 0x21 } + - { offsetInCU: 0x370A, offset: 0x58E07, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket alternateAddressDelay]', symObjAddr: 0x1DF5, symBinAddr: 0x2B15, symSize: 0xDD } + - { offsetInCU: 0x37B4, offset: 0x58EB1, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket alternateAddressDelay]_block_invoke', symObjAddr: 0x1ED2, symBinAddr: 0x2BF2, symSize: 0x1F } + - { offsetInCU: 0x380F, offset: 0x58F0C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAlternateAddressDelay:]', symObjAddr: 0x1EF1, symBinAddr: 0x2C11, symSize: 0x84 } + - { offsetInCU: 0x38B1, offset: 0x58FAE, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncSocket setAlternateAddressDelay:]_block_invoke', symObjAddr: 0x1F75, symBinAddr: 0x2C95, symSize: 0x17 } + - { offsetInCU: 0x3906, offset: 0x59003, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket userData]', symObjAddr: 0x1F8C, symBinAddr: 0x2CAC, symSize: 0x10D } + - { offsetInCU: 0x39C9, offset: 0x590C6, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket userData]_block_invoke', symObjAddr: 0x2099, symBinAddr: 0x2DB9, symSize: 0x21 } + - { offsetInCU: 0x3A1C, offset: 0x59119, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setUserData:]', symObjAddr: 0x20BA, symBinAddr: 0x2DDA, symSize: 0xAF } + - { offsetInCU: 0x3AFF, offset: 0x591FC, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket setUserData:]_block_invoke', symObjAddr: 0x2169, symBinAddr: 0x2E89, symSize: 0x27 } + - { offsetInCU: 0x3B52, offset: 0x5924F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnPort:error:]', symObjAddr: 0x2190, symBinAddr: 0x2EB0, symSize: 0x19 } + - { offsetInCU: 0x3BD5, offset: 0x592D2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnInterface:port:error:]', symObjAddr: 0x21A9, symBinAddr: 0x2EC9, symSize: 0x23C } + - { offsetInCU: 0x3D9B, offset: 0x59498, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke', symObjAddr: 0x23E5, symBinAddr: 0x3105, symSize: 0x20F } + - { offsetInCU: 0x4102, offset: 0x597FF, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.163', symObjAddr: 0x25F4, symBinAddr: 0x3314, symSize: 0x5CA } + - { offsetInCU: 0x466C, offset: 0x59D69, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2', symObjAddr: 0x2BBE, symBinAddr: 0x38DE, symSize: 0x84 } + - { offsetInCU: 0x474F, offset: 0x59E4C, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40w, symObjAddr: 0x2C42, symBinAddr: 0x3962, symSize: 0x2E } + - { offsetInCU: 0x4784, offset: 0x59E81, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40w, symObjAddr: 0x2C70, symBinAddr: 0x3990, symSize: 0x22 } + - { offsetInCU: 0x47AF, offset: 0x59EAC, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke.192', symObjAddr: 0x2C92, symBinAddr: 0x39B2, symSize: 0xD } + - { offsetInCU: 0x47FB, offset: 0x59EF8, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_2.194', symObjAddr: 0x2C9F, symBinAddr: 0x39BF, symSize: 0x84 } + - { offsetInCU: 0x48CB, offset: 0x59FC8, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncSocket acceptOnInterface:port:error:]_block_invoke_3', symObjAddr: 0x2D23, symBinAddr: 0x3A43, symSize: 0xD } + - { offsetInCU: 0x4917, offset: 0x5A014, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r64r, symObjAddr: 0x2D30, symBinAddr: 0x3A50, symSize: 0x68 } + - { offsetInCU: 0x4958, offset: 0x5A055, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x2D98, symBinAddr: 0x3AB8, symSize: 0x48 } + - { offsetInCU: 0x499B, offset: 0x5A098, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket acceptOnUrl:error:]', symObjAddr: 0x2DE0, symBinAddr: 0x3B00, symSize: 0x217 } + - { offsetInCU: 0x4B1C, offset: 0x5A219, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke', symObjAddr: 0x2FF7, symBinAddr: 0x3D17, symSize: 0x20F } + - { offsetInCU: 0x4DB4, offset: 0x5A4B1, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_2', symObjAddr: 0x3206, symBinAddr: 0x3F26, symSize: 0x3F7 } + - { offsetInCU: 0x513C, offset: 0x5A839, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_3', symObjAddr: 0x35FD, symBinAddr: 0x431D, symSize: 0x7F } + - { offsetInCU: 0x520C, offset: 0x5A909, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncSocket acceptOnUrl:error:]_block_invoke_4', symObjAddr: 0x367C, symBinAddr: 0x439C, symSize: 0xD } + - { offsetInCU: 0x5258, offset: 0x5A955, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doAccept:]', symObjAddr: 0x3689, symBinAddr: 0x43A9, symSize: 0x291 } + - { offsetInCU: 0x5543, offset: 0x5AC40, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke', symObjAddr: 0x391A, symBinAddr: 0x463A, symSize: 0x173 } + - { offsetInCU: 0x56CE, offset: 0x5ADCB, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doAccept:]_block_invoke_2', symObjAddr: 0x3A8D, symBinAddr: 0x47AD, symSize: 0x32 } + - { offsetInCU: 0x5729, offset: 0x5AE26, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithInterface:error:]', symObjAddr: 0x3ABF, symBinAddr: 0x47DF, symSize: 0x23A } + - { offsetInCU: 0x5984, offset: 0x5B081, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket preConnectWithUrl:error:]', symObjAddr: 0x3CF9, symBinAddr: 0x4A19, symSize: 0x179 } + - { offsetInCU: 0x5B10, offset: 0x5B20D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:error:]', symObjAddr: 0x3E72, symBinAddr: 0x4B92, symSize: 0x1A } + - { offsetInCU: 0x5BA0, offset: 0x5B29D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:withTimeout:error:]', symObjAddr: 0x3E8C, symBinAddr: 0x4BAC, symSize: 0x1B } + - { offsetInCU: 0x5C4F, offset: 0x5B34C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]', symObjAddr: 0x3EA7, symBinAddr: 0x4BC7, symSize: 0x238 } + - { offsetInCU: 0x5E8D, offset: 0x5B58A, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x40DF, symBinAddr: 0x4DFF, symSize: 0x1E5 } + - { offsetInCU: 0x6074, offset: 0x5B771, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_2', symObjAddr: 0x42C4, symBinAddr: 0x4FE4, symSize: 0x3DD } + - { offsetInCU: 0x6391, offset: 0x5BA8E, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke_3', symObjAddr: 0x46A1, symBinAddr: 0x53C1, symSize: 0x36 } + - { offsetInCU: 0x63FD, offset: 0x5BAFA, size: 0x8, addend: 0x0, symName: '___71-[MGCDAsyncSocket connectToHost:onPort:viaInterface:withTimeout:error:]_block_invoke.247', symObjAddr: 0x46D7, symBinAddr: 0x53F7, symSize: 0x3A } + - { offsetInCU: 0x647A, offset: 0x5BB77, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48w, symObjAddr: 0x4711, symBinAddr: 0x5431, symSize: 0x42 } + - { offsetInCU: 0x64BB, offset: 0x5BBB8, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48w, symObjAddr: 0x4753, symBinAddr: 0x5473, symSize: 0x2E } + - { offsetInCU: 0x64F2, offset: 0x5BBEF, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56r64r, symObjAddr: 0x4781, symBinAddr: 0x54A1, symSize: 0x5D } + - { offsetInCU: 0x653F, offset: 0x5BC3C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:error:]', symObjAddr: 0x47DE, symBinAddr: 0x54FE, symSize: 0x1F } + - { offsetInCU: 0x65C0, offset: 0x5BCBD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:withTimeout:error:]', symObjAddr: 0x47FD, symBinAddr: 0x551D, symSize: 0x17 } + - { offsetInCU: 0x6658, offset: 0x5BD55, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]', symObjAddr: 0x4814, symBinAddr: 0x5534, symSize: 0x231 } + - { offsetInCU: 0x6881, offset: 0x5BF7E, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket connectToAddress:viaInterface:withTimeout:error:]_block_invoke', symObjAddr: 0x4A45, symBinAddr: 0x5765, symSize: 0x205 } + - { offsetInCU: 0x6AAD, offset: 0x5C1AA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToUrl:withTimeout:error:]', symObjAddr: 0x4C4A, symBinAddr: 0x596A, symSize: 0x1C6 } + - { offsetInCU: 0x6BEE, offset: 0x5C2EB, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncSocket connectToUrl:withTimeout:error:]_block_invoke', symObjAddr: 0x4E10, symBinAddr: 0x5B30, symSize: 0x168 } + - { offsetInCU: 0x6D4C, offset: 0x5C449, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4F78, symBinAddr: 0x5C98, symSize: 0x56 } + - { offsetInCU: 0x6D8D, offset: 0x5C48A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48r56r, symObjAddr: 0x4FCE, symBinAddr: 0x5CEE, symSize: 0x41 } + - { offsetInCU: 0x6DC4, offset: 0x5C4C1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectToNetService:error:]', symObjAddr: 0x500F, symBinAddr: 0x5D2F, symSize: 0x172 } + - { offsetInCU: 0x6EE1, offset: 0x5C5DE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didSucceedWithAddress4:address6:]', symObjAddr: 0x5181, symBinAddr: 0x5EA1, symSize: 0x111 } + - { offsetInCU: 0x7084, offset: 0x5C781, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket lookup:didFail:]', symObjAddr: 0x5292, symBinAddr: 0x5FB2, symSize: 0x60 } + - { offsetInCU: 0x7130, offset: 0x5C82D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket bindSocket:toInterface:error:]', symObjAddr: 0x52F2, symBinAddr: 0x6012, symSize: 0x11D } + - { offsetInCU: 0x72B8, offset: 0x5C9B5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createSocket:connectInterface:errPtr:]', symObjAddr: 0x540F, symBinAddr: 0x612F, symSize: 0xEB } + - { offsetInCU: 0x740D, offset: 0x5CB0A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectSocket:address:stateIndex:]', symObjAddr: 0x54FA, symBinAddr: 0x621A, symSize: 0x11B } + - { offsetInCU: 0x7549, offset: 0x5CC46, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke', symObjAddr: 0x5615, symBinAddr: 0x6335, symSize: 0xFE } + - { offsetInCU: 0x76BA, offset: 0x5CDB7, size: 0x8, addend: 0x0, symName: '___52-[MGCDAsyncSocket connectSocket:address:stateIndex:]_block_invoke_2', symObjAddr: 0x5713, symBinAddr: 0x6433, symSize: 0x115 } + - { offsetInCU: 0x77ED, offset: 0x5CEEA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeSocket:]', symObjAddr: 0x5828, symBinAddr: 0x6548, symSize: 0x45 } + - { offsetInCU: 0x7848, offset: 0x5CF45, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeUnusedSocket:]', symObjAddr: 0x586D, symBinAddr: 0x658D, symSize: 0x24 } + - { offsetInCU: 0x7897, offset: 0x5CF94, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddress4:address6:error:]', symObjAddr: 0x5891, symBinAddr: 0x65B1, symSize: 0x1E0 } + - { offsetInCU: 0x7AFB, offset: 0x5D1F8, size: 0x8, addend: 0x0, symName: '___54-[MGCDAsyncSocket connectWithAddress4:address6:error:]_block_invoke', symObjAddr: 0x5A71, symBinAddr: 0x6791, symSize: 0x24 } + - { offsetInCU: 0x7B7C, offset: 0x5D279, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectWithAddressUN:error:]', symObjAddr: 0x5A95, symBinAddr: 0x67B5, symSize: 0x169 } + - { offsetInCU: 0x7D44, offset: 0x5D441, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke', symObjAddr: 0x5BFE, symBinAddr: 0x691E, symSize: 0x90 } + - { offsetInCU: 0x7E4C, offset: 0x5D549, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke.cold.1', symObjAddr: 0x101CA, symBinAddr: 0x1DA2A, symSize: 0xBA } + - { offsetInCU: 0x7E64, offset: 0x5D561, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_2', symObjAddr: 0x5C8E, symBinAddr: 0x69AE, symSize: 0x32 } + - { offsetInCU: 0x7EC3, offset: 0x5D5C0, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket connectWithAddressUN:error:]_block_invoke_3', symObjAddr: 0x5CC0, symBinAddr: 0x69E0, symSize: 0x36 } + - { offsetInCU: 0x7F33, offset: 0x5D630, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didConnect:]', symObjAddr: 0x5CF6, symBinAddr: 0x6A16, symSize: 0x369 } + - { offsetInCU: 0x8283, offset: 0x5D980, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke', symObjAddr: 0x605F, symBinAddr: 0x6D7F, symSize: 0xA4 } + - { offsetInCU: 0x831F, offset: 0x5DA1C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2', symObjAddr: 0x6103, symBinAddr: 0x6E23, symSize: 0xAA } + - { offsetInCU: 0x83C6, offset: 0x5DAC3, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_3', symObjAddr: 0x61AD, symBinAddr: 0x6ECD, symSize: 0xAB } + - { offsetInCU: 0x848D, offset: 0x5DB8A, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_4', symObjAddr: 0x6258, symBinAddr: 0x6F78, symSize: 0x25 } + - { offsetInCU: 0x84D7, offset: 0x5DBD4, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32b, symObjAddr: 0x627D, symBinAddr: 0x6F9D, symSize: 0x17 } + - { offsetInCU: 0x8500, offset: 0x5DBFD, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56b, symObjAddr: 0x6294, symBinAddr: 0x6FB4, symSize: 0x4B } + - { offsetInCU: 0x854D, offset: 0x5DC4A, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s, symObjAddr: 0x62DF, symBinAddr: 0x6FFF, symSize: 0x33 } + - { offsetInCU: 0x859C, offset: 0x5DC99, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke.325', symObjAddr: 0x6312, symBinAddr: 0x7032, symSize: 0xA6 } + - { offsetInCU: 0x8652, offset: 0x5DD4F, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket didConnect:]_block_invoke_2.326', symObjAddr: 0x63B8, symBinAddr: 0x70D8, symSize: 0x25 } + - { offsetInCU: 0x869C, offset: 0x5DD99, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket didNotConnect:error:]', symObjAddr: 0x63DD, symBinAddr: 0x70FD, symSize: 0x1C } + - { offsetInCU: 0x86FA, offset: 0x5DDF7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startConnectTimeout:]', symObjAddr: 0x63F9, symBinAddr: 0x7119, symSize: 0xF3 } + - { offsetInCU: 0x8812, offset: 0x5DF0F, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket startConnectTimeout:]_block_invoke', symObjAddr: 0x64EC, symBinAddr: 0x720C, symSize: 0x4B } + - { offsetInCU: 0x8898, offset: 0x5DF95, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32w, symObjAddr: 0x6537, symBinAddr: 0x7257, symSize: 0x12 } + - { offsetInCU: 0x88C1, offset: 0x5DFBE, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32w, symObjAddr: 0x6549, symBinAddr: 0x7269, symSize: 0xE } + - { offsetInCU: 0x88E0, offset: 0x5DFDD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endConnectTimeout]', symObjAddr: 0x6557, symBinAddr: 0x7277, symSize: 0x67 } + - { offsetInCU: 0x8955, offset: 0x5E052, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doConnectTimeout]', symObjAddr: 0x65BE, symBinAddr: 0x72DE, symSize: 0x59 } + - { offsetInCU: 0x89D2, offset: 0x5E0CF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket closeWithError:]', symObjAddr: 0x6617, symBinAddr: 0x7337, symSize: 0x445 } + - { offsetInCU: 0x8E32, offset: 0x5E52F, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket closeWithError:]_block_invoke', symObjAddr: 0x6A5C, symBinAddr: 0x777C, symSize: 0x37 } + - { offsetInCU: 0x8E9E, offset: 0x5E59B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnect]', symObjAddr: 0x6A93, symBinAddr: 0x77B3, symSize: 0x7F } + - { offsetInCU: 0x8F2F, offset: 0x5E62C, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket disconnect]_block_invoke', symObjAddr: 0x6B12, symBinAddr: 0x7832, symSize: 0x37 } + - { offsetInCU: 0x8F84, offset: 0x5E681, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReading]', symObjAddr: 0x6B49, symBinAddr: 0x7869, symSize: 0x4B } + - { offsetInCU: 0x8FCE, offset: 0x5E6CB, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterReading]_block_invoke', symObjAddr: 0x6B94, symBinAddr: 0x78B4, symSize: 0x41 } + - { offsetInCU: 0x901C, offset: 0x5E719, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterWriting]', symObjAddr: 0x6BD5, symBinAddr: 0x78F5, symSize: 0x4B } + - { offsetInCU: 0x9066, offset: 0x5E763, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncSocket disconnectAfterWriting]_block_invoke', symObjAddr: 0x6C20, symBinAddr: 0x7940, symSize: 0x41 } + - { offsetInCU: 0x90B4, offset: 0x5E7B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket disconnectAfterReadingAndWriting]', symObjAddr: 0x6C61, symBinAddr: 0x7981, symSize: 0x4B } + - { offsetInCU: 0x90FE, offset: 0x5E7FB, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket disconnectAfterReadingAndWriting]_block_invoke', symObjAddr: 0x6CAC, symBinAddr: 0x79CC, symSize: 0x41 } + - { offsetInCU: 0x914C, offset: 0x5E849, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeClose]', symObjAddr: 0x6CED, symBinAddr: 0x7A0D, symSize: 0x8D } + - { offsetInCU: 0x91CB, offset: 0x5E8C8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badConfigError:]', symObjAddr: 0x6D7A, symBinAddr: 0x7A9A, symSize: 0xDE } + - { offsetInCU: 0x9272, offset: 0x5E96F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket badParamError:]', symObjAddr: 0x6E58, symBinAddr: 0x7B78, symSize: 0xDE } + - { offsetInCU: 0x9319, offset: 0x5EA16, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket gaiError:]', symObjAddr: 0x6F36, symBinAddr: 0x7C56, symSize: 0xF3 } + - { offsetInCU: 0x93EE, offset: 0x5EAEB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errorWithErrno:reason:]', symObjAddr: 0x7029, symBinAddr: 0x7D49, symSize: 0x11B } + - { offsetInCU: 0x94D3, offset: 0x5EBD0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket errnoError]', symObjAddr: 0x7144, symBinAddr: 0x7E64, symSize: 0x103 } + - { offsetInCU: 0x956D, offset: 0x5EC6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslError:]', symObjAddr: 0x7247, symBinAddr: 0x7F67, symSize: 0xBE } + - { offsetInCU: 0x95FC, offset: 0x5ECF9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectTimeoutError]', symObjAddr: 0x7305, symBinAddr: 0x8025, symSize: 0x118 } + - { offsetInCU: 0x96B6, offset: 0x5EDB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readMaxedOutError]', symObjAddr: 0x741D, symBinAddr: 0x813D, symSize: 0x118 } + - { offsetInCU: 0x9770, offset: 0x5EE6D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readTimeoutError]', symObjAddr: 0x7535, symBinAddr: 0x8255, symSize: 0x118 } + - { offsetInCU: 0x982A, offset: 0x5EF27, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeTimeoutError]', symObjAddr: 0x764D, symBinAddr: 0x836D, symSize: 0x118 } + - { offsetInCU: 0x98E4, offset: 0x5EFE1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectionClosedError]', symObjAddr: 0x7765, symBinAddr: 0x8485, symSize: 0x118 } + - { offsetInCU: 0x999E, offset: 0x5F09B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket otherError:]', symObjAddr: 0x787D, symBinAddr: 0x859D, symSize: 0xDE } + - { offsetInCU: 0x9A45, offset: 0x5F142, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isDisconnected]', symObjAddr: 0x795B, symBinAddr: 0x867B, symSize: 0xDD } + - { offsetInCU: 0x9AEF, offset: 0x5F1EC, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket isDisconnected]_block_invoke', symObjAddr: 0x7A38, symBinAddr: 0x8758, symSize: 0x1C } + - { offsetInCU: 0x9B4A, offset: 0x5F247, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isConnected]', symObjAddr: 0x7A54, symBinAddr: 0x8774, symSize: 0xDD } + - { offsetInCU: 0x9BF4, offset: 0x5F2F1, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket isConnected]_block_invoke', symObjAddr: 0x7B31, symBinAddr: 0x8851, symSize: 0x1C } + - { offsetInCU: 0x9C4F, offset: 0x5F34C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost]', symObjAddr: 0x7B4D, symBinAddr: 0x886D, symSize: 0x10B } + - { offsetInCU: 0x9CF4, offset: 0x5F3F1, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedHost]_block_invoke', symObjAddr: 0x7C58, symBinAddr: 0x8978, symSize: 0x66 } + - { offsetInCU: 0x9D5F, offset: 0x5F45C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort]', symObjAddr: 0x7CBE, symBinAddr: 0x89DE, symSize: 0xDE } + - { offsetInCU: 0x9DF4, offset: 0x5F4F1, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket connectedPort]_block_invoke', symObjAddr: 0x7D9C, symBinAddr: 0x8ABC, symSize: 0x49 } + - { offsetInCU: 0x9E53, offset: 0x5F550, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrl]', symObjAddr: 0x7DE5, symBinAddr: 0x8B05, symSize: 0xFC } + - { offsetInCU: 0x9EF8, offset: 0x5F5F5, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket connectedUrl]_block_invoke', symObjAddr: 0x7EE1, symBinAddr: 0x8C01, symSize: 0x55 } + - { offsetInCU: 0x9F63, offset: 0x5F660, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost]', symObjAddr: 0x7F36, symBinAddr: 0x8C56, symSize: 0x10B } + - { offsetInCU: 0xA008, offset: 0x5F705, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localHost]_block_invoke', symObjAddr: 0x8041, symBinAddr: 0x8D61, symSize: 0x66 } + - { offsetInCU: 0xA073, offset: 0x5F770, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort]', symObjAddr: 0x80A7, symBinAddr: 0x8DC7, symSize: 0xDE } + - { offsetInCU: 0xA108, offset: 0x5F805, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket localPort]_block_invoke', symObjAddr: 0x8185, symBinAddr: 0x8EA5, symSize: 0x49 } + - { offsetInCU: 0xA167, offset: 0x5F864, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost4]', symObjAddr: 0x81CE, symBinAddr: 0x8EEE, symSize: 0x2E } + - { offsetInCU: 0xA1AB, offset: 0x5F8A8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHost6]', symObjAddr: 0x81FC, symBinAddr: 0x8F1C, symSize: 0x2E } + - { offsetInCU: 0xA1EF, offset: 0x5F8EC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort4]', symObjAddr: 0x822A, symBinAddr: 0x8F4A, symSize: 0x1E } + - { offsetInCU: 0xA231, offset: 0x5F92E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPort6]', symObjAddr: 0x8248, symBinAddr: 0x8F68, symSize: 0x1E } + - { offsetInCU: 0xA273, offset: 0x5F970, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost4]', symObjAddr: 0x8266, symBinAddr: 0x8F86, symSize: 0x2E } + - { offsetInCU: 0xA2B7, offset: 0x5F9B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHost6]', symObjAddr: 0x8294, symBinAddr: 0x8FB4, symSize: 0x2E } + - { offsetInCU: 0xA2FB, offset: 0x5F9F8, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort4]', symObjAddr: 0x82C2, symBinAddr: 0x8FE2, symSize: 0x1E } + - { offsetInCU: 0xA33D, offset: 0x5FA3A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPort6]', symObjAddr: 0x82E0, symBinAddr: 0x9000, symSize: 0x1E } + - { offsetInCU: 0xA37F, offset: 0x5FA7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket4:]', symObjAddr: 0x82FE, symBinAddr: 0x901E, symSize: 0x8D } + - { offsetInCU: 0xA42E, offset: 0x5FB2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedHostFromSocket6:]', symObjAddr: 0x838B, symBinAddr: 0x90AB, symSize: 0x6A } + - { offsetInCU: 0xA4DD, offset: 0x5FBDA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket4:]', symObjAddr: 0x83F5, symBinAddr: 0x9115, symSize: 0x81 } + - { offsetInCU: 0xA594, offset: 0x5FC91, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedPortFromSocket6:]', symObjAddr: 0x8476, symBinAddr: 0x9196, symSize: 0x5E } + - { offsetInCU: 0xA64B, offset: 0x5FD48, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedUrlFromSocketUN:]', symObjAddr: 0x84D4, symBinAddr: 0x91F4, symSize: 0x9C } + - { offsetInCU: 0xA6FD, offset: 0x5FDFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket4:]', symObjAddr: 0x8570, symBinAddr: 0x9290, symSize: 0x8D } + - { offsetInCU: 0xA7CD, offset: 0x5FECA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localHostFromSocket6:]', symObjAddr: 0x85FD, symBinAddr: 0x931D, symSize: 0x6A } + - { offsetInCU: 0xA87C, offset: 0x5FF79, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket4:]', symObjAddr: 0x8667, symBinAddr: 0x9387, symSize: 0x81 } + - { offsetInCU: 0xA933, offset: 0x60030, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localPortFromSocket6:]', symObjAddr: 0x86E8, symBinAddr: 0x9408, symSize: 0x5E } + - { offsetInCU: 0xA9EA, offset: 0x600E7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket connectedAddress]', symObjAddr: 0x8746, symBinAddr: 0x9466, symSize: 0x10D } + - { offsetInCU: 0xAAAD, offset: 0x601AA, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncSocket connectedAddress]_block_invoke', symObjAddr: 0x8853, symBinAddr: 0x9573, symSize: 0xEE } + - { offsetInCU: 0xABDA, offset: 0x602D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket localAddress]', symObjAddr: 0x8941, symBinAddr: 0x9661, symSize: 0x10D } + - { offsetInCU: 0xAC9D, offset: 0x6039A, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncSocket localAddress]_block_invoke', symObjAddr: 0x8A4E, symBinAddr: 0x976E, symSize: 0xEE } + - { offsetInCU: 0xADCA, offset: 0x604C7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv4]', symObjAddr: 0x8B3C, symBinAddr: 0x985C, symSize: 0xAB } + - { offsetInCU: 0xAE4B, offset: 0x60548, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv4]_block_invoke', symObjAddr: 0x8BE7, symBinAddr: 0x9907, symSize: 0x1A } + - { offsetInCU: 0xAEA6, offset: 0x605A3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isIPv6]', symObjAddr: 0x8C01, symBinAddr: 0x9921, symSize: 0xAB } + - { offsetInCU: 0xAF27, offset: 0x60624, size: 0x8, addend: 0x0, symName: '___25-[MGCDAsyncSocket isIPv6]_block_invoke', symObjAddr: 0x8CAC, symBinAddr: 0x99CC, symSize: 0x1A } + - { offsetInCU: 0xAF82, offset: 0x6067F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket isSecure]', symObjAddr: 0x8CC6, symBinAddr: 0x99E6, symSize: 0xA8 } + - { offsetInCU: 0xB003, offset: 0x60700, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncSocket isSecure]_block_invoke', symObjAddr: 0x8D6E, symBinAddr: 0x9A8E, symSize: 0x1D } + - { offsetInCU: 0xB05E, offset: 0x6075B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddress4:address6:fromDescription:port:]', symObjAddr: 0x8D8B, symBinAddr: 0x9AAB, symSize: 0x4AC } + - { offsetInCU: 0xB4F4, offset: 0x60BF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket getInterfaceAddressFromUrl:]', symObjAddr: 0x9237, symBinAddr: 0x9F57, symSize: 0xED } + - { offsetInCU: 0xB5A8, offset: 0x60CA5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]', symObjAddr: 0x9324, symBinAddr: 0xA044, symSize: 0x211 } + - { offsetInCU: 0xB6DC, offset: 0x60DD9, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke', symObjAddr: 0x9535, symBinAddr: 0xA255, symSize: 0x6F } + - { offsetInCU: 0xB770, offset: 0x60E6D, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_2', symObjAddr: 0x95A4, symBinAddr: 0xA2C4, symSize: 0x50 } + - { offsetInCU: 0xB7F6, offset: 0x60EF3, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke_3', symObjAddr: 0x95F4, symBinAddr: 0xA314, symSize: 0x1C } + - { offsetInCU: 0xB853, offset: 0x60F50, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r, symObjAddr: 0x9610, symBinAddr: 0xA330, symSize: 0x17 } + - { offsetInCU: 0xB87C, offset: 0x60F79, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r, symObjAddr: 0x9627, symBinAddr: 0xA347, symSize: 0x13 } + - { offsetInCU: 0xB89B, offset: 0x60F98, size: 0x8, addend: 0x0, symName: '___67-[MGCDAsyncSocket setupReadAndWriteSourcesForNewlyConnectedSocket:]_block_invoke.433', symObjAddr: 0x963A, symBinAddr: 0xA35A, symSize: 0x1C } + - { offsetInCU: 0xB8F8, offset: 0x60FF5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingCFStreamForTLS]', symObjAddr: 0x9656, symBinAddr: 0xA376, symSize: 0x13 } + - { offsetInCU: 0xB92E, offset: 0x6102B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket usingSecureTransportForTLS]', symObjAddr: 0x9669, symBinAddr: 0xA389, symSize: 0x13 } + - { offsetInCU: 0xB964, offset: 0x61061, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendReadSource]', symObjAddr: 0x967C, symBinAddr: 0xA39C, symSize: 0x26 } + - { offsetInCU: 0xB9B5, offset: 0x610B2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeReadSource]', symObjAddr: 0x96A2, symBinAddr: 0xA3C2, symSize: 0x26 } + - { offsetInCU: 0xB9F7, offset: 0x610F4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket suspendWriteSource]', symObjAddr: 0x96C8, symBinAddr: 0xA3E8, symSize: 0x26 } + - { offsetInCU: 0xBA39, offset: 0x61136, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket resumeWriteSource]', symObjAddr: 0x96EE, symBinAddr: 0xA40E, symSize: 0x26 } + - { offsetInCU: 0xBA7B, offset: 0x61178, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:tag:]', symObjAddr: 0x9714, symBinAddr: 0xA434, symSize: 0x1F } + - { offsetInCU: 0xBB04, offset: 0x61201, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x9733, symBinAddr: 0xA453, symSize: 0x1B } + - { offsetInCU: 0xBBAF, offset: 0x612AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x974E, symBinAddr: 0xA46E, symSize: 0xFF } + - { offsetInCU: 0xBCF8, offset: 0x613F5, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncSocket readDataWithTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x984D, symBinAddr: 0xA56D, symSize: 0x60 } + - { offsetInCU: 0xBD63, offset: 0x61460, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:tag:]', symObjAddr: 0x98AD, symBinAddr: 0xA5CD, symSize: 0x1D } + - { offsetInCU: 0xBDFD, offset: 0x614FA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x98CA, symBinAddr: 0xA5EA, symSize: 0x108 } + - { offsetInCU: 0xBF4E, offset: 0x6164B, size: 0x8, addend: 0x0, symName: '___72-[MGCDAsyncSocket readDataToLength:withTimeout:buffer:bufferOffset:tag:]_block_invoke', symObjAddr: 0x99D2, symBinAddr: 0xA6F2, symSize: 0x60 } + - { offsetInCU: 0xBFB9, offset: 0x616B6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:tag:]', symObjAddr: 0x9A32, symBinAddr: 0xA752, symSize: 0x27 } + - { offsetInCU: 0xC057, offset: 0x61754, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:tag:]', symObjAddr: 0x9A59, symBinAddr: 0xA779, symSize: 0x22 } + - { offsetInCU: 0xC11B, offset: 0x61818, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:maxLength:tag:]', symObjAddr: 0x9A7B, symBinAddr: 0xA79B, symSize: 0x27 } + - { offsetInCU: 0xC1CC, offset: 0x618C9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]', symObjAddr: 0x9AA2, symBinAddr: 0xA7C2, symSize: 0x150 } + - { offsetInCU: 0xC392, offset: 0x61A8F, size: 0x8, addend: 0x0, symName: '___80-[MGCDAsyncSocket readDataToData:withTimeout:buffer:bufferOffset:maxLength:tag:]_block_invoke', symObjAddr: 0x9BF2, symBinAddr: 0xA912, symSize: 0x60 } + - { offsetInCU: 0xC3FD, offset: 0x61AFA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]', symObjAddr: 0x9C52, symBinAddr: 0xA972, symSize: 0xF0 } + - { offsetInCU: 0xC4DA, offset: 0x61BD7, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncSocket progressOfReadReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0x9D42, symBinAddr: 0xAA62, symSize: 0x12B } + - { offsetInCU: 0xC5A9, offset: 0x61CA6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueRead]', symObjAddr: 0x9E6D, symBinAddr: 0xAB8D, symSize: 0x1C1 } + - { offsetInCU: 0xC6DA, offset: 0x61DD7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket flushSSLBuffers]', symObjAddr: 0xA02E, symBinAddr: 0xAD4E, symSize: 0x216 } + - { offsetInCU: 0xC904, offset: 0x62001, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncSocket flushSSLBuffers]_block_invoke', symObjAddr: 0xA244, symBinAddr: 0xAF64, symSize: 0x72 } + - { offsetInCU: 0xC9B1, offset: 0x620AE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadData]', symObjAddr: 0xA2B6, symBinAddr: 0xAFD6, symSize: 0xC0F } + - { offsetInCU: 0xD1DA, offset: 0x628D7, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncSocket doReadData]_block_invoke', symObjAddr: 0xAEC5, symBinAddr: 0xBBE5, symSize: 0x3B } + - { offsetInCU: 0xD25B, offset: 0x62958, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadEOF]', symObjAddr: 0xAF00, symBinAddr: 0xBC20, symSize: 0x25C } + - { offsetInCU: 0xD468, offset: 0x62B65, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket doReadEOF]_block_invoke', symObjAddr: 0xB15C, symBinAddr: 0xBE7C, symSize: 0x33 } + - { offsetInCU: 0xD4C7, offset: 0x62BC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentRead]', symObjAddr: 0xB18F, symBinAddr: 0xBEAF, symSize: 0x1E7 } + - { offsetInCU: 0xD703, offset: 0x62E00, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket completeCurrentRead]_block_invoke', symObjAddr: 0xB376, symBinAddr: 0xC096, symSize: 0x3F } + - { offsetInCU: 0xD784, offset: 0x62E81, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s, symObjAddr: 0xB3B5, symBinAddr: 0xC0D5, symSize: 0x33 } + - { offsetInCU: 0xD7DD, offset: 0x62EDA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentRead]', symObjAddr: 0xB3E8, symBinAddr: 0xC108, symSize: 0x50 } + - { offsetInCU: 0xD837, offset: 0x62F34, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupReadTimerWithTimeout:]', symObjAddr: 0xB438, symBinAddr: 0xC158, symSize: 0x102 } + - { offsetInCU: 0xD931, offset: 0x6302E, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket setupReadTimerWithTimeout:]_block_invoke', symObjAddr: 0xB53A, symBinAddr: 0xC25A, symSize: 0x4B } + - { offsetInCU: 0xD9B7, offset: 0x630B4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeout]', symObjAddr: 0xB585, symBinAddr: 0xC2A5, symSize: 0x103 } + - { offsetInCU: 0xDAD1, offset: 0x631CE, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke', symObjAddr: 0xB688, symBinAddr: 0xC3A8, symSize: 0x90 } + - { offsetInCU: 0xDB77, offset: 0x63274, size: 0x8, addend: 0x0, symName: '___32-[MGCDAsyncSocket doReadTimeout]_block_invoke_2', symObjAddr: 0xB718, symBinAddr: 0xC438, symSize: 0x34 } + - { offsetInCU: 0xDBD6, offset: 0x632D3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doReadTimeoutWithExtension:]', symObjAddr: 0xB74C, symBinAddr: 0xC46C, symSize: 0xC8 } + - { offsetInCU: 0xDCB4, offset: 0x633B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeData:withTimeout:tag:]', symObjAddr: 0xB814, symBinAddr: 0xC534, symSize: 0xE7 } + - { offsetInCU: 0xDDCE, offset: 0x634CB, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncSocket writeData:withTimeout:tag:]_block_invoke', symObjAddr: 0xB8FB, symBinAddr: 0xC61B, symSize: 0x60 } + - { offsetInCU: 0xDE39, offset: 0x63536, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]', symObjAddr: 0xB95B, symBinAddr: 0xC67B, symSize: 0xF0 } + - { offsetInCU: 0xDF16, offset: 0x63613, size: 0x8, addend: 0x0, symName: '___63-[MGCDAsyncSocket progressOfWriteReturningTag:bytesDone:total:]_block_invoke', symObjAddr: 0xBA4B, symBinAddr: 0xC76B, symSize: 0x139 } + - { offsetInCU: 0xDFF1, offset: 0x636EE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeDequeueWrite]', symObjAddr: 0xBB84, symBinAddr: 0xC8A4, symSize: 0x164 } + - { offsetInCU: 0xE16B, offset: 0x63868, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke', symObjAddr: 0xC2FE, symBinAddr: 0xD01E, symSize: 0x2F } + - { offsetInCU: 0xE1B9, offset: 0x638B6, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncSocket doWriteData]_block_invoke_2', symObjAddr: 0xC32D, symBinAddr: 0xD04D, symSize: 0x3B } + - { offsetInCU: 0xE23A, offset: 0x63937, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket completeCurrentWrite]', symObjAddr: 0xC368, symBinAddr: 0xD088, symSize: 0xDC } + - { offsetInCU: 0xE318, offset: 0x63A15, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncSocket completeCurrentWrite]_block_invoke', symObjAddr: 0xC444, symBinAddr: 0xD164, symSize: 0x37 } + - { offsetInCU: 0xE388, offset: 0x63A85, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket endCurrentWrite]', symObjAddr: 0xC47B, symBinAddr: 0xD19B, symSize: 0x50 } + - { offsetInCU: 0xE3E2, offset: 0x63ADF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setupWriteTimerWithTimeout:]', symObjAddr: 0xC4CB, symBinAddr: 0xD1EB, symSize: 0x102 } + - { offsetInCU: 0xE4DC, offset: 0x63BD9, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncSocket setupWriteTimerWithTimeout:]_block_invoke', symObjAddr: 0xC5CD, symBinAddr: 0xD2ED, symSize: 0x4B } + - { offsetInCU: 0xE562, offset: 0x63C5F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeout]', symObjAddr: 0xC618, symBinAddr: 0xD338, symSize: 0x103 } + - { offsetInCU: 0xE67C, offset: 0x63D79, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke', symObjAddr: 0xC71B, symBinAddr: 0xD43B, symSize: 0x90 } + - { offsetInCU: 0xE722, offset: 0x63E1F, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncSocket doWriteTimeout]_block_invoke_2', symObjAddr: 0xC7AB, symBinAddr: 0xD4CB, symSize: 0x34 } + - { offsetInCU: 0xE781, offset: 0x63E7E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket doWriteTimeoutWithExtension:]', symObjAddr: 0xC7DF, symBinAddr: 0xD4FF, symSize: 0xC8 } + - { offsetInCU: 0xE85F, offset: 0x63F5C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket startTLS:]', symObjAddr: 0xC8A7, symBinAddr: 0xD5C7, symSize: 0xDF } + - { offsetInCU: 0xE947, offset: 0x64044, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncSocket startTLS:]_block_invoke', symObjAddr: 0xC986, symBinAddr: 0xD6A6, symSize: 0x92 } + - { offsetInCU: 0xE9DA, offset: 0x640D7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket maybeStartTLS]', symObjAddr: 0xCA18, symBinAddr: 0xD738, symSize: 0x111 } + - { offsetInCU: 0xEB28, offset: 0x64225, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslReadWithBuffer:length:]', symObjAddr: 0xCB29, symBinAddr: 0xD849, symSize: 0x273 } + - { offsetInCU: 0xED83, offset: 0x64480, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslWriteWithBuffer:length:]', symObjAddr: 0xCD9C, symBinAddr: 0xDABC, symSize: 0xB0 } + - { offsetInCU: 0xEE6D, offset: 0x6456A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_startTLS]', symObjAddr: 0xCE4C, symBinAddr: 0xDB6C, symSize: 0xD4D } + - { offsetInCU: 0xFA31, offset: 0x6512E, size: 0x8, addend: 0x0, symName: _SSLReadFunction, symObjAddr: 0xDB99, symBinAddr: 0xE8B9, symSize: 0x18 } + - { offsetInCU: 0xFAB2, offset: 0x651AF, size: 0x8, addend: 0x0, symName: _SSLWriteFunction, symObjAddr: 0xDBB1, symBinAddr: 0xE8D1, symSize: 0x18 } + - { offsetInCU: 0xFB33, offset: 0x65230, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_continueSSLHandshake]', symObjAddr: 0xDBC9, symBinAddr: 0xE8E9, symSize: 0x406 } + - { offsetInCU: 0xFE9B, offset: 0x65598, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke', symObjAddr: 0xDFCF, symBinAddr: 0xECEF, symSize: 0x33 } + - { offsetInCU: 0xFEFA, offset: 0x655F7, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_2', symObjAddr: 0xE002, symBinAddr: 0xED22, symSize: 0x9C } + - { offsetInCU: 0xFF9A, offset: 0x65697, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke_3', symObjAddr: 0xE09E, symBinAddr: 0xEDBE, symSize: 0x80 } + - { offsetInCU: 0x10061, offset: 0x6575E, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32r40w, symObjAddr: 0xE11E, symBinAddr: 0xEE3E, symSize: 0x36 } + - { offsetInCU: 0x1008A, offset: 0x65787, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32r40w, symObjAddr: 0xE154, symBinAddr: 0xEE74, symSize: 0x26 } + - { offsetInCU: 0x100A9, offset: 0x657A6, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40r48w, symObjAddr: 0xE17A, symBinAddr: 0xEE9A, symSize: 0x40 } + - { offsetInCU: 0x100DE, offset: 0x657DB, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40r48w, symObjAddr: 0xE1BA, symBinAddr: 0xEEDA, symSize: 0x30 } + - { offsetInCU: 0x10109, offset: 0x65806, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket ssl_continueSSLHandshake]_block_invoke.607', symObjAddr: 0xE1EA, symBinAddr: 0xEF0A, symSize: 0x43 } + - { offsetInCU: 0x1018A, offset: 0x65887, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b56r, symObjAddr: 0xE22D, symBinAddr: 0xEF4D, symSize: 0x56 } + - { offsetInCU: 0x101CB, offset: 0x658C8, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56r, symObjAddr: 0xE283, symBinAddr: 0xEFA3, symSize: 0x3A } + - { offsetInCU: 0x1020E, offset: 0x6590B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket ssl_shouldTrustPeer:stateIndex:]', symObjAddr: 0xE2BD, symBinAddr: 0xEFDD, symSize: 0x87 } + - { offsetInCU: 0x102AC, offset: 0x659A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_finishSSLHandshake]', symObjAddr: 0xE344, symBinAddr: 0xF064, symSize: 0x10F } + - { offsetInCU: 0x103B5, offset: 0x65AB2, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncSocket cf_finishSSLHandshake]_block_invoke', symObjAddr: 0xE453, symBinAddr: 0xF173, symSize: 0x33 } + - { offsetInCU: 0x10414, offset: 0x65B11, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_abortSSLHandshake:]', symObjAddr: 0xE486, symBinAddr: 0xF1A6, symSize: 0x2B } + - { offsetInCU: 0x10461, offset: 0x65B5E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket cf_startTLS]', symObjAddr: 0xE4B1, symBinAddr: 0xF1D1, symSize: 0x1F6 } + - { offsetInCU: 0x1067F, offset: 0x65D7C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ignore:]', symObjAddr: 0xE6A7, symBinAddr: 0xF3C7, symSize: 0x6 } + - { offsetInCU: 0x106F6, offset: 0x65DF3, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xE71C, symBinAddr: 0xF43C, symSize: 0x32 } + - { offsetInCU: 0x10740, offset: 0x65E3D, size: 0x8, addend: 0x0, symName: '___46+[MGCDAsyncSocket startCFStreamThreadIfNeeded]_block_invoke_2', symObjAddr: 0xE74E, symBinAddr: 0xF46E, symSize: 0x88 } + - { offsetInCU: 0x107AD, offset: 0x65EAA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]', symObjAddr: 0xE7D6, symBinAddr: 0xF4F6, symSize: 0x64 } + - { offsetInCU: 0x10836, offset: 0x65F33, size: 0x8, addend: 0x0, symName: '___45+[MGCDAsyncSocket stopCFStreamThreadIfNeeded]_block_invoke', symObjAddr: 0xE83A, symBinAddr: 0xF55A, symSize: 0xDA } + - { offsetInCU: 0x108DD, offset: 0x65FDA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket cfstreamThread:]', symObjAddr: 0xE914, symBinAddr: 0xF634, symSize: 0x1B6 } + - { offsetInCU: 0x10A8C, offset: 0x66189, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket scheduleCFStreams:]', symObjAddr: 0xEACA, symBinAddr: 0xF7EA, symSize: 0x64 } + - { offsetInCU: 0x10B7F, offset: 0x6627C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket unscheduleCFStreams:]', symObjAddr: 0xEB2E, symBinAddr: 0xF84E, symSize: 0x64 } + - { offsetInCU: 0x10C66, offset: 0x66363, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket createReadAndWriteStream]', symObjAddr: 0xEB92, symBinAddr: 0xF8B2, symSize: 0x114 } + - { offsetInCU: 0x10D69, offset: 0x66466, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket registerForStreamCallbacksIncludingReadWrite:]', symObjAddr: 0xECA6, symBinAddr: 0xF9C6, symSize: 0x92 } + - { offsetInCU: 0x10E00, offset: 0x664FD, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xED38, symBinAddr: 0xFA58, symSize: 0x15D } + - { offsetInCU: 0x10F67, offset: 0x66664, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xEE95, symBinAddr: 0xFBB5, symSize: 0x15D } + - { offsetInCU: 0x110CE, offset: 0x667CB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket addStreamsToRunLoop]', symObjAddr: 0xEFF2, symBinAddr: 0xFD12, symSize: 0x7E } + - { offsetInCU: 0x11134, offset: 0x66831, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncSocket addStreamsToRunLoop]_block_invoke', symObjAddr: 0xF070, symBinAddr: 0xFD90, symSize: 0x4A } + - { offsetInCU: 0x11195, offset: 0x66892, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket removeStreamsFromRunLoop]', symObjAddr: 0xF0BA, symBinAddr: 0xFDDA, symSize: 0x7F } + - { offsetInCU: 0x111FF, offset: 0x668FC, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncSocket removeStreamsFromRunLoop]_block_invoke', symObjAddr: 0xF139, symBinAddr: 0xFE59, symSize: 0x4A } + - { offsetInCU: 0x11260, offset: 0x6695D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket openStreams]', symObjAddr: 0xF183, symBinAddr: 0xFEA3, symSize: 0x5F } + - { offsetInCU: 0x1136F, offset: 0x66A6C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]', symObjAddr: 0xF1E2, symBinAddr: 0xFF02, symSize: 0xA6 } + - { offsetInCU: 0x113F0, offset: 0x66AED, size: 0x8, addend: 0x0, symName: '___51-[MGCDAsyncSocket autoDisconnectOnClosedReadStream]_block_invoke', symObjAddr: 0xF288, symBinAddr: 0xFFA8, symSize: 0x1A } + - { offsetInCU: 0x1144B, offset: 0x66B48, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]', symObjAddr: 0xF2A2, symBinAddr: 0xFFC2, symSize: 0x82 } + - { offsetInCU: 0x114ED, offset: 0x66BEA, size: 0x8, addend: 0x0, symName: '___55-[MGCDAsyncSocket setAutoDisconnectOnClosedReadStream:]_block_invoke', symObjAddr: 0xF324, symBinAddr: 0x10044, symSize: 0x21 } + - { offsetInCU: 0x11542, offset: 0x66C3F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket markSocketQueueTargetQueue:]', symObjAddr: 0xF345, symBinAddr: 0x10065, symSize: 0x1C } + - { offsetInCU: 0x115BD, offset: 0x66CBA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xF361, symBinAddr: 0x10081, symSize: 0x18 } + - { offsetInCU: 0x11625, offset: 0x66D22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket performBlock:]', symObjAddr: 0xF379, symBinAddr: 0x10099, symSize: 0x38 } + - { offsetInCU: 0x116A2, offset: 0x66D9F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socketFD]', symObjAddr: 0xF3B1, symBinAddr: 0x100D1, symSize: 0x33 } + - { offsetInCU: 0x116E8, offset: 0x66DE5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket4FD]', symObjAddr: 0xF3E4, symBinAddr: 0x10104, symSize: 0x2B } + - { offsetInCU: 0x1172E, offset: 0x66E2B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket socket6FD]', symObjAddr: 0xF40F, symBinAddr: 0x1012F, symSize: 0x2B } + - { offsetInCU: 0x11774, offset: 0x66E71, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket readStream]', symObjAddr: 0xF43A, symBinAddr: 0x1015A, symSize: 0x48 } + - { offsetInCU: 0x117CE, offset: 0x66ECB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket writeStream]', symObjAddr: 0xF482, symBinAddr: 0x101A2, symSize: 0x48 } + - { offsetInCU: 0x11828, offset: 0x66F25, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat:]', symObjAddr: 0xF4CA, symBinAddr: 0x101EA, symSize: 0x9B } + - { offsetInCU: 0x118EE, offset: 0x66FEB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocket]', symObjAddr: 0xF565, symBinAddr: 0x10285, symSize: 0x3B } + - { offsetInCU: 0x1194E, offset: 0x6704B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket enableBackgroundingOnSocketWithCaveat]', symObjAddr: 0xF5A0, symBinAddr: 0x102C0, symSize: 0x3E } + - { offsetInCU: 0x119AE, offset: 0x670AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket sslContext]', symObjAddr: 0xF5DE, symBinAddr: 0x102FE, symSize: 0x2C } + - { offsetInCU: 0x119F4, offset: 0x670F1, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket lookupHost:port:error:]', symObjAddr: 0xF60A, symBinAddr: 0x1032A, symSize: 0x390 } + - { offsetInCU: 0x11DA6, offset: 0x674A3, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr4:]', symObjAddr: 0xF99A, symBinAddr: 0x106BA, symSize: 0x7D } + - { offsetInCU: 0x11E29, offset: 0x67526, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromSockaddr6:]', symObjAddr: 0xFA17, symBinAddr: 0x10737, symSize: 0x7D } + - { offsetInCU: 0x11EAD, offset: 0x675AA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr4:]', symObjAddr: 0xFA94, symBinAddr: 0x107B4, symSize: 0x11 } + - { offsetInCU: 0x11EF0, offset: 0x675ED, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromSockaddr6:]', symObjAddr: 0xFAA5, symBinAddr: 0x107C5, symSize: 0x11 } + - { offsetInCU: 0x11F33, offset: 0x67630, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket urlFromSockaddrUN:]', symObjAddr: 0xFAB6, symBinAddr: 0x107D6, symSize: 0x62 } + - { offsetInCU: 0x11FB1, offset: 0x676AE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket hostFromAddress:]', symObjAddr: 0xFB18, symBinAddr: 0x10838, symSize: 0x67 } + - { offsetInCU: 0x12069, offset: 0x67766, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket portFromAddress:]', symObjAddr: 0xFB7F, symBinAddr: 0x1089F, symSize: 0x30 } + - { offsetInCU: 0x120ED, offset: 0x677EA, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv4Address:]', symObjAddr: 0xFBAF, symBinAddr: 0x108CF, symSize: 0x5E } + - { offsetInCU: 0x12193, offset: 0x67890, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket isIPv6Address:]', symObjAddr: 0xFC0D, symBinAddr: 0x1092D, symSize: 0x5E } + - { offsetInCU: 0x12239, offset: 0x67936, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:fromAddress:]', symObjAddr: 0xFC6B, symBinAddr: 0x1098B, symSize: 0x18 } + - { offsetInCU: 0x122D1, offset: 0x679CE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket getHost:port:family:fromAddress:]', symObjAddr: 0xFC83, symBinAddr: 0x109A3, symSize: 0x1D5 } + - { offsetInCU: 0x1247C, offset: 0x67B79, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRLFData]', symObjAddr: 0xFE58, symBinAddr: 0x10B78, symSize: 0x25 } + - { offsetInCU: 0x124C3, offset: 0x67BC0, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket CRData]', symObjAddr: 0xFE7D, symBinAddr: 0x10B9D, symSize: 0x25 } + - { offsetInCU: 0x1250A, offset: 0x67C07, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket LFData]', symObjAddr: 0xFEA2, symBinAddr: 0x10BC2, symSize: 0x25 } + - { offsetInCU: 0x12551, offset: 0x67C4E, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncSocket ZeroData]', symObjAddr: 0xFEC7, symBinAddr: 0x10BE7, symSize: 0x25 } + - { offsetInCU: 0x12598, offset: 0x67C95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncSocket .cxx_destruct]', symObjAddr: 0xFEEC, symBinAddr: 0x10C0C, symSize: 0x123 } + - { offsetInCU: 0x125CC, offset: 0x67CC9, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0x1000F, symBinAddr: 0x10D2F, symSize: 0x7B } + - { offsetInCU: 0x12635, offset: 0x67D32, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke_2, symObjAddr: 0x1008A, symBinAddr: 0x10DAA, symSize: 0x58 } + - { offsetInCU: 0x126A1, offset: 0x67D9E, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0x100E2, symBinAddr: 0x10E02, symSize: 0x7B } + - { offsetInCU: 0x1271D, offset: 0x67E1A, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke_2, symObjAddr: 0x1015D, symBinAddr: 0x10E7D, symSize: 0x63 } + - { offsetInCU: 0x27, offset: 0x6BA5D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0xE } + - { offsetInCU: 0x41, offset: 0x6BA77, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketException, symObjAddr: 0xDF08, symBinAddr: 0x24C20, symSize: 0x0 } + - { offsetInCU: 0x61, offset: 0x6BA97, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketErrorDomain, symObjAddr: 0xDF10, symBinAddr: 0x24C28, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x6BAAD, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketQueueName, symObjAddr: 0xDF18, symBinAddr: 0x24C30, symSize: 0x0 } + - { offsetInCU: 0x8D, offset: 0x6BAC3, size: 0x8, addend: 0x0, symName: _MGCDAsyncUdpSocketThreadName, symObjAddr: 0xDF20, symBinAddr: 0x24C38, symSize: 0x0 } + - { offsetInCU: 0x97, offset: 0x6BACD, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]', symObjAddr: 0xB5D6, symBinAddr: 0x1C1AB, symSize: 0x58 } + - { offsetInCU: 0xBF, offset: 0x6BAF5, size: 0x8, addend: 0x0, symName: _startListenerThreadIfNeeded.predicate, symObjAddr: 0x491F8, symBinAddr: 0x2AB20, symSize: 0x0 } + - { offsetInCU: 0x125, offset: 0x6BB5B, size: 0x8, addend: 0x0, symName: _listenerThread, symObjAddr: 0x49200, symBinAddr: 0x2AB28, symSize: 0x0 } + - { offsetInCU: 0x65E, offset: 0x6C094, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket init]', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0xE } + - { offsetInCU: 0x6AB, offset: 0x6C0E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket initWithData:timeout:tag:]', symObjAddr: 0xE, symBinAddr: 0x10EEE, symSize: 0x8E } + - { offsetInCU: 0x73F, offset: 0x6C175, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSendPacket .cxx_destruct]', symObjAddr: 0x9C, symBinAddr: 0x10F7C, symSize: 0x3E } + - { offsetInCU: 0x773, offset: 0x6C1A9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket init]', symObjAddr: 0xDA, symBinAddr: 0x10FBA, symSize: 0x2F } + - { offsetInCU: 0x7AB, offset: 0x6C1E1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSpecialPacket .cxx_destruct]', symObjAddr: 0x109, symBinAddr: 0x10FE9, symSize: 0x28 } + - { offsetInCU: 0x7DF, offset: 0x6C215, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket init]', symObjAddr: 0x131, symBinAddr: 0x11011, symSize: 0x19 } + - { offsetInCU: 0x83B, offset: 0x6C271, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithSocketQueue:]', symObjAddr: 0x14A, symBinAddr: 0x1102A, symSize: 0x19 } + - { offsetInCU: 0x8AD, offset: 0x6C2E3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:]', symObjAddr: 0x163, symBinAddr: 0x11043, symSize: 0x15 } + - { offsetInCU: 0x92B, offset: 0x6C361, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket initWithDelegate:delegateQueue:socketQueue:]', symObjAddr: 0x178, symBinAddr: 0x11058, symSize: 0x1D5 } + - { offsetInCU: 0xB2E, offset: 0x6C564, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket dealloc]', symObjAddr: 0x34D, symBinAddr: 0x1122D, symSize: 0xFF } + - { offsetInCU: 0xC1A, offset: 0x6C650, size: 0x8, addend: 0x0, symName: '___29-[MGCDAsyncUdpSocket dealloc]_block_invoke', symObjAddr: 0x44C, symBinAddr: 0x1132C, symSize: 0x18 } + - { offsetInCU: 0xC6F, offset: 0x6C6A5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegate]', symObjAddr: 0x482, symBinAddr: 0x11344, symSize: 0xDE } + - { offsetInCU: 0xD08, offset: 0x6C73E, size: 0x8, addend: 0x0, symName: ___Block_byref_object_copy_, symObjAddr: 0x560, symBinAddr: 0x11422, symSize: 0x16 } + - { offsetInCU: 0xD2D, offset: 0x6C763, size: 0x8, addend: 0x0, symName: ___Block_byref_object_dispose_, symObjAddr: 0x576, symBinAddr: 0x11438, symSize: 0xF } + - { offsetInCU: 0xD58, offset: 0x6C78E, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket delegate]_block_invoke', symObjAddr: 0x585, symBinAddr: 0x11447, symSize: 0x32 } + - { offsetInCU: 0xDB7, offset: 0x6C7ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:synchronously:]', symObjAddr: 0x60E, symBinAddr: 0x11479, symSize: 0xC9 } + - { offsetInCU: 0xEC4, offset: 0x6C8FA, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setDelegate:synchronously:]_block_invoke', symObjAddr: 0x6D7, symBinAddr: 0x11542, symSize: 0x19 } + - { offsetInCU: 0xF17, offset: 0x6C94D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:]', symObjAddr: 0x73A, symBinAddr: 0x1155B, symSize: 0x14 } + - { offsetInCU: 0xF7B, offset: 0x6C9B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:]', symObjAddr: 0x74E, symBinAddr: 0x1156F, symSize: 0x17 } + - { offsetInCU: 0xFDF, offset: 0x6CA15, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket delegateQueue]', symObjAddr: 0x765, symBinAddr: 0x11586, symSize: 0xDC } + - { offsetInCU: 0x1084, offset: 0x6CABA, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket delegateQueue]_block_invoke', symObjAddr: 0x841, symBinAddr: 0x11662, symSize: 0x1E } + - { offsetInCU: 0x10D7, offset: 0x6CB0D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]', symObjAddr: 0x85F, symBinAddr: 0x11680, symSize: 0xC9 } + - { offsetInCU: 0x11D1, offset: 0x6CC07, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket setDelegateQueue:synchronously:]_block_invoke', symObjAddr: 0x928, symBinAddr: 0x11749, symSize: 0x19 } + - { offsetInCU: 0x1224, offset: 0x6CC5A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegateQueue:]', symObjAddr: 0x941, symBinAddr: 0x11762, symSize: 0x14 } + - { offsetInCU: 0x1288, offset: 0x6CCBE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegateQueue:]', symObjAddr: 0x955, symBinAddr: 0x11776, symSize: 0x17 } + - { offsetInCU: 0x12EC, offset: 0x6CD22, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]', symObjAddr: 0x96C, symBinAddr: 0x1178D, symSize: 0x161 } + - { offsetInCU: 0x13BA, offset: 0x6CDF0, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket getDelegate:delegateQueue:]_block_invoke', symObjAddr: 0xACD, symBinAddr: 0x118EE, symSize: 0x4B } + - { offsetInCU: 0x142A, offset: 0x6CE60, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]', symObjAddr: 0xB8F, symBinAddr: 0x11939, symSize: 0xFF } + - { offsetInCU: 0x1585, offset: 0x6CFBB, size: 0x8, addend: 0x0, symName: '___62-[MGCDAsyncUdpSocket setDelegate:delegateQueue:synchronously:]_block_invoke', symObjAddr: 0xC8E, symBinAddr: 0x11A38, symSize: 0x31 } + - { offsetInCU: 0x15E9, offset: 0x6D01F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setDelegate:delegateQueue:]', symObjAddr: 0xD17, symBinAddr: 0x11A69, symSize: 0x15 } + - { offsetInCU: 0x1664, offset: 0x6D09A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket synchronouslySetDelegate:delegateQueue:]', symObjAddr: 0xD2C, symBinAddr: 0x11A7E, symSize: 0x18 } + - { offsetInCU: 0x16DF, offset: 0x6D115, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Enabled]', symObjAddr: 0xD44, symBinAddr: 0x11A96, symSize: 0xDD } + - { offsetInCU: 0x1789, offset: 0x6D1BF, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv4Enabled]_block_invoke', symObjAddr: 0xE21, symBinAddr: 0x11B73, symSize: 0x1C } + - { offsetInCU: 0x17E4, offset: 0x6D21A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv4Enabled:]', symObjAddr: 0xE3D, symBinAddr: 0x11B8F, symSize: 0x82 } + - { offsetInCU: 0x1886, offset: 0x6D2BC, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv4Enabled:]_block_invoke', symObjAddr: 0xEBF, symBinAddr: 0x11C11, symSize: 0x1E } + - { offsetInCU: 0x18DB, offset: 0x6D311, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Enabled]', symObjAddr: 0xEDD, symBinAddr: 0x11C2F, symSize: 0xDD } + - { offsetInCU: 0x1985, offset: 0x6D3BB, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket isIPv6Enabled]_block_invoke', symObjAddr: 0xFBA, symBinAddr: 0x11D0C, symSize: 0x1A } + - { offsetInCU: 0x19E0, offset: 0x6D416, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPv6Enabled:]', symObjAddr: 0xFD4, symBinAddr: 0x11D26, symSize: 0x82 } + - { offsetInCU: 0x1A82, offset: 0x6D4B8, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket setIPv6Enabled:]_block_invoke', symObjAddr: 0x1056, symBinAddr: 0x11DA8, symSize: 0x21 } + - { offsetInCU: 0x1AD7, offset: 0x6D50D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4Preferred]', symObjAddr: 0x1077, symBinAddr: 0x11DC9, symSize: 0xDD } + - { offsetInCU: 0x1B81, offset: 0x6D5B7, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv4Preferred]_block_invoke', symObjAddr: 0x1154, symBinAddr: 0x11EA6, symSize: 0x1D } + - { offsetInCU: 0x1BDC, offset: 0x6D612, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6Preferred]', symObjAddr: 0x1171, symBinAddr: 0x11EC3, symSize: 0xDD } + - { offsetInCU: 0x1C86, offset: 0x6D6BC, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket isIPv6Preferred]_block_invoke', symObjAddr: 0x124E, symBinAddr: 0x11FA0, symSize: 0x1D } + - { offsetInCU: 0x1CE1, offset: 0x6D717, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPVersionNeutral]', symObjAddr: 0x126B, symBinAddr: 0x11FBD, symSize: 0xDD } + - { offsetInCU: 0x1D8B, offset: 0x6D7C1, size: 0x8, addend: 0x0, symName: '___40-[MGCDAsyncUdpSocket isIPVersionNeutral]_block_invoke', symObjAddr: 0x1348, symBinAddr: 0x1209A, symSize: 0x1C } + - { offsetInCU: 0x1DE6, offset: 0x6D81C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv4]', symObjAddr: 0x1364, symBinAddr: 0x120B6, symSize: 0x7F } + - { offsetInCU: 0x1E77, offset: 0x6D8AD, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv4]_block_invoke', symObjAddr: 0x13E3, symBinAddr: 0x12135, symSize: 0x18 } + - { offsetInCU: 0x1EB9, offset: 0x6D8EF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setPreferIPv6]', symObjAddr: 0x13FB, symBinAddr: 0x1214D, symSize: 0x7F } + - { offsetInCU: 0x1F4A, offset: 0x6D980, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket setPreferIPv6]_block_invoke', symObjAddr: 0x147A, symBinAddr: 0x121CC, symSize: 0x18 } + - { offsetInCU: 0x1F8C, offset: 0x6D9C2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setIPVersionNeutral]', symObjAddr: 0x1492, symBinAddr: 0x121E4, symSize: 0x7F } + - { offsetInCU: 0x201D, offset: 0x6DA53, size: 0x8, addend: 0x0, symName: '___41-[MGCDAsyncUdpSocket setIPVersionNeutral]_block_invoke', symObjAddr: 0x1511, symBinAddr: 0x12263, symSize: 0x18 } + - { offsetInCU: 0x205F, offset: 0x6DA95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]', symObjAddr: 0x1529, symBinAddr: 0x1227B, symSize: 0xE0 } + - { offsetInCU: 0x2109, offset: 0x6DB3F, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv4BufferSize]_block_invoke', symObjAddr: 0x1609, symBinAddr: 0x1235B, symSize: 0x1A } + - { offsetInCU: 0x2164, offset: 0x6DB9A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]', symObjAddr: 0x1623, symBinAddr: 0x12375, symSize: 0x83 } + - { offsetInCU: 0x2206, offset: 0x6DC3C, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv4BufferSize:]_block_invoke', symObjAddr: 0x16A6, symBinAddr: 0x123F8, symSize: 0x12 } + - { offsetInCU: 0x225B, offset: 0x6DC91, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]', symObjAddr: 0x16B8, symBinAddr: 0x1240A, symSize: 0xE0 } + - { offsetInCU: 0x2305, offset: 0x6DD3B, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket maxReceiveIPv6BufferSize]_block_invoke', symObjAddr: 0x1798, symBinAddr: 0x124EA, symSize: 0x18 } + - { offsetInCU: 0x2360, offset: 0x6DD96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]', symObjAddr: 0x17B0, symBinAddr: 0x12502, symSize: 0x82 } + - { offsetInCU: 0x2402, offset: 0x6DE38, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket setMaxReceiveIPv6BufferSize:]_block_invoke', symObjAddr: 0x1832, symBinAddr: 0x12584, symSize: 0x10 } + - { offsetInCU: 0x2457, offset: 0x6DE8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setMaxSendBufferSize:]', symObjAddr: 0x1842, symBinAddr: 0x12594, symSize: 0x83 } + - { offsetInCU: 0x24F9, offset: 0x6DF2F, size: 0x8, addend: 0x0, symName: '___43-[MGCDAsyncUdpSocket setMaxSendBufferSize:]_block_invoke', symObjAddr: 0x18C5, symBinAddr: 0x12617, symSize: 0x12 } + - { offsetInCU: 0x254E, offset: 0x6DF84, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maxSendBufferSize]', symObjAddr: 0x18D7, symBinAddr: 0x12629, symSize: 0xE0 } + - { offsetInCU: 0x25F8, offset: 0x6E02E, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket maxSendBufferSize]_block_invoke', symObjAddr: 0x19B7, symBinAddr: 0x12709, symSize: 0x1A } + - { offsetInCU: 0x2653, offset: 0x6E089, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket userData]', symObjAddr: 0x19D1, symBinAddr: 0x12723, symSize: 0x10D } + - { offsetInCU: 0x2716, offset: 0x6E14C, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket userData]_block_invoke', symObjAddr: 0x1ADE, symBinAddr: 0x12830, symSize: 0x21 } + - { offsetInCU: 0x2769, offset: 0x6E19F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setUserData:]', symObjAddr: 0x1AFF, symBinAddr: 0x12851, symSize: 0xAF } + - { offsetInCU: 0x284C, offset: 0x6E282, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket setUserData:]_block_invoke', symObjAddr: 0x1BAE, symBinAddr: 0x12900, symSize: 0x27 } + - { offsetInCU: 0x289F, offset: 0x6E2D5, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]', symObjAddr: 0x1BD5, symBinAddr: 0x12927, symSize: 0x111 } + - { offsetInCU: 0x29ED, offset: 0x6E423, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket notifyDidConnectToAddress:]_block_invoke', symObjAddr: 0x1CE6, symBinAddr: 0x12A38, symSize: 0x37 } + - { offsetInCU: 0x2A5D, offset: 0x6E493, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotConnect:]', symObjAddr: 0x1D1D, symBinAddr: 0x12A6F, symSize: 0xF2 } + - { offsetInCU: 0x2B63, offset: 0x6E599, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket notifyDidNotConnect:]_block_invoke', symObjAddr: 0x1E0F, symBinAddr: 0x12B61, symSize: 0x37 } + - { offsetInCU: 0x2BD3, offset: 0x6E609, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]', symObjAddr: 0x1E46, symBinAddr: 0x12B98, symSize: 0xB9 } + - { offsetInCU: 0x2C8E, offset: 0x6E6C4, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket notifyDidSendDataWithTag:]_block_invoke', symObjAddr: 0x1EFF, symBinAddr: 0x12C51, symSize: 0x37 } + - { offsetInCU: 0x2CFE, offset: 0x6E734, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]', symObjAddr: 0x1F36, symBinAddr: 0x12C88, symSize: 0xF3 } + - { offsetInCU: 0x2E15, offset: 0x6E84B, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket notifyDidNotSendDataWithTag:dueToError:]_block_invoke', symObjAddr: 0x2029, symBinAddr: 0x12D7B, symSize: 0x3B } + - { offsetInCU: 0x2E96, offset: 0x6E8CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]', symObjAddr: 0x2064, symBinAddr: 0x12DB6, symSize: 0x135 } + - { offsetInCU: 0x3067, offset: 0x6EA9D, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket notifyDidReceiveData:fromAddress:withFilterContext:]_block_invoke', symObjAddr: 0x2199, symBinAddr: 0x12EEB, symSize: 0x3F } + - { offsetInCU: 0x30F9, offset: 0x6EB2F, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x21D8, symBinAddr: 0x12F2A, symSize: 0x3A } + - { offsetInCU: 0x315E, offset: 0x6EB94, size: 0x8, addend: 0x0, symName: ___destroy_helper_block_e8_32s40s48s56s64s, symObjAddr: 0x2212, symBinAddr: 0x12F64, symSize: 0x3A } + - { offsetInCU: 0x31B9, offset: 0x6EBEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket notifyDidCloseWithError:]', symObjAddr: 0x224C, symBinAddr: 0x12F9E, symSize: 0xF2 } + - { offsetInCU: 0x32BF, offset: 0x6ECF5, size: 0x8, addend: 0x0, symName: '___46-[MGCDAsyncUdpSocket notifyDidCloseWithError:]_block_invoke', symObjAddr: 0x233E, symBinAddr: 0x13090, symSize: 0x37 } + - { offsetInCU: 0x332F, offset: 0x6ED65, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badConfigError:]', symObjAddr: 0x2375, symBinAddr: 0x130C7, symSize: 0xDE } + - { offsetInCU: 0x33D6, offset: 0x6EE0C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket badParamError:]', symObjAddr: 0x2453, symBinAddr: 0x131A5, symSize: 0xDE } + - { offsetInCU: 0x347D, offset: 0x6EEB3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket gaiError:]', symObjAddr: 0x2531, symBinAddr: 0x13283, symSize: 0xF3 } + - { offsetInCU: 0x3552, offset: 0x6EF88, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoErrorWithReason:]', symObjAddr: 0x2624, symBinAddr: 0x13376, symSize: 0x152 } + - { offsetInCU: 0x362A, offset: 0x6F060, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket errnoError]', symObjAddr: 0x2776, symBinAddr: 0x134C8, symSize: 0x14 } + - { offsetInCU: 0x367B, offset: 0x6F0B1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendTimeoutError]', symObjAddr: 0x278A, symBinAddr: 0x134DC, symSize: 0x118 } + - { offsetInCU: 0x3735, offset: 0x6F16B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketClosedError]', symObjAddr: 0x28A2, symBinAddr: 0x135F4, symSize: 0x118 } + - { offsetInCU: 0x37EF, offset: 0x6F225, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket otherError:]', symObjAddr: 0x29BA, symBinAddr: 0x1370C, symSize: 0xDE } + - { offsetInCU: 0x3896, offset: 0x6F2CC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preOp:]', symObjAddr: 0x2A98, symBinAddr: 0x137EA, symSize: 0x84 } + - { offsetInCU: 0x3933, offset: 0x6F369, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]', symObjAddr: 0x2B1C, symBinAddr: 0x1386E, symSize: 0x194 } + - { offsetInCU: 0x3B2A, offset: 0x6F560, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke', symObjAddr: 0x2CB0, symBinAddr: 0x13A02, symSize: 0x2B } + - { offsetInCU: 0x3B8C, offset: 0x6F5C2, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40b, symObjAddr: 0x2CDB, symBinAddr: 0x13A2D, symSize: 0x30 } + - { offsetInCU: 0x3BC1, offset: 0x6F5F7, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke.114', symObjAddr: 0x2D0B, symBinAddr: 0x13A5D, symSize: 0x3EC } + - { offsetInCU: 0x3F78, offset: 0x6F9AE, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket asyncResolveHost:port:withCompletionBlock:]_block_invoke_2', symObjAddr: 0x30F7, symBinAddr: 0x13E49, symSize: 0x2D } + - { offsetInCU: 0x3FE4, offset: 0x6FA1A, size: 0x8, addend: 0x0, symName: ___copy_helper_block_e8_32s40s48b, symObjAddr: 0x3124, symBinAddr: 0x13E76, symSize: 0x44 } + - { offsetInCU: 0x4025, offset: 0x6FA5B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getAddress:error:fromAddresses:]', symObjAddr: 0x3168, symBinAddr: 0x13EBA, symSize: 0x55E } + - { offsetInCU: 0x4427, offset: 0x6FE5D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertIntefaceDescription:port:intoAddress4:address6:]', symObjAddr: 0x36C6, symBinAddr: 0x14418, symSize: 0x3EA } + - { offsetInCU: 0x47EF, offset: 0x70225, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket convertNumericHost:port:intoAddress4:address6:]', symObjAddr: 0x3AB0, symBinAddr: 0x14802, symSize: 0x1E4 } + - { offsetInCU: 0x49BB, offset: 0x703F1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress4:]', symObjAddr: 0x3C94, symBinAddr: 0x149E6, symSize: 0x68 } + - { offsetInCU: 0x4A4E, offset: 0x70484, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnectedToAddress6:]', symObjAddr: 0x3CFC, symBinAddr: 0x14A4E, symSize: 0x78 } + - { offsetInCU: 0x4AE1, offset: 0x70517, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr4:]', symObjAddr: 0x3D74, symBinAddr: 0x14AC6, symSize: 0xBF } + - { offsetInCU: 0x4C10, offset: 0x70646, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket indexOfInterfaceAddr6:]', symObjAddr: 0x3E33, symBinAddr: 0x14B85, symSize: 0xD5 } + - { offsetInCU: 0x4D2C, offset: 0x70762, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]', symObjAddr: 0x3F08, symBinAddr: 0x14C5A, symSize: 0x186 } + - { offsetInCU: 0x4E6F, offset: 0x708A5, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke', symObjAddr: 0x408E, symBinAddr: 0x14DE0, symSize: 0x65 } + - { offsetInCU: 0x4EBD, offset: 0x708F3, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_2', symObjAddr: 0x40F3, symBinAddr: 0x14E45, symSize: 0x62 } + - { offsetInCU: 0x4F2C, offset: 0x70962, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke_3', symObjAddr: 0x4155, symBinAddr: 0x14EA7, symSize: 0x1C } + - { offsetInCU: 0x4FA0, offset: 0x709D6, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket4]_block_invoke.164', symObjAddr: 0x419B, symBinAddr: 0x14EC3, symSize: 0x1C } + - { offsetInCU: 0x4FFD, offset: 0x70A33, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]', symObjAddr: 0x41B7, symBinAddr: 0x14EDF, symSize: 0x192 } + - { offsetInCU: 0x50F6, offset: 0x70B2C, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke', symObjAddr: 0x4349, symBinAddr: 0x15071, symSize: 0x65 } + - { offsetInCU: 0x5144, offset: 0x70B7A, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_2', symObjAddr: 0x43AE, symBinAddr: 0x150D6, symSize: 0x65 } + - { offsetInCU: 0x51A0, offset: 0x70BD6, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_3', symObjAddr: 0x4413, symBinAddr: 0x1513B, symSize: 0x1C } + - { offsetInCU: 0x51FD, offset: 0x70C33, size: 0x8, addend: 0x0, symName: '___58-[MGCDAsyncUdpSocket setupSendAndReceiveSourcesForSocket6]_block_invoke_4', symObjAddr: 0x442F, symBinAddr: 0x15157, symSize: 0x1C } + - { offsetInCU: 0x525A, offset: 0x70C90, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSocket4:socket6:error:]', symObjAddr: 0x444B, symBinAddr: 0x15173, symSize: 0xED } + - { offsetInCU: 0x5354, offset: 0x70D8A, size: 0x8, addend: 0x0, symName: '___50-[MGCDAsyncUdpSocket createSocket4:socket6:error:]_block_invoke', symObjAddr: 0x4538, symBinAddr: 0x15260, symSize: 0x217 } + - { offsetInCU: 0x55A8, offset: 0x70FDE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createSockets:]', symObjAddr: 0x474F, symBinAddr: 0x15477, symSize: 0x53 } + - { offsetInCU: 0x564F, offset: 0x71085, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend4Source]', symObjAddr: 0x47A2, symBinAddr: 0x154CA, symSize: 0x28 } + - { offsetInCU: 0x56A0, offset: 0x710D6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendSend6Source]', symObjAddr: 0x47CA, symBinAddr: 0x154F2, symSize: 0x28 } + - { offsetInCU: 0x56E2, offset: 0x71118, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend4Source]', symObjAddr: 0x47F2, symBinAddr: 0x1551A, symSize: 0x28 } + - { offsetInCU: 0x5733, offset: 0x71169, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeSend6Source]', symObjAddr: 0x481A, symBinAddr: 0x15542, symSize: 0x28 } + - { offsetInCU: 0x5775, offset: 0x711AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive4Source]', symObjAddr: 0x4842, symBinAddr: 0x1556A, symSize: 0x28 } + - { offsetInCU: 0x57B7, offset: 0x711ED, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket suspendReceive6Source]', symObjAddr: 0x486A, symBinAddr: 0x15592, symSize: 0x2B } + - { offsetInCU: 0x57F9, offset: 0x7122F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive4Source]', symObjAddr: 0x4895, symBinAddr: 0x155BD, symSize: 0x28 } + - { offsetInCU: 0x583B, offset: 0x71271, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket resumeReceive6Source]', symObjAddr: 0x48BD, symBinAddr: 0x155E5, symSize: 0x2B } + - { offsetInCU: 0x587D, offset: 0x712B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket4]', symObjAddr: 0x48E8, symBinAddr: 0x15610, symSize: 0xB2 } + - { offsetInCU: 0x5934, offset: 0x7136A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSocket6]', symObjAddr: 0x499A, symBinAddr: 0x156C2, symSize: 0xBB } + - { offsetInCU: 0x59DC, offset: 0x71412, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeSockets]', symObjAddr: 0x4A55, symBinAddr: 0x1577D, symSize: 0x31 } + - { offsetInCU: 0x5A39, offset: 0x7146F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket getLocalAddress:host:port:forSocket:withFamily:]', symObjAddr: 0x4A86, symBinAddr: 0x157AE, symSize: 0x1D5 } + - { offsetInCU: 0x5C87, offset: 0x716BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress4Info]', symObjAddr: 0x4C5B, symBinAddr: 0x15983, symSize: 0xE5 } + - { offsetInCU: 0x5D69, offset: 0x7179F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedLocalAddress6Info]', symObjAddr: 0x4D40, symBinAddr: 0x15A68, symSize: 0xE5 } + - { offsetInCU: 0x5E4B, offset: 0x71881, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress]', symObjAddr: 0x4E25, symBinAddr: 0x15B4D, symSize: 0x155 } + - { offsetInCU: 0x5F35, offset: 0x7196B, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke', symObjAddr: 0x4F7A, symBinAddr: 0x15CA2, symSize: 0x6B } + - { offsetInCU: 0x5FB8, offset: 0x719EE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket localAddress]_block_invoke_2', symObjAddr: 0x4FE5, symBinAddr: 0x15D0D, symSize: 0x25 } + - { offsetInCU: 0x6002, offset: 0x71A38, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost]', symObjAddr: 0x5021, symBinAddr: 0x15D32, symSize: 0x155 } + - { offsetInCU: 0x60EC, offset: 0x71B22, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke', symObjAddr: 0x5176, symBinAddr: 0x15E87, symSize: 0x6B } + - { offsetInCU: 0x616F, offset: 0x71BA5, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localHost]_block_invoke_2', symObjAddr: 0x51E1, symBinAddr: 0x15EF2, symSize: 0x25 } + - { offsetInCU: 0x61B9, offset: 0x71BEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort]', symObjAddr: 0x5206, symBinAddr: 0x15F17, symSize: 0x126 } + - { offsetInCU: 0x628B, offset: 0x71CC1, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke', symObjAddr: 0x532C, symBinAddr: 0x1603D, symSize: 0x56 } + - { offsetInCU: 0x62EA, offset: 0x71D20, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket localPort]_block_invoke_2', symObjAddr: 0x5382, symBinAddr: 0x16093, symSize: 0x25 } + - { offsetInCU: 0x6334, offset: 0x71D6A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv4]', symObjAddr: 0x53A7, symBinAddr: 0x160B8, symSize: 0x155 } + - { offsetInCU: 0x641E, offset: 0x71E54, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke', symObjAddr: 0x54FC, symBinAddr: 0x1620D, symSize: 0x3C } + - { offsetInCU: 0x647D, offset: 0x71EB3, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv4]_block_invoke_2', symObjAddr: 0x5538, symBinAddr: 0x16249, symSize: 0x25 } + - { offsetInCU: 0x64C7, offset: 0x71EFD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv4]', symObjAddr: 0x555D, symBinAddr: 0x1626E, symSize: 0x155 } + - { offsetInCU: 0x65B1, offset: 0x71FE7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke', symObjAddr: 0x56B2, symBinAddr: 0x163C3, symSize: 0x3C } + - { offsetInCU: 0x6610, offset: 0x72046, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv4]_block_invoke_2', symObjAddr: 0x56EE, symBinAddr: 0x163FF, symSize: 0x25 } + - { offsetInCU: 0x665A, offset: 0x72090, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv4]', symObjAddr: 0x5713, symBinAddr: 0x16424, symSize: 0x126 } + - { offsetInCU: 0x672C, offset: 0x72162, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke', symObjAddr: 0x5839, symBinAddr: 0x1654A, symSize: 0x38 } + - { offsetInCU: 0x678B, offset: 0x721C1, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv4]_block_invoke_2', symObjAddr: 0x5871, symBinAddr: 0x16582, symSize: 0x25 } + - { offsetInCU: 0x67D5, offset: 0x7220B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localAddress_IPv6]', symObjAddr: 0x5896, symBinAddr: 0x165A7, symSize: 0x155 } + - { offsetInCU: 0x68BF, offset: 0x722F5, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke', symObjAddr: 0x59EB, symBinAddr: 0x166FC, symSize: 0x3C } + - { offsetInCU: 0x691E, offset: 0x72354, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket localAddress_IPv6]_block_invoke_2', symObjAddr: 0x5A27, symBinAddr: 0x16738, symSize: 0x25 } + - { offsetInCU: 0x6968, offset: 0x7239E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localHost_IPv6]', symObjAddr: 0x5A4C, symBinAddr: 0x1675D, symSize: 0x155 } + - { offsetInCU: 0x6A52, offset: 0x72488, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke', symObjAddr: 0x5BA1, symBinAddr: 0x168B2, symSize: 0x3C } + - { offsetInCU: 0x6AB1, offset: 0x724E7, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localHost_IPv6]_block_invoke_2', symObjAddr: 0x5BDD, symBinAddr: 0x168EE, symSize: 0x25 } + - { offsetInCU: 0x6AFB, offset: 0x72531, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket localPort_IPv6]', symObjAddr: 0x5C02, symBinAddr: 0x16913, symSize: 0x126 } + - { offsetInCU: 0x6BCD, offset: 0x72603, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke', symObjAddr: 0x5D28, symBinAddr: 0x16A39, symSize: 0x38 } + - { offsetInCU: 0x6C2C, offset: 0x72662, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket localPort_IPv6]_block_invoke_2', symObjAddr: 0x5D60, symBinAddr: 0x16A71, symSize: 0x25 } + - { offsetInCU: 0x6C76, offset: 0x726AC, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeUpdateCachedConnectedAddressInfo]', symObjAddr: 0x5D85, symBinAddr: 0x16A96, symSize: 0x211 } + - { offsetInCU: 0x6EB3, offset: 0x728E9, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedAddress]', symObjAddr: 0x5F96, symBinAddr: 0x16CA7, symSize: 0x155 } + - { offsetInCU: 0x6F9D, offset: 0x729D3, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke', symObjAddr: 0x60EB, symBinAddr: 0x16DFC, symSize: 0x3C } + - { offsetInCU: 0x6FFC, offset: 0x72A32, size: 0x8, addend: 0x0, symName: '___38-[MGCDAsyncUdpSocket connectedAddress]_block_invoke_2', symObjAddr: 0x6127, symBinAddr: 0x16E38, symSize: 0x25 } + - { offsetInCU: 0x7046, offset: 0x72A7C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedHost]', symObjAddr: 0x614C, symBinAddr: 0x16E5D, symSize: 0x155 } + - { offsetInCU: 0x7130, offset: 0x72B66, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke', symObjAddr: 0x62A1, symBinAddr: 0x16FB2, symSize: 0x3C } + - { offsetInCU: 0x718F, offset: 0x72BC5, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedHost]_block_invoke_2', symObjAddr: 0x62DD, symBinAddr: 0x16FEE, symSize: 0x25 } + - { offsetInCU: 0x71D9, offset: 0x72C0F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectedPort]', symObjAddr: 0x6302, symBinAddr: 0x17013, symSize: 0x126 } + - { offsetInCU: 0x72AB, offset: 0x72CE1, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke', symObjAddr: 0x6428, symBinAddr: 0x17139, symSize: 0x38 } + - { offsetInCU: 0x730A, offset: 0x72D40, size: 0x8, addend: 0x0, symName: '___35-[MGCDAsyncUdpSocket connectedPort]_block_invoke_2', symObjAddr: 0x6460, symBinAddr: 0x17171, symSize: 0x25 } + - { offsetInCU: 0x7354, offset: 0x72D8A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isConnected]', symObjAddr: 0x6485, symBinAddr: 0x17196, symSize: 0xDD } + - { offsetInCU: 0x73FE, offset: 0x72E34, size: 0x8, addend: 0x0, symName: '___33-[MGCDAsyncUdpSocket isConnected]_block_invoke', symObjAddr: 0x6562, symBinAddr: 0x17273, symSize: 0x1D } + - { offsetInCU: 0x7459, offset: 0x72E8F, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isClosed]', symObjAddr: 0x657F, symBinAddr: 0x17290, symSize: 0xDD } + - { offsetInCU: 0x7503, offset: 0x72F39, size: 0x8, addend: 0x0, symName: '___30-[MGCDAsyncUdpSocket isClosed]_block_invoke', symObjAddr: 0x665C, symBinAddr: 0x1736D, symSize: 0x1C } + - { offsetInCU: 0x755E, offset: 0x72F94, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv4]', symObjAddr: 0x6678, symBinAddr: 0x17389, symSize: 0xDD } + - { offsetInCU: 0x7608, offset: 0x7303E, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv4]_block_invoke', symObjAddr: 0x6755, symBinAddr: 0x17466, symSize: 0x3B } + - { offsetInCU: 0x7667, offset: 0x7309D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket isIPv6]', symObjAddr: 0x6790, symBinAddr: 0x174A1, symSize: 0xDD } + - { offsetInCU: 0x7711, offset: 0x73147, size: 0x8, addend: 0x0, symName: '___28-[MGCDAsyncUdpSocket isIPv6]_block_invoke', symObjAddr: 0x686D, symBinAddr: 0x1757E, symSize: 0x3B } + - { offsetInCU: 0x7770, offset: 0x731A6, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preBind:]', symObjAddr: 0x68A8, symBinAddr: 0x175B9, symSize: 0x8A } + - { offsetInCU: 0x77FC, offset: 0x73232, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:error:]', symObjAddr: 0x6932, symBinAddr: 0x17643, symSize: 0x17 } + - { offsetInCU: 0x787D, offset: 0x732B3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToPort:interface:error:]', symObjAddr: 0x6949, symBinAddr: 0x1765A, symSize: 0x1A0 } + - { offsetInCU: 0x79BE, offset: 0x733F4, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket bindToPort:interface:error:]_block_invoke', symObjAddr: 0x6AE9, symBinAddr: 0x177FA, symSize: 0x2E1 } + - { offsetInCU: 0x7CA4, offset: 0x736DA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket bindToAddress:error:]', symObjAddr: 0x6E61, symBinAddr: 0x17ADB, symSize: 0x19C } + - { offsetInCU: 0x7DD4, offset: 0x7380A, size: 0x8, addend: 0x0, symName: '___42-[MGCDAsyncUdpSocket bindToAddress:error:]_block_invoke', symObjAddr: 0x6FFD, symBinAddr: 0x17C77, symSize: 0x315 } + - { offsetInCU: 0x808E, offset: 0x73AC4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preConnect:]', symObjAddr: 0x7312, symBinAddr: 0x17F8C, symSize: 0x77 } + - { offsetInCU: 0x811A, offset: 0x73B50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToHost:onPort:error:]', symObjAddr: 0x7389, symBinAddr: 0x18003, symSize: 0x1A0 } + - { offsetInCU: 0x825B, offset: 0x73C91, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke', symObjAddr: 0x7529, symBinAddr: 0x181A3, symSize: 0x1E0 } + - { offsetInCU: 0x83D6, offset: 0x73E0C, size: 0x8, addend: 0x0, symName: '___49-[MGCDAsyncUdpSocket connectToHost:onPort:error:]_block_invoke_2', symObjAddr: 0x7709, symBinAddr: 0x18383, symSize: 0xA6 } + - { offsetInCU: 0x84FA, offset: 0x73F30, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectToAddress:error:]', symObjAddr: 0x77AF, symBinAddr: 0x18429, symSize: 0x19C } + - { offsetInCU: 0x862A, offset: 0x74060, size: 0x8, addend: 0x0, symName: '___45-[MGCDAsyncUdpSocket connectToAddress:error:]_block_invoke', symObjAddr: 0x794B, symBinAddr: 0x185C5, symSize: 0x1D3 } + - { offsetInCU: 0x87D3, offset: 0x74209, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeConnect]', symObjAddr: 0x7B1E, symBinAddr: 0x18798, symSize: 0x230 } + - { offsetInCU: 0x8A2B, offset: 0x74461, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress4:error:]', symObjAddr: 0x7D4E, symBinAddr: 0x189C8, symSize: 0xD1 } + - { offsetInCU: 0x8B43, offset: 0x74579, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket connectWithAddress6:error:]', symObjAddr: 0x7E1F, symBinAddr: 0x18A99, symSize: 0xD1 } + - { offsetInCU: 0x8C3A, offset: 0x74670, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket preJoin:]', symObjAddr: 0x7EF0, symBinAddr: 0x18B6A, symSize: 0x72 } + - { offsetInCU: 0x8CAC, offset: 0x746E2, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:error:]', symObjAddr: 0x7F62, symBinAddr: 0x18BDC, symSize: 0x17 } + - { offsetInCU: 0x8D2D, offset: 0x74763, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket joinMulticastGroup:onInterface:error:]', symObjAddr: 0x7F79, symBinAddr: 0x18BF3, symSize: 0x20 } + - { offsetInCU: 0x8DC9, offset: 0x747FF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:error:]', symObjAddr: 0x7F99, symBinAddr: 0x18C13, symSize: 0x17 } + - { offsetInCU: 0x8E4A, offset: 0x74880, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket leaveMulticastGroup:onInterface:error:]', symObjAddr: 0x7FB0, symBinAddr: 0x18C2A, symSize: 0x20 } + - { offsetInCU: 0x8EE6, offset: 0x7491C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]', symObjAddr: 0x7FD0, symBinAddr: 0x18C4A, symSize: 0x1DE } + - { offsetInCU: 0x908D, offset: 0x74AC3, size: 0x8, addend: 0x0, symName: '___73-[MGCDAsyncUdpSocket performMulticastRequest:forGroup:onInterface:error:]_block_invoke', symObjAddr: 0x81AE, symBinAddr: 0x18E28, symSize: 0x34E } + - { offsetInCU: 0x941A, offset: 0x74E50, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]', symObjAddr: 0x85A1, symBinAddr: 0x19176, symSize: 0x19C } + - { offsetInCU: 0x954A, offset: 0x74F80, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv4MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x873D, symBinAddr: 0x19312, symSize: 0x1C1 } + - { offsetInCU: 0x971A, offset: 0x75150, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]', symObjAddr: 0x88FE, symBinAddr: 0x194D3, symSize: 0x19C } + - { offsetInCU: 0x984A, offset: 0x75280, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendIPv6MulticastOnInterface:error:]_block_invoke', symObjAddr: 0x8A9A, symBinAddr: 0x1966F, symSize: 0x1B9 } + - { offsetInCU: 0x9A13, offset: 0x75449, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableReusePort:error:]', symObjAddr: 0x8C53, symBinAddr: 0x19828, symSize: 0x164 } + - { offsetInCU: 0x9B01, offset: 0x75537, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableReusePort:error:]_block_invoke', symObjAddr: 0x8DB7, symBinAddr: 0x1998C, symSize: 0x16D } + - { offsetInCU: 0x9C60, offset: 0x75696, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBroadcast:error:]', symObjAddr: 0x8F24, symBinAddr: 0x19AF9, symSize: 0x164 } + - { offsetInCU: 0x9D4E, offset: 0x75784, size: 0x8, addend: 0x0, symName: '___44-[MGCDAsyncUdpSocket enableBroadcast:error:]_block_invoke', symObjAddr: 0x9088, symBinAddr: 0x19C5D, symSize: 0x131 } + - { offsetInCU: 0x9E60, offset: 0x75896, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTag:]', symObjAddr: 0x91B9, symBinAddr: 0x19D8E, symSize: 0x1A } + - { offsetInCU: 0x9ED5, offset: 0x7590B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]', symObjAddr: 0x91D3, symBinAddr: 0x19DA8, symSize: 0xE7 } + - { offsetInCU: 0x9FEF, offset: 0x75A25, size: 0x8, addend: 0x0, symName: '___47-[MGCDAsyncUdpSocket sendData:withTimeout:tag:]_block_invoke', symObjAddr: 0x92BA, symBinAddr: 0x19E8F, symSize: 0x55 } + - { offsetInCU: 0xA05A, offset: 0x75A90, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]', symObjAddr: 0x930F, symBinAddr: 0x19EE4, symSize: 0x171 } + - { offsetInCU: 0xA20D, offset: 0x75C43, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke', symObjAddr: 0x9480, symBinAddr: 0x1A055, symSize: 0x99 } + - { offsetInCU: 0xA2DF, offset: 0x75D15, size: 0x8, addend: 0x0, symName: '___59-[MGCDAsyncUdpSocket sendData:toHost:port:withTimeout:tag:]_block_invoke_2', symObjAddr: 0x9519, symBinAddr: 0x1A0EE, symSize: 0x55 } + - { offsetInCU: 0xA34A, offset: 0x75D80, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]', symObjAddr: 0x956E, symBinAddr: 0x1A143, symSize: 0x12F } + - { offsetInCU: 0xA4C5, offset: 0x75EFB, size: 0x8, addend: 0x0, symName: '___57-[MGCDAsyncUdpSocket sendData:toAddress:withTimeout:tag:]_block_invoke', symObjAddr: 0x969D, symBinAddr: 0x1A272, symSize: 0x55 } + - { offsetInCU: 0xA530, offset: 0x75F66, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:]', symObjAddr: 0x96F2, symBinAddr: 0x1A2C7, symSize: 0x18 } + - { offsetInCU: 0xA5AB, offset: 0x75FE1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]', symObjAddr: 0x970A, symBinAddr: 0x1A2DF, symSize: 0x12D } + - { offsetInCU: 0xA775, offset: 0x761AB, size: 0x8, addend: 0x0, symName: '___61-[MGCDAsyncUdpSocket setSendFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0x9837, symBinAddr: 0x1A40C, symSize: 0x46 } + - { offsetInCU: 0xA7F6, offset: 0x7622C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket maybeDequeueSend]', symObjAddr: 0x987D, symBinAddr: 0x1A452, symSize: 0x1F0 } + - { offsetInCU: 0xA994, offset: 0x763CA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doPreSend]', symObjAddr: 0x9A6D, symBinAddr: 0x1A642, symSize: 0x384 } + - { offsetInCU: 0xAC59, offset: 0x7668F, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke', symObjAddr: 0x9DF1, symBinAddr: 0x1A9C6, symSize: 0xB6 } + - { offsetInCU: 0xAD0D, offset: 0x76743, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke_2', symObjAddr: 0x9EA7, symBinAddr: 0x1AA7C, symSize: 0x87 } + - { offsetInCU: 0xADA1, offset: 0x767D7, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doPreSend]_block_invoke.334', symObjAddr: 0x9F2E, symBinAddr: 0x1AB03, symSize: 0x47 } + - { offsetInCU: 0xAE00, offset: 0x76836, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSend]', symObjAddr: 0x9F75, symBinAddr: 0x1AB4A, symSize: 0x20D } + - { offsetInCU: 0xB06E, offset: 0x76AA4, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket endCurrentSend]', symObjAddr: 0xA182, symBinAddr: 0x1AD57, symSize: 0x50 } + - { offsetInCU: 0xB0C8, offset: 0x76AFE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doSendTimeout]', symObjAddr: 0xA1D2, symBinAddr: 0x1ADA7, symSize: 0x75 } + - { offsetInCU: 0xB15F, offset: 0x76B95, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]', symObjAddr: 0xA247, symBinAddr: 0x1AE1C, symSize: 0xBA } + - { offsetInCU: 0xB26D, offset: 0x76CA3, size: 0x8, addend: 0x0, symName: '___48-[MGCDAsyncUdpSocket setupSendTimerWithTimeout:]_block_invoke', symObjAddr: 0xA301, symBinAddr: 0x1AED6, symSize: 0x2F } + - { offsetInCU: 0xB2BB, offset: 0x76CF1, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket receiveOnce:]', symObjAddr: 0xA330, symBinAddr: 0x1AF05, symSize: 0x161 } + - { offsetInCU: 0xB398, offset: 0x76DCE, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke', symObjAddr: 0xA491, symBinAddr: 0x1B066, symSize: 0xB6 } + - { offsetInCU: 0xB44A, offset: 0x76E80, size: 0x8, addend: 0x0, symName: '___34-[MGCDAsyncUdpSocket receiveOnce:]_block_invoke_2', symObjAddr: 0xA547, symBinAddr: 0x1B11C, symSize: 0x2F } + - { offsetInCU: 0xB498, offset: 0x76ECE, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket beginReceiving:]', symObjAddr: 0xA576, symBinAddr: 0x1B14B, symSize: 0x161 } + - { offsetInCU: 0xB575, offset: 0x76FAB, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke', symObjAddr: 0xA6D7, symBinAddr: 0x1B2AC, symSize: 0xB6 } + - { offsetInCU: 0xB627, offset: 0x7705D, size: 0x8, addend: 0x0, symName: '___37-[MGCDAsyncUdpSocket beginReceiving:]_block_invoke_2', symObjAddr: 0xA78D, symBinAddr: 0x1B362, symSize: 0x2F } + - { offsetInCU: 0xB675, offset: 0x770AB, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket pauseReceiving]', symObjAddr: 0xA7BC, symBinAddr: 0x1B391, symSize: 0x7F } + - { offsetInCU: 0xB706, offset: 0x7713C, size: 0x8, addend: 0x0, symName: '___36-[MGCDAsyncUdpSocket pauseReceiving]_block_invoke', symObjAddr: 0xA83B, symBinAddr: 0x1B410, symSize: 0x5C } + - { offsetInCU: 0xB760, offset: 0x77196, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:]', symObjAddr: 0xA897, symBinAddr: 0x1B46C, symSize: 0x18 } + - { offsetInCU: 0xB7DB, offset: 0x77211, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]', symObjAddr: 0xA8AF, symBinAddr: 0x1B484, symSize: 0x12D } + - { offsetInCU: 0xB9A5, offset: 0x773DB, size: 0x8, addend: 0x0, symName: '___64-[MGCDAsyncUdpSocket setReceiveFilter:withQueue:isAsynchronous:]_block_invoke', symObjAddr: 0xA9DC, symBinAddr: 0x1B5B1, symSize: 0x46 } + - { offsetInCU: 0xBA26, offset: 0x7745C, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceive]', symObjAddr: 0xAA22, symBinAddr: 0x1B5F7, symSize: 0x71A } + - { offsetInCU: 0xBED9, offset: 0x7790F, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke', symObjAddr: 0xB13C, symBinAddr: 0x1BD11, symSize: 0x102 } + - { offsetInCU: 0xBFC0, offset: 0x779F6, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke_2', symObjAddr: 0xB23E, symBinAddr: 0x1BE13, symSize: 0x92 } + - { offsetInCU: 0xC05E, offset: 0x77A94, size: 0x8, addend: 0x0, symName: '___31-[MGCDAsyncUdpSocket doReceive]_block_invoke.361', symObjAddr: 0xB2D0, symBinAddr: 0x1BEA5, symSize: 0x79 } + - { offsetInCU: 0xC0F8, offset: 0x77B2E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket doReceiveEOF]', symObjAddr: 0xB349, symBinAddr: 0x1BF1E, symSize: 0x4C } + - { offsetInCU: 0xC160, offset: 0x77B96, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeWithError:]', symObjAddr: 0xB395, symBinAddr: 0x1BF6A, symSize: 0xA9 } + - { offsetInCU: 0xC252, offset: 0x77C88, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket close]', symObjAddr: 0xB43E, symBinAddr: 0x1C013, symSize: 0x7F } + - { offsetInCU: 0xC2E3, offset: 0x77D19, size: 0x8, addend: 0x0, symName: '___27-[MGCDAsyncUdpSocket close]_block_invoke', symObjAddr: 0xB4BD, symBinAddr: 0x1C092, symSize: 0x31 } + - { offsetInCU: 0xC338, offset: 0x77D6E, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeAfterSending]', symObjAddr: 0xB4EE, symBinAddr: 0x1C0C3, symSize: 0x7F } + - { offsetInCU: 0xC3C9, offset: 0x77DFF, size: 0x8, addend: 0x0, symName: '___39-[MGCDAsyncUdpSocket closeAfterSending]_block_invoke', symObjAddr: 0xB56D, symBinAddr: 0x1C142, symSize: 0x63 } + - { offsetInCU: 0xC42A, offset: 0x77E60, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket ignore:]', symObjAddr: 0xB5D0, symBinAddr: 0x1C1A5, symSize: 0x6 } + - { offsetInCU: 0xC4A1, offset: 0x77ED7, size: 0x8, addend: 0x0, symName: '___49+[MGCDAsyncUdpSocket startListenerThreadIfNeeded]_block_invoke', symObjAddr: 0xB62E, symBinAddr: 0x1C203, symSize: 0x63 } + - { offsetInCU: 0xC50E, offset: 0x77F44, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket listenerThread:]', symObjAddr: 0xB691, symBinAddr: 0x1C266, symSize: 0x114 } + - { offsetInCU: 0xC60E, offset: 0x78044, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket addStreamListener:]', symObjAddr: 0xB7A5, symBinAddr: 0x1C37A, symSize: 0xA0 } + - { offsetInCU: 0xC72D, offset: 0x78163, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket removeStreamListener:]', symObjAddr: 0xB845, symBinAddr: 0x1C41A, symSize: 0xA0 } + - { offsetInCU: 0xC840, offset: 0x78276, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket createReadAndWriteStreams:]', symObjAddr: 0xB8E5, symBinAddr: 0x1C4BA, symSize: 0x238 } + - { offsetInCU: 0xCA84, offset: 0x784BA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket registerForStreamCallbacks:]', symObjAddr: 0xBB1D, symBinAddr: 0x1C6F2, symSize: 0x1C2 } + - { offsetInCU: 0xCCC0, offset: 0x786F6, size: 0x8, addend: 0x0, symName: _CFReadStreamCallback, symObjAddr: 0xBCDF, symBinAddr: 0x1C8B4, symSize: 0x10E } + - { offsetInCU: 0xCE15, offset: 0x7884B, size: 0x8, addend: 0x0, symName: _CFWriteStreamCallback, symObjAddr: 0xBDED, symBinAddr: 0x1C9C2, symSize: 0x10E } + - { offsetInCU: 0xCF6A, offset: 0x789A0, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket addStreamsToRunLoop:]', symObjAddr: 0xBEFB, symBinAddr: 0x1CAD0, symSize: 0x72 } + - { offsetInCU: 0xD004, offset: 0x78A3A, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket openStreams:]', symObjAddr: 0xBF6D, symBinAddr: 0x1CB42, symSize: 0xBB } + - { offsetInCU: 0xD137, offset: 0x78B6D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket removeStreamsFromRunLoop]', symObjAddr: 0xC028, symBinAddr: 0x1CBFD, symSize: 0x4E } + - { offsetInCU: 0xD191, offset: 0x78BC7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket closeReadAndWriteStreams]', symObjAddr: 0xC076, symBinAddr: 0x1CC4B, symSize: 0xF8 } + - { offsetInCU: 0xD2B9, offset: 0x78CEF, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket applicationWillEnterForeground:]', symObjAddr: 0xC16E, symBinAddr: 0x1CD43, symSize: 0x7F } + - { offsetInCU: 0xD357, offset: 0x78D8D, size: 0x8, addend: 0x0, symName: '___53-[MGCDAsyncUdpSocket applicationWillEnterForeground:]_block_invoke', symObjAddr: 0xC1ED, symBinAddr: 0x1CDC2, symSize: 0x4A } + - { offsetInCU: 0xD3B1, offset: 0x78DE7, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket markSocketQueueTargetQueue:]', symObjAddr: 0xC237, symBinAddr: 0x1CE0C, symSize: 0x1C } + - { offsetInCU: 0xD42C, offset: 0x78E62, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket unmarkSocketQueueTargetQueue:]', symObjAddr: 0xC253, symBinAddr: 0x1CE28, symSize: 0x18 } + - { offsetInCU: 0xD494, offset: 0x78ECA, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket performBlock:]', symObjAddr: 0xC26B, symBinAddr: 0x1CE40, symSize: 0x38 } + - { offsetInCU: 0xD511, offset: 0x78F47, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socketFD]', symObjAddr: 0xC2A3, symBinAddr: 0x1CE78, symSize: 0x33 } + - { offsetInCU: 0xD557, offset: 0x78F8D, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket4FD]', symObjAddr: 0xC2D6, symBinAddr: 0x1CEAB, symSize: 0x2B } + - { offsetInCU: 0xD59D, offset: 0x78FD3, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket socket6FD]', symObjAddr: 0xC301, symBinAddr: 0x1CED6, symSize: 0x2B } + - { offsetInCU: 0xD5E3, offset: 0x79019, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket readStream]', symObjAddr: 0xC32C, symBinAddr: 0x1CF01, symSize: 0x57 } + - { offsetInCU: 0xD655, offset: 0x7908B, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket writeStream]', symObjAddr: 0xC383, symBinAddr: 0x1CF58, symSize: 0x57 } + - { offsetInCU: 0xD6C7, offset: 0x790FD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket enableBackgroundingOnSockets]', symObjAddr: 0xC3DA, symBinAddr: 0x1CFAF, symSize: 0x8 } + - { offsetInCU: 0xD6FB, offset: 0x79131, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr4:]', symObjAddr: 0xC3E2, symBinAddr: 0x1CFB7, symSize: 0x7D } + - { offsetInCU: 0xD77E, offset: 0x791B4, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromSockaddr6:]', symObjAddr: 0xC45F, symBinAddr: 0x1D034, symSize: 0x7D } + - { offsetInCU: 0xD802, offset: 0x79238, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr4:]', symObjAddr: 0xC4DC, symBinAddr: 0x1D0B1, symSize: 0x11 } + - { offsetInCU: 0xD845, offset: 0x7927B, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromSockaddr6:]', symObjAddr: 0xC4ED, symBinAddr: 0x1D0C2, symSize: 0x11 } + - { offsetInCU: 0xD888, offset: 0x792BE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket hostFromAddress:]', symObjAddr: 0xC4FE, symBinAddr: 0x1D0D3, symSize: 0x40 } + - { offsetInCU: 0xD91E, offset: 0x79354, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket portFromAddress:]', symObjAddr: 0xC53E, symBinAddr: 0x1D113, symSize: 0x31 } + - { offsetInCU: 0xD9A8, offset: 0x793DE, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket familyFromAddress:]', symObjAddr: 0xC56F, symBinAddr: 0x1D144, symSize: 0x30 } + - { offsetInCU: 0xDA32, offset: 0x79468, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv4Address:]', symObjAddr: 0xC59F, symBinAddr: 0x1D174, symSize: 0x34 } + - { offsetInCU: 0xDABC, offset: 0x794F2, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket isIPv6Address:]', symObjAddr: 0xC5D3, symBinAddr: 0x1D1A8, symSize: 0x34 } + - { offsetInCU: 0xDB46, offset: 0x7957C, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:fromAddress:]', symObjAddr: 0xC607, symBinAddr: 0x1D1DC, symSize: 0x18 } + - { offsetInCU: 0xDBDE, offset: 0x79614, size: 0x8, addend: 0x0, symName: '+[MGCDAsyncUdpSocket getHost:port:family:fromAddress:]', symObjAddr: 0xC61F, symBinAddr: 0x1D1F4, symSize: 0x19C } + - { offsetInCU: 0xDD87, offset: 0x797BD, size: 0x8, addend: 0x0, symName: '-[MGCDAsyncUdpSocket .cxx_destruct]', symObjAddr: 0xC7BB, symBinAddr: 0x1D390, symSize: 0x118 } + - { offsetInCU: 0xDDBB, offset: 0x797F1, size: 0x8, addend: 0x0, symName: ___CFReadStreamCallback_block_invoke, symObjAddr: 0xC8D3, symBinAddr: 0x1D4A8, symSize: 0x49 } + - { offsetInCU: 0xDE27, offset: 0x7985D, size: 0x8, addend: 0x0, symName: ___CFWriteStreamCallback_block_invoke, symObjAddr: 0xC91C, symBinAddr: 0x1D4F1, symSize: 0x49 } ... diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 deleted file mode 100755 index b908287..0000000 Binary files a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 and /dev/null differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json deleted file mode 100644 index ae72034..0000000 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json +++ /dev/null @@ -1,22794 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2.SSLOption", - "usr": "s:11IoTConnect29SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2.SSLOption", - "usr": "s:11IoTConnect29SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2.SSLOption", - "usr": "s:11IoTConnect29SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2.OfflineStorageOption", - "usr": "s:11IoTConnect220OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2.OfflineStorageOption", - "usr": "s:11IoTConnect220OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2.OfflineStorageOption", - "usr": "s:11IoTConnect220OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2.SDKClientOption", - "usr": "s:11IoTConnect215SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect215SDKClientOptionVACycfc", - "mangledName": "$s11IoTConnect215SDKClientOptionVACycfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect215SDKClientOptionV", - "mangledName": "$s11IoTConnect215SDKClientOptionV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect217ReachabilityErrorO", - "mangledName": "$s11IoTConnect217ReachabilityErrorO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvp", - "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvg", - "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvg", - "moduleName": "IoTConnect2", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", - "mangledName": "$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", - "mangledName": "$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", - "mangledName": "$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC13startNotifieryyKF", - "mangledName": "$s11IoTConnect212ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC12stopNotifieryyF", - "mangledName": "$s11IoTConnect212ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvp", - "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvg", - "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:11IoTConnect212ReachabilityC", - "mangledName": "$s11IoTConnect212ReachabilityC", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2.IoTConnectConfig", - "usr": "s:11IoTConnect20A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2.DebugConfig", - "usr": "s:11IoTConnect211DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2.MqttConfig", - "usr": "s:11IoTConnect210MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2.SDKClientOption", - "usr": "s:11IoTConnect215SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect20A14TConnectConfigV", - "mangledName": "$s11IoTConnect20A14TConnectConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvp", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvg", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvs", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvM", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect211DebugConfigV", - "mangledName": "$s11IoTConnect211DebugConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2.CertificateConfig", - "usr": "s:11IoTConnect217CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", - "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2.CertificateConfig", - "usr": "s:11IoTConnect217CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", - "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2.OfflineStorageConfig", - "usr": "s:11IoTConnect220OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", - "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2.OfflineStorageConfig", - "usr": "s:11IoTConnect220OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", - "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect210MqttConfigV", - "mangledName": "$s11IoTConnect210MqttConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvp", - "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvg", - "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect217CertificateConfigV", - "mangledName": "$s11IoTConnect217CertificateConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect220OfflineStorageConfigV", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect218MqttConnectionTypeO", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect220OfflineStorageOptionV", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEV", - "printedName": "DEV", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "AVNET", - "printedName": "AVNET", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "QA", - "printedName": "QA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO2QAyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO2QAyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect215IOTCEnvironmentO", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect20A4TCPfO2azyA2CmF", - "mangledName": "$s11IoTConnect20A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect20A4TCPfO3awsyA2CmF", - "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvp", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvg", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect20A4TCPfO", - "mangledName": "$s11IoTConnect20A4TCPfO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvp", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvg", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvs", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvM", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect29SSLOptionV", - "mangledName": "$s11IoTConnect29SSLOptionV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect211CommandTypeO8rawValueSivp", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueSivg", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect211CommandTypeO", - "mangledName": "$s11IoTConnect211CommandTypeO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2.SDKClient", - "usr": "s:11IoTConnect29SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect29SDKClientC6sharedACvpZ", - "mangledName": "$s11IoTConnect29SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2.SDKClient", - "usr": "s:11IoTConnect29SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SDKClientC6sharedACvgZ", - "mangledName": "$s11IoTConnect29SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2.IoTConnectConfig", - "usr": "s:11IoTConnect20A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC11getAllTwinsyyF", - "mangledName": "$s11IoTConnect29SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", - "mangledName": "$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", - "mangledName": "$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11IoTConnect29SDKClientC", - "mangledName": "$s11IoTConnect29SDKClientC", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS11IoTConnect2E6stringS2S_tcfc", - "mangledName": "$sSS11IoTConnect2E6stringS2S_tcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4310, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35224, - "length": 79, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35302, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2702, - "length": 61, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2721, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2751, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2762, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2465, - "length": 22, - "value": "\"SDKClient initialize\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 deleted file mode 100644 index c48f7a4..0000000 Binary files a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 and /dev/null differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml deleted file mode 100644 index 57d17f4..0000000 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml +++ /dev/null @@ -1,1831 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' -relocations: - - { offsetInCU: 0x34, offset: 0x57F7E, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6CFF0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x57FB3, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6D020, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E088, symBinAddr: 0x88A30, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58043, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x407C, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5805F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x40C0, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x5807B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x40C4, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x580D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x4380, symSize: 0xD94 } - - { offsetInCU: 0x470, offset: 0x58439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1154, symBinAddr: 0x5114, symSize: 0x384 } - - { offsetInCU: 0x4D3, offset: 0x5849C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x14D8, symBinAddr: 0x5498, symSize: 0x20 } - - { offsetInCU: 0x500, offset: 0x584C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x16A4, symBinAddr: 0x5664, symSize: 0x6C8 } - - { offsetInCU: 0x804, offset: 0x587CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D6C, symBinAddr: 0x5D2C, symSize: 0x3E4 } - - { offsetInCU: 0xABA, offset: 0x58A83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2150, symBinAddr: 0x6110, symSize: 0x914 } - - { offsetInCU: 0xF90, offset: 0x58F59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A64, symBinAddr: 0x6A24, symSize: 0x678 } - - { offsetInCU: 0x138A, offset: 0x59353, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x30DC, symBinAddr: 0x709C, symSize: 0x3C18 } - - { offsetInCU: 0x2E80, offset: 0x5AE49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6D04, symBinAddr: 0xACB4, symSize: 0x150 } - - { offsetInCU: 0x2F6A, offset: 0x5AF33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6E54, symBinAddr: 0xAE04, symSize: 0x304 } - - { offsetInCU: 0x315B, offset: 0x5B124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7158, symBinAddr: 0xB108, symSize: 0x3C8 } - - { offsetInCU: 0x34C4, offset: 0x5B48D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7520, symBinAddr: 0xB4D0, symSize: 0x2E4 } - - { offsetInCU: 0x3698, offset: 0x5B661, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x7804, symBinAddr: 0xB7B4, symSize: 0x240 } - - { offsetInCU: 0x382A, offset: 0x5B7F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x7A44, symBinAddr: 0xB9F4, symSize: 0x244 } - - { offsetInCU: 0x39BC, offset: 0x5B985, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C88, symBinAddr: 0xBC38, symSize: 0x430 } - - { offsetInCU: 0x3B25, offset: 0x5BAEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x80B8, symBinAddr: 0xC068, symSize: 0x650 } - - { offsetInCU: 0x3E38, offset: 0x5BE01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x8708, symBinAddr: 0xC6B8, symSize: 0x224 } - - { offsetInCU: 0x4049, offset: 0x5C012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9B54, symBinAddr: 0xDB04, symSize: 0x15A8 } - - { offsetInCU: 0x5725, offset: 0x5D6EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4000, symSize: 0x3C } - - { offsetInCU: 0x5755, offset: 0x5D71E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x403C, symSize: 0x40 } - - { offsetInCU: 0x592D, offset: 0x5D8F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x14F8, symBinAddr: 0x54B8, symSize: 0x8 } - - { offsetInCU: 0x5941, offset: 0x5D90A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1500, symBinAddr: 0x54C0, symSize: 0x3C } - - { offsetInCU: 0x5955, offset: 0x5D91E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x153C, symBinAddr: 0x54FC, symSize: 0x168 } - - { offsetInCU: 0x5E9B, offset: 0x5DE64, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x89A0, symBinAddr: 0xC950, symSize: 0xC } - - { offsetInCU: 0x5EAF, offset: 0x5DE78, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x89AC, symBinAddr: 0xC95C, symSize: 0x4 } - - { offsetInCU: 0x5EC3, offset: 0x5DE8C, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x89B0, symBinAddr: 0xC960, symSize: 0x20 } - - { offsetInCU: 0x5ED7, offset: 0x5DEA0, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x89D0, symBinAddr: 0xC980, symSize: 0x28 } - - { offsetInCU: 0x5FE8, offset: 0x5DFB1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8F08, symBinAddr: 0xCEB8, symSize: 0x2C } - - { offsetInCU: 0x5FFC, offset: 0x5DFC5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F34, symBinAddr: 0xCEE4, symSize: 0x2C } - - { offsetInCU: 0x6010, offset: 0x5DFD9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8FA0, symBinAddr: 0xCF50, symSize: 0x2C } - - { offsetInCU: 0x6024, offset: 0x5DFED, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8FCC, symBinAddr: 0xCF7C, symSize: 0x2C } - - { offsetInCU: 0x6059, offset: 0x5E022, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x91E8, symBinAddr: 0xD198, symSize: 0x210 } - - { offsetInCU: 0x60AB, offset: 0x5E074, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x93F8, symBinAddr: 0xD3A8, symSize: 0x68 } - - { offsetInCU: 0x610C, offset: 0x5E0D5, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x95BC, symBinAddr: 0xD56C, symSize: 0x1DC } - - { offsetInCU: 0x6657, offset: 0x5E620, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB16C, symBinAddr: 0xF11C, symSize: 0x40 } - - { offsetInCU: 0x666B, offset: 0x5E634, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB1AC, symBinAddr: 0xF15C, symSize: 0x20 } - - { offsetInCU: 0x667F, offset: 0x5E648, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB1CC, symBinAddr: 0xF17C, symSize: 0x10 } - - { offsetInCU: 0x6693, offset: 0x5E65C, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB1DC, symBinAddr: 0xF18C, symSize: 0x3C } - - { offsetInCU: 0x66A7, offset: 0x5E670, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB278, symBinAddr: 0xF228, symSize: 0x44 } - - { offsetInCU: 0x66BB, offset: 0x5E684, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB428, symBinAddr: 0xF3D8, symSize: 0x10 } - - { offsetInCU: 0x66CF, offset: 0x5E698, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB438, symBinAddr: 0xF3E8, symSize: 0x10 } - - { offsetInCU: 0x66E3, offset: 0x5E6AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xB448, symBinAddr: 0xF3F8, symSize: 0x5C } - - { offsetInCU: 0x66F7, offset: 0x5E6C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xB4A4, symBinAddr: 0xF454, symSize: 0x30C } - - { offsetInCU: 0x670B, offset: 0x5E6D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB7B0, symBinAddr: 0xF760, symSize: 0x240 } - - { offsetInCU: 0x671F, offset: 0x5E6E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB9F0, symBinAddr: 0xF9A0, symSize: 0x70 } - - { offsetInCU: 0x6733, offset: 0x5E6FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xBA60, symBinAddr: 0xFA10, symSize: 0x34 } - - { offsetInCU: 0x6747, offset: 0x5E710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xBA94, symBinAddr: 0xFA44, symSize: 0x174 } - - { offsetInCU: 0x675B, offset: 0x5E724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xBC08, symBinAddr: 0xFBB8, symSize: 0xB4 } - - { offsetInCU: 0x676F, offset: 0x5E738, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xBCBC, symBinAddr: 0xFC6C, symSize: 0x10 } - - { offsetInCU: 0x6783, offset: 0x5E74C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xBCCC, symBinAddr: 0xFC7C, symSize: 0x34 } - - { offsetInCU: 0x6797, offset: 0x5E760, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xBD80, symBinAddr: 0xFD30, symSize: 0x5C } - - { offsetInCU: 0x67AB, offset: 0x5E774, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBE80, symBinAddr: 0xFE30, symSize: 0x2C } - - { offsetInCU: 0x67BF, offset: 0x5E788, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBEAC, symBinAddr: 0xFE5C, symSize: 0x2C } - - { offsetInCU: 0x67D3, offset: 0x5E79C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBED8, symBinAddr: 0xFE88, symSize: 0x2C } - - { offsetInCU: 0x67E7, offset: 0x5E7B0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBF04, symBinAddr: 0xFEB4, symSize: 0x2C } - - { offsetInCU: 0x67FB, offset: 0x5E7C4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBF30, symBinAddr: 0xFEE0, symSize: 0x2C } - - { offsetInCU: 0x680F, offset: 0x5E7D8, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBF5C, symBinAddr: 0xFF0C, symSize: 0x2C } - - { offsetInCU: 0x6823, offset: 0x5E7EC, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBF88, symBinAddr: 0xFF38, symSize: 0x2C } - - { offsetInCU: 0x6C2B, offset: 0x5EBF4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8A0C, symBinAddr: 0xC9BC, symSize: 0x14 } - - { offsetInCU: 0x6C69, offset: 0x5EC32, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8A2C, symBinAddr: 0xC9DC, symSize: 0x8 } - - { offsetInCU: 0x6CB8, offset: 0x5EC81, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A34, symBinAddr: 0xC9E4, symSize: 0x14 } - - { offsetInCU: 0x6D55, offset: 0x5ED1E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A48, symBinAddr: 0xC9F8, symSize: 0x14 } - - { offsetInCU: 0x6DEA, offset: 0x5EDB3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A5C, symBinAddr: 0xCA0C, symSize: 0x14 } - - { offsetInCU: 0x6E87, offset: 0x5EE50, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A70, symBinAddr: 0xCA20, symSize: 0x30 } - - { offsetInCU: 0x6FFA, offset: 0x5EFC3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8AA0, symBinAddr: 0xCA50, symSize: 0x2C } - - { offsetInCU: 0x7187, offset: 0x5F150, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8ACC, symBinAddr: 0xCA7C, symSize: 0x24 } - - { offsetInCU: 0x7273, offset: 0x5F23C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8AF0, symBinAddr: 0xCAA0, symSize: 0x14 } - - { offsetInCU: 0x72D9, offset: 0x5F2A2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8B04, symBinAddr: 0xCAB4, symSize: 0x14 } - - { offsetInCU: 0x733F, offset: 0x5F308, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8B18, symBinAddr: 0xCAC8, symSize: 0x14 } - - { offsetInCU: 0x73B4, offset: 0x5F37D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8B2C, symBinAddr: 0xCADC, symSize: 0x14 } - - { offsetInCU: 0x745D, offset: 0x5F426, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B40, symBinAddr: 0xCAF0, symSize: 0x14 } - - { offsetInCU: 0x74D4, offset: 0x5F49D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B54, symBinAddr: 0xCB04, symSize: 0x14 } - - { offsetInCU: 0x758C, offset: 0x5F555, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B68, symBinAddr: 0xCB18, symSize: 0x14 } - - { offsetInCU: 0x7626, offset: 0x5F5EF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B7C, symBinAddr: 0xCB2C, symSize: 0x10 } - - { offsetInCU: 0x768E, offset: 0x5F657, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B8C, symBinAddr: 0xCB3C, symSize: 0x28 } - - { offsetInCU: 0x76AA, offset: 0x5F673, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8BB4, symBinAddr: 0xCB64, symSize: 0x14 } - - { offsetInCU: 0x7726, offset: 0x5F6EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8BE4, symBinAddr: 0xCB94, symSize: 0x14 } - - { offsetInCU: 0x7757, offset: 0x5F720, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8BF8, symBinAddr: 0xCBA8, symSize: 0x14 } - - { offsetInCU: 0x7788, offset: 0x5F751, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8C0C, symBinAddr: 0xCBBC, symSize: 0x14 } - - { offsetInCU: 0x77B9, offset: 0x5F782, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8C20, symBinAddr: 0xCBD0, symSize: 0x30 } - - { offsetInCU: 0x77E8, offset: 0x5F7B1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C50, symBinAddr: 0xCC00, symSize: 0x2C } - - { offsetInCU: 0x7819, offset: 0x5F7E2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C7C, symBinAddr: 0xCC2C, symSize: 0x24 } - - { offsetInCU: 0x784A, offset: 0x5F813, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8CA0, symBinAddr: 0xCC50, symSize: 0x14 } - - { offsetInCU: 0x787B, offset: 0x5F844, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8CB4, symBinAddr: 0xCC64, symSize: 0x14 } - - { offsetInCU: 0x78AC, offset: 0x5F875, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8CC8, symBinAddr: 0xCC78, symSize: 0x14 } - - { offsetInCU: 0x78DD, offset: 0x5F8A6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8CDC, symBinAddr: 0xCC8C, symSize: 0x14 } - - { offsetInCU: 0x790E, offset: 0x5F8D7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8CF0, symBinAddr: 0xCCA0, symSize: 0x14 } - - { offsetInCU: 0x793F, offset: 0x5F908, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8D04, symBinAddr: 0xCCB4, symSize: 0x14 } - - { offsetInCU: 0x7970, offset: 0x5F939, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8D18, symBinAddr: 0xCCC8, symSize: 0x14 } - - { offsetInCU: 0x79A1, offset: 0x5F96A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8D2C, symBinAddr: 0xCCDC, symSize: 0x10 } - - { offsetInCU: 0x79D2, offset: 0x5F99B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D3C, symBinAddr: 0xCCEC, symSize: 0x28 } - - { offsetInCU: 0x79EE, offset: 0x5F9B7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D64, symBinAddr: 0xCD14, symSize: 0x14 } - - { offsetInCU: 0x7A2E, offset: 0x5F9F7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D84, symBinAddr: 0xCD34, symSize: 0x40 } - - { offsetInCU: 0x7AAC, offset: 0x5FA75, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8DC4, symBinAddr: 0xCD74, symSize: 0x70 } - - { offsetInCU: 0x7B3F, offset: 0x5FB08, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E7C, symBinAddr: 0xCE2C, symSize: 0x4 } - - { offsetInCU: 0x7B5F, offset: 0x5FB28, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E7C, symBinAddr: 0xCE2C, symSize: 0x4 } - - { offsetInCU: 0x7B7F, offset: 0x5FB48, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E80, symBinAddr: 0xCE30, symSize: 0x4 } - - { offsetInCU: 0x7B9F, offset: 0x5FB68, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E80, symBinAddr: 0xCE30, symSize: 0x4 } - - { offsetInCU: 0x7BC5, offset: 0x5FB8E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E84, symBinAddr: 0xCE34, symSize: 0x40 } - - { offsetInCU: 0x7C34, offset: 0x5FBFD, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8EC4, symBinAddr: 0xCE74, symSize: 0x8 } - - { offsetInCU: 0x7C5F, offset: 0x5FC28, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8ECC, symBinAddr: 0xCE7C, symSize: 0x3C } - - { offsetInCU: 0x7C90, offset: 0x5FC59, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FF8, symBinAddr: 0xCFA8, symSize: 0x14 } - - { offsetInCU: 0x7CC1, offset: 0x5FC8A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x900C, symBinAddr: 0xCFBC, symSize: 0x3C } - - { offsetInCU: 0x7D01, offset: 0x5FCCA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9048, symBinAddr: 0xCFF8, symSize: 0x88 } - - { offsetInCU: 0x7D82, offset: 0x5FD4B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9164, symBinAddr: 0xD114, symSize: 0x84 } - - { offsetInCU: 0x7DB6, offset: 0x5FD7F, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x9798, symBinAddr: 0xD748, symSize: 0xB0 } - - { offsetInCU: 0x7EA2, offset: 0x5FE6B, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9848, symBinAddr: 0xD7F8, symSize: 0x1F0 } - - { offsetInCU: 0x80D1, offset: 0x6009A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x80F1, offset: 0x600BA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8105, offset: 0x600CE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8125, offset: 0x600EE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8139, offset: 0x60102, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x814D, offset: 0x60116, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8161, offset: 0x6012A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8244, offset: 0x6020D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x8264, offset: 0x6022D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x8278, offset: 0x60241, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x8298, offset: 0x60261, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x82AC, offset: 0x60275, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x82C0, offset: 0x60289, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x82D4, offset: 0x6029D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x837B, offset: 0x60344, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBFB4, symBinAddr: 0xFF64, symSize: 0x80 } - - { offsetInCU: 0x840C, offset: 0x603D5, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xC034, symBinAddr: 0xFFE4, symSize: 0x90 } - - { offsetInCU: 0x85CE, offset: 0x60597, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x90DC, symBinAddr: 0xD08C, symSize: 0x10 } - - { offsetInCU: 0x85EA, offset: 0x605B3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x90EC, symBinAddr: 0xD09C, symSize: 0xC } - - { offsetInCU: 0x8654, offset: 0x6061D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x90F8, symBinAddr: 0xD0A8, symSize: 0x44 } - - { offsetInCU: 0x867D, offset: 0x60646, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x913C, symBinAddr: 0xD0EC, symSize: 0x28 } - - { offsetInCU: 0x86B8, offset: 0x60681, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x90D0, symBinAddr: 0xD080, symSize: 0xC } - - { offsetInCU: 0x8796, offset: 0x6075F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8A20, symBinAddr: 0xC9D0, symSize: 0xC } - - { offsetInCU: 0x87C8, offset: 0x60791, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8BC8, symBinAddr: 0xCB78, symSize: 0x10 } - - { offsetInCU: 0x87E4, offset: 0x607AD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8BD8, symBinAddr: 0xCB88, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x609B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100A4, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x609D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100A4, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x60A09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x100B4, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x60B38, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x100E0, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x60B4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x100F4, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x60B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x10104, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x60BDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x10124, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x60C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0x1013C, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x60CBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0x10168, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x60CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0x10170, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x60D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0x10194, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x60D33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0x101A0, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x60D4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x20F8, symBinAddr: 0x121CC, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x60D95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0x101FC, symSize: 0x41C } - - { offsetInCU: 0x2F5, offset: 0x60DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1428, symBinAddr: 0x114FC, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x60E21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1478, symBinAddr: 0x1154C, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x60E44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x24CC, symBinAddr: 0x125A0, symSize: 0x145C } - - { offsetInCU: 0x381, offset: 0x60E76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x544, symBinAddr: 0x10618, symSize: 0x110 } - - { offsetInCU: 0x3CD, offset: 0x60EC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14C8, symBinAddr: 0x1159C, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x60F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x14D0, symBinAddr: 0x115A4, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x60FF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x115E4, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11644, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61099, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11644, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x610B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x11648, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x610EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x159C, symBinAddr: 0x11670, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x61106, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15A8, symBinAddr: 0x1167C, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x61122, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3928, symBinAddr: 0x139FC, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x61166, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvgTf4d_n', symObjAddr: 0x3994, symBinAddr: 0x13A68, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x6119A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1604, symBinAddr: 0x116D8, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x611D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1654, symBinAddr: 0x11728, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x611F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x39A0, symBinAddr: 0x13A74, symSize: 0x258 } - - { offsetInCU: 0x771, offset: 0x61266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x654, symBinAddr: 0x10728, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x61291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16A4, symBinAddr: 0x11778, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x612BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16AC, symBinAddr: 0x11780, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x612ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16D0, symBinAddr: 0x117A4, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x61309, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16DC, symBinAddr: 0x117B0, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x61325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5B54, symBinAddr: 0x15BE4, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x6136B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x674, symBinAddr: 0x10748, symSize: 0x18C } - - { offsetInCU: 0x8CB, offset: 0x613C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1738, symBinAddr: 0x1180C, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x613F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1788, symBinAddr: 0x1185C, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x6141A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x15D7C, symSize: 0x320 } - - { offsetInCU: 0x975, offset: 0x6146A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x800, symBinAddr: 0x108D4, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x61495, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17C8, symBinAddr: 0x1189C, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x614C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17D0, symBinAddr: 0x118A4, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x614F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x17F4, symBinAddr: 0x118C8, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x6150D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x600C, symBinAddr: 0x1609C, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x61553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x820, symBinAddr: 0x108F4, symSize: 0x164 } - - { offsetInCU: 0xAB3, offset: 0x615A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1850, symBinAddr: 0x11924, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x615DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1890, symBinAddr: 0x11964, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x61602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6164, symBinAddr: 0x161F4, symSize: 0x2D8 } - - { offsetInCU: 0xB51, offset: 0x61646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x984, symBinAddr: 0x10A58, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x61671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18C8, symBinAddr: 0x1199C, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x6169C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x119A4, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x616CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18F4, symBinAddr: 0x119C8, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x616E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1900, symBinAddr: 0x119D4, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x61705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x643C, symBinAddr: 0x164CC, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x6174B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9A4, symBinAddr: 0x10A78, symSize: 0x1B4 } - - { offsetInCU: 0xCAB, offset: 0x617A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x195C, symBinAddr: 0x11A30, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x617D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19CC, symBinAddr: 0x11AA0, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x617FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6584, symBinAddr: 0x16614, symSize: 0x4E8 } - - { offsetInCU: 0xD55, offset: 0x6184A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xB58, symBinAddr: 0x10C2C, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61875, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x11B00, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x618A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A34, symBinAddr: 0x11B08, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x618D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A58, symBinAddr: 0x11B2C, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x618ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A64, symBinAddr: 0x11B38, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x61909, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B38, symBinAddr: 0x16BC8, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x6194F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB78, symBinAddr: 0x10C4C, symSize: 0x204 } - - { offsetInCU: 0xEAF, offset: 0x619A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x11B94, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x619DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B24, symBinAddr: 0x11BF8, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x619FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6DAC, symBinAddr: 0x16E3C, symSize: 0x58C } - - { offsetInCU: 0xF59, offset: 0x61A4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xD7C, symBinAddr: 0x10E50, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61A99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B74, symBinAddr: 0x11C48, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x61B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1B8C, symBinAddr: 0x11C60, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x61C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1BD0, symBinAddr: 0x11CA4, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x61C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x11D0C, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x61CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C40, symBinAddr: 0x11D14, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x61CDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1C64, symBinAddr: 0x11D38, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x61CF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C70, symBinAddr: 0x11D44, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x61D13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x737C, symBinAddr: 0x1740C, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x61D59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD94, symBinAddr: 0x10E68, symSize: 0x128 } - - { offsetInCU: 0x12B9, offset: 0x61DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1CCC, symBinAddr: 0x11DA0, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x61DE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CF8, symBinAddr: 0x11DCC, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x61E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7434, symBinAddr: 0x174C4, symSize: 0x1B0 } - - { offsetInCU: 0x136F, offset: 0x61E64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xEBC, symBinAddr: 0x10F90, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x61E8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1D14, symBinAddr: 0x11DE8, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x61EBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D1C, symBinAddr: 0x11DF0, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x61EEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D40, symBinAddr: 0x11E14, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x61F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D4C, symBinAddr: 0x11E20, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x61F23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7628, symBinAddr: 0x176B8, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x61F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEDC, symBinAddr: 0x10FB0, symSize: 0x1DC } - - { offsetInCU: 0x14C9, offset: 0x61FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DA8, symBinAddr: 0x11E7C, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x61FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E00, symBinAddr: 0x11ED4, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x62018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x783C, symBinAddr: 0x178CC, symSize: 0x370 } - - { offsetInCU: 0x1567, offset: 0x6205C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x10B8, symBinAddr: 0x1118C, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1E48, symBinAddr: 0x11F1C, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x620B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E50, symBinAddr: 0x11F24, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x620E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E74, symBinAddr: 0x11F48, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x620FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x11F54, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x6211B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7BAC, symBinAddr: 0x17C3C, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x62161, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10D8, symBinAddr: 0x111AC, symSize: 0x1FC } - - { offsetInCU: 0x16C1, offset: 0x621B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EDC, symBinAddr: 0x11FB0, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x621ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F24, symBinAddr: 0x11FF8, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x62210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D80, symBinAddr: 0x17E10, symSize: 0x390 } - - { offsetInCU: 0x176B, offset: 0x62260, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x12D4, symBinAddr: 0x113A8, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x6228B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FE8, symBinAddr: 0x120BC, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x622B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FF0, symBinAddr: 0x120C4, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x622E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2014, symBinAddr: 0x120E8, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x62303, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2020, symBinAddr: 0x120F4, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x6231F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8198, symBinAddr: 0x18228, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x62365, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12EC, symBinAddr: 0x113C0, symSize: 0x13C } - - { offsetInCU: 0x18C5, offset: 0x623BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x207C, symBinAddr: 0x12150, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x623F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x20C0, symBinAddr: 0x12194, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x62414, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8294, symBinAddr: 0x18324, symSize: 0x1DC } - - { offsetInCU: 0x195C, offset: 0x62451, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3C38, symBinAddr: 0x13CCC, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x62465, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3C5C, symBinAddr: 0x13CF0, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62479, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3CA0, symBinAddr: 0x13D34, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x6248D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3CC0, symBinAddr: 0x13D54, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x624A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3D04, symBinAddr: 0x13D98, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x624B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3D48, symBinAddr: 0x13DDC, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x624C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3D50, symBinAddr: 0x13DE0, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x624DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x3DA0, symBinAddr: 0x13E30, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x624F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x3E2C, symBinAddr: 0x13EBC, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x62505, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x3E34, symBinAddr: 0x13EC4, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x62519, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x3E38, symBinAddr: 0x13EC8, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x6252D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x3E3C, symBinAddr: 0x13ECC, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x62541, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x3E4C, symBinAddr: 0x13EDC, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62555, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x4714, symBinAddr: 0x147A4, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62569, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x4724, symBinAddr: 0x147B4, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x6257D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4728, symBinAddr: 0x147B8, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x62591, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x476C, symBinAddr: 0x147FC, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x625A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4770, symBinAddr: 0x14800, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x625B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x47B4, symBinAddr: 0x14844, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x625CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x47B8, symBinAddr: 0x14848, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x625E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x47FC, symBinAddr: 0x1488C, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x625F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4840, symBinAddr: 0x148D0, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x62609, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4884, symBinAddr: 0x14914, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x6261D, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x48C8, symBinAddr: 0x14958, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x62631, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x490C, symBinAddr: 0x1499C, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62645, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4950, symBinAddr: 0x149E0, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62659, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x4994, symBinAddr: 0x14A24, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x6266D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x49D8, symBinAddr: 0x14A68, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x62681, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x14AAC, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62695, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x4A60, symBinAddr: 0x14AF0, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x626A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x14B34, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x626BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x14B78, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x626D1, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4B2C, symBinAddr: 0x14BBC, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x626E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4B38, symBinAddr: 0x14BC8, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x626F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4BC8, symBinAddr: 0x14C58, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x6270D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4C84, symBinAddr: 0x14D14, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x62721, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4C8C, symBinAddr: 0x14D1C, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62735, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4C90, symBinAddr: 0x14D20, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62749, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4C98, symBinAddr: 0x14D28, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x6275D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4CA8, symBinAddr: 0x14D38, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x62771, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4CD0, symBinAddr: 0x14D60, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62785, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4D14, symBinAddr: 0x14DA4, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62799, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4D88, symBinAddr: 0x14E18, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x627AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4D9C, symBinAddr: 0x14E2C, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x627C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x4DE8, symBinAddr: 0x14E78, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x627D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x4E30, symBinAddr: 0x14EC0, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x627E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x4E78, symBinAddr: 0x14F08, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x627FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x4E88, symBinAddr: 0x14F18, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x62811, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x4EC0, symBinAddr: 0x14F50, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x4F34, symBinAddr: 0x14FC4, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62839, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4FF0, symBinAddr: 0x15080, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x6284D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x500C, symBinAddr: 0x1509C, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x62861, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5088, symBinAddr: 0x15118, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62875, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x50D0, symBinAddr: 0x15160, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62889, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x5124, symBinAddr: 0x151B4, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x6289D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x5134, symBinAddr: 0x151C4, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x628B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x515C, symBinAddr: 0x151EC, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x628C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5198, symBinAddr: 0x15228, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x628D9, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5204, symBinAddr: 0x15294, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x628ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5210, symBinAddr: 0x152A0, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x62901, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5254, symBinAddr: 0x152E4, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x62915, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x529C, symBinAddr: 0x1532C, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62929, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x52DC, symBinAddr: 0x1536C, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x6293D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x52EC, symBinAddr: 0x1537C, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x62951, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x533C, symBinAddr: 0x153CC, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62965, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x53E8, symBinAddr: 0x15478, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62979, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x54FC, symBinAddr: 0x1558C, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x6298D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5528, symBinAddr: 0x155B8, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x629A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x55C4, symBinAddr: 0x15654, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x629B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x560C, symBinAddr: 0x1569C, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x629C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x5668, symBinAddr: 0x156F8, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x629DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x5678, symBinAddr: 0x15708, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x629F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x56D0, symBinAddr: 0x15760, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x62A05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x5794, symBinAddr: 0x15824, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x62A19, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x58D8, symBinAddr: 0x15968, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62A2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x590C, symBinAddr: 0x1599C, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62A41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x59C0, symBinAddr: 0x15A50, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62A55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5A08, symBinAddr: 0x15A98, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x5A6C, symBinAddr: 0x15AFC, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62A7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5A7C, symBinAddr: 0x15B0C, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62A91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x5A80, symBinAddr: 0x15B10, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5AC4, symBinAddr: 0x15B54, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5AC8, symBinAddr: 0x15B58, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62ACD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5B0C, symBinAddr: 0x15B9C, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62AE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5B10, symBinAddr: 0x15BA0, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62AF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x6A6C, symBinAddr: 0x16AFC, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x62B09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x6AB0, symBinAddr: 0x16B40, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x62B1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6AF4, symBinAddr: 0x16B84, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x62B31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7338, symBinAddr: 0x173C8, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x62B45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x75E4, symBinAddr: 0x17674, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x62B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8110, symBinAddr: 0x181A0, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x62B6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8154, symBinAddr: 0x181E4, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x62B81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8470, symBinAddr: 0x18500, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x62B95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x84B4, symBinAddr: 0x18544, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x62BA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x84F8, symBinAddr: 0x18588, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x62BBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x85A0, symBinAddr: 0x18630, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x62BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x85E4, symBinAddr: 0x18674, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x62BE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8674, symBinAddr: 0x18704, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x62BF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8730, symBinAddr: 0x187C0, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x62C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8734, symBinAddr: 0x187C4, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x62C21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8744, symBinAddr: 0x187D4, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x62C35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x87D4, symBinAddr: 0x18864, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x62C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8890, symBinAddr: 0x18920, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x62C5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8894, symBinAddr: 0x18924, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x62C71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x88A4, symBinAddr: 0x18934, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x62C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8934, symBinAddr: 0x189C4, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x62C99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x89F0, symBinAddr: 0x18A80, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x62CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x89F8, symBinAddr: 0x18A88, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x62CC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x89FC, symBinAddr: 0x18A8C, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x62CD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A08, symBinAddr: 0x18A98, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x62CE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8A18, symBinAddr: 0x18AA8, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x62CFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8AA8, symBinAddr: 0x18B38, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x62D11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8B64, symBinAddr: 0x18BF4, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x62D25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8B68, symBinAddr: 0x18BF8, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x62D39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8B80, symBinAddr: 0x18C10, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x62D4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8B84, symBinAddr: 0x18C14, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x62D61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8B94, symBinAddr: 0x18C24, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x62D75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8BCC, symBinAddr: 0x18C5C, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x62D89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8C40, symBinAddr: 0x18CD0, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x62D9D, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8D04, symBinAddr: 0x18D94, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x62DB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x8D28, symBinAddr: 0x18DB8, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x62DC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x8D9C, symBinAddr: 0x18E2C, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x62DD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x8DE4, symBinAddr: 0x18E74, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x62DED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x8E38, symBinAddr: 0x18EC8, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x62E01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x8E48, symBinAddr: 0x18ED8, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x62E15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x8E80, symBinAddr: 0x18F10, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x62E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x8EE4, symBinAddr: 0x18F74, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x62E3D, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8F90, symBinAddr: 0x19020, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x62E51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x8FA4, symBinAddr: 0x19034, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x62E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x9008, symBinAddr: 0x19098, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x62E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9050, symBinAddr: 0x190E0, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x62E8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x90A0, symBinAddr: 0x19130, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x62EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x90B0, symBinAddr: 0x19140, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x62EB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x90E8, symBinAddr: 0x19178, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x62EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9154, symBinAddr: 0x191E4, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x62EDD, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9208, symBinAddr: 0x19298, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x62EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x922C, symBinAddr: 0x192BC, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x62F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9298, symBinAddr: 0x19328, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x62F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x92E0, symBinAddr: 0x19370, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x62F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9330, symBinAddr: 0x193C0, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x62F41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9340, symBinAddr: 0x193D0, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x62F55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9344, symBinAddr: 0x193D4, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x62F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9388, symBinAddr: 0x19418, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x62F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x938C, symBinAddr: 0x1941C, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x62F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x93D0, symBinAddr: 0x19460, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x62FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x93D4, symBinAddr: 0x19464, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x62FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9418, symBinAddr: 0x194A8, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x62FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x941C, symBinAddr: 0x194AC, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x62FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9460, symBinAddr: 0x194F0, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x62FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9464, symBinAddr: 0x194F4, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x63009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x94A8, symBinAddr: 0x19538, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x6301D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x94AC, symBinAddr: 0x1953C, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x63031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94F0, symBinAddr: 0x19580, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x63045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94F4, symBinAddr: 0x19584, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9538, symBinAddr: 0x195C8, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x6306D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x953C, symBinAddr: 0x195CC, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x63081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9580, symBinAddr: 0x19610, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x63095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9584, symBinAddr: 0x19614, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x630A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95C8, symBinAddr: 0x19658, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x630BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95CC, symBinAddr: 0x1965C, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x630D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9610, symBinAddr: 0x196A0, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x630E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9614, symBinAddr: 0x196A4, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x630F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9658, symBinAddr: 0x196E8, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x6310D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x965C, symBinAddr: 0x196EC, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x63121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96A0, symBinAddr: 0x19730, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x63135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96A4, symBinAddr: 0x19734, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x96E8, symBinAddr: 0x19778, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x6315D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x96EC, symBinAddr: 0x1977C, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x63171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9730, symBinAddr: 0x197C0, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x63185, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9734, symBinAddr: 0x197C4, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63199, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9778, symBinAddr: 0x19808, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x631AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x97BC, symBinAddr: 0x1984C, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x631C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9800, symBinAddr: 0x19890, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x631D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9844, symBinAddr: 0x198D4, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x631E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x98D4, symBinAddr: 0x19964, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x631FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9990, symBinAddr: 0x19A20, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x63211, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9994, symBinAddr: 0x19A24, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x63225, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9AF8, symBinAddr: 0x19B88, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9AFC, symBinAddr: 0x19B8C, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x6324D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9B0C, symBinAddr: 0x19B9C, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x63261, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9B9C, symBinAddr: 0x19C2C, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x63275, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9C58, symBinAddr: 0x19CE8, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9C5C, symBinAddr: 0x19CEC, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x6329D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9C6C, symBinAddr: 0x19CFC, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x632B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9C70, symBinAddr: 0x19D00, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x632C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9CB4, symBinAddr: 0x19D44, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x632D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9CB8, symBinAddr: 0x19D48, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x632ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9CFC, symBinAddr: 0x19D8C, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x63301, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9D00, symBinAddr: 0x19D90, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x63315, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D44, symBinAddr: 0x19DD4, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63329, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D48, symBinAddr: 0x19DD8, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x6333D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D8C, symBinAddr: 0x19E1C, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x63351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x19E20, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x63365, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9DD4, symBinAddr: 0x19E64, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9DD8, symBinAddr: 0x19E68, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x6338D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E1C, symBinAddr: 0x19EAC, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x633A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9E20, symBinAddr: 0x19EB0, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x633B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E64, symBinAddr: 0x19EF4, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x633C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E68, symBinAddr: 0x19EF8, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x633DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EAC, symBinAddr: 0x19F3C, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x633F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9EB0, symBinAddr: 0x19F40, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x63441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0x101AC, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x6345D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0x101D4, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1534, symBinAddr: 0x11608, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63548, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15B4, symBinAddr: 0x11688, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15DC, symBinAddr: 0x116B0, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0x117BC, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x635A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1710, symBinAddr: 0x117E4, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x635C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x118D4, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x635E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1828, symBinAddr: 0x118FC, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x63602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x190C, symBinAddr: 0x119E0, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1934, symBinAddr: 0x11A08, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x63640, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A70, symBinAddr: 0x11B44, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x6365C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A98, symBinAddr: 0x11B6C, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x636A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1BF8, symBinAddr: 0x11CCC, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63747, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C7C, symBinAddr: 0x11D50, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x63763, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1CA4, symBinAddr: 0x11D78, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63785, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1D58, symBinAddr: 0x11E2C, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x637A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1D80, symBinAddr: 0x11E54, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x637C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E8C, symBinAddr: 0x11F60, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x637DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1EB4, symBinAddr: 0x11F88, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x63801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x202C, symBinAddr: 0x12100, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x6381D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2054, symBinAddr: 0x12128, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x639C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A05C, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63A46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A05C, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x1A0E0, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63ABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x1A11C, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63AFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x1A170, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x63B1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x1A180, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x63B45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x128, symBinAddr: 0x1A184, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x63B63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x13C, symBinAddr: 0x1A198, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x63B9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x150, symBinAddr: 0x1A1AC, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x63BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x1A1BC, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x63BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x1A1C0, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x63C14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x1A1EC, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x63C53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x1A220, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x63C81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x1A230, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x63CAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x1A234, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x63CCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x1A23C, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x63D04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x1A244, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x63D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x1A254, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x63D5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x1A258, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x63D7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x1A260, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x63DB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x1A268, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x63DE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x1A278, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x63E0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x1A27C, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x63E2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x1A2A8, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x63E6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x1A2DC, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x63E99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1A2EC, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x63EC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x1A2F0, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x63EE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x1A31C, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x63F21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x1A350, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x63F4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x1A360, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x63F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x1A364, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x63F98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x1A370, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x63FD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x1A37C, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x64004, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1A38C, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x6402F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x1A390, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x6404D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x1A39C, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x6408B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x1A3A8, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x640B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x1A3B8, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x640E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x1A3BC, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x640F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x1A3EC, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x6410D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x1A42C, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x64121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x1A4D0, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x64135, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x1A5D4, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x1A600, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x6415D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x1A69C, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x64171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x1A6E4, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64185, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x1A744, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64367, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1A754, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x64392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x1ACF8, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x643AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x1AF68, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x643E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1AA00, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x64411, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x1AF40, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x6442D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x1AFC0, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64459, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x1B018, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64489, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x1B11C, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x6449D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x1B1AC, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x644B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x1B268, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x644C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x1B26C, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x644D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x1B27C, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x644ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x1B30C, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x64501, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x1B3C8, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x64515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x1B3D0, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64529, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x1B3D4, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x6453D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x1B3DC, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x64551, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x1B3EC, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64565, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x1B3F0, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64579, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x1B434, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x6458D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x1B438, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x646EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1B484, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x64718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1B598, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC9printLogs33_D78766567F29622279F8000760588BB6LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x1B970, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64877, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x1B5B4, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x648CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x1B5D4, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x64920, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x1B660, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64947, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x1B664, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x6496E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x1B668, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64995, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x1B6DC, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x649E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1B6E0, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64A3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x1B770, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64A80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x1B7D4, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x1B864, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x64B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x1B8F4, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x64B5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x1B968, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x64B78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x1B96C, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x64BF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x1BA1C, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x64CD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1C0E8, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x64D2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1C15C, symSize: 0x2A4 } - - { offsetInCU: 0x7C0, offset: 0x64E5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF7C, symBinAddr: 0x1C400, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x64EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFE4, symBinAddr: 0x1C468, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x64F19, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1048, symBinAddr: 0x1C4CC, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x64F2D, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1058, symBinAddr: 0x1C4DC, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x64F41, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10EC, symBinAddr: 0x1C4EC, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x64F55, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1134, symBinAddr: 0x1C534, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x64F69, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1148, symBinAddr: 0x1C548, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x64F7D, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x118C, symBinAddr: 0x1C58C, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x64F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11CC, symBinAddr: 0x1C5CC, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x64FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1390, symBinAddr: 0x1C790, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x64FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13C0, symBinAddr: 0x1C7C0, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x64FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x157C, symBinAddr: 0x1C97C, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x65274, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x29C8, symBinAddr: 0x871D0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x6528E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x29D0, symBinAddr: 0x871D8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x6529C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1C9BC, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x652D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1C9F0, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x6530E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1CA30, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65339, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1CA64, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1CAA4, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x653B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1CAD4, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x653DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1CAD8, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x653F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1CAFC, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x6542B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1CB10, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x654BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CB80, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x654DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CB80, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x65526, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1CBDC, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x655A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1CC48, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x6562A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1CD80, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65649, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1CDDC, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x65672, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1CE3C, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x656A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1CE78, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x65714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1CFB0, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x65733, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1CFFC, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x6575C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1D04C, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x6578B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1D088, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x657B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1D090, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x657D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1D0C0, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x657F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1D0FC, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x65851, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1D194, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x6586E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x818, symBinAddr: 0x1D1C4, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65897, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x85C, symBinAddr: 0x1D208, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x658C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1D244, symSize: 0x68 } - - { offsetInCU: 0x710, offset: 0x65935, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1D2AC, symSize: 0x4 } - - { offsetInCU: 0x779, offset: 0x6599E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x904, symBinAddr: 0x1D2B0, symSize: 0x128 } - - { offsetInCU: 0x853, offset: 0x65A78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xC50, symBinAddr: 0x1D5FC, symSize: 0x70 } - - { offsetInCU: 0x87D, offset: 0x65AA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xCC0, symBinAddr: 0x1D66C, symSize: 0x30 } - - { offsetInCU: 0x8A2, offset: 0x65AC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xCF0, symBinAddr: 0x1D69C, symSize: 0x198 } - - { offsetInCU: 0x957, offset: 0x65B7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xE88, symBinAddr: 0x1D834, symSize: 0x14 } - - { offsetInCU: 0x9A4, offset: 0x65BC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0xE9C, symBinAddr: 0x1D848, symSize: 0x64 } - - { offsetInCU: 0xA40, offset: 0x65C65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0xF30, symBinAddr: 0x1D8DC, symSize: 0x6C } - - { offsetInCU: 0xB74, offset: 0x65D99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x17D4, symBinAddr: 0x1E180, symSize: 0x258 } - - { offsetInCU: 0xC05, offset: 0x65E2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1A90, symBinAddr: 0x1E43C, symSize: 0x1A0 } - - { offsetInCU: 0xCED, offset: 0x65F12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1CC4C, symSize: 0x88 } - - { offsetInCU: 0xD23, offset: 0x65F48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1CCD4, symSize: 0xAC } - - { offsetInCU: 0xD63, offset: 0x65F88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1CDCC, symSize: 0x10 } - - { offsetInCU: 0xD77, offset: 0x65F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1CE2C, symSize: 0x10 } - - { offsetInCU: 0xD8B, offset: 0x65FB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1CE7C, symSize: 0x88 } - - { offsetInCU: 0xDC1, offset: 0x65FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1CF04, symSize: 0xAC } - - { offsetInCU: 0xE01, offset: 0x66026, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1D138, symSize: 0x5C } - - { offsetInCU: 0xEA2, offset: 0x660C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xA2C, symBinAddr: 0x1D3D8, symSize: 0x224 } - - { offsetInCU: 0xF16, offset: 0x6613B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1648, symBinAddr: 0x1DFF4, symSize: 0x13C } - - { offsetInCU: 0xFE0, offset: 0x66205, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0xF00, symBinAddr: 0x1D8AC, symSize: 0x30 } - - { offsetInCU: 0x10CF, offset: 0x662F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x17B0, symBinAddr: 0x1E15C, symSize: 0x24 } - - { offsetInCU: 0x111F, offset: 0x66344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0xF9C, symBinAddr: 0x1D948, symSize: 0x22C } - - { offsetInCU: 0x1311, offset: 0x66536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x11C8, symBinAddr: 0x1DB74, symSize: 0xC } - - { offsetInCU: 0x1368, offset: 0x6658D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DB80, symSize: 0x4 } - - { offsetInCU: 0x1384, offset: 0x665A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DB80, symSize: 0x4 } - - { offsetInCU: 0x139D, offset: 0x665C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DB80, symSize: 0x4 } - - { offsetInCU: 0x13B6, offset: 0x665DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11D8, symBinAddr: 0x1DB84, symSize: 0x4 } - - { offsetInCU: 0x13CE, offset: 0x665F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11DC, symBinAddr: 0x1DB88, symSize: 0xB8 } - - { offsetInCU: 0x146E, offset: 0x66693, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12D4, symBinAddr: 0x1DC80, symSize: 0x4 } - - { offsetInCU: 0x1486, offset: 0x666AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2478, symBinAddr: 0x1EE14, symSize: 0x7C } - - { offsetInCU: 0x1563, offset: 0x66788, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x1294, symBinAddr: 0x1DC40, symSize: 0x40 } - - { offsetInCU: 0x1598, offset: 0x667BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11isReachableSbvg', symObjAddr: 0x12D8, symBinAddr: 0x1DC84, symSize: 0x2C } - - { offsetInCU: 0x15E3, offset: 0x66808, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1304, symBinAddr: 0x1DCB0, symSize: 0x2C } - - { offsetInCU: 0x162E, offset: 0x66853, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1330, symBinAddr: 0x1DCDC, symSize: 0x2C } - - { offsetInCU: 0x16BB, offset: 0x668E0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x135C, symBinAddr: 0x1DD08, symSize: 0x198 } - - { offsetInCU: 0x1B6A, offset: 0x66D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x14F4, symBinAddr: 0x1DEA0, symSize: 0x13C } - - { offsetInCU: 0x1C67, offset: 0x66E8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1630, symBinAddr: 0x1DFDC, symSize: 0x18 } - - { offsetInCU: 0x1C7B, offset: 0x66EA0, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1784, symBinAddr: 0x1E130, symSize: 0x2C } - - { offsetInCU: 0x1C93, offset: 0x66EB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1A2C, symBinAddr: 0x1E3D8, symSize: 0x44 } - - { offsetInCU: 0x1CA7, offset: 0x66ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1A70, symBinAddr: 0x1E41C, symSize: 0x20 } - - { offsetInCU: 0x1CBB, offset: 0x66EE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1C30, symBinAddr: 0x1E5DC, symSize: 0x20 } - - { offsetInCU: 0x1CCF, offset: 0x66EF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1C50, symBinAddr: 0x1E5FC, symSize: 0x4 } - - { offsetInCU: 0x1CE3, offset: 0x66F08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1C54, symBinAddr: 0x1E600, symSize: 0x44 } - - { offsetInCU: 0x1CF7, offset: 0x66F1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1C98, symBinAddr: 0x1E644, symSize: 0x4 } - - { offsetInCU: 0x1D0B, offset: 0x66F30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1C9C, symBinAddr: 0x1E648, symSize: 0x44 } - - { offsetInCU: 0x1D1F, offset: 0x66F44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwCP', symObjAddr: 0x1DBC, symBinAddr: 0x1E768, symSize: 0x5C } - - { offsetInCU: 0x1D33, offset: 0x66F58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1E18, symBinAddr: 0x1E7C4, symSize: 0x18 } - - { offsetInCU: 0x1D47, offset: 0x66F6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1E30, symBinAddr: 0x1E7DC, symSize: 0x14 } - - { offsetInCU: 0x1D5B, offset: 0x66F80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1E44, symBinAddr: 0x1E7F0, symSize: 0x18 } - - { offsetInCU: 0x1D6F, offset: 0x66F94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwcp', symObjAddr: 0x1E5C, symBinAddr: 0x1E808, symSize: 0x5C } - - { offsetInCU: 0x1D83, offset: 0x66FA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x1EB8, symBinAddr: 0x1E864, symSize: 0x6C } - - { offsetInCU: 0x1D97, offset: 0x66FBC, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1F24, symBinAddr: 0x1E8D0, symSize: 0x14 } - - { offsetInCU: 0x1DAB, offset: 0x66FD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x1F38, symBinAddr: 0x1E8E4, symSize: 0x50 } - - { offsetInCU: 0x1DBF, offset: 0x66FE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x1F88, symBinAddr: 0x1E934, symSize: 0x48 } - - { offsetInCU: 0x1DD3, offset: 0x66FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x1FD0, symBinAddr: 0x1E97C, symSize: 0x48 } - - { offsetInCU: 0x1DE7, offset: 0x6700C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x2018, symBinAddr: 0x1E9C4, symSize: 0x8 } - - { offsetInCU: 0x1DFB, offset: 0x67020, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2020, symBinAddr: 0x1E9CC, symSize: 0x4 } - - { offsetInCU: 0x1E0F, offset: 0x67034, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2024, symBinAddr: 0x1E9D0, symSize: 0x8 } - - { offsetInCU: 0x1E23, offset: 0x67048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x202C, symBinAddr: 0x1E9D8, symSize: 0x10 } - - { offsetInCU: 0x1E37, offset: 0x6705C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2114, symBinAddr: 0x1EAB0, symSize: 0x90 } - - { offsetInCU: 0x1E4B, offset: 0x67070, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x21A4, symBinAddr: 0x1EB40, symSize: 0xBC } - - { offsetInCU: 0x1E5F, offset: 0x67084, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2260, symBinAddr: 0x1EBFC, symSize: 0x4 } - - { offsetInCU: 0x1E73, offset: 0x67098, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2264, symBinAddr: 0x1EC00, symSize: 0x10 } - - { offsetInCU: 0x1E87, offset: 0x670AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x2274, symBinAddr: 0x1EC10, symSize: 0x90 } - - { offsetInCU: 0x1E9B, offset: 0x670C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2304, symBinAddr: 0x1ECA0, symSize: 0xBC } - - { offsetInCU: 0x1EAF, offset: 0x670D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x23C0, symBinAddr: 0x1ED5C, symSize: 0x8 } - - { offsetInCU: 0x1EC3, offset: 0x670E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x23C8, symBinAddr: 0x1ED64, symSize: 0x4 } - - { offsetInCU: 0x1ED7, offset: 0x670FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x23CC, symBinAddr: 0x1ED68, symSize: 0x8 } - - { offsetInCU: 0x1EEB, offset: 0x67110, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x23D4, symBinAddr: 0x1ED70, symSize: 0x10 } - - { offsetInCU: 0x1F0A, offset: 0x6712F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x240C, symBinAddr: 0x1EDA8, symSize: 0x24 } - - { offsetInCU: 0x1F33, offset: 0x67158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x2518, symBinAddr: 0x1EEB4, symSize: 0x8 } - - { offsetInCU: 0x1F47, offset: 0x6716C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2520, symBinAddr: 0x1EEBC, symSize: 0x10 } - - { offsetInCU: 0x1F5B, offset: 0x67180, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2530, symBinAddr: 0x1EECC, symSize: 0x8 } - - { offsetInCU: 0x1F6F, offset: 0x67194, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x25BC, symBinAddr: 0x1EED4, symSize: 0x3C } - - { offsetInCU: 0x1FF1, offset: 0x67216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1C9AC, symSize: 0x4 } - - { offsetInCU: 0x200D, offset: 0x67232, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1C9B0, symSize: 0x4 } - - { offsetInCU: 0x2029, offset: 0x6724E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1C9B4, symSize: 0x4 } - - { offsetInCU: 0x2045, offset: 0x6726A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1C9B8, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x6765D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1EFD8, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x67671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F014, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67685, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F098, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x676A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1F1C0, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x676C9, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1F1F0, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x676DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1F20C, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x676F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1F2A8, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x67705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1F30C, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x67719, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1F368, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x6772D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1F378, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x67741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1F3A8, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67755, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1F3D0, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67769, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1F42C, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x6777D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1F4B0, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x67791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1F514, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x677A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1F570, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x677B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1F5D0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x677D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1F5E0, symSize: 0x11C } - - { offsetInCU: 0x20B, offset: 0x67825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA90, symBinAddr: 0x1FA68, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67879, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA98, symBinAddr: 0x1FA70, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x6795C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAD8, symBinAddr: 0x1FAB0, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x679DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB10, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x679FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB10, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x67A1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB3C, symBinAddr: 0x1FB14, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67A4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB64, symBinAddr: 0x1FB3C, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB70, symBinAddr: 0x1FB48, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67A85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF48, symBinAddr: 0x1FF20, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67AC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xFB4, symBinAddr: 0x1FF8C, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67AFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBCC, symBinAddr: 0x1FBA4, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67B34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC18, symBinAddr: 0x1FBF0, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67B57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC0, symBinAddr: 0x1FF98, symSize: 0x154 } - - { offsetInCU: 0x58D, offset: 0x67BA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x724, symBinAddr: 0x1F6FC, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x67BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC58, symBinAddr: 0x1FC30, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x67C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC70, symBinAddr: 0x1FC48, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x67CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC9C, symBinAddr: 0x1FC74, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x67D01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1FC7C, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x67D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCC8, symBinAddr: 0x1FCA0, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x67D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCD4, symBinAddr: 0x1FCAC, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x67D6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1264, symBinAddr: 0x201B8, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x67DB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x744, symBinAddr: 0x1F71C, symSize: 0x1C8 } - - { offsetInCU: 0x7EB, offset: 0x67E05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD30, symBinAddr: 0x1FD08, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x67E3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD7C, symBinAddr: 0x1FD54, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x67E5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13A0, symBinAddr: 0x202F4, symSize: 0x264 } - - { offsetInCU: 0x895, offset: 0x67EAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x90C, symBinAddr: 0x1F8E4, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x67EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE48, symBinAddr: 0x1FE20, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x67F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE50, symBinAddr: 0x1FE28, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x67F36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE74, symBinAddr: 0x1FE4C, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x67F52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x20C24, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x67F98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x92C, symBinAddr: 0x1F904, symSize: 0x164 } - - { offsetInCU: 0x9D3, offset: 0x67FED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xED0, symBinAddr: 0x1FEA8, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x68024, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF10, symBinAddr: 0x1FEE8, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x68047, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E94, symBinAddr: 0x20D7C, symSize: 0x2B8 } - - { offsetInCU: 0xA80, offset: 0x6809A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1178, symBinAddr: 0x200EC, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x680AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x11DC, symBinAddr: 0x20130, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x680C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x20174, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x680D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x20558, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x680EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x2059C, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x680FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x2068C, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x68112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x206D8, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x68126, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x206E0, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x6813A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x206E4, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x6814E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x206EC, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x68162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x206FC, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x68176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x2074C, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x6818A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x207D8, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x6819E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x207E0, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x681B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x207E4, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x681C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x207E8, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x681DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x207F8, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x681EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x20830, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x68202, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x20894, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x68216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x20940, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x6822A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x209A4, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x6823E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x20A00, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x68252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x20A64, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x68266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x20A74, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x6827A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x20A78, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x6828E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x20ABC, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x682A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x20AC0, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x682B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x20B04, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x682CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x20B08, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x682DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x20B4C, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x682F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x20B50, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x68306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x20B94, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x6831A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x20B98, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x6832E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x20BDC, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x68342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x20BE0, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x68356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x21034, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x6836A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x211CC, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x6837E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x211D0, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x68392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x211E0, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x683A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x211E4, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x683BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x21228, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x683CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x2122C, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x683E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x21270, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x683F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x21274, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x6844B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAFC, symBinAddr: 0x1FAD4, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x684ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB7C, symBinAddr: 0x1FB54, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x68509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBA4, symBinAddr: 0x1FB7C, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x6852B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCE0, symBinAddr: 0x1FCB8, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x68547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD08, symBinAddr: 0x1FCE0, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x68569, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE80, symBinAddr: 0x1FE58, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x68585, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEA8, symBinAddr: 0x1FE80, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x686D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x212E4, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x686F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x212E4, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68729, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x2182C, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x687BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x21854, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x688B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x21898, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x688D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x21898, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x68919, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x218B0, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x689FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x218F4, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68A7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x212FC, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68AF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x21698, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68B0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x216A8, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68B2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x216B8, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68B49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x216E4, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x68B88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x21718, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x68BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x21728, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x68BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x2172C, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x68BEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x21734, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x68C29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x2173C, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x68C57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x2174C, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x68C8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x584, symBinAddr: 0x21750, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x68CA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x598, symBinAddr: 0x21764, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x68CCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x21778, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x68CEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x217A4, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x68D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x217D0, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x68D35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x217D8, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x68D71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x217E0, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x68D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x217F0, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x68DBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x217F4, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x68DD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x217FC, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x68E14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x21804, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x68E42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x21814, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x68E6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x21818, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x68E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x21828, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x68EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x2195C, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x68EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x21960, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x68F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x219A4, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x68F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x219D4, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x68F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x21A50, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x68F41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x21BD4, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x68F5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x21F68, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x68F85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x21F98, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x68F99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x21FC4, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x68FAD, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x21FF8, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x68FC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x2203C, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x68FD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x221E8, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x68FE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x22230, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x68FFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x222A8, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x69011, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x222B8, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x69025, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x222EC, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x69039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x222F4, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x6904D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x22328, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x69061, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x2237C, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x69075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x22390, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x69089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x223CC, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x6909D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x22414, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x690B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x22454, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x690C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x22464, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x690D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x2249C, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x690ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x22508, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x69101, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x225E4, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x69115, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x22600, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x69129, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x22674, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x6913D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x226D0, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x69151, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x22734, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x69165, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x22744, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x69179, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x2276C, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x6918D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x227A8, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x691A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x22814, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x691B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x22858, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x691C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x228A0, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x691DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x228E0, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x691F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x228F0, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x69205, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x22944, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x69219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x22988, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x6922D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x22998, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x69241, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x22A28, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x69255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x22AE4, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x69269, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x22AEC, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x6927D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x22AF0, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x69291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x22AFC, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x692E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x2191C, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x69531, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x22B1C, symSize: 0x1A0 } - - { offsetInCU: 0x373, offset: 0x69836, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x228, symBinAddr: 0x22D44, symSize: 0x2244 } - - { offsetInCU: 0x15CE, offset: 0x6AA91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB1D4, symBinAddr: 0x2DCF0, symSize: 0x3CB4 } - - { offsetInCU: 0x3157, offset: 0x6C61A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xEE88, symBinAddr: 0x319A4, symSize: 0x634 } - - { offsetInCU: 0x372B, offset: 0x6CBEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0xF4E4, symBinAddr: 0x32000, symSize: 0x40 } - - { offsetInCU: 0x3753, offset: 0x6CC16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x142E4, symBinAddr: 0x36E00, symSize: 0x3E0 } - - { offsetInCU: 0x38E2, offset: 0x6CDA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10C14, symBinAddr: 0x33730, symSize: 0x276C } - - { offsetInCU: 0x5016, offset: 0x6E4D9, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x246C, symBinAddr: 0x24F88, symSize: 0x2A8 } - - { offsetInCU: 0x53D1, offset: 0x6E894, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2714, symBinAddr: 0x25230, symSize: 0x6F8 } - - { offsetInCU: 0x5835, offset: 0x6ECF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x2E0C, symBinAddr: 0x25928, symSize: 0x5D8 } - - { offsetInCU: 0x5B68, offset: 0x6F02B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x33E4, symBinAddr: 0x25F00, symSize: 0x395C } - - { offsetInCU: 0x7562, offset: 0x70A25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6D40, symBinAddr: 0x2985C, symSize: 0x278 } - - { offsetInCU: 0x7679, offset: 0x70B3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x744C, symBinAddr: 0x29F68, symSize: 0x17AC } - - { offsetInCU: 0x7FD3, offset: 0x71496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6FB8, symBinAddr: 0x29AD4, symSize: 0x118 } - - { offsetInCU: 0x803C, offset: 0x714FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x723C, symBinAddr: 0x29D58, symSize: 0x1E8 } - - { offsetInCU: 0x8109, offset: 0x715CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x7424, symBinAddr: 0x29F40, symSize: 0x28 } - - { offsetInCU: 0x84A1, offset: 0x71964, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x8C4C, symBinAddr: 0x2B768, symSize: 0x754 } - - { offsetInCU: 0x88B2, offset: 0x71D75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA354, symBinAddr: 0x2CE70, symSize: 0xE80 } - - { offsetInCU: 0x917A, offset: 0x7263D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x93A0, symBinAddr: 0x2BEBC, symSize: 0xBAC } - - { offsetInCU: 0x9BDB, offset: 0x7309E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF950, symBinAddr: 0x3246C, symSize: 0x12C4 } - - { offsetInCU: 0xAC2E, offset: 0x740F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x185E0, symBinAddr: 0x3B02C, symSize: 0xBD0 } - - { offsetInCU: 0xB955, offset: 0x74E18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x13380, symBinAddr: 0x35E9C, symSize: 0xF64 } - - { offsetInCU: 0xC283, offset: 0x75746, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x146C4, symBinAddr: 0x371E0, symSize: 0x208 } - - { offsetInCU: 0xC319, offset: 0x757DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x148CC, symBinAddr: 0x373E8, symSize: 0x290 } - - { offsetInCU: 0xC40A, offset: 0x758CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14B6C, symBinAddr: 0x37688, symSize: 0xA0 } - - { offsetInCU: 0xC49F, offset: 0x75962, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x14C60, symBinAddr: 0x3777C, symSize: 0x1024 } - - { offsetInCU: 0xCE94, offset: 0x76357, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x15C84, symBinAddr: 0x387A0, symSize: 0x4C } - - { offsetInCU: 0xCEB0, offset: 0x76373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x15CD0, symBinAddr: 0x387EC, symSize: 0x150 } - - { offsetInCU: 0xCFBF, offset: 0x76482, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x15E20, symBinAddr: 0x3893C, symSize: 0x54 } - - { offsetInCU: 0xD038, offset: 0x764FB, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x15EC8, symBinAddr: 0x38990, symSize: 0x4C } - - { offsetInCU: 0xD0BC, offset: 0x7657F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x15F14, symBinAddr: 0x389DC, symSize: 0x50 } - - { offsetInCU: 0xD135, offset: 0x765F8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x15F64, symBinAddr: 0x38A2C, symSize: 0x64 } - - { offsetInCU: 0xD177, offset: 0x7663A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15FC8, symBinAddr: 0x38A90, symSize: 0x30 } - - { offsetInCU: 0xD1A4, offset: 0x76667, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15FF8, symBinAddr: 0x38AC0, symSize: 0x80 } - - { offsetInCU: 0xD242, offset: 0x76705, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x16078, symBinAddr: 0x38B40, symSize: 0x6C } - - { offsetInCU: 0xD2DC, offset: 0x7679F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x160E4, symBinAddr: 0x38BAC, symSize: 0x4C } - - { offsetInCU: 0xD360, offset: 0x76823, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1615C, symBinAddr: 0x38C24, symSize: 0xE0 } - - { offsetInCU: 0xD3AA, offset: 0x7686D, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1623C, symBinAddr: 0x38D04, symSize: 0xC4 } - - { offsetInCU: 0xD3D7, offset: 0x7689A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16300, symBinAddr: 0x38DC8, symSize: 0x174 } - - { offsetInCU: 0xD48B, offset: 0x7694E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x16474, symBinAddr: 0x38F3C, symSize: 0x104 } - - { offsetInCU: 0xD61E, offset: 0x76AE1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x16578, symBinAddr: 0x39040, symSize: 0x128 } - - { offsetInCU: 0xD7C1, offset: 0x76C84, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x166A0, symBinAddr: 0x39168, symSize: 0x16C } - - { offsetInCU: 0xD996, offset: 0x76E59, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1680C, symBinAddr: 0x392D4, symSize: 0x174 } - - { offsetInCU: 0xDB51, offset: 0x77014, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16980, symBinAddr: 0x39448, symSize: 0xFC } - - { offsetInCU: 0xDCF4, offset: 0x771B7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x16A7C, symBinAddr: 0x39544, symSize: 0xFC } - - { offsetInCU: 0xDE97, offset: 0x7735A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x16C7C, symBinAddr: 0x39744, symSize: 0xFC } - - { offsetInCU: 0xDFC1, offset: 0x77484, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16D78, symBinAddr: 0x39840, symSize: 0x40 } - - { offsetInCU: 0xE00E, offset: 0x774D1, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1701C, symBinAddr: 0x39AE4, symSize: 0x138 } - - { offsetInCU: 0xE0AD, offset: 0x77570, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x17154, symBinAddr: 0x39C1C, symSize: 0xB4 } - - { offsetInCU: 0xE15D, offset: 0x77620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x17454, symBinAddr: 0x39EDC, symSize: 0x638 } - - { offsetInCU: 0xE501, offset: 0x779C4, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x17A8C, symBinAddr: 0x3A514, symSize: 0x18C } - - { offsetInCU: 0xE612, offset: 0x77AD5, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17C18, symBinAddr: 0x3A6A0, symSize: 0xC0 } - - { offsetInCU: 0xE715, offset: 0x77BD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17EF4, symBinAddr: 0x3A940, symSize: 0x1A0 } - - { offsetInCU: 0xE86A, offset: 0x77D2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x18094, symBinAddr: 0x3AAE0, symSize: 0x380 } - - { offsetInCU: 0xEB96, offset: 0x78059, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x191B0, symBinAddr: 0x3BBFC, symSize: 0x198 } - - { offsetInCU: 0xECB2, offset: 0x78175, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19348, symBinAddr: 0x3BD94, symSize: 0xC0 } - - { offsetInCU: 0xEFE4, offset: 0x784A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x19408, symBinAddr: 0x3BE54, symSize: 0xD38 } - - { offsetInCU: 0x1025F, offset: 0x79722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A140, symBinAddr: 0x3CB8C, symSize: 0x1C0 } - - { offsetInCU: 0x1040D, offset: 0x798D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A300, symBinAddr: 0x3CD4C, symSize: 0x1A4 } - - { offsetInCU: 0x10500, offset: 0x799C3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A4A4, symBinAddr: 0x3CEF0, symSize: 0x84 } - - { offsetInCU: 0x1070D, offset: 0x79BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1AFC8, symBinAddr: 0x3DA14, symSize: 0x8 } - - { offsetInCU: 0x10721, offset: 0x79BE4, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1B0AC, symBinAddr: 0x3DAF8, symSize: 0x10 } - - { offsetInCU: 0x10735, offset: 0x79BF8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1B0BC, symBinAddr: 0x3DB08, symSize: 0x14 } - - { offsetInCU: 0x10749, offset: 0x79C0C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1B0D0, symBinAddr: 0x3DB1C, symSize: 0x50 } - - { offsetInCU: 0x1075D, offset: 0x79C20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1B130, symBinAddr: 0x3DB6C, symSize: 0x44 } - - { offsetInCU: 0x10771, offset: 0x79C34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1B174, symBinAddr: 0x3DBB0, symSize: 0x30C } - - { offsetInCU: 0x10785, offset: 0x79C48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1B480, symBinAddr: 0x3DEBC, symSize: 0x240 } - - { offsetInCU: 0x10799, offset: 0x79C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1B6C0, symBinAddr: 0x3E0FC, symSize: 0x70 } - - { offsetInCU: 0x107AD, offset: 0x79C70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1B730, symBinAddr: 0x3E16C, symSize: 0x34 } - - { offsetInCU: 0x107C1, offset: 0x79C84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1B764, symBinAddr: 0x3E1A0, symSize: 0x174 } - - { offsetInCU: 0x107D5, offset: 0x79C98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1B8D8, symBinAddr: 0x3E314, symSize: 0xB4 } - - { offsetInCU: 0x1080A, offset: 0x79CCD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1C1A4, symBinAddr: 0x3E3C8, symSize: 0xC4 } - - { offsetInCU: 0x10880, offset: 0x79D43, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C268, symBinAddr: 0x3E48C, symSize: 0x78 } - - { offsetInCU: 0x108AD, offset: 0x79D70, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C2E0, symBinAddr: 0x3E504, symSize: 0x80 } - - { offsetInCU: 0x10923, offset: 0x79DE6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C360, symBinAddr: 0x3E584, symSize: 0x68 } - - { offsetInCU: 0x10A47, offset: 0x79F0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C3C8, symBinAddr: 0x3E5EC, symSize: 0x664 } - - { offsetInCU: 0x10EEB, offset: 0x7A3AE, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1CA3C, symBinAddr: 0x3EC60, symSize: 0x4C } - - { offsetInCU: 0x10EFF, offset: 0x7A3C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1CB30, symBinAddr: 0x3ECCC, symSize: 0x8 } - - { offsetInCU: 0x10F13, offset: 0x7A3D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1CB38, symBinAddr: 0x3ECD4, symSize: 0x44 } - - { offsetInCU: 0x10F27, offset: 0x7A3EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1CB7C, symBinAddr: 0x3ED18, symSize: 0x44 } - - { offsetInCU: 0x10F3B, offset: 0x7A3FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1CC28, symBinAddr: 0x3ED80, symSize: 0x8 } - - { offsetInCU: 0x10F4F, offset: 0x7A412, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1CC40, symBinAddr: 0x3ED88, symSize: 0x3C } - - { offsetInCU: 0x10F63, offset: 0x7A426, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1CC7C, symBinAddr: 0x3EDC4, symSize: 0x34 } - - { offsetInCU: 0x10F77, offset: 0x7A43A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1CD30, symBinAddr: 0x3EE78, symSize: 0x44 } - - { offsetInCU: 0x10FAC, offset: 0x7A46F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CE38, symBinAddr: 0x3EF80, symSize: 0x48 } - - { offsetInCU: 0x10FCB, offset: 0x7A48E, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CE80, symBinAddr: 0x3EFC8, symSize: 0x64 } - - { offsetInCU: 0x1100E, offset: 0x7A4D1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CEE4, symBinAddr: 0x3F02C, symSize: 0x80 } - - { offsetInCU: 0x110A3, offset: 0x7A566, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CF64, symBinAddr: 0x3F0AC, symSize: 0x120 } - - { offsetInCU: 0x1118B, offset: 0x7A64E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1D0CC, symBinAddr: 0x3F214, symSize: 0x48 } - - { offsetInCU: 0x1119F, offset: 0x7A662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1D114, symBinAddr: 0x3F25C, symSize: 0x40 } - - { offsetInCU: 0x111B3, offset: 0x7A676, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1D228, symBinAddr: 0x3F370, symSize: 0x48 } - - { offsetInCU: 0x111C7, offset: 0x7A68A, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1D2F0, symBinAddr: 0x3F438, symSize: 0x18 } - - { offsetInCU: 0x111DB, offset: 0x7A69E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1D308, symBinAddr: 0x3F450, symSize: 0x10 } - - { offsetInCU: 0x111EF, offset: 0x7A6B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1D318, symBinAddr: 0x3F460, symSize: 0x34 } - - { offsetInCU: 0x11203, offset: 0x7A6C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D388, symBinAddr: 0x3F4D0, symSize: 0x30 } - - { offsetInCU: 0x11250, offset: 0x7A713, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x1A0, symBinAddr: 0x22CBC, symSize: 0x88 } - - { offsetInCU: 0x11698, offset: 0x7AB5B, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9F4C, symBinAddr: 0x2CA68, symSize: 0x408 } - - { offsetInCU: 0x11973, offset: 0x7AE36, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF7C4, symBinAddr: 0x322E0, symSize: 0x18C } - - { offsetInCU: 0x11B91, offset: 0x7B054, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x14C0C, symBinAddr: 0x37728, symSize: 0x54 } - - { offsetInCU: 0x11CFE, offset: 0x7B1C1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x17208, symBinAddr: 0x39CD0, symSize: 0x110 } - - { offsetInCU: 0x11E3F, offset: 0x7B302, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x17358, symBinAddr: 0x39DE0, symSize: 0xFC } - - { offsetInCU: 0x11F40, offset: 0x7B403, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17D38, symBinAddr: 0x3A784, symSize: 0x1BC } - - { offsetInCU: 0x1200E, offset: 0x7B4D1, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18414, symBinAddr: 0x3AE60, symSize: 0x1CC } - - { offsetInCU: 0x122D1, offset: 0x7B794, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A724, symBinAddr: 0x3D170, symSize: 0x1DC } - - { offsetInCU: 0x123BD, offset: 0x7B880, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A900, symBinAddr: 0x3D34C, symSize: 0x11C } - - { offsetInCU: 0x12504, offset: 0x7B9C7, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1AA1C, symBinAddr: 0x3D468, symSize: 0xFC } - - { offsetInCU: 0x1264B, offset: 0x7BB0E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1AB18, symBinAddr: 0x3D564, symSize: 0xE4 } - - { offsetInCU: 0x12786, offset: 0x7BC49, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1ABFC, symBinAddr: 0x3D648, symSize: 0x114 } - - { offsetInCU: 0x128C7, offset: 0x7BD8A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AD10, symBinAddr: 0x3D75C, symSize: 0xEC } - - { offsetInCU: 0x12A0E, offset: 0x7BED1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1AEE4, symBinAddr: 0x3D930, symSize: 0xE4 } - - { offsetInCU: 0x12B6D, offset: 0x7C030, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CD74, symBinAddr: 0x3EEBC, symSize: 0xC4 } - - { offsetInCU: 0x12E13, offset: 0x7C2D6, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x70D0, symBinAddr: 0x29BEC, symSize: 0x16C } - - { offsetInCU: 0x27, offset: 0x7C884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F538, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7C89C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F538, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7C8B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3F568, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7C8C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3F654, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7C8D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3F8CC, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7C8EC, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3FCE8, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7C900, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3FCF0, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7C914, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3FF38, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7C928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3FF80, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7C93C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x4003C, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7CC6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x404F8, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7CD1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x406FC, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D1A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x4130C, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D3C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x4184C, symSize: 0x9B0 } - - { offsetInCU: 0xD3E, offset: 0x7D75B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x21E4, symBinAddr: 0x42228, symSize: 0x21A4 } - - { offsetInCU: 0x202F, offset: 0x7EA4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE2C8, symBinAddr: 0x4E30C, symSize: 0x6F8 } - - { offsetInCU: 0x23FC, offset: 0x7EE19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4388, symBinAddr: 0x443CC, symSize: 0x1288 } - - { offsetInCU: 0x2F50, offset: 0x7F96D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x5610, symBinAddr: 0x45654, symSize: 0xBF4 } - - { offsetInCU: 0x377E, offset: 0x8019B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x6204, symBinAddr: 0x46248, symSize: 0x418 } - - { offsetInCU: 0x3895, offset: 0x802B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6F14, symBinAddr: 0x46F58, symSize: 0x20C } - - { offsetInCU: 0x3B41, offset: 0x8055E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7120, symBinAddr: 0x47164, symSize: 0x924 } - - { offsetInCU: 0x42D4, offset: 0x80CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7A44, symBinAddr: 0x47A88, symSize: 0x2E8 } - - { offsetInCU: 0x440C, offset: 0x80E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7D2C, symBinAddr: 0x47D70, symSize: 0x658 } - - { offsetInCU: 0x47FD, offset: 0x8121A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x8384, symBinAddr: 0x483C8, symSize: 0x688 } - - { offsetInCU: 0x4ABF, offset: 0x814DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8A0C, symBinAddr: 0x48A50, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x8159A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8C3C, symBinAddr: 0x48C80, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x8161D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x8E68, symBinAddr: 0x48EAC, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x8164A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x8EE8, symBinAddr: 0x48F2C, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81686, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xCE5C, symBinAddr: 0x4CEA0, symSize: 0x7CC } - - { offsetInCU: 0x4FB0, offset: 0x819CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD628, symBinAddr: 0x4D66C, symSize: 0xA24 } - - { offsetInCU: 0x529F, offset: 0x81CBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE04C, symBinAddr: 0x4E090, symSize: 0x218 } - - { offsetInCU: 0x5374, offset: 0x81D91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xE9C0, symBinAddr: 0x4EA04, symSize: 0x86C } - - { offsetInCU: 0x567F, offset: 0x8209C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF22C, symBinAddr: 0x4F270, symSize: 0xC18 } - - { offsetInCU: 0x596E, offset: 0x8238B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xFE44, symBinAddr: 0x4FE88, symSize: 0x278 } - - { offsetInCU: 0x5A43, offset: 0x82460, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x100BC, symBinAddr: 0x50100, symSize: 0x214 } - - { offsetInCU: 0x5F39, offset: 0x82956, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x21B8, symBinAddr: 0x421FC, symSize: 0x2C } - - { offsetInCU: 0x6237, offset: 0x82C54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x8F04, symBinAddr: 0x48F48, symSize: 0x20 } - - { offsetInCU: 0x6290, offset: 0x82CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8F24, symBinAddr: 0x48F68, symSize: 0x8C } - - { offsetInCU: 0x6328, offset: 0x82D45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x8FB0, symBinAddr: 0x48FF4, symSize: 0xC48 } - - { offsetInCU: 0x683A, offset: 0x83257, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x9BF8, symBinAddr: 0x49C3C, symSize: 0x40 } - - { offsetInCU: 0x687E, offset: 0x8329B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0x9C38, symBinAddr: 0x49C7C, symSize: 0x58 } - - { offsetInCU: 0x68A9, offset: 0x832C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0x9C90, symBinAddr: 0x49CD4, symSize: 0x54 } - - { offsetInCU: 0x68EB, offset: 0x83308, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9CE4, symBinAddr: 0x49D28, symSize: 0x64 } - - { offsetInCU: 0x691E, offset: 0x8333B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x9D48, symBinAddr: 0x49D8C, symSize: 0x4 } - - { offsetInCU: 0x6949, offset: 0x83366, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9D4C, symBinAddr: 0x49D90, symSize: 0x78 } - - { offsetInCU: 0x698B, offset: 0x833A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9DC4, symBinAddr: 0x49E08, symSize: 0x90 } - - { offsetInCU: 0x69CD, offset: 0x833EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x9E54, symBinAddr: 0x49E98, symSize: 0x6C } - - { offsetInCU: 0x6A00, offset: 0x8341D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x9EC0, symBinAddr: 0x49F04, symSize: 0x4 } - - { offsetInCU: 0x6A1C, offset: 0x83439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x9EC4, symBinAddr: 0x49F08, symSize: 0x4 } - - { offsetInCU: 0x6A47, offset: 0x83464, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0x9EC8, symBinAddr: 0x49F0C, symSize: 0x74 } - - { offsetInCU: 0x6A7A, offset: 0x83497, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0x9F3C, symBinAddr: 0x49F80, symSize: 0x4 } - - { offsetInCU: 0x6A99, offset: 0x834B6, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F40, symBinAddr: 0x49F84, symSize: 0x8 } - - { offsetInCU: 0x6AB5, offset: 0x834D2, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F40, symBinAddr: 0x49F84, symSize: 0x8 } - - { offsetInCU: 0x6AC6, offset: 0x834E3, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0x9F48, symBinAddr: 0x49F8C, symSize: 0xC8 } - - { offsetInCU: 0x6B63, offset: 0x83580, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA010, symBinAddr: 0x4A054, symSize: 0xCC } - - { offsetInCU: 0x6C0F, offset: 0x8362C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA1D8, symBinAddr: 0x4A21C, symSize: 0x1F4 } - - { offsetInCU: 0x6C9B, offset: 0x836B8, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA3CC, symBinAddr: 0x4A410, symSize: 0x1C4 } - - { offsetInCU: 0x6D53, offset: 0x83770, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA590, symBinAddr: 0x4A5D4, symSize: 0x3A0 } - - { offsetInCU: 0x6E73, offset: 0x83890, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xA930, symBinAddr: 0x4A974, symSize: 0x398 } - - { offsetInCU: 0x6F8A, offset: 0x839A7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xACC8, symBinAddr: 0x4AD0C, symSize: 0x1E4 } - - { offsetInCU: 0x701B, offset: 0x83A38, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xAEAC, symBinAddr: 0x4AEF0, symSize: 0x204 } - - { offsetInCU: 0x70A1, offset: 0x83ABE, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB0B0, symBinAddr: 0x4B0F4, symSize: 0x4C } - - { offsetInCU: 0x715E, offset: 0x83B7B, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB0FC, symBinAddr: 0x4B140, symSize: 0x90 } - - { offsetInCU: 0x71F9, offset: 0x83C16, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB18C, symBinAddr: 0x4B1D0, symSize: 0x40 } - - { offsetInCU: 0x7236, offset: 0x83C53, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB1CC, symBinAddr: 0x4B210, symSize: 0x18 } - - { offsetInCU: 0x7288, offset: 0x83CA5, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB1E4, symBinAddr: 0x4B228, symSize: 0x3C } - - { offsetInCU: 0x72B1, offset: 0x83CCE, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB220, symBinAddr: 0x4B264, symSize: 0x1C } - - { offsetInCU: 0x7381, offset: 0x83D9E, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB23C, symBinAddr: 0x4B280, symSize: 0xE0 } - - { offsetInCU: 0x74A4, offset: 0x83EC1, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xB400, symBinAddr: 0x4B444, symSize: 0x294 } - - { offsetInCU: 0x751B, offset: 0x83F38, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xB930, symBinAddr: 0x4B974, symSize: 0x8C } - - { offsetInCU: 0x7533, offset: 0x83F50, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xB9BC, symBinAddr: 0x4BA00, symSize: 0x4C } - - { offsetInCU: 0x7588, offset: 0x83FA5, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBA08, symBinAddr: 0x4BA4C, symSize: 0x154 } - - { offsetInCU: 0x75F6, offset: 0x84013, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBB5C, symBinAddr: 0x4BBA0, symSize: 0xF0 } - - { offsetInCU: 0x761B, offset: 0x84038, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xBC4C, symBinAddr: 0x4BC90, symSize: 0x214 } - - { offsetInCU: 0x7654, offset: 0x84071, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xBE60, symBinAddr: 0x4BEA4, symSize: 0x78 } - - { offsetInCU: 0x766C, offset: 0x84089, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xBED8, symBinAddr: 0x4BF1C, symSize: 0x1C } - - { offsetInCU: 0x7684, offset: 0x840A1, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBEF4, symBinAddr: 0x4BF38, symSize: 0x1C } - - { offsetInCU: 0x769C, offset: 0x840B9, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBF10, symBinAddr: 0x4BF54, symSize: 0x1C } - - { offsetInCU: 0x7701, offset: 0x8411E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xBF2C, symBinAddr: 0x4BF70, symSize: 0x104 } - - { offsetInCU: 0x7864, offset: 0x84281, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xC030, symBinAddr: 0x4C074, symSize: 0x174 } - - { offsetInCU: 0x79D4, offset: 0x843F1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC1A4, symBinAddr: 0x4C1E8, symSize: 0x124 } - - { offsetInCU: 0x7AD4, offset: 0x844F1, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC2C8, symBinAddr: 0x4C30C, symSize: 0x120 } - - { offsetInCU: 0x7D20, offset: 0x8473D, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xC3E8, symBinAddr: 0x4C42C, symSize: 0x36C } - - { offsetInCU: 0x830E, offset: 0x84D2B, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC754, symBinAddr: 0x4C798, symSize: 0x290 } - - { offsetInCU: 0x84FB, offset: 0x84F18, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC9E4, symBinAddr: 0x4CA28, symSize: 0x150 } - - { offsetInCU: 0x8661, offset: 0x8507E, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xCB34, symBinAddr: 0x4CB78, symSize: 0x218 } - - { offsetInCU: 0x86AD, offset: 0x850CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xCD4C, symBinAddr: 0x4CD90, symSize: 0x14 } - - { offsetInCU: 0x86E6, offset: 0x85103, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xCD60, symBinAddr: 0x4CDA4, symSize: 0xFC } - - { offsetInCU: 0x87A4, offset: 0x851C1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xE264, symBinAddr: 0x4E2A8, symSize: 0x64 } - - { offsetInCU: 0x8850, offset: 0x8526D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x102D0, symBinAddr: 0x50314, symSize: 0xA78 } - - { offsetInCU: 0x8E1E, offset: 0x8583B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10D48, symBinAddr: 0x50D8C, symSize: 0x104 } - - { offsetInCU: 0x8F8A, offset: 0x859A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10E4C, symBinAddr: 0x50E90, symSize: 0x2D8C } - - { offsetInCU: 0x9650, offset: 0x8606D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x13BD8, symBinAddr: 0x53C1C, symSize: 0x120 } - - { offsetInCU: 0x9761, offset: 0x8617E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x13CF8, symBinAddr: 0x53D3C, symSize: 0x80 } - - { offsetInCU: 0x97E4, offset: 0x86201, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13D78, symBinAddr: 0x53DBC, symSize: 0x654 } - - { offsetInCU: 0x9B80, offset: 0x8659D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x1442C, symBinAddr: 0x54410, symSize: 0x10 } - - { offsetInCU: 0x9B94, offset: 0x865B1, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x1443C, symBinAddr: 0x54420, symSize: 0x10 } - - { offsetInCU: 0x9BA8, offset: 0x865C5, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x14490, symBinAddr: 0x54430, symSize: 0x48 } - - { offsetInCU: 0x9BBC, offset: 0x865D9, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x14540, symBinAddr: 0x54478, symSize: 0x3C } - - { offsetInCU: 0x9BD0, offset: 0x865ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x1457C, symBinAddr: 0x544B4, symSize: 0x44 } - - { offsetInCU: 0x9BE4, offset: 0x86601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOf', symObjAddr: 0x145C0, symBinAddr: 0x544F8, symSize: 0x48 } - - { offsetInCU: 0x9BF8, offset: 0x86615, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x14680, symBinAddr: 0x5457C, symSize: 0x8 } - - { offsetInCU: 0x9C0C, offset: 0x86629, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14688, symBinAddr: 0x54584, symSize: 0x10 } - - { offsetInCU: 0x9C20, offset: 0x8663D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14698, symBinAddr: 0x54594, symSize: 0x8 } - - { offsetInCU: 0x9C34, offset: 0x86651, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14720, symBinAddr: 0x545D8, symSize: 0x30 } - - { offsetInCU: 0x9C8C, offset: 0x866A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x147E0, symBinAddr: 0x54698, symSize: 0x24 } - - { offsetInCU: 0x9CC8, offset: 0x866E5, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x1484C, symBinAddr: 0x546BC, symSize: 0x44 } - - { offsetInCU: 0x9CF7, offset: 0x86714, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x4004C, symSize: 0x12C } - - { offsetInCU: 0x9D2D, offset: 0x8674A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x40178, symSize: 0x58 } - - { offsetInCU: 0x9E0D, offset: 0x8682A, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x401D0, symSize: 0x90 } - - { offsetInCU: 0x9E36, offset: 0x86853, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x40260, symSize: 0xA0 } - - { offsetInCU: 0x9F62, offset: 0x8697F, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x40300, symSize: 0x9C } - - { offsetInCU: 0xA071, offset: 0x86A8E, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x4039C, symSize: 0x74 } - - { offsetInCU: 0xA0F6, offset: 0x86B13, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x40410, symSize: 0x4 } - - { offsetInCU: 0xA118, offset: 0x86B35, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x40414, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x87531, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x547C4, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x8755C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEE0, symBinAddr: 0x556A4, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x87587, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE8, symBinAddr: 0x556AC, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x875B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF0C, symBinAddr: 0x556D0, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x875D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF18, symBinAddr: 0x556DC, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x875F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5C00, symBinAddr: 0x5A334, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87636, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x547E4, symSize: 0x18C } - - { offsetInCU: 0x1BC, offset: 0x8768B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF74, symBinAddr: 0x55738, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x876C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC4, symBinAddr: 0x55788, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x876E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5D2C, symBinAddr: 0x5A460, symSize: 0x133C } - - { offsetInCU: 0x267, offset: 0x87736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x1AC, symBinAddr: 0x54970, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x87785, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1014, symBinAddr: 0x557D8, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x877EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x102C, symBinAddr: 0x557F0, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87865, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1058, symBinAddr: 0x5581C, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1060, symBinAddr: 0x55824, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x878C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1084, symBinAddr: 0x55848, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x878DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1090, symBinAddr: 0x55854, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x878F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B4C, symBinAddr: 0x5B868, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x8793F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CC, symBinAddr: 0x54990, symSize: 0x274 } - - { offsetInCU: 0x4C5, offset: 0x87994, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x10EC, symBinAddr: 0x558B0, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x879CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x113C, symBinAddr: 0x55900, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x879EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D28, symBinAddr: 0x5BA44, symSize: 0xF48 } - - { offsetInCU: 0x569, offset: 0x87A38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x440, symBinAddr: 0x54C04, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x87A71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x54C24, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x87A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x54C24, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x87AF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x55974, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x87B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1214, symBinAddr: 0x559D8, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x87B75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x123C, symBinAddr: 0x55A00, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x87BAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1244, symBinAddr: 0x55A08, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x87C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x12AC, symBinAddr: 0x55A70, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x87C4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x12B8, symBinAddr: 0x55A7C, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x87C69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x480, symBinAddr: 0x54C44, symSize: 0x1A0 } - - { offsetInCU: 0x7EF, offset: 0x87CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1314, symBinAddr: 0x55AD8, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x87CF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x135C, symBinAddr: 0x55B20, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x87D18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8E4C, symBinAddr: 0x5CB68, symSize: 0x230 } - - { offsetInCU: 0x899, offset: 0x87D68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x620, symBinAddr: 0x54DE4, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x87D93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x139C, symBinAddr: 0x55B60, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x87DBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A4, symBinAddr: 0x55B68, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x87DEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x13C8, symBinAddr: 0x55B8C, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x87E0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x13D4, symBinAddr: 0x55B98, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x87E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x907C, symBinAddr: 0x5CD98, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x87E6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x54E04, symSize: 0x278 } - - { offsetInCU: 0x9F3, offset: 0x87EC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1430, symBinAddr: 0x55BF4, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x87EF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1490, symBinAddr: 0x55C54, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x87F1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9328, symBinAddr: 0x5D044, symSize: 0x548 } - - { offsetInCU: 0xA9D, offset: 0x87F6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x8B8, symBinAddr: 0x5507C, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x87FB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14E8, symBinAddr: 0x55CAC, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x88048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1500, symBinAddr: 0x55CC4, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x8812B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1544, symBinAddr: 0x55D08, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x8819D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x15AC, symBinAddr: 0x55D70, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x881C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15B4, symBinAddr: 0x55D78, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x881F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15D8, symBinAddr: 0x55D9C, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x88215, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15E4, symBinAddr: 0x55DA8, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x88231, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9870, symBinAddr: 0x5D58C, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x88277, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8D8, symBinAddr: 0x5509C, symSize: 0x128 } - - { offsetInCU: 0xDFD, offset: 0x882CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1640, symBinAddr: 0x55E04, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x88303, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x166C, symBinAddr: 0x55E30, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x88326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9924, symBinAddr: 0x5D640, symSize: 0x1B0 } - - { offsetInCU: 0xEA8, offset: 0x88377, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0xA00, symBinAddr: 0x551C4, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x883A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x170C, symBinAddr: 0x55ED0, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x883CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1714, symBinAddr: 0x55ED8, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x883FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1738, symBinAddr: 0x55EFC, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x8841A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1744, symBinAddr: 0x55F08, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x88436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9AD4, symBinAddr: 0x5D7F0, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x8847C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA20, symBinAddr: 0x551E4, symSize: 0x224 } - - { offsetInCU: 0x1002, offset: 0x884D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x55F64, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x88508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1810, symBinAddr: 0x55FD4, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x8852B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9D08, symBinAddr: 0x5DA24, symSize: 0x8D8 } - - { offsetInCU: 0x10A6, offset: 0x88575, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC44, symBinAddr: 0x55408, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x885AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55428, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x885DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55428, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88625, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x19FC, symBinAddr: 0x561C0, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x8866B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1A40, symBinAddr: 0x56204, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x8867F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1A68, symBinAddr: 0x5622C, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x886B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A70, symBinAddr: 0x56234, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x8871A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1AAC, symBinAddr: 0x56270, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AB8, symBinAddr: 0x5627C, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x88752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA6AC, symBinAddr: 0x5E3C8, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x8877E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC84, symBinAddr: 0x55448, symSize: 0x254 } - - { offsetInCU: 0x1304, offset: 0x887D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B14, symBinAddr: 0x562D8, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x8880A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B6C, symBinAddr: 0x56330, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x8882D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA6FC, symBinAddr: 0x5E418, symSize: 0x770 } - - { offsetInCU: 0x13D3, offset: 0x888A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1BBC, symBinAddr: 0x56380, symSize: 0x1C8 } - - { offsetInCU: 0x142F, offset: 0x888FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x1D84, symBinAddr: 0x56548, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x88945, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x59C8, symBinAddr: 0x5A180, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x889B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5A1C, symBinAddr: 0x5A1D4, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x88A03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A9C, symBinAddr: 0x5A254, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x88A39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5AA4, symBinAddr: 0x5A25C, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x88AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5B04, symBinAddr: 0x5A2BC, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x88AD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x1D94, symBinAddr: 0x56558, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x88AEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x1DB4, symBinAddr: 0x56578, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x88AFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x1EA8, symBinAddr: 0x5666C, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x88B12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x222C, symBinAddr: 0x569F0, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x88B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x2E84, symBinAddr: 0x57648, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x88B56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x2EB4, symBinAddr: 0x57678, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x88B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x2EE0, symBinAddr: 0x576A4, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x88B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x2F0C, symBinAddr: 0x576D0, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x88B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x2F38, symBinAddr: 0x576FC, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x88BA6, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2F64, symBinAddr: 0x57728, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x88BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x2F6C, symBinAddr: 0x57730, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x88BCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x332C, symBinAddr: 0x57AF0, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x88BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3388, symBinAddr: 0x57B4C, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x88BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x3474, symBinAddr: 0x57C38, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x88C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3484, symBinAddr: 0x57C48, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x88C1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x34B4, symBinAddr: 0x57C78, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x88C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x3594, symBinAddr: 0x57D58, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x88C46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x38CC, symBinAddr: 0x58090, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x88C5A, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4130, symBinAddr: 0x588F4, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x88C6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4138, symBinAddr: 0x588FC, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x88C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x449C, symBinAddr: 0x58C60, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x88C96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x44F8, symBinAddr: 0x58CBC, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x88CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x45DC, symBinAddr: 0x58DA0, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x88CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x45EC, symBinAddr: 0x58DB0, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x88CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x4690, symBinAddr: 0x58E54, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x88CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x481C, symBinAddr: 0x58FE0, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x88CFA, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4BC4, symBinAddr: 0x59388, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x88D0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4C08, symBinAddr: 0x593CC, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x88D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x4D84, symBinAddr: 0x59548, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x88D36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x4DE0, symBinAddr: 0x595A4, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x88D4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x4E74, symBinAddr: 0x59638, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x88D5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x4E84, symBinAddr: 0x59648, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x88D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x4EEC, symBinAddr: 0x596B0, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x88D86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x4FC8, symBinAddr: 0x5978C, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x88D9A, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5134, symBinAddr: 0x598F8, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x88DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5160, symBinAddr: 0x59924, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x88DC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x5224, symBinAddr: 0x599E8, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x88DD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x5280, symBinAddr: 0x59A44, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x88DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x52FC, symBinAddr: 0x59AC0, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x88DFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x530C, symBinAddr: 0x59AD0, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x88E12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x5354, symBinAddr: 0x59B18, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x88E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x5438, symBinAddr: 0x59BFC, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x88E3A, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x55D0, symBinAddr: 0x59D94, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x88E4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x5604, symBinAddr: 0x59DC8, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x88E62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5700, symBinAddr: 0x59EC4, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x88E76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x575C, symBinAddr: 0x59F20, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x88E8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x57D8, symBinAddr: 0x59F9C, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x88E9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x57E8, symBinAddr: 0x59FAC, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x88EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5810, symBinAddr: 0x59FD4, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x88EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x584C, symBinAddr: 0x5A010, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x88EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x58C4, symBinAddr: 0x5A07C, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x88EEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5908, symBinAddr: 0x5A0C0, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x88F02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x5964, symBinAddr: 0x5A11C, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x88F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x59B8, symBinAddr: 0x5A170, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x88F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5B0C, symBinAddr: 0x5A2C4, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x88F3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5B10, symBinAddr: 0x5A2C8, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x88F52, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5BD8, symBinAddr: 0x5A30C, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x88F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x7068, symBinAddr: 0x5B79C, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x88F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x70AC, symBinAddr: 0x5B7E0, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x88F8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7B08, symBinAddr: 0x5B824, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x88FA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x8C70, symBinAddr: 0x5C98C, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x88FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x8CB4, symBinAddr: 0x5C9D0, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x88FCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x8CF8, symBinAddr: 0x5CA14, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x88FDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x8D3C, symBinAddr: 0x5CA58, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x88FF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x8D80, symBinAddr: 0x5CA9C, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x89006, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x8DC4, symBinAddr: 0x5CAE0, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x8901A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x8E08, symBinAddr: 0x5CB24, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x8902E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA5E0, symBinAddr: 0x5E2FC, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x89042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xA624, symBinAddr: 0x5E340, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x89056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xA668, symBinAddr: 0x5E384, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x8906A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xAE6C, symBinAddr: 0x5EB88, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x8907E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xAEB0, symBinAddr: 0x5EBCC, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x89092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xAEF4, symBinAddr: 0x5EC10, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x890A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xAF7C, symBinAddr: 0x5EC98, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x890BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xAFC0, symBinAddr: 0x5ECDC, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x890CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB014, symBinAddr: 0x5ED20, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x890E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB0A4, symBinAddr: 0x5EDB0, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x890F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB160, symBinAddr: 0x5EE6C, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x8910A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB168, symBinAddr: 0x5EE74, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x8911E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB16C, symBinAddr: 0x5EE78, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x89132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB178, symBinAddr: 0x5EE84, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x89146, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB188, symBinAddr: 0x5EE94, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x8915A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB218, symBinAddr: 0x5EF24, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x8916E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB2D4, symBinAddr: 0x5EFE0, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x89182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB2D8, symBinAddr: 0x5EFE4, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x89196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB2E8, symBinAddr: 0x5EFF4, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x891AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB378, symBinAddr: 0x5F084, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x891BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB434, symBinAddr: 0x5F140, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x891D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB438, symBinAddr: 0x5F144, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x891E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB448, symBinAddr: 0x5F154, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x891FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB4D8, symBinAddr: 0x5F1E4, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x8920E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB594, symBinAddr: 0x5F2A0, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x89222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB598, symBinAddr: 0x5F2A4, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x89236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB5A8, symBinAddr: 0x5F2B4, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x8924A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB638, symBinAddr: 0x5F344, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x8925E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB6F4, symBinAddr: 0x5F400, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x89272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB6FC, symBinAddr: 0x5F408, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x89286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB700, symBinAddr: 0x5F40C, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x8929A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB708, symBinAddr: 0x5F414, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x892AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB718, symBinAddr: 0x5F424, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x892C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB7A8, symBinAddr: 0x5F4B4, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x892D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB864, symBinAddr: 0x5F570, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x892EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB868, symBinAddr: 0x5F574, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x892FE, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB878, symBinAddr: 0x5F584, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x89312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xB89C, symBinAddr: 0x5F5A8, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x89326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xB8BC, symBinAddr: 0x5F5C8, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x8933A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xB8FC, symBinAddr: 0x5F608, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x8934E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB90C, symBinAddr: 0x5F618, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x89362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB910, symBinAddr: 0x5F61C, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x89376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB954, symBinAddr: 0x5F660, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x8938A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB958, symBinAddr: 0x5F664, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x8939E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB99C, symBinAddr: 0x5F6A8, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x893B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB9A0, symBinAddr: 0x5F6AC, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x893C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB9E4, symBinAddr: 0x5F6F0, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x893DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB9E8, symBinAddr: 0x5F6F4, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x893EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBA2C, symBinAddr: 0x5F738, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBA30, symBinAddr: 0x5F73C, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x89416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBA74, symBinAddr: 0x5F780, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x8942A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBA78, symBinAddr: 0x5F784, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x8943E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBABC, symBinAddr: 0x5F7C8, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x89452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAC0, symBinAddr: 0x5F7CC, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x89466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB04, symBinAddr: 0x5F810, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x8947A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB08, symBinAddr: 0x5F814, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x8948E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB4C, symBinAddr: 0x5F858, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x894A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB50, symBinAddr: 0x5F85C, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x894B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB94, symBinAddr: 0x5F8A0, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x894CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB98, symBinAddr: 0x5F8A4, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x894DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBBDC, symBinAddr: 0x5F8E8, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x894F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBBE0, symBinAddr: 0x5F8EC, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC24, symBinAddr: 0x5F930, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x8951A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBC28, symBinAddr: 0x5F934, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x8952E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC6C, symBinAddr: 0x5F978, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x89542, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC70, symBinAddr: 0x5F97C, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x89556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCB4, symBinAddr: 0x5F9C0, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x8956A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCB8, symBinAddr: 0x5F9C4, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x8957E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBCFC, symBinAddr: 0x5FA08, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x89592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD00, symBinAddr: 0x5FA0C, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x895A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBD44, symBinAddr: 0x5FA50, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x895BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBD48, symBinAddr: 0x5FA54, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x895CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBD8C, symBinAddr: 0x5FA98, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x895E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD90, symBinAddr: 0x5FA9C, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x895F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBDD4, symBinAddr: 0x5FAE0, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x8960A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBDD8, symBinAddr: 0x5FAE4, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x8961E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xBE1C, symBinAddr: 0x5FB28, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xBE60, symBinAddr: 0x5FB6C, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xBEF0, symBinAddr: 0x5FBFC, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x8965A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xBFAC, symBinAddr: 0x5FCB8, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x8966E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xBFB0, symBinAddr: 0x5FCBC, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x89682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBFC0, symBinAddr: 0x5FCCC, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x89696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBFC4, symBinAddr: 0x5FCD0, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x896AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC008, symBinAddr: 0x5FD14, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x896BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC00C, symBinAddr: 0x5FD18, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x896D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC050, symBinAddr: 0x5FD5C, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x896E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC054, symBinAddr: 0x5FD60, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF24, symBinAddr: 0x556E8, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89730, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x55710, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x89752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x109C, symBinAddr: 0x55860, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x8976E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x10C4, symBinAddr: 0x55888, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x8978A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x118C, symBinAddr: 0x55950, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x897A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1198, symBinAddr: 0x5595C, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x897C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x11A0, symBinAddr: 0x55964, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x897DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x11A8, symBinAddr: 0x5596C, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89800, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x12C4, symBinAddr: 0x55A88, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x8981C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x12EC, symBinAddr: 0x55AB0, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x8983E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x13E0, symBinAddr: 0x55BA4, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x8985A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1408, symBinAddr: 0x55BCC, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x898A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x156C, symBinAddr: 0x55D30, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x89945, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15F0, symBinAddr: 0x55DB4, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x89961, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1618, symBinAddr: 0x55DDC, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x89983, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x55F14, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x8999F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1778, symBinAddr: 0x55F3C, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x899D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1878, symBinAddr: 0x5603C, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x89A88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1900, symBinAddr: 0x560C4, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x89B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1960, symBinAddr: 0x56124, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x89B58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x19A0, symBinAddr: 0x56164, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x89BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1AC4, symBinAddr: 0x56288, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x89BD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1AEC, symBinAddr: 0x562B0, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x89C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5AC8, symBinAddr: 0x5A280, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x89E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5FE0C, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x89E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5FE0C, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x89E58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5FE14, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x89E94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5FE1C, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x89EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5FE2C, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x89EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5FE30, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x89EFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5FE38, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x89F37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5FE40, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x89F65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5FE50, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x89F90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5FE54, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x89FAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5FE5C, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x89FE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5FE64, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A016, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5FE74, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5FE78, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5FECC, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A06A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5FF10, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FF20, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A1C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FF20, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5FF44, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8A32D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5FF64, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8A36F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5FF64, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8A3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5FF88, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8A4D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FFA8, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8A51A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FFA8, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8A568, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x60008, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8A57C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x60010, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8A590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x6004C, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8A6A9, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x600C4, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8A766, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x600C4, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8A95F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x6042C, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8AB0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60474, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8AB51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60474, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8AB9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x60498, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8ACDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x604B8, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8AD09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x6054C, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8AD4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x60E84, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8ADBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA70, symBinAddr: 0x60EE8, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8ADD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA7C, symBinAddr: 0x60EF4, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8AE06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA0, symBinAddr: 0x60F18, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8AE98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x60524, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8AEC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF0, symBinAddr: 0x60F68, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8AEEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB94, symBinAddr: 0x6100C, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8AF0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xBA0, symBinAddr: 0x61018, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B1CB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x60DB8, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B247, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x6103C, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8B49A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC0, symBinAddr: 0x61438, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8B61E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x10FC, symBinAddr: 0x61574, symSize: 0xAB0 } - - { offsetInCU: 0xF95, offset: 0x8BC24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1BAC, symBinAddr: 0x62024, symSize: 0x694 } - - { offsetInCU: 0x1345, offset: 0x8BFD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2240, symBinAddr: 0x626B8, symSize: 0x4B0 } - - { offsetInCU: 0x14E4, offset: 0x8C173, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x26F0, symBinAddr: 0x62B68, symSize: 0x668 } - - { offsetInCU: 0x1A13, offset: 0x8C6A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2D58, symBinAddr: 0x631D0, symSize: 0x160 } - - { offsetInCU: 0x1B2D, offset: 0x8C7BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2EB8, symBinAddr: 0x63330, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8C7FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3468, symBinAddr: 0x63884, symSize: 0x224 } - - { offsetInCU: 0x1C21, offset: 0x8C8B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x368C, symBinAddr: 0x63AA8, symSize: 0x25C } - - { offsetInCU: 0x1C86, offset: 0x8C915, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x38E8, symBinAddr: 0x63D04, symSize: 0x248 } - - { offsetInCU: 0x1DAE, offset: 0x8CA3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3B74, symBinAddr: 0x63F4C, symSize: 0x2BC } - - { offsetInCU: 0x1EED, offset: 0x8CB7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3E30, symBinAddr: 0x64208, symSize: 0x1A8 } - - { offsetInCU: 0x1F33, offset: 0x8CBC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3FD8, symBinAddr: 0x643B0, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8CF16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x444C, symBinAddr: 0x64824, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D012, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2F34, symBinAddr: 0x633AC, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D054, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2F38, symBinAddr: 0x633B0, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D068, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2F3C, symBinAddr: 0x633B4, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D07C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2F80, symBinAddr: 0x633F8, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D090, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2F84, symBinAddr: 0x633FC, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D0A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3014, symBinAddr: 0x63448, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D0B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3018, symBinAddr: 0x6344C, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D0CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x306C, symBinAddr: 0x63490, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D0E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x30FC, symBinAddr: 0x63520, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D0F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x31B8, symBinAddr: 0x635DC, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D108, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x31C0, symBinAddr: 0x635E4, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D11C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x31C4, symBinAddr: 0x635E8, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D130, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x31CC, symBinAddr: 0x635F0, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D144, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x31DC, symBinAddr: 0x63600, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x326C, symBinAddr: 0x63690, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D16C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x3328, symBinAddr: 0x6374C, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D180, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x3330, symBinAddr: 0x63754, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D194, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x3334, symBinAddr: 0x63758, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D1A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x3340, symBinAddr: 0x63764, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D1BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x3350, symBinAddr: 0x63774, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D1D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3378, symBinAddr: 0x63794, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D1E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x3384, symBinAddr: 0x637A0, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D1F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3388, symBinAddr: 0x637A4, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D20C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x33CC, symBinAddr: 0x637E8, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x33D8, symBinAddr: 0x637F4, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D234, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x33DC, symBinAddr: 0x637F8, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D248, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x3420, symBinAddr: 0x6383C, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D267, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x342C, symBinAddr: 0x63848, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D29F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3440, symBinAddr: 0x6385C, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D2D7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3454, symBinAddr: 0x63870, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8D33B, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x4564, symBinAddr: 0x6493C, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8D34F, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4608, symBinAddr: 0x64984, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8D363, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4644, symBinAddr: 0x649C0, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8D377, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x469C, symBinAddr: 0x64A08, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8D38B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x46A4, symBinAddr: 0x64A10, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8D39F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x46B4, symBinAddr: 0x64A20, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8D3B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4714, symBinAddr: 0x64A28, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8D3C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x47C8, symBinAddr: 0x64ADC, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8D3F6, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8D40E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8D422, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8D436, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8D44A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8D45E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x60574, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8D4DC, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x60598, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8D56B, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x6061C, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8D5FA, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x606A0, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8D691, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x6072C, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8D76B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x60794, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8D845, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x607FC, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8D8BA, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x60868, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8D917, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x608A8, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8D974, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x608E8, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8D99D, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x6092C, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8D9F0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x60994, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8DA6C, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x609F8, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8DAFD, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x60A5C, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8DC63, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8DC83, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8DCA3, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8DCB7, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8DCCB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8DCDF, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8DD88, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x60B68, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8DE2F, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x60BF0, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8DED2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x60C70, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8DFBE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8DFDE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8DFF2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E006, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E01A, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E08A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA4C, symBinAddr: 0x60EC4, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E0A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x60ED0, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E0C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x60ED8, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E0D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA68, symBinAddr: 0x60EE0, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E0F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB70, symBinAddr: 0x60FE8, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E10C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB7C, symBinAddr: 0x60FF4, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E128, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB84, symBinAddr: 0x60FFC, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E13C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x61004, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8E5EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x64AF8, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8E603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x64C80, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8E617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x64D24, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8E62B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x64E80, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8E63F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x65068, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8E653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x65154, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8E667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x652DC, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8E67B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x65374, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8E68F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x6540C, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8E6A3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x65494, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8E6B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x654E8, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8E6CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x65608, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8E6DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x6568C, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8E6F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x65780, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8E707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x658E0, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8E71B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x659BC, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8E72F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x65B04, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8E743, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x65B9C, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8E757, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x65C68, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8E789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x65CF0, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8E7D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x66288, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8E83E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17E8, symBinAddr: 0x662A0, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8E8B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1814, symBinAddr: 0x662CC, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8E8E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x181C, symBinAddr: 0x662D4, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8E914, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1840, symBinAddr: 0x662F8, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8E930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x184C, symBinAddr: 0x66304, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8E94C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2EBC, symBinAddr: 0x67878, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8E992, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x65D10, symSize: 0x210 } - - { offsetInCU: 0x425, offset: 0x8E9D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1468, symBinAddr: 0x65F20, symSize: 0x368 } - - { offsetInCU: 0x456, offset: 0x8EA02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18A8, symBinAddr: 0x66360, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8EA25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18BC, symBinAddr: 0x66374, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8EA7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x18D0, symBinAddr: 0x66388, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8EAA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x6656C, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8EAD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1ABC, symBinAddr: 0x66574, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8EB04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x66598, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8EB20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AEC, symBinAddr: 0x665A4, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8EB3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3078, symBinAddr: 0x67A34, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8EB82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x663A8, symSize: 0x1BC } - - { offsetInCU: 0x62B, offset: 0x8EBD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B48, symBinAddr: 0x66600, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8EC0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B94, symBinAddr: 0x6664C, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8EC31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31C4, symBinAddr: 0x67B80, symSize: 0x2A4 } - - { offsetInCU: 0x6D5, offset: 0x8EC81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1BD4, symBinAddr: 0x6668C, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8ECAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x238C, symBinAddr: 0x66E44, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8ECD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2394, symBinAddr: 0x66E4C, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8ED08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23B8, symBinAddr: 0x66E70, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8ED24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23C4, symBinAddr: 0x66E7C, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8ED40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3468, symBinAddr: 0x67E24, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8ED86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BF4, symBinAddr: 0x666AC, symSize: 0x274 } - - { offsetInCU: 0x819, offset: 0x8EDC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E68, symBinAddr: 0x66920, symSize: 0x4A0 } - - { offsetInCU: 0x84A, offset: 0x8EDF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2420, symBinAddr: 0x66ED8, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8EE19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2434, symBinAddr: 0x66EEC, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8EE3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x246C, symBinAddr: 0x66F00, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8EE51, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24D0, symBinAddr: 0x66F44, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8EE65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2598, symBinAddr: 0x66FC4, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8EE79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2620, symBinAddr: 0x67008, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8EE8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x274C, symBinAddr: 0x67134, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8EEA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x27A0, symBinAddr: 0x67178, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8EEB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2830, symBinAddr: 0x67208, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8EEC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x28EC, symBinAddr: 0x672C4, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8EEDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x28F4, symBinAddr: 0x672CC, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8EEF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x28F8, symBinAddr: 0x672D0, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8EF05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2900, symBinAddr: 0x672D8, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8EF19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2910, symBinAddr: 0x672E8, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8EF2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x29A0, symBinAddr: 0x67378, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8EF41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2A5C, symBinAddr: 0x67434, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8EF55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2A60, symBinAddr: 0x67438, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8EF69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2A70, symBinAddr: 0x67448, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8EF7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2AA0, symBinAddr: 0x67478, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8EF91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2AD0, symBinAddr: 0x674A8, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8EFA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2B2C, symBinAddr: 0x67504, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8EFB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2BDC, symBinAddr: 0x67598, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8EFCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2C40, symBinAddr: 0x675FC, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8EFE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2C9C, symBinAddr: 0x67658, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8EFF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2CFC, symBinAddr: 0x676B8, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D0C, symBinAddr: 0x676C8, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F01D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x676CC, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D54, symBinAddr: 0x67710, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D58, symBinAddr: 0x67714, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D9C, symBinAddr: 0x67758, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F06D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA0, symBinAddr: 0x6775C, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE4, symBinAddr: 0x677A0, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DE8, symBinAddr: 0x677A4, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F0A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E2C, symBinAddr: 0x677E8, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F0BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E30, symBinAddr: 0x677EC, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F0D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E74, symBinAddr: 0x67830, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F0E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E78, symBinAddr: 0x67834, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3740, symBinAddr: 0x680FC, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F118, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3784, symBinAddr: 0x68140, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F12C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x3850, symBinAddr: 0x6820C, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F140, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x38E0, symBinAddr: 0x6829C, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F154, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x399C, symBinAddr: 0x68358, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F168, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x39A0, symBinAddr: 0x6835C, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F17C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x39B0, symBinAddr: 0x6836C, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F190, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x39B4, symBinAddr: 0x68370, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F1A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x39F8, symBinAddr: 0x683B4, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F1B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39FC, symBinAddr: 0x683B8, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F1CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3A40, symBinAddr: 0x683FC, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F1E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3A44, symBinAddr: 0x68400, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F20E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1858, symBinAddr: 0x66310, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F22A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1880, symBinAddr: 0x66338, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F24C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AF8, symBinAddr: 0x665B0, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x665D8, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F28A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23D0, symBinAddr: 0x66E88, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F2A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x23F8, symBinAddr: 0x66EB0, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8F3F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6846C, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8F41C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6846C, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8F43A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x68498, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8F479, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x684CC, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8F497, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x684DC, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8F4C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x684E0, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8F4E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x6850C, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8F51F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x68540, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8F54D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x68550, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8F579, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x68554, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8F58D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x68584, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8F5A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x685AC, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8F5B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x685E8, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8F5C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x68654, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8F5DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x68698, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8F5F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x686E0, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8F605, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x68720, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8F74B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68730, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8F76F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8languageSSvpZ', symObjAddr: 0x8C08, symBinAddr: 0x88AE0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8F789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7versionSSvpZ', symObjAddr: 0x8C18, symBinAddr: 0x88AF0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8F7A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8C28, symBinAddr: 0x88B00, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8F7BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8C38, symBinAddr: 0x88B10, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8F7D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8C48, symBinAddr: 0x88B20, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8F7F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8C58, symBinAddr: 0x88B30, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8F80B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x8C68, symBinAddr: 0x88B40, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8F825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x8C78, symBinAddr: 0x88B50, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8F83F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x8C88, symBinAddr: 0x88B60, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8F859, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x8C98, symBinAddr: 0x88B70, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8F873, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x8CA8, symBinAddr: 0x88B80, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8F88D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x8CB8, symBinAddr: 0x88B90, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8F8A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x8CC8, symBinAddr: 0x88BA0, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8F8C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x8CD8, symBinAddr: 0x88BB0, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8F8DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x8CE8, symBinAddr: 0x88BC0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8F8F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x8CF8, symBinAddr: 0x88BD0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8F90F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x8D08, symBinAddr: 0x88BE0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x8F929, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x8D18, symBinAddr: 0x88BF0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x8F943, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x8D28, symBinAddr: 0x88C00, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x8F95D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x8D38, symBinAddr: 0x88C10, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x8F977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x8D48, symBinAddr: 0x88C20, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x8F991, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x8D58, symBinAddr: 0x88C30, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x8F9AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x8D68, symBinAddr: 0x88C40, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x8F9C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x8D78, symBinAddr: 0x88C50, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x8F9DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x8D88, symBinAddr: 0x88C60, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x8F9F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x8D98, symBinAddr: 0x88C70, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x8FA13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x8DA8, symBinAddr: 0x88C80, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x8FA2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x8DB8, symBinAddr: 0x88C90, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x8FA47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x8DC8, symBinAddr: 0x88CA0, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x8FA61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKeySSvpZ', symObjAddr: 0x8DD8, symBinAddr: 0x88CB0, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x8FA7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKeySSvpZ', symObjAddr: 0x8DE8, symBinAddr: 0x88CC0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x8FA95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvpZ', symObjAddr: 0x8DF8, symBinAddr: 0x88CD0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x8FAAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKeySSvpZ', symObjAddr: 0x8E08, symBinAddr: 0x88CE0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x8FAC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKeySSvpZ', symObjAddr: 0x8E18, symBinAddr: 0x88CF0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x8FAE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKeySSvpZ', symObjAddr: 0x8E28, symBinAddr: 0x88D00, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x8FAFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKeySSvpZ', symObjAddr: 0x8E38, symBinAddr: 0x88D10, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x8FB17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvpZ', symObjAddr: 0x8E48, symBinAddr: 0x88D20, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x8FB31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvpZ', symObjAddr: 0x8E58, symBinAddr: 0x88D30, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x8FB4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvpZ', symObjAddr: 0x8E68, symBinAddr: 0x88D40, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x8FB65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkeySSvpZ', symObjAddr: 0x8E78, symBinAddr: 0x88D50, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x8FB7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvpZ', symObjAddr: 0x8E88, symBinAddr: 0x88D60, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x8FB99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKeySSvpZ', symObjAddr: 0x8E98, symBinAddr: 0x88D70, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x8FBB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKeySSvpZ', symObjAddr: 0x8EA8, symBinAddr: 0x88D80, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x8FBCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKeySSvpZ', symObjAddr: 0x8EB8, symBinAddr: 0x88D90, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x8FBE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKeySSvpZ', symObjAddr: 0x8EC8, symBinAddr: 0x88DA0, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x8FC01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKeySSvpZ', symObjAddr: 0x8ED8, symBinAddr: 0x88DB0, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x8FC1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKeySSvpZ', symObjAddr: 0x8EE8, symBinAddr: 0x88DC0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x8FC35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x8EF8, symBinAddr: 0x88DD0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x8FC4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x8F08, symBinAddr: 0x88DE0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x8FC69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x8F18, symBinAddr: 0x88DF0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x8FC83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKeySSvpZ', symObjAddr: 0x8F28, symBinAddr: 0x88E00, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x8FC9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKeySSvpZ', symObjAddr: 0x8F38, symBinAddr: 0x88E10, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x8FCB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKeySSvpZ', symObjAddr: 0x8F48, symBinAddr: 0x88E20, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x8FCD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x8F58, symBinAddr: 0x88E30, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x8FCEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x8F68, symBinAddr: 0x88E40, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x8FD05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x8F78, symBinAddr: 0x88E50, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x8FD1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x8F88, symBinAddr: 0x88E60, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x8FD39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x8F98, symBinAddr: 0x88E70, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x8FD53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkeySSvpZ', symObjAddr: 0x8FA8, symBinAddr: 0x88E80, symSize: 0x0 } - - { offsetInCU: 0x63D, offset: 0x8FD61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68730, symSize: 0x40 } - - { offsetInCU: 0x65B, offset: 0x8FD7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x68770, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x8FD9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x687B0, symSize: 0x40 } - - { offsetInCU: 0x697, offset: 0x8FDBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x687F0, symSize: 0x40 } - - { offsetInCU: 0x6B5, offset: 0x8FDD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x68830, symSize: 0x40 } - - { offsetInCU: 0x6DF, offset: 0x8FE03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x68870, symSize: 0x14 } - - { offsetInCU: 0x6FA, offset: 0x8FE1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x68A04, symSize: 0x108 } - - { offsetInCU: 0x74C, offset: 0x8FE70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x68C40, symSize: 0x8 } - - { offsetInCU: 0x768, offset: 0x8FE8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x68C48, symSize: 0x18 } - - { offsetInCU: 0x780, offset: 0x8FEA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x68C48, symSize: 0x18 } - - { offsetInCU: 0x792, offset: 0x8FEB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x68884, symSize: 0x40 } - - { offsetInCU: 0x7B0, offset: 0x8FED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x688C4, symSize: 0x40 } - - { offsetInCU: 0x7CE, offset: 0x8FEF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x68904, symSize: 0x40 } - - { offsetInCU: 0x7EC, offset: 0x8FF10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x68944, symSize: 0x40 } - - { offsetInCU: 0x80A, offset: 0x8FF2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x68984, symSize: 0x40 } - - { offsetInCU: 0x828, offset: 0x8FF4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x689C4, symSize: 0x40 } - - { offsetInCU: 0x851, offset: 0x8FF75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x68B30, symSize: 0x4 } - - { offsetInCU: 0x865, offset: 0x8FF89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x68B34, symSize: 0x44 } - - { offsetInCU: 0x88F, offset: 0x8FFB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x68C60, symSize: 0x90 } - - { offsetInCU: 0x8A3, offset: 0x8FFC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x68CF0, symSize: 0xBC } - - { offsetInCU: 0x8B7, offset: 0x8FFDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x68DAC, symSize: 0x8 } - - { offsetInCU: 0x8CB, offset: 0x8FFEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x68DB4, symSize: 0x4 } - - { offsetInCU: 0x8DF, offset: 0x90003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x68DB8, symSize: 0x8 } - - { offsetInCU: 0x8F3, offset: 0x90017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x68DC0, symSize: 0x10 } - - { offsetInCU: 0x907, offset: 0x9002B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8language_WZ', symObjAddr: 0x6B0, symBinAddr: 0x68DD0, symSize: 0x20 } - - { offsetInCU: 0x921, offset: 0x90045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7version_WZ', symObjAddr: 0x6D0, symBinAddr: 0x68DF0, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x9005F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x6EC, symBinAddr: 0x68E0C, symSize: 0x1C } - - { offsetInCU: 0x955, offset: 0x90079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x708, symBinAddr: 0x68E28, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x90093, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x724, symBinAddr: 0x68E44, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x900AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPassword_WZ', symObjAddr: 0x740, symBinAddr: 0x68E60, symSize: 0x14 } - - { offsetInCU: 0x9AA, offset: 0x900CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x754, symBinAddr: 0x68E74, symSize: 0x1C } - - { offsetInCU: 0x9C4, offset: 0x900E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x770, symBinAddr: 0x68E90, symSize: 0x24 } - - { offsetInCU: 0x9DE, offset: 0x90102, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x794, symBinAddr: 0x68EB4, symSize: 0x20 } - - { offsetInCU: 0x9F8, offset: 0x9011C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7B4, symBinAddr: 0x68ED4, symSize: 0x28 } - - { offsetInCU: 0xA12, offset: 0x90136, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7DC, symBinAddr: 0x68EFC, symSize: 0x24 } - - { offsetInCU: 0xA2C, offset: 0x90150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x800, symBinAddr: 0x68F20, symSize: 0x24 } - - { offsetInCU: 0xA46, offset: 0x9016A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x824, symBinAddr: 0x68F44, symSize: 0x20 } - - { offsetInCU: 0xA60, offset: 0x90184, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x844, symBinAddr: 0x68F64, symSize: 0x28 } - - { offsetInCU: 0xA7A, offset: 0x9019E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x86C, symBinAddr: 0x68F8C, symSize: 0x1C } - - { offsetInCU: 0xA95, offset: 0x901B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKey_WZ', symObjAddr: 0x888, symBinAddr: 0x68FA8, symSize: 0x18 } - - { offsetInCU: 0xAAF, offset: 0x901D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKey_WZ', symObjAddr: 0x8A0, symBinAddr: 0x68FC0, symSize: 0x18 } - - { offsetInCU: 0xAC9, offset: 0x901ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKey_WZ', symObjAddr: 0x8B8, symBinAddr: 0x68FD8, symSize: 0x1C } - - { offsetInCU: 0xAE3, offset: 0x90207, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x68FF4, symSize: 0x1C } - - { offsetInCU: 0xAFD, offset: 0x90221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x69010, symSize: 0x18 } - - { offsetInCU: 0xB17, offset: 0x9023B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKey_WZ', symObjAddr: 0x908, symBinAddr: 0x69028, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x90255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKey_WZ', symObjAddr: 0x924, symBinAddr: 0x69044, symSize: 0x1C } - - { offsetInCU: 0xB4B, offset: 0x9026F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x940, symBinAddr: 0x69060, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x90289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x6907C, symSize: 0x18 } - - { offsetInCU: 0xB7F, offset: 0x902A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKey_WZ', symObjAddr: 0x974, symBinAddr: 0x69094, symSize: 0x18 } - - { offsetInCU: 0xB99, offset: 0x902BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x98C, symBinAddr: 0x690AC, symSize: 0x1C } - - { offsetInCU: 0xBB3, offset: 0x902D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x690C8, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x902F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkey_WZ', symObjAddr: 0x9C0, symBinAddr: 0x690E0, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x9030B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x690FC, symSize: 0x24 } - - { offsetInCU: 0xC01, offset: 0x90325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKey_WZ', symObjAddr: 0xA00, symBinAddr: 0x69120, symSize: 0x18 } - - { offsetInCU: 0xC1B, offset: 0x9033F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKey_WZ', symObjAddr: 0xA18, symBinAddr: 0x69138, symSize: 0x18 } - - { offsetInCU: 0xC35, offset: 0x90359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKey_WZ', symObjAddr: 0xA30, symBinAddr: 0x69150, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x90373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKey_WZ', symObjAddr: 0xA48, symBinAddr: 0x69168, symSize: 0x1C } - - { offsetInCU: 0xC69, offset: 0x9038D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x69184, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x903A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKey_WZ', symObjAddr: 0xA7C, symBinAddr: 0x6919C, symSize: 0x18 } - - { offsetInCU: 0xC9D, offset: 0x903C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKey_WZ', symObjAddr: 0xA94, symBinAddr: 0x691B4, symSize: 0x1C } - - { offsetInCU: 0xCB7, offset: 0x903DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x691D0, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x903F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkey_WZ', symObjAddr: 0xAC8, symBinAddr: 0x691E8, symSize: 0x18 } - - { offsetInCU: 0xCEB, offset: 0x9040F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekey_WZ', symObjAddr: 0xAE0, symBinAddr: 0x69200, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x90429, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkey_WZ', symObjAddr: 0xAF8, symBinAddr: 0x69218, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x90443, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkey_WZ', symObjAddr: 0xB10, symBinAddr: 0x69230, symSize: 0x20 } - - { offsetInCU: 0xD39, offset: 0x9045D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKey_WZ', symObjAddr: 0xB30, symBinAddr: 0x69250, symSize: 0x24 } - - { offsetInCU: 0xD53, offset: 0x90477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKey_WZ', symObjAddr: 0xB54, symBinAddr: 0x69274, symSize: 0x1C } - - { offsetInCU: 0xD6D, offset: 0x90491, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x69290, symSize: 0x1C } - - { offsetInCU: 0xD87, offset: 0x904AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x692AC, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x904C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x692C8, symSize: 0x18 } - - { offsetInCU: 0xDBB, offset: 0x904DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKey_WZ', symObjAddr: 0xBC0, symBinAddr: 0x692E0, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x904F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x692FC, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x90513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xBF4, symBinAddr: 0x69314, symSize: 0x18 } - - { offsetInCU: 0xE09, offset: 0x9052D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC0C, symBinAddr: 0x6932C, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x90547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKey_WZ', symObjAddr: 0xC24, symBinAddr: 0x69344, symSize: 0x1C } - - { offsetInCU: 0xE3D, offset: 0x90561, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x69360, symSize: 0x24 } - - { offsetInCU: 0xE57, offset: 0x9057B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKey_WZ', symObjAddr: 0xC64, symBinAddr: 0x69384, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x90595, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x693A0, symSize: 0x20 } - - { offsetInCU: 0xE8B, offset: 0x905AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCA0, symBinAddr: 0x693C0, symSize: 0x18 } - - { offsetInCU: 0xEA5, offset: 0x905C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCB8, symBinAddr: 0x693D8, symSize: 0x18 } - - { offsetInCU: 0xEBF, offset: 0x905E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCD0, symBinAddr: 0x693F0, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x905FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekey_WZ', symObjAddr: 0xCE8, symBinAddr: 0x69408, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkey_WZ', symObjAddr: 0xD00, symBinAddr: 0x69420, symSize: 0x18 } - - { offsetInCU: 0xF56, offset: 0x9067A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0xD18, symBinAddr: 0x69438, symSize: 0x13C } - - { offsetInCU: 0x1191, offset: 0x908B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x68B0C, symSize: 0x24 } - - { offsetInCU: 0x1233, offset: 0x90957, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x68B78, symSize: 0x4C } - - { offsetInCU: 0x130B, offset: 0x90A2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x68BC4, symSize: 0x34 } - - { offsetInCU: 0x1387, offset: 0x90AAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x68BF8, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x90C65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69574, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x90CA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69574, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x90CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x69598, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x90E34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1AE8, symBinAddr: 0x884A8, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x90E7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x69694, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x90EFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x696D4, symSize: 0x3EC } - - { offsetInCU: 0x302, offset: 0x910E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x55C, symBinAddr: 0x69AD4, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x9114D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C0, symBinAddr: 0x69B38, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x911B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x624, symBinAddr: 0x69B9C, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x91219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x688, symBinAddr: 0x69C00, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x9127F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6EC, symBinAddr: 0x69C64, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x9137C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x814, symBinAddr: 0x69D30, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x913ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x69D6C, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x91429, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x69D6C, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x91458, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x860, symBinAddr: 0x69D7C, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x914D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x9C4, symBinAddr: 0x69EE0, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x9153A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x9F8, symBinAddr: 0x69F14, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x915BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA4C, symBinAddr: 0x69F68, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA98, symBinAddr: 0x69FB4, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x91705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB2C, symBinAddr: 0x6A038, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x917C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA0, symBinAddr: 0x6A0AC, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91877, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC24, symBinAddr: 0x6A130, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC5C, symBinAddr: 0x6A168, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91999, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC94, symBinAddr: 0x6A1A0, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x91A2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCCC, symBinAddr: 0x6A1D8, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x91AC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD04, symBinAddr: 0x6A210, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x91B55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD3C, symBinAddr: 0x6A248, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x91BEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD74, symBinAddr: 0x6A280, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x91C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDAC, symBinAddr: 0x6A2B8, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x91CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDE4, symBinAddr: 0x6A2F0, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x91D4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE28, symBinAddr: 0x6A334, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x91E31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xF60, symBinAddr: 0x6A46C, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x91F18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x100C, symBinAddr: 0x6A518, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x91FB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1084, symBinAddr: 0x6A590, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x91FE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1108, symBinAddr: 0x6A614, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x92086, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x695F8, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x9209E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x69648, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x9213C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5B8, symBinAddr: 0x69B30, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x92150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x61C, symBinAddr: 0x69B94, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x92164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x680, symBinAddr: 0x69BF8, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x92178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6E4, symBinAddr: 0x69C5C, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x9218C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x748, symBinAddr: 0x69CC0, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x921A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x7AC, symBinAddr: 0x69CC8, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x921B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOf', symObjAddr: 0x7CC, symBinAddr: 0x69CE8, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x92215, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1250, symBinAddr: 0x6A75C, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x92229, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1258, symBinAddr: 0x6A764, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x9223D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1268, symBinAddr: 0x6A774, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x9227E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x129C, symBinAddr: 0x6A77C, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x92380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15BC, symBinAddr: 0x6AA9C, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x924D3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x695B8, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x924EF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x695BC, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x9250B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x695C0, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x92527, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x695C4, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x92543, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x695C8, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x9255F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x695CC, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x9257B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x695D0, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92597, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x695D4, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x925B3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x695D8, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x925CF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x695DC, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x925EB, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x695E0, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x92607, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x695EC, symSize: 0xC } -... diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 deleted file mode 100755 index b7053d2..0000000 Binary files a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 and /dev/null differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json deleted file mode 100644 index ae0cff5..0000000 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,22794 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2.SSLOption", - "usr": "s:11IoTConnect29SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2.SSLOption", - "usr": "s:11IoTConnect29SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2.SSLOption", - "usr": "s:11IoTConnect29SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2.OfflineStorageOption", - "usr": "s:11IoTConnect220OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2.OfflineStorageOption", - "usr": "s:11IoTConnect220OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2.OfflineStorageOption", - "usr": "s:11IoTConnect220OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2.SDKClientOption", - "usr": "s:11IoTConnect215SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect215SDKClientOptionVACycfc", - "mangledName": "$s11IoTConnect215SDKClientOptionVACycfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect215SDKClientOptionV", - "mangledName": "$s11IoTConnect215SDKClientOptionV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect217ReachabilityErrorO", - "mangledName": "$s11IoTConnect217ReachabilityErrorO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvp", - "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvg", - "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvg", - "moduleName": "IoTConnect2", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", - "mangledName": "$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", - "mangledName": "$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", - "mangledName": "$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC13startNotifieryyKF", - "mangledName": "$s11IoTConnect212ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC12stopNotifieryyF", - "mangledName": "$s11IoTConnect212ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvp", - "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvg", - "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:11IoTConnect212ReachabilityC", - "mangledName": "$s11IoTConnect212ReachabilityC", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2.IoTConnectConfig", - "usr": "s:11IoTConnect20A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2.DebugConfig", - "usr": "s:11IoTConnect211DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2.MqttConfig", - "usr": "s:11IoTConnect210MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2.SDKClientOption", - "usr": "s:11IoTConnect215SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect20A14TConnectConfigV", - "mangledName": "$s11IoTConnect20A14TConnectConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvp", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvg", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvs", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvM", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect211DebugConfigV", - "mangledName": "$s11IoTConnect211DebugConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2.CertificateConfig", - "usr": "s:11IoTConnect217CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", - "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2.CertificateConfig", - "usr": "s:11IoTConnect217CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", - "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2.OfflineStorageConfig", - "usr": "s:11IoTConnect220OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", - "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2.OfflineStorageConfig", - "usr": "s:11IoTConnect220OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", - "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect210MqttConfigV", - "mangledName": "$s11IoTConnect210MqttConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvp", - "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvg", - "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect217CertificateConfigV", - "mangledName": "$s11IoTConnect217CertificateConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect220OfflineStorageConfigV", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect218MqttConnectionTypeO", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect220OfflineStorageOptionV", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEV", - "printedName": "DEV", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "AVNET", - "printedName": "AVNET", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "QA", - "printedName": "QA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO2QAyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO2QAyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect215IOTCEnvironmentO", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect20A4TCPfO2azyA2CmF", - "mangledName": "$s11IoTConnect20A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect20A4TCPfO3awsyA2CmF", - "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvp", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvg", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect20A4TCPfO", - "mangledName": "$s11IoTConnect20A4TCPfO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvp", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvg", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvs", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvM", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect29SSLOptionV", - "mangledName": "$s11IoTConnect29SSLOptionV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect211CommandTypeO8rawValueSivp", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueSivg", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect211CommandTypeO", - "mangledName": "$s11IoTConnect211CommandTypeO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2.SDKClient", - "usr": "s:11IoTConnect29SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect29SDKClientC6sharedACvpZ", - "mangledName": "$s11IoTConnect29SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2.SDKClient", - "usr": "s:11IoTConnect29SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SDKClientC6sharedACvgZ", - "mangledName": "$s11IoTConnect29SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2.IoTConnectConfig", - "usr": "s:11IoTConnect20A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC11getAllTwinsyyF", - "mangledName": "$s11IoTConnect29SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", - "mangledName": "$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", - "mangledName": "$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11IoTConnect29SDKClientC", - "mangledName": "$s11IoTConnect29SDKClientC", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS11IoTConnect2E6stringS2S_tcfc", - "mangledName": "$sSS11IoTConnect2E6stringS2S_tcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35224, - "length": 79, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35302, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2702, - "length": 61, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2721, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2751, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2762, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2465, - "length": 22, - "value": "\"SDKClient initialize\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json deleted file mode 100644 index ae0cff5..0000000 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,22794 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2.SSLOption", - "usr": "s:11IoTConnect29SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2.SSLOption", - "usr": "s:11IoTConnect29SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2.SSLOption", - "usr": "s:11IoTConnect29SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2.OfflineStorageOption", - "usr": "s:11IoTConnect220OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2.OfflineStorageOption", - "usr": "s:11IoTConnect220OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2.OfflineStorageOption", - "usr": "s:11IoTConnect220OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2.SDKClientOption", - "usr": "s:11IoTConnect215SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect215SDKClientOptionVACycfc", - "mangledName": "$s11IoTConnect215SDKClientOptionVACycfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect215SDKClientOptionV", - "mangledName": "$s11IoTConnect215SDKClientOptionV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2.ReachabilityError", - "usr": "s:11IoTConnect217ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect217ReachabilityErrorO", - "mangledName": "$s11IoTConnect217ReachabilityErrorO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO", - "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", - "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvp", - "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvg", - "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvg", - "moduleName": "IoTConnect2", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2.Reachability.Connection", - "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", - "mangledName": "$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", - "mangledName": "$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2.Reachability", - "usr": "s:11IoTConnect212ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", - "mangledName": "$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC13startNotifieryyKF", - "mangledName": "$s11IoTConnect212ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect212ReachabilityC12stopNotifieryyF", - "mangledName": "$s11IoTConnect212ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvp", - "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvg", - "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:11IoTConnect212ReachabilityC", - "mangledName": "$s11IoTConnect212ReachabilityC", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2.IoTConnectConfig", - "usr": "s:11IoTConnect20A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2.DebugConfig", - "usr": "s:11IoTConnect211DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2.MqttConfig", - "usr": "s:11IoTConnect210MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2.SDKClientOption", - "usr": "s:11IoTConnect215SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect20A14TConnectConfigV", - "mangledName": "$s11IoTConnect20A14TConnectConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvp", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvg", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvs", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211DebugConfigV5debugSbvM", - "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect211DebugConfigV", - "mangledName": "$s11IoTConnect211DebugConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2.CertificateConfig", - "usr": "s:11IoTConnect217CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", - "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2.CertificateConfig", - "usr": "s:11IoTConnect217CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", - "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2.OfflineStorageConfig", - "usr": "s:11IoTConnect220OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", - "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2.OfflineStorageConfig", - "usr": "s:11IoTConnect220OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", - "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect210MqttConfigV", - "mangledName": "$s11IoTConnect210MqttConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvp", - "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvg", - "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect217CertificateConfigV", - "mangledName": "$s11IoTConnect217CertificateConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect220OfflineStorageConfigV", - "mangledName": "$s11IoTConnect220OfflineStorageConfigV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2.MqttConnectionType", - "usr": "s:11IoTConnect218MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect218MqttConnectionTypeO", - "mangledName": "$s11IoTConnect218MqttConnectionTypeO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect220OfflineStorageOptionV", - "mangledName": "$s11IoTConnect220OfflineStorageOptionV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEV", - "printedName": "DEV", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "AVNET", - "printedName": "AVNET", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "QA", - "printedName": "QA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO2QAyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO2QAyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect215IOTCEnvironmentO", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2.IOTCEnvironment", - "usr": "s:11IoTConnect215IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect20A4TCPfO2azyA2CmF", - "mangledName": "$s11IoTConnect20A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect20A4TCPfO3awsyA2CmF", - "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvp", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvg", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect20A4TCPfO", - "mangledName": "$s11IoTConnect20A4TCPfO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvp", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvg", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvs", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SSLOptionV8passwordSSvM", - "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:11IoTConnect29SSLOptionV", - "mangledName": "$s11IoTConnect29SSLOptionV", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect211CommandTypeO8rawValueSivp", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueSivg", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:11IoTConnect211CommandTypeO", - "mangledName": "$s11IoTConnect211CommandTypeO", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2.SDKClient", - "usr": "s:11IoTConnect29SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:11IoTConnect29SDKClientC6sharedACvpZ", - "mangledName": "$s11IoTConnect29SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2.SDKClient", - "usr": "s:11IoTConnect29SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:11IoTConnect29SDKClientC6sharedACvgZ", - "mangledName": "$s11IoTConnect29SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2.IoTConnectConfig", - "usr": "s:11IoTConnect20A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC11getAllTwinsyyF", - "mangledName": "$s11IoTConnect29SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", - "mangledName": "$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", - "mangledName": "$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:11IoTConnect29SDKClientC", - "mangledName": "$s11IoTConnect29SDKClientC", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS11IoTConnect2E6stringS2S_tcfc", - "mangledName": "$sSS11IoTConnect2E6stringS2S_tcfc", - "moduleName": "IoTConnect2", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35224, - "length": 79, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35302, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2702, - "length": 61, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2721, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2751, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2762, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2465, - "length": 22, - "value": "\"SDKClient initialize\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 deleted file mode 100644 index 976250b..0000000 Binary files a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 and /dev/null differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml deleted file mode 100644 index 1e0ad3f..0000000 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml +++ /dev/null @@ -1,1829 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' -relocations: - - { offsetInCU: 0x34, offset: 0x5847B, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6B9F0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x584B0, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6BA20, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E028, symBinAddr: 0x85328, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58540, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x2B98, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5855C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x2BDC, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x58578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x2BE0, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x585D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x2E9C, symSize: 0xD84 } - - { offsetInCU: 0x470, offset: 0x58936, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1144, symBinAddr: 0x3C20, symSize: 0x384 } - - { offsetInCU: 0x4D3, offset: 0x58999, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x14C8, symBinAddr: 0x3FA4, symSize: 0x20 } - - { offsetInCU: 0x500, offset: 0x589C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1694, symBinAddr: 0x4170, symSize: 0x698 } - - { offsetInCU: 0x804, offset: 0x58CCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D2C, symBinAddr: 0x4808, symSize: 0x3D4 } - - { offsetInCU: 0xABA, offset: 0x58F80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2100, symBinAddr: 0x4BDC, symSize: 0x914 } - - { offsetInCU: 0xF90, offset: 0x59456, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A14, symBinAddr: 0x54F0, symSize: 0x668 } - - { offsetInCU: 0x138A, offset: 0x59850, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x307C, symBinAddr: 0x5B58, symSize: 0x3C18 } - - { offsetInCU: 0x2E80, offset: 0x5B346, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6CA4, symBinAddr: 0x9770, symSize: 0x150 } - - { offsetInCU: 0x2F6A, offset: 0x5B430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6DF4, symBinAddr: 0x98C0, symSize: 0x304 } - - { offsetInCU: 0x315B, offset: 0x5B621, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x70F8, symBinAddr: 0x9BC4, symSize: 0x3C8 } - - { offsetInCU: 0x34C4, offset: 0x5B98A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x74C0, symBinAddr: 0x9F8C, symSize: 0x2E4 } - - { offsetInCU: 0x3698, offset: 0x5BB5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x77A4, symBinAddr: 0xA270, symSize: 0x240 } - - { offsetInCU: 0x382A, offset: 0x5BCF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x79E4, symBinAddr: 0xA4B0, symSize: 0x244 } - - { offsetInCU: 0x39BC, offset: 0x5BE82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C28, symBinAddr: 0xA6F4, symSize: 0x430 } - - { offsetInCU: 0x3B25, offset: 0x5BFEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x8058, symBinAddr: 0xAB24, symSize: 0x650 } - - { offsetInCU: 0x3E38, offset: 0x5C2FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x86A8, symBinAddr: 0xB174, symSize: 0x224 } - - { offsetInCU: 0x4049, offset: 0x5C50F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9AF4, symBinAddr: 0xC5C0, symSize: 0x1514 } - - { offsetInCU: 0x5725, offset: 0x5DBEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x2B1C, symSize: 0x3C } - - { offsetInCU: 0x5755, offset: 0x5DC1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x2B58, symSize: 0x40 } - - { offsetInCU: 0x592D, offset: 0x5DDF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x14E8, symBinAddr: 0x3FC4, symSize: 0x8 } - - { offsetInCU: 0x5941, offset: 0x5DE07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x14F0, symBinAddr: 0x3FCC, symSize: 0x3C } - - { offsetInCU: 0x5955, offset: 0x5DE1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x152C, symBinAddr: 0x4008, symSize: 0x168 } - - { offsetInCU: 0x5E9B, offset: 0x5E361, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8940, symBinAddr: 0xB40C, symSize: 0xC } - - { offsetInCU: 0x5EAF, offset: 0x5E375, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x894C, symBinAddr: 0xB418, symSize: 0x4 } - - { offsetInCU: 0x5EC3, offset: 0x5E389, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8950, symBinAddr: 0xB41C, symSize: 0x20 } - - { offsetInCU: 0x5ED7, offset: 0x5E39D, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x8970, symBinAddr: 0xB43C, symSize: 0x28 } - - { offsetInCU: 0x5FE8, offset: 0x5E4AE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8EA8, symBinAddr: 0xB974, symSize: 0x2C } - - { offsetInCU: 0x5FFC, offset: 0x5E4C2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8ED4, symBinAddr: 0xB9A0, symSize: 0x2C } - - { offsetInCU: 0x6010, offset: 0x5E4D6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8F40, symBinAddr: 0xBA0C, symSize: 0x2C } - - { offsetInCU: 0x6024, offset: 0x5E4EA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8F6C, symBinAddr: 0xBA38, symSize: 0x2C } - - { offsetInCU: 0x6059, offset: 0x5E51F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x9188, symBinAddr: 0xBC54, symSize: 0x210 } - - { offsetInCU: 0x60AB, offset: 0x5E571, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x9398, symBinAddr: 0xBE64, symSize: 0x68 } - - { offsetInCU: 0x610C, offset: 0x5E5D2, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x955C, symBinAddr: 0xC028, symSize: 0x1DC } - - { offsetInCU: 0x6657, offset: 0x5EB1D, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB078, symBinAddr: 0xDB44, symSize: 0x40 } - - { offsetInCU: 0x666B, offset: 0x5EB31, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB0B8, symBinAddr: 0xDB84, symSize: 0x20 } - - { offsetInCU: 0x667F, offset: 0x5EB45, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB0D8, symBinAddr: 0xDBA4, symSize: 0x10 } - - { offsetInCU: 0x6693, offset: 0x5EB59, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB0E8, symBinAddr: 0xDBB4, symSize: 0x3C } - - { offsetInCU: 0x66A7, offset: 0x5EB6D, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB184, symBinAddr: 0xDC50, symSize: 0x44 } - - { offsetInCU: 0x66BB, offset: 0x5EB81, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB334, symBinAddr: 0xDE00, symSize: 0x10 } - - { offsetInCU: 0x66CF, offset: 0x5EB95, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB344, symBinAddr: 0xDE10, symSize: 0x10 } - - { offsetInCU: 0x66E3, offset: 0x5EBA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xB354, symBinAddr: 0xDE20, symSize: 0x5C } - - { offsetInCU: 0x66F7, offset: 0x5EBBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xB3B0, symBinAddr: 0xDE7C, symSize: 0x30C } - - { offsetInCU: 0x670B, offset: 0x5EBD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB6BC, symBinAddr: 0xE188, symSize: 0x240 } - - { offsetInCU: 0x671F, offset: 0x5EBE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB8FC, symBinAddr: 0xE3C8, symSize: 0x70 } - - { offsetInCU: 0x6733, offset: 0x5EBF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xB96C, symBinAddr: 0xE438, symSize: 0x34 } - - { offsetInCU: 0x6747, offset: 0x5EC0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xB9A0, symBinAddr: 0xE46C, symSize: 0x174 } - - { offsetInCU: 0x675B, offset: 0x5EC21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xBB14, symBinAddr: 0xE5E0, symSize: 0xB4 } - - { offsetInCU: 0x676F, offset: 0x5EC35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xBBC8, symBinAddr: 0xE694, symSize: 0x10 } - - { offsetInCU: 0x6783, offset: 0x5EC49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xBBD8, symBinAddr: 0xE6A4, symSize: 0x34 } - - { offsetInCU: 0x6797, offset: 0x5EC5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xBC8C, symBinAddr: 0xE758, symSize: 0x5C } - - { offsetInCU: 0x67AB, offset: 0x5EC71, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBD8C, symBinAddr: 0xE858, symSize: 0x2C } - - { offsetInCU: 0x67BF, offset: 0x5EC85, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBDB8, symBinAddr: 0xE884, symSize: 0x2C } - - { offsetInCU: 0x67D3, offset: 0x5EC99, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBDE4, symBinAddr: 0xE8B0, symSize: 0x2C } - - { offsetInCU: 0x67E7, offset: 0x5ECAD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBE10, symBinAddr: 0xE8DC, symSize: 0x2C } - - { offsetInCU: 0x67FB, offset: 0x5ECC1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBE3C, symBinAddr: 0xE908, symSize: 0x2C } - - { offsetInCU: 0x680F, offset: 0x5ECD5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBE68, symBinAddr: 0xE934, symSize: 0x2C } - - { offsetInCU: 0x6823, offset: 0x5ECE9, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBE94, symBinAddr: 0xE960, symSize: 0x2C } - - { offsetInCU: 0x6C2B, offset: 0x5F0F1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x89AC, symBinAddr: 0xB478, symSize: 0x14 } - - { offsetInCU: 0x6C69, offset: 0x5F12F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x89CC, symBinAddr: 0xB498, symSize: 0x8 } - - { offsetInCU: 0x6CB8, offset: 0x5F17E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x89D4, symBinAddr: 0xB4A0, symSize: 0x14 } - - { offsetInCU: 0x6D55, offset: 0x5F21B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x89E8, symBinAddr: 0xB4B4, symSize: 0x14 } - - { offsetInCU: 0x6DEA, offset: 0x5F2B0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x89FC, symBinAddr: 0xB4C8, symSize: 0x14 } - - { offsetInCU: 0x6E87, offset: 0x5F34D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A10, symBinAddr: 0xB4DC, symSize: 0x30 } - - { offsetInCU: 0x6FFA, offset: 0x5F4C0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8A40, symBinAddr: 0xB50C, symSize: 0x2C } - - { offsetInCU: 0x7187, offset: 0x5F64D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8A6C, symBinAddr: 0xB538, symSize: 0x24 } - - { offsetInCU: 0x7273, offset: 0x5F739, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8A90, symBinAddr: 0xB55C, symSize: 0x14 } - - { offsetInCU: 0x72D9, offset: 0x5F79F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8AA4, symBinAddr: 0xB570, symSize: 0x14 } - - { offsetInCU: 0x733F, offset: 0x5F805, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8AB8, symBinAddr: 0xB584, symSize: 0x14 } - - { offsetInCU: 0x73B4, offset: 0x5F87A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8ACC, symBinAddr: 0xB598, symSize: 0x14 } - - { offsetInCU: 0x745D, offset: 0x5F923, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8AE0, symBinAddr: 0xB5AC, symSize: 0x14 } - - { offsetInCU: 0x74D4, offset: 0x5F99A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8AF4, symBinAddr: 0xB5C0, symSize: 0x14 } - - { offsetInCU: 0x758C, offset: 0x5FA52, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B08, symBinAddr: 0xB5D4, symSize: 0x14 } - - { offsetInCU: 0x7626, offset: 0x5FAEC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B1C, symBinAddr: 0xB5E8, symSize: 0x10 } - - { offsetInCU: 0x768E, offset: 0x5FB54, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B2C, symBinAddr: 0xB5F8, symSize: 0x28 } - - { offsetInCU: 0x76AA, offset: 0x5FB70, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8B54, symBinAddr: 0xB620, symSize: 0x14 } - - { offsetInCU: 0x7726, offset: 0x5FBEC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8B84, symBinAddr: 0xB650, symSize: 0x14 } - - { offsetInCU: 0x7757, offset: 0x5FC1D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8B98, symBinAddr: 0xB664, symSize: 0x14 } - - { offsetInCU: 0x7788, offset: 0x5FC4E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8BAC, symBinAddr: 0xB678, symSize: 0x14 } - - { offsetInCU: 0x77B9, offset: 0x5FC7F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8BC0, symBinAddr: 0xB68C, symSize: 0x30 } - - { offsetInCU: 0x77E8, offset: 0x5FCAE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8BF0, symBinAddr: 0xB6BC, symSize: 0x2C } - - { offsetInCU: 0x7819, offset: 0x5FCDF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C1C, symBinAddr: 0xB6E8, symSize: 0x24 } - - { offsetInCU: 0x784A, offset: 0x5FD10, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8C40, symBinAddr: 0xB70C, symSize: 0x14 } - - { offsetInCU: 0x787B, offset: 0x5FD41, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8C54, symBinAddr: 0xB720, symSize: 0x14 } - - { offsetInCU: 0x78AC, offset: 0x5FD72, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8C68, symBinAddr: 0xB734, symSize: 0x14 } - - { offsetInCU: 0x78DD, offset: 0x5FDA3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8C7C, symBinAddr: 0xB748, symSize: 0x14 } - - { offsetInCU: 0x790E, offset: 0x5FDD4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8C90, symBinAddr: 0xB75C, symSize: 0x14 } - - { offsetInCU: 0x793F, offset: 0x5FE05, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8CA4, symBinAddr: 0xB770, symSize: 0x14 } - - { offsetInCU: 0x7970, offset: 0x5FE36, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8CB8, symBinAddr: 0xB784, symSize: 0x14 } - - { offsetInCU: 0x79A1, offset: 0x5FE67, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8CCC, symBinAddr: 0xB798, symSize: 0x10 } - - { offsetInCU: 0x79D2, offset: 0x5FE98, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8CDC, symBinAddr: 0xB7A8, symSize: 0x28 } - - { offsetInCU: 0x79EE, offset: 0x5FEB4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D04, symBinAddr: 0xB7D0, symSize: 0x14 } - - { offsetInCU: 0x7A2E, offset: 0x5FEF4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D24, symBinAddr: 0xB7F0, symSize: 0x40 } - - { offsetInCU: 0x7AAC, offset: 0x5FF72, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8D64, symBinAddr: 0xB830, symSize: 0x70 } - - { offsetInCU: 0x7B3F, offset: 0x60005, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E1C, symBinAddr: 0xB8E8, symSize: 0x4 } - - { offsetInCU: 0x7B5F, offset: 0x60025, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E1C, symBinAddr: 0xB8E8, symSize: 0x4 } - - { offsetInCU: 0x7B7F, offset: 0x60045, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E20, symBinAddr: 0xB8EC, symSize: 0x4 } - - { offsetInCU: 0x7B9F, offset: 0x60065, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E20, symBinAddr: 0xB8EC, symSize: 0x4 } - - { offsetInCU: 0x7BC5, offset: 0x6008B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E24, symBinAddr: 0xB8F0, symSize: 0x40 } - - { offsetInCU: 0x7C34, offset: 0x600FA, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8E64, symBinAddr: 0xB930, symSize: 0x8 } - - { offsetInCU: 0x7C5F, offset: 0x60125, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8E6C, symBinAddr: 0xB938, symSize: 0x3C } - - { offsetInCU: 0x7C90, offset: 0x60156, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8F98, symBinAddr: 0xBA64, symSize: 0x14 } - - { offsetInCU: 0x7CC1, offset: 0x60187, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8FAC, symBinAddr: 0xBA78, symSize: 0x3C } - - { offsetInCU: 0x7D01, offset: 0x601C7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FE8, symBinAddr: 0xBAB4, symSize: 0x88 } - - { offsetInCU: 0x7D82, offset: 0x60248, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9104, symBinAddr: 0xBBD0, symSize: 0x84 } - - { offsetInCU: 0x7DB6, offset: 0x6027C, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x9738, symBinAddr: 0xC204, symSize: 0xB0 } - - { offsetInCU: 0x7EA2, offset: 0x60368, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x97E8, symBinAddr: 0xC2B4, symSize: 0x1F0 } - - { offsetInCU: 0x80D1, offset: 0x60597, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x80F1, offset: 0x605B7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8105, offset: 0x605CB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8125, offset: 0x605EB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8139, offset: 0x605FF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x814D, offset: 0x60613, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8161, offset: 0x60627, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8244, offset: 0x6070A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x8264, offset: 0x6072A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x8278, offset: 0x6073E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x8298, offset: 0x6075E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x82AC, offset: 0x60772, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x82C0, offset: 0x60786, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x82D4, offset: 0x6079A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x837B, offset: 0x60841, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBEC0, symBinAddr: 0xE98C, symSize: 0x80 } - - { offsetInCU: 0x840C, offset: 0x608D2, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBF40, symBinAddr: 0xEA0C, symSize: 0x90 } - - { offsetInCU: 0x85CE, offset: 0x60A94, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x907C, symBinAddr: 0xBB48, symSize: 0x10 } - - { offsetInCU: 0x85EA, offset: 0x60AB0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x908C, symBinAddr: 0xBB58, symSize: 0xC } - - { offsetInCU: 0x8654, offset: 0x60B1A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x9098, symBinAddr: 0xBB64, symSize: 0x44 } - - { offsetInCU: 0x867D, offset: 0x60B43, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x90DC, symBinAddr: 0xBBA8, symSize: 0x28 } - - { offsetInCU: 0x86B8, offset: 0x60B7E, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x9070, symBinAddr: 0xBB3C, symSize: 0xC } - - { offsetInCU: 0x8796, offset: 0x60C5C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x89C0, symBinAddr: 0xB48C, symSize: 0xC } - - { offsetInCU: 0x87C8, offset: 0x60C8E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8B68, symBinAddr: 0xB634, symSize: 0x10 } - - { offsetInCU: 0x87E4, offset: 0x60CAA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8B78, symBinAddr: 0xB644, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x60EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xEACC, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x60ED6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xEACC, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x60F06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xEADC, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x61035, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xEB08, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x61049, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xEB1C, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x61089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xEB2C, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x610D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0xEB4C, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x6113E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0xEB64, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x611B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0xEB90, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x611E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0xEB98, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x61214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0xEBBC, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x61230, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0xEBC8, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x6124C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2058, symBinAddr: 0x10B54, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x61292, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0xEC24, symSize: 0x40C } - - { offsetInCU: 0x2F5, offset: 0x612E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1388, symBinAddr: 0xFE84, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x6131E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x13D8, symBinAddr: 0xFED4, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x61341, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x242C, symBinAddr: 0x10F28, symSize: 0x144C } - - { offsetInCU: 0x381, offset: 0x61373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x534, symBinAddr: 0xF030, symSize: 0x100 } - - { offsetInCU: 0x3CD, offset: 0x613BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1428, symBinAddr: 0xFF24, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x61413, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1430, symBinAddr: 0xFF2C, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x614F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1470, symBinAddr: 0xFF6C, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61576, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xFFCC, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61596, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xFFCC, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x615B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14D4, symBinAddr: 0xFFD0, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x615E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x14FC, symBinAddr: 0xFFF8, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x61603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1508, symBinAddr: 0x10004, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x6161F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3878, symBinAddr: 0x12374, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x61663, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvgTf4d_n', symObjAddr: 0x38E4, symBinAddr: 0x123E0, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x61697, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1564, symBinAddr: 0x10060, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x616CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15B4, symBinAddr: 0x100B0, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x616F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x38F0, symBinAddr: 0x123EC, symSize: 0x248 } - - { offsetInCU: 0x771, offset: 0x61763, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x634, symBinAddr: 0xF130, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x6178E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1604, symBinAddr: 0x10100, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x617B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x160C, symBinAddr: 0x10108, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x617EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1630, symBinAddr: 0x1012C, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x61806, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x163C, symBinAddr: 0x10138, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x61822, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5A94, symBinAddr: 0x1454C, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x61868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x654, symBinAddr: 0xF150, symSize: 0x17C } - - { offsetInCU: 0x8CB, offset: 0x618BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1698, symBinAddr: 0x10194, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x618F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16E8, symBinAddr: 0x101E4, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x61917, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5C2C, symBinAddr: 0x146E4, symSize: 0x310 } - - { offsetInCU: 0x975, offset: 0x61967, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x7D0, symBinAddr: 0xF2CC, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x61992, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1728, symBinAddr: 0x10224, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x619BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1730, symBinAddr: 0x1022C, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x619EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1754, symBinAddr: 0x10250, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x61A0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5F3C, symBinAddr: 0x149F4, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x61A50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7F0, symBinAddr: 0xF2EC, symSize: 0x154 } - - { offsetInCU: 0xAB3, offset: 0x61AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0x102AC, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x61ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17F0, symBinAddr: 0x102EC, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x61AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6094, symBinAddr: 0x14B4C, symSize: 0x2C8 } - - { offsetInCU: 0xB51, offset: 0x61B43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x944, symBinAddr: 0xF440, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x61B6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1828, symBinAddr: 0x10324, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x61B99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1830, symBinAddr: 0x1032C, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x61BCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1854, symBinAddr: 0x10350, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x61BE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0x1035C, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x61C02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x635C, symBinAddr: 0x14E14, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x61C48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x964, symBinAddr: 0xF460, symSize: 0x1A4 } - - { offsetInCU: 0xCAB, offset: 0x61C9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18BC, symBinAddr: 0x103B8, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x61CD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x192C, symBinAddr: 0x10428, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x61CF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x64A4, symBinAddr: 0x14F5C, symSize: 0x4D8 } - - { offsetInCU: 0xD55, offset: 0x61D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xB08, symBinAddr: 0xF604, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x10488, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x61D9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1994, symBinAddr: 0x10490, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x61DCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x19B8, symBinAddr: 0x104B4, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x61DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x19C4, symBinAddr: 0x104C0, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x61E06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6A48, symBinAddr: 0x15500, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x61E4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB28, symBinAddr: 0xF624, symSize: 0x1F4 } - - { offsetInCU: 0xEAF, offset: 0x61EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x1051C, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x61ED8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A84, symBinAddr: 0x10580, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x61EFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CBC, symBinAddr: 0x15774, symSize: 0x57C } - - { offsetInCU: 0xF59, offset: 0x61F4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xD1C, symBinAddr: 0xF818, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61F96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1AD4, symBinAddr: 0x105D0, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x62027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1AEC, symBinAddr: 0x105E8, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x6210A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1B30, symBinAddr: 0x1062C, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x6217C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0x10694, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x621A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x1069C, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x621D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC4, symBinAddr: 0x106C0, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x621F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x106CC, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x62210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x727C, symBinAddr: 0x15D34, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x62256, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD34, symBinAddr: 0xF830, symSize: 0x118 } - - { offsetInCU: 0x12B9, offset: 0x622AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C2C, symBinAddr: 0x10728, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x622E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C58, symBinAddr: 0x10754, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x62305, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7334, symBinAddr: 0x15DEC, symSize: 0x1A0 } - - { offsetInCU: 0x136F, offset: 0x62361, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xE4C, symBinAddr: 0xF948, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x6238C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1C74, symBinAddr: 0x10770, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x623B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C7C, symBinAddr: 0x10778, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x623E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1CA0, symBinAddr: 0x1079C, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x62404, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1CAC, symBinAddr: 0x107A8, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x62420, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7518, symBinAddr: 0x15FD0, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x62466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE6C, symBinAddr: 0xF968, symSize: 0x1CC } - - { offsetInCU: 0x14C9, offset: 0x624BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D08, symBinAddr: 0x10804, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x624F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1D60, symBinAddr: 0x1085C, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x62515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x772C, symBinAddr: 0x161E4, symSize: 0x360 } - - { offsetInCU: 0x1567, offset: 0x62559, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1038, symBinAddr: 0xFB34, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DA8, symBinAddr: 0x108A4, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x625AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x108AC, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x625E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DD4, symBinAddr: 0x108D0, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x625FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0x108DC, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x62618, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7A8C, symBinAddr: 0x16544, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x6265E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1058, symBinAddr: 0xFB54, symSize: 0x1EC } - - { offsetInCU: 0x16C1, offset: 0x626B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E3C, symBinAddr: 0x10938, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x626EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E84, symBinAddr: 0x10980, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x6270D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C60, symBinAddr: 0x16718, symSize: 0x380 } - - { offsetInCU: 0x176B, offset: 0x6275D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1244, symBinAddr: 0xFD40, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x62788, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F48, symBinAddr: 0x10A44, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x627B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F50, symBinAddr: 0x10A4C, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x627E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1F74, symBinAddr: 0x10A70, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x62800, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F80, symBinAddr: 0x10A7C, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x6281C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8068, symBinAddr: 0x16B20, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x62862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x125C, symBinAddr: 0xFD58, symSize: 0x12C } - - { offsetInCU: 0x18C5, offset: 0x628B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FDC, symBinAddr: 0x10AD8, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x628EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2020, symBinAddr: 0x10B1C, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x62911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8164, symBinAddr: 0x16C1C, symSize: 0x1CC } - - { offsetInCU: 0x195C, offset: 0x6294E, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3B78, symBinAddr: 0x12634, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x62962, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3B9C, symBinAddr: 0x12658, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62976, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3BE0, symBinAddr: 0x1269C, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x6298A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3C00, symBinAddr: 0x126BC, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x6299E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3C44, symBinAddr: 0x12700, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x629B2, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3C88, symBinAddr: 0x12744, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x629C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3C90, symBinAddr: 0x12748, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x629DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x3CE0, symBinAddr: 0x12798, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x629EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x3D6C, symBinAddr: 0x12824, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x62A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x3D74, symBinAddr: 0x1282C, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x62A16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x3D78, symBinAddr: 0x12830, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x62A2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x3D7C, symBinAddr: 0x12834, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x62A3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x3D8C, symBinAddr: 0x12844, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62A52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x4654, symBinAddr: 0x1310C, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62A66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x4664, symBinAddr: 0x1311C, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x62A7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4668, symBinAddr: 0x13120, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x62A8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x46AC, symBinAddr: 0x13164, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x62AA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x46B0, symBinAddr: 0x13168, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x62AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x46F4, symBinAddr: 0x131AC, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x62ACA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x46F8, symBinAddr: 0x131B0, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x62ADE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x473C, symBinAddr: 0x131F4, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x62AF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4780, symBinAddr: 0x13238, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x62B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x47C4, symBinAddr: 0x1327C, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x62B1A, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4808, symBinAddr: 0x132C0, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x62B2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x484C, symBinAddr: 0x13304, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62B42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4890, symBinAddr: 0x13348, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62B56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x48D4, symBinAddr: 0x1338C, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x62B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x4918, symBinAddr: 0x133D0, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x62B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x495C, symBinAddr: 0x13414, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x49A0, symBinAddr: 0x13458, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x62BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x49E4, symBinAddr: 0x1349C, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x62BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4A28, symBinAddr: 0x134E0, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x62BCE, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4A6C, symBinAddr: 0x13524, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x62BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4A78, symBinAddr: 0x13530, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x62BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4B08, symBinAddr: 0x135C0, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x62C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4BC4, symBinAddr: 0x1367C, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x62C1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4BCC, symBinAddr: 0x13684, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4BD0, symBinAddr: 0x13688, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62C46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4BD8, symBinAddr: 0x13690, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x62C5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4BE8, symBinAddr: 0x136A0, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x62C6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4C10, symBinAddr: 0x136C8, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4C54, symBinAddr: 0x1370C, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62C96, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4CC8, symBinAddr: 0x13780, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x62CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4CDC, symBinAddr: 0x13794, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x62CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x4D28, symBinAddr: 0x137E0, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x62CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x4D70, symBinAddr: 0x13828, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x62CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x4DB8, symBinAddr: 0x13870, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x62CFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x4DC8, symBinAddr: 0x13880, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x62D0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x4E00, symBinAddr: 0x138B8, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x4E74, symBinAddr: 0x1392C, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62D36, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4F30, symBinAddr: 0x139E8, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x62D4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x4F4C, symBinAddr: 0x13A04, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x62D5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x4FC8, symBinAddr: 0x13A80, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5010, symBinAddr: 0x13AC8, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62D86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x5064, symBinAddr: 0x13B1C, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x62D9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x5074, symBinAddr: 0x13B2C, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x62DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x509C, symBinAddr: 0x13B54, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x62DC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x50D8, symBinAddr: 0x13B90, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x62DD6, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5144, symBinAddr: 0x13BFC, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x62DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5150, symBinAddr: 0x13C08, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x62DFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5194, symBinAddr: 0x13C4C, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x62E12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x51DC, symBinAddr: 0x13C94, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x521C, symBinAddr: 0x13CD4, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x62E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x522C, symBinAddr: 0x13CE4, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x62E4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x527C, symBinAddr: 0x13D34, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62E62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5328, symBinAddr: 0x13DE0, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62E76, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x543C, symBinAddr: 0x13EF4, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x62E8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5468, symBinAddr: 0x13F20, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x62E9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x5504, symBinAddr: 0x13FBC, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x62EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x554C, symBinAddr: 0x14004, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x62EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x55A8, symBinAddr: 0x14060, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x62EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x55B8, symBinAddr: 0x14070, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x62EEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5610, symBinAddr: 0x140C8, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x62F02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x56D4, symBinAddr: 0x1418C, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x62F16, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5818, symBinAddr: 0x142D0, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x584C, symBinAddr: 0x14304, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62F3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x5900, symBinAddr: 0x143B8, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62F52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5948, symBinAddr: 0x14400, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x59AC, symBinAddr: 0x14464, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x59BC, symBinAddr: 0x14474, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62F8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x59C0, symBinAddr: 0x14478, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62FA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5A04, symBinAddr: 0x144BC, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5A08, symBinAddr: 0x144C0, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62FCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5A4C, symBinAddr: 0x14504, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62FDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5A50, symBinAddr: 0x14508, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62FF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x697C, symBinAddr: 0x15434, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x63006, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x69C0, symBinAddr: 0x15478, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x6301A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6A04, symBinAddr: 0x154BC, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x6302E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7238, symBinAddr: 0x15CF0, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x63042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x74D4, symBinAddr: 0x15F8C, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x63056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7FE0, symBinAddr: 0x16A98, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x6306A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8024, symBinAddr: 0x16ADC, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x6307E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8330, symBinAddr: 0x16DE8, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x63092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8374, symBinAddr: 0x16E2C, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x630A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x83B8, symBinAddr: 0x16E70, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x630BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x8460, symBinAddr: 0x16F18, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x630CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x84A4, symBinAddr: 0x16F5C, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x630E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8534, symBinAddr: 0x16FEC, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x630F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x85F0, symBinAddr: 0x170A8, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x6310A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x85F4, symBinAddr: 0x170AC, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x6311E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8604, symBinAddr: 0x170BC, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x63132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8694, symBinAddr: 0x1714C, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x63146, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8750, symBinAddr: 0x17208, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x6315A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8754, symBinAddr: 0x1720C, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x6316E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8764, symBinAddr: 0x1721C, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x63182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x87F4, symBinAddr: 0x172AC, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x63196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x88B0, symBinAddr: 0x17368, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x631AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x88B8, symBinAddr: 0x17370, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x631BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x88BC, symBinAddr: 0x17374, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x631D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x88C8, symBinAddr: 0x17380, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x631E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x88D8, symBinAddr: 0x17390, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x631FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8968, symBinAddr: 0x17420, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x6320E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A24, symBinAddr: 0x174DC, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x63222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A28, symBinAddr: 0x174E0, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x63236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A40, symBinAddr: 0x174F8, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x6324A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A44, symBinAddr: 0x174FC, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x6325E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8A54, symBinAddr: 0x1750C, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x63272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8A8C, symBinAddr: 0x17544, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x63286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8B00, symBinAddr: 0x175B8, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x6329A, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8BC4, symBinAddr: 0x1767C, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x632AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x8BE8, symBinAddr: 0x176A0, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x632C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x8C5C, symBinAddr: 0x17714, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x632D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x8CA4, symBinAddr: 0x1775C, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x632EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x8CF8, symBinAddr: 0x177B0, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x632FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x8D08, symBinAddr: 0x177C0, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x63312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x8D40, symBinAddr: 0x177F8, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x63326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x8DA4, symBinAddr: 0x1785C, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x6333A, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8E50, symBinAddr: 0x17908, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x6334E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x8E64, symBinAddr: 0x1791C, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x63362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x8EC8, symBinAddr: 0x17980, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x63376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x8F10, symBinAddr: 0x179C8, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x6338A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x8F60, symBinAddr: 0x17A18, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x6339E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x8F70, symBinAddr: 0x17A28, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x633B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x8FA8, symBinAddr: 0x17A60, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x633C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9014, symBinAddr: 0x17ACC, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x633DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x90C8, symBinAddr: 0x17B80, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x633EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x90EC, symBinAddr: 0x17BA4, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x63402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9158, symBinAddr: 0x17C10, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x63416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x91A0, symBinAddr: 0x17C58, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x6342A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x91F0, symBinAddr: 0x17CA8, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x6343E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9200, symBinAddr: 0x17CB8, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9204, symBinAddr: 0x17CBC, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x63466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9248, symBinAddr: 0x17D00, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x6347A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x924C, symBinAddr: 0x17D04, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x6348E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9290, symBinAddr: 0x17D48, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x634A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9294, symBinAddr: 0x17D4C, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x634B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x92D8, symBinAddr: 0x17D90, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x634CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x92DC, symBinAddr: 0x17D94, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x634DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9320, symBinAddr: 0x17DD8, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x634F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9324, symBinAddr: 0x17DDC, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x63506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9368, symBinAddr: 0x17E20, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x6351A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x936C, symBinAddr: 0x17E24, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x6352E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x93B0, symBinAddr: 0x17E68, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x63542, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x93B4, symBinAddr: 0x17E6C, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x93F8, symBinAddr: 0x17EB0, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x6356A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x93FC, symBinAddr: 0x17EB4, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9440, symBinAddr: 0x17EF8, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x63592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9444, symBinAddr: 0x17EFC, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x635A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9488, symBinAddr: 0x17F40, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x635BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x948C, symBinAddr: 0x17F44, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x635CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94D0, symBinAddr: 0x17F88, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x635E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94D4, symBinAddr: 0x17F8C, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x635F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9518, symBinAddr: 0x17FD0, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x6360A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x951C, symBinAddr: 0x17FD4, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9560, symBinAddr: 0x18018, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x63632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9564, symBinAddr: 0x1801C, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95A8, symBinAddr: 0x18060, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95AC, symBinAddr: 0x18064, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x6366E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x95F0, symBinAddr: 0x180A8, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x63682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x95F4, symBinAddr: 0x180AC, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9638, symBinAddr: 0x180F0, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x636AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x967C, symBinAddr: 0x18134, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x636BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x96C0, symBinAddr: 0x18178, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x636D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9704, symBinAddr: 0x181BC, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x636E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9794, symBinAddr: 0x1824C, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x636FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9850, symBinAddr: 0x18308, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x6370E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9854, symBinAddr: 0x1830C, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x63722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x99B8, symBinAddr: 0x18470, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x99BC, symBinAddr: 0x18474, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x6374A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x99CC, symBinAddr: 0x18484, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x6375E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9A5C, symBinAddr: 0x18514, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x63772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9B18, symBinAddr: 0x185D0, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9B1C, symBinAddr: 0x185D4, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x6379A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B2C, symBinAddr: 0x185E4, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x637AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9B30, symBinAddr: 0x185E8, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x637C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B74, symBinAddr: 0x1862C, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x637D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9B78, symBinAddr: 0x18630, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x637EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9BBC, symBinAddr: 0x18674, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x637FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9BC0, symBinAddr: 0x18678, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x63812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C04, symBinAddr: 0x186BC, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C08, symBinAddr: 0x186C0, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x6383A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9C4C, symBinAddr: 0x18704, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x6384E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9C50, symBinAddr: 0x18708, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x63862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C94, symBinAddr: 0x1874C, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C98, symBinAddr: 0x18750, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x6388A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CDC, symBinAddr: 0x18794, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x6389E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9CE0, symBinAddr: 0x18798, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x638B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D24, symBinAddr: 0x187DC, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x638C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D28, symBinAddr: 0x187E0, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x638DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D6C, symBinAddr: 0x18824, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x638EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D70, symBinAddr: 0x18828, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x6393E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0xEBD4, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x6395A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0xEBFC, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x639A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1494, symBinAddr: 0xFF90, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63A45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1514, symBinAddr: 0x10010, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63A61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x153C, symBinAddr: 0x10038, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63A83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1648, symBinAddr: 0x10144, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x63A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1670, symBinAddr: 0x1016C, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x63AC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x1025C, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x63ADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0x10284, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x63AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x186C, symBinAddr: 0x10368, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x63B1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1894, symBinAddr: 0x10390, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x63B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x19D0, symBinAddr: 0x104CC, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x63B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0x104F4, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x63BA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1B58, symBinAddr: 0x10654, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63C44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BDC, symBinAddr: 0x106D8, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x63C60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C04, symBinAddr: 0x10700, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1CB8, symBinAddr: 0x107B4, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x63C9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0x107DC, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x63CC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DEC, symBinAddr: 0x108E8, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x63CDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E14, symBinAddr: 0x10910, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1F8C, symBinAddr: 0x10A88, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x63D1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FB4, symBinAddr: 0x10AB0, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x63EC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x18944, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63F43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x18944, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x189C8, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63FBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x18A04, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63FF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x18A58, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x64017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x18A68, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x64042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x128, symBinAddr: 0x18A6C, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x64060, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x13C, symBinAddr: 0x18A80, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x6409A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x150, symBinAddr: 0x18A94, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x640C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x18AA4, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x640F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x18AA8, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x64111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x18AD4, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x64150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x18B08, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x6417E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x18B18, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x641A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x18B1C, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x641C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x18B24, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x64201, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x18B2C, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x6422F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x18B3C, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x6425A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x18B40, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x64278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x18B48, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x642B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x18B50, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x642E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x18B60, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x6430B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x18B64, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x64329, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x18B90, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x64368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x18BC4, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x64396, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x18BD4, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x643C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x18BD8, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x643DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x18C04, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x6441E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x18C38, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x6444C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x18C48, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x64477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x18C4C, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x64495, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x18C58, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x644D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x18C64, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x64501, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x18C74, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x6452C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x18C78, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x6454A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x18C84, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x64588, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x18C90, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x645B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x18CA0, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x645E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x18CA4, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x645F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x18CD4, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x6460A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x18D14, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x6461E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x18DB8, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x64632, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x18EBC, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x18EE8, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x6465A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x18F84, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x6466E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x18FCC, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x1902C, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64864, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1903C, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x6488F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x195E0, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x648AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x19850, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x648E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x192E8, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x6490E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x19828, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x6492A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x198A8, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64956, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x19900, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64986, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x19A04, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x6499A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x19A94, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x649AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x19B50, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x649C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x19B54, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x649D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x19B64, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x649EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x19BF4, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x649FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x19CB0, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x64A12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x19CB8, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x19CBC, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x64A3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x19CC4, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x64A4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x19CD4, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x19CD8, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64A76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x19D1C, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x64A8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x19D20, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x64BE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x19D6C, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x64C15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x19E80, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64C42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC9printLogs33_D78766567F29622279F8000760588BB6LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x1A258, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64D74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x19E9C, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x64DC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x19EBC, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x64E1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x19F48, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64E44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x19F4C, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x64E6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x19F50, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64E92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x19FC4, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x64EE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x19FC8, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64F3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x1A058, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x1A0BC, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64FD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x1A14C, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x65027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x1A1DC, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x65059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x1A250, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x65075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x1A254, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x650EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x1A304, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x651D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1A9D0, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x6522B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1AA44, symSize: 0x294 } - - { offsetInCU: 0x7C0, offset: 0x65359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF6C, symBinAddr: 0x1ACD8, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x653D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFD4, symBinAddr: 0x1AD40, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x65416, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1038, symBinAddr: 0x1ADA4, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x6542A, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1048, symBinAddr: 0x1ADB4, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x6543E, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10DC, symBinAddr: 0x1ADC4, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x65452, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1124, symBinAddr: 0x1AE0C, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x65466, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1138, symBinAddr: 0x1AE20, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x6547A, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x117C, symBinAddr: 0x1AE64, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x6548E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11BC, symBinAddr: 0x1AEA4, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x654A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1380, symBinAddr: 0x1B068, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x654B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13B0, symBinAddr: 0x1B098, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x654CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x156C, symBinAddr: 0x1B254, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x65771, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AB8, symBinAddr: 0x83AC8, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x6578B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2AC0, symBinAddr: 0x83AD0, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65799, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1B294, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x657D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1B2C8, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x6580B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1B308, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65836, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1B33C, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65886, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1B37C, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x658B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1B3AC, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x658DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1B3B0, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x658F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1B3D4, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x65928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1B3E8, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x659B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1B458, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x659D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1B458, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x65A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1B4B4, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x65A9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1B520, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x65B27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1B658, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65B46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1B6B4, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x65B6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1B714, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x65B9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1B750, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x65C11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1B888, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x65C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1B8D4, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x65C59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1B924, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x65C88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1B960, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x65CB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1B968, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x65CD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1B998, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x65CF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1B9D4, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x65D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1BA6C, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x65D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x818, symBinAddr: 0x1BA9C, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65D94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x85C, symBinAddr: 0x1BAE0, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x65DC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1BB1C, symSize: 0x68 } - - { offsetInCU: 0x74C, offset: 0x65E6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1BB84, symSize: 0xC0 } - - { offsetInCU: 0x7E5, offset: 0x65F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9C0, symBinAddr: 0x1BC44, symSize: 0xC0 } - - { offsetInCU: 0x865, offset: 0x65F87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xC84, symBinAddr: 0x1BF08, symSize: 0x70 } - - { offsetInCU: 0x88F, offset: 0x65FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xCF4, symBinAddr: 0x1BF78, symSize: 0x30 } - - { offsetInCU: 0x8B4, offset: 0x65FD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xD24, symBinAddr: 0x1BFA8, symSize: 0x188 } - - { offsetInCU: 0x969, offset: 0x6608B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xEAC, symBinAddr: 0x1C130, symSize: 0x14 } - - { offsetInCU: 0x9B6, offset: 0x660D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0xEC0, symBinAddr: 0x1C144, symSize: 0x64 } - - { offsetInCU: 0xA52, offset: 0x66174, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0xF54, symBinAddr: 0x1C1D8, symSize: 0x6C } - - { offsetInCU: 0xB86, offset: 0x662A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x18B8, symBinAddr: 0x1CB3C, symSize: 0x228 } - - { offsetInCU: 0xC17, offset: 0x66339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B44, symBinAddr: 0x1CDC8, symSize: 0x190 } - - { offsetInCU: 0xD1D, offset: 0x6643F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1B524, symSize: 0x88 } - - { offsetInCU: 0xD53, offset: 0x66475, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1B5AC, symSize: 0xAC } - - { offsetInCU: 0xD93, offset: 0x664B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1B6A4, symSize: 0x10 } - - { offsetInCU: 0xDA7, offset: 0x664C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1B704, symSize: 0x10 } - - { offsetInCU: 0xDBB, offset: 0x664DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1B754, symSize: 0x88 } - - { offsetInCU: 0xDF1, offset: 0x66513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1B7DC, symSize: 0xAC } - - { offsetInCU: 0xE31, offset: 0x66553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1BA10, symSize: 0x5C } - - { offsetInCU: 0xE95, offset: 0x665B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xA80, symBinAddr: 0x1BD04, symSize: 0x204 } - - { offsetInCU: 0xF09, offset: 0x6662B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x172C, symBinAddr: 0x1C9B0, symSize: 0x13C } - - { offsetInCU: 0xFD3, offset: 0x666F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0xF24, symBinAddr: 0x1C1A8, symSize: 0x30 } - - { offsetInCU: 0x10C2, offset: 0x667E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x1894, symBinAddr: 0x1CB18, symSize: 0x24 } - - { offsetInCU: 0x1112, offset: 0x66834, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1C244, symSize: 0x21C } - - { offsetInCU: 0x1304, offset: 0x66A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x11DC, symBinAddr: 0x1C460, symSize: 0xC } - - { offsetInCU: 0x135B, offset: 0x66A7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1C46C, symSize: 0x4 } - - { offsetInCU: 0x1377, offset: 0x66A99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1C46C, symSize: 0x4 } - - { offsetInCU: 0x1390, offset: 0x66AB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1C46C, symSize: 0x4 } - - { offsetInCU: 0x13A9, offset: 0x66ACB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11EC, symBinAddr: 0x1C470, symSize: 0x4 } - - { offsetInCU: 0x13C1, offset: 0x66AE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11F0, symBinAddr: 0x1C474, symSize: 0xB8 } - - { offsetInCU: 0x1461, offset: 0x66B83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12E8, symBinAddr: 0x1C56C, symSize: 0x4 } - - { offsetInCU: 0x1479, offset: 0x66B9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x251C, symBinAddr: 0x1D790, symSize: 0x7C } - - { offsetInCU: 0x1556, offset: 0x66C78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x12A8, symBinAddr: 0x1C52C, symSize: 0x40 } - - { offsetInCU: 0x158B, offset: 0x66CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x12F8, symBinAddr: 0x1C57C, symSize: 0x98 } - - { offsetInCU: 0x1648, offset: 0x66D6A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x1440, symBinAddr: 0x1C6C4, symSize: 0x198 } - - { offsetInCU: 0x1AF7, offset: 0x67219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x15D8, symBinAddr: 0x1C85C, symSize: 0x13C } - - { offsetInCU: 0x1BF4, offset: 0x67316, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1714, symBinAddr: 0x1C998, symSize: 0x18 } - - { offsetInCU: 0x1C08, offset: 0x6732A, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1868, symBinAddr: 0x1CAEC, symSize: 0x2C } - - { offsetInCU: 0x1C20, offset: 0x67342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1AE0, symBinAddr: 0x1CD64, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x67356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1B24, symBinAddr: 0x1CDA8, symSize: 0x20 } - - { offsetInCU: 0x1C48, offset: 0x6736A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1CD4, symBinAddr: 0x1CF58, symSize: 0x20 } - - { offsetInCU: 0x1C5C, offset: 0x6737E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1CF4, symBinAddr: 0x1CF78, symSize: 0x4 } - - { offsetInCU: 0x1C70, offset: 0x67392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x1CF7C, symSize: 0x44 } - - { offsetInCU: 0x1C84, offset: 0x673A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D3C, symBinAddr: 0x1CFC0, symSize: 0x4 } - - { offsetInCU: 0x1C98, offset: 0x673BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D40, symBinAddr: 0x1CFC4, symSize: 0x44 } - - { offsetInCU: 0x1CAC, offset: 0x673CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwCP', symObjAddr: 0x1E60, symBinAddr: 0x1D0E4, symSize: 0x5C } - - { offsetInCU: 0x1CC0, offset: 0x673E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1EBC, symBinAddr: 0x1D140, symSize: 0x18 } - - { offsetInCU: 0x1CD4, offset: 0x673F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1ED4, symBinAddr: 0x1D158, symSize: 0x14 } - - { offsetInCU: 0x1CE8, offset: 0x6740A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1EE8, symBinAddr: 0x1D16C, symSize: 0x18 } - - { offsetInCU: 0x1CFC, offset: 0x6741E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwcp', symObjAddr: 0x1F00, symBinAddr: 0x1D184, symSize: 0x5C } - - { offsetInCU: 0x1D10, offset: 0x67432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x1F5C, symBinAddr: 0x1D1E0, symSize: 0x6C } - - { offsetInCU: 0x1D24, offset: 0x67446, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1FC8, symBinAddr: 0x1D24C, symSize: 0x14 } - - { offsetInCU: 0x1D38, offset: 0x6745A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x1FDC, symBinAddr: 0x1D260, symSize: 0x50 } - - { offsetInCU: 0x1D4C, offset: 0x6746E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x202C, symBinAddr: 0x1D2B0, symSize: 0x48 } - - { offsetInCU: 0x1D60, offset: 0x67482, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x2074, symBinAddr: 0x1D2F8, symSize: 0x48 } - - { offsetInCU: 0x1D74, offset: 0x67496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x20BC, symBinAddr: 0x1D340, symSize: 0x8 } - - { offsetInCU: 0x1D88, offset: 0x674AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x20C4, symBinAddr: 0x1D348, symSize: 0x4 } - - { offsetInCU: 0x1D9C, offset: 0x674BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x20C8, symBinAddr: 0x1D34C, symSize: 0x8 } - - { offsetInCU: 0x1DB0, offset: 0x674D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x20D0, symBinAddr: 0x1D354, symSize: 0x10 } - - { offsetInCU: 0x1DC4, offset: 0x674E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x21B8, symBinAddr: 0x1D42C, symSize: 0x90 } - - { offsetInCU: 0x1DD8, offset: 0x674FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2248, symBinAddr: 0x1D4BC, symSize: 0xBC } - - { offsetInCU: 0x1DEC, offset: 0x6750E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2304, symBinAddr: 0x1D578, symSize: 0x4 } - - { offsetInCU: 0x1E00, offset: 0x67522, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2308, symBinAddr: 0x1D57C, symSize: 0x10 } - - { offsetInCU: 0x1E14, offset: 0x67536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x2318, symBinAddr: 0x1D58C, symSize: 0x90 } - - { offsetInCU: 0x1E28, offset: 0x6754A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x23A8, symBinAddr: 0x1D61C, symSize: 0xBC } - - { offsetInCU: 0x1E3C, offset: 0x6755E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x2464, symBinAddr: 0x1D6D8, symSize: 0x8 } - - { offsetInCU: 0x1E50, offset: 0x67572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x246C, symBinAddr: 0x1D6E0, symSize: 0x4 } - - { offsetInCU: 0x1E64, offset: 0x67586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2470, symBinAddr: 0x1D6E4, symSize: 0x8 } - - { offsetInCU: 0x1E78, offset: 0x6759A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2478, symBinAddr: 0x1D6EC, symSize: 0x10 } - - { offsetInCU: 0x1E97, offset: 0x675B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x24B0, symBinAddr: 0x1D724, symSize: 0x24 } - - { offsetInCU: 0x1EC0, offset: 0x675E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x25BC, symBinAddr: 0x1D830, symSize: 0x8 } - - { offsetInCU: 0x1ED4, offset: 0x675F6, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x25C4, symBinAddr: 0x1D838, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x6760A, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x25D4, symBinAddr: 0x1D848, symSize: 0x8 } - - { offsetInCU: 0x1EFC, offset: 0x6761E, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2660, symBinAddr: 0x1D850, symSize: 0x3C } - - { offsetInCU: 0x1F7E, offset: 0x676A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1B284, symSize: 0x4 } - - { offsetInCU: 0x1F9A, offset: 0x676BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1B288, symSize: 0x4 } - - { offsetInCU: 0x1FB6, offset: 0x676D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1B28C, symSize: 0x4 } - - { offsetInCU: 0x1FD2, offset: 0x676F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1B290, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x67AE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1D9A4, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x67AFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1D9E0, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67B0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1DA64, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x67B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1DB8C, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x67B53, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1DBBC, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x67B67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1DBD8, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x67B7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1DC74, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x67B8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1DCD8, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x67BA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1DD34, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x67BB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1DD44, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x67BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1DD74, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67BDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1DD9C, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67BF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1DDF8, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x67C07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1DE7C, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x67C1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1DEE0, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x67C2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1DF3C, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x67C43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1DF9C, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x67C63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1DFAC, symSize: 0x10C } - - { offsetInCU: 0x20B, offset: 0x67CAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x1E404, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67D03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA68, symBinAddr: 0x1E40C, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x67DE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA8, symBinAddr: 0x1E44C, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x67E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1E4AC, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x67E86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1E4AC, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x67EA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB0C, symBinAddr: 0x1E4B0, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67ED7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB34, symBinAddr: 0x1E4D8, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67EF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB40, symBinAddr: 0x1E4E4, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67F0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF18, symBinAddr: 0x1E8BC, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF84, symBinAddr: 0x1E928, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67F87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x1E540, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE8, symBinAddr: 0x1E58C, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF90, symBinAddr: 0x1E934, symSize: 0x144 } - - { offsetInCU: 0x58D, offset: 0x68031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x714, symBinAddr: 0x1E0B8, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x68080, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC28, symBinAddr: 0x1E5CC, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x680E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x1E5E4, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x68160, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC6C, symBinAddr: 0x1E610, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x6818B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC74, symBinAddr: 0x1E618, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x681BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC98, symBinAddr: 0x1E63C, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x681D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1E648, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x681F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1224, symBinAddr: 0x1EB44, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x6823A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x734, symBinAddr: 0x1E0D8, symSize: 0x1B8 } - - { offsetInCU: 0x7EB, offset: 0x6828F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1E6A4, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x682C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD4C, symBinAddr: 0x1E6F0, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x682E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1360, symBinAddr: 0x1EC80, symSize: 0x254 } - - { offsetInCU: 0x895, offset: 0x68339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x8EC, symBinAddr: 0x1E290, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x68364, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE18, symBinAddr: 0x1E7BC, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x6838F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE20, symBinAddr: 0x1E7C4, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x683C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE44, symBinAddr: 0x1E7E8, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x683DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CEC, symBinAddr: 0x1F5A0, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x68422, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x90C, symBinAddr: 0x1E2B0, symSize: 0x154 } - - { offsetInCU: 0x9D3, offset: 0x68477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xEA0, symBinAddr: 0x1E844, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x684AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEE0, symBinAddr: 0x1E884, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x684D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E44, symBinAddr: 0x1F6F8, symSize: 0x2A8 } - - { offsetInCU: 0xA80, offset: 0x68524, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1138, symBinAddr: 0x1EA78, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x68538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x119C, symBinAddr: 0x1EABC, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x6854C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x11E0, symBinAddr: 0x1EB00, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x68560, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x15B4, symBinAddr: 0x1EED4, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x68574, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x163C, symBinAddr: 0x1EF18, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x68588, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x172C, symBinAddr: 0x1F008, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x6859C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1788, symBinAddr: 0x1F054, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x685B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1790, symBinAddr: 0x1F05C, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x685C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1794, symBinAddr: 0x1F060, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x685D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x179C, symBinAddr: 0x1F068, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x685EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x1F078, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x68600, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x1F0C8, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x68614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x188C, symBinAddr: 0x1F154, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x68628, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1894, symBinAddr: 0x1F15C, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x6863C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1898, symBinAddr: 0x1F160, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x68650, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x189C, symBinAddr: 0x1F164, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x68664, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18AC, symBinAddr: 0x1F174, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x68678, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x18E4, symBinAddr: 0x1F1AC, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x6868C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1948, symBinAddr: 0x1F210, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x686A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A08, symBinAddr: 0x1F2BC, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x686B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1A6C, symBinAddr: 0x1F320, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x686C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1AC8, symBinAddr: 0x1F37C, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x686DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B2C, symBinAddr: 0x1F3E0, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x686F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B3C, symBinAddr: 0x1F3F0, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x68704, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B40, symBinAddr: 0x1F3F4, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x68718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B84, symBinAddr: 0x1F438, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x6872C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B88, symBinAddr: 0x1F43C, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x68740, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BCC, symBinAddr: 0x1F480, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x68754, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x1F484, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x68768, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C14, symBinAddr: 0x1F4C8, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x6877C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C18, symBinAddr: 0x1F4CC, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x68790, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C5C, symBinAddr: 0x1F510, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x687A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C60, symBinAddr: 0x1F514, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x687B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CA4, symBinAddr: 0x1F558, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x687CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CA8, symBinAddr: 0x1F55C, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x687E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x20EC, symBinAddr: 0x1F9A0, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x687F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x2284, symBinAddr: 0x1FB38, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x68808, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2288, symBinAddr: 0x1FB3C, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x6881C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2298, symBinAddr: 0x1FB4C, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x68830, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x229C, symBinAddr: 0x1FB50, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x68844, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22E0, symBinAddr: 0x1FB94, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x68858, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E4, symBinAddr: 0x1FB98, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x6886C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2328, symBinAddr: 0x1FBDC, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x68880, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x232C, symBinAddr: 0x1FBE0, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x688D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xACC, symBinAddr: 0x1E470, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x68977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB4C, symBinAddr: 0x1E4F0, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x68993, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB74, symBinAddr: 0x1E518, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x689B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCB0, symBinAddr: 0x1E654, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x689D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCD8, symBinAddr: 0x1E67C, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x689F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE50, symBinAddr: 0x1E7F4, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x68A0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE78, symBinAddr: 0x1E81C, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x68B5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1FC50, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x68B80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1FC50, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68BB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x20198, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x68C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x201C0, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x68D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x20204, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x68D63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x20204, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x68DA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x2021C, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x68E86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x20260, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x1FC68, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68F81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x20004, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68F95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x20014, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68FB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x20024, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68FD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x20050, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x69012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x20084, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x69030, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x20094, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x6905B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x20098, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x69079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x200A0, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x690B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x200A8, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x690E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x200B8, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x69114, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x584, symBinAddr: 0x200BC, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x69132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x598, symBinAddr: 0x200D0, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x69158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x200E4, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x69176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x20110, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x691A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x2013C, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x691BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x20144, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x691FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x2014C, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x69219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x2015C, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x69244, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x20160, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x69262, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x20168, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x6929E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x20170, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x692CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x20180, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x692F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x20184, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x69325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x20194, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x69367, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x202C8, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x6937B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x202CC, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x6938F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x20310, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x693A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x20340, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x693B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x203BC, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x693CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x20540, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x693E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x208D4, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x6940F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x20904, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x69423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x20930, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x69437, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x20964, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x6944B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x209A8, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x6945F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x20B54, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x69473, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x20B9C, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x69487, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x20C14, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x6949B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x20C24, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x694AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x20C58, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x694C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x20C60, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x694D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x20C94, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x694EB, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x20CE8, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x694FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x20CFC, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x69513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x20D38, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x69527, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x20D80, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x6953B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x20DC0, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x6954F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x20DD0, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x69563, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x20E08, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x69577, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x20E74, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x6958B, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x20F50, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x6959F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x20F6C, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x695B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x20FE0, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x695C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x2103C, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x695DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x210A0, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x695EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x210B0, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x69603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x210D8, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x69617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x21114, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x6962B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x21180, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x6963F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x211C4, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x69653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x2120C, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x69667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x2124C, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x6967B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x2125C, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x6968F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x212B0, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x696A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x212F4, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x696B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x21304, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x696CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x21394, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x696DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x21450, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x696F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x21458, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x69707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x2145C, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x6971B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x21468, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x69770, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x20288, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x699BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x21488, symSize: 0x190 } - - { offsetInCU: 0x373, offset: 0x69CC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x218, symBinAddr: 0x216A0, symSize: 0x2220 } - - { offsetInCU: 0x15CE, offset: 0x6AF1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB0E0, symBinAddr: 0x2C568, symSize: 0x3C84 } - - { offsetInCU: 0x3157, offset: 0x6CAA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xED64, symBinAddr: 0x301EC, symSize: 0x634 } - - { offsetInCU: 0x372B, offset: 0x6D078, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0xF3C0, symBinAddr: 0x30848, symSize: 0x40 } - - { offsetInCU: 0x3753, offset: 0x6D0A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x14074, symBinAddr: 0x354FC, symSize: 0x3E0 } - - { offsetInCU: 0x38E2, offset: 0x6D22F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10AE0, symBinAddr: 0x31F68, symSize: 0x271C } - - { offsetInCU: 0x5016, offset: 0x6E963, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x2438, symBinAddr: 0x238C0, symSize: 0x2A8 } - - { offsetInCU: 0x53D1, offset: 0x6ED1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x26E0, symBinAddr: 0x23B68, symSize: 0x6E8 } - - { offsetInCU: 0x5835, offset: 0x6F182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x2DC8, symBinAddr: 0x24250, symSize: 0x5D8 } - - { offsetInCU: 0x5B68, offset: 0x6F4B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x33A0, symBinAddr: 0x24828, symSize: 0x394C } - - { offsetInCU: 0x7562, offset: 0x70EAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6CEC, symBinAddr: 0x28174, symSize: 0x278 } - - { offsetInCU: 0x7679, offset: 0x70FC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x73E8, symBinAddr: 0x28870, symSize: 0x17AC } - - { offsetInCU: 0x7FD3, offset: 0x71920, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6F64, symBinAddr: 0x283EC, symSize: 0x118 } - - { offsetInCU: 0x803C, offset: 0x71989, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x71D8, symBinAddr: 0x28660, symSize: 0x1E8 } - - { offsetInCU: 0x8109, offset: 0x71A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x73C0, symBinAddr: 0x28848, symSize: 0x28 } - - { offsetInCU: 0x84A1, offset: 0x71DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x8BE8, symBinAddr: 0x2A070, symSize: 0x754 } - - { offsetInCU: 0x88B2, offset: 0x721FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA270, symBinAddr: 0x2B6F8, symSize: 0xE70 } - - { offsetInCU: 0x917A, offset: 0x72AC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x933C, symBinAddr: 0x2A7C4, symSize: 0xB2C } - - { offsetInCU: 0x9BDB, offset: 0x73528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF82C, symBinAddr: 0x30CB4, symSize: 0x12B4 } - - { offsetInCU: 0xAC2E, offset: 0x7457B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x18320, symBinAddr: 0x396D8, symSize: 0xBD0 } - - { offsetInCU: 0xB955, offset: 0x752A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x131FC, symBinAddr: 0x34684, symSize: 0xE78 } - - { offsetInCU: 0xC283, offset: 0x75BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x14454, symBinAddr: 0x358DC, symSize: 0x1E8 } - - { offsetInCU: 0xC319, offset: 0x75C66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x1463C, symBinAddr: 0x35AC4, symSize: 0x290 } - - { offsetInCU: 0xC40A, offset: 0x75D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x148DC, symBinAddr: 0x35D64, symSize: 0x90 } - - { offsetInCU: 0xC49F, offset: 0x75DEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x149C0, symBinAddr: 0x35E48, symSize: 0x1004 } - - { offsetInCU: 0xCE94, offset: 0x767E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x159C4, symBinAddr: 0x36E4C, symSize: 0x4C } - - { offsetInCU: 0xCEB0, offset: 0x767FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x15A10, symBinAddr: 0x36E98, symSize: 0x150 } - - { offsetInCU: 0xCFBF, offset: 0x7690C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x15B60, symBinAddr: 0x36FE8, symSize: 0x54 } - - { offsetInCU: 0xD038, offset: 0x76985, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x15C08, symBinAddr: 0x3703C, symSize: 0x4C } - - { offsetInCU: 0xD0BC, offset: 0x76A09, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x15C54, symBinAddr: 0x37088, symSize: 0x50 } - - { offsetInCU: 0xD135, offset: 0x76A82, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x15CA4, symBinAddr: 0x370D8, symSize: 0x64 } - - { offsetInCU: 0xD177, offset: 0x76AC4, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15D08, symBinAddr: 0x3713C, symSize: 0x30 } - - { offsetInCU: 0xD1A4, offset: 0x76AF1, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15D38, symBinAddr: 0x3716C, symSize: 0x80 } - - { offsetInCU: 0xD242, offset: 0x76B8F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x15DB8, symBinAddr: 0x371EC, symSize: 0x6C } - - { offsetInCU: 0xD2DC, offset: 0x76C29, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15E24, symBinAddr: 0x37258, symSize: 0x4C } - - { offsetInCU: 0xD360, offset: 0x76CAD, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x15E9C, symBinAddr: 0x372D0, symSize: 0xE0 } - - { offsetInCU: 0xD3AA, offset: 0x76CF7, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15F7C, symBinAddr: 0x373B0, symSize: 0xC4 } - - { offsetInCU: 0xD3D7, offset: 0x76D24, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16040, symBinAddr: 0x37474, symSize: 0x174 } - - { offsetInCU: 0xD48B, offset: 0x76DD8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x161B4, symBinAddr: 0x375E8, symSize: 0x104 } - - { offsetInCU: 0xD61E, offset: 0x76F6B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x162B8, symBinAddr: 0x376EC, symSize: 0x128 } - - { offsetInCU: 0xD7C1, offset: 0x7710E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x163E0, symBinAddr: 0x37814, symSize: 0x16C } - - { offsetInCU: 0xD996, offset: 0x772E3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1654C, symBinAddr: 0x37980, symSize: 0x174 } - - { offsetInCU: 0xDB51, offset: 0x7749E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x166C0, symBinAddr: 0x37AF4, symSize: 0xFC } - - { offsetInCU: 0xDCF4, offset: 0x77641, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x167BC, symBinAddr: 0x37BF0, symSize: 0xFC } - - { offsetInCU: 0xDE97, offset: 0x777E4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x169BC, symBinAddr: 0x37DF0, symSize: 0xFC } - - { offsetInCU: 0xDFC1, offset: 0x7790E, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16AB8, symBinAddr: 0x37EEC, symSize: 0x40 } - - { offsetInCU: 0xE00E, offset: 0x7795B, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x16D5C, symBinAddr: 0x38190, symSize: 0x138 } - - { offsetInCU: 0xE0AD, offset: 0x779FA, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16E94, symBinAddr: 0x382C8, symSize: 0xB4 } - - { offsetInCU: 0xE15D, offset: 0x77AAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x17194, symBinAddr: 0x38588, symSize: 0x638 } - - { offsetInCU: 0xE501, offset: 0x77E4E, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x177CC, symBinAddr: 0x38BC0, symSize: 0x18C } - - { offsetInCU: 0xE612, offset: 0x77F5F, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17958, symBinAddr: 0x38D4C, symSize: 0xC0 } - - { offsetInCU: 0xE715, offset: 0x78062, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17C34, symBinAddr: 0x38FEC, symSize: 0x1A0 } - - { offsetInCU: 0xE86A, offset: 0x781B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17DD4, symBinAddr: 0x3918C, symSize: 0x380 } - - { offsetInCU: 0xEB96, offset: 0x784E3, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18EF0, symBinAddr: 0x3A2A8, symSize: 0x198 } - - { offsetInCU: 0xECB2, offset: 0x785FF, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19088, symBinAddr: 0x3A440, symSize: 0xC0 } - - { offsetInCU: 0xEFE4, offset: 0x78931, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x19148, symBinAddr: 0x3A500, symSize: 0xD28 } - - { offsetInCU: 0x1025F, offset: 0x79BAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19E70, symBinAddr: 0x3B228, symSize: 0x1C0 } - - { offsetInCU: 0x1040D, offset: 0x79D5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A030, symBinAddr: 0x3B3E8, symSize: 0x1A4 } - - { offsetInCU: 0x10500, offset: 0x79E4D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A1D4, symBinAddr: 0x3B58C, symSize: 0x84 } - - { offsetInCU: 0x1070D, offset: 0x7A05A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1ACD8, symBinAddr: 0x3C090, symSize: 0x8 } - - { offsetInCU: 0x10721, offset: 0x7A06E, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1ADBC, symBinAddr: 0x3C174, symSize: 0x10 } - - { offsetInCU: 0x10735, offset: 0x7A082, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1ADCC, symBinAddr: 0x3C184, symSize: 0x14 } - - { offsetInCU: 0x10749, offset: 0x7A096, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1ADE0, symBinAddr: 0x3C198, symSize: 0x50 } - - { offsetInCU: 0x1075D, offset: 0x7A0AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1AE40, symBinAddr: 0x3C1E8, symSize: 0x44 } - - { offsetInCU: 0x10771, offset: 0x7A0BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1AE84, symBinAddr: 0x3C22C, symSize: 0x30C } - - { offsetInCU: 0x10785, offset: 0x7A0D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1B190, symBinAddr: 0x3C538, symSize: 0x240 } - - { offsetInCU: 0x10799, offset: 0x7A0E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1B3D0, symBinAddr: 0x3C778, symSize: 0x70 } - - { offsetInCU: 0x107AD, offset: 0x7A0FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1B440, symBinAddr: 0x3C7E8, symSize: 0x34 } - - { offsetInCU: 0x107C1, offset: 0x7A10E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1B474, symBinAddr: 0x3C81C, symSize: 0x174 } - - { offsetInCU: 0x107D5, offset: 0x7A122, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1B5E8, symBinAddr: 0x3C990, symSize: 0xB4 } - - { offsetInCU: 0x1080A, offset: 0x7A157, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1BEB4, symBinAddr: 0x3CA44, symSize: 0xC4 } - - { offsetInCU: 0x10880, offset: 0x7A1CD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BF78, symBinAddr: 0x3CB08, symSize: 0x78 } - - { offsetInCU: 0x108AD, offset: 0x7A1FA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BFF0, symBinAddr: 0x3CB80, symSize: 0x80 } - - { offsetInCU: 0x10923, offset: 0x7A270, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C070, symBinAddr: 0x3CC00, symSize: 0x68 } - - { offsetInCU: 0x10A47, offset: 0x7A394, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C0D8, symBinAddr: 0x3CC68, symSize: 0x644 } - - { offsetInCU: 0x10EEB, offset: 0x7A838, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1C72C, symBinAddr: 0x3D2BC, symSize: 0x4C } - - { offsetInCU: 0x10EFF, offset: 0x7A84C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1C820, symBinAddr: 0x3D328, symSize: 0x8 } - - { offsetInCU: 0x10F13, offset: 0x7A860, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1C828, symBinAddr: 0x3D330, symSize: 0x44 } - - { offsetInCU: 0x10F27, offset: 0x7A874, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1C86C, symBinAddr: 0x3D374, symSize: 0x44 } - - { offsetInCU: 0x10F3B, offset: 0x7A888, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1C918, symBinAddr: 0x3D3DC, symSize: 0x8 } - - { offsetInCU: 0x10F4F, offset: 0x7A89C, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1C930, symBinAddr: 0x3D3E4, symSize: 0x3C } - - { offsetInCU: 0x10F63, offset: 0x7A8B0, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1C96C, symBinAddr: 0x3D420, symSize: 0x34 } - - { offsetInCU: 0x10F77, offset: 0x7A8C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1CA20, symBinAddr: 0x3D4D4, symSize: 0x44 } - - { offsetInCU: 0x10FAC, offset: 0x7A8F9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CB28, symBinAddr: 0x3D5DC, symSize: 0x48 } - - { offsetInCU: 0x10FCB, offset: 0x7A918, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CB70, symBinAddr: 0x3D624, symSize: 0x64 } - - { offsetInCU: 0x1100E, offset: 0x7A95B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CBD4, symBinAddr: 0x3D688, symSize: 0x80 } - - { offsetInCU: 0x110A3, offset: 0x7A9F0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CC54, symBinAddr: 0x3D708, symSize: 0x120 } - - { offsetInCU: 0x1118B, offset: 0x7AAD8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1CDBC, symBinAddr: 0x3D870, symSize: 0x48 } - - { offsetInCU: 0x1119F, offset: 0x7AAEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1CE04, symBinAddr: 0x3D8B8, symSize: 0x40 } - - { offsetInCU: 0x111B3, offset: 0x7AB00, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1CF18, symBinAddr: 0x3D9CC, symSize: 0x48 } - - { offsetInCU: 0x111C7, offset: 0x7AB14, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1CFE0, symBinAddr: 0x3DA94, symSize: 0x18 } - - { offsetInCU: 0x111DB, offset: 0x7AB28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1CFF8, symBinAddr: 0x3DAAC, symSize: 0x10 } - - { offsetInCU: 0x111EF, offset: 0x7AB3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1D008, symBinAddr: 0x3DABC, symSize: 0x34 } - - { offsetInCU: 0x11203, offset: 0x7AB50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D078, symBinAddr: 0x3DB2C, symSize: 0x30 } - - { offsetInCU: 0x11250, offset: 0x7AB9D, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x190, symBinAddr: 0x21618, symSize: 0x88 } - - { offsetInCU: 0x11698, offset: 0x7AFE5, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9E68, symBinAddr: 0x2B2F0, symSize: 0x408 } - - { offsetInCU: 0x11973, offset: 0x7B2C0, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF6A0, symBinAddr: 0x30B28, symSize: 0x18C } - - { offsetInCU: 0x11B91, offset: 0x7B4DE, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x1496C, symBinAddr: 0x35DF4, symSize: 0x54 } - - { offsetInCU: 0x11CFE, offset: 0x7B64B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x16F48, symBinAddr: 0x3837C, symSize: 0x110 } - - { offsetInCU: 0x11E3F, offset: 0x7B78C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x17098, symBinAddr: 0x3848C, symSize: 0xFC } - - { offsetInCU: 0x11F40, offset: 0x7B88D, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17A78, symBinAddr: 0x38E30, symSize: 0x1BC } - - { offsetInCU: 0x1200E, offset: 0x7B95B, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18154, symBinAddr: 0x3950C, symSize: 0x1CC } - - { offsetInCU: 0x122D1, offset: 0x7BC1E, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A434, symBinAddr: 0x3B7EC, symSize: 0x1DC } - - { offsetInCU: 0x123BD, offset: 0x7BD0A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A610, symBinAddr: 0x3B9C8, symSize: 0x11C } - - { offsetInCU: 0x12504, offset: 0x7BE51, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1A72C, symBinAddr: 0x3BAE4, symSize: 0xFC } - - { offsetInCU: 0x1264B, offset: 0x7BF98, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1A828, symBinAddr: 0x3BBE0, symSize: 0xE4 } - - { offsetInCU: 0x12786, offset: 0x7C0D3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1A90C, symBinAddr: 0x3BCC4, symSize: 0x114 } - - { offsetInCU: 0x128C7, offset: 0x7C214, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AA20, symBinAddr: 0x3BDD8, symSize: 0xEC } - - { offsetInCU: 0x12A0E, offset: 0x7C35B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1ABF4, symBinAddr: 0x3BFAC, symSize: 0xE4 } - - { offsetInCU: 0x12B6D, offset: 0x7C4BA, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CA64, symBinAddr: 0x3D518, symSize: 0xC4 } - - { offsetInCU: 0x12E13, offset: 0x7C760, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x707C, symBinAddr: 0x28504, symSize: 0x15C } - - { offsetInCU: 0x27, offset: 0x7CD0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3DB94, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7CD26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3DB94, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7CD3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3DBC4, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7CD4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3DCB0, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7CD62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3DF28, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7CD76, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3E344, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7CD8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3E34C, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7CD9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3E594, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7CDB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3E5DC, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7CDC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x3E698, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7D0F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x3EB54, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7D1A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x3ED58, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D62F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x3F968, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D84F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x3FEA8, symSize: 0x920 } - - { offsetInCU: 0xD3E, offset: 0x7DBE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x2154, symBinAddr: 0x407F4, symSize: 0x20FC } - - { offsetInCU: 0x202F, offset: 0x7EED6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xDDC0, symBinAddr: 0x4C460, symSize: 0x6B8 } - - { offsetInCU: 0x23FC, offset: 0x7F2A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4250, symBinAddr: 0x428F0, symSize: 0x1190 } - - { offsetInCU: 0x2F50, offset: 0x7FDF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x53E0, symBinAddr: 0x43A80, symSize: 0xB94 } - - { offsetInCU: 0x377E, offset: 0x80625, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x5F74, symBinAddr: 0x44614, symSize: 0x3DC } - - { offsetInCU: 0x3895, offset: 0x8073C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6BD4, symBinAddr: 0x45274, symSize: 0x1EC } - - { offsetInCU: 0x3B41, offset: 0x809E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x6DC0, symBinAddr: 0x45460, symSize: 0x914 } - - { offsetInCU: 0x42D4, offset: 0x8117B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x76D4, symBinAddr: 0x45D74, symSize: 0x2A8 } - - { offsetInCU: 0x440C, offset: 0x812B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x797C, symBinAddr: 0x4601C, symSize: 0x628 } - - { offsetInCU: 0x47FD, offset: 0x816A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x7FA4, symBinAddr: 0x46644, symSize: 0x658 } - - { offsetInCU: 0x4ABF, offset: 0x81966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x85FC, symBinAddr: 0x46C9C, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x81A24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x882C, symBinAddr: 0x46ECC, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x81AA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x8A58, symBinAddr: 0x470F8, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x81AD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x8AD8, symBinAddr: 0x47178, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81B10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xCA08, symBinAddr: 0x4B0A8, symSize: 0x780 } - - { offsetInCU: 0x4FB4, offset: 0x81E5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD188, symBinAddr: 0x4B828, symSize: 0x9BC } - - { offsetInCU: 0x52A3, offset: 0x8214A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xDB44, symBinAddr: 0x4C1E4, symSize: 0x218 } - - { offsetInCU: 0x5378, offset: 0x8221F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xE478, symBinAddr: 0x4CB18, symSize: 0x81C } - - { offsetInCU: 0x5683, offset: 0x8252A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xEC94, symBinAddr: 0x4D334, symSize: 0xBA8 } - - { offsetInCU: 0x5972, offset: 0x82819, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xF83C, symBinAddr: 0x4DEDC, symSize: 0x278 } - - { offsetInCU: 0x5A47, offset: 0x828EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0xFAB4, symBinAddr: 0x4E154, symSize: 0x214 } - - { offsetInCU: 0x5F3D, offset: 0x82DE4, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2128, symBinAddr: 0x407C8, symSize: 0x2C } - - { offsetInCU: 0x623B, offset: 0x830E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x8AF4, symBinAddr: 0x47194, symSize: 0x20 } - - { offsetInCU: 0x6294, offset: 0x8313B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8B14, symBinAddr: 0x471B4, symSize: 0x8C } - - { offsetInCU: 0x632C, offset: 0x831D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x8BA0, symBinAddr: 0x47240, symSize: 0xC04 } - - { offsetInCU: 0x683E, offset: 0x836E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x97A4, symBinAddr: 0x47E44, symSize: 0x40 } - - { offsetInCU: 0x6882, offset: 0x83729, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0x97E4, symBinAddr: 0x47E84, symSize: 0x58 } - - { offsetInCU: 0x68AD, offset: 0x83754, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0x983C, symBinAddr: 0x47EDC, symSize: 0x54 } - - { offsetInCU: 0x68EF, offset: 0x83796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9890, symBinAddr: 0x47F30, symSize: 0x64 } - - { offsetInCU: 0x6922, offset: 0x837C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x98F4, symBinAddr: 0x47F94, symSize: 0x4 } - - { offsetInCU: 0x694D, offset: 0x837F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x98F8, symBinAddr: 0x47F98, symSize: 0x78 } - - { offsetInCU: 0x698F, offset: 0x83836, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9970, symBinAddr: 0x48010, symSize: 0x90 } - - { offsetInCU: 0x69D1, offset: 0x83878, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x9A00, symBinAddr: 0x480A0, symSize: 0x6C } - - { offsetInCU: 0x6A04, offset: 0x838AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x9A6C, symBinAddr: 0x4810C, symSize: 0x4 } - - { offsetInCU: 0x6A20, offset: 0x838C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x9A70, symBinAddr: 0x48110, symSize: 0x4 } - - { offsetInCU: 0x6A4B, offset: 0x838F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0x9A74, symBinAddr: 0x48114, symSize: 0x74 } - - { offsetInCU: 0x6A7E, offset: 0x83925, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0x9AE8, symBinAddr: 0x48188, symSize: 0x4 } - - { offsetInCU: 0x6A9D, offset: 0x83944, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9AEC, symBinAddr: 0x4818C, symSize: 0x8 } - - { offsetInCU: 0x6AB9, offset: 0x83960, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9AEC, symBinAddr: 0x4818C, symSize: 0x8 } - - { offsetInCU: 0x6ACA, offset: 0x83971, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0x9AF4, symBinAddr: 0x48194, symSize: 0xC8 } - - { offsetInCU: 0x6B67, offset: 0x83A0E, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0x9BBC, symBinAddr: 0x4825C, symSize: 0xCC } - - { offsetInCU: 0x6C13, offset: 0x83ABA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0x9D84, symBinAddr: 0x48424, symSize: 0x1F4 } - - { offsetInCU: 0x6C9F, offset: 0x83B46, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x9F78, symBinAddr: 0x48618, symSize: 0x1C4 } - - { offsetInCU: 0x6D57, offset: 0x83BFE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA13C, symBinAddr: 0x487DC, symSize: 0x3A0 } - - { offsetInCU: 0x6E77, offset: 0x83D1E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xA4DC, symBinAddr: 0x48B7C, symSize: 0x398 } - - { offsetInCU: 0x6F8E, offset: 0x83E35, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xA874, symBinAddr: 0x48F14, symSize: 0x1E4 } - - { offsetInCU: 0x701F, offset: 0x83EC6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xAA58, symBinAddr: 0x490F8, symSize: 0x204 } - - { offsetInCU: 0x70A5, offset: 0x83F4C, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xAC5C, symBinAddr: 0x492FC, symSize: 0x4C } - - { offsetInCU: 0x7162, offset: 0x84009, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xACA8, symBinAddr: 0x49348, symSize: 0x90 } - - { offsetInCU: 0x71FD, offset: 0x840A4, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xAD38, symBinAddr: 0x493D8, symSize: 0x40 } - - { offsetInCU: 0x723A, offset: 0x840E1, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xAD78, symBinAddr: 0x49418, symSize: 0x18 } - - { offsetInCU: 0x728C, offset: 0x84133, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xAD90, symBinAddr: 0x49430, symSize: 0x3C } - - { offsetInCU: 0x72B5, offset: 0x8415C, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xADCC, symBinAddr: 0x4946C, symSize: 0x1C } - - { offsetInCU: 0x7385, offset: 0x8422C, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xADE8, symBinAddr: 0x49488, symSize: 0xE0 } - - { offsetInCU: 0x74A8, offset: 0x8434F, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xAFAC, symBinAddr: 0x4964C, symSize: 0x294 } - - { offsetInCU: 0x751F, offset: 0x843C6, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xB4DC, symBinAddr: 0x49B7C, symSize: 0x8C } - - { offsetInCU: 0x7537, offset: 0x843DE, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xB568, symBinAddr: 0x49C08, symSize: 0x4C } - - { offsetInCU: 0x758C, offset: 0x84433, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xB5B4, symBinAddr: 0x49C54, symSize: 0x154 } - - { offsetInCU: 0x75FA, offset: 0x844A1, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xB708, symBinAddr: 0x49DA8, symSize: 0xF0 } - - { offsetInCU: 0x761F, offset: 0x844C6, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xB7F8, symBinAddr: 0x49E98, symSize: 0x214 } - - { offsetInCU: 0x7658, offset: 0x844FF, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xBA0C, symBinAddr: 0x4A0AC, symSize: 0x78 } - - { offsetInCU: 0x7670, offset: 0x84517, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xBA84, symBinAddr: 0x4A124, symSize: 0x1C } - - { offsetInCU: 0x7688, offset: 0x8452F, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBAA0, symBinAddr: 0x4A140, symSize: 0x1C } - - { offsetInCU: 0x76A0, offset: 0x84547, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBABC, symBinAddr: 0x4A15C, symSize: 0x1C } - - { offsetInCU: 0x7705, offset: 0x845AC, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xBAD8, symBinAddr: 0x4A178, symSize: 0x104 } - - { offsetInCU: 0x7868, offset: 0x8470F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBBDC, symBinAddr: 0x4A27C, symSize: 0x174 } - - { offsetInCU: 0x79D8, offset: 0x8487F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBD50, symBinAddr: 0x4A3F0, symSize: 0x124 } - - { offsetInCU: 0x7AD8, offset: 0x8497F, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xBE74, symBinAddr: 0x4A514, symSize: 0x120 } - - { offsetInCU: 0x7D24, offset: 0x84BCB, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xBF94, symBinAddr: 0x4A634, symSize: 0x36C } - - { offsetInCU: 0x8312, offset: 0x851B9, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC300, symBinAddr: 0x4A9A0, symSize: 0x290 } - - { offsetInCU: 0x84FF, offset: 0x853A6, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC590, symBinAddr: 0x4AC30, symSize: 0x150 } - - { offsetInCU: 0x8665, offset: 0x8550C, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xC6E0, symBinAddr: 0x4AD80, symSize: 0x218 } - - { offsetInCU: 0x86B1, offset: 0x85558, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xC8F8, symBinAddr: 0x4AF98, symSize: 0x14 } - - { offsetInCU: 0x86EA, offset: 0x85591, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xC90C, symBinAddr: 0x4AFAC, symSize: 0xFC } - - { offsetInCU: 0x87A8, offset: 0x8564F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xDD5C, symBinAddr: 0x4C3FC, symSize: 0x64 } - - { offsetInCU: 0x8854, offset: 0x856FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0xFCC8, symBinAddr: 0x4E368, symSize: 0xA78 } - - { offsetInCU: 0x8E22, offset: 0x85CC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10740, symBinAddr: 0x4EDE0, symSize: 0x104 } - - { offsetInCU: 0x8F8E, offset: 0x85E35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10844, symBinAddr: 0x4EEE4, symSize: 0x2D5C } - - { offsetInCU: 0x9654, offset: 0x864FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x135A0, symBinAddr: 0x51C40, symSize: 0x120 } - - { offsetInCU: 0x9765, offset: 0x8660C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x136C0, symBinAddr: 0x51D60, symSize: 0x80 } - - { offsetInCU: 0x97E8, offset: 0x8668F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13740, symBinAddr: 0x51DE0, symSize: 0x654 } - - { offsetInCU: 0x9B84, offset: 0x86A2B, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x13DF4, symBinAddr: 0x52434, symSize: 0x10 } - - { offsetInCU: 0x9B98, offset: 0x86A3F, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x13E04, symBinAddr: 0x52444, symSize: 0x10 } - - { offsetInCU: 0x9BAC, offset: 0x86A53, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x13E58, symBinAddr: 0x52454, symSize: 0x48 } - - { offsetInCU: 0x9BC0, offset: 0x86A67, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x13F08, symBinAddr: 0x5249C, symSize: 0x3C } - - { offsetInCU: 0x9BD4, offset: 0x86A7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x13F44, symBinAddr: 0x524D8, symSize: 0x44 } - - { offsetInCU: 0x9BE8, offset: 0x86A8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOf', symObjAddr: 0x13F88, symBinAddr: 0x5251C, symSize: 0x48 } - - { offsetInCU: 0x9BFC, offset: 0x86AA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x14048, symBinAddr: 0x525A0, symSize: 0x8 } - - { offsetInCU: 0x9C10, offset: 0x86AB7, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14050, symBinAddr: 0x525A8, symSize: 0x10 } - - { offsetInCU: 0x9C24, offset: 0x86ACB, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14060, symBinAddr: 0x525B8, symSize: 0x8 } - - { offsetInCU: 0x9C38, offset: 0x86ADF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x140E8, symBinAddr: 0x525FC, symSize: 0x30 } - - { offsetInCU: 0x9C90, offset: 0x86B37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x141A8, symBinAddr: 0x526BC, symSize: 0x24 } - - { offsetInCU: 0x9CCC, offset: 0x86B73, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14214, symBinAddr: 0x526E0, symSize: 0x44 } - - { offsetInCU: 0x9CFB, offset: 0x86BA2, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x3E6A8, symSize: 0x12C } - - { offsetInCU: 0x9D31, offset: 0x86BD8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x3E7D4, symSize: 0x58 } - - { offsetInCU: 0x9E11, offset: 0x86CB8, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x3E82C, symSize: 0x90 } - - { offsetInCU: 0x9E3A, offset: 0x86CE1, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x3E8BC, symSize: 0xA0 } - - { offsetInCU: 0x9F66, offset: 0x86E0D, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x3E95C, symSize: 0x9C } - - { offsetInCU: 0xA075, offset: 0x86F1C, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x3E9F8, symSize: 0x74 } - - { offsetInCU: 0xA0FA, offset: 0x86FA1, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x3EA6C, symSize: 0x4 } - - { offsetInCU: 0xA11C, offset: 0x86FC3, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x3EA70, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x879BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x527E8, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x879EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x53658, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x87A15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE78, symBinAddr: 0x53660, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x87A46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE9C, symBinAddr: 0x53684, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x87A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEA8, symBinAddr: 0x53690, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x87A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5B80, symBinAddr: 0x582D8, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87AC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x52808, symSize: 0x17C } - - { offsetInCU: 0x1BC, offset: 0x87B19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF04, symBinAddr: 0x536EC, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x87B50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF54, symBinAddr: 0x5373C, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x87B73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CAC, symBinAddr: 0x58404, symSize: 0x132C } - - { offsetInCU: 0x267, offset: 0x87BC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x19C, symBinAddr: 0x52984, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x87C13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xFA4, symBinAddr: 0x5378C, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x87C79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xFBC, symBinAddr: 0x537A4, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFE8, symBinAddr: 0x537D0, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87D1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xFF0, symBinAddr: 0x537D8, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x87D4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1014, symBinAddr: 0x537FC, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x87D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1020, symBinAddr: 0x53808, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x87D87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7ABC, symBinAddr: 0x597FC, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x87DCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BC, symBinAddr: 0x529A4, symSize: 0x264 } - - { offsetInCU: 0x4C5, offset: 0x87E22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x107C, symBinAddr: 0x53864, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x87E59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10CC, symBinAddr: 0x538B4, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x87E7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C98, symBinAddr: 0x599D8, symSize: 0xF38 } - - { offsetInCU: 0x569, offset: 0x87EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x420, symBinAddr: 0x52C08, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x87EFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x52C28, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x87F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x52C28, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x87F81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1140, symBinAddr: 0x53928, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x87FE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x11A4, symBinAddr: 0x5398C, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x88003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x11CC, symBinAddr: 0x539B4, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x88039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11D4, symBinAddr: 0x539BC, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x880BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x123C, symBinAddr: 0x53A24, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x880DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1248, symBinAddr: 0x53A30, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x880F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x460, symBinAddr: 0x52C48, symSize: 0x190 } - - { offsetInCU: 0x7EF, offset: 0x8814C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x12A4, symBinAddr: 0x53A8C, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x88183, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12EC, symBinAddr: 0x53AD4, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x881A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DAC, symBinAddr: 0x5AAEC, symSize: 0x220 } - - { offsetInCU: 0x899, offset: 0x881F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x5F0, symBinAddr: 0x52DD8, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x88221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x132C, symBinAddr: 0x53B14, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x8824C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1334, symBinAddr: 0x53B1C, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x8827D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1358, symBinAddr: 0x53B40, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x88299, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1364, symBinAddr: 0x53B4C, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x882B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8FCC, symBinAddr: 0x5AD0C, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x882FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x610, symBinAddr: 0x52DF8, symSize: 0x268 } - - { offsetInCU: 0x9F3, offset: 0x88350, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13C0, symBinAddr: 0x53BA8, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x88387, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1420, symBinAddr: 0x53C08, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x883AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9278, symBinAddr: 0x5AFB8, symSize: 0x538 } - - { offsetInCU: 0xA9D, offset: 0x883FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x878, symBinAddr: 0x53060, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x88445, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1478, symBinAddr: 0x53C60, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x884D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x53C78, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x885B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D4, symBinAddr: 0x53CBC, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x8862B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x153C, symBinAddr: 0x53D24, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x88656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1544, symBinAddr: 0x53D2C, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x88687, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1568, symBinAddr: 0x53D50, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x886A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x53D5C, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x886BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x97B0, symBinAddr: 0x5B4F0, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x88705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x898, symBinAddr: 0x53080, symSize: 0x118 } - - { offsetInCU: 0xDFD, offset: 0x8875A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15D0, symBinAddr: 0x53DB8, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x88791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15FC, symBinAddr: 0x53DE4, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x887B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9864, symBinAddr: 0x5B5A4, symSize: 0x1A0 } - - { offsetInCU: 0xEA8, offset: 0x88805, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x9B0, symBinAddr: 0x53198, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x88830, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x169C, symBinAddr: 0x53E84, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x8885B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16A4, symBinAddr: 0x53E8C, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x8888C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16C8, symBinAddr: 0x53EB0, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x888A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16D4, symBinAddr: 0x53EBC, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x888C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9A04, symBinAddr: 0x5B744, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x8890A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9D0, symBinAddr: 0x531B8, symSize: 0x214 } - - { offsetInCU: 0x1002, offset: 0x8895F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1730, symBinAddr: 0x53F18, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x88996, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x53F88, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x889B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9C38, symBinAddr: 0x5B978, symSize: 0x8C8 } - - { offsetInCU: 0x10A6, offset: 0x88A03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBE4, symBinAddr: 0x533CC, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x88A3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x533EC, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x88A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x533EC, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88AB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x198C, symBinAddr: 0x54174, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x88AF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x19D0, symBinAddr: 0x541B8, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x88B0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0x541E0, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x88B43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A00, symBinAddr: 0x541E8, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x88BA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1A3C, symBinAddr: 0x54224, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88BC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A48, symBinAddr: 0x54230, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x88BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA5CC, symBinAddr: 0x5C30C, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x88C0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC24, symBinAddr: 0x5340C, symSize: 0x244 } - - { offsetInCU: 0x1304, offset: 0x88C61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA4, symBinAddr: 0x5428C, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x88C98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AFC, symBinAddr: 0x542E4, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x88CBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA61C, symBinAddr: 0x5C35C, symSize: 0x760 } - - { offsetInCU: 0x13D3, offset: 0x88D30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1B4C, symBinAddr: 0x54334, symSize: 0x1B8 } - - { offsetInCU: 0x142F, offset: 0x88D8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x1D04, symBinAddr: 0x544EC, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x88DD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5948, symBinAddr: 0x58124, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x88E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x599C, symBinAddr: 0x58178, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x88E91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A1C, symBinAddr: 0x581F8, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x88EC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5A24, symBinAddr: 0x58200, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x88F47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5A84, symBinAddr: 0x58260, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x88F64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x1D14, symBinAddr: 0x544FC, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x88F78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x1D34, symBinAddr: 0x5451C, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x88F8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x1E28, symBinAddr: 0x54610, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x88FA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x21AC, symBinAddr: 0x54994, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x88FBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x2E04, symBinAddr: 0x555EC, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x88FE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x2E34, symBinAddr: 0x5561C, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x88FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x2E60, symBinAddr: 0x55648, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x8900C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x2E8C, symBinAddr: 0x55674, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x89020, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x2EB8, symBinAddr: 0x556A0, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x89034, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2EE4, symBinAddr: 0x556CC, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x89048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x2EEC, symBinAddr: 0x556D4, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x8905C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x32AC, symBinAddr: 0x55A94, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x89070, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3308, symBinAddr: 0x55AF0, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x89084, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x33F4, symBinAddr: 0x55BDC, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x89098, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3404, symBinAddr: 0x55BEC, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x890AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x3434, symBinAddr: 0x55C1C, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x890C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x3514, symBinAddr: 0x55CFC, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x890D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x384C, symBinAddr: 0x56034, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x890E8, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x40B0, symBinAddr: 0x56898, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x890FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x40B8, symBinAddr: 0x568A0, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x89110, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x441C, symBinAddr: 0x56C04, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x89124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x4478, symBinAddr: 0x56C60, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x89138, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x455C, symBinAddr: 0x56D44, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x8914C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x456C, symBinAddr: 0x56D54, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x89160, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x4610, symBinAddr: 0x56DF8, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x89174, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x479C, symBinAddr: 0x56F84, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x89188, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4B44, symBinAddr: 0x5732C, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x8919C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4B88, symBinAddr: 0x57370, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x891B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x4D04, symBinAddr: 0x574EC, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x891C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x4D60, symBinAddr: 0x57548, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x891D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x4DF4, symBinAddr: 0x575DC, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x891EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x4E04, symBinAddr: 0x575EC, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x89200, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x4E6C, symBinAddr: 0x57654, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x89214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x4F48, symBinAddr: 0x57730, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x89228, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x50B4, symBinAddr: 0x5789C, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x8923C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x50E0, symBinAddr: 0x578C8, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x89250, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x51A4, symBinAddr: 0x5798C, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x89264, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x5200, symBinAddr: 0x579E8, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x89278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x527C, symBinAddr: 0x57A64, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x8928C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x528C, symBinAddr: 0x57A74, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x892A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x52D4, symBinAddr: 0x57ABC, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x892B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x53B8, symBinAddr: 0x57BA0, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x892C8, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5550, symBinAddr: 0x57D38, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x892DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x5584, symBinAddr: 0x57D6C, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x892F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5680, symBinAddr: 0x57E68, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x89304, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x56DC, symBinAddr: 0x57EC4, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x89318, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x5758, symBinAddr: 0x57F40, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x8932C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x5768, symBinAddr: 0x57F50, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x89340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5790, symBinAddr: 0x57F78, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x89354, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x57CC, symBinAddr: 0x57FB4, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x89368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x5844, symBinAddr: 0x58020, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x8937C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5888, symBinAddr: 0x58064, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x89390, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x58E4, symBinAddr: 0x580C0, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x893A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x5938, symBinAddr: 0x58114, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x893B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5A8C, symBinAddr: 0x58268, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x893CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5A90, symBinAddr: 0x5826C, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x893E0, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5B58, symBinAddr: 0x582B0, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x893F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x6FD8, symBinAddr: 0x59730, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x89408, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x701C, symBinAddr: 0x59774, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x8941C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7A78, symBinAddr: 0x597B8, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x89430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x5A910, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x89444, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x8C14, symBinAddr: 0x5A954, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x89458, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x8C58, symBinAddr: 0x5A998, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x8946C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x8C9C, symBinAddr: 0x5A9DC, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x89480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x8CE0, symBinAddr: 0x5AA20, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x89494, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x8D24, symBinAddr: 0x5AA64, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x894A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x8D68, symBinAddr: 0x5AAA8, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x894BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA500, symBinAddr: 0x5C240, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x894D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xA544, symBinAddr: 0x5C284, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x894E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xA588, symBinAddr: 0x5C2C8, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x894F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xAD7C, symBinAddr: 0x5CABC, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x8950C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xADC0, symBinAddr: 0x5CB00, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x89520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xAE04, symBinAddr: 0x5CB44, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x89534, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xAE8C, symBinAddr: 0x5CBCC, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x89548, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xAED0, symBinAddr: 0x5CC10, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x8955C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xAF24, symBinAddr: 0x5CC54, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x89570, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xAFB4, symBinAddr: 0x5CCE4, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x89584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB070, symBinAddr: 0x5CDA0, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x89598, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB078, symBinAddr: 0x5CDA8, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x895AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB07C, symBinAddr: 0x5CDAC, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x895C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB088, symBinAddr: 0x5CDB8, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x895D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB098, symBinAddr: 0x5CDC8, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x895E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB128, symBinAddr: 0x5CE58, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x895FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB1E4, symBinAddr: 0x5CF14, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x89610, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB1E8, symBinAddr: 0x5CF18, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x89624, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB1F8, symBinAddr: 0x5CF28, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x89638, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB288, symBinAddr: 0x5CFB8, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x8964C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB344, symBinAddr: 0x5D074, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x89660, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB348, symBinAddr: 0x5D078, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x89674, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB358, symBinAddr: 0x5D088, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x89688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB3E8, symBinAddr: 0x5D118, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x8969C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB4A4, symBinAddr: 0x5D1D4, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x896B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB4A8, symBinAddr: 0x5D1D8, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x896C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB4B8, symBinAddr: 0x5D1E8, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x896D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB548, symBinAddr: 0x5D278, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x896EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB604, symBinAddr: 0x5D334, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x89700, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB60C, symBinAddr: 0x5D33C, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x89714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB610, symBinAddr: 0x5D340, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x89728, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB618, symBinAddr: 0x5D348, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x8973C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB628, symBinAddr: 0x5D358, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x89750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB6B8, symBinAddr: 0x5D3E8, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x89764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB774, symBinAddr: 0x5D4A4, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x89778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB778, symBinAddr: 0x5D4A8, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x8978C, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB788, symBinAddr: 0x5D4B8, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x897A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xB7AC, symBinAddr: 0x5D4DC, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x897B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xB7CC, symBinAddr: 0x5D4FC, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x897C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xB80C, symBinAddr: 0x5D53C, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x897DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB81C, symBinAddr: 0x5D54C, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x897F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB820, symBinAddr: 0x5D550, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x89804, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB864, symBinAddr: 0x5D594, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x89818, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB868, symBinAddr: 0x5D598, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x8982C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB8AC, symBinAddr: 0x5D5DC, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x89840, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB8B0, symBinAddr: 0x5D5E0, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x89854, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB8F4, symBinAddr: 0x5D624, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x89868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB8F8, symBinAddr: 0x5D628, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x8987C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB93C, symBinAddr: 0x5D66C, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB940, symBinAddr: 0x5D670, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x898A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB984, symBinAddr: 0x5D6B4, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x898B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB988, symBinAddr: 0x5D6B8, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x898CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xB9CC, symBinAddr: 0x5D6FC, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x898E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xB9D0, symBinAddr: 0x5D700, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x898F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBA14, symBinAddr: 0x5D744, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x89908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBA18, symBinAddr: 0x5D748, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x8991C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBA5C, symBinAddr: 0x5D78C, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x89930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBA60, symBinAddr: 0x5D790, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x89944, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBAA4, symBinAddr: 0x5D7D4, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x89958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBAA8, symBinAddr: 0x5D7D8, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x8996C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBAEC, symBinAddr: 0x5D81C, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x89980, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAF0, symBinAddr: 0x5D820, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89994, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB34, symBinAddr: 0x5D864, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x899A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBB38, symBinAddr: 0x5D868, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x899BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB7C, symBinAddr: 0x5D8AC, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x899D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB80, symBinAddr: 0x5D8B0, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x899E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBBC4, symBinAddr: 0x5D8F4, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x899F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBBC8, symBinAddr: 0x5D8F8, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x89A0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC0C, symBinAddr: 0x5D93C, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x89A20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC10, symBinAddr: 0x5D940, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x89A34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC54, symBinAddr: 0x5D984, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x89A48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBC58, symBinAddr: 0x5D988, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x89A5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC9C, symBinAddr: 0x5D9CC, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x89A70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBCA0, symBinAddr: 0x5D9D0, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x89A84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCE4, symBinAddr: 0x5DA14, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x89A98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCE8, symBinAddr: 0x5DA18, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x89AAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xBD2C, symBinAddr: 0x5DA5C, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89AC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xBD70, symBinAddr: 0x5DAA0, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89AD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xBE00, symBinAddr: 0x5DB30, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x89AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xBEBC, symBinAddr: 0x5DBEC, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x89AFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xBEC0, symBinAddr: 0x5DBF0, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x89B10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBED0, symBinAddr: 0x5DC00, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x89B24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBED4, symBinAddr: 0x5DC04, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x89B38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF18, symBinAddr: 0x5DC48, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x89B4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF1C, symBinAddr: 0x5DC4C, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x89B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF60, symBinAddr: 0x5DC90, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x89B74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBF64, symBinAddr: 0x5DC94, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89BA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xEB4, symBinAddr: 0x5369C, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEDC, symBinAddr: 0x536C4, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x89BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x102C, symBinAddr: 0x53814, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x89BFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1054, symBinAddr: 0x5383C, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x89C18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x111C, symBinAddr: 0x53904, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x89C34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1128, symBinAddr: 0x53910, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x89C50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1130, symBinAddr: 0x53918, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x89C6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1138, symBinAddr: 0x53920, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89C8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1254, symBinAddr: 0x53A3C, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x89CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x127C, symBinAddr: 0x53A64, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x89CCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x53B58, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x89CE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1398, symBinAddr: 0x53B80, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x89D31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14FC, symBinAddr: 0x53CE4, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x89DD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1580, symBinAddr: 0x53D68, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x89DEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15A8, symBinAddr: 0x53D90, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x89E11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x53EC8, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x89E2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1708, symBinAddr: 0x53EF0, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x89E67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1808, symBinAddr: 0x53FF0, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x89F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1890, symBinAddr: 0x54078, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x89F94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x18F0, symBinAddr: 0x540D8, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x89FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1930, symBinAddr: 0x54118, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x8A048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x5423C, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x8A064, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A7C, symBinAddr: 0x54264, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x8A09B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5A48, symBinAddr: 0x58224, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x8A2A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DD40, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8A2C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DD40, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x8A2E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5DD48, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x8A322, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5DD50, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8A340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5DD60, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x8A36B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5DD64, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x8A389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5DD6C, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x8A3C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5DD74, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x8A3F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5DD84, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x8A41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5DD88, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x8A43C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5DD90, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x8A476, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5DD98, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A4A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5DDA8, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A4D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5DDAC, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A4E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5DE00, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A4F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5DE44, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DE54, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DE54, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A6A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5DE78, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8A7BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DE98, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8A7FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DE98, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8A849, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5DEBC, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8A966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DEDC, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8A9A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DEDC, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8A9F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5DF3C, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8AA0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5DF44, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8AA1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5DF80, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8AB37, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DFF8, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8ABF4, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DFF8, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8ADED, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5E360, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8AF9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E3A8, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8AFDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E3A8, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8B02B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5E3CC, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8B16C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5E3EC, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8B197, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5E480, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8B1DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x5EDB8, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8B24A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA70, symBinAddr: 0x5EE1C, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8B266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA7C, symBinAddr: 0x5EE28, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8B294, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA0, symBinAddr: 0x5EE4C, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8B326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5E458, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8B351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF0, symBinAddr: 0x5EE9C, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8B37C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB94, symBinAddr: 0x5EF40, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8B398, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xBA0, symBinAddr: 0x5EF4C, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B659, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x5ECEC, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B6D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x5EF70, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8B928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC0, symBinAddr: 0x5F36C, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8BAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x10FC, symBinAddr: 0x5F4A8, symSize: 0xA58 } - - { offsetInCU: 0xF95, offset: 0x8C0B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B54, symBinAddr: 0x5FF00, symSize: 0x654 } - - { offsetInCU: 0x1345, offset: 0x8C462, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x21A8, symBinAddr: 0x60554, symSize: 0x470 } - - { offsetInCU: 0x14E4, offset: 0x8C601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2618, symBinAddr: 0x609C4, symSize: 0x618 } - - { offsetInCU: 0x1A13, offset: 0x8CB30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2C30, symBinAddr: 0x60FDC, symSize: 0x150 } - - { offsetInCU: 0x1B2D, offset: 0x8CC4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2D80, symBinAddr: 0x6112C, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8CC8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3330, symBinAddr: 0x61680, symSize: 0x204 } - - { offsetInCU: 0x1C21, offset: 0x8CD3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3534, symBinAddr: 0x61884, symSize: 0x23C } - - { offsetInCU: 0x1C86, offset: 0x8CDA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3770, symBinAddr: 0x61AC0, symSize: 0x238 } - - { offsetInCU: 0x1DAE, offset: 0x8CECB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39EC, symBinAddr: 0x61CF8, symSize: 0x29C } - - { offsetInCU: 0x1EED, offset: 0x8D00A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3C88, symBinAddr: 0x61F94, symSize: 0x188 } - - { offsetInCU: 0x1F33, offset: 0x8D050, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E10, symBinAddr: 0x6211C, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8D3A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4284, symBinAddr: 0x62590, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D4A0, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2DFC, symBinAddr: 0x611A8, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D4E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2E00, symBinAddr: 0x611AC, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D4F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2E04, symBinAddr: 0x611B0, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D50A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2E48, symBinAddr: 0x611F4, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D51E, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2E4C, symBinAddr: 0x611F8, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D532, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x2EDC, symBinAddr: 0x61244, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D546, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x2EE0, symBinAddr: 0x61248, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D55A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x2F34, symBinAddr: 0x6128C, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D56E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x2FC4, symBinAddr: 0x6131C, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x3080, symBinAddr: 0x613D8, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D596, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x3088, symBinAddr: 0x613E0, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D5AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x308C, symBinAddr: 0x613E4, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D5BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3094, symBinAddr: 0x613EC, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D5D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x30A4, symBinAddr: 0x613FC, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D5E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3134, symBinAddr: 0x6148C, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D5FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x31F0, symBinAddr: 0x61548, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D60E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x31F8, symBinAddr: 0x61550, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D622, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x31FC, symBinAddr: 0x61554, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D636, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x3208, symBinAddr: 0x61560, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D64A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x3218, symBinAddr: 0x61570, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D65E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3240, symBinAddr: 0x61590, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D672, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x324C, symBinAddr: 0x6159C, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D686, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3250, symBinAddr: 0x615A0, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D69A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3294, symBinAddr: 0x615E4, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D6AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x32A0, symBinAddr: 0x615F0, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D6C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x32A4, symBinAddr: 0x615F4, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D6D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x32E8, symBinAddr: 0x61638, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D6F5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x32F4, symBinAddr: 0x61644, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D72D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3308, symBinAddr: 0x61658, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D765, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x331C, symBinAddr: 0x6166C, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8D7C9, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x439C, symBinAddr: 0x626A8, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8D7DD, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4440, symBinAddr: 0x626F0, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8D7F1, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x447C, symBinAddr: 0x6272C, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8D805, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x44D4, symBinAddr: 0x62774, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8D819, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x44DC, symBinAddr: 0x6277C, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8D82D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x44EC, symBinAddr: 0x6278C, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8D841, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x454C, symBinAddr: 0x62794, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8D855, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x4600, symBinAddr: 0x62848, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8D884, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8D89C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8D8B0, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8D8C4, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8D8D8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8D8EC, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x5E4A8, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8D96A, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x5E4CC, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8D9F9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x5E550, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8DA88, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x5E5D4, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8DB1F, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x5E660, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8DBF9, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x5E6C8, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8DCD3, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x5E730, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8DD48, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x5E79C, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8DDA5, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x5E7DC, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8DE02, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x5E81C, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8DE2B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x5E860, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8DE7E, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x5E8C8, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8DEFA, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x5E92C, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8DF8B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x5E990, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8E0F1, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8E111, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8E131, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8E145, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8E159, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8E16D, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8E216, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5EA9C, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8E2BD, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x5EB24, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8E360, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x5EBA4, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8E44C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8E46C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8E480, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E494, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E4A8, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E518, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA4C, symBinAddr: 0x5EDF8, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E534, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x5EE04, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x5EE0C, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA68, symBinAddr: 0x5EE14, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E57E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB70, symBinAddr: 0x5EF1C, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E59A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB7C, symBinAddr: 0x5EF28, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E5B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB84, symBinAddr: 0x5EF30, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E5CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x5EF38, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8EA7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x62864, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8EA91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x629EC, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8EAA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x62A90, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8EAB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x62BEC, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8EACD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x62DD4, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8EAE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x62EC0, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8EAF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x63048, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8EB09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x630E0, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8EB1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x63178, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8EB31, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x63200, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8EB45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x63254, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8EB59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x63374, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8EB6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x633F8, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8EB81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x634EC, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8EB95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x6364C, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8EBA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x63728, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8EBBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x63870, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8EBD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x63908, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8EBE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x639D4, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8EC17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x63A5C, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8EC66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x63FB4, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8ECCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A8, symBinAddr: 0x63FCC, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8ED46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D4, symBinAddr: 0x63FF8, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8ED71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17DC, symBinAddr: 0x64000, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8EDA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1800, symBinAddr: 0x64024, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8EDBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x180C, symBinAddr: 0x64030, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8EDDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E30, symBinAddr: 0x65558, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8EE20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x63A7C, symSize: 0x200 } - - { offsetInCU: 0x425, offset: 0x8EE5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1458, symBinAddr: 0x63C7C, symSize: 0x338 } - - { offsetInCU: 0x456, offset: 0x8EE90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1868, symBinAddr: 0x6408C, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8EEB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x187C, symBinAddr: 0x640A0, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8EF0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x640B4, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8EF36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A64, symBinAddr: 0x64288, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8EF61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A6C, symBinAddr: 0x64290, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8EF92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A90, symBinAddr: 0x642B4, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8EFAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A9C, symBinAddr: 0x642C0, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8EFCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FEC, symBinAddr: 0x65714, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8F010, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x640D4, symSize: 0x1AC } - - { offsetInCU: 0x62B, offset: 0x8F065, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AF8, symBinAddr: 0x6431C, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8F09C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B44, symBinAddr: 0x64368, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8F0BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3138, symBinAddr: 0x65860, symSize: 0x294 } - - { offsetInCU: 0x6D5, offset: 0x8F10F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1B84, symBinAddr: 0x643A8, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8F13A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2300, symBinAddr: 0x64B24, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8F165, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2308, symBinAddr: 0x64B2C, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8F196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x232C, symBinAddr: 0x64B50, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8F1B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2338, symBinAddr: 0x64B5C, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8F1CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33CC, symBinAddr: 0x65AF4, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8F214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BA4, symBinAddr: 0x643C8, symSize: 0x264 } - - { offsetInCU: 0x819, offset: 0x8F253, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E08, symBinAddr: 0x6462C, symSize: 0x474 } - - { offsetInCU: 0x84A, offset: 0x8F284, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2394, symBinAddr: 0x64BB8, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8F2A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A8, symBinAddr: 0x64BCC, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8F2CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x23E0, symBinAddr: 0x64BE0, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8F2DF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2444, symBinAddr: 0x64C24, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8F2F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x250C, symBinAddr: 0x64CA4, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8F307, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2594, symBinAddr: 0x64CE8, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8F31B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x26C0, symBinAddr: 0x64E14, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8F32F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2714, symBinAddr: 0x64E58, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8F343, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x27A4, symBinAddr: 0x64EE8, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8F357, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2860, symBinAddr: 0x64FA4, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8F36B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2868, symBinAddr: 0x64FAC, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8F37F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x286C, symBinAddr: 0x64FB0, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8F393, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2874, symBinAddr: 0x64FB8, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8F3A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2884, symBinAddr: 0x64FC8, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8F3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2914, symBinAddr: 0x65058, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8F3CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x29D0, symBinAddr: 0x65114, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8F3E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x29D4, symBinAddr: 0x65118, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8F3F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x29E4, symBinAddr: 0x65128, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8F40B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2A14, symBinAddr: 0x65158, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8F41F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2A44, symBinAddr: 0x65188, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8F433, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2AA0, symBinAddr: 0x651E4, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8F447, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2B50, symBinAddr: 0x65278, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8F45B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2BB4, symBinAddr: 0x652DC, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8F46F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2C10, symBinAddr: 0x65338, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8F483, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2C70, symBinAddr: 0x65398, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F497, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2C80, symBinAddr: 0x653A8, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F4AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2C84, symBinAddr: 0x653AC, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F4BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2CC8, symBinAddr: 0x653F0, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F4D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2CCC, symBinAddr: 0x653F4, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F4E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D10, symBinAddr: 0x65438, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F4FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D14, symBinAddr: 0x6543C, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F50F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2D58, symBinAddr: 0x65480, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F523, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2D5C, symBinAddr: 0x65484, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DA0, symBinAddr: 0x654C8, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F54B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA4, symBinAddr: 0x654CC, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F55F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE8, symBinAddr: 0x65510, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F573, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DEC, symBinAddr: 0x65514, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x36A4, symBinAddr: 0x65DCC, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F5A6, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x36E8, symBinAddr: 0x65E10, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F5BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x37B4, symBinAddr: 0x65EDC, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F5CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3844, symBinAddr: 0x65F6C, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F5E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3900, symBinAddr: 0x66028, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F5F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3904, symBinAddr: 0x6602C, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F60A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3914, symBinAddr: 0x6603C, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F61E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3918, symBinAddr: 0x66040, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x395C, symBinAddr: 0x66084, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3960, symBinAddr: 0x66088, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F65A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39A4, symBinAddr: 0x660CC, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F66E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39A8, symBinAddr: 0x660D0, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F69C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1818, symBinAddr: 0x6403C, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F6B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x64064, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F6DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AA8, symBinAddr: 0x642CC, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F6F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x642F4, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2344, symBinAddr: 0x64B68, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F734, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x236C, symBinAddr: 0x64B90, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8F886, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6613C, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8F8AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6613C, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8F8C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x66168, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8F907, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x6619C, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8F925, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x661AC, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8F950, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x661B0, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8F96E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x661DC, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8F9AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x66210, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8F9DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x66220, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8FA07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x66224, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8FA1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x66254, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8FA2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6627C, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8FA43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x662B8, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8FA57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x66324, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8FA6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x66368, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8FA7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x663B0, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8FA93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x663F0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8FBD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x66400, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8FBFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8languageSSvpZ', symObjAddr: 0x8D10, symBinAddr: 0x853D8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8FC17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7versionSSvpZ', symObjAddr: 0x8D20, symBinAddr: 0x853E8, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8FC31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8D30, symBinAddr: 0x853F8, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8FC4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8D40, symBinAddr: 0x85408, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8FC65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8D50, symBinAddr: 0x85418, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8FC7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8D60, symBinAddr: 0x85428, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8FC99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x8D70, symBinAddr: 0x85438, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8FCB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x8D80, symBinAddr: 0x85448, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x8D90, symBinAddr: 0x85458, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8FCE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x8DA0, symBinAddr: 0x85468, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8FD01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x8DB0, symBinAddr: 0x85478, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8FD1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x8DC0, symBinAddr: 0x85488, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8FD35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x8DD0, symBinAddr: 0x85498, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8FD4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x8DE0, symBinAddr: 0x854A8, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8FD69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x8DF0, symBinAddr: 0x854B8, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8FD83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x8E00, symBinAddr: 0x854C8, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8FD9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x8E10, symBinAddr: 0x854D8, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x8FDB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x8E20, symBinAddr: 0x854E8, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x8FDD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x8E30, symBinAddr: 0x854F8, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x8FDEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x8E40, symBinAddr: 0x85508, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x8FE05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x8E50, symBinAddr: 0x85518, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x8FE1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x8E60, symBinAddr: 0x85528, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x8FE39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x8E70, symBinAddr: 0x85538, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x8FE53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x8E80, symBinAddr: 0x85548, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x8FE6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x8E90, symBinAddr: 0x85558, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x8FE87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x8EA0, symBinAddr: 0x85568, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x8FEA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x8EB0, symBinAddr: 0x85578, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x8FEBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x8EC0, symBinAddr: 0x85588, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x8FED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x8ED0, symBinAddr: 0x85598, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x8FEEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKeySSvpZ', symObjAddr: 0x8EE0, symBinAddr: 0x855A8, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x8FF09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKeySSvpZ', symObjAddr: 0x8EF0, symBinAddr: 0x855B8, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x8FF23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvpZ', symObjAddr: 0x8F00, symBinAddr: 0x855C8, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x8FF3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKeySSvpZ', symObjAddr: 0x8F10, symBinAddr: 0x855D8, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x8FF57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKeySSvpZ', symObjAddr: 0x8F20, symBinAddr: 0x855E8, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x8FF71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKeySSvpZ', symObjAddr: 0x8F30, symBinAddr: 0x855F8, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x8FF8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKeySSvpZ', symObjAddr: 0x8F40, symBinAddr: 0x85608, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x8FFA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvpZ', symObjAddr: 0x8F50, symBinAddr: 0x85618, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x8FFBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvpZ', symObjAddr: 0x8F60, symBinAddr: 0x85628, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x8FFD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvpZ', symObjAddr: 0x8F70, symBinAddr: 0x85638, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x8FFF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkeySSvpZ', symObjAddr: 0x8F80, symBinAddr: 0x85648, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x9000D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvpZ', symObjAddr: 0x8F90, symBinAddr: 0x85658, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x90027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKeySSvpZ', symObjAddr: 0x8FA0, symBinAddr: 0x85668, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x90041, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKeySSvpZ', symObjAddr: 0x8FB0, symBinAddr: 0x85678, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x9005B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKeySSvpZ', symObjAddr: 0x8FC0, symBinAddr: 0x85688, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x90075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKeySSvpZ', symObjAddr: 0x8FD0, symBinAddr: 0x85698, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x9008F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKeySSvpZ', symObjAddr: 0x8FE0, symBinAddr: 0x856A8, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x900A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKeySSvpZ', symObjAddr: 0x8FF0, symBinAddr: 0x856B8, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x900C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x9000, symBinAddr: 0x856C8, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x900DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x9010, symBinAddr: 0x856D8, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x900F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x9020, symBinAddr: 0x856E8, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x90111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKeySSvpZ', symObjAddr: 0x9030, symBinAddr: 0x856F8, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x9012B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKeySSvpZ', symObjAddr: 0x9040, symBinAddr: 0x85708, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x90145, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKeySSvpZ', symObjAddr: 0x9050, symBinAddr: 0x85718, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x9015F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x9060, symBinAddr: 0x85728, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x90179, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x9070, symBinAddr: 0x85738, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x90193, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x9080, symBinAddr: 0x85748, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x901AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x9090, symBinAddr: 0x85758, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x901C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x90A0, symBinAddr: 0x85768, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x901E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkeySSvpZ', symObjAddr: 0x90B0, symBinAddr: 0x85778, symSize: 0x0 } - - { offsetInCU: 0x63D, offset: 0x901EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x66400, symSize: 0x40 } - - { offsetInCU: 0x65B, offset: 0x9020D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x66440, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x9022B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x66480, symSize: 0x40 } - - { offsetInCU: 0x697, offset: 0x90249, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x664C0, symSize: 0x40 } - - { offsetInCU: 0x6B5, offset: 0x90267, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x66500, symSize: 0x40 } - - { offsetInCU: 0x6DF, offset: 0x90291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x66540, symSize: 0x14 } - - { offsetInCU: 0x6FA, offset: 0x902AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x666D4, symSize: 0x108 } - - { offsetInCU: 0x74C, offset: 0x902FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x66910, symSize: 0x8 } - - { offsetInCU: 0x768, offset: 0x9031A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x66918, symSize: 0x18 } - - { offsetInCU: 0x780, offset: 0x90332, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x66918, symSize: 0x18 } - - { offsetInCU: 0x792, offset: 0x90344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x66554, symSize: 0x40 } - - { offsetInCU: 0x7B0, offset: 0x90362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x66594, symSize: 0x40 } - - { offsetInCU: 0x7CE, offset: 0x90380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x665D4, symSize: 0x40 } - - { offsetInCU: 0x7EC, offset: 0x9039E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x66614, symSize: 0x40 } - - { offsetInCU: 0x80A, offset: 0x903BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x66654, symSize: 0x40 } - - { offsetInCU: 0x828, offset: 0x903DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x66694, symSize: 0x40 } - - { offsetInCU: 0x851, offset: 0x90403, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x66800, symSize: 0x4 } - - { offsetInCU: 0x865, offset: 0x90417, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x66804, symSize: 0x44 } - - { offsetInCU: 0x88F, offset: 0x90441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x66930, symSize: 0x90 } - - { offsetInCU: 0x8A3, offset: 0x90455, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x669C0, symSize: 0xBC } - - { offsetInCU: 0x8B7, offset: 0x90469, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x66A7C, symSize: 0x8 } - - { offsetInCU: 0x8CB, offset: 0x9047D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x66A84, symSize: 0x4 } - - { offsetInCU: 0x8DF, offset: 0x90491, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x66A88, symSize: 0x8 } - - { offsetInCU: 0x8F3, offset: 0x904A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x66A90, symSize: 0x10 } - - { offsetInCU: 0x907, offset: 0x904B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8language_WZ', symObjAddr: 0x6B0, symBinAddr: 0x66AA0, symSize: 0x20 } - - { offsetInCU: 0x921, offset: 0x904D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7version_WZ', symObjAddr: 0x6D0, symBinAddr: 0x66AC0, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x904ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x6EC, symBinAddr: 0x66ADC, symSize: 0x1C } - - { offsetInCU: 0x955, offset: 0x90507, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x708, symBinAddr: 0x66AF8, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x90521, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x724, symBinAddr: 0x66B14, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x9053B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPassword_WZ', symObjAddr: 0x740, symBinAddr: 0x66B30, symSize: 0x14 } - - { offsetInCU: 0x9AA, offset: 0x9055C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x754, symBinAddr: 0x66B44, symSize: 0x1C } - - { offsetInCU: 0x9C4, offset: 0x90576, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x770, symBinAddr: 0x66B60, symSize: 0x24 } - - { offsetInCU: 0x9DE, offset: 0x90590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x794, symBinAddr: 0x66B84, symSize: 0x20 } - - { offsetInCU: 0x9F8, offset: 0x905AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7B4, symBinAddr: 0x66BA4, symSize: 0x28 } - - { offsetInCU: 0xA12, offset: 0x905C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7DC, symBinAddr: 0x66BCC, symSize: 0x24 } - - { offsetInCU: 0xA2C, offset: 0x905DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x800, symBinAddr: 0x66BF0, symSize: 0x24 } - - { offsetInCU: 0xA46, offset: 0x905F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x824, symBinAddr: 0x66C14, symSize: 0x20 } - - { offsetInCU: 0xA60, offset: 0x90612, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x844, symBinAddr: 0x66C34, symSize: 0x28 } - - { offsetInCU: 0xA7A, offset: 0x9062C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x86C, symBinAddr: 0x66C5C, symSize: 0x1C } - - { offsetInCU: 0xA95, offset: 0x90647, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKey_WZ', symObjAddr: 0x888, symBinAddr: 0x66C78, symSize: 0x18 } - - { offsetInCU: 0xAAF, offset: 0x90661, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKey_WZ', symObjAddr: 0x8A0, symBinAddr: 0x66C90, symSize: 0x18 } - - { offsetInCU: 0xAC9, offset: 0x9067B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKey_WZ', symObjAddr: 0x8B8, symBinAddr: 0x66CA8, symSize: 0x1C } - - { offsetInCU: 0xAE3, offset: 0x90695, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x66CC4, symSize: 0x1C } - - { offsetInCU: 0xAFD, offset: 0x906AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x66CE0, symSize: 0x18 } - - { offsetInCU: 0xB17, offset: 0x906C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKey_WZ', symObjAddr: 0x908, symBinAddr: 0x66CF8, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x906E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKey_WZ', symObjAddr: 0x924, symBinAddr: 0x66D14, symSize: 0x1C } - - { offsetInCU: 0xB4B, offset: 0x906FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x940, symBinAddr: 0x66D30, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x90717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x66D4C, symSize: 0x18 } - - { offsetInCU: 0xB7F, offset: 0x90731, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKey_WZ', symObjAddr: 0x974, symBinAddr: 0x66D64, symSize: 0x18 } - - { offsetInCU: 0xB99, offset: 0x9074B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x98C, symBinAddr: 0x66D7C, symSize: 0x1C } - - { offsetInCU: 0xBB3, offset: 0x90765, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x66D98, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x9077F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkey_WZ', symObjAddr: 0x9C0, symBinAddr: 0x66DB0, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x90799, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x66DCC, symSize: 0x24 } - - { offsetInCU: 0xC01, offset: 0x907B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKey_WZ', symObjAddr: 0xA00, symBinAddr: 0x66DF0, symSize: 0x18 } - - { offsetInCU: 0xC1B, offset: 0x907CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKey_WZ', symObjAddr: 0xA18, symBinAddr: 0x66E08, symSize: 0x18 } - - { offsetInCU: 0xC35, offset: 0x907E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKey_WZ', symObjAddr: 0xA30, symBinAddr: 0x66E20, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x90801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKey_WZ', symObjAddr: 0xA48, symBinAddr: 0x66E38, symSize: 0x1C } - - { offsetInCU: 0xC69, offset: 0x9081B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x66E54, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x90835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKey_WZ', symObjAddr: 0xA7C, symBinAddr: 0x66E6C, symSize: 0x18 } - - { offsetInCU: 0xC9D, offset: 0x9084F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKey_WZ', symObjAddr: 0xA94, symBinAddr: 0x66E84, symSize: 0x1C } - - { offsetInCU: 0xCB7, offset: 0x90869, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x66EA0, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x90883, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkey_WZ', symObjAddr: 0xAC8, symBinAddr: 0x66EB8, symSize: 0x18 } - - { offsetInCU: 0xCEB, offset: 0x9089D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekey_WZ', symObjAddr: 0xAE0, symBinAddr: 0x66ED0, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x908B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkey_WZ', symObjAddr: 0xAF8, symBinAddr: 0x66EE8, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x908D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkey_WZ', symObjAddr: 0xB10, symBinAddr: 0x66F00, symSize: 0x20 } - - { offsetInCU: 0xD39, offset: 0x908EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKey_WZ', symObjAddr: 0xB30, symBinAddr: 0x66F20, symSize: 0x24 } - - { offsetInCU: 0xD53, offset: 0x90905, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKey_WZ', symObjAddr: 0xB54, symBinAddr: 0x66F44, symSize: 0x1C } - - { offsetInCU: 0xD6D, offset: 0x9091F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x66F60, symSize: 0x1C } - - { offsetInCU: 0xD87, offset: 0x90939, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x66F7C, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x90953, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x66F98, symSize: 0x18 } - - { offsetInCU: 0xDBB, offset: 0x9096D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKey_WZ', symObjAddr: 0xBC0, symBinAddr: 0x66FB0, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x90987, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x66FCC, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x909A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xBF4, symBinAddr: 0x66FE4, symSize: 0x18 } - - { offsetInCU: 0xE09, offset: 0x909BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC0C, symBinAddr: 0x66FFC, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x909D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKey_WZ', symObjAddr: 0xC24, symBinAddr: 0x67014, symSize: 0x1C } - - { offsetInCU: 0xE3D, offset: 0x909EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x67030, symSize: 0x24 } - - { offsetInCU: 0xE57, offset: 0x90A09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKey_WZ', symObjAddr: 0xC64, symBinAddr: 0x67054, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x90A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x67070, symSize: 0x20 } - - { offsetInCU: 0xE8B, offset: 0x90A3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCA0, symBinAddr: 0x67090, symSize: 0x18 } - - { offsetInCU: 0xEA5, offset: 0x90A57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCB8, symBinAddr: 0x670A8, symSize: 0x18 } - - { offsetInCU: 0xEBF, offset: 0x90A71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCD0, symBinAddr: 0x670C0, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x90A8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekey_WZ', symObjAddr: 0xCE8, symBinAddr: 0x670D8, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkey_WZ', symObjAddr: 0xD00, symBinAddr: 0x670F0, symSize: 0x18 } - - { offsetInCU: 0xF56, offset: 0x90B08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0xD18, symBinAddr: 0x67108, symSize: 0x13C } - - { offsetInCU: 0x1191, offset: 0x90D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x667DC, symSize: 0x24 } - - { offsetInCU: 0x1233, offset: 0x90DE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x66848, symSize: 0x4C } - - { offsetInCU: 0x130B, offset: 0x90EBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x66894, symSize: 0x34 } - - { offsetInCU: 0x1387, offset: 0x90F39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x668C8, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x910F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67244, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x91135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67244, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x91181, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x67268, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x912C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1AE8, symBinAddr: 0x84DA0, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x9130B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x67364, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x9138A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x673A4, symSize: 0x3EC } - - { offsetInCU: 0x302, offset: 0x91575, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x55C, symBinAddr: 0x677A4, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x915DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C0, symBinAddr: 0x67808, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x91641, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x624, symBinAddr: 0x6786C, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x916A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x688, symBinAddr: 0x678D0, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x9170D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6EC, symBinAddr: 0x67934, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x9180A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x814, symBinAddr: 0x67A00, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x9187B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x67A3C, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x918B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x67A3C, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x918E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x860, symBinAddr: 0x67A4C, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x91967, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x9C4, symBinAddr: 0x67BB0, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x919C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x9F8, symBinAddr: 0x67BE4, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x91A49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA4C, symBinAddr: 0x67C38, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91AE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA98, symBinAddr: 0x67C84, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x91B93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB2C, symBinAddr: 0x67D08, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x91C56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA0, symBinAddr: 0x67D7C, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91D05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC24, symBinAddr: 0x67E00, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC5C, symBinAddr: 0x67E38, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC94, symBinAddr: 0x67E70, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x91EB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCCC, symBinAddr: 0x67EA8, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x91F4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD04, symBinAddr: 0x67EE0, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x91FE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD3C, symBinAddr: 0x67F18, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x92078, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD74, symBinAddr: 0x67F50, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x9210D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDAC, symBinAddr: 0x67F88, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x92178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDE4, symBinAddr: 0x67FC0, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x921D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE28, symBinAddr: 0x68004, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x922BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xF60, symBinAddr: 0x6813C, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x923A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x100C, symBinAddr: 0x681E8, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x92441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1084, symBinAddr: 0x68260, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x9246E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1108, symBinAddr: 0x682E4, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x92514, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x672C8, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x9252C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x67318, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x925CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5B8, symBinAddr: 0x67800, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x925DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x61C, symBinAddr: 0x67864, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x925F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x680, symBinAddr: 0x678C8, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x92606, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6E4, symBinAddr: 0x6792C, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x9261A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x748, symBinAddr: 0x67990, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x9262E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x7AC, symBinAddr: 0x67998, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x92642, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOf', symObjAddr: 0x7CC, symBinAddr: 0x679B8, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x926A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1250, symBinAddr: 0x6842C, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x926B7, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1258, symBinAddr: 0x68434, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x926CB, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1268, symBinAddr: 0x68444, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x9270C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x129C, symBinAddr: 0x6844C, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x9280E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15BC, symBinAddr: 0x6876C, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x92961, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x67288, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x9297D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x6728C, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x92999, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x67290, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x929B5, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x67294, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x929D1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x67298, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x929ED, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x6729C, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x92A09, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x672A0, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92A25, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x672A4, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x92A41, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x672A8, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x92A5D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x672AC, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x92A79, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x672B0, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x92A95, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x672BC, symSize: 0xC } -... diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml deleted file mode 100644 index 3a1ce5c..0000000 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml +++ /dev/null @@ -1,1791 +0,0 @@ ---- -triple: 'x86_64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' -relocations: - - { offsetInCU: 0x34, offset: 0x59050, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x78F80, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x59085, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x78FB0, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x590EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x44A60, symBinAddr: 0x91320, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x59115, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xF0, symBinAddr: 0x2BF0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x59131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x130, symBinAddr: 0x2C30, symSize: 0x10 } - - { offsetInCU: 0xB2, offset: 0x5914D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x140, symBinAddr: 0x2C40, symSize: 0x320 } - - { offsetInCU: 0x109, offset: 0x591A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x460, symBinAddr: 0x2F60, symSize: 0xFF0 } - - { offsetInCU: 0x46E, offset: 0x59509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1450, symBinAddr: 0x3F50, symSize: 0x660 } - - { offsetInCU: 0x4EF, offset: 0x5958A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1AB0, symBinAddr: 0x45B0, symSize: 0x20 } - - { offsetInCU: 0x51C, offset: 0x595B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D30, symBinAddr: 0x4830, symSize: 0x770 } - - { offsetInCU: 0x7E1, offset: 0x5987C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x24A0, symBinAddr: 0x4FA0, symSize: 0x480 } - - { offsetInCU: 0xA95, offset: 0x59B30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2920, symBinAddr: 0x5420, symSize: 0xA40 } - - { offsetInCU: 0xEC1, offset: 0x59F5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3360, symBinAddr: 0x5E60, symSize: 0x7A0 } - - { offsetInCU: 0x12A5, offset: 0x5A340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3B00, symBinAddr: 0x6600, symSize: 0x4B00 } - - { offsetInCU: 0x2C82, offset: 0x5BD1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8610, symBinAddr: 0xB100, symSize: 0x190 } - - { offsetInCU: 0x2D56, offset: 0x5BDF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x87A0, symBinAddr: 0xB290, symSize: 0x3B0 } - - { offsetInCU: 0x2F41, offset: 0x5BFDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8B50, symBinAddr: 0xB640, symSize: 0x480 } - - { offsetInCU: 0x32D0, offset: 0x5C36B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8FD0, symBinAddr: 0xBAC0, symSize: 0x360 } - - { offsetInCU: 0x348E, offset: 0x5C529, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x9330, symBinAddr: 0xBE20, symSize: 0x2A0 } - - { offsetInCU: 0x360A, offset: 0x5C6A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x95D0, symBinAddr: 0xC0C0, symSize: 0x2B0 } - - { offsetInCU: 0x3786, offset: 0x5C821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x9880, symBinAddr: 0xC370, symSize: 0x4A0 } - - { offsetInCU: 0x38B0, offset: 0x5C94B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x9D20, symBinAddr: 0xC810, symSize: 0x740 } - - { offsetInCU: 0x3B84, offset: 0x5CC1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0xA460, symBinAddr: 0xCF50, symSize: 0x250 } - - { offsetInCU: 0x3D99, offset: 0x5CE34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB980, symBinAddr: 0xE470, symSize: 0x1B60 } - - { offsetInCU: 0x546D, offset: 0x5E508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x2B80, symSize: 0x40 } - - { offsetInCU: 0x549D, offset: 0x5E538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0xC0, symBinAddr: 0x2BC0, symSize: 0x30 } - - { offsetInCU: 0x5675, offset: 0x5E710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1AD0, symBinAddr: 0x45D0, symSize: 0x10 } - - { offsetInCU: 0x5689, offset: 0x5E724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1AE0, symBinAddr: 0x45E0, symSize: 0x30 } - - { offsetInCU: 0x569D, offset: 0x5E738, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1B10, symBinAddr: 0x4610, symSize: 0x220 } - - { offsetInCU: 0x5BF9, offset: 0x5EC94, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0xA730, symBinAddr: 0xD220, symSize: 0x10 } - - { offsetInCU: 0x5C0D, offset: 0x5ECA8, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0xA740, symBinAddr: 0xD230, symSize: 0x10 } - - { offsetInCU: 0x5C21, offset: 0x5ECBC, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0xA750, symBinAddr: 0xD240, symSize: 0x20 } - - { offsetInCU: 0x5C35, offset: 0x5ECD0, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0xA770, symBinAddr: 0xD260, symSize: 0x30 } - - { offsetInCU: 0x5D46, offset: 0x5EDE1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xACE0, symBinAddr: 0xD7D0, symSize: 0x20 } - - { offsetInCU: 0x5D5A, offset: 0x5EDF5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xAD00, symBinAddr: 0xD7F0, symSize: 0x20 } - - { offsetInCU: 0x5D6E, offset: 0x5EE09, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xAD50, symBinAddr: 0xD840, symSize: 0x20 } - - { offsetInCU: 0x5D82, offset: 0x5EE1D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xAD70, symBinAddr: 0xD860, symSize: 0x20 } - - { offsetInCU: 0x5DB7, offset: 0x5EE52, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xAF50, symBinAddr: 0xDA40, symSize: 0x230 } - - { offsetInCU: 0x5E1D, offset: 0x5EEB8, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xB180, symBinAddr: 0xDC70, symSize: 0x50 } - - { offsetInCU: 0x5E7E, offset: 0x5EF19, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xB320, symBinAddr: 0xDE10, symSize: 0x260 } - - { offsetInCU: 0x63F5, offset: 0x5F490, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xD680, symBinAddr: 0x10170, symSize: 0x40 } - - { offsetInCU: 0x6409, offset: 0x5F4A4, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xD6C0, symBinAddr: 0x101B0, symSize: 0x30 } - - { offsetInCU: 0x641D, offset: 0x5F4B8, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xD6F0, symBinAddr: 0x101E0, symSize: 0x20 } - - { offsetInCU: 0x6431, offset: 0x5F4CC, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xD710, symBinAddr: 0x10200, symSize: 0x30 } - - { offsetInCU: 0x6445, offset: 0x5F4E0, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xD790, symBinAddr: 0x10280, symSize: 0x30 } - - { offsetInCU: 0x6459, offset: 0x5F4F4, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD930, symBinAddr: 0x10420, symSize: 0x20 } - - { offsetInCU: 0x646D, offset: 0x5F508, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD950, symBinAddr: 0x10440, symSize: 0x20 } - - { offsetInCU: 0x6481, offset: 0x5F51C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xD970, symBinAddr: 0x10460, symSize: 0x50 } - - { offsetInCU: 0x6495, offset: 0x5F530, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xD9C0, symBinAddr: 0x104B0, symSize: 0x180 } - - { offsetInCU: 0x64A9, offset: 0x5F544, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xDB40, symBinAddr: 0x10630, symSize: 0x2D0 } - - { offsetInCU: 0x64BD, offset: 0x5F558, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xDE10, symBinAddr: 0x10900, symSize: 0x70 } - - { offsetInCU: 0x64D1, offset: 0x5F56C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xDE80, symBinAddr: 0x10970, symSize: 0x30 } - - { offsetInCU: 0x64E5, offset: 0x5F580, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xDEB0, symBinAddr: 0x109A0, symSize: 0xD0 } - - { offsetInCU: 0x64F9, offset: 0x5F594, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xDF80, symBinAddr: 0x10A70, symSize: 0xB0 } - - { offsetInCU: 0x650D, offset: 0x5F5A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xE030, symBinAddr: 0x10B20, symSize: 0x20 } - - { offsetInCU: 0x6521, offset: 0x5F5BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xE050, symBinAddr: 0x10B40, symSize: 0x30 } - - { offsetInCU: 0x6535, offset: 0x5F5D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xE0E0, symBinAddr: 0x10BD0, symSize: 0x50 } - - { offsetInCU: 0x6549, offset: 0x5F5E4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xE1D0, symBinAddr: 0x10CC0, symSize: 0x20 } - - { offsetInCU: 0x655D, offset: 0x5F5F8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xE1F0, symBinAddr: 0x10CE0, symSize: 0x20 } - - { offsetInCU: 0x6571, offset: 0x5F60C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xE210, symBinAddr: 0x10D00, symSize: 0x20 } - - { offsetInCU: 0x6585, offset: 0x5F620, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xE230, symBinAddr: 0x10D20, symSize: 0x20 } - - { offsetInCU: 0x6599, offset: 0x5F634, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xE250, symBinAddr: 0x10D40, symSize: 0x20 } - - { offsetInCU: 0x65AD, offset: 0x5F648, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xE270, symBinAddr: 0x10D60, symSize: 0x20 } - - { offsetInCU: 0x65C1, offset: 0x5F65C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xE290, symBinAddr: 0x10D80, symSize: 0x20 } - - { offsetInCU: 0x69B1, offset: 0x5FA4C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA7C0, symBinAddr: 0xD2B0, symSize: 0x10 } - - { offsetInCU: 0x69EF, offset: 0x5FA8A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA7E0, symBinAddr: 0xD2D0, symSize: 0x10 } - - { offsetInCU: 0x6A3E, offset: 0x5FAD9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA7F0, symBinAddr: 0xD2E0, symSize: 0x10 } - - { offsetInCU: 0x6ADB, offset: 0x5FB76, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA800, symBinAddr: 0xD2F0, symSize: 0x10 } - - { offsetInCU: 0x6B70, offset: 0x5FC0B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA810, symBinAddr: 0xD300, symSize: 0x10 } - - { offsetInCU: 0x6C0D, offset: 0x5FCA8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA820, symBinAddr: 0xD310, symSize: 0x30 } - - { offsetInCU: 0x6D68, offset: 0x5FE03, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA850, symBinAddr: 0xD340, symSize: 0x30 } - - { offsetInCU: 0x6E65, offset: 0x5FF00, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA880, symBinAddr: 0xD370, symSize: 0x20 } - - { offsetInCU: 0x6F51, offset: 0x5FFEC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA8A0, symBinAddr: 0xD390, symSize: 0x10 } - - { offsetInCU: 0x6F8F, offset: 0x6002A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA8B0, symBinAddr: 0xD3A0, symSize: 0x10 } - - { offsetInCU: 0x6FCD, offset: 0x60068, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA8C0, symBinAddr: 0xD3B0, symSize: 0x10 } - - { offsetInCU: 0x701A, offset: 0x600B5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA8D0, symBinAddr: 0xD3C0, symSize: 0x10 } - - { offsetInCU: 0x70C3, offset: 0x6015E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA8E0, symBinAddr: 0xD3D0, symSize: 0x20 } - - { offsetInCU: 0x713A, offset: 0x601D5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA900, symBinAddr: 0xD3F0, symSize: 0x10 } - - { offsetInCU: 0x71F2, offset: 0x6028D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA910, symBinAddr: 0xD400, symSize: 0x20 } - - { offsetInCU: 0x728C, offset: 0x60327, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA930, symBinAddr: 0xD420, symSize: 0x10 } - - { offsetInCU: 0x72F4, offset: 0x6038F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA940, symBinAddr: 0xD430, symSize: 0x20 } - - { offsetInCU: 0x7310, offset: 0x603AB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA960, symBinAddr: 0xD450, symSize: 0x10 } - - { offsetInCU: 0x738C, offset: 0x60427, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA990, symBinAddr: 0xD480, symSize: 0x10 } - - { offsetInCU: 0x73BD, offset: 0x60458, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA9A0, symBinAddr: 0xD490, symSize: 0x10 } - - { offsetInCU: 0x73EE, offset: 0x60489, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA9B0, symBinAddr: 0xD4A0, symSize: 0x10 } - - { offsetInCU: 0x741F, offset: 0x604BA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA9C0, symBinAddr: 0xD4B0, symSize: 0x30 } - - { offsetInCU: 0x744E, offset: 0x604E9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA9F0, symBinAddr: 0xD4E0, symSize: 0x30 } - - { offsetInCU: 0x747F, offset: 0x6051A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xAA20, symBinAddr: 0xD510, symSize: 0x30 } - - { offsetInCU: 0x74B0, offset: 0x6054B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xAA50, symBinAddr: 0xD540, symSize: 0x10 } - - { offsetInCU: 0x74E1, offset: 0x6057C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xAA60, symBinAddr: 0xD550, symSize: 0x10 } - - { offsetInCU: 0x7512, offset: 0x605AD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xAA70, symBinAddr: 0xD560, symSize: 0x10 } - - { offsetInCU: 0x7543, offset: 0x605DE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xAA80, symBinAddr: 0xD570, symSize: 0x20 } - - { offsetInCU: 0x7574, offset: 0x6060F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xAAA0, symBinAddr: 0xD590, symSize: 0x20 } - - { offsetInCU: 0x75A5, offset: 0x60640, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xAAC0, symBinAddr: 0xD5B0, symSize: 0x10 } - - { offsetInCU: 0x75D6, offset: 0x60671, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xAAD0, symBinAddr: 0xD5C0, symSize: 0x20 } - - { offsetInCU: 0x7607, offset: 0x606A2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xAAF0, symBinAddr: 0xD5E0, symSize: 0x10 } - - { offsetInCU: 0x7638, offset: 0x606D3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xAB00, symBinAddr: 0xD5F0, symSize: 0x20 } - - { offsetInCU: 0x7654, offset: 0x606EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xAB20, symBinAddr: 0xD610, symSize: 0x10 } - - { offsetInCU: 0x7694, offset: 0x6072F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAB50, symBinAddr: 0xD640, symSize: 0x30 } - - { offsetInCU: 0x7712, offset: 0x607AD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAB80, symBinAddr: 0xD670, symSize: 0x60 } - - { offsetInCU: 0x77A5, offset: 0x60840, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC40, symBinAddr: 0xD730, symSize: 0x10 } - - { offsetInCU: 0x77E5, offset: 0x60880, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC50, symBinAddr: 0xD740, symSize: 0x10 } - - { offsetInCU: 0x782B, offset: 0x608C6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xAC60, symBinAddr: 0xD750, symSize: 0x40 } - - { offsetInCU: 0x789A, offset: 0x60935, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xACA0, symBinAddr: 0xD790, symSize: 0x10 } - - { offsetInCU: 0x78C5, offset: 0x60960, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xACB0, symBinAddr: 0xD7A0, symSize: 0x30 } - - { offsetInCU: 0x78F6, offset: 0x60991, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xAD90, symBinAddr: 0xD880, symSize: 0x10 } - - { offsetInCU: 0x7927, offset: 0x609C2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xADA0, symBinAddr: 0xD890, symSize: 0x30 } - - { offsetInCU: 0x7967, offset: 0x60A02, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xADD0, symBinAddr: 0xD8C0, symSize: 0x80 } - - { offsetInCU: 0x7A00, offset: 0x60A9B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xAEE0, symBinAddr: 0xD9D0, symSize: 0x70 } - - { offsetInCU: 0x7A43, offset: 0x60ADE, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0xB580, symBinAddr: 0xE070, symSize: 0xA0 } - - { offsetInCU: 0x7B2F, offset: 0x60BCA, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xB620, symBinAddr: 0xE110, symSize: 0x220 } - - { offsetInCU: 0x7D5D, offset: 0x60DF8, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xD4E0, symBinAddr: 0xFFD0, symSize: 0xD0 } - - { offsetInCU: 0x7EA5, offset: 0x60F40, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xD5B0, symBinAddr: 0x100A0, symSize: 0xD0 } - - { offsetInCU: 0x7FD8, offset: 0x61073, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE2B0, symBinAddr: 0x10DA0, symSize: 0x80 } - - { offsetInCU: 0x8069, offset: 0x61104, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE330, symBinAddr: 0x10E20, symSize: 0x80 } - - { offsetInCU: 0x822B, offset: 0x612C6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xAE60, symBinAddr: 0xD950, symSize: 0x10 } - - { offsetInCU: 0x8247, offset: 0x612E2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xAE70, symBinAddr: 0xD960, symSize: 0x10 } - - { offsetInCU: 0x82B1, offset: 0x6134C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xAE80, symBinAddr: 0xD970, symSize: 0x40 } - - { offsetInCU: 0x82DA, offset: 0x61375, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xAEC0, symBinAddr: 0xD9B0, symSize: 0x20 } - - { offsetInCU: 0x8315, offset: 0x613B0, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xAE50, symBinAddr: 0xD940, symSize: 0x10 } - - { offsetInCU: 0x83F3, offset: 0x6148E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0xA7D0, symBinAddr: 0xD2C0, symSize: 0x10 } - - { offsetInCU: 0x8416, offset: 0x614B1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA970, symBinAddr: 0xD460, symSize: 0x10 } - - { offsetInCU: 0x8432, offset: 0x614CD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA980, symBinAddr: 0xD470, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x616DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x61701, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0x20 } - - { offsetInCU: 0x79, offset: 0x6172F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0x10F00, symSize: 0x14 } - - { offsetInCU: 0x43, offset: 0x6185E, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0x10F50, symSize: 0x10 } - - { offsetInCU: 0x57, offset: 0x61872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0x10F90, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x618B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0x10FA0, symSize: 0x20 } - - { offsetInCU: 0xE4, offset: 0x618FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA0, symBinAddr: 0x10FC0, symSize: 0x10 } - - { offsetInCU: 0x142, offset: 0x6195D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC0, symBinAddr: 0x10FE0, symSize: 0x20 } - - { offsetInCU: 0x1BC, offset: 0x619D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0xF0, symBinAddr: 0x11010, symSize: 0x10 } - - { offsetInCU: 0x1E7, offset: 0x61A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x11020, symSize: 0x20 } - - { offsetInCU: 0x218, offset: 0x61A33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x120, symBinAddr: 0x11040, symSize: 0x10 } - - { offsetInCU: 0x234, offset: 0x61A4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x130, symBinAddr: 0x11050, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x61A6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2240, symBinAddr: 0x13160, symSize: 0x340 } - - { offsetInCU: 0x296, offset: 0x61AB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x180, symBinAddr: 0x110A0, symSize: 0x4C0 } - - { offsetInCU: 0x2EB, offset: 0x61B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0x124A0, symSize: 0x50 } - - { offsetInCU: 0x322, offset: 0x61B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0x124F0, symSize: 0x50 } - - { offsetInCU: 0x345, offset: 0x61B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2580, symBinAddr: 0x134A0, symSize: 0x14F0 } - - { offsetInCU: 0x377, offset: 0x61B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x11560, symSize: 0xE0 } - - { offsetInCU: 0x3C3, offset: 0x61BDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1620, symBinAddr: 0x12540, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x61C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1630, symBinAddr: 0x12550, symSize: 0x30 } - - { offsetInCU: 0x4FB, offset: 0x61D16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1660, symBinAddr: 0x12580, symSize: 0x20 } - - { offsetInCU: 0x57C, offset: 0x61D97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16B0, symBinAddr: 0x125D0, symSize: 0x10 } - - { offsetInCU: 0x5BC, offset: 0x61DD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16C0, symBinAddr: 0x125E0, symSize: 0x20 } - - { offsetInCU: 0x5ED, offset: 0x61E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x12600, symSize: 0x10 } - - { offsetInCU: 0x609, offset: 0x61E24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x12610, symSize: 0x10 } - - { offsetInCU: 0x625, offset: 0x61E40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3A70, symBinAddr: 0x14990, symSize: 0x60 } - - { offsetInCU: 0x669, offset: 0x61E84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvgTf4d_n', symObjAddr: 0x3AD0, symBinAddr: 0x149F0, symSize: 0x20 } - - { offsetInCU: 0x69D, offset: 0x61EB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x12660, symSize: 0x50 } - - { offsetInCU: 0x6D4, offset: 0x61EEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x126B0, symSize: 0x50 } - - { offsetInCU: 0x6F7, offset: 0x61F12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3AF0, symBinAddr: 0x14A10, symSize: 0x3A0 } - - { offsetInCU: 0x769, offset: 0x61F84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x720, symBinAddr: 0x11640, symSize: 0x20 } - - { offsetInCU: 0x792, offset: 0x61FAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x12700, symSize: 0x10 } - - { offsetInCU: 0x7BD, offset: 0x61FD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x12710, symSize: 0x20 } - - { offsetInCU: 0x7EE, offset: 0x62009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x12730, symSize: 0x10 } - - { offsetInCU: 0x80A, offset: 0x62025, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x12740, symSize: 0x10 } - - { offsetInCU: 0x826, offset: 0x62041, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6310, symBinAddr: 0x171E0, symSize: 0x160 } - - { offsetInCU: 0x86C, offset: 0x62087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x740, symBinAddr: 0x11660, symSize: 0x1A0 } - - { offsetInCU: 0x8C1, offset: 0x620DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x12790, symSize: 0x50 } - - { offsetInCU: 0x8F8, offset: 0x62113, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x127E0, symSize: 0x50 } - - { offsetInCU: 0x91B, offset: 0x62136, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6470, symBinAddr: 0x17340, symSize: 0x320 } - - { offsetInCU: 0x96B, offset: 0x62186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x8E0, symBinAddr: 0x11800, symSize: 0x20 } - - { offsetInCU: 0x994, offset: 0x621AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1910, symBinAddr: 0x12830, symSize: 0x10 } - - { offsetInCU: 0x9BF, offset: 0x621DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1920, symBinAddr: 0x12840, symSize: 0x20 } - - { offsetInCU: 0x9F0, offset: 0x6220B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1940, symBinAddr: 0x12860, symSize: 0x10 } - - { offsetInCU: 0xA0C, offset: 0x62227, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6790, symBinAddr: 0x17660, symSize: 0x120 } - - { offsetInCU: 0xA52, offset: 0x6226D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x900, symBinAddr: 0x11820, symSize: 0x170 } - - { offsetInCU: 0xAA7, offset: 0x622C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1990, symBinAddr: 0x128B0, symSize: 0x40 } - - { offsetInCU: 0xADE, offset: 0x622F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19D0, symBinAddr: 0x128F0, symSize: 0x40 } - - { offsetInCU: 0xB01, offset: 0x6231C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x68B0, symBinAddr: 0x17780, symSize: 0x310 } - - { offsetInCU: 0xB45, offset: 0x62360, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xA70, symBinAddr: 0x11990, symSize: 0x20 } - - { offsetInCU: 0xB6E, offset: 0x62389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A10, symBinAddr: 0x12930, symSize: 0x10 } - - { offsetInCU: 0xB99, offset: 0x623B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x12940, symSize: 0x20 } - - { offsetInCU: 0xBCA, offset: 0x623E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x12960, symSize: 0x10 } - - { offsetInCU: 0xBE6, offset: 0x62401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x12970, symSize: 0x10 } - - { offsetInCU: 0xC02, offset: 0x6241D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6BC0, symBinAddr: 0x17A90, symSize: 0x120 } - - { offsetInCU: 0xC48, offset: 0x62463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA90, symBinAddr: 0x119B0, symSize: 0x1D0 } - - { offsetInCU: 0xC9D, offset: 0x624B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x129C0, symSize: 0x50 } - - { offsetInCU: 0xCD4, offset: 0x624EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AF0, symBinAddr: 0x12A10, symSize: 0x50 } - - { offsetInCU: 0xCF7, offset: 0x62512, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x17BB0, symSize: 0x580 } - - { offsetInCU: 0xD47, offset: 0x62562, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xC60, symBinAddr: 0x11B80, symSize: 0x20 } - - { offsetInCU: 0xD70, offset: 0x6258B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x12A80, symSize: 0x10 } - - { offsetInCU: 0xD9B, offset: 0x625B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B70, symBinAddr: 0x12A90, symSize: 0x20 } - - { offsetInCU: 0xDCC, offset: 0x625E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B90, symBinAddr: 0x12AB0, symSize: 0x10 } - - { offsetInCU: 0xDE8, offset: 0x62603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x12AC0, symSize: 0x10 } - - { offsetInCU: 0xE04, offset: 0x6261F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x72F0, symBinAddr: 0x181C0, symSize: 0x210 } - - { offsetInCU: 0xE4A, offset: 0x62665, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC80, symBinAddr: 0x11BA0, symSize: 0x230 } - - { offsetInCU: 0xE9F, offset: 0x626BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BF0, symBinAddr: 0x12B10, symSize: 0x60 } - - { offsetInCU: 0xED6, offset: 0x626F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C50, symBinAddr: 0x12B70, symSize: 0x70 } - - { offsetInCU: 0xEF9, offset: 0x62714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7500, symBinAddr: 0x183D0, symSize: 0x660 } - - { offsetInCU: 0xF49, offset: 0x62764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xEB0, symBinAddr: 0x11DD0, symSize: 0x30 } - - { offsetInCU: 0xF94, offset: 0x627AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1CC0, symBinAddr: 0x12BE0, symSize: 0x10 } - - { offsetInCU: 0x101D, offset: 0x62838, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1CD0, symBinAddr: 0x12BF0, symSize: 0x40 } - - { offsetInCU: 0x1101, offset: 0x6291C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D10, symBinAddr: 0x12C30, symSize: 0x20 } - - { offsetInCU: 0x1173, offset: 0x6298E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D70, symBinAddr: 0x12C90, symSize: 0x10 } - - { offsetInCU: 0x119E, offset: 0x629B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D80, symBinAddr: 0x12CA0, symSize: 0x20 } - - { offsetInCU: 0x11CF, offset: 0x629EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DA0, symBinAddr: 0x12CC0, symSize: 0x10 } - - { offsetInCU: 0x11EB, offset: 0x62A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x12CD0, symSize: 0x10 } - - { offsetInCU: 0x1207, offset: 0x62A22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B90, symBinAddr: 0x18A60, symSize: 0xA0 } - - { offsetInCU: 0x124D, offset: 0x62A68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x11E00, symSize: 0x110 } - - { offsetInCU: 0x12A2, offset: 0x62ABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E00, symBinAddr: 0x12D20, symSize: 0x30 } - - { offsetInCU: 0x12D9, offset: 0x62AF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E30, symBinAddr: 0x12D50, symSize: 0x20 } - - { offsetInCU: 0x12FC, offset: 0x62B17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C30, symBinAddr: 0x18B00, symSize: 0x180 } - - { offsetInCU: 0x1358, offset: 0x62B73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xFF0, symBinAddr: 0x11F10, symSize: 0x20 } - - { offsetInCU: 0x1381, offset: 0x62B9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E50, symBinAddr: 0x12D70, symSize: 0x10 } - - { offsetInCU: 0x13AC, offset: 0x62BC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x12D80, symSize: 0x20 } - - { offsetInCU: 0x13DD, offset: 0x62BF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1E80, symBinAddr: 0x12DA0, symSize: 0x10 } - - { offsetInCU: 0x13F9, offset: 0x62C14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E90, symBinAddr: 0x12DB0, symSize: 0x10 } - - { offsetInCU: 0x1415, offset: 0x62C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7DE0, symBinAddr: 0x18CB0, symSize: 0x1C0 } - - { offsetInCU: 0x145B, offset: 0x62C76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1010, symBinAddr: 0x11F30, symSize: 0x1F0 } - - { offsetInCU: 0x14B0, offset: 0x62CCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EE0, symBinAddr: 0x12E00, symSize: 0x50 } - - { offsetInCU: 0x14E7, offset: 0x62D02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F30, symBinAddr: 0x12E50, symSize: 0x50 } - - { offsetInCU: 0x150A, offset: 0x62D25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x18E70, symSize: 0x3A0 } - - { offsetInCU: 0x154E, offset: 0x62D69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1200, symBinAddr: 0x12120, symSize: 0x20 } - - { offsetInCU: 0x1577, offset: 0x62D92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F80, symBinAddr: 0x12EA0, symSize: 0x10 } - - { offsetInCU: 0x15A2, offset: 0x62DBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F90, symBinAddr: 0x12EB0, symSize: 0x20 } - - { offsetInCU: 0x15D3, offset: 0x62DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FB0, symBinAddr: 0x12ED0, symSize: 0x10 } - - { offsetInCU: 0x15EF, offset: 0x62E0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FC0, symBinAddr: 0x12EE0, symSize: 0x10 } - - { offsetInCU: 0x160B, offset: 0x62E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x19210, symSize: 0x190 } - - { offsetInCU: 0x1651, offset: 0x62E6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1220, symBinAddr: 0x12140, symSize: 0x210 } - - { offsetInCU: 0x16A6, offset: 0x62EC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2010, symBinAddr: 0x12F30, symSize: 0x50 } - - { offsetInCU: 0x16DD, offset: 0x62EF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2060, symBinAddr: 0x12F80, symSize: 0x50 } - - { offsetInCU: 0x1700, offset: 0x62F1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x84D0, symBinAddr: 0x193A0, symSize: 0x3D0 } - - { offsetInCU: 0x1750, offset: 0x62F6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1430, symBinAddr: 0x12350, symSize: 0x20 } - - { offsetInCU: 0x1779, offset: 0x62F94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2130, symBinAddr: 0x13050, symSize: 0x10 } - - { offsetInCU: 0x17A4, offset: 0x62FBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x13060, symSize: 0x20 } - - { offsetInCU: 0x17D5, offset: 0x62FF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2160, symBinAddr: 0x13080, symSize: 0x10 } - - { offsetInCU: 0x17F1, offset: 0x6300C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2170, symBinAddr: 0x13090, symSize: 0x10 } - - { offsetInCU: 0x180D, offset: 0x63028, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8900, symBinAddr: 0x197D0, symSize: 0xE0 } - - { offsetInCU: 0x1853, offset: 0x6306E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1450, symBinAddr: 0x12370, symSize: 0x130 } - - { offsetInCU: 0x18A8, offset: 0x630C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x21C0, symBinAddr: 0x130E0, symSize: 0x40 } - - { offsetInCU: 0x18DF, offset: 0x630FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2200, symBinAddr: 0x13120, symSize: 0x40 } - - { offsetInCU: 0x1902, offset: 0x6311D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x89E0, symBinAddr: 0x198B0, symSize: 0x1C0 } - - { offsetInCU: 0x193F, offset: 0x6315A, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3ED0, symBinAddr: 0x14DB0, symSize: 0x30 } - - { offsetInCU: 0x1953, offset: 0x6316E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3F00, symBinAddr: 0x14DE0, symSize: 0x30 } - - { offsetInCU: 0x1967, offset: 0x63182, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F30, symBinAddr: 0x14E10, symSize: 0x30 } - - { offsetInCU: 0x197B, offset: 0x63196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3F60, symBinAddr: 0x14E40, symSize: 0x30 } - - { offsetInCU: 0x198F, offset: 0x631AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3F90, symBinAddr: 0x14E70, symSize: 0x30 } - - { offsetInCU: 0x19A3, offset: 0x631BE, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FC0, symBinAddr: 0x14EA0, symSize: 0x10 } - - { offsetInCU: 0x19B7, offset: 0x631D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3FE0, symBinAddr: 0x14EB0, symSize: 0x50 } - - { offsetInCU: 0x19CB, offset: 0x631E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4030, symBinAddr: 0x14F00, symSize: 0xA0 } - - { offsetInCU: 0x19DF, offset: 0x631FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x40D0, symBinAddr: 0x14FA0, symSize: 0x10 } - - { offsetInCU: 0x19F3, offset: 0x6320E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x40E0, symBinAddr: 0x14FB0, symSize: 0x10 } - - { offsetInCU: 0x1A07, offset: 0x63222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x40F0, symBinAddr: 0x14FC0, symSize: 0x10 } - - { offsetInCU: 0x1A1B, offset: 0x63236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4100, symBinAddr: 0x14FD0, symSize: 0x10 } - - { offsetInCU: 0x1A2F, offset: 0x6324A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x4110, symBinAddr: 0x14FE0, symSize: 0x30 } - - { offsetInCU: 0x1A43, offset: 0x6325E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x4E60, symBinAddr: 0x15D30, symSize: 0x10 } - - { offsetInCU: 0x1A57, offset: 0x63272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x4E70, symBinAddr: 0x15D40, symSize: 0x10 } - - { offsetInCU: 0x1A6B, offset: 0x63286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4E80, symBinAddr: 0x15D50, symSize: 0x30 } - - { offsetInCU: 0x1A7F, offset: 0x6329A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4EB0, symBinAddr: 0x15D80, symSize: 0x10 } - - { offsetInCU: 0x1A93, offset: 0x632AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4EC0, symBinAddr: 0x15D90, symSize: 0x30 } - - { offsetInCU: 0x1AA7, offset: 0x632C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4EF0, symBinAddr: 0x15DC0, symSize: 0x10 } - - { offsetInCU: 0x1ABB, offset: 0x632D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4F00, symBinAddr: 0x15DD0, symSize: 0x30 } - - { offsetInCU: 0x1ACF, offset: 0x632EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x4F30, symBinAddr: 0x15E00, symSize: 0x30 } - - { offsetInCU: 0x1AE3, offset: 0x632FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4F60, symBinAddr: 0x15E30, symSize: 0x30 } - - { offsetInCU: 0x1AF7, offset: 0x63312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4F90, symBinAddr: 0x15E60, symSize: 0x30 } - - { offsetInCU: 0x1B0B, offset: 0x63326, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4FC0, symBinAddr: 0x15E90, symSize: 0x40 } - - { offsetInCU: 0x1B1F, offset: 0x6333A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x5000, symBinAddr: 0x15ED0, symSize: 0x30 } - - { offsetInCU: 0x1B33, offset: 0x6334E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x5030, symBinAddr: 0x15F00, symSize: 0x30 } - - { offsetInCU: 0x1B47, offset: 0x63362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x5060, symBinAddr: 0x15F30, symSize: 0x30 } - - { offsetInCU: 0x1B5B, offset: 0x63376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x5090, symBinAddr: 0x15F60, symSize: 0x30 } - - { offsetInCU: 0x1B6F, offset: 0x6338A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x50C0, symBinAddr: 0x15F90, symSize: 0x30 } - - { offsetInCU: 0x1B83, offset: 0x6339E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x50F0, symBinAddr: 0x15FC0, symSize: 0x30 } - - { offsetInCU: 0x1B97, offset: 0x633B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x5120, symBinAddr: 0x15FF0, symSize: 0x30 } - - { offsetInCU: 0x1BAB, offset: 0x633C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x5150, symBinAddr: 0x16020, symSize: 0x30 } - - { offsetInCU: 0x1BBF, offset: 0x633DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x5180, symBinAddr: 0x16050, symSize: 0x10 } - - { offsetInCU: 0x1BD3, offset: 0x633EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x5190, symBinAddr: 0x16060, symSize: 0x80 } - - { offsetInCU: 0x1BE7, offset: 0x63402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x5210, symBinAddr: 0x160E0, symSize: 0xD0 } - - { offsetInCU: 0x1BFB, offset: 0x63416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x52E0, symBinAddr: 0x161B0, symSize: 0x10 } - - { offsetInCU: 0x1C0F, offset: 0x6342A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x52F0, symBinAddr: 0x161C0, symSize: 0x10 } - - { offsetInCU: 0x1C23, offset: 0x6343E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x5300, symBinAddr: 0x161D0, symSize: 0x10 } - - { offsetInCU: 0x1C37, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x5310, symBinAddr: 0x161E0, symSize: 0x10 } - - { offsetInCU: 0x1C4B, offset: 0x63466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x5320, symBinAddr: 0x161F0, symSize: 0x30 } - - { offsetInCU: 0x1C5F, offset: 0x6347A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x5350, symBinAddr: 0x16220, symSize: 0x40 } - - { offsetInCU: 0x1C73, offset: 0x6348E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x5390, symBinAddr: 0x16260, symSize: 0x70 } - - { offsetInCU: 0x1C87, offset: 0x634A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5400, symBinAddr: 0x162D0, symSize: 0x20 } - - { offsetInCU: 0x1C9B, offset: 0x634B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x5420, symBinAddr: 0x162F0, symSize: 0x50 } - - { offsetInCU: 0x1CAF, offset: 0x634CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x5470, symBinAddr: 0x16340, symSize: 0x40 } - - { offsetInCU: 0x1CC3, offset: 0x634DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x54B0, symBinAddr: 0x16380, symSize: 0x40 } - - { offsetInCU: 0x1CD7, offset: 0x634F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x54F0, symBinAddr: 0x163C0, symSize: 0x10 } - - { offsetInCU: 0x1CEB, offset: 0x63506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x5500, symBinAddr: 0x163D0, symSize: 0x40 } - - { offsetInCU: 0x1CFF, offset: 0x6351A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5540, symBinAddr: 0x16410, symSize: 0x80 } - - { offsetInCU: 0x1D13, offset: 0x6352E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x55C0, symBinAddr: 0x16490, symSize: 0xB0 } - - { offsetInCU: 0x1D27, offset: 0x63542, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5670, symBinAddr: 0x16540, symSize: 0x30 } - - { offsetInCU: 0x1D3B, offset: 0x63556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x56A0, symBinAddr: 0x16570, symSize: 0x80 } - - { offsetInCU: 0x1D4F, offset: 0x6356A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5720, symBinAddr: 0x165F0, symSize: 0x40 } - - { offsetInCU: 0x1D63, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5760, symBinAddr: 0x16630, symSize: 0x50 } - - { offsetInCU: 0x1D77, offset: 0x63592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x57B0, symBinAddr: 0x16680, symSize: 0x10 } - - { offsetInCU: 0x1D8B, offset: 0x635A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x57C0, symBinAddr: 0x16690, symSize: 0x30 } - - { offsetInCU: 0x1D9F, offset: 0x635BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x57F0, symBinAddr: 0x166C0, symSize: 0x40 } - - { offsetInCU: 0x1DB3, offset: 0x635CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5830, symBinAddr: 0x16700, symSize: 0x60 } - - { offsetInCU: 0x1DC7, offset: 0x635E2, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5890, symBinAddr: 0x16760, symSize: 0x20 } - - { offsetInCU: 0x1DDB, offset: 0x635F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x58B0, symBinAddr: 0x16780, symSize: 0x50 } - - { offsetInCU: 0x1DEF, offset: 0x6360A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5900, symBinAddr: 0x167D0, symSize: 0x40 } - - { offsetInCU: 0x1E03, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x5940, symBinAddr: 0x16810, symSize: 0x50 } - - { offsetInCU: 0x1E17, offset: 0x63632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5990, symBinAddr: 0x16860, symSize: 0x10 } - - { offsetInCU: 0x1E2B, offset: 0x63646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x59A0, symBinAddr: 0x16870, symSize: 0x50 } - - { offsetInCU: 0x1E3F, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x59F0, symBinAddr: 0x168C0, symSize: 0xE0 } - - { offsetInCU: 0x1E53, offset: 0x6366E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5AD0, symBinAddr: 0x169A0, symSize: 0x110 } - - { offsetInCU: 0x1E67, offset: 0x63682, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5BE0, symBinAddr: 0x16AB0, symSize: 0x50 } - - { offsetInCU: 0x1E7B, offset: 0x63696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5C30, symBinAddr: 0x16B00, symSize: 0xD0 } - - { offsetInCU: 0x1E8F, offset: 0x636AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x5D00, symBinAddr: 0x16BD0, symSize: 0x40 } - - { offsetInCU: 0x1EA3, offset: 0x636BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x5D40, symBinAddr: 0x16C10, symSize: 0x60 } - - { offsetInCU: 0x1EB7, offset: 0x636D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x5DA0, symBinAddr: 0x16C70, symSize: 0x10 } - - { offsetInCU: 0x1ECB, offset: 0x636E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x5DB0, symBinAddr: 0x16C80, symSize: 0x60 } - - { offsetInCU: 0x1EDF, offset: 0x636FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5E10, symBinAddr: 0x16CE0, symSize: 0x110 } - - { offsetInCU: 0x1EF3, offset: 0x6370E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x5F20, symBinAddr: 0x16DF0, symSize: 0x160 } - - { offsetInCU: 0x1F07, offset: 0x63722, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x6080, symBinAddr: 0x16F50, symSize: 0x10 } - - { offsetInCU: 0x1F1B, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x6090, symBinAddr: 0x16F60, symSize: 0x100 } - - { offsetInCU: 0x1F2F, offset: 0x6374A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x6190, symBinAddr: 0x17060, symSize: 0x40 } - - { offsetInCU: 0x1F43, offset: 0x6375E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x61D0, symBinAddr: 0x170A0, symSize: 0x70 } - - { offsetInCU: 0x1F57, offset: 0x63772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x6240, symBinAddr: 0x17110, symSize: 0x10 } - - { offsetInCU: 0x1F6B, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x6250, symBinAddr: 0x17120, symSize: 0x10 } - - { offsetInCU: 0x1F7F, offset: 0x6379A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x6260, symBinAddr: 0x17130, symSize: 0x30 } - - { offsetInCU: 0x1F93, offset: 0x637AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x6290, symBinAddr: 0x17160, symSize: 0x10 } - - { offsetInCU: 0x1FA7, offset: 0x637C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x62A0, symBinAddr: 0x17170, symSize: 0x30 } - - { offsetInCU: 0x1FBB, offset: 0x637D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x62D0, symBinAddr: 0x171A0, symSize: 0x10 } - - { offsetInCU: 0x1FCF, offset: 0x637EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x62E0, symBinAddr: 0x171B0, symSize: 0x30 } - - { offsetInCU: 0x1FE3, offset: 0x637FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7260, symBinAddr: 0x18130, symSize: 0x30 } - - { offsetInCU: 0x1FF7, offset: 0x63812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x7290, symBinAddr: 0x18160, symSize: 0x30 } - - { offsetInCU: 0x200B, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x72C0, symBinAddr: 0x18190, symSize: 0x30 } - - { offsetInCU: 0x201F, offset: 0x6383A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7B60, symBinAddr: 0x18A30, symSize: 0x30 } - - { offsetInCU: 0x2033, offset: 0x6384E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7DB0, symBinAddr: 0x18C80, symSize: 0x30 } - - { offsetInCU: 0x2047, offset: 0x63862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x88A0, symBinAddr: 0x19770, symSize: 0x30 } - - { offsetInCU: 0x205B, offset: 0x63876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x88D0, symBinAddr: 0x197A0, symSize: 0x30 } - - { offsetInCU: 0x206F, offset: 0x6388A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8BA0, symBinAddr: 0x19A70, symSize: 0x30 } - - { offsetInCU: 0x2083, offset: 0x6389E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x19AA0, symSize: 0x30 } - - { offsetInCU: 0x2097, offset: 0x638B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x8C00, symBinAddr: 0x19AD0, symSize: 0x30 } - - { offsetInCU: 0x20AB, offset: 0x638C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x8C90, symBinAddr: 0x19B60, symSize: 0x30 } - - { offsetInCU: 0x20BF, offset: 0x638DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8CC0, symBinAddr: 0x19B90, symSize: 0x80 } - - { offsetInCU: 0x20D3, offset: 0x638EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8D40, symBinAddr: 0x19C10, symSize: 0xD0 } - - { offsetInCU: 0x20E7, offset: 0x63902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8E10, symBinAddr: 0x19CE0, symSize: 0x10 } - - { offsetInCU: 0x20FB, offset: 0x63916, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8E20, symBinAddr: 0x19CF0, symSize: 0x10 } - - { offsetInCU: 0x210F, offset: 0x6392A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8E30, symBinAddr: 0x19D00, symSize: 0x80 } - - { offsetInCU: 0x2123, offset: 0x6393E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8EB0, symBinAddr: 0x19D80, symSize: 0xD0 } - - { offsetInCU: 0x2137, offset: 0x63952, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8F80, symBinAddr: 0x19E50, symSize: 0x10 } - - { offsetInCU: 0x214B, offset: 0x63966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8F90, symBinAddr: 0x19E60, symSize: 0x10 } - - { offsetInCU: 0x215F, offset: 0x6397A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8FA0, symBinAddr: 0x19E70, symSize: 0x80 } - - { offsetInCU: 0x2173, offset: 0x6398E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9020, symBinAddr: 0x19EF0, symSize: 0xD0 } - - { offsetInCU: 0x2187, offset: 0x639A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x90F0, symBinAddr: 0x19FC0, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x639B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9100, symBinAddr: 0x19FD0, symSize: 0x10 } - - { offsetInCU: 0x21AF, offset: 0x639CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x9110, symBinAddr: 0x19FE0, symSize: 0x10 } - - { offsetInCU: 0x21C3, offset: 0x639DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9120, symBinAddr: 0x19FF0, symSize: 0x10 } - - { offsetInCU: 0x21D7, offset: 0x639F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9130, symBinAddr: 0x1A000, symSize: 0x80 } - - { offsetInCU: 0x21EB, offset: 0x63A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x91B0, symBinAddr: 0x1A080, symSize: 0xD0 } - - { offsetInCU: 0x21FF, offset: 0x63A1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9280, symBinAddr: 0x1A150, symSize: 0x10 } - - { offsetInCU: 0x2213, offset: 0x63A2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9290, symBinAddr: 0x1A160, symSize: 0x10 } - - { offsetInCU: 0x2227, offset: 0x63A42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x92C0, symBinAddr: 0x1A190, symSize: 0x10 } - - { offsetInCU: 0x223B, offset: 0x63A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x92D0, symBinAddr: 0x1A1A0, symSize: 0x10 } - - { offsetInCU: 0x224F, offset: 0x63A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x92E0, symBinAddr: 0x1A1B0, symSize: 0x40 } - - { offsetInCU: 0x2263, offset: 0x63A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x9320, symBinAddr: 0x1A1F0, symSize: 0x80 } - - { offsetInCU: 0x2277, offset: 0x63A92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x93A0, symBinAddr: 0x1A270, symSize: 0xC0 } - - { offsetInCU: 0x228B, offset: 0x63AA6, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9460, symBinAddr: 0x1A330, symSize: 0x40 } - - { offsetInCU: 0x229F, offset: 0x63ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x94A0, symBinAddr: 0x1A370, symSize: 0x90 } - - { offsetInCU: 0x22B3, offset: 0x63ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x9530, symBinAddr: 0x1A400, symSize: 0x40 } - - { offsetInCU: 0x22C7, offset: 0x63AE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x9570, symBinAddr: 0x1A440, symSize: 0x50 } - - { offsetInCU: 0x22DB, offset: 0x63AF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x95C0, symBinAddr: 0x1A490, symSize: 0x10 } - - { offsetInCU: 0x22EF, offset: 0x63B0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x95D0, symBinAddr: 0x1A4A0, symSize: 0x40 } - - { offsetInCU: 0x2303, offset: 0x63B1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x9610, symBinAddr: 0x1A4E0, symSize: 0x80 } - - { offsetInCU: 0x2317, offset: 0x63B32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x9690, symBinAddr: 0x1A560, symSize: 0xA0 } - - { offsetInCU: 0x232B, offset: 0x63B46, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9730, symBinAddr: 0x1A600, symSize: 0x30 } - - { offsetInCU: 0x233F, offset: 0x63B5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x9760, symBinAddr: 0x1A630, symSize: 0x80 } - - { offsetInCU: 0x2353, offset: 0x63B6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x97E0, symBinAddr: 0x1A6B0, symSize: 0x40 } - - { offsetInCU: 0x2367, offset: 0x63B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9820, symBinAddr: 0x1A6F0, symSize: 0x50 } - - { offsetInCU: 0x237B, offset: 0x63B96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x9870, symBinAddr: 0x1A740, symSize: 0x10 } - - { offsetInCU: 0x238F, offset: 0x63BAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x9880, symBinAddr: 0x1A750, symSize: 0x40 } - - { offsetInCU: 0x23A3, offset: 0x63BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x98C0, symBinAddr: 0x1A790, symSize: 0x80 } - - { offsetInCU: 0x23B7, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9940, symBinAddr: 0x1A810, symSize: 0xB0 } - - { offsetInCU: 0x23CB, offset: 0x63BE6, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x99F0, symBinAddr: 0x1A8C0, symSize: 0x30 } - - { offsetInCU: 0x23DF, offset: 0x63BFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x9A20, symBinAddr: 0x1A8F0, symSize: 0x80 } - - { offsetInCU: 0x23F3, offset: 0x63C0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9AA0, symBinAddr: 0x1A970, symSize: 0x40 } - - { offsetInCU: 0x2407, offset: 0x63C22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x9AE0, symBinAddr: 0x1A9B0, symSize: 0x50 } - - { offsetInCU: 0x241B, offset: 0x63C36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9B30, symBinAddr: 0x1AA00, symSize: 0x10 } - - { offsetInCU: 0x242F, offset: 0x63C4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B40, symBinAddr: 0x1AA10, symSize: 0x10 } - - { offsetInCU: 0x2443, offset: 0x63C5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9B50, symBinAddr: 0x1AA20, symSize: 0x30 } - - { offsetInCU: 0x2457, offset: 0x63C72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B80, symBinAddr: 0x1AA50, symSize: 0x10 } - - { offsetInCU: 0x246B, offset: 0x63C86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9B90, symBinAddr: 0x1AA60, symSize: 0x30 } - - { offsetInCU: 0x247F, offset: 0x63C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9BC0, symBinAddr: 0x1AA90, symSize: 0x10 } - - { offsetInCU: 0x2493, offset: 0x63CAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9BD0, symBinAddr: 0x1AAA0, symSize: 0x30 } - - { offsetInCU: 0x24A7, offset: 0x63CC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9C00, symBinAddr: 0x1AAD0, symSize: 0x10 } - - { offsetInCU: 0x24BB, offset: 0x63CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9C10, symBinAddr: 0x1AAE0, symSize: 0x30 } - - { offsetInCU: 0x24CF, offset: 0x63CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9C40, symBinAddr: 0x1AB10, symSize: 0x10 } - - { offsetInCU: 0x24E3, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9C50, symBinAddr: 0x1AB20, symSize: 0x30 } - - { offsetInCU: 0x24F7, offset: 0x63D12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C80, symBinAddr: 0x1AB50, symSize: 0x10 } - - { offsetInCU: 0x250B, offset: 0x63D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C90, symBinAddr: 0x1AB60, symSize: 0x30 } - - { offsetInCU: 0x251F, offset: 0x63D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CC0, symBinAddr: 0x1AB90, symSize: 0x10 } - - { offsetInCU: 0x2533, offset: 0x63D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9CD0, symBinAddr: 0x1ABA0, symSize: 0x30 } - - { offsetInCU: 0x2547, offset: 0x63D62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D00, symBinAddr: 0x1ABD0, symSize: 0x10 } - - { offsetInCU: 0x255B, offset: 0x63D76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D10, symBinAddr: 0x1ABE0, symSize: 0x30 } - - { offsetInCU: 0x256F, offset: 0x63D8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D40, symBinAddr: 0x1AC10, symSize: 0x10 } - - { offsetInCU: 0x2583, offset: 0x63D9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9D50, symBinAddr: 0x1AC20, symSize: 0x30 } - - { offsetInCU: 0x2597, offset: 0x63DB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D80, symBinAddr: 0x1AC50, symSize: 0x10 } - - { offsetInCU: 0x25AB, offset: 0x63DC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x1AC60, symSize: 0x30 } - - { offsetInCU: 0x25BF, offset: 0x63DDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9DC0, symBinAddr: 0x1AC90, symSize: 0x10 } - - { offsetInCU: 0x25D3, offset: 0x63DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x1ACA0, symSize: 0x30 } - - { offsetInCU: 0x25E7, offset: 0x63E02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E00, symBinAddr: 0x1ACD0, symSize: 0x10 } - - { offsetInCU: 0x25FB, offset: 0x63E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E10, symBinAddr: 0x1ACE0, symSize: 0x30 } - - { offsetInCU: 0x260F, offset: 0x63E2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E40, symBinAddr: 0x1AD10, symSize: 0x10 } - - { offsetInCU: 0x2623, offset: 0x63E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9E50, symBinAddr: 0x1AD20, symSize: 0x30 } - - { offsetInCU: 0x2637, offset: 0x63E52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E80, symBinAddr: 0x1AD50, symSize: 0x10 } - - { offsetInCU: 0x264B, offset: 0x63E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E90, symBinAddr: 0x1AD60, symSize: 0x30 } - - { offsetInCU: 0x265F, offset: 0x63E7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EC0, symBinAddr: 0x1AD90, symSize: 0x10 } - - { offsetInCU: 0x2673, offset: 0x63E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9ED0, symBinAddr: 0x1ADA0, symSize: 0x30 } - - { offsetInCU: 0x2687, offset: 0x63EA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9F00, symBinAddr: 0x1ADD0, symSize: 0x30 } - - { offsetInCU: 0x269B, offset: 0x63EB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9F30, symBinAddr: 0x1AE00, symSize: 0x30 } - - { offsetInCU: 0x26AF, offset: 0x63ECA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9F60, symBinAddr: 0x1AE30, symSize: 0x30 } - - { offsetInCU: 0x26C3, offset: 0x63EDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9F90, symBinAddr: 0x1AE60, symSize: 0x80 } - - { offsetInCU: 0x26D7, offset: 0x63EF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA010, symBinAddr: 0x1AEE0, symSize: 0xD0 } - - { offsetInCU: 0x26EB, offset: 0x63F06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA0E0, symBinAddr: 0x1AFB0, symSize: 0x10 } - - { offsetInCU: 0x26FF, offset: 0x63F1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA0F0, symBinAddr: 0x1AFC0, symSize: 0x10 } - - { offsetInCU: 0x2713, offset: 0x63F2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA270, symBinAddr: 0x1B140, symSize: 0x10 } - - { offsetInCU: 0x2727, offset: 0x63F42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA280, symBinAddr: 0x1B150, symSize: 0x10 } - - { offsetInCU: 0x273B, offset: 0x63F56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0xA290, symBinAddr: 0x1B160, symSize: 0x80 } - - { offsetInCU: 0x274F, offset: 0x63F6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA310, symBinAddr: 0x1B1E0, symSize: 0xD0 } - - { offsetInCU: 0x2763, offset: 0x63F7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA3E0, symBinAddr: 0x1B2B0, symSize: 0x10 } - - { offsetInCU: 0x2777, offset: 0x63F92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA3F0, symBinAddr: 0x1B2C0, symSize: 0x10 } - - { offsetInCU: 0x278B, offset: 0x63FA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA400, symBinAddr: 0x1B2D0, symSize: 0x10 } - - { offsetInCU: 0x279F, offset: 0x63FBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA410, symBinAddr: 0x1B2E0, symSize: 0x30 } - - { offsetInCU: 0x27B3, offset: 0x63FCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA440, symBinAddr: 0x1B310, symSize: 0x10 } - - { offsetInCU: 0x27C7, offset: 0x63FE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA450, symBinAddr: 0x1B320, symSize: 0x30 } - - { offsetInCU: 0x27DB, offset: 0x63FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA480, symBinAddr: 0x1B350, symSize: 0x10 } - - { offsetInCU: 0x27EF, offset: 0x6400A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA490, symBinAddr: 0x1B360, symSize: 0x30 } - - { offsetInCU: 0x2803, offset: 0x6401E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA4C0, symBinAddr: 0x1B390, symSize: 0x10 } - - { offsetInCU: 0x2817, offset: 0x64032, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA4D0, symBinAddr: 0x1B3A0, symSize: 0x30 } - - { offsetInCU: 0x282B, offset: 0x64046, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA500, symBinAddr: 0x1B3D0, symSize: 0x10 } - - { offsetInCU: 0x283F, offset: 0x6405A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA510, symBinAddr: 0x1B3E0, symSize: 0x30 } - - { offsetInCU: 0x2853, offset: 0x6406E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA540, symBinAddr: 0x1B410, symSize: 0x10 } - - { offsetInCU: 0x2867, offset: 0x64082, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA550, symBinAddr: 0x1B420, symSize: 0x30 } - - { offsetInCU: 0x287B, offset: 0x64096, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA580, symBinAddr: 0x1B450, symSize: 0x10 } - - { offsetInCU: 0x288F, offset: 0x640AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA590, symBinAddr: 0x1B460, symSize: 0x30 } - - { offsetInCU: 0x28A3, offset: 0x640BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA5C0, symBinAddr: 0x1B490, symSize: 0x10 } - - { offsetInCU: 0x28B7, offset: 0x640D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA5D0, symBinAddr: 0x1B4A0, symSize: 0x30 } - - { offsetInCU: 0x28CB, offset: 0x640E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA600, symBinAddr: 0x1B4D0, symSize: 0x10 } - - { offsetInCU: 0x28DF, offset: 0x640FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA610, symBinAddr: 0x1B4E0, symSize: 0x30 } - - { offsetInCU: 0x292F, offset: 0x6414A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x140, symBinAddr: 0x11060, symSize: 0x20 } - - { offsetInCU: 0x294B, offset: 0x64166, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x160, symBinAddr: 0x11080, symSize: 0x20 } - - { offsetInCU: 0x2994, offset: 0x641AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1680, symBinAddr: 0x125A0, symSize: 0x30 } - - { offsetInCU: 0x2A37, offset: 0x64252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x12620, symSize: 0x20 } - - { offsetInCU: 0x2A53, offset: 0x6426E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x12640, symSize: 0x20 } - - { offsetInCU: 0x2A75, offset: 0x64290, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x12750, symSize: 0x20 } - - { offsetInCU: 0x2A91, offset: 0x642AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x12770, symSize: 0x20 } - - { offsetInCU: 0x2AB3, offset: 0x642CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1950, symBinAddr: 0x12870, symSize: 0x20 } - - { offsetInCU: 0x2ACF, offset: 0x642EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1970, symBinAddr: 0x12890, symSize: 0x20 } - - { offsetInCU: 0x2AF1, offset: 0x6430C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x12980, symSize: 0x20 } - - { offsetInCU: 0x2B0D, offset: 0x64328, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x129A0, symSize: 0x20 } - - { offsetInCU: 0x2B2F, offset: 0x6434A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x12AD0, symSize: 0x20 } - - { offsetInCU: 0x2B4B, offset: 0x64366, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1BD0, symBinAddr: 0x12AF0, symSize: 0x20 } - - { offsetInCU: 0x2B94, offset: 0x643AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D30, symBinAddr: 0x12C50, symSize: 0x40 } - - { offsetInCU: 0x2C37, offset: 0x64452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DC0, symBinAddr: 0x12CE0, symSize: 0x20 } - - { offsetInCU: 0x2C53, offset: 0x6446E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DE0, symBinAddr: 0x12D00, symSize: 0x20 } - - { offsetInCU: 0x2C75, offset: 0x64490, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EA0, symBinAddr: 0x12DC0, symSize: 0x20 } - - { offsetInCU: 0x2C91, offset: 0x644AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1EC0, symBinAddr: 0x12DE0, symSize: 0x20 } - - { offsetInCU: 0x2CB3, offset: 0x644CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x12EF0, symSize: 0x20 } - - { offsetInCU: 0x2CCF, offset: 0x644EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x12F10, symSize: 0x20 } - - { offsetInCU: 0x2CF1, offset: 0x6450C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2180, symBinAddr: 0x130A0, symSize: 0x20 } - - { offsetInCU: 0x2D0D, offset: 0x64528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x21A0, symBinAddr: 0x130C0, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x646D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1B830, symSize: 0xA0 } - - { offsetInCU: 0xA5, offset: 0x64751, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1B830, symSize: 0xA0 } - - { offsetInCU: 0xFE, offset: 0x647AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0xA0, symBinAddr: 0x1B8D0, symSize: 0x40 } - - { offsetInCU: 0x11C, offset: 0x647C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xE0, symBinAddr: 0x1B910, symSize: 0x50 } - - { offsetInCU: 0x156, offset: 0x64802, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x130, symBinAddr: 0x1B960, symSize: 0x10 } - - { offsetInCU: 0x174, offset: 0x64820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x1B970, symSize: 0x10 } - - { offsetInCU: 0x19F, offset: 0x6484B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x150, symBinAddr: 0x1B980, symSize: 0x20 } - - { offsetInCU: 0x1BD, offset: 0x64869, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x170, symBinAddr: 0x1B9A0, symSize: 0x20 } - - { offsetInCU: 0x1F7, offset: 0x648A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x190, symBinAddr: 0x1B9C0, symSize: 0x20 } - - { offsetInCU: 0x225, offset: 0x648D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x1B0, symBinAddr: 0x1B9E0, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x648FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x1C0, symBinAddr: 0x1B9F0, symSize: 0x30 } - - { offsetInCU: 0x26E, offset: 0x6491A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1F0, symBinAddr: 0x1BA20, symSize: 0x30 } - - { offsetInCU: 0x2AC, offset: 0x64958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x220, symBinAddr: 0x1BA50, symSize: 0x20 } - - { offsetInCU: 0x2DA, offset: 0x64986, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x240, symBinAddr: 0x1BA70, symSize: 0x10 } - - { offsetInCU: 0x305, offset: 0x649B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x250, symBinAddr: 0x1BA80, symSize: 0x10 } - - { offsetInCU: 0x323, offset: 0x649CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x260, symBinAddr: 0x1BA90, symSize: 0x10 } - - { offsetInCU: 0x361, offset: 0x64A0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x270, symBinAddr: 0x1BAA0, symSize: 0x20 } - - { offsetInCU: 0x38F, offset: 0x64A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1BAC0, symSize: 0x10 } - - { offsetInCU: 0x3BA, offset: 0x64A66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x2A0, symBinAddr: 0x1BAD0, symSize: 0x10 } - - { offsetInCU: 0x3D8, offset: 0x64A84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x2B0, symBinAddr: 0x1BAE0, symSize: 0x10 } - - { offsetInCU: 0x416, offset: 0x64AC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x2C0, symBinAddr: 0x1BAF0, symSize: 0x20 } - - { offsetInCU: 0x444, offset: 0x64AF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2E0, symBinAddr: 0x1BB10, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x64B1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2F0, symBinAddr: 0x1BB20, symSize: 0x30 } - - { offsetInCU: 0x48D, offset: 0x64B39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x320, symBinAddr: 0x1BB50, symSize: 0x30 } - - { offsetInCU: 0x4CB, offset: 0x64B77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x350, symBinAddr: 0x1BB80, symSize: 0x20 } - - { offsetInCU: 0x4F9, offset: 0x64BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x370, symBinAddr: 0x1BBA0, symSize: 0x10 } - - { offsetInCU: 0x524, offset: 0x64BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x380, symBinAddr: 0x1BBB0, symSize: 0x30 } - - { offsetInCU: 0x542, offset: 0x64BEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x3B0, symBinAddr: 0x1BBE0, symSize: 0x30 } - - { offsetInCU: 0x580, offset: 0x64C2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3E0, symBinAddr: 0x1BC10, symSize: 0x20 } - - { offsetInCU: 0x5AE, offset: 0x64C5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x400, symBinAddr: 0x1BC30, symSize: 0x10 } - - { offsetInCU: 0x5D9, offset: 0x64C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x410, symBinAddr: 0x1BC40, symSize: 0x10 } - - { offsetInCU: 0x5F7, offset: 0x64CA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x420, symBinAddr: 0x1BC50, symSize: 0x10 } - - { offsetInCU: 0x635, offset: 0x64CE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x430, symBinAddr: 0x1BC60, symSize: 0x20 } - - { offsetInCU: 0x663, offset: 0x64D0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x450, symBinAddr: 0x1BC80, symSize: 0x10 } - - { offsetInCU: 0x68E, offset: 0x64D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x460, symBinAddr: 0x1BC90, symSize: 0x10 } - - { offsetInCU: 0x6AC, offset: 0x64D58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x470, symBinAddr: 0x1BCA0, symSize: 0x10 } - - { offsetInCU: 0x6EA, offset: 0x64D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x480, symBinAddr: 0x1BCB0, symSize: 0x20 } - - { offsetInCU: 0x718, offset: 0x64DC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x4A0, symBinAddr: 0x1BCD0, symSize: 0x10 } - - { offsetInCU: 0x744, offset: 0x64DF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x4B0, symBinAddr: 0x1BCE0, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x64E04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x4E0, symBinAddr: 0x1BD10, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x64E18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x520, symBinAddr: 0x1BD50, symSize: 0xD0 } - - { offsetInCU: 0x780, offset: 0x64E2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x5F0, symBinAddr: 0x1BE20, symSize: 0x100 } - - { offsetInCU: 0x794, offset: 0x64E40, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6F0, symBinAddr: 0x1BF20, symSize: 0x50 } - - { offsetInCU: 0x7A8, offset: 0x64E54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x740, symBinAddr: 0x1BF70, symSize: 0xD0 } - - { offsetInCU: 0x7BC, offset: 0x64E68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x810, symBinAddr: 0x1C040, symSize: 0x40 } - - { offsetInCU: 0x7D0, offset: 0x64E7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x850, symBinAddr: 0x1C080, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64E90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x8B0, symBinAddr: 0x1C0E0, symSize: 0xA } - - { offsetInCU: 0x52, offset: 0x65072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1C0F0, symSize: 0x350 } - - { offsetInCU: 0x7D, offset: 0x6509D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x700, symBinAddr: 0x1C7F0, symSize: 0x30 } - - { offsetInCU: 0x99, offset: 0x650B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x990, symBinAddr: 0x1CA80, symSize: 0x50 } - - { offsetInCU: 0xD1, offset: 0x650F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1C440, symSize: 0x310 } - - { offsetInCU: 0xFC, offset: 0x6511C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x960, symBinAddr: 0x1CA50, symSize: 0x30 } - - { offsetInCU: 0x118, offset: 0x65138, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x9E0, symBinAddr: 0x1CAD0, symSize: 0x50 } - - { offsetInCU: 0x144, offset: 0x65164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1CB20, symSize: 0x120 } - - { offsetInCU: 0x174, offset: 0x65194, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1CC40, symSize: 0x80 } - - { offsetInCU: 0x188, offset: 0x651A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1CCC0, symSize: 0xD0 } - - { offsetInCU: 0x19C, offset: 0x651BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1CD90, symSize: 0x10 } - - { offsetInCU: 0x1B0, offset: 0x651D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1CDA0, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x651E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1CDB0, symSize: 0x80 } - - { offsetInCU: 0x1D8, offset: 0x651F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1CE30, symSize: 0xD0 } - - { offsetInCU: 0x1EC, offset: 0x6520C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1CF00, symSize: 0x10 } - - { offsetInCU: 0x200, offset: 0x65220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1CF10, symSize: 0x10 } - - { offsetInCU: 0x214, offset: 0x65234, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1CF20, symSize: 0x10 } - - { offsetInCU: 0x228, offset: 0x65248, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1CF30, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x6525C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1CF40, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x65270, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1CF50, symSize: 0x30 } - - { offsetInCU: 0x264, offset: 0x65284, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1CF80, symSize: 0x10 } - - { offsetInCU: 0x278, offset: 0x65298, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1CF90, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x653F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1CFE0, symSize: 0x2B0 } - - { offsetInCU: 0x7C, offset: 0x65423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1D290, symSize: 0x20 } - - { offsetInCU: 0xA9, offset: 0x65450, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC9printLogs33_D78766567F29622279F8000760588BB6LL3msgySS_tFTf4nd_n', symObjAddr: 0x6D0, symBinAddr: 0x1D6B0, symSize: 0xC0 } - - { offsetInCU: 0x1DB, offset: 0x65582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1D2B0, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x655D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1D2D0, symSize: 0x90 } - - { offsetInCU: 0x284, offset: 0x6562B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1D360, symSize: 0x10 } - - { offsetInCU: 0x2AD, offset: 0x65654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1D370, symSize: 0x10 } - - { offsetInCU: 0x2D6, offset: 0x6567D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1D380, symSize: 0x10 } - - { offsetInCU: 0x2FF, offset: 0x656A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1D420, symSize: 0x10 } - - { offsetInCU: 0x351, offset: 0x656F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1D430, symSize: 0x80 } - - { offsetInCU: 0x3A9, offset: 0x65750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1D4B0, symSize: 0x60 } - - { offsetInCU: 0x3EA, offset: 0x65791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1D510, symSize: 0x90 } - - { offsetInCU: 0x446, offset: 0x657ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1D5A0, symSize: 0x80 } - - { offsetInCU: 0x494, offset: 0x6583B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1D620, symSize: 0x70 } - - { offsetInCU: 0x4C6, offset: 0x6586D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1D690, symSize: 0x10 } - - { offsetInCU: 0x4E2, offset: 0x65889, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6C0, symBinAddr: 0x1D6A0, symSize: 0x10 } - - { offsetInCU: 0x567, offset: 0x6590E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x790, symBinAddr: 0x1D770, symSize: 0x910 } - - { offsetInCU: 0x678, offset: 0x65A1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0x10A0, symBinAddr: 0x1E080, symSize: 0x70 } - - { offsetInCU: 0x6CD, offset: 0x65A74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1110, symBinAddr: 0x1E0F0, symSize: 0x2A0 } - - { offsetInCU: 0x7E5, offset: 0x65B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x13B0, symBinAddr: 0x1E390, symSize: 0x60 } - - { offsetInCU: 0x824, offset: 0x65BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0x1410, symBinAddr: 0x1E3F0, symSize: 0x60 } - - { offsetInCU: 0x863, offset: 0x65C0A, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1470, symBinAddr: 0x1E450, symSize: 0x20 } - - { offsetInCU: 0x877, offset: 0x65C1E, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1490, symBinAddr: 0x1E470, symSize: 0x20 } - - { offsetInCU: 0x88B, offset: 0x65C32, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1520, symBinAddr: 0x1E490, symSize: 0x40 } - - { offsetInCU: 0x89F, offset: 0x65C46, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1560, symBinAddr: 0x1E4D0, symSize: 0x20 } - - { offsetInCU: 0x8B3, offset: 0x65C5A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1580, symBinAddr: 0x1E4F0, symSize: 0x40 } - - { offsetInCU: 0x8C7, offset: 0x65C6E, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x15C0, symBinAddr: 0x1E530, symSize: 0x30 } - - { offsetInCU: 0x8DB, offset: 0x65C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x15F0, symBinAddr: 0x1E560, symSize: 0x260 } - - { offsetInCU: 0x8EF, offset: 0x65C96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1850, symBinAddr: 0x1E7C0, symSize: 0x30 } - - { offsetInCU: 0x903, offset: 0x65CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x1880, symBinAddr: 0x1E7F0, symSize: 0x260 } - - { offsetInCU: 0x917, offset: 0x65CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1AE0, symBinAddr: 0x1EA50, symSize: 0x25 } - - { offsetInCU: 0x4F, offset: 0x65F65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2A10, symBinAddr: 0x8FAC0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x65F7F, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2A18, symBinAddr: 0x8FAC8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65F8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1EAC0, symSize: 0x30 } - - { offsetInCU: 0xB3, offset: 0x65FC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1EAF0, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x65FFF, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1EB30, symSize: 0x30 } - - { offsetInCU: 0x114, offset: 0x6602A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1EB60, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x6607A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1EBA0, symSize: 0x30 } - - { offsetInCU: 0x18F, offset: 0x660A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x180, symBinAddr: 0x1EC00, symSize: 0x10 } - - { offsetInCU: 0x1B8, offset: 0x660CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0x1EC10, symSize: 0x30 } - - { offsetInCU: 0x1D3, offset: 0x660E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x1C0, symBinAddr: 0x1EC40, symSize: 0x10 } - - { offsetInCU: 0x202, offset: 0x66118, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x1D0, symBinAddr: 0x1EC50, symSize: 0x20 } - - { offsetInCU: 0x293, offset: 0x661A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x240, symBinAddr: 0x1ECC0, symSize: 0x10 } - - { offsetInCU: 0x2F3, offset: 0x66209, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2A0, symBinAddr: 0x1ED20, symSize: 0x20 } - - { offsetInCU: 0x36D, offset: 0x66283, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0x1ED90, symSize: 0x10 } - - { offsetInCU: 0x3F7, offset: 0x6630D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x450, symBinAddr: 0x1EED0, symSize: 0x40 } - - { offsetInCU: 0x414, offset: 0x6632A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x4B0, symBinAddr: 0x1EF30, symSize: 0x50 } - - { offsetInCU: 0x43B, offset: 0x66351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x520, symBinAddr: 0x1EFA0, symSize: 0x30 } - - { offsetInCU: 0x468, offset: 0x6637E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x550, symBinAddr: 0x1EFD0, symSize: 0x10 } - - { offsetInCU: 0x4DB, offset: 0x663F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x690, symBinAddr: 0x1F110, symSize: 0x40 } - - { offsetInCU: 0x4F8, offset: 0x6640E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x6D0, symBinAddr: 0x1F150, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x66435, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x720, symBinAddr: 0x1F1A0, symSize: 0x30 } - - { offsetInCU: 0x54C, offset: 0x66462, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x750, symBinAddr: 0x1F1D0, symSize: 0x10 } - - { offsetInCU: 0x577, offset: 0x6648D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x760, symBinAddr: 0x1F1E0, symSize: 0x30 } - - { offsetInCU: 0x594, offset: 0x664AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x790, symBinAddr: 0x1F210, symSize: 0x30 } - - { offsetInCU: 0x5BB, offset: 0x664D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x7C0, symBinAddr: 0x1F240, symSize: 0x30 } - - { offsetInCU: 0x612, offset: 0x66528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x840, symBinAddr: 0x1F2C0, symSize: 0x30 } - - { offsetInCU: 0x62F, offset: 0x66545, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x870, symBinAddr: 0x1F2F0, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x6656C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x8B0, symBinAddr: 0x1F330, symSize: 0x30 } - - { offsetInCU: 0x683, offset: 0x66599, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0x8E0, symBinAddr: 0x1F360, symSize: 0x70 } - - { offsetInCU: 0x72E, offset: 0x66644, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0x950, symBinAddr: 0x1F3D0, symSize: 0xA0 } - - { offsetInCU: 0x7AB, offset: 0x666C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9F0, symBinAddr: 0x1F470, symSize: 0xA0 } - - { offsetInCU: 0x80F, offset: 0x66725, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xC80, symBinAddr: 0x1F700, symSize: 0x60 } - - { offsetInCU: 0x839, offset: 0x6674F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xCE0, symBinAddr: 0x1F760, symSize: 0x30 } - - { offsetInCU: 0x85E, offset: 0x66774, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xD10, symBinAddr: 0x1F790, symSize: 0x180 } - - { offsetInCU: 0x913, offset: 0x66829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1F910, symSize: 0x10 } - - { offsetInCU: 0x960, offset: 0x66876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0xEA0, symBinAddr: 0x1F920, symSize: 0x70 } - - { offsetInCU: 0x9FC, offset: 0x66912, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0xF40, symBinAddr: 0x1F9C0, symSize: 0x80 } - - { offsetInCU: 0xB12, offset: 0x66A28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1900, symBinAddr: 0x20380, symSize: 0x220 } - - { offsetInCU: 0xBA3, offset: 0x66AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B70, symBinAddr: 0x205F0, symSize: 0x170 } - - { offsetInCU: 0xCA8, offset: 0x66BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x320, symBinAddr: 0x1EDA0, symSize: 0x80 } - - { offsetInCU: 0xCE0, offset: 0x66BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x3A0, symBinAddr: 0x1EE20, symSize: 0xB0 } - - { offsetInCU: 0xD20, offset: 0x66C36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x490, symBinAddr: 0x1EF10, symSize: 0x20 } - - { offsetInCU: 0xD34, offset: 0x66C4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x500, symBinAddr: 0x1EF80, symSize: 0x20 } - - { offsetInCU: 0xD48, offset: 0x66C5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x560, symBinAddr: 0x1EFE0, symSize: 0x80 } - - { offsetInCU: 0xD80, offset: 0x66C96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x5E0, symBinAddr: 0x1F060, symSize: 0xB0 } - - { offsetInCU: 0xDC0, offset: 0x66CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x7F0, symBinAddr: 0x1F270, symSize: 0x50 } - - { offsetInCU: 0xE24, offset: 0x66D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xA90, symBinAddr: 0x1F510, symSize: 0x1F0 } - - { offsetInCU: 0xE98, offset: 0x66DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1790, symBinAddr: 0x20210, symSize: 0x120 } - - { offsetInCU: 0xF78, offset: 0x66E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0xF10, symBinAddr: 0x1F990, symSize: 0x30 } - - { offsetInCU: 0x1067, offset: 0x66F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x18E0, symBinAddr: 0x20360, symSize: 0x20 } - - { offsetInCU: 0x10B7, offset: 0x66FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1FA40, symSize: 0x220 } - - { offsetInCU: 0x128D, offset: 0x671A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x11E0, symBinAddr: 0x1FC60, symSize: 0x10 } - - { offsetInCU: 0x12E4, offset: 0x671FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11F0, symBinAddr: 0x1FC70, symSize: 0x10 } - - { offsetInCU: 0x1332, offset: 0x67248, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1200, symBinAddr: 0x1FC80, symSize: 0x10 } - - { offsetInCU: 0x134A, offset: 0x67260, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1210, symBinAddr: 0x1FC90, symSize: 0xB0 } - - { offsetInCU: 0x13F0, offset: 0x67306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1300, symBinAddr: 0x1FD80, symSize: 0x10 } - - { offsetInCU: 0x1408, offset: 0x6731E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26E0, symBinAddr: 0x21140, symSize: 0x70 } - - { offsetInCU: 0x14E5, offset: 0x673FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x12C0, symBinAddr: 0x1FD40, symSize: 0x40 } - - { offsetInCU: 0x1520, offset: 0x67436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1330, symBinAddr: 0x1FDB0, symSize: 0x90 } - - { offsetInCU: 0x1617, offset: 0x6752D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x1480, symBinAddr: 0x1FF00, symSize: 0x1D0 } - - { offsetInCU: 0x1CC0, offset: 0x67BD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x1650, symBinAddr: 0x200D0, symSize: 0x130 } - - { offsetInCU: 0x1DBD, offset: 0x67CD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x20200, symSize: 0x10 } - - { offsetInCU: 0x1DD1, offset: 0x67CE7, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x18B0, symBinAddr: 0x20330, symSize: 0x30 } - - { offsetInCU: 0x1DE9, offset: 0x67CFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1B20, symBinAddr: 0x205A0, symSize: 0x30 } - - { offsetInCU: 0x1DFD, offset: 0x67D13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1B50, symBinAddr: 0x205D0, symSize: 0x20 } - - { offsetInCU: 0x1E11, offset: 0x67D27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1CE0, symBinAddr: 0x20760, symSize: 0x20 } - - { offsetInCU: 0x1E25, offset: 0x67D3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1D00, symBinAddr: 0x20780, symSize: 0x10 } - - { offsetInCU: 0x1E39, offset: 0x67D4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1D10, symBinAddr: 0x20790, symSize: 0x30 } - - { offsetInCU: 0x1E4D, offset: 0x67D63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D40, symBinAddr: 0x207C0, symSize: 0x10 } - - { offsetInCU: 0x1E61, offset: 0x67D77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D50, symBinAddr: 0x207D0, symSize: 0x30 } - - { offsetInCU: 0x1E75, offset: 0x67D8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwCP', symObjAddr: 0x1E90, symBinAddr: 0x20910, symSize: 0x60 } - - { offsetInCU: 0x1E89, offset: 0x67D9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1EF0, symBinAddr: 0x20970, symSize: 0x20 } - - { offsetInCU: 0x1E9D, offset: 0x67DB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1F10, symBinAddr: 0x20990, symSize: 0x20 } - - { offsetInCU: 0x1EB1, offset: 0x67DC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1F30, symBinAddr: 0x209B0, symSize: 0x20 } - - { offsetInCU: 0x1EC5, offset: 0x67DDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwcp', symObjAddr: 0x1F50, symBinAddr: 0x209D0, symSize: 0x60 } - - { offsetInCU: 0x1ED9, offset: 0x67DEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x1FB0, symBinAddr: 0x20A30, symSize: 0x70 } - - { offsetInCU: 0x1EED, offset: 0x67E03, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2020, symBinAddr: 0x20AA0, symSize: 0x20 } - - { offsetInCU: 0x1F01, offset: 0x67E17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x2040, symBinAddr: 0x20AC0, symSize: 0x40 } - - { offsetInCU: 0x1F15, offset: 0x67E2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x2080, symBinAddr: 0x20B00, symSize: 0x50 } - - { offsetInCU: 0x1F29, offset: 0x67E3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x20D0, symBinAddr: 0x20B50, symSize: 0x50 } - - { offsetInCU: 0x1F3D, offset: 0x67E53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x2120, symBinAddr: 0x20BA0, symSize: 0x10 } - - { offsetInCU: 0x1F51, offset: 0x67E67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2130, symBinAddr: 0x20BB0, symSize: 0x10 } - - { offsetInCU: 0x1F65, offset: 0x67E7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2140, symBinAddr: 0x20BC0, symSize: 0x10 } - - { offsetInCU: 0x1F79, offset: 0x67E8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x2150, symBinAddr: 0x20BD0, symSize: 0x10 } - - { offsetInCU: 0x1F8D, offset: 0x67EA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2340, symBinAddr: 0x20DA0, symSize: 0x80 } - - { offsetInCU: 0x1FA1, offset: 0x67EB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23C0, symBinAddr: 0x20E20, symSize: 0xD0 } - - { offsetInCU: 0x1FB5, offset: 0x67ECB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2490, symBinAddr: 0x20EF0, symSize: 0x10 } - - { offsetInCU: 0x1FC9, offset: 0x67EDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x24A0, symBinAddr: 0x20F00, symSize: 0x10 } - - { offsetInCU: 0x1FDD, offset: 0x67EF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x24B0, symBinAddr: 0x20F10, symSize: 0x80 } - - { offsetInCU: 0x1FF1, offset: 0x67F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2530, symBinAddr: 0x20F90, symSize: 0xD0 } - - { offsetInCU: 0x2005, offset: 0x67F1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x2600, symBinAddr: 0x21060, symSize: 0x10 } - - { offsetInCU: 0x2019, offset: 0x67F2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x2610, symBinAddr: 0x21070, symSize: 0x10 } - - { offsetInCU: 0x202D, offset: 0x67F43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2620, symBinAddr: 0x21080, symSize: 0x10 } - - { offsetInCU: 0x2041, offset: 0x67F57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2630, symBinAddr: 0x21090, symSize: 0x10 } - - { offsetInCU: 0x2060, offset: 0x67F76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2670, symBinAddr: 0x210D0, symSize: 0x20 } - - { offsetInCU: 0x2089, offset: 0x67F9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x2770, symBinAddr: 0x211D0, symSize: 0x10 } - - { offsetInCU: 0x209D, offset: 0x67FB3, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2780, symBinAddr: 0x211E0, symSize: 0x20 } - - { offsetInCU: 0x20B1, offset: 0x67FC7, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x27A0, symBinAddr: 0x21200, symSize: 0x10 } - - { offsetInCU: 0x20C5, offset: 0x67FDB, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2830, symBinAddr: 0x21210, symSize: 0x30 } - - { offsetInCU: 0x2147, offset: 0x6805D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1EA80, symSize: 0x10 } - - { offsetInCU: 0x2163, offset: 0x68079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1EA90, symSize: 0x10 } - - { offsetInCU: 0x217F, offset: 0x68095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1EAA0, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x680B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1EAB0, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x6854F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x213D0, symSize: 0x30 } - - { offsetInCU: 0x57, offset: 0x68563, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x21400, symSize: 0x80 } - - { offsetInCU: 0x6B, offset: 0x68577, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x21480, symSize: 0x130 } - - { offsetInCU: 0x86, offset: 0x68592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x215B0, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x685BB, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x215E0, symSize: 0x30 } - - { offsetInCU: 0xC3, offset: 0x685CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x21610, symSize: 0xC0 } - - { offsetInCU: 0xD7, offset: 0x685E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x216D0, symSize: 0x50 } - - { offsetInCU: 0xEB, offset: 0x685F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x21720, symSize: 0x50 } - - { offsetInCU: 0xFF, offset: 0x6860B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x21770, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x6861F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x21780, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x68633, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x217B0, symSize: 0x30 } - - { offsetInCU: 0x13B, offset: 0x68647, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x217E0, symSize: 0x60 } - - { offsetInCU: 0x14F, offset: 0x6865B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x21840, symSize: 0x80 } - - { offsetInCU: 0x163, offset: 0x6866F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x218C0, symSize: 0x60 } - - { offsetInCU: 0x177, offset: 0x68683, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x21920, symSize: 0x50 } - - { offsetInCU: 0x18B, offset: 0x68697, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x21970, symSize: 0x50 } - - { offsetInCU: 0x19F, offset: 0x686AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x219C0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x686CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x219D0, symSize: 0x100 } - - { offsetInCU: 0x20B, offset: 0x68717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x21E30, symSize: 0x10 } - - { offsetInCU: 0x25F, offset: 0x6876B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA70, symBinAddr: 0x21E40, symSize: 0x30 } - - { offsetInCU: 0x343, offset: 0x6884F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA0, symBinAddr: 0x21E70, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x688D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF0, symBinAddr: 0x21EC0, symSize: 0x10 } - - { offsetInCU: 0x404, offset: 0x68910, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB00, symBinAddr: 0x21ED0, symSize: 0x20 } - - { offsetInCU: 0x435, offset: 0x68941, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB20, symBinAddr: 0x21EF0, symSize: 0x10 } - - { offsetInCU: 0x451, offset: 0x6895D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB30, symBinAddr: 0x21F00, symSize: 0x10 } - - { offsetInCU: 0x46D, offset: 0x68979, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF00, symBinAddr: 0x222D0, symSize: 0x60 } - - { offsetInCU: 0x4B1, offset: 0x689BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF60, symBinAddr: 0x22330, symSize: 0x20 } - - { offsetInCU: 0x4E5, offset: 0x689F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB80, symBinAddr: 0x21F50, symSize: 0x40 } - - { offsetInCU: 0x51C, offset: 0x68A28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBC0, symBinAddr: 0x21F90, symSize: 0x40 } - - { offsetInCU: 0x53F, offset: 0x68A4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF80, symBinAddr: 0x22350, symSize: 0x140 } - - { offsetInCU: 0x58F, offset: 0x68A9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x700, symBinAddr: 0x21AD0, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x68AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC00, symBinAddr: 0x21FD0, symSize: 0x10 } - - { offsetInCU: 0x63A, offset: 0x68B46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC20, symBinAddr: 0x21FF0, symSize: 0x20 } - - { offsetInCU: 0x6B4, offset: 0x68BC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC50, symBinAddr: 0x22020, symSize: 0x10 } - - { offsetInCU: 0x6DF, offset: 0x68BEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC60, symBinAddr: 0x22030, symSize: 0x20 } - - { offsetInCU: 0x710, offset: 0x68C1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC80, symBinAddr: 0x22050, symSize: 0x10 } - - { offsetInCU: 0x72C, offset: 0x68C38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xC90, symBinAddr: 0x22060, symSize: 0x10 } - - { offsetInCU: 0x748, offset: 0x68C54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x11F0, symBinAddr: 0x22520, symSize: 0x110 } - - { offsetInCU: 0x78E, offset: 0x68C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x720, symBinAddr: 0x21AF0, symSize: 0x1B0 } - - { offsetInCU: 0x7E3, offset: 0x68CEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xCE0, symBinAddr: 0x220B0, symSize: 0x40 } - - { offsetInCU: 0x81A, offset: 0x68D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD20, symBinAddr: 0x220F0, symSize: 0x40 } - - { offsetInCU: 0x83D, offset: 0x68D49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1300, symBinAddr: 0x22630, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x68D99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x8D0, symBinAddr: 0x21CA0, symSize: 0x20 } - - { offsetInCU: 0x8B6, offset: 0x68DC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE00, symBinAddr: 0x221D0, symSize: 0x10 } - - { offsetInCU: 0x8E1, offset: 0x68DED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE10, symBinAddr: 0x221E0, symSize: 0x20 } - - { offsetInCU: 0x912, offset: 0x68E1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE30, symBinAddr: 0x22200, symSize: 0x10 } - - { offsetInCU: 0x92E, offset: 0x68E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CC0, symBinAddr: 0x22F50, symSize: 0x120 } - - { offsetInCU: 0x974, offset: 0x68E80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8F0, symBinAddr: 0x21CC0, symSize: 0x170 } - - { offsetInCU: 0x9C9, offset: 0x68ED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xE80, symBinAddr: 0x22250, symSize: 0x40 } - - { offsetInCU: 0xA00, offset: 0x68F0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEC0, symBinAddr: 0x22290, symSize: 0x40 } - - { offsetInCU: 0xA23, offset: 0x68F2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1DE0, symBinAddr: 0x23070, symSize: 0x2F0 } - - { offsetInCU: 0xA76, offset: 0x68F82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1130, symBinAddr: 0x22490, symSize: 0x30 } - - { offsetInCU: 0xA8A, offset: 0x68F96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x1190, symBinAddr: 0x224C0, symSize: 0x30 } - - { offsetInCU: 0xA9E, offset: 0x68FAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x11C0, symBinAddr: 0x224F0, symSize: 0x30 } - - { offsetInCU: 0xAB2, offset: 0x68FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1550, symBinAddr: 0x22880, symSize: 0x30 } - - { offsetInCU: 0xAC6, offset: 0x68FD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x15C0, symBinAddr: 0x228B0, symSize: 0x30 } - - { offsetInCU: 0xADA, offset: 0x68FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x1680, symBinAddr: 0x22970, symSize: 0x30 } - - { offsetInCU: 0xAEE, offset: 0x68FFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x16F0, symBinAddr: 0x229C0, symSize: 0x10 } - - { offsetInCU: 0xB02, offset: 0x6900E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1700, symBinAddr: 0x229D0, symSize: 0x10 } - - { offsetInCU: 0xB16, offset: 0x69022, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1710, symBinAddr: 0x229E0, symSize: 0x10 } - - { offsetInCU: 0xB2A, offset: 0x69036, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x1720, symBinAddr: 0x229F0, symSize: 0x10 } - - { offsetInCU: 0xB3E, offset: 0x6904A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1740, symBinAddr: 0x22A00, symSize: 0x50 } - - { offsetInCU: 0xB52, offset: 0x6905E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1790, symBinAddr: 0x22A50, symSize: 0xA0 } - - { offsetInCU: 0xB66, offset: 0x69072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1830, symBinAddr: 0x22AF0, symSize: 0x10 } - - { offsetInCU: 0xB7A, offset: 0x69086, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1840, symBinAddr: 0x22B00, symSize: 0x10 } - - { offsetInCU: 0xB8E, offset: 0x6909A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1850, symBinAddr: 0x22B10, symSize: 0x10 } - - { offsetInCU: 0xBA2, offset: 0x690AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x1860, symBinAddr: 0x22B20, symSize: 0x10 } - - { offsetInCU: 0xBB6, offset: 0x690C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x1870, symBinAddr: 0x22B30, symSize: 0x40 } - - { offsetInCU: 0xBCA, offset: 0x690D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x18B0, symBinAddr: 0x22B70, symSize: 0x80 } - - { offsetInCU: 0xBDE, offset: 0x690EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1930, symBinAddr: 0x22BF0, symSize: 0xA0 } - - { offsetInCU: 0xBF2, offset: 0x690FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A00, symBinAddr: 0x22C90, symSize: 0x80 } - - { offsetInCU: 0xC06, offset: 0x69112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1A80, symBinAddr: 0x22D10, symSize: 0x50 } - - { offsetInCU: 0xC1A, offset: 0x69126, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1AD0, symBinAddr: 0x22D60, symSize: 0x60 } - - { offsetInCU: 0xC2E, offset: 0x6913A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B30, symBinAddr: 0x22DC0, symSize: 0x10 } - - { offsetInCU: 0xC42, offset: 0x6914E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B40, symBinAddr: 0x22DD0, symSize: 0x10 } - - { offsetInCU: 0xC56, offset: 0x69162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B50, symBinAddr: 0x22DE0, symSize: 0x30 } - - { offsetInCU: 0xC6A, offset: 0x69176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B80, symBinAddr: 0x22E10, symSize: 0x10 } - - { offsetInCU: 0xC7E, offset: 0x6918A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x22E20, symSize: 0x30 } - - { offsetInCU: 0xC92, offset: 0x6919E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BC0, symBinAddr: 0x22E50, symSize: 0x10 } - - { offsetInCU: 0xCA6, offset: 0x691B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x22E60, symSize: 0x30 } - - { offsetInCU: 0xCBA, offset: 0x691C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C00, symBinAddr: 0x22E90, symSize: 0x10 } - - { offsetInCU: 0xCCE, offset: 0x691DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C10, symBinAddr: 0x22EA0, symSize: 0x30 } - - { offsetInCU: 0xCE2, offset: 0x691EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C40, symBinAddr: 0x22ED0, symSize: 0x10 } - - { offsetInCU: 0xCF6, offset: 0x69202, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C50, symBinAddr: 0x22EE0, symSize: 0x30 } - - { offsetInCU: 0xD0A, offset: 0x69216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C80, symBinAddr: 0x22F10, symSize: 0x10 } - - { offsetInCU: 0xD1E, offset: 0x6922A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C90, symBinAddr: 0x22F20, symSize: 0x30 } - - { offsetInCU: 0xD32, offset: 0x6923E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x20D0, symBinAddr: 0x23360, symSize: 0x30 } - - { offsetInCU: 0xD46, offset: 0x69252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x2270, symBinAddr: 0x23500, symSize: 0x10 } - - { offsetInCU: 0xD5A, offset: 0x69266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2280, symBinAddr: 0x23510, symSize: 0x10 } - - { offsetInCU: 0xD6E, offset: 0x6927A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2290, symBinAddr: 0x23520, symSize: 0x10 } - - { offsetInCU: 0xD82, offset: 0x6928E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x22A0, symBinAddr: 0x23530, symSize: 0x30 } - - { offsetInCU: 0xD96, offset: 0x692A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22D0, symBinAddr: 0x23560, symSize: 0x10 } - - { offsetInCU: 0xDAA, offset: 0x692B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E0, symBinAddr: 0x23570, symSize: 0x30 } - - { offsetInCU: 0xDBE, offset: 0x692CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2310, symBinAddr: 0x235A0, symSize: 0x10 } - - { offsetInCU: 0xDD2, offset: 0x692DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2320, symBinAddr: 0x235B0, symSize: 0x30 } - - { offsetInCU: 0xE27, offset: 0x69333, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAC0, symBinAddr: 0x21E90, symSize: 0x30 } - - { offsetInCU: 0xECA, offset: 0x693D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB40, symBinAddr: 0x21F10, symSize: 0x20 } - - { offsetInCU: 0xEE6, offset: 0x693F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x21F30, symSize: 0x20 } - - { offsetInCU: 0xF08, offset: 0x69414, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCA0, symBinAddr: 0x22070, symSize: 0x20 } - - { offsetInCU: 0xF24, offset: 0x69430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCC0, symBinAddr: 0x22090, symSize: 0x20 } - - { offsetInCU: 0xF46, offset: 0x69452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE40, symBinAddr: 0x22210, symSize: 0x20 } - - { offsetInCU: 0xF62, offset: 0x6946E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE60, symBinAddr: 0x22230, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x695BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x23650, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x695DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x23650, symSize: 0x10 } - - { offsetInCU: 0x7A, offset: 0x6960E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x810, symBinAddr: 0x23D60, symSize: 0x20 } - - { offsetInCU: 0x110, offset: 0x696A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x830, symBinAddr: 0x23D80, symSize: 0x40 } - - { offsetInCU: 0x20B, offset: 0x6979F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x870, symBinAddr: 0x23DC0, symSize: 0x10 } - - { offsetInCU: 0x261, offset: 0x697F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x880, symBinAddr: 0x23DD0, symSize: 0x40 } - - { offsetInCU: 0x345, offset: 0x698D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x23E10, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x69958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x23660, symSize: 0x480 } - - { offsetInCU: 0x440, offset: 0x699D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOy', symObjAddr: 0x490, symBinAddr: 0x23AE0, symSize: 0x20 } - - { offsetInCU: 0x454, offset: 0x699E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOe', symObjAddr: 0x4E0, symBinAddr: 0x23B00, symSize: 0x20 } - - { offsetInCU: 0x474, offset: 0x69A08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x5D0, symBinAddr: 0x23B20, symSize: 0x30 } - - { offsetInCU: 0x492, offset: 0x69A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x600, symBinAddr: 0x23B50, symSize: 0x30 } - - { offsetInCU: 0x4D0, offset: 0x69A64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x630, symBinAddr: 0x23B80, symSize: 0x10 } - - { offsetInCU: 0x4EE, offset: 0x69A82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x640, symBinAddr: 0x23B90, symSize: 0x10 } - - { offsetInCU: 0x519, offset: 0x69AAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x650, symBinAddr: 0x23BA0, symSize: 0x10 } - - { offsetInCU: 0x537, offset: 0x69ACB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x660, symBinAddr: 0x23BB0, symSize: 0x10 } - - { offsetInCU: 0x575, offset: 0x69B09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x670, symBinAddr: 0x23BC0, symSize: 0x20 } - - { offsetInCU: 0x5A3, offset: 0x69B37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x690, symBinAddr: 0x23BE0, symSize: 0x10 } - - { offsetInCU: 0x5D6, offset: 0x69B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x6A0, symBinAddr: 0x23BF0, symSize: 0x30 } - - { offsetInCU: 0x5F4, offset: 0x69B88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x6D0, symBinAddr: 0x23C20, symSize: 0x20 } - - { offsetInCU: 0x61A, offset: 0x69BAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x6F0, symBinAddr: 0x23C40, symSize: 0x30 } - - { offsetInCU: 0x638, offset: 0x69BCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x720, symBinAddr: 0x23C70, symSize: 0x30 } - - { offsetInCU: 0x663, offset: 0x69BF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x750, symBinAddr: 0x23CA0, symSize: 0x10 } - - { offsetInCU: 0x681, offset: 0x69C15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x760, symBinAddr: 0x23CB0, symSize: 0x10 } - - { offsetInCU: 0x6BD, offset: 0x69C51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x770, symBinAddr: 0x23CC0, symSize: 0x10 } - - { offsetInCU: 0x6DB, offset: 0x69C6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x780, symBinAddr: 0x23CD0, symSize: 0x10 } - - { offsetInCU: 0x706, offset: 0x69C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x790, symBinAddr: 0x23CE0, symSize: 0x10 } - - { offsetInCU: 0x724, offset: 0x69CB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x7A0, symBinAddr: 0x23CF0, symSize: 0x10 } - - { offsetInCU: 0x760, offset: 0x69CF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x7B0, symBinAddr: 0x23D00, symSize: 0x20 } - - { offsetInCU: 0x78E, offset: 0x69D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x7D0, symBinAddr: 0x23D20, symSize: 0x10 } - - { offsetInCU: 0x7B9, offset: 0x69D4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x7E0, symBinAddr: 0x23D30, symSize: 0x20 } - - { offsetInCU: 0x7E7, offset: 0x69D7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x800, symBinAddr: 0x23D50, symSize: 0x10 } - - { offsetInCU: 0x829, offset: 0x69DBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x920, symBinAddr: 0x23E70, symSize: 0x10 } - - { offsetInCU: 0x83D, offset: 0x69DD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x930, symBinAddr: 0x23E80, symSize: 0x30 } - - { offsetInCU: 0x851, offset: 0x69DE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x960, symBinAddr: 0x23EB0, symSize: 0x30 } - - { offsetInCU: 0x865, offset: 0x69DF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x990, symBinAddr: 0x23EE0, symSize: 0x80 } - - { offsetInCU: 0x879, offset: 0x69E0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0xA10, symBinAddr: 0x23F60, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x69E21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0xC60, symBinAddr: 0x241B0, symSize: 0x4F0 } - - { offsetInCU: 0x8A8, offset: 0x69E3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0x1150, symBinAddr: 0x246A0, symSize: 0x30 } - - { offsetInCU: 0x8D1, offset: 0x69E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0x1180, symBinAddr: 0x246D0, symSize: 0x20 } - - { offsetInCU: 0x8E5, offset: 0x69E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0x11A0, symBinAddr: 0x246F0, symSize: 0x30 } - - { offsetInCU: 0x8F9, offset: 0x69E8D, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0x11D0, symBinAddr: 0x24720, symSize: 0x10 } - - { offsetInCU: 0x90D, offset: 0x69EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x24730, symSize: 0x340 } - - { offsetInCU: 0x921, offset: 0x69EB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x1520, symBinAddr: 0x24A70, symSize: 0x40 } - - { offsetInCU: 0x935, offset: 0x69EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1560, symBinAddr: 0x24AB0, symSize: 0x90 } - - { offsetInCU: 0x949, offset: 0x69EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x24B40, symSize: 0x10 } - - { offsetInCU: 0x95D, offset: 0x69EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwCP', symObjAddr: 0x1600, symBinAddr: 0x24B50, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x69F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1630, symBinAddr: 0x24B80, symSize: 0x10 } - - { offsetInCU: 0x985, offset: 0x69F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwcp', symObjAddr: 0x1640, symBinAddr: 0x24B90, symSize: 0x30 } - - { offsetInCU: 0x999, offset: 0x69F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x24BC0, symSize: 0x50 } - - { offsetInCU: 0x9AD, offset: 0x69F41, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x16C0, symBinAddr: 0x24C10, symSize: 0x20 } - - { offsetInCU: 0x9C1, offset: 0x69F55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x16E0, symBinAddr: 0x24C30, symSize: 0x40 } - - { offsetInCU: 0x9D5, offset: 0x69F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1720, symBinAddr: 0x24C70, symSize: 0x40 } - - { offsetInCU: 0x9E9, offset: 0x69F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1760, symBinAddr: 0x24CB0, symSize: 0x50 } - - { offsetInCU: 0x9FD, offset: 0x69F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x17B0, symBinAddr: 0x24D00, symSize: 0x10 } - - { offsetInCU: 0xA11, offset: 0x69FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x17C0, symBinAddr: 0x24D10, symSize: 0x30 } - - { offsetInCU: 0xA25, offset: 0x69FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x17F0, symBinAddr: 0x24D40, symSize: 0x80 } - - { offsetInCU: 0xA39, offset: 0x69FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x1870, symBinAddr: 0x24DC0, symSize: 0xE0 } - - { offsetInCU: 0xA4D, offset: 0x69FE1, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1950, symBinAddr: 0x24EA0, symSize: 0x30 } - - { offsetInCU: 0xA61, offset: 0x69FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1980, symBinAddr: 0x24ED0, symSize: 0x90 } - - { offsetInCU: 0xA75, offset: 0x6A009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1A10, symBinAddr: 0x24F60, symSize: 0x50 } - - { offsetInCU: 0xA89, offset: 0x6A01D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1A60, symBinAddr: 0x24FB0, symSize: 0x60 } - - { offsetInCU: 0xA9D, offset: 0x6A031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1AC0, symBinAddr: 0x25010, symSize: 0x10 } - - { offsetInCU: 0xAB1, offset: 0x6A045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1AD0, symBinAddr: 0x25020, symSize: 0x30 } - - { offsetInCU: 0xAC5, offset: 0x6A059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x1B00, symBinAddr: 0x25050, symSize: 0x40 } - - { offsetInCU: 0xAD9, offset: 0x6A06D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x1B40, symBinAddr: 0x25090, symSize: 0x60 } - - { offsetInCU: 0xAED, offset: 0x6A081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1BC0, symBinAddr: 0x250F0, symSize: 0x50 } - - { offsetInCU: 0xB01, offset: 0x6A095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1C10, symBinAddr: 0x25140, symSize: 0x40 } - - { offsetInCU: 0xB15, offset: 0x6A0A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x1C50, symBinAddr: 0x25180, symSize: 0x50 } - - { offsetInCU: 0xB29, offset: 0x6A0BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x1CA0, symBinAddr: 0x251D0, symSize: 0x10 } - - { offsetInCU: 0xB3D, offset: 0x6A0D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1CC0, symBinAddr: 0x251E0, symSize: 0x40 } - - { offsetInCU: 0xB51, offset: 0x6A0E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1D00, symBinAddr: 0x25220, symSize: 0x50 } - - { offsetInCU: 0xB65, offset: 0x6A0F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1D50, symBinAddr: 0x25270, symSize: 0x10 } - - { offsetInCU: 0xB79, offset: 0x6A10D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x1D70, symBinAddr: 0x25280, symSize: 0x80 } - - { offsetInCU: 0xB8D, offset: 0x6A121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1DF0, symBinAddr: 0x25300, symSize: 0xD0 } - - { offsetInCU: 0xBA1, offset: 0x6A135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1EC0, symBinAddr: 0x253D0, symSize: 0x10 } - - { offsetInCU: 0xBB5, offset: 0x6A149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1ED0, symBinAddr: 0x253E0, symSize: 0x10 } - - { offsetInCU: 0xBC9, offset: 0x6A15D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1EE0, symBinAddr: 0x253F0, symSize: 0x10 } - - { offsetInCU: 0xBDD, offset: 0x6A171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1EF0, symBinAddr: 0x25400, symSize: 0x10 } - - { offsetInCU: 0xC32, offset: 0x6A1C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x23E30, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x6A412, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x25450, symSize: 0x170 } - - { offsetInCU: 0x373, offset: 0x6A717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x1F0, symBinAddr: 0x25640, symSize: 0x25F0 } - - { offsetInCU: 0x13EF, offset: 0x6B793, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xD460, symBinAddr: 0x328B0, symSize: 0x42E0 } - - { offsetInCU: 0x3193, offset: 0x6D537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x11740, symBinAddr: 0x36B90, symSize: 0x790 } - - { offsetInCU: 0x3783, offset: 0x6DB27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0x11ED0, symBinAddr: 0x37320, symSize: 0x40 } - - { offsetInCU: 0x37AB, offset: 0x6DB4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x17980, symBinAddr: 0x3CDD0, symSize: 0x450 } - - { offsetInCU: 0x3924, offset: 0x6DCC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x13B00, symBinAddr: 0x38F50, symSize: 0x2F60 } - - { offsetInCU: 0x4F6B, offset: 0x6F30F, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x27E0, symBinAddr: 0x27C30, symSize: 0x2F0 } - - { offsetInCU: 0x52C2, offset: 0x6F666, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2AD0, symBinAddr: 0x27F20, symSize: 0x7A0 } - - { offsetInCU: 0x573A, offset: 0x6FADE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x3270, symBinAddr: 0x286C0, symSize: 0x6E0 } - - { offsetInCU: 0x5A6D, offset: 0x6FE11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3950, symBinAddr: 0x28DA0, symSize: 0x4C30 } - - { offsetInCU: 0x75E7, offset: 0x7198B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x8580, symBinAddr: 0x2D9D0, symSize: 0x2E0 } - - { offsetInCU: 0x76E9, offset: 0x71A8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x8CE0, symBinAddr: 0x2E130, symSize: 0x1BC0 } - - { offsetInCU: 0x7FD5, offset: 0x72379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x8860, symBinAddr: 0x2DCB0, symSize: 0x120 } - - { offsetInCU: 0x803E, offset: 0x723E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x8AA0, symBinAddr: 0x2DEF0, symSize: 0x210 } - - { offsetInCU: 0x812B, offset: 0x724CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x8CB0, symBinAddr: 0x2E100, symSize: 0x30 } - - { offsetInCU: 0x84CE, offset: 0x72872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0xA8A0, symBinAddr: 0x2FCF0, symSize: 0x8B0 } - - { offsetInCU: 0x88F3, offset: 0x72C97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xC210, symBinAddr: 0x31660, symSize: 0x1250 } - - { offsetInCU: 0x91BB, offset: 0x7355F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xB150, symBinAddr: 0x305A0, symSize: 0xC00 } - - { offsetInCU: 0x9C8B, offset: 0x7402F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x12380, symBinAddr: 0x377D0, symSize: 0x1780 } - - { offsetInCU: 0xAC1F, offset: 0x74FC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1C210, symBinAddr: 0x415A0, symSize: 0xE00 } - - { offsetInCU: 0xB861, offset: 0x75C05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x16A60, symBinAddr: 0x3BEB0, symSize: 0xF20 } - - { offsetInCU: 0xC1CF, offset: 0x76573, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x17DD0, symBinAddr: 0x3D220, symSize: 0x1C0 } - - { offsetInCU: 0xC270, offset: 0x76614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x17F90, symBinAddr: 0x3D3E0, symSize: 0x2D0 } - - { offsetInCU: 0xC376, offset: 0x7671A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x18260, symBinAddr: 0x3D6B0, symSize: 0x80 } - - { offsetInCU: 0xC3F5, offset: 0x76799, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x18350, symBinAddr: 0x3D7A0, symSize: 0x1260 } - - { offsetInCU: 0xCD4E, offset: 0x770F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x195B0, symBinAddr: 0x3EA00, symSize: 0x50 } - - { offsetInCU: 0xCD6A, offset: 0x7710E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x19600, symBinAddr: 0x3EA50, symSize: 0x160 } - - { offsetInCU: 0xCE6E, offset: 0x77212, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x19760, symBinAddr: 0x3EBB0, symSize: 0x50 } - - { offsetInCU: 0xCEE7, offset: 0x7728B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x19800, symBinAddr: 0x3EC00, symSize: 0x40 } - - { offsetInCU: 0xCF6B, offset: 0x7730F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x19840, symBinAddr: 0x3EC40, symSize: 0x40 } - - { offsetInCU: 0xCFE4, offset: 0x77388, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x19880, symBinAddr: 0x3EC80, symSize: 0x60 } - - { offsetInCU: 0xD026, offset: 0x773CA, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x198E0, symBinAddr: 0x3ECE0, symSize: 0x30 } - - { offsetInCU: 0xD053, offset: 0x773F7, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19910, symBinAddr: 0x3ED10, symSize: 0x80 } - - { offsetInCU: 0xD0F1, offset: 0x77495, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x19990, symBinAddr: 0x3ED90, symSize: 0x60 } - - { offsetInCU: 0xD177, offset: 0x7751B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x199F0, symBinAddr: 0x3EDF0, symSize: 0x50 } - - { offsetInCU: 0xD1FB, offset: 0x7759F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19A90, symBinAddr: 0x3EE90, symSize: 0xE0 } - - { offsetInCU: 0xD245, offset: 0x775E9, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19B70, symBinAddr: 0x3EF70, symSize: 0xC0 } - - { offsetInCU: 0xD272, offset: 0x77616, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19C30, symBinAddr: 0x3F030, symSize: 0x180 } - - { offsetInCU: 0xD326, offset: 0x776CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x19DB0, symBinAddr: 0x3F1B0, symSize: 0x110 } - - { offsetInCU: 0xD4B9, offset: 0x7785D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x19EC0, symBinAddr: 0x3F2C0, symSize: 0x130 } - - { offsetInCU: 0xD685, offset: 0x77A29, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x19FF0, symBinAddr: 0x3F3F0, symSize: 0x180 } - - { offsetInCU: 0xD858, offset: 0x77BFC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1A170, symBinAddr: 0x3F570, symSize: 0x1A0 } - - { offsetInCU: 0xDA3D, offset: 0x77DE1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x1A310, symBinAddr: 0x3F710, symSize: 0x110 } - - { offsetInCU: 0xDBE0, offset: 0x77F84, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x1A420, symBinAddr: 0x3F820, symSize: 0x110 } - - { offsetInCU: 0xDD83, offset: 0x78127, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1A660, symBinAddr: 0x3FA60, symSize: 0x110 } - - { offsetInCU: 0xDE95, offset: 0x78239, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1A770, symBinAddr: 0x3FB70, symSize: 0x40 } - - { offsetInCU: 0xDEE2, offset: 0x78286, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1AA80, symBinAddr: 0x3FE80, symSize: 0x180 } - - { offsetInCU: 0xDF81, offset: 0x78325, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1AC00, symBinAddr: 0x40000, symSize: 0xD0 } - - { offsetInCU: 0xE03C, offset: 0x783E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x1AEE0, symBinAddr: 0x402A0, symSize: 0x700 } - - { offsetInCU: 0xE3F4, offset: 0x78798, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1B5E0, symBinAddr: 0x409A0, symSize: 0x170 } - - { offsetInCU: 0xE505, offset: 0x788A9, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x1B750, symBinAddr: 0x40B10, symSize: 0xA0 } - - { offsetInCU: 0xE608, offset: 0x789AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1BA70, symBinAddr: 0x40E00, symSize: 0x1B0 } - - { offsetInCU: 0xE75D, offset: 0x78B01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1BC20, symBinAddr: 0x40FB0, symSize: 0x400 } - - { offsetInCU: 0xEA71, offset: 0x78E15, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1D010, symBinAddr: 0x423A0, symSize: 0x170 } - - { offsetInCU: 0xEB8D, offset: 0x78F31, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x1D180, symBinAddr: 0x42510, symSize: 0xA0 } - - { offsetInCU: 0xEF17, offset: 0x792BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1D220, symBinAddr: 0x425B0, symSize: 0x1130 } - - { offsetInCU: 0x102DF, offset: 0x7A683, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E350, symBinAddr: 0x436E0, symSize: 0x1E0 } - - { offsetInCU: 0x1047D, offset: 0x7A821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E530, symBinAddr: 0x438C0, symSize: 0x1B0 } - - { offsetInCU: 0x10570, offset: 0x7A914, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1E6E0, symBinAddr: 0x43A70, symSize: 0x90 } - - { offsetInCU: 0x10772, offset: 0x7AB16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1F240, symBinAddr: 0x445D0, symSize: 0x10 } - - { offsetInCU: 0x10786, offset: 0x7AB2A, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1F310, symBinAddr: 0x446A0, symSize: 0x20 } - - { offsetInCU: 0x1079A, offset: 0x7AB3E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1F330, symBinAddr: 0x446C0, symSize: 0x20 } - - { offsetInCU: 0x107AE, offset: 0x7AB52, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1F350, symBinAddr: 0x446E0, symSize: 0x60 } - - { offsetInCU: 0x107C2, offset: 0x7AB66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1F3D0, symBinAddr: 0x44740, symSize: 0x30 } - - { offsetInCU: 0x107D6, offset: 0x7AB7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1F400, symBinAddr: 0x44770, symSize: 0x180 } - - { offsetInCU: 0x107EA, offset: 0x7AB8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1F580, symBinAddr: 0x448F0, symSize: 0x2D0 } - - { offsetInCU: 0x107FE, offset: 0x7ABA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1F850, symBinAddr: 0x44BC0, symSize: 0x70 } - - { offsetInCU: 0x10812, offset: 0x7ABB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1F8C0, symBinAddr: 0x44C30, symSize: 0x30 } - - { offsetInCU: 0x10826, offset: 0x7ABCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1F8F0, symBinAddr: 0x44C60, symSize: 0xD0 } - - { offsetInCU: 0x1083A, offset: 0x7ABDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1F9C0, symBinAddr: 0x44D30, symSize: 0xB0 } - - { offsetInCU: 0x1086F, offset: 0x7AC13, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x200E0, symBinAddr: 0x44DE0, symSize: 0xC0 } - - { offsetInCU: 0x108E5, offset: 0x7AC89, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x201A0, symBinAddr: 0x44EA0, symSize: 0x80 } - - { offsetInCU: 0x10912, offset: 0x7ACB6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x20220, symBinAddr: 0x44F20, symSize: 0x80 } - - { offsetInCU: 0x10988, offset: 0x7AD2C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x202A0, symBinAddr: 0x44FA0, symSize: 0x70 } - - { offsetInCU: 0x10AA1, offset: 0x7AE45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x20310, symBinAddr: 0x45010, symSize: 0x800 } - - { offsetInCU: 0x10F5A, offset: 0x7B2FE, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x20B10, symBinAddr: 0x45810, symSize: 0x40 } - - { offsetInCU: 0x10F6E, offset: 0x7B312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x20C00, symBinAddr: 0x45880, symSize: 0x10 } - - { offsetInCU: 0x10F82, offset: 0x7B326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x20C10, symBinAddr: 0x45890, symSize: 0x30 } - - { offsetInCU: 0x10F96, offset: 0x7B33A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x20C40, symBinAddr: 0x458C0, symSize: 0x30 } - - { offsetInCU: 0x10FAA, offset: 0x7B34E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x20CE0, symBinAddr: 0x45910, symSize: 0x20 } - - { offsetInCU: 0x10FBE, offset: 0x7B362, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x20D20, symBinAddr: 0x45930, symSize: 0x30 } - - { offsetInCU: 0x10FD2, offset: 0x7B376, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x20D50, symBinAddr: 0x45960, symSize: 0x30 } - - { offsetInCU: 0x10FE6, offset: 0x7B38A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x20DE0, symBinAddr: 0x459F0, symSize: 0x30 } - - { offsetInCU: 0x1101B, offset: 0x7B3BF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x20EE0, symBinAddr: 0x45AF0, symSize: 0x40 } - - { offsetInCU: 0x1103A, offset: 0x7B3DE, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x20F20, symBinAddr: 0x45B30, symSize: 0x60 } - - { offsetInCU: 0x1107D, offset: 0x7B421, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x20F80, symBinAddr: 0x45B90, symSize: 0x80 } - - { offsetInCU: 0x11112, offset: 0x7B4B6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x21000, symBinAddr: 0x45C10, symSize: 0x120 } - - { offsetInCU: 0x111FA, offset: 0x7B59E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x21170, symBinAddr: 0x45D80, symSize: 0x40 } - - { offsetInCU: 0x1120E, offset: 0x7B5B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x211B0, symBinAddr: 0x45DC0, symSize: 0x50 } - - { offsetInCU: 0x11222, offset: 0x7B5C6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x212C0, symBinAddr: 0x45ED0, symSize: 0x40 } - - { offsetInCU: 0x11236, offset: 0x7B5DA, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x21360, symBinAddr: 0x45F70, symSize: 0x10 } - - { offsetInCU: 0x1124A, offset: 0x7B5EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x21370, symBinAddr: 0x45F80, symSize: 0x20 } - - { offsetInCU: 0x1125E, offset: 0x7B602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x21390, symBinAddr: 0x45FA0, symSize: 0x30 } - - { offsetInCU: 0x11272, offset: 0x7B616, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x21400, symBinAddr: 0x46010, symSize: 0x40 } - - { offsetInCU: 0x112B9, offset: 0x7B65D, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x170, symBinAddr: 0x255C0, symSize: 0x80 } - - { offsetInCU: 0x116F2, offset: 0x7BA96, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xBD50, symBinAddr: 0x311A0, symSize: 0x4C0 } - - { offsetInCU: 0x119D4, offset: 0x7BD78, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x121D0, symBinAddr: 0x37620, symSize: 0x1B0 } - - { offsetInCU: 0x11C01, offset: 0x7BFA5, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x182E0, symBinAddr: 0x3D730, symSize: 0x70 } - - { offsetInCU: 0x11D6E, offset: 0x7C112, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x1ACD0, symBinAddr: 0x400D0, symSize: 0xE0 } - - { offsetInCU: 0x11E9B, offset: 0x7C23F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x1ADF0, symBinAddr: 0x401B0, symSize: 0xF0 } - - { offsetInCU: 0x11FA2, offset: 0x7C346, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1B840, symBinAddr: 0x40BD0, symSize: 0x230 } - - { offsetInCU: 0x12070, offset: 0x7C414, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1C020, symBinAddr: 0x413B0, symSize: 0x1F0 } - - { offsetInCU: 0x1232C, offset: 0x7C6D0, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1E990, symBinAddr: 0x43D20, symSize: 0x260 } - - { offsetInCU: 0x12412, offset: 0x7C7B6, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1EBF0, symBinAddr: 0x43F80, symSize: 0xF0 } - - { offsetInCU: 0x12545, offset: 0x7C8E9, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1ECE0, symBinAddr: 0x44070, symSize: 0xF0 } - - { offsetInCU: 0x1268C, offset: 0x7CA30, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1EDD0, symBinAddr: 0x44160, symSize: 0xE0 } - - { offsetInCU: 0x127C7, offset: 0x7CB6B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1EEB0, symBinAddr: 0x44240, symSize: 0xF0 } - - { offsetInCU: 0x128F4, offset: 0x7CC98, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1EFA0, symBinAddr: 0x44330, symSize: 0xE0 } - - { offsetInCU: 0x12A3B, offset: 0x7CDDF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1F160, symBinAddr: 0x444F0, symSize: 0xE0 } - - { offsetInCU: 0x12B9A, offset: 0x7CF3E, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x20E10, symBinAddr: 0x45A20, symSize: 0xD0 } - - { offsetInCU: 0x12E40, offset: 0x7D1E4, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x8980, symBinAddr: 0x2DDD0, symSize: 0x120 } - - { offsetInCU: 0x27, offset: 0x7D79E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x46080, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7D7B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x46080, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7D7CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x460B0, symSize: 0x140 } - - { offsetInCU: 0x67, offset: 0x7D7DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x461F0, symSize: 0x440 } - - { offsetInCU: 0x7B, offset: 0x7D7F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x46630, symSize: 0x590 } - - { offsetInCU: 0x8F, offset: 0x7D806, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x46BC0, symSize: 0x10 } - - { offsetInCU: 0xA3, offset: 0x7D81A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x46BD0, symSize: 0x440 } - - { offsetInCU: 0xB7, offset: 0x7D82E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x47010, symSize: 0x40 } - - { offsetInCU: 0xCB, offset: 0x7D842, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x47050, symSize: 0x110 } - - { offsetInCU: 0xDF, offset: 0x7D856, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x47160, symSize: 0xA } - - { offsetInCU: 0x23B, offset: 0x7DB72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x480, symBinAddr: 0x475E0, symSize: 0x2D0 } - - { offsetInCU: 0x2F0, offset: 0x7DC27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x750, symBinAddr: 0x478B0, symSize: 0xE40 } - - { offsetInCU: 0x762, offset: 0x7E099, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x1590, symBinAddr: 0x486F0, symSize: 0x690 } - - { offsetInCU: 0x982, offset: 0x7E2B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1C20, symBinAddr: 0x48D80, symSize: 0xB00 } - - { offsetInCU: 0xD14, offset: 0x7E64B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x2750, symBinAddr: 0x498B0, symSize: 0x28F0 } - - { offsetInCU: 0x1EF3, offset: 0x7F82A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x10210, symBinAddr: 0x57370, symSize: 0x7F0 } - - { offsetInCU: 0x2281, offset: 0x7FBB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x5040, symBinAddr: 0x4C1A0, symSize: 0x1620 } - - { offsetInCU: 0x2DF3, offset: 0x8072A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x6660, symBinAddr: 0x4D7C0, symSize: 0xE80 } - - { offsetInCU: 0x3649, offset: 0x80F80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x74E0, symBinAddr: 0x4E640, symSize: 0x430 } - - { offsetInCU: 0x3760, offset: 0x81097, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8330, symBinAddr: 0x4F490, symSize: 0x210 } - - { offsetInCU: 0x3A1F, offset: 0x81356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8540, symBinAddr: 0x4F6A0, symSize: 0xA50 } - - { offsetInCU: 0x4168, offset: 0x81A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8F90, symBinAddr: 0x500F0, symSize: 0x2F0 } - - { offsetInCU: 0x42A0, offset: 0x81BD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9280, symBinAddr: 0x503E0, symSize: 0x710 } - - { offsetInCU: 0x4693, offset: 0x81FCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x9990, symBinAddr: 0x50AF0, symSize: 0x760 } - - { offsetInCU: 0x496D, offset: 0x822A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA0F0, symBinAddr: 0x51250, symSize: 0x260 } - - { offsetInCU: 0x4A41, offset: 0x82378, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA350, symBinAddr: 0x514B0, symSize: 0x270 } - - { offsetInCU: 0x4ADA, offset: 0x82411, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0xA5C0, symBinAddr: 0x51720, symSize: 0xC0 } - - { offsetInCU: 0x4B07, offset: 0x8243E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0xA680, symBinAddr: 0x517E0, symSize: 0x20 } - - { offsetInCU: 0x4B43, offset: 0x8247A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xEC10, symBinAddr: 0x55D70, symSize: 0x8F0 } - - { offsetInCU: 0x4E8E, offset: 0x827C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xF500, symBinAddr: 0x56660, symSize: 0xA60 } - - { offsetInCU: 0x517D, offset: 0x82AB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xFF60, symBinAddr: 0x570C0, symSize: 0x240 } - - { offsetInCU: 0x5228, offset: 0x82B5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x10A00, symBinAddr: 0x57B60, symSize: 0x960 } - - { offsetInCU: 0x5533, offset: 0x82E6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11360, symBinAddr: 0x584C0, symSize: 0xBC0 } - - { offsetInCU: 0x5822, offset: 0x83159, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x11F20, symBinAddr: 0x59080, symSize: 0x2C0 } - - { offsetInCU: 0x58CD, offset: 0x83204, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x121E0, symBinAddr: 0x59340, symSize: 0x210 } - - { offsetInCU: 0x5D83, offset: 0x836BA, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2720, symBinAddr: 0x49880, symSize: 0x30 } - - { offsetInCU: 0x609A, offset: 0x839D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0xA6A0, symBinAddr: 0x51800, symSize: 0x20 } - - { offsetInCU: 0x60F3, offset: 0x83A2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xA6C0, symBinAddr: 0x51820, symSize: 0x90 } - - { offsetInCU: 0x61A1, offset: 0x83AD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0xA750, symBinAddr: 0x518B0, symSize: 0xDF0 } - - { offsetInCU: 0x66B3, offset: 0x83FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0xB540, symBinAddr: 0x526A0, symSize: 0x40 } - - { offsetInCU: 0x66F7, offset: 0x8402E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0xB580, symBinAddr: 0x526E0, symSize: 0x50 } - - { offsetInCU: 0x6722, offset: 0x84059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0xB5D0, symBinAddr: 0x52730, symSize: 0x50 } - - { offsetInCU: 0x6764, offset: 0x8409B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB620, symBinAddr: 0x52780, symSize: 0x60 } - - { offsetInCU: 0x6797, offset: 0x840CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xB680, symBinAddr: 0x527E0, symSize: 0x10 } - - { offsetInCU: 0x67C2, offset: 0x840F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB690, symBinAddr: 0x527F0, symSize: 0x70 } - - { offsetInCU: 0x6804, offset: 0x8413B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xB700, symBinAddr: 0x52860, symSize: 0x90 } - - { offsetInCU: 0x6846, offset: 0x8417D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xB790, symBinAddr: 0x528F0, symSize: 0x70 } - - { offsetInCU: 0x6879, offset: 0x841B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xB800, symBinAddr: 0x52960, symSize: 0x10 } - - { offsetInCU: 0x6895, offset: 0x841CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xB810, symBinAddr: 0x52970, symSize: 0x10 } - - { offsetInCU: 0x68C0, offset: 0x841F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xB820, symBinAddr: 0x52980, symSize: 0x70 } - - { offsetInCU: 0x68F3, offset: 0x8422A, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xB890, symBinAddr: 0x529F0, symSize: 0x10 } - - { offsetInCU: 0x6912, offset: 0x84249, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0xB8A0, symBinAddr: 0x52A00, symSize: 0x10 } - - { offsetInCU: 0x693F, offset: 0x84276, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xB8B0, symBinAddr: 0x52A10, symSize: 0xC0 } - - { offsetInCU: 0x69C7, offset: 0x842FE, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xB970, symBinAddr: 0x52AD0, symSize: 0xC0 } - - { offsetInCU: 0x6A7F, offset: 0x843B6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xBB00, symBinAddr: 0x52C60, symSize: 0x260 } - - { offsetInCU: 0x6AF7, offset: 0x8442E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xBD60, symBinAddr: 0x52EC0, symSize: 0x220 } - - { offsetInCU: 0x6BA7, offset: 0x844DE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xBF80, symBinAddr: 0x530E0, symSize: 0x3C0 } - - { offsetInCU: 0x6CB3, offset: 0x845EA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xC340, symBinAddr: 0x534A0, symSize: 0x3B0 } - - { offsetInCU: 0x6DE9, offset: 0x84720, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xC6F0, symBinAddr: 0x53850, symSize: 0x220 } - - { offsetInCU: 0x6E72, offset: 0x847A9, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xC910, symBinAddr: 0x53A70, symSize: 0x220 } - - { offsetInCU: 0x6EF0, offset: 0x84827, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xCB30, symBinAddr: 0x53C90, symSize: 0x40 } - - { offsetInCU: 0x6FB8, offset: 0x848EF, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xCB70, symBinAddr: 0x53CD0, symSize: 0xA0 } - - { offsetInCU: 0x7071, offset: 0x849A8, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xCC10, symBinAddr: 0x53D70, symSize: 0x40 } - - { offsetInCU: 0x70AE, offset: 0x849E5, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xCC50, symBinAddr: 0x53DB0, symSize: 0x20 } - - { offsetInCU: 0x70D7, offset: 0x84A0E, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xCC70, symBinAddr: 0x53DD0, symSize: 0x30 } - - { offsetInCU: 0x7100, offset: 0x84A37, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xCCA0, symBinAddr: 0x53E00, symSize: 0x20 } - - { offsetInCU: 0x7164, offset: 0x84A9B, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xCCC0, symBinAddr: 0x53E20, symSize: 0x120 } - - { offsetInCU: 0x7209, offset: 0x84B40, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xCF00, symBinAddr: 0x54060, symSize: 0x2C0 } - - { offsetInCU: 0x7280, offset: 0x84BB7, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xD470, symBinAddr: 0x545D0, symSize: 0x80 } - - { offsetInCU: 0x7298, offset: 0x84BCF, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xD4F0, symBinAddr: 0x54650, symSize: 0x60 } - - { offsetInCU: 0x72ED, offset: 0x84C24, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xD550, symBinAddr: 0x546B0, symSize: 0x170 } - - { offsetInCU: 0x735B, offset: 0x84C92, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xD6C0, symBinAddr: 0x54820, symSize: 0x100 } - - { offsetInCU: 0x7380, offset: 0x84CB7, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xD7C0, symBinAddr: 0x54920, symSize: 0x2D0 } - - { offsetInCU: 0x73B9, offset: 0x84CF0, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xDA90, symBinAddr: 0x54BF0, symSize: 0xA0 } - - { offsetInCU: 0x73D1, offset: 0x84D08, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xDB30, symBinAddr: 0x54C90, symSize: 0x20 } - - { offsetInCU: 0x73E9, offset: 0x84D20, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDB50, symBinAddr: 0x54CB0, symSize: 0x20 } - - { offsetInCU: 0x7401, offset: 0x84D38, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xDB70, symBinAddr: 0x54CD0, symSize: 0x20 } - - { offsetInCU: 0x7471, offset: 0x84DA8, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xDB90, symBinAddr: 0x54CF0, symSize: 0x110 } - - { offsetInCU: 0x75EA, offset: 0x84F21, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDCA0, symBinAddr: 0x54E00, symSize: 0x1A0 } - - { offsetInCU: 0x778F, offset: 0x850C6, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xDE40, symBinAddr: 0x54FA0, symSize: 0x130 } - - { offsetInCU: 0x788F, offset: 0x851C6, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xDF70, symBinAddr: 0x550D0, symSize: 0x100 } - - { offsetInCU: 0x7ADB, offset: 0x85412, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xE070, symBinAddr: 0x551D0, symSize: 0x440 } - - { offsetInCU: 0x8108, offset: 0x85A3F, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xE4B0, symBinAddr: 0x55610, symSize: 0x2D0 } - - { offsetInCU: 0x8309, offset: 0x85C40, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xE780, symBinAddr: 0x558E0, symSize: 0x160 } - - { offsetInCU: 0x8499, offset: 0x85DD0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xE8E0, symBinAddr: 0x55A40, symSize: 0x200 } - - { offsetInCU: 0x8524, offset: 0x85E5B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xEAE0, symBinAddr: 0x55C40, symSize: 0x20 } - - { offsetInCU: 0x855D, offset: 0x85E94, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xEB00, symBinAddr: 0x55C60, symSize: 0x110 } - - { offsetInCU: 0x8613, offset: 0x85F4A, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x101A0, symBinAddr: 0x57300, symSize: 0x70 } - - { offsetInCU: 0x86BF, offset: 0x85FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x123F0, symBinAddr: 0x59550, symSize: 0xB50 } - - { offsetInCU: 0x8C3A, offset: 0x86571, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x12F40, symBinAddr: 0x5A0A0, symSize: 0x130 } - - { offsetInCU: 0x8DA6, offset: 0x866DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13070, symBinAddr: 0x5A1D0, symSize: 0x32B0 } - - { offsetInCU: 0x946C, offset: 0x86DA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x16320, symBinAddr: 0x5D480, symSize: 0x130 } - - { offsetInCU: 0x957D, offset: 0x86EB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x16450, symBinAddr: 0x5D5B0, symSize: 0x90 } - - { offsetInCU: 0x9600, offset: 0x86F37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x164E0, symBinAddr: 0x5D640, symSize: 0x7E0 } - - { offsetInCU: 0x99B0, offset: 0x872E7, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x16D30, symBinAddr: 0x5DE20, symSize: 0x20 } - - { offsetInCU: 0x99C4, offset: 0x872FB, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x16D50, symBinAddr: 0x5DE40, symSize: 0x20 } - - { offsetInCU: 0x99D8, offset: 0x8730F, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x16DA0, symBinAddr: 0x5DE60, symSize: 0x40 } - - { offsetInCU: 0x99EC, offset: 0x87323, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x16E60, symBinAddr: 0x5DEA0, symSize: 0x30 } - - { offsetInCU: 0x9A00, offset: 0x87337, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x16E90, symBinAddr: 0x5DED0, symSize: 0x30 } - - { offsetInCU: 0x9A14, offset: 0x8734B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOf', symObjAddr: 0x16EC0, symBinAddr: 0x5DF00, symSize: 0x40 } - - { offsetInCU: 0x9A28, offset: 0x8735F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x16F60, symBinAddr: 0x5DF70, symSize: 0x10 } - - { offsetInCU: 0x9A3C, offset: 0x87373, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16F70, symBinAddr: 0x5DF80, symSize: 0x20 } - - { offsetInCU: 0x9A50, offset: 0x87387, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x16F90, symBinAddr: 0x5DFA0, symSize: 0x10 } - - { offsetInCU: 0x9A64, offset: 0x8739B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x17020, symBinAddr: 0x5DFF0, symSize: 0x40 } - - { offsetInCU: 0x9ABC, offset: 0x873F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x170E0, symBinAddr: 0x5E0B0, symSize: 0x20 } - - { offsetInCU: 0x9AF8, offset: 0x8742F, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x17140, symBinAddr: 0x5E0D0, symSize: 0x30 } - - { offsetInCU: 0x9B27, offset: 0x8745E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x47170, symSize: 0x110 } - - { offsetInCU: 0x9B5D, offset: 0x87494, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x110, symBinAddr: 0x47280, symSize: 0x50 } - - { offsetInCU: 0x9C3D, offset: 0x87574, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x160, symBinAddr: 0x472D0, symSize: 0x90 } - - { offsetInCU: 0x9C60, offset: 0x87597, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x1F0, symBinAddr: 0x47360, symSize: 0xA0 } - - { offsetInCU: 0x9D71, offset: 0x876A8, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x290, symBinAddr: 0x47400, symSize: 0x90 } - - { offsetInCU: 0x9E6B, offset: 0x877A2, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x320, symBinAddr: 0x47490, symSize: 0x60 } - - { offsetInCU: 0x9EC7, offset: 0x877FE, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x380, symBinAddr: 0x474F0, symSize: 0x10 } - - { offsetInCU: 0x9EEF, offset: 0x87826, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3A0, symBinAddr: 0x47500, symSize: 0xE0 } - - { offsetInCU: 0x62, offset: 0x8823D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x5E210, symSize: 0x20 } - - { offsetInCU: 0x8B, offset: 0x88266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1000, symBinAddr: 0x5F210, symSize: 0x10 } - - { offsetInCU: 0xB6, offset: 0x88291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1010, symBinAddr: 0x5F220, symSize: 0x20 } - - { offsetInCU: 0xE7, offset: 0x882C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1030, symBinAddr: 0x5F240, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x882DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1040, symBinAddr: 0x5F250, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x882FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B80, symBinAddr: 0x64CD0, symSize: 0xE0 } - - { offsetInCU: 0x165, offset: 0x88340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x5E230, symSize: 0x190 } - - { offsetInCU: 0x1BA, offset: 0x88395, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1090, symBinAddr: 0x5F2A0, symSize: 0x50 } - - { offsetInCU: 0x1F1, offset: 0x883CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E0, symBinAddr: 0x5F2F0, symSize: 0x50 } - - { offsetInCU: 0x214, offset: 0x883EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6C60, symBinAddr: 0x64DB0, symSize: 0x13C0 } - - { offsetInCU: 0x265, offset: 0x88440, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x1B0, symBinAddr: 0x5E3C0, symSize: 0x20 } - - { offsetInCU: 0x2B2, offset: 0x8848D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1130, symBinAddr: 0x5F340, symSize: 0x10 } - - { offsetInCU: 0x310, offset: 0x884EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1150, symBinAddr: 0x5F360, symSize: 0x20 } - - { offsetInCU: 0x38A, offset: 0x88565, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1180, symBinAddr: 0x5F390, symSize: 0x10 } - - { offsetInCU: 0x3B5, offset: 0x88590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1190, symBinAddr: 0x5F3A0, symSize: 0x20 } - - { offsetInCU: 0x3E6, offset: 0x885C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x11B0, symBinAddr: 0x5F3C0, symSize: 0x10 } - - { offsetInCU: 0x402, offset: 0x885DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11C0, symBinAddr: 0x5F3D0, symSize: 0x10 } - - { offsetInCU: 0x41E, offset: 0x885F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8A90, symBinAddr: 0x66200, symSize: 0x190 } - - { offsetInCU: 0x464, offset: 0x8863F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D0, symBinAddr: 0x5E3E0, symSize: 0x2B0 } - - { offsetInCU: 0x4B9, offset: 0x88694, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1210, symBinAddr: 0x5F420, symSize: 0x50 } - - { offsetInCU: 0x4F0, offset: 0x886CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1260, symBinAddr: 0x5F470, symSize: 0x50 } - - { offsetInCU: 0x513, offset: 0x886EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8C20, symBinAddr: 0x66390, symSize: 0x1180 } - - { offsetInCU: 0x55D, offset: 0x88738, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x480, symBinAddr: 0x5E690, symSize: 0x20 } - - { offsetInCU: 0x594, offset: 0x8876F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x4A0, symBinAddr: 0x5E6B0, symSize: 0x20 } - - { offsetInCU: 0x612, offset: 0x887ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x12F0, symBinAddr: 0x5F500, symSize: 0x70 } - - { offsetInCU: 0x678, offset: 0x88853, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1360, symBinAddr: 0x5F570, symSize: 0x30 } - - { offsetInCU: 0x694, offset: 0x8886F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5F5A0, symSize: 0x10 } - - { offsetInCU: 0x6CA, offset: 0x888A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A0, symBinAddr: 0x5F5B0, symSize: 0x60 } - - { offsetInCU: 0x74F, offset: 0x8892A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1400, symBinAddr: 0x5F610, symSize: 0x10 } - - { offsetInCU: 0x76B, offset: 0x88946, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1410, symBinAddr: 0x5F620, symSize: 0x10 } - - { offsetInCU: 0x788, offset: 0x88963, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x4C0, symBinAddr: 0x5E6D0, symSize: 0x190 } - - { offsetInCU: 0x7DD, offset: 0x889B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1460, symBinAddr: 0x5F670, symSize: 0x50 } - - { offsetInCU: 0x814, offset: 0x889EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x14B0, symBinAddr: 0x5F6C0, symSize: 0x50 } - - { offsetInCU: 0x837, offset: 0x88A12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9EF0, symBinAddr: 0x67660, symSize: 0x210 } - - { offsetInCU: 0x887, offset: 0x88A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x650, symBinAddr: 0x5E860, symSize: 0x20 } - - { offsetInCU: 0x8B0, offset: 0x88A8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1500, symBinAddr: 0x5F710, symSize: 0x10 } - - { offsetInCU: 0x8DB, offset: 0x88AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1510, symBinAddr: 0x5F720, symSize: 0x20 } - - { offsetInCU: 0x90C, offset: 0x88AE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1530, symBinAddr: 0x5F740, symSize: 0x10 } - - { offsetInCU: 0x928, offset: 0x88B03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1540, symBinAddr: 0x5F750, symSize: 0x10 } - - { offsetInCU: 0x944, offset: 0x88B1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA100, symBinAddr: 0x67870, symSize: 0x240 } - - { offsetInCU: 0x98A, offset: 0x88B65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x670, symBinAddr: 0x5E880, symSize: 0x2A0 } - - { offsetInCU: 0x9DF, offset: 0x88BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1590, symBinAddr: 0x5F7A0, symSize: 0x50 } - - { offsetInCU: 0xA16, offset: 0x88BF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15E0, symBinAddr: 0x5F7F0, symSize: 0x50 } - - { offsetInCU: 0xA39, offset: 0x88C14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA340, symBinAddr: 0x67AB0, symSize: 0x5E0 } - - { offsetInCU: 0xA89, offset: 0x88C64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x910, symBinAddr: 0x5EB20, symSize: 0x30 } - - { offsetInCU: 0xAD8, offset: 0x88CB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1630, symBinAddr: 0x5F840, symSize: 0x10 } - - { offsetInCU: 0xB61, offset: 0x88D3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1640, symBinAddr: 0x5F850, symSize: 0x40 } - - { offsetInCU: 0xC45, offset: 0x88E20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1680, symBinAddr: 0x5F890, symSize: 0x20 } - - { offsetInCU: 0xCB7, offset: 0x88E92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x5F8F0, symSize: 0x10 } - - { offsetInCU: 0xCE2, offset: 0x88EBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x5F900, symSize: 0x20 } - - { offsetInCU: 0xD13, offset: 0x88EEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1710, symBinAddr: 0x5F920, symSize: 0x10 } - - { offsetInCU: 0xD2F, offset: 0x88F0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1720, symBinAddr: 0x5F930, symSize: 0x10 } - - { offsetInCU: 0xD4B, offset: 0x88F26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA920, symBinAddr: 0x68090, symSize: 0xA0 } - - { offsetInCU: 0xD91, offset: 0x88F6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x940, symBinAddr: 0x5EB50, symSize: 0x110 } - - { offsetInCU: 0xDE6, offset: 0x88FC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5F980, symSize: 0x30 } - - { offsetInCU: 0xE1D, offset: 0x88FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x5F9B0, symSize: 0x20 } - - { offsetInCU: 0xE40, offset: 0x8901B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA9C0, symBinAddr: 0x68130, symSize: 0x180 } - - { offsetInCU: 0xE91, offset: 0x8906C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0xA50, symBinAddr: 0x5EC60, symSize: 0x20 } - - { offsetInCU: 0xEBA, offset: 0x89095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x5FA50, symSize: 0x10 } - - { offsetInCU: 0xEE5, offset: 0x890C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x5FA60, symSize: 0x20 } - - { offsetInCU: 0xF16, offset: 0x890F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x5FA80, symSize: 0x10 } - - { offsetInCU: 0xF32, offset: 0x8910D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x5FA90, symSize: 0x10 } - - { offsetInCU: 0xF4E, offset: 0x89129, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAB40, symBinAddr: 0x682B0, symSize: 0x1E0 } - - { offsetInCU: 0xF94, offset: 0x8916F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA70, symBinAddr: 0x5EC80, symSize: 0x250 } - - { offsetInCU: 0xFE9, offset: 0x891C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x5FAE0, symSize: 0x50 } - - { offsetInCU: 0x1020, offset: 0x891FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1920, symBinAddr: 0x5FB30, symSize: 0x50 } - - { offsetInCU: 0x1043, offset: 0x8921E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAD20, symBinAddr: 0x68490, symSize: 0x840 } - - { offsetInCU: 0x108D, offset: 0x89268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xCC0, symBinAddr: 0x5EED0, symSize: 0x20 } - - { offsetInCU: 0x10C4, offset: 0x8929F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCE0, symBinAddr: 0x5EEF0, symSize: 0x20 } - - { offsetInCU: 0x1137, offset: 0x89312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5FCD0, symSize: 0x40 } - - { offsetInCU: 0x117D, offset: 0x89358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5FD10, symSize: 0x30 } - - { offsetInCU: 0x1191, offset: 0x8936C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1B30, symBinAddr: 0x5FD40, symSize: 0x10 } - - { offsetInCU: 0x11C7, offset: 0x893A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5FD50, symSize: 0x30 } - - { offsetInCU: 0x122C, offset: 0x89407, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1B70, symBinAddr: 0x5FD80, symSize: 0x10 } - - { offsetInCU: 0x1248, offset: 0x89423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B80, symBinAddr: 0x5FD90, symSize: 0x10 } - - { offsetInCU: 0x1264, offset: 0x8943F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xB5F0, symBinAddr: 0x68D60, symSize: 0x50 } - - { offsetInCU: 0x1290, offset: 0x8946B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x5EF10, symSize: 0x2E0 } - - { offsetInCU: 0x12E5, offset: 0x894C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x5FDE0, symSize: 0x50 } - - { offsetInCU: 0x131C, offset: 0x894F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C20, symBinAddr: 0x5FE30, symSize: 0x50 } - - { offsetInCU: 0x133F, offset: 0x8951A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB640, symBinAddr: 0x68DB0, symSize: 0x950 } - - { offsetInCU: 0x13B4, offset: 0x8958F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1C70, symBinAddr: 0x5FE80, symSize: 0x1D0 } - - { offsetInCU: 0x1410, offset: 0x895EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x1E40, symBinAddr: 0x60050, symSize: 0x20 } - - { offsetInCU: 0x1455, offset: 0x89630, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6930, symBinAddr: 0x64B20, symSize: 0x50 } - - { offsetInCU: 0x14C0, offset: 0x8969B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6980, symBinAddr: 0x64B70, symSize: 0x80 } - - { offsetInCU: 0x1514, offset: 0x896EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6A00, symBinAddr: 0x64BF0, symSize: 0x10 } - - { offsetInCU: 0x154A, offset: 0x89725, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6A10, symBinAddr: 0x64C00, symSize: 0x20 } - - { offsetInCU: 0x15CB, offset: 0x897A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6A60, symBinAddr: 0x64C50, symSize: 0x10 } - - { offsetInCU: 0x15E8, offset: 0x897C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x1E60, symBinAddr: 0x60070, symSize: 0x20 } - - { offsetInCU: 0x15FC, offset: 0x897D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x1E80, symBinAddr: 0x60090, symSize: 0x140 } - - { offsetInCU: 0x1610, offset: 0x897EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x1FC0, symBinAddr: 0x601D0, symSize: 0x500 } - - { offsetInCU: 0x1624, offset: 0x897FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x24C0, symBinAddr: 0x606D0, symSize: 0xED0 } - - { offsetInCU: 0x163F, offset: 0x8981A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x3390, symBinAddr: 0x615A0, symSize: 0x30 } - - { offsetInCU: 0x1668, offset: 0x89843, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x33C0, symBinAddr: 0x615D0, symSize: 0x20 } - - { offsetInCU: 0x167C, offset: 0x89857, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x33E0, symBinAddr: 0x615F0, symSize: 0x20 } - - { offsetInCU: 0x1690, offset: 0x8986B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x3400, symBinAddr: 0x61610, symSize: 0x20 } - - { offsetInCU: 0x16A4, offset: 0x8987F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x3420, symBinAddr: 0x61630, symSize: 0x20 } - - { offsetInCU: 0x16B8, offset: 0x89893, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3440, symBinAddr: 0x61650, symSize: 0x10 } - - { offsetInCU: 0x16CC, offset: 0x898A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x3450, symBinAddr: 0x61660, symSize: 0x580 } - - { offsetInCU: 0x16E0, offset: 0x898BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x39D0, symBinAddr: 0x61BE0, symSize: 0x50 } - - { offsetInCU: 0x16F4, offset: 0x898CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3A20, symBinAddr: 0x61C30, symSize: 0x140 } - - { offsetInCU: 0x1708, offset: 0x898E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x3B60, symBinAddr: 0x61D70, symSize: 0x10 } - - { offsetInCU: 0x171C, offset: 0x898F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3B70, symBinAddr: 0x61D80, symSize: 0x30 } - - { offsetInCU: 0x1730, offset: 0x8990B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x3BA0, symBinAddr: 0x61DB0, symSize: 0x120 } - - { offsetInCU: 0x1744, offset: 0x8991F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x3CC0, symBinAddr: 0x61ED0, symSize: 0x480 } - - { offsetInCU: 0x1758, offset: 0x89933, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x4140, symBinAddr: 0x62350, symSize: 0x9D0 } - - { offsetInCU: 0x176C, offset: 0x89947, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4B10, symBinAddr: 0x62D20, symSize: 0x10 } - - { offsetInCU: 0x1780, offset: 0x8995B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4B20, symBinAddr: 0x62D30, symSize: 0x500 } - - { offsetInCU: 0x1794, offset: 0x8996F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x5020, symBinAddr: 0x63230, symSize: 0x50 } - - { offsetInCU: 0x17A8, offset: 0x89983, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x5070, symBinAddr: 0x63280, symSize: 0x130 } - - { offsetInCU: 0x17BC, offset: 0x89997, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x51A0, symBinAddr: 0x633B0, symSize: 0x10 } - - { offsetInCU: 0x17D0, offset: 0x899AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x51B0, symBinAddr: 0x633C0, symSize: 0xC0 } - - { offsetInCU: 0x17E4, offset: 0x899BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x5270, symBinAddr: 0x63480, symSize: 0x240 } - - { offsetInCU: 0x17F8, offset: 0x899D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x54B0, symBinAddr: 0x636C0, symSize: 0x450 } - - { offsetInCU: 0x180C, offset: 0x899E7, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5900, symBinAddr: 0x63B10, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x899FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x5910, symBinAddr: 0x63B20, symSize: 0x250 } - - { offsetInCU: 0x1834, offset: 0x89A0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x5B60, symBinAddr: 0x63D70, symSize: 0x50 } - - { offsetInCU: 0x1848, offset: 0x89A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x5BB0, symBinAddr: 0x63DC0, symSize: 0xA0 } - - { offsetInCU: 0x185C, offset: 0x89A37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x5C50, symBinAddr: 0x63E60, symSize: 0x10 } - - { offsetInCU: 0x1870, offset: 0x89A4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x5C60, symBinAddr: 0x63E70, symSize: 0x70 } - - { offsetInCU: 0x1884, offset: 0x89A5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x5CD0, symBinAddr: 0x63EE0, symSize: 0x150 } - - { offsetInCU: 0x1898, offset: 0x89A73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x5E20, symBinAddr: 0x64030, symSize: 0x190 } - - { offsetInCU: 0x18AC, offset: 0x89A87, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5FB0, symBinAddr: 0x641C0, symSize: 0x10 } - - { offsetInCU: 0x18C0, offset: 0x89A9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5FC0, symBinAddr: 0x641D0, symSize: 0x130 } - - { offsetInCU: 0x18D4, offset: 0x89AAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x60F0, symBinAddr: 0x64300, symSize: 0x50 } - - { offsetInCU: 0x18E8, offset: 0x89AC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x6140, symBinAddr: 0x64350, symSize: 0x80 } - - { offsetInCU: 0x18FC, offset: 0x89AD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x61C0, symBinAddr: 0x643D0, symSize: 0x10 } - - { offsetInCU: 0x1910, offset: 0x89AEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x61D0, symBinAddr: 0x643E0, symSize: 0x50 } - - { offsetInCU: 0x1924, offset: 0x89AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x6220, symBinAddr: 0x64430, symSize: 0x120 } - - { offsetInCU: 0x1938, offset: 0x89B13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x6340, symBinAddr: 0x64550, symSize: 0x1C0 } - - { offsetInCU: 0x194C, offset: 0x89B27, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6500, symBinAddr: 0x64710, symSize: 0x10 } - - { offsetInCU: 0x1960, offset: 0x89B3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x6510, symBinAddr: 0x64720, symSize: 0x150 } - - { offsetInCU: 0x1974, offset: 0x89B4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x6660, symBinAddr: 0x64870, symSize: 0x50 } - - { offsetInCU: 0x1988, offset: 0x89B63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x66B0, symBinAddr: 0x648C0, symSize: 0x80 } - - { offsetInCU: 0x199C, offset: 0x89B77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x6730, symBinAddr: 0x64940, symSize: 0x10 } - - { offsetInCU: 0x19B0, offset: 0x89B8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x6740, symBinAddr: 0x64950, symSize: 0x30 } - - { offsetInCU: 0x19C4, offset: 0x89B9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x6770, symBinAddr: 0x64980, symSize: 0x40 } - - { offsetInCU: 0x19D8, offset: 0x89BB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x67B0, symBinAddr: 0x649C0, symSize: 0x60 } - - { offsetInCU: 0x19EC, offset: 0x89BC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x6830, symBinAddr: 0x64A20, symSize: 0x50 } - - { offsetInCU: 0x1A00, offset: 0x89BDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x6880, symBinAddr: 0x64A70, symSize: 0x50 } - - { offsetInCU: 0x1A14, offset: 0x89BEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x68D0, symBinAddr: 0x64AC0, symSize: 0x50 } - - { offsetInCU: 0x1A28, offset: 0x89C03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x6920, symBinAddr: 0x64B10, symSize: 0x10 } - - { offsetInCU: 0x1A3C, offset: 0x89C17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x6A70, symBinAddr: 0x64C60, symSize: 0x10 } - - { offsetInCU: 0x1A50, offset: 0x89C2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x6A80, symBinAddr: 0x64C70, symSize: 0x30 } - - { offsetInCU: 0x1A64, offset: 0x89C3F, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6B50, symBinAddr: 0x64CA0, symSize: 0x30 } - - { offsetInCU: 0x1A78, offset: 0x89C53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x8020, symBinAddr: 0x66170, symSize: 0x30 } - - { offsetInCU: 0x1A8C, offset: 0x89C67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x8050, symBinAddr: 0x661A0, symSize: 0x30 } - - { offsetInCU: 0x1AA0, offset: 0x89C7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x8A60, symBinAddr: 0x661D0, symSize: 0x30 } - - { offsetInCU: 0x1AB4, offset: 0x89C8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x9DA0, symBinAddr: 0x67510, symSize: 0x30 } - - { offsetInCU: 0x1AC8, offset: 0x89CA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x67540, symSize: 0x30 } - - { offsetInCU: 0x1ADC, offset: 0x89CB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x9E00, symBinAddr: 0x67570, symSize: 0x30 } - - { offsetInCU: 0x1AF0, offset: 0x89CCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x9E30, symBinAddr: 0x675A0, symSize: 0x30 } - - { offsetInCU: 0x1B04, offset: 0x89CDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x9E60, symBinAddr: 0x675D0, symSize: 0x30 } - - { offsetInCU: 0x1B18, offset: 0x89CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x9E90, symBinAddr: 0x67600, symSize: 0x30 } - - { offsetInCU: 0x1B2C, offset: 0x89D07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x9EC0, symBinAddr: 0x67630, symSize: 0x30 } - - { offsetInCU: 0x1B40, offset: 0x89D1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xB560, symBinAddr: 0x68CD0, symSize: 0x30 } - - { offsetInCU: 0x1B54, offset: 0x89D2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xB590, symBinAddr: 0x68D00, symSize: 0x30 } - - { offsetInCU: 0x1B68, offset: 0x89D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xB5C0, symBinAddr: 0x68D30, symSize: 0x30 } - - { offsetInCU: 0x1B7C, offset: 0x89D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xBF90, symBinAddr: 0x69700, symSize: 0x30 } - - { offsetInCU: 0x1B90, offset: 0x89D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xBFC0, symBinAddr: 0x69730, symSize: 0x30 } - - { offsetInCU: 0x1BA4, offset: 0x89D7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xBFF0, symBinAddr: 0x69760, symSize: 0x30 } - - { offsetInCU: 0x1BB8, offset: 0x89D93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xC050, symBinAddr: 0x697C0, symSize: 0x30 } - - { offsetInCU: 0x1BCC, offset: 0x89DA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xC080, symBinAddr: 0x697F0, symSize: 0x30 } - - { offsetInCU: 0x1BE0, offset: 0x89DBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC0D0, symBinAddr: 0x69820, symSize: 0x80 } - - { offsetInCU: 0x1BF4, offset: 0x89DCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC150, symBinAddr: 0x698A0, symSize: 0xD0 } - - { offsetInCU: 0x1C08, offset: 0x89DE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xC220, symBinAddr: 0x69970, symSize: 0x10 } - - { offsetInCU: 0x1C1C, offset: 0x89DF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC230, symBinAddr: 0x69980, symSize: 0x10 } - - { offsetInCU: 0x1C30, offset: 0x89E0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xC240, symBinAddr: 0x69990, symSize: 0x10 } - - { offsetInCU: 0x1C44, offset: 0x89E1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC250, symBinAddr: 0x699A0, symSize: 0x10 } - - { offsetInCU: 0x1C58, offset: 0x89E33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC260, symBinAddr: 0x699B0, symSize: 0x80 } - - { offsetInCU: 0x1C6C, offset: 0x89E47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC2E0, symBinAddr: 0x69A30, symSize: 0xD0 } - - { offsetInCU: 0x1C80, offset: 0x89E5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC3B0, symBinAddr: 0x69B00, symSize: 0x10 } - - { offsetInCU: 0x1C94, offset: 0x89E6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC3C0, symBinAddr: 0x69B10, symSize: 0x10 } - - { offsetInCU: 0x1CA8, offset: 0x89E83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xC3D0, symBinAddr: 0x69B20, symSize: 0x80 } - - { offsetInCU: 0x1CBC, offset: 0x89E97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xC450, symBinAddr: 0x69BA0, symSize: 0xD0 } - - { offsetInCU: 0x1CD0, offset: 0x89EAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xC520, symBinAddr: 0x69C70, symSize: 0x10 } - - { offsetInCU: 0x1CE4, offset: 0x89EBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xC530, symBinAddr: 0x69C80, symSize: 0x10 } - - { offsetInCU: 0x1CF8, offset: 0x89ED3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC540, symBinAddr: 0x69C90, symSize: 0x80 } - - { offsetInCU: 0x1D0C, offset: 0x89EE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC5C0, symBinAddr: 0x69D10, symSize: 0xD0 } - - { offsetInCU: 0x1D20, offset: 0x89EFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC690, symBinAddr: 0x69DE0, symSize: 0x10 } - - { offsetInCU: 0x1D34, offset: 0x89F0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC6A0, symBinAddr: 0x69DF0, symSize: 0x10 } - - { offsetInCU: 0x1D48, offset: 0x89F23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC6B0, symBinAddr: 0x69E00, symSize: 0x80 } - - { offsetInCU: 0x1D5C, offset: 0x89F37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC730, symBinAddr: 0x69E80, symSize: 0xD0 } - - { offsetInCU: 0x1D70, offset: 0x89F4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xC800, symBinAddr: 0x69F50, symSize: 0x10 } - - { offsetInCU: 0x1D84, offset: 0x89F5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC810, symBinAddr: 0x69F60, symSize: 0x10 } - - { offsetInCU: 0x1D98, offset: 0x89F73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xC820, symBinAddr: 0x69F70, symSize: 0x10 } - - { offsetInCU: 0x1DAC, offset: 0x89F87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC830, symBinAddr: 0x69F80, symSize: 0x10 } - - { offsetInCU: 0x1DC0, offset: 0x89F9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC840, symBinAddr: 0x69F90, symSize: 0x80 } - - { offsetInCU: 0x1DD4, offset: 0x89FAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC8C0, symBinAddr: 0x6A010, symSize: 0xD0 } - - { offsetInCU: 0x1DE8, offset: 0x89FC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC990, symBinAddr: 0x6A0E0, symSize: 0x10 } - - { offsetInCU: 0x1DFC, offset: 0x89FD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC9A0, symBinAddr: 0x6A0F0, symSize: 0x10 } - - { offsetInCU: 0x1E10, offset: 0x89FEB, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xC9B0, symBinAddr: 0x6A100, symSize: 0x30 } - - { offsetInCU: 0x1E24, offset: 0x89FFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xC9E0, symBinAddr: 0x6A130, symSize: 0x20 } - - { offsetInCU: 0x1E38, offset: 0x8A013, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xCA00, symBinAddr: 0x6A150, symSize: 0x40 } - - { offsetInCU: 0x1E4C, offset: 0x8A027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xCA40, symBinAddr: 0x6A190, symSize: 0x10 } - - { offsetInCU: 0x1E60, offset: 0x8A03B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCA50, symBinAddr: 0x6A1A0, symSize: 0x10 } - - { offsetInCU: 0x1E74, offset: 0x8A04F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCA60, symBinAddr: 0x6A1B0, symSize: 0x30 } - - { offsetInCU: 0x1E88, offset: 0x8A063, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCA90, symBinAddr: 0x6A1E0, symSize: 0x10 } - - { offsetInCU: 0x1E9C, offset: 0x8A077, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCAA0, symBinAddr: 0x6A1F0, symSize: 0x30 } - - { offsetInCU: 0x1EB0, offset: 0x8A08B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCAD0, symBinAddr: 0x6A220, symSize: 0x10 } - - { offsetInCU: 0x1EC4, offset: 0x8A09F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCAE0, symBinAddr: 0x6A230, symSize: 0x30 } - - { offsetInCU: 0x1ED8, offset: 0x8A0B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xCB10, symBinAddr: 0x6A260, symSize: 0x10 } - - { offsetInCU: 0x1EEC, offset: 0x8A0C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xCB20, symBinAddr: 0x6A270, symSize: 0x30 } - - { offsetInCU: 0x1F00, offset: 0x8A0DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCB50, symBinAddr: 0x6A2A0, symSize: 0x10 } - - { offsetInCU: 0x1F14, offset: 0x8A0EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCB60, symBinAddr: 0x6A2B0, symSize: 0x30 } - - { offsetInCU: 0x1F28, offset: 0x8A103, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCB90, symBinAddr: 0x6A2E0, symSize: 0x10 } - - { offsetInCU: 0x1F3C, offset: 0x8A117, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCBA0, symBinAddr: 0x6A2F0, symSize: 0x30 } - - { offsetInCU: 0x1F50, offset: 0x8A12B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCBD0, symBinAddr: 0x6A320, symSize: 0x10 } - - { offsetInCU: 0x1F64, offset: 0x8A13F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCBE0, symBinAddr: 0x6A330, symSize: 0x30 } - - { offsetInCU: 0x1F78, offset: 0x8A153, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC10, symBinAddr: 0x6A360, symSize: 0x10 } - - { offsetInCU: 0x1F8C, offset: 0x8A167, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCC20, symBinAddr: 0x6A370, symSize: 0x30 } - - { offsetInCU: 0x1FA0, offset: 0x8A17B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCC50, symBinAddr: 0x6A3A0, symSize: 0x10 } - - { offsetInCU: 0x1FB4, offset: 0x8A18F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCC60, symBinAddr: 0x6A3B0, symSize: 0x30 } - - { offsetInCU: 0x1FC8, offset: 0x8A1A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC90, symBinAddr: 0x6A3E0, symSize: 0x10 } - - { offsetInCU: 0x1FDC, offset: 0x8A1B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCCA0, symBinAddr: 0x6A3F0, symSize: 0x30 } - - { offsetInCU: 0x1FF0, offset: 0x8A1CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCCD0, symBinAddr: 0x6A420, symSize: 0x10 } - - { offsetInCU: 0x2004, offset: 0x8A1DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCCE0, symBinAddr: 0x6A430, symSize: 0x30 } - - { offsetInCU: 0x2018, offset: 0x8A1F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD10, symBinAddr: 0x6A460, symSize: 0x10 } - - { offsetInCU: 0x202C, offset: 0x8A207, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xCD20, symBinAddr: 0x6A470, symSize: 0x30 } - - { offsetInCU: 0x2040, offset: 0x8A21B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCD50, symBinAddr: 0x6A4A0, symSize: 0x10 } - - { offsetInCU: 0x2054, offset: 0x8A22F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCD60, symBinAddr: 0x6A4B0, symSize: 0x30 } - - { offsetInCU: 0x2068, offset: 0x8A243, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD90, symBinAddr: 0x6A4E0, symSize: 0x10 } - - { offsetInCU: 0x207C, offset: 0x8A257, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCDA0, symBinAddr: 0x6A4F0, symSize: 0x30 } - - { offsetInCU: 0x2090, offset: 0x8A26B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCDD0, symBinAddr: 0x6A520, symSize: 0x10 } - - { offsetInCU: 0x20A4, offset: 0x8A27F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCDE0, symBinAddr: 0x6A530, symSize: 0x30 } - - { offsetInCU: 0x20B8, offset: 0x8A293, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE10, symBinAddr: 0x6A560, symSize: 0x10 } - - { offsetInCU: 0x20CC, offset: 0x8A2A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCE20, symBinAddr: 0x6A570, symSize: 0x30 } - - { offsetInCU: 0x20E0, offset: 0x8A2BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCE50, symBinAddr: 0x6A5A0, symSize: 0x10 } - - { offsetInCU: 0x20F4, offset: 0x8A2CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCE60, symBinAddr: 0x6A5B0, symSize: 0x30 } - - { offsetInCU: 0x2108, offset: 0x8A2E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE90, symBinAddr: 0x6A5E0, symSize: 0x10 } - - { offsetInCU: 0x211C, offset: 0x8A2F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCEA0, symBinAddr: 0x6A5F0, symSize: 0x30 } - - { offsetInCU: 0x2130, offset: 0x8A30B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xCED0, symBinAddr: 0x6A620, symSize: 0x30 } - - { offsetInCU: 0x2144, offset: 0x8A31F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xCF00, symBinAddr: 0x6A650, symSize: 0x80 } - - { offsetInCU: 0x2158, offset: 0x8A333, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xCF80, symBinAddr: 0x6A6D0, symSize: 0xD0 } - - { offsetInCU: 0x216C, offset: 0x8A347, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xD050, symBinAddr: 0x6A7A0, symSize: 0x10 } - - { offsetInCU: 0x2180, offset: 0x8A35B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xD060, symBinAddr: 0x6A7B0, symSize: 0x10 } - - { offsetInCU: 0x2194, offset: 0x8A36F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD070, symBinAddr: 0x6A7C0, symSize: 0x10 } - - { offsetInCU: 0x21A8, offset: 0x8A383, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD080, symBinAddr: 0x6A7D0, symSize: 0x30 } - - { offsetInCU: 0x21BC, offset: 0x8A397, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD0B0, symBinAddr: 0x6A800, symSize: 0x10 } - - { offsetInCU: 0x21D0, offset: 0x8A3AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD0C0, symBinAddr: 0x6A810, symSize: 0x30 } - - { offsetInCU: 0x21E4, offset: 0x8A3BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD0F0, symBinAddr: 0x6A840, symSize: 0x10 } - - { offsetInCU: 0x21F8, offset: 0x8A3D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD100, symBinAddr: 0x6A850, symSize: 0x30 } - - { offsetInCU: 0x2226, offset: 0x8A401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1050, symBinAddr: 0x5F260, symSize: 0x20 } - - { offsetInCU: 0x2242, offset: 0x8A41D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1070, symBinAddr: 0x5F280, symSize: 0x20 } - - { offsetInCU: 0x2264, offset: 0x8A43F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11D0, symBinAddr: 0x5F3E0, symSize: 0x20 } - - { offsetInCU: 0x2280, offset: 0x8A45B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11F0, symBinAddr: 0x5F400, symSize: 0x20 } - - { offsetInCU: 0x229C, offset: 0x8A477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x12B0, symBinAddr: 0x5F4C0, symSize: 0x10 } - - { offsetInCU: 0x22B8, offset: 0x8A493, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12C0, symBinAddr: 0x5F4D0, symSize: 0x10 } - - { offsetInCU: 0x22D4, offset: 0x8A4AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x12D0, symBinAddr: 0x5F4E0, symSize: 0x10 } - - { offsetInCU: 0x22F0, offset: 0x8A4CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x12E0, symBinAddr: 0x5F4F0, symSize: 0x10 } - - { offsetInCU: 0x2312, offset: 0x8A4ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1420, symBinAddr: 0x5F630, symSize: 0x20 } - - { offsetInCU: 0x232E, offset: 0x8A509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1440, symBinAddr: 0x5F650, symSize: 0x20 } - - { offsetInCU: 0x2350, offset: 0x8A52B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1550, symBinAddr: 0x5F760, symSize: 0x20 } - - { offsetInCU: 0x236C, offset: 0x8A547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x5F780, symSize: 0x20 } - - { offsetInCU: 0x23B5, offset: 0x8A590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x16A0, symBinAddr: 0x5F8B0, symSize: 0x40 } - - { offsetInCU: 0x2458, offset: 0x8A633, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1730, symBinAddr: 0x5F940, symSize: 0x20 } - - { offsetInCU: 0x2474, offset: 0x8A64F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x5F960, symSize: 0x20 } - - { offsetInCU: 0x2496, offset: 0x8A671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x5FAA0, symSize: 0x20 } - - { offsetInCU: 0x24B2, offset: 0x8A68D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5FAC0, symSize: 0x20 } - - { offsetInCU: 0x24EC, offset: 0x8A6C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1970, symBinAddr: 0x5FB80, symSize: 0x80 } - - { offsetInCU: 0x25BB, offset: 0x8A796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5FC00, symSize: 0x50 } - - { offsetInCU: 0x2639, offset: 0x8A814, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A40, symBinAddr: 0x5FC50, symSize: 0x30 } - - { offsetInCU: 0x268B, offset: 0x8A866, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A70, symBinAddr: 0x5FC80, symSize: 0x50 } - - { offsetInCU: 0x26ED, offset: 0x8A8C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1B90, symBinAddr: 0x5FDA0, symSize: 0x20 } - - { offsetInCU: 0x2709, offset: 0x8A8E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x5FDC0, symSize: 0x20 } - - { offsetInCU: 0x2740, offset: 0x8A91B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6A30, symBinAddr: 0x64C20, symSize: 0x30 } - - { offsetInCU: 0x27, offset: 0x8AB25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6AA20, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x8AB49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6AA20, symSize: 0x10 } - - { offsetInCU: 0x69, offset: 0x8AB67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x6AA30, symSize: 0x10 } - - { offsetInCU: 0xA5, offset: 0x8ABA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x6AA40, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8ABC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x6AA50, symSize: 0x10 } - - { offsetInCU: 0xEE, offset: 0x8ABEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x6AA60, symSize: 0x10 } - - { offsetInCU: 0x10C, offset: 0x8AC0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x6AA70, symSize: 0x10 } - - { offsetInCU: 0x148, offset: 0x8AC46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x6AA80, symSize: 0x20 } - - { offsetInCU: 0x176, offset: 0x8AC74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x6AAA0, symSize: 0x10 } - - { offsetInCU: 0x1A1, offset: 0x8AC9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x6AAB0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x8ACBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x6AAC0, symSize: 0x10 } - - { offsetInCU: 0x1FD, offset: 0x8ACFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x6AAD0, symSize: 0x20 } - - { offsetInCU: 0x22B, offset: 0x8AD29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x6AAF0, symSize: 0x10 } - - { offsetInCU: 0x257, offset: 0x8AD55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x6AB00, symSize: 0x40 } - - { offsetInCU: 0x26B, offset: 0x8AD69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x6AB40, symSize: 0x50 } - - { offsetInCU: 0x27F, offset: 0x8AD7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x6AB90, symSize: 0xA } - - { offsetInCU: 0x2B, offset: 0x8AE99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6ABA0, symSize: 0x30 } - - { offsetInCU: 0x6D, offset: 0x8AEDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6ABA0, symSize: 0x30 } - - { offsetInCU: 0xB9, offset: 0x8AF27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x6ABD0, symSize: 0x14 } - - { offsetInCU: 0x27, offset: 0x8B040, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6ABF0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B082, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6ABF0, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8B0CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6AC10, symSize: 0x14 } - - { offsetInCU: 0x2B, offset: 0x8B1EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6AC30, symSize: 0x50 } - - { offsetInCU: 0x6D, offset: 0x8B22D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6AC30, symSize: 0x50 } - - { offsetInCU: 0xB9, offset: 0x8B279, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x6AC80, symSize: 0x10 } - - { offsetInCU: 0xCD, offset: 0x8B28D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x6AC90, symSize: 0x30 } - - { offsetInCU: 0xE1, offset: 0x8B2A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x6ACC0, symSize: 0x69 } - - { offsetInCU: 0x27, offset: 0x8B3BA, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AD30, symSize: 0x430 } - - { offsetInCU: 0xD9, offset: 0x8B46C, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AD30, symSize: 0x430 } - - { offsetInCU: 0x2B2, offset: 0x8B645, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x6B160, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x8B7EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B1A0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B831, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B1A0, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8B87D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6B1C0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x8B9BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x6B1E0, symSize: 0x70 } - - { offsetInCU: 0x7A, offset: 0x8B9E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x6B280, symSize: 0x30 } - - { offsetInCU: 0xBE, offset: 0x8BA2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x9D0, symBinAddr: 0x6BB70, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8BA9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA50, symBinAddr: 0x6BBF0, symSize: 0x20 } - - { offsetInCU: 0x149, offset: 0x8BAB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA70, symBinAddr: 0x6BC10, symSize: 0x20 } - - { offsetInCU: 0x177, offset: 0x8BAE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xA90, symBinAddr: 0x6BC30, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8BB78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x6B250, symSize: 0x30 } - - { offsetInCU: 0x230, offset: 0x8BB9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAE0, symBinAddr: 0x6BC80, symSize: 0x70 } - - { offsetInCU: 0x25B, offset: 0x8BBCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB90, symBinAddr: 0x6BD30, symSize: 0x20 } - - { offsetInCU: 0x277, offset: 0x8BBE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xBB0, symBinAddr: 0x6BD50, symSize: 0x20 } - - { offsetInCU: 0x4CA, offset: 0x8BE39, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x8E0, symBinAddr: 0x6BA80, symSize: 0xF0 } - - { offsetInCU: 0x546, offset: 0x8BEB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBD0, symBinAddr: 0x6BD70, symSize: 0x490 } - - { offsetInCU: 0x79D, offset: 0x8C10C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1060, symBinAddr: 0x6C200, symSize: 0x150 } - - { offsetInCU: 0x921, offset: 0x8C290, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x11B0, symBinAddr: 0x6C350, symSize: 0x9A0 } - - { offsetInCU: 0xECB, offset: 0x8C83A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B50, symBinAddr: 0x6CCF0, symSize: 0x7A0 } - - { offsetInCU: 0x127B, offset: 0x8CBEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x22F0, symBinAddr: 0x6D490, symSize: 0x540 } - - { offsetInCU: 0x141A, offset: 0x8CD89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2830, symBinAddr: 0x6D9D0, symSize: 0x680 } - - { offsetInCU: 0x191F, offset: 0x8D28E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2EB0, symBinAddr: 0x6E050, symSize: 0x130 } - - { offsetInCU: 0x1A0F, offset: 0x8D37E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2FE0, symBinAddr: 0x6E180, symSize: 0x30 } - - { offsetInCU: 0x1A52, offset: 0x8D3C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3620, symBinAddr: 0x6E750, symSize: 0x200 } - - { offsetInCU: 0x1B03, offset: 0x8D472, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3820, symBinAddr: 0x6E950, symSize: 0x220 } - - { offsetInCU: 0x1B68, offset: 0x8D4D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3A40, symBinAddr: 0x6EB70, symSize: 0x240 } - - { offsetInCU: 0x1C90, offset: 0x8D5FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3CB0, symBinAddr: 0x6EDB0, symSize: 0x290 } - - { offsetInCU: 0x1DCF, offset: 0x8D73E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3F40, symBinAddr: 0x6F040, symSize: 0x170 } - - { offsetInCU: 0x1E15, offset: 0x8D784, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x40B0, symBinAddr: 0x6F1B0, symSize: 0x570 } - - { offsetInCU: 0x2166, offset: 0x8DAD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4620, symBinAddr: 0x6F720, symSize: 0xD0 } - - { offsetInCU: 0x224C, offset: 0x8DBBB, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x3080, symBinAddr: 0x6E220, symSize: 0x10 } - - { offsetInCU: 0x228E, offset: 0x8DBFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3090, symBinAddr: 0x6E230, symSize: 0x10 } - - { offsetInCU: 0x22A2, offset: 0x8DC11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x30A0, symBinAddr: 0x6E240, symSize: 0x30 } - - { offsetInCU: 0x22B6, offset: 0x8DC25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x30D0, symBinAddr: 0x6E270, symSize: 0x10 } - - { offsetInCU: 0x22CA, offset: 0x8DC39, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x30E0, symBinAddr: 0x6E280, symSize: 0x40 } - - { offsetInCU: 0x22DE, offset: 0x8DC4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3160, symBinAddr: 0x6E2C0, symSize: 0x10 } - - { offsetInCU: 0x22F2, offset: 0x8DC61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3170, symBinAddr: 0x6E2D0, symSize: 0x30 } - - { offsetInCU: 0x2306, offset: 0x8DC75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x31C0, symBinAddr: 0x6E300, symSize: 0x80 } - - { offsetInCU: 0x231A, offset: 0x8DC89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x3240, symBinAddr: 0x6E380, symSize: 0xD0 } - - { offsetInCU: 0x232E, offset: 0x8DC9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x3310, symBinAddr: 0x6E450, symSize: 0x10 } - - { offsetInCU: 0x2342, offset: 0x8DCB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x3320, symBinAddr: 0x6E460, symSize: 0x10 } - - { offsetInCU: 0x2356, offset: 0x8DCC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x3330, symBinAddr: 0x6E470, symSize: 0x10 } - - { offsetInCU: 0x236A, offset: 0x8DCD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3340, symBinAddr: 0x6E480, symSize: 0x10 } - - { offsetInCU: 0x237E, offset: 0x8DCED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3350, symBinAddr: 0x6E490, symSize: 0x80 } - - { offsetInCU: 0x2392, offset: 0x8DD01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x33D0, symBinAddr: 0x6E510, symSize: 0xD0 } - - { offsetInCU: 0x23A6, offset: 0x8DD15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x34A0, symBinAddr: 0x6E5E0, symSize: 0x10 } - - { offsetInCU: 0x23BA, offset: 0x8DD29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x34B0, symBinAddr: 0x6E5F0, symSize: 0x10 } - - { offsetInCU: 0x23CE, offset: 0x8DD3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x34C0, symBinAddr: 0x6E600, symSize: 0x10 } - - { offsetInCU: 0x23E2, offset: 0x8DD51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x34D0, symBinAddr: 0x6E610, symSize: 0x10 } - - { offsetInCU: 0x23F6, offset: 0x8DD65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x34E0, symBinAddr: 0x6E620, symSize: 0x20 } - - { offsetInCU: 0x240A, offset: 0x8DD79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3510, symBinAddr: 0x6E640, symSize: 0x10 } - - { offsetInCU: 0x241E, offset: 0x8DD8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x3520, symBinAddr: 0x6E650, symSize: 0x10 } - - { offsetInCU: 0x2432, offset: 0x8DDA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3530, symBinAddr: 0x6E660, symSize: 0x30 } - - { offsetInCU: 0x2446, offset: 0x8DDB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3560, symBinAddr: 0x6E690, symSize: 0x10 } - - { offsetInCU: 0x245A, offset: 0x8DDC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x3570, symBinAddr: 0x6E6A0, symSize: 0x10 } - - { offsetInCU: 0x246E, offset: 0x8DDDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3580, symBinAddr: 0x6E6B0, symSize: 0x30 } - - { offsetInCU: 0x2482, offset: 0x8DDF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x35B0, symBinAddr: 0x6E6E0, symSize: 0x10 } - - { offsetInCU: 0x24A1, offset: 0x8DE10, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x35C0, symBinAddr: 0x6E6F0, symSize: 0x20 } - - { offsetInCU: 0x24D9, offset: 0x8DE48, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x35E0, symBinAddr: 0x6E710, symSize: 0x20 } - - { offsetInCU: 0x2511, offset: 0x8DE80, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3600, symBinAddr: 0x6E730, symSize: 0x20 } - - { offsetInCU: 0x2575, offset: 0x8DEE4, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x4750, symBinAddr: 0x6F850, symSize: 0x40 } - - { offsetInCU: 0x2589, offset: 0x8DEF8, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x47F0, symBinAddr: 0x6F890, symSize: 0x30 } - - { offsetInCU: 0x259D, offset: 0x8DF0C, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4820, symBinAddr: 0x6F8C0, symSize: 0x30 } - - { offsetInCU: 0x25B1, offset: 0x8DF20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4890, symBinAddr: 0x6F910, symSize: 0x20 } - - { offsetInCU: 0x25C5, offset: 0x8DF34, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x48B0, symBinAddr: 0x6F930, symSize: 0x20 } - - { offsetInCU: 0x25D9, offset: 0x8DF48, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x48D0, symBinAddr: 0x6F950, symSize: 0x10 } - - { offsetInCU: 0x25ED, offset: 0x8DF5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4940, symBinAddr: 0x6F960, symSize: 0x20 } - - { offsetInCU: 0x2601, offset: 0x8DF70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x49F0, symBinAddr: 0x6FA10, symSize: 0x10 } - - { offsetInCU: 0x2630, offset: 0x8DF9F, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x110, symBinAddr: 0x6B2B0, symSize: 0x10 } - - { offsetInCU: 0x2698, offset: 0x8E007, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x6B2C0, symSize: 0x30 } - - { offsetInCU: 0x2716, offset: 0x8E085, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x150, symBinAddr: 0x6B2F0, symSize: 0x70 } - - { offsetInCU: 0x27A5, offset: 0x8E114, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x1C0, symBinAddr: 0x6B360, symSize: 0x70 } - - { offsetInCU: 0x2834, offset: 0x8E1A3, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x230, symBinAddr: 0x6B3D0, symSize: 0x90 } - - { offsetInCU: 0x28CB, offset: 0x8E23A, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x2C0, symBinAddr: 0x6B460, symSize: 0x60 } - - { offsetInCU: 0x29A5, offset: 0x8E314, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x320, symBinAddr: 0x6B4C0, symSize: 0x60 } - - { offsetInCU: 0x2A7F, offset: 0x8E3EE, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x380, symBinAddr: 0x6B520, symSize: 0x60 } - - { offsetInCU: 0x2AF4, offset: 0x8E463, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x3E0, symBinAddr: 0x6B580, symSize: 0x40 } - - { offsetInCU: 0x2B51, offset: 0x8E4C0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x420, symBinAddr: 0x6B5C0, symSize: 0x40 } - - { offsetInCU: 0x2BAE, offset: 0x8E51D, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x460, symBinAddr: 0x6B600, symSize: 0x40 } - - { offsetInCU: 0x2BD7, offset: 0x8E546, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x4A0, symBinAddr: 0x6B640, symSize: 0x60 } - - { offsetInCU: 0x2C2A, offset: 0x8E599, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x500, symBinAddr: 0x6B6A0, symSize: 0x60 } - - { offsetInCU: 0x2CA6, offset: 0x8E615, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x560, symBinAddr: 0x6B700, symSize: 0x60 } - - { offsetInCU: 0x2D37, offset: 0x8E6A6, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5C0, symBinAddr: 0x6B760, symSize: 0xB0 } - - { offsetInCU: 0x2EB0, offset: 0x8E81F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x670, symBinAddr: 0x6B810, symSize: 0x50 } - - { offsetInCU: 0x2F7C, offset: 0x8E8EB, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6C0, symBinAddr: 0x6B860, symSize: 0x90 } - - { offsetInCU: 0x2FFC, offset: 0x8E96B, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x750, symBinAddr: 0x6B8F0, symSize: 0x80 } - - { offsetInCU: 0x3076, offset: 0x8E9E5, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7D0, symBinAddr: 0x6B970, symSize: 0xD0 } - - { offsetInCU: 0x3153, offset: 0x8EAC2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8A0, symBinAddr: 0x6BA40, symSize: 0x40 } - - { offsetInCU: 0x31E4, offset: 0x8EB53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA10, symBinAddr: 0x6BBB0, symSize: 0x10 } - - { offsetInCU: 0x3200, offset: 0x8EB6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA20, symBinAddr: 0x6BBC0, symSize: 0x10 } - - { offsetInCU: 0x321C, offset: 0x8EB8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA30, symBinAddr: 0x6BBD0, symSize: 0x10 } - - { offsetInCU: 0x3230, offset: 0x8EB9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA40, symBinAddr: 0x6BBE0, symSize: 0x10 } - - { offsetInCU: 0x324A, offset: 0x8EBB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x6BCF0, symSize: 0x10 } - - { offsetInCU: 0x3266, offset: 0x8EBD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB60, symBinAddr: 0x6BD00, symSize: 0x10 } - - { offsetInCU: 0x3282, offset: 0x8EBF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB70, symBinAddr: 0x6BD10, symSize: 0x10 } - - { offsetInCU: 0x3296, offset: 0x8EC05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB80, symBinAddr: 0x6BD20, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x8F0A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6FA50, symSize: 0x1A0 } - - { offsetInCU: 0x57, offset: 0x8F0B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6FBF0, symSize: 0x90 } - - { offsetInCU: 0x6B, offset: 0x8F0C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6FC80, symSize: 0x170 } - - { offsetInCU: 0x7F, offset: 0x8F0DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6FDF0, symSize: 0x1F0 } - - { offsetInCU: 0x93, offset: 0x8F0F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6FFE0, symSize: 0xE0 } - - { offsetInCU: 0xA7, offset: 0x8F104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x700C0, symSize: 0x1C0 } - - { offsetInCU: 0xBB, offset: 0x8F118, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x70280, symSize: 0x20 } - - { offsetInCU: 0xCF, offset: 0x8F12C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x70310, symSize: 0x20 } - - { offsetInCU: 0xE3, offset: 0x8F140, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x703B0, symSize: 0x90 } - - { offsetInCU: 0xF7, offset: 0x8F154, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x70440, symSize: 0x50 } - - { offsetInCU: 0x10B, offset: 0x8F168, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x70490, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8F17C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x705B0, symSize: 0x70 } - - { offsetInCU: 0x133, offset: 0x8F190, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x70620, symSize: 0xF0 } - - { offsetInCU: 0x147, offset: 0x8F1A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x70710, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8F1B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x70870, symSize: 0xC0 } - - { offsetInCU: 0x16F, offset: 0x8F1CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x70930, symSize: 0x150 } - - { offsetInCU: 0x183, offset: 0x8F1E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x70A80, symSize: 0x20 } - - { offsetInCU: 0x197, offset: 0x8F1F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x70B10, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x8F208, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x70BD0, symSize: 0x80 } - - { offsetInCU: 0x1DD, offset: 0x8F23A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1240, symBinAddr: 0x70C50, symSize: 0x20 } - - { offsetInCU: 0x22A, offset: 0x8F287, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x711A0, symSize: 0x10 } - - { offsetInCU: 0x288, offset: 0x8F2E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17B0, symBinAddr: 0x711C0, symSize: 0x20 } - - { offsetInCU: 0x302, offset: 0x8F35F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x711F0, symSize: 0x10 } - - { offsetInCU: 0x32D, offset: 0x8F38A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x71200, symSize: 0x20 } - - { offsetInCU: 0x35E, offset: 0x8F3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x71220, symSize: 0x10 } - - { offsetInCU: 0x37A, offset: 0x8F3D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x71230, symSize: 0x10 } - - { offsetInCU: 0x396, offset: 0x8F3F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E80, symBinAddr: 0x72760, symSize: 0x160 } - - { offsetInCU: 0x3DC, offset: 0x8F439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1260, symBinAddr: 0x70C70, symSize: 0x1F0 } - - { offsetInCU: 0x41B, offset: 0x8F478, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1450, symBinAddr: 0x70E60, symSize: 0x340 } - - { offsetInCU: 0x44C, offset: 0x8F4A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x71280, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x8F4CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1880, symBinAddr: 0x71290, symSize: 0x10 } - - { offsetInCU: 0x4C7, offset: 0x8F524, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x712A0, symSize: 0x20 } - - { offsetInCU: 0x4F0, offset: 0x8F54D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x71490, symSize: 0x10 } - - { offsetInCU: 0x51B, offset: 0x8F578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x714A0, symSize: 0x20 } - - { offsetInCU: 0x54C, offset: 0x8F5A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB0, symBinAddr: 0x714C0, symSize: 0x10 } - - { offsetInCU: 0x568, offset: 0x8F5C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x714D0, symSize: 0x10 } - - { offsetInCU: 0x584, offset: 0x8F5E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FE0, symBinAddr: 0x728C0, symSize: 0x120 } - - { offsetInCU: 0x5CA, offset: 0x8F627, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x712C0, symSize: 0x1B0 } - - { offsetInCU: 0x61F, offset: 0x8F67C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B10, symBinAddr: 0x71520, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x8F6B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B50, symBinAddr: 0x71560, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x8F6D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3100, symBinAddr: 0x729E0, symSize: 0x2B0 } - - { offsetInCU: 0x6C9, offset: 0x8F726, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1B90, symBinAddr: 0x715A0, symSize: 0x20 } - - { offsetInCU: 0x6F2, offset: 0x8F74F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23C0, symBinAddr: 0x71DD0, symSize: 0x10 } - - { offsetInCU: 0x71D, offset: 0x8F77A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23D0, symBinAddr: 0x71DE0, symSize: 0x20 } - - { offsetInCU: 0x74E, offset: 0x8F7AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23F0, symBinAddr: 0x71E00, symSize: 0x10 } - - { offsetInCU: 0x76A, offset: 0x8F7C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2400, symBinAddr: 0x71E10, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x8F7E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33B0, symBinAddr: 0x72C90, symSize: 0x250 } - - { offsetInCU: 0x7CC, offset: 0x8F829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BB0, symBinAddr: 0x715C0, symSize: 0x2B0 } - - { offsetInCU: 0x80B, offset: 0x8F868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E60, symBinAddr: 0x71870, symSize: 0x4E0 } - - { offsetInCU: 0x83C, offset: 0x8F899, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2450, symBinAddr: 0x71E60, symSize: 0x10 } - - { offsetInCU: 0x85F, offset: 0x8F8BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2460, symBinAddr: 0x71E70, symSize: 0x10 } - - { offsetInCU: 0x883, offset: 0x8F8E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x24A0, symBinAddr: 0x71E80, symSize: 0x30 } - - { offsetInCU: 0x897, offset: 0x8F8F4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2500, symBinAddr: 0x71EB0, symSize: 0x30 } - - { offsetInCU: 0x8AB, offset: 0x8F908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x25A0, symBinAddr: 0x71F10, symSize: 0x30 } - - { offsetInCU: 0x8BF, offset: 0x8F91C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2610, symBinAddr: 0x71F40, symSize: 0x30 } - - { offsetInCU: 0x8D3, offset: 0x8F930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x2700, symBinAddr: 0x72030, symSize: 0x30 } - - { offsetInCU: 0x8E7, offset: 0x8F944, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2750, symBinAddr: 0x72060, symSize: 0x80 } - - { offsetInCU: 0x8FB, offset: 0x8F958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x27D0, symBinAddr: 0x720E0, symSize: 0xD0 } - - { offsetInCU: 0x90F, offset: 0x8F96C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x28A0, symBinAddr: 0x721B0, symSize: 0x10 } - - { offsetInCU: 0x923, offset: 0x8F980, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x28B0, symBinAddr: 0x721C0, symSize: 0x10 } - - { offsetInCU: 0x937, offset: 0x8F994, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x28C0, symBinAddr: 0x721D0, symSize: 0x10 } - - { offsetInCU: 0x94B, offset: 0x8F9A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x28D0, symBinAddr: 0x721E0, symSize: 0x10 } - - { offsetInCU: 0x95F, offset: 0x8F9BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x28E0, symBinAddr: 0x721F0, symSize: 0x80 } - - { offsetInCU: 0x973, offset: 0x8F9D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2960, symBinAddr: 0x72270, symSize: 0xD0 } - - { offsetInCU: 0x987, offset: 0x8F9E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2A30, symBinAddr: 0x72340, symSize: 0x10 } - - { offsetInCU: 0x99B, offset: 0x8F9F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2A40, symBinAddr: 0x72350, symSize: 0x10 } - - { offsetInCU: 0x9AF, offset: 0x8FA0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2A50, symBinAddr: 0x72360, symSize: 0x30 } - - { offsetInCU: 0x9C3, offset: 0x8FA20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2A80, symBinAddr: 0x72390, symSize: 0x30 } - - { offsetInCU: 0x9D7, offset: 0x8FA34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2AB0, symBinAddr: 0x723C0, symSize: 0x70 } - - { offsetInCU: 0x9EB, offset: 0x8FA48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2B20, symBinAddr: 0x72430, symSize: 0x90 } - - { offsetInCU: 0x9FF, offset: 0x8FA5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2BE0, symBinAddr: 0x724C0, symSize: 0x70 } - - { offsetInCU: 0xA13, offset: 0x8FA70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2C50, symBinAddr: 0x72530, symSize: 0x50 } - - { offsetInCU: 0xA27, offset: 0x8FA84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2CA0, symBinAddr: 0x72580, symSize: 0x50 } - - { offsetInCU: 0xA3B, offset: 0x8FA98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2CF0, symBinAddr: 0x725D0, symSize: 0x10 } - - { offsetInCU: 0xA4F, offset: 0x8FAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D00, symBinAddr: 0x725E0, symSize: 0x10 } - - { offsetInCU: 0xA63, offset: 0x8FAC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x725F0, symSize: 0x30 } - - { offsetInCU: 0xA77, offset: 0x8FAD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D40, symBinAddr: 0x72620, symSize: 0x10 } - - { offsetInCU: 0xA8B, offset: 0x8FAE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D50, symBinAddr: 0x72630, symSize: 0x30 } - - { offsetInCU: 0xA9F, offset: 0x8FAFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D80, symBinAddr: 0x72660, symSize: 0x10 } - - { offsetInCU: 0xAB3, offset: 0x8FB10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D90, symBinAddr: 0x72670, symSize: 0x30 } - - { offsetInCU: 0xAC7, offset: 0x8FB24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DC0, symBinAddr: 0x726A0, symSize: 0x10 } - - { offsetInCU: 0xADB, offset: 0x8FB38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DD0, symBinAddr: 0x726B0, symSize: 0x30 } - - { offsetInCU: 0xAEF, offset: 0x8FB4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E00, symBinAddr: 0x726E0, symSize: 0x10 } - - { offsetInCU: 0xB03, offset: 0x8FB60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E10, symBinAddr: 0x726F0, symSize: 0x30 } - - { offsetInCU: 0xB17, offset: 0x8FB74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E40, symBinAddr: 0x72720, symSize: 0x10 } - - { offsetInCU: 0xB2B, offset: 0x8FB88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E50, symBinAddr: 0x72730, symSize: 0x30 } - - { offsetInCU: 0xB4A, offset: 0x8FBA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3600, symBinAddr: 0x72EE0, symSize: 0x30 } - - { offsetInCU: 0xB5E, offset: 0x8FBBB, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3630, symBinAddr: 0x72F10, symSize: 0x40 } - - { offsetInCU: 0xB72, offset: 0x8FBCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x36E0, symBinAddr: 0x72FC0, symSize: 0x80 } - - { offsetInCU: 0xB86, offset: 0x8FBE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3760, symBinAddr: 0x73040, symSize: 0xD0 } - - { offsetInCU: 0xB9A, offset: 0x8FBF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3830, symBinAddr: 0x73110, symSize: 0x10 } - - { offsetInCU: 0xBAE, offset: 0x8FC0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3840, symBinAddr: 0x73120, symSize: 0x10 } - - { offsetInCU: 0xBC2, offset: 0x8FC1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3850, symBinAddr: 0x73130, symSize: 0x10 } - - { offsetInCU: 0xBD6, offset: 0x8FC33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3860, symBinAddr: 0x73140, symSize: 0x30 } - - { offsetInCU: 0xBEA, offset: 0x8FC47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3890, symBinAddr: 0x73170, symSize: 0x10 } - - { offsetInCU: 0xBFE, offset: 0x8FC5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x38A0, symBinAddr: 0x73180, symSize: 0x30 } - - { offsetInCU: 0xC12, offset: 0x8FC6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x38D0, symBinAddr: 0x731B0, symSize: 0x10 } - - { offsetInCU: 0xC26, offset: 0x8FC83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x38E0, symBinAddr: 0x731C0, symSize: 0x30 } - - { offsetInCU: 0xC54, offset: 0x8FCB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x71240, symSize: 0x20 } - - { offsetInCU: 0xC70, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x71260, symSize: 0x20 } - - { offsetInCU: 0xC92, offset: 0x8FCEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x714E0, symSize: 0x20 } - - { offsetInCU: 0xCAE, offset: 0x8FD0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF0, symBinAddr: 0x71500, symSize: 0x20 } - - { offsetInCU: 0xCD0, offset: 0x8FD2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x71E20, symSize: 0x20 } - - { offsetInCU: 0xCEC, offset: 0x8FD49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2430, symBinAddr: 0x71E40, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8FE9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x73290, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x8FEBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x73290, symSize: 0x30 } - - { offsetInCU: 0x69, offset: 0x8FEDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x732C0, symSize: 0x30 } - - { offsetInCU: 0xA7, offset: 0x8FF1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x732F0, symSize: 0x10 } - - { offsetInCU: 0xC5, offset: 0x8FF39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x73300, symSize: 0x10 } - - { offsetInCU: 0xF0, offset: 0x8FF64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x73310, symSize: 0x30 } - - { offsetInCU: 0x10E, offset: 0x8FF82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x73340, symSize: 0x30 } - - { offsetInCU: 0x14C, offset: 0x8FFC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x73370, symSize: 0x20 } - - { offsetInCU: 0x17A, offset: 0x8FFEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x73390, symSize: 0x10 } - - { offsetInCU: 0x1A6, offset: 0x9001A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x733A0, symSize: 0x30 } - - { offsetInCU: 0x1BA, offset: 0x9002E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x733D0, symSize: 0x30 } - - { offsetInCU: 0x1CE, offset: 0x90042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x73400, symSize: 0x40 } - - { offsetInCU: 0x1E2, offset: 0x90056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x73440, symSize: 0x60 } - - { offsetInCU: 0x1F6, offset: 0x9006A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x734A0, symSize: 0x50 } - - { offsetInCU: 0x20A, offset: 0x9007E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x734F0, symSize: 0x40 } - - { offsetInCU: 0x21E, offset: 0x90092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x73530, symSize: 0x50 } - - { offsetInCU: 0x232, offset: 0x900A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x73580, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x901EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x73590, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x90210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8languageSSvpZ', symObjAddr: 0x9FA0, symBinAddr: 0x913D0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x9022A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7versionSSvpZ', symObjAddr: 0x9FB0, symBinAddr: 0x913E0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x90244, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x9FC0, symBinAddr: 0x913F0, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x9025E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x9FD0, symBinAddr: 0x91400, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x90278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x9FE0, symBinAddr: 0x91410, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x90292, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x9FF0, symBinAddr: 0x91420, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x902AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0xA000, symBinAddr: 0x91430, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x902C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0xA010, symBinAddr: 0x91440, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x902E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0xA020, symBinAddr: 0x91450, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x902FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0xA030, symBinAddr: 0x91460, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x90314, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0xA040, symBinAddr: 0x91470, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x9032E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0xA050, symBinAddr: 0x91480, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x90348, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0xA060, symBinAddr: 0x91490, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x90362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0xA070, symBinAddr: 0x914A0, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x9037C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0xA080, symBinAddr: 0x914B0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x90396, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKeySSvpZ', symObjAddr: 0xA090, symBinAddr: 0x914C0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x903B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKeySSvpZ', symObjAddr: 0xA0A0, symBinAddr: 0x914D0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x903CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKeySSvpZ', symObjAddr: 0xA0B0, symBinAddr: 0x914E0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x903E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKeySSvpZ', symObjAddr: 0xA0C0, symBinAddr: 0x914F0, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x903FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKeySSvpZ', symObjAddr: 0xA0D0, symBinAddr: 0x91500, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x90418, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKeySSvpZ', symObjAddr: 0xA0E0, symBinAddr: 0x91510, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x90432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKeySSvpZ', symObjAddr: 0xA0F0, symBinAddr: 0x91520, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x9044C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0xA100, symBinAddr: 0x91530, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x90466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0xA110, symBinAddr: 0x91540, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x90480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvpZ', symObjAddr: 0xA120, symBinAddr: 0x91550, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x9049A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0xA130, symBinAddr: 0x91560, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x904B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKeySSvpZ', symObjAddr: 0xA140, symBinAddr: 0x91570, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x904CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkeySSvpZ', symObjAddr: 0xA150, symBinAddr: 0x91580, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x904E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0xA160, symBinAddr: 0x91590, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x90502, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKeySSvpZ', symObjAddr: 0xA170, symBinAddr: 0x915A0, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x9051C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKeySSvpZ', symObjAddr: 0xA180, symBinAddr: 0x915B0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x90536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvpZ', symObjAddr: 0xA190, symBinAddr: 0x915C0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x90550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKeySSvpZ', symObjAddr: 0xA1A0, symBinAddr: 0x915D0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x9056A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKeySSvpZ', symObjAddr: 0xA1B0, symBinAddr: 0x915E0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x90584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKeySSvpZ', symObjAddr: 0xA1C0, symBinAddr: 0x915F0, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x9059E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKeySSvpZ', symObjAddr: 0xA1D0, symBinAddr: 0x91600, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x905B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvpZ', symObjAddr: 0xA1E0, symBinAddr: 0x91610, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x905D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvpZ', symObjAddr: 0xA1F0, symBinAddr: 0x91620, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x905EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvpZ', symObjAddr: 0xA200, symBinAddr: 0x91630, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x90606, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkeySSvpZ', symObjAddr: 0xA210, symBinAddr: 0x91640, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x90620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvpZ', symObjAddr: 0xA220, symBinAddr: 0x91650, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x9063A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKeySSvpZ', symObjAddr: 0xA230, symBinAddr: 0x91660, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x90654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKeySSvpZ', symObjAddr: 0xA240, symBinAddr: 0x91670, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x9066E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKeySSvpZ', symObjAddr: 0xA250, symBinAddr: 0x91680, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x90688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKeySSvpZ', symObjAddr: 0xA260, symBinAddr: 0x91690, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x906A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKeySSvpZ', symObjAddr: 0xA270, symBinAddr: 0x916A0, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x906BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKeySSvpZ', symObjAddr: 0xA280, symBinAddr: 0x916B0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x906D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0xA290, symBinAddr: 0x916C0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x906F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0xA2A0, symBinAddr: 0x916D0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x9070A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0xA2B0, symBinAddr: 0x916E0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x90724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKeySSvpZ', symObjAddr: 0xA2C0, symBinAddr: 0x916F0, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x9073E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKeySSvpZ', symObjAddr: 0xA2D0, symBinAddr: 0x91700, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x90758, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKeySSvpZ', symObjAddr: 0xA2E0, symBinAddr: 0x91710, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x90772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKeySSvpZ', symObjAddr: 0xA2F0, symBinAddr: 0x91720, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x9078C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0xA300, symBinAddr: 0x91730, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x907A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0xA310, symBinAddr: 0x91740, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x907C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0xA320, symBinAddr: 0x91750, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x907DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekeySSvpZ', symObjAddr: 0xA330, symBinAddr: 0x91760, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x907F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkeySSvpZ', symObjAddr: 0xA340, symBinAddr: 0x91770, symSize: 0x0 } - - { offsetInCU: 0x63D, offset: 0x90802, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x73590, symSize: 0x30 } - - { offsetInCU: 0x65B, offset: 0x90820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvau', symObjAddr: 0x30, symBinAddr: 0x735C0, symSize: 0x30 } - - { offsetInCU: 0x679, offset: 0x9083E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvau', symObjAddr: 0x60, symBinAddr: 0x735F0, symSize: 0x30 } - - { offsetInCU: 0x697, offset: 0x9085C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvau', symObjAddr: 0x90, symBinAddr: 0x73620, symSize: 0x30 } - - { offsetInCU: 0x6B5, offset: 0x9087A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvau', symObjAddr: 0xC0, symBinAddr: 0x73650, symSize: 0x30 } - - { offsetInCU: 0x6DF, offset: 0x908A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0xF0, symBinAddr: 0x73680, symSize: 0x20 } - - { offsetInCU: 0x6FA, offset: 0x908BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x230, symBinAddr: 0x737C0, symSize: 0x410 } - - { offsetInCU: 0x74E, offset: 0x90913, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x750, symBinAddr: 0x73CE0, symSize: 0x10 } - - { offsetInCU: 0x76A, offset: 0x9092F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x760, symBinAddr: 0x73CF0, symSize: 0x20 } - - { offsetInCU: 0x794, offset: 0x90959, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvau', symObjAddr: 0x110, symBinAddr: 0x736A0, symSize: 0x30 } - - { offsetInCU: 0x7B2, offset: 0x90977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvau', symObjAddr: 0x140, symBinAddr: 0x736D0, symSize: 0x30 } - - { offsetInCU: 0x7D0, offset: 0x90995, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x170, symBinAddr: 0x73700, symSize: 0x30 } - - { offsetInCU: 0x7EE, offset: 0x909B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x1A0, symBinAddr: 0x73730, symSize: 0x30 } - - { offsetInCU: 0x80C, offset: 0x909D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x1D0, symBinAddr: 0x73760, symSize: 0x30 } - - { offsetInCU: 0x82A, offset: 0x909EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvau', symObjAddr: 0x200, symBinAddr: 0x73790, symSize: 0x30 } - - { offsetInCU: 0x853, offset: 0x90A18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x660, symBinAddr: 0x73BF0, symSize: 0x10 } - - { offsetInCU: 0x867, offset: 0x90A2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x73C00, symSize: 0x30 } - - { offsetInCU: 0x891, offset: 0x90A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x7A0, symBinAddr: 0x73D10, symSize: 0x80 } - - { offsetInCU: 0x8A5, offset: 0x90A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x820, symBinAddr: 0x73D90, symSize: 0xD0 } - - { offsetInCU: 0x8B9, offset: 0x90A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x8F0, symBinAddr: 0x73E60, symSize: 0x10 } - - { offsetInCU: 0x8CD, offset: 0x90A92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x900, symBinAddr: 0x73E70, symSize: 0x10 } - - { offsetInCU: 0x8E1, offset: 0x90AA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x910, symBinAddr: 0x73E80, symSize: 0x10 } - - { offsetInCU: 0x8F5, offset: 0x90ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x920, symBinAddr: 0x73E90, symSize: 0x10 } - - { offsetInCU: 0x909, offset: 0x90ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8language_WZ', symObjAddr: 0x930, symBinAddr: 0x73EA0, symSize: 0x30 } - - { offsetInCU: 0x923, offset: 0x90AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7version_WZ', symObjAddr: 0x960, symBinAddr: 0x73ED0, symSize: 0x30 } - - { offsetInCU: 0x93D, offset: 0x90B02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x990, symBinAddr: 0x73F00, symSize: 0x30 } - - { offsetInCU: 0x957, offset: 0x90B1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x9C0, symBinAddr: 0x73F30, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x90B36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x9F0, symBinAddr: 0x73F60, symSize: 0x30 } - - { offsetInCU: 0x98B, offset: 0x90B50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPassword_WZ', symObjAddr: 0xA20, symBinAddr: 0x73F90, symSize: 0x30 } - - { offsetInCU: 0x9AC, offset: 0x90B71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0xA50, symBinAddr: 0x73FC0, symSize: 0x30 } - - { offsetInCU: 0x9C6, offset: 0x90B8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0xA80, symBinAddr: 0x73FF0, symSize: 0x30 } - - { offsetInCU: 0x9E0, offset: 0x90BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6option_WZ', symObjAddr: 0xAB0, symBinAddr: 0x74020, symSize: 0x30 } - - { offsetInCU: 0x9FA, offset: 0x90BBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0xAE0, symBinAddr: 0x74050, symSize: 0x30 } - - { offsetInCU: 0xA14, offset: 0x90BD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0xB10, symBinAddr: 0x74080, symSize: 0x30 } - - { offsetInCU: 0xA2E, offset: 0x90BF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0xB40, symBinAddr: 0x740B0, symSize: 0x30 } - - { offsetInCU: 0xA48, offset: 0x90C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6device_WZ', symObjAddr: 0xB70, symBinAddr: 0x740E0, symSize: 0x30 } - - { offsetInCU: 0xA62, offset: 0x90C27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0xBA0, symBinAddr: 0x74110, symSize: 0x30 } - - { offsetInCU: 0xA7C, offset: 0x90C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0xBD0, symBinAddr: 0x74140, symSize: 0x30 } - - { offsetInCU: 0xA97, offset: 0x90C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKey_WZ', symObjAddr: 0xC00, symBinAddr: 0x74170, symSize: 0x30 } - - { offsetInCU: 0xAB1, offset: 0x90C76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKey_WZ', symObjAddr: 0xC30, symBinAddr: 0x741A0, symSize: 0x30 } - - { offsetInCU: 0xACB, offset: 0x90C90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKey_WZ', symObjAddr: 0xC60, symBinAddr: 0x741D0, symSize: 0x30 } - - { offsetInCU: 0xAE5, offset: 0x90CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKey_WZ', symObjAddr: 0xC90, symBinAddr: 0x74200, symSize: 0x30 } - - { offsetInCU: 0xAFF, offset: 0x90CC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKey_WZ', symObjAddr: 0xCC0, symBinAddr: 0x74230, symSize: 0x30 } - - { offsetInCU: 0xB19, offset: 0x90CDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKey_WZ', symObjAddr: 0xCF0, symBinAddr: 0x74260, symSize: 0x30 } - - { offsetInCU: 0xB33, offset: 0x90CF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKey_WZ', symObjAddr: 0xD20, symBinAddr: 0x74290, symSize: 0x30 } - - { offsetInCU: 0xB4D, offset: 0x90D12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0xD50, symBinAddr: 0x742C0, symSize: 0x30 } - - { offsetInCU: 0xB67, offset: 0x90D2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKey_WZ', symObjAddr: 0xD80, symBinAddr: 0x742F0, symSize: 0x30 } - - { offsetInCU: 0xB81, offset: 0x90D46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKey_WZ', symObjAddr: 0xDB0, symBinAddr: 0x74320, symSize: 0x30 } - - { offsetInCU: 0xB9B, offset: 0x90D60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKey_WZ', symObjAddr: 0xDE0, symBinAddr: 0x74350, symSize: 0x30 } - - { offsetInCU: 0xBB5, offset: 0x90D7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKey_WZ', symObjAddr: 0xE10, symBinAddr: 0x74380, symSize: 0x30 } - - { offsetInCU: 0xBCF, offset: 0x90D94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkey_WZ', symObjAddr: 0xE40, symBinAddr: 0x743B0, symSize: 0x30 } - - { offsetInCU: 0xBE9, offset: 0x90DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKey_WZ', symObjAddr: 0xE70, symBinAddr: 0x743E0, symSize: 0x30 } - - { offsetInCU: 0xC03, offset: 0x90DC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKey_WZ', symObjAddr: 0xEA0, symBinAddr: 0x74410, symSize: 0x30 } - - { offsetInCU: 0xC1D, offset: 0x90DE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKey_WZ', symObjAddr: 0xED0, symBinAddr: 0x74440, symSize: 0x30 } - - { offsetInCU: 0xC37, offset: 0x90DFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKey_WZ', symObjAddr: 0xF00, symBinAddr: 0x74470, symSize: 0x30 } - - { offsetInCU: 0xC51, offset: 0x90E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKey_WZ', symObjAddr: 0xF30, symBinAddr: 0x744A0, symSize: 0x30 } - - { offsetInCU: 0xC6B, offset: 0x90E30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKey_WZ', symObjAddr: 0xF60, symBinAddr: 0x744D0, symSize: 0x30 } - - { offsetInCU: 0xC85, offset: 0x90E4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKey_WZ', symObjAddr: 0xF90, symBinAddr: 0x74500, symSize: 0x30 } - - { offsetInCU: 0xC9F, offset: 0x90E64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKey_WZ', symObjAddr: 0xFC0, symBinAddr: 0x74530, symSize: 0x30 } - - { offsetInCU: 0xCB9, offset: 0x90E7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkey_WZ', symObjAddr: 0xFF0, symBinAddr: 0x74560, symSize: 0x30 } - - { offsetInCU: 0xCD3, offset: 0x90E98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkey_WZ', symObjAddr: 0x1020, symBinAddr: 0x74590, symSize: 0x30 } - - { offsetInCU: 0xCED, offset: 0x90EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekey_WZ', symObjAddr: 0x1050, symBinAddr: 0x745C0, symSize: 0x30 } - - { offsetInCU: 0xD07, offset: 0x90ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkey_WZ', symObjAddr: 0x1080, symBinAddr: 0x745F0, symSize: 0x30 } - - { offsetInCU: 0xD21, offset: 0x90EE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkey_WZ', symObjAddr: 0x10B0, symBinAddr: 0x74620, symSize: 0x30 } - - { offsetInCU: 0xD3B, offset: 0x90F00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKey_WZ', symObjAddr: 0x10E0, symBinAddr: 0x74650, symSize: 0x30 } - - { offsetInCU: 0xD55, offset: 0x90F1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKey_WZ', symObjAddr: 0x1110, symBinAddr: 0x74680, symSize: 0x30 } - - { offsetInCU: 0xD6F, offset: 0x90F34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKey_WZ', symObjAddr: 0x1140, symBinAddr: 0x746B0, symSize: 0x30 } - - { offsetInCU: 0xD89, offset: 0x90F4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKey_WZ', symObjAddr: 0x1170, symBinAddr: 0x746E0, symSize: 0x30 } - - { offsetInCU: 0xDA3, offset: 0x90F68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKey_WZ', symObjAddr: 0x11A0, symBinAddr: 0x74710, symSize: 0x30 } - - { offsetInCU: 0xDBD, offset: 0x90F82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKey_WZ', symObjAddr: 0x11D0, symBinAddr: 0x74740, symSize: 0x30 } - - { offsetInCU: 0xDD7, offset: 0x90F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKey_WZ', symObjAddr: 0x1200, symBinAddr: 0x74770, symSize: 0x30 } - - { offsetInCU: 0xDF1, offset: 0x90FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0x1230, symBinAddr: 0x747A0, symSize: 0x30 } - - { offsetInCU: 0xE0B, offset: 0x90FD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKey_WZ', symObjAddr: 0x1260, symBinAddr: 0x747D0, symSize: 0x30 } - - { offsetInCU: 0xE25, offset: 0x90FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKey_WZ', symObjAddr: 0x1290, symBinAddr: 0x74800, symSize: 0x30 } - - { offsetInCU: 0xE3F, offset: 0x91004, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKey_WZ', symObjAddr: 0x12C0, symBinAddr: 0x74830, symSize: 0x30 } - - { offsetInCU: 0xE59, offset: 0x9101E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKey_WZ', symObjAddr: 0x12F0, symBinAddr: 0x74860, symSize: 0x30 } - - { offsetInCU: 0xE73, offset: 0x91038, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKey_WZ', symObjAddr: 0x1320, symBinAddr: 0x74890, symSize: 0x30 } - - { offsetInCU: 0xE8D, offset: 0x91052, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKey_WZ', symObjAddr: 0x1350, symBinAddr: 0x748C0, symSize: 0x30 } - - { offsetInCU: 0xEA7, offset: 0x9106C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0x1380, symBinAddr: 0x748F0, symSize: 0x30 } - - { offsetInCU: 0xEC1, offset: 0x91086, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekey_WZ', symObjAddr: 0x13B0, symBinAddr: 0x74920, symSize: 0x30 } - - { offsetInCU: 0xEDB, offset: 0x910A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekey_WZ', symObjAddr: 0x13E0, symBinAddr: 0x74950, symSize: 0x30 } - - { offsetInCU: 0xEF5, offset: 0x910BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkey_WZ', symObjAddr: 0x1410, symBinAddr: 0x74980, symSize: 0x30 } - - { offsetInCU: 0xF58, offset: 0x9111D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0x1440, symBinAddr: 0x749B0, symSize: 0x113 } - - { offsetInCU: 0x1193, offset: 0x91358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x640, symBinAddr: 0x73BD0, symSize: 0x20 } - - { offsetInCU: 0x124D, offset: 0x91412, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6A0, symBinAddr: 0x73C30, symSize: 0x40 } - - { offsetInCU: 0x1325, offset: 0x914EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E0, symBinAddr: 0x73C70, symSize: 0x30 } - - { offsetInCU: 0x13A1, offset: 0x91566, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x710, symBinAddr: 0x73CA0, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0x91720, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x74AD0, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x91762, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x74AD0, symSize: 0x20 } - - { offsetInCU: 0xB9, offset: 0x917AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x74AF0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x918EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1FE8, symBinAddr: 0x90D98, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x91938, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0x1B0, symBinAddr: 0x74CC0, symSize: 0x30 } - - { offsetInCU: 0x117, offset: 0x919B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1E0, symBinAddr: 0x74CF0, symSize: 0x580 } - - { offsetInCU: 0x306, offset: 0x91BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x7A0, symBinAddr: 0x75270, symSize: 0x50 } - - { offsetInCU: 0x375, offset: 0x91C15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x800, symBinAddr: 0x752D0, symSize: 0x50 } - - { offsetInCU: 0x3E4, offset: 0x91C84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x860, symBinAddr: 0x75330, symSize: 0x50 } - - { offsetInCU: 0x453, offset: 0x91CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x8C0, symBinAddr: 0x75390, symSize: 0x50 } - - { offsetInCU: 0x4C2, offset: 0x91D62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x920, symBinAddr: 0x753F0, symSize: 0x50 } - - { offsetInCU: 0x5C8, offset: 0x91E68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xA30, symBinAddr: 0x754B0, symSize: 0x40 } - - { offsetInCU: 0x639, offset: 0x91ED9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xA70, symBinAddr: 0x754F0, symSize: 0x10 } - - { offsetInCU: 0x686, offset: 0x91F26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA80, symBinAddr: 0x75500, symSize: 0x50 } - - { offsetInCU: 0x707, offset: 0x91FA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0xBF0, symBinAddr: 0x75670, symSize: 0x30 } - - { offsetInCU: 0x768, offset: 0x92008, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xC20, symBinAddr: 0x756A0, symSize: 0x50 } - - { offsetInCU: 0x7E9, offset: 0x92089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xC70, symBinAddr: 0x756F0, symSize: 0x40 } - - { offsetInCU: 0x884, offset: 0x92124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xCB0, symBinAddr: 0x75730, symSize: 0x80 } - - { offsetInCU: 0x933, offset: 0x921D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xD50, symBinAddr: 0x757B0, symSize: 0x70 } - - { offsetInCU: 0x9F6, offset: 0x92296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xDC0, symBinAddr: 0x75820, symSize: 0x80 } - - { offsetInCU: 0xAA5, offset: 0x92345, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xE40, symBinAddr: 0x758A0, symSize: 0x30 } - - { offsetInCU: 0xB34, offset: 0x923D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE70, symBinAddr: 0x758D0, symSize: 0x30 } - - { offsetInCU: 0xBC3, offset: 0x92463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xEA0, symBinAddr: 0x75900, symSize: 0x40 } - - { offsetInCU: 0xC53, offset: 0x924F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xEE0, symBinAddr: 0x75940, symSize: 0x40 } - - { offsetInCU: 0xCE6, offset: 0x92586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF20, symBinAddr: 0x75980, symSize: 0x40 } - - { offsetInCU: 0xD79, offset: 0x92619, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF60, symBinAddr: 0x759C0, symSize: 0x40 } - - { offsetInCU: 0xE0C, offset: 0x926AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xFA0, symBinAddr: 0x75A00, symSize: 0x40 } - - { offsetInCU: 0xE9F, offset: 0x9273F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xFE0, symBinAddr: 0x75A40, symSize: 0x30 } - - { offsetInCU: 0xF08, offset: 0x927A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x1010, symBinAddr: 0x75A70, symSize: 0x40 } - - { offsetInCU: 0xF69, offset: 0x92809, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x1050, symBinAddr: 0x75AB0, symSize: 0x130 } - - { offsetInCU: 0x1050, offset: 0x928F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0x1180, symBinAddr: 0x75BE0, symSize: 0xB0 } - - { offsetInCU: 0x1137, offset: 0x929D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x1230, symBinAddr: 0x75C90, symSize: 0x90 } - - { offsetInCU: 0x11D2, offset: 0x92A72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x12C0, symBinAddr: 0x75D20, symSize: 0xF0 } - - { offsetInCU: 0x11FF, offset: 0x92A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x13B0, symBinAddr: 0x75E10, symSize: 0x20 } - - { offsetInCU: 0x12A5, offset: 0x92B45, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xE0, symBinAddr: 0x74BF0, symSize: 0x50 } - - { offsetInCU: 0x12BD, offset: 0x92B5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x130, symBinAddr: 0x74C40, symSize: 0x80 } - - { offsetInCU: 0x135B, offset: 0x92BFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x7F0, symBinAddr: 0x752C0, symSize: 0x10 } - - { offsetInCU: 0x136F, offset: 0x92C0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x850, symBinAddr: 0x75320, symSize: 0x10 } - - { offsetInCU: 0x1383, offset: 0x92C23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x8B0, symBinAddr: 0x75380, symSize: 0x10 } - - { offsetInCU: 0x1397, offset: 0x92C37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x910, symBinAddr: 0x753E0, symSize: 0x10 } - - { offsetInCU: 0x13AB, offset: 0x92C4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x970, symBinAddr: 0x75440, symSize: 0x10 } - - { offsetInCU: 0x13BF, offset: 0x92C5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x9D0, symBinAddr: 0x75450, symSize: 0x20 } - - { offsetInCU: 0x13D3, offset: 0x92C73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOf', symObjAddr: 0x9F0, symBinAddr: 0x75470, symSize: 0x40 } - - { offsetInCU: 0x1434, offset: 0x92CD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x16E0, symBinAddr: 0x76140, symSize: 0x10 } - - { offsetInCU: 0x1448, offset: 0x92CE8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16F0, symBinAddr: 0x76150, symSize: 0x20 } - - { offsetInCU: 0x145C, offset: 0x92CFC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1710, symBinAddr: 0x76170, symSize: 0x10 } - - { offsetInCU: 0x1492, offset: 0x92D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1790, symBinAddr: 0x76180, symSize: 0x390 } - - { offsetInCU: 0x156A, offset: 0x92E0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1B20, symBinAddr: 0x76510, symSize: 0x450 } - - { offsetInCU: 0x1686, offset: 0x92F26, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x74B10, symSize: 0x10 } - - { offsetInCU: 0x16A2, offset: 0x92F42, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x10, symBinAddr: 0x74B20, symSize: 0x10 } - - { offsetInCU: 0x16BE, offset: 0x92F5E, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x20, symBinAddr: 0x74B30, symSize: 0x10 } - - { offsetInCU: 0x16DA, offset: 0x92F7A, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0x30, symBinAddr: 0x74B40, symSize: 0x10 } - - { offsetInCU: 0x16F6, offset: 0x92F96, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x40, symBinAddr: 0x74B50, symSize: 0x10 } - - { offsetInCU: 0x1712, offset: 0x92FB2, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x74B60, symSize: 0x10 } - - { offsetInCU: 0x172E, offset: 0x92FCE, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x60, symBinAddr: 0x74B70, symSize: 0x10 } - - { offsetInCU: 0x174A, offset: 0x92FEA, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x70, symBinAddr: 0x74B80, symSize: 0x10 } - - { offsetInCU: 0x1766, offset: 0x93006, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x80, symBinAddr: 0x74B90, symSize: 0x10 } - - { offsetInCU: 0x1782, offset: 0x93022, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x90, symBinAddr: 0x74BA0, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x9303E, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0xA0, symBinAddr: 0x74BB0, symSize: 0x20 } - - { offsetInCU: 0x17BA, offset: 0x9305A, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0xC0, symBinAddr: 0x74BD0, symSize: 0x20 } -... diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/Info.plist b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/Info.plist similarity index 100% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/Info.plist rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/Info.plist index bc46ec2..f61ba41 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/Info.plist +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/Info.plist @@ -10,15 +10,18 @@ DebugSymbolsPath dSYMs LibraryIdentifier - ios-arm64 + ios-arm64_x86_64-simulator LibraryPath IoTConnect2.framework SupportedArchitectures arm64 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + simulator BinaryPath @@ -26,18 +29,15 @@ DebugSymbolsPath dSYMs LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64 LibraryPath IoTConnect2.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - simulator CFBundlePackageType diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h similarity index 99% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h index ba3a321..b667505 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_SWIFT_H #define IOTCONNECT2_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Info.plist b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Info.plist similarity index 71% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Info.plist rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Info.plist index 8294295..e73c25b 100644 Binary files a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Info.plist and b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 new file mode 100755 index 0000000..cffc3a8 Binary files /dev/null and b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/LICENSE b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/LICENSE similarity index 100% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/LICENSE rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/LICENSE diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..bc01c39 --- /dev/null +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,11105 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2.SSLOption", + "usr": "s:11IoTConnect29SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2.SSLOption", + "usr": "s:11IoTConnect29SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2.SSLOption", + "usr": "s:11IoTConnect29SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2.OfflineStorageOption", + "usr": "s:11IoTConnect220OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2.OfflineStorageOption", + "usr": "s:11IoTConnect220OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2.OfflineStorageOption", + "usr": "s:11IoTConnect220OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2.SDKClientOption", + "usr": "s:11IoTConnect215SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect215SDKClientOptionVACycfc", + "mangledName": "$s11IoTConnect215SDKClientOptionVACycfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect215SDKClientOptionV", + "mangledName": "$s11IoTConnect215SDKClientOptionV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2" + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect217ReachabilityErrorO", + "mangledName": "$s11IoTConnect217ReachabilityErrorO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvp", + "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvg", + "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvg", + "moduleName": "IoTConnect2", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", + "mangledName": "$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", + "mangledName": "$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", + "mangledName": "$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC13startNotifieryyKF", + "mangledName": "$s11IoTConnect212ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC12stopNotifieryyF", + "mangledName": "$s11IoTConnect212ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvp", + "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvg", + "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11IoTConnect212ReachabilityC", + "mangledName": "$s11IoTConnect212ReachabilityC", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2.IoTConnectConfig", + "usr": "s:11IoTConnect20A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2.DebugConfig", + "usr": "s:11IoTConnect211DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2.MqttConfig", + "usr": "s:11IoTConnect210MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2.SDKClientOption", + "usr": "s:11IoTConnect215SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect20A14TConnectConfigV", + "mangledName": "$s11IoTConnect20A14TConnectConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvp", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvg", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvs", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvM", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect211DebugConfigV", + "mangledName": "$s11IoTConnect211DebugConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2.CertificateConfig", + "usr": "s:11IoTConnect217CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", + "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2.CertificateConfig", + "usr": "s:11IoTConnect217CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", + "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2.OfflineStorageConfig", + "usr": "s:11IoTConnect220OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", + "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2.OfflineStorageConfig", + "usr": "s:11IoTConnect220OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", + "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect210MqttConfigV", + "mangledName": "$s11IoTConnect210MqttConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvp", + "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvg", + "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect217CertificateConfigV", + "mangledName": "$s11IoTConnect217CertificateConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect220OfflineStorageConfigV", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect218MqttConnectionTypeO", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect220OfflineStorageOptionV", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEV", + "printedName": "DEV", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AVNET", + "printedName": "AVNET", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "QA", + "printedName": "QA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO2QAyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO2QAyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect215IOTCEnvironmentO", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect20A4TCPfO2azyA2CmF", + "mangledName": "$s11IoTConnect20A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect20A4TCPfO3awsyA2CmF", + "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvp", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvg", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect20A4TCPfO", + "mangledName": "$s11IoTConnect20A4TCPfO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvp", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvg", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvs", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvM", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect29SSLOptionV", + "mangledName": "$s11IoTConnect29SSLOptionV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect211CommandTypeO8rawValueSivp", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueSivg", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect211CommandTypeO", + "mangledName": "$s11IoTConnect211CommandTypeO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2.SDKClient", + "usr": "s:11IoTConnect29SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect29SDKClientC6sharedACvpZ", + "mangledName": "$s11IoTConnect29SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2.SDKClient", + "usr": "s:11IoTConnect29SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SDKClientC6sharedACvgZ", + "mangledName": "$s11IoTConnect29SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2.IoTConnectConfig", + "usr": "s:11IoTConnect20A14TConnectConfigV" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "mangledName": "$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC11getAllTwinsyyF", + "mangledName": "$s11IoTConnect29SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", + "mangledName": "$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", + "mangledName": "$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11IoTConnect29SDKClientC", + "mangledName": "$s11IoTConnect29SDKClientC", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS11IoTConnect2E6stringS2S_tcfc", + "mangledName": "$sSS11IoTConnect2E6stringS2S_tcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 20991, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4310, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17309, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19292, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33318, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 5, + "value": "\"DEV\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 7, + "value": "\"AVNET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 4, + "value": "\"QA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 5, + "value": "\"DEV\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 7, + "value": "\"AVNET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 4, + "value": "\"QA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5543, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 9694, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface similarity index 98% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface index 57e65f9..4959cbd 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc similarity index 92% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc index 1876c65..cea9dad 100644 Binary files a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc and b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface similarity index 98% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface index 57e65f9..4959cbd 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/module.modulemap b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/module.modulemap rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/IoTConnect2.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 new file mode 100644 index 0000000..6676399 Binary files /dev/null and b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml new file mode 100644 index 0000000..076f8c3 --- /dev/null +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml @@ -0,0 +1,1662 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' +relocations: + - { offsetInCU: 0x34, offset: 0x58969, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6EE30, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5899E, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6EE60, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58A03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x39B18, symBinAddr: 0x88B90, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x58CA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x93B0, symBinAddr: 0x11348, symSize: 0x15FC } + - { offsetInCU: 0x1C16, offset: 0x5A5CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x8000, symSize: 0x3C } + - { offsetInCU: 0x1E0E, offset: 0x5A7C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1B58, symBinAddr: 0x9B18, symSize: 0x8 } + - { offsetInCU: 0x1E22, offset: 0x5A7D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1B60, symBinAddr: 0x9B20, symSize: 0x3C } + - { offsetInCU: 0x1E36, offset: 0x5A7EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1B9C, symBinAddr: 0x9B5C, symSize: 0x168 } + - { offsetInCU: 0x227B, offset: 0x5AC2F, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8194, symBinAddr: 0x10144, symSize: 0xC } + - { offsetInCU: 0x228F, offset: 0x5AC43, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x81A0, symBinAddr: 0x10150, symSize: 0x4 } + - { offsetInCU: 0x22A3, offset: 0x5AC57, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x81A4, symBinAddr: 0x10154, symSize: 0x20 } + - { offsetInCU: 0x22B7, offset: 0x5AC6B, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x81C4, symBinAddr: 0x10174, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x5AE90, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8804, symBinAddr: 0x1079C, symSize: 0x2C } + - { offsetInCU: 0x24F0, offset: 0x5AEA4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8830, symBinAddr: 0x107C8, symSize: 0x2C } + - { offsetInCU: 0x2504, offset: 0x5AEB8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x889C, symBinAddr: 0x10834, symSize: 0x2C } + - { offsetInCU: 0x2518, offset: 0x5AECC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x88C8, symBinAddr: 0x10860, symSize: 0x2C } + - { offsetInCU: 0x2581, offset: 0x5AF35, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x8CD8, symBinAddr: 0x10C70, symSize: 0x68 } + - { offsetInCU: 0x2BB6, offset: 0x5B56A, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xAA1C, symBinAddr: 0x129B4, symSize: 0x48 } + - { offsetInCU: 0x2BCA, offset: 0x5B57E, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xAA64, symBinAddr: 0x129FC, symSize: 0x40 } + - { offsetInCU: 0x2BDE, offset: 0x5B592, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xAAA4, symBinAddr: 0x12A3C, symSize: 0x20 } + - { offsetInCU: 0x2BF2, offset: 0x5B5A6, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xAAC4, symBinAddr: 0x12A5C, symSize: 0x10 } + - { offsetInCU: 0x2C06, offset: 0x5B5BA, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xAAD4, symBinAddr: 0x12A6C, symSize: 0x3C } + - { offsetInCU: 0x2C1A, offset: 0x5B5CE, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAB70, symBinAddr: 0x12B08, symSize: 0x44 } + - { offsetInCU: 0x2C2E, offset: 0x5B5E2, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xAD3C, symBinAddr: 0x12CD4, symSize: 0x8 } + - { offsetInCU: 0x2C42, offset: 0x5B5F6, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xAD44, symBinAddr: 0x12CDC, symSize: 0x10 } + - { offsetInCU: 0x2C56, offset: 0x5B60A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xAD54, symBinAddr: 0x12CEC, symSize: 0x5C } + - { offsetInCU: 0x2C6A, offset: 0x5B61E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xADB0, symBinAddr: 0x12D48, symSize: 0x30C } + - { offsetInCU: 0x2C7E, offset: 0x5B632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB0BC, symBinAddr: 0x13054, symSize: 0x240 } + - { offsetInCU: 0x2C92, offset: 0x5B646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB2FC, symBinAddr: 0x13294, symSize: 0x70 } + - { offsetInCU: 0x2CA6, offset: 0x5B65A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xB36C, symBinAddr: 0x13304, symSize: 0x34 } + - { offsetInCU: 0x2CBA, offset: 0x5B66E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xB3A0, symBinAddr: 0x13338, symSize: 0x174 } + - { offsetInCU: 0x2CCE, offset: 0x5B682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xB514, symBinAddr: 0x134AC, symSize: 0xB4 } + - { offsetInCU: 0x2CE2, offset: 0x5B696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xB5C8, symBinAddr: 0x13560, symSize: 0x10 } + - { offsetInCU: 0x2CF6, offset: 0x5B6AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xB5D8, symBinAddr: 0x13570, symSize: 0x34 } + - { offsetInCU: 0x2D0A, offset: 0x5B6BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xB648, symBinAddr: 0x135E0, symSize: 0x5C } + - { offsetInCU: 0x2D1E, offset: 0x5B6D2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xB748, symBinAddr: 0x136E0, symSize: 0x2C } + - { offsetInCU: 0x2D32, offset: 0x5B6E6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xB774, symBinAddr: 0x1370C, symSize: 0x2C } + - { offsetInCU: 0x2D46, offset: 0x5B6FA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xB7A0, symBinAddr: 0x13738, symSize: 0x2C } + - { offsetInCU: 0x2D5A, offset: 0x5B70E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xB7CC, symBinAddr: 0x13764, symSize: 0x2C } + - { offsetInCU: 0x2D6E, offset: 0x5B722, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xB7F8, symBinAddr: 0x13790, symSize: 0x2C } + - { offsetInCU: 0x2D82, offset: 0x5B736, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xB824, symBinAddr: 0x137BC, symSize: 0x2C } + - { offsetInCU: 0x2D96, offset: 0x5B74A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xB850, symBinAddr: 0x137E8, symSize: 0x2C } + - { offsetInCU: 0x30F4, offset: 0x5BAA8, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6AB0, symBinAddr: 0xEA70, symSize: 0x6C } + - { offsetInCU: 0x3208, offset: 0x5BBBC, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8200, symBinAddr: 0x101B0, symSize: 0x80 } + - { offsetInCU: 0x3299, offset: 0x5BC4D, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8280, symBinAddr: 0x10230, symSize: 0x90 } + - { offsetInCU: 0x3339, offset: 0x5BCED, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8310, symBinAddr: 0x102C0, symSize: 0x14 } + - { offsetInCU: 0x3377, offset: 0x5BD2B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8330, symBinAddr: 0x102E0, symSize: 0x8 } + - { offsetInCU: 0x33DA, offset: 0x5BD8E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8338, symBinAddr: 0x102E8, symSize: 0x14 } + - { offsetInCU: 0x348B, offset: 0x5BE3F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x834C, symBinAddr: 0x102FC, symSize: 0x14 } + - { offsetInCU: 0x3534, offset: 0x5BEE8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8360, symBinAddr: 0x10310, symSize: 0x14 } + - { offsetInCU: 0x35DB, offset: 0x5BF8F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8374, symBinAddr: 0x10324, symSize: 0x30 } + - { offsetInCU: 0x3767, offset: 0x5C11B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x83A4, symBinAddr: 0x10354, symSize: 0x2C } + - { offsetInCU: 0x38FE, offset: 0x5C2B2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x83D0, symBinAddr: 0x10380, symSize: 0x24 } + - { offsetInCU: 0x39EA, offset: 0x5C39E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x83F4, symBinAddr: 0x103A4, symSize: 0x14 } + - { offsetInCU: 0x3A50, offset: 0x5C404, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8408, symBinAddr: 0x103B8, symSize: 0x14 } + - { offsetInCU: 0x3AB6, offset: 0x5C46A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x841C, symBinAddr: 0x103CC, symSize: 0x14 } + - { offsetInCU: 0x3B35, offset: 0x5C4E9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8430, symBinAddr: 0x103E0, symSize: 0x14 } + - { offsetInCU: 0x3BE8, offset: 0x5C59C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8444, symBinAddr: 0x103F4, symSize: 0x14 } + - { offsetInCU: 0x3C69, offset: 0x5C61D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8458, symBinAddr: 0x10408, symSize: 0x14 } + - { offsetInCU: 0x3D2B, offset: 0x5C6DF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x846C, symBinAddr: 0x1041C, symSize: 0x14 } + - { offsetInCU: 0x3DC5, offset: 0x5C779, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8480, symBinAddr: 0x10430, symSize: 0x10 } + - { offsetInCU: 0x3E2D, offset: 0x5C7E1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8490, symBinAddr: 0x10440, symSize: 0x18 } + - { offsetInCU: 0x3E49, offset: 0x5C7FD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x84A8, symBinAddr: 0x10458, symSize: 0x14 } + - { offsetInCU: 0x3EC5, offset: 0x5C879, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x84D8, symBinAddr: 0x10488, symSize: 0x8 } + - { offsetInCU: 0x3EE1, offset: 0x5C895, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x84E0, symBinAddr: 0x10490, symSize: 0x14 } + - { offsetInCU: 0x3F12, offset: 0x5C8C6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x84F4, symBinAddr: 0x104A4, symSize: 0x14 } + - { offsetInCU: 0x3F43, offset: 0x5C8F7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8508, symBinAddr: 0x104B8, symSize: 0x14 } + - { offsetInCU: 0x3F74, offset: 0x5C928, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x851C, symBinAddr: 0x104CC, symSize: 0x30 } + - { offsetInCU: 0x3FA3, offset: 0x5C957, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x854C, symBinAddr: 0x104FC, symSize: 0x2C } + - { offsetInCU: 0x3FD4, offset: 0x5C988, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8578, symBinAddr: 0x10528, symSize: 0x24 } + - { offsetInCU: 0x4005, offset: 0x5C9B9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x859C, symBinAddr: 0x1054C, symSize: 0x14 } + - { offsetInCU: 0x4036, offset: 0x5C9EA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x85B0, symBinAddr: 0x10560, symSize: 0x14 } + - { offsetInCU: 0x4067, offset: 0x5CA1B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x85C4, symBinAddr: 0x10574, symSize: 0x14 } + - { offsetInCU: 0x4098, offset: 0x5CA4C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x85D8, symBinAddr: 0x10588, symSize: 0x14 } + - { offsetInCU: 0x40C9, offset: 0x5CA7D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x85EC, symBinAddr: 0x1059C, symSize: 0x14 } + - { offsetInCU: 0x40FA, offset: 0x5CAAE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8600, symBinAddr: 0x105B0, symSize: 0x14 } + - { offsetInCU: 0x412B, offset: 0x5CADF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8614, symBinAddr: 0x105C4, symSize: 0x14 } + - { offsetInCU: 0x415C, offset: 0x5CB10, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8628, symBinAddr: 0x105D8, symSize: 0x10 } + - { offsetInCU: 0x418D, offset: 0x5CB41, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8638, symBinAddr: 0x105E8, symSize: 0x18 } + - { offsetInCU: 0x41A9, offset: 0x5CB5D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8650, symBinAddr: 0x10600, symSize: 0x14 } + - { offsetInCU: 0x41F9, offset: 0x5CBAD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8670, symBinAddr: 0x10620, symSize: 0x40 } + - { offsetInCU: 0x4281, offset: 0x5CC35, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x86B0, symBinAddr: 0x10660, symSize: 0x70 } + - { offsetInCU: 0x4305, offset: 0x5CCB9, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8768, symBinAddr: 0x10718, symSize: 0x4 } + - { offsetInCU: 0x4321, offset: 0x5CCD5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x876C, symBinAddr: 0x1071C, symSize: 0x4 } + - { offsetInCU: 0x434C, offset: 0x5CD00, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8770, symBinAddr: 0x10720, symSize: 0x40 } + - { offsetInCU: 0x43DA, offset: 0x5CD8E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x87C8, symBinAddr: 0x10760, symSize: 0x3C } + - { offsetInCU: 0x440B, offset: 0x5CDBF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x88F4, symBinAddr: 0x1088C, symSize: 0x14 } + - { offsetInCU: 0x4442, offset: 0x5CDF6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8908, symBinAddr: 0x108A0, symSize: 0x3C } + - { offsetInCU: 0x4482, offset: 0x5CE36, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8944, symBinAddr: 0x108DC, symSize: 0x88 } + - { offsetInCU: 0x452C, offset: 0x5CEE0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8A60, symBinAddr: 0x109F8, symSize: 0x84 } + - { offsetInCU: 0x4560, offset: 0x5CF14, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9078, symBinAddr: 0x11010, symSize: 0xB8 } + - { offsetInCU: 0x4638, offset: 0x5CFEC, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9130, symBinAddr: 0x110C8, symSize: 0x164 } + - { offsetInCU: 0x48B6, offset: 0x5D26A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x48D6, offset: 0x5D28A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x48EA, offset: 0x5D29E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x490A, offset: 0x5D2BE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x491E, offset: 0x5D2D2, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x4932, offset: 0x5D2E6, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x4946, offset: 0x5D2FA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA9AC, symBinAddr: 0x12944, symSize: 0x38 } + - { offsetInCU: 0x4A43, offset: 0x5D3F7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4A63, offset: 0x5D417, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4A77, offset: 0x5D42B, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4A97, offset: 0x5D44B, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4AAB, offset: 0x5D45F, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4ABF, offset: 0x5D473, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4AD3, offset: 0x5D487, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA9E4, symBinAddr: 0x1297C, symSize: 0x38 } + - { offsetInCU: 0x4D00, offset: 0x5D6B4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x89F4, symBinAddr: 0x1098C, symSize: 0x44 } + - { offsetInCU: 0x4D29, offset: 0x5D6DD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8A38, symBinAddr: 0x109D0, symSize: 0x28 } + - { offsetInCU: 0x4D64, offset: 0x5D718, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x89D8, symBinAddr: 0x10970, symSize: 0x10 } + - { offsetInCU: 0x4D80, offset: 0x5D734, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x89E8, symBinAddr: 0x10980, symSize: 0xC } + - { offsetInCU: 0x4DAE, offset: 0x5D762, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x89CC, symBinAddr: 0x10964, symSize: 0xC } + - { offsetInCU: 0x4E86, offset: 0x5D83A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8324, symBinAddr: 0x102D4, symSize: 0xC } + - { offsetInCU: 0x4EB8, offset: 0x5D86C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x84BC, symBinAddr: 0x1046C, symSize: 0x10 } + - { offsetInCU: 0x4ED4, offset: 0x5D888, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x84CC, symBinAddr: 0x1047C, symSize: 0xC } + - { offsetInCU: 0x4F32, offset: 0x5D8E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x803C, symSize: 0x44 } + - { offsetInCU: 0x4F46, offset: 0x5D8FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x8080, symSize: 0x4 } + - { offsetInCU: 0x4F6E, offset: 0x5D922, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x8084, symSize: 0x2BC } + - { offsetInCU: 0x50A6, offset: 0x5DA5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x8340, symSize: 0x1430 } + - { offsetInCU: 0x53BC, offset: 0x5DD70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x17B0, symBinAddr: 0x9770, symSize: 0x384 } + - { offsetInCU: 0x5415, offset: 0x5DDC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1B34, symBinAddr: 0x9AF4, symSize: 0x24 } + - { offsetInCU: 0x544D, offset: 0x5DE01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D04, symBinAddr: 0x9CC4, symSize: 0x298 } + - { offsetInCU: 0x55BE, offset: 0x5DF72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1F9C, symBinAddr: 0x9F5C, symSize: 0x3E4 } + - { offsetInCU: 0x5869, offset: 0x5E21D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2380, symBinAddr: 0xA340, symSize: 0x7A8 } + - { offsetInCU: 0x5E84, offset: 0x5E838, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2B38, symBinAddr: 0xAAF8, symSize: 0x534 } + - { offsetInCU: 0x6279, offset: 0x5EC2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x306C, symBinAddr: 0xB02C, symSize: 0x3A44 } + - { offsetInCU: 0x7252, offset: 0x5FC06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6B2C, symBinAddr: 0xEADC, symSize: 0x150 } + - { offsetInCU: 0x7331, offset: 0x5FCE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6C7C, symBinAddr: 0xEC2C, symSize: 0x300 } + - { offsetInCU: 0x7594, offset: 0x5FF48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x6F7C, symBinAddr: 0xEF2C, symSize: 0x3C8 } + - { offsetInCU: 0x78F2, offset: 0x602A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7344, symBinAddr: 0xF2F4, symSize: 0x2B0 } + - { offsetInCU: 0x7A99, offset: 0x6044D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7844, symBinAddr: 0xF7F4, symSize: 0x31C } + - { offsetInCU: 0x7BF4, offset: 0x605A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x7B60, symBinAddr: 0xFB10, symSize: 0x438 } + - { offsetInCU: 0x7E5E, offset: 0x60812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x7F98, symBinAddr: 0xFF48, symSize: 0x188 } + - { offsetInCU: 0x811A, offset: 0x60ACE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8AE4, symBinAddr: 0x10A7C, symSize: 0x1F4 } + - { offsetInCU: 0x819F, offset: 0x60B53, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x8E9C, symBinAddr: 0x10E34, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x60E51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13820, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x60E8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x13830, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x60F73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13820, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x60FE0, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x1385C, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x60FF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x13870, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61066, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0x13950, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x610C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0x13968, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x6113B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0x13994, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x61170, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x1399C, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x611A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0x139C0, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x611BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0x139CC, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x611D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2398, symBinAddr: 0x15BE8, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61399, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13E8, symBinAddr: 0x14C38, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x613D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1438, symBinAddr: 0x14C88, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x613F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x27B4, symBinAddr: 0x16004, symSize: 0x145C } + - { offsetInCU: 0x4B4, offset: 0x61451, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1488, symBinAddr: 0x14CD8, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x614A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x14CE0, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x6158C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D0, symBinAddr: 0x14D20, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x615FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1530, symBinAddr: 0x14D80, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x6164C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x153C, symBinAddr: 0x14D8C, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x616A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15B8, symBinAddr: 0x14E08, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x616C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15C4, symBinAddr: 0x14E14, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x616FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1620, symBinAddr: 0x14E70, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1670, symBinAddr: 0x14EC0, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61759, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3C10, symBinAddr: 0x17460, symSize: 0x258 } + - { offsetInCU: 0x857, offset: 0x617F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x14F18, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1724, symBinAddr: 0x14F74, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x6185A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1748, symBinAddr: 0x14F98, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1754, symBinAddr: 0x14FA4, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61892, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5DAC, symBinAddr: 0x195B8, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x6196B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0x15000, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x619A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1800, symBinAddr: 0x15050, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x619C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5F5C, symBinAddr: 0x19768, symSize: 0x320 } + - { offsetInCU: 0xA97, offset: 0x61A34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1848, symBinAddr: 0x15098, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1898, symBinAddr: 0x150E8, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61A9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x18BC, symBinAddr: 0x1510C, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18C8, symBinAddr: 0x15118, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61AD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x627C, symBinAddr: 0x19A88, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x61B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1924, symBinAddr: 0x15174, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x61BB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1964, symBinAddr: 0x151B4, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x61BDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x63E4, symBinAddr: 0x19BF0, symSize: 0x2D8 } + - { offsetInCU: 0xCA2, offset: 0x61C3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x19A4, symBinAddr: 0x151F4, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x61C74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x19F0, symBinAddr: 0x15240, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x61CA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A14, symBinAddr: 0x15264, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x61CC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x15270, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x61CDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x66BC, symBinAddr: 0x19EC8, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x61D9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A7C, symBinAddr: 0x152CC, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x61DD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AEC, symBinAddr: 0x1533C, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x61DF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x681C, symBinAddr: 0x1A028, symSize: 0x4E8 } + - { offsetInCU: 0xEC9, offset: 0x61E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B4C, symBinAddr: 0x1539C, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x61E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BD4, symBinAddr: 0x15424, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x61ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BF8, symBinAddr: 0x15448, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x61EE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C04, symBinAddr: 0x15454, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x61F04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6DD0, symBinAddr: 0x1A5DC, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x62018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C60, symBinAddr: 0x154B0, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x6204F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CC4, symBinAddr: 0x15514, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x62072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7064, symBinAddr: 0x1A870, symSize: 0x58C } + - { offsetInCU: 0x1162, offset: 0x620FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D14, symBinAddr: 0x15564, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6217F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1D2C, symBinAddr: 0x1557C, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x62262, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D70, symBinAddr: 0x155C0, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x622E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DD8, symBinAddr: 0x15628, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x6233D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DF4, symBinAddr: 0x15644, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x6236E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E18, symBinAddr: 0x15668, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x6238A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E24, symBinAddr: 0x15674, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x623A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7634, symBinAddr: 0x1AE40, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62434, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x156D0, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x6246B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EAC, symBinAddr: 0x156FC, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x6248E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x76F4, symBinAddr: 0x1AF00, symSize: 0x1B0 } + - { offsetInCU: 0x156C, offset: 0x62509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1ED0, symBinAddr: 0x15720, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x6253E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x15790, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x6256F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1F64, symBinAddr: 0x157B4, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x6258B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F70, symBinAddr: 0x157C0, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x625A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x78E8, symBinAddr: 0x1B0F4, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x626B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FCC, symBinAddr: 0x1581C, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x626E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2024, symBinAddr: 0x15874, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x6270C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7B2C, symBinAddr: 0x1B338, symSize: 0x370 } + - { offsetInCU: 0x17D2, offset: 0x6276F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x158C4, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x627A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x20D8, symBinAddr: 0x15928, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x627D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x20FC, symBinAddr: 0x1594C, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x627F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2108, symBinAddr: 0x15958, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x6280D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E9C, symBinAddr: 0x1B6A8, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x628EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2164, symBinAddr: 0x159B4, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62926, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21AC, symBinAddr: 0x159FC, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62949, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8090, symBinAddr: 0x1B89C, symSize: 0x390 } + - { offsetInCU: 0x1A2F, offset: 0x629CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2278, symBinAddr: 0x15AC8, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62A16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2290, symBinAddr: 0x15AE0, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62A47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22B4, symBinAddr: 0x15B04, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62A63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x22C0, symBinAddr: 0x15B10, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62A7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x84A8, symBinAddr: 0x1BCB4, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x62B26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x231C, symBinAddr: 0x15B6C, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x62B5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2360, symBinAddr: 0x15BB0, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x62B80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x85B4, symBinAddr: 0x1BDC0, symSize: 0x1DC } + - { offsetInCU: 0x1C20, offset: 0x62BBD, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3EA8, symBinAddr: 0x176B8, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x62BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3ECC, symBinAddr: 0x176DC, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x62BE5, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F10, symBinAddr: 0x17720, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x62BF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3F30, symBinAddr: 0x17740, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x62C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3F74, symBinAddr: 0x17784, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x62C21, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FB8, symBinAddr: 0x177C8, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x62C35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3FC0, symBinAddr: 0x177CC, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x62C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4010, symBinAddr: 0x1781C, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x62C5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x409C, symBinAddr: 0x178A8, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x62C71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x40A4, symBinAddr: 0x178B0, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x62C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x40A8, symBinAddr: 0x178B4, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x62C99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x40AC, symBinAddr: 0x178B8, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x62CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x40BC, symBinAddr: 0x178C8, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x62CC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x496C, symBinAddr: 0x18178, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x62CD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x497C, symBinAddr: 0x18188, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x62CE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4980, symBinAddr: 0x1818C, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x62CFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x49C4, symBinAddr: 0x181D0, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x62D11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x49C8, symBinAddr: 0x181D4, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x62D25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4A0C, symBinAddr: 0x18218, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x62D39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4A10, symBinAddr: 0x1821C, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x62D4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x4A54, symBinAddr: 0x18260, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x62D61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4A98, symBinAddr: 0x182A4, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x62D75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4ADC, symBinAddr: 0x182E8, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x62D89, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4B20, symBinAddr: 0x1832C, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x62D9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x4B64, symBinAddr: 0x18370, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x62DB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4BA8, symBinAddr: 0x183B4, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x62DC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x4BEC, symBinAddr: 0x183F8, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x62DD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x4C30, symBinAddr: 0x1843C, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x62DED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x4C74, symBinAddr: 0x18480, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x62E01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x4CB8, symBinAddr: 0x184C4, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x62E15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x4CFC, symBinAddr: 0x18508, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x62E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4D40, symBinAddr: 0x1854C, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x62E3D, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4D84, symBinAddr: 0x18590, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x62E51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4D90, symBinAddr: 0x1859C, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x62E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4E20, symBinAddr: 0x1862C, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x62E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4EDC, symBinAddr: 0x186E8, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x62E8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4EE4, symBinAddr: 0x186F0, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x62EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4EE8, symBinAddr: 0x186F4, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x62EB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4EF0, symBinAddr: 0x186FC, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x62EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4F00, symBinAddr: 0x1870C, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x62EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4F28, symBinAddr: 0x18734, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x62EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4F6C, symBinAddr: 0x18778, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x62F05, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4FE0, symBinAddr: 0x187EC, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x62F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4FF4, symBinAddr: 0x18800, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x62F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x5040, symBinAddr: 0x1884C, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x62F41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x5088, symBinAddr: 0x18894, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x62F55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x50D0, symBinAddr: 0x188DC, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x62F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x50E0, symBinAddr: 0x188EC, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x62F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5118, symBinAddr: 0x18924, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x62F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x518C, symBinAddr: 0x18998, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x62FA5, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5248, symBinAddr: 0x18A54, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x62FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x5264, symBinAddr: 0x18A70, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x62FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x52E0, symBinAddr: 0x18AEC, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x62FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5328, symBinAddr: 0x18B34, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x62FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x537C, symBinAddr: 0x18B88, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x63009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x538C, symBinAddr: 0x18B98, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x6301D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x53B4, symBinAddr: 0x18BC0, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x63031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x53F0, symBinAddr: 0x18BFC, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x63045, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x545C, symBinAddr: 0x18C68, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x63059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5468, symBinAddr: 0x18C74, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x6306D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x54AC, symBinAddr: 0x18CB8, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x63081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x54F4, symBinAddr: 0x18D00, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5534, symBinAddr: 0x18D40, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x630A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x5544, symBinAddr: 0x18D50, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x630BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x5594, symBinAddr: 0x18DA0, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x630D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5640, symBinAddr: 0x18E4C, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x630E5, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5754, symBinAddr: 0x18F60, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x630F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5780, symBinAddr: 0x18F8C, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x6310D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x581C, symBinAddr: 0x19028, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x63121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x5864, symBinAddr: 0x19070, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x63135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x58C0, symBinAddr: 0x190CC, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x63149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x58D0, symBinAddr: 0x190DC, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x6315D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5928, symBinAddr: 0x19134, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x63171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x59EC, symBinAddr: 0x191F8, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63185, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5B30, symBinAddr: 0x1933C, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63199, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x5B64, symBinAddr: 0x19370, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x631AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x5C18, symBinAddr: 0x19424, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x631C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5C60, symBinAddr: 0x1946C, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x631D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x5CC4, symBinAddr: 0x194D0, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x631E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5CD4, symBinAddr: 0x194E0, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x631FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x5CD8, symBinAddr: 0x194E4, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x63211, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5D1C, symBinAddr: 0x19528, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x63225, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5D20, symBinAddr: 0x1952C, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x63239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5D64, symBinAddr: 0x19570, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x6324D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5D68, symBinAddr: 0x19574, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x63261, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x6D04, symBinAddr: 0x1A510, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63275, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x6D48, symBinAddr: 0x1A554, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6D8C, symBinAddr: 0x1A598, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x6329D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x75F0, symBinAddr: 0x1ADFC, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x632B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x78A4, symBinAddr: 0x1B0B0, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x632C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8420, symBinAddr: 0x1BC2C, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x632D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8464, symBinAddr: 0x1BC70, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x632ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8790, symBinAddr: 0x1BF9C, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x63301, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x87D4, symBinAddr: 0x1BFE0, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63315, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x8818, symBinAddr: 0x1C024, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63329, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x88C0, symBinAddr: 0x1C0CC, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x6333D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8904, symBinAddr: 0x1C110, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x63351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8994, symBinAddr: 0x1C1A0, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63365, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A50, symBinAddr: 0x1C25C, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A54, symBinAddr: 0x1C260, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x6338D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8A64, symBinAddr: 0x1C270, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x633A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8AF4, symBinAddr: 0x1C300, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x633B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8BB0, symBinAddr: 0x1C3BC, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x633C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8BB4, symBinAddr: 0x1C3C0, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x633DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8BC4, symBinAddr: 0x1C3D0, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x633F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8C54, symBinAddr: 0x1C460, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63405, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x8D10, symBinAddr: 0x1C51C, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63419, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8D18, symBinAddr: 0x1C524, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x6342D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x8D1C, symBinAddr: 0x1C528, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x63441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8D28, symBinAddr: 0x1C534, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63455, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8D38, symBinAddr: 0x1C544, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63469, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8DC8, symBinAddr: 0x1C5D4, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x6347D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8E84, symBinAddr: 0x1C690, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x63491, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8E88, symBinAddr: 0x1C694, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x634A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8EA0, symBinAddr: 0x1C6AC, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x634B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8EA4, symBinAddr: 0x1C6B0, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x634CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8EB4, symBinAddr: 0x1C6C0, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x634E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8EEC, symBinAddr: 0x1C6F8, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x634F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8F60, symBinAddr: 0x1C76C, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63509, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9024, symBinAddr: 0x1C830, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x6351D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x9048, symBinAddr: 0x1C854, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63531, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x90BC, symBinAddr: 0x1C8C8, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63545, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x9104, symBinAddr: 0x1C910, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63559, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x9158, symBinAddr: 0x1C964, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x6356D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x9168, symBinAddr: 0x1C974, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63581, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x91A0, symBinAddr: 0x1C9AC, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63595, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x9204, symBinAddr: 0x1CA10, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x635A9, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x92B0, symBinAddr: 0x1CABC, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x635BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x92C4, symBinAddr: 0x1CAD0, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x635D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x9328, symBinAddr: 0x1CB34, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x635E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9370, symBinAddr: 0x1CB7C, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x635F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x93C0, symBinAddr: 0x1CBCC, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x6360D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x93D0, symBinAddr: 0x1CBDC, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63621, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x9408, symBinAddr: 0x1CC14, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63635, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9474, symBinAddr: 0x1CC80, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63649, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9528, symBinAddr: 0x1CD34, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x6365D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x954C, symBinAddr: 0x1CD58, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x95B8, symBinAddr: 0x1CDC4, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63685, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x9600, symBinAddr: 0x1CE0C, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63699, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9650, symBinAddr: 0x1CE5C, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x636AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9660, symBinAddr: 0x1CE6C, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x636C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9664, symBinAddr: 0x1CE70, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x636D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x96A8, symBinAddr: 0x1CEB4, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x636E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x96AC, symBinAddr: 0x1CEB8, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x636FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x96F0, symBinAddr: 0x1CEFC, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63711, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x96F4, symBinAddr: 0x1CF00, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63725, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9738, symBinAddr: 0x1CF44, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63739, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x973C, symBinAddr: 0x1CF48, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x6374D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9780, symBinAddr: 0x1CF8C, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63761, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9784, symBinAddr: 0x1CF90, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63775, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97C8, symBinAddr: 0x1CFD4, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97CC, symBinAddr: 0x1CFD8, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x6379D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9810, symBinAddr: 0x1D01C, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x637B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9814, symBinAddr: 0x1D020, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x637C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9858, symBinAddr: 0x1D064, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x637D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x985C, symBinAddr: 0x1D068, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x637ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x98A0, symBinAddr: 0x1D0AC, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x98A4, symBinAddr: 0x1D0B0, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63815, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98E8, symBinAddr: 0x1D0F4, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98EC, symBinAddr: 0x1D0F8, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x6383D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9930, symBinAddr: 0x1D13C, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63851, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9934, symBinAddr: 0x1D140, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63865, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9978, symBinAddr: 0x1D184, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63879, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x997C, symBinAddr: 0x1D188, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x6388D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x99C0, symBinAddr: 0x1D1CC, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x638A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x99C4, symBinAddr: 0x1D1D0, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x638B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9A08, symBinAddr: 0x1D214, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x638C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9A0C, symBinAddr: 0x1D218, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x638DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9A50, symBinAddr: 0x1D25C, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x638F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9A54, symBinAddr: 0x1D260, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63905, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9A98, symBinAddr: 0x1D2A4, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63919, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9ADC, symBinAddr: 0x1D2E8, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x6392D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9B20, symBinAddr: 0x1D32C, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63941, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9B64, symBinAddr: 0x1D370, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63955, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9BF4, symBinAddr: 0x1D400, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63969, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9CB0, symBinAddr: 0x1D4BC, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x6397D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9CB4, symBinAddr: 0x1D4C0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63991, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9E18, symBinAddr: 0x1D624, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x639A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9E1C, symBinAddr: 0x1D628, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x639B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9E2C, symBinAddr: 0x1D638, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x639CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9EBC, symBinAddr: 0x1D6C8, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x639E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9F78, symBinAddr: 0x1D784, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x639F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9F7C, symBinAddr: 0x1D788, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63A09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F8C, symBinAddr: 0x1D798, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63A1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x1D79C, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63A31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9FD4, symBinAddr: 0x1D7E0, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63A45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9FD8, symBinAddr: 0x1D7E4, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63A59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA01C, symBinAddr: 0x1D828, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63A6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA020, symBinAddr: 0x1D82C, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63A81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA064, symBinAddr: 0x1D870, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63A95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA068, symBinAddr: 0x1D874, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63AA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA0AC, symBinAddr: 0x1D8B8, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63ABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA0B0, symBinAddr: 0x1D8BC, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63AD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0F4, symBinAddr: 0x1D900, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63AE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0F8, symBinAddr: 0x1D904, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63AF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA13C, symBinAddr: 0x1D948, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x63B0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA140, symBinAddr: 0x1D94C, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x63B21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA184, symBinAddr: 0x1D990, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x63B35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA188, symBinAddr: 0x1D994, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x63B49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA1CC, symBinAddr: 0x1D9D8, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x63B5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x1D9DC, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x63BB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0x139D8, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x63BD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0x13A00, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x63C3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14F4, symBinAddr: 0x14D44, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15D0, symBinAddr: 0x14E20, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x63D1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15F8, symBinAddr: 0x14E48, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x63D3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x14FB0, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x63D58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0x14FD8, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x63D7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18D4, symBinAddr: 0x15124, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x63D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18FC, symBinAddr: 0x1514C, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x63DB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x1527C, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x63DD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x152A4, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x63DF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C10, symBinAddr: 0x15460, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x63E12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x15488, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x63E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D98, symBinAddr: 0x155E8, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x63F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0x15680, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x63F23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E58, symBinAddr: 0x156A8, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x63F45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F7C, symBinAddr: 0x157CC, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x63F61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1FA4, symBinAddr: 0x157F4, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x63F83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2114, symBinAddr: 0x15964, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x63F9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x213C, symBinAddr: 0x1598C, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x63FC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x22CC, symBinAddr: 0x15B1C, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x63FDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x22F4, symBinAddr: 0x15B44, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x640C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x13880, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x64147, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0x13A28, symSize: 0x41C } + - { offsetInCU: 0x31DB, offset: 0x64178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5F4, symBinAddr: 0x13E44, symSize: 0x110 } + - { offsetInCU: 0x320C, offset: 0x641A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x704, symBinAddr: 0x13F54, symSize: 0x18C } + - { offsetInCU: 0x323D, offset: 0x641DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x890, symBinAddr: 0x140E0, symSize: 0x164 } + - { offsetInCU: 0x326E, offset: 0x6420B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9F4, symBinAddr: 0x14244, symSize: 0x1B4 } + - { offsetInCU: 0x329F, offset: 0x6423C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xBA8, symBinAddr: 0x143F8, symSize: 0x204 } + - { offsetInCU: 0x32D0, offset: 0x6426D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDAC, symBinAddr: 0x145FC, symSize: 0x128 } + - { offsetInCU: 0x3301, offset: 0x6429E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xED4, symBinAddr: 0x14724, symSize: 0x1DC } + - { offsetInCU: 0x3332, offset: 0x642CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10B0, symBinAddr: 0x14900, symSize: 0x1FC } + - { offsetInCU: 0x3363, offset: 0x64300, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12AC, symBinAddr: 0x14AFC, symSize: 0x13C } + - { offsetInCU: 0x27, offset: 0x6453C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAB4, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x1DDC8, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64916, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x1DDF8, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x6492A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x1DE38, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x6493E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x1DEDC, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64952, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1DFE0, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x1E00C, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x6497A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x1E0A8, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x6498E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1E0F0, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x649A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1E150, symSize: 0x10 } + - { offsetInCU: 0x614, offset: 0x64B29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAB4, symSize: 0x38 } + - { offsetInCU: 0x62C, offset: 0x64B41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DAB4, symSize: 0x38 } + - { offsetInCU: 0x653, offset: 0x64B68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x1DAEC, symSize: 0x3C } + - { offsetInCU: 0x66D, offset: 0x64B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x1DB28, symSize: 0x54 } + - { offsetInCU: 0x6A2, offset: 0x64BB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x1DB7C, symSize: 0x10 } + - { offsetInCU: 0x6B6, offset: 0x64BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x1DB8C, symSize: 0x4 } + - { offsetInCU: 0x6D7, offset: 0x64BEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0xDC, symBinAddr: 0x1DB90, symSize: 0x14 } + - { offsetInCU: 0x6EB, offset: 0x64C00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0xF0, symBinAddr: 0x1DBA4, symSize: 0x14 } + - { offsetInCU: 0x71B, offset: 0x64C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x104, symBinAddr: 0x1DBB8, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x64C54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x1DBC8, symSize: 0x4 } + - { offsetInCU: 0x760, offset: 0x64C75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x1DBCC, symSize: 0x2C } + - { offsetInCU: 0x774, offset: 0x64C89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x1DBF8, symSize: 0x34 } + - { offsetInCU: 0x7A9, offset: 0x64CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1DC2C, symSize: 0x10 } + - { offsetInCU: 0x7CD, offset: 0x64CE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1DC3C, symSize: 0x4 } + - { offsetInCU: 0x7EE, offset: 0x64D03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1DC40, symSize: 0x8 } + - { offsetInCU: 0x802, offset: 0x64D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x1DC48, symSize: 0x8 } + - { offsetInCU: 0x832, offset: 0x64D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1DC50, symSize: 0x10 } + - { offsetInCU: 0x856, offset: 0x64D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1DC60, symSize: 0x4 } + - { offsetInCU: 0x877, offset: 0x64D8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x1DC64, symSize: 0x8 } + - { offsetInCU: 0x88B, offset: 0x64DA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1DC6C, symSize: 0x8 } + - { offsetInCU: 0x8BB, offset: 0x64DD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x1DC74, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x64DF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x1DC84, symSize: 0x4 } + - { offsetInCU: 0x900, offset: 0x64E15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x1DC88, symSize: 0x2C } + - { offsetInCU: 0x914, offset: 0x64E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x1DCB4, symSize: 0x34 } + - { offsetInCU: 0x949, offset: 0x64E5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x1DCE8, symSize: 0x10 } + - { offsetInCU: 0x96D, offset: 0x64E82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x1DCF8, symSize: 0x4 } + - { offsetInCU: 0x98E, offset: 0x64EA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x1DCFC, symSize: 0x2C } + - { offsetInCU: 0x9A2, offset: 0x64EB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x1DD28, symSize: 0x34 } + - { offsetInCU: 0x9D7, offset: 0x64EEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1DD5C, symSize: 0x10 } + - { offsetInCU: 0x9FB, offset: 0x64F10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1DD6C, symSize: 0x4 } + - { offsetInCU: 0xA1C, offset: 0x64F31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1DD70, symSize: 0xC } + - { offsetInCU: 0xA30, offset: 0x64F45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1DD7C, symSize: 0xC } + - { offsetInCU: 0xA64, offset: 0x64F79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x1DD88, symSize: 0x10 } + - { offsetInCU: 0xA88, offset: 0x64F9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x1DD98, symSize: 0x4 } + - { offsetInCU: 0xAA9, offset: 0x64FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1DD9C, symSize: 0xC } + - { offsetInCU: 0xABD, offset: 0x64FD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x1DDA8, symSize: 0xC } + - { offsetInCU: 0xAF1, offset: 0x65006, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x1DDB4, symSize: 0x10 } + - { offsetInCU: 0xB15, offset: 0x6502A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x1DDC4, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x650ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x598, symBinAddr: 0x1E6F8, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x6511E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5C4, symBinAddr: 0x1E724, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x6513A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x1E960, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x651B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x7AC, symBinAddr: 0x1E90C, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x651E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7D8, symBinAddr: 0x1E938, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x65200, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x864, symBinAddr: 0x1E9C4, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x65240, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C8, symBinAddr: 0x1EA28, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x65270, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9DC, symBinAddr: 0x1EB2C, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x65284, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA6C, symBinAddr: 0x1EBBC, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65298, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB28, symBinAddr: 0x1EC78, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x652AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB2C, symBinAddr: 0x1EC7C, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x652C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB3C, symBinAddr: 0x1EC8C, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x652D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBCC, symBinAddr: 0x1ED1C, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x652E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC88, symBinAddr: 0x1EDD8, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x652FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC90, symBinAddr: 0x1EDE0, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x65310, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC94, symBinAddr: 0x1EDE4, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x65324, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC9C, symBinAddr: 0x1EDEC, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x65338, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCAC, symBinAddr: 0x1EDFC, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x6534C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x1EE00, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x65360, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF4, symBinAddr: 0x1EE44, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x65374, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF8, symBinAddr: 0x1EE48, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x6547E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1E160, symSize: 0x2AC } + - { offsetInCU: 0x433, offset: 0x654A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1E40C, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x655CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x1EFC8, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x6560F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x1EFE8, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x65663, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x1F074, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x6568A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x1F078, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x656B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1F07C, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x656D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1F0F0, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x65714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x1F0F4, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65780, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x1F174, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x657D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x1F1D8, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65827, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x1F268, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x65884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x1F2E8, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x658B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1F34C, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x658D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x1F350, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x659BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1FAA4, symSize: 0x384 } + - { offsetInCU: 0x7D5, offset: 0x65CCD, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1060, symBinAddr: 0x1FEF4, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x65CE1, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1070, symBinAddr: 0x1FF04, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x65CF5, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1104, symBinAddr: 0x1FF14, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x65D09, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x114C, symBinAddr: 0x1FF5C, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x65D1D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1160, symBinAddr: 0x1FF70, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x65D31, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x11A4, symBinAddr: 0x1FFB4, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x65D45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11E4, symBinAddr: 0x1FFF4, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x65D59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x13A8, symBinAddr: 0x201B8, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x65D6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13D8, symBinAddr: 0x201E8, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x65D81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1594, symBinAddr: 0x203A4, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x65F8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1EE94, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x65FB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1EFA8, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x660E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x1F354, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x661C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1FA30, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x66254, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF94, symBinAddr: 0x1FE28, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x662C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFFC, symBinAddr: 0x1FE90, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x66374, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AF0, symBinAddr: 0x87330, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x6638E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2AF8, symBinAddr: 0x87338, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x6639C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x203E4, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x663D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x20418, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x6640E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x20458, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x6647E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20538, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x6649E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20538, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x66516, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x206A0, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x66536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x206A0, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x6655C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x206FC, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x665D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20768, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x665F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20768, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x66911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1C70, symBinAddr: 0x22044, symSize: 0x1A0 } + - { offsetInCU: 0x6B4, offset: 0x669D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x207EC, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66A0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x20874, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66A4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x2096C, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66A63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x209CC, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66A77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x20A1C, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66AAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x20AA4, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66AED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x20CD8, symSize: 0x5C } + - { offsetInCU: 0x9D1, offset: 0x66CF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x16E4, symBinAddr: 0x21AB8, symSize: 0x140 } + - { offsetInCU: 0xACD, offset: 0x66DF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1824, symBinAddr: 0x21BF8, symSize: 0x18 } + - { offsetInCU: 0xAE1, offset: 0x66E06, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1978, symBinAddr: 0x21D4C, symSize: 0x2C } + - { offsetInCU: 0xAF9, offset: 0x66E1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1C0C, symBinAddr: 0x21FE0, symSize: 0x44 } + - { offsetInCU: 0xB0D, offset: 0x66E32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1C50, symBinAddr: 0x22024, symSize: 0x20 } + - { offsetInCU: 0xB21, offset: 0x66E46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1E10, symBinAddr: 0x221E4, symSize: 0x20 } + - { offsetInCU: 0xB35, offset: 0x66E5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E30, symBinAddr: 0x22204, symSize: 0x4 } + - { offsetInCU: 0xB49, offset: 0x66E6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E34, symBinAddr: 0x22208, symSize: 0x44 } + - { offsetInCU: 0xB5D, offset: 0x66E82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E78, symBinAddr: 0x2224C, symSize: 0x4 } + - { offsetInCU: 0xB71, offset: 0x66E96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1E7C, symBinAddr: 0x22250, symSize: 0x44 } + - { offsetInCU: 0xB85, offset: 0x66EAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1FA0, symBinAddr: 0x22374, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x66EBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1FB8, symBinAddr: 0x2238C, symSize: 0x14 } + - { offsetInCU: 0xBAD, offset: 0x66ED2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1FCC, symBinAddr: 0x223A0, symSize: 0x18 } + - { offsetInCU: 0xBC1, offset: 0x66EE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x2044, symBinAddr: 0x22418, symSize: 0x6C } + - { offsetInCU: 0xBD5, offset: 0x66EFA, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x20B0, symBinAddr: 0x22484, symSize: 0x14 } + - { offsetInCU: 0xBE9, offset: 0x66F0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x20C4, symBinAddr: 0x22498, symSize: 0x50 } + - { offsetInCU: 0xBFD, offset: 0x66F22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x2114, symBinAddr: 0x224E8, symSize: 0x48 } + - { offsetInCU: 0xC11, offset: 0x66F36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x215C, symBinAddr: 0x22530, symSize: 0x48 } + - { offsetInCU: 0xC25, offset: 0x66F4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x21A4, symBinAddr: 0x22578, symSize: 0x8 } + - { offsetInCU: 0xC39, offset: 0x66F5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x21AC, symBinAddr: 0x22580, symSize: 0x4 } + - { offsetInCU: 0xC4D, offset: 0x66F72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x21B0, symBinAddr: 0x22584, symSize: 0x8 } + - { offsetInCU: 0xC61, offset: 0x66F86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x21B8, symBinAddr: 0x2258C, symSize: 0x10 } + - { offsetInCU: 0xC75, offset: 0x66F9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x22A0, symBinAddr: 0x22664, symSize: 0x90 } + - { offsetInCU: 0xC89, offset: 0x66FAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2330, symBinAddr: 0x226F4, symSize: 0xBC } + - { offsetInCU: 0xC9D, offset: 0x66FC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x23EC, symBinAddr: 0x227B0, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x66FD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x23F0, symBinAddr: 0x227B4, symSize: 0x10 } + - { offsetInCU: 0xCC5, offset: 0x66FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x2400, symBinAddr: 0x227C4, symSize: 0x90 } + - { offsetInCU: 0xCD9, offset: 0x66FFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2490, symBinAddr: 0x22854, symSize: 0xBC } + - { offsetInCU: 0xCED, offset: 0x67012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x254C, symBinAddr: 0x22910, symSize: 0x8 } + - { offsetInCU: 0xD01, offset: 0x67026, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x2554, symBinAddr: 0x22918, symSize: 0x4 } + - { offsetInCU: 0xD15, offset: 0x6703A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2558, symBinAddr: 0x2291C, symSize: 0x8 } + - { offsetInCU: 0xD29, offset: 0x6704E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2560, symBinAddr: 0x22924, symSize: 0x10 } + - { offsetInCU: 0xD48, offset: 0x6706D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2598, symBinAddr: 0x2295C, symSize: 0x24 } + - { offsetInCU: 0xD71, offset: 0x67096, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x26A4, symBinAddr: 0x22A68, symSize: 0x8 } + - { offsetInCU: 0xD85, offset: 0x670AA, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x26AC, symBinAddr: 0x22A70, symSize: 0x10 } + - { offsetInCU: 0xD99, offset: 0x670BE, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x26BC, symBinAddr: 0x22A80, symSize: 0x8 } + - { offsetInCU: 0xDAD, offset: 0x670D2, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2748, symBinAddr: 0x22A88, symSize: 0x3C } + - { offsetInCU: 0xE2F, offset: 0x67154, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x203D4, symSize: 0x4 } + - { offsetInCU: 0xE4B, offset: 0x67170, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x203D8, symSize: 0x4 } + - { offsetInCU: 0xE67, offset: 0x6718C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x203DC, symSize: 0x4 } + - { offsetInCU: 0xE83, offset: 0x671A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x203E0, symSize: 0x4 } + - { offsetInCU: 0x10F5, offset: 0x6741A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x2048C, symSize: 0x40 } + - { offsetInCU: 0x1123, offset: 0x67448, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x204CC, symSize: 0x60 } + - { offsetInCU: 0x115B, offset: 0x67480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x20598, symSize: 0x84 } + - { offsetInCU: 0x1182, offset: 0x674A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x2061C, symSize: 0x14 } + - { offsetInCU: 0x11C9, offset: 0x674EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x20630, symSize: 0x28 } + - { offsetInCU: 0x12D0, offset: 0x675F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x20920, symSize: 0x4C } + - { offsetInCU: 0x12EF, offset: 0x67614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x2097C, symSize: 0x50 } + - { offsetInCU: 0x1318, offset: 0x6763D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x209DC, symSize: 0x3C } + - { offsetInCU: 0x133D, offset: 0x67662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x20A18, symSize: 0x4 } + - { offsetInCU: 0x1392, offset: 0x676B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x20B50, symSize: 0x4C } + - { offsetInCU: 0x13B1, offset: 0x676D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x20B9C, symSize: 0x50 } + - { offsetInCU: 0x13DA, offset: 0x676FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x20BEC, symSize: 0x3C } + - { offsetInCU: 0x13FF, offset: 0x67724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x20C28, symSize: 0x8 } + - { offsetInCU: 0x1420, offset: 0x67745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x20C30, symSize: 0x30 } + - { offsetInCU: 0x143D, offset: 0x67762, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x20C60, symSize: 0x3C } + - { offsetInCU: 0x1462, offset: 0x67787, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x20C9C, symSize: 0x3C } + - { offsetInCU: 0x14AC, offset: 0x677D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x960, symBinAddr: 0x20D34, symSize: 0x30 } + - { offsetInCU: 0x14C9, offset: 0x677EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x990, symBinAddr: 0x20D64, symSize: 0x44 } + - { offsetInCU: 0x14F2, offset: 0x67817, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x9D4, symBinAddr: 0x20DA8, symSize: 0x3C } + - { offsetInCU: 0x151E, offset: 0x67843, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x20DE4, symSize: 0xC8 } + - { offsetInCU: 0x1558, offset: 0x6787D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x20EAC, symSize: 0x4 } + - { offsetInCU: 0x15FC, offset: 0x67921, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xADC, symBinAddr: 0x20EB0, symSize: 0x128 } + - { offsetInCU: 0x172D, offset: 0x67A52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xC04, symBinAddr: 0x20FD8, symSize: 0x224 } + - { offsetInCU: 0x1796, offset: 0x67ABB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x183C, symBinAddr: 0x21C10, symSize: 0x13C } + - { offsetInCU: 0x1844, offset: 0x67B69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xE28, symBinAddr: 0x211FC, symSize: 0x70 } + - { offsetInCU: 0x186E, offset: 0x67B93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xE98, symBinAddr: 0x2126C, symSize: 0x30 } + - { offsetInCU: 0x1890, offset: 0x67BB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xEC8, symBinAddr: 0x2129C, symSize: 0x188 } + - { offsetInCU: 0x1935, offset: 0x67C5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0x1050, symBinAddr: 0x21424, symSize: 0x14 } + - { offsetInCU: 0x1982, offset: 0x67CA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0x10D4, symBinAddr: 0x214A8, symSize: 0x3C } + - { offsetInCU: 0x1A08, offset: 0x67D2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0x1064, symBinAddr: 0x21438, symSize: 0x70 } + - { offsetInCU: 0x1A9C, offset: 0x67DC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0x1110, symBinAddr: 0x214E4, symSize: 0x78 } + - { offsetInCU: 0x1B80, offset: 0x67EA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0x1188, symBinAddr: 0x2155C, symSize: 0x230 } + - { offsetInCU: 0x1D6C, offset: 0x68091, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x13B8, symBinAddr: 0x2178C, symSize: 0xC } + - { offsetInCU: 0x1DC3, offset: 0x680E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21798, symSize: 0x4 } + - { offsetInCU: 0x1DDF, offset: 0x68104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21798, symSize: 0x4 } + - { offsetInCU: 0x1DF8, offset: 0x6811D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21798, symSize: 0x4 } + - { offsetInCU: 0x1E11, offset: 0x68136, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13C8, symBinAddr: 0x2179C, symSize: 0x4 } + - { offsetInCU: 0x1E29, offset: 0x6814E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13CC, symBinAddr: 0x217A0, symSize: 0xB8 } + - { offsetInCU: 0x1EC9, offset: 0x681EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14C4, symBinAddr: 0x21898, symSize: 0x4 } + - { offsetInCU: 0x1EE1, offset: 0x68206, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2604, symBinAddr: 0x229C8, symSize: 0x7C } + - { offsetInCU: 0x1FB8, offset: 0x682DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x1484, symBinAddr: 0x21858, symSize: 0x40 } + - { offsetInCU: 0x1FED, offset: 0x68312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11isReachableSbvg', symObjAddr: 0x14C8, symBinAddr: 0x2189C, symSize: 0x2C } + - { offsetInCU: 0x202E, offset: 0x68353, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14F4, symBinAddr: 0x218C8, symSize: 0x2C } + - { offsetInCU: 0x206F, offset: 0x68394, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1520, symBinAddr: 0x218F4, symSize: 0x2C } + - { offsetInCU: 0x20E6, offset: 0x6840B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x154C, symBinAddr: 0x21920, symSize: 0x198 } + - { offsetInCU: 0x25E3, offset: 0x68908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x19A4, symBinAddr: 0x21D78, symSize: 0x24 } + - { offsetInCU: 0x2626, offset: 0x6894B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x19C8, symBinAddr: 0x21D9C, symSize: 0x244 } + - { offsetInCU: 0x43, offset: 0x68AEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x22B8C, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68AFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x22BC8, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68B12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x22C4C, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x22D74, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68B56, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x22DA4, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x22DC0, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x22E5C, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x22EC0, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x22F1C, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x68BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x22F2C, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x68BCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x22F5C, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x68BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x22F84, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x68BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x22FE0, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x68C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x23064, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x68C1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x230C8, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x68C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x23124, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x68C46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x23184, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x68C92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x235DC, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x68CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x235E4, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x68DCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA98, symBinAddr: 0x23624, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x68E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF8, symBinAddr: 0x23684, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x68E8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB04, symBinAddr: 0x23690, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x68EE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB80, symBinAddr: 0x2370C, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x68F03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB8C, symBinAddr: 0x23718, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x68F40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBE8, symBinAddr: 0x23774, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x68F77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC34, symBinAddr: 0x237C0, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x68F9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFF8, symBinAddr: 0x23B84, symSize: 0x154 } + - { offsetInCU: 0x580, offset: 0x69027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC74, symBinAddr: 0x23800, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x69082, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC8C, symBinAddr: 0x23818, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x690FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xCB8, symBinAddr: 0x23844, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x69131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x2388C, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x69162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xD24, symBinAddr: 0x238B0, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x6917E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD30, symBinAddr: 0x238BC, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x6919A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x129C, symBinAddr: 0x23DA4, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x6925A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD8C, symBinAddr: 0x23918, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x69291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDD8, symBinAddr: 0x23964, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x692B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13F0, symBinAddr: 0x23EF8, symSize: 0x264 } + - { offsetInCU: 0x87C, offset: 0x69323, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEA4, symBinAddr: 0x23A30, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x69358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x23A80, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x69389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF18, symBinAddr: 0x23AA4, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x693A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF24, symBinAddr: 0x23AB0, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x693C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D8C, symBinAddr: 0x24828, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x69471, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF80, symBinAddr: 0x23B0C, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x694A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC0, symBinAddr: 0x23B4C, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x694CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EF4, symBinAddr: 0x24990, symSize: 0x2B8 } + - { offsetInCU: 0xA81, offset: 0x69528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x11B0, symBinAddr: 0x23CD8, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x6953C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x1214, symBinAddr: 0x23D1C, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x69550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1258, symBinAddr: 0x23D60, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x69564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1654, symBinAddr: 0x2415C, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x69578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x16DC, symBinAddr: 0x241A0, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x6958C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x17CC, symBinAddr: 0x24290, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x695A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1828, symBinAddr: 0x242DC, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x695B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1830, symBinAddr: 0x242E4, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x695C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1834, symBinAddr: 0x242E8, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x695DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x183C, symBinAddr: 0x242F0, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x695F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1850, symBinAddr: 0x24300, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x69604, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x18A0, symBinAddr: 0x24350, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69618, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x192C, symBinAddr: 0x243DC, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x6962C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1934, symBinAddr: 0x243E4, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69640, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1938, symBinAddr: 0x243E8, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x69654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x193C, symBinAddr: 0x243EC, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69668, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x194C, symBinAddr: 0x243FC, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x6967C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1984, symBinAddr: 0x24434, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69690, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x19E8, symBinAddr: 0x24498, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x696A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1AA8, symBinAddr: 0x24544, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x696B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1B0C, symBinAddr: 0x245A8, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x696CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B68, symBinAddr: 0x24604, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x696E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1BCC, symBinAddr: 0x24668, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x696F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BDC, symBinAddr: 0x24678, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BE0, symBinAddr: 0x2467C, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x6971C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1C24, symBinAddr: 0x246C0, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69730, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1C28, symBinAddr: 0x246C4, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x69744, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C6C, symBinAddr: 0x24708, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69758, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C70, symBinAddr: 0x2470C, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x6976C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CB4, symBinAddr: 0x24750, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69780, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CB8, symBinAddr: 0x24754, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69794, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CFC, symBinAddr: 0x24798, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x697A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x2479C, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x697BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1D44, symBinAddr: 0x247E0, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x697D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D48, symBinAddr: 0x247E4, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x697E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x21AC, symBinAddr: 0x24C48, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x697F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x2344, symBinAddr: 0x24DE0, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x6980C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2348, symBinAddr: 0x24DE4, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2358, symBinAddr: 0x24DF4, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69834, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x235C, symBinAddr: 0x24DF8, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69848, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x23A0, symBinAddr: 0x24E3C, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x6985C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x23A4, symBinAddr: 0x24E40, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69870, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x23E8, symBinAddr: 0x24E84, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23EC, symBinAddr: 0x24E88, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x698E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xABC, symBinAddr: 0x23648, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x699A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB98, symBinAddr: 0x23724, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x699BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBC0, symBinAddr: 0x2374C, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x699E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD3C, symBinAddr: 0x238C8, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x699FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD64, symBinAddr: 0x238F0, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69A1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF30, symBinAddr: 0x23ABC, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF58, symBinAddr: 0x23AE4, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x23194, symSize: 0x11C } + - { offsetInCU: 0x10B4, offset: 0x69B5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x724, symBinAddr: 0x232B0, symSize: 0x1C8 } + - { offsetInCU: 0x10E5, offset: 0x69B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8EC, symBinAddr: 0x23478, symSize: 0x164 } + - { offsetInCU: 0xA6, offset: 0x69D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x25170, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x69D67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x25170, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x69D8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x2D4, symBinAddr: 0x25188, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x69E70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x318, symBinAddr: 0x251CC, symSize: 0x28 } + - { offsetInCU: 0x4BB, offset: 0x6A15C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x380, symBinAddr: 0x25234, symSize: 0x4 } + - { offsetInCU: 0x4CF, offset: 0x6A170, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x384, symBinAddr: 0x25238, symSize: 0x44 } + - { offsetInCU: 0x4E3, offset: 0x6A184, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x3C8, symBinAddr: 0x2527C, symSize: 0x30 } + - { offsetInCU: 0x4F7, offset: 0x6A198, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x3F8, symBinAddr: 0x252AC, symSize: 0x7C } + - { offsetInCU: 0x50B, offset: 0x6A1AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x474, symBinAddr: 0x25328, symSize: 0x184 } + - { offsetInCU: 0x51F, offset: 0x6A1C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0x5F8, symBinAddr: 0x254AC, symSize: 0x394 } + - { offsetInCU: 0x53A, offset: 0x6A1DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0x98C, symBinAddr: 0x25840, symSize: 0x30 } + - { offsetInCU: 0x563, offset: 0x6A204, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0x9BC, symBinAddr: 0x25870, symSize: 0x2C } + - { offsetInCU: 0x577, offset: 0x6A218, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0x9E8, symBinAddr: 0x2589C, symSize: 0x34 } + - { offsetInCU: 0x58B, offset: 0x6A22C, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xA1C, symBinAddr: 0x258D0, symSize: 0x44 } + - { offsetInCU: 0x59F, offset: 0x6A240, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xA60, symBinAddr: 0x25914, symSize: 0x1B4 } + - { offsetInCU: 0x5B3, offset: 0x6A254, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0xC14, symBinAddr: 0x25AC8, symSize: 0x48 } + - { offsetInCU: 0x5C7, offset: 0x6A268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0xC5C, symBinAddr: 0x25B10, symSize: 0x78 } + - { offsetInCU: 0x5DB, offset: 0x6A27C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0xCD4, symBinAddr: 0x25B88, symSize: 0x10 } + - { offsetInCU: 0x5EF, offset: 0x6A290, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0xCE8, symBinAddr: 0x25B9C, symSize: 0x8 } + - { offsetInCU: 0x603, offset: 0x6A2A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0xD28, symBinAddr: 0x25BDC, symSize: 0x54 } + - { offsetInCU: 0x617, offset: 0x6A2B8, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xD7C, symBinAddr: 0x25C30, symSize: 0x14 } + - { offsetInCU: 0x62B, offset: 0x6A2CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0xD90, symBinAddr: 0x25C44, symSize: 0x3C } + - { offsetInCU: 0x63F, offset: 0x6A2E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0xDCC, symBinAddr: 0x25C80, symSize: 0x48 } + - { offsetInCU: 0x653, offset: 0x6A2F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0xE14, symBinAddr: 0x25CC8, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x6A308, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0xE54, symBinAddr: 0x25D08, symSize: 0x10 } + - { offsetInCU: 0x67B, offset: 0x6A31C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0xE64, symBinAddr: 0x25D18, symSize: 0x38 } + - { offsetInCU: 0x68F, offset: 0x6A330, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0xE9C, symBinAddr: 0x25D50, symSize: 0x6C } + - { offsetInCU: 0x6A3, offset: 0x6A344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x25DBC, symSize: 0xDC } + - { offsetInCU: 0x6B7, offset: 0x6A358, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0xFE4, symBinAddr: 0x25E98, symSize: 0x1C } + - { offsetInCU: 0x6CB, offset: 0x6A36C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1000, symBinAddr: 0x25EB4, symSize: 0x74 } + - { offsetInCU: 0x6DF, offset: 0x6A380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1074, symBinAddr: 0x25F28, symSize: 0x5C } + - { offsetInCU: 0x6F3, offset: 0x6A394, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x10D0, symBinAddr: 0x25F84, symSize: 0x64 } + - { offsetInCU: 0x707, offset: 0x6A3A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1134, symBinAddr: 0x25FE8, symSize: 0x10 } + - { offsetInCU: 0x71B, offset: 0x6A3BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1144, symBinAddr: 0x25FF8, symSize: 0x28 } + - { offsetInCU: 0x72F, offset: 0x6A3D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x116C, symBinAddr: 0x26020, symSize: 0x3C } + - { offsetInCU: 0x743, offset: 0x6A3E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x11A8, symBinAddr: 0x2605C, symSize: 0x6C } + - { offsetInCU: 0x757, offset: 0x6A3F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1220, symBinAddr: 0x260C8, symSize: 0x44 } + - { offsetInCU: 0x76B, offset: 0x6A40C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1264, symBinAddr: 0x2610C, symSize: 0x48 } + - { offsetInCU: 0x77F, offset: 0x6A420, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x12AC, symBinAddr: 0x26154, symSize: 0x40 } + - { offsetInCU: 0x793, offset: 0x6A434, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x12EC, symBinAddr: 0x26194, symSize: 0x10 } + - { offsetInCU: 0x7A7, offset: 0x6A448, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1300, symBinAddr: 0x261A4, symSize: 0x54 } + - { offsetInCU: 0x7BB, offset: 0x6A45C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1354, symBinAddr: 0x261F8, symSize: 0x44 } + - { offsetInCU: 0x7CF, offset: 0x6A470, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1398, symBinAddr: 0x2623C, symSize: 0x10 } + - { offsetInCU: 0x7E3, offset: 0x6A484, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x13B4, symBinAddr: 0x2624C, symSize: 0x90 } + - { offsetInCU: 0x7F7, offset: 0x6A498, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1444, symBinAddr: 0x262DC, symSize: 0xBC } + - { offsetInCU: 0x80B, offset: 0x6A4AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1500, symBinAddr: 0x26398, symSize: 0x8 } + - { offsetInCU: 0x81F, offset: 0x6A4C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1508, symBinAddr: 0x263A0, symSize: 0x4 } + - { offsetInCU: 0x833, offset: 0x6A4D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x150C, symBinAddr: 0x263A4, symSize: 0xC } + - { offsetInCU: 0x847, offset: 0x6A4E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1518, symBinAddr: 0x263B0, symSize: 0x10 } + - { offsetInCU: 0x8BE, offset: 0x6A55F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x340, symBinAddr: 0x251F4, symSize: 0x40 } + - { offsetInCU: 0xA61, offset: 0x6A702, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x24EE4, symSize: 0x18 } + - { offsetInCU: 0xA9A, offset: 0x6A73B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x24EFC, symSize: 0x94 } + - { offsetInCU: 0xAFB, offset: 0x6A79C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xAC, symBinAddr: 0x24F90, symSize: 0x2C } + - { offsetInCU: 0xB15, offset: 0x6A7B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0xD8, symBinAddr: 0x24FBC, symSize: 0x34 } + - { offsetInCU: 0xB4A, offset: 0x6A7EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x10C, symBinAddr: 0x24FF0, symSize: 0x10 } + - { offsetInCU: 0xB5E, offset: 0x6A7FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x11C, symBinAddr: 0x25000, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x6A820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x120, symBinAddr: 0x25004, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x6A834, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x128, symBinAddr: 0x2500C, symSize: 0x8 } + - { offsetInCU: 0xBC3, offset: 0x6A864, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x130, symBinAddr: 0x25014, symSize: 0x10 } + - { offsetInCU: 0xBE7, offset: 0x6A888, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x25024, symSize: 0x4 } + - { offsetInCU: 0xC08, offset: 0x6A8A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x144, symBinAddr: 0x25028, symSize: 0x14 } + - { offsetInCU: 0xC1C, offset: 0x6A8BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x188, symBinAddr: 0x2503C, symSize: 0x14 } + - { offsetInCU: 0xC30, offset: 0x6A8D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x19C, symBinAddr: 0x25050, symSize: 0x2C } + - { offsetInCU: 0xC44, offset: 0x6A8E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x1C8, symBinAddr: 0x2507C, symSize: 0x2C } + - { offsetInCU: 0xC58, offset: 0x6A8F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x1F4, symBinAddr: 0x250A8, symSize: 0x8 } + - { offsetInCU: 0xC6C, offset: 0x6A90D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x1FC, symBinAddr: 0x250B0, symSize: 0x8 } + - { offsetInCU: 0xC9E, offset: 0x6A93F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x204, symBinAddr: 0x250B8, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x6A953, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x214, symBinAddr: 0x250C8, symSize: 0x4 } + - { offsetInCU: 0xCD3, offset: 0x6A974, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x218, symBinAddr: 0x250CC, symSize: 0x8 } + - { offsetInCU: 0xCE7, offset: 0x6A988, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x220, symBinAddr: 0x250D4, symSize: 0x8 } + - { offsetInCU: 0xD19, offset: 0x6A9BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x228, symBinAddr: 0x250DC, symSize: 0x10 } + - { offsetInCU: 0xD3D, offset: 0x6A9DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x238, symBinAddr: 0x250EC, symSize: 0x4 } + - { offsetInCU: 0xD5E, offset: 0x6A9FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x23C, symBinAddr: 0x250F0, symSize: 0x10 } + - { offsetInCU: 0xD82, offset: 0x6AA23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x24C, symBinAddr: 0x25100, symSize: 0x4 } + - { offsetInCU: 0xDB1, offset: 0x6AA52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x250, symBinAddr: 0x25104, symSize: 0x28 } + - { offsetInCU: 0xE3C, offset: 0x6AADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x278, symBinAddr: 0x2512C, symSize: 0x44 } + - { offsetInCU: 0x549, offset: 0x6B14D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x224C, symBinAddr: 0x2861C, symSize: 0x6D0 } + - { offsetInCU: 0xA7A, offset: 0x6B67E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x6CDC, symBinAddr: 0x2D0AC, symSize: 0x28 } + - { offsetInCU: 0x1B3D, offset: 0x6C741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14110, symBinAddr: 0x3A4E0, symSize: 0xA0 } + - { offsetInCU: 0x1BD5, offset: 0x6C7D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x150A4, symBinAddr: 0x3B474, symSize: 0x44 } + - { offsetInCU: 0x1BF1, offset: 0x6C7F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x150E8, symBinAddr: 0x3B4B8, symSize: 0x150 } + - { offsetInCU: 0x1D0A, offset: 0x6C90E, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x15238, symBinAddr: 0x3B608, symSize: 0x54 } + - { offsetInCU: 0x1D88, offset: 0x6C98C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x152E0, symBinAddr: 0x3B65C, symSize: 0x4C } + - { offsetInCU: 0x1E16, offset: 0x6CA1A, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x1532C, symBinAddr: 0x3B6A8, symSize: 0x50 } + - { offsetInCU: 0x1E84, offset: 0x6CA88, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x1537C, symBinAddr: 0x3B6F8, symSize: 0x64 } + - { offsetInCU: 0x251A, offset: 0x6D11E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x161F4, symBinAddr: 0x3C570, symSize: 0x84 } + - { offsetInCU: 0x257E, offset: 0x6D182, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x16278, symBinAddr: 0x3C5F4, symSize: 0x80 } + - { offsetInCU: 0x264B, offset: 0x6D24F, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16414, symBinAddr: 0x3C790, symSize: 0x40 } + - { offsetInCU: 0x286C, offset: 0x6D470, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17484, symBinAddr: 0x3D784, symSize: 0x1A0 } + - { offsetInCU: 0x29C1, offset: 0x6D5C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17624, symBinAddr: 0x3D924, symSize: 0x360 } + - { offsetInCU: 0x30E3, offset: 0x6DCE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x187B4, symBinAddr: 0x3EAB4, symSize: 0xBCC } + - { offsetInCU: 0x414F, offset: 0x6ED53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19380, symBinAddr: 0x3F680, symSize: 0x1C0 } + - { offsetInCU: 0x42D0, offset: 0x6EED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19540, symBinAddr: 0x3F840, symSize: 0x1A0 } + - { offsetInCU: 0x46D8, offset: 0x6F2DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1A15C, symBinAddr: 0x4045C, symSize: 0x8 } + - { offsetInCU: 0x46EC, offset: 0x6F2F0, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1A22C, symBinAddr: 0x4052C, symSize: 0x10 } + - { offsetInCU: 0x4700, offset: 0x6F304, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1A23C, symBinAddr: 0x4053C, symSize: 0x14 } + - { offsetInCU: 0x4714, offset: 0x6F318, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1A250, symBinAddr: 0x40550, symSize: 0x44 } + - { offsetInCU: 0x4728, offset: 0x6F32C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1A2A4, symBinAddr: 0x40594, symSize: 0x44 } + - { offsetInCU: 0x473C, offset: 0x6F340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1A2E8, symBinAddr: 0x405D8, symSize: 0x30C } + - { offsetInCU: 0x4750, offset: 0x6F354, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1A5F4, symBinAddr: 0x408E4, symSize: 0x240 } + - { offsetInCU: 0x4764, offset: 0x6F368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1A834, symBinAddr: 0x40B24, symSize: 0x70 } + - { offsetInCU: 0x4778, offset: 0x6F37C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1A8A4, symBinAddr: 0x40B94, symSize: 0x34 } + - { offsetInCU: 0x478C, offset: 0x6F390, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1A8D8, symBinAddr: 0x40BC8, symSize: 0x174 } + - { offsetInCU: 0x47A0, offset: 0x6F3A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1AA4C, symBinAddr: 0x40D3C, symSize: 0xB4 } + - { offsetInCU: 0x47F3, offset: 0x6F3F7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1B318, symBinAddr: 0x40DF0, symSize: 0xC4 } + - { offsetInCU: 0x4869, offset: 0x6F46D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B3DC, symBinAddr: 0x40EB4, symSize: 0x78 } + - { offsetInCU: 0x4896, offset: 0x6F49A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B454, symBinAddr: 0x40F2C, symSize: 0x80 } + - { offsetInCU: 0x492A, offset: 0x6F52E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B4D4, symBinAddr: 0x40FAC, symSize: 0x68 } + - { offsetInCU: 0x4A91, offset: 0x6F695, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B53C, symBinAddr: 0x41014, symSize: 0x660 } + - { offsetInCU: 0x4F55, offset: 0x6FB59, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1BBAC, symBinAddr: 0x41684, symSize: 0x4C } + - { offsetInCU: 0x4F69, offset: 0x6FB6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1BCA0, symBinAddr: 0x416F0, symSize: 0x8 } + - { offsetInCU: 0x4F7D, offset: 0x6FB81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1BCA8, symBinAddr: 0x416F8, symSize: 0x44 } + - { offsetInCU: 0x4F91, offset: 0x6FB95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1BCEC, symBinAddr: 0x4173C, symSize: 0x44 } + - { offsetInCU: 0x4FA5, offset: 0x6FBA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BD98, symBinAddr: 0x417A4, symSize: 0x8 } + - { offsetInCU: 0x4FB9, offset: 0x6FBBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1BE28, symBinAddr: 0x4182C, symSize: 0x44 } + - { offsetInCU: 0x4FEE, offset: 0x6FBF2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BF30, symBinAddr: 0x41934, symSize: 0x48 } + - { offsetInCU: 0x5002, offset: 0x6FC06, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BF9C, symBinAddr: 0x419A0, symSize: 0x3C } + - { offsetInCU: 0x5016, offset: 0x6FC1A, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BFD8, symBinAddr: 0x419DC, symSize: 0x34 } + - { offsetInCU: 0x502A, offset: 0x6FC2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1C030, symBinAddr: 0x41A34, symSize: 0x40 } + - { offsetInCU: 0x503E, offset: 0x6FC42, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1C070, symBinAddr: 0x41A74, symSize: 0x48 } + - { offsetInCU: 0x5052, offset: 0x6FC56, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1C17C, symBinAddr: 0x41B80, symSize: 0x18 } + - { offsetInCU: 0x5066, offset: 0x6FC6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1C194, symBinAddr: 0x41B98, symSize: 0x10 } + - { offsetInCU: 0x507A, offset: 0x6FC7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1C1A4, symBinAddr: 0x41BA8, symSize: 0x34 } + - { offsetInCU: 0x508E, offset: 0x6FC92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1C214, symBinAddr: 0x41C18, symSize: 0x30 } + - { offsetInCU: 0x56FF, offset: 0x70303, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9590, symBinAddr: 0x2F960, symSize: 0x400 } + - { offsetInCU: 0x5862, offset: 0x70466, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xA81C, symBinAddr: 0x30BEC, symSize: 0x390 } + - { offsetInCU: 0x5B26, offset: 0x7072A, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xABAC, symBinAddr: 0x30F7C, symSize: 0x3B8 } + - { offsetInCU: 0x5F84, offset: 0x70B88, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xEFCC, symBinAddr: 0x3539C, symSize: 0x18C } + - { offsetInCU: 0x635A, offset: 0x70F5E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x168A4, symBinAddr: 0x3CC20, symSize: 0x110 } + - { offsetInCU: 0x64B6, offset: 0x710BA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x169F4, symBinAddr: 0x3CD30, symSize: 0xFC } + - { offsetInCU: 0x65D3, offset: 0x711D7, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x172DC, symBinAddr: 0x3D5DC, symSize: 0x1A8 } + - { offsetInCU: 0x66E3, offset: 0x712E7, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x17984, symBinAddr: 0x3DC84, symSize: 0x188 } + - { offsetInCU: 0x6A30, offset: 0x71634, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x198C8, symBinAddr: 0x3FBC8, symSize: 0x1C8 } + - { offsetInCU: 0x6B5F, offset: 0x71763, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x19A90, symBinAddr: 0x3FD90, symSize: 0x11C } + - { offsetInCU: 0x6CC1, offset: 0x718C5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x19BAC, symBinAddr: 0x3FEAC, symSize: 0xFC } + - { offsetInCU: 0x6E23, offset: 0x71A27, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x19CA8, symBinAddr: 0x3FFA8, symSize: 0xE4 } + - { offsetInCU: 0x6F79, offset: 0x71B7D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19D8C, symBinAddr: 0x4008C, symSize: 0x114 } + - { offsetInCU: 0x70CF, offset: 0x71CD3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19EA0, symBinAddr: 0x401A0, symSize: 0xF0 } + - { offsetInCU: 0x7231, offset: 0x71E35, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1A078, symBinAddr: 0x40378, symSize: 0xE4 } + - { offsetInCU: 0x73A8, offset: 0x71FAC, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BE6C, symBinAddr: 0x41870, symSize: 0xC4 } + - { offsetInCU: 0x790F, offset: 0x72513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x263D0, symSize: 0x1A0 } + - { offsetInCU: 0x798C, offset: 0x72590, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x1A0, symBinAddr: 0x26570, symSize: 0x88 } + - { offsetInCU: 0x7B04, offset: 0x72708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x228, symBinAddr: 0x265F8, symSize: 0x1D44 } + - { offsetInCU: 0x8CA1, offset: 0x738A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xAF64, symBinAddr: 0x31334, symSize: 0x3810 } + - { offsetInCU: 0x9FC8, offset: 0x74BCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xE774, symBinAddr: 0x34B44, symSize: 0x578 } + - { offsetInCU: 0xA41A, offset: 0x7501E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x102A8, symBinAddr: 0x36678, symSize: 0x25C0 } + - { offsetInCU: 0xBAA8, offset: 0x766AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13888, symBinAddr: 0x39C58, symSize: 0x3DC } + - { offsetInCU: 0xBC43, offset: 0x76847, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x1F6C, symBinAddr: 0x2833C, symSize: 0x2E0 } + - { offsetInCU: 0xC09A, offset: 0x76C9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x291C, symBinAddr: 0x28CEC, symSize: 0x3B8 } + - { offsetInCU: 0xC326, offset: 0x76F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x2CD4, symBinAddr: 0x290A4, symSize: 0x3924 } + - { offsetInCU: 0xDED3, offset: 0x78AD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x65F8, symBinAddr: 0x2C9C8, symSize: 0x278 } + - { offsetInCU: 0xDFDF, offset: 0x78BE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x6D04, symBinAddr: 0x2D0D4, symSize: 0x1848 } + - { offsetInCU: 0xEA66, offset: 0x7966A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6870, symBinAddr: 0x2CC40, symSize: 0x118 } + - { offsetInCU: 0xEADF, offset: 0x796E3, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6988, symBinAddr: 0x2CD58, symSize: 0x16C } + - { offsetInCU: 0xEAFA, offset: 0x796FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x6AF4, symBinAddr: 0x2CEC4, symSize: 0x1E8 } + - { offsetInCU: 0xEE07, offset: 0x79A0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x85A0, symBinAddr: 0x2E970, symSize: 0x3F8 } + - { offsetInCU: 0xF028, offset: 0x79C2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9990, symBinAddr: 0x2FD60, symSize: 0xE8C } + - { offsetInCU: 0xF934, offset: 0x7A538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8998, symBinAddr: 0x2ED68, symSize: 0xBF8 } + - { offsetInCU: 0x10304, offset: 0x7AF08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF158, symBinAddr: 0x35528, symSize: 0x1150 } + - { offsetInCU: 0x114B9, offset: 0x7C0BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x17B0C, symBinAddr: 0x3DE0C, symSize: 0xB10 } + - { offsetInCU: 0x11F49, offset: 0x7CB4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x12868, symBinAddr: 0x38C38, symSize: 0x1020 } + - { offsetInCU: 0x12A2D, offset: 0x7D631, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x13C64, symBinAddr: 0x3A034, symSize: 0x208 } + - { offsetInCU: 0x12AB1, offset: 0x7D6B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x13E6C, symBinAddr: 0x3A23C, symSize: 0x294 } + - { offsetInCU: 0x12BC1, offset: 0x7D7C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x141B0, symBinAddr: 0x3A580, symSize: 0xEF4 } + - { offsetInCU: 0x135EC, offset: 0x7E1F0, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x153E0, symBinAddr: 0x3B75C, symSize: 0x64 } + - { offsetInCU: 0x1362A, offset: 0x7E22E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15444, symBinAddr: 0x3B7C0, symSize: 0x30 } + - { offsetInCU: 0x13671, offset: 0x7E275, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15474, symBinAddr: 0x3B7F0, symSize: 0x80 } + - { offsetInCU: 0x1370B, offset: 0x7E30F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x154F4, symBinAddr: 0x3B870, symSize: 0x6C } + - { offsetInCU: 0x137BB, offset: 0x7E3BF, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15560, symBinAddr: 0x3B8DC, symSize: 0x4C } + - { offsetInCU: 0x13834, offset: 0x7E438, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x155D8, symBinAddr: 0x3B954, symSize: 0xE0 } + - { offsetInCU: 0x138A8, offset: 0x7E4AC, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x156B8, symBinAddr: 0x3BA34, symSize: 0xC4 } + - { offsetInCU: 0x138D1, offset: 0x7E4D5, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1577C, symBinAddr: 0x3BAF8, symSize: 0x174 } + - { offsetInCU: 0x139AA, offset: 0x7E5AE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x158F0, symBinAddr: 0x3BC6C, symSize: 0x104 } + - { offsetInCU: 0x13AD9, offset: 0x7E6DD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x159F4, symBinAddr: 0x3BD70, symSize: 0x124 } + - { offsetInCU: 0x13BFA, offset: 0x7E7FE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x15B18, symBinAddr: 0x3BE94, symSize: 0x170 } + - { offsetInCU: 0x13D7B, offset: 0x7E97F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x15C88, symBinAddr: 0x3C004, symSize: 0x174 } + - { offsetInCU: 0x13EC9, offset: 0x7EACD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x15DFC, symBinAddr: 0x3C178, symSize: 0xFC } + - { offsetInCU: 0x13FFF, offset: 0x7EC03, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x15EF8, symBinAddr: 0x3C274, symSize: 0xFC } + - { offsetInCU: 0x14135, offset: 0x7ED39, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x160F8, symBinAddr: 0x3C474, symSize: 0xFC } + - { offsetInCU: 0x1426B, offset: 0x7EE6F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x162F8, symBinAddr: 0x3C674, symSize: 0x11C } + - { offsetInCU: 0x14356, offset: 0x7EF5A, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x166B8, symBinAddr: 0x3CA34, symSize: 0x138 } + - { offsetInCU: 0x14425, offset: 0x7F029, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x167F0, symBinAddr: 0x3CB6C, symSize: 0xB4 } + - { offsetInCU: 0x144CB, offset: 0x7F0CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x16AF0, symBinAddr: 0x3CE2C, symSize: 0x5F0 } + - { offsetInCU: 0x147E4, offset: 0x7F3E8, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x170F0, symBinAddr: 0x3D42C, symSize: 0x18C } + - { offsetInCU: 0x149E6, offset: 0x7F5EA, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1861C, symBinAddr: 0x3E91C, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x7FD1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x41C80, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x7FD35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x41C80, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x7FD49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x41CB0, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x7FD5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x41D9C, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x7FD71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x42004, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x7FD85, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x42420, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x7FD99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x42428, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x7FDAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x42664, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x7FDC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x426AC, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x7FDD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x42768, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x803CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8FF8, symBinAddr: 0x4B770, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x8048D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x9218, symBinAddr: 0x4B990, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x8055A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD204, symBinAddr: 0x4F97C, symSize: 0x7C0 } + - { offsetInCU: 0x9D6, offset: 0x8088C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD9C4, symBinAddr: 0x5013C, symSize: 0xA34 } + - { offsetInCU: 0xCB0, offset: 0x80B66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE3F8, symBinAddr: 0x50B70, symSize: 0x2AC } + - { offsetInCU: 0xDF2, offset: 0x80CA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xED9C, symBinAddr: 0x51514, symSize: 0x860 } + - { offsetInCU: 0x10E8, offset: 0x80F9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF5FC, symBinAddr: 0x51D74, symSize: 0xC2C } + - { offsetInCU: 0x13C2, offset: 0x81278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x10228, symBinAddr: 0x529A0, symSize: 0x314 } + - { offsetInCU: 0x1504, offset: 0x813BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x1053C, symBinAddr: 0x52CB4, symSize: 0x208 } + - { offsetInCU: 0x1985, offset: 0x8183B, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1EC8, symBinAddr: 0x44640, symSize: 0x2C } + - { offsetInCU: 0x1E8A, offset: 0x81D40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x94DC, symBinAddr: 0x4BC54, symSize: 0x20 } + - { offsetInCU: 0x1ECF, offset: 0x81D85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x94FC, symBinAddr: 0x4BC74, symSize: 0x8C } + - { offsetInCU: 0x1F8B, offset: 0x81E41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0xA02C, symBinAddr: 0x4C7A4, symSize: 0x54 } + - { offsetInCU: 0x1FC5, offset: 0x81E7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0xA080, symBinAddr: 0x4C7F8, symSize: 0x50 } + - { offsetInCU: 0x201B, offset: 0x81ED1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA0D0, symBinAddr: 0x4C848, symSize: 0x64 } + - { offsetInCU: 0x204E, offset: 0x81F04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA134, symBinAddr: 0x4C8AC, symSize: 0x4 } + - { offsetInCU: 0x208D, offset: 0x81F43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA138, symBinAddr: 0x4C8B0, symSize: 0x78 } + - { offsetInCU: 0x20E3, offset: 0x81F99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA1B0, symBinAddr: 0x4C928, symSize: 0x88 } + - { offsetInCU: 0x2154, offset: 0x8200A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA238, symBinAddr: 0x4C9B0, symSize: 0xDC } + - { offsetInCU: 0x21D6, offset: 0x8208C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA314, symBinAddr: 0x4CA8C, symSize: 0x4 } + - { offsetInCU: 0x21F2, offset: 0x820A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA318, symBinAddr: 0x4CA90, symSize: 0x4 } + - { offsetInCU: 0x222C, offset: 0x820E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xA31C, symBinAddr: 0x4CA94, symSize: 0x64 } + - { offsetInCU: 0x2599, offset: 0x8244F, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB5C4, symBinAddr: 0x4DD3C, symSize: 0xE4 } + - { offsetInCU: 0x267D, offset: 0x82533, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xB78C, symBinAddr: 0x4DF04, symSize: 0x280 } + - { offsetInCU: 0x2819, offset: 0x826CF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xBFBC, symBinAddr: 0x4E734, symSize: 0x64 } + - { offsetInCU: 0x2DFA, offset: 0x82CB0, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xC7C0, symBinAddr: 0x4EF38, symSize: 0x374 } + - { offsetInCU: 0x359C, offset: 0x83452, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCB34, symBinAddr: 0x4F2AC, symSize: 0x280 } + - { offsetInCU: 0x3973, offset: 0x83829, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCDB4, symBinAddr: 0x4F52C, symSize: 0x148 } + - { offsetInCU: 0x3B6D, offset: 0x83A23, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xCEFC, symBinAddr: 0x4F674, symSize: 0x1F8 } + - { offsetInCU: 0x3D2C, offset: 0x83BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10EF4, symBinAddr: 0x5366C, symSize: 0x104 } + - { offsetInCU: 0x3E76, offset: 0x83D2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x139EC, symBinAddr: 0x56164, symSize: 0x120 } + - { offsetInCU: 0x3F8E, offset: 0x83E44, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x13FF4, symBinAddr: 0x5670C, symSize: 0x10 } + - { offsetInCU: 0x3FA2, offset: 0x83E58, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14004, symBinAddr: 0x5671C, symSize: 0x10 } + - { offsetInCU: 0x3FB6, offset: 0x83E6C, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x14098, symBinAddr: 0x5672C, symSize: 0x48 } + - { offsetInCU: 0x3FCA, offset: 0x83E80, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x14184, symBinAddr: 0x56774, symSize: 0x3C } + - { offsetInCU: 0x3FDE, offset: 0x83E94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x141C0, symBinAddr: 0x567B0, symSize: 0x44 } + - { offsetInCU: 0x3FF2, offset: 0x83EA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOd', symObjAddr: 0x14204, symBinAddr: 0x567F4, symSize: 0x48 } + - { offsetInCU: 0x4006, offset: 0x83EBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x1424C, symBinAddr: 0x5683C, symSize: 0x8 } + - { offsetInCU: 0x401A, offset: 0x83ED0, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14254, symBinAddr: 0x56844, symSize: 0x10 } + - { offsetInCU: 0x402E, offset: 0x83EE4, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14264, symBinAddr: 0x56854, symSize: 0x8 } + - { offsetInCU: 0x4042, offset: 0x83EF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x142EC, symBinAddr: 0x56898, symSize: 0x30 } + - { offsetInCU: 0x409A, offset: 0x83F50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x143AC, symBinAddr: 0x56958, symSize: 0x24 } + - { offsetInCU: 0x40D6, offset: 0x83F8C, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14414, symBinAddr: 0x569C0, symSize: 0x44 } + - { offsetInCU: 0x4BF4, offset: 0x84AAA, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x42778, symSize: 0x80 } + - { offsetInCU: 0x4C5C, offset: 0x84B12, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x80, symBinAddr: 0x427F8, symSize: 0xA0 } + - { offsetInCU: 0x4DBF, offset: 0x84C75, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x120, symBinAddr: 0x42898, symSize: 0x9C } + - { offsetInCU: 0x4EEA, offset: 0x84DA0, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1BC, symBinAddr: 0x42934, symSize: 0x74 } + - { offsetInCU: 0x4F6F, offset: 0x84E25, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x230, symBinAddr: 0x429A8, symSize: 0x4 } + - { offsetInCU: 0x4F8A, offset: 0x84E40, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x234, symBinAddr: 0x429AC, symSize: 0x134 } + - { offsetInCU: 0x4FF5, offset: 0x84EAB, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x42AE0, symSize: 0xE8 } + - { offsetInCU: 0x50D7, offset: 0x84F8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x42BC8, symSize: 0x204 } + - { offsetInCU: 0x5256, offset: 0x8510C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x42DCC, symSize: 0xAF8 } + - { offsetInCU: 0x56E8, offset: 0x8559E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x114C, symBinAddr: 0x438C4, symSize: 0x3CC } + - { offsetInCU: 0x58FF, offset: 0x857B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1518, symBinAddr: 0x43C90, symSize: 0x9B0 } + - { offsetInCU: 0x5C76, offset: 0x85B2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x1EF4, symBinAddr: 0x4466C, symSize: 0x229C } + - { offsetInCU: 0x7193, offset: 0x87049, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE6A4, symBinAddr: 0x50E1C, symSize: 0x6F8 } + - { offsetInCU: 0x759E, offset: 0x87454, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4190, symBinAddr: 0x46908, symSize: 0x1660 } + - { offsetInCU: 0x8459, offset: 0x8830F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x57F0, symBinAddr: 0x47F68, symSize: 0x1038 } + - { offsetInCU: 0x8E60, offset: 0x88D16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x6828, symBinAddr: 0x48FA0, symSize: 0x3F0 } + - { offsetInCU: 0x8FC9, offset: 0x88E7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7510, symBinAddr: 0x49C88, symSize: 0x208 } + - { offsetInCU: 0x921B, offset: 0x890D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7718, symBinAddr: 0x49E90, symSize: 0x93C } + - { offsetInCU: 0x9A1B, offset: 0x898D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8054, symBinAddr: 0x4A7CC, symSize: 0x2E8 } + - { offsetInCU: 0x9B6D, offset: 0x89A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x833C, symBinAddr: 0x4AAB4, symSize: 0x648 } + - { offsetInCU: 0x9F3A, offset: 0x89DF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x8984, symBinAddr: 0x4B0FC, symSize: 0x674 } + - { offsetInCU: 0xA1DC, offset: 0x8A092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x943C, symBinAddr: 0x4BBB4, symSize: 0x80 } + - { offsetInCU: 0xA1FF, offset: 0x8A0B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x94BC, symBinAddr: 0x4BC34, symSize: 0x20 } + - { offsetInCU: 0xA28A, offset: 0x8A140, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x9588, symBinAddr: 0x4BD00, symSize: 0xA64 } + - { offsetInCU: 0xA6B9, offset: 0x8A56F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x9FEC, symBinAddr: 0x4C764, symSize: 0x40 } + - { offsetInCU: 0xA72C, offset: 0x8A5E2, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA380, symBinAddr: 0x4CAF8, symSize: 0x4 } + - { offsetInCU: 0xA747, offset: 0x8A5FD, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0xA384, symBinAddr: 0x4CAFC, symSize: 0x8 } + - { offsetInCU: 0xA75F, offset: 0x8A615, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0xA384, symBinAddr: 0x4CAFC, symSize: 0x8 } + - { offsetInCU: 0xA770, offset: 0x8A626, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA38C, symBinAddr: 0x4CB04, symSize: 0xC8 } + - { offsetInCU: 0xA7F8, offset: 0x8A6AE, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA454, symBinAddr: 0x4CBCC, symSize: 0xCC } + - { offsetInCU: 0xA898, offset: 0x8A74E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA61C, symBinAddr: 0x4CD94, symSize: 0x1F4 } + - { offsetInCU: 0xA938, offset: 0x8A7EE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA810, symBinAddr: 0x4CF88, symSize: 0x1C4 } + - { offsetInCU: 0xA9F4, offset: 0x8A8AA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA9D4, symBinAddr: 0x4D14C, symSize: 0x340 } + - { offsetInCU: 0xAAEB, offset: 0x8A9A1, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAD14, symBinAddr: 0x4D48C, symSize: 0x340 } + - { offsetInCU: 0xABD5, offset: 0x8AA8B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB054, symBinAddr: 0x4D7CC, symSize: 0x1DC } + - { offsetInCU: 0xAC7A, offset: 0x8AB30, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB230, symBinAddr: 0x4D9A8, symSize: 0x204 } + - { offsetInCU: 0xAD18, offset: 0x8ABCE, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB434, symBinAddr: 0x4DBAC, symSize: 0x4C } + - { offsetInCU: 0xADC4, offset: 0x8AC7A, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB480, symBinAddr: 0x4DBF8, symSize: 0x90 } + - { offsetInCU: 0xAE50, offset: 0x8AD06, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB510, symBinAddr: 0x4DC88, symSize: 0x40 } + - { offsetInCU: 0xAE8D, offset: 0x8AD43, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB550, symBinAddr: 0x4DCC8, symSize: 0x18 } + - { offsetInCU: 0xAEDF, offset: 0x8AD95, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB568, symBinAddr: 0x4DCE0, symSize: 0x3C } + - { offsetInCU: 0xAF08, offset: 0x8ADBE, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB5A4, symBinAddr: 0x4DD1C, symSize: 0x1C } + - { offsetInCU: 0xAF49, offset: 0x8ADFF, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBC90, symBinAddr: 0x4E408, symSize: 0x8C } + - { offsetInCU: 0xAF5D, offset: 0x8AE13, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBD1C, symBinAddr: 0x4E494, symSize: 0x4C } + - { offsetInCU: 0xAF8D, offset: 0x8AE43, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBD68, symBinAddr: 0x4E4E0, symSize: 0x164 } + - { offsetInCU: 0xAFEA, offset: 0x8AEA0, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBECC, symBinAddr: 0x4E644, symSize: 0xF0 } + - { offsetInCU: 0xB011, offset: 0x8AEC7, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC020, symBinAddr: 0x4E798, symSize: 0x214 } + - { offsetInCU: 0xB046, offset: 0x8AEFC, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC234, symBinAddr: 0x4E9AC, symSize: 0x78 } + - { offsetInCU: 0xB05A, offset: 0x8AF10, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC2AC, symBinAddr: 0x4EA24, symSize: 0x1C } + - { offsetInCU: 0xB06E, offset: 0x8AF24, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xC2C8, symBinAddr: 0x4EA40, symSize: 0x1C } + - { offsetInCU: 0xB082, offset: 0x8AF38, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC2E4, symBinAddr: 0x4EA5C, symSize: 0x1C } + - { offsetInCU: 0xB0B9, offset: 0x8AF6F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC300, symBinAddr: 0x4EA78, symSize: 0x104 } + - { offsetInCU: 0xB1B7, offset: 0x8B06D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xC404, symBinAddr: 0x4EB7C, symSize: 0x174 } + - { offsetInCU: 0xB2CD, offset: 0x8B183, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC578, symBinAddr: 0x4ECF0, symSize: 0x124 } + - { offsetInCU: 0xB3A1, offset: 0x8B257, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC69C, symBinAddr: 0x4EE14, symSize: 0x124 } + - { offsetInCU: 0xB4E0, offset: 0x8B396, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD0F4, symBinAddr: 0x4F86C, symSize: 0x14 } + - { offsetInCU: 0xB502, offset: 0x8B3B8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD108, symBinAddr: 0x4F880, symSize: 0xFC } + - { offsetInCU: 0xB5DC, offset: 0x8B492, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x10744, symBinAddr: 0x52EBC, symSize: 0x7B0 } + - { offsetInCU: 0xBA63, offset: 0x8B919, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10FF8, symBinAddr: 0x53770, symSize: 0x29F4 } + - { offsetInCU: 0xC1F7, offset: 0x8C0AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13B0C, symBinAddr: 0x56284, symSize: 0x488 } + - { offsetInCU: 0x95, offset: 0x8C4CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFBC, symBinAddr: 0x57A7C, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8C520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1008, symBinAddr: 0x57AC8, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8C551, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x102C, symBinAddr: 0x57AEC, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8C56D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1038, symBinAddr: 0x57AF8, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8C589, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5FB8, symBinAddr: 0x5C9E8, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8C620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1094, symBinAddr: 0x57B54, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8C657, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E4, symBinAddr: 0x57BA4, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8C67A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x60EC, symBinAddr: 0x5CB1C, symSize: 0x133C } + - { offsetInCU: 0x2D0, offset: 0x8C708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1134, symBinAddr: 0x57BF4, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8C763, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x114C, symBinAddr: 0x57C0C, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8C7DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1178, symBinAddr: 0x57C38, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8C812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11E0, symBinAddr: 0x57CA0, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8C843, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1204, symBinAddr: 0x57CC4, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8C85F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1210, symBinAddr: 0x57CD0, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8C87B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7F0C, symBinAddr: 0x5DF24, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8C96D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x126C, symBinAddr: 0x57D2C, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8C9A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12BC, symBinAddr: 0x57D7C, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8C9C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8108, symBinAddr: 0x5E120, symSize: 0xF48 } + - { offsetInCU: 0x611, offset: 0x8CA49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x14DC, symBinAddr: 0x57F9C, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8CA7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1508, symBinAddr: 0x57FC8, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8CA96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1578, symBinAddr: 0x58038, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8CACB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15D8, symBinAddr: 0x58098, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8CB1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x15FC, symBinAddr: 0x580BC, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8CB37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1608, symBinAddr: 0x580C8, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8CB53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x922C, symBinAddr: 0x5F244, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8CBB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1664, symBinAddr: 0x58124, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8CBE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16AC, symBinAddr: 0x5816C, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8CC0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9288, symBinAddr: 0x5F2A0, symSize: 0x230 } + - { offsetInCU: 0x838, offset: 0x8CC70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16F4, symBinAddr: 0x581B4, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8CCA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16FC, symBinAddr: 0x581BC, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8CCD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1720, symBinAddr: 0x581E0, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8CCF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x172C, symBinAddr: 0x581EC, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8CD0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x94B8, symBinAddr: 0x5F4D0, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8CE6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1788, symBinAddr: 0x58248, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8CEA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17E8, symBinAddr: 0x582A8, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8CEC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x97A4, symBinAddr: 0x5F7BC, symSize: 0x548 } + - { offsetInCU: 0xB19, offset: 0x8CF51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1840, symBinAddr: 0x58300, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8CFD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1858, symBinAddr: 0x58318, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8D0B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x189C, symBinAddr: 0x5835C, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8D13A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0x583C4, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8D18F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1928, symBinAddr: 0x583E8, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8D1C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x194C, symBinAddr: 0x5840C, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8D1DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1958, symBinAddr: 0x58418, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8D1F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9CEC, symBinAddr: 0x5FD04, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8D286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19B4, symBinAddr: 0x58474, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8D2BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19E0, symBinAddr: 0x584A0, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8D2E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9DA8, symBinAddr: 0x5FDC0, symSize: 0x1B0 } + - { offsetInCU: 0xF18, offset: 0x8D350, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x58548, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8D385, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x585C0, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8D3B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B24, symBinAddr: 0x585E4, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8D3D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B30, symBinAddr: 0x585F0, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8D3EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9F58, symBinAddr: 0x5FF70, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8D4E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B8C, symBinAddr: 0x5864C, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8D520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BFC, symBinAddr: 0x586BC, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8D543, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA1A4, symBinAddr: 0x601BC, symSize: 0x8D8 } + - { offsetInCU: 0x11A5, offset: 0x8D5DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1DE8, symBinAddr: 0x588A8, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8D60E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1E14, symBinAddr: 0x588D4, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8D622, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1E3C, symBinAddr: 0x588FC, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8D657, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E44, symBinAddr: 0x58904, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8D6A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1E68, symBinAddr: 0x58928, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8D6C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E74, symBinAddr: 0x58934, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8D6DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAB48, symBinAddr: 0x60B60, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8D75D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0x58990, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8D794, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F28, symBinAddr: 0x589E8, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8D7B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xABA4, symBinAddr: 0x60BBC, symSize: 0x770 } + - { offsetInCU: 0x1457, offset: 0x8D88F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D80, symBinAddr: 0x5C834, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8D8E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5DD4, symBinAddr: 0x5C888, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8D93B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5E54, symBinAddr: 0x5C908, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8D970, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E5C, symBinAddr: 0x5C910, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8D9F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5EBC, symBinAddr: 0x5C970, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8DA0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x2150, symBinAddr: 0x58C10, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8DA21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x2170, symBinAddr: 0x58C30, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8DA35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x2264, symBinAddr: 0x58D24, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8DA49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x25E4, symBinAddr: 0x590A4, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8DA64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x323C, symBinAddr: 0x59CFC, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8DA8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x326C, symBinAddr: 0x59D2C, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8DAA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x3298, symBinAddr: 0x59D58, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8DAB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x32C4, symBinAddr: 0x59D84, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8DAC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x32F0, symBinAddr: 0x59DB0, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8DADD, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x331C, symBinAddr: 0x59DDC, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8DAF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x3324, symBinAddr: 0x59DE4, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8DB05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x36E4, symBinAddr: 0x5A1A4, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8DB19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3740, symBinAddr: 0x5A200, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8DB2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x382C, symBinAddr: 0x5A2EC, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8DB41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x383C, symBinAddr: 0x5A2FC, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8DB55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x386C, symBinAddr: 0x5A32C, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8DB69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x394C, symBinAddr: 0x5A40C, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8DB7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x3C84, symBinAddr: 0x5A744, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8DB91, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x44E8, symBinAddr: 0x5AFA8, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8DBA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x44F0, symBinAddr: 0x5AFB0, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8DBB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x4854, symBinAddr: 0x5B314, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8DBCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x48B0, symBinAddr: 0x5B370, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8DBE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x4994, symBinAddr: 0x5B454, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8DBF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x49A4, symBinAddr: 0x5B464, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8DC09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x4A48, symBinAddr: 0x5B508, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8DC1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x4BD4, symBinAddr: 0x5B694, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8DC31, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4F7C, symBinAddr: 0x5BA3C, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8DC45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4FC0, symBinAddr: 0x5BA80, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8DC59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x513C, symBinAddr: 0x5BBFC, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8DC6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x5198, symBinAddr: 0x5BC58, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8DC81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x522C, symBinAddr: 0x5BCEC, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8DC95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x523C, symBinAddr: 0x5BCFC, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8DCA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x52A4, symBinAddr: 0x5BD64, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8DCBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x5380, symBinAddr: 0x5BE40, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8DCD1, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x54EC, symBinAddr: 0x5BFAC, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8DCE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5518, symBinAddr: 0x5BFD8, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8DCF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x55DC, symBinAddr: 0x5C09C, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8DD0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x5638, symBinAddr: 0x5C0F8, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8DD21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x56B4, symBinAddr: 0x5C174, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8DD35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x56C4, symBinAddr: 0x5C184, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8DD49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x570C, symBinAddr: 0x5C1CC, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8DD5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x57F0, symBinAddr: 0x5C2B0, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8DD71, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5988, symBinAddr: 0x5C448, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8DD85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x59BC, symBinAddr: 0x5C47C, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8DD99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5AB8, symBinAddr: 0x5C578, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8DDAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x5B14, symBinAddr: 0x5C5D4, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8DDC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x5B90, symBinAddr: 0x5C650, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8DDD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x5BA0, symBinAddr: 0x5C660, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8DDE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5BC8, symBinAddr: 0x5C688, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8DDFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x5C04, symBinAddr: 0x5C6C4, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8DE11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x5C7C, symBinAddr: 0x5C730, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8DE25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5CC0, symBinAddr: 0x5C774, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8DE39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x5D1C, symBinAddr: 0x5C7D0, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8DE4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x5D70, symBinAddr: 0x5C824, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8DE61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5EC4, symBinAddr: 0x5C978, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8DE75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5EC8, symBinAddr: 0x5C97C, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8DE89, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F90, symBinAddr: 0x5C9C0, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8DE9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x7428, symBinAddr: 0x5DE58, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8DEB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x746C, symBinAddr: 0x5DE9C, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8DEC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7EC8, symBinAddr: 0x5DEE0, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8DED9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x9050, symBinAddr: 0x5F068, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8DEED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x9094, symBinAddr: 0x5F0AC, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8DF01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x90D8, symBinAddr: 0x5F0F0, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8DF15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x911C, symBinAddr: 0x5F134, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8DF29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x9160, symBinAddr: 0x5F178, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8DF3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x91A4, symBinAddr: 0x5F1BC, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8DF51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x91E8, symBinAddr: 0x5F200, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8DF65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xAA7C, symBinAddr: 0x60A94, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8DF79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xAAC0, symBinAddr: 0x60AD8, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8DF8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xAB04, symBinAddr: 0x60B1C, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8DFA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xB314, symBinAddr: 0x6132C, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8DFB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB358, symBinAddr: 0x61370, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8DFC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xB39C, symBinAddr: 0x613B4, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8DFDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xB424, symBinAddr: 0x6143C, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8DFF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB468, symBinAddr: 0x61480, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E005, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB4BC, symBinAddr: 0x614C4, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E019, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB54C, symBinAddr: 0x61554, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E02D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB608, symBinAddr: 0x61610, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8E041, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB610, symBinAddr: 0x61618, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8E055, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB614, symBinAddr: 0x6161C, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8E069, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB620, symBinAddr: 0x61628, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8E07D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB630, symBinAddr: 0x61638, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8E091, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB6C0, symBinAddr: 0x616C8, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8E0A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB77C, symBinAddr: 0x61784, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8E0B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB780, symBinAddr: 0x61788, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8E0CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB790, symBinAddr: 0x61798, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8E0E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB820, symBinAddr: 0x61828, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8E0F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB8DC, symBinAddr: 0x618E4, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8E109, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB8E0, symBinAddr: 0x618E8, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8E11D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB8F0, symBinAddr: 0x618F8, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8E131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB980, symBinAddr: 0x61988, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8E145, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBA3C, symBinAddr: 0x61A44, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8E159, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBA40, symBinAddr: 0x61A48, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8E16D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xBA50, symBinAddr: 0x61A58, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8E181, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xBAE0, symBinAddr: 0x61AE8, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8E195, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xBB9C, symBinAddr: 0x61BA4, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8E1A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBBA4, symBinAddr: 0x61BAC, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8E1BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xBBA8, symBinAddr: 0x61BB0, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8E1D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBBB0, symBinAddr: 0x61BB8, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8E1E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xBBC0, symBinAddr: 0x61BC8, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8E1F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xBC50, symBinAddr: 0x61C58, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8E20D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBD0C, symBinAddr: 0x61D14, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8E221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBD10, symBinAddr: 0x61D18, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8E235, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBD20, symBinAddr: 0x61D28, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8E249, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xBD44, symBinAddr: 0x61D4C, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8E25D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xBD64, symBinAddr: 0x61D6C, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8E271, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xBDA4, symBinAddr: 0x61DAC, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8E285, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBDB4, symBinAddr: 0x61DBC, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8E299, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBDB8, symBinAddr: 0x61DC0, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8E2AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBDFC, symBinAddr: 0x61E04, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8E2C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBE00, symBinAddr: 0x61E08, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8E2D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBE44, symBinAddr: 0x61E4C, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8E2E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBE48, symBinAddr: 0x61E50, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8E2FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBE8C, symBinAddr: 0x61E94, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8E311, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBE90, symBinAddr: 0x61E98, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8E325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBED4, symBinAddr: 0x61EDC, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8E339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBED8, symBinAddr: 0x61EE0, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8E34D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBF1C, symBinAddr: 0x61F24, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8E361, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBF20, symBinAddr: 0x61F28, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8E375, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF64, symBinAddr: 0x61F6C, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8E389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF68, symBinAddr: 0x61F70, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8E39D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFAC, symBinAddr: 0x61FB4, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8E3B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBFB0, symBinAddr: 0x61FB8, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8E3C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBFF4, symBinAddr: 0x61FFC, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8E3D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBFF8, symBinAddr: 0x62000, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8E3ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC03C, symBinAddr: 0x62044, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8E401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC040, symBinAddr: 0x62048, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8E415, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC084, symBinAddr: 0x6208C, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8E429, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC088, symBinAddr: 0x62090, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8E43D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0CC, symBinAddr: 0x620D4, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8E451, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC0D0, symBinAddr: 0x620D8, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8E465, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC114, symBinAddr: 0x6211C, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8E479, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC118, symBinAddr: 0x62120, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8E48D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC15C, symBinAddr: 0x62164, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8E4A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC160, symBinAddr: 0x62168, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8E4B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC1A4, symBinAddr: 0x621AC, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8E4C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC1A8, symBinAddr: 0x621B0, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8E4DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC1EC, symBinAddr: 0x621F4, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8E4F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC1F0, symBinAddr: 0x621F8, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8E505, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC234, symBinAddr: 0x6223C, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8E519, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC238, symBinAddr: 0x62240, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8E52D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC27C, symBinAddr: 0x62284, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8E541, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC280, symBinAddr: 0x62288, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8E555, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xC2C4, symBinAddr: 0x622CC, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8E569, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xC308, symBinAddr: 0x62310, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8E57D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xC398, symBinAddr: 0x623A0, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8E591, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xC454, symBinAddr: 0x6245C, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8E5A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xC458, symBinAddr: 0x62460, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8E5B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC468, symBinAddr: 0x62470, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8E5CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC46C, symBinAddr: 0x62474, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8E5E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC4B0, symBinAddr: 0x624B8, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8E5F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC4B4, symBinAddr: 0x624BC, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8E609, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC4F8, symBinAddr: 0x62500, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8E61D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC4FC, symBinAddr: 0x62504, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8E64B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1044, symBinAddr: 0x57B04, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8E667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x106C, symBinAddr: 0x57B2C, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8E689, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x121C, symBinAddr: 0x57CDC, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8E6A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1244, symBinAddr: 0x57D04, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8E6C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130C, symBinAddr: 0x57DCC, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8E741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1318, symBinAddr: 0x57DD8, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8E7C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x13BC, symBinAddr: 0x57E7C, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8E801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x143C, symBinAddr: 0x57EFC, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8E867, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1614, symBinAddr: 0x580D4, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8E883, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x163C, symBinAddr: 0x580FC, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8E8A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1738, symBinAddr: 0x581F8, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8E8C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x58220, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8E914, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x18C4, symBinAddr: 0x58384, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8E9B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1964, symBinAddr: 0x58424, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8E9D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x5844C, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8E9F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B3C, symBinAddr: 0x585FC, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8EA10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B64, symBinAddr: 0x58624, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8EA59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C64, symBinAddr: 0x58724, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8EB2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1CEC, symBinAddr: 0x587AC, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8EBAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D4C, symBinAddr: 0x5880C, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8EBFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D8C, symBinAddr: 0x5884C, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8EC5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E80, symBinAddr: 0x58940, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8EC7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1EA8, symBinAddr: 0x58968, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8ECBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E80, symBinAddr: 0x5C934, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8EE4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x56AC0, symSize: 0x18C } + - { offsetInCU: 0x2A47, offset: 0x8EE7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18C, symBinAddr: 0x56C4C, symSize: 0x274 } + - { offsetInCU: 0x2A78, offset: 0x8EEB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x400, symBinAddr: 0x56EC0, symSize: 0x1A0 } + - { offsetInCU: 0x2AA9, offset: 0x8EEE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x5A0, symBinAddr: 0x57060, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8EF04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x63C, symBinAddr: 0x570FC, symSize: 0x278 } + - { offsetInCU: 0x2AFD, offset: 0x8EF35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B4, symBinAddr: 0x57374, symSize: 0x128 } + - { offsetInCU: 0x2B2E, offset: 0x8EF66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9DC, symBinAddr: 0x5749C, symSize: 0x224 } + - { offsetInCU: 0x2B5F, offset: 0x8EF97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC00, symBinAddr: 0x576C0, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8EFCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCB0, symBinAddr: 0x57770, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F00F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD60, symBinAddr: 0x57820, symSize: 0x254 } + - { offsetInCU: 0x2DE8, offset: 0x8F220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F78, symBinAddr: 0x58A38, symSize: 0x1C8 } + - { offsetInCU: 0x2E34, offset: 0x8F26C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x2140, symBinAddr: 0x58C00, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8F34F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x625A0, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8F48B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x6260C, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8F49F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x62660, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8F4B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x626A4, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8F594, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x625A0, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8F5AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x625A8, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8F5E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x625B0, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8F5F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x625C0, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8F615, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x625C4, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8F629, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x625CC, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x8F65B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x625D4, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x8F67F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x625E4, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x8F6A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x625E8, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x8F6B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x625F0, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x8F6E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x625F8, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x8F708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x62608, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x8F75E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x626B4, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x8F7AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x626D8, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x8F8B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x626B4, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x8F91D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x626F8, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x8F96E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x6271C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x8FA74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x626F8, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x8FAE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6273C, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x8FB31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x6279C, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x8FB45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x627A4, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x8FB59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x627E0, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x8FC5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6273C, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x8FCC9, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x62858, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x8FE1D, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x62BC0, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x90043, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x62858, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x9027E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x62C08, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x902CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x62C2C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x903D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x62C08, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x904B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA34, symBinAddr: 0x63640, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x904D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA40, symBinAddr: 0x6364C, symSize: 0x64 } + - { offsetInCU: 0xD5, offset: 0x904EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA40, symBinAddr: 0x6364C, symSize: 0x64 } + - { offsetInCU: 0xE6, offset: 0x904FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x636B0, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x9058B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xC78, symBinAddr: 0x63884, symSize: 0xC } + - { offsetInCU: 0x191, offset: 0x905A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xC84, symBinAddr: 0x63890, symSize: 0x2C } + - { offsetInCU: 0x1A9, offset: 0x905BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xC84, symBinAddr: 0x63890, symSize: 0x2C } + - { offsetInCU: 0x560, offset: 0x90976, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x790, symBinAddr: 0x6339C, symSize: 0xC8 } + - { offsetInCU: 0x5D4, offset: 0x909EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xCB0, symBinAddr: 0x638BC, symSize: 0x3EC } + - { offsetInCU: 0x7FD, offset: 0x90C13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x109C, symBinAddr: 0x63CA8, symSize: 0x13C } + - { offsetInCU: 0xA1F, offset: 0x90E35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x34A8, symBinAddr: 0x66014, symSize: 0x224 } + - { offsetInCU: 0xAD0, offset: 0x90EE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3770, symBinAddr: 0x66280, symSize: 0x25C } + - { offsetInCU: 0xB35, offset: 0x90F4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x39CC, symBinAddr: 0x664DC, symSize: 0x248 } + - { offsetInCU: 0xC5D, offset: 0x91073, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3C14, symBinAddr: 0x66724, symSize: 0x2BC } + - { offsetInCU: 0xD9C, offset: 0x911B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3ED0, symBinAddr: 0x669E0, symSize: 0x1A8 } + - { offsetInCU: 0xDE2, offset: 0x911F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x4078, symBinAddr: 0x66B88, symSize: 0x43C } + - { offsetInCU: 0x1119, offset: 0x9152F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x44B4, symBinAddr: 0x66FC4, symSize: 0xC4 } + - { offsetInCU: 0x125E, offset: 0x91674, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2F34, symBinAddr: 0x65B40, symSize: 0x4 } + - { offsetInCU: 0x1272, offset: 0x91688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2F38, symBinAddr: 0x65B44, symSize: 0x44 } + - { offsetInCU: 0x1286, offset: 0x9169C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2F7C, symBinAddr: 0x65B88, symSize: 0x4 } + - { offsetInCU: 0x129A, offset: 0x916B0, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2F80, symBinAddr: 0x65B8C, symSize: 0x4C } + - { offsetInCU: 0x12AE, offset: 0x916C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3010, symBinAddr: 0x65BD8, symSize: 0x4 } + - { offsetInCU: 0x12C2, offset: 0x916D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3014, symBinAddr: 0x65BDC, symSize: 0x44 } + - { offsetInCU: 0x12D6, offset: 0x916EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x3068, symBinAddr: 0x65C20, symSize: 0x90 } + - { offsetInCU: 0x12EA, offset: 0x91700, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x30F8, symBinAddr: 0x65CB0, symSize: 0xBC } + - { offsetInCU: 0x12FE, offset: 0x91714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x31B4, symBinAddr: 0x65D6C, symSize: 0x8 } + - { offsetInCU: 0x1312, offset: 0x91728, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x31BC, symBinAddr: 0x65D74, symSize: 0x4 } + - { offsetInCU: 0x1326, offset: 0x9173C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x31C0, symBinAddr: 0x65D78, symSize: 0x8 } + - { offsetInCU: 0x133A, offset: 0x91750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x31C8, symBinAddr: 0x65D80, symSize: 0x10 } + - { offsetInCU: 0x134E, offset: 0x91764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x31D8, symBinAddr: 0x65D90, symSize: 0x90 } + - { offsetInCU: 0x1362, offset: 0x91778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3268, symBinAddr: 0x65E20, symSize: 0xBC } + - { offsetInCU: 0x1376, offset: 0x9178C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x3324, symBinAddr: 0x65EDC, symSize: 0x8 } + - { offsetInCU: 0x138A, offset: 0x917A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x332C, symBinAddr: 0x65EE4, symSize: 0x4 } + - { offsetInCU: 0x139E, offset: 0x917B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x3330, symBinAddr: 0x65EE8, symSize: 0xC } + - { offsetInCU: 0x13B2, offset: 0x917C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x333C, symBinAddr: 0x65EF4, symSize: 0x10 } + - { offsetInCU: 0x13C6, offset: 0x917DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x334C, symBinAddr: 0x65F04, symSize: 0x20 } + - { offsetInCU: 0x13DA, offset: 0x917F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3374, symBinAddr: 0x65F24, symSize: 0xC } + - { offsetInCU: 0x13EE, offset: 0x91804, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x3380, symBinAddr: 0x65F30, symSize: 0x4 } + - { offsetInCU: 0x1402, offset: 0x91818, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3384, symBinAddr: 0x65F34, symSize: 0x44 } + - { offsetInCU: 0x1416, offset: 0x9182C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x33C8, symBinAddr: 0x65F78, symSize: 0xC } + - { offsetInCU: 0x142A, offset: 0x91840, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x33D4, symBinAddr: 0x65F84, symSize: 0x4 } + - { offsetInCU: 0x143E, offset: 0x91854, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x33D8, symBinAddr: 0x65F88, symSize: 0x44 } + - { offsetInCU: 0x1452, offset: 0x91868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x341C, symBinAddr: 0x65FCC, symSize: 0xC } + - { offsetInCU: 0x14C6, offset: 0x918DC, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x36CC, symBinAddr: 0x66238, symSize: 0x48 } + - { offsetInCU: 0x1525, offset: 0x9193B, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4578, symBinAddr: 0x67088, symSize: 0x3C } + - { offsetInCU: 0x1539, offset: 0x9194F, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x45B4, symBinAddr: 0x670C4, symSize: 0x24 } + - { offsetInCU: 0x154D, offset: 0x91963, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x460C, symBinAddr: 0x6710C, symSize: 0x8 } + - { offsetInCU: 0x1561, offset: 0x91977, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4614, symBinAddr: 0x67114, symSize: 0x10 } + - { offsetInCU: 0x1575, offset: 0x9198B, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4624, symBinAddr: 0x67124, symSize: 0x8 } + - { offsetInCU: 0x1589, offset: 0x9199F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4684, symBinAddr: 0x6712C, symSize: 0x8 } + - { offsetInCU: 0x159D, offset: 0x919B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x4738, symBinAddr: 0x671E0, symSize: 0x10 } + - { offsetInCU: 0x169B, offset: 0x91AB1, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x154, symBinAddr: 0x62D60, symSize: 0x134 } + - { offsetInCU: 0x175C, offset: 0x91B72, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x288, symBinAddr: 0x62E94, symSize: 0x11C } + - { offsetInCU: 0x181D, offset: 0x91C33, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x3A4, symBinAddr: 0x62FB0, symSize: 0x90 } + - { offsetInCU: 0x19FD, offset: 0x91E13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x87C, symBinAddr: 0x63488, symSize: 0xC } + - { offsetInCU: 0x1A7D, offset: 0x91E93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x888, symBinAddr: 0x63494, symSize: 0x9C } + - { offsetInCU: 0x1AFF, offset: 0x91F15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x924, symBinAddr: 0x63530, symSize: 0x78 } + - { offsetInCU: 0x1B3D, offset: 0x91F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x99C, symBinAddr: 0x635A8, symSize: 0x98 } + - { offsetInCU: 0x1BA3, offset: 0x91FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x6375C, symSize: 0xC } + - { offsetInCU: 0x1C23, offset: 0x92039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB5C, symBinAddr: 0x63768, symSize: 0x6C } + - { offsetInCU: 0x1CD7, offset: 0x920ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xBC8, symBinAddr: 0x637D4, symSize: 0x48 } + - { offsetInCU: 0x1D49, offset: 0x9215F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC10, symBinAddr: 0x6381C, symSize: 0x68 } + - { offsetInCU: 0x2136, offset: 0x9254C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x62C4C, symSize: 0x6C } + - { offsetInCU: 0x216D, offset: 0x92583, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x62CB8, symSize: 0x28 } + - { offsetInCU: 0x218C, offset: 0x925A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x62CE0, symSize: 0x58 } + - { offsetInCU: 0x21BB, offset: 0x925D1, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x21D3, offset: 0x925E9, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x21E7, offset: 0x925FD, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x21FB, offset: 0x92611, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x220F, offset: 0x92625, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x62D38, symSize: 0x4 } + - { offsetInCU: 0x222F, offset: 0x92645, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x130, symBinAddr: 0x62D3C, symSize: 0x24 } + - { offsetInCU: 0x22DA, offset: 0x926F0, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x434, symBinAddr: 0x63040, symSize: 0xC4 } + - { offsetInCU: 0x248D, offset: 0x928A3, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x24A5, offset: 0x928BB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x24C5, offset: 0x928DB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x24D9, offset: 0x928EF, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x24ED, offset: 0x92903, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x2501, offset: 0x92917, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x63104, symSize: 0x48 } + - { offsetInCU: 0x25D5, offset: 0x929EB, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x540, symBinAddr: 0x6314C, symSize: 0x88 } + - { offsetInCU: 0x2692, offset: 0x92AA8, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x5C8, symBinAddr: 0x631D4, symSize: 0x80 } + - { offsetInCU: 0x272D, offset: 0x92B43, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x648, symBinAddr: 0x63254, symSize: 0xE4 } + - { offsetInCU: 0x2881, offset: 0x92C97, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x2899, offset: 0x92CAF, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x28AD, offset: 0x92CC3, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x28C1, offset: 0x92CD7, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x28D5, offset: 0x92CEB, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x63338, symSize: 0x64 } + - { offsetInCU: 0x2952, offset: 0x92D68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x858, symBinAddr: 0x63464, symSize: 0x24 } + - { offsetInCU: 0x29B4, offset: 0x92DCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xADC, symBinAddr: 0x636E8, symSize: 0x74 } + - { offsetInCU: 0x2A63, offset: 0x92E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x11D8, symBinAddr: 0x63DE4, symSize: 0x9BC } + - { offsetInCU: 0x3011, offset: 0x93427, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B94, symBinAddr: 0x647A0, symSize: 0x694 } + - { offsetInCU: 0x3380, offset: 0x93796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2228, symBinAddr: 0x64E34, symSize: 0x4B0 } + - { offsetInCU: 0x3549, offset: 0x9395F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x26D8, symBinAddr: 0x652E4, symSize: 0x64C } + - { offsetInCU: 0x3A4C, offset: 0x93E62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2D24, symBinAddr: 0x65930, symSize: 0x160 } + - { offsetInCU: 0x3B58, offset: 0x93F6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2E84, symBinAddr: 0x65A90, symSize: 0x2C } + - { offsetInCU: 0x3B91, offset: 0x93FA7, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2F30, symBinAddr: 0x65B3C, symSize: 0x4 } + - { offsetInCU: 0x3BBE, offset: 0x93FD4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x346C, symBinAddr: 0x65FD8, symSize: 0x14 } + - { offsetInCU: 0x3BEE, offset: 0x94004, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3480, symBinAddr: 0x65FEC, symSize: 0x14 } + - { offsetInCU: 0x3C1E, offset: 0x94034, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3494, symBinAddr: 0x66000, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x941C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x671FC, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x941DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x67384, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x941F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x67428, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x94205, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x67584, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x94219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x6776C, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x9422D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x67858, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x94241, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x679E0, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x94255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x67A78, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x94269, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x67B10, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x9427D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x67B98, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x94291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x67BEC, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x942A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x67D10, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x942B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x67D94, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x942CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x67E88, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x942E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x67FE8, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x942F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x680C4, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x94309, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x6820C, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x9431D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x682A4, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x94331, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x68370, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x943BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17AC, symBinAddr: 0x68968, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x9441A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17C4, symBinAddr: 0x68980, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x94494, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17F0, symBinAddr: 0x689AC, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x944C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0x68A1C, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x944FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1884, symBinAddr: 0x68A40, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x94516, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1890, symBinAddr: 0x68A4C, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x94532, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F68, symBinAddr: 0x6A028, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x945EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18EC, symBinAddr: 0x68AA8, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x9460F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1900, symBinAddr: 0x68ABC, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x94690, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AD8, symBinAddr: 0x68C94, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x946C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x68CDC, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x946F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B44, symBinAddr: 0x68D00, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x94712, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x68D0C, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x9472E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3150, symBinAddr: 0x6A210, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x947DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BAC, symBinAddr: 0x68D68, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x94815, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BF8, symBinAddr: 0x68DB4, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x94838, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x32A4, symBinAddr: 0x6A364, symSize: 0x2A4 } + - { offsetInCU: 0x716, offset: 0x9489C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2438, symBinAddr: 0x695F4, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x948D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2440, symBinAddr: 0x695FC, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x94902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2464, symBinAddr: 0x69620, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x9491E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2470, symBinAddr: 0x6962C, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x9493A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3548, symBinAddr: 0x6A608, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x94A96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x24CC, symBinAddr: 0x69688, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x94AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x24E0, symBinAddr: 0x6969C, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x94ADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2518, symBinAddr: 0x696B0, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x94AF1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x257C, symBinAddr: 0x696F4, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x94B05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2644, symBinAddr: 0x69774, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x94B19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x26CC, symBinAddr: 0x697B8, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x94B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x27F8, symBinAddr: 0x698E4, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x94B41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x284C, symBinAddr: 0x69928, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x94B55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x28DC, symBinAddr: 0x699B8, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x94B69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2998, symBinAddr: 0x69A74, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x94B7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x29A0, symBinAddr: 0x69A7C, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x94B91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x29A4, symBinAddr: 0x69A80, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x94BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x29AC, symBinAddr: 0x69A88, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x94BB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x29BC, symBinAddr: 0x69A98, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x94BCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2A4C, symBinAddr: 0x69B28, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x94BE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2B08, symBinAddr: 0x69BE4, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x94BF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2B0C, symBinAddr: 0x69BE8, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x94C09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2B1C, symBinAddr: 0x69BF8, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x94C1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2B4C, symBinAddr: 0x69C28, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x94C31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2B7C, symBinAddr: 0x69C58, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x94C45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2BD8, symBinAddr: 0x69CB4, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x94C59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2C88, symBinAddr: 0x69D48, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x94C6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2CEC, symBinAddr: 0x69DAC, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x94C81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2D48, symBinAddr: 0x69E08, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x94C95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2DA8, symBinAddr: 0x69E68, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x94CA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2DB8, symBinAddr: 0x69E78, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x94CBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2DBC, symBinAddr: 0x69E7C, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x94CD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2E00, symBinAddr: 0x69EC0, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x94CE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2E04, symBinAddr: 0x69EC4, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x94CF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E48, symBinAddr: 0x69F08, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x94D0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E4C, symBinAddr: 0x69F0C, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x94D21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x69F50, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x94D35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E94, symBinAddr: 0x69F54, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x94D49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED8, symBinAddr: 0x69F98, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x94D5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EDC, symBinAddr: 0x69F9C, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x94D71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F20, symBinAddr: 0x69FE0, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x94D85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F24, symBinAddr: 0x69FE4, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x94DA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3864, symBinAddr: 0x6A924, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x94DB8, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x38A8, symBinAddr: 0x6A968, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x94DCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x3974, symBinAddr: 0x6AA34, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x94DE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3A04, symBinAddr: 0x6AAC4, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x94DF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3AC0, symBinAddr: 0x6AB80, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x94E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3AC4, symBinAddr: 0x6AB84, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x94E1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3AD4, symBinAddr: 0x6AB94, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x94E30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3AD8, symBinAddr: 0x6AB98, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x94E44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3B1C, symBinAddr: 0x6ABDC, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x94E58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3B20, symBinAddr: 0x6ABE0, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x94E6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3B64, symBinAddr: 0x6AC24, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x94E80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3B68, symBinAddr: 0x6AC28, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x94EAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x189C, symBinAddr: 0x68A58, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x94ECA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18C4, symBinAddr: 0x68A80, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x94EEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B5C, symBinAddr: 0x68D18, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x94F08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B84, symBinAddr: 0x68D40, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x94F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x247C, symBinAddr: 0x69638, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x94F46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x24A4, symBinAddr: 0x69660, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x95053, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x683F8, symSize: 0x210 } + - { offsetInCU: 0xF04, offset: 0x9508A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x144C, symBinAddr: 0x68608, symSize: 0x360 } + - { offsetInCU: 0xF7F, offset: 0x95105, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1914, symBinAddr: 0x68AD0, symSize: 0x1BC } + - { offsetInCU: 0xFCA, offset: 0x95150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1C38, symBinAddr: 0x68DF4, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x95173, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CE0, symBinAddr: 0x68E9C, symSize: 0x274 } + - { offsetInCU: 0x1024, offset: 0x951AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F54, symBinAddr: 0x69110, symSize: 0x458 } + - { offsetInCU: 0x27, offset: 0x95231, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6AC8C, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x95310, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x6AD74, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x95324, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x6ADA4, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x95338, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6ADCC, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x9534C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x6AE08, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x95360, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x6AE74, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x95374, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x6AEB8, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x95388, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x6AF00, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x9539C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x6AF40, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x954AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6AC8C, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x954C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x6ACB8, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x954FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x6ACEC, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x9550E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x6ACFC, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x9552F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x6AD00, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x95543, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x6AD2C, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x95578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x6AD60, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x9559C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x6AD70, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x955EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6AF50, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x9564E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x6B1E8, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x9566A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6B1F0, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x95682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6B1F0, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x9569F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x6B0D8, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x956B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x6B0DC, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x956E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x6B208, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x956FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x6B298, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x9570F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x6B354, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x95723, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x6B35C, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x95737, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x6B360, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x9574B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x6B368, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x957BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0x438, symBinAddr: 0x6B378, symSize: 0x13C } + - { offsetInCU: 0x421, offset: 0x959E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x6B0B4, symSize: 0x24 } + - { offsetInCU: 0x515, offset: 0x95ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x6B120, symSize: 0x4C } + - { offsetInCU: 0x5ED, offset: 0x95BB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x6B16C, symSize: 0x34 } + - { offsetInCU: 0x669, offset: 0x95C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x6B1A0, symSize: 0x48 } + - { offsetInCU: 0x82E, offset: 0x95DF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6AF50, symSize: 0x14 } + - { offsetInCU: 0x84F, offset: 0x95E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x6AF64, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x95EDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B4B4, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x95F2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x6B4D8, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x96032, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B4B4, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x960C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1A48, symBinAddr: 0x88608, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x9662A, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x6B52C, symSize: 0x4C } + - { offsetInCU: 0x5CF, offset: 0x96642, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x6B578, symSize: 0x4C } + - { offsetInCU: 0x72F, offset: 0x967A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1624, symBinAddr: 0x6CAB0, symSize: 0x8 } + - { offsetInCU: 0x743, offset: 0x967B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x162C, symBinAddr: 0x6CAB8, symSize: 0x8 } + - { offsetInCU: 0x757, offset: 0x967CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1634, symBinAddr: 0x6CAC0, symSize: 0x8 } + - { offsetInCU: 0x76B, offset: 0x967DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x163C, symBinAddr: 0x6CAC8, symSize: 0x8 } + - { offsetInCU: 0x77F, offset: 0x967F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1644, symBinAddr: 0x6CAD0, symSize: 0x8 } + - { offsetInCU: 0x793, offset: 0x96806, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x16A8, symBinAddr: 0x6CAD8, symSize: 0x20 } + - { offsetInCU: 0x7A7, offset: 0x9681A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOb', symObjAddr: 0x16C8, symBinAddr: 0x6CAF8, symSize: 0x48 } + - { offsetInCU: 0x7BB, offset: 0x9682E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOd', symObjAddr: 0x1710, symBinAddr: 0x6CB40, symSize: 0x48 } + - { offsetInCU: 0x7CF, offset: 0x96842, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1894, symBinAddr: 0x6CCB4, symSize: 0x8 } + - { offsetInCU: 0x7E3, offset: 0x96856, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x189C, symBinAddr: 0x6CCBC, symSize: 0x10 } + - { offsetInCU: 0x7F7, offset: 0x9686A, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18AC, symBinAddr: 0x6CCCC, symSize: 0x8 } + - { offsetInCU: 0x840, offset: 0x968B3, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6CCD4, symSize: 0x10 } + - { offsetInCU: 0x85C, offset: 0x968CF, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6CCD4, symSize: 0x10 } + - { offsetInCU: 0x870, offset: 0x968E3, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6CCD4, symSize: 0x10 } + - { offsetInCU: 0x8AF, offset: 0x96922, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x6B4F8, symSize: 0x4 } + - { offsetInCU: 0x8CB, offset: 0x9693E, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x6B4FC, symSize: 0x4 } + - { offsetInCU: 0x8E7, offset: 0x9695A, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x6B500, symSize: 0x4 } + - { offsetInCU: 0x903, offset: 0x96976, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x6B504, symSize: 0x4 } + - { offsetInCU: 0x91F, offset: 0x96992, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x6B508, symSize: 0x4 } + - { offsetInCU: 0x93B, offset: 0x969AE, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x6B50C, symSize: 0x4 } + - { offsetInCU: 0x957, offset: 0x969CA, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x6B510, symSize: 0x4 } + - { offsetInCU: 0x973, offset: 0x969E6, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x6B514, symSize: 0xC } + - { offsetInCU: 0x98F, offset: 0x96A02, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x6B520, symSize: 0xC } + - { offsetInCU: 0xBEF, offset: 0x96C62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xCC, symBinAddr: 0x6B5C4, symSize: 0x40 } + - { offsetInCU: 0xC9C, offset: 0x96D0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x10C, symBinAddr: 0x6B604, symSize: 0x458 } + - { offsetInCU: 0xF01, offset: 0x96F74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x5C8, symBinAddr: 0x6BA80, symSize: 0x5C } + - { offsetInCU: 0xF67, offset: 0x96FDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x624, symBinAddr: 0x6BADC, symSize: 0x5C } + - { offsetInCU: 0xFCD, offset: 0x97040, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x680, symBinAddr: 0x6BB38, symSize: 0x5C } + - { offsetInCU: 0x1033, offset: 0x970A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x6DC, symBinAddr: 0x6BB94, symSize: 0x5C } + - { offsetInCU: 0x1099, offset: 0x9710C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x738, symBinAddr: 0x6BBF0, symSize: 0x5C } + - { offsetInCU: 0x1164, offset: 0x971D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x794, symBinAddr: 0x6BC4C, symSize: 0x44 } + - { offsetInCU: 0x11CE, offset: 0x97241, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7D8, symBinAddr: 0x6BC90, symSize: 0x10 } + - { offsetInCU: 0x1200, offset: 0x97273, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7D8, symBinAddr: 0x6BC90, symSize: 0x10 } + - { offsetInCU: 0x122F, offset: 0x972A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x7E8, symBinAddr: 0x6BCA0, symSize: 0x54 } + - { offsetInCU: 0x12A6, offset: 0x97319, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x94C, symBinAddr: 0x6BE04, symSize: 0x34 } + - { offsetInCU: 0x1309, offset: 0x9737C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x980, symBinAddr: 0x6BE38, symSize: 0x54 } + - { offsetInCU: 0x1380, offset: 0x973F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0x9D4, symBinAddr: 0x6BE8C, symSize: 0x4C } + - { offsetInCU: 0x140C, offset: 0x9747F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA20, symBinAddr: 0x6BED8, symSize: 0x84 } + - { offsetInCU: 0x14A7, offset: 0x9751A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xAA4, symBinAddr: 0x6BF5C, symSize: 0x74 } + - { offsetInCU: 0x1556, offset: 0x975C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xB18, symBinAddr: 0x6BFD0, symSize: 0x84 } + - { offsetInCU: 0x15F1, offset: 0x97664, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xB9C, symBinAddr: 0x6C054, symSize: 0x38 } + - { offsetInCU: 0x166E, offset: 0x976E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBD4, symBinAddr: 0x6C08C, symSize: 0x38 } + - { offsetInCU: 0x16EB, offset: 0x9775E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC0C, symBinAddr: 0x6C0C4, symSize: 0x38 } + - { offsetInCU: 0x176B, offset: 0x977DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC44, symBinAddr: 0x6C0FC, symSize: 0x38 } + - { offsetInCU: 0x17EB, offset: 0x9785E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC7C, symBinAddr: 0x6C134, symSize: 0x38 } + - { offsetInCU: 0x186B, offset: 0x978DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCB4, symBinAddr: 0x6C16C, symSize: 0x38 } + - { offsetInCU: 0x18EB, offset: 0x9795E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCEC, symBinAddr: 0x6C1A4, symSize: 0x38 } + - { offsetInCU: 0x196B, offset: 0x979DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xD24, symBinAddr: 0x6C1DC, symSize: 0x38 } + - { offsetInCU: 0x19CB, offset: 0x97A3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xD5C, symBinAddr: 0x6C214, symSize: 0x44 } + - { offsetInCU: 0x1A62, offset: 0x97AD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xDA0, symBinAddr: 0x6C258, symSize: 0x13C } + - { offsetInCU: 0x1B33, offset: 0x97BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xEDC, symBinAddr: 0x6C394, symSize: 0xAC } + - { offsetInCU: 0x1C05, offset: 0x97C78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0xF88, symBinAddr: 0x6C440, symSize: 0x78 } + - { offsetInCU: 0x1C9B, offset: 0x97D0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1000, symBinAddr: 0x6C4B8, symSize: 0x84 } + - { offsetInCU: 0x1CBE, offset: 0x97D31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1084, symBinAddr: 0x6C53C, symSize: 0x20 } + - { offsetInCU: 0x1D03, offset: 0x97D76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x10D0, symBinAddr: 0x6C55C, symSize: 0x254 } + - { offsetInCU: 0x1DFE, offset: 0x97E71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1324, symBinAddr: 0x6C7B0, symSize: 0x300 } +... diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h similarity index 99% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h index 6e93a15..413de9e 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_SWIFT_H #define IOTCONNECT2_SWIFT_H #pragma clang diagnostic push @@ -308,7 +308,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_SWIFT_H #define IOTCONNECT2_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist similarity index 73% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist index f91930e..217fbb3 100644 Binary files a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist and b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 new file mode 100755 index 0000000..e80fb92 Binary files /dev/null and b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/LICENSE b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/LICENSE similarity index 100% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/LICENSE rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/LICENSE diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..6c8ca41 --- /dev/null +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,11105 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2.SSLOption", + "usr": "s:11IoTConnect29SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2.SSLOption", + "usr": "s:11IoTConnect29SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2.SSLOption", + "usr": "s:11IoTConnect29SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2.OfflineStorageOption", + "usr": "s:11IoTConnect220OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2.OfflineStorageOption", + "usr": "s:11IoTConnect220OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2.OfflineStorageOption", + "usr": "s:11IoTConnect220OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2.SDKClientOption", + "usr": "s:11IoTConnect215SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect215SDKClientOptionVACycfc", + "mangledName": "$s11IoTConnect215SDKClientOptionVACycfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect215SDKClientOptionV", + "mangledName": "$s11IoTConnect215SDKClientOptionV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2" + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect217ReachabilityErrorO", + "mangledName": "$s11IoTConnect217ReachabilityErrorO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvp", + "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvg", + "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvg", + "moduleName": "IoTConnect2", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", + "mangledName": "$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", + "mangledName": "$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", + "mangledName": "$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC13startNotifieryyKF", + "mangledName": "$s11IoTConnect212ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC12stopNotifieryyF", + "mangledName": "$s11IoTConnect212ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvp", + "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvg", + "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11IoTConnect212ReachabilityC", + "mangledName": "$s11IoTConnect212ReachabilityC", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2.IoTConnectConfig", + "usr": "s:11IoTConnect20A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2.DebugConfig", + "usr": "s:11IoTConnect211DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2.MqttConfig", + "usr": "s:11IoTConnect210MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2.SDKClientOption", + "usr": "s:11IoTConnect215SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect20A14TConnectConfigV", + "mangledName": "$s11IoTConnect20A14TConnectConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvp", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvg", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvs", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvM", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect211DebugConfigV", + "mangledName": "$s11IoTConnect211DebugConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2.CertificateConfig", + "usr": "s:11IoTConnect217CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", + "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2.CertificateConfig", + "usr": "s:11IoTConnect217CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", + "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2.OfflineStorageConfig", + "usr": "s:11IoTConnect220OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", + "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2.OfflineStorageConfig", + "usr": "s:11IoTConnect220OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", + "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect210MqttConfigV", + "mangledName": "$s11IoTConnect210MqttConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvp", + "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvg", + "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect217CertificateConfigV", + "mangledName": "$s11IoTConnect217CertificateConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect220OfflineStorageConfigV", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect218MqttConnectionTypeO", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect220OfflineStorageOptionV", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEV", + "printedName": "DEV", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AVNET", + "printedName": "AVNET", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "QA", + "printedName": "QA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO2QAyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO2QAyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect215IOTCEnvironmentO", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect20A4TCPfO2azyA2CmF", + "mangledName": "$s11IoTConnect20A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect20A4TCPfO3awsyA2CmF", + "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvp", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvg", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect20A4TCPfO", + "mangledName": "$s11IoTConnect20A4TCPfO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvp", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvg", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvs", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvM", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect29SSLOptionV", + "mangledName": "$s11IoTConnect29SSLOptionV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect211CommandTypeO8rawValueSivp", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueSivg", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect211CommandTypeO", + "mangledName": "$s11IoTConnect211CommandTypeO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2.SDKClient", + "usr": "s:11IoTConnect29SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect29SDKClientC6sharedACvpZ", + "mangledName": "$s11IoTConnect29SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2.SDKClient", + "usr": "s:11IoTConnect29SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SDKClientC6sharedACvgZ", + "mangledName": "$s11IoTConnect29SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2.IoTConnectConfig", + "usr": "s:11IoTConnect20A14TConnectConfigV" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "mangledName": "$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC11getAllTwinsyyF", + "mangledName": "$s11IoTConnect29SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", + "mangledName": "$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", + "mangledName": "$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11IoTConnect29SDKClientC", + "mangledName": "$s11IoTConnect29SDKClientC", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS11IoTConnect2E6stringS2S_tcfc", + "mangledName": "$sSS11IoTConnect2E6stringS2S_tcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 20991, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17309, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19292, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33318, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 5, + "value": "\"DEV\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 7, + "value": "\"AVNET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 4, + "value": "\"QA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 5, + "value": "\"DEV\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 7, + "value": "\"AVNET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 4, + "value": "\"QA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5543, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 9694, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface similarity index 98% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index ad1ff5e..d4c4d0c 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc similarity index 92% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc index f75af6e..7d166c1 100644 Binary files a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface similarity index 98% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface index ad1ff5e..d4c4d0c 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..6c8ca41 --- /dev/null +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,11105 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2.SSLOption", + "usr": "s:11IoTConnect29SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2.SSLOption", + "usr": "s:11IoTConnect29SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2.SSLOption", + "usr": "s:11IoTConnect29SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2.OfflineStorageOption", + "usr": "s:11IoTConnect220OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2.OfflineStorageOption", + "usr": "s:11IoTConnect220OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2.OfflineStorageOption", + "usr": "s:11IoTConnect220OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV5debugSbvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV8devicePKSSvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV4cpIdSSvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2.SDKClientOption", + "usr": "s:11IoTConnect215SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect215SDKClientOptionVACycfc", + "mangledName": "$s11IoTConnect215SDKClientOptionVACycfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect215SDKClientOptionV", + "mangledName": "$s11IoTConnect215SDKClientOptionV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2.ReachabilityError", + "usr": "s:11IoTConnect217ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s11IoTConnect217ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2" + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect217ReachabilityErrorO", + "mangledName": "$s11IoTConnect217ReachabilityErrorO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability.Connection.Type) -> IoTConnect2.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO", + "mangledName": "$s11IoTConnect212ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", + "mangledName": "$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvp", + "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC07currentC6StringSSvg", + "mangledName": "$s11IoTConnect212ReachabilityC07currentC6StringSSvg", + "moduleName": "IoTConnect2", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2.Reachability.Connection", + "usr": "s:11IoTConnect212ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", + "mangledName": "$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", + "mangledName": "$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2.Reachability", + "usr": "s:11IoTConnect212ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", + "mangledName": "$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC13startNotifieryyKF", + "mangledName": "$s11IoTConnect212ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect212ReachabilityC12stopNotifieryyF", + "mangledName": "$s11IoTConnect212ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC11isReachableSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvp", + "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect212ReachabilityC11descriptionSSvg", + "mangledName": "$s11IoTConnect212ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:11IoTConnect212ReachabilityC", + "mangledName": "$s11IoTConnect212ReachabilityC", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2.IoTConnectConfig", + "usr": "s:11IoTConnect20A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2.DebugConfig", + "usr": "s:11IoTConnect211DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2.MqttConfig", + "usr": "s:11IoTConnect210MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2.SDKClientOption", + "usr": "s:11IoTConnect215SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect20A14TConnectConfigV", + "mangledName": "$s11IoTConnect20A14TConnectConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s11IoTConnect211DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvp", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvg", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvs", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211DebugConfigV5debugSbvM", + "mangledName": "$s11IoTConnect211DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect211DebugConfigV", + "mangledName": "$s11IoTConnect211DebugConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2.CertificateConfig", + "usr": "s:11IoTConnect217CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", + "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2.CertificateConfig", + "usr": "s:11IoTConnect217CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", + "mangledName": "$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2.OfflineStorageConfig", + "usr": "s:11IoTConnect220OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", + "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2.OfflineStorageConfig", + "usr": "s:11IoTConnect220OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", + "mangledName": "$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect210MqttConfigV", + "mangledName": "$s11IoTConnect210MqttConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvp", + "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect217CertificateConfigV15certificatePathSSvg", + "mangledName": "$s11IoTConnect217CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect217CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect217CertificateConfigV", + "mangledName": "$s11IoTConnect217CertificateConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect220OfflineStorageConfigV", + "mangledName": "$s11IoTConnect220OfflineStorageConfigV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.MqttConnectionType.Type) -> IoTConnect2.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2.MqttConnectionType", + "usr": "s:11IoTConnect218MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect218MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect218MqttConnectionTypeO", + "mangledName": "$s11IoTConnect218MqttConnectionTypeO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect220OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect220OfflineStorageOptionV", + "mangledName": "$s11IoTConnect220OfflineStorageOptionV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEV", + "printedName": "DEV", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AVNET", + "printedName": "AVNET", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO5AVNETyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "QA", + "printedName": "QA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IOTCEnvironment.Type) -> IoTConnect2.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect215IOTCEnvironmentO2QAyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO2QAyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect215IOTCEnvironmentO", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2.IOTCEnvironment", + "usr": "s:11IoTConnect215IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect20A4TCPfO2azyA2CmF", + "mangledName": "$s11IoTConnect20A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.IoTCPf.Type) -> IoTConnect2.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect20A4TCPfO3awsyA2CmF", + "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvp", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueSSvg", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect20A4TCPfO", + "mangledName": "$s11IoTConnect20A4TCPfO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s11IoTConnect29SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvp", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvg", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvs", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SSLOptionV8passwordSSvM", + "mangledName": "$s11IoTConnect29SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:11IoTConnect29SSLOptionV", + "mangledName": "$s11IoTConnect29SSLOptionV", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2.CommandType.Type) -> IoTConnect2.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect211CommandTypeO8rawValueSivp", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueSivg", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:11IoTConnect211CommandTypeO", + "mangledName": "$s11IoTConnect211CommandTypeO", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2.SDKClient", + "usr": "s:11IoTConnect29SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:11IoTConnect29SDKClientC6sharedACvpZ", + "mangledName": "$s11IoTConnect29SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2.SDKClient", + "usr": "s:11IoTConnect29SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:11IoTConnect29SDKClientC6sharedACvgZ", + "mangledName": "$s11IoTConnect29SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2.IoTConnectConfig", + "usr": "s:11IoTConnect20A14TConnectConfigV" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "mangledName": "$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s11IoTConnect29SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s11IoTConnect29SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s11IoTConnect29SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC11getAllTwinsyyF", + "mangledName": "$s11IoTConnect29SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", + "mangledName": "$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", + "mangledName": "$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:11IoTConnect29SDKClientC", + "mangledName": "$s11IoTConnect29SDKClientC", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS11IoTConnect2E6stringS2S_tcfc", + "mangledName": "$sSS11IoTConnect2E6stringS2S_tcfc", + "moduleName": "IoTConnect2", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10618, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10638, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 20991, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1002, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1062, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1136, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1192, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1366, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1447, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1504, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1601, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1678, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1784, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1835, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1887, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1934, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1989, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2290, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2386, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2543, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2593, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2642, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2698, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2763, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2892, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3004, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3051, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3094, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3135, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3176, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3251, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3370, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3495, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3558, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3618, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3680, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3750, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3790, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3852, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3998, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4058, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4118, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4237, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4295, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4359, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4420, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4486, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4532, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4603, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4655, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4704, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4770, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4825, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4880, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4930, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1116, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17309, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19292, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33318, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 5, + "value": "\"DEV\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 7, + "value": "\"AVNET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 4, + "value": "\"QA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 5, + "value": "\"DEV\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 305, + "length": 7, + "value": "\"AVNET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 4, + "value": "\"QA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5295, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5543, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5773, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 5793, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6673, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 9694, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface similarity index 98% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index b69f354..eea0f57 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc similarity index 92% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 48a3915..6dc5cad 100644 Binary files a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface similarity index 98% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index b69f354..eea0f57 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/module.modulemap b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/module.modulemap similarity index 100% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/module.modulemap rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources similarity index 84% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources index 4c0cd9f..2a5d0ce 100644 --- a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources @@ -6,11 +6,11 @@ Headers/IoTConnect2-Swift.h - IP8BlqmMYzL2FgCHaCmNG1HAh1M= + GhK26ItL/lwitT6yp+aWm5TEskE= Info.plist - fiib3AsMzx70+iFsJJGUX/UMiAc= + yvc7bt2Sn7XK/y8NLUvzGpCRCoM= LICENSE @@ -18,43 +18,43 @@ Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json - ollTdEi5moD5kMAksBBHY9eYSKw= + BUEG2abTNDcx5cUU18DKhqXF0tg= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - vCE2BV9pJwA6smTEi+7yc6x/SOk= + icjNfBLT+Pjbb/VVZZHPGSKmyIw= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc - L/CK+YmaZvUjlobdwadHVCwFXfk= + lswH23gC83A8kN0JmV4rwmMGIiQ= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface - vCE2BV9pJwA6smTEi+7yc6x/SOk= + icjNfBLT+Pjbb/VVZZHPGSKmyIw= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule - oKpEvQynqNs71wEz9I0I9icRcdA= + zdaSTf3efMP8webLiMjxr008SY4= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json - ollTdEi5moD5kMAksBBHY9eYSKw= + BUEG2abTNDcx5cUU18DKhqXF0tg= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - kzD8BULaRBBG08EjEGR63Tqdy6o= + srtaoPWDCwQYcqwz6JYixXqZHSs= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - hD5T9nj0i4lPFFEjt6ee0HBI0R8= + Dgl+C1L+xG6gA7QKMhx1IWOfKW0= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - kzD8BULaRBBG08EjEGR63Tqdy6o= + srtaoPWDCwQYcqwz6JYixXqZHSs= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - rccdKLCxFCJAnQtxJPktx3avdZM= + Lh8F7yYxBkDKHlT+FWPfS8aySFA= Modules/module.modulemap @@ -67,7 +67,7 @@ hash2 - shmZYGehmFCjzd6uF+STWkKX658heynu431qu3+KC7U= + B9N2fdn6GpLHirRMdWYVjg5PNOJcBtbYX3km3bun5LY= LICENSE @@ -81,70 +81,70 @@ hash2 - fLH2P2LNOOqBvyzGHS5z0Z+jzEa9KtPYFUFcM9mv+2E= + kM+dtlXXA1FkL3/FTfJxvGTjM3sd+baL+dtI0g1bfVM= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - BvoirQP7/cQ8OOazUihj/dtgljINKNZxn5Bbyh9QG+A= + YFLMLtDKBAvuNP0vFWYMNEekg8G0lahhOESbSlUKgLE= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - 0oD1N8IzNCQIKbuVxXi1xWPgSKWUogMwRG+8hL2Klts= + ePbIKFsOaG0E6sqf8DyUVL9A8sdB8J8CPXCk9lbs7Lc= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - BvoirQP7/cQ8OOazUihj/dtgljINKNZxn5Bbyh9QG+A= + YFLMLtDKBAvuNP0vFWYMNEekg8G0lahhOESbSlUKgLE= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - LzcQSBBQg0VZWKYjiyb4q/HdaxRrQWI41TnshDVwbak= + DxQQJtnPVXEhGTtC56qlF6aDySgvPBmvK6rqrW8MjAs= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - fLH2P2LNOOqBvyzGHS5z0Z+jzEa9KtPYFUFcM9mv+2E= + kM+dtlXXA1FkL3/FTfJxvGTjM3sd+baL+dtI0g1bfVM= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - AhYdzZPyWzzQmX470nm8PIGiJNJ58rt5sAElnAfdL+o= + 8psjuhfOgzwiK7BwjK8e880kXBi1IkA4sa3VLdf4vQ8= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - gom7gTB6qZzpSC+Op3c/WhIuGE7R4PcMxHf7kW0q644= + OIuQTxjueNMPDJIrThCL2xtg3HrLeSv4lzwsH2M7Krg= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - AhYdzZPyWzzQmX470nm8PIGiJNJ58rt5sAElnAfdL+o= + 8psjuhfOgzwiK7BwjK8e880kXBi1IkA4sa3VLdf4vQ8= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - Ap2Hzt3asQ+3iwq09haZ3EsUz1oXOWUrPOu5z8PQk+8= + XoVdSIvrNOy7f4O3qOUTvominxZhYFz57rUVlt71jSo= Modules/module.modulemap diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Info.plist b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnect2/framework_AZ/xcframeworks/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Info.plist rename to IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Info.plist diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 new file mode 100644 index 0000000..e8ba9e3 Binary files /dev/null and b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 differ diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml new file mode 100644 index 0000000..6d88bb1 --- /dev/null +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml @@ -0,0 +1,1660 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' +relocations: + - { offsetInCU: 0x34, offset: 0x58E66, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x682C0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x58E9B, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x682F0, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58F00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x39B80, symBinAddr: 0x81478, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x591A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9380, symBinAddr: 0xA90C, symSize: 0x1558 } + - { offsetInCU: 0x1C16, offset: 0x5AAC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x15F4, symSize: 0x3C } + - { offsetInCU: 0x1E0E, offset: 0x5ACBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1B48, symBinAddr: 0x30FC, symSize: 0x8 } + - { offsetInCU: 0x1E22, offset: 0x5ACD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1B50, symBinAddr: 0x3104, symSize: 0x3C } + - { offsetInCU: 0x1E36, offset: 0x5ACE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1B8C, symBinAddr: 0x3140, symSize: 0x168 } + - { offsetInCU: 0x227B, offset: 0x5B12C, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8164, symBinAddr: 0x9708, symSize: 0xC } + - { offsetInCU: 0x228F, offset: 0x5B140, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8170, symBinAddr: 0x9714, symSize: 0x4 } + - { offsetInCU: 0x22A3, offset: 0x5B154, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8174, symBinAddr: 0x9718, symSize: 0x20 } + - { offsetInCU: 0x22B7, offset: 0x5B168, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x8194, symBinAddr: 0x9738, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x5B38D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x87D4, symBinAddr: 0x9D60, symSize: 0x2C } + - { offsetInCU: 0x24F0, offset: 0x5B3A1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8800, symBinAddr: 0x9D8C, symSize: 0x2C } + - { offsetInCU: 0x2504, offset: 0x5B3B5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x886C, symBinAddr: 0x9DF8, symSize: 0x2C } + - { offsetInCU: 0x2518, offset: 0x5B3C9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8898, symBinAddr: 0x9E24, symSize: 0x2C } + - { offsetInCU: 0x2581, offset: 0x5B432, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x8CA8, symBinAddr: 0xA234, symSize: 0x68 } + - { offsetInCU: 0x2BB6, offset: 0x5BA67, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xA948, symBinAddr: 0xBED4, symSize: 0x48 } + - { offsetInCU: 0x2BCA, offset: 0x5BA7B, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xA990, symBinAddr: 0xBF1C, symSize: 0x40 } + - { offsetInCU: 0x2BDE, offset: 0x5BA8F, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xA9D0, symBinAddr: 0xBF5C, symSize: 0x20 } + - { offsetInCU: 0x2BF2, offset: 0x5BAA3, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xA9F0, symBinAddr: 0xBF7C, symSize: 0x10 } + - { offsetInCU: 0x2C06, offset: 0x5BAB7, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xAA00, symBinAddr: 0xBF8C, symSize: 0x3C } + - { offsetInCU: 0x2C1A, offset: 0x5BACB, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAA9C, symBinAddr: 0xC028, symSize: 0x44 } + - { offsetInCU: 0x2C2E, offset: 0x5BADF, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xAC68, symBinAddr: 0xC1F4, symSize: 0x8 } + - { offsetInCU: 0x2C42, offset: 0x5BAF3, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xAC70, symBinAddr: 0xC1FC, symSize: 0x10 } + - { offsetInCU: 0x2C56, offset: 0x5BB07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xAC80, symBinAddr: 0xC20C, symSize: 0x5C } + - { offsetInCU: 0x2C6A, offset: 0x5BB1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xACDC, symBinAddr: 0xC268, symSize: 0x30C } + - { offsetInCU: 0x2C7E, offset: 0x5BB2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xAFE8, symBinAddr: 0xC574, symSize: 0x240 } + - { offsetInCU: 0x2C92, offset: 0x5BB43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB228, symBinAddr: 0xC7B4, symSize: 0x70 } + - { offsetInCU: 0x2CA6, offset: 0x5BB57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xB298, symBinAddr: 0xC824, symSize: 0x34 } + - { offsetInCU: 0x2CBA, offset: 0x5BB6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xB2CC, symBinAddr: 0xC858, symSize: 0x174 } + - { offsetInCU: 0x2CCE, offset: 0x5BB7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xB440, symBinAddr: 0xC9CC, symSize: 0xB4 } + - { offsetInCU: 0x2CE2, offset: 0x5BB93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xB4F4, symBinAddr: 0xCA80, symSize: 0x10 } + - { offsetInCU: 0x2CF6, offset: 0x5BBA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xB504, symBinAddr: 0xCA90, symSize: 0x34 } + - { offsetInCU: 0x2D0A, offset: 0x5BBBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xB574, symBinAddr: 0xCB00, symSize: 0x5C } + - { offsetInCU: 0x2D1E, offset: 0x5BBCF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xB674, symBinAddr: 0xCC00, symSize: 0x2C } + - { offsetInCU: 0x2D32, offset: 0x5BBE3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xB6A0, symBinAddr: 0xCC2C, symSize: 0x2C } + - { offsetInCU: 0x2D46, offset: 0x5BBF7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xB6CC, symBinAddr: 0xCC58, symSize: 0x2C } + - { offsetInCU: 0x2D5A, offset: 0x5BC0B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xB6F8, symBinAddr: 0xCC84, symSize: 0x2C } + - { offsetInCU: 0x2D6E, offset: 0x5BC1F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xB724, symBinAddr: 0xCCB0, symSize: 0x2C } + - { offsetInCU: 0x2D82, offset: 0x5BC33, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xB750, symBinAddr: 0xCCDC, symSize: 0x2C } + - { offsetInCU: 0x2D96, offset: 0x5BC47, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xB77C, symBinAddr: 0xCD08, symSize: 0x2C } + - { offsetInCU: 0x30F4, offset: 0x5BFA5, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6A80, symBinAddr: 0x8034, symSize: 0x6C } + - { offsetInCU: 0x3208, offset: 0x5C0B9, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x81D0, symBinAddr: 0x9774, symSize: 0x80 } + - { offsetInCU: 0x3299, offset: 0x5C14A, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8250, symBinAddr: 0x97F4, symSize: 0x90 } + - { offsetInCU: 0x3339, offset: 0x5C1EA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x82E0, symBinAddr: 0x9884, symSize: 0x14 } + - { offsetInCU: 0x3377, offset: 0x5C228, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8300, symBinAddr: 0x98A4, symSize: 0x8 } + - { offsetInCU: 0x33DA, offset: 0x5C28B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8308, symBinAddr: 0x98AC, symSize: 0x14 } + - { offsetInCU: 0x348B, offset: 0x5C33C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x831C, symBinAddr: 0x98C0, symSize: 0x14 } + - { offsetInCU: 0x3534, offset: 0x5C3E5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8330, symBinAddr: 0x98D4, symSize: 0x14 } + - { offsetInCU: 0x35DB, offset: 0x5C48C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8344, symBinAddr: 0x98E8, symSize: 0x30 } + - { offsetInCU: 0x3767, offset: 0x5C618, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8374, symBinAddr: 0x9918, symSize: 0x2C } + - { offsetInCU: 0x38FE, offset: 0x5C7AF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x83A0, symBinAddr: 0x9944, symSize: 0x24 } + - { offsetInCU: 0x39EA, offset: 0x5C89B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x83C4, symBinAddr: 0x9968, symSize: 0x14 } + - { offsetInCU: 0x3A50, offset: 0x5C901, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x83D8, symBinAddr: 0x997C, symSize: 0x14 } + - { offsetInCU: 0x3AB6, offset: 0x5C967, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x83EC, symBinAddr: 0x9990, symSize: 0x14 } + - { offsetInCU: 0x3B35, offset: 0x5C9E6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8400, symBinAddr: 0x99A4, symSize: 0x14 } + - { offsetInCU: 0x3BE8, offset: 0x5CA99, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8414, symBinAddr: 0x99B8, symSize: 0x14 } + - { offsetInCU: 0x3C69, offset: 0x5CB1A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8428, symBinAddr: 0x99CC, symSize: 0x14 } + - { offsetInCU: 0x3D2B, offset: 0x5CBDC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x843C, symBinAddr: 0x99E0, symSize: 0x14 } + - { offsetInCU: 0x3DC5, offset: 0x5CC76, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8450, symBinAddr: 0x99F4, symSize: 0x10 } + - { offsetInCU: 0x3E2D, offset: 0x5CCDE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8460, symBinAddr: 0x9A04, symSize: 0x18 } + - { offsetInCU: 0x3E49, offset: 0x5CCFA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8478, symBinAddr: 0x9A1C, symSize: 0x14 } + - { offsetInCU: 0x3EC5, offset: 0x5CD76, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x84A8, symBinAddr: 0x9A4C, symSize: 0x8 } + - { offsetInCU: 0x3EE1, offset: 0x5CD92, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x84B0, symBinAddr: 0x9A54, symSize: 0x14 } + - { offsetInCU: 0x3F12, offset: 0x5CDC3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x84C4, symBinAddr: 0x9A68, symSize: 0x14 } + - { offsetInCU: 0x3F43, offset: 0x5CDF4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x84D8, symBinAddr: 0x9A7C, symSize: 0x14 } + - { offsetInCU: 0x3F74, offset: 0x5CE25, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x84EC, symBinAddr: 0x9A90, symSize: 0x30 } + - { offsetInCU: 0x3FA3, offset: 0x5CE54, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x851C, symBinAddr: 0x9AC0, symSize: 0x2C } + - { offsetInCU: 0x3FD4, offset: 0x5CE85, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8548, symBinAddr: 0x9AEC, symSize: 0x24 } + - { offsetInCU: 0x4005, offset: 0x5CEB6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x856C, symBinAddr: 0x9B10, symSize: 0x14 } + - { offsetInCU: 0x4036, offset: 0x5CEE7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8580, symBinAddr: 0x9B24, symSize: 0x14 } + - { offsetInCU: 0x4067, offset: 0x5CF18, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8594, symBinAddr: 0x9B38, symSize: 0x14 } + - { offsetInCU: 0x4098, offset: 0x5CF49, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x85A8, symBinAddr: 0x9B4C, symSize: 0x14 } + - { offsetInCU: 0x40C9, offset: 0x5CF7A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x85BC, symBinAddr: 0x9B60, symSize: 0x14 } + - { offsetInCU: 0x40FA, offset: 0x5CFAB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x85D0, symBinAddr: 0x9B74, symSize: 0x14 } + - { offsetInCU: 0x412B, offset: 0x5CFDC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x85E4, symBinAddr: 0x9B88, symSize: 0x14 } + - { offsetInCU: 0x415C, offset: 0x5D00D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x85F8, symBinAddr: 0x9B9C, symSize: 0x10 } + - { offsetInCU: 0x418D, offset: 0x5D03E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8608, symBinAddr: 0x9BAC, symSize: 0x18 } + - { offsetInCU: 0x41A9, offset: 0x5D05A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8620, symBinAddr: 0x9BC4, symSize: 0x14 } + - { offsetInCU: 0x41F9, offset: 0x5D0AA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8640, symBinAddr: 0x9BE4, symSize: 0x40 } + - { offsetInCU: 0x4281, offset: 0x5D132, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8680, symBinAddr: 0x9C24, symSize: 0x70 } + - { offsetInCU: 0x4305, offset: 0x5D1B6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8738, symBinAddr: 0x9CDC, symSize: 0x4 } + - { offsetInCU: 0x4321, offset: 0x5D1D2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x873C, symBinAddr: 0x9CE0, symSize: 0x4 } + - { offsetInCU: 0x434C, offset: 0x5D1FD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8740, symBinAddr: 0x9CE4, symSize: 0x40 } + - { offsetInCU: 0x43DA, offset: 0x5D28B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8798, symBinAddr: 0x9D24, symSize: 0x3C } + - { offsetInCU: 0x440B, offset: 0x5D2BC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x88C4, symBinAddr: 0x9E50, symSize: 0x14 } + - { offsetInCU: 0x4442, offset: 0x5D2F3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x88D8, symBinAddr: 0x9E64, symSize: 0x3C } + - { offsetInCU: 0x4482, offset: 0x5D333, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8914, symBinAddr: 0x9EA0, symSize: 0x88 } + - { offsetInCU: 0x452C, offset: 0x5D3DD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8A30, symBinAddr: 0x9FBC, symSize: 0x84 } + - { offsetInCU: 0x4560, offset: 0x5D411, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9048, symBinAddr: 0xA5D4, symSize: 0xB8 } + - { offsetInCU: 0x4638, offset: 0x5D4E9, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9100, symBinAddr: 0xA68C, symSize: 0x164 } + - { offsetInCU: 0x48B6, offset: 0x5D767, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x48D6, offset: 0x5D787, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x48EA, offset: 0x5D79B, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x490A, offset: 0x5D7BB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x491E, offset: 0x5D7CF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x4932, offset: 0x5D7E3, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x4946, offset: 0x5D7F7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xA8D8, symBinAddr: 0xBE64, symSize: 0x38 } + - { offsetInCU: 0x4A43, offset: 0x5D8F4, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4A63, offset: 0x5D914, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4A77, offset: 0x5D928, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4A97, offset: 0x5D948, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4AAB, offset: 0x5D95C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4ABF, offset: 0x5D970, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4AD3, offset: 0x5D984, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xA910, symBinAddr: 0xBE9C, symSize: 0x38 } + - { offsetInCU: 0x4D00, offset: 0x5DBB1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x89C4, symBinAddr: 0x9F50, symSize: 0x44 } + - { offsetInCU: 0x4D29, offset: 0x5DBDA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8A08, symBinAddr: 0x9F94, symSize: 0x28 } + - { offsetInCU: 0x4D64, offset: 0x5DC15, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x89A8, symBinAddr: 0x9F34, symSize: 0x10 } + - { offsetInCU: 0x4D80, offset: 0x5DC31, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x89B8, symBinAddr: 0x9F44, symSize: 0xC } + - { offsetInCU: 0x4DAE, offset: 0x5DC5F, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x899C, symBinAddr: 0x9F28, symSize: 0xC } + - { offsetInCU: 0x4E86, offset: 0x5DD37, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x82F4, symBinAddr: 0x9898, symSize: 0xC } + - { offsetInCU: 0x4EB8, offset: 0x5DD69, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x848C, symBinAddr: 0x9A30, symSize: 0x10 } + - { offsetInCU: 0x4ED4, offset: 0x5DD85, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x849C, symBinAddr: 0x9A40, symSize: 0xC } + - { offsetInCU: 0x4F32, offset: 0x5DDE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x1630, symSize: 0x44 } + - { offsetInCU: 0x4F46, offset: 0x5DDF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x1674, symSize: 0x4 } + - { offsetInCU: 0x4F6E, offset: 0x5DE1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x1678, symSize: 0x2BC } + - { offsetInCU: 0x50A6, offset: 0x5DF57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x1934, symSize: 0x1420 } + - { offsetInCU: 0x53BC, offset: 0x5E26D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x17A0, symBinAddr: 0x2D54, symSize: 0x384 } + - { offsetInCU: 0x5415, offset: 0x5E2C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1B24, symBinAddr: 0x30D8, symSize: 0x24 } + - { offsetInCU: 0x544D, offset: 0x5E2FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1CF4, symBinAddr: 0x32A8, symSize: 0x298 } + - { offsetInCU: 0x55BE, offset: 0x5E46F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1F8C, symBinAddr: 0x3540, symSize: 0x3D4 } + - { offsetInCU: 0x5869, offset: 0x5E71A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2360, symBinAddr: 0x3914, symSize: 0x7A8 } + - { offsetInCU: 0x5E84, offset: 0x5ED35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2B18, symBinAddr: 0x40CC, symSize: 0x524 } + - { offsetInCU: 0x6279, offset: 0x5F12A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x303C, symBinAddr: 0x45F0, symSize: 0x3A44 } + - { offsetInCU: 0x7252, offset: 0x60103, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6AFC, symBinAddr: 0x80A0, symSize: 0x150 } + - { offsetInCU: 0x7331, offset: 0x601E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6C4C, symBinAddr: 0x81F0, symSize: 0x300 } + - { offsetInCU: 0x7594, offset: 0x60445, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x6F4C, symBinAddr: 0x84F0, symSize: 0x3C8 } + - { offsetInCU: 0x78F2, offset: 0x607A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7314, symBinAddr: 0x88B8, symSize: 0x2B0 } + - { offsetInCU: 0x7A99, offset: 0x6094A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7814, symBinAddr: 0x8DB8, symSize: 0x31C } + - { offsetInCU: 0x7BF4, offset: 0x60AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x7B30, symBinAddr: 0x90D4, symSize: 0x438 } + - { offsetInCU: 0x7E5E, offset: 0x60D0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x7F68, symBinAddr: 0x950C, symSize: 0x188 } + - { offsetInCU: 0x811A, offset: 0x60FCB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8AB4, symBinAddr: 0xA040, symSize: 0x1F4 } + - { offsetInCU: 0x819F, offset: 0x61050, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x8E6C, symBinAddr: 0xA3F8, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x6134E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xCD40, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x61389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xCD50, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x61470, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xCD40, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x614DD, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xCD7C, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x614F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xCD90, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61563, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0xCE70, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x615BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0xCE88, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x61638, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0xCEB4, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x6166D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0xCEBC, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x6169E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0xCEE0, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x616BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0xCEEC, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x616D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x22F8, symBinAddr: 0xF068, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61896, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1348, symBinAddr: 0xE0B8, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x618CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1398, symBinAddr: 0xE108, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x618F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2714, symBinAddr: 0xF484, symSize: 0x144C } + - { offsetInCU: 0x4B4, offset: 0x6194E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x13E8, symBinAddr: 0xE158, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x619A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x13F0, symBinAddr: 0xE160, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x61A89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1430, symBinAddr: 0xE1A0, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x61AFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1490, symBinAddr: 0xE200, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x61B49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x149C, symBinAddr: 0xE20C, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x61BA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1518, symBinAddr: 0xE288, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x61BBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1524, symBinAddr: 0xE294, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x61BFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0xE2F0, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61C33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0xE340, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61C56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3B60, symBinAddr: 0x108D0, symSize: 0x248 } + - { offsetInCU: 0x857, offset: 0x61CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1628, symBinAddr: 0xE398, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1684, symBinAddr: 0xE3F4, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16A8, symBinAddr: 0xE418, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61D73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16B4, symBinAddr: 0xE424, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x12A18, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x61E68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1710, symBinAddr: 0xE480, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x61E9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1760, symBinAddr: 0xE4D0, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x61EC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5E9C, symBinAddr: 0x12BC8, symSize: 0x310 } + - { offsetInCU: 0xA97, offset: 0x61F31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17A8, symBinAddr: 0xE518, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F8, symBinAddr: 0xE568, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61F97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x181C, symBinAddr: 0xE58C, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61FB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1828, symBinAddr: 0xE598, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61FCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x61AC, symBinAddr: 0x12ED8, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x6207F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1884, symBinAddr: 0xE5F4, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x620B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C4, symBinAddr: 0xE634, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x620D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6314, symBinAddr: 0x13040, symSize: 0x2C8 } + - { offsetInCU: 0xCA2, offset: 0x6213C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0xE674, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x62171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1950, symBinAddr: 0xE6C0, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x621A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1974, symBinAddr: 0xE6E4, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x621BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1980, symBinAddr: 0xE6F0, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x621DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x65DC, symBinAddr: 0x13308, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x6229A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19DC, symBinAddr: 0xE74C, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x622D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A4C, symBinAddr: 0xE7BC, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x622F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x673C, symBinAddr: 0x13468, symSize: 0x4D8 } + - { offsetInCU: 0xEC9, offset: 0x62363, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AAC, symBinAddr: 0xE81C, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x62398, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B34, symBinAddr: 0xE8A4, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x623C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B58, symBinAddr: 0xE8C8, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x623E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B64, symBinAddr: 0xE8D4, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x62401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x13A0C, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x62515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BC0, symBinAddr: 0xE930, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x6254C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C24, symBinAddr: 0xE994, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x6256F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6F74, symBinAddr: 0x13CA0, symSize: 0x57C } + - { offsetInCU: 0x1162, offset: 0x625FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C74, symBinAddr: 0xE9E4, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6267C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1C8C, symBinAddr: 0xE9FC, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x6275F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CD0, symBinAddr: 0xEA40, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x627E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D38, symBinAddr: 0xEAA8, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x6283A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D54, symBinAddr: 0xEAC4, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x6286B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D78, symBinAddr: 0xEAE8, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x62887, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D84, symBinAddr: 0xEAF4, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x628A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7534, symBinAddr: 0x14260, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62931, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0xEB50, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x62968, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E0C, symBinAddr: 0xEB7C, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x6298B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x75F4, symBinAddr: 0x14320, symSize: 0x1A0 } + - { offsetInCU: 0x156C, offset: 0x62A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0xEBA0, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x62A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1EA0, symBinAddr: 0xEC10, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x62A6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1EC4, symBinAddr: 0xEC34, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x62A88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0xEC40, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x62AA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x77D8, symBinAddr: 0x14504, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x62BAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1F2C, symBinAddr: 0xEC9C, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x62BE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F84, symBinAddr: 0xECF4, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x62C09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7A1C, symBinAddr: 0x14748, symSize: 0x360 } + - { offsetInCU: 0x17D2, offset: 0x62C6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FD4, symBinAddr: 0xED44, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x62CA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2038, symBinAddr: 0xEDA8, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x62CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x205C, symBinAddr: 0xEDCC, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x62CEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2068, symBinAddr: 0xEDD8, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x62D0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7D7C, symBinAddr: 0x14AA8, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x62DEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x20C4, symBinAddr: 0xEE34, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62E23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x210C, symBinAddr: 0xEE7C, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62E46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7F70, symBinAddr: 0x14C9C, symSize: 0x380 } + - { offsetInCU: 0x1A2F, offset: 0x62EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x21D8, symBinAddr: 0xEF48, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62F13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x21F0, symBinAddr: 0xEF60, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62F44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2214, symBinAddr: 0xEF84, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62F60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2220, symBinAddr: 0xEF90, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62F7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8378, symBinAddr: 0x150A4, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x63023, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x227C, symBinAddr: 0xEFEC, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x6305A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x22C0, symBinAddr: 0xF030, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x6307D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8484, symBinAddr: 0x151B0, symSize: 0x1CC } + - { offsetInCU: 0x1C20, offset: 0x630BA, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3DE8, symBinAddr: 0x10B18, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x630CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3E0C, symBinAddr: 0x10B3C, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x630E2, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3E50, symBinAddr: 0x10B80, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x630F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3E70, symBinAddr: 0x10BA0, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x6310A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3EB4, symBinAddr: 0x10BE4, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x6311E, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3EF8, symBinAddr: 0x10C28, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x63132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3F00, symBinAddr: 0x10C2C, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x63146, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x3F50, symBinAddr: 0x10C7C, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x6315A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x3FDC, symBinAddr: 0x10D08, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x6316E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x3FE4, symBinAddr: 0x10D10, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x63182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x3FE8, symBinAddr: 0x10D14, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x63196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x3FEC, symBinAddr: 0x10D18, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x631AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x3FFC, symBinAddr: 0x10D28, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x631BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x48AC, symBinAddr: 0x115D8, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x631D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x48BC, symBinAddr: 0x115E8, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x631E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x48C0, symBinAddr: 0x115EC, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x631FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4904, symBinAddr: 0x11630, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x6320E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4908, symBinAddr: 0x11634, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x63222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x494C, symBinAddr: 0x11678, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x63236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4950, symBinAddr: 0x1167C, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x6324A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x4994, symBinAddr: 0x116C0, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x6325E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x49D8, symBinAddr: 0x11704, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x63272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x11748, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x63286, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4A60, symBinAddr: 0x1178C, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x6329A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x117D0, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x632AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x11814, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x632C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x4B2C, symBinAddr: 0x11858, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x632D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x4B70, symBinAddr: 0x1189C, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x632EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x4BB4, symBinAddr: 0x118E0, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x632FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x4BF8, symBinAddr: 0x11924, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x63312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x4C3C, symBinAddr: 0x11968, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x63326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4C80, symBinAddr: 0x119AC, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x6333A, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4CC4, symBinAddr: 0x119F0, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x6334E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4CD0, symBinAddr: 0x119FC, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x63362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4D60, symBinAddr: 0x11A8C, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x63376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4E1C, symBinAddr: 0x11B48, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x6338A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4E24, symBinAddr: 0x11B50, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x6339E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4E28, symBinAddr: 0x11B54, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x633B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4E30, symBinAddr: 0x11B5C, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x633C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4E40, symBinAddr: 0x11B6C, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x633DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4E68, symBinAddr: 0x11B94, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x633EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4EAC, symBinAddr: 0x11BD8, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x63402, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4F20, symBinAddr: 0x11C4C, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x63416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4F34, symBinAddr: 0x11C60, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x6342A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x4F80, symBinAddr: 0x11CAC, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x6343E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x4FC8, symBinAddr: 0x11CF4, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x5010, symBinAddr: 0x11D3C, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x63466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x5020, symBinAddr: 0x11D4C, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x6347A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5058, symBinAddr: 0x11D84, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x6348E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x50CC, symBinAddr: 0x11DF8, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x634A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5188, symBinAddr: 0x11EB4, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x634B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x51A4, symBinAddr: 0x11ED0, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x634CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5220, symBinAddr: 0x11F4C, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x634DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5268, symBinAddr: 0x11F94, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x634F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x52BC, symBinAddr: 0x11FE8, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x63506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x52CC, symBinAddr: 0x11FF8, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x6351A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x52F4, symBinAddr: 0x12020, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x6352E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5330, symBinAddr: 0x1205C, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x63542, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x539C, symBinAddr: 0x120C8, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x63556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x53A8, symBinAddr: 0x120D4, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x6356A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x53EC, symBinAddr: 0x12118, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x5434, symBinAddr: 0x12160, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5474, symBinAddr: 0x121A0, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x635A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x5484, symBinAddr: 0x121B0, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x635BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x54D4, symBinAddr: 0x12200, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x635CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5580, symBinAddr: 0x122AC, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x635E2, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5694, symBinAddr: 0x123C0, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x635F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x56C0, symBinAddr: 0x123EC, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x6360A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x575C, symBinAddr: 0x12488, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x57A4, symBinAddr: 0x124D0, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x63632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x5800, symBinAddr: 0x1252C, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x63646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x5810, symBinAddr: 0x1253C, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5868, symBinAddr: 0x12594, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x6366E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x592C, symBinAddr: 0x12658, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63682, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5A70, symBinAddr: 0x1279C, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x5AA4, symBinAddr: 0x127D0, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x636AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x5B58, symBinAddr: 0x12884, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x636BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5BA0, symBinAddr: 0x128CC, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x636D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x5C04, symBinAddr: 0x12930, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x636E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5C14, symBinAddr: 0x12940, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x636FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x5C18, symBinAddr: 0x12944, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x6370E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5C5C, symBinAddr: 0x12988, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x63722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5C60, symBinAddr: 0x1298C, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5CA4, symBinAddr: 0x129D0, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x6374A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5CA8, symBinAddr: 0x129D4, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x6375E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x6C14, symBinAddr: 0x13940, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x6C58, symBinAddr: 0x13984, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6C9C, symBinAddr: 0x139C8, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x6379A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x74F0, symBinAddr: 0x1421C, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x637AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7794, symBinAddr: 0x144C0, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x637C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x82F0, symBinAddr: 0x1501C, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x637D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8334, symBinAddr: 0x15060, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x637EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8650, symBinAddr: 0x1537C, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x637FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8694, symBinAddr: 0x153C0, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x86D8, symBinAddr: 0x15404, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x8780, symBinAddr: 0x154AC, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x6383A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x87C4, symBinAddr: 0x154F0, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x6384E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8854, symBinAddr: 0x15580, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8910, symBinAddr: 0x1563C, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8914, symBinAddr: 0x15640, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x6388A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8924, symBinAddr: 0x15650, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x6389E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x89B4, symBinAddr: 0x156E0, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x638B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A70, symBinAddr: 0x1579C, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x638C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A74, symBinAddr: 0x157A0, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x638DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8A84, symBinAddr: 0x157B0, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x638EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8B14, symBinAddr: 0x15840, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x8BD0, symBinAddr: 0x158FC, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63916, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8BD8, symBinAddr: 0x15904, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x6392A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x8BDC, symBinAddr: 0x15908, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x6393E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8BE8, symBinAddr: 0x15914, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63952, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8BF8, symBinAddr: 0x15924, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8C88, symBinAddr: 0x159B4, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x6397A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8D44, symBinAddr: 0x15A70, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x6398E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8D48, symBinAddr: 0x15A74, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x639A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8D60, symBinAddr: 0x15A8C, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x639B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8D64, symBinAddr: 0x15A90, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x639CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8D74, symBinAddr: 0x15AA0, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x639DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8DAC, symBinAddr: 0x15AD8, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x639F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8E20, symBinAddr: 0x15B4C, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63A06, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8EE4, symBinAddr: 0x15C10, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x63A1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x8F08, symBinAddr: 0x15C34, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63A2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x8F7C, symBinAddr: 0x15CA8, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63A42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x8FC4, symBinAddr: 0x15CF0, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x9018, symBinAddr: 0x15D44, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x63A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x9028, symBinAddr: 0x15D54, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x9060, symBinAddr: 0x15D8C, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63A92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x90C4, symBinAddr: 0x15DF0, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x63AA6, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9170, symBinAddr: 0x15E9C, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x63ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x9184, symBinAddr: 0x15EB0, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x63ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x91E8, symBinAddr: 0x15F14, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x63AE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9230, symBinAddr: 0x15F5C, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x63AF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x9280, symBinAddr: 0x15FAC, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x63B0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x9290, symBinAddr: 0x15FBC, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63B1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x92C8, symBinAddr: 0x15FF4, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63B32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9334, symBinAddr: 0x16060, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63B46, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x93E8, symBinAddr: 0x16114, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x63B5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x940C, symBinAddr: 0x16138, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63B6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9478, symBinAddr: 0x161A4, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x94C0, symBinAddr: 0x161EC, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63B96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9510, symBinAddr: 0x1623C, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x63BAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9520, symBinAddr: 0x1624C, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x63BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9524, symBinAddr: 0x16250, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9568, symBinAddr: 0x16294, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x63BE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x956C, symBinAddr: 0x16298, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x63BFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x95B0, symBinAddr: 0x162DC, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63C0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x95B4, symBinAddr: 0x162E0, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63C22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x95F8, symBinAddr: 0x16324, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63C36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x95FC, symBinAddr: 0x16328, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x63C4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9640, symBinAddr: 0x1636C, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63C5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9644, symBinAddr: 0x16370, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63C72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9688, symBinAddr: 0x163B4, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63C86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x968C, symBinAddr: 0x163B8, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x63C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96D0, symBinAddr: 0x163FC, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x63CAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96D4, symBinAddr: 0x16400, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x63CC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9718, symBinAddr: 0x16444, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x63CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x971C, symBinAddr: 0x16448, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x63CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9760, symBinAddr: 0x1648C, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9764, symBinAddr: 0x16490, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63D12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97A8, symBinAddr: 0x164D4, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97AC, symBinAddr: 0x164D8, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x63D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x97F0, symBinAddr: 0x1651C, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x97F4, symBinAddr: 0x16520, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63D62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9838, symBinAddr: 0x16564, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63D76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x983C, symBinAddr: 0x16568, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x63D8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9880, symBinAddr: 0x165AC, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x63D9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9884, symBinAddr: 0x165B0, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x63DB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98C8, symBinAddr: 0x165F4, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x63DC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98CC, symBinAddr: 0x165F8, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x63DDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9910, symBinAddr: 0x1663C, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x63DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9914, symBinAddr: 0x16640, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63E02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9958, symBinAddr: 0x16684, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x999C, symBinAddr: 0x166C8, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x63E2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x99E0, symBinAddr: 0x1670C, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9A24, symBinAddr: 0x16750, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63E52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9AB4, symBinAddr: 0x167E0, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9B70, symBinAddr: 0x1689C, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x63E7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9B74, symBinAddr: 0x168A0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9CD8, symBinAddr: 0x16A04, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x63EA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9CDC, symBinAddr: 0x16A08, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x63EB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9CEC, symBinAddr: 0x16A18, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x63ECA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9D7C, symBinAddr: 0x16AA8, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x63EDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9E38, symBinAddr: 0x16B64, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x63EF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9E3C, symBinAddr: 0x16B68, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63F06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9E4C, symBinAddr: 0x16B78, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63F1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9E50, symBinAddr: 0x16B7C, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63F2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9E94, symBinAddr: 0x16BC0, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63F42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9E98, symBinAddr: 0x16BC4, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63F56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9EDC, symBinAddr: 0x16C08, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63F6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9EE0, symBinAddr: 0x16C0C, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63F7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9F24, symBinAddr: 0x16C50, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63F92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9F28, symBinAddr: 0x16C54, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63FA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9F6C, symBinAddr: 0x16C98, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63FBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9F70, symBinAddr: 0x16C9C, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63FCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9FB4, symBinAddr: 0x16CE0, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63FE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9FB8, symBinAddr: 0x16CE4, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9FFC, symBinAddr: 0x16D28, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x6400A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA000, symBinAddr: 0x16D2C, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x6401E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA044, symBinAddr: 0x16D70, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x64032, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA048, symBinAddr: 0x16D74, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x64046, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA08C, symBinAddr: 0x16DB8, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x6405A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x16DBC, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x640B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0xCEF8, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x640D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0xCF20, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x6413B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1454, symBinAddr: 0xE1C4, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x641FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1530, symBinAddr: 0xE2A0, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x64217, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1558, symBinAddr: 0xE2C8, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x64239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16C0, symBinAddr: 0xE430, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x64255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0xE458, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x64277, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1834, symBinAddr: 0xE5A4, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x64293, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0xE5CC, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x642B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0xE6FC, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x642D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19B4, symBinAddr: 0xE724, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x642F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B70, symBinAddr: 0xE8E0, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x6430F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0xE908, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x64362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1CF8, symBinAddr: 0xEA68, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x64404, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D90, symBinAddr: 0xEB00, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x64420, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DB8, symBinAddr: 0xEB28, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x64442, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EDC, symBinAddr: 0xEC4C, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x6445E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1F04, symBinAddr: 0xEC74, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x64480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2074, symBinAddr: 0xEDE4, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x6449C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x209C, symBinAddr: 0xEE0C, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x644BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x222C, symBinAddr: 0xEF9C, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x644DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2254, symBinAddr: 0xEFC4, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x645C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xCDA0, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x64644, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0xCF48, symSize: 0x40C } + - { offsetInCU: 0x31DB, offset: 0x64675, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5E4, symBinAddr: 0xD354, symSize: 0x100 } + - { offsetInCU: 0x320C, offset: 0x646A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6E4, symBinAddr: 0xD454, symSize: 0x17C } + - { offsetInCU: 0x323D, offset: 0x646D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x860, symBinAddr: 0xD5D0, symSize: 0x154 } + - { offsetInCU: 0x326E, offset: 0x64708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9B4, symBinAddr: 0xD724, symSize: 0x1A4 } + - { offsetInCU: 0x329F, offset: 0x64739, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB58, symBinAddr: 0xD8C8, symSize: 0x1F4 } + - { offsetInCU: 0x32D0, offset: 0x6476A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD4C, symBinAddr: 0xDABC, symSize: 0x118 } + - { offsetInCU: 0x3301, offset: 0x6479B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE64, symBinAddr: 0xDBD4, symSize: 0x1CC } + - { offsetInCU: 0x3332, offset: 0x647CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1030, symBinAddr: 0xDDA0, symSize: 0x1EC } + - { offsetInCU: 0x3363, offset: 0x647FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x121C, symBinAddr: 0xDF8C, symSize: 0x12C } + - { offsetInCU: 0x27, offset: 0x64A39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x16E94, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64DFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x171A8, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64E13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x171D8, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x64E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x17218, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x64E3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x172BC, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64E4F, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x173C0, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64E63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x173EC, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x64E77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x17488, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x64E8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x174D0, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x64E9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x17530, symSize: 0x10 } + - { offsetInCU: 0x614, offset: 0x65026, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x16E94, symSize: 0x38 } + - { offsetInCU: 0x62C, offset: 0x6503E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x16E94, symSize: 0x38 } + - { offsetInCU: 0x653, offset: 0x65065, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x16ECC, symSize: 0x3C } + - { offsetInCU: 0x66D, offset: 0x6507F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x16F08, symSize: 0x54 } + - { offsetInCU: 0x6A2, offset: 0x650B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x16F5C, symSize: 0x10 } + - { offsetInCU: 0x6B6, offset: 0x650C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x16F6C, symSize: 0x4 } + - { offsetInCU: 0x6D7, offset: 0x650E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0xDC, symBinAddr: 0x16F70, symSize: 0x14 } + - { offsetInCU: 0x6EB, offset: 0x650FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0xF0, symBinAddr: 0x16F84, symSize: 0x14 } + - { offsetInCU: 0x71B, offset: 0x6512D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x104, symBinAddr: 0x16F98, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x65151, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x16FA8, symSize: 0x4 } + - { offsetInCU: 0x760, offset: 0x65172, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x16FAC, symSize: 0x2C } + - { offsetInCU: 0x774, offset: 0x65186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x16FD8, symSize: 0x34 } + - { offsetInCU: 0x7A9, offset: 0x651BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1700C, symSize: 0x10 } + - { offsetInCU: 0x7CD, offset: 0x651DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1701C, symSize: 0x4 } + - { offsetInCU: 0x7EE, offset: 0x65200, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x17020, symSize: 0x8 } + - { offsetInCU: 0x802, offset: 0x65214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x17028, symSize: 0x8 } + - { offsetInCU: 0x832, offset: 0x65244, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x17030, symSize: 0x10 } + - { offsetInCU: 0x856, offset: 0x65268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x17040, symSize: 0x4 } + - { offsetInCU: 0x877, offset: 0x65289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x17044, symSize: 0x8 } + - { offsetInCU: 0x88B, offset: 0x6529D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1704C, symSize: 0x8 } + - { offsetInCU: 0x8BB, offset: 0x652CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x17054, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x652F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x17064, symSize: 0x4 } + - { offsetInCU: 0x900, offset: 0x65312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x17068, symSize: 0x2C } + - { offsetInCU: 0x914, offset: 0x65326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x17094, symSize: 0x34 } + - { offsetInCU: 0x949, offset: 0x6535B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x170C8, symSize: 0x10 } + - { offsetInCU: 0x96D, offset: 0x6537F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x170D8, symSize: 0x4 } + - { offsetInCU: 0x98E, offset: 0x653A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x170DC, symSize: 0x2C } + - { offsetInCU: 0x9A2, offset: 0x653B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x17108, symSize: 0x34 } + - { offsetInCU: 0x9D7, offset: 0x653E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1713C, symSize: 0x10 } + - { offsetInCU: 0x9FB, offset: 0x6540D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1714C, symSize: 0x4 } + - { offsetInCU: 0xA1C, offset: 0x6542E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x17150, symSize: 0xC } + - { offsetInCU: 0xA30, offset: 0x65442, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1715C, symSize: 0xC } + - { offsetInCU: 0xA64, offset: 0x65476, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x17168, symSize: 0x10 } + - { offsetInCU: 0xA88, offset: 0x6549A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x17178, symSize: 0x4 } + - { offsetInCU: 0xAA9, offset: 0x654BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1717C, symSize: 0xC } + - { offsetInCU: 0xABD, offset: 0x654CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x17188, symSize: 0xC } + - { offsetInCU: 0xAF1, offset: 0x65503, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x17194, symSize: 0x10 } + - { offsetInCU: 0xB15, offset: 0x65527, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x171A4, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x655EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x598, symBinAddr: 0x17AD8, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x6561B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5C4, symBinAddr: 0x17B04, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x65637, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x800, symBinAddr: 0x17D40, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x656B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x7AC, symBinAddr: 0x17CEC, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x656E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7D8, symBinAddr: 0x17D18, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x656FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x864, symBinAddr: 0x17DA4, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x6573D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C8, symBinAddr: 0x17E08, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x6576D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9DC, symBinAddr: 0x17F0C, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x65781, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA6C, symBinAddr: 0x17F9C, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65795, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB28, symBinAddr: 0x18058, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x657A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB2C, symBinAddr: 0x1805C, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x657BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB3C, symBinAddr: 0x1806C, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x657D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBCC, symBinAddr: 0x180FC, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x657E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC88, symBinAddr: 0x181B8, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x657F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC90, symBinAddr: 0x181C0, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x6580D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC94, symBinAddr: 0x181C4, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x65821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC9C, symBinAddr: 0x181CC, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x65835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCAC, symBinAddr: 0x181DC, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x65849, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCB0, symBinAddr: 0x181E0, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x6585D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF4, symBinAddr: 0x18224, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x65871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF8, symBinAddr: 0x18228, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x6597B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x17540, symSize: 0x2AC } + - { offsetInCU: 0x433, offset: 0x6599E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x177EC, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x65AC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x183A8, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x65B0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x183C8, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x65B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x18454, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65B87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x18458, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x65BAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1845C, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x65BD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x184D0, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x65C11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x184D4, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65C7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x18554, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x65CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x185B8, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65D24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x18648, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x65D81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x186C8, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x65DB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1872C, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x65DCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x18730, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x65EB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x18E84, symSize: 0x374 } + - { offsetInCU: 0x7D5, offset: 0x661CA, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1050, symBinAddr: 0x192C4, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x661DE, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1060, symBinAddr: 0x192D4, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x661F2, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10F4, symBinAddr: 0x192E4, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x66206, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x113C, symBinAddr: 0x1932C, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x6621A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1150, symBinAddr: 0x19340, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x6622E, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1194, symBinAddr: 0x19384, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x66242, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11D4, symBinAddr: 0x193C4, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x66256, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1398, symBinAddr: 0x19588, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x6626A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13C8, symBinAddr: 0x195B8, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x6627E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1584, symBinAddr: 0x19774, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x66488, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x18274, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x664B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x18388, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x665E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x18734, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x666BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x18E10, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x66751, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF84, symBinAddr: 0x191F8, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x667C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFEC, symBinAddr: 0x19260, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x66871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2BF0, symBinAddr: 0x7FC18, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x6688B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2BF8, symBinAddr: 0x7FC20, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x66899, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x197B4, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x668D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x197E8, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x6690B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x19828, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x6697B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x19908, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x6699B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x19908, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x66A13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x19A70, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x66A33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x19A70, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x66A59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x19ACC, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x66AD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x19B38, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x66AF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x19B38, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x66E0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1D28, symBinAddr: 0x1B4CC, symSize: 0x190 } + - { offsetInCU: 0x6B4, offset: 0x66ED6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x19BBC, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66F0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x19C44, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66F4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x19D3C, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66F60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x19D9C, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66F74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x19DEC, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66FAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x19E74, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x1A0A8, symSize: 0x5C } + - { offsetInCU: 0x98E, offset: 0x671B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x17CC, symBinAddr: 0x1AF70, symSize: 0x140 } + - { offsetInCU: 0xA8A, offset: 0x672AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x190C, symBinAddr: 0x1B0B0, symSize: 0x18 } + - { offsetInCU: 0xA9E, offset: 0x672C0, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A60, symBinAddr: 0x1B204, symSize: 0x2C } + - { offsetInCU: 0xAB6, offset: 0x672D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1CC4, symBinAddr: 0x1B468, symSize: 0x44 } + - { offsetInCU: 0xACA, offset: 0x672EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1D08, symBinAddr: 0x1B4AC, symSize: 0x20 } + - { offsetInCU: 0xADE, offset: 0x67300, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1EB8, symBinAddr: 0x1B65C, symSize: 0x20 } + - { offsetInCU: 0xAF2, offset: 0x67314, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1ED8, symBinAddr: 0x1B67C, symSize: 0x4 } + - { offsetInCU: 0xB06, offset: 0x67328, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1EDC, symBinAddr: 0x1B680, symSize: 0x44 } + - { offsetInCU: 0xB1A, offset: 0x6733C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1F20, symBinAddr: 0x1B6C4, symSize: 0x4 } + - { offsetInCU: 0xB2E, offset: 0x67350, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1F24, symBinAddr: 0x1B6C8, symSize: 0x44 } + - { offsetInCU: 0xB42, offset: 0x67364, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x2048, symBinAddr: 0x1B7EC, symSize: 0x18 } + - { offsetInCU: 0xB56, offset: 0x67378, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x2060, symBinAddr: 0x1B804, symSize: 0x14 } + - { offsetInCU: 0xB6A, offset: 0x6738C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x2074, symBinAddr: 0x1B818, symSize: 0x18 } + - { offsetInCU: 0xB7E, offset: 0x673A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x20EC, symBinAddr: 0x1B890, symSize: 0x6C } + - { offsetInCU: 0xB92, offset: 0x673B4, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2158, symBinAddr: 0x1B8FC, symSize: 0x14 } + - { offsetInCU: 0xBA6, offset: 0x673C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x216C, symBinAddr: 0x1B910, symSize: 0x50 } + - { offsetInCU: 0xBBA, offset: 0x673DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x21BC, symBinAddr: 0x1B960, symSize: 0x48 } + - { offsetInCU: 0xBCE, offset: 0x673F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x2204, symBinAddr: 0x1B9A8, symSize: 0x48 } + - { offsetInCU: 0xBE2, offset: 0x67404, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x224C, symBinAddr: 0x1B9F0, symSize: 0x8 } + - { offsetInCU: 0xBF6, offset: 0x67418, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2254, symBinAddr: 0x1B9F8, symSize: 0x4 } + - { offsetInCU: 0xC0A, offset: 0x6742C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2258, symBinAddr: 0x1B9FC, symSize: 0x8 } + - { offsetInCU: 0xC1E, offset: 0x67440, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x1BA04, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x67454, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2348, symBinAddr: 0x1BADC, symSize: 0x90 } + - { offsetInCU: 0xC46, offset: 0x67468, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23D8, symBinAddr: 0x1BB6C, symSize: 0xBC } + - { offsetInCU: 0xC5A, offset: 0x6747C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2494, symBinAddr: 0x1BC28, symSize: 0x4 } + - { offsetInCU: 0xC6E, offset: 0x67490, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2498, symBinAddr: 0x1BC2C, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x674A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x24A8, symBinAddr: 0x1BC3C, symSize: 0x90 } + - { offsetInCU: 0xC96, offset: 0x674B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2538, symBinAddr: 0x1BCCC, symSize: 0xBC } + - { offsetInCU: 0xCAA, offset: 0x674CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x25F4, symBinAddr: 0x1BD88, symSize: 0x8 } + - { offsetInCU: 0xCBE, offset: 0x674E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x25FC, symBinAddr: 0x1BD90, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x674F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2600, symBinAddr: 0x1BD94, symSize: 0x8 } + - { offsetInCU: 0xCE6, offset: 0x67508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2608, symBinAddr: 0x1BD9C, symSize: 0x10 } + - { offsetInCU: 0xD05, offset: 0x67527, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2640, symBinAddr: 0x1BDD4, symSize: 0x24 } + - { offsetInCU: 0xD2E, offset: 0x67550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x274C, symBinAddr: 0x1BEE0, symSize: 0x8 } + - { offsetInCU: 0xD42, offset: 0x67564, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2754, symBinAddr: 0x1BEE8, symSize: 0x10 } + - { offsetInCU: 0xD56, offset: 0x67578, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2764, symBinAddr: 0x1BEF8, symSize: 0x8 } + - { offsetInCU: 0xD6A, offset: 0x6758C, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x27F0, symBinAddr: 0x1BF00, symSize: 0x3C } + - { offsetInCU: 0xDEC, offset: 0x6760E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x197A4, symSize: 0x4 } + - { offsetInCU: 0xE08, offset: 0x6762A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x197A8, symSize: 0x4 } + - { offsetInCU: 0xE24, offset: 0x67646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x197AC, symSize: 0x4 } + - { offsetInCU: 0xE40, offset: 0x67662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x197B0, symSize: 0x4 } + - { offsetInCU: 0x10B2, offset: 0x678D4, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1985C, symSize: 0x40 } + - { offsetInCU: 0x10E0, offset: 0x67902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1989C, symSize: 0x60 } + - { offsetInCU: 0x1118, offset: 0x6793A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x19968, symSize: 0x84 } + - { offsetInCU: 0x113F, offset: 0x67961, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x199EC, symSize: 0x14 } + - { offsetInCU: 0x1186, offset: 0x679A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x19A00, symSize: 0x28 } + - { offsetInCU: 0x128D, offset: 0x67AAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x19CF0, symSize: 0x4C } + - { offsetInCU: 0x12AC, offset: 0x67ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x19D4C, symSize: 0x50 } + - { offsetInCU: 0x12D5, offset: 0x67AF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x19DAC, symSize: 0x3C } + - { offsetInCU: 0x12FA, offset: 0x67B1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x19DE8, symSize: 0x4 } + - { offsetInCU: 0x134F, offset: 0x67B71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x19F20, symSize: 0x4C } + - { offsetInCU: 0x136E, offset: 0x67B90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x19F6C, symSize: 0x50 } + - { offsetInCU: 0x1397, offset: 0x67BB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x19FBC, symSize: 0x3C } + - { offsetInCU: 0x13BC, offset: 0x67BDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x19FF8, symSize: 0x8 } + - { offsetInCU: 0x13DD, offset: 0x67BFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x1A000, symSize: 0x30 } + - { offsetInCU: 0x13FA, offset: 0x67C1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x1A030, symSize: 0x3C } + - { offsetInCU: 0x141F, offset: 0x67C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x1A06C, symSize: 0x3C } + - { offsetInCU: 0x1469, offset: 0x67C8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x960, symBinAddr: 0x1A104, symSize: 0x30 } + - { offsetInCU: 0x1486, offset: 0x67CA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x990, symBinAddr: 0x1A134, symSize: 0x44 } + - { offsetInCU: 0x14AF, offset: 0x67CD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x9D4, symBinAddr: 0x1A178, symSize: 0x3C } + - { offsetInCU: 0x14DB, offset: 0x67CFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x1A1B4, symSize: 0xC8 } + - { offsetInCU: 0x1552, offset: 0x67D74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x1A27C, symSize: 0xC0 } + - { offsetInCU: 0x15E1, offset: 0x67E03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB98, symBinAddr: 0x1A33C, symSize: 0xC0 } + - { offsetInCU: 0x16BA, offset: 0x67EDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xC58, symBinAddr: 0x1A3FC, symSize: 0x204 } + - { offsetInCU: 0x1723, offset: 0x67F45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1924, symBinAddr: 0x1B0C8, symSize: 0x13C } + - { offsetInCU: 0x17D1, offset: 0x67FF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xE5C, symBinAddr: 0x1A600, symSize: 0x70 } + - { offsetInCU: 0x17FB, offset: 0x6801D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xECC, symBinAddr: 0x1A670, symSize: 0x30 } + - { offsetInCU: 0x181D, offset: 0x6803F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xEFC, symBinAddr: 0x1A6A0, symSize: 0x178 } + - { offsetInCU: 0x18C2, offset: 0x680E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0x1074, symBinAddr: 0x1A818, symSize: 0x14 } + - { offsetInCU: 0x190F, offset: 0x68131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0x10F8, symBinAddr: 0x1A89C, symSize: 0x3C } + - { offsetInCU: 0x1995, offset: 0x681B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0x1088, symBinAddr: 0x1A82C, symSize: 0x70 } + - { offsetInCU: 0x1A29, offset: 0x6824B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0x1134, symBinAddr: 0x1A8D8, symSize: 0x78 } + - { offsetInCU: 0x1B0D, offset: 0x6832F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0x11AC, symBinAddr: 0x1A950, symSize: 0x224 } + - { offsetInCU: 0x1CF9, offset: 0x6851B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x13D0, symBinAddr: 0x1AB74, symSize: 0xC } + - { offsetInCU: 0x1D50, offset: 0x68572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1AB80, symSize: 0x4 } + - { offsetInCU: 0x1D6C, offset: 0x6858E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1AB80, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x685A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1AB80, symSize: 0x4 } + - { offsetInCU: 0x1D9E, offset: 0x685C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13E0, symBinAddr: 0x1AB84, symSize: 0x4 } + - { offsetInCU: 0x1DB6, offset: 0x685D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13E4, symBinAddr: 0x1AB88, symSize: 0xB8 } + - { offsetInCU: 0x1E56, offset: 0x68678, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14DC, symBinAddr: 0x1AC80, symSize: 0x4 } + - { offsetInCU: 0x1E6E, offset: 0x68690, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26AC, symBinAddr: 0x1BE40, symSize: 0x7C } + - { offsetInCU: 0x1F45, offset: 0x68767, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x149C, symBinAddr: 0x1AC40, symSize: 0x40 } + - { offsetInCU: 0x1F7A, offset: 0x6879C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14EC, symBinAddr: 0x1AC90, symSize: 0x98 } + - { offsetInCU: 0x2021, offset: 0x68843, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x1634, symBinAddr: 0x1ADD8, symSize: 0x198 } + - { offsetInCU: 0x251E, offset: 0x68D40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x1A8C, symBinAddr: 0x1B230, symSize: 0x24 } + - { offsetInCU: 0x2561, offset: 0x68D83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1AB0, symBinAddr: 0x1B254, symSize: 0x214 } + - { offsetInCU: 0x43, offset: 0x68F3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1C054, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68F4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1C090, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68F63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1C114, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68F7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1C23C, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68FA7, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1C26C, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68FBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1C288, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68FCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1C324, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68FE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1C388, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68FF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1C3E4, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x6900B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1C3F4, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x6901F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1C424, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x69033, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1C44C, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x69047, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1C4A8, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x6905B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1C52C, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x6906F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1C590, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x69083, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1C5EC, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x69097, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1C64C, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x690E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x1CA74, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x6913B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA28, symBinAddr: 0x1CA7C, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x6921E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA68, symBinAddr: 0x1CABC, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x6928F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAC8, symBinAddr: 0x1CB1C, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x692DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD4, symBinAddr: 0x1CB28, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x69338, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB50, symBinAddr: 0x1CBA4, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x69354, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB5C, symBinAddr: 0x1CBB0, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x69391, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBB8, symBinAddr: 0x1CC0C, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x693C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC04, symBinAddr: 0x1CC58, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x693EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC8, symBinAddr: 0x1D01C, symSize: 0x144 } + - { offsetInCU: 0x580, offset: 0x69478, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC44, symBinAddr: 0x1CC98, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x694D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC5C, symBinAddr: 0x1CCB0, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x6954D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC88, symBinAddr: 0x1CCDC, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x69582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x1CD24, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x695B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF4, symBinAddr: 0x1CD48, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x695CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1CD54, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x695EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x125C, symBinAddr: 0x1D22C, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x696AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD5C, symBinAddr: 0x1CDB0, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x696E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDA8, symBinAddr: 0x1CDFC, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x69705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13B0, symBinAddr: 0x1D380, symSize: 0x254 } + - { offsetInCU: 0x87C, offset: 0x69774, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE74, symBinAddr: 0x1CEC8, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x697A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEC4, symBinAddr: 0x1CF18, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x697DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xEE8, symBinAddr: 0x1CF3C, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x697F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x1CF48, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x69812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x1DCA0, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x698C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF50, symBinAddr: 0x1CFA4, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x698F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF90, symBinAddr: 0x1CFE4, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x6991C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EA4, symBinAddr: 0x1DE08, symSize: 0x2A8 } + - { offsetInCU: 0xA81, offset: 0x69979, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1170, symBinAddr: 0x1D160, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x6998D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x11D4, symBinAddr: 0x1D1A4, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x699A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1218, symBinAddr: 0x1D1E8, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x699B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x1D5D4, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x699C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x1D618, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x699DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x1D708, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x699F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x1D754, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x69A05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x1D75C, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x69A19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x1D760, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x69A2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x1D768, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x69A41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x1D778, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x69A55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x1D7C8, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x1D854, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x69A7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x1D85C, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69A91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x1D860, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x69AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x1D864, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x1D874, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x69ACD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x1D8AC, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69AE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x1D910, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x69AF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x1D9BC, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x69B09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x1DA20, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x69B1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x1DA7C, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x69B31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x1DAE0, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x69B45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x1DAF0, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x1DAF4, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x69B6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x1DB38, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69B81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x1DB3C, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x69B95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x1DB80, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69BA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x1DB84, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x69BBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x1DBC8, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x1DBCC, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69BE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x1DC10, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x69BF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x1DC14, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x69C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x1DC58, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x69C21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x1DC5C, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x69C35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x1E0B0, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x69C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x1E248, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69C5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x1E24C, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69C71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x1E25C, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x1E260, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69C99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x1E2A4, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x1E2A8, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69CC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x1E2EC, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69CD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x1E2F0, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x69D34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA8C, symBinAddr: 0x1CAE0, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x69DF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB68, symBinAddr: 0x1CBBC, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x69E10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB90, symBinAddr: 0x1CBE4, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x69E32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD0C, symBinAddr: 0x1CD60, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x69E4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD34, symBinAddr: 0x1CD88, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69E70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF00, symBinAddr: 0x1CF54, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69E8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF28, symBinAddr: 0x1CF7C, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69F7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1C65C, symSize: 0x10C } + - { offsetInCU: 0x10B4, offset: 0x69FAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x714, symBinAddr: 0x1C768, symSize: 0x1B8 } + - { offsetInCU: 0x10E5, offset: 0x69FDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8CC, symBinAddr: 0x1C920, symSize: 0x154 } + - { offsetInCU: 0xA6, offset: 0x6A198, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x1E5D8, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x6A1B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2BC, symBinAddr: 0x1E5D8, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x6A1DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x2D4, symBinAddr: 0x1E5F0, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x6A2C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x318, symBinAddr: 0x1E634, symSize: 0x28 } + - { offsetInCU: 0x4BB, offset: 0x6A5AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x380, symBinAddr: 0x1E69C, symSize: 0x4 } + - { offsetInCU: 0x4CF, offset: 0x6A5C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x384, symBinAddr: 0x1E6A0, symSize: 0x44 } + - { offsetInCU: 0x4E3, offset: 0x6A5D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x3C8, symBinAddr: 0x1E6E4, symSize: 0x30 } + - { offsetInCU: 0x4F7, offset: 0x6A5E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x3F8, symBinAddr: 0x1E714, symSize: 0x7C } + - { offsetInCU: 0x50B, offset: 0x6A5FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x474, symBinAddr: 0x1E790, symSize: 0x184 } + - { offsetInCU: 0x51F, offset: 0x6A611, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0x5F8, symBinAddr: 0x1E914, symSize: 0x394 } + - { offsetInCU: 0x53A, offset: 0x6A62C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0x98C, symBinAddr: 0x1ECA8, symSize: 0x30 } + - { offsetInCU: 0x563, offset: 0x6A655, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0x9BC, symBinAddr: 0x1ECD8, symSize: 0x2C } + - { offsetInCU: 0x577, offset: 0x6A669, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0x9E8, symBinAddr: 0x1ED04, symSize: 0x34 } + - { offsetInCU: 0x58B, offset: 0x6A67D, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xA1C, symBinAddr: 0x1ED38, symSize: 0x44 } + - { offsetInCU: 0x59F, offset: 0x6A691, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xA60, symBinAddr: 0x1ED7C, symSize: 0x1B4 } + - { offsetInCU: 0x5B3, offset: 0x6A6A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0xC14, symBinAddr: 0x1EF30, symSize: 0x48 } + - { offsetInCU: 0x5C7, offset: 0x6A6B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0xC5C, symBinAddr: 0x1EF78, symSize: 0x78 } + - { offsetInCU: 0x5DB, offset: 0x6A6CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0xCD4, symBinAddr: 0x1EFF0, symSize: 0x10 } + - { offsetInCU: 0x5EF, offset: 0x6A6E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0xCE8, symBinAddr: 0x1F004, symSize: 0x8 } + - { offsetInCU: 0x603, offset: 0x6A6F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0xD28, symBinAddr: 0x1F044, symSize: 0x54 } + - { offsetInCU: 0x617, offset: 0x6A709, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xD7C, symBinAddr: 0x1F098, symSize: 0x14 } + - { offsetInCU: 0x62B, offset: 0x6A71D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0xD90, symBinAddr: 0x1F0AC, symSize: 0x3C } + - { offsetInCU: 0x63F, offset: 0x6A731, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0xDCC, symBinAddr: 0x1F0E8, symSize: 0x48 } + - { offsetInCU: 0x653, offset: 0x6A745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0xE14, symBinAddr: 0x1F130, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x6A759, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0xE54, symBinAddr: 0x1F170, symSize: 0x10 } + - { offsetInCU: 0x67B, offset: 0x6A76D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0xE64, symBinAddr: 0x1F180, symSize: 0x38 } + - { offsetInCU: 0x68F, offset: 0x6A781, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0xE9C, symBinAddr: 0x1F1B8, symSize: 0x6C } + - { offsetInCU: 0x6A3, offset: 0x6A795, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x1F224, symSize: 0xDC } + - { offsetInCU: 0x6B7, offset: 0x6A7A9, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0xFE4, symBinAddr: 0x1F300, symSize: 0x1C } + - { offsetInCU: 0x6CB, offset: 0x6A7BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1000, symBinAddr: 0x1F31C, symSize: 0x74 } + - { offsetInCU: 0x6DF, offset: 0x6A7D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1074, symBinAddr: 0x1F390, symSize: 0x5C } + - { offsetInCU: 0x6F3, offset: 0x6A7E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x10D0, symBinAddr: 0x1F3EC, symSize: 0x64 } + - { offsetInCU: 0x707, offset: 0x6A7F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1134, symBinAddr: 0x1F450, symSize: 0x10 } + - { offsetInCU: 0x71B, offset: 0x6A80D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1144, symBinAddr: 0x1F460, symSize: 0x28 } + - { offsetInCU: 0x72F, offset: 0x6A821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x116C, symBinAddr: 0x1F488, symSize: 0x3C } + - { offsetInCU: 0x743, offset: 0x6A835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x11A8, symBinAddr: 0x1F4C4, symSize: 0x6C } + - { offsetInCU: 0x757, offset: 0x6A849, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1220, symBinAddr: 0x1F530, symSize: 0x44 } + - { offsetInCU: 0x76B, offset: 0x6A85D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1264, symBinAddr: 0x1F574, symSize: 0x48 } + - { offsetInCU: 0x77F, offset: 0x6A871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x12AC, symBinAddr: 0x1F5BC, symSize: 0x40 } + - { offsetInCU: 0x793, offset: 0x6A885, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x12EC, symBinAddr: 0x1F5FC, symSize: 0x10 } + - { offsetInCU: 0x7A7, offset: 0x6A899, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1300, symBinAddr: 0x1F60C, symSize: 0x54 } + - { offsetInCU: 0x7BB, offset: 0x6A8AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1354, symBinAddr: 0x1F660, symSize: 0x44 } + - { offsetInCU: 0x7CF, offset: 0x6A8C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1398, symBinAddr: 0x1F6A4, symSize: 0x10 } + - { offsetInCU: 0x7E3, offset: 0x6A8D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x13B4, symBinAddr: 0x1F6B4, symSize: 0x90 } + - { offsetInCU: 0x7F7, offset: 0x6A8E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1444, symBinAddr: 0x1F744, symSize: 0xBC } + - { offsetInCU: 0x80B, offset: 0x6A8FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1500, symBinAddr: 0x1F800, symSize: 0x8 } + - { offsetInCU: 0x81F, offset: 0x6A911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1508, symBinAddr: 0x1F808, symSize: 0x4 } + - { offsetInCU: 0x833, offset: 0x6A925, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x150C, symBinAddr: 0x1F80C, symSize: 0xC } + - { offsetInCU: 0x847, offset: 0x6A939, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1518, symBinAddr: 0x1F818, symSize: 0x10 } + - { offsetInCU: 0x8BE, offset: 0x6A9B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x340, symBinAddr: 0x1E65C, symSize: 0x40 } + - { offsetInCU: 0xA61, offset: 0x6AB53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1E34C, symSize: 0x18 } + - { offsetInCU: 0xA9A, offset: 0x6AB8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x1E364, symSize: 0x94 } + - { offsetInCU: 0xAFB, offset: 0x6ABED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xAC, symBinAddr: 0x1E3F8, symSize: 0x2C } + - { offsetInCU: 0xB15, offset: 0x6AC07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0xD8, symBinAddr: 0x1E424, symSize: 0x34 } + - { offsetInCU: 0xB4A, offset: 0x6AC3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x10C, symBinAddr: 0x1E458, symSize: 0x10 } + - { offsetInCU: 0xB5E, offset: 0x6AC50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x11C, symBinAddr: 0x1E468, symSize: 0x4 } + - { offsetInCU: 0xB7F, offset: 0x6AC71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x120, symBinAddr: 0x1E46C, symSize: 0x8 } + - { offsetInCU: 0xB93, offset: 0x6AC85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x128, symBinAddr: 0x1E474, symSize: 0x8 } + - { offsetInCU: 0xBC3, offset: 0x6ACB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x130, symBinAddr: 0x1E47C, symSize: 0x10 } + - { offsetInCU: 0xBE7, offset: 0x6ACD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x1E48C, symSize: 0x4 } + - { offsetInCU: 0xC08, offset: 0x6ACFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x144, symBinAddr: 0x1E490, symSize: 0x14 } + - { offsetInCU: 0xC1C, offset: 0x6AD0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x188, symBinAddr: 0x1E4A4, symSize: 0x14 } + - { offsetInCU: 0xC30, offset: 0x6AD22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x19C, symBinAddr: 0x1E4B8, symSize: 0x2C } + - { offsetInCU: 0xC44, offset: 0x6AD36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x1C8, symBinAddr: 0x1E4E4, symSize: 0x2C } + - { offsetInCU: 0xC58, offset: 0x6AD4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x1F4, symBinAddr: 0x1E510, symSize: 0x8 } + - { offsetInCU: 0xC6C, offset: 0x6AD5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x1FC, symBinAddr: 0x1E518, symSize: 0x8 } + - { offsetInCU: 0xC9E, offset: 0x6AD90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x204, symBinAddr: 0x1E520, symSize: 0x10 } + - { offsetInCU: 0xCB2, offset: 0x6ADA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x214, symBinAddr: 0x1E530, symSize: 0x4 } + - { offsetInCU: 0xCD3, offset: 0x6ADC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x218, symBinAddr: 0x1E534, symSize: 0x8 } + - { offsetInCU: 0xCE7, offset: 0x6ADD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x220, symBinAddr: 0x1E53C, symSize: 0x8 } + - { offsetInCU: 0xD19, offset: 0x6AE0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x228, symBinAddr: 0x1E544, symSize: 0x10 } + - { offsetInCU: 0xD3D, offset: 0x6AE2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x238, symBinAddr: 0x1E554, symSize: 0x4 } + - { offsetInCU: 0xD5E, offset: 0x6AE50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x23C, symBinAddr: 0x1E558, symSize: 0x10 } + - { offsetInCU: 0xD82, offset: 0x6AE74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x24C, symBinAddr: 0x1E568, symSize: 0x4 } + - { offsetInCU: 0xDB1, offset: 0x6AEA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x250, symBinAddr: 0x1E56C, symSize: 0x28 } + - { offsetInCU: 0xE3C, offset: 0x6AF2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x278, symBinAddr: 0x1E594, symSize: 0x44 } + - { offsetInCU: 0x549, offset: 0x6B59E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x21FC, symBinAddr: 0x21A34, symSize: 0x6C0 } + - { offsetInCU: 0xA7A, offset: 0x6BACF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x6C5C, symBinAddr: 0x26494, symSize: 0x28 } + - { offsetInCU: 0x1B3D, offset: 0x6CB92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x13E70, symBinAddr: 0x336A8, symSize: 0x90 } + - { offsetInCU: 0x1BD5, offset: 0x6CC2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x14DD4, symBinAddr: 0x3460C, symSize: 0x44 } + - { offsetInCU: 0x1BF1, offset: 0x6CC46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x14E18, symBinAddr: 0x34650, symSize: 0x150 } + - { offsetInCU: 0x1D0A, offset: 0x6CD5F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x14F68, symBinAddr: 0x347A0, symSize: 0x54 } + - { offsetInCU: 0x1D88, offset: 0x6CDDD, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x15010, symBinAddr: 0x347F4, symSize: 0x4C } + - { offsetInCU: 0x1E16, offset: 0x6CE6B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x1505C, symBinAddr: 0x34840, symSize: 0x50 } + - { offsetInCU: 0x1E84, offset: 0x6CED9, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x150AC, symBinAddr: 0x34890, symSize: 0x64 } + - { offsetInCU: 0x251A, offset: 0x6D56F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x15F24, symBinAddr: 0x35708, symSize: 0x84 } + - { offsetInCU: 0x257E, offset: 0x6D5D3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x15FA8, symBinAddr: 0x3578C, symSize: 0x80 } + - { offsetInCU: 0x264B, offset: 0x6D6A0, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16144, symBinAddr: 0x35928, symSize: 0x40 } + - { offsetInCU: 0x286C, offset: 0x6D8C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x171B4, symBinAddr: 0x3691C, symSize: 0x1A0 } + - { offsetInCU: 0x29C1, offset: 0x6DA16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17354, symBinAddr: 0x36ABC, symSize: 0x360 } + - { offsetInCU: 0x30E3, offset: 0x6E138, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x184E4, symBinAddr: 0x37C4C, symSize: 0xBB8 } + - { offsetInCU: 0x414F, offset: 0x6F1A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1909C, symBinAddr: 0x38804, symSize: 0x1C0 } + - { offsetInCU: 0x42D0, offset: 0x6F325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1925C, symBinAddr: 0x389C4, symSize: 0x1A0 } + - { offsetInCU: 0x46D8, offset: 0x6F72D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x19E58, symBinAddr: 0x395C0, symSize: 0x8 } + - { offsetInCU: 0x46EC, offset: 0x6F741, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x19F28, symBinAddr: 0x39690, symSize: 0x10 } + - { offsetInCU: 0x4700, offset: 0x6F755, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x19F38, symBinAddr: 0x396A0, symSize: 0x14 } + - { offsetInCU: 0x4714, offset: 0x6F769, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x19F4C, symBinAddr: 0x396B4, symSize: 0x44 } + - { offsetInCU: 0x4728, offset: 0x6F77D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x19FA0, symBinAddr: 0x396F8, symSize: 0x44 } + - { offsetInCU: 0x473C, offset: 0x6F791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x19FE4, symBinAddr: 0x3973C, symSize: 0x30C } + - { offsetInCU: 0x4750, offset: 0x6F7A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1A2F0, symBinAddr: 0x39A48, symSize: 0x240 } + - { offsetInCU: 0x4764, offset: 0x6F7B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1A530, symBinAddr: 0x39C88, symSize: 0x70 } + - { offsetInCU: 0x4778, offset: 0x6F7CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1A5A0, symBinAddr: 0x39CF8, symSize: 0x34 } + - { offsetInCU: 0x478C, offset: 0x6F7E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1A5D4, symBinAddr: 0x39D2C, symSize: 0x174 } + - { offsetInCU: 0x47A0, offset: 0x6F7F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1A748, symBinAddr: 0x39EA0, symSize: 0xB4 } + - { offsetInCU: 0x47F3, offset: 0x6F848, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1B014, symBinAddr: 0x39F54, symSize: 0xC4 } + - { offsetInCU: 0x4869, offset: 0x6F8BE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B0D8, symBinAddr: 0x3A018, symSize: 0x78 } + - { offsetInCU: 0x4896, offset: 0x6F8EB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B150, symBinAddr: 0x3A090, symSize: 0x80 } + - { offsetInCU: 0x492A, offset: 0x6F97F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B1D0, symBinAddr: 0x3A110, symSize: 0x68 } + - { offsetInCU: 0x4A91, offset: 0x6FAE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B238, symBinAddr: 0x3A178, symSize: 0x640 } + - { offsetInCU: 0x4F55, offset: 0x6FFAA, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1B888, symBinAddr: 0x3A7C8, symSize: 0x4C } + - { offsetInCU: 0x4F69, offset: 0x6FFBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1B97C, symBinAddr: 0x3A834, symSize: 0x8 } + - { offsetInCU: 0x4F7D, offset: 0x6FFD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1B984, symBinAddr: 0x3A83C, symSize: 0x44 } + - { offsetInCU: 0x4F91, offset: 0x6FFE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1B9C8, symBinAddr: 0x3A880, symSize: 0x44 } + - { offsetInCU: 0x4FA5, offset: 0x6FFFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BA74, symBinAddr: 0x3A8E8, symSize: 0x8 } + - { offsetInCU: 0x4FB9, offset: 0x7000E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1BB04, symBinAddr: 0x3A970, symSize: 0x44 } + - { offsetInCU: 0x4FEE, offset: 0x70043, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BC0C, symBinAddr: 0x3AA78, symSize: 0x48 } + - { offsetInCU: 0x5002, offset: 0x70057, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BC78, symBinAddr: 0x3AAE4, symSize: 0x3C } + - { offsetInCU: 0x5016, offset: 0x7006B, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BCB4, symBinAddr: 0x3AB20, symSize: 0x34 } + - { offsetInCU: 0x502A, offset: 0x7007F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1BD0C, symBinAddr: 0x3AB78, symSize: 0x40 } + - { offsetInCU: 0x503E, offset: 0x70093, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1BD4C, symBinAddr: 0x3ABB8, symSize: 0x48 } + - { offsetInCU: 0x5052, offset: 0x700A7, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1BE58, symBinAddr: 0x3ACC4, symSize: 0x18 } + - { offsetInCU: 0x5066, offset: 0x700BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1BE70, symBinAddr: 0x3ACDC, symSize: 0x10 } + - { offsetInCU: 0x507A, offset: 0x700CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1BE80, symBinAddr: 0x3ACEC, symSize: 0x34 } + - { offsetInCU: 0x508E, offset: 0x700E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1BEF0, symBinAddr: 0x3AD5C, symSize: 0x30 } + - { offsetInCU: 0x56FF, offset: 0x70754, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9490, symBinAddr: 0x28CC8, symSize: 0x400 } + - { offsetInCU: 0x5862, offset: 0x708B7, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xA70C, symBinAddr: 0x29F44, symSize: 0x390 } + - { offsetInCU: 0x5B26, offset: 0x70B7B, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xAA9C, symBinAddr: 0x2A2D4, symSize: 0x3B8 } + - { offsetInCU: 0x5F84, offset: 0x70FD9, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xEE8C, symBinAddr: 0x2E6C4, symSize: 0x18C } + - { offsetInCU: 0x635A, offset: 0x713AF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x165D4, symBinAddr: 0x35DB8, symSize: 0x110 } + - { offsetInCU: 0x64B6, offset: 0x7150B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x16724, symBinAddr: 0x35EC8, symSize: 0xFC } + - { offsetInCU: 0x65D3, offset: 0x71628, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1700C, symBinAddr: 0x36774, symSize: 0x1A8 } + - { offsetInCU: 0x66E3, offset: 0x71738, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x176B4, symBinAddr: 0x36E1C, symSize: 0x188 } + - { offsetInCU: 0x6A30, offset: 0x71A85, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x195C4, symBinAddr: 0x38D2C, symSize: 0x1C8 } + - { offsetInCU: 0x6B5F, offset: 0x71BB4, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x1978C, symBinAddr: 0x38EF4, symSize: 0x11C } + - { offsetInCU: 0x6CC1, offset: 0x71D16, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x198A8, symBinAddr: 0x39010, symSize: 0xFC } + - { offsetInCU: 0x6E23, offset: 0x71E78, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x199A4, symBinAddr: 0x3910C, symSize: 0xE4 } + - { offsetInCU: 0x6F79, offset: 0x71FCE, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19A88, symBinAddr: 0x391F0, symSize: 0x114 } + - { offsetInCU: 0x70CF, offset: 0x72124, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19B9C, symBinAddr: 0x39304, symSize: 0xF0 } + - { offsetInCU: 0x7231, offset: 0x72286, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x19D74, symBinAddr: 0x394DC, symSize: 0xE4 } + - { offsetInCU: 0x73A8, offset: 0x723FD, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BB48, symBinAddr: 0x3A9B4, symSize: 0xC4 } + - { offsetInCU: 0x790F, offset: 0x72964, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x1F838, symSize: 0x190 } + - { offsetInCU: 0x798C, offset: 0x729E1, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x190, symBinAddr: 0x1F9C8, symSize: 0x88 } + - { offsetInCU: 0x7B04, offset: 0x72B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x218, symBinAddr: 0x1FA50, symSize: 0x1D04 } + - { offsetInCU: 0x8CA1, offset: 0x73CF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xAE54, symBinAddr: 0x2A68C, symSize: 0x37E0 } + - { offsetInCU: 0x9FC8, offset: 0x7501D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xE634, symBinAddr: 0x2DE6C, symSize: 0x578 } + - { offsetInCU: 0xA41A, offset: 0x7546F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10158, symBinAddr: 0x2F990, symSize: 0x2568 } + - { offsetInCU: 0xBAA8, offset: 0x76AFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13608, symBinAddr: 0x32E40, symSize: 0x3DC } + - { offsetInCU: 0xBC43, offset: 0x76C98, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x1F1C, symBinAddr: 0x21754, symSize: 0x2E0 } + - { offsetInCU: 0xC09A, offset: 0x770EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x28BC, symBinAddr: 0x220F4, symSize: 0x3B8 } + - { offsetInCU: 0xC326, offset: 0x7737B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x2C74, symBinAddr: 0x224AC, symSize: 0x3914 } + - { offsetInCU: 0xDED3, offset: 0x78F28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6588, symBinAddr: 0x25DC0, symSize: 0x278 } + - { offsetInCU: 0xDFDF, offset: 0x79034, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x6C84, symBinAddr: 0x264BC, symSize: 0x1848 } + - { offsetInCU: 0xEA66, offset: 0x79ABB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6800, symBinAddr: 0x26038, symSize: 0x118 } + - { offsetInCU: 0xEADF, offset: 0x79B34, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6918, symBinAddr: 0x26150, symSize: 0x15C } + - { offsetInCU: 0xEAFA, offset: 0x79B4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x6A74, symBinAddr: 0x262AC, symSize: 0x1E8 } + - { offsetInCU: 0xEE07, offset: 0x79E5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x8520, symBinAddr: 0x27D58, symSize: 0x3F8 } + - { offsetInCU: 0xF028, offset: 0x7A07D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9890, symBinAddr: 0x290C8, symSize: 0xE7C } + - { offsetInCU: 0xF934, offset: 0x7A989, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8918, symBinAddr: 0x28150, symSize: 0xB78 } + - { offsetInCU: 0x10304, offset: 0x7B359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF018, symBinAddr: 0x2E850, symSize: 0x1140 } + - { offsetInCU: 0x114B9, offset: 0x7C50E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1783C, symBinAddr: 0x36FA4, symSize: 0xB10 } + - { offsetInCU: 0x11F49, offset: 0x7CF9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x126C0, symBinAddr: 0x31EF8, symSize: 0xF48 } + - { offsetInCU: 0x12A2D, offset: 0x7DA82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x139E4, symBinAddr: 0x3321C, symSize: 0x1E8 } + - { offsetInCU: 0x12AB1, offset: 0x7DB06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x13BCC, symBinAddr: 0x33404, symSize: 0x294 } + - { offsetInCU: 0x12BC1, offset: 0x7DC16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x13F00, symBinAddr: 0x33738, symSize: 0xED4 } + - { offsetInCU: 0x135EC, offset: 0x7E641, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x15110, symBinAddr: 0x348F4, symSize: 0x64 } + - { offsetInCU: 0x1362A, offset: 0x7E67F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15174, symBinAddr: 0x34958, symSize: 0x30 } + - { offsetInCU: 0x13671, offset: 0x7E6C6, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x151A4, symBinAddr: 0x34988, symSize: 0x80 } + - { offsetInCU: 0x1370B, offset: 0x7E760, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x15224, symBinAddr: 0x34A08, symSize: 0x6C } + - { offsetInCU: 0x137BB, offset: 0x7E810, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15290, symBinAddr: 0x34A74, symSize: 0x4C } + - { offsetInCU: 0x13834, offset: 0x7E889, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x15308, symBinAddr: 0x34AEC, symSize: 0xE0 } + - { offsetInCU: 0x138A8, offset: 0x7E8FD, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x153E8, symBinAddr: 0x34BCC, symSize: 0xC4 } + - { offsetInCU: 0x138D1, offset: 0x7E926, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x154AC, symBinAddr: 0x34C90, symSize: 0x174 } + - { offsetInCU: 0x139AA, offset: 0x7E9FF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x15620, symBinAddr: 0x34E04, symSize: 0x104 } + - { offsetInCU: 0x13AD9, offset: 0x7EB2E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x15724, symBinAddr: 0x34F08, symSize: 0x124 } + - { offsetInCU: 0x13BFA, offset: 0x7EC4F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x15848, symBinAddr: 0x3502C, symSize: 0x170 } + - { offsetInCU: 0x13D7B, offset: 0x7EDD0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x159B8, symBinAddr: 0x3519C, symSize: 0x174 } + - { offsetInCU: 0x13EC9, offset: 0x7EF1E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x15B2C, symBinAddr: 0x35310, symSize: 0xFC } + - { offsetInCU: 0x13FFF, offset: 0x7F054, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x15C28, symBinAddr: 0x3540C, symSize: 0xFC } + - { offsetInCU: 0x14135, offset: 0x7F18A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x15E28, symBinAddr: 0x3560C, symSize: 0xFC } + - { offsetInCU: 0x1426B, offset: 0x7F2C0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x16028, symBinAddr: 0x3580C, symSize: 0x11C } + - { offsetInCU: 0x14356, offset: 0x7F3AB, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x163E8, symBinAddr: 0x35BCC, symSize: 0x138 } + - { offsetInCU: 0x14425, offset: 0x7F47A, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16520, symBinAddr: 0x35D04, symSize: 0xB4 } + - { offsetInCU: 0x144CB, offset: 0x7F520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x16820, symBinAddr: 0x35FC4, symSize: 0x5F0 } + - { offsetInCU: 0x147E4, offset: 0x7F839, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x16E20, symBinAddr: 0x365C4, symSize: 0x18C } + - { offsetInCU: 0x149E6, offset: 0x7FA3B, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1834C, symBinAddr: 0x37AB4, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x8016E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3ADC4, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x80186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3ADC4, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x8019A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3ADF4, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x801AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3AEE0, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x801C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x3B148, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x801D6, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x3B564, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x801EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x3B56C, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x801FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x3B7A8, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x80212, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x3B7F0, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x80226, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x3B8AC, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x80820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8BF0, symBinAddr: 0x444AC, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x808DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8E10, symBinAddr: 0x446CC, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x809AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xCDBC, symBinAddr: 0x48678, symSize: 0x774 } + - { offsetInCU: 0x9DA, offset: 0x80CE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD530, symBinAddr: 0x48DEC, symSize: 0x9CC } + - { offsetInCU: 0xCB4, offset: 0x80FBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xDEFC, symBinAddr: 0x497B8, symSize: 0x2AC } + - { offsetInCU: 0xDF6, offset: 0x810FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xE860, symBinAddr: 0x4A11C, symSize: 0x810 } + - { offsetInCU: 0x10EC, offset: 0x813F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF070, symBinAddr: 0x4A92C, symSize: 0xBB4 } + - { offsetInCU: 0x13C6, offset: 0x816CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xFC24, symBinAddr: 0x4B4E0, symSize: 0x314 } + - { offsetInCU: 0x1508, offset: 0x8180F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0xFF38, symBinAddr: 0x4B7F4, symSize: 0x208 } + - { offsetInCU: 0x1989, offset: 0x81C90, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1E38, symBinAddr: 0x3D6F4, symSize: 0x2C } + - { offsetInCU: 0x1E8E, offset: 0x82195, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x90D4, symBinAddr: 0x44990, symSize: 0x20 } + - { offsetInCU: 0x1ED3, offset: 0x821DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x90F4, symBinAddr: 0x449B0, symSize: 0x8C } + - { offsetInCU: 0x1F8F, offset: 0x82296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0x9BE4, symBinAddr: 0x454A0, symSize: 0x54 } + - { offsetInCU: 0x1FC9, offset: 0x822D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0x9C38, symBinAddr: 0x454F4, symSize: 0x50 } + - { offsetInCU: 0x201F, offset: 0x82326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9C88, symBinAddr: 0x45544, symSize: 0x64 } + - { offsetInCU: 0x2052, offset: 0x82359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x9CEC, symBinAddr: 0x455A8, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x82398, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9CF0, symBinAddr: 0x455AC, symSize: 0x78 } + - { offsetInCU: 0x20E7, offset: 0x823EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9D68, symBinAddr: 0x45624, symSize: 0x88 } + - { offsetInCU: 0x2158, offset: 0x8245F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x9DF0, symBinAddr: 0x456AC, symSize: 0xDC } + - { offsetInCU: 0x21DA, offset: 0x824E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x9ECC, symBinAddr: 0x45788, symSize: 0x4 } + - { offsetInCU: 0x21F6, offset: 0x824FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x9ED0, symBinAddr: 0x4578C, symSize: 0x4 } + - { offsetInCU: 0x2230, offset: 0x82537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0x9ED4, symBinAddr: 0x45790, symSize: 0x64 } + - { offsetInCU: 0x259D, offset: 0x828A4, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB17C, symBinAddr: 0x46A38, symSize: 0xE4 } + - { offsetInCU: 0x2681, offset: 0x82988, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xB344, symBinAddr: 0x46C00, symSize: 0x280 } + - { offsetInCU: 0x281D, offset: 0x82B24, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xBB74, symBinAddr: 0x47430, symSize: 0x64 } + - { offsetInCU: 0x2DFE, offset: 0x83105, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xC378, symBinAddr: 0x47C34, symSize: 0x374 } + - { offsetInCU: 0x35A0, offset: 0x838A7, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xC6EC, symBinAddr: 0x47FA8, symSize: 0x280 } + - { offsetInCU: 0x3977, offset: 0x83C7E, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xC96C, symBinAddr: 0x48228, symSize: 0x148 } + - { offsetInCU: 0x3B71, offset: 0x83E78, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xCAB4, symBinAddr: 0x48370, symSize: 0x1F8 } + - { offsetInCU: 0x3D30, offset: 0x84037, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x108F0, symBinAddr: 0x4C1AC, symSize: 0x104 } + - { offsetInCU: 0x3E7A, offset: 0x84181, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x133A8, symBinAddr: 0x4EC64, symSize: 0x120 } + - { offsetInCU: 0x3F92, offset: 0x84299, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x139B0, symBinAddr: 0x4F20C, symSize: 0x10 } + - { offsetInCU: 0x3FA6, offset: 0x842AD, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x139C0, symBinAddr: 0x4F21C, symSize: 0x10 } + - { offsetInCU: 0x3FBA, offset: 0x842C1, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x13A54, symBinAddr: 0x4F22C, symSize: 0x48 } + - { offsetInCU: 0x3FCE, offset: 0x842D5, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x13B40, symBinAddr: 0x4F274, symSize: 0x3C } + - { offsetInCU: 0x3FE2, offset: 0x842E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x13B7C, symBinAddr: 0x4F2B0, symSize: 0x44 } + - { offsetInCU: 0x3FF6, offset: 0x842FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOd', symObjAddr: 0x13BC0, symBinAddr: 0x4F2F4, symSize: 0x48 } + - { offsetInCU: 0x400A, offset: 0x84311, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x13C08, symBinAddr: 0x4F33C, symSize: 0x8 } + - { offsetInCU: 0x401E, offset: 0x84325, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x13C10, symBinAddr: 0x4F344, symSize: 0x10 } + - { offsetInCU: 0x4032, offset: 0x84339, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x13C20, symBinAddr: 0x4F354, symSize: 0x8 } + - { offsetInCU: 0x4046, offset: 0x8434D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x13CA8, symBinAddr: 0x4F398, symSize: 0x30 } + - { offsetInCU: 0x409E, offset: 0x843A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x13D68, symBinAddr: 0x4F458, symSize: 0x24 } + - { offsetInCU: 0x40DA, offset: 0x843E1, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x13DD0, symBinAddr: 0x4F4C0, symSize: 0x44 } + - { offsetInCU: 0x4BF8, offset: 0x84EFF, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x3B8BC, symSize: 0x80 } + - { offsetInCU: 0x4C60, offset: 0x84F67, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x80, symBinAddr: 0x3B93C, symSize: 0xA0 } + - { offsetInCU: 0x4DC3, offset: 0x850CA, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x120, symBinAddr: 0x3B9DC, symSize: 0x9C } + - { offsetInCU: 0x4EEE, offset: 0x851F5, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1BC, symBinAddr: 0x3BA78, symSize: 0x74 } + - { offsetInCU: 0x4F73, offset: 0x8527A, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x230, symBinAddr: 0x3BAEC, symSize: 0x4 } + - { offsetInCU: 0x4F8E, offset: 0x85295, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x234, symBinAddr: 0x3BAF0, symSize: 0x134 } + - { offsetInCU: 0x4FF9, offset: 0x85300, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x3BC24, symSize: 0xE8 } + - { offsetInCU: 0x50DB, offset: 0x853E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x3BD0C, symSize: 0x204 } + - { offsetInCU: 0x525A, offset: 0x85561, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x3BF10, symSize: 0xAF8 } + - { offsetInCU: 0x56EC, offset: 0x859F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x114C, symBinAddr: 0x3CA08, symSize: 0x3CC } + - { offsetInCU: 0x5903, offset: 0x85C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1518, symBinAddr: 0x3CDD4, symSize: 0x920 } + - { offsetInCU: 0x5C7A, offset: 0x85F81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x1E64, symBinAddr: 0x3D720, symSize: 0x21E4 } + - { offsetInCU: 0x7197, offset: 0x8749E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE1A8, symBinAddr: 0x49A64, symSize: 0x6B8 } + - { offsetInCU: 0x75A2, offset: 0x878A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4048, symBinAddr: 0x3F904, symSize: 0x158C } + - { offsetInCU: 0x845D, offset: 0x88764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x55D4, symBinAddr: 0x40E90, symSize: 0xFD4 } + - { offsetInCU: 0x8E64, offset: 0x8916B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x65A8, symBinAddr: 0x41E64, symSize: 0x3B0 } + - { offsetInCU: 0x8FCD, offset: 0x892D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x71DC, symBinAddr: 0x42A98, symSize: 0x1E8 } + - { offsetInCU: 0x921F, offset: 0x89526, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x73C4, symBinAddr: 0x42C80, symSize: 0x92C } + - { offsetInCU: 0x9A1F, offset: 0x89D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7CF0, symBinAddr: 0x435AC, symSize: 0x2A8 } + - { offsetInCU: 0x9B71, offset: 0x89E78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7F98, symBinAddr: 0x43854, symSize: 0x614 } + - { offsetInCU: 0x9F3E, offset: 0x8A245, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x85AC, symBinAddr: 0x43E68, symSize: 0x644 } + - { offsetInCU: 0xA1E0, offset: 0x8A4E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x9034, symBinAddr: 0x448F0, symSize: 0x80 } + - { offsetInCU: 0xA203, offset: 0x8A50A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x90B4, symBinAddr: 0x44970, symSize: 0x20 } + - { offsetInCU: 0xA28E, offset: 0x8A595, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x9180, symBinAddr: 0x44A3C, symSize: 0xA24 } + - { offsetInCU: 0xA6BD, offset: 0x8A9C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x9BA4, symBinAddr: 0x45460, symSize: 0x40 } + - { offsetInCU: 0xA730, offset: 0x8AA37, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0x9F38, symBinAddr: 0x457F4, symSize: 0x4 } + - { offsetInCU: 0xA74B, offset: 0x8AA52, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F3C, symBinAddr: 0x457F8, symSize: 0x8 } + - { offsetInCU: 0xA763, offset: 0x8AA6A, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F3C, symBinAddr: 0x457F8, symSize: 0x8 } + - { offsetInCU: 0xA774, offset: 0x8AA7B, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0x9F44, symBinAddr: 0x45800, symSize: 0xC8 } + - { offsetInCU: 0xA7FC, offset: 0x8AB03, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA00C, symBinAddr: 0x458C8, symSize: 0xCC } + - { offsetInCU: 0xA89C, offset: 0x8ABA3, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA1D4, symBinAddr: 0x45A90, symSize: 0x1F4 } + - { offsetInCU: 0xA93C, offset: 0x8AC43, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA3C8, symBinAddr: 0x45C84, symSize: 0x1C4 } + - { offsetInCU: 0xA9F8, offset: 0x8ACFF, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA58C, symBinAddr: 0x45E48, symSize: 0x340 } + - { offsetInCU: 0xAAEF, offset: 0x8ADF6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xA8CC, symBinAddr: 0x46188, symSize: 0x340 } + - { offsetInCU: 0xABD9, offset: 0x8AEE0, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xAC0C, symBinAddr: 0x464C8, symSize: 0x1DC } + - { offsetInCU: 0xAC7E, offset: 0x8AF85, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xADE8, symBinAddr: 0x466A4, symSize: 0x204 } + - { offsetInCU: 0xAD1C, offset: 0x8B023, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xAFEC, symBinAddr: 0x468A8, symSize: 0x4C } + - { offsetInCU: 0xADC8, offset: 0x8B0CF, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB038, symBinAddr: 0x468F4, symSize: 0x90 } + - { offsetInCU: 0xAE54, offset: 0x8B15B, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB0C8, symBinAddr: 0x46984, symSize: 0x40 } + - { offsetInCU: 0xAE91, offset: 0x8B198, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB108, symBinAddr: 0x469C4, symSize: 0x18 } + - { offsetInCU: 0xAEE3, offset: 0x8B1EA, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB120, symBinAddr: 0x469DC, symSize: 0x3C } + - { offsetInCU: 0xAF0C, offset: 0x8B213, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB15C, symBinAddr: 0x46A18, symSize: 0x1C } + - { offsetInCU: 0xAF4D, offset: 0x8B254, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xB848, symBinAddr: 0x47104, symSize: 0x8C } + - { offsetInCU: 0xAF61, offset: 0x8B268, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xB8D4, symBinAddr: 0x47190, symSize: 0x4C } + - { offsetInCU: 0xAF91, offset: 0x8B298, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xB920, symBinAddr: 0x471DC, symSize: 0x164 } + - { offsetInCU: 0xAFEE, offset: 0x8B2F5, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBA84, symBinAddr: 0x47340, symSize: 0xF0 } + - { offsetInCU: 0xB015, offset: 0x8B31C, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xBBD8, symBinAddr: 0x47494, symSize: 0x214 } + - { offsetInCU: 0xB04A, offset: 0x8B351, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xBDEC, symBinAddr: 0x476A8, symSize: 0x78 } + - { offsetInCU: 0xB05E, offset: 0x8B365, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xBE64, symBinAddr: 0x47720, symSize: 0x1C } + - { offsetInCU: 0xB072, offset: 0x8B379, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBE80, symBinAddr: 0x4773C, symSize: 0x1C } + - { offsetInCU: 0xB086, offset: 0x8B38D, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBE9C, symBinAddr: 0x47758, symSize: 0x1C } + - { offsetInCU: 0xB0BD, offset: 0x8B3C4, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xBEB8, symBinAddr: 0x47774, symSize: 0x104 } + - { offsetInCU: 0xB1BB, offset: 0x8B4C2, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBFBC, symBinAddr: 0x47878, symSize: 0x174 } + - { offsetInCU: 0xB2D1, offset: 0x8B5D8, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC130, symBinAddr: 0x479EC, symSize: 0x124 } + - { offsetInCU: 0xB3A5, offset: 0x8B6AC, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC254, symBinAddr: 0x47B10, symSize: 0x124 } + - { offsetInCU: 0xB4E4, offset: 0x8B7EB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xCCAC, symBinAddr: 0x48568, symSize: 0x14 } + - { offsetInCU: 0xB506, offset: 0x8B80D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xCCC0, symBinAddr: 0x4857C, symSize: 0xFC } + - { offsetInCU: 0xB5E0, offset: 0x8B8E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x10140, symBinAddr: 0x4B9FC, symSize: 0x7B0 } + - { offsetInCU: 0xBA67, offset: 0x8BD6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x109F4, symBinAddr: 0x4C2B0, symSize: 0x29B4 } + - { offsetInCU: 0xC1FB, offset: 0x8C502, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x134C8, symBinAddr: 0x4ED84, symSize: 0x488 } + - { offsetInCU: 0x95, offset: 0x8C922, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x5050C, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8C975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xF98, symBinAddr: 0x50558, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8C9A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xFBC, symBinAddr: 0x5057C, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8C9C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xFC8, symBinAddr: 0x50588, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8C9DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5F38, symBinAddr: 0x55468, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8CA75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1024, symBinAddr: 0x505E4, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8CAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1074, symBinAddr: 0x50634, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8CACF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x606C, symBinAddr: 0x5559C, symSize: 0x132C } + - { offsetInCU: 0x2D0, offset: 0x8CB5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x10C4, symBinAddr: 0x50684, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8CBB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x10DC, symBinAddr: 0x5069C, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8CC32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1108, symBinAddr: 0x506C8, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8CC67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1170, symBinAddr: 0x50730, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8CC98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1194, symBinAddr: 0x50754, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8CCB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11A0, symBinAddr: 0x50760, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8CCD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E7C, symBinAddr: 0x56994, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8CDC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11FC, symBinAddr: 0x507BC, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8CDF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x124C, symBinAddr: 0x5080C, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8CE1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8078, symBinAddr: 0x56B90, symSize: 0xF38 } + - { offsetInCU: 0x611, offset: 0x8CE9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x146C, symBinAddr: 0x50A2C, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8CECF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1498, symBinAddr: 0x50A58, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8CEEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1508, symBinAddr: 0x50AC8, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8CF20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1568, symBinAddr: 0x50B28, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8CF70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x158C, symBinAddr: 0x50B4C, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8CF8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1598, symBinAddr: 0x50B58, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8CFA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x918C, symBinAddr: 0x57CA4, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8D007, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15F4, symBinAddr: 0x50BB4, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8D03E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x163C, symBinAddr: 0x50BFC, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8D061, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x91E8, symBinAddr: 0x57D00, symSize: 0x220 } + - { offsetInCU: 0x838, offset: 0x8D0C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1684, symBinAddr: 0x50C44, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8D0FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x168C, symBinAddr: 0x50C4C, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8D12B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16B0, symBinAddr: 0x50C70, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8D147, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16BC, symBinAddr: 0x50C7C, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8D163, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9408, symBinAddr: 0x57F20, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8D2BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1718, symBinAddr: 0x50CD8, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8D2F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1778, symBinAddr: 0x50D38, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8D319, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x96F4, symBinAddr: 0x5820C, symSize: 0x538 } + - { offsetInCU: 0xB19, offset: 0x8D3A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x50D90, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8D426, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x17E8, symBinAddr: 0x50DA8, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8D509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x182C, symBinAddr: 0x50DEC, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8D58F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1894, symBinAddr: 0x50E54, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8D5E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18B8, symBinAddr: 0x50E78, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8D615, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18DC, symBinAddr: 0x50E9C, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8D631, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18E8, symBinAddr: 0x50EA8, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8D64D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9C2C, symBinAddr: 0x58744, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8D6DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1944, symBinAddr: 0x50F04, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8D712, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1970, symBinAddr: 0x50F30, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8D735, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9CE8, symBinAddr: 0x58800, symSize: 0x1A0 } + - { offsetInCU: 0xF18, offset: 0x8D7A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A18, symBinAddr: 0x50FD8, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8D7DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x51050, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8D80B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x51074, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8D827, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x51080, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8D843, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9E88, symBinAddr: 0x589A0, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8D93E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B1C, symBinAddr: 0x510DC, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8D975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B8C, symBinAddr: 0x5114C, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8D998, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA0D4, symBinAddr: 0x58BEC, symSize: 0x8C8 } + - { offsetInCU: 0x11A5, offset: 0x8DA32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1D78, symBinAddr: 0x51338, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8DA63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1DA4, symBinAddr: 0x51364, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8DA77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1DCC, symBinAddr: 0x5138C, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8DAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DD4, symBinAddr: 0x51394, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8DAFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1DF8, symBinAddr: 0x513B8, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8DB18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E04, symBinAddr: 0x513C4, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8DB34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAA68, symBinAddr: 0x59580, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8DBB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x51420, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8DBE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EB8, symBinAddr: 0x51478, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8DC0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAAC4, symBinAddr: 0x595DC, symSize: 0x760 } + - { offsetInCU: 0x1457, offset: 0x8DCE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D00, symBinAddr: 0x552B4, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8DD3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5D54, symBinAddr: 0x55308, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8DD90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5DD4, symBinAddr: 0x55388, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8DDC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5DDC, symBinAddr: 0x55390, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8DE45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5E3C, symBinAddr: 0x553F0, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8DE62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x20D0, symBinAddr: 0x51690, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8DE76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x20F0, symBinAddr: 0x516B0, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8DE8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x21E4, symBinAddr: 0x517A4, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8DE9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x2564, symBinAddr: 0x51B24, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8DEB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x31BC, symBinAddr: 0x5277C, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8DEE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x31EC, symBinAddr: 0x527AC, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8DEF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x3218, symBinAddr: 0x527D8, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8DF0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x3244, symBinAddr: 0x52804, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8DF1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x3270, symBinAddr: 0x52830, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8DF32, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x329C, symBinAddr: 0x5285C, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8DF46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x32A4, symBinAddr: 0x52864, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8DF5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x3664, symBinAddr: 0x52C24, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8DF6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x36C0, symBinAddr: 0x52C80, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8DF82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x37AC, symBinAddr: 0x52D6C, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8DF96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x37BC, symBinAddr: 0x52D7C, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8DFAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x37EC, symBinAddr: 0x52DAC, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8DFBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x38CC, symBinAddr: 0x52E8C, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8DFD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x3C04, symBinAddr: 0x531C4, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8DFE6, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4468, symBinAddr: 0x53A28, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8DFFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4470, symBinAddr: 0x53A30, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8E00E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x47D4, symBinAddr: 0x53D94, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8E022, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x4830, symBinAddr: 0x53DF0, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8E036, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x4914, symBinAddr: 0x53ED4, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8E04A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x4924, symBinAddr: 0x53EE4, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8E05E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x49C8, symBinAddr: 0x53F88, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8E072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x4B54, symBinAddr: 0x54114, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8E086, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4EFC, symBinAddr: 0x544BC, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8E09A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4F40, symBinAddr: 0x54500, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8E0AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x50BC, symBinAddr: 0x5467C, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8E0C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x5118, symBinAddr: 0x546D8, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8E0D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x51AC, symBinAddr: 0x5476C, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8E0EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x51BC, symBinAddr: 0x5477C, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8E0FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x5224, symBinAddr: 0x547E4, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8E112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x5300, symBinAddr: 0x548C0, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8E126, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x546C, symBinAddr: 0x54A2C, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8E13A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5498, symBinAddr: 0x54A58, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8E14E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x555C, symBinAddr: 0x54B1C, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8E162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x55B8, symBinAddr: 0x54B78, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8E176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x5634, symBinAddr: 0x54BF4, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8E18A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x5644, symBinAddr: 0x54C04, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8E19E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x568C, symBinAddr: 0x54C4C, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8E1B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x5770, symBinAddr: 0x54D30, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8E1C6, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5908, symBinAddr: 0x54EC8, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8E1DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x593C, symBinAddr: 0x54EFC, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8E1EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5A38, symBinAddr: 0x54FF8, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8E202, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x5A94, symBinAddr: 0x55054, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8E216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x5B10, symBinAddr: 0x550D0, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8E22A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x5B20, symBinAddr: 0x550E0, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8E23E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5B48, symBinAddr: 0x55108, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8E252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x5B84, symBinAddr: 0x55144, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8E266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x5BFC, symBinAddr: 0x551B0, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8E27A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5C40, symBinAddr: 0x551F4, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8E28E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x5C9C, symBinAddr: 0x55250, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8E2A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x5CF0, symBinAddr: 0x552A4, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8E2B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5E44, symBinAddr: 0x553F8, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8E2CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5E48, symBinAddr: 0x553FC, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8E2DE, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F10, symBinAddr: 0x55440, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8E2F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x7398, symBinAddr: 0x568C8, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8E306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x73DC, symBinAddr: 0x5690C, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8E31A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7E38, symBinAddr: 0x56950, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8E32E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x8FB0, symBinAddr: 0x57AC8, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8E342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x8FF4, symBinAddr: 0x57B0C, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8E356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x9038, symBinAddr: 0x57B50, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8E36A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x907C, symBinAddr: 0x57B94, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8E37E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x90C0, symBinAddr: 0x57BD8, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8E392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x9104, symBinAddr: 0x57C1C, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8E3A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x9148, symBinAddr: 0x57C60, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8E3BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA99C, symBinAddr: 0x594B4, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8E3CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xA9E0, symBinAddr: 0x594F8, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8E3E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xAA24, symBinAddr: 0x5953C, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8E3F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xB224, symBinAddr: 0x59D3C, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8E40A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB268, symBinAddr: 0x59D80, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8E41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xB2AC, symBinAddr: 0x59DC4, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8E432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xB334, symBinAddr: 0x59E4C, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8E446, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB378, symBinAddr: 0x59E90, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E45A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB3CC, symBinAddr: 0x59ED4, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E46E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB45C, symBinAddr: 0x59F64, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E482, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB518, symBinAddr: 0x5A020, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8E496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB520, symBinAddr: 0x5A028, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8E4AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB524, symBinAddr: 0x5A02C, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8E4BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB530, symBinAddr: 0x5A038, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8E4D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB540, symBinAddr: 0x5A048, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8E4E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB5D0, symBinAddr: 0x5A0D8, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8E4FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB68C, symBinAddr: 0x5A194, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8E50E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB690, symBinAddr: 0x5A198, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8E522, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB6A0, symBinAddr: 0x5A1A8, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8E536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB730, symBinAddr: 0x5A238, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8E54A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB7EC, symBinAddr: 0x5A2F4, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8E55E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB7F0, symBinAddr: 0x5A2F8, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8E572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB800, symBinAddr: 0x5A308, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8E586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB890, symBinAddr: 0x5A398, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8E59A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB94C, symBinAddr: 0x5A454, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8E5AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB950, symBinAddr: 0x5A458, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8E5C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB960, symBinAddr: 0x5A468, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8E5D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB9F0, symBinAddr: 0x5A4F8, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8E5EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xBAAC, symBinAddr: 0x5A5B4, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8E5FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBAB4, symBinAddr: 0x5A5BC, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8E612, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xBAB8, symBinAddr: 0x5A5C0, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8E626, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBAC0, symBinAddr: 0x5A5C8, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8E63A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xBAD0, symBinAddr: 0x5A5D8, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8E64E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xBB60, symBinAddr: 0x5A668, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8E662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBC1C, symBinAddr: 0x5A724, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8E676, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBC20, symBinAddr: 0x5A728, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8E68A, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBC30, symBinAddr: 0x5A738, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8E69E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xBC54, symBinAddr: 0x5A75C, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8E6B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xBC74, symBinAddr: 0x5A77C, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8E6C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xBCB4, symBinAddr: 0x5A7BC, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8E6DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBCC4, symBinAddr: 0x5A7CC, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8E6EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBCC8, symBinAddr: 0x5A7D0, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8E702, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBD0C, symBinAddr: 0x5A814, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8E716, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBD10, symBinAddr: 0x5A818, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8E72A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBD54, symBinAddr: 0x5A85C, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8E73E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBD58, symBinAddr: 0x5A860, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8E752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBD9C, symBinAddr: 0x5A8A4, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8E766, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBDA0, symBinAddr: 0x5A8A8, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8E77A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBDE4, symBinAddr: 0x5A8EC, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8E78E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBDE8, symBinAddr: 0x5A8F0, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8E7A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBE2C, symBinAddr: 0x5A934, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8E7B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBE30, symBinAddr: 0x5A938, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8E7CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBE74, symBinAddr: 0x5A97C, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8E7DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBE78, symBinAddr: 0x5A980, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8E7F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBEBC, symBinAddr: 0x5A9C4, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8E806, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBEC0, symBinAddr: 0x5A9C8, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8E81A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF04, symBinAddr: 0x5AA0C, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8E82E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF08, symBinAddr: 0x5AA10, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8E842, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF4C, symBinAddr: 0x5AA54, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8E856, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBF50, symBinAddr: 0x5AA58, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8E86A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF94, symBinAddr: 0x5AA9C, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8E87E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF98, symBinAddr: 0x5AAA0, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8E892, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFDC, symBinAddr: 0x5AAE4, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8E8A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBFE0, symBinAddr: 0x5AAE8, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8E8BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC024, symBinAddr: 0x5AB2C, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8E8CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC028, symBinAddr: 0x5AB30, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8E8E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC06C, symBinAddr: 0x5AB74, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8E8F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC070, symBinAddr: 0x5AB78, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8E90A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC0B4, symBinAddr: 0x5ABBC, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8E91E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC0B8, symBinAddr: 0x5ABC0, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8E932, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0FC, symBinAddr: 0x5AC04, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8E946, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC100, symBinAddr: 0x5AC08, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8E95A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC144, symBinAddr: 0x5AC4C, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8E96E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC148, symBinAddr: 0x5AC50, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8E982, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC18C, symBinAddr: 0x5AC94, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8E996, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC190, symBinAddr: 0x5AC98, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8E9AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xC1D4, symBinAddr: 0x5ACDC, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8E9BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xC218, symBinAddr: 0x5AD20, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8E9D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xC2A8, symBinAddr: 0x5ADB0, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8E9E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xC364, symBinAddr: 0x5AE6C, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8E9FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xC368, symBinAddr: 0x5AE70, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8EA0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC378, symBinAddr: 0x5AE80, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8EA22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC37C, symBinAddr: 0x5AE84, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8EA36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC3C0, symBinAddr: 0x5AEC8, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8EA4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC3C4, symBinAddr: 0x5AECC, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8EA5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC408, symBinAddr: 0x5AF10, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8EA72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC40C, symBinAddr: 0x5AF14, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8EAA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xFD4, symBinAddr: 0x50594, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8EABC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xFFC, symBinAddr: 0x505BC, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8EADE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11AC, symBinAddr: 0x5076C, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8EAFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11D4, symBinAddr: 0x50794, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8EB16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x129C, symBinAddr: 0x5085C, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8EB96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12A8, symBinAddr: 0x50868, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8EC18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x134C, symBinAddr: 0x5090C, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8EC56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x13CC, symBinAddr: 0x5098C, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8ECBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x15A4, symBinAddr: 0x50B64, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8ECD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x15CC, symBinAddr: 0x50B8C, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8ECFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x50C88, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8ED16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x16F0, symBinAddr: 0x50CB0, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8ED69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1854, symBinAddr: 0x50E14, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8EE0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x18F4, symBinAddr: 0x50EB4, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8EE27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x191C, symBinAddr: 0x50EDC, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8EE49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1ACC, symBinAddr: 0x5108C, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8EE65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x510B4, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8EEAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1BF4, symBinAddr: 0x511B4, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8EF82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1C7C, symBinAddr: 0x5123C, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8F000, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CDC, symBinAddr: 0x5129C, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8F052, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D1C, symBinAddr: 0x512DC, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8F0B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E10, symBinAddr: 0x513D0, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8F0D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1E38, symBinAddr: 0x513F8, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8F111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E00, symBinAddr: 0x553B4, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8F2A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x4F5C0, symSize: 0x17C } + - { offsetInCU: 0x2A47, offset: 0x8F2D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x17C, symBinAddr: 0x4F73C, symSize: 0x264 } + - { offsetInCU: 0x2A78, offset: 0x8F305, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x3E0, symBinAddr: 0x4F9A0, symSize: 0x190 } + - { offsetInCU: 0x2AA9, offset: 0x8F336, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x570, symBinAddr: 0x4FB30, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8F359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x60C, symBinAddr: 0x4FBCC, symSize: 0x268 } + - { offsetInCU: 0x2AFD, offset: 0x8F38A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x874, symBinAddr: 0x4FE34, symSize: 0x118 } + - { offsetInCU: 0x2B2E, offset: 0x8F3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x98C, symBinAddr: 0x4FF4C, symSize: 0x214 } + - { offsetInCU: 0x2B5F, offset: 0x8F3EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBA0, symBinAddr: 0x50160, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8F422, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC50, symBinAddr: 0x50210, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F464, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x502C0, symSize: 0x244 } + - { offsetInCU: 0x2DE8, offset: 0x8F675, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F08, symBinAddr: 0x514C8, symSize: 0x1B8 } + - { offsetInCU: 0x2E34, offset: 0x8F6C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x20C0, symBinAddr: 0x51680, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8F7A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5AFB0, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8F8E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5B01C, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8F8F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5B070, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8F908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5B0B4, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8F9E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5AFB0, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8FA03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5AFB8, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8FA35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5AFC0, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8FA49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5AFD0, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8FA6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5AFD4, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8FA7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5AFDC, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x8FAB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5AFE4, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x8FAD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5AFF4, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x8FAF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5AFF8, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x8FB09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5B000, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x8FB39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5B008, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x8FB5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5B018, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x8FBB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5B0C4, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x8FC04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5B0E8, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x8FD0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5B0C4, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x8FD72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5B108, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x8FDC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5B12C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x8FEC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5B108, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x8FF35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5B14C, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x8FF86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5B1AC, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x8FF9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5B1B4, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x8FFAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5B1F0, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x900B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5B14C, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x9011E, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5B268, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x90272, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5B5D0, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x90498, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5B268, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x906D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5B618, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x90724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5B63C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x9082A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5B618, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x9090C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA34, symBinAddr: 0x5C050, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x90928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA40, symBinAddr: 0x5C05C, symSize: 0x64 } + - { offsetInCU: 0xD5, offset: 0x90940, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA40, symBinAddr: 0x5C05C, symSize: 0x64 } + - { offsetInCU: 0xE6, offset: 0x90951, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x5C0C0, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x909E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xC78, symBinAddr: 0x5C294, symSize: 0xC } + - { offsetInCU: 0x191, offset: 0x909FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xC84, symBinAddr: 0x5C2A0, symSize: 0x2C } + - { offsetInCU: 0x1A9, offset: 0x90A14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xC84, symBinAddr: 0x5C2A0, symSize: 0x2C } + - { offsetInCU: 0x560, offset: 0x90DCB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x790, symBinAddr: 0x5BDAC, symSize: 0xC8 } + - { offsetInCU: 0x5D4, offset: 0x90E3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xCB0, symBinAddr: 0x5C2CC, symSize: 0x3EC } + - { offsetInCU: 0x7FD, offset: 0x91068, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x109C, symBinAddr: 0x5C6B8, symSize: 0x13C } + - { offsetInCU: 0xA1F, offset: 0x9128A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3344, symBinAddr: 0x5E8C0, symSize: 0x204 } + - { offsetInCU: 0xAD0, offset: 0x9133B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x35EC, symBinAddr: 0x5EB0C, symSize: 0x23C } + - { offsetInCU: 0xB35, offset: 0x913A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3828, symBinAddr: 0x5ED48, symSize: 0x238 } + - { offsetInCU: 0xC5D, offset: 0x914C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3A60, symBinAddr: 0x5EF80, symSize: 0x29C } + - { offsetInCU: 0xD9C, offset: 0x91607, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3CFC, symBinAddr: 0x5F21C, symSize: 0x188 } + - { offsetInCU: 0xDE2, offset: 0x9164D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E84, symBinAddr: 0x5F3A4, symSize: 0x43C } + - { offsetInCU: 0x1119, offset: 0x91984, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x42C0, symBinAddr: 0x5F7E0, symSize: 0xC4 } + - { offsetInCU: 0x125E, offset: 0x91AC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2DD0, symBinAddr: 0x5E3EC, symSize: 0x4 } + - { offsetInCU: 0x1272, offset: 0x91ADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2DD4, symBinAddr: 0x5E3F0, symSize: 0x44 } + - { offsetInCU: 0x1286, offset: 0x91AF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2E18, symBinAddr: 0x5E434, symSize: 0x4 } + - { offsetInCU: 0x129A, offset: 0x91B05, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2E1C, symBinAddr: 0x5E438, symSize: 0x4C } + - { offsetInCU: 0x12AE, offset: 0x91B19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x2EAC, symBinAddr: 0x5E484, symSize: 0x4 } + - { offsetInCU: 0x12C2, offset: 0x91B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x2EB0, symBinAddr: 0x5E488, symSize: 0x44 } + - { offsetInCU: 0x12D6, offset: 0x91B41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x2F04, symBinAddr: 0x5E4CC, symSize: 0x90 } + - { offsetInCU: 0x12EA, offset: 0x91B55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x2F94, symBinAddr: 0x5E55C, symSize: 0xBC } + - { offsetInCU: 0x12FE, offset: 0x91B69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x3050, symBinAddr: 0x5E618, symSize: 0x8 } + - { offsetInCU: 0x1312, offset: 0x91B7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x3058, symBinAddr: 0x5E620, symSize: 0x4 } + - { offsetInCU: 0x1326, offset: 0x91B91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x305C, symBinAddr: 0x5E624, symSize: 0x8 } + - { offsetInCU: 0x133A, offset: 0x91BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3064, symBinAddr: 0x5E62C, symSize: 0x10 } + - { offsetInCU: 0x134E, offset: 0x91BB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3074, symBinAddr: 0x5E63C, symSize: 0x90 } + - { offsetInCU: 0x1362, offset: 0x91BCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3104, symBinAddr: 0x5E6CC, symSize: 0xBC } + - { offsetInCU: 0x1376, offset: 0x91BE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x31C0, symBinAddr: 0x5E788, symSize: 0x8 } + - { offsetInCU: 0x138A, offset: 0x91BF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x31C8, symBinAddr: 0x5E790, symSize: 0x4 } + - { offsetInCU: 0x139E, offset: 0x91C09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x31CC, symBinAddr: 0x5E794, symSize: 0xC } + - { offsetInCU: 0x13B2, offset: 0x91C1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x31D8, symBinAddr: 0x5E7A0, symSize: 0x10 } + - { offsetInCU: 0x13C6, offset: 0x91C31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x31E8, symBinAddr: 0x5E7B0, symSize: 0x20 } + - { offsetInCU: 0x13DA, offset: 0x91C45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3210, symBinAddr: 0x5E7D0, symSize: 0xC } + - { offsetInCU: 0x13EE, offset: 0x91C59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x321C, symBinAddr: 0x5E7DC, symSize: 0x4 } + - { offsetInCU: 0x1402, offset: 0x91C6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3220, symBinAddr: 0x5E7E0, symSize: 0x44 } + - { offsetInCU: 0x1416, offset: 0x91C81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3264, symBinAddr: 0x5E824, symSize: 0xC } + - { offsetInCU: 0x142A, offset: 0x91C95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x3270, symBinAddr: 0x5E830, symSize: 0x4 } + - { offsetInCU: 0x143E, offset: 0x91CA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3274, symBinAddr: 0x5E834, symSize: 0x44 } + - { offsetInCU: 0x1452, offset: 0x91CBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x32B8, symBinAddr: 0x5E878, symSize: 0xC } + - { offsetInCU: 0x14C6, offset: 0x91D31, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x3548, symBinAddr: 0x5EAC4, symSize: 0x48 } + - { offsetInCU: 0x1525, offset: 0x91D90, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4384, symBinAddr: 0x5F8A4, symSize: 0x3C } + - { offsetInCU: 0x1539, offset: 0x91DA4, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x43C0, symBinAddr: 0x5F8E0, symSize: 0x24 } + - { offsetInCU: 0x154D, offset: 0x91DB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4418, symBinAddr: 0x5F928, symSize: 0x8 } + - { offsetInCU: 0x1561, offset: 0x91DCC, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4420, symBinAddr: 0x5F930, symSize: 0x10 } + - { offsetInCU: 0x1575, offset: 0x91DE0, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4430, symBinAddr: 0x5F940, symSize: 0x8 } + - { offsetInCU: 0x1589, offset: 0x91DF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4490, symBinAddr: 0x5F948, symSize: 0x8 } + - { offsetInCU: 0x159D, offset: 0x91E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x4544, symBinAddr: 0x5F9FC, symSize: 0x10 } + - { offsetInCU: 0x169B, offset: 0x91F06, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x154, symBinAddr: 0x5B770, symSize: 0x134 } + - { offsetInCU: 0x175C, offset: 0x91FC7, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x288, symBinAddr: 0x5B8A4, symSize: 0x11C } + - { offsetInCU: 0x181D, offset: 0x92088, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x3A4, symBinAddr: 0x5B9C0, symSize: 0x90 } + - { offsetInCU: 0x19FD, offset: 0x92268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x87C, symBinAddr: 0x5BE98, symSize: 0xC } + - { offsetInCU: 0x1A7D, offset: 0x922E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x888, symBinAddr: 0x5BEA4, symSize: 0x9C } + - { offsetInCU: 0x1AFF, offset: 0x9236A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x924, symBinAddr: 0x5BF40, symSize: 0x78 } + - { offsetInCU: 0x1B3D, offset: 0x923A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x99C, symBinAddr: 0x5BFB8, symSize: 0x98 } + - { offsetInCU: 0x1BA3, offset: 0x9240E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x5C16C, symSize: 0xC } + - { offsetInCU: 0x1C23, offset: 0x9248E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB5C, symBinAddr: 0x5C178, symSize: 0x6C } + - { offsetInCU: 0x1CD7, offset: 0x92542, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xBC8, symBinAddr: 0x5C1E4, symSize: 0x48 } + - { offsetInCU: 0x1D49, offset: 0x925B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC10, symBinAddr: 0x5C22C, symSize: 0x68 } + - { offsetInCU: 0x2136, offset: 0x929A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5B65C, symSize: 0x6C } + - { offsetInCU: 0x216D, offset: 0x929D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5B6C8, symSize: 0x28 } + - { offsetInCU: 0x218C, offset: 0x929F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5B6F0, symSize: 0x58 } + - { offsetInCU: 0x21BB, offset: 0x92A26, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x21D3, offset: 0x92A3E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x21E7, offset: 0x92A52, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x21FB, offset: 0x92A66, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x220F, offset: 0x92A7A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5B748, symSize: 0x4 } + - { offsetInCU: 0x222F, offset: 0x92A9A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x130, symBinAddr: 0x5B74C, symSize: 0x24 } + - { offsetInCU: 0x22DA, offset: 0x92B45, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x434, symBinAddr: 0x5BA50, symSize: 0xC4 } + - { offsetInCU: 0x248D, offset: 0x92CF8, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x24A5, offset: 0x92D10, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x24C5, offset: 0x92D30, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x24D9, offset: 0x92D44, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x24ED, offset: 0x92D58, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x2501, offset: 0x92D6C, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F8, symBinAddr: 0x5BB14, symSize: 0x48 } + - { offsetInCU: 0x25D5, offset: 0x92E40, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x540, symBinAddr: 0x5BB5C, symSize: 0x88 } + - { offsetInCU: 0x2692, offset: 0x92EFD, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x5C8, symBinAddr: 0x5BBE4, symSize: 0x80 } + - { offsetInCU: 0x272D, offset: 0x92F98, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x648, symBinAddr: 0x5BC64, symSize: 0xE4 } + - { offsetInCU: 0x2881, offset: 0x930EC, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x2899, offset: 0x93104, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x28AD, offset: 0x93118, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x28C1, offset: 0x9312C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x28D5, offset: 0x93140, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x72C, symBinAddr: 0x5BD48, symSize: 0x64 } + - { offsetInCU: 0x2952, offset: 0x931BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x858, symBinAddr: 0x5BE74, symSize: 0x24 } + - { offsetInCU: 0x29B4, offset: 0x9321F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xADC, symBinAddr: 0x5C0F8, symSize: 0x74 } + - { offsetInCU: 0x2A63, offset: 0x932CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x11D8, symBinAddr: 0x5C7F4, symSize: 0x938 } + - { offsetInCU: 0x3011, offset: 0x9387C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B10, symBinAddr: 0x5D12C, symSize: 0x654 } + - { offsetInCU: 0x3380, offset: 0x93BEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2164, symBinAddr: 0x5D780, symSize: 0x470 } + - { offsetInCU: 0x3549, offset: 0x93DB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x25D4, symBinAddr: 0x5DBF0, symSize: 0x5FC } + - { offsetInCU: 0x3A4C, offset: 0x942B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2BD0, symBinAddr: 0x5E1EC, symSize: 0x150 } + - { offsetInCU: 0x3B58, offset: 0x943C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2D20, symBinAddr: 0x5E33C, symSize: 0x2C } + - { offsetInCU: 0x3B91, offset: 0x943FC, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2DCC, symBinAddr: 0x5E3E8, symSize: 0x4 } + - { offsetInCU: 0x3BBE, offset: 0x94429, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3308, symBinAddr: 0x5E884, symSize: 0x14 } + - { offsetInCU: 0x3BEE, offset: 0x94459, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x331C, symBinAddr: 0x5E898, symSize: 0x14 } + - { offsetInCU: 0x3C1E, offset: 0x94489, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3330, symBinAddr: 0x5E8AC, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x9461E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x5FA18, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x94632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x5FBA0, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x94646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x5FC44, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x9465A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x5FDA0, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x9466E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x5FF88, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x94682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x60074, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x94696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x601FC, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x946AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x60294, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x946BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x6032C, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x946D2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x603B4, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x946E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x60408, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x946FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x6052C, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x9470E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x605B0, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x94722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x606A4, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x94736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x60804, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x9474A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x608E0, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x9475E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x60A28, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x94772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x60AC0, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x94786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x60B8C, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x94814, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x176C, symBinAddr: 0x61144, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x9486F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1784, symBinAddr: 0x6115C, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x948E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x61188, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x9491E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x611F8, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x9494F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1844, symBinAddr: 0x6121C, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x9496B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x61228, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x94987, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2ED4, symBinAddr: 0x627B0, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x94A41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18AC, symBinAddr: 0x61284, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x94A64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x61298, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x94AE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x61460, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x94B1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AD0, symBinAddr: 0x614A8, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x94B4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x614CC, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x94B67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x614D8, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x94B83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30BC, symBinAddr: 0x62998, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x94C33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B5C, symBinAddr: 0x61534, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x94C6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BA8, symBinAddr: 0x61580, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x94C8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3210, symBinAddr: 0x62AEC, symSize: 0x294 } + - { offsetInCU: 0x716, offset: 0x94CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23A4, symBinAddr: 0x61D7C, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x94D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23AC, symBinAddr: 0x61D84, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x94D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23D0, symBinAddr: 0x61DA8, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x94D73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23DC, symBinAddr: 0x61DB4, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x94D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x34A4, symBinAddr: 0x62D80, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x94EEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2438, symBinAddr: 0x61E10, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x94F0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x244C, symBinAddr: 0x61E24, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x94F32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2484, symBinAddr: 0x61E38, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x94F46, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24E8, symBinAddr: 0x61E7C, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x94F5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x25B0, symBinAddr: 0x61EFC, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x94F6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2638, symBinAddr: 0x61F40, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x94F82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x2764, symBinAddr: 0x6206C, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x94F96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x27B8, symBinAddr: 0x620B0, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x94FAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2848, symBinAddr: 0x62140, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x94FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2904, symBinAddr: 0x621FC, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x94FD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x290C, symBinAddr: 0x62204, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x94FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x2910, symBinAddr: 0x62208, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x94FFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2918, symBinAddr: 0x62210, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x9500E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2928, symBinAddr: 0x62220, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x95022, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x29B8, symBinAddr: 0x622B0, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x95036, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2A74, symBinAddr: 0x6236C, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x9504A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2A78, symBinAddr: 0x62370, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x9505E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2A88, symBinAddr: 0x62380, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x95072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2AB8, symBinAddr: 0x623B0, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x95086, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2AE8, symBinAddr: 0x623E0, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x9509A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2B44, symBinAddr: 0x6243C, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x950AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2BF4, symBinAddr: 0x624D0, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x950C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2C58, symBinAddr: 0x62534, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x950D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2CB4, symBinAddr: 0x62590, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x950EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2D14, symBinAddr: 0x625F0, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x950FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D24, symBinAddr: 0x62600, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x95112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D28, symBinAddr: 0x62604, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x95126, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D6C, symBinAddr: 0x62648, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x9513A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D70, symBinAddr: 0x6264C, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x9514E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DB4, symBinAddr: 0x62690, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x95162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DB8, symBinAddr: 0x62694, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x95176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DFC, symBinAddr: 0x626D8, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x9518A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E00, symBinAddr: 0x626DC, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x9519E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E44, symBinAddr: 0x62720, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x951B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E48, symBinAddr: 0x62724, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x951C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E8C, symBinAddr: 0x62768, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x951DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E90, symBinAddr: 0x6276C, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x951F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x37C0, symBinAddr: 0x6309C, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x9520D, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3804, symBinAddr: 0x630E0, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x95221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x38D0, symBinAddr: 0x631AC, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x95235, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3960, symBinAddr: 0x6323C, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x95249, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3A1C, symBinAddr: 0x632F8, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x9525D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3A20, symBinAddr: 0x632FC, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x95271, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3A30, symBinAddr: 0x6330C, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x95285, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3A34, symBinAddr: 0x63310, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x95299, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3A78, symBinAddr: 0x63354, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x952AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3A7C, symBinAddr: 0x63358, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x952C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3AC0, symBinAddr: 0x6339C, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x952D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3AC4, symBinAddr: 0x633A0, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x95303, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0x61234, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x9531F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1884, symBinAddr: 0x6125C, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x95341, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B0C, symBinAddr: 0x614E4, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x9535D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B34, symBinAddr: 0x6150C, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x9537F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23E8, symBinAddr: 0x61DC0, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x9539B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x61DE8, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x954A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x60C14, symSize: 0x200 } + - { offsetInCU: 0xF04, offset: 0x954DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x143C, symBinAddr: 0x60E14, symSize: 0x330 } + - { offsetInCU: 0xF7F, offset: 0x9555A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18D4, symBinAddr: 0x612AC, symSize: 0x1AC } + - { offsetInCU: 0xFCA, offset: 0x955A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1BE8, symBinAddr: 0x615C0, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x955C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1C90, symBinAddr: 0x61668, symSize: 0x264 } + - { offsetInCU: 0x1024, offset: 0x955FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1EF4, symBinAddr: 0x618CC, symSize: 0x424 } + - { offsetInCU: 0x27, offset: 0x95686, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x63404, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x95765, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x634EC, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x95779, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x6351C, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x9578D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x63544, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x957A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x63580, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x957B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x635EC, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x957C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x63630, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x957DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x63678, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x957F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x636B8, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x95900, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x63404, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x9591A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x63430, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x9594F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x63464, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x95963, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x63474, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x95984, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x63478, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x95998, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x634A4, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x959CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x634D8, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x959F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x634E8, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x95A43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x636C8, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x95AA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x63960, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x95ABF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x63968, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x95AD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x63968, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x95AF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x63850, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x95B08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x63854, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x95B3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x63980, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x95B50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x63A10, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x95B64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x63ACC, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x95B78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x63AD4, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x95B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x63AD8, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x95BA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x63AE0, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x95C10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0x438, symBinAddr: 0x63AF0, symSize: 0x13C } + - { offsetInCU: 0x421, offset: 0x95E3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x6382C, symSize: 0x24 } + - { offsetInCU: 0x515, offset: 0x95F31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x63898, symSize: 0x4C } + - { offsetInCU: 0x5ED, offset: 0x96009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x638E4, symSize: 0x34 } + - { offsetInCU: 0x669, offset: 0x96085, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x63918, symSize: 0x48 } + - { offsetInCU: 0x82E, offset: 0x9624A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x636C8, symSize: 0x14 } + - { offsetInCU: 0x84F, offset: 0x9626B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x636DC, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x96330, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63C2C, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x96381, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x63C50, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x96487, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63C2C, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x96517, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1A48, symBinAddr: 0x80EF0, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x96A7F, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x63CA4, symSize: 0x4C } + - { offsetInCU: 0x5CF, offset: 0x96A97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x63CF0, symSize: 0x4C } + - { offsetInCU: 0x72F, offset: 0x96BF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1624, symBinAddr: 0x65228, symSize: 0x8 } + - { offsetInCU: 0x743, offset: 0x96C0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x162C, symBinAddr: 0x65230, symSize: 0x8 } + - { offsetInCU: 0x757, offset: 0x96C1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1634, symBinAddr: 0x65238, symSize: 0x8 } + - { offsetInCU: 0x76B, offset: 0x96C33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x163C, symBinAddr: 0x65240, symSize: 0x8 } + - { offsetInCU: 0x77F, offset: 0x96C47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1644, symBinAddr: 0x65248, symSize: 0x8 } + - { offsetInCU: 0x793, offset: 0x96C5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x16A8, symBinAddr: 0x65250, symSize: 0x20 } + - { offsetInCU: 0x7A7, offset: 0x96C6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOb', symObjAddr: 0x16C8, symBinAddr: 0x65270, symSize: 0x48 } + - { offsetInCU: 0x7BB, offset: 0x96C83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOd', symObjAddr: 0x1710, symBinAddr: 0x652B8, symSize: 0x48 } + - { offsetInCU: 0x7CF, offset: 0x96C97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1894, symBinAddr: 0x6542C, symSize: 0x8 } + - { offsetInCU: 0x7E3, offset: 0x96CAB, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x189C, symBinAddr: 0x65434, symSize: 0x10 } + - { offsetInCU: 0x7F7, offset: 0x96CBF, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x18AC, symBinAddr: 0x65444, symSize: 0x8 } + - { offsetInCU: 0x840, offset: 0x96D08, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6544C, symSize: 0x10 } + - { offsetInCU: 0x85C, offset: 0x96D24, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6544C, symSize: 0x10 } + - { offsetInCU: 0x870, offset: 0x96D38, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x18B4, symBinAddr: 0x6544C, symSize: 0x10 } + - { offsetInCU: 0x8AF, offset: 0x96D77, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x63C70, symSize: 0x4 } + - { offsetInCU: 0x8CB, offset: 0x96D93, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x63C74, symSize: 0x4 } + - { offsetInCU: 0x8E7, offset: 0x96DAF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x63C78, symSize: 0x4 } + - { offsetInCU: 0x903, offset: 0x96DCB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x63C7C, symSize: 0x4 } + - { offsetInCU: 0x91F, offset: 0x96DE7, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x63C80, symSize: 0x4 } + - { offsetInCU: 0x93B, offset: 0x96E03, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x63C84, symSize: 0x4 } + - { offsetInCU: 0x957, offset: 0x96E1F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x63C88, symSize: 0x4 } + - { offsetInCU: 0x973, offset: 0x96E3B, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x63C8C, symSize: 0xC } + - { offsetInCU: 0x98F, offset: 0x96E57, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x63C98, symSize: 0xC } + - { offsetInCU: 0xBEF, offset: 0x970B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xCC, symBinAddr: 0x63D3C, symSize: 0x40 } + - { offsetInCU: 0xC9C, offset: 0x97164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x10C, symBinAddr: 0x63D7C, symSize: 0x458 } + - { offsetInCU: 0xF01, offset: 0x973C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x5C8, symBinAddr: 0x641F8, symSize: 0x5C } + - { offsetInCU: 0xF67, offset: 0x9742F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x624, symBinAddr: 0x64254, symSize: 0x5C } + - { offsetInCU: 0xFCD, offset: 0x97495, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x680, symBinAddr: 0x642B0, symSize: 0x5C } + - { offsetInCU: 0x1033, offset: 0x974FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x6DC, symBinAddr: 0x6430C, symSize: 0x5C } + - { offsetInCU: 0x1099, offset: 0x97561, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x738, symBinAddr: 0x64368, symSize: 0x5C } + - { offsetInCU: 0x1164, offset: 0x9762C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x794, symBinAddr: 0x643C4, symSize: 0x44 } + - { offsetInCU: 0x11CE, offset: 0x97696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7D8, symBinAddr: 0x64408, symSize: 0x10 } + - { offsetInCU: 0x1200, offset: 0x976C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x7D8, symBinAddr: 0x64408, symSize: 0x10 } + - { offsetInCU: 0x122F, offset: 0x976F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x7E8, symBinAddr: 0x64418, symSize: 0x54 } + - { offsetInCU: 0x12A6, offset: 0x9776E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x94C, symBinAddr: 0x6457C, symSize: 0x34 } + - { offsetInCU: 0x1309, offset: 0x977D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x980, symBinAddr: 0x645B0, symSize: 0x54 } + - { offsetInCU: 0x1380, offset: 0x97848, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0x9D4, symBinAddr: 0x64604, symSize: 0x4C } + - { offsetInCU: 0x140C, offset: 0x978D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA20, symBinAddr: 0x64650, symSize: 0x84 } + - { offsetInCU: 0x14A7, offset: 0x9796F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xAA4, symBinAddr: 0x646D4, symSize: 0x74 } + - { offsetInCU: 0x1556, offset: 0x97A1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xB18, symBinAddr: 0x64748, symSize: 0x84 } + - { offsetInCU: 0x15F1, offset: 0x97AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xB9C, symBinAddr: 0x647CC, symSize: 0x38 } + - { offsetInCU: 0x166E, offset: 0x97B36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xBD4, symBinAddr: 0x64804, symSize: 0x38 } + - { offsetInCU: 0x16EB, offset: 0x97BB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC0C, symBinAddr: 0x6483C, symSize: 0x38 } + - { offsetInCU: 0x176B, offset: 0x97C33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC44, symBinAddr: 0x64874, symSize: 0x38 } + - { offsetInCU: 0x17EB, offset: 0x97CB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC7C, symBinAddr: 0x648AC, symSize: 0x38 } + - { offsetInCU: 0x186B, offset: 0x97D33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCB4, symBinAddr: 0x648E4, symSize: 0x38 } + - { offsetInCU: 0x18EB, offset: 0x97DB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCEC, symBinAddr: 0x6491C, symSize: 0x38 } + - { offsetInCU: 0x196B, offset: 0x97E33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xD24, symBinAddr: 0x64954, symSize: 0x38 } + - { offsetInCU: 0x19CB, offset: 0x97E93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xD5C, symBinAddr: 0x6498C, symSize: 0x44 } + - { offsetInCU: 0x1A62, offset: 0x97F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xDA0, symBinAddr: 0x649D0, symSize: 0x13C } + - { offsetInCU: 0x1B33, offset: 0x97FFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xEDC, symBinAddr: 0x64B0C, symSize: 0xAC } + - { offsetInCU: 0x1C05, offset: 0x980CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0xF88, symBinAddr: 0x64BB8, symSize: 0x78 } + - { offsetInCU: 0x1C9B, offset: 0x98163, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1000, symBinAddr: 0x64C30, symSize: 0x84 } + - { offsetInCU: 0x1CBE, offset: 0x98186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1084, symBinAddr: 0x64CB4, symSize: 0x20 } + - { offsetInCU: 0x1D03, offset: 0x981CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x10D0, symBinAddr: 0x64CD4, symSize: 0x254 } + - { offsetInCU: 0x1DFE, offset: 0x982C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1324, symBinAddr: 0x64F28, symSize: 0x300 } +... diff --git a/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml new file mode 100644 index 0000000..d98067c --- /dev/null +++ b/IoTConnect2/framework_AZ/xcframeworks/IoTConnect2_az.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml @@ -0,0 +1,1621 @@ +--- +triple: 'x86_64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' +relocations: + - { offsetInCU: 0x34, offset: 0x5A510, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x75930, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5A545, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x75960, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x5A5AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x408C8, symBinAddr: 0x8C470, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x5A84A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB110, symBinAddr: 0xCE00, symSize: 0x1BD0 } + - { offsetInCU: 0x1CEF, offset: 0x5C24A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x1DB0, symSize: 0x40 } + - { offsetInCU: 0x1EE7, offset: 0x5C442, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1E40, symBinAddr: 0x3B70, symSize: 0x10 } + - { offsetInCU: 0x1EFB, offset: 0x5C456, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1E50, symBinAddr: 0x3B80, symSize: 0x30 } + - { offsetInCU: 0x1F0F, offset: 0x5C46A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1E80, symBinAddr: 0x3BB0, symSize: 0x220 } + - { offsetInCU: 0x238F, offset: 0x5C8EA, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x9E20, symBinAddr: 0xBB40, symSize: 0x10 } + - { offsetInCU: 0x23A3, offset: 0x5C8FE, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x9E30, symBinAddr: 0xBB50, symSize: 0x10 } + - { offsetInCU: 0x23B7, offset: 0x5C912, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x9E40, symBinAddr: 0xBB60, symSize: 0x20 } + - { offsetInCU: 0x23CB, offset: 0x5C926, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x9E60, symBinAddr: 0xBB80, symSize: 0x30 } + - { offsetInCU: 0x25F0, offset: 0x5CB4B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xA500, symBinAddr: 0xC1F0, symSize: 0x20 } + - { offsetInCU: 0x2604, offset: 0x5CB5F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xA520, symBinAddr: 0xC210, symSize: 0x20 } + - { offsetInCU: 0x2618, offset: 0x5CB73, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xA570, symBinAddr: 0xC260, symSize: 0x20 } + - { offsetInCU: 0x262C, offset: 0x5CB87, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xA590, symBinAddr: 0xC280, symSize: 0x20 } + - { offsetInCU: 0x2695, offset: 0x5CBF0, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xA990, symBinAddr: 0xC680, symSize: 0x50 } + - { offsetInCU: 0x2D0A, offset: 0x5D265, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetWOc', symObjAddr: 0xCE80, symBinAddr: 0xEB70, symSize: 0x40 } + - { offsetInCU: 0x2D1E, offset: 0x5D279, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xCEC0, symBinAddr: 0xEBB0, symSize: 0x40 } + - { offsetInCU: 0x2D32, offset: 0x5D28D, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xCF00, symBinAddr: 0xEBF0, symSize: 0x30 } + - { offsetInCU: 0x2D46, offset: 0x5D2A1, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xCF30, symBinAddr: 0xEC20, symSize: 0x20 } + - { offsetInCU: 0x2D5A, offset: 0x5D2B5, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xCF50, symBinAddr: 0xEC40, symSize: 0x30 } + - { offsetInCU: 0x2D6E, offset: 0x5D2C9, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xCFD0, symBinAddr: 0xECC0, symSize: 0x30 } + - { offsetInCU: 0x2D82, offset: 0x5D2DD, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD190, symBinAddr: 0xEE80, symSize: 0x20 } + - { offsetInCU: 0x2D96, offset: 0x5D2F1, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD1B0, symBinAddr: 0xEEA0, symSize: 0x20 } + - { offsetInCU: 0x2DAA, offset: 0x5D305, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xD1D0, symBinAddr: 0xEEC0, symSize: 0x50 } + - { offsetInCU: 0x2DBE, offset: 0x5D319, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xD220, symBinAddr: 0xEF10, symSize: 0x180 } + - { offsetInCU: 0x2DD2, offset: 0x5D32D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xD3A0, symBinAddr: 0xF090, symSize: 0x2D0 } + - { offsetInCU: 0x2DE6, offset: 0x5D341, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xD670, symBinAddr: 0xF360, symSize: 0x70 } + - { offsetInCU: 0x2DFA, offset: 0x5D355, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xD6E0, symBinAddr: 0xF3D0, symSize: 0x30 } + - { offsetInCU: 0x2E0E, offset: 0x5D369, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xD710, symBinAddr: 0xF400, symSize: 0xD0 } + - { offsetInCU: 0x2E22, offset: 0x5D37D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xD7E0, symBinAddr: 0xF4D0, symSize: 0xB0 } + - { offsetInCU: 0x2E36, offset: 0x5D391, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xD890, symBinAddr: 0xF580, symSize: 0x20 } + - { offsetInCU: 0x2E4A, offset: 0x5D3A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xD8B0, symBinAddr: 0xF5A0, symSize: 0x30 } + - { offsetInCU: 0x2E5E, offset: 0x5D3B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xD910, symBinAddr: 0xF600, symSize: 0x50 } + - { offsetInCU: 0x2E72, offset: 0x5D3CD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xDA00, symBinAddr: 0xF6F0, symSize: 0x20 } + - { offsetInCU: 0x2E86, offset: 0x5D3E1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xDA20, symBinAddr: 0xF710, symSize: 0x20 } + - { offsetInCU: 0x2E9A, offset: 0x5D3F5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xDA40, symBinAddr: 0xF730, symSize: 0x20 } + - { offsetInCU: 0x2EAE, offset: 0x5D409, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xDA60, symBinAddr: 0xF750, symSize: 0x20 } + - { offsetInCU: 0x2EC2, offset: 0x5D41D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xDA80, symBinAddr: 0xF770, symSize: 0x20 } + - { offsetInCU: 0x2ED6, offset: 0x5D431, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xDAA0, symBinAddr: 0xF790, symSize: 0x20 } + - { offsetInCU: 0x2EEA, offset: 0x5D445, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xDAC0, symBinAddr: 0xF7B0, symSize: 0x20 } + - { offsetInCU: 0x3234, offset: 0x5D78F, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x82D0, symBinAddr: 0xA000, symSize: 0x70 } + - { offsetInCU: 0x3348, offset: 0x5D8A3, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x9EB0, symBinAddr: 0xBBD0, symSize: 0x80 } + - { offsetInCU: 0x33D9, offset: 0x5D934, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x9F30, symBinAddr: 0xBC50, symSize: 0x80 } + - { offsetInCU: 0x3479, offset: 0x5D9D4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9FB0, symBinAddr: 0xBCD0, symSize: 0x10 } + - { offsetInCU: 0x34B7, offset: 0x5DA12, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x9FD0, symBinAddr: 0xBCF0, symSize: 0x10 } + - { offsetInCU: 0x351A, offset: 0x5DA75, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x9FE0, symBinAddr: 0xBD00, symSize: 0x10 } + - { offsetInCU: 0x35CB, offset: 0x5DB26, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x9FF0, symBinAddr: 0xBD10, symSize: 0x10 } + - { offsetInCU: 0x3674, offset: 0x5DBCF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA000, symBinAddr: 0xBD20, symSize: 0x10 } + - { offsetInCU: 0x371B, offset: 0x5DC76, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA010, symBinAddr: 0xBD30, symSize: 0x30 } + - { offsetInCU: 0x388F, offset: 0x5DDEA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA040, symBinAddr: 0xBD60, symSize: 0x30 } + - { offsetInCU: 0x3996, offset: 0x5DEF1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA070, symBinAddr: 0xBD90, symSize: 0x20 } + - { offsetInCU: 0x3A82, offset: 0x5DFDD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA090, symBinAddr: 0xBDB0, symSize: 0x10 } + - { offsetInCU: 0x3AC0, offset: 0x5E01B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA0A0, symBinAddr: 0xBDC0, symSize: 0x10 } + - { offsetInCU: 0x3AFE, offset: 0x5E059, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA0B0, symBinAddr: 0xBDD0, symSize: 0x10 } + - { offsetInCU: 0x3B55, offset: 0x5E0B0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA0C0, symBinAddr: 0xBDE0, symSize: 0x10 } + - { offsetInCU: 0x3C08, offset: 0x5E163, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA0D0, symBinAddr: 0xBDF0, symSize: 0x20 } + - { offsetInCU: 0x3C89, offset: 0x5E1E4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA0F0, symBinAddr: 0xBE10, symSize: 0x10 } + - { offsetInCU: 0x3D4B, offset: 0x5E2A6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA100, symBinAddr: 0xBE20, symSize: 0x20 } + - { offsetInCU: 0x3DE5, offset: 0x5E340, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA120, symBinAddr: 0xBE40, symSize: 0x10 } + - { offsetInCU: 0x3E4D, offset: 0x5E3A8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA130, symBinAddr: 0xBE50, symSize: 0x20 } + - { offsetInCU: 0x3E69, offset: 0x5E3C4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA150, symBinAddr: 0xBE70, symSize: 0x10 } + - { offsetInCU: 0x3EE5, offset: 0x5E440, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA180, symBinAddr: 0xBEA0, symSize: 0x10 } + - { offsetInCU: 0x3F01, offset: 0x5E45C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA190, symBinAddr: 0xBEB0, symSize: 0x10 } + - { offsetInCU: 0x3F32, offset: 0x5E48D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA1A0, symBinAddr: 0xBEC0, symSize: 0x10 } + - { offsetInCU: 0x3F63, offset: 0x5E4BE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA1B0, symBinAddr: 0xBED0, symSize: 0x10 } + - { offsetInCU: 0x3F94, offset: 0x5E4EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA1C0, symBinAddr: 0xBEE0, symSize: 0x30 } + - { offsetInCU: 0x3FC3, offset: 0x5E51E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA1F0, symBinAddr: 0xBF10, symSize: 0x30 } + - { offsetInCU: 0x3FF4, offset: 0x5E54F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA220, symBinAddr: 0xBF40, symSize: 0x30 } + - { offsetInCU: 0x4025, offset: 0x5E580, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA250, symBinAddr: 0xBF70, symSize: 0x10 } + - { offsetInCU: 0x4056, offset: 0x5E5B1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA260, symBinAddr: 0xBF80, symSize: 0x10 } + - { offsetInCU: 0x4087, offset: 0x5E5E2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA270, symBinAddr: 0xBF90, symSize: 0x10 } + - { offsetInCU: 0x40B8, offset: 0x5E613, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA280, symBinAddr: 0xBFA0, symSize: 0x20 } + - { offsetInCU: 0x40E9, offset: 0x5E644, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA2A0, symBinAddr: 0xBFC0, symSize: 0x20 } + - { offsetInCU: 0x411A, offset: 0x5E675, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA2C0, symBinAddr: 0xBFE0, symSize: 0x10 } + - { offsetInCU: 0x414B, offset: 0x5E6A6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA2D0, symBinAddr: 0xBFF0, symSize: 0x20 } + - { offsetInCU: 0x417C, offset: 0x5E6D7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA2F0, symBinAddr: 0xC010, symSize: 0x10 } + - { offsetInCU: 0x41AD, offset: 0x5E708, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA300, symBinAddr: 0xC020, symSize: 0x20 } + - { offsetInCU: 0x41C9, offset: 0x5E724, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA320, symBinAddr: 0xC040, symSize: 0x10 } + - { offsetInCU: 0x4219, offset: 0x5E774, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA350, symBinAddr: 0xC070, symSize: 0x30 } + - { offsetInCU: 0x42A1, offset: 0x5E7FC, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA380, symBinAddr: 0xC0A0, symSize: 0x60 } + - { offsetInCU: 0x4325, offset: 0x5E880, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA440, symBinAddr: 0xC160, symSize: 0x10 } + - { offsetInCU: 0x4341, offset: 0x5E89C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA450, symBinAddr: 0xC170, symSize: 0x10 } + - { offsetInCU: 0x436C, offset: 0x5E8C7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xA460, symBinAddr: 0xC180, symSize: 0x40 } + - { offsetInCU: 0x43FA, offset: 0x5E955, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xA4D0, symBinAddr: 0xC1C0, symSize: 0x30 } + - { offsetInCU: 0x442B, offset: 0x5E986, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA5B0, symBinAddr: 0xC2A0, symSize: 0x10 } + - { offsetInCU: 0x4462, offset: 0x5E9BD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xA5C0, symBinAddr: 0xC2B0, symSize: 0x30 } + - { offsetInCU: 0x44A2, offset: 0x5E9FD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA5F0, symBinAddr: 0xC2E0, symSize: 0x80 } + - { offsetInCU: 0x4564, offset: 0x5EABF, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xA700, symBinAddr: 0xC3F0, symSize: 0x70 } + - { offsetInCU: 0x45AC, offset: 0x5EB07, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0xAD90, symBinAddr: 0xCA80, symSize: 0xB0 } + - { offsetInCU: 0x4684, offset: 0x5EBDF, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xAE40, symBinAddr: 0xCB30, symSize: 0x190 } + - { offsetInCU: 0x4921, offset: 0x5EE7C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xCCE0, symBinAddr: 0xE9D0, symSize: 0xD0 } + - { offsetInCU: 0x4A83, offset: 0x5EFDE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xCDB0, symBinAddr: 0xEAA0, symSize: 0xD0 } + - { offsetInCU: 0x4D3C, offset: 0x5F297, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA6A0, symBinAddr: 0xC390, symSize: 0x40 } + - { offsetInCU: 0x4D65, offset: 0x5F2C0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA6E0, symBinAddr: 0xC3D0, symSize: 0x20 } + - { offsetInCU: 0x4DA0, offset: 0x5F2FB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xA680, symBinAddr: 0xC370, symSize: 0x10 } + - { offsetInCU: 0x4DBC, offset: 0x5F317, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xA690, symBinAddr: 0xC380, symSize: 0x10 } + - { offsetInCU: 0x4DEA, offset: 0x5F345, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xA670, symBinAddr: 0xC360, symSize: 0x10 } + - { offsetInCU: 0x4EC2, offset: 0x5F41D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x9FC0, symBinAddr: 0xBCE0, symSize: 0x10 } + - { offsetInCU: 0x4EE5, offset: 0x5F440, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA160, symBinAddr: 0xBE80, symSize: 0x10 } + - { offsetInCU: 0x4F01, offset: 0x5F45C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA170, symBinAddr: 0xBE90, symSize: 0x10 } + - { offsetInCU: 0x4F67, offset: 0x5F4C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xC0, symBinAddr: 0x1DF0, symSize: 0x40 } + - { offsetInCU: 0x4F7B, offset: 0x5F4D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x1E30, symSize: 0x10 } + - { offsetInCU: 0x4FA3, offset: 0x5F4FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x110, symBinAddr: 0x1E40, symSize: 0x320 } + - { offsetInCU: 0x50D9, offset: 0x5F634, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x430, symBinAddr: 0x2160, symSize: 0x1390 } + - { offsetInCU: 0x53EF, offset: 0x5F94A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x17C0, symBinAddr: 0x34F0, symSize: 0x660 } + - { offsetInCU: 0x5466, offset: 0x5F9C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1E20, symBinAddr: 0x3B50, symSize: 0x20 } + - { offsetInCU: 0x5490, offset: 0x5F9EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x20A0, symBinAddr: 0x3DD0, symSize: 0x310 } + - { offsetInCU: 0x55C2, offset: 0x5FB1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x23B0, symBinAddr: 0x40E0, symSize: 0x480 } + - { offsetInCU: 0x586B, offset: 0x5FDC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2830, symBinAddr: 0x4560, symSize: 0x910 } + - { offsetInCU: 0x5DFF, offset: 0x6035A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3140, symBinAddr: 0x4E70, symSize: 0x620 } + - { offsetInCU: 0x61E2, offset: 0x6073D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3760, symBinAddr: 0x5490, symSize: 0x4B70 } + - { offsetInCU: 0x7232, offset: 0x6178D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8350, symBinAddr: 0xA070, symSize: 0x190 } + - { offsetInCU: 0x72FB, offset: 0x61856, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x84E0, symBinAddr: 0xA200, symSize: 0x3B0 } + - { offsetInCU: 0x755F, offset: 0x61ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8890, symBinAddr: 0xA5B0, symSize: 0x480 } + - { offsetInCU: 0x78E3, offset: 0x61E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8D10, symBinAddr: 0xAA30, symSize: 0x330 } + - { offsetInCU: 0x7A88, offset: 0x61FE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x9300, symBinAddr: 0xB020, symSize: 0x380 } + - { offsetInCU: 0x7BAB, offset: 0x62106, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x9680, symBinAddr: 0xB3A0, symSize: 0x560 } + - { offsetInCU: 0x7E1E, offset: 0x62379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x9BE0, symBinAddr: 0xB900, symSize: 0x1C0 } + - { offsetInCU: 0x8122, offset: 0x6267D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xA770, symBinAddr: 0xC460, symSize: 0x220 } + - { offsetInCU: 0x81BB, offset: 0x62716, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xAB30, symBinAddr: 0xC820, symSize: 0x260 } + - { offsetInCU: 0x27, offset: 0x62A29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xF800, symSize: 0x20 } + - { offsetInCU: 0x62, offset: 0x62A64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0xF820, symSize: 0x14 } + - { offsetInCU: 0x149, offset: 0x62B4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xF800, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x62BB6, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0xF870, symSize: 0x10 } + - { offsetInCU: 0x57, offset: 0x62BCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0xF8B0, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x62C3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x150, symBinAddr: 0xF990, symSize: 0x10 } + - { offsetInCU: 0x11C, offset: 0x62C8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x170, symBinAddr: 0xF9B0, symSize: 0x20 } + - { offsetInCU: 0x196, offset: 0x62D09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0xF9E0, symSize: 0x10 } + - { offsetInCU: 0x1CB, offset: 0x62D3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B0, symBinAddr: 0xF9F0, symSize: 0x20 } + - { offsetInCU: 0x1FC, offset: 0x62D6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D0, symBinAddr: 0xFA10, symSize: 0x10 } + - { offsetInCU: 0x218, offset: 0x62D8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E0, symBinAddr: 0xFA20, symSize: 0x10 } + - { offsetInCU: 0x234, offset: 0x62DA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x25B0, symBinAddr: 0x11DF0, symSize: 0x370 } + - { offsetInCU: 0x3E4, offset: 0x62F57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1520, symBinAddr: 0x10D60, symSize: 0x50 } + - { offsetInCU: 0x41B, offset: 0x62F8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1570, symBinAddr: 0x10DB0, symSize: 0x50 } + - { offsetInCU: 0x43E, offset: 0x62FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2920, symBinAddr: 0x12160, symSize: 0x14F0 } + - { offsetInCU: 0x49C, offset: 0x6300F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C0, symBinAddr: 0x10E00, symSize: 0x10 } + - { offsetInCU: 0x4F4, offset: 0x63067, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x15D0, symBinAddr: 0x10E10, symSize: 0x30 } + - { offsetInCU: 0x5D8, offset: 0x6314B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1600, symBinAddr: 0x10E40, symSize: 0x20 } + - { offsetInCU: 0x64A, offset: 0x631BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1650, symBinAddr: 0x10E90, symSize: 0x20 } + - { offsetInCU: 0x699, offset: 0x6320C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1670, symBinAddr: 0x10EB0, symSize: 0x70 } + - { offsetInCU: 0x6F3, offset: 0x63266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x10F20, symSize: 0x10 } + - { offsetInCU: 0x70F, offset: 0x63282, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x10F30, symSize: 0x10 } + - { offsetInCU: 0x74C, offset: 0x632BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x10F80, symSize: 0x50 } + - { offsetInCU: 0x783, offset: 0x632F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x10FD0, symSize: 0x50 } + - { offsetInCU: 0x7A6, offset: 0x63319, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3E10, symBinAddr: 0x13650, symSize: 0x3A0 } + - { offsetInCU: 0x841, offset: 0x633B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x11040, symSize: 0x70 } + - { offsetInCU: 0x876, offset: 0x633E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1870, symBinAddr: 0x110B0, symSize: 0x20 } + - { offsetInCU: 0x8A7, offset: 0x6341A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1890, symBinAddr: 0x110D0, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x63436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18A0, symBinAddr: 0x110E0, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6630, symBinAddr: 0x15E20, symSize: 0x170 } + - { offsetInCU: 0x9A8, offset: 0x6351B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x11130, symSize: 0x50 } + - { offsetInCU: 0x9DF, offset: 0x63552, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1940, symBinAddr: 0x11180, symSize: 0x50 } + - { offsetInCU: 0xA02, offset: 0x63575, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x67A0, symBinAddr: 0x15F90, symSize: 0x320 } + - { offsetInCU: 0xA71, offset: 0x635E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x19B0, symBinAddr: 0x111F0, symSize: 0x70 } + - { offsetInCU: 0xAA6, offset: 0x63619, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x11260, symSize: 0x20 } + - { offsetInCU: 0xAD7, offset: 0x6364A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x11280, symSize: 0x10 } + - { offsetInCU: 0xAF3, offset: 0x63666, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x11290, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x63682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6AC0, symBinAddr: 0x162B0, symSize: 0x130 } + - { offsetInCU: 0xBBF, offset: 0x63732, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x112E0, symSize: 0x40 } + - { offsetInCU: 0xBF6, offset: 0x63769, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AE0, symBinAddr: 0x11320, symSize: 0x40 } + - { offsetInCU: 0xC19, offset: 0x6378C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6BF0, symBinAddr: 0x163E0, symSize: 0x310 } + - { offsetInCU: 0xC7C, offset: 0x637EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B40, symBinAddr: 0x11380, symSize: 0x60 } + - { offsetInCU: 0xCB1, offset: 0x63824, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x113E0, symSize: 0x20 } + - { offsetInCU: 0xCE2, offset: 0x63855, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC0, symBinAddr: 0x11400, symSize: 0x10 } + - { offsetInCU: 0xCFE, offset: 0x63871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x11410, symSize: 0x10 } + - { offsetInCU: 0xD1A, offset: 0x6388D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6F00, symBinAddr: 0x166F0, symSize: 0x130 } + - { offsetInCU: 0xDCA, offset: 0x6393D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C20, symBinAddr: 0x11460, symSize: 0x50 } + - { offsetInCU: 0xE01, offset: 0x63974, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C70, symBinAddr: 0x114B0, symSize: 0x50 } + - { offsetInCU: 0xE24, offset: 0x63997, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7030, symBinAddr: 0x16820, symSize: 0x580 } + - { offsetInCU: 0xE93, offset: 0x63A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0x11520, symSize: 0x90 } + - { offsetInCU: 0xEC8, offset: 0x63A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D70, symBinAddr: 0x115B0, symSize: 0x20 } + - { offsetInCU: 0xEF9, offset: 0x63A6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D90, symBinAddr: 0x115D0, symSize: 0x10 } + - { offsetInCU: 0xF15, offset: 0x63A88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DA0, symBinAddr: 0x115E0, symSize: 0x10 } + - { offsetInCU: 0xF31, offset: 0x63AA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7640, symBinAddr: 0x16E30, symSize: 0x220 } + - { offsetInCU: 0x1045, offset: 0x63BB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DF0, symBinAddr: 0x11630, symSize: 0x60 } + - { offsetInCU: 0x107C, offset: 0x63BEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E50, symBinAddr: 0x11690, symSize: 0x70 } + - { offsetInCU: 0x109F, offset: 0x63C12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7860, symBinAddr: 0x17050, symSize: 0x660 } + - { offsetInCU: 0x112C, offset: 0x63C9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1EC0, symBinAddr: 0x11700, symSize: 0x10 } + - { offsetInCU: 0x11A4, offset: 0x63D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1ED0, symBinAddr: 0x11710, symSize: 0x40 } + - { offsetInCU: 0x1288, offset: 0x63DFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1F10, symBinAddr: 0x11750, symSize: 0x20 } + - { offsetInCU: 0x130E, offset: 0x63E81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F70, symBinAddr: 0x117B0, symSize: 0x30 } + - { offsetInCU: 0x1358, offset: 0x63ECB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FA0, symBinAddr: 0x117E0, symSize: 0x20 } + - { offsetInCU: 0x1389, offset: 0x63EFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FC0, symBinAddr: 0x11800, symSize: 0x10 } + - { offsetInCU: 0x13A5, offset: 0x63F18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FD0, symBinAddr: 0x11810, symSize: 0x10 } + - { offsetInCU: 0x13C1, offset: 0x63F34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7EF0, symBinAddr: 0x176E0, symSize: 0xB0 } + - { offsetInCU: 0x143F, offset: 0x63FB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2020, symBinAddr: 0x11860, symSize: 0x30 } + - { offsetInCU: 0x1476, offset: 0x63FE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2050, symBinAddr: 0x11890, symSize: 0x20 } + - { offsetInCU: 0x1499, offset: 0x6400C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x17790, symSize: 0x180 } + - { offsetInCU: 0x1514, offset: 0x64087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x2090, symBinAddr: 0x118D0, symSize: 0x80 } + - { offsetInCU: 0x1549, offset: 0x640BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2110, symBinAddr: 0x11950, symSize: 0x20 } + - { offsetInCU: 0x157A, offset: 0x640ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x2130, symBinAddr: 0x11970, symSize: 0x10 } + - { offsetInCU: 0x1596, offset: 0x64109, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x11980, symSize: 0x10 } + - { offsetInCU: 0x15B2, offset: 0x64125, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x8150, symBinAddr: 0x17940, symSize: 0x1F0 } + - { offsetInCU: 0x16AD, offset: 0x64220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2190, symBinAddr: 0x119D0, symSize: 0x50 } + - { offsetInCU: 0x16E4, offset: 0x64257, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21E0, symBinAddr: 0x11A20, symSize: 0x50 } + - { offsetInCU: 0x1707, offset: 0x6427A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x17B30, symSize: 0x3A0 } + - { offsetInCU: 0x176A, offset: 0x642DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2250, symBinAddr: 0x11A90, symSize: 0x80 } + - { offsetInCU: 0x179F, offset: 0x64312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x22D0, symBinAddr: 0x11B10, symSize: 0x20 } + - { offsetInCU: 0x17D0, offset: 0x64343, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22F0, symBinAddr: 0x11B30, symSize: 0x10 } + - { offsetInCU: 0x17EC, offset: 0x6435F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2300, symBinAddr: 0x11B40, symSize: 0x10 } + - { offsetInCU: 0x1808, offset: 0x6437B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x86E0, symBinAddr: 0x17ED0, symSize: 0x1A0 } + - { offsetInCU: 0x18EA, offset: 0x6445D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2350, symBinAddr: 0x11B90, symSize: 0x50 } + - { offsetInCU: 0x1921, offset: 0x64494, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A0, symBinAddr: 0x11BE0, symSize: 0x50 } + - { offsetInCU: 0x1944, offset: 0x644B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8880, symBinAddr: 0x18070, symSize: 0x3D0 } + - { offsetInCU: 0x19C7, offset: 0x6453A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x11CD0, symSize: 0x20 } + - { offsetInCU: 0x1A11, offset: 0x64584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24B0, symBinAddr: 0x11CF0, symSize: 0x20 } + - { offsetInCU: 0x1A42, offset: 0x645B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24D0, symBinAddr: 0x11D10, symSize: 0x10 } + - { offsetInCU: 0x1A5E, offset: 0x645D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24E0, symBinAddr: 0x11D20, symSize: 0x10 } + - { offsetInCU: 0x1A7A, offset: 0x645ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8CB0, symBinAddr: 0x184A0, symSize: 0xF0 } + - { offsetInCU: 0x1B11, offset: 0x64684, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2530, symBinAddr: 0x11D70, symSize: 0x40 } + - { offsetInCU: 0x1B48, offset: 0x646BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2570, symBinAddr: 0x11DB0, symSize: 0x40 } + - { offsetInCU: 0x1B6B, offset: 0x646DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DA0, symBinAddr: 0x18590, symSize: 0x1C0 } + - { offsetInCU: 0x1BA8, offset: 0x6471B, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x41F0, symBinAddr: 0x139F0, symSize: 0x30 } + - { offsetInCU: 0x1BBC, offset: 0x6472F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x4220, symBinAddr: 0x13A20, symSize: 0x30 } + - { offsetInCU: 0x1BD0, offset: 0x64743, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x4250, symBinAddr: 0x13A50, symSize: 0x30 } + - { offsetInCU: 0x1BE4, offset: 0x64757, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x4280, symBinAddr: 0x13A80, symSize: 0x30 } + - { offsetInCU: 0x1BF8, offset: 0x6476B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x42B0, symBinAddr: 0x13AB0, symSize: 0x30 } + - { offsetInCU: 0x1C0C, offset: 0x6477F, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x42E0, symBinAddr: 0x13AE0, symSize: 0x10 } + - { offsetInCU: 0x1C20, offset: 0x64793, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4300, symBinAddr: 0x13AF0, symSize: 0x50 } + - { offsetInCU: 0x1C34, offset: 0x647A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4350, symBinAddr: 0x13B40, symSize: 0xA0 } + - { offsetInCU: 0x1C48, offset: 0x647BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x43F0, symBinAddr: 0x13BE0, symSize: 0x10 } + - { offsetInCU: 0x1C5C, offset: 0x647CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4400, symBinAddr: 0x13BF0, symSize: 0x10 } + - { offsetInCU: 0x1C70, offset: 0x647E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4410, symBinAddr: 0x13C00, symSize: 0x10 } + - { offsetInCU: 0x1C84, offset: 0x647F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4420, symBinAddr: 0x13C10, symSize: 0x10 } + - { offsetInCU: 0x1C98, offset: 0x6480B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x4430, symBinAddr: 0x13C20, symSize: 0x30 } + - { offsetInCU: 0x1CAC, offset: 0x6481F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x5180, symBinAddr: 0x14970, symSize: 0x10 } + - { offsetInCU: 0x1CC0, offset: 0x64833, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5190, symBinAddr: 0x14980, symSize: 0x10 } + - { offsetInCU: 0x1CD4, offset: 0x64847, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x51A0, symBinAddr: 0x14990, symSize: 0x30 } + - { offsetInCU: 0x1CE8, offset: 0x6485B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x51D0, symBinAddr: 0x149C0, symSize: 0x10 } + - { offsetInCU: 0x1CFC, offset: 0x6486F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x51E0, symBinAddr: 0x149D0, symSize: 0x30 } + - { offsetInCU: 0x1D10, offset: 0x64883, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5210, symBinAddr: 0x14A00, symSize: 0x10 } + - { offsetInCU: 0x1D24, offset: 0x64897, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x5220, symBinAddr: 0x14A10, symSize: 0x30 } + - { offsetInCU: 0x1D38, offset: 0x648AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x5250, symBinAddr: 0x14A40, symSize: 0x30 } + - { offsetInCU: 0x1D4C, offset: 0x648BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x5280, symBinAddr: 0x14A70, symSize: 0x30 } + - { offsetInCU: 0x1D60, offset: 0x648D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x52B0, symBinAddr: 0x14AA0, symSize: 0x30 } + - { offsetInCU: 0x1D74, offset: 0x648E7, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x52E0, symBinAddr: 0x14AD0, symSize: 0x40 } + - { offsetInCU: 0x1D88, offset: 0x648FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x5320, symBinAddr: 0x14B10, symSize: 0x30 } + - { offsetInCU: 0x1D9C, offset: 0x6490F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x5350, symBinAddr: 0x14B40, symSize: 0x30 } + - { offsetInCU: 0x1DB0, offset: 0x64923, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x5380, symBinAddr: 0x14B70, symSize: 0x30 } + - { offsetInCU: 0x1DC4, offset: 0x64937, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x53B0, symBinAddr: 0x14BA0, symSize: 0x30 } + - { offsetInCU: 0x1DD8, offset: 0x6494B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x53E0, symBinAddr: 0x14BD0, symSize: 0x30 } + - { offsetInCU: 0x1DEC, offset: 0x6495F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x5410, symBinAddr: 0x14C00, symSize: 0x30 } + - { offsetInCU: 0x1E00, offset: 0x64973, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x5440, symBinAddr: 0x14C30, symSize: 0x30 } + - { offsetInCU: 0x1E14, offset: 0x64987, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x5470, symBinAddr: 0x14C60, symSize: 0x30 } + - { offsetInCU: 0x1E28, offset: 0x6499B, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x54A0, symBinAddr: 0x14C90, symSize: 0x10 } + - { offsetInCU: 0x1E3C, offset: 0x649AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x54B0, symBinAddr: 0x14CA0, symSize: 0x80 } + - { offsetInCU: 0x1E50, offset: 0x649C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x5530, symBinAddr: 0x14D20, symSize: 0xD0 } + - { offsetInCU: 0x1E64, offset: 0x649D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x5600, symBinAddr: 0x14DF0, symSize: 0x10 } + - { offsetInCU: 0x1E78, offset: 0x649EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x5610, symBinAddr: 0x14E00, symSize: 0x10 } + - { offsetInCU: 0x1E8C, offset: 0x649FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x5620, symBinAddr: 0x14E10, symSize: 0x10 } + - { offsetInCU: 0x1EA0, offset: 0x64A13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x5630, symBinAddr: 0x14E20, symSize: 0x10 } + - { offsetInCU: 0x1EB4, offset: 0x64A27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x5640, symBinAddr: 0x14E30, symSize: 0x30 } + - { offsetInCU: 0x1EC8, offset: 0x64A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x5670, symBinAddr: 0x14E60, symSize: 0x40 } + - { offsetInCU: 0x1EDC, offset: 0x64A4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x56B0, symBinAddr: 0x14EA0, symSize: 0x70 } + - { offsetInCU: 0x1EF0, offset: 0x64A63, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5720, symBinAddr: 0x14F10, symSize: 0x20 } + - { offsetInCU: 0x1F04, offset: 0x64A77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x5740, symBinAddr: 0x14F30, symSize: 0x50 } + - { offsetInCU: 0x1F18, offset: 0x64A8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x5790, symBinAddr: 0x14F80, symSize: 0x40 } + - { offsetInCU: 0x1F2C, offset: 0x64A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x57D0, symBinAddr: 0x14FC0, symSize: 0x40 } + - { offsetInCU: 0x1F40, offset: 0x64AB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x5810, symBinAddr: 0x15000, symSize: 0x10 } + - { offsetInCU: 0x1F54, offset: 0x64AC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x5820, symBinAddr: 0x15010, symSize: 0x40 } + - { offsetInCU: 0x1F68, offset: 0x64ADB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5860, symBinAddr: 0x15050, symSize: 0x80 } + - { offsetInCU: 0x1F7C, offset: 0x64AEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x58E0, symBinAddr: 0x150D0, symSize: 0xB0 } + - { offsetInCU: 0x1F90, offset: 0x64B03, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5990, symBinAddr: 0x15180, symSize: 0x30 } + - { offsetInCU: 0x1FA4, offset: 0x64B17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x59C0, symBinAddr: 0x151B0, symSize: 0x80 } + - { offsetInCU: 0x1FB8, offset: 0x64B2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5A40, symBinAddr: 0x15230, symSize: 0x40 } + - { offsetInCU: 0x1FCC, offset: 0x64B3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5A80, symBinAddr: 0x15270, symSize: 0x50 } + - { offsetInCU: 0x1FE0, offset: 0x64B53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x5AD0, symBinAddr: 0x152C0, symSize: 0x10 } + - { offsetInCU: 0x1FF4, offset: 0x64B67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x5AE0, symBinAddr: 0x152D0, symSize: 0x30 } + - { offsetInCU: 0x2008, offset: 0x64B7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x5B10, symBinAddr: 0x15300, symSize: 0x40 } + - { offsetInCU: 0x201C, offset: 0x64B8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5B50, symBinAddr: 0x15340, symSize: 0x60 } + - { offsetInCU: 0x2030, offset: 0x64BA3, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5BB0, symBinAddr: 0x153A0, symSize: 0x20 } + - { offsetInCU: 0x2044, offset: 0x64BB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5BD0, symBinAddr: 0x153C0, symSize: 0x50 } + - { offsetInCU: 0x2058, offset: 0x64BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5C20, symBinAddr: 0x15410, symSize: 0x40 } + - { offsetInCU: 0x206C, offset: 0x64BDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x5C60, symBinAddr: 0x15450, symSize: 0x50 } + - { offsetInCU: 0x2080, offset: 0x64BF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5CB0, symBinAddr: 0x154A0, symSize: 0x10 } + - { offsetInCU: 0x2094, offset: 0x64C07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x5CC0, symBinAddr: 0x154B0, symSize: 0x50 } + - { offsetInCU: 0x20A8, offset: 0x64C1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x5D10, symBinAddr: 0x15500, symSize: 0xE0 } + - { offsetInCU: 0x20BC, offset: 0x64C2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5DF0, symBinAddr: 0x155E0, symSize: 0x110 } + - { offsetInCU: 0x20D0, offset: 0x64C43, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5F00, symBinAddr: 0x156F0, symSize: 0x50 } + - { offsetInCU: 0x20E4, offset: 0x64C57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5F50, symBinAddr: 0x15740, symSize: 0xD0 } + - { offsetInCU: 0x20F8, offset: 0x64C6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x6020, symBinAddr: 0x15810, symSize: 0x40 } + - { offsetInCU: 0x210C, offset: 0x64C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x6060, symBinAddr: 0x15850, symSize: 0x60 } + - { offsetInCU: 0x2120, offset: 0x64C93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x60C0, symBinAddr: 0x158B0, symSize: 0x10 } + - { offsetInCU: 0x2134, offset: 0x64CA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x60D0, symBinAddr: 0x158C0, symSize: 0x60 } + - { offsetInCU: 0x2148, offset: 0x64CBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x6130, symBinAddr: 0x15920, symSize: 0x110 } + - { offsetInCU: 0x215C, offset: 0x64CCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x6240, symBinAddr: 0x15A30, symSize: 0x160 } + - { offsetInCU: 0x2170, offset: 0x64CE3, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x63A0, symBinAddr: 0x15B90, symSize: 0x10 } + - { offsetInCU: 0x2184, offset: 0x64CF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x63B0, symBinAddr: 0x15BA0, symSize: 0x100 } + - { offsetInCU: 0x2198, offset: 0x64D0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x64B0, symBinAddr: 0x15CA0, symSize: 0x40 } + - { offsetInCU: 0x21AC, offset: 0x64D1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x64F0, symBinAddr: 0x15CE0, symSize: 0x70 } + - { offsetInCU: 0x21C0, offset: 0x64D33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x6560, symBinAddr: 0x15D50, symSize: 0x10 } + - { offsetInCU: 0x21D4, offset: 0x64D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x6570, symBinAddr: 0x15D60, symSize: 0x10 } + - { offsetInCU: 0x21E8, offset: 0x64D5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x6580, symBinAddr: 0x15D70, symSize: 0x30 } + - { offsetInCU: 0x21FC, offset: 0x64D6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x65B0, symBinAddr: 0x15DA0, symSize: 0x10 } + - { offsetInCU: 0x2210, offset: 0x64D83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x65C0, symBinAddr: 0x15DB0, symSize: 0x30 } + - { offsetInCU: 0x2224, offset: 0x64D97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x65F0, symBinAddr: 0x15DE0, symSize: 0x10 } + - { offsetInCU: 0x2238, offset: 0x64DAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x6600, symBinAddr: 0x15DF0, symSize: 0x30 } + - { offsetInCU: 0x224C, offset: 0x64DBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x75B0, symBinAddr: 0x16DA0, symSize: 0x30 } + - { offsetInCU: 0x2260, offset: 0x64DD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x75E0, symBinAddr: 0x16DD0, symSize: 0x30 } + - { offsetInCU: 0x2274, offset: 0x64DE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x7610, symBinAddr: 0x16E00, symSize: 0x30 } + - { offsetInCU: 0x2288, offset: 0x64DFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7EC0, symBinAddr: 0x176B0, symSize: 0x30 } + - { offsetInCU: 0x229C, offset: 0x64E0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8120, symBinAddr: 0x17910, symSize: 0x30 } + - { offsetInCU: 0x22B0, offset: 0x64E23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8C50, symBinAddr: 0x18440, symSize: 0x30 } + - { offsetInCU: 0x22C4, offset: 0x64E37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8C80, symBinAddr: 0x18470, symSize: 0x30 } + - { offsetInCU: 0x22D8, offset: 0x64E4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8F60, symBinAddr: 0x18750, symSize: 0x30 } + - { offsetInCU: 0x22EC, offset: 0x64E5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8F90, symBinAddr: 0x18780, symSize: 0x30 } + - { offsetInCU: 0x2300, offset: 0x64E73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x8FC0, symBinAddr: 0x187B0, symSize: 0x30 } + - { offsetInCU: 0x2314, offset: 0x64E87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x9050, symBinAddr: 0x18840, symSize: 0x30 } + - { offsetInCU: 0x2328, offset: 0x64E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9080, symBinAddr: 0x18870, symSize: 0x80 } + - { offsetInCU: 0x233C, offset: 0x64EAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9100, symBinAddr: 0x188F0, symSize: 0xD0 } + - { offsetInCU: 0x2350, offset: 0x64EC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x91D0, symBinAddr: 0x189C0, symSize: 0x10 } + - { offsetInCU: 0x2364, offset: 0x64ED7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x91E0, symBinAddr: 0x189D0, symSize: 0x10 } + - { offsetInCU: 0x2378, offset: 0x64EEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x91F0, symBinAddr: 0x189E0, symSize: 0x80 } + - { offsetInCU: 0x238C, offset: 0x64EFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9270, symBinAddr: 0x18A60, symSize: 0xD0 } + - { offsetInCU: 0x23A0, offset: 0x64F13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9340, symBinAddr: 0x18B30, symSize: 0x10 } + - { offsetInCU: 0x23B4, offset: 0x64F27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9350, symBinAddr: 0x18B40, symSize: 0x10 } + - { offsetInCU: 0x23C8, offset: 0x64F3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9360, symBinAddr: 0x18B50, symSize: 0x80 } + - { offsetInCU: 0x23DC, offset: 0x64F4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x93E0, symBinAddr: 0x18BD0, symSize: 0xD0 } + - { offsetInCU: 0x23F0, offset: 0x64F63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x94B0, symBinAddr: 0x18CA0, symSize: 0x10 } + - { offsetInCU: 0x2404, offset: 0x64F77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x94C0, symBinAddr: 0x18CB0, symSize: 0x10 } + - { offsetInCU: 0x2418, offset: 0x64F8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x94D0, symBinAddr: 0x18CC0, symSize: 0x10 } + - { offsetInCU: 0x242C, offset: 0x64F9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x94E0, symBinAddr: 0x18CD0, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x64FB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x94F0, symBinAddr: 0x18CE0, symSize: 0x80 } + - { offsetInCU: 0x2454, offset: 0x64FC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9570, symBinAddr: 0x18D60, symSize: 0xD0 } + - { offsetInCU: 0x2468, offset: 0x64FDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9640, symBinAddr: 0x18E30, symSize: 0x10 } + - { offsetInCU: 0x247C, offset: 0x64FEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9650, symBinAddr: 0x18E40, symSize: 0x10 } + - { offsetInCU: 0x2490, offset: 0x65003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9680, symBinAddr: 0x18E70, symSize: 0x10 } + - { offsetInCU: 0x24A4, offset: 0x65017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9690, symBinAddr: 0x18E80, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x6502B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x96A0, symBinAddr: 0x18E90, symSize: 0x40 } + - { offsetInCU: 0x24CC, offset: 0x6503F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x96E0, symBinAddr: 0x18ED0, symSize: 0x80 } + - { offsetInCU: 0x24E0, offset: 0x65053, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x9760, symBinAddr: 0x18F50, symSize: 0xC0 } + - { offsetInCU: 0x24F4, offset: 0x65067, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9820, symBinAddr: 0x19010, symSize: 0x40 } + - { offsetInCU: 0x2508, offset: 0x6507B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x9860, symBinAddr: 0x19050, symSize: 0x90 } + - { offsetInCU: 0x251C, offset: 0x6508F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x98F0, symBinAddr: 0x190E0, symSize: 0x40 } + - { offsetInCU: 0x2530, offset: 0x650A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x9930, symBinAddr: 0x19120, symSize: 0x50 } + - { offsetInCU: 0x2544, offset: 0x650B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x9980, symBinAddr: 0x19170, symSize: 0x10 } + - { offsetInCU: 0x2558, offset: 0x650CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x9990, symBinAddr: 0x19180, symSize: 0x40 } + - { offsetInCU: 0x256C, offset: 0x650DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x99D0, symBinAddr: 0x191C0, symSize: 0x80 } + - { offsetInCU: 0x2580, offset: 0x650F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x9A50, symBinAddr: 0x19240, symSize: 0xA0 } + - { offsetInCU: 0x2594, offset: 0x65107, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9AF0, symBinAddr: 0x192E0, symSize: 0x30 } + - { offsetInCU: 0x25A8, offset: 0x6511B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x9B20, symBinAddr: 0x19310, symSize: 0x80 } + - { offsetInCU: 0x25BC, offset: 0x6512F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x9BA0, symBinAddr: 0x19390, symSize: 0x40 } + - { offsetInCU: 0x25D0, offset: 0x65143, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9BE0, symBinAddr: 0x193D0, symSize: 0x50 } + - { offsetInCU: 0x25E4, offset: 0x65157, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x9C30, symBinAddr: 0x19420, symSize: 0x10 } + - { offsetInCU: 0x25F8, offset: 0x6516B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x9C40, symBinAddr: 0x19430, symSize: 0x40 } + - { offsetInCU: 0x260C, offset: 0x6517F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x9C80, symBinAddr: 0x19470, symSize: 0x80 } + - { offsetInCU: 0x2620, offset: 0x65193, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9D00, symBinAddr: 0x194F0, symSize: 0xB0 } + - { offsetInCU: 0x2634, offset: 0x651A7, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9DB0, symBinAddr: 0x195A0, symSize: 0x30 } + - { offsetInCU: 0x2648, offset: 0x651BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x9DE0, symBinAddr: 0x195D0, symSize: 0x80 } + - { offsetInCU: 0x265C, offset: 0x651CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9E60, symBinAddr: 0x19650, symSize: 0x40 } + - { offsetInCU: 0x2670, offset: 0x651E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x9EA0, symBinAddr: 0x19690, symSize: 0x50 } + - { offsetInCU: 0x2684, offset: 0x651F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9EF0, symBinAddr: 0x196E0, symSize: 0x10 } + - { offsetInCU: 0x2698, offset: 0x6520B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F00, symBinAddr: 0x196F0, symSize: 0x10 } + - { offsetInCU: 0x26AC, offset: 0x6521F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9F10, symBinAddr: 0x19700, symSize: 0x30 } + - { offsetInCU: 0x26C0, offset: 0x65233, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F40, symBinAddr: 0x19730, symSize: 0x10 } + - { offsetInCU: 0x26D4, offset: 0x65247, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9F50, symBinAddr: 0x19740, symSize: 0x30 } + - { offsetInCU: 0x26E8, offset: 0x6525B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F80, symBinAddr: 0x19770, symSize: 0x10 } + - { offsetInCU: 0x26FC, offset: 0x6526F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x19780, symSize: 0x30 } + - { offsetInCU: 0x2710, offset: 0x65283, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9FC0, symBinAddr: 0x197B0, symSize: 0x10 } + - { offsetInCU: 0x2724, offset: 0x65297, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9FD0, symBinAddr: 0x197C0, symSize: 0x30 } + - { offsetInCU: 0x2738, offset: 0x652AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA000, symBinAddr: 0x197F0, symSize: 0x10 } + - { offsetInCU: 0x274C, offset: 0x652BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0xA010, symBinAddr: 0x19800, symSize: 0x30 } + - { offsetInCU: 0x2760, offset: 0x652D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA040, symBinAddr: 0x19830, symSize: 0x10 } + - { offsetInCU: 0x2774, offset: 0x652E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA050, symBinAddr: 0x19840, symSize: 0x30 } + - { offsetInCU: 0x2788, offset: 0x652FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA080, symBinAddr: 0x19870, symSize: 0x10 } + - { offsetInCU: 0x279C, offset: 0x6530F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x19880, symSize: 0x30 } + - { offsetInCU: 0x27B0, offset: 0x65323, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0C0, symBinAddr: 0x198B0, symSize: 0x10 } + - { offsetInCU: 0x27C4, offset: 0x65337, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0D0, symBinAddr: 0x198C0, symSize: 0x30 } + - { offsetInCU: 0x27D8, offset: 0x6534B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA100, symBinAddr: 0x198F0, symSize: 0x10 } + - { offsetInCU: 0x27EC, offset: 0x6535F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA110, symBinAddr: 0x19900, symSize: 0x30 } + - { offsetInCU: 0x2800, offset: 0x65373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA140, symBinAddr: 0x19930, symSize: 0x10 } + - { offsetInCU: 0x2814, offset: 0x65387, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA150, symBinAddr: 0x19940, symSize: 0x30 } + - { offsetInCU: 0x2828, offset: 0x6539B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA180, symBinAddr: 0x19970, symSize: 0x10 } + - { offsetInCU: 0x283C, offset: 0x653AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA190, symBinAddr: 0x19980, symSize: 0x30 } + - { offsetInCU: 0x2850, offset: 0x653C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA1C0, symBinAddr: 0x199B0, symSize: 0x10 } + - { offsetInCU: 0x2864, offset: 0x653D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x199C0, symSize: 0x30 } + - { offsetInCU: 0x2878, offset: 0x653EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA200, symBinAddr: 0x199F0, symSize: 0x10 } + - { offsetInCU: 0x288C, offset: 0x653FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA210, symBinAddr: 0x19A00, symSize: 0x30 } + - { offsetInCU: 0x28A0, offset: 0x65413, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA240, symBinAddr: 0x19A30, symSize: 0x10 } + - { offsetInCU: 0x28B4, offset: 0x65427, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA250, symBinAddr: 0x19A40, symSize: 0x30 } + - { offsetInCU: 0x28C8, offset: 0x6543B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA280, symBinAddr: 0x19A70, symSize: 0x10 } + - { offsetInCU: 0x28DC, offset: 0x6544F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA290, symBinAddr: 0x19A80, symSize: 0x30 } + - { offsetInCU: 0x28F0, offset: 0x65463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0xA2C0, symBinAddr: 0x19AB0, symSize: 0x30 } + - { offsetInCU: 0x2904, offset: 0x65477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0xA2F0, symBinAddr: 0x19AE0, symSize: 0x30 } + - { offsetInCU: 0x2918, offset: 0x6548B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0xA320, symBinAddr: 0x19B10, symSize: 0x30 } + - { offsetInCU: 0x292C, offset: 0x6549F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0xA350, symBinAddr: 0x19B40, symSize: 0x80 } + - { offsetInCU: 0x2940, offset: 0x654B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA3D0, symBinAddr: 0x19BC0, symSize: 0xD0 } + - { offsetInCU: 0x2954, offset: 0x654C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA4A0, symBinAddr: 0x19C90, symSize: 0x10 } + - { offsetInCU: 0x2968, offset: 0x654DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA4B0, symBinAddr: 0x19CA0, symSize: 0x10 } + - { offsetInCU: 0x297C, offset: 0x654EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA630, symBinAddr: 0x19E20, symSize: 0x10 } + - { offsetInCU: 0x2990, offset: 0x65503, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA640, symBinAddr: 0x19E30, symSize: 0x10 } + - { offsetInCU: 0x29A4, offset: 0x65517, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0xA650, symBinAddr: 0x19E40, symSize: 0x80 } + - { offsetInCU: 0x29B8, offset: 0x6552B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA6D0, symBinAddr: 0x19EC0, symSize: 0xD0 } + - { offsetInCU: 0x29CC, offset: 0x6553F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA7A0, symBinAddr: 0x19F90, symSize: 0x10 } + - { offsetInCU: 0x29E0, offset: 0x65553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA7B0, symBinAddr: 0x19FA0, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x65567, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA7C0, symBinAddr: 0x19FB0, symSize: 0x10 } + - { offsetInCU: 0x2A08, offset: 0x6557B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA7D0, symBinAddr: 0x19FC0, symSize: 0x30 } + - { offsetInCU: 0x2A1C, offset: 0x6558F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA800, symBinAddr: 0x19FF0, symSize: 0x10 } + - { offsetInCU: 0x2A30, offset: 0x655A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA810, symBinAddr: 0x1A000, symSize: 0x30 } + - { offsetInCU: 0x2A44, offset: 0x655B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA840, symBinAddr: 0x1A030, symSize: 0x10 } + - { offsetInCU: 0x2A58, offset: 0x655CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA850, symBinAddr: 0x1A040, symSize: 0x30 } + - { offsetInCU: 0x2A6C, offset: 0x655DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA880, symBinAddr: 0x1A070, symSize: 0x10 } + - { offsetInCU: 0x2A80, offset: 0x655F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA890, symBinAddr: 0x1A080, symSize: 0x30 } + - { offsetInCU: 0x2A94, offset: 0x65607, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA8C0, symBinAddr: 0x1A0B0, symSize: 0x10 } + - { offsetInCU: 0x2AA8, offset: 0x6561B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA8D0, symBinAddr: 0x1A0C0, symSize: 0x30 } + - { offsetInCU: 0x2ABC, offset: 0x6562F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA900, symBinAddr: 0x1A0F0, symSize: 0x10 } + - { offsetInCU: 0x2AD0, offset: 0x65643, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA910, symBinAddr: 0x1A100, symSize: 0x30 } + - { offsetInCU: 0x2AE4, offset: 0x65657, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA940, symBinAddr: 0x1A130, symSize: 0x10 } + - { offsetInCU: 0x2AF8, offset: 0x6566B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA950, symBinAddr: 0x1A140, symSize: 0x30 } + - { offsetInCU: 0x2B0C, offset: 0x6567F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA980, symBinAddr: 0x1A170, symSize: 0x10 } + - { offsetInCU: 0x2B20, offset: 0x65693, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA990, symBinAddr: 0x1A180, symSize: 0x30 } + - { offsetInCU: 0x2B34, offset: 0x656A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA9C0, symBinAddr: 0x1A1B0, symSize: 0x10 } + - { offsetInCU: 0x2B48, offset: 0x656BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA9D0, symBinAddr: 0x1A1C0, symSize: 0x30 } + - { offsetInCU: 0x2BA2, offset: 0x65715, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F0, symBinAddr: 0xFA30, symSize: 0x20 } + - { offsetInCU: 0x2BBE, offset: 0x65731, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x210, symBinAddr: 0xFA50, symSize: 0x20 } + - { offsetInCU: 0x2C29, offset: 0x6579C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1620, symBinAddr: 0x10E60, symSize: 0x30 } + - { offsetInCU: 0x2CEA, offset: 0x6585D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x10F40, symSize: 0x20 } + - { offsetInCU: 0x2D06, offset: 0x65879, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x10F60, symSize: 0x20 } + - { offsetInCU: 0x2D28, offset: 0x6589B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x110F0, symSize: 0x20 } + - { offsetInCU: 0x2D44, offset: 0x658B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18D0, symBinAddr: 0x11110, symSize: 0x20 } + - { offsetInCU: 0x2D66, offset: 0x658D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x112A0, symSize: 0x20 } + - { offsetInCU: 0x2D82, offset: 0x658F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x112C0, symSize: 0x20 } + - { offsetInCU: 0x2DA4, offset: 0x65917, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BE0, symBinAddr: 0x11420, symSize: 0x20 } + - { offsetInCU: 0x2DC0, offset: 0x65933, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C00, symBinAddr: 0x11440, symSize: 0x20 } + - { offsetInCU: 0x2DE2, offset: 0x65955, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DB0, symBinAddr: 0x115F0, symSize: 0x20 } + - { offsetInCU: 0x2DFE, offset: 0x65971, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DD0, symBinAddr: 0x11610, symSize: 0x20 } + - { offsetInCU: 0x2E51, offset: 0x659C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1F30, symBinAddr: 0x11770, symSize: 0x40 } + - { offsetInCU: 0x2EF4, offset: 0x65A67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FE0, symBinAddr: 0x11820, symSize: 0x20 } + - { offsetInCU: 0x2F10, offset: 0x65A83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2000, symBinAddr: 0x11840, symSize: 0x20 } + - { offsetInCU: 0x2F32, offset: 0x65AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x2150, symBinAddr: 0x11990, symSize: 0x20 } + - { offsetInCU: 0x2F4E, offset: 0x65AC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x2170, symBinAddr: 0x119B0, symSize: 0x20 } + - { offsetInCU: 0x2F70, offset: 0x65AE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2310, symBinAddr: 0x11B50, symSize: 0x20 } + - { offsetInCU: 0x2F8C, offset: 0x65AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2330, symBinAddr: 0x11B70, symSize: 0x20 } + - { offsetInCU: 0x2FAE, offset: 0x65B21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24F0, symBinAddr: 0x11D30, symSize: 0x20 } + - { offsetInCU: 0x2FCA, offset: 0x65B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2510, symBinAddr: 0x11D50, symSize: 0x20 } + - { offsetInCU: 0x30B3, offset: 0x65C26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0xF8C0, symSize: 0xD0 } + - { offsetInCU: 0x3132, offset: 0x65CA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x230, symBinAddr: 0xFA70, symSize: 0x4C0 } + - { offsetInCU: 0x3163, offset: 0x65CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6F0, symBinAddr: 0xFF30, symSize: 0xE0 } + - { offsetInCU: 0x3194, offset: 0x65D07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7D0, symBinAddr: 0x10010, symSize: 0x1A0 } + - { offsetInCU: 0x31C5, offset: 0x65D38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x970, symBinAddr: 0x101B0, symSize: 0x170 } + - { offsetInCU: 0x31F6, offset: 0x65D69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xAE0, symBinAddr: 0x10320, symSize: 0x1D0 } + - { offsetInCU: 0x3227, offset: 0x65D9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xCB0, symBinAddr: 0x104F0, symSize: 0x230 } + - { offsetInCU: 0x3258, offset: 0x65DCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x10720, symSize: 0x110 } + - { offsetInCU: 0x3289, offset: 0x65DFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xFF0, symBinAddr: 0x10830, symSize: 0x1F0 } + - { offsetInCU: 0x32BA, offset: 0x65E2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x11E0, symBinAddr: 0x10A20, symSize: 0x210 } + - { offsetInCU: 0x32EB, offset: 0x65E5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x13F0, symBinAddr: 0x10C30, symSize: 0x130 } + - { offsetInCU: 0x27, offset: 0x6609A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A440, symSize: 0x60 } + - { offsetInCU: 0x3ED, offset: 0x66460, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x470, symBinAddr: 0x1A8B0, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x66474, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x4A0, symBinAddr: 0x1A8E0, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x66488, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x4E0, symBinAddr: 0x1A920, symSize: 0xD0 } + - { offsetInCU: 0x429, offset: 0x6649C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x5B0, symBinAddr: 0x1A9F0, symSize: 0x100 } + - { offsetInCU: 0x43D, offset: 0x664B0, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6B0, symBinAddr: 0x1AAF0, symSize: 0x50 } + - { offsetInCU: 0x451, offset: 0x664C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x700, symBinAddr: 0x1AB40, symSize: 0xD0 } + - { offsetInCU: 0x465, offset: 0x664D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x7D0, symBinAddr: 0x1AC10, symSize: 0x40 } + - { offsetInCU: 0x479, offset: 0x664EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x810, symBinAddr: 0x1AC50, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x66500, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x870, symBinAddr: 0x1ACB0, symSize: 0xA } + - { offsetInCU: 0x614, offset: 0x66687, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A440, symSize: 0x60 } + - { offsetInCU: 0x653, offset: 0x666C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x60, symBinAddr: 0x1A4A0, symSize: 0x40 } + - { offsetInCU: 0x66D, offset: 0x666E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xA0, symBinAddr: 0x1A4E0, symSize: 0x50 } + - { offsetInCU: 0x69D, offset: 0x66710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xF0, symBinAddr: 0x1A530, symSize: 0x10 } + - { offsetInCU: 0x6B1, offset: 0x66724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x1A540, symSize: 0x10 } + - { offsetInCU: 0x6D2, offset: 0x66745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x110, symBinAddr: 0x1A550, symSize: 0x20 } + - { offsetInCU: 0x6E6, offset: 0x66759, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x130, symBinAddr: 0x1A570, symSize: 0x20 } + - { offsetInCU: 0x716, offset: 0x66789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x150, symBinAddr: 0x1A590, symSize: 0x20 } + - { offsetInCU: 0x73A, offset: 0x667AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x170, symBinAddr: 0x1A5B0, symSize: 0x10 } + - { offsetInCU: 0x75B, offset: 0x667CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x180, symBinAddr: 0x1A5C0, symSize: 0x30 } + - { offsetInCU: 0x76F, offset: 0x667E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1B0, symBinAddr: 0x1A5F0, symSize: 0x30 } + - { offsetInCU: 0x7A3, offset: 0x66816, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1E0, symBinAddr: 0x1A620, symSize: 0x20 } + - { offsetInCU: 0x7C7, offset: 0x6683A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x200, symBinAddr: 0x1A640, symSize: 0x10 } + - { offsetInCU: 0x7E8, offset: 0x6685B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x210, symBinAddr: 0x1A650, symSize: 0x10 } + - { offsetInCU: 0x7FC, offset: 0x6686F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x220, symBinAddr: 0x1A660, symSize: 0x10 } + - { offsetInCU: 0x830, offset: 0x668A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x230, symBinAddr: 0x1A670, symSize: 0x20 } + - { offsetInCU: 0x854, offset: 0x668C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x250, symBinAddr: 0x1A690, symSize: 0x10 } + - { offsetInCU: 0x875, offset: 0x668E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x260, symBinAddr: 0x1A6A0, symSize: 0x10 } + - { offsetInCU: 0x889, offset: 0x668FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x270, symBinAddr: 0x1A6B0, symSize: 0x10 } + - { offsetInCU: 0x8BD, offset: 0x66930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x280, symBinAddr: 0x1A6C0, symSize: 0x20 } + - { offsetInCU: 0x8E1, offset: 0x66954, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x1A6E0, symSize: 0x10 } + - { offsetInCU: 0x902, offset: 0x66975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2B0, symBinAddr: 0x1A6F0, symSize: 0x30 } + - { offsetInCU: 0x916, offset: 0x66989, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x2E0, symBinAddr: 0x1A720, symSize: 0x30 } + - { offsetInCU: 0x94A, offset: 0x669BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x310, symBinAddr: 0x1A750, symSize: 0x20 } + - { offsetInCU: 0x96E, offset: 0x669E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1A770, symSize: 0x10 } + - { offsetInCU: 0x98F, offset: 0x66A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x340, symBinAddr: 0x1A780, symSize: 0x30 } + - { offsetInCU: 0x9A3, offset: 0x66A16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x370, symBinAddr: 0x1A7B0, symSize: 0x30 } + - { offsetInCU: 0x9D7, offset: 0x66A4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3A0, symBinAddr: 0x1A7E0, symSize: 0x20 } + - { offsetInCU: 0x9FB, offset: 0x66A6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x3C0, symBinAddr: 0x1A800, symSize: 0x10 } + - { offsetInCU: 0xA1C, offset: 0x66A8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x3D0, symBinAddr: 0x1A810, symSize: 0x10 } + - { offsetInCU: 0xA30, offset: 0x66AA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x3E0, symBinAddr: 0x1A820, symSize: 0x10 } + - { offsetInCU: 0xA64, offset: 0x66AD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x3F0, symBinAddr: 0x1A830, symSize: 0x20 } + - { offsetInCU: 0xA88, offset: 0x66AFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x410, symBinAddr: 0x1A850, symSize: 0x10 } + - { offsetInCU: 0xAA9, offset: 0x66B1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x420, symBinAddr: 0x1A860, symSize: 0x10 } + - { offsetInCU: 0xABD, offset: 0x66B30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x430, symBinAddr: 0x1A870, symSize: 0x10 } + - { offsetInCU: 0xAF1, offset: 0x66B64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x440, symBinAddr: 0x1A880, symSize: 0x20 } + - { offsetInCU: 0xB15, offset: 0x66B88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x460, symBinAddr: 0x1A8A0, symSize: 0x10 } + - { offsetInCU: 0x7F, offset: 0x66C4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x6E0, symBinAddr: 0x1B3A0, symSize: 0x30 } + - { offsetInCU: 0xB0, offset: 0x66C7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x710, symBinAddr: 0x1B3D0, symSize: 0x30 } + - { offsetInCU: 0xCC, offset: 0x66C98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x970, symBinAddr: 0x1B630, symSize: 0x60 } + - { offsetInCU: 0x145, offset: 0x66D11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x910, symBinAddr: 0x1B5D0, symSize: 0x30 } + - { offsetInCU: 0x176, offset: 0x66D42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x940, symBinAddr: 0x1B600, symSize: 0x30 } + - { offsetInCU: 0x192, offset: 0x66D5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x9D0, symBinAddr: 0x1B690, symSize: 0x60 } + - { offsetInCU: 0x1D2, offset: 0x66D9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1B6F0, symSize: 0x120 } + - { offsetInCU: 0x202, offset: 0x66DCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1B810, symSize: 0x80 } + - { offsetInCU: 0x216, offset: 0x66DE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1B890, symSize: 0xD0 } + - { offsetInCU: 0x22A, offset: 0x66DF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1B960, symSize: 0x10 } + - { offsetInCU: 0x23E, offset: 0x66E0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1B970, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x66E1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1B980, symSize: 0x80 } + - { offsetInCU: 0x266, offset: 0x66E32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1BA00, symSize: 0xD0 } + - { offsetInCU: 0x27A, offset: 0x66E46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1BAD0, symSize: 0x10 } + - { offsetInCU: 0x28E, offset: 0x66E5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1BAE0, symSize: 0x10 } + - { offsetInCU: 0x2A2, offset: 0x66E6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1BAF0, symSize: 0x10 } + - { offsetInCU: 0x2B6, offset: 0x66E82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1BB00, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x66E96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1BB10, symSize: 0x10 } + - { offsetInCU: 0x2DE, offset: 0x66EAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1BB20, symSize: 0x30 } + - { offsetInCU: 0x2F2, offset: 0x66EBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1BB50, symSize: 0x10 } + - { offsetInCU: 0x306, offset: 0x66ED2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1BB60, symSize: 0x30 } + - { offsetInCU: 0x410, offset: 0x66FDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1ACC0, symSize: 0x350 } + - { offsetInCU: 0x433, offset: 0x66FFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1B010, symSize: 0x310 } + - { offsetInCU: 0xD3, offset: 0x67129, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1BE80, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x6716D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1BEA0, symSize: 0x90 } + - { offsetInCU: 0x16B, offset: 0x671C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1BF30, symSize: 0x10 } + - { offsetInCU: 0x194, offset: 0x671EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1BF40, symSize: 0x10 } + - { offsetInCU: 0x1BD, offset: 0x67213, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1BF50, symSize: 0x10 } + - { offsetInCU: 0x1E6, offset: 0x6723C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1BFF0, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x67278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1C000, symSize: 0x80 } + - { offsetInCU: 0x28E, offset: 0x672E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1C080, symSize: 0x60 } + - { offsetInCU: 0x2E3, offset: 0x67339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1C0E0, symSize: 0x90 } + - { offsetInCU: 0x335, offset: 0x6738B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1C170, symSize: 0x80 } + - { offsetInCU: 0x392, offset: 0x673E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1C1F0, symSize: 0x60 } + - { offsetInCU: 0x3C4, offset: 0x6741A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6A0, symBinAddr: 0x1C250, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x67436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1C260, symSize: 0x10 } + - { offsetInCU: 0x4D3, offset: 0x67529, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1020, symBinAddr: 0x1CBD0, symSize: 0x3E0 } + - { offsetInCU: 0x7C6, offset: 0x6781C, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x14C0, symBinAddr: 0x1D070, symSize: 0x20 } + - { offsetInCU: 0x7DA, offset: 0x67830, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x14E0, symBinAddr: 0x1D090, symSize: 0x20 } + - { offsetInCU: 0x7EE, offset: 0x67844, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1570, symBinAddr: 0x1D0B0, symSize: 0x40 } + - { offsetInCU: 0x802, offset: 0x67858, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x15B0, symBinAddr: 0x1D0F0, symSize: 0x20 } + - { offsetInCU: 0x816, offset: 0x6786C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x15D0, symBinAddr: 0x1D110, symSize: 0x40 } + - { offsetInCU: 0x82A, offset: 0x67880, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1610, symBinAddr: 0x1D150, symSize: 0x30 } + - { offsetInCU: 0x83E, offset: 0x67894, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x1640, symBinAddr: 0x1D180, symSize: 0x260 } + - { offsetInCU: 0x852, offset: 0x678A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x18A0, symBinAddr: 0x1D3E0, symSize: 0x30 } + - { offsetInCU: 0x866, offset: 0x678BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x18D0, symBinAddr: 0x1D410, symSize: 0x260 } + - { offsetInCU: 0x87A, offset: 0x678D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1B30, symBinAddr: 0x1D670, symSize: 0x25 } + - { offsetInCU: 0xA79, offset: 0x67ACF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1BBB0, symSize: 0x2B0 } + - { offsetInCU: 0xAA2, offset: 0x67AF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1BE60, symSize: 0x20 } + - { offsetInCU: 0xBD2, offset: 0x67C28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x6C0, symBinAddr: 0x1C270, symSize: 0x8F0 } + - { offsetInCU: 0xCD9, offset: 0x67D2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xFB0, symBinAddr: 0x1CB60, symSize: 0x70 } + - { offsetInCU: 0xD57, offset: 0x67DAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x1400, symBinAddr: 0x1CFB0, symSize: 0x60 } + - { offsetInCU: 0xD8C, offset: 0x67DE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0x1460, symBinAddr: 0x1D010, symSize: 0x60 } + - { offsetInCU: 0x4F, offset: 0x67E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2B20, symBinAddr: 0x8AC10, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x67EA8, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2B28, symBinAddr: 0x8AC18, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x67EB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1D6E0, symSize: 0x30 } + - { offsetInCU: 0xB3, offset: 0x67EF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1D710, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x67F28, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1D750, symSize: 0x30 } + - { offsetInCU: 0x159, offset: 0x67F98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0x1D840, symSize: 0x50 } + - { offsetInCU: 0x1E6, offset: 0x68025, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2F0, symBinAddr: 0x1D990, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x68061, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x350, symBinAddr: 0x1D9F0, symSize: 0x20 } + - { offsetInCU: 0x29C, offset: 0x680DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x3C0, symBinAddr: 0x1DA60, symSize: 0x80 } + - { offsetInCU: 0x5C1, offset: 0x68400, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1CC0, symBinAddr: 0x1F360, symSize: 0x170 } + - { offsetInCU: 0x688, offset: 0x684C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x440, symBinAddr: 0x1DAE0, symSize: 0x80 } + - { offsetInCU: 0x6C0, offset: 0x684FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4C0, symBinAddr: 0x1DB60, symSize: 0xB0 } + - { offsetInCU: 0x700, offset: 0x6853F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x5B0, symBinAddr: 0x1DC50, symSize: 0x20 } + - { offsetInCU: 0x714, offset: 0x68553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x620, symBinAddr: 0x1DCC0, symSize: 0x20 } + - { offsetInCU: 0x728, offset: 0x68567, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x680, symBinAddr: 0x1DD20, symSize: 0x80 } + - { offsetInCU: 0x760, offset: 0x6859F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x700, symBinAddr: 0x1DDA0, symSize: 0xB0 } + - { offsetInCU: 0x7A0, offset: 0x685DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x910, symBinAddr: 0x1DFB0, symSize: 0x50 } + - { offsetInCU: 0x9AA, offset: 0x687E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x17C0, symBinAddr: 0x1EE60, symSize: 0x130 } + - { offsetInCU: 0xAA6, offset: 0x688E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x18F0, symBinAddr: 0x1EF90, symSize: 0x10 } + - { offsetInCU: 0xABA, offset: 0x688F9, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A20, symBinAddr: 0x1F0C0, symSize: 0x30 } + - { offsetInCU: 0xAD2, offset: 0x68911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1C70, symBinAddr: 0x1F310, symSize: 0x30 } + - { offsetInCU: 0xAE6, offset: 0x68925, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1CA0, symBinAddr: 0x1F340, symSize: 0x20 } + - { offsetInCU: 0xAFA, offset: 0x68939, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1E30, symBinAddr: 0x1F4D0, symSize: 0x20 } + - { offsetInCU: 0xB0E, offset: 0x6894D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E50, symBinAddr: 0x1F4F0, symSize: 0x10 } + - { offsetInCU: 0xB22, offset: 0x68961, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E60, symBinAddr: 0x1F500, symSize: 0x30 } + - { offsetInCU: 0xB36, offset: 0x68975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E90, symBinAddr: 0x1F530, symSize: 0x10 } + - { offsetInCU: 0xB4A, offset: 0x68989, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1EA0, symBinAddr: 0x1F540, symSize: 0x30 } + - { offsetInCU: 0xB5E, offset: 0x6899D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1FF0, symBinAddr: 0x1F690, symSize: 0x20 } + - { offsetInCU: 0xB72, offset: 0x689B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x2010, symBinAddr: 0x1F6B0, symSize: 0x20 } + - { offsetInCU: 0xB86, offset: 0x689C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x2030, symBinAddr: 0x1F6D0, symSize: 0x20 } + - { offsetInCU: 0xB9A, offset: 0x689D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x20C0, symBinAddr: 0x1F760, symSize: 0x70 } + - { offsetInCU: 0xBAE, offset: 0x689ED, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2130, symBinAddr: 0x1F7D0, symSize: 0x20 } + - { offsetInCU: 0xBC2, offset: 0x68A01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x2150, symBinAddr: 0x1F7F0, symSize: 0x40 } + - { offsetInCU: 0xBD6, offset: 0x68A15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x2190, symBinAddr: 0x1F830, symSize: 0x50 } + - { offsetInCU: 0xBEA, offset: 0x68A29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x21E0, symBinAddr: 0x1F880, symSize: 0x50 } + - { offsetInCU: 0xBFE, offset: 0x68A3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x2230, symBinAddr: 0x1F8D0, symSize: 0x10 } + - { offsetInCU: 0xC12, offset: 0x68A51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2240, symBinAddr: 0x1F8E0, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x68A65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2250, symBinAddr: 0x1F8F0, symSize: 0x10 } + - { offsetInCU: 0xC3A, offset: 0x68A79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x1F900, symSize: 0x10 } + - { offsetInCU: 0xC4E, offset: 0x68A8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2450, symBinAddr: 0x1FAD0, symSize: 0x80 } + - { offsetInCU: 0xC62, offset: 0x68AA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x24D0, symBinAddr: 0x1FB50, symSize: 0xD0 } + - { offsetInCU: 0xC76, offset: 0x68AB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x25A0, symBinAddr: 0x1FC20, symSize: 0x10 } + - { offsetInCU: 0xC8A, offset: 0x68AC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x25B0, symBinAddr: 0x1FC30, symSize: 0x10 } + - { offsetInCU: 0xC9E, offset: 0x68ADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x25C0, symBinAddr: 0x1FC40, symSize: 0x80 } + - { offsetInCU: 0xCB2, offset: 0x68AF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2640, symBinAddr: 0x1FCC0, symSize: 0xD0 } + - { offsetInCU: 0xCC6, offset: 0x68B05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x2710, symBinAddr: 0x1FD90, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x68B19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x2720, symBinAddr: 0x1FDA0, symSize: 0x10 } + - { offsetInCU: 0xCEE, offset: 0x68B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2730, symBinAddr: 0x1FDB0, symSize: 0x10 } + - { offsetInCU: 0xD02, offset: 0x68B41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2740, symBinAddr: 0x1FDC0, symSize: 0x10 } + - { offsetInCU: 0xD21, offset: 0x68B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2780, symBinAddr: 0x1FE00, symSize: 0x20 } + - { offsetInCU: 0xD4A, offset: 0x68B89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x2880, symBinAddr: 0x1FF00, symSize: 0x10 } + - { offsetInCU: 0xD5E, offset: 0x68B9D, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2890, symBinAddr: 0x1FF10, symSize: 0x20 } + - { offsetInCU: 0xD72, offset: 0x68BB1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x28B0, symBinAddr: 0x1FF30, symSize: 0x10 } + - { offsetInCU: 0xD86, offset: 0x68BC5, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2940, symBinAddr: 0x1FF40, symSize: 0x30 } + - { offsetInCU: 0xE08, offset: 0x68C47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1D6A0, symSize: 0x10 } + - { offsetInCU: 0xE24, offset: 0x68C63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1D6B0, symSize: 0x10 } + - { offsetInCU: 0xE40, offset: 0x68C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1D6C0, symSize: 0x10 } + - { offsetInCU: 0xE5C, offset: 0x68C9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1D6D0, symSize: 0x10 } + - { offsetInCU: 0x11AB, offset: 0x68FEA, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1D780, symSize: 0x40 } + - { offsetInCU: 0x11D9, offset: 0x69018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1D7C0, symSize: 0x50 } + - { offsetInCU: 0x120D, offset: 0x6904C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1F0, symBinAddr: 0x1D890, symSize: 0x80 } + - { offsetInCU: 0x1234, offset: 0x69073, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x270, symBinAddr: 0x1D910, symSize: 0x10 } + - { offsetInCU: 0x1277, offset: 0x690B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x280, symBinAddr: 0x1D920, symSize: 0x20 } + - { offsetInCU: 0x137E, offset: 0x691BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x570, symBinAddr: 0x1DC10, symSize: 0x40 } + - { offsetInCU: 0x139B, offset: 0x691DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5D0, symBinAddr: 0x1DC70, symSize: 0x50 } + - { offsetInCU: 0x13C2, offset: 0x69201, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x640, symBinAddr: 0x1DCE0, symSize: 0x30 } + - { offsetInCU: 0x13E5, offset: 0x69224, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x670, symBinAddr: 0x1DD10, symSize: 0x10 } + - { offsetInCU: 0x143A, offset: 0x69279, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x7B0, symBinAddr: 0x1DE50, symSize: 0x40 } + - { offsetInCU: 0x1457, offset: 0x69296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7F0, symBinAddr: 0x1DE90, symSize: 0x50 } + - { offsetInCU: 0x147E, offset: 0x692BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x840, symBinAddr: 0x1DEE0, symSize: 0x30 } + - { offsetInCU: 0x14A1, offset: 0x692E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x870, symBinAddr: 0x1DF10, symSize: 0x10 } + - { offsetInCU: 0x14C2, offset: 0x69301, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x880, symBinAddr: 0x1DF20, symSize: 0x30 } + - { offsetInCU: 0x14DF, offset: 0x6931E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x8B0, symBinAddr: 0x1DF50, symSize: 0x30 } + - { offsetInCU: 0x1506, offset: 0x69345, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8E0, symBinAddr: 0x1DF80, symSize: 0x30 } + - { offsetInCU: 0x154E, offset: 0x6938D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x960, symBinAddr: 0x1E000, symSize: 0x30 } + - { offsetInCU: 0x156B, offset: 0x693AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x990, symBinAddr: 0x1E030, symSize: 0x40 } + - { offsetInCU: 0x1592, offset: 0x693D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x9D0, symBinAddr: 0x1E070, symSize: 0x30 } + - { offsetInCU: 0x15BC, offset: 0x693FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0xA00, symBinAddr: 0x1E0A0, symSize: 0xD0 } + - { offsetInCU: 0x1633, offset: 0x69472, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0xAD0, symBinAddr: 0x1E170, symSize: 0xA0 } + - { offsetInCU: 0x16A6, offset: 0x694E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB70, symBinAddr: 0x1E210, symSize: 0xA0 } + - { offsetInCU: 0x1763, offset: 0x695A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xC10, symBinAddr: 0x1E2B0, symSize: 0x1F0 } + - { offsetInCU: 0x17CC, offset: 0x6960B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1900, symBinAddr: 0x1EFA0, symSize: 0x120 } + - { offsetInCU: 0x1890, offset: 0x696CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xE00, symBinAddr: 0x1E4A0, symSize: 0x60 } + - { offsetInCU: 0x18BA, offset: 0x696F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xE60, symBinAddr: 0x1E500, symSize: 0x30 } + - { offsetInCU: 0x18DC, offset: 0x6971B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1E530, symSize: 0x160 } + - { offsetInCU: 0x1981, offset: 0x697C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xFF0, symBinAddr: 0x1E690, symSize: 0x10 } + - { offsetInCU: 0x19CE, offset: 0x6980D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0x1070, symBinAddr: 0x1E710, symSize: 0x30 } + - { offsetInCU: 0x1A52, offset: 0x69891, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0x1000, symBinAddr: 0x1E6A0, symSize: 0x70 } + - { offsetInCU: 0x1AE4, offset: 0x69923, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0x10A0, symBinAddr: 0x1E740, symSize: 0x80 } + - { offsetInCU: 0x1BB2, offset: 0x699F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0x1120, symBinAddr: 0x1E7C0, symSize: 0x230 } + - { offsetInCU: 0x1D80, offset: 0x69BBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x1350, symBinAddr: 0x1E9F0, symSize: 0x10 } + - { offsetInCU: 0x1DD7, offset: 0x69C16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x1360, symBinAddr: 0x1EA00, symSize: 0x10 } + - { offsetInCU: 0x1E25, offset: 0x69C64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1370, symBinAddr: 0x1EA10, symSize: 0x10 } + - { offsetInCU: 0x1E3D, offset: 0x69C7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1380, symBinAddr: 0x1EA20, symSize: 0xB0 } + - { offsetInCU: 0x1EE3, offset: 0x69D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1470, symBinAddr: 0x1EB10, symSize: 0x10 } + - { offsetInCU: 0x1EFB, offset: 0x69D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x27F0, symBinAddr: 0x1FE70, symSize: 0x70 } + - { offsetInCU: 0x1FD2, offset: 0x69E11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x1430, symBinAddr: 0x1EAD0, symSize: 0x40 } + - { offsetInCU: 0x200D, offset: 0x69E4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14A0, symBinAddr: 0x1EB40, symSize: 0x90 } + - { offsetInCU: 0x20EA, offset: 0x69F29, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x15F0, symBinAddr: 0x1EC90, symSize: 0x1D0 } + - { offsetInCU: 0x27E1, offset: 0x6A620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x1A50, symBinAddr: 0x1F0F0, symSize: 0x20 } + - { offsetInCU: 0x2824, offset: 0x6A663, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1A70, symBinAddr: 0x1F110, symSize: 0x200 } + - { offsetInCU: 0x43, offset: 0x6A816, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x20100, symSize: 0x30 } + - { offsetInCU: 0x57, offset: 0x6A82A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x20130, symSize: 0x80 } + - { offsetInCU: 0x6B, offset: 0x6A83E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x201B0, symSize: 0x130 } + - { offsetInCU: 0x86, offset: 0x6A859, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x202E0, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x6A882, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x20310, symSize: 0x30 } + - { offsetInCU: 0xC3, offset: 0x6A896, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x20340, symSize: 0xC0 } + - { offsetInCU: 0xD7, offset: 0x6A8AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x20400, symSize: 0x50 } + - { offsetInCU: 0xEB, offset: 0x6A8BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x20450, symSize: 0x50 } + - { offsetInCU: 0xFF, offset: 0x6A8D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x204A0, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x6A8E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x204B0, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x6A8FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x204E0, symSize: 0x30 } + - { offsetInCU: 0x13B, offset: 0x6A90E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x20510, symSize: 0x60 } + - { offsetInCU: 0x14F, offset: 0x6A922, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x20570, symSize: 0x80 } + - { offsetInCU: 0x163, offset: 0x6A936, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x205F0, symSize: 0x60 } + - { offsetInCU: 0x177, offset: 0x6A94A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x20650, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x6A95E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x206A0, symSize: 0x50 } + - { offsetInCU: 0x19F, offset: 0x6A972, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x206F0, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x6A9BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x20B20, symSize: 0x10 } + - { offsetInCU: 0x243, offset: 0x6AA16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA30, symBinAddr: 0x20B30, symSize: 0x30 } + - { offsetInCU: 0x327, offset: 0x6AAFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x20B60, symSize: 0x20 } + - { offsetInCU: 0x399, offset: 0x6AB6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAB0, symBinAddr: 0x20BB0, symSize: 0x20 } + - { offsetInCU: 0x3E8, offset: 0x6ABBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD0, symBinAddr: 0x20BD0, symSize: 0x70 } + - { offsetInCU: 0x442, offset: 0x6AC15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB40, symBinAddr: 0x20C40, symSize: 0x10 } + - { offsetInCU: 0x45E, offset: 0x6AC31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB50, symBinAddr: 0x20C50, symSize: 0x10 } + - { offsetInCU: 0x49B, offset: 0x6AC6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBA0, symBinAddr: 0x20CA0, symSize: 0x40 } + - { offsetInCU: 0x4D2, offset: 0x6ACA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE0, symBinAddr: 0x20CE0, symSize: 0x40 } + - { offsetInCU: 0x4F5, offset: 0x6ACC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFE0, symBinAddr: 0x210E0, symSize: 0x140 } + - { offsetInCU: 0x582, offset: 0x6AD55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC20, symBinAddr: 0x20D20, symSize: 0x10 } + - { offsetInCU: 0x5D5, offset: 0x6ADA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x20D40, symSize: 0x20 } + - { offsetInCU: 0x64F, offset: 0x6AE22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC70, symBinAddr: 0x20D70, symSize: 0x60 } + - { offsetInCU: 0x684, offset: 0x6AE57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x20DD0, symSize: 0x20 } + - { offsetInCU: 0x6B5, offset: 0x6AE88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF0, symBinAddr: 0x20DF0, symSize: 0x10 } + - { offsetInCU: 0x6D1, offset: 0x6AEA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x20E00, symSize: 0x10 } + - { offsetInCU: 0x6ED, offset: 0x6AEC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1250, symBinAddr: 0x212B0, symSize: 0x120 } + - { offsetInCU: 0x79D, offset: 0x6AF70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD50, symBinAddr: 0x20E50, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x6AFA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD90, symBinAddr: 0x20E90, symSize: 0x40 } + - { offsetInCU: 0x7F7, offset: 0x6AFCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1370, symBinAddr: 0x213D0, symSize: 0x250 } + - { offsetInCU: 0x866, offset: 0x6B039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x20F70, symSize: 0x70 } + - { offsetInCU: 0x89B, offset: 0x6B06E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE0, symBinAddr: 0x20FE0, symSize: 0x20 } + - { offsetInCU: 0x8CC, offset: 0x6B09F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF00, symBinAddr: 0x21000, symSize: 0x10 } + - { offsetInCU: 0x8E8, offset: 0x6B0BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF10, symBinAddr: 0x21010, symSize: 0x10 } + - { offsetInCU: 0x904, offset: 0x6B0D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D30, symBinAddr: 0x21CF0, symSize: 0x130 } + - { offsetInCU: 0x9B4, offset: 0x6B187, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF60, symBinAddr: 0x21060, symSize: 0x40 } + - { offsetInCU: 0x9EB, offset: 0x6B1BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFA0, symBinAddr: 0x210A0, symSize: 0x40 } + - { offsetInCU: 0xA0E, offset: 0x6B1E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E60, symBinAddr: 0x21E20, symSize: 0x2F0 } + - { offsetInCU: 0xA6B, offset: 0x6B23E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1190, symBinAddr: 0x21220, symSize: 0x30 } + - { offsetInCU: 0xA7F, offset: 0x6B252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x11F0, symBinAddr: 0x21250, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x6B266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x21280, symSize: 0x30 } + - { offsetInCU: 0xAA7, offset: 0x6B27A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x15C0, symBinAddr: 0x21620, symSize: 0x30 } + - { offsetInCU: 0xABB, offset: 0x6B28E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x1630, symBinAddr: 0x21650, symSize: 0x30 } + - { offsetInCU: 0xACF, offset: 0x6B2A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x16F0, symBinAddr: 0x21710, symSize: 0x30 } + - { offsetInCU: 0xAE3, offset: 0x6B2B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1760, symBinAddr: 0x21760, symSize: 0x10 } + - { offsetInCU: 0xAF7, offset: 0x6B2CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1770, symBinAddr: 0x21770, symSize: 0x10 } + - { offsetInCU: 0xB0B, offset: 0x6B2DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1780, symBinAddr: 0x21780, symSize: 0x10 } + - { offsetInCU: 0xB1F, offset: 0x6B2F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x1790, symBinAddr: 0x21790, symSize: 0x10 } + - { offsetInCU: 0xB33, offset: 0x6B306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x217A0, symSize: 0x50 } + - { offsetInCU: 0xB47, offset: 0x6B31A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x217F0, symSize: 0xA0 } + - { offsetInCU: 0xB5B, offset: 0x6B32E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x18A0, symBinAddr: 0x21890, symSize: 0x10 } + - { offsetInCU: 0xB6F, offset: 0x6B342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x18B0, symBinAddr: 0x218A0, symSize: 0x10 } + - { offsetInCU: 0xB83, offset: 0x6B356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x18C0, symBinAddr: 0x218B0, symSize: 0x10 } + - { offsetInCU: 0xB97, offset: 0x6B36A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x18D0, symBinAddr: 0x218C0, symSize: 0x10 } + - { offsetInCU: 0xBAB, offset: 0x6B37E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18E0, symBinAddr: 0x218D0, symSize: 0x40 } + - { offsetInCU: 0xBBF, offset: 0x6B392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1920, symBinAddr: 0x21910, symSize: 0x80 } + - { offsetInCU: 0xBD3, offset: 0x6B3A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x19A0, symBinAddr: 0x21990, symSize: 0xA0 } + - { offsetInCU: 0xBE7, offset: 0x6B3BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A70, symBinAddr: 0x21A30, symSize: 0x80 } + - { offsetInCU: 0xBFB, offset: 0x6B3CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1AF0, symBinAddr: 0x21AB0, symSize: 0x50 } + - { offsetInCU: 0xC0F, offset: 0x6B3E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B40, symBinAddr: 0x21B00, symSize: 0x60 } + - { offsetInCU: 0xC23, offset: 0x6B3F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1BA0, symBinAddr: 0x21B60, symSize: 0x10 } + - { offsetInCU: 0xC37, offset: 0x6B40A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BB0, symBinAddr: 0x21B70, symSize: 0x10 } + - { offsetInCU: 0xC4B, offset: 0x6B41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BC0, symBinAddr: 0x21B80, symSize: 0x30 } + - { offsetInCU: 0xC5F, offset: 0x6B432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BF0, symBinAddr: 0x21BB0, symSize: 0x10 } + - { offsetInCU: 0xC73, offset: 0x6B446, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1C00, symBinAddr: 0x21BC0, symSize: 0x30 } + - { offsetInCU: 0xC87, offset: 0x6B45A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C30, symBinAddr: 0x21BF0, symSize: 0x10 } + - { offsetInCU: 0xC9B, offset: 0x6B46E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C40, symBinAddr: 0x21C00, symSize: 0x30 } + - { offsetInCU: 0xCAF, offset: 0x6B482, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C70, symBinAddr: 0x21C30, symSize: 0x10 } + - { offsetInCU: 0xCC3, offset: 0x6B496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C80, symBinAddr: 0x21C40, symSize: 0x30 } + - { offsetInCU: 0xCD7, offset: 0x6B4AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CB0, symBinAddr: 0x21C70, symSize: 0x10 } + - { offsetInCU: 0xCEB, offset: 0x6B4BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CC0, symBinAddr: 0x21C80, symSize: 0x30 } + - { offsetInCU: 0xCFF, offset: 0x6B4D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF0, symBinAddr: 0x21CB0, symSize: 0x10 } + - { offsetInCU: 0xD13, offset: 0x6B4E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x21CC0, symSize: 0x30 } + - { offsetInCU: 0xD27, offset: 0x6B4FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x2150, symBinAddr: 0x22110, symSize: 0x30 } + - { offsetInCU: 0xD3B, offset: 0x6B50E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x22F0, symBinAddr: 0x222B0, symSize: 0x10 } + - { offsetInCU: 0xD4F, offset: 0x6B522, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2300, symBinAddr: 0x222C0, symSize: 0x10 } + - { offsetInCU: 0xD63, offset: 0x6B536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2310, symBinAddr: 0x222D0, symSize: 0x10 } + - { offsetInCU: 0xD77, offset: 0x6B54A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x2320, symBinAddr: 0x222E0, symSize: 0x30 } + - { offsetInCU: 0xD8B, offset: 0x6B55E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2350, symBinAddr: 0x22310, symSize: 0x10 } + - { offsetInCU: 0xD9F, offset: 0x6B572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2360, symBinAddr: 0x22320, symSize: 0x30 } + - { offsetInCU: 0xDB3, offset: 0x6B586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2390, symBinAddr: 0x22350, symSize: 0x10 } + - { offsetInCU: 0xDC7, offset: 0x6B59A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23A0, symBinAddr: 0x22360, symSize: 0x30 } + - { offsetInCU: 0xE26, offset: 0x6B5F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA80, symBinAddr: 0x20B80, symSize: 0x30 } + - { offsetInCU: 0xEE7, offset: 0x6B6BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x20C60, symSize: 0x20 } + - { offsetInCU: 0xF03, offset: 0x6B6D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB80, symBinAddr: 0x20C80, symSize: 0x20 } + - { offsetInCU: 0xF25, offset: 0x6B6F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD10, symBinAddr: 0x20E10, symSize: 0x20 } + - { offsetInCU: 0xF41, offset: 0x6B714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD30, symBinAddr: 0x20E30, symSize: 0x20 } + - { offsetInCU: 0xF63, offset: 0x6B736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF20, symBinAddr: 0x21020, symSize: 0x20 } + - { offsetInCU: 0xF7F, offset: 0x6B752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF40, symBinAddr: 0x21040, symSize: 0x20 } + - { offsetInCU: 0x106E, offset: 0x6B841, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x20700, symSize: 0x100 } + - { offsetInCU: 0x109F, offset: 0x6B872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x700, symBinAddr: 0x20800, symSize: 0x1B0 } + - { offsetInCU: 0x10D0, offset: 0x6B8A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B0, symBinAddr: 0x209B0, symSize: 0x170 } + - { offsetInCU: 0xA6, offset: 0x6BA5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3B0, symBinAddr: 0x22770, symSize: 0x10 } + - { offsetInCU: 0xE2, offset: 0x6BA9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x3C0, symBinAddr: 0x22780, symSize: 0x40 } + - { offsetInCU: 0x1C6, offset: 0x6BB7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x400, symBinAddr: 0x227C0, symSize: 0x20 } + - { offsetInCU: 0x4B2, offset: 0x6BE6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x460, symBinAddr: 0x22820, symSize: 0x10 } + - { offsetInCU: 0x4C6, offset: 0x6BE7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x470, symBinAddr: 0x22830, symSize: 0x30 } + - { offsetInCU: 0x4DA, offset: 0x6BE92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x4A0, symBinAddr: 0x22860, symSize: 0x30 } + - { offsetInCU: 0x4EE, offset: 0x6BEA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x4D0, symBinAddr: 0x22890, symSize: 0x80 } + - { offsetInCU: 0x502, offset: 0x6BEBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x550, symBinAddr: 0x22910, symSize: 0x250 } + - { offsetInCU: 0x516, offset: 0x6BECE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0x7A0, symBinAddr: 0x22B60, symSize: 0x4F0 } + - { offsetInCU: 0x531, offset: 0x6BEE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xC90, symBinAddr: 0x23050, symSize: 0x30 } + - { offsetInCU: 0x55A, offset: 0x6BF12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xCC0, symBinAddr: 0x23080, symSize: 0x20 } + - { offsetInCU: 0x56E, offset: 0x6BF26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xCE0, symBinAddr: 0x230A0, symSize: 0x30 } + - { offsetInCU: 0x582, offset: 0x6BF3A, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xD10, symBinAddr: 0x230D0, symSize: 0x10 } + - { offsetInCU: 0x596, offset: 0x6BF4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xD20, symBinAddr: 0x230E0, symSize: 0x340 } + - { offsetInCU: 0x5AA, offset: 0x6BF62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x1060, symBinAddr: 0x23420, symSize: 0x40 } + - { offsetInCU: 0x5BE, offset: 0x6BF76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x10A0, symBinAddr: 0x23460, symSize: 0x90 } + - { offsetInCU: 0x5D2, offset: 0x6BF8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x1130, symBinAddr: 0x234F0, symSize: 0x10 } + - { offsetInCU: 0x5E6, offset: 0x6BF9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1150, symBinAddr: 0x23510, symSize: 0x10 } + - { offsetInCU: 0x5FA, offset: 0x6BFB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x11A0, symBinAddr: 0x23560, symSize: 0x50 } + - { offsetInCU: 0x60E, offset: 0x6BFC6, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11F0, symBinAddr: 0x235B0, symSize: 0x20 } + - { offsetInCU: 0x622, offset: 0x6BFDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x1210, symBinAddr: 0x235D0, symSize: 0x40 } + - { offsetInCU: 0x636, offset: 0x6BFEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1250, symBinAddr: 0x23610, symSize: 0x40 } + - { offsetInCU: 0x64A, offset: 0x6C002, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1290, symBinAddr: 0x23650, symSize: 0x50 } + - { offsetInCU: 0x65E, offset: 0x6C016, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x12E0, symBinAddr: 0x236A0, symSize: 0x10 } + - { offsetInCU: 0x672, offset: 0x6C02A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x12F0, symBinAddr: 0x236B0, symSize: 0x30 } + - { offsetInCU: 0x686, offset: 0x6C03E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x1320, symBinAddr: 0x236E0, symSize: 0x80 } + - { offsetInCU: 0x69A, offset: 0x6C052, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x13A0, symBinAddr: 0x23760, symSize: 0xE0 } + - { offsetInCU: 0x6AE, offset: 0x6C066, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1480, symBinAddr: 0x23840, symSize: 0x30 } + - { offsetInCU: 0x6C2, offset: 0x6C07A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x14B0, symBinAddr: 0x23870, symSize: 0x90 } + - { offsetInCU: 0x6D6, offset: 0x6C08E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1540, symBinAddr: 0x23900, symSize: 0x50 } + - { offsetInCU: 0x6EA, offset: 0x6C0A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1590, symBinAddr: 0x23950, symSize: 0x60 } + - { offsetInCU: 0x6FE, offset: 0x6C0B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x239B0, symSize: 0x10 } + - { offsetInCU: 0x712, offset: 0x6C0CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1600, symBinAddr: 0x239C0, symSize: 0x30 } + - { offsetInCU: 0x726, offset: 0x6C0DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x1630, symBinAddr: 0x239F0, symSize: 0x40 } + - { offsetInCU: 0x73A, offset: 0x6C0F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x23A30, symSize: 0x60 } + - { offsetInCU: 0x74E, offset: 0x6C106, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x16F0, symBinAddr: 0x23A90, symSize: 0x50 } + - { offsetInCU: 0x762, offset: 0x6C11A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1740, symBinAddr: 0x23AE0, symSize: 0x40 } + - { offsetInCU: 0x776, offset: 0x6C12E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x1780, symBinAddr: 0x23B20, symSize: 0x50 } + - { offsetInCU: 0x78A, offset: 0x6C142, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x17D0, symBinAddr: 0x23B70, symSize: 0x10 } + - { offsetInCU: 0x79E, offset: 0x6C156, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x17F0, symBinAddr: 0x23B80, symSize: 0x40 } + - { offsetInCU: 0x7B2, offset: 0x6C16A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1830, symBinAddr: 0x23BC0, symSize: 0x50 } + - { offsetInCU: 0x7C6, offset: 0x6C17E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1880, symBinAddr: 0x23C10, symSize: 0x10 } + - { offsetInCU: 0x7DA, offset: 0x6C192, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x18A0, symBinAddr: 0x23C20, symSize: 0x80 } + - { offsetInCU: 0x7EE, offset: 0x6C1A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1920, symBinAddr: 0x23CA0, symSize: 0xD0 } + - { offsetInCU: 0x802, offset: 0x6C1BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x19F0, symBinAddr: 0x23D70, symSize: 0x10 } + - { offsetInCU: 0x816, offset: 0x6C1CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1A00, symBinAddr: 0x23D80, symSize: 0x10 } + - { offsetInCU: 0x82A, offset: 0x6C1E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1A10, symBinAddr: 0x23D90, symSize: 0x10 } + - { offsetInCU: 0x83E, offset: 0x6C1F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1A20, symBinAddr: 0x23DA0, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x6C26D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x420, symBinAddr: 0x227E0, symSize: 0x40 } + - { offsetInCU: 0xA59, offset: 0x6C411, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x223F0, symSize: 0x10 } + - { offsetInCU: 0xA8E, offset: 0x6C446, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x22400, symSize: 0xD0 } + - { offsetInCU: 0xAEB, offset: 0x6C4A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0xE0, symBinAddr: 0x224D0, symSize: 0x30 } + - { offsetInCU: 0xB05, offset: 0x6C4BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x110, symBinAddr: 0x22500, symSize: 0x30 } + - { offsetInCU: 0xB39, offset: 0x6C4F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x140, symBinAddr: 0x22530, symSize: 0x10 } + - { offsetInCU: 0xB4D, offset: 0x6C505, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x150, symBinAddr: 0x22540, symSize: 0x10 } + - { offsetInCU: 0xB6E, offset: 0x6C526, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x160, symBinAddr: 0x22550, symSize: 0x10 } + - { offsetInCU: 0xB82, offset: 0x6C53A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x170, symBinAddr: 0x22560, symSize: 0x10 } + - { offsetInCU: 0xBB6, offset: 0x6C56E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x180, symBinAddr: 0x22570, symSize: 0x20 } + - { offsetInCU: 0xBDA, offset: 0x6C592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x1A0, symBinAddr: 0x22590, symSize: 0x10 } + - { offsetInCU: 0xBFB, offset: 0x6C5B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x1B0, symBinAddr: 0x225A0, symSize: 0x30 } + - { offsetInCU: 0xC0F, offset: 0x6C5C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x210, symBinAddr: 0x225D0, symSize: 0x20 } + - { offsetInCU: 0xC23, offset: 0x6C5DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x230, symBinAddr: 0x225F0, symSize: 0x30 } + - { offsetInCU: 0xC37, offset: 0x6C5EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x260, symBinAddr: 0x22620, symSize: 0x30 } + - { offsetInCU: 0xC4B, offset: 0x6C603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x290, symBinAddr: 0x22650, symSize: 0x10 } + - { offsetInCU: 0xC5F, offset: 0x6C617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x2A0, symBinAddr: 0x22660, symSize: 0x10 } + - { offsetInCU: 0xC91, offset: 0x6C649, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x2B0, symBinAddr: 0x22670, symSize: 0x10 } + - { offsetInCU: 0xCA5, offset: 0x6C65D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x2C0, symBinAddr: 0x22680, symSize: 0x10 } + - { offsetInCU: 0xCC6, offset: 0x6C67E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x2D0, symBinAddr: 0x22690, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x6C692, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x2E0, symBinAddr: 0x226A0, symSize: 0x10 } + - { offsetInCU: 0xD0C, offset: 0x6C6C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x2F0, symBinAddr: 0x226B0, symSize: 0x20 } + - { offsetInCU: 0xD30, offset: 0x6C6E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x310, symBinAddr: 0x226D0, symSize: 0x10 } + - { offsetInCU: 0xD51, offset: 0x6C709, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x320, symBinAddr: 0x226E0, symSize: 0x20 } + - { offsetInCU: 0xD75, offset: 0x6C72D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x340, symBinAddr: 0x22700, symSize: 0x10 } + - { offsetInCU: 0xDA4, offset: 0x6C75C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x350, symBinAddr: 0x22710, symSize: 0x20 } + - { offsetInCU: 0xE2F, offset: 0x6C7E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x370, symBinAddr: 0x22730, symSize: 0x40 } + - { offsetInCU: 0x544, offset: 0x6CE53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2670, symBinAddr: 0x26460, symSize: 0x780 } + - { offsetInCU: 0xA9F, offset: 0x6D3AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x85A0, symBinAddr: 0x2C390, symSize: 0x30 } + - { offsetInCU: 0x1B5D, offset: 0x6E46C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x17800, symBinAddr: 0x3B5F0, symSize: 0x80 } + - { offsetInCU: 0x1BDF, offset: 0x6E4EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x189F0, symBinAddr: 0x3C7E0, symSize: 0x40 } + - { offsetInCU: 0x1BFB, offset: 0x6E50A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x18A30, symBinAddr: 0x3C820, symSize: 0x160 } + - { offsetInCU: 0x1D04, offset: 0x6E613, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x18B90, symBinAddr: 0x3C980, symSize: 0x50 } + - { offsetInCU: 0x1D82, offset: 0x6E691, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x18C30, symBinAddr: 0x3C9D0, symSize: 0x40 } + - { offsetInCU: 0x1E10, offset: 0x6E71F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x18C70, symBinAddr: 0x3CA10, symSize: 0x40 } + - { offsetInCU: 0x1E7E, offset: 0x6E78D, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x18CB0, symBinAddr: 0x3CA50, symSize: 0x60 } + - { offsetInCU: 0x254A, offset: 0x6EE59, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x19C00, symBinAddr: 0x3D9A0, symSize: 0x90 } + - { offsetInCU: 0x25AE, offset: 0x6EEBD, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x19C90, symBinAddr: 0x3DA30, symSize: 0x80 } + - { offsetInCU: 0x267B, offset: 0x6EF8A, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x19E30, symBinAddr: 0x3DBD0, symSize: 0x40 } + - { offsetInCU: 0x289C, offset: 0x6F1AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1B030, symBinAddr: 0x3ED60, symSize: 0x1B0 } + - { offsetInCU: 0x29A1, offset: 0x6F2B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1B1E0, symBinAddr: 0x3EF10, symSize: 0x3E0 } + - { offsetInCU: 0x311A, offset: 0x6FA29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1C640, symBinAddr: 0x40370, symSize: 0xD90 } + - { offsetInCU: 0x4224, offset: 0x70B33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D3D0, symBinAddr: 0x41100, symSize: 0x1E0 } + - { offsetInCU: 0x4395, offset: 0x70CA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D5B0, symBinAddr: 0x412E0, symSize: 0x1B0 } + - { offsetInCU: 0x478D, offset: 0x7109C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1E200, symBinAddr: 0x41F30, symSize: 0x10 } + - { offsetInCU: 0x47A1, offset: 0x710B0, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1E2C0, symBinAddr: 0x41FF0, symSize: 0x20 } + - { offsetInCU: 0x47B5, offset: 0x710C4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1E2E0, symBinAddr: 0x42010, symSize: 0x20 } + - { offsetInCU: 0x47C9, offset: 0x710D8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1E300, symBinAddr: 0x42030, symSize: 0x40 } + - { offsetInCU: 0x47DD, offset: 0x710EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1E360, symBinAddr: 0x42070, symSize: 0x30 } + - { offsetInCU: 0x47F1, offset: 0x71100, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1E390, symBinAddr: 0x420A0, symSize: 0x180 } + - { offsetInCU: 0x4805, offset: 0x71114, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1E510, symBinAddr: 0x42220, symSize: 0x2D0 } + - { offsetInCU: 0x4819, offset: 0x71128, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1E7E0, symBinAddr: 0x424F0, symSize: 0x70 } + - { offsetInCU: 0x482D, offset: 0x7113C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1E850, symBinAddr: 0x42560, symSize: 0x30 } + - { offsetInCU: 0x4841, offset: 0x71150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1E880, symBinAddr: 0x42590, symSize: 0xD0 } + - { offsetInCU: 0x4855, offset: 0x71164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1E950, symBinAddr: 0x42660, symSize: 0xB0 } + - { offsetInCU: 0x48A8, offset: 0x711B7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1F070, symBinAddr: 0x42710, symSize: 0xC0 } + - { offsetInCU: 0x491E, offset: 0x7122D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F130, symBinAddr: 0x427D0, symSize: 0x80 } + - { offsetInCU: 0x494B, offset: 0x7125A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F1B0, symBinAddr: 0x42850, symSize: 0x80 } + - { offsetInCU: 0x49DF, offset: 0x712EE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1F230, symBinAddr: 0x428D0, symSize: 0x70 } + - { offsetInCU: 0x4B36, offset: 0x71445, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1F2A0, symBinAddr: 0x42940, symSize: 0x780 } + - { offsetInCU: 0x500F, offset: 0x7191E, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1FA20, symBinAddr: 0x430C0, symSize: 0x40 } + - { offsetInCU: 0x5023, offset: 0x71932, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1FB10, symBinAddr: 0x43130, symSize: 0x10 } + - { offsetInCU: 0x5037, offset: 0x71946, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1FB20, symBinAddr: 0x43140, symSize: 0x30 } + - { offsetInCU: 0x504B, offset: 0x7195A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1FB50, symBinAddr: 0x43170, symSize: 0x30 } + - { offsetInCU: 0x505F, offset: 0x7196E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1FBF0, symBinAddr: 0x431C0, symSize: 0x20 } + - { offsetInCU: 0x5073, offset: 0x71982, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1FC90, symBinAddr: 0x43240, symSize: 0x30 } + - { offsetInCU: 0x50A8, offset: 0x719B7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1FD90, symBinAddr: 0x43340, symSize: 0x40 } + - { offsetInCU: 0x50BC, offset: 0x719CB, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1FE00, symBinAddr: 0x433B0, symSize: 0x30 } + - { offsetInCU: 0x50D0, offset: 0x719DF, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1FE30, symBinAddr: 0x433E0, symSize: 0x30 } + - { offsetInCU: 0x50E4, offset: 0x719F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1FE80, symBinAddr: 0x43430, symSize: 0x50 } + - { offsetInCU: 0x50F8, offset: 0x71A07, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1FED0, symBinAddr: 0x43480, symSize: 0x40 } + - { offsetInCU: 0x510C, offset: 0x71A1B, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1FFA0, symBinAddr: 0x43550, symSize: 0x10 } + - { offsetInCU: 0x5120, offset: 0x71A2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1FFB0, symBinAddr: 0x43560, symSize: 0x20 } + - { offsetInCU: 0x5134, offset: 0x71A43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1FFD0, symBinAddr: 0x43580, symSize: 0x30 } + - { offsetInCU: 0x5148, offset: 0x71A57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x20040, symBinAddr: 0x435F0, symSize: 0x40 } + - { offsetInCU: 0x57B9, offset: 0x720C8, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xB400, symBinAddr: 0x2F1F0, symSize: 0x4B0 } + - { offsetInCU: 0x5908, offset: 0x72217, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xCAB0, symBinAddr: 0x308A0, symSize: 0x3C0 } + - { offsetInCU: 0x5C0C, offset: 0x7251B, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xCE70, symBinAddr: 0x30C60, symSize: 0x390 } + - { offsetInCU: 0x6084, offset: 0x72993, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x11880, symBinAddr: 0x35670, symSize: 0x1B0 } + - { offsetInCU: 0x646E, offset: 0x72D7D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x1A390, symBinAddr: 0x3E130, symSize: 0xE0 } + - { offsetInCU: 0x65B6, offset: 0x72EC5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x1A4B0, symBinAddr: 0x3E210, symSize: 0xF0 } + - { offsetInCU: 0x66D3, offset: 0x72FE2, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1AE10, symBinAddr: 0x3EB40, symSize: 0x220 } + - { offsetInCU: 0x67E3, offset: 0x730F2, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1B5C0, symBinAddr: 0x3F2F0, symSize: 0x1A0 } + - { offsetInCU: 0x6B29, offset: 0x73438, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1D970, symBinAddr: 0x416A0, symSize: 0x240 } + - { offsetInCU: 0x6C58, offset: 0x73567, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x1DBB0, symBinAddr: 0x418E0, symSize: 0xF0 } + - { offsetInCU: 0x6DA6, offset: 0x736B5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x1DCA0, symBinAddr: 0x419D0, symSize: 0xF0 } + - { offsetInCU: 0x6F08, offset: 0x73817, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x1DD90, symBinAddr: 0x41AC0, symSize: 0xE0 } + - { offsetInCU: 0x705E, offset: 0x7396D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x1DE70, symBinAddr: 0x41BA0, symSize: 0xF0 } + - { offsetInCU: 0x71A0, offset: 0x73AAF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x1DF60, symBinAddr: 0x41C90, symSize: 0xE0 } + - { offsetInCU: 0x7302, offset: 0x73C11, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1E120, symBinAddr: 0x41E50, symSize: 0xE0 } + - { offsetInCU: 0x7479, offset: 0x73D88, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1FCC0, symBinAddr: 0x43270, symSize: 0xD0 } + - { offsetInCU: 0x79E0, offset: 0x742EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x23DF0, symSize: 0x170 } + - { offsetInCU: 0x7A56, offset: 0x74365, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x170, symBinAddr: 0x23F60, symSize: 0x80 } + - { offsetInCU: 0x7BB2, offset: 0x744C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x1F0, symBinAddr: 0x23FE0, symSize: 0x2140 } + - { offsetInCU: 0x8B6D, offset: 0x7547C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xD200, symBinAddr: 0x30FF0, symSize: 0x3D60 } + - { offsetInCU: 0x9FB7, offset: 0x768C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x10F60, symBinAddr: 0x34D50, symSize: 0x640 } + - { offsetInCU: 0xA3D3, offset: 0x76CE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x130C0, symBinAddr: 0x36EB0, symSize: 0x2E30 } + - { offsetInCU: 0xB92A, offset: 0x78239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x16F20, symBinAddr: 0x3AD10, symSize: 0x450 } + - { offsetInCU: 0xBABB, offset: 0x783CA, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x2330, symBinAddr: 0x26120, symSize: 0x340 } + - { offsetInCU: 0xBEBE, offset: 0x787CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x2DF0, symBinAddr: 0x26BE0, symSize: 0x460 } + - { offsetInCU: 0xC14A, offset: 0x78A59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3250, symBinAddr: 0x27040, symSize: 0x4C20 } + - { offsetInCU: 0xDDAC, offset: 0x7A6BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7E70, symBinAddr: 0x2BC60, symSize: 0x2E0 } + - { offsetInCU: 0xDEA3, offset: 0x7A7B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x85D0, symBinAddr: 0x2C3C0, symSize: 0x1CB0 } + - { offsetInCU: 0xE8AC, offset: 0x7B1BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x8150, symBinAddr: 0x2BF40, symSize: 0x120 } + - { offsetInCU: 0xE925, offset: 0x7B234, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x8270, symBinAddr: 0x2C060, symSize: 0x120 } + - { offsetInCU: 0xE940, offset: 0x7B24F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x8390, symBinAddr: 0x2C180, symSize: 0x210 } + - { offsetInCU: 0xEC74, offset: 0x7B583, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0xA280, symBinAddr: 0x2E070, symSize: 0x4C0 } + - { offsetInCU: 0xEED1, offset: 0x7B7E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xB8B0, symBinAddr: 0x2F6A0, symSize: 0x1200 } + - { offsetInCU: 0xF7E6, offset: 0x7C0F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xA740, symBinAddr: 0x2E530, symSize: 0xCC0 } + - { offsetInCU: 0x101FC, offset: 0x7CB0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x11A30, symBinAddr: 0x35820, symSize: 0x1690 } + - { offsetInCU: 0x11314, offset: 0x7DC23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1B760, symBinAddr: 0x3F490, symSize: 0xD70 } + - { offsetInCU: 0x11CCE, offset: 0x7E5DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x15EF0, symBinAddr: 0x39CE0, symSize: 0x1030 } + - { offsetInCU: 0x127C5, offset: 0x7F0D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x17370, symBinAddr: 0x3B160, symSize: 0x1C0 } + - { offsetInCU: 0x12849, offset: 0x7F158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x17530, symBinAddr: 0x3B320, symSize: 0x2D0 } + - { offsetInCU: 0x1296E, offset: 0x7F27D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x17880, symBinAddr: 0x3B670, symSize: 0x1170 } + - { offsetInCU: 0x13336, offset: 0x7FC45, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x18D10, symBinAddr: 0x3CAB0, symSize: 0x60 } + - { offsetInCU: 0x13374, offset: 0x7FC83, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x18D70, symBinAddr: 0x3CB10, symSize: 0x30 } + - { offsetInCU: 0x133BB, offset: 0x7FCCA, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x18DA0, symBinAddr: 0x3CB40, symSize: 0x80 } + - { offsetInCU: 0x13455, offset: 0x7FD64, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x18E20, symBinAddr: 0x3CBC0, symSize: 0x60 } + - { offsetInCU: 0x134F1, offset: 0x7FE00, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x18E80, symBinAddr: 0x3CC20, symSize: 0x50 } + - { offsetInCU: 0x1356A, offset: 0x7FE79, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x18F20, symBinAddr: 0x3CCC0, symSize: 0xE0 } + - { offsetInCU: 0x135CE, offset: 0x7FEDD, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19000, symBinAddr: 0x3CDA0, symSize: 0xC0 } + - { offsetInCU: 0x135F7, offset: 0x7FF06, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x190C0, symBinAddr: 0x3CE60, symSize: 0x180 } + - { offsetInCU: 0x136E0, offset: 0x7FFEF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x19240, symBinAddr: 0x3CFE0, symSize: 0x110 } + - { offsetInCU: 0x1380F, offset: 0x8011E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x19350, symBinAddr: 0x3D0F0, symSize: 0x130 } + - { offsetInCU: 0x1393E, offset: 0x8024D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x19480, symBinAddr: 0x3D220, symSize: 0x180 } + - { offsetInCU: 0x13AAF, offset: 0x803BE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x19600, symBinAddr: 0x3D3A0, symSize: 0x1A0 } + - { offsetInCU: 0x13C27, offset: 0x80536, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x197A0, symBinAddr: 0x3D540, symSize: 0x110 } + - { offsetInCU: 0x13D5D, offset: 0x8066C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x198B0, symBinAddr: 0x3D650, symSize: 0x110 } + - { offsetInCU: 0x13E93, offset: 0x807A2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x19AF0, symBinAddr: 0x3D890, symSize: 0x110 } + - { offsetInCU: 0x13FB1, offset: 0x808C0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x19D10, symBinAddr: 0x3DAB0, symSize: 0x120 } + - { offsetInCU: 0x1409C, offset: 0x809AB, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1A140, symBinAddr: 0x3DEE0, symSize: 0x180 } + - { offsetInCU: 0x1416B, offset: 0x80A7A, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1A2C0, symBinAddr: 0x3E060, symSize: 0xD0 } + - { offsetInCU: 0x14211, offset: 0x80B20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x1A5A0, symBinAddr: 0x3E300, symSize: 0x6B0 } + - { offsetInCU: 0x1452A, offset: 0x80E39, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1AC50, symBinAddr: 0x3E9B0, symSize: 0x170 } + - { offsetInCU: 0x1472C, offset: 0x8103B, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1C4D0, symBinAddr: 0x40200, symSize: 0x170 } + - { offsetInCU: 0x27, offset: 0x81760, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43660, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x81778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43660, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x8178C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x43690, symSize: 0x140 } + - { offsetInCU: 0x67, offset: 0x817A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x437D0, symSize: 0x440 } + - { offsetInCU: 0x7B, offset: 0x817B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x43C10, symSize: 0x590 } + - { offsetInCU: 0x8F, offset: 0x817C8, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x441A0, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x817DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x441B0, symSize: 0x440 } + - { offsetInCU: 0xB7, offset: 0x817F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x445F0, symSize: 0x40 } + - { offsetInCU: 0xCB, offset: 0x81804, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x44630, symSize: 0x110 } + - { offsetInCU: 0xDF, offset: 0x81818, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x44740, symSize: 0xA } + - { offsetInCU: 0x4F9, offset: 0x81DF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA480, symBinAddr: 0x4EBD0, symSize: 0x250 } + - { offsetInCU: 0x5CD, offset: 0x81EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA6D0, symBinAddr: 0x4EE20, symSize: 0x260 } + - { offsetInCU: 0x6B0, offset: 0x81FA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xEE70, symBinAddr: 0x535C0, symSize: 0x8E0 } + - { offsetInCU: 0x9E6, offset: 0x822DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xF750, symBinAddr: 0x53EA0, symSize: 0xA50 } + - { offsetInCU: 0xCC0, offset: 0x825B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0x101A0, symBinAddr: 0x548F0, symSize: 0x300 } + - { offsetInCU: 0xDD8, offset: 0x826D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x10C90, symBinAddr: 0x553E0, symSize: 0x950 } + - { offsetInCU: 0x10CE, offset: 0x829C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x115E0, symBinAddr: 0x55D30, symSize: 0xBD0 } + - { offsetInCU: 0x13A8, offset: 0x82CA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x121B0, symBinAddr: 0x56900, symSize: 0x370 } + - { offsetInCU: 0x14C0, offset: 0x82DB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x12520, symBinAddr: 0x56C70, symSize: 0x210 } + - { offsetInCU: 0x190C, offset: 0x83205, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2480, symBinAddr: 0x46BD0, symSize: 0x30 } + - { offsetInCU: 0x1E10, offset: 0x83709, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0xAA10, symBinAddr: 0x4F160, symSize: 0x20 } + - { offsetInCU: 0x1E55, offset: 0x8374E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xAA30, symBinAddr: 0x4F180, symSize: 0x90 } + - { offsetInCU: 0x1F1C, offset: 0x83815, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0xB710, symBinAddr: 0x4FE60, symSize: 0x50 } + - { offsetInCU: 0x1F56, offset: 0x8384F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0xB760, symBinAddr: 0x4FEB0, symSize: 0x50 } + - { offsetInCU: 0x1FAC, offset: 0x838A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB7B0, symBinAddr: 0x4FF00, symSize: 0x60 } + - { offsetInCU: 0x1FDF, offset: 0x838D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xB810, symBinAddr: 0x4FF60, symSize: 0x10 } + - { offsetInCU: 0x201E, offset: 0x83917, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB820, symBinAddr: 0x4FF70, symSize: 0x70 } + - { offsetInCU: 0x2074, offset: 0x8396D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xB890, symBinAddr: 0x4FFE0, symSize: 0x90 } + - { offsetInCU: 0x20E5, offset: 0x839DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xB920, symBinAddr: 0x50070, symSize: 0xE0 } + - { offsetInCU: 0x2167, offset: 0x83A60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xBA00, symBinAddr: 0x50150, symSize: 0x10 } + - { offsetInCU: 0x2183, offset: 0x83A7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xBA10, symBinAddr: 0x50160, symSize: 0x10 } + - { offsetInCU: 0x21BD, offset: 0x83AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xBA20, symBinAddr: 0x50170, symSize: 0x60 } + - { offsetInCU: 0x24DE, offset: 0x83DD7, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xCEF0, symBinAddr: 0x51640, symSize: 0x120 } + - { offsetInCU: 0x2544, offset: 0x83E3D, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xD130, symBinAddr: 0x51880, symSize: 0x2A0 } + - { offsetInCU: 0x26C8, offset: 0x83FC1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xD9C0, symBinAddr: 0x52110, symSize: 0x70 } + - { offsetInCU: 0x2CC4, offset: 0x845BD, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xE2E0, symBinAddr: 0x52A30, symSize: 0x450 } + - { offsetInCU: 0x34EB, offset: 0x84DE4, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xE730, symBinAddr: 0x52E80, symSize: 0x2D0 } + - { offsetInCU: 0x38AD, offset: 0x851A6, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xEA00, symBinAddr: 0x53150, symSize: 0x160 } + - { offsetInCU: 0x3AA8, offset: 0x853A1, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xEB60, symBinAddr: 0x532B0, symSize: 0x1E0 } + - { offsetInCU: 0x3CF1, offset: 0x855EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x13020, symBinAddr: 0x57770, symSize: 0x130 } + - { offsetInCU: 0x3E3B, offset: 0x85734, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x16020, symBinAddr: 0x5A770, symSize: 0x130 } + - { offsetInCU: 0x3F53, offset: 0x8584C, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x167A0, symBinAddr: 0x5AE80, symSize: 0x20 } + - { offsetInCU: 0x3F67, offset: 0x85860, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x167C0, symBinAddr: 0x5AEA0, symSize: 0x20 } + - { offsetInCU: 0x3F7B, offset: 0x85874, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x16840, symBinAddr: 0x5AEC0, symSize: 0x40 } + - { offsetInCU: 0x3F8F, offset: 0x85888, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x16930, symBinAddr: 0x5AF00, symSize: 0x30 } + - { offsetInCU: 0x3FA3, offset: 0x8589C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x16960, symBinAddr: 0x5AF30, symSize: 0x30 } + - { offsetInCU: 0x3FB7, offset: 0x858B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOd', symObjAddr: 0x16990, symBinAddr: 0x5AF60, symSize: 0x40 } + - { offsetInCU: 0x3FCB, offset: 0x858C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x169D0, symBinAddr: 0x5AFA0, symSize: 0x10 } + - { offsetInCU: 0x3FDF, offset: 0x858D8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x169E0, symBinAddr: 0x5AFB0, symSize: 0x20 } + - { offsetInCU: 0x3FF3, offset: 0x858EC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x16A00, symBinAddr: 0x5AFD0, symSize: 0x10 } + - { offsetInCU: 0x4007, offset: 0x85900, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x16A90, symBinAddr: 0x5B020, symSize: 0x40 } + - { offsetInCU: 0x405F, offset: 0x85958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x16B50, symBinAddr: 0x5B0E0, symSize: 0x20 } + - { offsetInCU: 0x409B, offset: 0x85994, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x16BA0, symBinAddr: 0x5B130, symSize: 0x30 } + - { offsetInCU: 0x4BAE, offset: 0x864A7, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x0, symBinAddr: 0x44750, symSize: 0x70 } + - { offsetInCU: 0x4C0F, offset: 0x86508, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x70, symBinAddr: 0x447C0, symSize: 0xA0 } + - { offsetInCU: 0x4D56, offset: 0x8664F, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x110, symBinAddr: 0x44860, symSize: 0x90 } + - { offsetInCU: 0x4E6C, offset: 0x86765, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x448F0, symSize: 0x60 } + - { offsetInCU: 0x4EC8, offset: 0x867C1, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x200, symBinAddr: 0x44950, symSize: 0x10 } + - { offsetInCU: 0x4EE3, offset: 0x867DC, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x210, symBinAddr: 0x44960, symSize: 0x140 } + - { offsetInCU: 0x4F4E, offset: 0x86847, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x350, symBinAddr: 0x44AA0, symSize: 0xE0 } + - { offsetInCU: 0x5030, offset: 0x86929, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x430, symBinAddr: 0x44B80, symSize: 0x2D0 } + - { offsetInCU: 0x51AE, offset: 0x86AA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x700, symBinAddr: 0x44E50, symSize: 0xD90 } + - { offsetInCU: 0x561D, offset: 0x86F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x1490, symBinAddr: 0x45BE0, symSize: 0x4F0 } + - { offsetInCU: 0x589C, offset: 0x87195, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1980, symBinAddr: 0x460D0, symSize: 0xB00 } + - { offsetInCU: 0x5C0F, offset: 0x87508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x24B0, symBinAddr: 0x46C00, symSize: 0x2870 } + - { offsetInCU: 0x7052, offset: 0x8894B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x104A0, symBinAddr: 0x54BF0, symSize: 0x7F0 } + - { offsetInCU: 0x7410, offset: 0x88D09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4D20, symBinAddr: 0x49470, symSize: 0x19B0 } + - { offsetInCU: 0x8255, offset: 0x89B4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x66D0, symBinAddr: 0x4AE20, symSize: 0x1200 } + - { offsetInCU: 0x8C0F, offset: 0x8A508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x78D0, symBinAddr: 0x4C020, symSize: 0x400 } + - { offsetInCU: 0x8D78, offset: 0x8A671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x86F0, symBinAddr: 0x4CE40, symSize: 0x210 } + - { offsetInCU: 0x9003, offset: 0x8A8FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8900, symBinAddr: 0x4D050, symSize: 0xA60 } + - { offsetInCU: 0x97BC, offset: 0x8B0B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x9360, symBinAddr: 0x4DAB0, symSize: 0x2F0 } + - { offsetInCU: 0x990E, offset: 0x8B207, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9650, symBinAddr: 0x4DDA0, symSize: 0x6F0 } + - { offsetInCU: 0x9CDD, offset: 0x8B5D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x9D40, symBinAddr: 0x4E490, symSize: 0x740 } + - { offsetInCU: 0x9F97, offset: 0x8B890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0xA930, symBinAddr: 0x4F080, symSize: 0xC0 } + - { offsetInCU: 0x9FBA, offset: 0x8B8B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0xA9F0, symBinAddr: 0x4F140, symSize: 0x20 } + - { offsetInCU: 0xA045, offset: 0x8B93E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0xAAC0, symBinAddr: 0x4F210, symSize: 0xC10 } + - { offsetInCU: 0xA4A8, offset: 0x8BDA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0xB6D0, symBinAddr: 0x4FE20, symSize: 0x40 } + - { offsetInCU: 0xA51B, offset: 0x8BE14, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xBA80, symBinAddr: 0x501D0, symSize: 0x10 } + - { offsetInCU: 0xA536, offset: 0x8BE2F, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0xBA90, symBinAddr: 0x501E0, symSize: 0x10 } + - { offsetInCU: 0xA55F, offset: 0x8BE58, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xBAA0, symBinAddr: 0x501F0, symSize: 0xC0 } + - { offsetInCU: 0xA5D2, offset: 0x8BECB, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xBB60, symBinAddr: 0x502B0, symSize: 0xC0 } + - { offsetInCU: 0xA67E, offset: 0x8BF77, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xBCF0, symBinAddr: 0x50440, symSize: 0x260 } + - { offsetInCU: 0xA70A, offset: 0x8C003, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xBF50, symBinAddr: 0x506A0, symSize: 0x220 } + - { offsetInCU: 0xA7DA, offset: 0x8C0D3, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xC170, symBinAddr: 0x508C0, symSize: 0x3C0 } + - { offsetInCU: 0xA8BD, offset: 0x8C1B6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xC530, symBinAddr: 0x50C80, symSize: 0x3D0 } + - { offsetInCU: 0xA9AE, offset: 0x8C2A7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xC900, symBinAddr: 0x51050, symSize: 0x220 } + - { offsetInCU: 0xAA4B, offset: 0x8C344, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xCB20, symBinAddr: 0x51270, symSize: 0x230 } + - { offsetInCU: 0xAAE1, offset: 0x8C3DA, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xCD50, symBinAddr: 0x514A0, symSize: 0x40 } + - { offsetInCU: 0xAB94, offset: 0x8C48D, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xCD90, symBinAddr: 0x514E0, symSize: 0xA0 } + - { offsetInCU: 0xAC49, offset: 0x8C542, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xCE30, symBinAddr: 0x51580, symSize: 0x40 } + - { offsetInCU: 0xAC86, offset: 0x8C57F, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xCE70, symBinAddr: 0x515C0, symSize: 0x20 } + - { offsetInCU: 0xACAF, offset: 0x8C5A8, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xCE90, symBinAddr: 0x515E0, symSize: 0x30 } + - { offsetInCU: 0xACD8, offset: 0x8C5D1, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xCEC0, symBinAddr: 0x51610, symSize: 0x20 } + - { offsetInCU: 0xAD19, offset: 0x8C612, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xD660, symBinAddr: 0x51DB0, symSize: 0x80 } + - { offsetInCU: 0xAD2D, offset: 0x8C626, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xD6E0, symBinAddr: 0x51E30, symSize: 0x60 } + - { offsetInCU: 0xAD5D, offset: 0x8C656, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xD740, symBinAddr: 0x51E90, symSize: 0x180 } + - { offsetInCU: 0xADBA, offset: 0x8C6B3, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xD8C0, symBinAddr: 0x52010, symSize: 0x100 } + - { offsetInCU: 0xADE1, offset: 0x8C6DA, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xDA30, symBinAddr: 0x52180, symSize: 0x2D0 } + - { offsetInCU: 0xAE16, offset: 0x8C70F, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xDD00, symBinAddr: 0x52450, symSize: 0xA0 } + - { offsetInCU: 0xAE2A, offset: 0x8C723, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xDDA0, symBinAddr: 0x524F0, symSize: 0x20 } + - { offsetInCU: 0xAE3E, offset: 0x8C737, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDDC0, symBinAddr: 0x52510, symSize: 0x20 } + - { offsetInCU: 0xAE52, offset: 0x8C74B, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xDDE0, symBinAddr: 0x52530, symSize: 0x20 } + - { offsetInCU: 0xAE89, offset: 0x8C782, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xDE00, symBinAddr: 0x52550, symSize: 0x110 } + - { offsetInCU: 0xAF87, offset: 0x8C880, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDF10, symBinAddr: 0x52660, symSize: 0x1A0 } + - { offsetInCU: 0xB0C7, offset: 0x8C9C0, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE0B0, symBinAddr: 0x52800, symSize: 0x130 } + - { offsetInCU: 0xB19B, offset: 0x8CA94, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xE1E0, symBinAddr: 0x52930, symSize: 0x100 } + - { offsetInCU: 0xB2E1, offset: 0x8CBDA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xED40, symBinAddr: 0x53490, symSize: 0x20 } + - { offsetInCU: 0xB303, offset: 0x8CBFC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xED60, symBinAddr: 0x534B0, symSize: 0x110 } + - { offsetInCU: 0xB3D5, offset: 0x8CCCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x12730, symBinAddr: 0x56E80, symSize: 0x8F0 } + - { offsetInCU: 0xB8E2, offset: 0x8D1DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13150, symBinAddr: 0x578A0, symSize: 0x2ED0 } + - { offsetInCU: 0xC054, offset: 0x8D94D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x16150, symBinAddr: 0x5A8A0, symSize: 0x5E0 } + - { offsetInCU: 0x95, offset: 0x8DDD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x10E0, symBinAddr: 0x5C330, symSize: 0x50 } + - { offsetInCU: 0xDF, offset: 0x8DE1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1130, symBinAddr: 0x5C380, symSize: 0x20 } + - { offsetInCU: 0x110, offset: 0x8DE50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1150, symBinAddr: 0x5C3A0, symSize: 0x10 } + - { offsetInCU: 0x12C, offset: 0x8DE6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1160, symBinAddr: 0x5C3B0, symSize: 0x10 } + - { offsetInCU: 0x148, offset: 0x8DE88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6FD0, symBinAddr: 0x62160, symSize: 0xF0 } + - { offsetInCU: 0x1DF, offset: 0x8DF1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x5C400, symSize: 0x50 } + - { offsetInCU: 0x216, offset: 0x8DF56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1200, symBinAddr: 0x5C450, symSize: 0x50 } + - { offsetInCU: 0x239, offset: 0x8DF79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x70C0, symBinAddr: 0x62250, symSize: 0x13C0 } + - { offsetInCU: 0x2C7, offset: 0x8E007, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1250, symBinAddr: 0x5C4A0, symSize: 0x10 } + - { offsetInCU: 0x31A, offset: 0x8E05A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1270, symBinAddr: 0x5C4C0, symSize: 0x20 } + - { offsetInCU: 0x394, offset: 0x8E0D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x12A0, symBinAddr: 0x5C4F0, symSize: 0x90 } + - { offsetInCU: 0x3C9, offset: 0x8E109, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1330, symBinAddr: 0x5C580, symSize: 0x20 } + - { offsetInCU: 0x3FA, offset: 0x8E13A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1350, symBinAddr: 0x5C5A0, symSize: 0x10 } + - { offsetInCU: 0x416, offset: 0x8E156, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1360, symBinAddr: 0x5C5B0, symSize: 0x10 } + - { offsetInCU: 0x432, offset: 0x8E172, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8EF0, symBinAddr: 0x636A0, symSize: 0x1B0 } + - { offsetInCU: 0x514, offset: 0x8E254, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13B0, symBinAddr: 0x5C600, symSize: 0x50 } + - { offsetInCU: 0x54B, offset: 0x8E28B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1400, symBinAddr: 0x5C650, symSize: 0x50 } + - { offsetInCU: 0x56E, offset: 0x8E2AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x90A0, symBinAddr: 0x63850, symSize: 0x1180 } + - { offsetInCU: 0x5F0, offset: 0x8E330, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1650, symBinAddr: 0x5C8A0, symSize: 0x30 } + - { offsetInCU: 0x621, offset: 0x8E361, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1680, symBinAddr: 0x5C8D0, symSize: 0x80 } + - { offsetInCU: 0x63D, offset: 0x8E37D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x5C950, symSize: 0x70 } + - { offsetInCU: 0x672, offset: 0x8E3B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5C9C0, symSize: 0x20 } + - { offsetInCU: 0x6C2, offset: 0x8E402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1790, symBinAddr: 0x5C9E0, symSize: 0x10 } + - { offsetInCU: 0x6DE, offset: 0x8E41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x5C9F0, symSize: 0x10 } + - { offsetInCU: 0x6FA, offset: 0x8E43A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xA370, symBinAddr: 0x64B20, symSize: 0x60 } + - { offsetInCU: 0x759, offset: 0x8E499, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x5CA40, symSize: 0x50 } + - { offsetInCU: 0x790, offset: 0x8E4D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1840, symBinAddr: 0x5CA90, symSize: 0x50 } + - { offsetInCU: 0x7B3, offset: 0x8E4F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA3D0, symBinAddr: 0x64B80, symSize: 0x210 } + - { offsetInCU: 0x817, offset: 0x8E557, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5CB00, symSize: 0x10 } + - { offsetInCU: 0x84C, offset: 0x8E58C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18C0, symBinAddr: 0x5CB10, symSize: 0x20 } + - { offsetInCU: 0x87D, offset: 0x8E5BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18E0, symBinAddr: 0x5CB30, symSize: 0x10 } + - { offsetInCU: 0x899, offset: 0x8E5D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x5CB40, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x8E5F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA5E0, symBinAddr: 0x64D90, symSize: 0x270 } + - { offsetInCU: 0xA01, offset: 0x8E741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1940, symBinAddr: 0x5CB90, symSize: 0x50 } + - { offsetInCU: 0xA38, offset: 0x8E778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1990, symBinAddr: 0x5CBE0, symSize: 0x50 } + - { offsetInCU: 0xA5B, offset: 0x8E79B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA850, symBinAddr: 0x65000, symSize: 0x5E0 } + - { offsetInCU: 0xAE8, offset: 0x8E828, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x19E0, symBinAddr: 0x5CC30, symSize: 0x10 } + - { offsetInCU: 0xB60, offset: 0x8E8A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5CC40, symSize: 0x40 } + - { offsetInCU: 0xC44, offset: 0x8E984, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A30, symBinAddr: 0x5CC80, symSize: 0x20 } + - { offsetInCU: 0xCCA, offset: 0x8EA0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A90, symBinAddr: 0x5CCE0, symSize: 0x30 } + - { offsetInCU: 0xD14, offset: 0x8EA54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5CD10, symSize: 0x20 } + - { offsetInCU: 0xD45, offset: 0x8EA85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x5CD30, symSize: 0x10 } + - { offsetInCU: 0xD61, offset: 0x8EAA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AF0, symBinAddr: 0x5CD40, symSize: 0x10 } + - { offsetInCU: 0xD7D, offset: 0x8EABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAE30, symBinAddr: 0x655E0, symSize: 0xA0 } + - { offsetInCU: 0xDFB, offset: 0x8EB3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5CD90, symSize: 0x30 } + - { offsetInCU: 0xE32, offset: 0x8EB72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B70, symBinAddr: 0x5CDC0, symSize: 0x20 } + - { offsetInCU: 0xE55, offset: 0x8EB95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAED0, symBinAddr: 0x65680, symSize: 0x180 } + - { offsetInCU: 0xEC5, offset: 0x8EC05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C30, symBinAddr: 0x5CE80, symSize: 0xA0 } + - { offsetInCU: 0xEFA, offset: 0x8EC3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1CD0, symBinAddr: 0x5CF20, symSize: 0x20 } + - { offsetInCU: 0xF2B, offset: 0x8EC6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1CF0, symBinAddr: 0x5CF40, symSize: 0x10 } + - { offsetInCU: 0xF47, offset: 0x8EC87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D00, symBinAddr: 0x5CF50, symSize: 0x10 } + - { offsetInCU: 0xF63, offset: 0x8ECA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xB050, symBinAddr: 0x65800, symSize: 0x1F0 } + - { offsetInCU: 0x105E, offset: 0x8ED9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D50, symBinAddr: 0x5CFA0, symSize: 0x50 } + - { offsetInCU: 0x1095, offset: 0x8EDD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1DA0, symBinAddr: 0x5CFF0, symSize: 0x50 } + - { offsetInCU: 0x10B8, offset: 0x8EDF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB240, symBinAddr: 0x659F0, symSize: 0x840 } + - { offsetInCU: 0x1152, offset: 0x8EE92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x5D190, symSize: 0x30 } + - { offsetInCU: 0x1183, offset: 0x8EEC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1F70, symBinAddr: 0x5D1C0, symSize: 0x30 } + - { offsetInCU: 0x1197, offset: 0x8EED7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1FA0, symBinAddr: 0x5D1F0, symSize: 0x10 } + - { offsetInCU: 0x11CC, offset: 0x8EF0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FB0, symBinAddr: 0x5D200, symSize: 0x20 } + - { offsetInCU: 0x121C, offset: 0x8EF5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x5D220, symSize: 0x10 } + - { offsetInCU: 0x1238, offset: 0x8EF78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FE0, symBinAddr: 0x5D230, symSize: 0x10 } + - { offsetInCU: 0x1254, offset: 0x8EF94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xBB10, symBinAddr: 0x662C0, symSize: 0x60 } + - { offsetInCU: 0x12D2, offset: 0x8F012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2030, symBinAddr: 0x5D280, symSize: 0x50 } + - { offsetInCU: 0x1309, offset: 0x8F049, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2080, symBinAddr: 0x5D2D0, symSize: 0x50 } + - { offsetInCU: 0x132C, offset: 0x8F06C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xBB70, symBinAddr: 0x66320, symSize: 0x950 } + - { offsetInCU: 0x1404, offset: 0x8F144, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6D80, symBinAddr: 0x61FB0, symSize: 0x50 } + - { offsetInCU: 0x145D, offset: 0x8F19D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6DD0, symBinAddr: 0x62000, symSize: 0x80 } + - { offsetInCU: 0x14B1, offset: 0x8F1F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6E50, symBinAddr: 0x62080, symSize: 0x10 } + - { offsetInCU: 0x14E6, offset: 0x8F226, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E60, symBinAddr: 0x62090, symSize: 0x20 } + - { offsetInCU: 0x1567, offset: 0x8F2A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6EB0, symBinAddr: 0x620E0, symSize: 0x10 } + - { offsetInCU: 0x1584, offset: 0x8F2C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x22C0, symBinAddr: 0x5D510, symSize: 0x20 } + - { offsetInCU: 0x1598, offset: 0x8F2D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x22E0, symBinAddr: 0x5D530, symSize: 0x140 } + - { offsetInCU: 0x15AC, offset: 0x8F2EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x2420, symBinAddr: 0x5D670, symSize: 0x4F0 } + - { offsetInCU: 0x15C0, offset: 0x8F300, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x2910, symBinAddr: 0x5DB60, symSize: 0xED0 } + - { offsetInCU: 0x15DB, offset: 0x8F31B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x37E0, symBinAddr: 0x5EA30, symSize: 0x30 } + - { offsetInCU: 0x1604, offset: 0x8F344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x3810, symBinAddr: 0x5EA60, symSize: 0x20 } + - { offsetInCU: 0x1618, offset: 0x8F358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x3830, symBinAddr: 0x5EA80, symSize: 0x20 } + - { offsetInCU: 0x162C, offset: 0x8F36C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x3850, symBinAddr: 0x5EAA0, symSize: 0x20 } + - { offsetInCU: 0x1640, offset: 0x8F380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x3870, symBinAddr: 0x5EAC0, symSize: 0x20 } + - { offsetInCU: 0x1654, offset: 0x8F394, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3890, symBinAddr: 0x5EAE0, symSize: 0x10 } + - { offsetInCU: 0x1668, offset: 0x8F3A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x38A0, symBinAddr: 0x5EAF0, symSize: 0x580 } + - { offsetInCU: 0x167C, offset: 0x8F3BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x3E20, symBinAddr: 0x5F070, symSize: 0x50 } + - { offsetInCU: 0x1690, offset: 0x8F3D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3E70, symBinAddr: 0x5F0C0, symSize: 0x140 } + - { offsetInCU: 0x16A4, offset: 0x8F3E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x3FB0, symBinAddr: 0x5F200, symSize: 0x10 } + - { offsetInCU: 0x16B8, offset: 0x8F3F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3FC0, symBinAddr: 0x5F210, symSize: 0x30 } + - { offsetInCU: 0x16CC, offset: 0x8F40C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x3FF0, symBinAddr: 0x5F240, symSize: 0x120 } + - { offsetInCU: 0x16E0, offset: 0x8F420, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x4110, symBinAddr: 0x5F360, symSize: 0x480 } + - { offsetInCU: 0x16F4, offset: 0x8F434, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x4590, symBinAddr: 0x5F7E0, symSize: 0x9D0 } + - { offsetInCU: 0x1708, offset: 0x8F448, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4F60, symBinAddr: 0x601B0, symSize: 0x10 } + - { offsetInCU: 0x171C, offset: 0x8F45C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4F70, symBinAddr: 0x601C0, symSize: 0x500 } + - { offsetInCU: 0x1730, offset: 0x8F470, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x5470, symBinAddr: 0x606C0, symSize: 0x50 } + - { offsetInCU: 0x1744, offset: 0x8F484, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x54C0, symBinAddr: 0x60710, symSize: 0x130 } + - { offsetInCU: 0x1758, offset: 0x8F498, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x55F0, symBinAddr: 0x60840, symSize: 0x10 } + - { offsetInCU: 0x176C, offset: 0x8F4AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x5600, symBinAddr: 0x60850, symSize: 0xC0 } + - { offsetInCU: 0x1780, offset: 0x8F4C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x56C0, symBinAddr: 0x60910, symSize: 0x240 } + - { offsetInCU: 0x1794, offset: 0x8F4D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x5900, symBinAddr: 0x60B50, symSize: 0x450 } + - { offsetInCU: 0x17A8, offset: 0x8F4E8, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5D50, symBinAddr: 0x60FA0, symSize: 0x10 } + - { offsetInCU: 0x17BC, offset: 0x8F4FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x5D60, symBinAddr: 0x60FB0, symSize: 0x250 } + - { offsetInCU: 0x17D0, offset: 0x8F510, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x5FB0, symBinAddr: 0x61200, symSize: 0x50 } + - { offsetInCU: 0x17E4, offset: 0x8F524, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x6000, symBinAddr: 0x61250, symSize: 0xA0 } + - { offsetInCU: 0x17F8, offset: 0x8F538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x60A0, symBinAddr: 0x612F0, symSize: 0x10 } + - { offsetInCU: 0x180C, offset: 0x8F54C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x60B0, symBinAddr: 0x61300, symSize: 0x70 } + - { offsetInCU: 0x1820, offset: 0x8F560, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x6120, symBinAddr: 0x61370, symSize: 0x150 } + - { offsetInCU: 0x1834, offset: 0x8F574, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x6270, symBinAddr: 0x614C0, symSize: 0x190 } + - { offsetInCU: 0x1848, offset: 0x8F588, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x6400, symBinAddr: 0x61650, symSize: 0x10 } + - { offsetInCU: 0x185C, offset: 0x8F59C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x6410, symBinAddr: 0x61660, symSize: 0x130 } + - { offsetInCU: 0x1870, offset: 0x8F5B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x6540, symBinAddr: 0x61790, symSize: 0x50 } + - { offsetInCU: 0x1884, offset: 0x8F5C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x6590, symBinAddr: 0x617E0, symSize: 0x80 } + - { offsetInCU: 0x1898, offset: 0x8F5D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x6610, symBinAddr: 0x61860, symSize: 0x10 } + - { offsetInCU: 0x18AC, offset: 0x8F5EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x6620, symBinAddr: 0x61870, symSize: 0x50 } + - { offsetInCU: 0x18C0, offset: 0x8F600, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x6670, symBinAddr: 0x618C0, symSize: 0x120 } + - { offsetInCU: 0x18D4, offset: 0x8F614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x6790, symBinAddr: 0x619E0, symSize: 0x1C0 } + - { offsetInCU: 0x18E8, offset: 0x8F628, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6950, symBinAddr: 0x61BA0, symSize: 0x10 } + - { offsetInCU: 0x18FC, offset: 0x8F63C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x6960, symBinAddr: 0x61BB0, symSize: 0x150 } + - { offsetInCU: 0x1910, offset: 0x8F650, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x6AB0, symBinAddr: 0x61D00, symSize: 0x50 } + - { offsetInCU: 0x1924, offset: 0x8F664, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x6B00, symBinAddr: 0x61D50, symSize: 0x80 } + - { offsetInCU: 0x1938, offset: 0x8F678, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x6B80, symBinAddr: 0x61DD0, symSize: 0x10 } + - { offsetInCU: 0x194C, offset: 0x8F68C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x6B90, symBinAddr: 0x61DE0, symSize: 0x30 } + - { offsetInCU: 0x1960, offset: 0x8F6A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x6BC0, symBinAddr: 0x61E10, symSize: 0x40 } + - { offsetInCU: 0x1974, offset: 0x8F6B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x6C00, symBinAddr: 0x61E50, symSize: 0x60 } + - { offsetInCU: 0x1988, offset: 0x8F6C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x6C80, symBinAddr: 0x61EB0, symSize: 0x50 } + - { offsetInCU: 0x199C, offset: 0x8F6DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x6CD0, symBinAddr: 0x61F00, symSize: 0x50 } + - { offsetInCU: 0x19B0, offset: 0x8F6F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x6D20, symBinAddr: 0x61F50, symSize: 0x50 } + - { offsetInCU: 0x19C4, offset: 0x8F704, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x6D70, symBinAddr: 0x61FA0, symSize: 0x10 } + - { offsetInCU: 0x19D8, offset: 0x8F718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x6EC0, symBinAddr: 0x620F0, symSize: 0x10 } + - { offsetInCU: 0x19EC, offset: 0x8F72C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x6ED0, symBinAddr: 0x62100, symSize: 0x30 } + - { offsetInCU: 0x1A00, offset: 0x8F740, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6FA0, symBinAddr: 0x62130, symSize: 0x30 } + - { offsetInCU: 0x1A14, offset: 0x8F754, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x8480, symBinAddr: 0x63610, symSize: 0x30 } + - { offsetInCU: 0x1A28, offset: 0x8F768, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x84B0, symBinAddr: 0x63640, symSize: 0x30 } + - { offsetInCU: 0x1A3C, offset: 0x8F77C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x8EC0, symBinAddr: 0x63670, symSize: 0x30 } + - { offsetInCU: 0x1A50, offset: 0x8F790, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA220, symBinAddr: 0x649D0, symSize: 0x30 } + - { offsetInCU: 0x1A64, offset: 0x8F7A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0xA250, symBinAddr: 0x64A00, symSize: 0x30 } + - { offsetInCU: 0x1A78, offset: 0x8F7B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0xA280, symBinAddr: 0x64A30, symSize: 0x30 } + - { offsetInCU: 0x1A8C, offset: 0x8F7CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0xA2B0, symBinAddr: 0x64A60, symSize: 0x30 } + - { offsetInCU: 0x1AA0, offset: 0x8F7E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0xA2E0, symBinAddr: 0x64A90, symSize: 0x30 } + - { offsetInCU: 0x1AB4, offset: 0x8F7F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0xA310, symBinAddr: 0x64AC0, symSize: 0x30 } + - { offsetInCU: 0x1AC8, offset: 0x8F808, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0xA340, symBinAddr: 0x64AF0, symSize: 0x30 } + - { offsetInCU: 0x1ADC, offset: 0x8F81C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xBA80, symBinAddr: 0x66230, symSize: 0x30 } + - { offsetInCU: 0x1AF0, offset: 0x8F830, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xBAB0, symBinAddr: 0x66260, symSize: 0x30 } + - { offsetInCU: 0x1B04, offset: 0x8F844, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xBAE0, symBinAddr: 0x66290, symSize: 0x30 } + - { offsetInCU: 0x1B18, offset: 0x8F858, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xC4C0, symBinAddr: 0x66C70, symSize: 0x30 } + - { offsetInCU: 0x1B2C, offset: 0x8F86C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xC4F0, symBinAddr: 0x66CA0, symSize: 0x30 } + - { offsetInCU: 0x1B40, offset: 0x8F880, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xC520, symBinAddr: 0x66CD0, symSize: 0x30 } + - { offsetInCU: 0x1B54, offset: 0x8F894, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xC580, symBinAddr: 0x66D30, symSize: 0x30 } + - { offsetInCU: 0x1B68, offset: 0x8F8A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xC5B0, symBinAddr: 0x66D60, symSize: 0x30 } + - { offsetInCU: 0x1B7C, offset: 0x8F8BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC600, symBinAddr: 0x66D90, symSize: 0x80 } + - { offsetInCU: 0x1B90, offset: 0x8F8D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC680, symBinAddr: 0x66E10, symSize: 0xD0 } + - { offsetInCU: 0x1BA4, offset: 0x8F8E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xC750, symBinAddr: 0x66EE0, symSize: 0x10 } + - { offsetInCU: 0x1BB8, offset: 0x8F8F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC760, symBinAddr: 0x66EF0, symSize: 0x10 } + - { offsetInCU: 0x1BCC, offset: 0x8F90C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xC770, symBinAddr: 0x66F00, symSize: 0x10 } + - { offsetInCU: 0x1BE0, offset: 0x8F920, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC780, symBinAddr: 0x66F10, symSize: 0x10 } + - { offsetInCU: 0x1BF4, offset: 0x8F934, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC790, symBinAddr: 0x66F20, symSize: 0x80 } + - { offsetInCU: 0x1C08, offset: 0x8F948, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC810, symBinAddr: 0x66FA0, symSize: 0xD0 } + - { offsetInCU: 0x1C1C, offset: 0x8F95C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC8E0, symBinAddr: 0x67070, symSize: 0x10 } + - { offsetInCU: 0x1C30, offset: 0x8F970, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC8F0, symBinAddr: 0x67080, symSize: 0x10 } + - { offsetInCU: 0x1C44, offset: 0x8F984, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xC900, symBinAddr: 0x67090, symSize: 0x80 } + - { offsetInCU: 0x1C58, offset: 0x8F998, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xC980, symBinAddr: 0x67110, symSize: 0xD0 } + - { offsetInCU: 0x1C6C, offset: 0x8F9AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xCA50, symBinAddr: 0x671E0, symSize: 0x10 } + - { offsetInCU: 0x1C80, offset: 0x8F9C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xCA60, symBinAddr: 0x671F0, symSize: 0x10 } + - { offsetInCU: 0x1C94, offset: 0x8F9D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xCA70, symBinAddr: 0x67200, symSize: 0x80 } + - { offsetInCU: 0x1CA8, offset: 0x8F9E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xCAF0, symBinAddr: 0x67280, symSize: 0xD0 } + - { offsetInCU: 0x1CBC, offset: 0x8F9FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xCBC0, symBinAddr: 0x67350, symSize: 0x10 } + - { offsetInCU: 0x1CD0, offset: 0x8FA10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xCBD0, symBinAddr: 0x67360, symSize: 0x10 } + - { offsetInCU: 0x1CE4, offset: 0x8FA24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xCBE0, symBinAddr: 0x67370, symSize: 0x80 } + - { offsetInCU: 0x1CF8, offset: 0x8FA38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xCC60, symBinAddr: 0x673F0, symSize: 0xD0 } + - { offsetInCU: 0x1D0C, offset: 0x8FA4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xCD30, symBinAddr: 0x674C0, symSize: 0x10 } + - { offsetInCU: 0x1D20, offset: 0x8FA60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xCD40, symBinAddr: 0x674D0, symSize: 0x10 } + - { offsetInCU: 0x1D34, offset: 0x8FA74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xCD50, symBinAddr: 0x674E0, symSize: 0x10 } + - { offsetInCU: 0x1D48, offset: 0x8FA88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xCD60, symBinAddr: 0x674F0, symSize: 0x10 } + - { offsetInCU: 0x1D5C, offset: 0x8FA9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xCD70, symBinAddr: 0x67500, symSize: 0x80 } + - { offsetInCU: 0x1D70, offset: 0x8FAB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xCDF0, symBinAddr: 0x67580, symSize: 0xD0 } + - { offsetInCU: 0x1D84, offset: 0x8FAC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xCEC0, symBinAddr: 0x67650, symSize: 0x10 } + - { offsetInCU: 0x1D98, offset: 0x8FAD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xCED0, symBinAddr: 0x67660, symSize: 0x10 } + - { offsetInCU: 0x1DAC, offset: 0x8FAEC, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xCEE0, symBinAddr: 0x67670, symSize: 0x30 } + - { offsetInCU: 0x1DC0, offset: 0x8FB00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xCF10, symBinAddr: 0x676A0, symSize: 0x20 } + - { offsetInCU: 0x1DD4, offset: 0x8FB14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xCF30, symBinAddr: 0x676C0, symSize: 0x40 } + - { offsetInCU: 0x1DE8, offset: 0x8FB28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xCF70, symBinAddr: 0x67700, symSize: 0x10 } + - { offsetInCU: 0x1DFC, offset: 0x8FB3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCF80, symBinAddr: 0x67710, symSize: 0x10 } + - { offsetInCU: 0x1E10, offset: 0x8FB50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCF90, symBinAddr: 0x67720, symSize: 0x30 } + - { offsetInCU: 0x1E24, offset: 0x8FB64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCFC0, symBinAddr: 0x67750, symSize: 0x10 } + - { offsetInCU: 0x1E38, offset: 0x8FB78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCFD0, symBinAddr: 0x67760, symSize: 0x30 } + - { offsetInCU: 0x1E4C, offset: 0x8FB8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xD000, symBinAddr: 0x67790, symSize: 0x10 } + - { offsetInCU: 0x1E60, offset: 0x8FBA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xD010, symBinAddr: 0x677A0, symSize: 0x30 } + - { offsetInCU: 0x1E74, offset: 0x8FBB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xD040, symBinAddr: 0x677D0, symSize: 0x10 } + - { offsetInCU: 0x1E88, offset: 0x8FBC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xD050, symBinAddr: 0x677E0, symSize: 0x30 } + - { offsetInCU: 0x1E9C, offset: 0x8FBDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xD080, symBinAddr: 0x67810, symSize: 0x10 } + - { offsetInCU: 0x1EB0, offset: 0x8FBF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xD090, symBinAddr: 0x67820, symSize: 0x30 } + - { offsetInCU: 0x1EC4, offset: 0x8FC04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xD0C0, symBinAddr: 0x67850, symSize: 0x10 } + - { offsetInCU: 0x1ED8, offset: 0x8FC18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xD0D0, symBinAddr: 0x67860, symSize: 0x30 } + - { offsetInCU: 0x1EEC, offset: 0x8FC2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD100, symBinAddr: 0x67890, symSize: 0x10 } + - { offsetInCU: 0x1F00, offset: 0x8FC40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD110, symBinAddr: 0x678A0, symSize: 0x30 } + - { offsetInCU: 0x1F14, offset: 0x8FC54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD140, symBinAddr: 0x678D0, symSize: 0x10 } + - { offsetInCU: 0x1F28, offset: 0x8FC68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD150, symBinAddr: 0x678E0, symSize: 0x30 } + - { offsetInCU: 0x1F3C, offset: 0x8FC7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD180, symBinAddr: 0x67910, symSize: 0x10 } + - { offsetInCU: 0x1F50, offset: 0x8FC90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD190, symBinAddr: 0x67920, symSize: 0x30 } + - { offsetInCU: 0x1F64, offset: 0x8FCA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD1C0, symBinAddr: 0x67950, symSize: 0x10 } + - { offsetInCU: 0x1F78, offset: 0x8FCB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD1D0, symBinAddr: 0x67960, symSize: 0x30 } + - { offsetInCU: 0x1F8C, offset: 0x8FCCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD200, symBinAddr: 0x67990, symSize: 0x10 } + - { offsetInCU: 0x1FA0, offset: 0x8FCE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD210, symBinAddr: 0x679A0, symSize: 0x30 } + - { offsetInCU: 0x1FB4, offset: 0x8FCF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD240, symBinAddr: 0x679D0, symSize: 0x10 } + - { offsetInCU: 0x1FC8, offset: 0x8FD08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD250, symBinAddr: 0x679E0, symSize: 0x30 } + - { offsetInCU: 0x1FDC, offset: 0x8FD1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD280, symBinAddr: 0x67A10, symSize: 0x10 } + - { offsetInCU: 0x1FF0, offset: 0x8FD30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD290, symBinAddr: 0x67A20, symSize: 0x30 } + - { offsetInCU: 0x2004, offset: 0x8FD44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD2C0, symBinAddr: 0x67A50, symSize: 0x10 } + - { offsetInCU: 0x2018, offset: 0x8FD58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD2D0, symBinAddr: 0x67A60, symSize: 0x30 } + - { offsetInCU: 0x202C, offset: 0x8FD6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD300, symBinAddr: 0x67A90, symSize: 0x10 } + - { offsetInCU: 0x2040, offset: 0x8FD80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD310, symBinAddr: 0x67AA0, symSize: 0x30 } + - { offsetInCU: 0x2054, offset: 0x8FD94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD340, symBinAddr: 0x67AD0, symSize: 0x10 } + - { offsetInCU: 0x2068, offset: 0x8FDA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD350, symBinAddr: 0x67AE0, symSize: 0x30 } + - { offsetInCU: 0x207C, offset: 0x8FDBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD380, symBinAddr: 0x67B10, symSize: 0x10 } + - { offsetInCU: 0x2090, offset: 0x8FDD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD390, symBinAddr: 0x67B20, symSize: 0x30 } + - { offsetInCU: 0x20A4, offset: 0x8FDE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD3C0, symBinAddr: 0x67B50, symSize: 0x10 } + - { offsetInCU: 0x20B8, offset: 0x8FDF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD3D0, symBinAddr: 0x67B60, symSize: 0x30 } + - { offsetInCU: 0x20CC, offset: 0x8FE0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xD400, symBinAddr: 0x67B90, symSize: 0x30 } + - { offsetInCU: 0x20E0, offset: 0x8FE20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xD430, symBinAddr: 0x67BC0, symSize: 0x80 } + - { offsetInCU: 0x20F4, offset: 0x8FE34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xD4B0, symBinAddr: 0x67C40, symSize: 0xD0 } + - { offsetInCU: 0x2108, offset: 0x8FE48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xD580, symBinAddr: 0x67D10, symSize: 0x10 } + - { offsetInCU: 0x211C, offset: 0x8FE5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xD590, symBinAddr: 0x67D20, symSize: 0x10 } + - { offsetInCU: 0x2130, offset: 0x8FE70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD5A0, symBinAddr: 0x67D30, symSize: 0x10 } + - { offsetInCU: 0x2144, offset: 0x8FE84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD5B0, symBinAddr: 0x67D40, symSize: 0x30 } + - { offsetInCU: 0x2158, offset: 0x8FE98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD5E0, symBinAddr: 0x67D70, symSize: 0x10 } + - { offsetInCU: 0x216C, offset: 0x8FEAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD5F0, symBinAddr: 0x67D80, symSize: 0x30 } + - { offsetInCU: 0x2180, offset: 0x8FEC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD620, symBinAddr: 0x67DB0, symSize: 0x10 } + - { offsetInCU: 0x2194, offset: 0x8FED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD630, symBinAddr: 0x67DC0, symSize: 0x30 } + - { offsetInCU: 0x21C2, offset: 0x8FF02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1170, symBinAddr: 0x5C3C0, symSize: 0x20 } + - { offsetInCU: 0x21DE, offset: 0x8FF1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1190, symBinAddr: 0x5C3E0, symSize: 0x20 } + - { offsetInCU: 0x2200, offset: 0x8FF40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x5C5C0, symSize: 0x20 } + - { offsetInCU: 0x221C, offset: 0x8FF5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5C5E0, symSize: 0x20 } + - { offsetInCU: 0x2238, offset: 0x8FF78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1450, symBinAddr: 0x5C6A0, symSize: 0x10 } + - { offsetInCU: 0x22B8, offset: 0x8FFF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1460, symBinAddr: 0x5C6B0, symSize: 0xB0 } + - { offsetInCU: 0x233A, offset: 0x9007A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x5C760, symSize: 0x90 } + - { offsetInCU: 0x2378, offset: 0x900B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x15A0, symBinAddr: 0x5C7F0, symSize: 0xB0 } + - { offsetInCU: 0x23DE, offset: 0x9011E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x5CA00, symSize: 0x20 } + - { offsetInCU: 0x23FA, offset: 0x9013A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x5CA20, symSize: 0x20 } + - { offsetInCU: 0x241C, offset: 0x9015C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1900, symBinAddr: 0x5CB50, symSize: 0x20 } + - { offsetInCU: 0x2438, offset: 0x90178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1920, symBinAddr: 0x5CB70, symSize: 0x20 } + - { offsetInCU: 0x248B, offset: 0x901CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A50, symBinAddr: 0x5CCA0, symSize: 0x40 } + - { offsetInCU: 0x252E, offset: 0x9026E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5CD50, symSize: 0x20 } + - { offsetInCU: 0x254A, offset: 0x9028A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x5CD70, symSize: 0x20 } + - { offsetInCU: 0x256C, offset: 0x902AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D10, symBinAddr: 0x5CF60, symSize: 0x20 } + - { offsetInCU: 0x2588, offset: 0x902C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1D30, symBinAddr: 0x5CF80, symSize: 0x20 } + - { offsetInCU: 0x25D1, offset: 0x90311, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1DF0, symBinAddr: 0x5D040, symSize: 0x80 } + - { offsetInCU: 0x26BD, offset: 0x903FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1E70, symBinAddr: 0x5D0C0, symSize: 0x50 } + - { offsetInCU: 0x273B, offset: 0x9047B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1EC0, symBinAddr: 0x5D110, symSize: 0x30 } + - { offsetInCU: 0x278D, offset: 0x904CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1EF0, symBinAddr: 0x5D140, symSize: 0x50 } + - { offsetInCU: 0x27EF, offset: 0x9052F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x5D240, symSize: 0x20 } + - { offsetInCU: 0x280B, offset: 0x9054B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x2010, symBinAddr: 0x5D260, symSize: 0x20 } + - { offsetInCU: 0x284C, offset: 0x9058C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6E80, symBinAddr: 0x620B0, symSize: 0x30 } + - { offsetInCU: 0x29DF, offset: 0x9071F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x5B250, symSize: 0x190 } + - { offsetInCU: 0x2A10, offset: 0x90750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x190, symBinAddr: 0x5B3E0, symSize: 0x2B0 } + - { offsetInCU: 0x2A41, offset: 0x90781, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x440, symBinAddr: 0x5B690, symSize: 0x190 } + - { offsetInCU: 0x2A72, offset: 0x907B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x5D0, symBinAddr: 0x5B820, symSize: 0xB0 } + - { offsetInCU: 0x2A93, offset: 0x907D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x680, symBinAddr: 0x5B8D0, symSize: 0x2A0 } + - { offsetInCU: 0x2AC4, offset: 0x90804, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x920, symBinAddr: 0x5BB70, symSize: 0x110 } + - { offsetInCU: 0x2AF5, offset: 0x90835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA30, symBinAddr: 0x5BC80, symSize: 0x250 } + - { offsetInCU: 0x2B26, offset: 0x90866, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC80, symBinAddr: 0x5BED0, symSize: 0xB0 } + - { offsetInCU: 0x2B5A, offset: 0x9089A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xD30, symBinAddr: 0x5BF80, symSize: 0xB0 } + - { offsetInCU: 0x2B9A, offset: 0x908DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDE0, symBinAddr: 0x5C030, symSize: 0x2E0 } + - { offsetInCU: 0x2DAB, offset: 0x90AEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x20D0, symBinAddr: 0x5D320, symSize: 0x1D0 } + - { offsetInCU: 0x2DF7, offset: 0x90B37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x22A0, symBinAddr: 0x5D4F0, symSize: 0x20 } + - { offsetInCU: 0x27, offset: 0x90C18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x67F50, symSize: 0x10 } + - { offsetInCU: 0x163, offset: 0x90D54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x68030, symSize: 0x40 } + - { offsetInCU: 0x177, offset: 0x90D68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x68070, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x90D7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x680C0, symSize: 0xA } + - { offsetInCU: 0x26C, offset: 0x90E5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x67F50, symSize: 0x10 } + - { offsetInCU: 0x286, offset: 0x90E77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x67F60, symSize: 0x10 } + - { offsetInCU: 0x2B8, offset: 0x90EA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x67F70, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x90EBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x67F80, symSize: 0x10 } + - { offsetInCU: 0x2ED, offset: 0x90EDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x67F90, symSize: 0x10 } + - { offsetInCU: 0x301, offset: 0x90EF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x67FA0, symSize: 0x10 } + - { offsetInCU: 0x333, offset: 0x90F24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x67FB0, symSize: 0x20 } + - { offsetInCU: 0x357, offset: 0x90F48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x67FD0, symSize: 0x10 } + - { offsetInCU: 0x378, offset: 0x90F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x67FE0, symSize: 0x10 } + - { offsetInCU: 0x38C, offset: 0x90F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x67FF0, symSize: 0x10 } + - { offsetInCU: 0x3C0, offset: 0x90FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x68000, symSize: 0x20 } + - { offsetInCU: 0x3E4, offset: 0x90FD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x68020, symSize: 0x10 } + - { offsetInCU: 0x2B, offset: 0x9102B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x680D0, symSize: 0x30 } + - { offsetInCU: 0x7C, offset: 0x9107C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x68100, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x91182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x680D0, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x911EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68120, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x9123B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x68140, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x91341, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68120, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x913AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68160, symSize: 0x50 } + - { offsetInCU: 0x7C, offset: 0x913FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x681B0, symSize: 0x10 } + - { offsetInCU: 0x90, offset: 0x91412, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x681C0, symSize: 0x30 } + - { offsetInCU: 0xA4, offset: 0x91426, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x681F0, symSize: 0x69 } + - { offsetInCU: 0x1AA, offset: 0x9152C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68160, symSize: 0x50 } + - { offsetInCU: 0x27, offset: 0x91594, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x68260, symSize: 0x430 } + - { offsetInCU: 0x16B, offset: 0x916D8, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x68690, symSize: 0x40 } + - { offsetInCU: 0x38A, offset: 0x918F7, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x68260, symSize: 0x430 } + - { offsetInCU: 0x27, offset: 0x91AF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x686D0, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x91B47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x686F0, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x91C4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x686D0, symSize: 0x20 } + - { offsetInCU: 0xA1, offset: 0x91D2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB00, symBinAddr: 0x691D0, symSize: 0x20 } + - { offsetInCU: 0xBD, offset: 0x91D4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xB20, symBinAddr: 0x691F0, symSize: 0x80 } + - { offsetInCU: 0xE6, offset: 0x91D74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xBA0, symBinAddr: 0x69270, symSize: 0x30 } + - { offsetInCU: 0x175, offset: 0x91E03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xD50, symBinAddr: 0x69420, symSize: 0x20 } + - { offsetInCU: 0x191, offset: 0x91E1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xD70, symBinAddr: 0x69440, symSize: 0x30 } + - { offsetInCU: 0x497, offset: 0x92125, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x7F0, symBinAddr: 0x68EC0, symSize: 0xF0 } + - { offsetInCU: 0x50B, offset: 0x92199, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xDA0, symBinAddr: 0x69470, symSize: 0x480 } + - { offsetInCU: 0x738, offset: 0x923C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1220, symBinAddr: 0x698F0, symSize: 0x150 } + - { offsetInCU: 0x95A, offset: 0x925E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3800, symBinAddr: 0x6BE30, symSize: 0x1F0 } + - { offsetInCU: 0xA0B, offset: 0x92699, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3A90, symBinAddr: 0x6C060, symSize: 0x220 } + - { offsetInCU: 0xA70, offset: 0x926FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3CB0, symBinAddr: 0x6C280, symSize: 0x240 } + - { offsetInCU: 0xB98, offset: 0x92826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3EF0, symBinAddr: 0x6C4C0, symSize: 0x290 } + - { offsetInCU: 0xCD7, offset: 0x92965, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x4180, symBinAddr: 0x6C750, symSize: 0x170 } + - { offsetInCU: 0xD1D, offset: 0x929AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x42F0, symBinAddr: 0x6C8C0, symSize: 0x520 } + - { offsetInCU: 0x104C, offset: 0x92CDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4810, symBinAddr: 0x6CDE0, symSize: 0xD0 } + - { offsetInCU: 0x1171, offset: 0x92DFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3240, symBinAddr: 0x6B910, symSize: 0x10 } + - { offsetInCU: 0x1185, offset: 0x92E13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x3250, symBinAddr: 0x6B920, symSize: 0x30 } + - { offsetInCU: 0x1199, offset: 0x92E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x3280, symBinAddr: 0x6B950, symSize: 0x10 } + - { offsetInCU: 0x11AD, offset: 0x92E3B, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x3290, symBinAddr: 0x6B960, symSize: 0x40 } + - { offsetInCU: 0x11C1, offset: 0x92E4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3310, symBinAddr: 0x6B9A0, symSize: 0x10 } + - { offsetInCU: 0x11D5, offset: 0x92E63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3320, symBinAddr: 0x6B9B0, symSize: 0x30 } + - { offsetInCU: 0x11E9, offset: 0x92E77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x3370, symBinAddr: 0x6B9E0, symSize: 0x80 } + - { offsetInCU: 0x11FD, offset: 0x92E8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x33F0, symBinAddr: 0x6BA60, symSize: 0xD0 } + - { offsetInCU: 0x1211, offset: 0x92E9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x34C0, symBinAddr: 0x6BB30, symSize: 0x10 } + - { offsetInCU: 0x1225, offset: 0x92EB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x34D0, symBinAddr: 0x6BB40, symSize: 0x10 } + - { offsetInCU: 0x1239, offset: 0x92EC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x34E0, symBinAddr: 0x6BB50, symSize: 0x10 } + - { offsetInCU: 0x124D, offset: 0x92EDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x34F0, symBinAddr: 0x6BB60, symSize: 0x10 } + - { offsetInCU: 0x1261, offset: 0x92EEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3500, symBinAddr: 0x6BB70, symSize: 0x80 } + - { offsetInCU: 0x1275, offset: 0x92F03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3580, symBinAddr: 0x6BBF0, symSize: 0xD0 } + - { offsetInCU: 0x1289, offset: 0x92F17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x3650, symBinAddr: 0x6BCC0, symSize: 0x10 } + - { offsetInCU: 0x129D, offset: 0x92F2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x3660, symBinAddr: 0x6BCD0, symSize: 0x10 } + - { offsetInCU: 0x12B1, offset: 0x92F3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x3670, symBinAddr: 0x6BCE0, symSize: 0x10 } + - { offsetInCU: 0x12C5, offset: 0x92F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x3680, symBinAddr: 0x6BCF0, symSize: 0x10 } + - { offsetInCU: 0x12D9, offset: 0x92F67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x3690, symBinAddr: 0x6BD00, symSize: 0x20 } + - { offsetInCU: 0x12ED, offset: 0x92F7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x36C0, symBinAddr: 0x6BD20, symSize: 0x10 } + - { offsetInCU: 0x1301, offset: 0x92F8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x36D0, symBinAddr: 0x6BD30, symSize: 0x10 } + - { offsetInCU: 0x1315, offset: 0x92FA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x36E0, symBinAddr: 0x6BD40, symSize: 0x30 } + - { offsetInCU: 0x1329, offset: 0x92FB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3710, symBinAddr: 0x6BD70, symSize: 0x10 } + - { offsetInCU: 0x133D, offset: 0x92FCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x3720, symBinAddr: 0x6BD80, symSize: 0x10 } + - { offsetInCU: 0x1351, offset: 0x92FDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3730, symBinAddr: 0x6BD90, symSize: 0x30 } + - { offsetInCU: 0x1365, offset: 0x92FF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x3760, symBinAddr: 0x6BDC0, symSize: 0x10 } + - { offsetInCU: 0x13D9, offset: 0x93067, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x39F0, symBinAddr: 0x6C020, symSize: 0x40 } + - { offsetInCU: 0x1438, offset: 0x930C6, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x48E0, symBinAddr: 0x6CEB0, symSize: 0x30 } + - { offsetInCU: 0x144C, offset: 0x930DA, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4910, symBinAddr: 0x6CEE0, symSize: 0x30 } + - { offsetInCU: 0x1460, offset: 0x930EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4980, symBinAddr: 0x6CF30, symSize: 0x20 } + - { offsetInCU: 0x1474, offset: 0x93102, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x49A0, symBinAddr: 0x6CF50, symSize: 0x20 } + - { offsetInCU: 0x1488, offset: 0x93116, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x49C0, symBinAddr: 0x6CF70, symSize: 0x10 } + - { offsetInCU: 0x149C, offset: 0x9312A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4A30, symBinAddr: 0x6CF80, symSize: 0x20 } + - { offsetInCU: 0x14B0, offset: 0x9313E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x4AE0, symBinAddr: 0x6D030, symSize: 0x10 } + - { offsetInCU: 0x15AE, offset: 0x9323C, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x190, symBinAddr: 0x68860, symSize: 0x160 } + - { offsetInCU: 0x1671, offset: 0x932FF, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x2F0, symBinAddr: 0x689C0, symSize: 0x150 } + - { offsetInCU: 0x1734, offset: 0x933C2, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x440, symBinAddr: 0x68B10, symSize: 0x90 } + - { offsetInCU: 0x18D6, offset: 0x93564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x900, symBinAddr: 0x68FD0, symSize: 0x10 } + - { offsetInCU: 0x1956, offset: 0x935E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x910, symBinAddr: 0x68FE0, symSize: 0xB0 } + - { offsetInCU: 0x19D8, offset: 0x93666, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x9C0, symBinAddr: 0x69090, symSize: 0x90 } + - { offsetInCU: 0x1A16, offset: 0x936A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA50, symBinAddr: 0x69120, symSize: 0xB0 } + - { offsetInCU: 0x1A7C, offset: 0x9370A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC40, symBinAddr: 0x69310, symSize: 0x10 } + - { offsetInCU: 0x1AFC, offset: 0x9378A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xC50, symBinAddr: 0x69320, symSize: 0x60 } + - { offsetInCU: 0x1BA7, offset: 0x93835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xCB0, symBinAddr: 0x69380, symSize: 0x40 } + - { offsetInCU: 0x1C0E, offset: 0x9389C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xCF0, symBinAddr: 0x693C0, symSize: 0x60 } + - { offsetInCU: 0x1FF8, offset: 0x93C86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x68710, symSize: 0x70 } + - { offsetInCU: 0x202F, offset: 0x93CBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x68780, symSize: 0x30 } + - { offsetInCU: 0x204A, offset: 0x93CD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x687B0, symSize: 0x70 } + - { offsetInCU: 0x2079, offset: 0x93D07, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x150, symBinAddr: 0x68820, symSize: 0x10 } + - { offsetInCU: 0x20ED, offset: 0x93D7B, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x160, symBinAddr: 0x68830, symSize: 0x30 } + - { offsetInCU: 0x2198, offset: 0x93E26, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x4D0, symBinAddr: 0x68BA0, symSize: 0xB0 } + - { offsetInCU: 0x234A, offset: 0x93FD8, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x580, symBinAddr: 0x68C50, symSize: 0x50 } + - { offsetInCU: 0x2431, offset: 0x940BF, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x5D0, symBinAddr: 0x68CA0, symSize: 0x90 } + - { offsetInCU: 0x24BF, offset: 0x9414D, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x660, symBinAddr: 0x68D30, symSize: 0x80 } + - { offsetInCU: 0x2531, offset: 0x941BF, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x6E0, symBinAddr: 0x68DB0, symSize: 0xD0 } + - { offsetInCU: 0x2660, offset: 0x942EE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x7B0, symBinAddr: 0x68E80, symSize: 0x40 } + - { offsetInCU: 0x26EE, offset: 0x9437C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x8E0, symBinAddr: 0x68FB0, symSize: 0x20 } + - { offsetInCU: 0x2750, offset: 0x943DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xBD0, symBinAddr: 0x692A0, symSize: 0x70 } + - { offsetInCU: 0x27FF, offset: 0x9448D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x1370, symBinAddr: 0x69A40, symSize: 0x960 } + - { offsetInCU: 0x2DA5, offset: 0x94A33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1CD0, symBinAddr: 0x6A3A0, symSize: 0x7A0 } + - { offsetInCU: 0x3114, offset: 0x94DA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2470, symBinAddr: 0x6AB40, symSize: 0x540 } + - { offsetInCU: 0x32CF, offset: 0x94F5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x29B0, symBinAddr: 0x6B080, symSize: 0x670 } + - { offsetInCU: 0x37A8, offset: 0x95436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x3020, symBinAddr: 0x6B6F0, symSize: 0x130 } + - { offsetInCU: 0x388A, offset: 0x95518, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x3150, symBinAddr: 0x6B820, symSize: 0x30 } + - { offsetInCU: 0x38C3, offset: 0x95551, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x3230, symBinAddr: 0x6B900, symSize: 0x10 } + - { offsetInCU: 0x38F0, offset: 0x9557E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x37A0, symBinAddr: 0x6BDD0, symSize: 0x20 } + - { offsetInCU: 0x3920, offset: 0x955AE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x37C0, symBinAddr: 0x6BDF0, symSize: 0x20 } + - { offsetInCU: 0x3950, offset: 0x955DE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x37E0, symBinAddr: 0x6BE10, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x95773, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6D070, symSize: 0x1A0 } + - { offsetInCU: 0x57, offset: 0x95787, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6D210, symSize: 0x90 } + - { offsetInCU: 0x6B, offset: 0x9579B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6D2A0, symSize: 0x170 } + - { offsetInCU: 0x7F, offset: 0x957AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6D410, symSize: 0x1F0 } + - { offsetInCU: 0x93, offset: 0x957C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6D600, symSize: 0xE0 } + - { offsetInCU: 0xA7, offset: 0x957D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x6D6E0, symSize: 0x1C0 } + - { offsetInCU: 0xBB, offset: 0x957EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x6D8A0, symSize: 0x20 } + - { offsetInCU: 0xCF, offset: 0x957FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x6D930, symSize: 0x20 } + - { offsetInCU: 0xE3, offset: 0x95813, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x6D9D0, symSize: 0x90 } + - { offsetInCU: 0xF7, offset: 0x95827, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x6DA60, symSize: 0x50 } + - { offsetInCU: 0x10B, offset: 0x9583B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x6DAB0, symSize: 0x120 } + - { offsetInCU: 0x11F, offset: 0x9584F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x6DBD0, symSize: 0x70 } + - { offsetInCU: 0x133, offset: 0x95863, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x6DC40, symSize: 0xF0 } + - { offsetInCU: 0x147, offset: 0x95877, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x6DD30, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x9588B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x6DE90, symSize: 0xC0 } + - { offsetInCU: 0x16F, offset: 0x9589F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x6DF50, symSize: 0x150 } + - { offsetInCU: 0x183, offset: 0x958B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x6E0A0, symSize: 0x20 } + - { offsetInCU: 0x197, offset: 0x958C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x6E130, symSize: 0x20 } + - { offsetInCU: 0x1AB, offset: 0x958DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x6E1F0, symSize: 0x80 } + - { offsetInCU: 0x239, offset: 0x95969, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1780, symBinAddr: 0x6E7B0, symSize: 0x10 } + - { offsetInCU: 0x28C, offset: 0x959BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A0, symBinAddr: 0x6E7D0, symSize: 0x20 } + - { offsetInCU: 0x306, offset: 0x95A36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x6E800, symSize: 0x80 } + - { offsetInCU: 0x33B, offset: 0x95A6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x6E880, symSize: 0x20 } + - { offsetInCU: 0x36C, offset: 0x95A9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x6E8A0, symSize: 0x10 } + - { offsetInCU: 0x388, offset: 0x95AB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x6E8B0, symSize: 0x10 } + - { offsetInCU: 0x3A4, offset: 0x95AD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F50, symBinAddr: 0x6FE50, symSize: 0x170 } + - { offsetInCU: 0x44E, offset: 0x95B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x6E900, symSize: 0x10 } + - { offsetInCU: 0x471, offset: 0x95BA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18E0, symBinAddr: 0x6E910, symSize: 0x10 } + - { offsetInCU: 0x4F2, offset: 0x95C22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AC0, symBinAddr: 0x6EAF0, symSize: 0x60 } + - { offsetInCU: 0x527, offset: 0x95C57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x6EB50, symSize: 0x20 } + - { offsetInCU: 0x558, offset: 0x95C88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B40, symBinAddr: 0x6EB70, symSize: 0x10 } + - { offsetInCU: 0x574, offset: 0x95CA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x6EB80, symSize: 0x10 } + - { offsetInCU: 0x590, offset: 0x95CC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30C0, symBinAddr: 0x6FFC0, symSize: 0x120 } + - { offsetInCU: 0x640, offset: 0x95D70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x6EBD0, symSize: 0x40 } + - { offsetInCU: 0x677, offset: 0x95DA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BE0, symBinAddr: 0x6EC10, symSize: 0x40 } + - { offsetInCU: 0x69A, offset: 0x95DCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31E0, symBinAddr: 0x700E0, symSize: 0x2B0 } + - { offsetInCU: 0x6FE, offset: 0x95E2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x6F4C0, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x95E63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24A0, symBinAddr: 0x6F4D0, symSize: 0x20 } + - { offsetInCU: 0x764, offset: 0x95E94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24C0, symBinAddr: 0x6F4F0, symSize: 0x10 } + - { offsetInCU: 0x780, offset: 0x95EB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24D0, symBinAddr: 0x6F500, symSize: 0x10 } + - { offsetInCU: 0x79C, offset: 0x95ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3490, symBinAddr: 0x70390, symSize: 0x270 } + - { offsetInCU: 0x8E8, offset: 0x96018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2520, symBinAddr: 0x6F550, symSize: 0x10 } + - { offsetInCU: 0x90B, offset: 0x9603B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2530, symBinAddr: 0x6F560, symSize: 0x10 } + - { offsetInCU: 0x92F, offset: 0x9605F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2570, symBinAddr: 0x6F570, symSize: 0x30 } + - { offsetInCU: 0x943, offset: 0x96073, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x25D0, symBinAddr: 0x6F5A0, symSize: 0x30 } + - { offsetInCU: 0x957, offset: 0x96087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2670, symBinAddr: 0x6F600, symSize: 0x30 } + - { offsetInCU: 0x96B, offset: 0x9609B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x26E0, symBinAddr: 0x6F630, symSize: 0x30 } + - { offsetInCU: 0x97F, offset: 0x960AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x27D0, symBinAddr: 0x6F720, symSize: 0x30 } + - { offsetInCU: 0x993, offset: 0x960C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2820, symBinAddr: 0x6F750, symSize: 0x80 } + - { offsetInCU: 0x9A7, offset: 0x960D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x28A0, symBinAddr: 0x6F7D0, symSize: 0xD0 } + - { offsetInCU: 0x9BB, offset: 0x960EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2970, symBinAddr: 0x6F8A0, symSize: 0x10 } + - { offsetInCU: 0x9CF, offset: 0x960FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2980, symBinAddr: 0x6F8B0, symSize: 0x10 } + - { offsetInCU: 0x9E3, offset: 0x96113, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x2990, symBinAddr: 0x6F8C0, symSize: 0x10 } + - { offsetInCU: 0x9F7, offset: 0x96127, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x29A0, symBinAddr: 0x6F8D0, symSize: 0x10 } + - { offsetInCU: 0xA0B, offset: 0x9613B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x29B0, symBinAddr: 0x6F8E0, symSize: 0x80 } + - { offsetInCU: 0xA1F, offset: 0x9614F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2A30, symBinAddr: 0x6F960, symSize: 0xD0 } + - { offsetInCU: 0xA33, offset: 0x96163, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2B00, symBinAddr: 0x6FA30, symSize: 0x10 } + - { offsetInCU: 0xA47, offset: 0x96177, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2B10, symBinAddr: 0x6FA40, symSize: 0x10 } + - { offsetInCU: 0xA5B, offset: 0x9618B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2B20, symBinAddr: 0x6FA50, symSize: 0x30 } + - { offsetInCU: 0xA6F, offset: 0x9619F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2B50, symBinAddr: 0x6FA80, symSize: 0x30 } + - { offsetInCU: 0xA83, offset: 0x961B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2B80, symBinAddr: 0x6FAB0, symSize: 0x70 } + - { offsetInCU: 0xA97, offset: 0x961C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2BF0, symBinAddr: 0x6FB20, symSize: 0x90 } + - { offsetInCU: 0xAAB, offset: 0x961DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2CB0, symBinAddr: 0x6FBB0, symSize: 0x70 } + - { offsetInCU: 0xABF, offset: 0x961EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2D20, symBinAddr: 0x6FC20, symSize: 0x50 } + - { offsetInCU: 0xAD3, offset: 0x96203, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2D70, symBinAddr: 0x6FC70, symSize: 0x50 } + - { offsetInCU: 0xAE7, offset: 0x96217, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2DC0, symBinAddr: 0x6FCC0, symSize: 0x10 } + - { offsetInCU: 0xAFB, offset: 0x9622B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2DD0, symBinAddr: 0x6FCD0, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x9623F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2DE0, symBinAddr: 0x6FCE0, symSize: 0x30 } + - { offsetInCU: 0xB23, offset: 0x96253, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2E10, symBinAddr: 0x6FD10, symSize: 0x10 } + - { offsetInCU: 0xB37, offset: 0x96267, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2E20, symBinAddr: 0x6FD20, symSize: 0x30 } + - { offsetInCU: 0xB4B, offset: 0x9627B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E50, symBinAddr: 0x6FD50, symSize: 0x10 } + - { offsetInCU: 0xB5F, offset: 0x9628F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E60, symBinAddr: 0x6FD60, symSize: 0x30 } + - { offsetInCU: 0xB73, offset: 0x962A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x6FD90, symSize: 0x10 } + - { offsetInCU: 0xB87, offset: 0x962B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2EA0, symBinAddr: 0x6FDA0, symSize: 0x30 } + - { offsetInCU: 0xB9B, offset: 0x962CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED0, symBinAddr: 0x6FDD0, symSize: 0x10 } + - { offsetInCU: 0xBAF, offset: 0x962DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EE0, symBinAddr: 0x6FDE0, symSize: 0x30 } + - { offsetInCU: 0xBC3, offset: 0x962F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F10, symBinAddr: 0x6FE10, symSize: 0x10 } + - { offsetInCU: 0xBD7, offset: 0x96307, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F20, symBinAddr: 0x6FE20, symSize: 0x30 } + - { offsetInCU: 0xBF6, offset: 0x96326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3700, symBinAddr: 0x70600, symSize: 0x30 } + - { offsetInCU: 0xC0A, offset: 0x9633A, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3730, symBinAddr: 0x70630, symSize: 0x40 } + - { offsetInCU: 0xC1E, offset: 0x9634E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x37E0, symBinAddr: 0x706E0, symSize: 0x80 } + - { offsetInCU: 0xC32, offset: 0x96362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3860, symBinAddr: 0x70760, symSize: 0xD0 } + - { offsetInCU: 0xC46, offset: 0x96376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3930, symBinAddr: 0x70830, symSize: 0x10 } + - { offsetInCU: 0xC5A, offset: 0x9638A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3940, symBinAddr: 0x70840, symSize: 0x10 } + - { offsetInCU: 0xC6E, offset: 0x9639E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3950, symBinAddr: 0x70850, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x963B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3960, symBinAddr: 0x70860, symSize: 0x30 } + - { offsetInCU: 0xC96, offset: 0x963C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3990, symBinAddr: 0x70890, symSize: 0x10 } + - { offsetInCU: 0xCAA, offset: 0x963DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39A0, symBinAddr: 0x708A0, symSize: 0x30 } + - { offsetInCU: 0xCBE, offset: 0x963EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39D0, symBinAddr: 0x708D0, symSize: 0x10 } + - { offsetInCU: 0xCD2, offset: 0x96402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39E0, symBinAddr: 0x708E0, symSize: 0x30 } + - { offsetInCU: 0xD00, offset: 0x96430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x6E8C0, symSize: 0x20 } + - { offsetInCU: 0xD1C, offset: 0x9644C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x6E8E0, symSize: 0x20 } + - { offsetInCU: 0xD3E, offset: 0x9646E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x6EB90, symSize: 0x20 } + - { offsetInCU: 0xD5A, offset: 0x9648A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B80, symBinAddr: 0x6EBB0, symSize: 0x20 } + - { offsetInCU: 0xD7C, offset: 0x964AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24E0, symBinAddr: 0x6F510, symSize: 0x20 } + - { offsetInCU: 0xD98, offset: 0x964C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2500, symBinAddr: 0x6F530, symSize: 0x20 } + - { offsetInCU: 0xEA5, offset: 0x965D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1240, symBinAddr: 0x6E270, symSize: 0x1F0 } + - { offsetInCU: 0xEDC, offset: 0x9660C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1430, symBinAddr: 0x6E460, symSize: 0x350 } + - { offsetInCU: 0xF57, offset: 0x96687, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x6E920, symSize: 0x1B0 } + - { offsetInCU: 0xFA2, offset: 0x966D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1C20, symBinAddr: 0x6EC50, symSize: 0xB0 } + - { offsetInCU: 0xFC3, offset: 0x966F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CD0, symBinAddr: 0x6ED00, symSize: 0x2B0 } + - { offsetInCU: 0xFFA, offset: 0x9672A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F80, symBinAddr: 0x6EFB0, symSize: 0x470 } + - { offsetInCU: 0x27, offset: 0x967B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x70990, symSize: 0x30 } + - { offsetInCU: 0x106, offset: 0x96890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x70AA0, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x968A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x70AD0, symSize: 0x30 } + - { offsetInCU: 0x12E, offset: 0x968B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x70B00, symSize: 0x40 } + - { offsetInCU: 0x142, offset: 0x968CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x70B40, symSize: 0x60 } + - { offsetInCU: 0x156, offset: 0x968E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x70BA0, symSize: 0x50 } + - { offsetInCU: 0x16A, offset: 0x968F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x70BF0, symSize: 0x40 } + - { offsetInCU: 0x17E, offset: 0x96908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x70C30, symSize: 0x50 } + - { offsetInCU: 0x192, offset: 0x9691C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x70C80, symSize: 0xA } + - { offsetInCU: 0x2A1, offset: 0x96A2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x70990, symSize: 0x30 } + - { offsetInCU: 0x2BB, offset: 0x96A45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x709C0, symSize: 0x30 } + - { offsetInCU: 0x2EF, offset: 0x96A79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x709F0, symSize: 0x10 } + - { offsetInCU: 0x303, offset: 0x96A8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x70A00, symSize: 0x10 } + - { offsetInCU: 0x324, offset: 0x96AAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x70A10, symSize: 0x30 } + - { offsetInCU: 0x338, offset: 0x96AC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x70A40, symSize: 0x30 } + - { offsetInCU: 0x36C, offset: 0x96AF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x70A70, symSize: 0x20 } + - { offsetInCU: 0x390, offset: 0x96B1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x70A90, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x96B6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x70C90, symSize: 0x20 } + - { offsetInCU: 0x87, offset: 0x96BCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x540, symBinAddr: 0x711D0, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x96BE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x550, symBinAddr: 0x711E0, symSize: 0x20 } + - { offsetInCU: 0xD8, offset: 0x96C1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x450, symBinAddr: 0x710E0, symSize: 0x10 } + - { offsetInCU: 0xEC, offset: 0x96C31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x460, symBinAddr: 0x710F0, symSize: 0x30 } + - { offsetInCU: 0x120, offset: 0x96C65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x590, symBinAddr: 0x71200, symSize: 0x80 } + - { offsetInCU: 0x134, offset: 0x96C79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x610, symBinAddr: 0x71280, symSize: 0xD0 } + - { offsetInCU: 0x148, offset: 0x96C8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x6E0, symBinAddr: 0x71350, symSize: 0x10 } + - { offsetInCU: 0x15C, offset: 0x96CA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x6F0, symBinAddr: 0x71360, symSize: 0x10 } + - { offsetInCU: 0x170, offset: 0x96CB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x700, symBinAddr: 0x71370, symSize: 0x10 } + - { offsetInCU: 0x184, offset: 0x96CC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x710, symBinAddr: 0x71380, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x96D39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0x720, symBinAddr: 0x71390, symSize: 0x113 } + - { offsetInCU: 0x421, offset: 0x96F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x430, symBinAddr: 0x710C0, symSize: 0x20 } + - { offsetInCU: 0x4F4, offset: 0x97039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x490, symBinAddr: 0x71120, symSize: 0x40 } + - { offsetInCU: 0x5CC, offset: 0x97111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4D0, symBinAddr: 0x71160, symSize: 0x30 } + - { offsetInCU: 0x648, offset: 0x9718D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x500, symBinAddr: 0x71190, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x97352, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x70C90, symSize: 0x20 } + - { offsetInCU: 0x82E, offset: 0x97373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x20, symBinAddr: 0x70CB0, symSize: 0x410 } + - { offsetInCU: 0x2B, offset: 0x9743A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x714B0, symSize: 0x20 } + - { offsetInCU: 0x7C, offset: 0x9748B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x714D0, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x97591, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x714B0, symSize: 0x20 } + - { offsetInCU: 0x4F, offset: 0x97621, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x2010, symBinAddr: 0x8BEE8, symSize: 0x0 } + - { offsetInCU: 0x5B7, offset: 0x97B89, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xB0, symBinAddr: 0x715A0, symSize: 0x50 } + - { offsetInCU: 0x5CF, offset: 0x97BA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x100, symBinAddr: 0x715F0, symSize: 0x80 } + - { offsetInCU: 0x71F, offset: 0x97CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x1A60, symBinAddr: 0x72EA0, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x97D05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x1A70, symBinAddr: 0x72EB0, symSize: 0x10 } + - { offsetInCU: 0x747, offset: 0x97D19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x1A80, symBinAddr: 0x72EC0, symSize: 0x10 } + - { offsetInCU: 0x75B, offset: 0x97D2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x1A90, symBinAddr: 0x72ED0, symSize: 0x10 } + - { offsetInCU: 0x76F, offset: 0x97D41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x1AA0, symBinAddr: 0x72EE0, symSize: 0x10 } + - { offsetInCU: 0x783, offset: 0x97D55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x1B00, symBinAddr: 0x72EF0, symSize: 0x20 } + - { offsetInCU: 0x797, offset: 0x97D69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOb', symObjAddr: 0x1B20, symBinAddr: 0x72F10, symSize: 0x40 } + - { offsetInCU: 0x7AB, offset: 0x97D7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOd', symObjAddr: 0x1B60, symBinAddr: 0x72F50, symSize: 0x40 } + - { offsetInCU: 0x7BF, offset: 0x97D91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1ED0, symBinAddr: 0x732A0, symSize: 0x10 } + - { offsetInCU: 0x7D3, offset: 0x97DA5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1EE0, symBinAddr: 0x732B0, symSize: 0x20 } + - { offsetInCU: 0x7E7, offset: 0x97DB9, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1F00, symBinAddr: 0x732D0, symSize: 0x10 } + - { offsetInCU: 0x830, offset: 0x97E02, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1F10, symBinAddr: 0x732E0, symSize: 0x20 } + - { offsetInCU: 0x89F, offset: 0x97E71, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x714F0, symSize: 0x10 } + - { offsetInCU: 0x8BB, offset: 0x97E8D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x10, symBinAddr: 0x71500, symSize: 0x10 } + - { offsetInCU: 0x8D7, offset: 0x97EA9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x20, symBinAddr: 0x71510, symSize: 0x10 } + - { offsetInCU: 0x8F3, offset: 0x97EC5, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x30, symBinAddr: 0x71520, symSize: 0x10 } + - { offsetInCU: 0x90F, offset: 0x97EE1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x40, symBinAddr: 0x71530, symSize: 0x10 } + - { offsetInCU: 0x92B, offset: 0x97EFD, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x71540, symSize: 0x10 } + - { offsetInCU: 0x947, offset: 0x97F19, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x60, symBinAddr: 0x71550, symSize: 0x10 } + - { offsetInCU: 0x963, offset: 0x97F35, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x70, symBinAddr: 0x71560, symSize: 0x20 } + - { offsetInCU: 0x97F, offset: 0x97F51, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x90, symBinAddr: 0x71580, symSize: 0x20 } + - { offsetInCU: 0xBD3, offset: 0x981A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0x180, symBinAddr: 0x71670, symSize: 0x30 } + - { offsetInCU: 0xC97, offset: 0x98269, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1B0, symBinAddr: 0x716A0, symSize: 0x640 } + - { offsetInCU: 0xF16, offset: 0x984E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x830, symBinAddr: 0x71CE0, symSize: 0x50 } + - { offsetInCU: 0xF85, offset: 0x98557, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x880, symBinAddr: 0x71D30, symSize: 0x50 } + - { offsetInCU: 0xFF4, offset: 0x985C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x8D0, symBinAddr: 0x71D80, symSize: 0x50 } + - { offsetInCU: 0x1063, offset: 0x98635, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x920, symBinAddr: 0x71DD0, symSize: 0x50 } + - { offsetInCU: 0x10D2, offset: 0x986A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x970, symBinAddr: 0x71E20, symSize: 0x50 } + - { offsetInCU: 0x11A6, offset: 0x98778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x9C0, symBinAddr: 0x71E70, symSize: 0x40 } + - { offsetInCU: 0x1210, offset: 0x987E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xA00, symBinAddr: 0x71EB0, symSize: 0x10 } + - { offsetInCU: 0x1253, offset: 0x98825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA10, symBinAddr: 0x71EC0, symSize: 0x50 } + - { offsetInCU: 0x12CA, offset: 0x9889C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0xB80, symBinAddr: 0x72030, symSize: 0x30 } + - { offsetInCU: 0x132D, offset: 0x988FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xBB0, symBinAddr: 0x72060, symSize: 0x50 } + - { offsetInCU: 0x13A4, offset: 0x98976, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xC00, symBinAddr: 0x720B0, symSize: 0x40 } + - { offsetInCU: 0x1430, offset: 0x98A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xC40, symBinAddr: 0x720F0, symSize: 0x80 } + - { offsetInCU: 0x14CB, offset: 0x98A9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xCC0, symBinAddr: 0x72170, symSize: 0x70 } + - { offsetInCU: 0x157A, offset: 0x98B4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xD30, symBinAddr: 0x721E0, symSize: 0x80 } + - { offsetInCU: 0x1615, offset: 0x98BE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xDB0, symBinAddr: 0x72260, symSize: 0x30 } + - { offsetInCU: 0x1690, offset: 0x98C62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xDE0, symBinAddr: 0x72290, symSize: 0x30 } + - { offsetInCU: 0x170B, offset: 0x98CDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE10, symBinAddr: 0x722C0, symSize: 0x40 } + - { offsetInCU: 0x1789, offset: 0x98D5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE50, symBinAddr: 0x72300, symSize: 0x40 } + - { offsetInCU: 0x1807, offset: 0x98DD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE90, symBinAddr: 0x72340, symSize: 0x40 } + - { offsetInCU: 0x1885, offset: 0x98E57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xED0, symBinAddr: 0x72380, symSize: 0x40 } + - { offsetInCU: 0x1903, offset: 0x98ED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF10, symBinAddr: 0x723C0, symSize: 0x40 } + - { offsetInCU: 0x1981, offset: 0x98F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xF50, symBinAddr: 0x72400, symSize: 0x30 } + - { offsetInCU: 0x19DF, offset: 0x98FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xF80, symBinAddr: 0x72430, symSize: 0x40 } + - { offsetInCU: 0x1A76, offset: 0x99048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xFC0, symBinAddr: 0x72470, symSize: 0x130 } + - { offsetInCU: 0x1B48, offset: 0x9911A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0x10F0, symBinAddr: 0x725A0, symSize: 0xB0 } + - { offsetInCU: 0x1C1A, offset: 0x991EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x11A0, symBinAddr: 0x72650, symSize: 0x90 } + - { offsetInCU: 0x1CB0, offset: 0x99282, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1230, symBinAddr: 0x726E0, symSize: 0xF0 } + - { offsetInCU: 0x1CD3, offset: 0x992A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1320, symBinAddr: 0x727D0, symSize: 0x20 } + - { offsetInCU: 0x1D11, offset: 0x992E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x13B0, symBinAddr: 0x727F0, symSize: 0x310 } + - { offsetInCU: 0x1DE2, offset: 0x993B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x16C0, symBinAddr: 0x72B00, symSize: 0x3A0 } +... diff --git a/IoTConnectDemo/.DS_Store b/IoTConnectDemo/.DS_Store index 27f50d0..ffe0b39 100644 Binary files a/IoTConnectDemo/.DS_Store and b/IoTConnectDemo/.DS_Store differ diff --git a/IoTConnectDemo/IoTConnect2.xcworkspace/contents.xcworkspacedata b/IoTConnectDemo/IoTConnect2.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..0fdcc09 --- /dev/null +++ b/IoTConnectDemo/IoTConnect2.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/IoTConnectDemo/IoTConnectDemo.xcodeproj/project.pbxproj b/IoTConnectDemo/IoTConnectDemo.xcodeproj/project.pbxproj index 190ba94..799463c 100644 --- a/IoTConnectDemo/IoTConnectDemo.xcodeproj/project.pbxproj +++ b/IoTConnectDemo/IoTConnectDemo.xcodeproj/project.pbxproj @@ -14,23 +14,27 @@ DD0CE2DE2B4D4EBB00DFFFB7 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0CE2DD2B4D4EBB00DFFFB7 /* SceneDelegate.swift */; }; DD0CE2E52B4D4EBC00DFFFB7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DD0CE2E42B4D4EBC00DFFFB7 /* Assets.xcassets */; }; DD0CE2E82B4D4EBC00DFFFB7 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DD0CE2E62B4D4EBC00DFFFB7 /* LaunchScreen.storyboard */; }; + DD3690B02C47C8D800B88326 /* IoTConnect2.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD3690AE2C47C8D400B88326 /* IoTConnect2.xcframework */; }; + DD3690B12C47C8D800B88326 /* IoTConnect2.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DD3690AE2C47C8D400B88326 /* IoTConnect2.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; DD3C72F82B4FB8970019551D /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0CE2DB2B4D4EBB00DFFFB7 /* AppDelegate.swift */; }; DD3C72F92B4FB8970019551D /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0CE2DD2B4D4EBB00DFFFB7 /* SceneDelegate.swift */; }; DD3C72FD2B4FB8970019551D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DD0CE2E62B4D4EBC00DFFFB7 /* LaunchScreen.storyboard */; }; DD3C72FE2B4FB8970019551D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DD0CE2E42B4D4EBC00DFFFB7 /* Assets.xcassets */; }; - DD7729602B90766900EFEA7F /* client2301AWS.p12 in Resources */ = {isa = PBXBuildFile; fileRef = DD77295F2B90766900EFEA7F /* client2301AWS.p12 */; }; + DD4642852C0450E700FB4783 /* DPDConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4642782C0450E700FB4783 /* DPDConstants.swift */; }; + DD4642862C0450E700FB4783 /* DPDKeyboardListener.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4642792C0450E700FB4783 /* DPDKeyboardListener.swift */; }; + DD4642872C0450E700FB4783 /* DPDUIView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD46427A2C0450E700FB4783 /* DPDUIView+Extension.swift */; }; + DD4642882C0450E700FB4783 /* DropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = DD46427C2C0450E700FB4783 /* DropDownCell.xib */; }; + DD4642892C0450E700FB4783 /* DropDown.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD46427E2C0450E700FB4783 /* DropDown.swift */; }; + DD46428A2C0450E700FB4783 /* DropDown+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD46427F2C0450E700FB4783 /* DropDown+Appearance.swift */; }; + DD46428B2C0450E700FB4783 /* DropDownCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4642802C0450E700FB4783 /* DropDownCell.swift */; }; DDD5BCA62B4FBF5D0087A0E2 /* RadioButtonController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC8D2B4FBF5C0087A0E2 /* RadioButtonController.swift */; }; DDD5BCA72B4FBF5D0087A0E2 /* RadioButtonController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC8D2B4FBF5C0087A0E2 /* RadioButtonController.swift */; }; - DDD5BCA82B4FBF5D0087A0E2 /* DeviceCertificate.pfx in Resources */ = {isa = PBXBuildFile; fileRef = DDD5BC8E2B4FBF5C0087A0E2 /* DeviceCertificate.pfx */; }; - DDD5BCA92B4FBF5D0087A0E2 /* DeviceCertificate.pfx in Resources */ = {isa = PBXBuildFile; fileRef = DDD5BC8E2B4FBF5C0087A0E2 /* DeviceCertificate.pfx */; }; DDD5BCAC2B4FBF5D0087A0E2 /* PropertyCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC912B4FBF5C0087A0E2 /* PropertyCell.swift */; }; DDD5BCAD2B4FBF5D0087A0E2 /* PropertyCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC912B4FBF5C0087A0E2 /* PropertyCell.swift */; }; DDD5BCAE2B4FBF5D0087A0E2 /* TableHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = DDD5BC932B4FBF5C0087A0E2 /* TableHeaderView.xib */; }; DDD5BCAF2B4FBF5D0087A0E2 /* TableHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = DDD5BC932B4FBF5C0087A0E2 /* TableHeaderView.xib */; }; DDD5BCB02B4FBF5D0087A0E2 /* TableHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC942B4FBF5D0087A0E2 /* TableHeaderView.swift */; }; DDD5BCB12B4FBF5D0087A0E2 /* TableHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC942B4FBF5D0087A0E2 /* TableHeaderView.swift */; }; - DDD5BCB22B4FBF5D0087A0E2 /* iOSDropDown.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC962B4FBF5D0087A0E2 /* iOSDropDown.swift */; }; - DDD5BCB32B4FBF5D0087A0E2 /* iOSDropDown.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC962B4FBF5D0087A0E2 /* iOSDropDown.swift */; }; DDD5BCB42B4FBF5D0087A0E2 /* Enums.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC972B4FBF5D0087A0E2 /* Enums.swift */; }; DDD5BCB52B4FBF5D0087A0E2 /* Enums.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC972B4FBF5D0087A0E2 /* Enums.swift */; }; DDD5BCB62B4FBF5D0087A0E2 /* Identity.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC992B4FBF5D0087A0E2 /* Identity.swift */; }; @@ -41,12 +45,17 @@ DDD5BCBB2B4FBF5D0087A0E2 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC9C2B4FBF5D0087A0E2 /* ViewController.swift */; }; DDD5BCBC2B4FBF5D0087A0E2 /* ChildOperationVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC9D2B4FBF5D0087A0E2 /* ChildOperationVC.swift */; }; DDD5BCBD2B4FBF5D0087A0E2 /* ChildOperationVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDD5BC9D2B4FBF5D0087A0E2 /* ChildOperationVC.swift */; }; - DDE7BFCB2B95836400484D75 /* IoTConnect2.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDE7BFC92B95835F00484D75 /* IoTConnect2.xcframework */; }; - DDE7BFCC2B95836400484D75 /* IoTConnect2.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DDE7BFC92B95835F00484D75 /* IoTConnect2.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; - DDE7BFD32B9597F300484D75 /* IoTConnect_2_AWS.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDE7BFD12B9597EA00484D75 /* IoTConnect_2_AWS.xcframework */; }; - DDE7BFD42B9597F300484D75 /* IoTConnect_2_AWS.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DDE7BFD12B9597EA00484D75 /* IoTConnect_2_AWS.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + DDD852292C197F830070FE63 /* IotConnect2_aws.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDD852272C197F680070FE63 /* IotConnect2_aws.xcframework */; }; + DDD8522A2C197F830070FE63 /* IotConnect2_aws.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DDD852272C197F680070FE63 /* IotConnect2_aws.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; DDE8B54E2B4FEC3B004865D2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DDE8B54D2B4FEC3B004865D2 /* Main.storyboard */; }; DDE8B54F2B4FEC3B004865D2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DDE8B54D2B4FEC3B004865D2 /* Main.storyboard */; }; + DDE9605F2C0455E300132567 /* DPDConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4642782C0450E700FB4783 /* DPDConstants.swift */; }; + DDE960602C0455E900132567 /* DPDUIView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD46427A2C0450E700FB4783 /* DPDUIView+Extension.swift */; }; + DDE960612C0455E900132567 /* DPDKeyboardListener.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4642792C0450E700FB4783 /* DPDKeyboardListener.swift */; }; + DDE960622C0455FA00132567 /* DropDown.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD46427E2C0450E700FB4783 /* DropDown.swift */; }; + DDE960632C0455FE00132567 /* DropDown+Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD46427F2C0450E700FB4783 /* DropDown+Appearance.swift */; }; + DDE960642C0455FE00132567 /* DropDownCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4642802C0450E700FB4783 /* DropDownCell.swift */; }; + DDE960652C0456B500132567 /* DropDownCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = DD46427C2C0450E700FB4783 /* DropDownCell.xib */; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -56,18 +65,18 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - DDE7BFD42B9597F300484D75 /* IoTConnect_2_AWS.xcframework in Embed Frameworks */, + DDD8522A2C197F830070FE63 /* IotConnect2_aws.xcframework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; }; - DD0F327F2B8C71CF00C5832F /* Embed Frameworks */ = { + DD4374542C465047002581A1 /* Embed Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; dstSubfolderSpec = 10; files = ( - DDE7BFCC2B95836400484D75 /* IoTConnect2.xcframework in Embed Frameworks */, + DD3690B12C47C8D800B88326 /* IoTConnect2.xcframework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -87,27 +96,33 @@ DD0CE2E42B4D4EBC00DFFFB7 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; DD0CE2E72B4D4EBC00DFFFB7 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; DD0CE2E92B4D4EBC00DFFFB7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + DD3690AE2C47C8D400B88326 /* IoTConnect2.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; path = IoTConnect2.xcframework; sourceTree = ""; }; DD36C1E42B85BC5500FAF017 /* IoTConnect2_AWS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = IoTConnect2_AWS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; DD3C73042B4FB8970019551D /* IoTConnectDemo_AWS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = IoTConnectDemo_AWS.app; sourceTree = BUILT_PRODUCTS_DIR; }; DD3C73052B4FB8970019551D /* IoTConnectDemo_AWS.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = IoTConnectDemo_AWS.plist; path = /Users/kirtan.vaghela/Documents/IoTSDK/IoTConnectDemo/IoTConnectDemo_AWS.plist; sourceTree = ""; }; + DD4642782C0450E700FB4783 /* DPDConstants.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DPDConstants.swift; sourceTree = ""; }; + DD4642792C0450E700FB4783 /* DPDKeyboardListener.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DPDKeyboardListener.swift; sourceTree = ""; }; + DD46427A2C0450E700FB4783 /* DPDUIView+Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DPDUIView+Extension.swift"; sourceTree = ""; }; + DD46427C2C0450E700FB4783 /* DropDownCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DropDownCell.xib; sourceTree = ""; }; + DD46427E2C0450E700FB4783 /* DropDown.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropDown.swift; sourceTree = ""; }; + DD46427F2C0450E700FB4783 /* DropDown+Appearance.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "DropDown+Appearance.swift"; sourceTree = ""; }; + DD4642802C0450E700FB4783 /* DropDownCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DropDownCell.swift; sourceTree = ""; }; + DD4642822C0450E700FB4783 /* DropDown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DropDown.h; sourceTree = ""; }; + DD4642832C0450E700FB4783 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; DD49F5222B5519D700010F0D /* IoTConnect2_AWS.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IoTConnect2_AWS.framework; path = IoTConnectDemo/IoTConnect2_AWS.framework; sourceTree = ""; }; DD7719DF2B4D7BA100764E39 /* IoTConnect2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = IoTConnect2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DD77295F2B90766900EFEA7F /* client2301AWS.p12 */ = {isa = PBXFileReference; lastKnownFileType = file; path = client2301AWS.p12; sourceTree = ""; }; DDC51F592B4FCBC200BC613D /* IoTConnect2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = IoTConnect2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; DDC51F5D2B4FCBEC00BC613D /* IoTConnect2_AWS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = IoTConnect2_AWS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; DDD5BC8D2B4FBF5C0087A0E2 /* RadioButtonController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RadioButtonController.swift; sourceTree = ""; }; - DDD5BC8E2B4FBF5C0087A0E2 /* DeviceCertificate.pfx */ = {isa = PBXFileReference; lastKnownFileType = file; path = DeviceCertificate.pfx; sourceTree = ""; }; DDD5BC912B4FBF5C0087A0E2 /* PropertyCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PropertyCell.swift; sourceTree = ""; }; DDD5BC932B4FBF5C0087A0E2 /* TableHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TableHeaderView.xib; sourceTree = ""; }; DDD5BC942B4FBF5D0087A0E2 /* TableHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TableHeaderView.swift; sourceTree = ""; }; - DDD5BC962B4FBF5D0087A0E2 /* iOSDropDown.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = iOSDropDown.swift; sourceTree = ""; }; DDD5BC972B4FBF5D0087A0E2 /* Enums.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Enums.swift; sourceTree = ""; }; DDD5BC992B4FBF5D0087A0E2 /* Identity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Identity.swift; sourceTree = ""; }; DDD5BC9A2B4FBF5D0087A0E2 /* Attributes.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Attributes.swift; sourceTree = ""; }; DDD5BC9C2B4FBF5D0087A0E2 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; DDD5BC9D2B4FBF5D0087A0E2 /* ChildOperationVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChildOperationVC.swift; sourceTree = ""; }; - DDE7BFC92B95835F00484D75 /* IoTConnect2.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; path = IoTConnect2.xcframework; sourceTree = ""; }; - DDE7BFD12B9597EA00484D75 /* IoTConnect_2_AWS.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; path = IoTConnect_2_AWS.xcframework; sourceTree = ""; }; + DDD852272C197F680070FE63 /* IotConnect2_aws.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; path = IotConnect2_aws.xcframework; sourceTree = ""; }; DDE8B5452B4FE32F004865D2 /* IoTConnect2.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = IoTConnect2.xcframework; path = ../IoTConnect2/build/xcframeworks/IoTConnect2.xcframework; sourceTree = ""; }; DDE8B54D2B4FEC3B004865D2 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; /* End PBXFileReference section */ @@ -119,7 +134,7 @@ files = ( 048B1CC473BACF3C2CB1DE40 /* (null) in Frameworks */, 8068697A79797946EC64D57B /* Pods_IoTConnectDemo.framework in Frameworks */, - DDE7BFCB2B95836400484D75 /* IoTConnect2.xcframework in Frameworks */, + DD3690B02C47C8D800B88326 /* IoTConnect2.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -127,7 +142,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DDE7BFD32B9597F300484D75 /* IoTConnect_2_AWS.xcframework in Frameworks */, + DDD852292C197F830070FE63 /* IotConnect2_aws.xcframework in Frameworks */, 4C24DDC7CF2D91BD7C63067E /* Pods_IoTConnectDemo_AWS.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -169,13 +184,11 @@ DD0CE2DA2B4D4EBB00DFFFB7 /* IoTConnectDemo */ = { isa = PBXGroup; children = ( - DD77295F2B90766900EFEA7F /* client2301AWS.p12 */, - DDE7BFD12B9597EA00484D75 /* IoTConnect_2_AWS.xcframework */, - DDE7BFC92B95835F00484D75 /* IoTConnect2.xcframework */, + DD3690AE2C47C8D400B88326 /* IoTConnect2.xcframework */, + DDD852272C197F680070FE63 /* IotConnect2_aws.xcframework */, DD0CE2DB2B4D4EBB00DFFFB7 /* AppDelegate.swift */, DDE8B54D2B4FEC3B004865D2 /* Main.storyboard */, DD0CE2DD2B4D4EBB00DFFFB7 /* SceneDelegate.swift */, - DDD5BC8E2B4FBF5C0087A0E2 /* DeviceCertificate.pfx */, DDD5BC972B4FBF5D0087A0E2 /* Enums.swift */, DDD5BC952B4FBF5D0087A0E2 /* Framework */, DDD5BC982B4FBF5D0087A0E2 /* Models */, @@ -189,6 +202,46 @@ path = IoTConnectDemo; sourceTree = ""; }; + DD46427B2C0450E700FB4783 /* helpers */ = { + isa = PBXGroup; + children = ( + DD4642782C0450E700FB4783 /* DPDConstants.swift */, + DD4642792C0450E700FB4783 /* DPDKeyboardListener.swift */, + DD46427A2C0450E700FB4783 /* DPDUIView+Extension.swift */, + ); + path = helpers; + sourceTree = ""; + }; + DD46427D2C0450E700FB4783 /* resources */ = { + isa = PBXGroup; + children = ( + DD46427C2C0450E700FB4783 /* DropDownCell.xib */, + ); + path = resources; + sourceTree = ""; + }; + DD4642812C0450E700FB4783 /* src */ = { + isa = PBXGroup; + children = ( + DD46427E2C0450E700FB4783 /* DropDown.swift */, + DD46427F2C0450E700FB4783 /* DropDown+Appearance.swift */, + DD4642802C0450E700FB4783 /* DropDownCell.swift */, + ); + path = src; + sourceTree = ""; + }; + DD4642842C0450E700FB4783 /* DropDown */ = { + isa = PBXGroup; + children = ( + DD46427B2C0450E700FB4783 /* helpers */, + DD46427D2C0450E700FB4783 /* resources */, + DD4642812C0450E700FB4783 /* src */, + DD4642822C0450E700FB4783 /* DropDown.h */, + DD4642832C0450E700FB4783 /* Info.plist */, + ); + path = DropDown; + sourceTree = ""; + }; DD7719DE2B4D7BA100764E39 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -225,7 +278,7 @@ DDD5BC952B4FBF5D0087A0E2 /* Framework */ = { isa = PBXGroup; children = ( - DDD5BC962B4FBF5D0087A0E2 /* iOSDropDown.swift */, + DD4642842C0450E700FB4783 /* DropDown */, ); path = Framework; sourceTree = ""; @@ -260,7 +313,7 @@ DD0CE2D52B4D4EBB00DFFFB7 /* Frameworks */, DD0CE2D62B4D4EBB00DFFFB7 /* Resources */, DF944A5A5D70731EB5FCFEE7 /* [CP] Embed Pods Frameworks */, - DD0F327F2B8C71CF00C5832F /* Embed Frameworks */, + DD4374542C465047002581A1 /* Embed Frameworks */, ); buildRules = ( ); @@ -330,10 +383,10 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - DDD5BCA82B4FBF5D0087A0E2 /* DeviceCertificate.pfx in Resources */, DDE8B54E2B4FEC3B004865D2 /* Main.storyboard in Resources */, DD0CE2E82B4D4EBC00DFFFB7 /* LaunchScreen.storyboard in Resources */, DD0CE2E52B4D4EBC00DFFFB7 /* Assets.xcassets in Resources */, + DD4642882C0450E700FB4783 /* DropDownCell.xib in Resources */, DDD5BCAE2B4FBF5D0087A0E2 /* TableHeaderView.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -342,11 +395,10 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - DD7729602B90766900EFEA7F /* client2301AWS.p12 in Resources */, - DDD5BCA92B4FBF5D0087A0E2 /* DeviceCertificate.pfx in Resources */, DDE8B54F2B4FEC3B004865D2 /* Main.storyboard in Resources */, DD3C72FD2B4FB8970019551D /* LaunchScreen.storyboard in Resources */, DD3C72FE2B4FB8970019551D /* Assets.xcassets in Resources */, + DDE960652C0456B500132567 /* DropDownCell.xib in Resources */, DDD5BCAF2B4FBF5D0087A0E2 /* TableHeaderView.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -440,14 +492,19 @@ buildActionMask = 2147483647; files = ( DDD5BCB02B4FBF5D0087A0E2 /* TableHeaderView.swift in Sources */, + DD4642862C0450E700FB4783 /* DPDKeyboardListener.swift in Sources */, DDD5BCB62B4FBF5D0087A0E2 /* Identity.swift in Sources */, - DDD5BCB22B4FBF5D0087A0E2 /* iOSDropDown.swift in Sources */, + DD46428B2C0450E700FB4783 /* DropDownCell.swift in Sources */, DDD5BCAC2B4FBF5D0087A0E2 /* PropertyCell.swift in Sources */, + DD4642892C0450E700FB4783 /* DropDown.swift in Sources */, DDD5BCBA2B4FBF5D0087A0E2 /* ViewController.swift in Sources */, DD0CE2DC2B4D4EBB00DFFFB7 /* AppDelegate.swift in Sources */, + DD4642852C0450E700FB4783 /* DPDConstants.swift in Sources */, DD0CE2DE2B4D4EBB00DFFFB7 /* SceneDelegate.swift in Sources */, DDD5BCA62B4FBF5D0087A0E2 /* RadioButtonController.swift in Sources */, DDD5BCB42B4FBF5D0087A0E2 /* Enums.swift in Sources */, + DD46428A2C0450E700FB4783 /* DropDown+Appearance.swift in Sources */, + DD4642872C0450E700FB4783 /* DPDUIView+Extension.swift in Sources */, DDD5BCB82B4FBF5D0087A0E2 /* Attributes.swift in Sources */, DDD5BCBC2B4FBF5D0087A0E2 /* ChildOperationVC.swift in Sources */, ); @@ -457,16 +514,21 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + DDE9605F2C0455E300132567 /* DPDConstants.swift in Sources */, DDD5BCB12B4FBF5D0087A0E2 /* TableHeaderView.swift in Sources */, DDD5BCB72B4FBF5D0087A0E2 /* Identity.swift in Sources */, - DDD5BCB32B4FBF5D0087A0E2 /* iOSDropDown.swift in Sources */, + DDE960632C0455FE00132567 /* DropDown+Appearance.swift in Sources */, + DDE960642C0455FE00132567 /* DropDownCell.swift in Sources */, DDD5BCAD2B4FBF5D0087A0E2 /* PropertyCell.swift in Sources */, DDD5BCBB2B4FBF5D0087A0E2 /* ViewController.swift in Sources */, DD3C72F82B4FB8970019551D /* AppDelegate.swift in Sources */, DD3C72F92B4FB8970019551D /* SceneDelegate.swift in Sources */, DDD5BCA72B4FBF5D0087A0E2 /* RadioButtonController.swift in Sources */, + DDE960602C0455E900132567 /* DPDUIView+Extension.swift in Sources */, + DDE960612C0455E900132567 /* DPDKeyboardListener.swift in Sources */, DDD5BCB52B4FBF5D0087A0E2 /* Enums.swift in Sources */, DDD5BCB92B4FBF5D0087A0E2 /* Attributes.swift in Sources */, + DDE960622C0455FA00132567 /* DropDown.swift in Sources */, DDD5BCBD2B4FBF5D0087A0E2 /* ChildOperationVC.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -611,7 +673,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_IDENTITY = "Apple Development"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; @@ -624,11 +686,13 @@ ); GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = IoTConnectDemo/Info.plist; + INFOPLIST_KEY_CFBundleDisplayName = "IoTC SDK"; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UIUserInterfaceStyle = Light; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -638,7 +702,7 @@ PRODUCT_BUNDLE_IDENTIFIER = com.softweb.test; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Emergency Distribution Profile 2023"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Ripal Vyas All"; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; @@ -652,7 +716,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_IDENTITY = "Apple Development"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; @@ -665,11 +729,13 @@ ); GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = IoTConnectDemo/Info.plist; + INFOPLIST_KEY_CFBundleDisplayName = "IoTC SDK"; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UIUserInterfaceStyle = Light; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -679,7 +745,7 @@ PRODUCT_BUNDLE_IDENTIFIER = com.softweb.test; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Emergency Distribution Profile 2023"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Ripal Vyas All"; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; @@ -692,7 +758,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; @@ -708,8 +774,8 @@ INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; INFOPLIST_KEY_UIMainStoryboardFile = Main; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; + INFOPLIST_KEY_UIUserInterfaceStyle = Light; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -720,7 +786,7 @@ PRODUCT_BUNDLE_IDENTIFIER = com.softweb.testAWS; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Emergency Distribution Profile 2023"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Ripal Vyas All"; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; @@ -733,7 +799,7 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; @@ -749,8 +815,8 @@ INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; INFOPLIST_KEY_UIMainStoryboardFile = Main; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; + INFOPLIST_KEY_UIUserInterfaceStyle = Light; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -761,7 +827,7 @@ PRODUCT_BUNDLE_IDENTIFIER = com.softweb.testAWS; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; - "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Emergency Distribution Profile 2023"; + "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "Ripal Vyas All"; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; diff --git a/IoTConnectDemo/IoTConnectDemo.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist b/IoTConnectDemo/IoTConnectDemo.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist index 5124154..aa2a9f0 100644 --- a/IoTConnectDemo/IoTConnectDemo.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/IoTConnectDemo/IoTConnectDemo.xcodeproj/xcuserdata/kirtan.vaghela.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ IoTConnectDemo.xcscheme_^#shared#^_ orderHint - 6 + 7 IoTConnectDemo_AWS.xcscheme_^#shared#^_ diff --git a/IoTConnectDemo/IoTConnectDemo.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate b/IoTConnectDemo/IoTConnectDemo.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate index e41f797..8adb07f 100644 Binary files a/IoTConnectDemo/IoTConnectDemo.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate and b/IoTConnectDemo/IoTConnectDemo.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/IoTConnectDemo/IoTConnectDemo.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/IoTConnectDemo/IoTConnectDemo.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist index b94ee02..2b8f472 100644 --- a/IoTConnectDemo/IoTConnectDemo.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ b/IoTConnectDemo/IoTConnectDemo.xcworkspace/xcuserdata/kirtan.vaghela.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -14,8 +14,8 @@ filePath = "IoTConnectDemo/ViewController/ViewController.swift" startingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807" - startingLineNumber = "167" - endingLineNumber = "167" + startingLineNumber = "170" + endingLineNumber = "170" landmarkName = "connectSDK()" landmarkType = "7"> @@ -30,11 +30,187 @@ filePath = "IoTConnectDemo/ViewController/ViewController.swift" startingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807" - startingLineNumber = "135" - endingLineNumber = "135" + startingLineNumber = "138" + endingLineNumber = "138" landmarkName = "connectSDK()" landmarkType = "7"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/IoTConnectDemo/IoTConnectDemo/.DS_Store b/IoTConnectDemo/IoTConnectDemo/.DS_Store index 4b6db41..d9a8333 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/.DS_Store and b/IoTConnectDemo/IoTConnectDemo/.DS_Store differ diff --git a/IoTConnectDemo/IoTConnectDemo/AppDelegate.swift b/IoTConnectDemo/IoTConnectDemo/AppDelegate.swift index 9ab9aa6..79550f6 100644 --- a/IoTConnectDemo/IoTConnectDemo/AppDelegate.swift +++ b/IoTConnectDemo/IoTConnectDemo/AppDelegate.swift @@ -6,14 +6,19 @@ // import UIKit +import IQKeyboardManagerSwift +import AppCenter +import AppCenterAnalytics +import AppCenterCrashes @main class AppDelegate: UIResponder, UIApplicationDelegate { - - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. + IQKeyboardManager.shared.enable = true + AppCenter.start(withAppSecret: "24ec88c9-0ead-4b81-ba6b-567e8be9d5ce", services: [Analytics.self, Crashes.self]) + return true } diff --git a/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/AppIcon.appiconset/Contents.json b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/AppIcon.appiconset/Contents.json index 13613e3..75f3bed 100644 --- a/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/AppIcon.appiconset/Contents.json +++ b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -1,6 +1,7 @@ { "images" : [ { + "filename" : "MicrosoftTeams-image (6).png", "idiom" : "universal", "platform" : "ios", "size" : "1024x1024" diff --git a/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/AppIcon.appiconset/MicrosoftTeams-image (6).png b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/AppIcon.appiconset/MicrosoftTeams-image (6).png new file mode 100644 index 0000000..22bc3e8 Binary files /dev/null and b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/AppIcon.appiconset/MicrosoftTeams-image (6).png differ diff --git a/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/imgDownArrow.imageset/Contents.json b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/imgDownArrow.imageset/Contents.json new file mode 100644 index 0000000..0e2b75d --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/imgDownArrow.imageset/Contents.json @@ -0,0 +1,22 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "downArrow.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "downArrow 1.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/imgDownArrow.imageset/downArrow 1.png b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/imgDownArrow.imageset/downArrow 1.png new file mode 100644 index 0000000..9507d4d Binary files /dev/null and b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/imgDownArrow.imageset/downArrow 1.png differ diff --git a/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/imgDownArrow.imageset/downArrow.png b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/imgDownArrow.imageset/downArrow.png new file mode 100644 index 0000000..9507d4d Binary files /dev/null and b/IoTConnectDemo/IoTConnectDemo/Assets.xcassets/imgDownArrow.imageset/downArrow.png differ diff --git a/IoTConnectDemo/IoTConnectDemo/DeviceCertificate.pfx b/IoTConnectDemo/IoTConnectDemo/DeviceCertificate.pfx deleted file mode 100644 index 408aa13..0000000 Binary files a/IoTConnectDemo/IoTConnectDemo/DeviceCertificate.pfx and /dev/null differ diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/DropDown.h b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/DropDown.h new file mode 100644 index 0000000..f2674b3 --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/DropDown.h @@ -0,0 +1,19 @@ +// +// DropDown.h +// DropDown +// +// Created by Kevin Hirsch on 13/06/16. +// Copyright © 2016 Kevin Hirsch. All rights reserved. +// + +#import + +//! Project version number for DropDown. +FOUNDATION_EXPORT double DropDownVersionNumber; + +//! Project version string for DropDown. +FOUNDATION_EXPORT const unsigned char DropDownVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/Info.plist b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/Info.plist new file mode 100644 index 0000000..2eb2135 --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 2.3.12 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/helpers/DPDConstants.swift b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/helpers/DPDConstants.swift new file mode 100644 index 0000000..52047be --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/helpers/DPDConstants.swift @@ -0,0 +1,61 @@ +// +// Constants.swift +// DropDown +// +// Created by Kevin Hirsch on 28/07/15. +// Copyright (c) 2015 Kevin Hirsch. All rights reserved. +// + +#if os(iOS) + +import UIKit + +internal struct DPDConstant { + + internal struct KeyPath { + + static let Frame = "frame" + + } + + internal struct ReusableIdentifier { + + static let DropDownCell = "DropDownCell" + + } + + internal struct UI { + + static let TextColor = UIColor.black + static let SelectedTextColor = UIColor.black + static let TextFont = UIFont.systemFont(ofSize: 15) + static let BackgroundColor = UIColor(white: 0.94, alpha: 1) + static let SelectionBackgroundColor = UIColor(white: 0.89, alpha: 1) + static let SeparatorColor = UIColor.clear + static let CornerRadius: CGFloat = 2 + static let RowHeight: CGFloat = 44 + static let HeightPadding: CGFloat = 20 + + struct Shadow { + + static let Color = UIColor.darkGray + static let Offset = CGSize.zero + static let Opacity: Float = 0.4 + static let Radius: CGFloat = 8 + + } + + } + + internal struct Animation { + + static let Duration = 0.15 + static let EntranceOptions: UIView.AnimationOptions = [.allowUserInteraction, .curveEaseOut] + static let ExitOptions: UIView.AnimationOptions = [.allowUserInteraction, .curveEaseIn] + static let DownScaleTransform = CGAffineTransform(scaleX: 0.9, y: 0.9) + + } + +} + +#endif diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/helpers/DPDKeyboardListener.swift b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/helpers/DPDKeyboardListener.swift new file mode 100644 index 0000000..d89c41c --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/helpers/DPDKeyboardListener.swift @@ -0,0 +1,72 @@ +// +// KeyboardListener.swift +// DropDown +// +// Created by Kevin Hirsch on 30/07/15. +// Copyright (c) 2015 Kevin Hirsch. All rights reserved. +// + +#if os(iOS) + +import UIKit + +internal final class KeyboardListener { + + static let sharedInstance = KeyboardListener() + + fileprivate(set) var isVisible = false + fileprivate(set) var keyboardFrame = CGRect.zero + fileprivate var isListening = false + + deinit { + stopListeningToKeyboard() + } + +} + +//MARK: - Notifications + +extension KeyboardListener { + + func startListeningToKeyboard() { + if isListening { + return + } + + isListening = true + + NotificationCenter.default.addObserver( + self, + selector: #selector(keyboardWillShow(_:)), + name: UIResponder.keyboardWillShowNotification, + object: nil) + NotificationCenter.default.addObserver( + self, + selector: #selector(keyboardWillHide(_:)), + name: UIResponder.keyboardWillHideNotification, + object: nil) + } + + func stopListeningToKeyboard() { + NotificationCenter.default.removeObserver(self) + } + + @objc + fileprivate func keyboardWillShow(_ notification: Notification) { + isVisible = true + keyboardFrame = keyboardFrame(fromNotification: notification) + } + + @objc + fileprivate func keyboardWillHide(_ notification: Notification) { + isVisible = false + keyboardFrame = keyboardFrame(fromNotification: notification) + } + + fileprivate func keyboardFrame(fromNotification notification: Notification) -> CGRect { + return ((notification as NSNotification).userInfo?[UIResponder.keyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue ?? CGRect.zero + } + +} + +#endif diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/helpers/DPDUIView+Extension.swift b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/helpers/DPDUIView+Extension.swift new file mode 100644 index 0000000..f29705d --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/helpers/DPDUIView+Extension.swift @@ -0,0 +1,61 @@ +// +// UIView+Constraints.swift +// DropDown +// +// Created by Kevin Hirsch on 28/07/15. +// Copyright (c) 2015 Kevin Hirsch. All rights reserved. +// + +#if os(iOS) + +import UIKit + +//MARK: - Constraints + +internal extension UIView { + + func addConstraints(format: String, options: NSLayoutConstraint.FormatOptions = [], metrics: [String: AnyObject]? = nil, views: [String: UIView]) { + addConstraints(NSLayoutConstraint.constraints(withVisualFormat: format, options: options, metrics: metrics, views: views)) + } + + func addUniversalConstraints(format: String, options: NSLayoutConstraint.FormatOptions = [], metrics: [String: AnyObject]? = nil, views: [String: UIView]) { + addConstraints(format: "H:\(format)", options: options, metrics: metrics, views: views) + addConstraints(format: "V:\(format)", options: options, metrics: metrics, views: views) + } + +} + + + +//MARK: - Bounds + +internal extension UIView { + + var windowFrame: CGRect? { + return superview?.convert(frame, to: nil) + } + +} + +internal extension UIWindow { + + static func visibleWindow() -> UIWindow? { + var currentWindow = UIApplication.shared.keyWindow + + if currentWindow == nil { + let frontToBackWindows = Array(UIApplication.shared.windows.reversed()) + + for window in frontToBackWindows { + if window.windowLevel == UIWindow.Level.normal { + currentWindow = window + break + } + } + } + + return currentWindow + } + +} + +#endif diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/resources/DropDownCell.xib b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/resources/DropDownCell.xib new file mode 100644 index 0000000..6acc3b6 --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/resources/DropDownCell.xib @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/src/DropDown+Appearance.swift b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/src/DropDown+Appearance.swift new file mode 100644 index 0000000..7ac057d --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/src/DropDown+Appearance.swift @@ -0,0 +1,35 @@ +// +// DropDown+Appearance.swift +// DropDown +// +// Created by Kevin Hirsch on 13/06/16. +// Copyright © 2016 Kevin Hirsch. All rights reserved. +// + +#if os(iOS) + +import UIKit + +extension DropDown { + + public class func setupDefaultAppearance() { + let appearance = DropDown.appearance() + + appearance.cellHeight = DPDConstant.UI.RowHeight + appearance.backgroundColor = DPDConstant.UI.BackgroundColor + appearance.selectionBackgroundColor = DPDConstant.UI.SelectionBackgroundColor + appearance.separatorColor = DPDConstant.UI.SeparatorColor + appearance.cornerRadius = DPDConstant.UI.CornerRadius + appearance.shadowColor = DPDConstant.UI.Shadow.Color + appearance.shadowOffset = DPDConstant.UI.Shadow.Offset + appearance.shadowOpacity = DPDConstant.UI.Shadow.Opacity + appearance.shadowRadius = DPDConstant.UI.Shadow.Radius + appearance.animationduration = DPDConstant.Animation.Duration + appearance.textColor = DPDConstant.UI.TextColor + appearance.selectedTextColor = DPDConstant.UI.SelectedTextColor + appearance.textFont = DPDConstant.UI.TextFont + } + +} + +#endif diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/src/DropDown.swift b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/src/DropDown.swift new file mode 100644 index 0000000..88c4eae --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/src/DropDown.swift @@ -0,0 +1,1209 @@ +// +// DropDown.swift +// DropDown +// +// Created by Kevin Hirsch on 28/07/15. +// Copyright (c) 2015 Kevin Hirsch. All rights reserved. +// + +#if os(iOS) + +import UIKit + +public typealias Index = Int +public typealias Closure = () -> Void +public typealias SelectionClosure = (Index, String) -> Void +public typealias MultiSelectionClosure = ([Index], [String]) -> Void +public typealias ConfigurationClosure = (Index, String) -> String +public typealias CellConfigurationClosure = (Index, String, DropDownCell) -> Void +private typealias ComputeLayoutTuple = (x: CGFloat, y: CGFloat, width: CGFloat, offscreenHeight: CGFloat) + +/// Can be `UIView` or `UIBarButtonItem`. +@objc +public protocol AnchorView: class { + + var plainView: UIView { get } + +} + +extension UIView: AnchorView { + + public var plainView: UIView { + return self + } + +} + +extension UIBarButtonItem: AnchorView { + + public var plainView: UIView { + return value(forKey: "view") as! UIView + } + +} + +/// A Material Design drop down in replacement for `UIPickerView`. +public final class DropDown: UIView { + + //TODO: handle iOS 7 landscape mode + + /// The dismiss mode for a drop down. + public enum DismissMode { + + /// A tap outside the drop down is required to dismiss. + case onTap + + /// No tap is required to dismiss, it will dimiss when interacting with anything else. + case automatic + + /// Not dismissable by the user. + case manual + + } + + /// The direction where the drop down will show from the `anchorView`. + public enum Direction { + + /// The drop down will show below the anchor view when possible, otherwise above if there is more place than below. + case any + + /// The drop down will show above the anchor view or will not be showed if not enough space. + case top + + /// The drop down will show below or will not be showed if not enough space. + case bottom + + } + + //MARK: - Properties + + /// The current visible drop down. There can be only one visible drop down at a time. + public static weak var VisibleDropDown: DropDown? + + //MARK: UI + fileprivate let dismissableView = UIView() + fileprivate let tableViewContainer = UIView() + fileprivate let tableView = UITableView() + fileprivate var templateCell: DropDownCell! + fileprivate lazy var arrowIndication: UIImageView = { + UIGraphicsBeginImageContextWithOptions(CGSize(width: 20, height: 10), false, 0) + let path = UIBezierPath() + path.move(to: CGPoint(x: 0, y: 10)) + path.addLine(to: CGPoint(x: 20, y: 10)) + path.addLine(to: CGPoint(x: 10, y: 0)) + path.addLine(to: CGPoint(x: 0, y: 10)) + UIColor.black.setFill() + path.fill() + let img = UIGraphicsGetImageFromCurrentImageContext() + UIGraphicsEndImageContext() + let tintImg = img?.withRenderingMode(.alwaysTemplate) + let imgv = UIImageView(image: tintImg) + imgv.frame = CGRect(x: 0, y: -10, width: 15, height: 10) + return imgv + }() + + + /// The view to which the drop down will displayed onto. + public weak var anchorView: AnchorView? { + didSet { setNeedsUpdateConstraints() } + } + + /** + The possible directions where the drop down will be showed. + + See `Direction` enum for more info. + */ + public var direction = Direction.any + + /** + The offset point relative to `anchorView` when the drop down is shown above the anchor view. + + By default, the drop down is showed onto the `anchorView` with the top + left corner for its origin, so an offset equal to (0, 0). + You can change here the default drop down origin. + */ + public var topOffset: CGPoint = .zero { + didSet { setNeedsUpdateConstraints() } + } + + /** + The offset point relative to `anchorView` when the drop down is shown below the anchor view. + + By default, the drop down is showed onto the `anchorView` with the top + left corner for its origin, so an offset equal to (0, 0). + You can change here the default drop down origin. + */ + public var bottomOffset: CGPoint = .zero { + didSet { setNeedsUpdateConstraints() } + } + + /** + The offset from the bottom of the window when the drop down is shown below the anchor view. + DropDown applies this offset only if keyboard is hidden. + */ + public var offsetFromWindowBottom = CGFloat(0) { + didSet { setNeedsUpdateConstraints() } + } + + /** + The width of the drop down. + + Defaults to `anchorView.bounds.width - offset.x`. + */ + public var width: CGFloat? { + didSet { setNeedsUpdateConstraints() } + } + + /** + arrowIndication.x + + arrowIndication will be add to tableViewContainer when configured + */ + public var arrowIndicationX: CGFloat? { + didSet { + if let arrowIndicationX = arrowIndicationX { + tableViewContainer.addSubview(arrowIndication) + arrowIndication.tintColor = tableViewBackgroundColor + arrowIndication.frame.origin.x = arrowIndicationX + } else { + arrowIndication.removeFromSuperview() + } + } + } + + //MARK: Constraints + fileprivate var heightConstraint: NSLayoutConstraint! + fileprivate var widthConstraint: NSLayoutConstraint! + fileprivate var xConstraint: NSLayoutConstraint! + fileprivate var yConstraint: NSLayoutConstraint! + + //MARK: Appearance + @objc public dynamic var cellHeight = DPDConstant.UI.RowHeight { + willSet { tableView.rowHeight = newValue } + didSet { reloadAllComponents() } + } + + @objc fileprivate dynamic var tableViewBackgroundColor = DPDConstant.UI.BackgroundColor { + willSet { + tableView.backgroundColor = newValue + if arrowIndicationX != nil { arrowIndication.tintColor = newValue } + } + } + + public override var backgroundColor: UIColor? { + get { return tableViewBackgroundColor } + set { tableViewBackgroundColor = newValue! } + } + + /** + The color of the dimmed background (behind the drop down, covering the entire screen). + */ + public var dimmedBackgroundColor = UIColor.clear { + willSet { super.backgroundColor = newValue } + } + + /** + The background color of the selected cell in the drop down. + + Changing the background color automatically reloads the drop down. + */ + @objc public dynamic var selectionBackgroundColor = DPDConstant.UI.SelectionBackgroundColor + + /** + The separator color between cells. + + Changing the separator color automatically reloads the drop down. + */ + @objc public dynamic var separatorColor = DPDConstant.UI.SeparatorColor { + willSet { tableView.separatorColor = newValue } + didSet { reloadAllComponents() } + } + + /** + The corner radius of DropDown. + + Changing the corner radius automatically reloads the drop down. + */ + @objc public dynamic var cornerRadius = DPDConstant.UI.CornerRadius { + willSet { + tableViewContainer.layer.cornerRadius = newValue + tableView.layer.cornerRadius = newValue + } + didSet { reloadAllComponents() } + } + + /** + Alias method for `cornerRadius` variable to avoid ambiguity. + */ + @objc public dynamic func setupCornerRadius(_ radius: CGFloat) { + tableViewContainer.layer.cornerRadius = radius + tableView.layer.cornerRadius = radius + reloadAllComponents() + } + + /** + The masked corners of DropDown. + + Changing the masked corners automatically reloads the drop down. + */ + @available(iOS 11.0, *) + @objc public dynamic func setupMaskedCorners(_ cornerMask: CACornerMask) { + tableViewContainer.layer.maskedCorners = cornerMask + tableView.layer.maskedCorners = cornerMask + reloadAllComponents() + } + + /** + The color of the shadow. + + Changing the shadow color automatically reloads the drop down. + */ + @objc public dynamic var shadowColor = DPDConstant.UI.Shadow.Color { + willSet { tableViewContainer.layer.shadowColor = newValue.cgColor } + didSet { reloadAllComponents() } + } + + /** + The offset of the shadow. + + Changing the shadow color automatically reloads the drop down. + */ + @objc public dynamic var shadowOffset = DPDConstant.UI.Shadow.Offset { + willSet { tableViewContainer.layer.shadowOffset = newValue } + didSet { reloadAllComponents() } + } + + /** + The opacity of the shadow. + + Changing the shadow opacity automatically reloads the drop down. + */ + @objc public dynamic var shadowOpacity = DPDConstant.UI.Shadow.Opacity { + willSet { tableViewContainer.layer.shadowOpacity = newValue } + didSet { reloadAllComponents() } + } + + /** + The radius of the shadow. + + Changing the shadow radius automatically reloads the drop down. + */ + @objc public dynamic var shadowRadius = DPDConstant.UI.Shadow.Radius { + willSet { tableViewContainer.layer.shadowRadius = newValue } + didSet { reloadAllComponents() } + } + + /** + The duration of the show/hide animation. + */ + @objc public dynamic var animationduration = DPDConstant.Animation.Duration + + /** + The option of the show animation. Global change. + */ + public static var animationEntranceOptions = DPDConstant.Animation.EntranceOptions + + /** + The option of the hide animation. Global change. + */ + public static var animationExitOptions = DPDConstant.Animation.ExitOptions + + /** + The option of the show animation. Only change the caller. To change all drop down's use the static var. + */ + public var animationEntranceOptions: UIView.AnimationOptions = DropDown.animationEntranceOptions + + /** + The option of the hide animation. Only change the caller. To change all drop down's use the static var. + */ + public var animationExitOptions: UIView.AnimationOptions = DropDown.animationExitOptions + + /** + The downScale transformation of the tableview when the DropDown is appearing + */ + public var downScaleTransform = DPDConstant.Animation.DownScaleTransform { + willSet { tableViewContainer.transform = newValue } + } + + /** + The color of the text for each cells of the drop down. + + Changing the text color automatically reloads the drop down. + */ + @objc public dynamic var textColor = DPDConstant.UI.TextColor { + didSet { reloadAllComponents() } + } + + /** + The color of the text for selected cells of the drop down. + + Changing the text color automatically reloads the drop down. + */ + @objc public dynamic var selectedTextColor = DPDConstant.UI.SelectedTextColor { + didSet { reloadAllComponents() } + } + + /** + The font of the text for each cells of the drop down. + + Changing the text font automatically reloads the drop down. + */ + @objc public dynamic var textFont = DPDConstant.UI.TextFont { + didSet { reloadAllComponents() } + } + + /** + The NIB to use for DropDownCells + + Changing the cell nib automatically reloads the drop down. + */ + public var cellNib = UINib(nibName: "DropDownCell", bundle: bundle) { + didSet { + tableView.register(cellNib, forCellReuseIdentifier: DPDConstant.ReusableIdentifier.DropDownCell) + templateCell = nil + reloadAllComponents() + } + } + + /// Correctly specify Bundle for Swift Packages + fileprivate static var bundle: Bundle { + #if SWIFT_PACKAGE + return Bundle.module + #else + return Bundle(for: DropDownCell.self) + #endif + } + + //MARK: Content + + /** + The data source for the drop down. + + Changing the data source automatically reloads the drop down. + */ + public var dataSource = [String]() { + didSet { + deselectRows(at: selectedRowIndices) + reloadAllComponents() + } + } + + /** + The localization keys for the data source for the drop down. + + Changing this value automatically reloads the drop down. + This has uses for setting accibility identifiers on the drop down cells (same ones as the localization keys). + */ + public var localizationKeysDataSource = [String]() { + didSet { + dataSource = localizationKeysDataSource.map { NSLocalizedString($0, comment: "") } + } + } + + /// The indicies that have been selected + fileprivate var selectedRowIndices = Set() + + /** + The format for the cells' text. + + By default, the cell's text takes the plain `dataSource` value. + Changing `cellConfiguration` automatically reloads the drop down. + */ + public var cellConfiguration: ConfigurationClosure? { + didSet { reloadAllComponents() } + } + + /** + A advanced formatter for the cells. Allows customization when custom cells are used + + Changing `customCellConfiguration` automatically reloads the drop down. + */ + public var customCellConfiguration: CellConfigurationClosure? { + didSet { reloadAllComponents() } + } + + /// The action to execute when the user selects a cell. + public var selectionAction: SelectionClosure? + + /** + The action to execute when the user selects multiple cells. + + Providing an action will turn on multiselection mode. + The single selection action will still be called if provided. + */ + public var multiSelectionAction: MultiSelectionClosure? + + /// The action to execute when the drop down will show. + public var willShowAction: Closure? + + /// The action to execute when the user cancels/hides the drop down. + public var cancelAction: Closure? + + /// The dismiss mode of the drop down. Default is `OnTap`. + public var dismissMode = DismissMode.onTap { + willSet { + if newValue == .onTap { + let gestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(dismissableViewTapped)) + dismissableView.addGestureRecognizer(gestureRecognizer) + } else if let gestureRecognizer = dismissableView.gestureRecognizers?.first { + dismissableView.removeGestureRecognizer(gestureRecognizer) + } + } + } + + fileprivate var minHeight: CGFloat { + return tableView.rowHeight + } + + fileprivate var didSetupConstraints = false + + //MARK: - Init's + + deinit { + stopListeningToNotifications() + } + + /** + Creates a new instance of a drop down. + Don't forget to setup the `dataSource`, + the `anchorView` and the `selectionAction` + at least before calling `show()`. + */ + public convenience init() { + self.init(frame: .zero) + } + + /** + Creates a new instance of a drop down. + + - parameter anchorView: The view to which the drop down will displayed onto. + - parameter selectionAction: The action to execute when the user selects a cell. + - parameter dataSource: The data source for the drop down. + - parameter topOffset: The offset point relative to `anchorView` used when drop down is displayed on above the anchor view. + - parameter bottomOffset: The offset point relative to `anchorView` used when drop down is displayed on below the anchor view. + - parameter cellConfiguration: The format for the cells' text. + - parameter cancelAction: The action to execute when the user cancels/hides the drop down. + + - returns: A new instance of a drop down customized with the above parameters. + */ + public convenience init(anchorView: AnchorView, selectionAction: SelectionClosure? = nil, dataSource: [String] = [], topOffset: CGPoint? = nil, bottomOffset: CGPoint? = nil, cellConfiguration: ConfigurationClosure? = nil, cancelAction: Closure? = nil) { + self.init(frame: .zero) + + self.anchorView = anchorView + self.selectionAction = selectionAction + self.dataSource = dataSource + self.topOffset = topOffset ?? .zero + self.bottomOffset = bottomOffset ?? .zero + self.cellConfiguration = cellConfiguration + self.cancelAction = cancelAction + } + + override public init(frame: CGRect) { + super.init(frame: frame) + setup() + } + + public required init?(coder aDecoder: NSCoder) { + super.init(coder: aDecoder) + setup() + } + +} + +//MARK: - Setup + +private extension DropDown { + + func setup() { + tableView.register(cellNib, forCellReuseIdentifier: DPDConstant.ReusableIdentifier.DropDownCell) + + DispatchQueue.main.async { + //HACK: If not done in dispatch_async on main queue `setupUI` will have no effect + self.updateConstraintsIfNeeded() + self.setupUI() + } + + tableView.rowHeight = cellHeight + setHiddentState() + isHidden = true + + dismissMode = .onTap + + tableView.delegate = self + tableView.dataSource = self + + startListeningToKeyboard() + + accessibilityIdentifier = "drop_down" + } + + func setupUI() { + super.backgroundColor = dimmedBackgroundColor + + tableViewContainer.layer.masksToBounds = false + tableViewContainer.layer.cornerRadius = cornerRadius + tableViewContainer.layer.shadowColor = shadowColor.cgColor + tableViewContainer.layer.shadowOffset = shadowOffset + tableViewContainer.layer.shadowOpacity = shadowOpacity + tableViewContainer.layer.shadowRadius = shadowRadius + + tableView.backgroundColor = tableViewBackgroundColor + tableView.separatorColor = separatorColor + tableView.layer.cornerRadius = cornerRadius + tableView.layer.masksToBounds = true + } + +} + +//MARK: - UI + +extension DropDown { + + public override func updateConstraints() { + if !didSetupConstraints { + setupConstraints() + } + + didSetupConstraints = true + + let layout = computeLayout() + + if !layout.canBeDisplayed { + super.updateConstraints() + hide() + + return + } + + xConstraint.constant = layout.x + yConstraint.constant = layout.y + widthConstraint.constant = layout.width + heightConstraint.constant = layout.visibleHeight + + tableView.isScrollEnabled = layout.offscreenHeight > 0 + + DispatchQueue.main.async { [weak self] in + self?.tableView.flashScrollIndicators() + } + + super.updateConstraints() + } + + fileprivate func setupConstraints() { + translatesAutoresizingMaskIntoConstraints = false + + // Dismissable view + addSubview(dismissableView) + dismissableView.translatesAutoresizingMaskIntoConstraints = false + + addUniversalConstraints(format: "|[dismissableView]|", views: ["dismissableView": dismissableView]) + + + // Table view container + addSubview(tableViewContainer) + tableViewContainer.translatesAutoresizingMaskIntoConstraints = false + + xConstraint = NSLayoutConstraint( + item: tableViewContainer, + attribute: .leading, + relatedBy: .equal, + toItem: self, + attribute: .leading, + multiplier: 1, + constant: 0) + addConstraint(xConstraint) + + yConstraint = NSLayoutConstraint( + item: tableViewContainer, + attribute: .top, + relatedBy: .equal, + toItem: self, + attribute: .top, + multiplier: 1, + constant: 0) + addConstraint(yConstraint) + + widthConstraint = NSLayoutConstraint( + item: tableViewContainer, + attribute: .width, + relatedBy: .equal, + toItem: nil, + attribute: .notAnAttribute, + multiplier: 1, + constant: 0) + tableViewContainer.addConstraint(widthConstraint) + + heightConstraint = NSLayoutConstraint( + item: tableViewContainer, + attribute: .height, + relatedBy: .equal, + toItem: nil, + attribute: .notAnAttribute, + multiplier: 1, + constant: 0) + tableViewContainer.addConstraint(heightConstraint) + + // Table view + tableViewContainer.addSubview(tableView) + tableView.translatesAutoresizingMaskIntoConstraints = false + + tableViewContainer.addUniversalConstraints(format: "|[tableView]|", views: ["tableView": tableView]) + } + + public override func layoutSubviews() { + super.layoutSubviews() + + // When orientation changes, layoutSubviews is called + // We update the constraint to update the position + setNeedsUpdateConstraints() + + let shadowPath = UIBezierPath(roundedRect: tableViewContainer.bounds, cornerRadius: cornerRadius) + tableViewContainer.layer.shadowPath = shadowPath.cgPath + } + + fileprivate func computeLayout() -> (x: CGFloat, y: CGFloat, width: CGFloat, offscreenHeight: CGFloat, visibleHeight: CGFloat, canBeDisplayed: Bool, Direction: Direction) { + var layout: ComputeLayoutTuple = (0, 0, 0, 0) + var direction = self.direction + + guard let window = UIWindow.visibleWindow() else { return (0, 0, 0, 0, 0, false, direction) } + + barButtonItemCondition: if let anchorView = anchorView as? UIBarButtonItem { + let isRightBarButtonItem = anchorView.plainView.frame.minX > window.frame.midX + + guard isRightBarButtonItem else { break barButtonItemCondition } + + let width = self.width ?? fittingWidth() + let anchorViewWidth = anchorView.plainView.frame.width + let x = -(width - anchorViewWidth) + + bottomOffset = CGPoint(x: x, y: 0) + } + + if anchorView == nil { + layout = computeLayoutBottomDisplay(window: window) + direction = .any + } else { + switch direction { + case .any: + layout = computeLayoutBottomDisplay(window: window) + direction = .bottom + + if layout.offscreenHeight > 0 { + let topLayout = computeLayoutForTopDisplay(window: window) + + if topLayout.offscreenHeight < layout.offscreenHeight { + layout = topLayout + direction = .top + } + } + case .bottom: + layout = computeLayoutBottomDisplay(window: window) + direction = .bottom + case .top: + layout = computeLayoutForTopDisplay(window: window) + direction = .top + } + } + + constraintWidthToFittingSizeIfNecessary(layout: &layout) + constraintWidthToBoundsIfNecessary(layout: &layout, in: window) + + let visibleHeight = tableHeight - layout.offscreenHeight + let canBeDisplayed = visibleHeight >= minHeight + + return (layout.x, layout.y, layout.width, layout.offscreenHeight, visibleHeight, canBeDisplayed, direction) + } + + fileprivate func computeLayoutBottomDisplay(window: UIWindow) -> ComputeLayoutTuple { + var offscreenHeight: CGFloat = 0 + + let width = self.width ?? (anchorView?.plainView.bounds.width ?? fittingWidth()) - bottomOffset.x + + let anchorViewX = anchorView?.plainView.windowFrame?.minX ?? window.frame.midX - (width / 2) + let anchorViewY = anchorView?.plainView.windowFrame?.minY ?? window.frame.midY - (tableHeight / 2) + + let x = anchorViewX + bottomOffset.x + let y = anchorViewY + bottomOffset.y + + let maxY = y + tableHeight + let windowMaxY = window.bounds.maxY - DPDConstant.UI.HeightPadding - offsetFromWindowBottom + + let keyboardListener = KeyboardListener.sharedInstance + let keyboardMinY = keyboardListener.keyboardFrame.minY - DPDConstant.UI.HeightPadding + + if keyboardListener.isVisible && maxY > keyboardMinY { + offscreenHeight = abs(maxY - keyboardMinY) + } else if maxY > windowMaxY { + offscreenHeight = abs(maxY - windowMaxY) + } + + return (x, y, width, offscreenHeight) + } + + fileprivate func computeLayoutForTopDisplay(window: UIWindow) -> ComputeLayoutTuple { + var offscreenHeight: CGFloat = 0 + + let anchorViewX = anchorView?.plainView.windowFrame?.minX ?? 0 + let anchorViewMaxY = anchorView?.plainView.windowFrame?.maxY ?? 0 + + let x = anchorViewX + topOffset.x + var y = (anchorViewMaxY + topOffset.y) - tableHeight + + let windowY = window.bounds.minY + DPDConstant.UI.HeightPadding + + if y < windowY { + offscreenHeight = abs(y - windowY) + y = windowY + } + + let width = self.width ?? (anchorView?.plainView.bounds.width ?? fittingWidth()) - topOffset.x + + return (x, y, width, offscreenHeight) + } + + fileprivate func fittingWidth() -> CGFloat { + if templateCell == nil { + templateCell = (cellNib.instantiate(withOwner: nil, options: nil)[0] as! DropDownCell) + } + + var maxWidth: CGFloat = 0 + + for index in 0.. maxWidth { + maxWidth = width + } + } + + return maxWidth + } + + fileprivate func constraintWidthToBoundsIfNecessary(layout: inout ComputeLayoutTuple, in window: UIWindow) { + let windowMaxX = window.bounds.maxX + let maxX = layout.x + layout.width + + if maxX > windowMaxX { + let delta = maxX - windowMaxX + let newOrigin = layout.x - delta + + if newOrigin > 0 { + layout.x = newOrigin + } else { + layout.x = 0 + layout.width += newOrigin // newOrigin is negative, so this operation is a substraction + } + } + } + + fileprivate func constraintWidthToFittingSizeIfNecessary(layout: inout ComputeLayoutTuple) { + guard width == nil else { return } + + if layout.width < fittingWidth() { + layout.width = fittingWidth() + } + } + +} + +//MARK: - Actions + +extension DropDown { + + /** + An Objective-C alias for the show() method which converts the returned tuple into an NSDictionary. + + - returns: An NSDictionary with a value for the "canBeDisplayed" Bool, and possibly for the "offScreenHeight" Optional(CGFloat). + */ + @objc(show) + public func objc_show() -> NSDictionary { + let (canBeDisplayed, offScreenHeight) = show() + + var info = [AnyHashable: Any]() + info["canBeDisplayed"] = canBeDisplayed + if let offScreenHeight = offScreenHeight { + info["offScreenHeight"] = offScreenHeight + } + + return NSDictionary(dictionary: info) + } + + /** + Shows the drop down if enough height. + + - returns: Wether it succeed and how much height is needed to display all cells at once. + */ + @discardableResult + public func show(onTopOf window: UIWindow? = nil, beforeTransform transform: CGAffineTransform? = nil, anchorPoint: CGPoint? = nil) -> (canBeDisplayed: Bool, offscreenHeight: CGFloat?) { + if self == DropDown.VisibleDropDown && DropDown.VisibleDropDown?.isHidden == false { // added condition - DropDown.VisibleDropDown?.isHidden == false -> to resolve forever hiding dropdown issue when continuous taping on button - Kartik Patel - 2016-12-29 + return (true, 0) + } + + if let visibleDropDown = DropDown.VisibleDropDown { + visibleDropDown.cancel() + } + + willShowAction?() + + DropDown.VisibleDropDown = self + + setNeedsUpdateConstraints() + + let visibleWindow = window != nil ? window : UIWindow.visibleWindow() + visibleWindow?.addSubview(self) + visibleWindow?.bringSubviewToFront(self) + + self.translatesAutoresizingMaskIntoConstraints = false + visibleWindow?.addUniversalConstraints(format: "|[dropDown]|", views: ["dropDown": self]) + + let layout = computeLayout() + + if !layout.canBeDisplayed { + hide() + return (layout.canBeDisplayed, layout.offscreenHeight) + } + + isHidden = false + + if anchorPoint != nil { + tableViewContainer.layer.anchorPoint = anchorPoint! + } + + if transform != nil { + tableViewContainer.transform = transform! + } else { + tableViewContainer.transform = downScaleTransform + } + + layoutIfNeeded() + + UIView.animate( + withDuration: animationduration, + delay: 0, + options: animationEntranceOptions, + animations: { [weak self] in + self?.setShowedState() + }, + completion: nil) + + accessibilityViewIsModal = true + UIAccessibility.post(notification: .screenChanged, argument: self) + + //deselectRows(at: selectedRowIndices) + selectRows(at: selectedRowIndices) + + return (layout.canBeDisplayed, layout.offscreenHeight) + } + + public override func accessibilityPerformEscape() -> Bool { + switch dismissMode { + case .automatic, .onTap: + cancel() + return true + case .manual: + return false + } + } + + /// Hides the drop down. + public func hide() { + if self == DropDown.VisibleDropDown { + /* + If one drop down is showed and another one is not + but we call `hide()` on the hidden one: + we don't want it to set the `VisibleDropDown` to nil. + */ + DropDown.VisibleDropDown = nil + } + + if isHidden { + return + } + + UIView.animate( + withDuration: animationduration, + delay: 0, + options: animationExitOptions, + animations: { [weak self] in + self?.setHiddentState() + }, + completion: { [weak self] finished in + guard let `self` = self else { return } + + self.isHidden = true + self.removeFromSuperview() + UIAccessibility.post(notification: .screenChanged, argument: nil) + }) + } + + fileprivate func cancel() { + hide() + cancelAction?() + } + + fileprivate func setHiddentState() { + alpha = 0 + } + + fileprivate func setShowedState() { + alpha = 1 + tableViewContainer.transform = CGAffineTransform.identity + } + +} + +//MARK: - UITableView + +extension DropDown { + + /** + Reloads all the cells. + + It should not be necessary in most cases because each change to + `dataSource`, `textColor`, `textFont`, `selectionBackgroundColor` + and `cellConfiguration` implicitly calls `reloadAllComponents()`. + */ + public func reloadAllComponents() { + DispatchQueue.executeOnMainThread { + self.tableView.reloadData() + self.setNeedsUpdateConstraints() + } + } + + /// (Pre)selects a row at a certain index. + public func selectRow(at index: Index?, scrollPosition: UITableView.ScrollPosition = .none) { + if let index = index { + tableView.selectRow( + at: IndexPath(row: index, section: 0), animated: true, scrollPosition: scrollPosition + ) + selectedRowIndices.insert(index) + } else { + deselectRows(at: selectedRowIndices) + selectedRowIndices.removeAll() + } + } + + public func selectRows(at indices: Set?) { + indices?.forEach { + selectRow(at: $0) + } + + // if we are in multi selection mode then reload data so that all selections are shown + if multiSelectionAction != nil { + tableView.reloadData() + } + } + + public func deselectRow(at index: Index?) { + guard let index = index + , index >= 0 + else { return } + + // remove from indices + if let selectedRowIndex = selectedRowIndices.firstIndex(where: { $0 == index }) { + selectedRowIndices.remove(at: selectedRowIndex) + } + + tableView.deselectRow(at: IndexPath(row: index, section: 0), animated: true) + } + + // de-selects the rows at the indices provided + public func deselectRows(at indices: Set?) { + indices?.forEach { + deselectRow(at: $0) + } + } + + /// Returns the index of the selected row. + public var indexForSelectedRow: Index? { + return (tableView.indexPathForSelectedRow as NSIndexPath?)?.row + } + + /// Returns the selected item. + public var selectedItem: String? { + guard let row = (tableView.indexPathForSelectedRow as NSIndexPath?)?.row else { return nil } + + return dataSource[row] + } + + /// Returns the height needed to display all cells. + fileprivate var tableHeight: CGFloat { + return tableView.rowHeight * CGFloat(dataSource.count) + } + + //MARK: Objective-C methods for converting the Swift type Index + @objc public func selectRow(_ index: Int, scrollPosition: UITableView.ScrollPosition = .none) { + self.selectRow(at:Index(index), scrollPosition: scrollPosition) + } + + @objc public func clearSelection() { + self.selectRow(at:nil) + } + + @objc public func deselectRow(_ index: Int) { + tableView.deselectRow(at: IndexPath(row: Index(index), section: 0), animated: true) + } + + @objc public var indexPathForSelectedRow: NSIndexPath? { + return tableView.indexPathForSelectedRow as NSIndexPath? + } +} + +//MARK: - UITableViewDataSource - UITableViewDelegate + +extension DropDown: UITableViewDataSource, UITableViewDelegate { + + public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + return dataSource.count + } + + public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + let cell = tableView.dequeueReusableCell(withIdentifier: DPDConstant.ReusableIdentifier.DropDownCell, for: indexPath) as! DropDownCell + let index = (indexPath as NSIndexPath).row + + configureCell(cell, at: index) + + return cell + } + + fileprivate func configureCell(_ cell: DropDownCell, at index: Int) { + if index >= 0 && index < localizationKeysDataSource.count { + cell.accessibilityIdentifier = localizationKeysDataSource[index] + } + + cell.lblOptions.textColor = textColor + cell.lblOptions.font = textFont + cell.selectedBackgroundColor = selectionBackgroundColor + cell.highlightTextColor = selectedTextColor + cell.normalTextColor = textColor + + if let cellConfiguration = cellConfiguration { + cell.lblOptions.text = cellConfiguration(index, dataSource[index]) + } else { + cell.lblOptions.text = dataSource[index] + } + + customCellConfiguration?(index, dataSource[index], cell) + } + + public func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) { + cell.isSelected = selectedRowIndices.first{ $0 == (indexPath as NSIndexPath).row } != nil + } + + public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { + let selectedRowIndex = (indexPath as NSIndexPath).row + + + // are we in multi-selection mode? + if let multiSelectionCallback = multiSelectionAction { + // if already selected then deselect + if selectedRowIndices.first(where: { $0 == selectedRowIndex}) != nil { + deselectRow(at: selectedRowIndex) + + let selectedRowIndicesArray = Array(selectedRowIndices) + let selectedRows = selectedRowIndicesArray.map { dataSource[$0] } + multiSelectionCallback(selectedRowIndicesArray, selectedRows) + return + } + else { + selectedRowIndices.insert(selectedRowIndex) + + let selectedRowIndicesArray = Array(selectedRowIndices) + let selectedRows = selectedRowIndicesArray.map { dataSource[$0] } + + selectionAction?(selectedRowIndex, dataSource[selectedRowIndex]) + multiSelectionCallback(selectedRowIndicesArray, selectedRows) + tableView.reloadData() + return + } + } + + // Perform single selection logic + selectedRowIndices.removeAll() + selectedRowIndices.insert(selectedRowIndex) + selectionAction?(selectedRowIndex, dataSource[selectedRowIndex]) + + if let _ = anchorView as? UIBarButtonItem { + // DropDown's from UIBarButtonItem are menus so we deselect the selected menu right after selection + deselectRow(at: selectedRowIndex) + } + + hide() + + } + +} + +//MARK: - Auto dismiss + +extension DropDown { + + public override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? { + let view = super.hitTest(point, with: event) + + if dismissMode == .automatic && view === dismissableView { + cancel() + return nil + } else { + return view + } + } + + @objc + fileprivate func dismissableViewTapped() { + cancel() + } + +} + +//MARK: - Keyboard events + +extension DropDown { + + /** + Starts listening to keyboard events. + Allows the drop down to display correctly when keyboard is showed. + */ + @objc public static func startListeningToKeyboard() { + KeyboardListener.sharedInstance.startListeningToKeyboard() + } + + fileprivate func startListeningToKeyboard() { + KeyboardListener.sharedInstance.startListeningToKeyboard() + + NotificationCenter.default.addObserver( + self, + selector: #selector(keyboardUpdate), + name: UIResponder.keyboardWillShowNotification, + object: nil) + NotificationCenter.default.addObserver( + self, + selector: #selector(keyboardUpdate), + name: UIResponder.keyboardWillHideNotification, + object: nil) + } + + fileprivate func stopListeningToNotifications() { + NotificationCenter.default.removeObserver(self) + } + + @objc + fileprivate func keyboardUpdate() { + self.setNeedsUpdateConstraints() + } + +} + +private extension DispatchQueue { + static func executeOnMainThread(_ closure: @escaping Closure) { + if Thread.isMainThread { + closure() + } else { + main.async(execute: closure) + } + } +} + +#endif diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/src/DropDownCell.swift b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/src/DropDownCell.swift new file mode 100644 index 0000000..b9f08ef --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/Framework/DropDown/src/DropDownCell.swift @@ -0,0 +1,81 @@ +// +// DropDownCellTableViewCell.swift +// DropDown +// +// Created by Kevin Hirsch on 28/07/15. +// Copyright (c) 2015 Kevin Hirsch. All rights reserved. +// + +#if os(iOS) + +import UIKit + +open class DropDownCell: UITableViewCell { + + //UI +// @IBOutlet open weak var optionLabel: UILabel! + + @IBOutlet weak var lblOptions: UILabel! + + + var selectedBackgroundColor: UIColor? + var highlightTextColor: UIColor? + var normalTextColor: UIColor? + +} + +//MARK: - UI + +extension DropDownCell { + + override open func awakeFromNib() { + super.awakeFromNib() + + backgroundColor = .clear + } + + override open var isSelected: Bool { + willSet { + setSelected(newValue, animated: false) + } + } + + override open var isHighlighted: Bool { + willSet { + setSelected(newValue, animated: false) + } + } + + override open func setHighlighted(_ highlighted: Bool, animated: Bool) { + setSelected(highlighted, animated: animated) + } + + override open func setSelected(_ selected: Bool, animated: Bool) { + let executeSelection: () -> Void = { [weak self] in + guard let `self` = self else { return } + + if let selectedBackgroundColor = self.selectedBackgroundColor { + if selected { + self.backgroundColor = selectedBackgroundColor + self.lblOptions.textColor = self.highlightTextColor + } else { + self.backgroundColor = .clear + self.lblOptions.textColor = self.normalTextColor + } + } + } + + if animated { + UIView.animate(withDuration: 0.3, animations: { + executeSelection() + }) + } else { + executeSelection() + } + + accessibilityTraits = selected ? .selected : .none + } + +} + +#endif diff --git a/IoTConnectDemo/IoTConnectDemo/Framework/iOSDropDown.swift b/IoTConnectDemo/IoTConnectDemo/Framework/iOSDropDown.swift deleted file mode 100644 index c4b2fe9..0000000 --- a/IoTConnectDemo/IoTConnectDemo/Framework/iOSDropDown.swift +++ /dev/null @@ -1,567 +0,0 @@ - -// -// iOSDropDown.swift -// -// -// Created by Jishnu Raj T on 26/04/18. -// Copyright © 2018 JRiOSdev. All rights reserved. -// -import UIKit -@objc(JRDropDown) -open class DropDown: UITextField { - var arrow: Arrow! - var table: UITableView! - var shadow: UIView! - public var selectedIndex: Int? - - // MARK: IBInspectable - - @IBInspectable public var rowHeight: CGFloat = 30 - @IBInspectable public var rowBackgroundColor: UIColor = .white - @IBInspectable public var itemsColor: UIColor = .darkGray - @IBInspectable public var itemsTintColor: UIColor = .white - @IBInspectable public var selectedRowColor: UIColor = .systemBlue - @IBInspectable public var hideOptionsWhenSelect = true - @IBInspectable public var isSearchEnable: Bool = true { - didSet { - addGesture() - } - } - - @IBInspectable public var borderColor: UIColor = UIColor.lightGray { - didSet { - layer.borderColor = borderColor.cgColor - } - } - - @IBInspectable public var listHeight: CGFloat = 150 { - didSet { - } - } - - @IBInspectable public var borderWidth: CGFloat = 0.0 { - didSet { - layer.borderWidth = borderWidth - } - } - - @IBInspectable public var cornerRadius: CGFloat = 5.0 { - didSet { - layer.cornerRadius = cornerRadius - } - } - - // Variables - fileprivate var tableheightX: CGFloat = 100 - fileprivate var dataArray = [String]() - fileprivate var imageArray = [String]() - fileprivate weak var parentController: UIViewController? - fileprivate var pointToParent = CGPoint(x: 0, y: 0) - fileprivate var backgroundView = UIView() - fileprivate var keyboardHeight: CGFloat = 0 - - public var optionArray = [String]() { - didSet { - dataArray = optionArray - } - } - - public var optionImageArray = [String]() { - didSet { - imageArray = optionImageArray - } - } - - public var optionIds: [Int]? - var searchText = String() { - didSet { - if searchText == "" { - dataArray = optionArray - } else { - dataArray = optionArray.filter { - searchFilter(text: $0, searchText: searchText) - } - } - reSizeTable() - selectedIndex = nil - table.reloadData() - } - } - - @IBInspectable public var arrowSize: CGFloat = 15 { - didSet { - let center = arrow.superview!.center - arrow.frame = CGRect(x: center.x - arrowSize / 2, y: center.y - arrowSize / 2, width: arrowSize, height: arrowSize) - } - } - - @IBInspectable public var arrowColor: UIColor = .black { - didSet { - arrow.arrowColor = arrowColor - } - } - - @IBInspectable public var checkMarkEnabled: Bool = true { - didSet { - } - } - - @IBInspectable public var handleKeyboard: Bool = true { - didSet { - } - } - - // Init - override public init(frame: CGRect) { - super.init(frame: frame) - setupUI() - delegate = self - } - - public required init(coder aDecoder: NSCoder) { - super.init(coder: aDecoder)! - setupUI() - delegate = self - } - - // MARK: Closures - - fileprivate var didSelectCompletion: (String, Int, Int) -> Void = { _, _, _ in } - fileprivate var TableWillAppearCompletion: () -> Void = { } - fileprivate var TableDidAppearCompletion: () -> Void = { } - fileprivate var TableWillDisappearCompletion: () -> Void = { } - fileprivate var TableDidDisappearCompletion: () -> Void = { } - - func setupUI() { - let size = frame.height - let arrowView = UIView(frame: CGRect(x: 0.0, y: 0.0, width: size, height: size)) - let arrowContainerView = UIView(frame: arrowView.frame) - if semanticContentAttribute == .forceRightToLeft { - leftView = arrowView - leftViewMode = .always - leftView?.addSubview(arrowContainerView) - } else { - rightView = arrowView - rightViewMode = .always - rightView?.addSubview(arrowContainerView) - } - - arrow = Arrow(origin: CGPoint(x: center.x - arrowSize / 2, y: center.y - arrowSize / 2), size: arrowSize) - arrowContainerView.addSubview(arrow) - - backgroundView = UIView(frame: .zero) - backgroundView.backgroundColor = .clear - addGesture() - if isSearchEnable && handleKeyboard { - NotificationCenter.default.addObserver(forName: UIResponder.keyboardWillShowNotification, object: nil, queue: nil) { notification in - if self.isFirstResponder { - let userInfo: NSDictionary = notification.userInfo! as NSDictionary - let keyboardFrame: NSValue = userInfo[UIResponder.keyboardFrameEndUserInfoKey] as! NSValue - let keyboardRectangle = keyboardFrame.cgRectValue - self.keyboardHeight = keyboardRectangle.height - if !self.isSelected { - self.showList() - } - } - } - NotificationCenter.default.addObserver(forName: UIResponder.keyboardWillHideNotification, object: nil, queue: nil) { _ in - if self.isFirstResponder { - self.keyboardHeight = 0 - } - } - } - } - - deinit { - NotificationCenter.default.removeObserver(self) - } - - fileprivate func addGesture() { - let gesture = UITapGestureRecognizer(target: self, action: #selector(touchAction)) - if isSearchEnable { - rightView?.addGestureRecognizer(gesture) - } else { - addGestureRecognizer(gesture) - } - let gesture2 = UITapGestureRecognizer(target: self, action: #selector(touchAction)) - backgroundView.addGestureRecognizer(gesture2) - } - - func getConvertedPoint(_ targetView: UIView, baseView: UIView?) -> CGPoint { - var pnt = targetView.frame.origin - if nil == targetView.superview { - return pnt - } - var superView = targetView.superview - while superView != baseView { - pnt = superView!.convert(pnt, to: superView!.superview) - if nil == superView!.superview { - break - } else { - superView = superView!.superview - } - } - return superView!.convert(pnt, to: baseView) - } - - public func showList() { - if parentController == nil { - parentController = parentViewController - } - backgroundView.frame = parentController?.view.frame ?? backgroundView.frame - pointToParent = getConvertedPoint(self, baseView: parentController?.view) - parentController?.view.insertSubview(backgroundView, aboveSubview: self) - TableWillAppearCompletion() - if listHeight > rowHeight * CGFloat(dataArray.count) { - tableheightX = rowHeight * CGFloat(dataArray.count) - } else { - tableheightX = listHeight - } - table = UITableView(frame: CGRect(x: pointToParent.x, - y: pointToParent.y + frame.height, - width: frame.width, - height: frame.height)) - shadow = UIView(frame: table.frame) - shadow.backgroundColor = .clear - - table.dataSource = self - table.delegate = self - table.alpha = 0 - table.separatorStyle = .none - table.layer.cornerRadius = 3 - table.backgroundColor = rowBackgroundColor - table.rowHeight = rowHeight - parentController?.view.addSubview(shadow) - parentController?.view.addSubview(table) - isSelected = true - let height = (parentController?.view.frame.height ?? 0) - (pointToParent.y + frame.height + 5) - var y = pointToParent.y + frame.height + 5 - if height < (keyboardHeight + tableheightX) { - y = pointToParent.y - tableheightX - } - UIView.animate(withDuration: 0.9, - delay: 0, - usingSpringWithDamping: 0.4, - initialSpringVelocity: 0.1, - options: .curveEaseInOut, - animations: { () -> Void in - - self.table.frame = CGRect(x: self.pointToParent.x, - y: y, - width: self.frame.width, - height: self.tableheightX) - self.table.alpha = 1 - self.shadow.frame = self.table.frame - self.shadow.dropShadow() - self.arrow.position = .up - - }, - completion: { (_) -> Void in - self.layoutIfNeeded() - - }) - } - - public func hideList() { - TableWillDisappearCompletion() - UIView.animate(withDuration: 1.0, - delay: 0.4, - usingSpringWithDamping: 0.9, - initialSpringVelocity: 0.1, - options: .curveEaseInOut, - animations: { () -> Void in - self.table.frame = CGRect(x: self.pointToParent.x, - y: self.pointToParent.y + self.frame.height, - width: self.frame.width, - height: 0) - self.shadow.alpha = 0 - self.shadow.frame = self.table.frame - self.arrow.position = .down - }, - completion: { (_) -> Void in - - self.shadow.removeFromSuperview() - self.table.removeFromSuperview() - self.backgroundView.removeFromSuperview() - self.isSelected = false - self.TableDidDisappearCompletion() - }) - } - - @objc public func touchAction() { - isSelected ? hideList() : showList() - } - - func reSizeTable() { - if listHeight > rowHeight * CGFloat(dataArray.count) { - tableheightX = rowHeight * CGFloat(dataArray.count) - } else { - tableheightX = listHeight - } - let height = (parentController?.view.frame.height ?? 0) - (pointToParent.y + frame.height + 5) - var y = pointToParent.y + frame.height + 5 - if height < (keyboardHeight + tableheightX) { - y = pointToParent.y - tableheightX - } - UIView.animate(withDuration: 0.2, - delay: 0.1, - usingSpringWithDamping: 0.9, - initialSpringVelocity: 0.1, - options: .curveEaseInOut, - animations: { () -> Void in - self.table.frame = CGRect(x: self.pointToParent.x, - y: y, - width: self.frame.width, - height: self.tableheightX) - self.shadow.frame = self.table.frame - self.shadow.dropShadow() - - }, - completion: { (_) -> Void in - // self.shadow.layer.shadowPath = UIBezierPath(rect: self.table.bounds).cgPath - self.layoutIfNeeded() - - }) - } - - // MARK: Filter Methods - - open func searchFilter(text: String, searchText: String) -> Bool { - return text.range(of: searchText, options: .caseInsensitive) != nil - } - - // MARK: Actions Methods - - public func didSelect(completion: @escaping (_ selectedText: String, _ index: Int, _ id: Int) -> Void) { - didSelectCompletion = completion - } - - public func listWillAppear(completion: @escaping () -> Void) { - TableWillAppearCompletion = completion - } - - public func listDidAppear(completion: @escaping () -> Void) { - TableDidAppearCompletion = completion - } - - public func listWillDisappear(completion: @escaping () -> Void) { - TableWillDisappearCompletion = completion - } - - public func listDidDisappear(completion: @escaping () -> Void) { - TableDidDisappearCompletion = completion - } -} - -// MARK: UITextFieldDelegate - -extension DropDown: UITextFieldDelegate { - public func textFieldShouldReturn(_ textField: UITextField) -> Bool { - superview?.endEditing(true) - return false - } - - public func textFieldDidBeginEditing(_ textField: UITextField) { - textField.text = "" - // self.selectedIndex = nil - dataArray = optionArray - touchAction() - } - - public func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool { - return isSearchEnable - } - - public func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool { - if string != "" { - searchText = text! + string - } else { - let subText = text?.dropLast() - searchText = String(subText!) - } - if !isSelected { - showList() - } - return true - } -} - -// MARK: UITableViewDataSource - -extension DropDown: UITableViewDataSource { - public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { - return dataArray.count - } - - public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { - let cellIdentifier = "DropDownCell" - - var cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier) - - if cell == nil { - cell = UITableViewCell(style: .default, reuseIdentifier: cellIdentifier) - } - - if indexPath.row != selectedIndex { - cell!.backgroundColor = rowBackgroundColor - } else { - cell?.backgroundColor = selectedRowColor - } - - if imageArray.count > indexPath.row { - cell!.imageView!.image = UIImage(named: imageArray[indexPath.row]) - } - cell!.textLabel!.text = "\(dataArray[indexPath.row])" - cell!.textLabel!.textColor = itemsColor - cell!.tintColor = itemsTintColor - cell!.accessoryType = (indexPath.row == selectedIndex) && checkMarkEnabled ? .checkmark : .none - cell!.selectionStyle = .none - cell?.textLabel?.font = font - cell?.textLabel?.textAlignment = textAlignment - cell?.textLabel?.numberOfLines = 0 - cell?.textLabel?.lineBreakMode = .byWordWrapping - return cell! - } -} - -// MARK: UITableViewDelegate - -extension DropDown: UITableViewDelegate { - public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { - - let currentIndex = (indexPath as NSIndexPath).row - let selectedText = dataArray[currentIndex] - selectedIndex = isSearchEnable ? (optionArray.firstIndex(of: selectedText) ?? currentIndex) : currentIndex // Correct Index For Searched Text - - tableView.cellForRow(at: indexPath)?.alpha = 0 - UIView.animate(withDuration: 0.5, - animations: { () -> Void in - tableView.cellForRow(at: indexPath)?.alpha = 1.0 - tableView.cellForRow(at: indexPath)?.backgroundColor = self.selectedRowColor - }, - completion: { (_) -> Void in - self.text = "\(selectedText)" - - tableView.reloadData() - }) - if hideOptionsWhenSelect { - touchAction() - endEditing(true) - } - if let selected = optionArray.firstIndex(where: { $0 == selectedText }) { - if let id = optionIds?[selected] { - didSelectCompletion(selectedText, selected, id) - } else { - didSelectCompletion(selectedText, selected, 0) - } - } - } -} - -// MARK: Arrow - -enum Position { - case left - case down - case right - case up -} - -class Arrow: UIView { - let shapeLayer = CAShapeLayer() - var arrowColor: UIColor = .black { - didSet { - shapeLayer.fillColor = arrowColor.cgColor - } - } - - var position: Position = .down { - didSet { - switch position { - case .left: - transform = CGAffineTransform(rotationAngle: -CGFloat.pi / 2) - break - - case .down: - transform = CGAffineTransform(rotationAngle: CGFloat.pi * 2) - break - - case .right: - transform = CGAffineTransform(rotationAngle: CGFloat.pi / 2) - break - - case .up: - transform = CGAffineTransform(rotationAngle: CGFloat.pi) - break - } - } - } - - init(origin: CGPoint, size: CGFloat) { - super.init(frame: CGRect(x: origin.x, y: origin.y, width: size, height: size)) - } - - required init?(coder aDecoder: NSCoder) { - fatalError("init(coder:) has not been implemented") - } - - override func draw(_ rect: CGRect) { - // Get size - let size = layer.frame.width - - // Create path - let bezierPath = UIBezierPath() - - // Draw points - let qSize = size / 4 - - bezierPath.move(to: CGPoint(x: 0, y: qSize)) - bezierPath.addLine(to: CGPoint(x: size, y: qSize)) - bezierPath.addLine(to: CGPoint(x: size / 2, y: qSize * 3)) - bezierPath.addLine(to: CGPoint(x: 0, y: qSize)) - bezierPath.close() - - // Mask to path - shapeLayer.path = bezierPath.cgPath - // shapeLayer.fillColor = arrowColor.cgColor - - if #available(iOS 12.0, *) { - self.layer.addSublayer(shapeLayer) - } else { - layer.mask = shapeLayer - } - } -} - -extension UIView { - func dropShadow(scale: Bool = true) { - layer.masksToBounds = false - layer.shadowColor = UIColor.black.cgColor - layer.shadowOpacity = 0.5 - layer.shadowOffset = CGSize(width: 1, height: 1) - layer.shadowRadius = 2 - layer.shadowPath = UIBezierPath(rect: bounds).cgPath - layer.shouldRasterize = true - layer.rasterizationScale = scale ? UIScreen.main.scale : 1 - } - - func viewBorder(borderColor: UIColor, borderWidth: CGFloat?) { - layer.borderColor = borderColor.cgColor - if let borderWidth_ = borderWidth { - layer.borderWidth = borderWidth_ - } else { - layer.borderWidth = 1.0 - } - } - - var parentViewController: UIViewController? { - var parentResponder: UIResponder? = self - while parentResponder != nil { - parentResponder = parentResponder!.next - if let viewController = parentResponder as? UIViewController { - return viewController - } - } - return nil - } -} diff --git a/IoTConnectDemo/IoTConnectDemo/Info.plist b/IoTConnectDemo/IoTConnectDemo/Info.plist index dd3c9af..9fbb071 100644 --- a/IoTConnectDemo/IoTConnectDemo/Info.plist +++ b/IoTConnectDemo/IoTConnectDemo/Info.plist @@ -2,6 +2,11 @@ + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + UIApplicationSceneManifest UIApplicationSupportsMultipleScenes @@ -21,5 +26,12 @@ + UIBackgroundModes + + fetch + processing + + UIUserInterfaceStyle + Light diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h index ba3a321..b667505 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Headers/IoTConnect2-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_SWIFT_H #define IOTCONNECT2_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Info.plist b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Info.plist index 8294295..e73c25b 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Info.plist and b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Info.plist differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 index b908287..ba9c619 100755 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 and b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/IoTConnect2 differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json index ae72034..9b4774d 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.abi.json @@ -4128,8 +4128,8 @@ }, { "kind": "Var", - "name": "DEV", - "printedName": "DEV", + "name": "EU", + "printedName": "EU", "children": [ { "kind": "TypeFunc", @@ -4159,8 +4159,8 @@ } ], "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", + "usr": "s:11IoTConnect215IOTCEnvironmentO2EUyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO2EUyA2CmF", "moduleName": "IoTConnect2", "declAttributes": [ "RawDocComment" @@ -4526,6 +4526,39 @@ "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -4564,39 +4597,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -5982,6 +5982,39 @@ "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -6020,39 +6053,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -6182,7 +6182,7 @@ { "kind": "Function", "name": "initialize", - "printedName": "initialize(config:)", + "printedName": "initialize(config:errorBlock:)", "children": [ { "kind": "TypeNominal", @@ -6194,11 +6194,29 @@ "name": "IoTConnectConfig", "printedName": "IoTConnect2.IoTConnectConfig", "usr": "s:11IoTConnect20A14TConnectConfigV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] } ], "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "usr": "s:11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", + "mangledName": "$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", "moduleName": "IoTConnect2", "declAttributes": [ "AccessControl", @@ -7428,6 +7446,7 @@ "mangledName": "$sSS", "moduleName": "Swift", "declAttributes": [ + "EagerMove", "Frozen" ], "isExternal": true, @@ -7960,12735 +7979,1514 @@ { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "BooleanLiteral", - "offset": 1649, + "offset": 1651, "length": 4, "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "BooleanLiteral", - "offset": 1682, + "offset": 1684, "length": 5, "value": "false" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "BooleanLiteral", - "offset": 1849, + "offset": 1851, "length": 4, "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "Array", - "offset": 1919, + "offset": 1921, "length": 2, "value": "[]" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "IntegerLiteral", - "offset": 1949, + "offset": 1951, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "IntegerLiteral", - "offset": 2026, + "offset": 2028, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2363, + "offset": 2365, "length": 48, "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2443, + "offset": 2445, "length": 41, "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2516, + "offset": 2518, "length": 26, "value": "\"$iothub\/twin\/GET\/?$rid=0\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2574, + "offset": 2576, "length": 20, "value": "\"$iothub\/twin\/res\/#\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 3942, + "offset": 10787, "length": 2, "value": "\"\"" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" + "offset": 10807, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" + "offset": 21746, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" + "offset": 161, + "length": 5, + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5639, + "offset": 161, "length": 5, - "value": "\"ios\"" + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" + "offset": 317, + "length": 7, + "value": "\"https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" + "offset": 352, + "length": 6, + "value": "\"http\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" + "offset": 454, + "length": 8, + "value": "\"Accept\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7342, + "offset": 494, "length": 16, - "value": "\"Failed to save\"" + "value": "\"Content-Length\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" + "offset": 562, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" + "offset": 521, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4310, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35224, - "length": 79, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35302, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, + "offset": 559, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" + "offset": 1240, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" + "offset": 1551, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" + "offset": 1782, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" + "offset": 1240, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" + "offset": 1782, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, "length": 4, - "value": "\"tg\"" + "value": "true" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4310, "length": 4, - "value": "\"tw\"" + "value": "true" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1244, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" + "offset": 17699, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" + "offset": 397, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15200, + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, "length": 5, - "value": "\"agt\"" + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "IntegerLiteral", - "offset": 15327, + "offset": 751, "length": 1, "value": "0" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15429, + "offset": 1708, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" + "offset": 19290, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" + "offset": 33456, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" + "offset": 281, + "length": 6, + "value": "\"EMEA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" + "offset": 327, + "length": 4, + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" + "offset": 281, + "length": 6, + "value": "\"EMEA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" + "offset": 327, + "length": 4, + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" + "offset": 470, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" + "offset": 511, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", @@ -21386,1407 +10184,994 @@ { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1118, + "offset": 1120, "length": 33, "value": "\"https:\/\/discovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1186, + "offset": 1191, + "length": 35, + "value": "\"https:\/\/eudiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1261, "length": 61, "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1285, + "offset": 1360, "length": 36, "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1392, + "offset": 1467, "length": 40, "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1497, + "offset": 1572, "length": 6, "value": "\"?pf=\"" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2702, - "length": 61, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2721, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2751, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2762, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, + "offset": 3047, "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" + "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" + "kind": "StringLiteral", + "offset": 3129, + "length": 7, + "value": "\"M_ios\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" + "kind": "StringLiteral", + "offset": 3162, + "length": 5, + "value": "\"2.1\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" + "kind": "StringLiteral", + "offset": 3198, + "length": 6, + "value": "\"mqtt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" + "kind": "StringLiteral", + "offset": 3235, + "length": 6, + "value": "\"http\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" + "kind": "StringLiteral", + "offset": 3272, + "length": 6, + "value": "\"amqp\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" + "kind": "FloatLiteral", + "offset": 3309, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" + "kind": "StringLiteral", + "offset": 3339, + "length": 9, + "value": "\"isDebug\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" + "offset": 3379, + "length": 14, + "value": "\"discoveryUrl\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" + "offset": 3423, + "length": 13, + "value": "\"Certificate\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" + "offset": 3463, + "length": 10, + "value": "\"Password\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" + "offset": 3503, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" + "kind": "IntegerLiteral", + "offset": 3540, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" + "kind": "IntegerLiteral", + "offset": 3571, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" + "kind": "BooleanLiteral", + "offset": 3601, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" + "kind": "FloatLiteral", + "offset": 3644, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" + "kind": "Dictionary", + "offset": 3684, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4579, + "offset": 3795, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4622, + "offset": 3823, "length": 1, "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4658, + "offset": 3851, "length": 1, "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4696, + "offset": 3879, "length": 1, "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4734, + "offset": 3925, "length": 1, - "value": "4" + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4769, + "offset": 3953, "length": 1, - "value": "5" + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4805, + "offset": 3985, "length": 1, - "value": "6" + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4874, + "offset": 4016, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4063, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4909, + "offset": 4086, "length": 1, "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4943, + "offset": 4113, "length": 1, "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4977, + "offset": 4148, "length": 1, "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5011, + "offset": 4171, "length": 1, "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5045, + "offset": 4194, "length": 1, "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5079, + "offset": 4217, "length": 1, "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5113, + "offset": 4243, "length": 1, "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5147, + "offset": 4267, "length": 1, "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5181, + "offset": 4300, "length": 1, "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5215, + "offset": 4332, "length": 2, "value": "10" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5390, + "offset": 4405, "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" + "value": "\"cpId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" + "offset": 4442, + "length": 10, + "value": "\"uniqueId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" + "offset": 4481, + "length": 8, + "value": "\"option\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" + "offset": 4521, + "length": 11, + "value": "\"attribute\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" + "offset": 4562, + "length": 9, + "value": "\"setting\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" + "offset": 4605, + "length": 10, + "value": "\"protocol\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" + "offset": 4644, + "length": 8, + "value": "\"device\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" + "offset": 4684, + "length": 11, + "value": "\"sdkConfig\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6089, + "offset": 4722, "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" + "value": "\"rule\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" + "kind": "IntegerLiteral", + "offset": 4781, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" + "kind": "IntegerLiteral", + "offset": 4824, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" + "kind": "IntegerLiteral", + "offset": 4860, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" + "kind": "IntegerLiteral", + "offset": 4898, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" + "kind": "IntegerLiteral", + "offset": 4936, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" + "kind": "IntegerLiteral", + "offset": 4971, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" + "kind": "IntegerLiteral", + "offset": 5007, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" + "kind": "IntegerLiteral", + "offset": 5076, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" + "kind": "IntegerLiteral", + "offset": 5111, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" + "kind": "IntegerLiteral", + "offset": 5145, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" + "kind": "IntegerLiteral", + "offset": 5179, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" + "kind": "IntegerLiteral", + "offset": 5213, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" + "kind": "IntegerLiteral", + "offset": 5247, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" + "kind": "IntegerLiteral", + "offset": 5281, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" + "kind": "IntegerLiteral", + "offset": 5315, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" + "kind": "IntegerLiteral", + "offset": 5349, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" + "kind": "IntegerLiteral", + "offset": 5383, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" + "kind": "IntegerLiteral", + "offset": 5417, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" + "kind": "IntegerLiteral", + "offset": 5452, + "length": 2, + "value": "12" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6921, + "offset": 5503, "length": 4, - "value": "\"cv\"" + "value": "\"dt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" + "offset": 5533, + "length": 3, + "value": "\"d\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" + "offset": 5561, + "length": 5, + "value": "\"ack\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7047, + "offset": 5592, "length": 6, - "value": "\"guid\"" + "value": "\"type\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" + "offset": 5626, + "length": 4, + "value": "\"st\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7138, + "offset": 5659, "length": 5, - "value": "\"ack\"" + "value": "\"msg\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" + "offset": 5689, + "length": 5, + "value": "\"cid\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7226, + "offset": 5752, "length": 4, "value": "\"ec\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7268, + "offset": 5782, "length": 4, - "value": "\"rg\"" + "value": "\"ct\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" + "offset": 5812, + "length": 6, + "value": "\"meta\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" + "offset": 5844, + "length": 5, + "value": "\"has\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" + "offset": 5875, + "length": 3, + "value": "\"p\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7441, + "offset": 5928, "length": 4, - "value": "\"mt\"" + "value": "\"df\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7483, + "offset": 5958, "length": 4, - "value": "\"dn\"" + "value": "\"cd\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" + "offset": 5988, + "length": 4, + "value": "\"at\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 341, + "offset": 6019, "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" + "value": "\"gtw\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" + "offset": 6050, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" + "offset": 6079, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" + "offset": 6110, + "length": 6, + "value": "\"edge\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" + "offset": 6142, + "length": 4, + "value": "\"pf\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2289, + "offset": 6173, "length": 5, - "value": "\"\"" + "value": "\"hwv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" + "offset": 6205, + "length": 5, + "value": "\"swv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" + "offset": 6235, + "length": 3, + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" + "offset": 6291, + "length": 6, + "value": "\"cpId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" + "offset": 6328, + "length": 10, + "value": "\"uniqueId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" + "offset": 6369, + "length": 3, + "value": "\"t\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" + "offset": 6403, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" + "offset": 6438, + "length": 3, + "value": "\"d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" + "offset": 6472, + "length": 5, + "value": "\"sdk\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2822, + "offset": 6508, "length": 3, - "value": "\"\/\"" + "value": "\"l\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" + "offset": 6542, + "length": 3, + "value": "\"e\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" + "offset": 6576, + "length": 3, + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6610, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" + "offset": 6647, + "length": 4, + "value": "\"id\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2465, - "length": 22, - "value": "\"SDKClient initialize\"" + "offset": 6682, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" + "offset": 6717, + "length": 4, + "value": "\"dt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" + "offset": 6752, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6786, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" + "offset": 6824, + "length": 9, + "value": "\"desired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" + "offset": 6864, + "length": 6, + "value": "\"time\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6901, + "length": 5, + "value": "\"dtg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" + "offset": 6937, + "length": 5, + "value": "\"has\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" + "offset": 6973, + "length": 6, + "value": "\"attr\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7010, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" + "offset": 7046, + "length": 3, + "value": "\"r\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7080, + "length": 5, + "value": "\"ota\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7123, + "length": 4, + "value": "\"cv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" + "offset": 7165, + "length": 4, + "value": "\"sg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 7207, + "length": 4, + "value": "\"ct\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7249, + "length": 6, + "value": "\"guid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" + "offset": 7293, + "length": 9, + "value": "\"command\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7340, + "length": 5, + "value": "\"ack\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" + "offset": 7383, + "length": 7, + "value": "\"ackId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7428, + "length": 4, + "value": "\"ec\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" + "offset": 7470, + "length": 4, + "value": "\"rg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7512, + "length": 4, + "value": "\"dv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" + "offset": 7554, + "length": 4, + "value": "\"ln\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7596, + "length": 9, + "value": "\"rptdata\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" + "offset": 7643, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7685, + "length": 4, + "value": "\"dn\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" + "offset": 7727, + "length": 3, + "value": "\"p\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7768, + "length": 9, + "value": "\"message\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" + "offset": 2071, + "length": 16, + "value": "\"^[a-zA-Z0-9]+$\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" + "kind": "StringLiteral", + "offset": 2120, + "length": 17, + "value": "\"^[\\w\\d—-]*$\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" + "offset": 6619, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" + "kind": "StringLiteral", + "offset": 6639, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" + "offset": 6867, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 6887, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 7117, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 7137, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 8017, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "IntegerLiteral", - "offset": 12454, + "offset": 11038, "length": 1, "value": "0" } diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface index 57e65f9..128b87a 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation @@ -141,7 +140,7 @@ public struct OfflineStorageOption { } public enum IOTCEnvironment : Swift.String, Swift.CaseIterable { case PROD - case DEV + case EU case AVNET case QA public init?(rawValue: Swift.String) @@ -220,7 +219,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2.SDKClient - public func initialize(config: IoTConnect2.IoTConnectConfig) + public func initialize(config: IoTConnect2.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc index 1876c65..b6915df 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc and b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface index 57e65f9..128b87a 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation @@ -141,7 +140,7 @@ public struct OfflineStorageOption { } public enum IOTCEnvironment : Swift.String, Swift.CaseIterable { case PROD - case DEV + case EU case AVNET case QA public init?(rawValue: Swift.String) @@ -220,7 +219,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2.SDKClient - public func initialize(config: IoTConnect2.IoTConnectConfig) + public func initialize(config: IoTConnect2.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 index c48f7a4..8953709 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 and b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml index 57d17f4..894acd8 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml @@ -2,1830 +2,1680 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' relocations: - - { offsetInCU: 0x34, offset: 0x57F7E, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6CFF0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x57FB3, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6D020, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E088, symBinAddr: 0x88A30, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58043, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x407C, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5805F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x40C0, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x5807B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x40C4, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x580D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x4380, symSize: 0xD94 } - - { offsetInCU: 0x470, offset: 0x58439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1154, symBinAddr: 0x5114, symSize: 0x384 } - - { offsetInCU: 0x4D3, offset: 0x5849C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x14D8, symBinAddr: 0x5498, symSize: 0x20 } - - { offsetInCU: 0x500, offset: 0x584C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x16A4, symBinAddr: 0x5664, symSize: 0x6C8 } - - { offsetInCU: 0x804, offset: 0x587CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D6C, symBinAddr: 0x5D2C, symSize: 0x3E4 } - - { offsetInCU: 0xABA, offset: 0x58A83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2150, symBinAddr: 0x6110, symSize: 0x914 } - - { offsetInCU: 0xF90, offset: 0x58F59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A64, symBinAddr: 0x6A24, symSize: 0x678 } - - { offsetInCU: 0x138A, offset: 0x59353, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x30DC, symBinAddr: 0x709C, symSize: 0x3C18 } - - { offsetInCU: 0x2E80, offset: 0x5AE49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6D04, symBinAddr: 0xACB4, symSize: 0x150 } - - { offsetInCU: 0x2F6A, offset: 0x5AF33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6E54, symBinAddr: 0xAE04, symSize: 0x304 } - - { offsetInCU: 0x315B, offset: 0x5B124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7158, symBinAddr: 0xB108, symSize: 0x3C8 } - - { offsetInCU: 0x34C4, offset: 0x5B48D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7520, symBinAddr: 0xB4D0, symSize: 0x2E4 } - - { offsetInCU: 0x3698, offset: 0x5B661, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x7804, symBinAddr: 0xB7B4, symSize: 0x240 } - - { offsetInCU: 0x382A, offset: 0x5B7F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x7A44, symBinAddr: 0xB9F4, symSize: 0x244 } - - { offsetInCU: 0x39BC, offset: 0x5B985, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C88, symBinAddr: 0xBC38, symSize: 0x430 } - - { offsetInCU: 0x3B25, offset: 0x5BAEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x80B8, symBinAddr: 0xC068, symSize: 0x650 } - - { offsetInCU: 0x3E38, offset: 0x5BE01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x8708, symBinAddr: 0xC6B8, symSize: 0x224 } - - { offsetInCU: 0x4049, offset: 0x5C012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9B54, symBinAddr: 0xDB04, symSize: 0x15A8 } - - { offsetInCU: 0x5725, offset: 0x5D6EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4000, symSize: 0x3C } - - { offsetInCU: 0x5755, offset: 0x5D71E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x403C, symSize: 0x40 } - - { offsetInCU: 0x592D, offset: 0x5D8F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x14F8, symBinAddr: 0x54B8, symSize: 0x8 } - - { offsetInCU: 0x5941, offset: 0x5D90A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1500, symBinAddr: 0x54C0, symSize: 0x3C } - - { offsetInCU: 0x5955, offset: 0x5D91E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x153C, symBinAddr: 0x54FC, symSize: 0x168 } - - { offsetInCU: 0x5E9B, offset: 0x5DE64, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x89A0, symBinAddr: 0xC950, symSize: 0xC } - - { offsetInCU: 0x5EAF, offset: 0x5DE78, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x89AC, symBinAddr: 0xC95C, symSize: 0x4 } - - { offsetInCU: 0x5EC3, offset: 0x5DE8C, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x89B0, symBinAddr: 0xC960, symSize: 0x20 } - - { offsetInCU: 0x5ED7, offset: 0x5DEA0, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x89D0, symBinAddr: 0xC980, symSize: 0x28 } - - { offsetInCU: 0x5FE8, offset: 0x5DFB1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8F08, symBinAddr: 0xCEB8, symSize: 0x2C } - - { offsetInCU: 0x5FFC, offset: 0x5DFC5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F34, symBinAddr: 0xCEE4, symSize: 0x2C } - - { offsetInCU: 0x6010, offset: 0x5DFD9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8FA0, symBinAddr: 0xCF50, symSize: 0x2C } - - { offsetInCU: 0x6024, offset: 0x5DFED, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8FCC, symBinAddr: 0xCF7C, symSize: 0x2C } - - { offsetInCU: 0x6059, offset: 0x5E022, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x91E8, symBinAddr: 0xD198, symSize: 0x210 } - - { offsetInCU: 0x60AB, offset: 0x5E074, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x93F8, symBinAddr: 0xD3A8, symSize: 0x68 } - - { offsetInCU: 0x610C, offset: 0x5E0D5, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x95BC, symBinAddr: 0xD56C, symSize: 0x1DC } - - { offsetInCU: 0x6657, offset: 0x5E620, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB16C, symBinAddr: 0xF11C, symSize: 0x40 } - - { offsetInCU: 0x666B, offset: 0x5E634, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB1AC, symBinAddr: 0xF15C, symSize: 0x20 } - - { offsetInCU: 0x667F, offset: 0x5E648, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB1CC, symBinAddr: 0xF17C, symSize: 0x10 } - - { offsetInCU: 0x6693, offset: 0x5E65C, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB1DC, symBinAddr: 0xF18C, symSize: 0x3C } - - { offsetInCU: 0x66A7, offset: 0x5E670, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB278, symBinAddr: 0xF228, symSize: 0x44 } - - { offsetInCU: 0x66BB, offset: 0x5E684, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB428, symBinAddr: 0xF3D8, symSize: 0x10 } - - { offsetInCU: 0x66CF, offset: 0x5E698, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB438, symBinAddr: 0xF3E8, symSize: 0x10 } - - { offsetInCU: 0x66E3, offset: 0x5E6AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xB448, symBinAddr: 0xF3F8, symSize: 0x5C } - - { offsetInCU: 0x66F7, offset: 0x5E6C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xB4A4, symBinAddr: 0xF454, symSize: 0x30C } - - { offsetInCU: 0x670B, offset: 0x5E6D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB7B0, symBinAddr: 0xF760, symSize: 0x240 } - - { offsetInCU: 0x671F, offset: 0x5E6E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB9F0, symBinAddr: 0xF9A0, symSize: 0x70 } - - { offsetInCU: 0x6733, offset: 0x5E6FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xBA60, symBinAddr: 0xFA10, symSize: 0x34 } - - { offsetInCU: 0x6747, offset: 0x5E710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xBA94, symBinAddr: 0xFA44, symSize: 0x174 } - - { offsetInCU: 0x675B, offset: 0x5E724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xBC08, symBinAddr: 0xFBB8, symSize: 0xB4 } - - { offsetInCU: 0x676F, offset: 0x5E738, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xBCBC, symBinAddr: 0xFC6C, symSize: 0x10 } - - { offsetInCU: 0x6783, offset: 0x5E74C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xBCCC, symBinAddr: 0xFC7C, symSize: 0x34 } - - { offsetInCU: 0x6797, offset: 0x5E760, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xBD80, symBinAddr: 0xFD30, symSize: 0x5C } - - { offsetInCU: 0x67AB, offset: 0x5E774, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBE80, symBinAddr: 0xFE30, symSize: 0x2C } - - { offsetInCU: 0x67BF, offset: 0x5E788, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBEAC, symBinAddr: 0xFE5C, symSize: 0x2C } - - { offsetInCU: 0x67D3, offset: 0x5E79C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBED8, symBinAddr: 0xFE88, symSize: 0x2C } - - { offsetInCU: 0x67E7, offset: 0x5E7B0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBF04, symBinAddr: 0xFEB4, symSize: 0x2C } - - { offsetInCU: 0x67FB, offset: 0x5E7C4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBF30, symBinAddr: 0xFEE0, symSize: 0x2C } - - { offsetInCU: 0x680F, offset: 0x5E7D8, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBF5C, symBinAddr: 0xFF0C, symSize: 0x2C } - - { offsetInCU: 0x6823, offset: 0x5E7EC, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBF88, symBinAddr: 0xFF38, symSize: 0x2C } - - { offsetInCU: 0x6C2B, offset: 0x5EBF4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8A0C, symBinAddr: 0xC9BC, symSize: 0x14 } - - { offsetInCU: 0x6C69, offset: 0x5EC32, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8A2C, symBinAddr: 0xC9DC, symSize: 0x8 } - - { offsetInCU: 0x6CB8, offset: 0x5EC81, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A34, symBinAddr: 0xC9E4, symSize: 0x14 } - - { offsetInCU: 0x6D55, offset: 0x5ED1E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A48, symBinAddr: 0xC9F8, symSize: 0x14 } - - { offsetInCU: 0x6DEA, offset: 0x5EDB3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A5C, symBinAddr: 0xCA0C, symSize: 0x14 } - - { offsetInCU: 0x6E87, offset: 0x5EE50, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A70, symBinAddr: 0xCA20, symSize: 0x30 } - - { offsetInCU: 0x6FFA, offset: 0x5EFC3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8AA0, symBinAddr: 0xCA50, symSize: 0x2C } - - { offsetInCU: 0x7187, offset: 0x5F150, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8ACC, symBinAddr: 0xCA7C, symSize: 0x24 } - - { offsetInCU: 0x7273, offset: 0x5F23C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8AF0, symBinAddr: 0xCAA0, symSize: 0x14 } - - { offsetInCU: 0x72D9, offset: 0x5F2A2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8B04, symBinAddr: 0xCAB4, symSize: 0x14 } - - { offsetInCU: 0x733F, offset: 0x5F308, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8B18, symBinAddr: 0xCAC8, symSize: 0x14 } - - { offsetInCU: 0x73B4, offset: 0x5F37D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8B2C, symBinAddr: 0xCADC, symSize: 0x14 } - - { offsetInCU: 0x745D, offset: 0x5F426, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B40, symBinAddr: 0xCAF0, symSize: 0x14 } - - { offsetInCU: 0x74D4, offset: 0x5F49D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B54, symBinAddr: 0xCB04, symSize: 0x14 } - - { offsetInCU: 0x758C, offset: 0x5F555, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B68, symBinAddr: 0xCB18, symSize: 0x14 } - - { offsetInCU: 0x7626, offset: 0x5F5EF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B7C, symBinAddr: 0xCB2C, symSize: 0x10 } - - { offsetInCU: 0x768E, offset: 0x5F657, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B8C, symBinAddr: 0xCB3C, symSize: 0x28 } - - { offsetInCU: 0x76AA, offset: 0x5F673, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8BB4, symBinAddr: 0xCB64, symSize: 0x14 } - - { offsetInCU: 0x7726, offset: 0x5F6EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8BE4, symBinAddr: 0xCB94, symSize: 0x14 } - - { offsetInCU: 0x7757, offset: 0x5F720, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8BF8, symBinAddr: 0xCBA8, symSize: 0x14 } - - { offsetInCU: 0x7788, offset: 0x5F751, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8C0C, symBinAddr: 0xCBBC, symSize: 0x14 } - - { offsetInCU: 0x77B9, offset: 0x5F782, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8C20, symBinAddr: 0xCBD0, symSize: 0x30 } - - { offsetInCU: 0x77E8, offset: 0x5F7B1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C50, symBinAddr: 0xCC00, symSize: 0x2C } - - { offsetInCU: 0x7819, offset: 0x5F7E2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C7C, symBinAddr: 0xCC2C, symSize: 0x24 } - - { offsetInCU: 0x784A, offset: 0x5F813, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8CA0, symBinAddr: 0xCC50, symSize: 0x14 } - - { offsetInCU: 0x787B, offset: 0x5F844, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8CB4, symBinAddr: 0xCC64, symSize: 0x14 } - - { offsetInCU: 0x78AC, offset: 0x5F875, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8CC8, symBinAddr: 0xCC78, symSize: 0x14 } - - { offsetInCU: 0x78DD, offset: 0x5F8A6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8CDC, symBinAddr: 0xCC8C, symSize: 0x14 } - - { offsetInCU: 0x790E, offset: 0x5F8D7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8CF0, symBinAddr: 0xCCA0, symSize: 0x14 } - - { offsetInCU: 0x793F, offset: 0x5F908, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8D04, symBinAddr: 0xCCB4, symSize: 0x14 } - - { offsetInCU: 0x7970, offset: 0x5F939, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8D18, symBinAddr: 0xCCC8, symSize: 0x14 } - - { offsetInCU: 0x79A1, offset: 0x5F96A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8D2C, symBinAddr: 0xCCDC, symSize: 0x10 } - - { offsetInCU: 0x79D2, offset: 0x5F99B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D3C, symBinAddr: 0xCCEC, symSize: 0x28 } - - { offsetInCU: 0x79EE, offset: 0x5F9B7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D64, symBinAddr: 0xCD14, symSize: 0x14 } - - { offsetInCU: 0x7A2E, offset: 0x5F9F7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D84, symBinAddr: 0xCD34, symSize: 0x40 } - - { offsetInCU: 0x7AAC, offset: 0x5FA75, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8DC4, symBinAddr: 0xCD74, symSize: 0x70 } - - { offsetInCU: 0x7B3F, offset: 0x5FB08, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E7C, symBinAddr: 0xCE2C, symSize: 0x4 } - - { offsetInCU: 0x7B5F, offset: 0x5FB28, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E7C, symBinAddr: 0xCE2C, symSize: 0x4 } - - { offsetInCU: 0x7B7F, offset: 0x5FB48, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E80, symBinAddr: 0xCE30, symSize: 0x4 } - - { offsetInCU: 0x7B9F, offset: 0x5FB68, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E80, symBinAddr: 0xCE30, symSize: 0x4 } - - { offsetInCU: 0x7BC5, offset: 0x5FB8E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E84, symBinAddr: 0xCE34, symSize: 0x40 } - - { offsetInCU: 0x7C34, offset: 0x5FBFD, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8EC4, symBinAddr: 0xCE74, symSize: 0x8 } - - { offsetInCU: 0x7C5F, offset: 0x5FC28, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8ECC, symBinAddr: 0xCE7C, symSize: 0x3C } - - { offsetInCU: 0x7C90, offset: 0x5FC59, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FF8, symBinAddr: 0xCFA8, symSize: 0x14 } - - { offsetInCU: 0x7CC1, offset: 0x5FC8A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x900C, symBinAddr: 0xCFBC, symSize: 0x3C } - - { offsetInCU: 0x7D01, offset: 0x5FCCA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9048, symBinAddr: 0xCFF8, symSize: 0x88 } - - { offsetInCU: 0x7D82, offset: 0x5FD4B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9164, symBinAddr: 0xD114, symSize: 0x84 } - - { offsetInCU: 0x7DB6, offset: 0x5FD7F, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x9798, symBinAddr: 0xD748, symSize: 0xB0 } - - { offsetInCU: 0x7EA2, offset: 0x5FE6B, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9848, symBinAddr: 0xD7F8, symSize: 0x1F0 } - - { offsetInCU: 0x80D1, offset: 0x6009A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x80F1, offset: 0x600BA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8105, offset: 0x600CE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8125, offset: 0x600EE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8139, offset: 0x60102, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x814D, offset: 0x60116, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8161, offset: 0x6012A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB0FC, symBinAddr: 0xF0AC, symSize: 0x38 } - - { offsetInCU: 0x8244, offset: 0x6020D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x8264, offset: 0x6022D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x8278, offset: 0x60241, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x8298, offset: 0x60261, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x82AC, offset: 0x60275, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x82C0, offset: 0x60289, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x82D4, offset: 0x6029D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB134, symBinAddr: 0xF0E4, symSize: 0x38 } - - { offsetInCU: 0x837B, offset: 0x60344, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBFB4, symBinAddr: 0xFF64, symSize: 0x80 } - - { offsetInCU: 0x840C, offset: 0x603D5, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xC034, symBinAddr: 0xFFE4, symSize: 0x90 } - - { offsetInCU: 0x85CE, offset: 0x60597, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x90DC, symBinAddr: 0xD08C, symSize: 0x10 } - - { offsetInCU: 0x85EA, offset: 0x605B3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x90EC, symBinAddr: 0xD09C, symSize: 0xC } - - { offsetInCU: 0x8654, offset: 0x6061D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x90F8, symBinAddr: 0xD0A8, symSize: 0x44 } - - { offsetInCU: 0x867D, offset: 0x60646, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x913C, symBinAddr: 0xD0EC, symSize: 0x28 } - - { offsetInCU: 0x86B8, offset: 0x60681, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x90D0, symBinAddr: 0xD080, symSize: 0xC } - - { offsetInCU: 0x8796, offset: 0x6075F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8A20, symBinAddr: 0xC9D0, symSize: 0xC } - - { offsetInCU: 0x87C8, offset: 0x60791, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8BC8, symBinAddr: 0xCB78, symSize: 0x10 } - - { offsetInCU: 0x87E4, offset: 0x607AD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8BD8, symBinAddr: 0xCB88, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x609B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100A4, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x609D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100A4, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x60A09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x100B4, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x60B38, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x100E0, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x60B4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x100F4, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x60B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x10104, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x60BDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x10124, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x60C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0x1013C, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x60CBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0x10168, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x60CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0x10170, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x60D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0x10194, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x60D33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0x101A0, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x60D4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x20F8, symBinAddr: 0x121CC, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x60D95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0x101FC, symSize: 0x41C } - - { offsetInCU: 0x2F5, offset: 0x60DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1428, symBinAddr: 0x114FC, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x60E21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1478, symBinAddr: 0x1154C, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x60E44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x24CC, symBinAddr: 0x125A0, symSize: 0x145C } - - { offsetInCU: 0x381, offset: 0x60E76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x544, symBinAddr: 0x10618, symSize: 0x110 } - - { offsetInCU: 0x3CD, offset: 0x60EC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14C8, symBinAddr: 0x1159C, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x60F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x14D0, symBinAddr: 0x115A4, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x60FF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x115E4, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11644, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61099, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11644, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x610B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x11648, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x610EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x159C, symBinAddr: 0x11670, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x61106, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15A8, symBinAddr: 0x1167C, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x61122, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3928, symBinAddr: 0x139FC, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x61166, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvgTf4d_n', symObjAddr: 0x3994, symBinAddr: 0x13A68, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x6119A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1604, symBinAddr: 0x116D8, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x611D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1654, symBinAddr: 0x11728, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x611F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x39A0, symBinAddr: 0x13A74, symSize: 0x258 } - - { offsetInCU: 0x771, offset: 0x61266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x654, symBinAddr: 0x10728, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x61291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16A4, symBinAddr: 0x11778, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x612BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16AC, symBinAddr: 0x11780, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x612ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16D0, symBinAddr: 0x117A4, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x61309, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16DC, symBinAddr: 0x117B0, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x61325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5B54, symBinAddr: 0x15BE4, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x6136B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x674, symBinAddr: 0x10748, symSize: 0x18C } - - { offsetInCU: 0x8CB, offset: 0x613C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1738, symBinAddr: 0x1180C, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x613F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1788, symBinAddr: 0x1185C, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x6141A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x15D7C, symSize: 0x320 } - - { offsetInCU: 0x975, offset: 0x6146A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x800, symBinAddr: 0x108D4, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x61495, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17C8, symBinAddr: 0x1189C, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x614C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17D0, symBinAddr: 0x118A4, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x614F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x17F4, symBinAddr: 0x118C8, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x6150D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x600C, symBinAddr: 0x1609C, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x61553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x820, symBinAddr: 0x108F4, symSize: 0x164 } - - { offsetInCU: 0xAB3, offset: 0x615A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1850, symBinAddr: 0x11924, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x615DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1890, symBinAddr: 0x11964, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x61602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6164, symBinAddr: 0x161F4, symSize: 0x2D8 } - - { offsetInCU: 0xB51, offset: 0x61646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x984, symBinAddr: 0x10A58, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x61671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18C8, symBinAddr: 0x1199C, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x6169C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x119A4, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x616CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18F4, symBinAddr: 0x119C8, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x616E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1900, symBinAddr: 0x119D4, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x61705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x643C, symBinAddr: 0x164CC, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x6174B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9A4, symBinAddr: 0x10A78, symSize: 0x1B4 } - - { offsetInCU: 0xCAB, offset: 0x617A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x195C, symBinAddr: 0x11A30, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x617D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19CC, symBinAddr: 0x11AA0, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x617FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6584, symBinAddr: 0x16614, symSize: 0x4E8 } - - { offsetInCU: 0xD55, offset: 0x6184A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xB58, symBinAddr: 0x10C2C, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61875, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x11B00, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x618A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A34, symBinAddr: 0x11B08, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x618D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A58, symBinAddr: 0x11B2C, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x618ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A64, symBinAddr: 0x11B38, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x61909, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B38, symBinAddr: 0x16BC8, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x6194F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB78, symBinAddr: 0x10C4C, symSize: 0x204 } - - { offsetInCU: 0xEAF, offset: 0x619A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x11B94, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x619DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B24, symBinAddr: 0x11BF8, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x619FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6DAC, symBinAddr: 0x16E3C, symSize: 0x58C } - - { offsetInCU: 0xF59, offset: 0x61A4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xD7C, symBinAddr: 0x10E50, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61A99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B74, symBinAddr: 0x11C48, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x61B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1B8C, symBinAddr: 0x11C60, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x61C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1BD0, symBinAddr: 0x11CA4, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x61C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x11D0C, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x61CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C40, symBinAddr: 0x11D14, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x61CDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1C64, symBinAddr: 0x11D38, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x61CF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C70, symBinAddr: 0x11D44, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x61D13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x737C, symBinAddr: 0x1740C, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x61D59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD94, symBinAddr: 0x10E68, symSize: 0x128 } - - { offsetInCU: 0x12B9, offset: 0x61DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1CCC, symBinAddr: 0x11DA0, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x61DE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CF8, symBinAddr: 0x11DCC, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x61E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7434, symBinAddr: 0x174C4, symSize: 0x1B0 } - - { offsetInCU: 0x136F, offset: 0x61E64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xEBC, symBinAddr: 0x10F90, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x61E8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1D14, symBinAddr: 0x11DE8, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x61EBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D1C, symBinAddr: 0x11DF0, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x61EEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D40, symBinAddr: 0x11E14, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x61F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D4C, symBinAddr: 0x11E20, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x61F23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7628, symBinAddr: 0x176B8, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x61F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEDC, symBinAddr: 0x10FB0, symSize: 0x1DC } - - { offsetInCU: 0x14C9, offset: 0x61FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DA8, symBinAddr: 0x11E7C, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x61FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E00, symBinAddr: 0x11ED4, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x62018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x783C, symBinAddr: 0x178CC, symSize: 0x370 } - - { offsetInCU: 0x1567, offset: 0x6205C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x10B8, symBinAddr: 0x1118C, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1E48, symBinAddr: 0x11F1C, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x620B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E50, symBinAddr: 0x11F24, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x620E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E74, symBinAddr: 0x11F48, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x620FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x11F54, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x6211B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7BAC, symBinAddr: 0x17C3C, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x62161, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10D8, symBinAddr: 0x111AC, symSize: 0x1FC } - - { offsetInCU: 0x16C1, offset: 0x621B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EDC, symBinAddr: 0x11FB0, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x621ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F24, symBinAddr: 0x11FF8, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x62210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D80, symBinAddr: 0x17E10, symSize: 0x390 } - - { offsetInCU: 0x176B, offset: 0x62260, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x12D4, symBinAddr: 0x113A8, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x6228B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FE8, symBinAddr: 0x120BC, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x622B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FF0, symBinAddr: 0x120C4, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x622E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2014, symBinAddr: 0x120E8, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x62303, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2020, symBinAddr: 0x120F4, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x6231F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8198, symBinAddr: 0x18228, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x62365, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12EC, symBinAddr: 0x113C0, symSize: 0x13C } - - { offsetInCU: 0x18C5, offset: 0x623BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x207C, symBinAddr: 0x12150, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x623F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x20C0, symBinAddr: 0x12194, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x62414, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8294, symBinAddr: 0x18324, symSize: 0x1DC } - - { offsetInCU: 0x195C, offset: 0x62451, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3C38, symBinAddr: 0x13CCC, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x62465, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3C5C, symBinAddr: 0x13CF0, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62479, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3CA0, symBinAddr: 0x13D34, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x6248D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3CC0, symBinAddr: 0x13D54, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x624A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3D04, symBinAddr: 0x13D98, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x624B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3D48, symBinAddr: 0x13DDC, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x624C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3D50, symBinAddr: 0x13DE0, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x624DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x3DA0, symBinAddr: 0x13E30, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x624F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x3E2C, symBinAddr: 0x13EBC, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x62505, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x3E34, symBinAddr: 0x13EC4, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x62519, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x3E38, symBinAddr: 0x13EC8, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x6252D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x3E3C, symBinAddr: 0x13ECC, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x62541, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x3E4C, symBinAddr: 0x13EDC, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62555, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x4714, symBinAddr: 0x147A4, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62569, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x4724, symBinAddr: 0x147B4, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x6257D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4728, symBinAddr: 0x147B8, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x62591, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x476C, symBinAddr: 0x147FC, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x625A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4770, symBinAddr: 0x14800, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x625B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x47B4, symBinAddr: 0x14844, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x625CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x47B8, symBinAddr: 0x14848, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x625E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x47FC, symBinAddr: 0x1488C, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x625F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4840, symBinAddr: 0x148D0, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x62609, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4884, symBinAddr: 0x14914, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x6261D, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x48C8, symBinAddr: 0x14958, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x62631, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x490C, symBinAddr: 0x1499C, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62645, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4950, symBinAddr: 0x149E0, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62659, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x4994, symBinAddr: 0x14A24, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x6266D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x49D8, symBinAddr: 0x14A68, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x62681, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x14AAC, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62695, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x4A60, symBinAddr: 0x14AF0, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x626A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x14B34, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x626BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x14B78, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x626D1, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4B2C, symBinAddr: 0x14BBC, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x626E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4B38, symBinAddr: 0x14BC8, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x626F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4BC8, symBinAddr: 0x14C58, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x6270D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4C84, symBinAddr: 0x14D14, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x62721, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4C8C, symBinAddr: 0x14D1C, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62735, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4C90, symBinAddr: 0x14D20, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62749, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4C98, symBinAddr: 0x14D28, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x6275D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4CA8, symBinAddr: 0x14D38, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x62771, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4CD0, symBinAddr: 0x14D60, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62785, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4D14, symBinAddr: 0x14DA4, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62799, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4D88, symBinAddr: 0x14E18, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x627AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4D9C, symBinAddr: 0x14E2C, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x627C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x4DE8, symBinAddr: 0x14E78, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x627D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x4E30, symBinAddr: 0x14EC0, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x627E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x4E78, symBinAddr: 0x14F08, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x627FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x4E88, symBinAddr: 0x14F18, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x62811, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x4EC0, symBinAddr: 0x14F50, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x4F34, symBinAddr: 0x14FC4, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62839, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4FF0, symBinAddr: 0x15080, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x6284D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x500C, symBinAddr: 0x1509C, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x62861, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5088, symBinAddr: 0x15118, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62875, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x50D0, symBinAddr: 0x15160, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62889, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x5124, symBinAddr: 0x151B4, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x6289D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x5134, symBinAddr: 0x151C4, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x628B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x515C, symBinAddr: 0x151EC, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x628C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5198, symBinAddr: 0x15228, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x628D9, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5204, symBinAddr: 0x15294, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x628ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5210, symBinAddr: 0x152A0, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x62901, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5254, symBinAddr: 0x152E4, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x62915, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x529C, symBinAddr: 0x1532C, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62929, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x52DC, symBinAddr: 0x1536C, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x6293D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x52EC, symBinAddr: 0x1537C, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x62951, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x533C, symBinAddr: 0x153CC, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62965, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x53E8, symBinAddr: 0x15478, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62979, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x54FC, symBinAddr: 0x1558C, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x6298D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5528, symBinAddr: 0x155B8, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x629A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x55C4, symBinAddr: 0x15654, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x629B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x560C, symBinAddr: 0x1569C, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x629C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x5668, symBinAddr: 0x156F8, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x629DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x5678, symBinAddr: 0x15708, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x629F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x56D0, symBinAddr: 0x15760, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x62A05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x5794, symBinAddr: 0x15824, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x62A19, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x58D8, symBinAddr: 0x15968, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62A2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x590C, symBinAddr: 0x1599C, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62A41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x59C0, symBinAddr: 0x15A50, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62A55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5A08, symBinAddr: 0x15A98, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x5A6C, symBinAddr: 0x15AFC, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62A7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5A7C, symBinAddr: 0x15B0C, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62A91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x5A80, symBinAddr: 0x15B10, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5AC4, symBinAddr: 0x15B54, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5AC8, symBinAddr: 0x15B58, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62ACD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5B0C, symBinAddr: 0x15B9C, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62AE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5B10, symBinAddr: 0x15BA0, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62AF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x6A6C, symBinAddr: 0x16AFC, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x62B09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x6AB0, symBinAddr: 0x16B40, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x62B1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6AF4, symBinAddr: 0x16B84, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x62B31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7338, symBinAddr: 0x173C8, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x62B45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x75E4, symBinAddr: 0x17674, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x62B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8110, symBinAddr: 0x181A0, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x62B6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8154, symBinAddr: 0x181E4, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x62B81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8470, symBinAddr: 0x18500, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x62B95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x84B4, symBinAddr: 0x18544, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x62BA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x84F8, symBinAddr: 0x18588, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x62BBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x85A0, symBinAddr: 0x18630, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x62BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x85E4, symBinAddr: 0x18674, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x62BE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8674, symBinAddr: 0x18704, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x62BF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8730, symBinAddr: 0x187C0, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x62C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8734, symBinAddr: 0x187C4, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x62C21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8744, symBinAddr: 0x187D4, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x62C35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x87D4, symBinAddr: 0x18864, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x62C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8890, symBinAddr: 0x18920, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x62C5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8894, symBinAddr: 0x18924, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x62C71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x88A4, symBinAddr: 0x18934, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x62C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8934, symBinAddr: 0x189C4, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x62C99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x89F0, symBinAddr: 0x18A80, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x62CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x89F8, symBinAddr: 0x18A88, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x62CC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x89FC, symBinAddr: 0x18A8C, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x62CD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A08, symBinAddr: 0x18A98, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x62CE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8A18, symBinAddr: 0x18AA8, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x62CFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8AA8, symBinAddr: 0x18B38, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x62D11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8B64, symBinAddr: 0x18BF4, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x62D25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8B68, symBinAddr: 0x18BF8, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x62D39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8B80, symBinAddr: 0x18C10, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x62D4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8B84, symBinAddr: 0x18C14, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x62D61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8B94, symBinAddr: 0x18C24, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x62D75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8BCC, symBinAddr: 0x18C5C, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x62D89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8C40, symBinAddr: 0x18CD0, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x62D9D, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8D04, symBinAddr: 0x18D94, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x62DB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x8D28, symBinAddr: 0x18DB8, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x62DC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x8D9C, symBinAddr: 0x18E2C, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x62DD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x8DE4, symBinAddr: 0x18E74, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x62DED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x8E38, symBinAddr: 0x18EC8, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x62E01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x8E48, symBinAddr: 0x18ED8, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x62E15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x8E80, symBinAddr: 0x18F10, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x62E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x8EE4, symBinAddr: 0x18F74, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x62E3D, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8F90, symBinAddr: 0x19020, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x62E51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x8FA4, symBinAddr: 0x19034, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x62E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x9008, symBinAddr: 0x19098, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x62E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9050, symBinAddr: 0x190E0, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x62E8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x90A0, symBinAddr: 0x19130, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x62EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x90B0, symBinAddr: 0x19140, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x62EB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x90E8, symBinAddr: 0x19178, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x62EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9154, symBinAddr: 0x191E4, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x62EDD, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9208, symBinAddr: 0x19298, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x62EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x922C, symBinAddr: 0x192BC, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x62F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9298, symBinAddr: 0x19328, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x62F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x92E0, symBinAddr: 0x19370, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x62F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9330, symBinAddr: 0x193C0, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x62F41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9340, symBinAddr: 0x193D0, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x62F55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9344, symBinAddr: 0x193D4, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x62F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9388, symBinAddr: 0x19418, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x62F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x938C, symBinAddr: 0x1941C, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x62F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x93D0, symBinAddr: 0x19460, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x62FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x93D4, symBinAddr: 0x19464, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x62FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9418, symBinAddr: 0x194A8, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x62FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x941C, symBinAddr: 0x194AC, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x62FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9460, symBinAddr: 0x194F0, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x62FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9464, symBinAddr: 0x194F4, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x63009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x94A8, symBinAddr: 0x19538, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x6301D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x94AC, symBinAddr: 0x1953C, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x63031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94F0, symBinAddr: 0x19580, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x63045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94F4, symBinAddr: 0x19584, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9538, symBinAddr: 0x195C8, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x6306D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x953C, symBinAddr: 0x195CC, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x63081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9580, symBinAddr: 0x19610, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x63095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9584, symBinAddr: 0x19614, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x630A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95C8, symBinAddr: 0x19658, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x630BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95CC, symBinAddr: 0x1965C, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x630D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9610, symBinAddr: 0x196A0, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x630E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9614, symBinAddr: 0x196A4, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x630F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9658, symBinAddr: 0x196E8, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x6310D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x965C, symBinAddr: 0x196EC, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x63121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96A0, symBinAddr: 0x19730, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x63135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96A4, symBinAddr: 0x19734, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x96E8, symBinAddr: 0x19778, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x6315D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x96EC, symBinAddr: 0x1977C, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x63171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9730, symBinAddr: 0x197C0, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x63185, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9734, symBinAddr: 0x197C4, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63199, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9778, symBinAddr: 0x19808, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x631AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x97BC, symBinAddr: 0x1984C, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x631C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9800, symBinAddr: 0x19890, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x631D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9844, symBinAddr: 0x198D4, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x631E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x98D4, symBinAddr: 0x19964, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x631FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9990, symBinAddr: 0x19A20, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x63211, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9994, symBinAddr: 0x19A24, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x63225, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9AF8, symBinAddr: 0x19B88, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9AFC, symBinAddr: 0x19B8C, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x6324D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9B0C, symBinAddr: 0x19B9C, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x63261, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9B9C, symBinAddr: 0x19C2C, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x63275, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9C58, symBinAddr: 0x19CE8, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9C5C, symBinAddr: 0x19CEC, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x6329D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9C6C, symBinAddr: 0x19CFC, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x632B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9C70, symBinAddr: 0x19D00, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x632C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9CB4, symBinAddr: 0x19D44, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x632D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9CB8, symBinAddr: 0x19D48, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x632ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9CFC, symBinAddr: 0x19D8C, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x63301, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9D00, symBinAddr: 0x19D90, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x63315, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D44, symBinAddr: 0x19DD4, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63329, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D48, symBinAddr: 0x19DD8, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x6333D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D8C, symBinAddr: 0x19E1C, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x63351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x19E20, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x63365, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9DD4, symBinAddr: 0x19E64, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9DD8, symBinAddr: 0x19E68, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x6338D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E1C, symBinAddr: 0x19EAC, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x633A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9E20, symBinAddr: 0x19EB0, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x633B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E64, symBinAddr: 0x19EF4, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x633C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E68, symBinAddr: 0x19EF8, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x633DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EAC, symBinAddr: 0x19F3C, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x633F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9EB0, symBinAddr: 0x19F40, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x63441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0x101AC, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x6345D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0x101D4, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1534, symBinAddr: 0x11608, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63548, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15B4, symBinAddr: 0x11688, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15DC, symBinAddr: 0x116B0, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0x117BC, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x635A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1710, symBinAddr: 0x117E4, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x635C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x118D4, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x635E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1828, symBinAddr: 0x118FC, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x63602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x190C, symBinAddr: 0x119E0, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1934, symBinAddr: 0x11A08, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x63640, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A70, symBinAddr: 0x11B44, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x6365C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A98, symBinAddr: 0x11B6C, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x636A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1BF8, symBinAddr: 0x11CCC, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63747, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C7C, symBinAddr: 0x11D50, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x63763, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1CA4, symBinAddr: 0x11D78, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63785, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1D58, symBinAddr: 0x11E2C, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x637A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1D80, symBinAddr: 0x11E54, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x637C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E8C, symBinAddr: 0x11F60, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x637DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1EB4, symBinAddr: 0x11F88, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x63801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x202C, symBinAddr: 0x12100, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x6381D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2054, symBinAddr: 0x12128, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x639C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A05C, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63A46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A05C, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x1A0E0, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63ABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x1A11C, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63AFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x1A170, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x63B1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x1A180, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x63B45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x128, symBinAddr: 0x1A184, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x63B63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x13C, symBinAddr: 0x1A198, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x63B9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x150, symBinAddr: 0x1A1AC, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x63BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x1A1BC, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x63BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x1A1C0, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x63C14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x1A1EC, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x63C53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x1A220, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x63C81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x1A230, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x63CAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x1A234, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x63CCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x1A23C, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x63D04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x1A244, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x63D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x1A254, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x63D5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x1A258, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x63D7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x1A260, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x63DB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x1A268, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x63DE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x1A278, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x63E0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x1A27C, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x63E2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x1A2A8, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x63E6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x1A2DC, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x63E99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1A2EC, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x63EC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x1A2F0, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x63EE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x1A31C, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x63F21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x1A350, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x63F4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x1A360, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x63F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x1A364, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x63F98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x1A370, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x63FD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x1A37C, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x64004, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1A38C, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x6402F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x1A390, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x6404D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x1A39C, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x6408B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x1A3A8, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x640B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x1A3B8, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x640E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x1A3BC, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x640F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x1A3EC, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x6410D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x1A42C, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x64121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x1A4D0, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x64135, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x1A5D4, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x1A600, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x6415D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x1A69C, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x64171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x1A6E4, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64185, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x1A744, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64367, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1A754, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x64392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x1ACF8, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x643AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x1AF68, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x643E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1AA00, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x64411, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x1AF40, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x6442D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x1AFC0, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64459, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x1B018, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64489, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x1B11C, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x6449D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x1B1AC, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x644B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x1B268, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x644C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x1B26C, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x644D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x1B27C, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x644ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x1B30C, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x64501, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x1B3C8, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x64515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x1B3D0, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64529, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x1B3D4, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x6453D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x1B3DC, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x64551, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x1B3EC, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64565, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x1B3F0, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64579, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x1B434, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x6458D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x1B438, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x646EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1B484, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x64718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1B598, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC9printLogs33_D78766567F29622279F8000760588BB6LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x1B970, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64877, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x1B5B4, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x648CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x1B5D4, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x64920, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x1B660, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64947, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x1B664, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x6496E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x1B668, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64995, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x1B6DC, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x649E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1B6E0, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64A3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x1B770, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64A80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x1B7D4, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x1B864, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x64B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x1B8F4, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x64B5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x1B968, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x64B78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x1B96C, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x64BF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x1BA1C, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x64CD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1C0E8, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x64D2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1C15C, symSize: 0x2A4 } - - { offsetInCU: 0x7C0, offset: 0x64E5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF7C, symBinAddr: 0x1C400, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x64EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFE4, symBinAddr: 0x1C468, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x64F19, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1048, symBinAddr: 0x1C4CC, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x64F2D, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1058, symBinAddr: 0x1C4DC, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x64F41, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10EC, symBinAddr: 0x1C4EC, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x64F55, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1134, symBinAddr: 0x1C534, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x64F69, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1148, symBinAddr: 0x1C548, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x64F7D, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x118C, symBinAddr: 0x1C58C, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x64F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11CC, symBinAddr: 0x1C5CC, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x64FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1390, symBinAddr: 0x1C790, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x64FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13C0, symBinAddr: 0x1C7C0, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x64FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x157C, symBinAddr: 0x1C97C, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x65274, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x29C8, symBinAddr: 0x871D0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x6528E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x29D0, symBinAddr: 0x871D8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x6529C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1C9BC, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x652D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1C9F0, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x6530E, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1CA30, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65339, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1CA64, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1CAA4, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x653B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1CAD4, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x653DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1CAD8, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x653F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1CAFC, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x6542B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1CB10, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x654BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CB80, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x654DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CB80, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x65526, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1CBDC, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x655A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1CC48, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x6562A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1CD80, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65649, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1CDDC, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x65672, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1CE3C, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x656A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1CE78, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x65714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1CFB0, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x65733, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1CFFC, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x6575C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1D04C, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x6578B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1D088, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x657B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1D090, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x657D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1D0C0, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x657F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1D0FC, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x65851, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1D194, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x6586E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x818, symBinAddr: 0x1D1C4, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65897, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x85C, symBinAddr: 0x1D208, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x658C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1D244, symSize: 0x68 } - - { offsetInCU: 0x710, offset: 0x65935, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1D2AC, symSize: 0x4 } - - { offsetInCU: 0x779, offset: 0x6599E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x904, symBinAddr: 0x1D2B0, symSize: 0x128 } - - { offsetInCU: 0x853, offset: 0x65A78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xC50, symBinAddr: 0x1D5FC, symSize: 0x70 } - - { offsetInCU: 0x87D, offset: 0x65AA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xCC0, symBinAddr: 0x1D66C, symSize: 0x30 } - - { offsetInCU: 0x8A2, offset: 0x65AC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xCF0, symBinAddr: 0x1D69C, symSize: 0x198 } - - { offsetInCU: 0x957, offset: 0x65B7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xE88, symBinAddr: 0x1D834, symSize: 0x14 } - - { offsetInCU: 0x9A4, offset: 0x65BC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0xE9C, symBinAddr: 0x1D848, symSize: 0x64 } - - { offsetInCU: 0xA40, offset: 0x65C65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0xF30, symBinAddr: 0x1D8DC, symSize: 0x6C } - - { offsetInCU: 0xB74, offset: 0x65D99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x17D4, symBinAddr: 0x1E180, symSize: 0x258 } - - { offsetInCU: 0xC05, offset: 0x65E2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1A90, symBinAddr: 0x1E43C, symSize: 0x1A0 } - - { offsetInCU: 0xCED, offset: 0x65F12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1CC4C, symSize: 0x88 } - - { offsetInCU: 0xD23, offset: 0x65F48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1CCD4, symSize: 0xAC } - - { offsetInCU: 0xD63, offset: 0x65F88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1CDCC, symSize: 0x10 } - - { offsetInCU: 0xD77, offset: 0x65F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1CE2C, symSize: 0x10 } - - { offsetInCU: 0xD8B, offset: 0x65FB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1CE7C, symSize: 0x88 } - - { offsetInCU: 0xDC1, offset: 0x65FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1CF04, symSize: 0xAC } - - { offsetInCU: 0xE01, offset: 0x66026, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1D138, symSize: 0x5C } - - { offsetInCU: 0xEA2, offset: 0x660C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xA2C, symBinAddr: 0x1D3D8, symSize: 0x224 } - - { offsetInCU: 0xF16, offset: 0x6613B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1648, symBinAddr: 0x1DFF4, symSize: 0x13C } - - { offsetInCU: 0xFE0, offset: 0x66205, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0xF00, symBinAddr: 0x1D8AC, symSize: 0x30 } - - { offsetInCU: 0x10CF, offset: 0x662F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x17B0, symBinAddr: 0x1E15C, symSize: 0x24 } - - { offsetInCU: 0x111F, offset: 0x66344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0xF9C, symBinAddr: 0x1D948, symSize: 0x22C } - - { offsetInCU: 0x1311, offset: 0x66536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x11C8, symBinAddr: 0x1DB74, symSize: 0xC } - - { offsetInCU: 0x1368, offset: 0x6658D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DB80, symSize: 0x4 } - - { offsetInCU: 0x1384, offset: 0x665A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DB80, symSize: 0x4 } - - { offsetInCU: 0x139D, offset: 0x665C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DB80, symSize: 0x4 } - - { offsetInCU: 0x13B6, offset: 0x665DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11D8, symBinAddr: 0x1DB84, symSize: 0x4 } - - { offsetInCU: 0x13CE, offset: 0x665F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11DC, symBinAddr: 0x1DB88, symSize: 0xB8 } - - { offsetInCU: 0x146E, offset: 0x66693, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12D4, symBinAddr: 0x1DC80, symSize: 0x4 } - - { offsetInCU: 0x1486, offset: 0x666AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2478, symBinAddr: 0x1EE14, symSize: 0x7C } - - { offsetInCU: 0x1563, offset: 0x66788, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x1294, symBinAddr: 0x1DC40, symSize: 0x40 } - - { offsetInCU: 0x1598, offset: 0x667BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11isReachableSbvg', symObjAddr: 0x12D8, symBinAddr: 0x1DC84, symSize: 0x2C } - - { offsetInCU: 0x15E3, offset: 0x66808, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1304, symBinAddr: 0x1DCB0, symSize: 0x2C } - - { offsetInCU: 0x162E, offset: 0x66853, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1330, symBinAddr: 0x1DCDC, symSize: 0x2C } - - { offsetInCU: 0x16BB, offset: 0x668E0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x135C, symBinAddr: 0x1DD08, symSize: 0x198 } - - { offsetInCU: 0x1B6A, offset: 0x66D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x14F4, symBinAddr: 0x1DEA0, symSize: 0x13C } - - { offsetInCU: 0x1C67, offset: 0x66E8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1630, symBinAddr: 0x1DFDC, symSize: 0x18 } - - { offsetInCU: 0x1C7B, offset: 0x66EA0, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1784, symBinAddr: 0x1E130, symSize: 0x2C } - - { offsetInCU: 0x1C93, offset: 0x66EB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1A2C, symBinAddr: 0x1E3D8, symSize: 0x44 } - - { offsetInCU: 0x1CA7, offset: 0x66ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1A70, symBinAddr: 0x1E41C, symSize: 0x20 } - - { offsetInCU: 0x1CBB, offset: 0x66EE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1C30, symBinAddr: 0x1E5DC, symSize: 0x20 } - - { offsetInCU: 0x1CCF, offset: 0x66EF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1C50, symBinAddr: 0x1E5FC, symSize: 0x4 } - - { offsetInCU: 0x1CE3, offset: 0x66F08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1C54, symBinAddr: 0x1E600, symSize: 0x44 } - - { offsetInCU: 0x1CF7, offset: 0x66F1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1C98, symBinAddr: 0x1E644, symSize: 0x4 } - - { offsetInCU: 0x1D0B, offset: 0x66F30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1C9C, symBinAddr: 0x1E648, symSize: 0x44 } - - { offsetInCU: 0x1D1F, offset: 0x66F44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwCP', symObjAddr: 0x1DBC, symBinAddr: 0x1E768, symSize: 0x5C } - - { offsetInCU: 0x1D33, offset: 0x66F58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1E18, symBinAddr: 0x1E7C4, symSize: 0x18 } - - { offsetInCU: 0x1D47, offset: 0x66F6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1E30, symBinAddr: 0x1E7DC, symSize: 0x14 } - - { offsetInCU: 0x1D5B, offset: 0x66F80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1E44, symBinAddr: 0x1E7F0, symSize: 0x18 } - - { offsetInCU: 0x1D6F, offset: 0x66F94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwcp', symObjAddr: 0x1E5C, symBinAddr: 0x1E808, symSize: 0x5C } - - { offsetInCU: 0x1D83, offset: 0x66FA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x1EB8, symBinAddr: 0x1E864, symSize: 0x6C } - - { offsetInCU: 0x1D97, offset: 0x66FBC, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1F24, symBinAddr: 0x1E8D0, symSize: 0x14 } - - { offsetInCU: 0x1DAB, offset: 0x66FD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x1F38, symBinAddr: 0x1E8E4, symSize: 0x50 } - - { offsetInCU: 0x1DBF, offset: 0x66FE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x1F88, symBinAddr: 0x1E934, symSize: 0x48 } - - { offsetInCU: 0x1DD3, offset: 0x66FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x1FD0, symBinAddr: 0x1E97C, symSize: 0x48 } - - { offsetInCU: 0x1DE7, offset: 0x6700C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x2018, symBinAddr: 0x1E9C4, symSize: 0x8 } - - { offsetInCU: 0x1DFB, offset: 0x67020, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2020, symBinAddr: 0x1E9CC, symSize: 0x4 } - - { offsetInCU: 0x1E0F, offset: 0x67034, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2024, symBinAddr: 0x1E9D0, symSize: 0x8 } - - { offsetInCU: 0x1E23, offset: 0x67048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x202C, symBinAddr: 0x1E9D8, symSize: 0x10 } - - { offsetInCU: 0x1E37, offset: 0x6705C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2114, symBinAddr: 0x1EAB0, symSize: 0x90 } - - { offsetInCU: 0x1E4B, offset: 0x67070, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x21A4, symBinAddr: 0x1EB40, symSize: 0xBC } - - { offsetInCU: 0x1E5F, offset: 0x67084, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2260, symBinAddr: 0x1EBFC, symSize: 0x4 } - - { offsetInCU: 0x1E73, offset: 0x67098, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2264, symBinAddr: 0x1EC00, symSize: 0x10 } - - { offsetInCU: 0x1E87, offset: 0x670AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x2274, symBinAddr: 0x1EC10, symSize: 0x90 } - - { offsetInCU: 0x1E9B, offset: 0x670C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2304, symBinAddr: 0x1ECA0, symSize: 0xBC } - - { offsetInCU: 0x1EAF, offset: 0x670D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x23C0, symBinAddr: 0x1ED5C, symSize: 0x8 } - - { offsetInCU: 0x1EC3, offset: 0x670E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x23C8, symBinAddr: 0x1ED64, symSize: 0x4 } - - { offsetInCU: 0x1ED7, offset: 0x670FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x23CC, symBinAddr: 0x1ED68, symSize: 0x8 } - - { offsetInCU: 0x1EEB, offset: 0x67110, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x23D4, symBinAddr: 0x1ED70, symSize: 0x10 } - - { offsetInCU: 0x1F0A, offset: 0x6712F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x240C, symBinAddr: 0x1EDA8, symSize: 0x24 } - - { offsetInCU: 0x1F33, offset: 0x67158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x2518, symBinAddr: 0x1EEB4, symSize: 0x8 } - - { offsetInCU: 0x1F47, offset: 0x6716C, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2520, symBinAddr: 0x1EEBC, symSize: 0x10 } - - { offsetInCU: 0x1F5B, offset: 0x67180, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2530, symBinAddr: 0x1EECC, symSize: 0x8 } - - { offsetInCU: 0x1F6F, offset: 0x67194, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x25BC, symBinAddr: 0x1EED4, symSize: 0x3C } - - { offsetInCU: 0x1FF1, offset: 0x67216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1C9AC, symSize: 0x4 } - - { offsetInCU: 0x200D, offset: 0x67232, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1C9B0, symSize: 0x4 } - - { offsetInCU: 0x2029, offset: 0x6724E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1C9B4, symSize: 0x4 } - - { offsetInCU: 0x2045, offset: 0x6726A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1C9B8, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x6765D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1EFD8, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x67671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F014, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67685, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F098, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x676A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1F1C0, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x676C9, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1F1F0, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x676DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1F20C, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x676F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1F2A8, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x67705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1F30C, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x67719, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1F368, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x6772D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1F378, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x67741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1F3A8, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67755, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1F3D0, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67769, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1F42C, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x6777D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1F4B0, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x67791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1F514, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x677A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1F570, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x677B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1F5D0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x677D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1F5E0, symSize: 0x11C } - - { offsetInCU: 0x20B, offset: 0x67825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA90, symBinAddr: 0x1FA68, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67879, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA98, symBinAddr: 0x1FA70, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x6795C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAD8, symBinAddr: 0x1FAB0, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x679DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB10, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x679FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB10, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x67A1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB3C, symBinAddr: 0x1FB14, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67A4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB64, symBinAddr: 0x1FB3C, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67A69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB70, symBinAddr: 0x1FB48, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67A85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF48, symBinAddr: 0x1FF20, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67AC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xFB4, symBinAddr: 0x1FF8C, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67AFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBCC, symBinAddr: 0x1FBA4, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67B34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC18, symBinAddr: 0x1FBF0, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67B57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC0, symBinAddr: 0x1FF98, symSize: 0x154 } - - { offsetInCU: 0x58D, offset: 0x67BA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x724, symBinAddr: 0x1F6FC, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x67BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC58, symBinAddr: 0x1FC30, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x67C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC70, symBinAddr: 0x1FC48, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x67CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC9C, symBinAddr: 0x1FC74, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x67D01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1FC7C, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x67D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCC8, symBinAddr: 0x1FCA0, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x67D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCD4, symBinAddr: 0x1FCAC, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x67D6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1264, symBinAddr: 0x201B8, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x67DB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x744, symBinAddr: 0x1F71C, symSize: 0x1C8 } - - { offsetInCU: 0x7EB, offset: 0x67E05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD30, symBinAddr: 0x1FD08, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x67E3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD7C, symBinAddr: 0x1FD54, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x67E5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13A0, symBinAddr: 0x202F4, symSize: 0x264 } - - { offsetInCU: 0x895, offset: 0x67EAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x90C, symBinAddr: 0x1F8E4, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x67EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE48, symBinAddr: 0x1FE20, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x67F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE50, symBinAddr: 0x1FE28, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x67F36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE74, symBinAddr: 0x1FE4C, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x67F52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x20C24, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x67F98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x92C, symBinAddr: 0x1F904, symSize: 0x164 } - - { offsetInCU: 0x9D3, offset: 0x67FED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xED0, symBinAddr: 0x1FEA8, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x68024, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF10, symBinAddr: 0x1FEE8, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x68047, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E94, symBinAddr: 0x20D7C, symSize: 0x2B8 } - - { offsetInCU: 0xA80, offset: 0x6809A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1178, symBinAddr: 0x200EC, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x680AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x11DC, symBinAddr: 0x20130, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x680C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x20174, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x680D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x20558, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x680EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x2059C, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x680FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x2068C, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x68112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x206D8, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x68126, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x206E0, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x6813A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x206E4, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x6814E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x206EC, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x68162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x206FC, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x68176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x2074C, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x6818A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x207D8, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x6819E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x207E0, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x681B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x207E4, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x681C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x207E8, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x681DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x207F8, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x681EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x20830, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x68202, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x20894, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x68216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x20940, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x6822A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x209A4, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x6823E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x20A00, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x68252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x20A64, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x68266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x20A74, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x6827A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x20A78, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x6828E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x20ABC, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x682A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x20AC0, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x682B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x20B04, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x682CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x20B08, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x682DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x20B4C, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x682F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x20B50, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x68306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x20B94, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x6831A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x20B98, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x6832E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x20BDC, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x68342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x20BE0, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x68356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x21034, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x6836A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x211CC, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x6837E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x211D0, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x68392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x211E0, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x683A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x211E4, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x683BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x21228, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x683CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x2122C, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x683E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x21270, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x683F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x21274, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x6844B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAFC, symBinAddr: 0x1FAD4, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x684ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB7C, symBinAddr: 0x1FB54, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x68509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBA4, symBinAddr: 0x1FB7C, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x6852B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCE0, symBinAddr: 0x1FCB8, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x68547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD08, symBinAddr: 0x1FCE0, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x68569, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE80, symBinAddr: 0x1FE58, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x68585, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEA8, symBinAddr: 0x1FE80, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x686D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x212E4, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x686F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x212E4, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68729, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x2182C, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x687BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x21854, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x688B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x21898, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x688D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x21898, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x68919, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x218B0, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x689FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x218F4, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68A7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x212FC, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68AF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x21698, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68B0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x216A8, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68B2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x216B8, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68B49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x216E4, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x68B88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x21718, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x68BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x21728, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x68BD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x2172C, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x68BEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x21734, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x68C29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x2173C, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x68C57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x2174C, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x68C8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x584, symBinAddr: 0x21750, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x68CA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x598, symBinAddr: 0x21764, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x68CCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x21778, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x68CEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x217A4, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x68D17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x217D0, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x68D35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x217D8, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x68D71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x217E0, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x68D8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x217F0, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x68DBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x217F4, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x68DD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x217FC, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x68E14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x21804, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x68E42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x21814, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x68E6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x21818, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x68E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x21828, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x68EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x2195C, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x68EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x21960, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x68F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x219A4, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x68F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x219D4, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x68F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x21A50, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x68F41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x21BD4, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x68F5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x21F68, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x68F85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x21F98, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x68F99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x21FC4, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x68FAD, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x21FF8, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x68FC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x2203C, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x68FD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x221E8, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x68FE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x22230, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x68FFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x222A8, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x69011, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x222B8, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x69025, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x222EC, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x69039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x222F4, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x6904D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x22328, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x69061, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x2237C, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x69075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x22390, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x69089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x223CC, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x6909D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x22414, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x690B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x22454, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x690C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x22464, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x690D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x2249C, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x690ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x22508, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x69101, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x225E4, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x69115, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x22600, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x69129, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x22674, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x6913D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x226D0, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x69151, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x22734, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x69165, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x22744, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x69179, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x2276C, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x6918D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x227A8, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x691A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x22814, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x691B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x22858, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x691C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x228A0, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x691DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x228E0, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x691F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x228F0, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x69205, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x22944, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x69219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x22988, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x6922D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x22998, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x69241, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x22A28, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x69255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x22AE4, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x69269, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x22AEC, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x6927D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x22AF0, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x69291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x22AFC, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x692E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x2191C, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x69531, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x22B1C, symSize: 0x1A0 } - - { offsetInCU: 0x373, offset: 0x69836, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x228, symBinAddr: 0x22D44, symSize: 0x2244 } - - { offsetInCU: 0x15CE, offset: 0x6AA91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB1D4, symBinAddr: 0x2DCF0, symSize: 0x3CB4 } - - { offsetInCU: 0x3157, offset: 0x6C61A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xEE88, symBinAddr: 0x319A4, symSize: 0x634 } - - { offsetInCU: 0x372B, offset: 0x6CBEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0xF4E4, symBinAddr: 0x32000, symSize: 0x40 } - - { offsetInCU: 0x3753, offset: 0x6CC16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x142E4, symBinAddr: 0x36E00, symSize: 0x3E0 } - - { offsetInCU: 0x38E2, offset: 0x6CDA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10C14, symBinAddr: 0x33730, symSize: 0x276C } - - { offsetInCU: 0x5016, offset: 0x6E4D9, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x246C, symBinAddr: 0x24F88, symSize: 0x2A8 } - - { offsetInCU: 0x53D1, offset: 0x6E894, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2714, symBinAddr: 0x25230, symSize: 0x6F8 } - - { offsetInCU: 0x5835, offset: 0x6ECF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x2E0C, symBinAddr: 0x25928, symSize: 0x5D8 } - - { offsetInCU: 0x5B68, offset: 0x6F02B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x33E4, symBinAddr: 0x25F00, symSize: 0x395C } - - { offsetInCU: 0x7562, offset: 0x70A25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6D40, symBinAddr: 0x2985C, symSize: 0x278 } - - { offsetInCU: 0x7679, offset: 0x70B3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x744C, symBinAddr: 0x29F68, symSize: 0x17AC } - - { offsetInCU: 0x7FD3, offset: 0x71496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6FB8, symBinAddr: 0x29AD4, symSize: 0x118 } - - { offsetInCU: 0x803C, offset: 0x714FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x723C, symBinAddr: 0x29D58, symSize: 0x1E8 } - - { offsetInCU: 0x8109, offset: 0x715CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x7424, symBinAddr: 0x29F40, symSize: 0x28 } - - { offsetInCU: 0x84A1, offset: 0x71964, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x8C4C, symBinAddr: 0x2B768, symSize: 0x754 } - - { offsetInCU: 0x88B2, offset: 0x71D75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA354, symBinAddr: 0x2CE70, symSize: 0xE80 } - - { offsetInCU: 0x917A, offset: 0x7263D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x93A0, symBinAddr: 0x2BEBC, symSize: 0xBAC } - - { offsetInCU: 0x9BDB, offset: 0x7309E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF950, symBinAddr: 0x3246C, symSize: 0x12C4 } - - { offsetInCU: 0xAC2E, offset: 0x740F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x185E0, symBinAddr: 0x3B02C, symSize: 0xBD0 } - - { offsetInCU: 0xB955, offset: 0x74E18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x13380, symBinAddr: 0x35E9C, symSize: 0xF64 } - - { offsetInCU: 0xC283, offset: 0x75746, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x146C4, symBinAddr: 0x371E0, symSize: 0x208 } - - { offsetInCU: 0xC319, offset: 0x757DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x148CC, symBinAddr: 0x373E8, symSize: 0x290 } - - { offsetInCU: 0xC40A, offset: 0x758CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14B6C, symBinAddr: 0x37688, symSize: 0xA0 } - - { offsetInCU: 0xC49F, offset: 0x75962, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x14C60, symBinAddr: 0x3777C, symSize: 0x1024 } - - { offsetInCU: 0xCE94, offset: 0x76357, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x15C84, symBinAddr: 0x387A0, symSize: 0x4C } - - { offsetInCU: 0xCEB0, offset: 0x76373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x15CD0, symBinAddr: 0x387EC, symSize: 0x150 } - - { offsetInCU: 0xCFBF, offset: 0x76482, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x15E20, symBinAddr: 0x3893C, symSize: 0x54 } - - { offsetInCU: 0xD038, offset: 0x764FB, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x15EC8, symBinAddr: 0x38990, symSize: 0x4C } - - { offsetInCU: 0xD0BC, offset: 0x7657F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x15F14, symBinAddr: 0x389DC, symSize: 0x50 } - - { offsetInCU: 0xD135, offset: 0x765F8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x15F64, symBinAddr: 0x38A2C, symSize: 0x64 } - - { offsetInCU: 0xD177, offset: 0x7663A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15FC8, symBinAddr: 0x38A90, symSize: 0x30 } - - { offsetInCU: 0xD1A4, offset: 0x76667, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15FF8, symBinAddr: 0x38AC0, symSize: 0x80 } - - { offsetInCU: 0xD242, offset: 0x76705, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x16078, symBinAddr: 0x38B40, symSize: 0x6C } - - { offsetInCU: 0xD2DC, offset: 0x7679F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x160E4, symBinAddr: 0x38BAC, symSize: 0x4C } - - { offsetInCU: 0xD360, offset: 0x76823, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1615C, symBinAddr: 0x38C24, symSize: 0xE0 } - - { offsetInCU: 0xD3AA, offset: 0x7686D, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1623C, symBinAddr: 0x38D04, symSize: 0xC4 } - - { offsetInCU: 0xD3D7, offset: 0x7689A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16300, symBinAddr: 0x38DC8, symSize: 0x174 } - - { offsetInCU: 0xD48B, offset: 0x7694E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x16474, symBinAddr: 0x38F3C, symSize: 0x104 } - - { offsetInCU: 0xD61E, offset: 0x76AE1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x16578, symBinAddr: 0x39040, symSize: 0x128 } - - { offsetInCU: 0xD7C1, offset: 0x76C84, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x166A0, symBinAddr: 0x39168, symSize: 0x16C } - - { offsetInCU: 0xD996, offset: 0x76E59, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1680C, symBinAddr: 0x392D4, symSize: 0x174 } - - { offsetInCU: 0xDB51, offset: 0x77014, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16980, symBinAddr: 0x39448, symSize: 0xFC } - - { offsetInCU: 0xDCF4, offset: 0x771B7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x16A7C, symBinAddr: 0x39544, symSize: 0xFC } - - { offsetInCU: 0xDE97, offset: 0x7735A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x16C7C, symBinAddr: 0x39744, symSize: 0xFC } - - { offsetInCU: 0xDFC1, offset: 0x77484, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16D78, symBinAddr: 0x39840, symSize: 0x40 } - - { offsetInCU: 0xE00E, offset: 0x774D1, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1701C, symBinAddr: 0x39AE4, symSize: 0x138 } - - { offsetInCU: 0xE0AD, offset: 0x77570, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x17154, symBinAddr: 0x39C1C, symSize: 0xB4 } - - { offsetInCU: 0xE15D, offset: 0x77620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x17454, symBinAddr: 0x39EDC, symSize: 0x638 } - - { offsetInCU: 0xE501, offset: 0x779C4, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x17A8C, symBinAddr: 0x3A514, symSize: 0x18C } - - { offsetInCU: 0xE612, offset: 0x77AD5, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17C18, symBinAddr: 0x3A6A0, symSize: 0xC0 } - - { offsetInCU: 0xE715, offset: 0x77BD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17EF4, symBinAddr: 0x3A940, symSize: 0x1A0 } - - { offsetInCU: 0xE86A, offset: 0x77D2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x18094, symBinAddr: 0x3AAE0, symSize: 0x380 } - - { offsetInCU: 0xEB96, offset: 0x78059, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x191B0, symBinAddr: 0x3BBFC, symSize: 0x198 } - - { offsetInCU: 0xECB2, offset: 0x78175, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19348, symBinAddr: 0x3BD94, symSize: 0xC0 } - - { offsetInCU: 0xEFE4, offset: 0x784A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x19408, symBinAddr: 0x3BE54, symSize: 0xD38 } - - { offsetInCU: 0x1025F, offset: 0x79722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A140, symBinAddr: 0x3CB8C, symSize: 0x1C0 } - - { offsetInCU: 0x1040D, offset: 0x798D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A300, symBinAddr: 0x3CD4C, symSize: 0x1A4 } - - { offsetInCU: 0x10500, offset: 0x799C3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A4A4, symBinAddr: 0x3CEF0, symSize: 0x84 } - - { offsetInCU: 0x1070D, offset: 0x79BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1AFC8, symBinAddr: 0x3DA14, symSize: 0x8 } - - { offsetInCU: 0x10721, offset: 0x79BE4, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1B0AC, symBinAddr: 0x3DAF8, symSize: 0x10 } - - { offsetInCU: 0x10735, offset: 0x79BF8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1B0BC, symBinAddr: 0x3DB08, symSize: 0x14 } - - { offsetInCU: 0x10749, offset: 0x79C0C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1B0D0, symBinAddr: 0x3DB1C, symSize: 0x50 } - - { offsetInCU: 0x1075D, offset: 0x79C20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1B130, symBinAddr: 0x3DB6C, symSize: 0x44 } - - { offsetInCU: 0x10771, offset: 0x79C34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1B174, symBinAddr: 0x3DBB0, symSize: 0x30C } - - { offsetInCU: 0x10785, offset: 0x79C48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1B480, symBinAddr: 0x3DEBC, symSize: 0x240 } - - { offsetInCU: 0x10799, offset: 0x79C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1B6C0, symBinAddr: 0x3E0FC, symSize: 0x70 } - - { offsetInCU: 0x107AD, offset: 0x79C70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1B730, symBinAddr: 0x3E16C, symSize: 0x34 } - - { offsetInCU: 0x107C1, offset: 0x79C84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1B764, symBinAddr: 0x3E1A0, symSize: 0x174 } - - { offsetInCU: 0x107D5, offset: 0x79C98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1B8D8, symBinAddr: 0x3E314, symSize: 0xB4 } - - { offsetInCU: 0x1080A, offset: 0x79CCD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1C1A4, symBinAddr: 0x3E3C8, symSize: 0xC4 } - - { offsetInCU: 0x10880, offset: 0x79D43, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C268, symBinAddr: 0x3E48C, symSize: 0x78 } - - { offsetInCU: 0x108AD, offset: 0x79D70, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C2E0, symBinAddr: 0x3E504, symSize: 0x80 } - - { offsetInCU: 0x10923, offset: 0x79DE6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C360, symBinAddr: 0x3E584, symSize: 0x68 } - - { offsetInCU: 0x10A47, offset: 0x79F0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C3C8, symBinAddr: 0x3E5EC, symSize: 0x664 } - - { offsetInCU: 0x10EEB, offset: 0x7A3AE, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1CA3C, symBinAddr: 0x3EC60, symSize: 0x4C } - - { offsetInCU: 0x10EFF, offset: 0x7A3C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1CB30, symBinAddr: 0x3ECCC, symSize: 0x8 } - - { offsetInCU: 0x10F13, offset: 0x7A3D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1CB38, symBinAddr: 0x3ECD4, symSize: 0x44 } - - { offsetInCU: 0x10F27, offset: 0x7A3EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1CB7C, symBinAddr: 0x3ED18, symSize: 0x44 } - - { offsetInCU: 0x10F3B, offset: 0x7A3FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1CC28, symBinAddr: 0x3ED80, symSize: 0x8 } - - { offsetInCU: 0x10F4F, offset: 0x7A412, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1CC40, symBinAddr: 0x3ED88, symSize: 0x3C } - - { offsetInCU: 0x10F63, offset: 0x7A426, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1CC7C, symBinAddr: 0x3EDC4, symSize: 0x34 } - - { offsetInCU: 0x10F77, offset: 0x7A43A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1CD30, symBinAddr: 0x3EE78, symSize: 0x44 } - - { offsetInCU: 0x10FAC, offset: 0x7A46F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CE38, symBinAddr: 0x3EF80, symSize: 0x48 } - - { offsetInCU: 0x10FCB, offset: 0x7A48E, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CE80, symBinAddr: 0x3EFC8, symSize: 0x64 } - - { offsetInCU: 0x1100E, offset: 0x7A4D1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CEE4, symBinAddr: 0x3F02C, symSize: 0x80 } - - { offsetInCU: 0x110A3, offset: 0x7A566, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CF64, symBinAddr: 0x3F0AC, symSize: 0x120 } - - { offsetInCU: 0x1118B, offset: 0x7A64E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1D0CC, symBinAddr: 0x3F214, symSize: 0x48 } - - { offsetInCU: 0x1119F, offset: 0x7A662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1D114, symBinAddr: 0x3F25C, symSize: 0x40 } - - { offsetInCU: 0x111B3, offset: 0x7A676, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1D228, symBinAddr: 0x3F370, symSize: 0x48 } - - { offsetInCU: 0x111C7, offset: 0x7A68A, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1D2F0, symBinAddr: 0x3F438, symSize: 0x18 } - - { offsetInCU: 0x111DB, offset: 0x7A69E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1D308, symBinAddr: 0x3F450, symSize: 0x10 } - - { offsetInCU: 0x111EF, offset: 0x7A6B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1D318, symBinAddr: 0x3F460, symSize: 0x34 } - - { offsetInCU: 0x11203, offset: 0x7A6C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D388, symBinAddr: 0x3F4D0, symSize: 0x30 } - - { offsetInCU: 0x11250, offset: 0x7A713, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x1A0, symBinAddr: 0x22CBC, symSize: 0x88 } - - { offsetInCU: 0x11698, offset: 0x7AB5B, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9F4C, symBinAddr: 0x2CA68, symSize: 0x408 } - - { offsetInCU: 0x11973, offset: 0x7AE36, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF7C4, symBinAddr: 0x322E0, symSize: 0x18C } - - { offsetInCU: 0x11B91, offset: 0x7B054, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x14C0C, symBinAddr: 0x37728, symSize: 0x54 } - - { offsetInCU: 0x11CFE, offset: 0x7B1C1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x17208, symBinAddr: 0x39CD0, symSize: 0x110 } - - { offsetInCU: 0x11E3F, offset: 0x7B302, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x17358, symBinAddr: 0x39DE0, symSize: 0xFC } - - { offsetInCU: 0x11F40, offset: 0x7B403, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17D38, symBinAddr: 0x3A784, symSize: 0x1BC } - - { offsetInCU: 0x1200E, offset: 0x7B4D1, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18414, symBinAddr: 0x3AE60, symSize: 0x1CC } - - { offsetInCU: 0x122D1, offset: 0x7B794, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A724, symBinAddr: 0x3D170, symSize: 0x1DC } - - { offsetInCU: 0x123BD, offset: 0x7B880, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A900, symBinAddr: 0x3D34C, symSize: 0x11C } - - { offsetInCU: 0x12504, offset: 0x7B9C7, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1AA1C, symBinAddr: 0x3D468, symSize: 0xFC } - - { offsetInCU: 0x1264B, offset: 0x7BB0E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1AB18, symBinAddr: 0x3D564, symSize: 0xE4 } - - { offsetInCU: 0x12786, offset: 0x7BC49, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1ABFC, symBinAddr: 0x3D648, symSize: 0x114 } - - { offsetInCU: 0x128C7, offset: 0x7BD8A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AD10, symBinAddr: 0x3D75C, symSize: 0xEC } - - { offsetInCU: 0x12A0E, offset: 0x7BED1, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1AEE4, symBinAddr: 0x3D930, symSize: 0xE4 } - - { offsetInCU: 0x12B6D, offset: 0x7C030, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CD74, symBinAddr: 0x3EEBC, symSize: 0xC4 } - - { offsetInCU: 0x12E13, offset: 0x7C2D6, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x70D0, symBinAddr: 0x29BEC, symSize: 0x16C } - - { offsetInCU: 0x27, offset: 0x7C884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F538, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7C89C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F538, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7C8B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3F568, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7C8C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3F654, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7C8D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3F8CC, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7C8EC, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3FCE8, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7C900, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3FCF0, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7C914, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3FF38, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7C928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3FF80, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7C93C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x4003C, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7CC6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x404F8, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7CD1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x406FC, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D1A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x4130C, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D3C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x4184C, symSize: 0x9B0 } - - { offsetInCU: 0xD3E, offset: 0x7D75B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x21E4, symBinAddr: 0x42228, symSize: 0x21A4 } - - { offsetInCU: 0x202F, offset: 0x7EA4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE2C8, symBinAddr: 0x4E30C, symSize: 0x6F8 } - - { offsetInCU: 0x23FC, offset: 0x7EE19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4388, symBinAddr: 0x443CC, symSize: 0x1288 } - - { offsetInCU: 0x2F50, offset: 0x7F96D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x5610, symBinAddr: 0x45654, symSize: 0xBF4 } - - { offsetInCU: 0x377E, offset: 0x8019B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x6204, symBinAddr: 0x46248, symSize: 0x418 } - - { offsetInCU: 0x3895, offset: 0x802B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6F14, symBinAddr: 0x46F58, symSize: 0x20C } - - { offsetInCU: 0x3B41, offset: 0x8055E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7120, symBinAddr: 0x47164, symSize: 0x924 } - - { offsetInCU: 0x42D4, offset: 0x80CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7A44, symBinAddr: 0x47A88, symSize: 0x2E8 } - - { offsetInCU: 0x440C, offset: 0x80E29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7D2C, symBinAddr: 0x47D70, symSize: 0x658 } - - { offsetInCU: 0x47FD, offset: 0x8121A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x8384, symBinAddr: 0x483C8, symSize: 0x688 } - - { offsetInCU: 0x4ABF, offset: 0x814DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8A0C, symBinAddr: 0x48A50, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x8159A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8C3C, symBinAddr: 0x48C80, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x8161D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x8E68, symBinAddr: 0x48EAC, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x8164A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x8EE8, symBinAddr: 0x48F2C, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81686, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xCE5C, symBinAddr: 0x4CEA0, symSize: 0x7CC } - - { offsetInCU: 0x4FB0, offset: 0x819CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD628, symBinAddr: 0x4D66C, symSize: 0xA24 } - - { offsetInCU: 0x529F, offset: 0x81CBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE04C, symBinAddr: 0x4E090, symSize: 0x218 } - - { offsetInCU: 0x5374, offset: 0x81D91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xE9C0, symBinAddr: 0x4EA04, symSize: 0x86C } - - { offsetInCU: 0x567F, offset: 0x8209C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF22C, symBinAddr: 0x4F270, symSize: 0xC18 } - - { offsetInCU: 0x596E, offset: 0x8238B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xFE44, symBinAddr: 0x4FE88, symSize: 0x278 } - - { offsetInCU: 0x5A43, offset: 0x82460, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x100BC, symBinAddr: 0x50100, symSize: 0x214 } - - { offsetInCU: 0x5F39, offset: 0x82956, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x21B8, symBinAddr: 0x421FC, symSize: 0x2C } - - { offsetInCU: 0x6237, offset: 0x82C54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x8F04, symBinAddr: 0x48F48, symSize: 0x20 } - - { offsetInCU: 0x6290, offset: 0x82CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8F24, symBinAddr: 0x48F68, symSize: 0x8C } - - { offsetInCU: 0x6328, offset: 0x82D45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x8FB0, symBinAddr: 0x48FF4, symSize: 0xC48 } - - { offsetInCU: 0x683A, offset: 0x83257, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x9BF8, symBinAddr: 0x49C3C, symSize: 0x40 } - - { offsetInCU: 0x687E, offset: 0x8329B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0x9C38, symBinAddr: 0x49C7C, symSize: 0x58 } - - { offsetInCU: 0x68A9, offset: 0x832C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0x9C90, symBinAddr: 0x49CD4, symSize: 0x54 } - - { offsetInCU: 0x68EB, offset: 0x83308, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9CE4, symBinAddr: 0x49D28, symSize: 0x64 } - - { offsetInCU: 0x691E, offset: 0x8333B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x9D48, symBinAddr: 0x49D8C, symSize: 0x4 } - - { offsetInCU: 0x6949, offset: 0x83366, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9D4C, symBinAddr: 0x49D90, symSize: 0x78 } - - { offsetInCU: 0x698B, offset: 0x833A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9DC4, symBinAddr: 0x49E08, symSize: 0x90 } - - { offsetInCU: 0x69CD, offset: 0x833EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x9E54, symBinAddr: 0x49E98, symSize: 0x6C } - - { offsetInCU: 0x6A00, offset: 0x8341D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x9EC0, symBinAddr: 0x49F04, symSize: 0x4 } - - { offsetInCU: 0x6A1C, offset: 0x83439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x9EC4, symBinAddr: 0x49F08, symSize: 0x4 } - - { offsetInCU: 0x6A47, offset: 0x83464, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0x9EC8, symBinAddr: 0x49F0C, symSize: 0x74 } - - { offsetInCU: 0x6A7A, offset: 0x83497, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0x9F3C, symBinAddr: 0x49F80, symSize: 0x4 } - - { offsetInCU: 0x6A99, offset: 0x834B6, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F40, symBinAddr: 0x49F84, symSize: 0x8 } - - { offsetInCU: 0x6AB5, offset: 0x834D2, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9F40, symBinAddr: 0x49F84, symSize: 0x8 } - - { offsetInCU: 0x6AC6, offset: 0x834E3, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0x9F48, symBinAddr: 0x49F8C, symSize: 0xC8 } - - { offsetInCU: 0x6B63, offset: 0x83580, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA010, symBinAddr: 0x4A054, symSize: 0xCC } - - { offsetInCU: 0x6C0F, offset: 0x8362C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA1D8, symBinAddr: 0x4A21C, symSize: 0x1F4 } - - { offsetInCU: 0x6C9B, offset: 0x836B8, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA3CC, symBinAddr: 0x4A410, symSize: 0x1C4 } - - { offsetInCU: 0x6D53, offset: 0x83770, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA590, symBinAddr: 0x4A5D4, symSize: 0x3A0 } - - { offsetInCU: 0x6E73, offset: 0x83890, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xA930, symBinAddr: 0x4A974, symSize: 0x398 } - - { offsetInCU: 0x6F8A, offset: 0x839A7, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xACC8, symBinAddr: 0x4AD0C, symSize: 0x1E4 } - - { offsetInCU: 0x701B, offset: 0x83A38, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xAEAC, symBinAddr: 0x4AEF0, symSize: 0x204 } - - { offsetInCU: 0x70A1, offset: 0x83ABE, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB0B0, symBinAddr: 0x4B0F4, symSize: 0x4C } - - { offsetInCU: 0x715E, offset: 0x83B7B, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB0FC, symBinAddr: 0x4B140, symSize: 0x90 } - - { offsetInCU: 0x71F9, offset: 0x83C16, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB18C, symBinAddr: 0x4B1D0, symSize: 0x40 } - - { offsetInCU: 0x7236, offset: 0x83C53, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB1CC, symBinAddr: 0x4B210, symSize: 0x18 } - - { offsetInCU: 0x7288, offset: 0x83CA5, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB1E4, symBinAddr: 0x4B228, symSize: 0x3C } - - { offsetInCU: 0x72B1, offset: 0x83CCE, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB220, symBinAddr: 0x4B264, symSize: 0x1C } - - { offsetInCU: 0x7381, offset: 0x83D9E, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB23C, symBinAddr: 0x4B280, symSize: 0xE0 } - - { offsetInCU: 0x74A4, offset: 0x83EC1, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xB400, symBinAddr: 0x4B444, symSize: 0x294 } - - { offsetInCU: 0x751B, offset: 0x83F38, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xB930, symBinAddr: 0x4B974, symSize: 0x8C } - - { offsetInCU: 0x7533, offset: 0x83F50, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xB9BC, symBinAddr: 0x4BA00, symSize: 0x4C } - - { offsetInCU: 0x7588, offset: 0x83FA5, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBA08, symBinAddr: 0x4BA4C, symSize: 0x154 } - - { offsetInCU: 0x75F6, offset: 0x84013, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBB5C, symBinAddr: 0x4BBA0, symSize: 0xF0 } - - { offsetInCU: 0x761B, offset: 0x84038, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xBC4C, symBinAddr: 0x4BC90, symSize: 0x214 } - - { offsetInCU: 0x7654, offset: 0x84071, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xBE60, symBinAddr: 0x4BEA4, symSize: 0x78 } - - { offsetInCU: 0x766C, offset: 0x84089, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xBED8, symBinAddr: 0x4BF1C, symSize: 0x1C } - - { offsetInCU: 0x7684, offset: 0x840A1, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBEF4, symBinAddr: 0x4BF38, symSize: 0x1C } - - { offsetInCU: 0x769C, offset: 0x840B9, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBF10, symBinAddr: 0x4BF54, symSize: 0x1C } - - { offsetInCU: 0x7701, offset: 0x8411E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xBF2C, symBinAddr: 0x4BF70, symSize: 0x104 } - - { offsetInCU: 0x7864, offset: 0x84281, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xC030, symBinAddr: 0x4C074, symSize: 0x174 } - - { offsetInCU: 0x79D4, offset: 0x843F1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC1A4, symBinAddr: 0x4C1E8, symSize: 0x124 } - - { offsetInCU: 0x7AD4, offset: 0x844F1, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC2C8, symBinAddr: 0x4C30C, symSize: 0x120 } - - { offsetInCU: 0x7D20, offset: 0x8473D, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xC3E8, symBinAddr: 0x4C42C, symSize: 0x36C } - - { offsetInCU: 0x830E, offset: 0x84D2B, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC754, symBinAddr: 0x4C798, symSize: 0x290 } - - { offsetInCU: 0x84FB, offset: 0x84F18, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC9E4, symBinAddr: 0x4CA28, symSize: 0x150 } - - { offsetInCU: 0x8661, offset: 0x8507E, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xCB34, symBinAddr: 0x4CB78, symSize: 0x218 } - - { offsetInCU: 0x86AD, offset: 0x850CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xCD4C, symBinAddr: 0x4CD90, symSize: 0x14 } - - { offsetInCU: 0x86E6, offset: 0x85103, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xCD60, symBinAddr: 0x4CDA4, symSize: 0xFC } - - { offsetInCU: 0x87A4, offset: 0x851C1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xE264, symBinAddr: 0x4E2A8, symSize: 0x64 } - - { offsetInCU: 0x8850, offset: 0x8526D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x102D0, symBinAddr: 0x50314, symSize: 0xA78 } - - { offsetInCU: 0x8E1E, offset: 0x8583B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10D48, symBinAddr: 0x50D8C, symSize: 0x104 } - - { offsetInCU: 0x8F8A, offset: 0x859A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10E4C, symBinAddr: 0x50E90, symSize: 0x2D8C } - - { offsetInCU: 0x9650, offset: 0x8606D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x13BD8, symBinAddr: 0x53C1C, symSize: 0x120 } - - { offsetInCU: 0x9761, offset: 0x8617E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x13CF8, symBinAddr: 0x53D3C, symSize: 0x80 } - - { offsetInCU: 0x97E4, offset: 0x86201, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13D78, symBinAddr: 0x53DBC, symSize: 0x654 } - - { offsetInCU: 0x9B80, offset: 0x8659D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x1442C, symBinAddr: 0x54410, symSize: 0x10 } - - { offsetInCU: 0x9B94, offset: 0x865B1, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x1443C, symBinAddr: 0x54420, symSize: 0x10 } - - { offsetInCU: 0x9BA8, offset: 0x865C5, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x14490, symBinAddr: 0x54430, symSize: 0x48 } - - { offsetInCU: 0x9BBC, offset: 0x865D9, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x14540, symBinAddr: 0x54478, symSize: 0x3C } - - { offsetInCU: 0x9BD0, offset: 0x865ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x1457C, symBinAddr: 0x544B4, symSize: 0x44 } - - { offsetInCU: 0x9BE4, offset: 0x86601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOf', symObjAddr: 0x145C0, symBinAddr: 0x544F8, symSize: 0x48 } - - { offsetInCU: 0x9BF8, offset: 0x86615, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x14680, symBinAddr: 0x5457C, symSize: 0x8 } - - { offsetInCU: 0x9C0C, offset: 0x86629, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14688, symBinAddr: 0x54584, symSize: 0x10 } - - { offsetInCU: 0x9C20, offset: 0x8663D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14698, symBinAddr: 0x54594, symSize: 0x8 } - - { offsetInCU: 0x9C34, offset: 0x86651, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14720, symBinAddr: 0x545D8, symSize: 0x30 } - - { offsetInCU: 0x9C8C, offset: 0x866A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x147E0, symBinAddr: 0x54698, symSize: 0x24 } - - { offsetInCU: 0x9CC8, offset: 0x866E5, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x1484C, symBinAddr: 0x546BC, symSize: 0x44 } - - { offsetInCU: 0x9CF7, offset: 0x86714, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x4004C, symSize: 0x12C } - - { offsetInCU: 0x9D2D, offset: 0x8674A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x40178, symSize: 0x58 } - - { offsetInCU: 0x9E0D, offset: 0x8682A, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x401D0, symSize: 0x90 } - - { offsetInCU: 0x9E36, offset: 0x86853, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x40260, symSize: 0xA0 } - - { offsetInCU: 0x9F62, offset: 0x8697F, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x40300, symSize: 0x9C } - - { offsetInCU: 0xA071, offset: 0x86A8E, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x4039C, symSize: 0x74 } - - { offsetInCU: 0xA0F6, offset: 0x86B13, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x40410, symSize: 0x4 } - - { offsetInCU: 0xA118, offset: 0x86B35, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x40414, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x87531, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x547C4, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x8755C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEE0, symBinAddr: 0x556A4, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x87587, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE8, symBinAddr: 0x556AC, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x875B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF0C, symBinAddr: 0x556D0, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x875D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF18, symBinAddr: 0x556DC, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x875F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5C00, symBinAddr: 0x5A334, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87636, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x547E4, symSize: 0x18C } - - { offsetInCU: 0x1BC, offset: 0x8768B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF74, symBinAddr: 0x55738, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x876C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC4, symBinAddr: 0x55788, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x876E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5D2C, symBinAddr: 0x5A460, symSize: 0x133C } - - { offsetInCU: 0x267, offset: 0x87736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x1AC, symBinAddr: 0x54970, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x87785, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1014, symBinAddr: 0x557D8, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x877EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x102C, symBinAddr: 0x557F0, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87865, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1058, symBinAddr: 0x5581C, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1060, symBinAddr: 0x55824, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x878C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1084, symBinAddr: 0x55848, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x878DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1090, symBinAddr: 0x55854, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x878F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B4C, symBinAddr: 0x5B868, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x8793F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CC, symBinAddr: 0x54990, symSize: 0x274 } - - { offsetInCU: 0x4C5, offset: 0x87994, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x10EC, symBinAddr: 0x558B0, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x879CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x113C, symBinAddr: 0x55900, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x879EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D28, symBinAddr: 0x5BA44, symSize: 0xF48 } - - { offsetInCU: 0x569, offset: 0x87A38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x440, symBinAddr: 0x54C04, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x87A71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x54C24, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x87A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x54C24, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x87AF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x55974, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x87B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1214, symBinAddr: 0x559D8, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x87B75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x123C, symBinAddr: 0x55A00, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x87BAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1244, symBinAddr: 0x55A08, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x87C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x12AC, symBinAddr: 0x55A70, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x87C4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x12B8, symBinAddr: 0x55A7C, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x87C69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x480, symBinAddr: 0x54C44, symSize: 0x1A0 } - - { offsetInCU: 0x7EF, offset: 0x87CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1314, symBinAddr: 0x55AD8, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x87CF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x135C, symBinAddr: 0x55B20, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x87D18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8E4C, symBinAddr: 0x5CB68, symSize: 0x230 } - - { offsetInCU: 0x899, offset: 0x87D68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x620, symBinAddr: 0x54DE4, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x87D93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x139C, symBinAddr: 0x55B60, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x87DBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A4, symBinAddr: 0x55B68, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x87DEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x13C8, symBinAddr: 0x55B8C, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x87E0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x13D4, symBinAddr: 0x55B98, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x87E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x907C, symBinAddr: 0x5CD98, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x87E6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x54E04, symSize: 0x278 } - - { offsetInCU: 0x9F3, offset: 0x87EC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1430, symBinAddr: 0x55BF4, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x87EF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1490, symBinAddr: 0x55C54, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x87F1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9328, symBinAddr: 0x5D044, symSize: 0x548 } - - { offsetInCU: 0xA9D, offset: 0x87F6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x8B8, symBinAddr: 0x5507C, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x87FB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14E8, symBinAddr: 0x55CAC, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x88048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1500, symBinAddr: 0x55CC4, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x8812B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1544, symBinAddr: 0x55D08, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x8819D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x15AC, symBinAddr: 0x55D70, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x881C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15B4, symBinAddr: 0x55D78, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x881F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15D8, symBinAddr: 0x55D9C, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x88215, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15E4, symBinAddr: 0x55DA8, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x88231, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9870, symBinAddr: 0x5D58C, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x88277, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8D8, symBinAddr: 0x5509C, symSize: 0x128 } - - { offsetInCU: 0xDFD, offset: 0x882CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1640, symBinAddr: 0x55E04, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x88303, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x166C, symBinAddr: 0x55E30, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x88326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9924, symBinAddr: 0x5D640, symSize: 0x1B0 } - - { offsetInCU: 0xEA8, offset: 0x88377, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0xA00, symBinAddr: 0x551C4, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x883A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x170C, symBinAddr: 0x55ED0, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x883CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1714, symBinAddr: 0x55ED8, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x883FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1738, symBinAddr: 0x55EFC, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x8841A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1744, symBinAddr: 0x55F08, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x88436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9AD4, symBinAddr: 0x5D7F0, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x8847C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA20, symBinAddr: 0x551E4, symSize: 0x224 } - - { offsetInCU: 0x1002, offset: 0x884D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x55F64, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x88508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1810, symBinAddr: 0x55FD4, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x8852B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9D08, symBinAddr: 0x5DA24, symSize: 0x8D8 } - - { offsetInCU: 0x10A6, offset: 0x88575, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC44, symBinAddr: 0x55408, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x885AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55428, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x885DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55428, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88625, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x19FC, symBinAddr: 0x561C0, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x8866B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1A40, symBinAddr: 0x56204, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x8867F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1A68, symBinAddr: 0x5622C, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x886B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A70, symBinAddr: 0x56234, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x8871A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1AAC, symBinAddr: 0x56270, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AB8, symBinAddr: 0x5627C, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x88752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA6AC, symBinAddr: 0x5E3C8, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x8877E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC84, symBinAddr: 0x55448, symSize: 0x254 } - - { offsetInCU: 0x1304, offset: 0x887D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B14, symBinAddr: 0x562D8, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x8880A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B6C, symBinAddr: 0x56330, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x8882D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA6FC, symBinAddr: 0x5E418, symSize: 0x770 } - - { offsetInCU: 0x13D3, offset: 0x888A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1BBC, symBinAddr: 0x56380, symSize: 0x1C8 } - - { offsetInCU: 0x142F, offset: 0x888FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x1D84, symBinAddr: 0x56548, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x88945, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x59C8, symBinAddr: 0x5A180, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x889B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5A1C, symBinAddr: 0x5A1D4, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x88A03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A9C, symBinAddr: 0x5A254, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x88A39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5AA4, symBinAddr: 0x5A25C, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x88AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5B04, symBinAddr: 0x5A2BC, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x88AD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x1D94, symBinAddr: 0x56558, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x88AEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x1DB4, symBinAddr: 0x56578, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x88AFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x1EA8, symBinAddr: 0x5666C, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x88B12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x222C, symBinAddr: 0x569F0, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x88B2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x2E84, symBinAddr: 0x57648, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x88B56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x2EB4, symBinAddr: 0x57678, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x88B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x2EE0, symBinAddr: 0x576A4, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x88B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x2F0C, symBinAddr: 0x576D0, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x88B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x2F38, symBinAddr: 0x576FC, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x88BA6, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2F64, symBinAddr: 0x57728, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x88BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x2F6C, symBinAddr: 0x57730, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x88BCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x332C, symBinAddr: 0x57AF0, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x88BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3388, symBinAddr: 0x57B4C, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x88BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x3474, symBinAddr: 0x57C38, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x88C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3484, symBinAddr: 0x57C48, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x88C1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x34B4, symBinAddr: 0x57C78, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x88C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x3594, symBinAddr: 0x57D58, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x88C46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x38CC, symBinAddr: 0x58090, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x88C5A, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4130, symBinAddr: 0x588F4, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x88C6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4138, symBinAddr: 0x588FC, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x88C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x449C, symBinAddr: 0x58C60, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x88C96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x44F8, symBinAddr: 0x58CBC, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x88CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x45DC, symBinAddr: 0x58DA0, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x88CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x45EC, symBinAddr: 0x58DB0, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x88CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x4690, symBinAddr: 0x58E54, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x88CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x481C, symBinAddr: 0x58FE0, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x88CFA, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4BC4, symBinAddr: 0x59388, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x88D0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4C08, symBinAddr: 0x593CC, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x88D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x4D84, symBinAddr: 0x59548, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x88D36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x4DE0, symBinAddr: 0x595A4, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x88D4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x4E74, symBinAddr: 0x59638, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x88D5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x4E84, symBinAddr: 0x59648, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x88D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x4EEC, symBinAddr: 0x596B0, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x88D86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x4FC8, symBinAddr: 0x5978C, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x88D9A, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5134, symBinAddr: 0x598F8, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x88DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5160, symBinAddr: 0x59924, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x88DC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x5224, symBinAddr: 0x599E8, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x88DD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x5280, symBinAddr: 0x59A44, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x88DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x52FC, symBinAddr: 0x59AC0, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x88DFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x530C, symBinAddr: 0x59AD0, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x88E12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x5354, symBinAddr: 0x59B18, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x88E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x5438, symBinAddr: 0x59BFC, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x88E3A, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x55D0, symBinAddr: 0x59D94, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x88E4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x5604, symBinAddr: 0x59DC8, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x88E62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5700, symBinAddr: 0x59EC4, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x88E76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x575C, symBinAddr: 0x59F20, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x88E8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x57D8, symBinAddr: 0x59F9C, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x88E9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x57E8, symBinAddr: 0x59FAC, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x88EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5810, symBinAddr: 0x59FD4, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x88EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x584C, symBinAddr: 0x5A010, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x88EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x58C4, symBinAddr: 0x5A07C, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x88EEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5908, symBinAddr: 0x5A0C0, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x88F02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x5964, symBinAddr: 0x5A11C, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x88F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x59B8, symBinAddr: 0x5A170, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x88F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5B0C, symBinAddr: 0x5A2C4, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x88F3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5B10, symBinAddr: 0x5A2C8, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x88F52, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5BD8, symBinAddr: 0x5A30C, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x88F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x7068, symBinAddr: 0x5B79C, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x88F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x70AC, symBinAddr: 0x5B7E0, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x88F8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7B08, symBinAddr: 0x5B824, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x88FA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x8C70, symBinAddr: 0x5C98C, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x88FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x8CB4, symBinAddr: 0x5C9D0, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x88FCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x8CF8, symBinAddr: 0x5CA14, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x88FDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x8D3C, symBinAddr: 0x5CA58, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x88FF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x8D80, symBinAddr: 0x5CA9C, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x89006, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x8DC4, symBinAddr: 0x5CAE0, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x8901A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x8E08, symBinAddr: 0x5CB24, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x8902E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA5E0, symBinAddr: 0x5E2FC, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x89042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xA624, symBinAddr: 0x5E340, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x89056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xA668, symBinAddr: 0x5E384, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x8906A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xAE6C, symBinAddr: 0x5EB88, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x8907E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xAEB0, symBinAddr: 0x5EBCC, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x89092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xAEF4, symBinAddr: 0x5EC10, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x890A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xAF7C, symBinAddr: 0x5EC98, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x890BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xAFC0, symBinAddr: 0x5ECDC, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x890CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB014, symBinAddr: 0x5ED20, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x890E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB0A4, symBinAddr: 0x5EDB0, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x890F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB160, symBinAddr: 0x5EE6C, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x8910A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB168, symBinAddr: 0x5EE74, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x8911E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB16C, symBinAddr: 0x5EE78, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x89132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB178, symBinAddr: 0x5EE84, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x89146, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB188, symBinAddr: 0x5EE94, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x8915A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB218, symBinAddr: 0x5EF24, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x8916E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB2D4, symBinAddr: 0x5EFE0, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x89182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB2D8, symBinAddr: 0x5EFE4, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x89196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB2E8, symBinAddr: 0x5EFF4, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x891AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB378, symBinAddr: 0x5F084, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x891BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB434, symBinAddr: 0x5F140, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x891D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB438, symBinAddr: 0x5F144, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x891E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB448, symBinAddr: 0x5F154, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x891FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB4D8, symBinAddr: 0x5F1E4, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x8920E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB594, symBinAddr: 0x5F2A0, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x89222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB598, symBinAddr: 0x5F2A4, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x89236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB5A8, symBinAddr: 0x5F2B4, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x8924A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB638, symBinAddr: 0x5F344, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x8925E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB6F4, symBinAddr: 0x5F400, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x89272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB6FC, symBinAddr: 0x5F408, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x89286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB700, symBinAddr: 0x5F40C, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x8929A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB708, symBinAddr: 0x5F414, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x892AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB718, symBinAddr: 0x5F424, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x892C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB7A8, symBinAddr: 0x5F4B4, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x892D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB864, symBinAddr: 0x5F570, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x892EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB868, symBinAddr: 0x5F574, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x892FE, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB878, symBinAddr: 0x5F584, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x89312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xB89C, symBinAddr: 0x5F5A8, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x89326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xB8BC, symBinAddr: 0x5F5C8, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x8933A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xB8FC, symBinAddr: 0x5F608, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x8934E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB90C, symBinAddr: 0x5F618, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x89362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB910, symBinAddr: 0x5F61C, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x89376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB954, symBinAddr: 0x5F660, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x8938A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB958, symBinAddr: 0x5F664, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x8939E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB99C, symBinAddr: 0x5F6A8, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x893B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB9A0, symBinAddr: 0x5F6AC, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x893C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB9E4, symBinAddr: 0x5F6F0, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x893DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB9E8, symBinAddr: 0x5F6F4, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x893EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBA2C, symBinAddr: 0x5F738, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBA30, symBinAddr: 0x5F73C, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x89416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBA74, symBinAddr: 0x5F780, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x8942A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBA78, symBinAddr: 0x5F784, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x8943E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBABC, symBinAddr: 0x5F7C8, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x89452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAC0, symBinAddr: 0x5F7CC, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x89466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB04, symBinAddr: 0x5F810, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x8947A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB08, symBinAddr: 0x5F814, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x8948E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB4C, symBinAddr: 0x5F858, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x894A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB50, symBinAddr: 0x5F85C, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x894B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB94, symBinAddr: 0x5F8A0, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x894CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB98, symBinAddr: 0x5F8A4, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x894DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBBDC, symBinAddr: 0x5F8E8, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x894F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBBE0, symBinAddr: 0x5F8EC, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC24, symBinAddr: 0x5F930, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x8951A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBC28, symBinAddr: 0x5F934, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x8952E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC6C, symBinAddr: 0x5F978, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x89542, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC70, symBinAddr: 0x5F97C, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x89556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCB4, symBinAddr: 0x5F9C0, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x8956A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCB8, symBinAddr: 0x5F9C4, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x8957E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBCFC, symBinAddr: 0x5FA08, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x89592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD00, symBinAddr: 0x5FA0C, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x895A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBD44, symBinAddr: 0x5FA50, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x895BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBD48, symBinAddr: 0x5FA54, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x895CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBD8C, symBinAddr: 0x5FA98, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x895E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD90, symBinAddr: 0x5FA9C, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x895F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBDD4, symBinAddr: 0x5FAE0, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x8960A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBDD8, symBinAddr: 0x5FAE4, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x8961E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xBE1C, symBinAddr: 0x5FB28, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xBE60, symBinAddr: 0x5FB6C, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xBEF0, symBinAddr: 0x5FBFC, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x8965A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xBFAC, symBinAddr: 0x5FCB8, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x8966E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xBFB0, symBinAddr: 0x5FCBC, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x89682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBFC0, symBinAddr: 0x5FCCC, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x89696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBFC4, symBinAddr: 0x5FCD0, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x896AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC008, symBinAddr: 0x5FD14, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x896BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC00C, symBinAddr: 0x5FD18, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x896D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC050, symBinAddr: 0x5FD5C, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x896E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC054, symBinAddr: 0x5FD60, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF24, symBinAddr: 0x556E8, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89730, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x55710, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x89752, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x109C, symBinAddr: 0x55860, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x8976E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x10C4, symBinAddr: 0x55888, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x8978A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x118C, symBinAddr: 0x55950, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x897A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1198, symBinAddr: 0x5595C, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x897C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x11A0, symBinAddr: 0x55964, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x897DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x11A8, symBinAddr: 0x5596C, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89800, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x12C4, symBinAddr: 0x55A88, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x8981C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x12EC, symBinAddr: 0x55AB0, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x8983E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x13E0, symBinAddr: 0x55BA4, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x8985A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1408, symBinAddr: 0x55BCC, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x898A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x156C, symBinAddr: 0x55D30, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x89945, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15F0, symBinAddr: 0x55DB4, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x89961, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1618, symBinAddr: 0x55DDC, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x89983, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x55F14, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x8999F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1778, symBinAddr: 0x55F3C, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x899D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1878, symBinAddr: 0x5603C, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x89A88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1900, symBinAddr: 0x560C4, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x89B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1960, symBinAddr: 0x56124, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x89B58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x19A0, symBinAddr: 0x56164, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x89BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1AC4, symBinAddr: 0x56288, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x89BD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1AEC, symBinAddr: 0x562B0, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x89C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5AC8, symBinAddr: 0x5A280, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x89E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5FE0C, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x89E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5FE0C, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x89E58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5FE14, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x89E94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5FE1C, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x89EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5FE2C, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x89EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5FE30, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x89EFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5FE38, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x89F37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5FE40, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x89F65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5FE50, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x89F90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5FE54, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x89FAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5FE5C, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x89FE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5FE64, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A016, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5FE74, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5FE78, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5FECC, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A06A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5FF10, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FF20, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A1C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FF20, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5FF44, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8A32D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5FF64, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8A36F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5FF64, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8A3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5FF88, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8A4D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FFA8, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8A51A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5FFA8, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8A568, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x60008, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8A57C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x60010, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8A590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x6004C, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8A6A9, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x600C4, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8A766, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x600C4, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8A95F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x6042C, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8AB0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60474, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8AB51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60474, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8AB9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x60498, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8ACDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x604B8, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8AD09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x6054C, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8AD4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x60E84, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8ADBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA70, symBinAddr: 0x60EE8, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8ADD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA7C, symBinAddr: 0x60EF4, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8AE06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA0, symBinAddr: 0x60F18, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8AE98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x60524, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8AEC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF0, symBinAddr: 0x60F68, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8AEEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB94, symBinAddr: 0x6100C, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8AF0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xBA0, symBinAddr: 0x61018, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B1CB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x60DB8, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B247, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x6103C, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8B49A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC0, symBinAddr: 0x61438, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8B61E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x10FC, symBinAddr: 0x61574, symSize: 0xAB0 } - - { offsetInCU: 0xF95, offset: 0x8BC24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1BAC, symBinAddr: 0x62024, symSize: 0x694 } - - { offsetInCU: 0x1345, offset: 0x8BFD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2240, symBinAddr: 0x626B8, symSize: 0x4B0 } - - { offsetInCU: 0x14E4, offset: 0x8C173, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x26F0, symBinAddr: 0x62B68, symSize: 0x668 } - - { offsetInCU: 0x1A13, offset: 0x8C6A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2D58, symBinAddr: 0x631D0, symSize: 0x160 } - - { offsetInCU: 0x1B2D, offset: 0x8C7BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2EB8, symBinAddr: 0x63330, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8C7FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3468, symBinAddr: 0x63884, symSize: 0x224 } - - { offsetInCU: 0x1C21, offset: 0x8C8B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x368C, symBinAddr: 0x63AA8, symSize: 0x25C } - - { offsetInCU: 0x1C86, offset: 0x8C915, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x38E8, symBinAddr: 0x63D04, symSize: 0x248 } - - { offsetInCU: 0x1DAE, offset: 0x8CA3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3B74, symBinAddr: 0x63F4C, symSize: 0x2BC } - - { offsetInCU: 0x1EED, offset: 0x8CB7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3E30, symBinAddr: 0x64208, symSize: 0x1A8 } - - { offsetInCU: 0x1F33, offset: 0x8CBC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3FD8, symBinAddr: 0x643B0, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8CF16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x444C, symBinAddr: 0x64824, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D012, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2F34, symBinAddr: 0x633AC, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D054, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2F38, symBinAddr: 0x633B0, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D068, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2F3C, symBinAddr: 0x633B4, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D07C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2F80, symBinAddr: 0x633F8, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D090, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2F84, symBinAddr: 0x633FC, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D0A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3014, symBinAddr: 0x63448, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D0B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3018, symBinAddr: 0x6344C, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D0CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x306C, symBinAddr: 0x63490, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D0E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x30FC, symBinAddr: 0x63520, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D0F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x31B8, symBinAddr: 0x635DC, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D108, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x31C0, symBinAddr: 0x635E4, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D11C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x31C4, symBinAddr: 0x635E8, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D130, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x31CC, symBinAddr: 0x635F0, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D144, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x31DC, symBinAddr: 0x63600, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x326C, symBinAddr: 0x63690, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D16C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x3328, symBinAddr: 0x6374C, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D180, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x3330, symBinAddr: 0x63754, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D194, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x3334, symBinAddr: 0x63758, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D1A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x3340, symBinAddr: 0x63764, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D1BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x3350, symBinAddr: 0x63774, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D1D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3378, symBinAddr: 0x63794, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D1E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x3384, symBinAddr: 0x637A0, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D1F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3388, symBinAddr: 0x637A4, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D20C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x33CC, symBinAddr: 0x637E8, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x33D8, symBinAddr: 0x637F4, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D234, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x33DC, symBinAddr: 0x637F8, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D248, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x3420, symBinAddr: 0x6383C, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D267, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x342C, symBinAddr: 0x63848, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D29F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3440, symBinAddr: 0x6385C, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D2D7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3454, symBinAddr: 0x63870, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8D33B, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x4564, symBinAddr: 0x6493C, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8D34F, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4608, symBinAddr: 0x64984, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8D363, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4644, symBinAddr: 0x649C0, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8D377, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x469C, symBinAddr: 0x64A08, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8D38B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x46A4, symBinAddr: 0x64A10, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8D39F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x46B4, symBinAddr: 0x64A20, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8D3B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4714, symBinAddr: 0x64A28, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8D3C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x47C8, symBinAddr: 0x64ADC, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8D3F6, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8D40E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8D422, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8D436, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8D44A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60570, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8D45E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x60574, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8D4DC, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x60598, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8D56B, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x6061C, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8D5FA, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x606A0, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8D691, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x6072C, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8D76B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x60794, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8D845, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x607FC, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8D8BA, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x60868, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8D917, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x608A8, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8D974, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x608E8, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8D99D, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x6092C, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8D9F0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x60994, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8DA6C, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x609F8, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8DAFD, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x60A5C, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8DC63, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8DC83, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8DCA3, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8DCB7, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8DCCB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8DCDF, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x60B20, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8DD88, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x60B68, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8DE2F, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x60BF0, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8DED2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x60C70, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8DFBE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8DFDE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8DFF2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E006, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E01A, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x60D54, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E08A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA4C, symBinAddr: 0x60EC4, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E0A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x60ED0, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E0C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x60ED8, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E0D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA68, symBinAddr: 0x60EE0, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E0F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB70, symBinAddr: 0x60FE8, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E10C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB7C, symBinAddr: 0x60FF4, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E128, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB84, symBinAddr: 0x60FFC, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E13C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x61004, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8E5EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x64AF8, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8E603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x64C80, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8E617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x64D24, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8E62B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x64E80, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8E63F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x65068, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8E653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x65154, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8E667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x652DC, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8E67B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x65374, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8E68F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x6540C, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8E6A3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x65494, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8E6B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x654E8, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8E6CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x65608, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8E6DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x6568C, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8E6F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x65780, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8E707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x658E0, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8E71B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x659BC, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8E72F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x65B04, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8E743, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x65B9C, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8E757, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x65C68, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8E789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x65CF0, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8E7D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x66288, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8E83E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17E8, symBinAddr: 0x662A0, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8E8B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1814, symBinAddr: 0x662CC, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8E8E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x181C, symBinAddr: 0x662D4, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8E914, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1840, symBinAddr: 0x662F8, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8E930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x184C, symBinAddr: 0x66304, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8E94C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2EBC, symBinAddr: 0x67878, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8E992, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x65D10, symSize: 0x210 } - - { offsetInCU: 0x425, offset: 0x8E9D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1468, symBinAddr: 0x65F20, symSize: 0x368 } - - { offsetInCU: 0x456, offset: 0x8EA02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18A8, symBinAddr: 0x66360, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8EA25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18BC, symBinAddr: 0x66374, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8EA7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x18D0, symBinAddr: 0x66388, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8EAA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x6656C, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8EAD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1ABC, symBinAddr: 0x66574, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8EB04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x66598, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8EB20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AEC, symBinAddr: 0x665A4, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8EB3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3078, symBinAddr: 0x67A34, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8EB82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x663A8, symSize: 0x1BC } - - { offsetInCU: 0x62B, offset: 0x8EBD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B48, symBinAddr: 0x66600, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8EC0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B94, symBinAddr: 0x6664C, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8EC31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31C4, symBinAddr: 0x67B80, symSize: 0x2A4 } - - { offsetInCU: 0x6D5, offset: 0x8EC81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1BD4, symBinAddr: 0x6668C, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8ECAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x238C, symBinAddr: 0x66E44, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8ECD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2394, symBinAddr: 0x66E4C, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8ED08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23B8, symBinAddr: 0x66E70, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8ED24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23C4, symBinAddr: 0x66E7C, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8ED40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3468, symBinAddr: 0x67E24, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8ED86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BF4, symBinAddr: 0x666AC, symSize: 0x274 } - - { offsetInCU: 0x819, offset: 0x8EDC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E68, symBinAddr: 0x66920, symSize: 0x4A0 } - - { offsetInCU: 0x84A, offset: 0x8EDF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2420, symBinAddr: 0x66ED8, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8EE19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2434, symBinAddr: 0x66EEC, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8EE3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x246C, symBinAddr: 0x66F00, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8EE51, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24D0, symBinAddr: 0x66F44, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8EE65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2598, symBinAddr: 0x66FC4, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8EE79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2620, symBinAddr: 0x67008, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8EE8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x274C, symBinAddr: 0x67134, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8EEA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x27A0, symBinAddr: 0x67178, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8EEB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2830, symBinAddr: 0x67208, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8EEC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x28EC, symBinAddr: 0x672C4, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8EEDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x28F4, symBinAddr: 0x672CC, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8EEF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x28F8, symBinAddr: 0x672D0, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8EF05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2900, symBinAddr: 0x672D8, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8EF19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2910, symBinAddr: 0x672E8, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8EF2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x29A0, symBinAddr: 0x67378, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8EF41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2A5C, symBinAddr: 0x67434, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8EF55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2A60, symBinAddr: 0x67438, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8EF69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2A70, symBinAddr: 0x67448, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8EF7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2AA0, symBinAddr: 0x67478, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8EF91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2AD0, symBinAddr: 0x674A8, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8EFA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2B2C, symBinAddr: 0x67504, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8EFB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2BDC, symBinAddr: 0x67598, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8EFCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2C40, symBinAddr: 0x675FC, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8EFE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2C9C, symBinAddr: 0x67658, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8EFF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2CFC, symBinAddr: 0x676B8, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D0C, symBinAddr: 0x676C8, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F01D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x676CC, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D54, symBinAddr: 0x67710, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D58, symBinAddr: 0x67714, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D9C, symBinAddr: 0x67758, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F06D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA0, symBinAddr: 0x6775C, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE4, symBinAddr: 0x677A0, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DE8, symBinAddr: 0x677A4, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F0A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E2C, symBinAddr: 0x677E8, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F0BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E30, symBinAddr: 0x677EC, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F0D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E74, symBinAddr: 0x67830, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F0E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E78, symBinAddr: 0x67834, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3740, symBinAddr: 0x680FC, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F118, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3784, symBinAddr: 0x68140, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F12C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x3850, symBinAddr: 0x6820C, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F140, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x38E0, symBinAddr: 0x6829C, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F154, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x399C, symBinAddr: 0x68358, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F168, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x39A0, symBinAddr: 0x6835C, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F17C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x39B0, symBinAddr: 0x6836C, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F190, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x39B4, symBinAddr: 0x68370, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F1A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x39F8, symBinAddr: 0x683B4, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F1B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39FC, symBinAddr: 0x683B8, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F1CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3A40, symBinAddr: 0x683FC, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F1E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3A44, symBinAddr: 0x68400, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F20E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1858, symBinAddr: 0x66310, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F22A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1880, symBinAddr: 0x66338, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F24C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AF8, symBinAddr: 0x665B0, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x665D8, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F28A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23D0, symBinAddr: 0x66E88, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F2A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x23F8, symBinAddr: 0x66EB0, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8F3F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6846C, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8F41C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6846C, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8F43A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x68498, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8F479, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x684CC, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8F497, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x684DC, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8F4C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x684E0, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8F4E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x6850C, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8F51F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x68540, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8F54D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x68550, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8F579, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x68554, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8F58D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x68584, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8F5A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x685AC, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8F5B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x685E8, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8F5C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x68654, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8F5DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x68698, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8F5F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x686E0, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8F605, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x68720, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8F74B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68730, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8F76F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8languageSSvpZ', symObjAddr: 0x8C08, symBinAddr: 0x88AE0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8F789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7versionSSvpZ', symObjAddr: 0x8C18, symBinAddr: 0x88AF0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8F7A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8C28, symBinAddr: 0x88B00, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8F7BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8C38, symBinAddr: 0x88B10, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8F7D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8C48, symBinAddr: 0x88B20, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8F7F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8C58, symBinAddr: 0x88B30, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8F80B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x8C68, symBinAddr: 0x88B40, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8F825, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x8C78, symBinAddr: 0x88B50, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8F83F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x8C88, symBinAddr: 0x88B60, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8F859, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x8C98, symBinAddr: 0x88B70, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8F873, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x8CA8, symBinAddr: 0x88B80, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8F88D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x8CB8, symBinAddr: 0x88B90, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8F8A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x8CC8, symBinAddr: 0x88BA0, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8F8C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x8CD8, symBinAddr: 0x88BB0, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8F8DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x8CE8, symBinAddr: 0x88BC0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8F8F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x8CF8, symBinAddr: 0x88BD0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8F90F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x8D08, symBinAddr: 0x88BE0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x8F929, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x8D18, symBinAddr: 0x88BF0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x8F943, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x8D28, symBinAddr: 0x88C00, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x8F95D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x8D38, symBinAddr: 0x88C10, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x8F977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x8D48, symBinAddr: 0x88C20, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x8F991, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x8D58, symBinAddr: 0x88C30, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x8F9AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x8D68, symBinAddr: 0x88C40, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x8F9C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x8D78, symBinAddr: 0x88C50, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x8F9DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x8D88, symBinAddr: 0x88C60, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x8F9F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x8D98, symBinAddr: 0x88C70, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x8FA13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x8DA8, symBinAddr: 0x88C80, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x8FA2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x8DB8, symBinAddr: 0x88C90, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x8FA47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x8DC8, symBinAddr: 0x88CA0, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x8FA61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKeySSvpZ', symObjAddr: 0x8DD8, symBinAddr: 0x88CB0, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x8FA7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKeySSvpZ', symObjAddr: 0x8DE8, symBinAddr: 0x88CC0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x8FA95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvpZ', symObjAddr: 0x8DF8, symBinAddr: 0x88CD0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x8FAAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKeySSvpZ', symObjAddr: 0x8E08, symBinAddr: 0x88CE0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x8FAC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKeySSvpZ', symObjAddr: 0x8E18, symBinAddr: 0x88CF0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x8FAE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKeySSvpZ', symObjAddr: 0x8E28, symBinAddr: 0x88D00, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x8FAFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKeySSvpZ', symObjAddr: 0x8E38, symBinAddr: 0x88D10, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x8FB17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvpZ', symObjAddr: 0x8E48, symBinAddr: 0x88D20, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x8FB31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvpZ', symObjAddr: 0x8E58, symBinAddr: 0x88D30, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x8FB4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvpZ', symObjAddr: 0x8E68, symBinAddr: 0x88D40, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x8FB65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkeySSvpZ', symObjAddr: 0x8E78, symBinAddr: 0x88D50, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x8FB7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvpZ', symObjAddr: 0x8E88, symBinAddr: 0x88D60, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x8FB99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKeySSvpZ', symObjAddr: 0x8E98, symBinAddr: 0x88D70, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x8FBB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKeySSvpZ', symObjAddr: 0x8EA8, symBinAddr: 0x88D80, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x8FBCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKeySSvpZ', symObjAddr: 0x8EB8, symBinAddr: 0x88D90, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x8FBE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKeySSvpZ', symObjAddr: 0x8EC8, symBinAddr: 0x88DA0, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x8FC01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKeySSvpZ', symObjAddr: 0x8ED8, symBinAddr: 0x88DB0, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x8FC1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKeySSvpZ', symObjAddr: 0x8EE8, symBinAddr: 0x88DC0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x8FC35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x8EF8, symBinAddr: 0x88DD0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x8FC4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x8F08, symBinAddr: 0x88DE0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x8FC69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x8F18, symBinAddr: 0x88DF0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x8FC83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKeySSvpZ', symObjAddr: 0x8F28, symBinAddr: 0x88E00, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x8FC9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKeySSvpZ', symObjAddr: 0x8F38, symBinAddr: 0x88E10, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x8FCB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKeySSvpZ', symObjAddr: 0x8F48, symBinAddr: 0x88E20, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x8FCD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x8F58, symBinAddr: 0x88E30, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x8FCEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x8F68, symBinAddr: 0x88E40, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x8FD05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x8F78, symBinAddr: 0x88E50, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x8FD1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x8F88, symBinAddr: 0x88E60, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x8FD39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x8F98, symBinAddr: 0x88E70, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x8FD53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkeySSvpZ', symObjAddr: 0x8FA8, symBinAddr: 0x88E80, symSize: 0x0 } - - { offsetInCU: 0x63D, offset: 0x8FD61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68730, symSize: 0x40 } - - { offsetInCU: 0x65B, offset: 0x8FD7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x68770, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x8FD9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x687B0, symSize: 0x40 } - - { offsetInCU: 0x697, offset: 0x8FDBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x687F0, symSize: 0x40 } - - { offsetInCU: 0x6B5, offset: 0x8FDD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x68830, symSize: 0x40 } - - { offsetInCU: 0x6DF, offset: 0x8FE03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x68870, symSize: 0x14 } - - { offsetInCU: 0x6FA, offset: 0x8FE1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x68A04, symSize: 0x108 } - - { offsetInCU: 0x74C, offset: 0x8FE70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x68C40, symSize: 0x8 } - - { offsetInCU: 0x768, offset: 0x8FE8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x68C48, symSize: 0x18 } - - { offsetInCU: 0x780, offset: 0x8FEA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x68C48, symSize: 0x18 } - - { offsetInCU: 0x792, offset: 0x8FEB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x68884, symSize: 0x40 } - - { offsetInCU: 0x7B0, offset: 0x8FED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x688C4, symSize: 0x40 } - - { offsetInCU: 0x7CE, offset: 0x8FEF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x68904, symSize: 0x40 } - - { offsetInCU: 0x7EC, offset: 0x8FF10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x68944, symSize: 0x40 } - - { offsetInCU: 0x80A, offset: 0x8FF2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x68984, symSize: 0x40 } - - { offsetInCU: 0x828, offset: 0x8FF4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x689C4, symSize: 0x40 } - - { offsetInCU: 0x851, offset: 0x8FF75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x68B30, symSize: 0x4 } - - { offsetInCU: 0x865, offset: 0x8FF89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x68B34, symSize: 0x44 } - - { offsetInCU: 0x88F, offset: 0x8FFB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x68C60, symSize: 0x90 } - - { offsetInCU: 0x8A3, offset: 0x8FFC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x68CF0, symSize: 0xBC } - - { offsetInCU: 0x8B7, offset: 0x8FFDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x68DAC, symSize: 0x8 } - - { offsetInCU: 0x8CB, offset: 0x8FFEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x68DB4, symSize: 0x4 } - - { offsetInCU: 0x8DF, offset: 0x90003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x68DB8, symSize: 0x8 } - - { offsetInCU: 0x8F3, offset: 0x90017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x68DC0, symSize: 0x10 } - - { offsetInCU: 0x907, offset: 0x9002B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8language_WZ', symObjAddr: 0x6B0, symBinAddr: 0x68DD0, symSize: 0x20 } - - { offsetInCU: 0x921, offset: 0x90045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7version_WZ', symObjAddr: 0x6D0, symBinAddr: 0x68DF0, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x9005F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x6EC, symBinAddr: 0x68E0C, symSize: 0x1C } - - { offsetInCU: 0x955, offset: 0x90079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x708, symBinAddr: 0x68E28, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x90093, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x724, symBinAddr: 0x68E44, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x900AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPassword_WZ', symObjAddr: 0x740, symBinAddr: 0x68E60, symSize: 0x14 } - - { offsetInCU: 0x9AA, offset: 0x900CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x754, symBinAddr: 0x68E74, symSize: 0x1C } - - { offsetInCU: 0x9C4, offset: 0x900E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x770, symBinAddr: 0x68E90, symSize: 0x24 } - - { offsetInCU: 0x9DE, offset: 0x90102, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x794, symBinAddr: 0x68EB4, symSize: 0x20 } - - { offsetInCU: 0x9F8, offset: 0x9011C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7B4, symBinAddr: 0x68ED4, symSize: 0x28 } - - { offsetInCU: 0xA12, offset: 0x90136, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7DC, symBinAddr: 0x68EFC, symSize: 0x24 } - - { offsetInCU: 0xA2C, offset: 0x90150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x800, symBinAddr: 0x68F20, symSize: 0x24 } - - { offsetInCU: 0xA46, offset: 0x9016A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x824, symBinAddr: 0x68F44, symSize: 0x20 } - - { offsetInCU: 0xA60, offset: 0x90184, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x844, symBinAddr: 0x68F64, symSize: 0x28 } - - { offsetInCU: 0xA7A, offset: 0x9019E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x86C, symBinAddr: 0x68F8C, symSize: 0x1C } - - { offsetInCU: 0xA95, offset: 0x901B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKey_WZ', symObjAddr: 0x888, symBinAddr: 0x68FA8, symSize: 0x18 } - - { offsetInCU: 0xAAF, offset: 0x901D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKey_WZ', symObjAddr: 0x8A0, symBinAddr: 0x68FC0, symSize: 0x18 } - - { offsetInCU: 0xAC9, offset: 0x901ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKey_WZ', symObjAddr: 0x8B8, symBinAddr: 0x68FD8, symSize: 0x1C } - - { offsetInCU: 0xAE3, offset: 0x90207, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x68FF4, symSize: 0x1C } - - { offsetInCU: 0xAFD, offset: 0x90221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x69010, symSize: 0x18 } - - { offsetInCU: 0xB17, offset: 0x9023B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKey_WZ', symObjAddr: 0x908, symBinAddr: 0x69028, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x90255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKey_WZ', symObjAddr: 0x924, symBinAddr: 0x69044, symSize: 0x1C } - - { offsetInCU: 0xB4B, offset: 0x9026F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x940, symBinAddr: 0x69060, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x90289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x6907C, symSize: 0x18 } - - { offsetInCU: 0xB7F, offset: 0x902A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKey_WZ', symObjAddr: 0x974, symBinAddr: 0x69094, symSize: 0x18 } - - { offsetInCU: 0xB99, offset: 0x902BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x98C, symBinAddr: 0x690AC, symSize: 0x1C } - - { offsetInCU: 0xBB3, offset: 0x902D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x690C8, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x902F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkey_WZ', symObjAddr: 0x9C0, symBinAddr: 0x690E0, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x9030B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x690FC, symSize: 0x24 } - - { offsetInCU: 0xC01, offset: 0x90325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKey_WZ', symObjAddr: 0xA00, symBinAddr: 0x69120, symSize: 0x18 } - - { offsetInCU: 0xC1B, offset: 0x9033F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKey_WZ', symObjAddr: 0xA18, symBinAddr: 0x69138, symSize: 0x18 } - - { offsetInCU: 0xC35, offset: 0x90359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKey_WZ', symObjAddr: 0xA30, symBinAddr: 0x69150, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x90373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKey_WZ', symObjAddr: 0xA48, symBinAddr: 0x69168, symSize: 0x1C } - - { offsetInCU: 0xC69, offset: 0x9038D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x69184, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x903A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKey_WZ', symObjAddr: 0xA7C, symBinAddr: 0x6919C, symSize: 0x18 } - - { offsetInCU: 0xC9D, offset: 0x903C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKey_WZ', symObjAddr: 0xA94, symBinAddr: 0x691B4, symSize: 0x1C } - - { offsetInCU: 0xCB7, offset: 0x903DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x691D0, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x903F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkey_WZ', symObjAddr: 0xAC8, symBinAddr: 0x691E8, symSize: 0x18 } - - { offsetInCU: 0xCEB, offset: 0x9040F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekey_WZ', symObjAddr: 0xAE0, symBinAddr: 0x69200, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x90429, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkey_WZ', symObjAddr: 0xAF8, symBinAddr: 0x69218, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x90443, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkey_WZ', symObjAddr: 0xB10, symBinAddr: 0x69230, symSize: 0x20 } - - { offsetInCU: 0xD39, offset: 0x9045D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKey_WZ', symObjAddr: 0xB30, symBinAddr: 0x69250, symSize: 0x24 } - - { offsetInCU: 0xD53, offset: 0x90477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKey_WZ', symObjAddr: 0xB54, symBinAddr: 0x69274, symSize: 0x1C } - - { offsetInCU: 0xD6D, offset: 0x90491, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x69290, symSize: 0x1C } - - { offsetInCU: 0xD87, offset: 0x904AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x692AC, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x904C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x692C8, symSize: 0x18 } - - { offsetInCU: 0xDBB, offset: 0x904DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKey_WZ', symObjAddr: 0xBC0, symBinAddr: 0x692E0, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x904F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x692FC, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x90513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xBF4, symBinAddr: 0x69314, symSize: 0x18 } - - { offsetInCU: 0xE09, offset: 0x9052D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC0C, symBinAddr: 0x6932C, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x90547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKey_WZ', symObjAddr: 0xC24, symBinAddr: 0x69344, symSize: 0x1C } - - { offsetInCU: 0xE3D, offset: 0x90561, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x69360, symSize: 0x24 } - - { offsetInCU: 0xE57, offset: 0x9057B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKey_WZ', symObjAddr: 0xC64, symBinAddr: 0x69384, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x90595, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x693A0, symSize: 0x20 } - - { offsetInCU: 0xE8B, offset: 0x905AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCA0, symBinAddr: 0x693C0, symSize: 0x18 } - - { offsetInCU: 0xEA5, offset: 0x905C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCB8, symBinAddr: 0x693D8, symSize: 0x18 } - - { offsetInCU: 0xEBF, offset: 0x905E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCD0, symBinAddr: 0x693F0, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x905FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekey_WZ', symObjAddr: 0xCE8, symBinAddr: 0x69408, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkey_WZ', symObjAddr: 0xD00, symBinAddr: 0x69420, symSize: 0x18 } - - { offsetInCU: 0xF56, offset: 0x9067A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0xD18, symBinAddr: 0x69438, symSize: 0x13C } - - { offsetInCU: 0x1191, offset: 0x908B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x68B0C, symSize: 0x24 } - - { offsetInCU: 0x1233, offset: 0x90957, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x68B78, symSize: 0x4C } - - { offsetInCU: 0x130B, offset: 0x90A2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x68BC4, symSize: 0x34 } - - { offsetInCU: 0x1387, offset: 0x90AAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x68BF8, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x90C65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69574, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x90CA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69574, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x90CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x69598, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x90E34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1AE8, symBinAddr: 0x884A8, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x90E7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x69694, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x90EFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x696D4, symSize: 0x3EC } - - { offsetInCU: 0x302, offset: 0x910E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x55C, symBinAddr: 0x69AD4, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x9114D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C0, symBinAddr: 0x69B38, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x911B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x624, symBinAddr: 0x69B9C, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x91219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x688, symBinAddr: 0x69C00, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x9127F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6EC, symBinAddr: 0x69C64, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x9137C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x814, symBinAddr: 0x69D30, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x913ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x69D6C, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x91429, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x69D6C, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x91458, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x860, symBinAddr: 0x69D7C, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x914D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x9C4, symBinAddr: 0x69EE0, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x9153A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x9F8, symBinAddr: 0x69F14, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x915BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA4C, symBinAddr: 0x69F68, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA98, symBinAddr: 0x69FB4, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x91705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB2C, symBinAddr: 0x6A038, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x917C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA0, symBinAddr: 0x6A0AC, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91877, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC24, symBinAddr: 0x6A130, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC5C, symBinAddr: 0x6A168, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91999, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC94, symBinAddr: 0x6A1A0, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x91A2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCCC, symBinAddr: 0x6A1D8, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x91AC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD04, symBinAddr: 0x6A210, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x91B55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD3C, symBinAddr: 0x6A248, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x91BEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD74, symBinAddr: 0x6A280, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x91C7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDAC, symBinAddr: 0x6A2B8, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x91CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDE4, symBinAddr: 0x6A2F0, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x91D4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE28, symBinAddr: 0x6A334, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x91E31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xF60, symBinAddr: 0x6A46C, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x91F18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x100C, symBinAddr: 0x6A518, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x91FB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1084, symBinAddr: 0x6A590, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x91FE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1108, symBinAddr: 0x6A614, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x92086, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x695F8, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x9209E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x69648, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x9213C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5B8, symBinAddr: 0x69B30, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x92150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x61C, symBinAddr: 0x69B94, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x92164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x680, symBinAddr: 0x69BF8, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x92178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6E4, symBinAddr: 0x69C5C, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x9218C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x748, symBinAddr: 0x69CC0, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x921A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x7AC, symBinAddr: 0x69CC8, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x921B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOf', symObjAddr: 0x7CC, symBinAddr: 0x69CE8, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x92215, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1250, symBinAddr: 0x6A75C, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x92229, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1258, symBinAddr: 0x6A764, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x9223D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1268, symBinAddr: 0x6A774, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x9227E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x129C, symBinAddr: 0x6A77C, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x92380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15BC, symBinAddr: 0x6AA9C, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x924D3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x695B8, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x924EF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x695BC, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x9250B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x695C0, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x92527, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x695C4, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x92543, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x695C8, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x9255F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x695CC, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x9257B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x695D0, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92597, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x695D4, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x925B3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x695D8, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x925CF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x695DC, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x925EB, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x695E0, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x92607, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x695EC, symSize: 0xC } + - { offsetInCU: 0x34, offset: 0x58969, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6E170, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5899E, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6E1A0, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58A03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3B330, symBinAddr: 0x88C38, symSize: 0x0 } + - { offsetInCU: 0x303, offset: 0x58CB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9A9C, symBinAddr: 0xDA34, symSize: 0x15FC } + - { offsetInCU: 0x1C2A, offset: 0x5A5DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4000, symSize: 0x3C } + - { offsetInCU: 0x1C5A, offset: 0x5A60E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x403C, symSize: 0x40 } + - { offsetInCU: 0x1E04, offset: 0x5A7B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1C60, symBinAddr: 0x5C20, symSize: 0x8 } + - { offsetInCU: 0x1E18, offset: 0x5A7CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1C68, symBinAddr: 0x5C28, symSize: 0x3C } + - { offsetInCU: 0x1E2C, offset: 0x5A7E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1CA4, symBinAddr: 0x5C64, symSize: 0x16C } + - { offsetInCU: 0x2296, offset: 0x5AC4A, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x88E8, symBinAddr: 0xC898, symSize: 0xC } + - { offsetInCU: 0x22AA, offset: 0x5AC5E, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x88F4, symBinAddr: 0xC8A4, symSize: 0x4 } + - { offsetInCU: 0x22BE, offset: 0x5AC72, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x88F8, symBinAddr: 0xC8A8, symSize: 0x20 } + - { offsetInCU: 0x22D2, offset: 0x5AC86, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x8918, symBinAddr: 0xC8C8, symSize: 0x28 } + - { offsetInCU: 0x24F7, offset: 0x5AEAB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8F58, symBinAddr: 0xCEF0, symSize: 0x2C } + - { offsetInCU: 0x250B, offset: 0x5AEBF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F84, symBinAddr: 0xCF1C, symSize: 0x2C } + - { offsetInCU: 0x251F, offset: 0x5AED3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8FF0, symBinAddr: 0xCF88, symSize: 0x2C } + - { offsetInCU: 0x2533, offset: 0x5AEE7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x901C, symBinAddr: 0xCFB4, symSize: 0x2C } + - { offsetInCU: 0x2B9D, offset: 0x5B551, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB108, symBinAddr: 0xF0A0, symSize: 0x40 } + - { offsetInCU: 0x2BB1, offset: 0x5B565, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB148, symBinAddr: 0xF0E0, symSize: 0x20 } + - { offsetInCU: 0x2BC5, offset: 0x5B579, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB168, symBinAddr: 0xF100, symSize: 0x10 } + - { offsetInCU: 0x2BD9, offset: 0x5B58D, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB178, symBinAddr: 0xF110, symSize: 0x3C } + - { offsetInCU: 0x2BED, offset: 0x5B5A1, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB214, symBinAddr: 0xF1AC, symSize: 0x44 } + - { offsetInCU: 0x2C01, offset: 0x5B5B5, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB3E0, symBinAddr: 0xF378, symSize: 0x8 } + - { offsetInCU: 0x2C15, offset: 0x5B5C9, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB3E8, symBinAddr: 0xF380, symSize: 0x10 } + - { offsetInCU: 0x2C29, offset: 0x5B5DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xB3F8, symBinAddr: 0xF390, symSize: 0x5C } + - { offsetInCU: 0x2C3D, offset: 0x5B5F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xB454, symBinAddr: 0xF3EC, symSize: 0x30C } + - { offsetInCU: 0x2C51, offset: 0x5B605, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB760, symBinAddr: 0xF6F8, symSize: 0x240 } + - { offsetInCU: 0x2C65, offset: 0x5B619, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB9A0, symBinAddr: 0xF938, symSize: 0x70 } + - { offsetInCU: 0x2C79, offset: 0x5B62D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xBA10, symBinAddr: 0xF9A8, symSize: 0x34 } + - { offsetInCU: 0x2C8D, offset: 0x5B641, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xBA44, symBinAddr: 0xF9DC, symSize: 0x174 } + - { offsetInCU: 0x2CA1, offset: 0x5B655, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xBBB8, symBinAddr: 0xFB50, symSize: 0xB4 } + - { offsetInCU: 0x2CB5, offset: 0x5B669, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xBC6C, symBinAddr: 0xFC04, symSize: 0x10 } + - { offsetInCU: 0x2CC9, offset: 0x5B67D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xBC7C, symBinAddr: 0xFC14, symSize: 0x34 } + - { offsetInCU: 0x2CDD, offset: 0x5B691, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xBD30, symBinAddr: 0xFCC8, symSize: 0x5C } + - { offsetInCU: 0x2CF1, offset: 0x5B6A5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBE30, symBinAddr: 0xFDC8, symSize: 0x2C } + - { offsetInCU: 0x2D05, offset: 0x5B6B9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBE5C, symBinAddr: 0xFDF4, symSize: 0x2C } + - { offsetInCU: 0x2D19, offset: 0x5B6CD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBE88, symBinAddr: 0xFE20, symSize: 0x2C } + - { offsetInCU: 0x2D2D, offset: 0x5B6E1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBEB4, symBinAddr: 0xFE4C, symSize: 0x2C } + - { offsetInCU: 0x2D41, offset: 0x5B6F5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBEE0, symBinAddr: 0xFE78, symSize: 0x2C } + - { offsetInCU: 0x2D55, offset: 0x5B709, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBF0C, symBinAddr: 0xFEA4, symSize: 0x2C } + - { offsetInCU: 0x2D69, offset: 0x5B71D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBF38, symBinAddr: 0xFED0, symSize: 0x2C } + - { offsetInCU: 0x313E, offset: 0x5BAF2, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x7204, symBinAddr: 0xB1C4, symSize: 0x6C } + - { offsetInCU: 0x3252, offset: 0x5BC06, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8954, symBinAddr: 0xC904, symSize: 0x80 } + - { offsetInCU: 0x32E3, offset: 0x5BC97, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x89D4, symBinAddr: 0xC984, symSize: 0x90 } + - { offsetInCU: 0x3383, offset: 0x5BD37, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8A64, symBinAddr: 0xCA14, symSize: 0x14 } + - { offsetInCU: 0x33C1, offset: 0x5BD75, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8A84, symBinAddr: 0xCA34, symSize: 0x8 } + - { offsetInCU: 0x3424, offset: 0x5BDD8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A8C, symBinAddr: 0xCA3C, symSize: 0x14 } + - { offsetInCU: 0x34D5, offset: 0x5BE89, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8AA0, symBinAddr: 0xCA50, symSize: 0x14 } + - { offsetInCU: 0x357E, offset: 0x5BF32, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8AB4, symBinAddr: 0xCA64, symSize: 0x14 } + - { offsetInCU: 0x3625, offset: 0x5BFD9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8AC8, symBinAddr: 0xCA78, symSize: 0x30 } + - { offsetInCU: 0x37B1, offset: 0x5C165, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8AF8, symBinAddr: 0xCAA8, symSize: 0x2C } + - { offsetInCU: 0x3948, offset: 0x5C2FC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8B24, symBinAddr: 0xCAD4, symSize: 0x24 } + - { offsetInCU: 0x3A34, offset: 0x5C3E8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8B48, symBinAddr: 0xCAF8, symSize: 0x14 } + - { offsetInCU: 0x3A9A, offset: 0x5C44E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8B5C, symBinAddr: 0xCB0C, symSize: 0x14 } + - { offsetInCU: 0x3B00, offset: 0x5C4B4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8B70, symBinAddr: 0xCB20, symSize: 0x14 } + - { offsetInCU: 0x3B7F, offset: 0x5C533, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8B84, symBinAddr: 0xCB34, symSize: 0x14 } + - { offsetInCU: 0x3C32, offset: 0x5C5E6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B98, symBinAddr: 0xCB48, symSize: 0x14 } + - { offsetInCU: 0x3CB3, offset: 0x5C667, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8BAC, symBinAddr: 0xCB5C, symSize: 0x14 } + - { offsetInCU: 0x3D75, offset: 0x5C729, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8BC0, symBinAddr: 0xCB70, symSize: 0x14 } + - { offsetInCU: 0x3E0F, offset: 0x5C7C3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8BD4, symBinAddr: 0xCB84, symSize: 0x10 } + - { offsetInCU: 0x3E77, offset: 0x5C82B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8BE4, symBinAddr: 0xCB94, symSize: 0x18 } + - { offsetInCU: 0x3E93, offset: 0x5C847, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8BFC, symBinAddr: 0xCBAC, symSize: 0x14 } + - { offsetInCU: 0x3F0F, offset: 0x5C8C3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8C2C, symBinAddr: 0xCBDC, symSize: 0x8 } + - { offsetInCU: 0x3F2B, offset: 0x5C8DF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8C34, symBinAddr: 0xCBE4, symSize: 0x14 } + - { offsetInCU: 0x3F5C, offset: 0x5C910, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8C48, symBinAddr: 0xCBF8, symSize: 0x14 } + - { offsetInCU: 0x3F8D, offset: 0x5C941, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8C5C, symBinAddr: 0xCC0C, symSize: 0x14 } + - { offsetInCU: 0x3FBE, offset: 0x5C972, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8C70, symBinAddr: 0xCC20, symSize: 0x30 } + - { offsetInCU: 0x3FED, offset: 0x5C9A1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8CA0, symBinAddr: 0xCC50, symSize: 0x2C } + - { offsetInCU: 0x401E, offset: 0x5C9D2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8CCC, symBinAddr: 0xCC7C, symSize: 0x24 } + - { offsetInCU: 0x404F, offset: 0x5CA03, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8CF0, symBinAddr: 0xCCA0, symSize: 0x14 } + - { offsetInCU: 0x4080, offset: 0x5CA34, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8D04, symBinAddr: 0xCCB4, symSize: 0x14 } + - { offsetInCU: 0x40B1, offset: 0x5CA65, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8D18, symBinAddr: 0xCCC8, symSize: 0x14 } + - { offsetInCU: 0x40E2, offset: 0x5CA96, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8D2C, symBinAddr: 0xCCDC, symSize: 0x14 } + - { offsetInCU: 0x4113, offset: 0x5CAC7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8D40, symBinAddr: 0xCCF0, symSize: 0x14 } + - { offsetInCU: 0x4144, offset: 0x5CAF8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8D54, symBinAddr: 0xCD04, symSize: 0x14 } + - { offsetInCU: 0x4175, offset: 0x5CB29, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8D68, symBinAddr: 0xCD18, symSize: 0x14 } + - { offsetInCU: 0x41A6, offset: 0x5CB5A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8D7C, symBinAddr: 0xCD2C, symSize: 0x10 } + - { offsetInCU: 0x41D7, offset: 0x5CB8B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D8C, symBinAddr: 0xCD3C, symSize: 0x18 } + - { offsetInCU: 0x41F3, offset: 0x5CBA7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8DA4, symBinAddr: 0xCD54, symSize: 0x14 } + - { offsetInCU: 0x4243, offset: 0x5CBF7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8DC4, symBinAddr: 0xCD74, symSize: 0x40 } + - { offsetInCU: 0x42CB, offset: 0x5CC7F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E04, symBinAddr: 0xCDB4, symSize: 0x70 } + - { offsetInCU: 0x434F, offset: 0x5CD03, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EBC, symBinAddr: 0xCE6C, symSize: 0x4 } + - { offsetInCU: 0x436B, offset: 0x5CD1F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EC0, symBinAddr: 0xCE70, symSize: 0x4 } + - { offsetInCU: 0x4396, offset: 0x5CD4A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8EC4, symBinAddr: 0xCE74, symSize: 0x40 } + - { offsetInCU: 0x4424, offset: 0x5CDD8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8F1C, symBinAddr: 0xCEB4, symSize: 0x3C } + - { offsetInCU: 0x4455, offset: 0x5CE09, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9048, symBinAddr: 0xCFE0, symSize: 0x14 } + - { offsetInCU: 0x448C, offset: 0x5CE40, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x905C, symBinAddr: 0xCFF4, symSize: 0x3C } + - { offsetInCU: 0x44CC, offset: 0x5CE80, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9098, symBinAddr: 0xD030, symSize: 0x88 } + - { offsetInCU: 0x4576, offset: 0x5CF2A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x91B4, symBinAddr: 0xD14C, symSize: 0x84 } + - { offsetInCU: 0x45AA, offset: 0x5CF5E, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9764, symBinAddr: 0xD6FC, symSize: 0xB8 } + - { offsetInCU: 0x4682, offset: 0x5D036, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x981C, symBinAddr: 0xD7B4, symSize: 0x164 } + - { offsetInCU: 0x48DF, offset: 0x5D293, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xB098, symBinAddr: 0xF030, symSize: 0x38 } + - { offsetInCU: 0x48FF, offset: 0x5D2B3, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xB098, symBinAddr: 0xF030, symSize: 0x38 } + - { offsetInCU: 0x4913, offset: 0x5D2C7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xB098, symBinAddr: 0xF030, symSize: 0x38 } + - { offsetInCU: 0x4933, offset: 0x5D2E7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xB098, symBinAddr: 0xF030, symSize: 0x38 } + - { offsetInCU: 0x4947, offset: 0x5D2FB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xB098, symBinAddr: 0xF030, symSize: 0x38 } + - { offsetInCU: 0x495B, offset: 0x5D30F, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xB098, symBinAddr: 0xF030, symSize: 0x38 } + - { offsetInCU: 0x496F, offset: 0x5D323, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xB098, symBinAddr: 0xF030, symSize: 0x38 } + - { offsetInCU: 0x4A6C, offset: 0x5D420, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB0D0, symBinAddr: 0xF068, symSize: 0x38 } + - { offsetInCU: 0x4A8C, offset: 0x5D440, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB0D0, symBinAddr: 0xF068, symSize: 0x38 } + - { offsetInCU: 0x4AA0, offset: 0x5D454, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB0D0, symBinAddr: 0xF068, symSize: 0x38 } + - { offsetInCU: 0x4AC0, offset: 0x5D474, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB0D0, symBinAddr: 0xF068, symSize: 0x38 } + - { offsetInCU: 0x4AD4, offset: 0x5D488, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB0D0, symBinAddr: 0xF068, symSize: 0x38 } + - { offsetInCU: 0x4AE8, offset: 0x5D49C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB0D0, symBinAddr: 0xF068, symSize: 0x38 } + - { offsetInCU: 0x4AFC, offset: 0x5D4B0, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB0D0, symBinAddr: 0xF068, symSize: 0x38 } + - { offsetInCU: 0x4D29, offset: 0x5D6DD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x9148, symBinAddr: 0xD0E0, symSize: 0x44 } + - { offsetInCU: 0x4D52, offset: 0x5D706, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x918C, symBinAddr: 0xD124, symSize: 0x28 } + - { offsetInCU: 0x4D8D, offset: 0x5D741, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x912C, symBinAddr: 0xD0C4, symSize: 0x10 } + - { offsetInCU: 0x4DA9, offset: 0x5D75D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x913C, symBinAddr: 0xD0D4, symSize: 0xC } + - { offsetInCU: 0x4DD7, offset: 0x5D78B, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x9120, symBinAddr: 0xD0B8, symSize: 0xC } + - { offsetInCU: 0x4EBB, offset: 0x5D86F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8A78, symBinAddr: 0xCA28, symSize: 0xC } + - { offsetInCU: 0x4EED, offset: 0x5D8A1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8C10, symBinAddr: 0xCBC0, symSize: 0x10 } + - { offsetInCU: 0x4F09, offset: 0x5D8BD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8C20, symBinAddr: 0xCBD0, symSize: 0xC } + - { offsetInCU: 0x4F67, offset: 0x5D91B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x407C, symSize: 0x44 } + - { offsetInCU: 0x4F7B, offset: 0x5D92F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x40C0, symSize: 0x4 } + - { offsetInCU: 0x4F8F, offset: 0x5D943, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19arrAttForValidationAA14AttributesDataVSgvM', symObjAddr: 0x104, symBinAddr: 0x40C4, symSize: 0x44 } + - { offsetInCU: 0x4FB7, offset: 0x5D96B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x148, symBinAddr: 0x4108, symSize: 0x2DC } + - { offsetInCU: 0x50E8, offset: 0x5DA9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x424, symBinAddr: 0x43E4, symSize: 0x1474 } + - { offsetInCU: 0x53E9, offset: 0x5DD9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1898, symBinAddr: 0x5858, symSize: 0x3A4 } + - { offsetInCU: 0x5442, offset: 0x5DDF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1C3C, symBinAddr: 0x5BFC, symSize: 0x24 } + - { offsetInCU: 0x54C5, offset: 0x5DE79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1E10, symBinAddr: 0x5DD0, symSize: 0x720 } + - { offsetInCU: 0x5866, offset: 0x5E21A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x2530, symBinAddr: 0x64F0, symSize: 0x3E4 } + - { offsetInCU: 0x5B11, offset: 0x5E4C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2914, symBinAddr: 0x68D4, symSize: 0x7A8 } + - { offsetInCU: 0x612C, offset: 0x5EAE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x30CC, symBinAddr: 0x708C, symSize: 0x534 } + - { offsetInCU: 0x6521, offset: 0x5EED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3600, symBinAddr: 0x75C0, symSize: 0x3C04 } + - { offsetInCU: 0x74FA, offset: 0x5FEAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x7280, symBinAddr: 0xB230, symSize: 0x150 } + - { offsetInCU: 0x75D9, offset: 0x5FF8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x73D0, symBinAddr: 0xB380, symSize: 0x300 } + - { offsetInCU: 0x7836, offset: 0x601EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x76D0, symBinAddr: 0xB680, symSize: 0x3C8 } + - { offsetInCU: 0x7B94, offset: 0x60548, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7A98, symBinAddr: 0xBA48, symSize: 0x2B0 } + - { offsetInCU: 0x7D3B, offset: 0x606EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7F98, symBinAddr: 0xBF48, symSize: 0x31C } + - { offsetInCU: 0x7E96, offset: 0x6084A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x82B4, symBinAddr: 0xC264, symSize: 0x438 } + - { offsetInCU: 0x8100, offset: 0x60AB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x86EC, symBinAddr: 0xC69C, symSize: 0x188 } + - { offsetInCU: 0x83B5, offset: 0x60D69, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x9238, symBinAddr: 0xD1D0, symSize: 0x1F4 } + - { offsetInCU: 0x843A, offset: 0x60DEE, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x9588, symBinAddr: 0xD520, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x610F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xFF0C, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x6112B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xFF1C, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x61212, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xFF0C, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x6127F, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xFF48, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x61293, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xFF5C, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61305, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0x1003C, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x61360, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0x10054, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x613DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0x10080, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x6140F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x10088, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x61440, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0x100AC, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x6145C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0x100B8, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x61478, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2398, symBinAddr: 0x122D4, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61638, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13E8, symBinAddr: 0x11324, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x6166F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1438, symBinAddr: 0x11374, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x61692, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x27B4, symBinAddr: 0x126F0, symSize: 0x145C } + - { offsetInCU: 0x4B4, offset: 0x616F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1488, symBinAddr: 0x113C4, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x61748, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x113CC, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x6182B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D0, symBinAddr: 0x1140C, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x6189C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1530, symBinAddr: 0x1146C, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x618EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x153C, symBinAddr: 0x11478, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x61945, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15B8, symBinAddr: 0x114F4, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x61961, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15C4, symBinAddr: 0x11500, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x6199E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1620, symBinAddr: 0x1155C, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x619D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1670, symBinAddr: 0x115AC, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x619F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3C10, symBinAddr: 0x13B4C, symSize: 0x258 } + - { offsetInCU: 0x857, offset: 0x61A93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x11604, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61AC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1724, symBinAddr: 0x11660, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61AF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1748, symBinAddr: 0x11684, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61B15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1754, symBinAddr: 0x11690, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61B31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5DAC, symBinAddr: 0x15CA4, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x61C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0x116EC, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x61C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1800, symBinAddr: 0x1173C, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x61C64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5F5C, symBinAddr: 0x15E54, symSize: 0x320 } + - { offsetInCU: 0xA97, offset: 0x61CD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1848, symBinAddr: 0x11784, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61D08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1898, symBinAddr: 0x117D4, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61D39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x18BC, symBinAddr: 0x117F8, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61D55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18C8, symBinAddr: 0x11804, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61D71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x627C, symBinAddr: 0x16174, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x61E21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1924, symBinAddr: 0x11860, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x61E58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1964, symBinAddr: 0x118A0, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x61E7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x63E4, symBinAddr: 0x162DC, symSize: 0x2D8 } + - { offsetInCU: 0xCA2, offset: 0x61EDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x19A4, symBinAddr: 0x118E0, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x61F13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x19F0, symBinAddr: 0x1192C, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x61F44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A14, symBinAddr: 0x11950, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x61F60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x1195C, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x61F7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x66BC, symBinAddr: 0x165B4, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x6203C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A7C, symBinAddr: 0x119B8, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x62073, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AEC, symBinAddr: 0x11A28, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x62096, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x681C, symBinAddr: 0x16714, symSize: 0x4E8 } + - { offsetInCU: 0xEC9, offset: 0x62105, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B4C, symBinAddr: 0x11A88, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x6213A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BD4, symBinAddr: 0x11B10, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x6216B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BF8, symBinAddr: 0x11B34, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x62187, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C04, symBinAddr: 0x11B40, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x621A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6DD0, symBinAddr: 0x16CC8, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x622B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C60, symBinAddr: 0x11B9C, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x622EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CC4, symBinAddr: 0x11C00, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x62311, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7064, symBinAddr: 0x16F5C, symSize: 0x58C } + - { offsetInCU: 0x1162, offset: 0x6239E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D14, symBinAddr: 0x11C50, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6241E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1D2C, symBinAddr: 0x11C68, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x62501, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D70, symBinAddr: 0x11CAC, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x62587, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DD8, symBinAddr: 0x11D14, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x625DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DF4, symBinAddr: 0x11D30, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x6260D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E18, symBinAddr: 0x11D54, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x62629, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E24, symBinAddr: 0x11D60, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x62645, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7634, symBinAddr: 0x1752C, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x626D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x11DBC, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x6270A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EAC, symBinAddr: 0x11DE8, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x6272D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x76F4, symBinAddr: 0x175EC, symSize: 0x1B0 } + - { offsetInCU: 0x156C, offset: 0x627A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1ED0, symBinAddr: 0x11E0C, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x627DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x11E7C, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x6280E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1F64, symBinAddr: 0x11EA0, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x6282A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F70, symBinAddr: 0x11EAC, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x62846, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x78E8, symBinAddr: 0x177E0, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x62951, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FCC, symBinAddr: 0x11F08, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x62988, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2024, symBinAddr: 0x11F60, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x629AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7B2C, symBinAddr: 0x17A24, symSize: 0x370 } + - { offsetInCU: 0x17D2, offset: 0x62A0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x11FB0, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x62A43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x20D8, symBinAddr: 0x12014, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x62A74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x20FC, symBinAddr: 0x12038, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x62A90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2108, symBinAddr: 0x12044, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x62AAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E9C, symBinAddr: 0x17D94, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x62B8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2164, symBinAddr: 0x120A0, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62BC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21AC, symBinAddr: 0x120E8, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62BE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8090, symBinAddr: 0x17F88, symSize: 0x390 } + - { offsetInCU: 0x1A2F, offset: 0x62C6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2278, symBinAddr: 0x121B4, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62CB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2290, symBinAddr: 0x121CC, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22B4, symBinAddr: 0x121F0, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62D02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x22C0, symBinAddr: 0x121FC, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62D1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x84A8, symBinAddr: 0x183A0, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x62DC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x231C, symBinAddr: 0x12258, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x62DFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2360, symBinAddr: 0x1229C, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x62E1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x85B4, symBinAddr: 0x184AC, symSize: 0x1DC } + - { offsetInCU: 0x1C20, offset: 0x62E5C, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3EA8, symBinAddr: 0x13DA4, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x62E70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3ECC, symBinAddr: 0x13DC8, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x62E84, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F10, symBinAddr: 0x13E0C, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x62E98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3F30, symBinAddr: 0x13E2C, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x62EAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3F74, symBinAddr: 0x13E70, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x62EC0, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FB8, symBinAddr: 0x13EB4, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x62ED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3FC0, symBinAddr: 0x13EB8, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x62EE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4010, symBinAddr: 0x13F08, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x62EFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x409C, symBinAddr: 0x13F94, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x62F10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x40A4, symBinAddr: 0x13F9C, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x62F24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x40A8, symBinAddr: 0x13FA0, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x62F38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x40AC, symBinAddr: 0x13FA4, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x62F4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x40BC, symBinAddr: 0x13FB4, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x62F60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x496C, symBinAddr: 0x14864, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x62F74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x497C, symBinAddr: 0x14874, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x62F88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4980, symBinAddr: 0x14878, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x62F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x49C4, symBinAddr: 0x148BC, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x62FB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x49C8, symBinAddr: 0x148C0, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x62FC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4A0C, symBinAddr: 0x14904, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x62FD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4A10, symBinAddr: 0x14908, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x62FEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x4A54, symBinAddr: 0x1494C, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x63000, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4A98, symBinAddr: 0x14990, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x63014, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4ADC, symBinAddr: 0x149D4, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x63028, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4B20, symBinAddr: 0x14A18, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x6303C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x4B64, symBinAddr: 0x14A5C, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x63050, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4BA8, symBinAddr: 0x14AA0, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x63064, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x4BEC, symBinAddr: 0x14AE4, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x63078, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x4C30, symBinAddr: 0x14B28, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x6308C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x4C74, symBinAddr: 0x14B6C, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x630A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x4CB8, symBinAddr: 0x14BB0, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x630B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x4CFC, symBinAddr: 0x14BF4, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x630C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4D40, symBinAddr: 0x14C38, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x630DC, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4D84, symBinAddr: 0x14C7C, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x630F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4D90, symBinAddr: 0x14C88, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x63104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4E20, symBinAddr: 0x14D18, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x63118, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4EDC, symBinAddr: 0x14DD4, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x6312C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4EE4, symBinAddr: 0x14DDC, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x63140, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4EE8, symBinAddr: 0x14DE0, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x63154, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4EF0, symBinAddr: 0x14DE8, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x63168, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4F00, symBinAddr: 0x14DF8, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x6317C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4F28, symBinAddr: 0x14E20, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x63190, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4F6C, symBinAddr: 0x14E64, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x631A4, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4FE0, symBinAddr: 0x14ED8, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x631B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4FF4, symBinAddr: 0x14EEC, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x631CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x5040, symBinAddr: 0x14F38, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x631E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x5088, symBinAddr: 0x14F80, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x631F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x50D0, symBinAddr: 0x14FC8, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x63208, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x50E0, symBinAddr: 0x14FD8, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x6321C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5118, symBinAddr: 0x15010, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x63230, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x518C, symBinAddr: 0x15084, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x63244, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5248, symBinAddr: 0x15140, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x63258, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x5264, symBinAddr: 0x1515C, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x6326C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x52E0, symBinAddr: 0x151D8, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x63280, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5328, symBinAddr: 0x15220, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x63294, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x537C, symBinAddr: 0x15274, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x632A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x538C, symBinAddr: 0x15284, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x632BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x53B4, symBinAddr: 0x152AC, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x632D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x53F0, symBinAddr: 0x152E8, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x632E4, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x545C, symBinAddr: 0x15354, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x632F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5468, symBinAddr: 0x15360, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x6330C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x54AC, symBinAddr: 0x153A4, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x63320, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x54F4, symBinAddr: 0x153EC, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63334, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5534, symBinAddr: 0x1542C, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x63348, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x5544, symBinAddr: 0x1543C, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x6335C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x5594, symBinAddr: 0x1548C, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x63370, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5640, symBinAddr: 0x15538, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x63384, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5754, symBinAddr: 0x1564C, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x63398, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5780, symBinAddr: 0x15678, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x633AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x581C, symBinAddr: 0x15714, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x633C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x5864, symBinAddr: 0x1575C, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x633D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x58C0, symBinAddr: 0x157B8, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x633E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x58D0, symBinAddr: 0x157C8, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x633FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5928, symBinAddr: 0x15820, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x63410, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x59EC, symBinAddr: 0x158E4, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63424, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5B30, symBinAddr: 0x15A28, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63438, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x5B64, symBinAddr: 0x15A5C, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x6344C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x5C18, symBinAddr: 0x15B10, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x63460, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5C60, symBinAddr: 0x15B58, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x63474, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x5CC4, symBinAddr: 0x15BBC, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x63488, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5CD4, symBinAddr: 0x15BCC, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x6349C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x5CD8, symBinAddr: 0x15BD0, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x634B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5D1C, symBinAddr: 0x15C14, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x634C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5D20, symBinAddr: 0x15C18, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x634D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5D64, symBinAddr: 0x15C5C, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x634EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5D68, symBinAddr: 0x15C60, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x63500, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x6D04, symBinAddr: 0x16BFC, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63514, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x6D48, symBinAddr: 0x16C40, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6D8C, symBinAddr: 0x16C84, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x6353C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x75F0, symBinAddr: 0x174E8, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x63550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x78A4, symBinAddr: 0x1779C, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x63564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8420, symBinAddr: 0x18318, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x63578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8464, symBinAddr: 0x1835C, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x6358C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8790, symBinAddr: 0x18688, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x635A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x87D4, symBinAddr: 0x186CC, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x635B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x8818, symBinAddr: 0x18710, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x635C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x88C0, symBinAddr: 0x187B8, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x635DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8904, symBinAddr: 0x187FC, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x635F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8994, symBinAddr: 0x1888C, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63604, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A50, symBinAddr: 0x18948, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63618, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A54, symBinAddr: 0x1894C, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x6362C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8A64, symBinAddr: 0x1895C, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x63640, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8AF4, symBinAddr: 0x189EC, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x63654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8BB0, symBinAddr: 0x18AA8, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x63668, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8BB4, symBinAddr: 0x18AAC, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x6367C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8BC4, symBinAddr: 0x18ABC, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x63690, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8C54, symBinAddr: 0x18B4C, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x636A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x8D10, symBinAddr: 0x18C08, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x636B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8D18, symBinAddr: 0x18C10, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x636CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x8D1C, symBinAddr: 0x18C14, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x636E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8D28, symBinAddr: 0x18C20, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x636F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8D38, symBinAddr: 0x18C30, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8DC8, symBinAddr: 0x18CC0, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x6371C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8E84, symBinAddr: 0x18D7C, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x63730, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8E88, symBinAddr: 0x18D80, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x63744, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8EA0, symBinAddr: 0x18D98, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x63758, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8EA4, symBinAddr: 0x18D9C, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x6376C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8EB4, symBinAddr: 0x18DAC, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x63780, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8EEC, symBinAddr: 0x18DE4, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x63794, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8F60, symBinAddr: 0x18E58, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x637A8, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9024, symBinAddr: 0x18F1C, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x637BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x9048, symBinAddr: 0x18F40, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x637D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x90BC, symBinAddr: 0x18FB4, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x637E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x9104, symBinAddr: 0x18FFC, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x637F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x9158, symBinAddr: 0x19050, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x6380C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x9168, symBinAddr: 0x19060, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x91A0, symBinAddr: 0x19098, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63834, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x9204, symBinAddr: 0x190FC, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x63848, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x92B0, symBinAddr: 0x191A8, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x6385C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x92C4, symBinAddr: 0x191BC, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x63870, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x9328, symBinAddr: 0x19220, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x63884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9370, symBinAddr: 0x19268, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x63898, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x93C0, symBinAddr: 0x192B8, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x638AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x93D0, symBinAddr: 0x192C8, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x638C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x9408, symBinAddr: 0x19300, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x638D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9474, symBinAddr: 0x1936C, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x638E8, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9528, symBinAddr: 0x19420, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x638FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x954C, symBinAddr: 0x19444, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63910, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x95B8, symBinAddr: 0x194B0, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63924, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x9600, symBinAddr: 0x194F8, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63938, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9650, symBinAddr: 0x19548, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x6394C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9660, symBinAddr: 0x19558, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x63960, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9664, symBinAddr: 0x1955C, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x63974, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x96A8, symBinAddr: 0x195A0, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x63988, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x96AC, symBinAddr: 0x195A4, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x6399C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x96F0, symBinAddr: 0x195E8, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x639B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x96F4, symBinAddr: 0x195EC, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x639C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9738, symBinAddr: 0x19630, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x639D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x973C, symBinAddr: 0x19634, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x639EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9780, symBinAddr: 0x19678, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63A00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9784, symBinAddr: 0x1967C, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63A14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97C8, symBinAddr: 0x196C0, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63A28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97CC, symBinAddr: 0x196C4, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x63A3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9810, symBinAddr: 0x19708, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x63A50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9814, symBinAddr: 0x1970C, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x63A64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9858, symBinAddr: 0x19750, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x63A78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x985C, symBinAddr: 0x19754, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x63A8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x98A0, symBinAddr: 0x19798, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63AA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x98A4, symBinAddr: 0x1979C, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63AB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98E8, symBinAddr: 0x197E0, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63AC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98EC, symBinAddr: 0x197E4, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x63ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9930, symBinAddr: 0x19828, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63AF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9934, symBinAddr: 0x1982C, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63B04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9978, symBinAddr: 0x19870, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63B18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x997C, symBinAddr: 0x19874, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x63B2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x99C0, symBinAddr: 0x198B8, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x63B40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x99C4, symBinAddr: 0x198BC, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x63B54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9A08, symBinAddr: 0x19900, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x63B68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9A0C, symBinAddr: 0x19904, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x63B7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9A50, symBinAddr: 0x19948, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x63B90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9A54, symBinAddr: 0x1994C, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63BA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9A98, symBinAddr: 0x19990, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63BB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9ADC, symBinAddr: 0x199D4, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x63BCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9B20, symBinAddr: 0x19A18, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9B64, symBinAddr: 0x19A5C, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63BF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9BF4, symBinAddr: 0x19AEC, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63C08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9CB0, symBinAddr: 0x19BA8, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x63C1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9CB4, symBinAddr: 0x19BAC, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9E18, symBinAddr: 0x19D10, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x63C44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9E1C, symBinAddr: 0x19D14, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x63C58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9E2C, symBinAddr: 0x19D24, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x63C6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9EBC, symBinAddr: 0x19DB4, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x63C80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9F78, symBinAddr: 0x19E70, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x63C94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9F7C, symBinAddr: 0x19E74, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63CA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F8C, symBinAddr: 0x19E84, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63CBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x19E88, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63CD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9FD4, symBinAddr: 0x19ECC, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63CE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9FD8, symBinAddr: 0x19ED0, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63CF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA01C, symBinAddr: 0x19F14, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63D0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA020, symBinAddr: 0x19F18, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63D20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA064, symBinAddr: 0x19F5C, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63D34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA068, symBinAddr: 0x19F60, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63D48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA0AC, symBinAddr: 0x19FA4, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63D5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA0B0, symBinAddr: 0x19FA8, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63D70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0F4, symBinAddr: 0x19FEC, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63D84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0F8, symBinAddr: 0x19FF0, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63D98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA13C, symBinAddr: 0x1A034, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x63DAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA140, symBinAddr: 0x1A038, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x63DC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA184, symBinAddr: 0x1A07C, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x63DD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA188, symBinAddr: 0x1A080, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x63DE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA1CC, symBinAddr: 0x1A0C4, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x63DFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x1A0C8, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x63E56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0x100C4, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x63E72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0x100EC, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x63EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14F4, symBinAddr: 0x11430, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x63F9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15D0, symBinAddr: 0x1150C, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x63FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15F8, symBinAddr: 0x11534, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x63FDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x1169C, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x63FF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0x116C4, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x64019, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18D4, symBinAddr: 0x11810, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x64035, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18FC, symBinAddr: 0x11838, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x64057, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x11968, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x64073, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x11990, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x64095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C10, symBinAddr: 0x11B4C, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x640B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x11B74, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x64104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D98, symBinAddr: 0x11CD4, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x641A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0x11D6C, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x641C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E58, symBinAddr: 0x11D94, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x641E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F7C, symBinAddr: 0x11EB8, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x64200, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1FA4, symBinAddr: 0x11EE0, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x64222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2114, symBinAddr: 0x12050, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x6423E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x213C, symBinAddr: 0x12078, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x64260, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x22CC, symBinAddr: 0x12208, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x6427C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x22F4, symBinAddr: 0x12230, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x64365, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xFF6C, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x643E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0x10114, symSize: 0x41C } + - { offsetInCU: 0x31DB, offset: 0x64417, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5F4, symBinAddr: 0x10530, symSize: 0x110 } + - { offsetInCU: 0x320C, offset: 0x64448, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x704, symBinAddr: 0x10640, symSize: 0x18C } + - { offsetInCU: 0x323D, offset: 0x64479, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x890, symBinAddr: 0x107CC, symSize: 0x164 } + - { offsetInCU: 0x326E, offset: 0x644AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9F4, symBinAddr: 0x10930, symSize: 0x1B4 } + - { offsetInCU: 0x329F, offset: 0x644DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xBA8, symBinAddr: 0x10AE4, symSize: 0x204 } + - { offsetInCU: 0x32D0, offset: 0x6450C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDAC, symBinAddr: 0x10CE8, symSize: 0x128 } + - { offsetInCU: 0x3301, offset: 0x6453D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xED4, symBinAddr: 0x10E10, symSize: 0x1DC } + - { offsetInCU: 0x3332, offset: 0x6456E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10B0, symBinAddr: 0x10FEC, symSize: 0x1FC } + - { offsetInCU: 0x3363, offset: 0x6459F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12AC, symBinAddr: 0x111E8, symSize: 0x13C } + - { offsetInCU: 0x27, offset: 0x647DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A1A0, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64BA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x1A4B4, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64BB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x1A4E4, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x64BC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x1A524, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x64BDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x1A5C8, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64BF1, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1A6CC, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64C05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x1A6F8, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x64C19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x1A794, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x64C2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1A7DC, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x64C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1A83C, symSize: 0x10 } + - { offsetInCU: 0x614, offset: 0x64DC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A1A0, symSize: 0x38 } + - { offsetInCU: 0x62C, offset: 0x64DE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A1A0, symSize: 0x38 } + - { offsetInCU: 0x653, offset: 0x64E07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x1A1D8, symSize: 0x3C } + - { offsetInCU: 0x66D, offset: 0x64E21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x1A214, symSize: 0x54 } + - { offsetInCU: 0x6A2, offset: 0x64E56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x1A268, symSize: 0x10 } + - { offsetInCU: 0x6B6, offset: 0x64E6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x1A278, symSize: 0x4 } + - { offsetInCU: 0x6D7, offset: 0x64E8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0xDC, symBinAddr: 0x1A27C, symSize: 0x14 } + - { offsetInCU: 0x6EB, offset: 0x64E9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0xF0, symBinAddr: 0x1A290, symSize: 0x14 } + - { offsetInCU: 0x71B, offset: 0x64ECF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x104, symBinAddr: 0x1A2A4, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x64EF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x1A2B4, symSize: 0x4 } + - { offsetInCU: 0x760, offset: 0x64F14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x1A2B8, symSize: 0x2C } + - { offsetInCU: 0x774, offset: 0x64F28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x1A2E4, symSize: 0x34 } + - { offsetInCU: 0x7A9, offset: 0x64F5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1A318, symSize: 0x10 } + - { offsetInCU: 0x7CD, offset: 0x64F81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1A328, symSize: 0x4 } + - { offsetInCU: 0x7EE, offset: 0x64FA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1A32C, symSize: 0x8 } + - { offsetInCU: 0x802, offset: 0x64FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x1A334, symSize: 0x8 } + - { offsetInCU: 0x832, offset: 0x64FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1A33C, symSize: 0x10 } + - { offsetInCU: 0x856, offset: 0x6500A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1A34C, symSize: 0x4 } + - { offsetInCU: 0x877, offset: 0x6502B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x1A350, symSize: 0x8 } + - { offsetInCU: 0x88B, offset: 0x6503F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1A358, symSize: 0x8 } + - { offsetInCU: 0x8BB, offset: 0x6506F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x1A360, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x65093, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x1A370, symSize: 0x4 } + - { offsetInCU: 0x900, offset: 0x650B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x1A374, symSize: 0x2C } + - { offsetInCU: 0x914, offset: 0x650C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x1A3A0, symSize: 0x34 } + - { offsetInCU: 0x949, offset: 0x650FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x1A3D4, symSize: 0x10 } + - { offsetInCU: 0x96D, offset: 0x65121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x1A3E4, symSize: 0x4 } + - { offsetInCU: 0x98E, offset: 0x65142, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x1A3E8, symSize: 0x2C } + - { offsetInCU: 0x9A2, offset: 0x65156, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x1A414, symSize: 0x34 } + - { offsetInCU: 0x9D7, offset: 0x6518B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1A448, symSize: 0x10 } + - { offsetInCU: 0x9FB, offset: 0x651AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1A458, symSize: 0x4 } + - { offsetInCU: 0xA1C, offset: 0x651D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1A45C, symSize: 0xC } + - { offsetInCU: 0xA30, offset: 0x651E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1A468, symSize: 0xC } + - { offsetInCU: 0xA64, offset: 0x65218, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x1A474, symSize: 0x10 } + - { offsetInCU: 0xA88, offset: 0x6523C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x1A484, symSize: 0x4 } + - { offsetInCU: 0xAA9, offset: 0x6525D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1A488, symSize: 0xC } + - { offsetInCU: 0xABD, offset: 0x65271, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x1A494, symSize: 0xC } + - { offsetInCU: 0xAF1, offset: 0x652A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x1A4A0, symSize: 0x10 } + - { offsetInCU: 0xB15, offset: 0x652C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x1A4B0, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x6538C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x5B8, symBinAddr: 0x1AE04, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x653BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5E4, symBinAddr: 0x1AE30, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x653D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xC94, symBinAddr: 0x1B4D0, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x65452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x7CC, symBinAddr: 0x1B018, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x65483, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7F8, symBinAddr: 0x1B044, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x6549F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xD38, symBinAddr: 0x1B534, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x654DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x820, symBinAddr: 0x1B06C, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x6550F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x934, symBinAddr: 0x1B170, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x65523, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0x9C4, symBinAddr: 0x1B200, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xA80, symBinAddr: 0x1B2BC, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x6554B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xA84, symBinAddr: 0x1B2C0, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x6555F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xA94, symBinAddr: 0x1B2D0, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x65573, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xB24, symBinAddr: 0x1B360, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x65587, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xBE0, symBinAddr: 0x1B41C, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x6559B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xBE8, symBinAddr: 0x1B424, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x655AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xBEC, symBinAddr: 0x1B428, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x655C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xBF4, symBinAddr: 0x1B430, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x655D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xC04, symBinAddr: 0x1B440, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x655EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xC08, symBinAddr: 0x1B444, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x655FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xC4C, symBinAddr: 0x1B488, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x65613, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xC50, symBinAddr: 0x1B48C, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x6571D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1A84C, symSize: 0x2CC } + - { offsetInCU: 0x433, offset: 0x65740, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2CC, symBinAddr: 0x1AB18, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x6586A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x1B6D4, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x658AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x1B6F4, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x65902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x1B780, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65929, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x1B784, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x65950, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1B788, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x65977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1B7FC, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x659B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x1B800, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65A1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x1B880, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x65A74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x1B8E4, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65AC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x1B974, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x65B23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x1B9F4, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x65B55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1BA58, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x65B71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x1BA5C, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x65C59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1C1B0, symSize: 0x384 } + - { offsetInCU: 0x7D5, offset: 0x65F6C, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1060, symBinAddr: 0x1C600, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x65F80, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1070, symBinAddr: 0x1C610, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x65F94, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1104, symBinAddr: 0x1C620, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x65FA8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x114C, symBinAddr: 0x1C668, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x65FBC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1160, symBinAddr: 0x1C67C, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x65FD0, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x11A4, symBinAddr: 0x1C6C0, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x65FE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11E4, symBinAddr: 0x1C700, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x65FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x13A8, symBinAddr: 0x1C8C4, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x6600C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13D8, symBinAddr: 0x1C8F4, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x66020, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1594, symBinAddr: 0x1CAB0, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x6622A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1B5A0, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x66253, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1B6B4, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x66383, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x1BA60, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x66460, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1C13C, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x664F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF94, symBinAddr: 0x1C534, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x66567, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFFC, symBinAddr: 0x1C59C, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x66613, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AF0, symBinAddr: 0x87368, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x6662D, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2AF8, symBinAddr: 0x87370, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x6663B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1CAF0, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x66677, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1CB24, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x666AD, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1CB64, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x6671D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1CC44, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x6673D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1CC44, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x667B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1CDAC, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x667D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1CDAC, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x667FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x1CE08, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x66875, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1CE74, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x66895, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1CE74, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x66BB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1C70, symBinAddr: 0x1E750, symSize: 0x1A0 } + - { offsetInCU: 0x6B4, offset: 0x66C78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x1CEF8, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66CAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x1CF80, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66CEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x1D078, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66D02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x1D0D8, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66D16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x1D128, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66D4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x1D1B0, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66D8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x1D3E4, symSize: 0x5C } + - { offsetInCU: 0x9D1, offset: 0x66F95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x16E4, symBinAddr: 0x1E1C4, symSize: 0x140 } + - { offsetInCU: 0xACD, offset: 0x67091, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1824, symBinAddr: 0x1E304, symSize: 0x18 } + - { offsetInCU: 0xAE1, offset: 0x670A5, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1978, symBinAddr: 0x1E458, symSize: 0x2C } + - { offsetInCU: 0xAF9, offset: 0x670BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1C0C, symBinAddr: 0x1E6EC, symSize: 0x44 } + - { offsetInCU: 0xB0D, offset: 0x670D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1C50, symBinAddr: 0x1E730, symSize: 0x20 } + - { offsetInCU: 0xB21, offset: 0x670E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1E10, symBinAddr: 0x1E8F0, symSize: 0x20 } + - { offsetInCU: 0xB35, offset: 0x670F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E30, symBinAddr: 0x1E910, symSize: 0x4 } + - { offsetInCU: 0xB49, offset: 0x6710D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E34, symBinAddr: 0x1E914, symSize: 0x44 } + - { offsetInCU: 0xB5D, offset: 0x67121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E78, symBinAddr: 0x1E958, symSize: 0x4 } + - { offsetInCU: 0xB71, offset: 0x67135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1E7C, symBinAddr: 0x1E95C, symSize: 0x44 } + - { offsetInCU: 0xB85, offset: 0x67149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1FA0, symBinAddr: 0x1EA80, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x6715D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1FB8, symBinAddr: 0x1EA98, symSize: 0x14 } + - { offsetInCU: 0xBAD, offset: 0x67171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1FCC, symBinAddr: 0x1EAAC, symSize: 0x18 } + - { offsetInCU: 0xBC1, offset: 0x67185, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x2044, symBinAddr: 0x1EB24, symSize: 0x6C } + - { offsetInCU: 0xBD5, offset: 0x67199, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x20B0, symBinAddr: 0x1EB90, symSize: 0x14 } + - { offsetInCU: 0xBE9, offset: 0x671AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x20C4, symBinAddr: 0x1EBA4, symSize: 0x50 } + - { offsetInCU: 0xBFD, offset: 0x671C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x2114, symBinAddr: 0x1EBF4, symSize: 0x48 } + - { offsetInCU: 0xC11, offset: 0x671D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x215C, symBinAddr: 0x1EC3C, symSize: 0x48 } + - { offsetInCU: 0xC25, offset: 0x671E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x21A4, symBinAddr: 0x1EC84, symSize: 0x8 } + - { offsetInCU: 0xC39, offset: 0x671FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x21AC, symBinAddr: 0x1EC8C, symSize: 0x4 } + - { offsetInCU: 0xC4D, offset: 0x67211, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x21B0, symBinAddr: 0x1EC90, symSize: 0x8 } + - { offsetInCU: 0xC61, offset: 0x67225, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x21B8, symBinAddr: 0x1EC98, symSize: 0x10 } + - { offsetInCU: 0xC75, offset: 0x67239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x22A0, symBinAddr: 0x1ED70, symSize: 0x90 } + - { offsetInCU: 0xC89, offset: 0x6724D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2330, symBinAddr: 0x1EE00, symSize: 0xBC } + - { offsetInCU: 0xC9D, offset: 0x67261, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x23EC, symBinAddr: 0x1EEBC, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x67275, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x23F0, symBinAddr: 0x1EEC0, symSize: 0x10 } + - { offsetInCU: 0xCC5, offset: 0x67289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x2400, symBinAddr: 0x1EED0, symSize: 0x90 } + - { offsetInCU: 0xCD9, offset: 0x6729D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2490, symBinAddr: 0x1EF60, symSize: 0xBC } + - { offsetInCU: 0xCED, offset: 0x672B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x254C, symBinAddr: 0x1F01C, symSize: 0x8 } + - { offsetInCU: 0xD01, offset: 0x672C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x2554, symBinAddr: 0x1F024, symSize: 0x4 } + - { offsetInCU: 0xD15, offset: 0x672D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2558, symBinAddr: 0x1F028, symSize: 0x8 } + - { offsetInCU: 0xD29, offset: 0x672ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2560, symBinAddr: 0x1F030, symSize: 0x10 } + - { offsetInCU: 0xD48, offset: 0x6730C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2598, symBinAddr: 0x1F068, symSize: 0x24 } + - { offsetInCU: 0xD71, offset: 0x67335, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x26A4, symBinAddr: 0x1F174, symSize: 0x8 } + - { offsetInCU: 0xD85, offset: 0x67349, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x26AC, symBinAddr: 0x1F17C, symSize: 0x10 } + - { offsetInCU: 0xD99, offset: 0x6735D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x26BC, symBinAddr: 0x1F18C, symSize: 0x8 } + - { offsetInCU: 0xDAD, offset: 0x67371, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2748, symBinAddr: 0x1F194, symSize: 0x3C } + - { offsetInCU: 0xE2F, offset: 0x673F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1CAE0, symSize: 0x4 } + - { offsetInCU: 0xE4B, offset: 0x6740F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1CAE4, symSize: 0x4 } + - { offsetInCU: 0xE67, offset: 0x6742B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1CAE8, symSize: 0x4 } + - { offsetInCU: 0xE83, offset: 0x67447, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1CAEC, symSize: 0x4 } + - { offsetInCU: 0x10F5, offset: 0x676B9, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1CB98, symSize: 0x40 } + - { offsetInCU: 0x1123, offset: 0x676E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1CBD8, symSize: 0x60 } + - { offsetInCU: 0x115B, offset: 0x6771F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x1CCA4, symSize: 0x84 } + - { offsetInCU: 0x1182, offset: 0x67746, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x1CD28, symSize: 0x14 } + - { offsetInCU: 0x11C9, offset: 0x6778D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x1CD3C, symSize: 0x28 } + - { offsetInCU: 0x12D0, offset: 0x67894, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x1D02C, symSize: 0x4C } + - { offsetInCU: 0x12EF, offset: 0x678B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x1D088, symSize: 0x50 } + - { offsetInCU: 0x1318, offset: 0x678DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x1D0E8, symSize: 0x3C } + - { offsetInCU: 0x133D, offset: 0x67901, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x1D124, symSize: 0x4 } + - { offsetInCU: 0x1392, offset: 0x67956, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x1D25C, symSize: 0x4C } + - { offsetInCU: 0x13B1, offset: 0x67975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x1D2A8, symSize: 0x50 } + - { offsetInCU: 0x13DA, offset: 0x6799E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x1D2F8, symSize: 0x3C } + - { offsetInCU: 0x13FF, offset: 0x679C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x1D334, symSize: 0x8 } + - { offsetInCU: 0x1420, offset: 0x679E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x1D33C, symSize: 0x30 } + - { offsetInCU: 0x143D, offset: 0x67A01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x1D36C, symSize: 0x3C } + - { offsetInCU: 0x1462, offset: 0x67A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x1D3A8, symSize: 0x3C } + - { offsetInCU: 0x14AC, offset: 0x67A70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x960, symBinAddr: 0x1D440, symSize: 0x30 } + - { offsetInCU: 0x14C9, offset: 0x67A8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x990, symBinAddr: 0x1D470, symSize: 0x44 } + - { offsetInCU: 0x14F2, offset: 0x67AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x9D4, symBinAddr: 0x1D4B4, symSize: 0x3C } + - { offsetInCU: 0x151E, offset: 0x67AE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x1D4F0, symSize: 0xC8 } + - { offsetInCU: 0x1558, offset: 0x67B1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x1D5B8, symSize: 0x4 } + - { offsetInCU: 0x15FC, offset: 0x67BC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xADC, symBinAddr: 0x1D5BC, symSize: 0x128 } + - { offsetInCU: 0x172D, offset: 0x67CF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xC04, symBinAddr: 0x1D6E4, symSize: 0x224 } + - { offsetInCU: 0x1796, offset: 0x67D5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x183C, symBinAddr: 0x1E31C, symSize: 0x13C } + - { offsetInCU: 0x1844, offset: 0x67E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xE28, symBinAddr: 0x1D908, symSize: 0x70 } + - { offsetInCU: 0x186E, offset: 0x67E32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xE98, symBinAddr: 0x1D978, symSize: 0x30 } + - { offsetInCU: 0x1890, offset: 0x67E54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xEC8, symBinAddr: 0x1D9A8, symSize: 0x188 } + - { offsetInCU: 0x1935, offset: 0x67EF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0x1050, symBinAddr: 0x1DB30, symSize: 0x14 } + - { offsetInCU: 0x1982, offset: 0x67F46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0x10D4, symBinAddr: 0x1DBB4, symSize: 0x3C } + - { offsetInCU: 0x1A08, offset: 0x67FCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0x1064, symBinAddr: 0x1DB44, symSize: 0x70 } + - { offsetInCU: 0x1A9C, offset: 0x68060, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0x1110, symBinAddr: 0x1DBF0, symSize: 0x78 } + - { offsetInCU: 0x1B80, offset: 0x68144, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0x1188, symBinAddr: 0x1DC68, symSize: 0x230 } + - { offsetInCU: 0x1D6C, offset: 0x68330, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x13B8, symBinAddr: 0x1DE98, symSize: 0xC } + - { offsetInCU: 0x1DC3, offset: 0x68387, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x1DEA4, symSize: 0x4 } + - { offsetInCU: 0x1DDF, offset: 0x683A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x1DEA4, symSize: 0x4 } + - { offsetInCU: 0x1DF8, offset: 0x683BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x1DEA4, symSize: 0x4 } + - { offsetInCU: 0x1E11, offset: 0x683D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13C8, symBinAddr: 0x1DEA8, symSize: 0x4 } + - { offsetInCU: 0x1E29, offset: 0x683ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13CC, symBinAddr: 0x1DEAC, symSize: 0xB8 } + - { offsetInCU: 0x1EC9, offset: 0x6848D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14C4, symBinAddr: 0x1DFA4, symSize: 0x4 } + - { offsetInCU: 0x1EE1, offset: 0x684A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2604, symBinAddr: 0x1F0D4, symSize: 0x7C } + - { offsetInCU: 0x1FB8, offset: 0x6857C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x1484, symBinAddr: 0x1DF64, symSize: 0x40 } + - { offsetInCU: 0x1FED, offset: 0x685B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11isReachableSbvg', symObjAddr: 0x14C8, symBinAddr: 0x1DFA8, symSize: 0x2C } + - { offsetInCU: 0x202E, offset: 0x685F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14F4, symBinAddr: 0x1DFD4, symSize: 0x2C } + - { offsetInCU: 0x206F, offset: 0x68633, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1520, symBinAddr: 0x1E000, symSize: 0x2C } + - { offsetInCU: 0x20E6, offset: 0x686AA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x154C, symBinAddr: 0x1E02C, symSize: 0x198 } + - { offsetInCU: 0x25E3, offset: 0x68BA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x19A4, symBinAddr: 0x1E484, symSize: 0x24 } + - { offsetInCU: 0x2626, offset: 0x68BEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x19C8, symBinAddr: 0x1E4A8, symSize: 0x244 } + - { offsetInCU: 0x43, offset: 0x68D89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1F298, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68D9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F2D4, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68DB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F358, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68DCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1F480, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68DF5, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1F4B0, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68E09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1F4CC, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68E1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1F568, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68E31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1F5CC, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68E45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1F628, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x68E59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1F638, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x68E6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1F668, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x68E81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1F690, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x68E95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1F6EC, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x68EA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1F770, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x68EBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1F7D4, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x68ED1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1F830, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x68EE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1F890, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x68F31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x1FCE8, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x68F89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x1FCF0, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x6906C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA98, symBinAddr: 0x1FD30, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x690DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF8, symBinAddr: 0x1FD90, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x6912C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB04, symBinAddr: 0x1FD9C, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x69186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB80, symBinAddr: 0x1FE18, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x691A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB8C, symBinAddr: 0x1FE24, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x691DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBE8, symBinAddr: 0x1FE80, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x69216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC34, symBinAddr: 0x1FECC, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x69239, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFF8, symBinAddr: 0x20290, symSize: 0x154 } + - { offsetInCU: 0x580, offset: 0x692C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC74, symBinAddr: 0x1FF0C, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x69321, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC8C, symBinAddr: 0x1FF24, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x6939B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xCB8, symBinAddr: 0x1FF50, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x693D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1FF98, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x69401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xD24, symBinAddr: 0x1FFBC, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x6941D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD30, symBinAddr: 0x1FFC8, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x69439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x129C, symBinAddr: 0x204B0, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x694F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD8C, symBinAddr: 0x20024, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x69530, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDD8, symBinAddr: 0x20070, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x69553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13F0, symBinAddr: 0x20604, symSize: 0x264 } + - { offsetInCU: 0x87C, offset: 0x695C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEA4, symBinAddr: 0x2013C, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x695F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x2018C, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x69628, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF18, symBinAddr: 0x201B0, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x69644, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF24, symBinAddr: 0x201BC, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x69660, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D8C, symBinAddr: 0x20F34, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x69710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF80, symBinAddr: 0x20218, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x69747, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC0, symBinAddr: 0x20258, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x6976A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EF4, symBinAddr: 0x2109C, symSize: 0x2B8 } + - { offsetInCU: 0xA81, offset: 0x697C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x11B0, symBinAddr: 0x203E4, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x697DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x1214, symBinAddr: 0x20428, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x697EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1258, symBinAddr: 0x2046C, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x69803, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1654, symBinAddr: 0x20868, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x69817, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x16DC, symBinAddr: 0x208AC, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x6982B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x17CC, symBinAddr: 0x2099C, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x6983F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1828, symBinAddr: 0x209E8, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x69853, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1830, symBinAddr: 0x209F0, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x69867, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1834, symBinAddr: 0x209F4, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x6987B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x183C, symBinAddr: 0x209FC, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x6988F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1850, symBinAddr: 0x20A0C, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x698A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x18A0, symBinAddr: 0x20A5C, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x698B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x192C, symBinAddr: 0x20AE8, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x698CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1934, symBinAddr: 0x20AF0, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x698DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1938, symBinAddr: 0x20AF4, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x698F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x193C, symBinAddr: 0x20AF8, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69907, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x194C, symBinAddr: 0x20B08, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x6991B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1984, symBinAddr: 0x20B40, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x6992F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x19E8, symBinAddr: 0x20BA4, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x69943, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1AA8, symBinAddr: 0x20C50, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x69957, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1B0C, symBinAddr: 0x20CB4, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x6996B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B68, symBinAddr: 0x20D10, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x6997F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1BCC, symBinAddr: 0x20D74, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x69993, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BDC, symBinAddr: 0x20D84, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x699A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BE0, symBinAddr: 0x20D88, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x699BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1C24, symBinAddr: 0x20DCC, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x699CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1C28, symBinAddr: 0x20DD0, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x699E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C6C, symBinAddr: 0x20E14, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x699F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C70, symBinAddr: 0x20E18, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x69A0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CB4, symBinAddr: 0x20E5C, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69A1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CB8, symBinAddr: 0x20E60, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69A33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CFC, symBinAddr: 0x20EA4, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x69A47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x20EA8, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x69A5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1D44, symBinAddr: 0x20EEC, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x69A6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D48, symBinAddr: 0x20EF0, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x69A83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x21AC, symBinAddr: 0x21354, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x69A97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x2344, symBinAddr: 0x214EC, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69AAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2348, symBinAddr: 0x214F0, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69ABF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2358, symBinAddr: 0x21500, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69AD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x235C, symBinAddr: 0x21504, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69AE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x23A0, symBinAddr: 0x21548, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69AFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x23A4, symBinAddr: 0x2154C, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69B0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x23E8, symBinAddr: 0x21590, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69B23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23EC, symBinAddr: 0x21594, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x69B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xABC, symBinAddr: 0x1FD54, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x69C42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB98, symBinAddr: 0x1FE30, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x69C5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBC0, symBinAddr: 0x1FE58, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x69C80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD3C, symBinAddr: 0x1FFD4, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x69C9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD64, symBinAddr: 0x1FFFC, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF30, symBinAddr: 0x201C8, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69CDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF58, symBinAddr: 0x201F0, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69DC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1F8A0, symSize: 0x11C } + - { offsetInCU: 0x10B4, offset: 0x69DFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x724, symBinAddr: 0x1F9BC, symSize: 0x1C8 } + - { offsetInCU: 0x10E5, offset: 0x69E2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8EC, symBinAddr: 0x1FB84, symSize: 0x164 } + - { offsetInCU: 0xA6, offset: 0x69FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x49C, symBinAddr: 0x21A18, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x6A006, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x49C, symBinAddr: 0x21A18, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x6A02C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x4B4, symBinAddr: 0x21A30, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x6A10F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4F8, symBinAddr: 0x21A74, symSize: 0x28 } + - { offsetInCU: 0x4C0, offset: 0x6A400, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x560, symBinAddr: 0x21ADC, symSize: 0x4 } + - { offsetInCU: 0x4D4, offset: 0x6A414, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x564, symBinAddr: 0x21AE0, symSize: 0x44 } + - { offsetInCU: 0x4E8, offset: 0x6A428, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x5A8, symBinAddr: 0x21B24, symSize: 0x30 } + - { offsetInCU: 0x4FC, offset: 0x6A43C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x5D8, symBinAddr: 0x21B54, symSize: 0x7C } + - { offsetInCU: 0x510, offset: 0x6A450, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x654, symBinAddr: 0x21BD0, symSize: 0x184 } + - { offsetInCU: 0x524, offset: 0x6A464, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0x7D8, symBinAddr: 0x21D54, symSize: 0x394 } + - { offsetInCU: 0x53F, offset: 0x6A47F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xB6C, symBinAddr: 0x220E8, symSize: 0x30 } + - { offsetInCU: 0x568, offset: 0x6A4A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xB9C, symBinAddr: 0x22118, symSize: 0x2C } + - { offsetInCU: 0x57C, offset: 0x6A4BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xBC8, symBinAddr: 0x22144, symSize: 0x34 } + - { offsetInCU: 0x590, offset: 0x6A4D0, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xBFC, symBinAddr: 0x22178, symSize: 0x44 } + - { offsetInCU: 0x5A4, offset: 0x6A4E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xC40, symBinAddr: 0x221BC, symSize: 0x1B4 } + - { offsetInCU: 0x5B8, offset: 0x6A4F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0xDF4, symBinAddr: 0x22370, symSize: 0x48 } + - { offsetInCU: 0x5CC, offset: 0x6A50C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0xE3C, symBinAddr: 0x223B8, symSize: 0x78 } + - { offsetInCU: 0x5E0, offset: 0x6A520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0xEB4, symBinAddr: 0x22430, symSize: 0x10 } + - { offsetInCU: 0x5F4, offset: 0x6A534, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0xEC8, symBinAddr: 0x22444, symSize: 0x8 } + - { offsetInCU: 0x608, offset: 0x6A548, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x22484, symSize: 0x54 } + - { offsetInCU: 0x61C, offset: 0x6A55C, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xF5C, symBinAddr: 0x224D8, symSize: 0x14 } + - { offsetInCU: 0x630, offset: 0x6A570, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0xF70, symBinAddr: 0x224EC, symSize: 0x3C } + - { offsetInCU: 0x644, offset: 0x6A584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0xFAC, symBinAddr: 0x22528, symSize: 0x48 } + - { offsetInCU: 0x658, offset: 0x6A598, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0xFF4, symBinAddr: 0x22570, symSize: 0x40 } + - { offsetInCU: 0x66C, offset: 0x6A5AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x1034, symBinAddr: 0x225B0, symSize: 0x10 } + - { offsetInCU: 0x680, offset: 0x6A5C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x1044, symBinAddr: 0x225C0, symSize: 0x38 } + - { offsetInCU: 0x694, offset: 0x6A5D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x107C, symBinAddr: 0x225F8, symSize: 0x6C } + - { offsetInCU: 0x6A8, offset: 0x6A5E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x10E8, symBinAddr: 0x22664, symSize: 0xDC } + - { offsetInCU: 0x6BC, offset: 0x6A5FC, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x11C4, symBinAddr: 0x22740, symSize: 0x1C } + - { offsetInCU: 0x6D0, offset: 0x6A610, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x2275C, symSize: 0x74 } + - { offsetInCU: 0x6E4, offset: 0x6A624, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1254, symBinAddr: 0x227D0, symSize: 0x5C } + - { offsetInCU: 0x6F8, offset: 0x6A638, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x12B0, symBinAddr: 0x2282C, symSize: 0x64 } + - { offsetInCU: 0x70C, offset: 0x6A64C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1314, symBinAddr: 0x22890, symSize: 0x10 } + - { offsetInCU: 0x720, offset: 0x6A660, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1324, symBinAddr: 0x228A0, symSize: 0x28 } + - { offsetInCU: 0x734, offset: 0x6A674, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x134C, symBinAddr: 0x228C8, symSize: 0x3C } + - { offsetInCU: 0x748, offset: 0x6A688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x1388, symBinAddr: 0x22904, symSize: 0x6C } + - { offsetInCU: 0x75C, offset: 0x6A69C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1400, symBinAddr: 0x22970, symSize: 0x44 } + - { offsetInCU: 0x770, offset: 0x6A6B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1444, symBinAddr: 0x229B4, symSize: 0x48 } + - { offsetInCU: 0x784, offset: 0x6A6C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x148C, symBinAddr: 0x229FC, symSize: 0x40 } + - { offsetInCU: 0x798, offset: 0x6A6D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x14CC, symBinAddr: 0x22A3C, symSize: 0x10 } + - { offsetInCU: 0x7AC, offset: 0x6A6EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x14E0, symBinAddr: 0x22A4C, symSize: 0x54 } + - { offsetInCU: 0x7C0, offset: 0x6A700, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1534, symBinAddr: 0x22AA0, symSize: 0x44 } + - { offsetInCU: 0x7D4, offset: 0x6A714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1578, symBinAddr: 0x22AE4, symSize: 0x10 } + - { offsetInCU: 0x7E8, offset: 0x6A728, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x1594, symBinAddr: 0x22AF4, symSize: 0x90 } + - { offsetInCU: 0x7FC, offset: 0x6A73C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1624, symBinAddr: 0x22B84, symSize: 0xBC } + - { offsetInCU: 0x810, offset: 0x6A750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x16E0, symBinAddr: 0x22C40, symSize: 0x8 } + - { offsetInCU: 0x824, offset: 0x6A764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x16E8, symBinAddr: 0x22C48, symSize: 0x4 } + - { offsetInCU: 0x838, offset: 0x6A778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x16EC, symBinAddr: 0x22C4C, symSize: 0xC } + - { offsetInCU: 0x84C, offset: 0x6A78C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x16F8, symBinAddr: 0x22C58, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x6A803, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x520, symBinAddr: 0x21A9C, symSize: 0x40 } + - { offsetInCU: 0xA66, offset: 0x6A9A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x215F0, symSize: 0x18 } + - { offsetInCU: 0xA9F, offset: 0x6A9DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x21608, symSize: 0x230 } + - { offsetInCU: 0xB10, offset: 0x6AA50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x28C, symBinAddr: 0x21838, symSize: 0x2C } + - { offsetInCU: 0xB2A, offset: 0x6AA6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x2B8, symBinAddr: 0x21864, symSize: 0x34 } + - { offsetInCU: 0xB5F, offset: 0x6AA9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x2EC, symBinAddr: 0x21898, symSize: 0x10 } + - { offsetInCU: 0xB73, offset: 0x6AAB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x2FC, symBinAddr: 0x218A8, symSize: 0x4 } + - { offsetInCU: 0xB94, offset: 0x6AAD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x300, symBinAddr: 0x218AC, symSize: 0x8 } + - { offsetInCU: 0xBA8, offset: 0x6AAE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x308, symBinAddr: 0x218B4, symSize: 0x8 } + - { offsetInCU: 0xBD8, offset: 0x6AB18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x310, symBinAddr: 0x218BC, symSize: 0x10 } + - { offsetInCU: 0xBFC, offset: 0x6AB3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x320, symBinAddr: 0x218CC, symSize: 0x4 } + - { offsetInCU: 0xC1D, offset: 0x6AB5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x324, symBinAddr: 0x218D0, symSize: 0x14 } + - { offsetInCU: 0xC31, offset: 0x6AB71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x368, symBinAddr: 0x218E4, symSize: 0x14 } + - { offsetInCU: 0xC45, offset: 0x6AB85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x37C, symBinAddr: 0x218F8, symSize: 0x2C } + - { offsetInCU: 0xC59, offset: 0x6AB99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x3A8, symBinAddr: 0x21924, symSize: 0x2C } + - { offsetInCU: 0xC6D, offset: 0x6ABAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x3D4, symBinAddr: 0x21950, symSize: 0x8 } + - { offsetInCU: 0xC81, offset: 0x6ABC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x3DC, symBinAddr: 0x21958, symSize: 0x8 } + - { offsetInCU: 0xCB3, offset: 0x6ABF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x3E4, symBinAddr: 0x21960, symSize: 0x10 } + - { offsetInCU: 0xCC7, offset: 0x6AC07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x3F4, symBinAddr: 0x21970, symSize: 0x4 } + - { offsetInCU: 0xCE8, offset: 0x6AC28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x3F8, symBinAddr: 0x21974, symSize: 0x8 } + - { offsetInCU: 0xCFC, offset: 0x6AC3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x400, symBinAddr: 0x2197C, symSize: 0x8 } + - { offsetInCU: 0xD2E, offset: 0x6AC6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x408, symBinAddr: 0x21984, symSize: 0x10 } + - { offsetInCU: 0xD52, offset: 0x6AC92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x418, symBinAddr: 0x21994, symSize: 0x4 } + - { offsetInCU: 0xD73, offset: 0x6ACB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x41C, symBinAddr: 0x21998, symSize: 0x10 } + - { offsetInCU: 0xD97, offset: 0x6ACD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x42C, symBinAddr: 0x219A8, symSize: 0x4 } + - { offsetInCU: 0xDC6, offset: 0x6AD06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x430, symBinAddr: 0x219AC, symSize: 0x28 } + - { offsetInCU: 0xE51, offset: 0x6AD91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x458, symBinAddr: 0x219D4, symSize: 0x44 } + - { offsetInCU: 0x9D0, offset: 0x6B888, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x7778, symBinAddr: 0x2A3F0, symSize: 0x28 } + - { offsetInCU: 0x17CC, offset: 0x6C684, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x16330, symBinAddr: 0x38FA8, symSize: 0xA0 } + - { offsetInCU: 0x1884, offset: 0x6C73C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x172C4, symBinAddr: 0x39F3C, symSize: 0x44 } + - { offsetInCU: 0x18A0, offset: 0x6C758, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x17308, symBinAddr: 0x39F80, symSize: 0x150 } + - { offsetInCU: 0x19B9, offset: 0x6C871, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x17458, symBinAddr: 0x3A0D0, symSize: 0x54 } + - { offsetInCU: 0x1A37, offset: 0x6C8EF, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x17500, symBinAddr: 0x3A124, symSize: 0x4C } + - { offsetInCU: 0x1AC5, offset: 0x6C97D, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x1754C, symBinAddr: 0x3A170, symSize: 0x50 } + - { offsetInCU: 0x1B33, offset: 0x6C9EB, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x1759C, symBinAddr: 0x3A1C0, symSize: 0x64 } + - { offsetInCU: 0x22A5, offset: 0x6D15D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x18530, symBinAddr: 0x3B154, symSize: 0x84 } + - { offsetInCU: 0x2309, offset: 0x6D1C1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x185B4, symBinAddr: 0x3B1D8, symSize: 0x80 } + - { offsetInCU: 0x23D6, offset: 0x6D28E, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x18750, symBinAddr: 0x3B374, symSize: 0x40 } + - { offsetInCU: 0x26AA, offset: 0x6D562, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x19210, symBinAddr: 0x3BDB8, symSize: 0x1A0 } + - { offsetInCU: 0x27FF, offset: 0x6D6B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x193B0, symBinAddr: 0x3BF58, symSize: 0x360 } + - { offsetInCU: 0x2F21, offset: 0x6DDD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1A540, symBinAddr: 0x3D0E8, symSize: 0xBCC } + - { offsetInCU: 0x3F8D, offset: 0x6EE45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1B10C, symBinAddr: 0x3DCB4, symSize: 0x1C0 } + - { offsetInCU: 0x410E, offset: 0x6EFC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1B2CC, symBinAddr: 0x3DE74, symSize: 0x1A0 } + - { offsetInCU: 0x41F6, offset: 0x6F0AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24checkEdgeDeviceFaultTime05faultI0Sb10Foundation4DateVSg_tFTf4nd_n', symObjAddr: 0x1B484, symBinAddr: 0x3E02C, symSize: 0x410 } + - { offsetInCU: 0x45EA, offset: 0x6F4A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BF30, symBinAddr: 0x3EAD8, symSize: 0x8 } + - { offsetInCU: 0x45FE, offset: 0x6F4B6, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1BF38, symBinAddr: 0x3EAE0, symSize: 0x10 } + - { offsetInCU: 0x4612, offset: 0x6F4CA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1BF48, symBinAddr: 0x3EAF0, symSize: 0x14 } + - { offsetInCU: 0x4626, offset: 0x6F4DE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1BF5C, symBinAddr: 0x3EB04, symSize: 0x44 } + - { offsetInCU: 0x463A, offset: 0x6F4F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1BFB0, symBinAddr: 0x3EB48, symSize: 0x44 } + - { offsetInCU: 0x464E, offset: 0x6F506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1BFF4, symBinAddr: 0x3EB8C, symSize: 0x30C } + - { offsetInCU: 0x4662, offset: 0x6F51A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1C300, symBinAddr: 0x3EE98, symSize: 0x240 } + - { offsetInCU: 0x4676, offset: 0x6F52E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1C540, symBinAddr: 0x3F0D8, symSize: 0x70 } + - { offsetInCU: 0x468A, offset: 0x6F542, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1C5B0, symBinAddr: 0x3F148, symSize: 0x34 } + - { offsetInCU: 0x469E, offset: 0x6F556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1C5E4, symBinAddr: 0x3F17C, symSize: 0x174 } + - { offsetInCU: 0x46B2, offset: 0x6F56A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1C758, symBinAddr: 0x3F2F0, symSize: 0xB4 } + - { offsetInCU: 0x4705, offset: 0x6F5BD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1D1B4, symBinAddr: 0x3F534, symSize: 0xC4 } + - { offsetInCU: 0x477B, offset: 0x6F633, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1D278, symBinAddr: 0x3F5F8, symSize: 0x78 } + - { offsetInCU: 0x47A8, offset: 0x6F660, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1D2F0, symBinAddr: 0x3F670, symSize: 0x80 } + - { offsetInCU: 0x483C, offset: 0x6F6F4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1D370, symBinAddr: 0x3F6F0, symSize: 0x68 } + - { offsetInCU: 0x49A3, offset: 0x6F85B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1D3D8, symBinAddr: 0x3F758, symSize: 0x660 } + - { offsetInCU: 0x4E67, offset: 0x6FD1F, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1DA48, symBinAddr: 0x3FDC8, symSize: 0x4C } + - { offsetInCU: 0x4E7B, offset: 0x6FD33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1DB3C, symBinAddr: 0x3FE34, symSize: 0x8 } + - { offsetInCU: 0x4E8F, offset: 0x6FD47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1DB44, symBinAddr: 0x3FE3C, symSize: 0x44 } + - { offsetInCU: 0x4EA3, offset: 0x6FD5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1DB88, symBinAddr: 0x3FE80, symSize: 0x44 } + - { offsetInCU: 0x4EB7, offset: 0x6FD6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1DC34, symBinAddr: 0x3FEE8, symSize: 0x8 } + - { offsetInCU: 0x4ECB, offset: 0x6FD83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1DCC4, symBinAddr: 0x3FF70, symSize: 0x44 } + - { offsetInCU: 0x4F00, offset: 0x6FDB8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1DDCC, symBinAddr: 0x40078, symSize: 0x48 } + - { offsetInCU: 0x4F14, offset: 0x6FDCC, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1DE38, symBinAddr: 0x400E4, symSize: 0x3C } + - { offsetInCU: 0x4F28, offset: 0x6FDE0, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1DE74, symBinAddr: 0x40120, symSize: 0x34 } + - { offsetInCU: 0x4F3C, offset: 0x6FDF4, size: 0x8, addend: 0x0, symName: '_$sSSSgWOs', symObjAddr: 0x1DECC, symBinAddr: 0x40178, symSize: 0x28 } + - { offsetInCU: 0x4F50, offset: 0x6FE08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1DFBC, symBinAddr: 0x40268, symSize: 0x10 } + - { offsetInCU: 0x4F64, offset: 0x6FE1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1DFCC, symBinAddr: 0x40278, symSize: 0x34 } + - { offsetInCU: 0x4F78, offset: 0x6FE30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1E03C, symBinAddr: 0x402E8, symSize: 0x30 } + - { offsetInCU: 0x4F8C, offset: 0x6FE44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x1E0CC, symBinAddr: 0x40378, symSize: 0x8 } + - { offsetInCU: 0x4FA0, offset: 0x6FE58, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1E0D4, symBinAddr: 0x40380, symSize: 0x10 } + - { offsetInCU: 0x4FB4, offset: 0x6FE6C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1E0E4, symBinAddr: 0x40390, symSize: 0x8 } + - { offsetInCU: 0x56A1, offset: 0x70559, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xA02C, symBinAddr: 0x2CCA4, symSize: 0x400 } + - { offsetInCU: 0x5804, offset: 0x706BC, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xB2B8, symBinAddr: 0x2DF30, symSize: 0x390 } + - { offsetInCU: 0x5AC8, offset: 0x70980, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xB648, symBinAddr: 0x2E2C0, symSize: 0x3B8 } + - { offsetInCU: 0x5F28, offset: 0x70DE0, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg596$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_Sb0E9TConnect20ehI0CSiSgSayADGSgADz_XxAJSiAJTf1cn_n', symObjAddr: 0x104E0, symBinAddr: 0x33158, symSize: 0x1E4 } + - { offsetInCU: 0x601E, offset: 0x70ED6, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x106C4, symBinAddr: 0x3333C, symSize: 0x18C } + - { offsetInCU: 0x6412, offset: 0x712CA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x18BE0, symBinAddr: 0x3B804, symSize: 0x110 } + - { offsetInCU: 0x6574, offset: 0x7142C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x18F1C, symBinAddr: 0x3BAC4, symSize: 0xE4 } + - { offsetInCU: 0x66CA, offset: 0x71582, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19000, symBinAddr: 0x3BBA8, symSize: 0x114 } + - { offsetInCU: 0x6820, offset: 0x716D8, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x19114, symBinAddr: 0x3BCBC, symSize: 0xFC } + - { offsetInCU: 0x6957, offset: 0x7180F, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x19710, symBinAddr: 0x3C2B8, symSize: 0x188 } + - { offsetInCU: 0x6CA4, offset: 0x71B5C, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1B894, symBinAddr: 0x3E43C, symSize: 0x1C8 } + - { offsetInCU: 0x6DD3, offset: 0x71C8B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x1BA5C, symBinAddr: 0x3E604, symSize: 0x11C } + - { offsetInCU: 0x6F35, offset: 0x71DED, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x1BB78, symBinAddr: 0x3E720, symSize: 0xFC } + - { offsetInCU: 0x708B, offset: 0x71F43, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x1BC74, symBinAddr: 0x3E81C, symSize: 0xF0 } + - { offsetInCU: 0x71ED, offset: 0x720A5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1BE4C, symBinAddr: 0x3E9F4, symSize: 0xE4 } + - { offsetInCU: 0x7364, offset: 0x7221C, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1DD08, symBinAddr: 0x3FFB4, symSize: 0xC4 } + - { offsetInCU: 0x7911, offset: 0x727C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x22C78, symSize: 0x1A0 } + - { offsetInCU: 0x7A5F, offset: 0x72917, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x1A0, symBinAddr: 0x22E18, symSize: 0x6CC } + - { offsetInCU: 0x7CB5, offset: 0x72B6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2A4C, symBinAddr: 0x256C4, symSize: 0x96C } + - { offsetInCU: 0x80A6, offset: 0x72F5E, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x87C, symBinAddr: 0x234F4, symSize: 0x88 } + - { offsetInCU: 0x81F8, offset: 0x730B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x904, symBinAddr: 0x2357C, symSize: 0x1C74 } + - { offsetInCU: 0x92C5, offset: 0x7417D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xBA00, symBinAddr: 0x2E678, symSize: 0x4248 } + - { offsetInCU: 0xA487, offset: 0x7533F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xFC48, symBinAddr: 0x328C0, symSize: 0x578 } + - { offsetInCU: 0xA8D9, offset: 0x75791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0x101E8, symBinAddr: 0x32E60, symSize: 0x40 } + - { offsetInCU: 0xA901, offset: 0x757B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x15AA8, symBinAddr: 0x38720, symSize: 0x3DC } + - { offsetInCU: 0xAAED, offset: 0x759A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x119A0, symBinAddr: 0x34618, symSize: 0x30D8 } + - { offsetInCU: 0xC2F0, offset: 0x771A8, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x2578, symBinAddr: 0x251F0, symSize: 0x2E0 } + - { offsetInCU: 0xC6A7, offset: 0x7755F, size: 0x8, addend: 0x0, symName: '_$sSayxSicig11IoTConnect23AttV_Tg5', symObjAddr: 0x2858, symBinAddr: 0x254D0, symSize: 0x78 } + - { offsetInCU: 0xC6EF, offset: 0x775A7, size: 0x8, addend: 0x0, symName: '_$sSayxSicig11IoTConnect27AttDataV_Tg5', symObjAddr: 0x28D0, symBinAddr: 0x25548, symSize: 0x6C } + - { offsetInCU: 0xC73F, offset: 0x775F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getDiscoveryURLSSyF', symObjAddr: 0x293C, symBinAddr: 0x255B4, symSize: 0x110 } + - { offsetInCU: 0xC879, offset: 0x77731, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x33B8, symBinAddr: 0x26030, symSize: 0x3B8 } + - { offsetInCU: 0xCB05, offset: 0x779BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3770, symBinAddr: 0x263E8, symSize: 0x3924 } + - { offsetInCU: 0xE696, offset: 0x7954E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7094, symBinAddr: 0x29D0C, symSize: 0x278 } + - { offsetInCU: 0xE7A2, offset: 0x7965A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x77A0, symBinAddr: 0x2A418, symSize: 0x1848 } + - { offsetInCU: 0xF229, offset: 0x7A0E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x730C, symBinAddr: 0x29F84, symSize: 0x118 } + - { offsetInCU: 0xF2A6, offset: 0x7A15E, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x7424, symBinAddr: 0x2A09C, symSize: 0x16C } + - { offsetInCU: 0xF2C1, offset: 0x7A179, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x7590, symBinAddr: 0x2A208, symSize: 0x1E8 } + - { offsetInCU: 0xF5A6, offset: 0x7A45E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x903C, symBinAddr: 0x2BCB4, symSize: 0x3F8 } + - { offsetInCU: 0xF7C7, offset: 0x7A67F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA42C, symBinAddr: 0x2D0A4, symSize: 0xE8C } + - { offsetInCU: 0x100B7, offset: 0x7AF6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x9434, symBinAddr: 0x2C0AC, symSize: 0xBF8 } + - { offsetInCU: 0x10A74, offset: 0x7B92C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x10850, symBinAddr: 0x334C8, symSize: 0x1150 } + - { offsetInCU: 0x11C29, offset: 0x7CAE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x19898, symBinAddr: 0x3C440, symSize: 0xB10 } + - { offsetInCU: 0x126AA, offset: 0x7D562, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x14A78, symBinAddr: 0x376F0, symSize: 0x1030 } + - { offsetInCU: 0x1318E, offset: 0x7E046, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x15E84, symBinAddr: 0x38AFC, symSize: 0x208 } + - { offsetInCU: 0x13212, offset: 0x7E0CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x1608C, symBinAddr: 0x38D04, symSize: 0x294 } + - { offsetInCU: 0x13329, offset: 0x7E1E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x163D0, symBinAddr: 0x39048, symSize: 0xEF4 } + - { offsetInCU: 0x13D4E, offset: 0x7EC06, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x17600, symBinAddr: 0x3A224, symSize: 0x64 } + - { offsetInCU: 0x13D8C, offset: 0x7EC44, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x17664, symBinAddr: 0x3A288, symSize: 0x30 } + - { offsetInCU: 0x13DD3, offset: 0x7EC8B, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x17694, symBinAddr: 0x3A2B8, symSize: 0x80 } + - { offsetInCU: 0x13E6D, offset: 0x7ED25, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x17714, symBinAddr: 0x3A338, symSize: 0x6C } + - { offsetInCU: 0x13F1D, offset: 0x7EDD5, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x17780, symBinAddr: 0x3A3A4, symSize: 0x4C } + - { offsetInCU: 0x13F96, offset: 0x7EE4E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x177F8, symBinAddr: 0x3A41C, symSize: 0xE0 } + - { offsetInCU: 0x1400A, offset: 0x7EEC2, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x178D8, symBinAddr: 0x3A4FC, symSize: 0xC4 } + - { offsetInCU: 0x14033, offset: 0x7EEEB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1799C, symBinAddr: 0x3A5C0, symSize: 0x174 } + - { offsetInCU: 0x1410C, offset: 0x7EFC4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x17B10, symBinAddr: 0x3A734, symSize: 0x104 } + - { offsetInCU: 0x1423B, offset: 0x7F0F3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x17C14, symBinAddr: 0x3A838, symSize: 0x124 } + - { offsetInCU: 0x1435C, offset: 0x7F214, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x17D38, symBinAddr: 0x3A95C, symSize: 0x170 } + - { offsetInCU: 0x144DD, offset: 0x7F395, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x17EA8, symBinAddr: 0x3AACC, symSize: 0x174 } + - { offsetInCU: 0x1462B, offset: 0x7F4E3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x1801C, symBinAddr: 0x3AC40, symSize: 0xFC } + - { offsetInCU: 0x14761, offset: 0x7F619, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x18118, symBinAddr: 0x3AD3C, symSize: 0xFC } + - { offsetInCU: 0x14897, offset: 0x7F74F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect23AttV_Tg5', symObjAddr: 0x18214, symBinAddr: 0x3AE38, symSize: 0x11C } + - { offsetInCU: 0x149CD, offset: 0x7F885, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x18434, symBinAddr: 0x3B058, symSize: 0xFC } + - { offsetInCU: 0x14B03, offset: 0x7F9BB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x18634, symBinAddr: 0x3B258, symSize: 0x11C } + - { offsetInCU: 0x14BEE, offset: 0x7FAA6, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x189F4, symBinAddr: 0x3B618, symSize: 0x138 } + - { offsetInCU: 0x14CBD, offset: 0x7FB75, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x18B2C, symBinAddr: 0x3B750, symSize: 0xB4 } + - { offsetInCU: 0x14D2C, offset: 0x7FBE4, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x18D30, symBinAddr: 0x3B914, symSize: 0x18C } + - { offsetInCU: 0x14FE1, offset: 0x7FE99, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1A3A8, symBinAddr: 0x3CF50, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x8056A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x403D0, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x80582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x403D0, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x80596, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x40400, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x805AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x404EC, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x805BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x40754, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x805D2, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x40B70, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x805E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x40B78, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x805FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x40DB4, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x8060E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x40DFC, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x80622, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x40EB8, symSize: 0x10 } + - { offsetInCU: 0x60D, offset: 0x80D10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x91A4, symBinAddr: 0x4A06C, symSize: 0x220 } + - { offsetInCU: 0x6CB, offset: 0x80DCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x93C4, symBinAddr: 0x4A28C, symSize: 0x224 } + - { offsetInCU: 0x798, offset: 0x80E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD290, symBinAddr: 0x4E158, symSize: 0x7C0 } + - { offsetInCU: 0xACA, offset: 0x811CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xDA50, symBinAddr: 0x4E918, symSize: 0xA34 } + - { offsetInCU: 0xDA4, offset: 0x814A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE484, symBinAddr: 0x4F34C, symSize: 0x2AC } + - { offsetInCU: 0xEE6, offset: 0x815E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xEE28, symBinAddr: 0x4FCF0, symSize: 0x860 } + - { offsetInCU: 0x11DC, offset: 0x818DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF688, symBinAddr: 0x50550, symSize: 0xC2C } + - { offsetInCU: 0x14B6, offset: 0x81BB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x102B4, symBinAddr: 0x5117C, symSize: 0x314 } + - { offsetInCU: 0x15F8, offset: 0x81CFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x105C8, symBinAddr: 0x51490, symSize: 0x208 } + - { offsetInCU: 0x1A79, offset: 0x8217C, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2060, symBinAddr: 0x42F28, symSize: 0x2C } + - { offsetInCU: 0x1F7E, offset: 0x82681, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x9688, symBinAddr: 0x4A550, symSize: 0x20 } + - { offsetInCU: 0x1FC3, offset: 0x826C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x96A8, symBinAddr: 0x4A570, symSize: 0x8C } + - { offsetInCU: 0x207F, offset: 0x82782, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0xA1E0, symBinAddr: 0x4B0A8, symSize: 0x54 } + - { offsetInCU: 0x20B9, offset: 0x827BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0xA234, symBinAddr: 0x4B0FC, symSize: 0x50 } + - { offsetInCU: 0x210F, offset: 0x82812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA284, symBinAddr: 0x4B14C, symSize: 0x64 } + - { offsetInCU: 0x2142, offset: 0x82845, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA2E8, symBinAddr: 0x4B1B0, symSize: 0x4 } + - { offsetInCU: 0x2181, offset: 0x82884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA2EC, symBinAddr: 0x4B1B4, symSize: 0x78 } + - { offsetInCU: 0x21D7, offset: 0x828DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA364, symBinAddr: 0x4B22C, symSize: 0x88 } + - { offsetInCU: 0x2248, offset: 0x8294B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA3EC, symBinAddr: 0x4B2B4, symSize: 0xDC } + - { offsetInCU: 0x22CA, offset: 0x829CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA4C8, symBinAddr: 0x4B390, symSize: 0x4 } + - { offsetInCU: 0x22E6, offset: 0x829E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA4CC, symBinAddr: 0x4B394, symSize: 0x4 } + - { offsetInCU: 0x2320, offset: 0x82A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xA4D0, symBinAddr: 0x4B398, symSize: 0x64 } + - { offsetInCU: 0x267D, offset: 0x82D80, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB7E0, symBinAddr: 0x4C6A8, symSize: 0xE4 } + - { offsetInCU: 0x2761, offset: 0x82E64, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xB9A8, symBinAddr: 0x4C870, symSize: 0x280 } + - { offsetInCU: 0x28FD, offset: 0x83000, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xC1D8, symBinAddr: 0x4D0A0, symSize: 0x64 } + - { offsetInCU: 0x2E0D, offset: 0x83510, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xC84C, symBinAddr: 0x4D714, symSize: 0x374 } + - { offsetInCU: 0x35AF, offset: 0x83CB2, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCBC0, symBinAddr: 0x4DA88, symSize: 0x280 } + - { offsetInCU: 0x3986, offset: 0x84089, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCE40, symBinAddr: 0x4DD08, symSize: 0x148 } + - { offsetInCU: 0x3B80, offset: 0x84283, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xCF88, symBinAddr: 0x4DE50, symSize: 0x1F8 } + - { offsetInCU: 0x3D3F, offset: 0x84442, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10F80, symBinAddr: 0x51E48, symSize: 0x104 } + - { offsetInCU: 0x3E89, offset: 0x8458C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x13B48, symBinAddr: 0x54A10, symSize: 0x120 } + - { offsetInCU: 0x3FA1, offset: 0x846A4, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x1433C, symBinAddr: 0x551A4, symSize: 0x10 } + - { offsetInCU: 0x3FB5, offset: 0x846B8, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x1434C, symBinAddr: 0x551B4, symSize: 0x10 } + - { offsetInCU: 0x3FC9, offset: 0x846CC, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x143E0, symBinAddr: 0x551C4, symSize: 0x48 } + - { offsetInCU: 0x3FDD, offset: 0x846E0, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x144CC, symBinAddr: 0x5520C, symSize: 0x3C } + - { offsetInCU: 0x3FF1, offset: 0x846F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOc', symObjAddr: 0x14508, symBinAddr: 0x55248, symSize: 0x44 } + - { offsetInCU: 0x4005, offset: 0x84708, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOd', symObjAddr: 0x1454C, symBinAddr: 0x5528C, symSize: 0x48 } + - { offsetInCU: 0x4019, offset: 0x8471C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x14594, symBinAddr: 0x552D4, symSize: 0x44 } + - { offsetInCU: 0x402D, offset: 0x84730, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x145D8, symBinAddr: 0x55318, symSize: 0x8 } + - { offsetInCU: 0x4041, offset: 0x84744, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x145E0, symBinAddr: 0x55320, symSize: 0x10 } + - { offsetInCU: 0x4055, offset: 0x84758, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x145F0, symBinAddr: 0x55330, symSize: 0x8 } + - { offsetInCU: 0x4069, offset: 0x8476C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14678, symBinAddr: 0x55374, symSize: 0x30 } + - { offsetInCU: 0x40C1, offset: 0x847C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x14738, symBinAddr: 0x55434, symSize: 0x24 } + - { offsetInCU: 0x40FD, offset: 0x84800, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x147A0, symBinAddr: 0x5549C, symSize: 0x44 } + - { offsetInCU: 0x4CBE, offset: 0x853C1, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF10Foundation4DateV_Tg5', symObjAddr: 0x0, symBinAddr: 0x40EC8, symSize: 0x6C } + - { offsetInCU: 0x4CD9, offset: 0x853DC, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x6C, symBinAddr: 0x40F34, symSize: 0x134 } + - { offsetInCU: 0x4D15, offset: 0x85418, size: 0x8, addend: 0x0, symName: '_$sSa5countSivg11IoTConnect23AttV_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x41068, symSize: 0x8 } + - { offsetInCU: 0x4D2D, offset: 0x85430, size: 0x8, addend: 0x0, symName: '_$sSa5countSivg11IoTConnect23AttV_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x41068, symSize: 0x8 } + - { offsetInCU: 0x4D41, offset: 0x85444, size: 0x8, addend: 0x0, symName: '_$sSa5countSivg11IoTConnect23AttV_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x41068, symSize: 0x8 } + - { offsetInCU: 0x4D53, offset: 0x85456, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x1A8, symBinAddr: 0x41070, symSize: 0x80 } + - { offsetInCU: 0x4DBB, offset: 0x854BE, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x228, symBinAddr: 0x410F0, symSize: 0xA0 } + - { offsetInCU: 0x4F1E, offset: 0x85621, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2C8, symBinAddr: 0x41190, symSize: 0x9C } + - { offsetInCU: 0x5049, offset: 0x8574C, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x364, symBinAddr: 0x4122C, symSize: 0x74 } + - { offsetInCU: 0x50CE, offset: 0x857D1, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3D8, symBinAddr: 0x412A0, symSize: 0x4 } + - { offsetInCU: 0x510C, offset: 0x8580F, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect23AttV_Tg5', symObjAddr: 0x3DC, symBinAddr: 0x412A4, symSize: 0x78 } + - { offsetInCU: 0x5191, offset: 0x85894, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect23AttV_Tg5.resume.0', symObjAddr: 0x454, symBinAddr: 0x4131C, symSize: 0x4 } + - { offsetInCU: 0x51CF, offset: 0x858D2, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect27AttDataV_Tg5', symObjAddr: 0x458, symBinAddr: 0x41320, symSize: 0x90 } + - { offsetInCU: 0x5254, offset: 0x85957, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect27AttDataV_Tg5.resume.0', symObjAddr: 0x4E8, symBinAddr: 0x413B0, symSize: 0x4 } + - { offsetInCU: 0x52A5, offset: 0x859A8, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x4EC, symBinAddr: 0x413B4, symSize: 0xE8 } + - { offsetInCU: 0x5387, offset: 0x85A8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x5D4, symBinAddr: 0x4149C, symSize: 0x204 } + - { offsetInCU: 0x5506, offset: 0x85C09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x7D8, symBinAddr: 0x416A0, symSize: 0xB0C } + - { offsetInCU: 0x5998, offset: 0x8609B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x12E4, symBinAddr: 0x421AC, symSize: 0x3CC } + - { offsetInCU: 0x5BAF, offset: 0x862B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x16B0, symBinAddr: 0x42578, symSize: 0x9B0 } + - { offsetInCU: 0x5F26, offset: 0x86629, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x208C, symBinAddr: 0x42F54, symSize: 0x229C } + - { offsetInCU: 0x7443, offset: 0x87B46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE730, symBinAddr: 0x4F5F8, symSize: 0x6F8 } + - { offsetInCU: 0x784E, offset: 0x87F51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4328, symBinAddr: 0x451F0, symSize: 0x1660 } + - { offsetInCU: 0x8709, offset: 0x88E0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x5988, symBinAddr: 0x46850, symSize: 0x1038 } + - { offsetInCU: 0x9110, offset: 0x89813, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x69C0, symBinAddr: 0x47888, symSize: 0x3F0 } + - { offsetInCU: 0x9279, offset: 0x8997C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x76A8, symBinAddr: 0x48570, symSize: 0x208 } + - { offsetInCU: 0x94CB, offset: 0x89BCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x78B0, symBinAddr: 0x48778, symSize: 0x93C } + - { offsetInCU: 0x9CCB, offset: 0x8A3CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x81EC, symBinAddr: 0x490B4, symSize: 0x2E8 } + - { offsetInCU: 0x9E1D, offset: 0x8A520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x84D4, symBinAddr: 0x4939C, symSize: 0x65C } + - { offsetInCU: 0xA1FB, offset: 0x8A8FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x8B30, symBinAddr: 0x499F8, symSize: 0x674 } + - { offsetInCU: 0xA49D, offset: 0x8ABA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x95E8, symBinAddr: 0x4A4B0, symSize: 0x80 } + - { offsetInCU: 0xA4C0, offset: 0x8ABC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x9668, symBinAddr: 0x4A530, symSize: 0x20 } + - { offsetInCU: 0xA54B, offset: 0x8AC4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x9734, symBinAddr: 0x4A5FC, symSize: 0xA6C } + - { offsetInCU: 0xA94E, offset: 0x8B051, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0xA1A0, symBinAddr: 0x4B068, symSize: 0x40 } + - { offsetInCU: 0xA9C1, offset: 0x8B0C4, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA534, symBinAddr: 0x4B3FC, symSize: 0x4 } + - { offsetInCU: 0xA9D5, offset: 0x8B0D8, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xA538, symBinAddr: 0x4B400, symSize: 0x4 } + - { offsetInCU: 0xA9E9, offset: 0x8B0EC, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA53C, symBinAddr: 0x4B404, symSize: 0xC8 } + - { offsetInCU: 0xAA71, offset: 0x8B174, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA604, symBinAddr: 0x4B4CC, symSize: 0xCC } + - { offsetInCU: 0xAB11, offset: 0x8B214, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA7CC, symBinAddr: 0x4B694, symSize: 0x1F4 } + - { offsetInCU: 0xABB1, offset: 0x8B2B4, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA9C0, symBinAddr: 0x4B888, symSize: 0x1C4 } + - { offsetInCU: 0xAC6D, offset: 0x8B370, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xAB84, symBinAddr: 0x4BA4C, symSize: 0x340 } + - { offsetInCU: 0xAD64, offset: 0x8B467, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAEC4, symBinAddr: 0x4BD8C, symSize: 0x340 } + - { offsetInCU: 0xAE40, offset: 0x8B543, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV15uncheckedRemove2at8isUniquex3key_q_5valuets10_HashTableV6BucketV_SbtFSS_ypTg5', symObjAddr: 0xB204, symBinAddr: 0x4C0CC, symSize: 0x6C } + - { offsetInCU: 0xAEAB, offset: 0x8B5AE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB270, symBinAddr: 0x4C138, symSize: 0x1DC } + - { offsetInCU: 0xAF50, offset: 0x8B653, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB44C, symBinAddr: 0x4C314, symSize: 0x204 } + - { offsetInCU: 0xAFEE, offset: 0x8B6F1, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB650, symBinAddr: 0x4C518, symSize: 0x4C } + - { offsetInCU: 0xB09A, offset: 0x8B79D, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB69C, symBinAddr: 0x4C564, symSize: 0x90 } + - { offsetInCU: 0xB126, offset: 0x8B829, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB72C, symBinAddr: 0x4C5F4, symSize: 0x40 } + - { offsetInCU: 0xB163, offset: 0x8B866, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB76C, symBinAddr: 0x4C634, symSize: 0x18 } + - { offsetInCU: 0xB1B5, offset: 0x8B8B8, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xB784, symBinAddr: 0x4C64C, symSize: 0x3C } + - { offsetInCU: 0xB1DE, offset: 0x8B8E1, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xB7C0, symBinAddr: 0x4C688, symSize: 0x1C } + - { offsetInCU: 0xB21F, offset: 0x8B922, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBEAC, symBinAddr: 0x4CD74, symSize: 0x8C } + - { offsetInCU: 0xB233, offset: 0x8B936, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBF38, symBinAddr: 0x4CE00, symSize: 0x4C } + - { offsetInCU: 0xB263, offset: 0x8B966, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBF84, symBinAddr: 0x4CE4C, symSize: 0x164 } + - { offsetInCU: 0xB2C0, offset: 0x8B9C3, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC0E8, symBinAddr: 0x4CFB0, symSize: 0xF0 } + - { offsetInCU: 0xB2E7, offset: 0x8B9EA, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC23C, symBinAddr: 0x4D104, symSize: 0x214 } + - { offsetInCU: 0xB31C, offset: 0x8BA1F, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC450, symBinAddr: 0x4D318, symSize: 0x78 } + - { offsetInCU: 0xB330, offset: 0x8BA33, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC4C8, symBinAddr: 0x4D390, symSize: 0x1C } + - { offsetInCU: 0xB344, offset: 0x8BA47, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC4E4, symBinAddr: 0x4D3AC, symSize: 0x1C } + - { offsetInCU: 0xB37B, offset: 0x8BA7E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC500, symBinAddr: 0x4D3C8, symSize: 0x104 } + - { offsetInCU: 0xB479, offset: 0x8BB7C, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC604, symBinAddr: 0x4D4CC, symSize: 0x124 } + - { offsetInCU: 0xB54D, offset: 0x8BC50, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC728, symBinAddr: 0x4D5F0, symSize: 0x124 } + - { offsetInCU: 0xB68C, offset: 0x8BD8F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD180, symBinAddr: 0x4E048, symSize: 0x14 } + - { offsetInCU: 0xB6AE, offset: 0x8BDB1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD194, symBinAddr: 0x4E05C, symSize: 0xFC } + - { offsetInCU: 0xB788, offset: 0x8BE8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x107D0, symBinAddr: 0x51698, symSize: 0x7B0 } + - { offsetInCU: 0xBC0F, offset: 0x8C312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x11084, symBinAddr: 0x51F4C, symSize: 0x2AC4 } + - { offsetInCU: 0xC3A3, offset: 0x8CAA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13C68, symBinAddr: 0x54B30, symSize: 0x674 } + - { offsetInCU: 0x95, offset: 0x8CF7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFBC, symBinAddr: 0x56558, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8CFCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1008, symBinAddr: 0x565A4, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8CFFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x102C, symBinAddr: 0x565C8, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8D01B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1038, symBinAddr: 0x565D4, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8D037, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5FB8, symBinAddr: 0x5B4C4, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8D0CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1094, symBinAddr: 0x56630, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8D105, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E4, symBinAddr: 0x56680, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8D128, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x60EC, symBinAddr: 0x5B5F8, symSize: 0x133C } + - { offsetInCU: 0x2D0, offset: 0x8D1B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1134, symBinAddr: 0x566D0, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8D211, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x114C, symBinAddr: 0x566E8, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8D28B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1178, symBinAddr: 0x56714, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8D2C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11E0, symBinAddr: 0x5677C, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8D2F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1204, symBinAddr: 0x567A0, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8D30D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1210, symBinAddr: 0x567AC, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8D329, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7F0C, symBinAddr: 0x5CA00, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8D41B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x126C, symBinAddr: 0x56808, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8D452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12BC, symBinAddr: 0x56858, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8D475, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8108, symBinAddr: 0x5CBFC, symSize: 0xF48 } + - { offsetInCU: 0x611, offset: 0x8D4F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x14DC, symBinAddr: 0x56A78, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8D528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1508, symBinAddr: 0x56AA4, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8D544, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1578, symBinAddr: 0x56B14, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8D579, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15D8, symBinAddr: 0x56B74, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8D5C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x15FC, symBinAddr: 0x56B98, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8D5E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1608, symBinAddr: 0x56BA4, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8D601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x922C, symBinAddr: 0x5DD20, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8D660, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1664, symBinAddr: 0x56C00, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8D697, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16AC, symBinAddr: 0x56C48, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8D6BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9288, symBinAddr: 0x5DD7C, symSize: 0x230 } + - { offsetInCU: 0x838, offset: 0x8D71E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16F4, symBinAddr: 0x56C90, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8D753, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16FC, symBinAddr: 0x56C98, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8D784, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1720, symBinAddr: 0x56CBC, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8D7A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x172C, symBinAddr: 0x56CC8, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8D7BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x94B8, symBinAddr: 0x5DFAC, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8D918, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1788, symBinAddr: 0x56D24, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8D94F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17E8, symBinAddr: 0x56D84, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8D972, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x97A4, symBinAddr: 0x5E298, symSize: 0x548 } + - { offsetInCU: 0xB19, offset: 0x8D9FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1840, symBinAddr: 0x56DDC, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8DA7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1858, symBinAddr: 0x56DF4, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8DB62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x189C, symBinAddr: 0x56E38, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8DBE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0x56EA0, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8DC3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1928, symBinAddr: 0x56EC4, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8DC6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x194C, symBinAddr: 0x56EE8, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8DC8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1958, symBinAddr: 0x56EF4, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8DCA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9CEC, symBinAddr: 0x5E7E0, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8DD34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19B4, symBinAddr: 0x56F50, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8DD6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19E0, symBinAddr: 0x56F7C, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8DD8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9DA8, symBinAddr: 0x5E89C, symSize: 0x1B0 } + - { offsetInCU: 0xF18, offset: 0x8DDFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x57024, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8DE33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x5709C, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8DE64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B24, symBinAddr: 0x570C0, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8DE80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B30, symBinAddr: 0x570CC, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8DE9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9F58, symBinAddr: 0x5EA4C, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8DF97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B8C, symBinAddr: 0x57128, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8DFCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BFC, symBinAddr: 0x57198, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8DFF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA1A4, symBinAddr: 0x5EC98, symSize: 0x8D8 } + - { offsetInCU: 0x11A5, offset: 0x8E08B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1DE8, symBinAddr: 0x57384, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8E0BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1E14, symBinAddr: 0x573B0, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8E0D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1E3C, symBinAddr: 0x573D8, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8E105, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E44, symBinAddr: 0x573E0, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8E155, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1E68, symBinAddr: 0x57404, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8E171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E74, symBinAddr: 0x57410, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8E18D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAB48, symBinAddr: 0x5F63C, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8E20B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0x5746C, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8E242, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F28, symBinAddr: 0x574C4, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8E265, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xABA4, symBinAddr: 0x5F698, symSize: 0x770 } + - { offsetInCU: 0x1457, offset: 0x8E33D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D80, symBinAddr: 0x5B310, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8E396, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5DD4, symBinAddr: 0x5B364, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8E3E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5E54, symBinAddr: 0x5B3E4, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8E41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E5C, symBinAddr: 0x5B3EC, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8E49E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5EBC, symBinAddr: 0x5B44C, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8E4BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x2150, symBinAddr: 0x576EC, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8E4CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x2170, symBinAddr: 0x5770C, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8E4E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x2264, symBinAddr: 0x57800, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8E4F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x25E4, symBinAddr: 0x57B80, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8E512, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x323C, symBinAddr: 0x587D8, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8E53B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x326C, symBinAddr: 0x58808, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8E54F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x3298, symBinAddr: 0x58834, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8E563, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x32C4, symBinAddr: 0x58860, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8E577, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x32F0, symBinAddr: 0x5888C, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8E58B, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x331C, symBinAddr: 0x588B8, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8E59F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x3324, symBinAddr: 0x588C0, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8E5B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x36E4, symBinAddr: 0x58C80, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8E5C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3740, symBinAddr: 0x58CDC, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8E5DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x382C, symBinAddr: 0x58DC8, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8E5EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x383C, symBinAddr: 0x58DD8, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8E603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x386C, symBinAddr: 0x58E08, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8E617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x394C, symBinAddr: 0x58EE8, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8E62B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x3C84, symBinAddr: 0x59220, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8E63F, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x44E8, symBinAddr: 0x59A84, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8E653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x44F0, symBinAddr: 0x59A8C, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8E667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x4854, symBinAddr: 0x59DF0, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8E67B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x48B0, symBinAddr: 0x59E4C, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8E68F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x4994, symBinAddr: 0x59F30, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8E6A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x49A4, symBinAddr: 0x59F40, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8E6B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x4A48, symBinAddr: 0x59FE4, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8E6CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x4BD4, symBinAddr: 0x5A170, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8E6DF, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4F7C, symBinAddr: 0x5A518, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8E6F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4FC0, symBinAddr: 0x5A55C, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8E707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x513C, symBinAddr: 0x5A6D8, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8E71B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x5198, symBinAddr: 0x5A734, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8E72F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x522C, symBinAddr: 0x5A7C8, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8E743, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x523C, symBinAddr: 0x5A7D8, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8E757, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x52A4, symBinAddr: 0x5A840, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8E76B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x5380, symBinAddr: 0x5A91C, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8E77F, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x54EC, symBinAddr: 0x5AA88, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8E793, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5518, symBinAddr: 0x5AAB4, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8E7A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x55DC, symBinAddr: 0x5AB78, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8E7BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x5638, symBinAddr: 0x5ABD4, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8E7CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x56B4, symBinAddr: 0x5AC50, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8E7E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x56C4, symBinAddr: 0x5AC60, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8E7F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x570C, symBinAddr: 0x5ACA8, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8E80B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x57F0, symBinAddr: 0x5AD8C, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8E81F, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5988, symBinAddr: 0x5AF24, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8E833, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x59BC, symBinAddr: 0x5AF58, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8E847, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5AB8, symBinAddr: 0x5B054, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8E85B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x5B14, symBinAddr: 0x5B0B0, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8E86F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x5B90, symBinAddr: 0x5B12C, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8E883, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x5BA0, symBinAddr: 0x5B13C, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8E897, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5BC8, symBinAddr: 0x5B164, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8E8AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x5C04, symBinAddr: 0x5B1A0, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8E8BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x5C7C, symBinAddr: 0x5B20C, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8E8D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5CC0, symBinAddr: 0x5B250, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8E8E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x5D1C, symBinAddr: 0x5B2AC, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8E8FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x5D70, symBinAddr: 0x5B300, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8E90F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5EC4, symBinAddr: 0x5B454, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8E923, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5EC8, symBinAddr: 0x5B458, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8E937, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F90, symBinAddr: 0x5B49C, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8E94B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x7428, symBinAddr: 0x5C934, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8E95F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x746C, symBinAddr: 0x5C978, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8E973, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7EC8, symBinAddr: 0x5C9BC, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8E987, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x9050, symBinAddr: 0x5DB44, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8E99B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x9094, symBinAddr: 0x5DB88, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8E9AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x90D8, symBinAddr: 0x5DBCC, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8E9C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x911C, symBinAddr: 0x5DC10, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8E9D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x9160, symBinAddr: 0x5DC54, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8E9EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x91A4, symBinAddr: 0x5DC98, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8E9FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x91E8, symBinAddr: 0x5DCDC, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8EA13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xAA7C, symBinAddr: 0x5F570, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8EA27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xAAC0, symBinAddr: 0x5F5B4, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8EA3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xAB04, symBinAddr: 0x5F5F8, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8EA4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xB314, symBinAddr: 0x5FE08, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8EA63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB358, symBinAddr: 0x5FE4C, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8EA77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xB39C, symBinAddr: 0x5FE90, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8EA8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xB424, symBinAddr: 0x5FF18, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8EA9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB468, symBinAddr: 0x5FF5C, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8EAB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB4BC, symBinAddr: 0x5FFA0, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8EAC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB54C, symBinAddr: 0x60030, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8EADB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB608, symBinAddr: 0x600EC, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8EAEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB610, symBinAddr: 0x600F4, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8EB03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB614, symBinAddr: 0x600F8, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8EB17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB620, symBinAddr: 0x60104, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8EB2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB630, symBinAddr: 0x60114, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8EB3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB6C0, symBinAddr: 0x601A4, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8EB53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB77C, symBinAddr: 0x60260, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8EB67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB780, symBinAddr: 0x60264, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8EB7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB790, symBinAddr: 0x60274, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8EB8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB820, symBinAddr: 0x60304, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8EBA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB8DC, symBinAddr: 0x603C0, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8EBB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB8E0, symBinAddr: 0x603C4, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8EBCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB8F0, symBinAddr: 0x603D4, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8EBDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB980, symBinAddr: 0x60464, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8EBF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBA3C, symBinAddr: 0x60520, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8EC07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBA40, symBinAddr: 0x60524, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8EC1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xBA50, symBinAddr: 0x60534, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8EC2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xBAE0, symBinAddr: 0x605C4, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8EC43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xBB9C, symBinAddr: 0x60680, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8EC57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBBA4, symBinAddr: 0x60688, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8EC6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xBBA8, symBinAddr: 0x6068C, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8EC7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBBB0, symBinAddr: 0x60694, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8EC93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xBBC0, symBinAddr: 0x606A4, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8ECA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xBC50, symBinAddr: 0x60734, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8ECBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBD0C, symBinAddr: 0x607F0, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8ECCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBD10, symBinAddr: 0x607F4, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8ECE3, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBD20, symBinAddr: 0x60804, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8ECF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xBD44, symBinAddr: 0x60828, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8ED0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xBD64, symBinAddr: 0x60848, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8ED1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xBDA4, symBinAddr: 0x60888, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8ED33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBDB4, symBinAddr: 0x60898, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8ED47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBDB8, symBinAddr: 0x6089C, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8ED5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBDFC, symBinAddr: 0x608E0, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8ED6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBE00, symBinAddr: 0x608E4, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8ED83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBE44, symBinAddr: 0x60928, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8ED97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBE48, symBinAddr: 0x6092C, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8EDAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBE8C, symBinAddr: 0x60970, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8EDBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBE90, symBinAddr: 0x60974, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8EDD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBED4, symBinAddr: 0x609B8, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8EDE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBED8, symBinAddr: 0x609BC, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8EDFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBF1C, symBinAddr: 0x60A00, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8EE0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBF20, symBinAddr: 0x60A04, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8EE23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF64, symBinAddr: 0x60A48, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8EE37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF68, symBinAddr: 0x60A4C, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8EE4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFAC, symBinAddr: 0x60A90, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8EE5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBFB0, symBinAddr: 0x60A94, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8EE73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBFF4, symBinAddr: 0x60AD8, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8EE87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBFF8, symBinAddr: 0x60ADC, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8EE9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC03C, symBinAddr: 0x60B20, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8EEAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC040, symBinAddr: 0x60B24, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8EEC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC084, symBinAddr: 0x60B68, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8EED7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC088, symBinAddr: 0x60B6C, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8EEEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0CC, symBinAddr: 0x60BB0, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8EEFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC0D0, symBinAddr: 0x60BB4, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8EF13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC114, symBinAddr: 0x60BF8, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8EF27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC118, symBinAddr: 0x60BFC, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8EF3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC15C, symBinAddr: 0x60C40, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8EF4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC160, symBinAddr: 0x60C44, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8EF63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC1A4, symBinAddr: 0x60C88, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8EF77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC1A8, symBinAddr: 0x60C8C, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8EF8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC1EC, symBinAddr: 0x60CD0, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8EF9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC1F0, symBinAddr: 0x60CD4, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8EFB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC234, symBinAddr: 0x60D18, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8EFC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC238, symBinAddr: 0x60D1C, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8EFDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC27C, symBinAddr: 0x60D60, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8EFEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC280, symBinAddr: 0x60D64, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8F003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xC2C4, symBinAddr: 0x60DA8, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8F017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xC308, symBinAddr: 0x60DEC, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8F02B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xC398, symBinAddr: 0x60E7C, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8F03F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xC454, symBinAddr: 0x60F38, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8F053, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xC458, symBinAddr: 0x60F3C, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8F067, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC468, symBinAddr: 0x60F4C, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8F07B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC46C, symBinAddr: 0x60F50, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8F08F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC4B0, symBinAddr: 0x60F94, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8F0A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC4B4, symBinAddr: 0x60F98, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8F0B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC4F8, symBinAddr: 0x60FDC, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8F0CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC4FC, symBinAddr: 0x60FE0, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8F0F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1044, symBinAddr: 0x565E0, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8F115, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x106C, symBinAddr: 0x56608, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8F137, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x121C, symBinAddr: 0x567B8, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8F153, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1244, symBinAddr: 0x567E0, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8F16F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130C, symBinAddr: 0x568A8, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8F1EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1318, symBinAddr: 0x568B4, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8F271, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x13BC, symBinAddr: 0x56958, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8F2AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x143C, symBinAddr: 0x569D8, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8F315, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1614, symBinAddr: 0x56BB0, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8F331, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x163C, symBinAddr: 0x56BD8, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8F353, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1738, symBinAddr: 0x56CD4, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8F36F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x56CFC, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8F3C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x18C4, symBinAddr: 0x56E60, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8F464, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1964, symBinAddr: 0x56F00, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8F480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x56F28, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8F4A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B3C, symBinAddr: 0x570D8, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8F4BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B64, symBinAddr: 0x57100, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8F507, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C64, symBinAddr: 0x57200, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8F5DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1CEC, symBinAddr: 0x57288, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8F659, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D4C, symBinAddr: 0x572E8, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8F6AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D8C, symBinAddr: 0x57328, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8F70D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E80, symBinAddr: 0x5741C, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8F729, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1EA8, symBinAddr: 0x57444, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8F76A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E80, symBinAddr: 0x5B410, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8F8FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x5559C, symSize: 0x18C } + - { offsetInCU: 0x2A47, offset: 0x8F92D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18C, symBinAddr: 0x55728, symSize: 0x274 } + - { offsetInCU: 0x2A78, offset: 0x8F95E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x400, symBinAddr: 0x5599C, symSize: 0x1A0 } + - { offsetInCU: 0x2AA9, offset: 0x8F98F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x5A0, symBinAddr: 0x55B3C, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8F9B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x63C, symBinAddr: 0x55BD8, symSize: 0x278 } + - { offsetInCU: 0x2AFD, offset: 0x8F9E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B4, symBinAddr: 0x55E50, symSize: 0x128 } + - { offsetInCU: 0x2B2E, offset: 0x8FA14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9DC, symBinAddr: 0x55F78, symSize: 0x224 } + - { offsetInCU: 0x2B5F, offset: 0x8FA45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC00, symBinAddr: 0x5619C, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8FA7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCB0, symBinAddr: 0x5624C, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8FABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD60, symBinAddr: 0x562FC, symSize: 0x254 } + - { offsetInCU: 0x2DE8, offset: 0x8FCCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F78, symBinAddr: 0x57514, symSize: 0x1C8 } + - { offsetInCU: 0x2E34, offset: 0x8FD1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x2140, symBinAddr: 0x576DC, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8FDFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6107C, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8FF39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x610E8, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8FF4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x6113C, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8FF61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x61180, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x90042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6107C, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x9005C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x61084, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x9008E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x6108C, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x900A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x6109C, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x900C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x610A0, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x900D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x610A8, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x90109, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x610B0, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x9012D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x610C0, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x9014E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x610C4, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x90162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x610CC, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x90192, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x610D4, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x901B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x610E4, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x9020C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x61190, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x9025D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x611B4, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x90363, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x61190, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x903CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x611D4, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x9041C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x611F8, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90522, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x611D4, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x9058E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x61218, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x905DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x61278, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x905F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x61280, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x90607, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x612BC, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x9070D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x61218, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x90777, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x61334, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x908CB, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x470, symBinAddr: 0x61768, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x90AF1, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x61334, symSize: 0x368 } + - { offsetInCU: 0x5AB, offset: 0x90CFB, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11updateValue_6forKeyq_Sgq_n_xtFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x6169C, symSize: 0xCC } + - { offsetInCU: 0x27, offset: 0x90DCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x617B0, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x90E1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x617D4, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90F25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x617B0, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x91007, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA78, symBinAddr: 0x6222C, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x91023, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA84, symBinAddr: 0x62238, symSize: 0x64 } + - { offsetInCU: 0xD5, offset: 0x9103B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA84, symBinAddr: 0x62238, symSize: 0x64 } + - { offsetInCU: 0xE6, offset: 0x9104C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAE8, symBinAddr: 0x6229C, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x910DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xCBC, symBinAddr: 0x62470, symSize: 0xC } + - { offsetInCU: 0x191, offset: 0x910F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xCC8, symBinAddr: 0x6247C, symSize: 0x2C } + - { offsetInCU: 0x1A9, offset: 0x9110F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xCC8, symBinAddr: 0x6247C, symSize: 0x2C } + - { offsetInCU: 0x560, offset: 0x914C6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x7D4, symBinAddr: 0x61F88, symSize: 0xC8 } + - { offsetInCU: 0x5D4, offset: 0x9153A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xCF4, symBinAddr: 0x624A8, symSize: 0x334 } + - { offsetInCU: 0x806, offset: 0x9176C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1028, symBinAddr: 0x627DC, symSize: 0x13C } + - { offsetInCU: 0xA28, offset: 0x9198E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x345C, symBinAddr: 0x64B70, symSize: 0x21C } + - { offsetInCU: 0xAD9, offset: 0x91A3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x37A0, symBinAddr: 0x64E58, symSize: 0x25C } + - { offsetInCU: 0xB3E, offset: 0x91AA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39FC, symBinAddr: 0x650B4, symSize: 0x2BC } + - { offsetInCU: 0xC7D, offset: 0x91BE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3CB8, symBinAddr: 0x65370, symSize: 0x1A8 } + - { offsetInCU: 0xCC3, offset: 0x91C29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E60, symBinAddr: 0x65518, symSize: 0x43C } + - { offsetInCU: 0xFFA, offset: 0x91F60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x429C, symBinAddr: 0x65954, symSize: 0xC4 } + - { offsetInCU: 0x113F, offset: 0x920A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2EC0, symBinAddr: 0x64674, symSize: 0x4 } + - { offsetInCU: 0x1153, offset: 0x920B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2EC4, symBinAddr: 0x64678, symSize: 0x44 } + - { offsetInCU: 0x1167, offset: 0x920CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2F08, symBinAddr: 0x646BC, symSize: 0x4 } + - { offsetInCU: 0x117B, offset: 0x920E1, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2F0C, symBinAddr: 0x646C0, symSize: 0x4C } + - { offsetInCU: 0x118F, offset: 0x920F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x2F9C, symBinAddr: 0x6470C, symSize: 0x4 } + - { offsetInCU: 0x11A3, offset: 0x92109, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x2FA0, symBinAddr: 0x64710, symSize: 0x44 } + - { offsetInCU: 0x11B7, offset: 0x9211D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x2FF4, symBinAddr: 0x64754, symSize: 0x90 } + - { offsetInCU: 0x11CB, offset: 0x92131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x3084, symBinAddr: 0x647E4, symSize: 0xBC } + - { offsetInCU: 0x11DF, offset: 0x92145, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x3140, symBinAddr: 0x648A0, symSize: 0x8 } + - { offsetInCU: 0x11F3, offset: 0x92159, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x3148, symBinAddr: 0x648A8, symSize: 0x4 } + - { offsetInCU: 0x1207, offset: 0x9216D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x314C, symBinAddr: 0x648AC, symSize: 0x8 } + - { offsetInCU: 0x121B, offset: 0x92181, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3154, symBinAddr: 0x648B4, symSize: 0x10 } + - { offsetInCU: 0x122F, offset: 0x92195, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3164, symBinAddr: 0x648C4, symSize: 0x90 } + - { offsetInCU: 0x1243, offset: 0x921A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x31F4, symBinAddr: 0x64954, symSize: 0xBC } + - { offsetInCU: 0x1257, offset: 0x921BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x32B0, symBinAddr: 0x64A10, symSize: 0x8 } + - { offsetInCU: 0x126B, offset: 0x921D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x32B8, symBinAddr: 0x64A18, symSize: 0x4 } + - { offsetInCU: 0x127F, offset: 0x921E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x32BC, symBinAddr: 0x64A1C, symSize: 0xC } + - { offsetInCU: 0x1293, offset: 0x921F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x32C8, symBinAddr: 0x64A28, symSize: 0x10 } + - { offsetInCU: 0x12A7, offset: 0x9220D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x32D8, symBinAddr: 0x64A38, symSize: 0x20 } + - { offsetInCU: 0x12BB, offset: 0x92221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3300, symBinAddr: 0x64A58, symSize: 0xC } + - { offsetInCU: 0x12CF, offset: 0x92235, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x330C, symBinAddr: 0x64A64, symSize: 0x4 } + - { offsetInCU: 0x12E3, offset: 0x92249, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3310, symBinAddr: 0x64A68, symSize: 0x44 } + - { offsetInCU: 0x12F7, offset: 0x9225D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3354, symBinAddr: 0x64AAC, symSize: 0xC } + - { offsetInCU: 0x130B, offset: 0x92271, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x3360, symBinAddr: 0x64AB8, symSize: 0x4 } + - { offsetInCU: 0x131F, offset: 0x92285, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3364, symBinAddr: 0x64ABC, symSize: 0x44 } + - { offsetInCU: 0x1333, offset: 0x92299, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x33A8, symBinAddr: 0x64B00, symSize: 0xC } + - { offsetInCU: 0x13E7, offset: 0x9234D, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x36B4, symBinAddr: 0x64DC8, symSize: 0x48 } + - { offsetInCU: 0x13FB, offset: 0x92361, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOc', symObjAddr: 0x36FC, symBinAddr: 0x64E10, symSize: 0x48 } + - { offsetInCU: 0x145A, offset: 0x923C0, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4360, symBinAddr: 0x65A18, symSize: 0x3C } + - { offsetInCU: 0x146E, offset: 0x923D4, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x439C, symBinAddr: 0x65A54, symSize: 0x24 } + - { offsetInCU: 0x1482, offset: 0x923E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x43F4, symBinAddr: 0x65A9C, symSize: 0x8 } + - { offsetInCU: 0x1496, offset: 0x923FC, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x43FC, symBinAddr: 0x65AA4, symSize: 0x10 } + - { offsetInCU: 0x14AA, offset: 0x92410, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x440C, symBinAddr: 0x65AB4, symSize: 0x8 } + - { offsetInCU: 0x14BE, offset: 0x92424, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x44A8, symBinAddr: 0x65ABC, symSize: 0x10 } + - { offsetInCU: 0x15DB, offset: 0x92541, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x198, symBinAddr: 0x6194C, symSize: 0x134 } + - { offsetInCU: 0x169C, offset: 0x92602, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x2CC, symBinAddr: 0x61A80, symSize: 0x11C } + - { offsetInCU: 0x175D, offset: 0x926C3, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x3E8, symBinAddr: 0x61B9C, symSize: 0x90 } + - { offsetInCU: 0x193D, offset: 0x928A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x8C0, symBinAddr: 0x62074, symSize: 0xC } + - { offsetInCU: 0x19BD, offset: 0x92923, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x8CC, symBinAddr: 0x62080, symSize: 0x9C } + - { offsetInCU: 0x1A3F, offset: 0x929A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x968, symBinAddr: 0x6211C, symSize: 0x78 } + - { offsetInCU: 0x1A7D, offset: 0x929E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x9E0, symBinAddr: 0x62194, symSize: 0x98 } + - { offsetInCU: 0x1AE3, offset: 0x92A49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB94, symBinAddr: 0x62348, symSize: 0xC } + - { offsetInCU: 0x1B63, offset: 0x92AC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xBA0, symBinAddr: 0x62354, symSize: 0x6C } + - { offsetInCU: 0x1C17, offset: 0x92B7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC0C, symBinAddr: 0x623C0, symSize: 0x48 } + - { offsetInCU: 0x1C89, offset: 0x92BEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC54, symBinAddr: 0x62408, symSize: 0x68 } + - { offsetInCU: 0x205E, offset: 0x92FC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x617F4, symSize: 0x6C } + - { offsetInCU: 0x2095, offset: 0x92FFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x61860, symSize: 0x28 } + - { offsetInCU: 0x20B4, offset: 0x9301A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x61888, symSize: 0x58 } + - { offsetInCU: 0x20E3, offset: 0x93049, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x618E0, symSize: 0x4 } + - { offsetInCU: 0x20FB, offset: 0x93061, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x618E0, symSize: 0x4 } + - { offsetInCU: 0x210F, offset: 0x93075, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x618E0, symSize: 0x4 } + - { offsetInCU: 0x2123, offset: 0x93089, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x618E0, symSize: 0x4 } + - { offsetInCU: 0x2137, offset: 0x9309D, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x618E0, symSize: 0x4 } + - { offsetInCU: 0x2157, offset: 0x930BD, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x130, symBinAddr: 0x618E4, symSize: 0x24 } + - { offsetInCU: 0x216B, offset: 0x930D1, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlF11IoTConnect27AttDataVSg_Tg5', symObjAddr: 0x154, symBinAddr: 0x61908, symSize: 0x44 } + - { offsetInCU: 0x2216, offset: 0x9317C, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x478, symBinAddr: 0x61C2C, symSize: 0xC4 } + - { offsetInCU: 0x23C9, offset: 0x9332F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x61CF0, symSize: 0x48 } + - { offsetInCU: 0x23E1, offset: 0x93347, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x61CF0, symSize: 0x48 } + - { offsetInCU: 0x2401, offset: 0x93367, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x61CF0, symSize: 0x48 } + - { offsetInCU: 0x2415, offset: 0x9337B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x61CF0, symSize: 0x48 } + - { offsetInCU: 0x2429, offset: 0x9338F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x61CF0, symSize: 0x48 } + - { offsetInCU: 0x243D, offset: 0x933A3, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x61CF0, symSize: 0x48 } + - { offsetInCU: 0x2511, offset: 0x93477, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x584, symBinAddr: 0x61D38, symSize: 0x88 } + - { offsetInCU: 0x25CE, offset: 0x93534, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x60C, symBinAddr: 0x61DC0, symSize: 0x80 } + - { offsetInCU: 0x2669, offset: 0x935CF, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x68C, symBinAddr: 0x61E40, symSize: 0xE4 } + - { offsetInCU: 0x27BD, offset: 0x93723, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x61F24, symSize: 0x64 } + - { offsetInCU: 0x27D5, offset: 0x9373B, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x61F24, symSize: 0x64 } + - { offsetInCU: 0x27E9, offset: 0x9374F, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x61F24, symSize: 0x64 } + - { offsetInCU: 0x27FD, offset: 0x93763, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x61F24, symSize: 0x64 } + - { offsetInCU: 0x2811, offset: 0x93777, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x61F24, symSize: 0x64 } + - { offsetInCU: 0x288E, offset: 0x937F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x89C, symBinAddr: 0x62050, symSize: 0x24 } + - { offsetInCU: 0x28F0, offset: 0x93856, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xB20, symBinAddr: 0x622D4, symSize: 0x74 } + - { offsetInCU: 0x299F, offset: 0x93905, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x1164, symBinAddr: 0x62918, symSize: 0x9BC } + - { offsetInCU: 0x2F4D, offset: 0x93EB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B20, symBinAddr: 0x632D4, symSize: 0x694 } + - { offsetInCU: 0x32BC, offset: 0x94222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x21B4, symBinAddr: 0x63968, symSize: 0x4B0 } + - { offsetInCU: 0x3485, offset: 0x943EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2664, symBinAddr: 0x63E18, symSize: 0x64C } + - { offsetInCU: 0x3988, offset: 0x948EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2CB0, symBinAddr: 0x64464, symSize: 0x160 } + - { offsetInCU: 0x3A94, offset: 0x949FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2E10, symBinAddr: 0x645C4, symSize: 0x2C } + - { offsetInCU: 0x3ACD, offset: 0x94A33, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2EBC, symBinAddr: 0x64670, symSize: 0x4 } + - { offsetInCU: 0x3AFA, offset: 0x94A60, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x33F8, symBinAddr: 0x64B0C, symSize: 0x14 } + - { offsetInCU: 0x3B2A, offset: 0x94A90, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x340C, symBinAddr: 0x64B20, symSize: 0x14 } + - { offsetInCU: 0x3B5A, offset: 0x94AC0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x3420, symBinAddr: 0x64B34, symSize: 0x14 } + - { offsetInCU: 0x3B8A, offset: 0x94AF0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF11IoTConnect23AttV_Tg5', symObjAddr: 0x3434, symBinAddr: 0x64B48, symSize: 0x14 } + - { offsetInCU: 0x3BBA, offset: 0x94B20, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3448, symBinAddr: 0x64B5C, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x94CB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x65ACC, symSize: 0x208 } + - { offsetInCU: 0x57, offset: 0x94CC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x248, symBinAddr: 0x65CD4, symSize: 0xDC } + - { offsetInCU: 0x6B, offset: 0x94CD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x324, symBinAddr: 0x65DB0, symSize: 0x1DC } + - { offsetInCU: 0x7F, offset: 0x94CEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x500, symBinAddr: 0x65F8C, symSize: 0x2A4 } + - { offsetInCU: 0x93, offset: 0x94D00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x7A4, symBinAddr: 0x66230, symSize: 0x16C } + - { offsetInCU: 0xA7, offset: 0x94D14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x910, symBinAddr: 0x6639C, symSize: 0x244 } + - { offsetInCU: 0xBB, offset: 0x94D28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0xB54, symBinAddr: 0x665E0, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x94D3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0xBEC, symBinAddr: 0x66678, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x94D50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0xC84, symBinAddr: 0x66710, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x94D64, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xD0C, symBinAddr: 0x66798, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x94D78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xD60, symBinAddr: 0x667EC, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x94D8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xE84, symBinAddr: 0x66910, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x94DA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xF08, symBinAddr: 0x66994, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x94DB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xFFC, symBinAddr: 0x66A88, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x94DC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0x115C, symBinAddr: 0x66BE8, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x94DDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0x1238, symBinAddr: 0x66CC4, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x94DF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1380, symBinAddr: 0x66E0C, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x94E04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x1418, symBinAddr: 0x66EA4, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x94E18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x14E4, symBinAddr: 0x66F70, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x94EA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1ADC, symBinAddr: 0x67568, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x94F01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1AF4, symBinAddr: 0x67580, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x94F7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x675AC, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x94FB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B90, symBinAddr: 0x6761C, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x94FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BB4, symBinAddr: 0x67640, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x94FFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BC0, symBinAddr: 0x6764C, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x95019, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3380, symBinAddr: 0x68D10, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x950D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C1C, symBinAddr: 0x676A8, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x950F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C30, symBinAddr: 0x676BC, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x95177, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1E08, symBinAddr: 0x67894, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x951AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E50, symBinAddr: 0x678DC, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x951DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E74, symBinAddr: 0x67900, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x951F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x6790C, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x95215, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3568, symBinAddr: 0x68EF8, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x952C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EDC, symBinAddr: 0x67968, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x952FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F28, symBinAddr: 0x679B4, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x9531F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x36BC, symBinAddr: 0x6904C, symSize: 0x2A4 } + - { offsetInCU: 0x716, offset: 0x95383, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2850, symBinAddr: 0x682DC, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x953B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2858, symBinAddr: 0x682E4, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x953E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x287C, symBinAddr: 0x68308, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x95405, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2888, symBinAddr: 0x68314, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x95421, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3960, symBinAddr: 0x692F0, symSize: 0x398 } + - { offsetInCU: 0x929, offset: 0x95596, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x28E4, symBinAddr: 0x68370, symSize: 0x14 } + - { offsetInCU: 0x94C, offset: 0x955B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x28F8, symBinAddr: 0x68384, symSize: 0x14 } + - { offsetInCU: 0x970, offset: 0x955DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2930, symBinAddr: 0x68398, symSize: 0x44 } + - { offsetInCU: 0x984, offset: 0x955F1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2994, symBinAddr: 0x683DC, symSize: 0x40 } + - { offsetInCU: 0x998, offset: 0x95605, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2A5C, symBinAddr: 0x6845C, symSize: 0x44 } + - { offsetInCU: 0x9AC, offset: 0x95619, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2AE4, symBinAddr: 0x684A0, symSize: 0x44 } + - { offsetInCU: 0x9C0, offset: 0x9562D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x2C10, symBinAddr: 0x685CC, symSize: 0x44 } + - { offsetInCU: 0x9D4, offset: 0x95641, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2C64, symBinAddr: 0x68610, symSize: 0x90 } + - { offsetInCU: 0x9E8, offset: 0x95655, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2CF4, symBinAddr: 0x686A0, symSize: 0xBC } + - { offsetInCU: 0x9FC, offset: 0x95669, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2DB0, symBinAddr: 0x6875C, symSize: 0x8 } + - { offsetInCU: 0xA10, offset: 0x9567D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2DB8, symBinAddr: 0x68764, symSize: 0x4 } + - { offsetInCU: 0xA24, offset: 0x95691, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x2DBC, symBinAddr: 0x68768, symSize: 0x8 } + - { offsetInCU: 0xA38, offset: 0x956A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2DC4, symBinAddr: 0x68770, symSize: 0x10 } + - { offsetInCU: 0xA4C, offset: 0x956B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2DD4, symBinAddr: 0x68780, symSize: 0x90 } + - { offsetInCU: 0xA60, offset: 0x956CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2E64, symBinAddr: 0x68810, symSize: 0xBC } + - { offsetInCU: 0xA74, offset: 0x956E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2F20, symBinAddr: 0x688CC, symSize: 0x4 } + - { offsetInCU: 0xA88, offset: 0x956F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2F24, symBinAddr: 0x688D0, symSize: 0x10 } + - { offsetInCU: 0xA9C, offset: 0x95709, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2F34, symBinAddr: 0x688E0, symSize: 0x30 } + - { offsetInCU: 0xAB0, offset: 0x9571D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2F64, symBinAddr: 0x68910, symSize: 0x30 } + - { offsetInCU: 0xAC4, offset: 0x95731, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2F94, symBinAddr: 0x68940, symSize: 0x5C } + - { offsetInCU: 0xAD8, offset: 0x95745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2FF0, symBinAddr: 0x6899C, symSize: 0x94 } + - { offsetInCU: 0xAEC, offset: 0x95759, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x30A0, symBinAddr: 0x68A30, symSize: 0x64 } + - { offsetInCU: 0xB00, offset: 0x9576D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x3104, symBinAddr: 0x68A94, symSize: 0x5C } + - { offsetInCU: 0xB14, offset: 0x95781, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x3160, symBinAddr: 0x68AF0, symSize: 0x60 } + - { offsetInCU: 0xB28, offset: 0x95795, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x31C0, symBinAddr: 0x68B50, symSize: 0x10 } + - { offsetInCU: 0xB3C, offset: 0x957A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x31D0, symBinAddr: 0x68B60, symSize: 0x4 } + - { offsetInCU: 0xB50, offset: 0x957BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x31D4, symBinAddr: 0x68B64, symSize: 0x44 } + - { offsetInCU: 0xB64, offset: 0x957D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3218, symBinAddr: 0x68BA8, symSize: 0x4 } + - { offsetInCU: 0xB78, offset: 0x957E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x321C, symBinAddr: 0x68BAC, symSize: 0x44 } + - { offsetInCU: 0xB8C, offset: 0x957F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3260, symBinAddr: 0x68BF0, symSize: 0x4 } + - { offsetInCU: 0xBA0, offset: 0x9580D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3264, symBinAddr: 0x68BF4, symSize: 0x44 } + - { offsetInCU: 0xBB4, offset: 0x95821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x32A8, symBinAddr: 0x68C38, symSize: 0x4 } + - { offsetInCU: 0xBC8, offset: 0x95835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x32AC, symBinAddr: 0x68C3C, symSize: 0x44 } + - { offsetInCU: 0xBDC, offset: 0x95849, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x32F0, symBinAddr: 0x68C80, symSize: 0x4 } + - { offsetInCU: 0xBF0, offset: 0x9585D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x32F4, symBinAddr: 0x68C84, symSize: 0x44 } + - { offsetInCU: 0xC04, offset: 0x95871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3338, symBinAddr: 0x68CC8, symSize: 0x4 } + - { offsetInCU: 0xC18, offset: 0x95885, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x333C, symBinAddr: 0x68CCC, symSize: 0x44 } + - { offsetInCU: 0xC37, offset: 0x958A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3CF8, symBinAddr: 0x69688, symSize: 0x44 } + - { offsetInCU: 0xC4B, offset: 0x958B8, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3D3C, symBinAddr: 0x696CC, symSize: 0x48 } + - { offsetInCU: 0xC5F, offset: 0x958CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x3E08, symBinAddr: 0x69798, symSize: 0x90 } + - { offsetInCU: 0xC73, offset: 0x958E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3E98, symBinAddr: 0x69828, symSize: 0xBC } + - { offsetInCU: 0xC87, offset: 0x958F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3F54, symBinAddr: 0x698E4, symSize: 0x4 } + - { offsetInCU: 0xC9B, offset: 0x95908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3F58, symBinAddr: 0x698E8, symSize: 0x10 } + - { offsetInCU: 0xCAF, offset: 0x9591C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3F68, symBinAddr: 0x698F8, symSize: 0x4 } + - { offsetInCU: 0xCC3, offset: 0x95930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3F6C, symBinAddr: 0x698FC, symSize: 0x44 } + - { offsetInCU: 0xCD7, offset: 0x95944, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3FB0, symBinAddr: 0x69940, symSize: 0x4 } + - { offsetInCU: 0xCEB, offset: 0x95958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3FB4, symBinAddr: 0x69944, symSize: 0x44 } + - { offsetInCU: 0xCFF, offset: 0x9596C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3FF8, symBinAddr: 0x69988, symSize: 0x4 } + - { offsetInCU: 0xD13, offset: 0x95980, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3FFC, symBinAddr: 0x6998C, symSize: 0x44 } + - { offsetInCU: 0xD41, offset: 0x959AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BCC, symBinAddr: 0x67658, symSize: 0x28 } + - { offsetInCU: 0xD5D, offset: 0x959CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1BF4, symBinAddr: 0x67680, symSize: 0x28 } + - { offsetInCU: 0xD7F, offset: 0x959EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E8C, symBinAddr: 0x67918, symSize: 0x28 } + - { offsetInCU: 0xD9B, offset: 0x95A08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1EB4, symBinAddr: 0x67940, symSize: 0x28 } + - { offsetInCU: 0xDBD, offset: 0x95A2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2894, symBinAddr: 0x68320, symSize: 0x28 } + - { offsetInCU: 0xDD9, offset: 0x95A46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x28BC, symBinAddr: 0x68348, symSize: 0x28 } + - { offsetInCU: 0xEE6, offset: 0x95B53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x156C, symBinAddr: 0x66FF8, symSize: 0x210 } + - { offsetInCU: 0xF1D, offset: 0x95B8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x177C, symBinAddr: 0x67208, symSize: 0x360 } + - { offsetInCU: 0xF98, offset: 0x95C05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1C44, symBinAddr: 0x676D0, symSize: 0x1BC } + - { offsetInCU: 0xFE3, offset: 0x95C50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1F68, symBinAddr: 0x679F4, symSize: 0xC8 } + - { offsetInCU: 0x1006, offset: 0x95C73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x2030, symBinAddr: 0x67ABC, symSize: 0x2B8 } + - { offsetInCU: 0x103D, offset: 0x95CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x22E8, symBinAddr: 0x67D74, symSize: 0x4DC } + - { offsetInCU: 0x27, offset: 0x95D31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x699F0, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x95E10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x69AD8, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x95E24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x69B08, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x95E38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x69B30, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x95E4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x69B6C, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x95E60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x69BD8, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x95E74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x69C1C, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x95E88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x69C64, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x95E9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x69CA4, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x95FAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x699F0, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x95FC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x69A1C, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x95FFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x69A50, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x9600E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x69A60, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x9602F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x69A64, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x96043, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x69A90, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x96078, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x69AC4, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x9609C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x69AD4, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x960EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x69CB4, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x9614E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x69F4C, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x9616A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x69F54, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x96182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x69F54, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x9619F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x69E3C, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x961B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x69E40, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x961E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x69F6C, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x961FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x69FFC, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x9620F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x6A0B8, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x96223, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x6A0C0, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x96237, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x6A0C4, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x9624B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x6A0CC, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x962BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnnnd_n', symObjAddr: 0x438, symBinAddr: 0x6A0DC, symSize: 0x17C } + - { offsetInCU: 0x518, offset: 0x965DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x69E18, symSize: 0x24 } + - { offsetInCU: 0x60C, offset: 0x966D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x69E84, symSize: 0x4C } + - { offsetInCU: 0x6E4, offset: 0x967AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x69ED0, symSize: 0x34 } + - { offsetInCU: 0x760, offset: 0x96827, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x69F04, symSize: 0x48 } + - { offsetInCU: 0x925, offset: 0x969EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x69CB4, symSize: 0x14 } + - { offsetInCU: 0x946, offset: 0x96A0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x69CC8, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x96AD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6A258, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x96B23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x6A27C, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x96C29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6A258, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x96CB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x2038, symBinAddr: 0x88648, symSize: 0x0 } + - { offsetInCU: 0x60A, offset: 0x97274, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x6A2D0, symSize: 0x4C } + - { offsetInCU: 0x622, offset: 0x9728C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x6A31C, symSize: 0x94 } + - { offsetInCU: 0x7AC, offset: 0x97416, size: 0x8, addend: 0x0, symName: '_$sSo11NSPredicateCMa', symObjAddr: 0x1B74, symBinAddr: 0x6BD5C, symSize: 0x3C } + - { offsetInCU: 0x7C0, offset: 0x9742A, size: 0x8, addend: 0x0, symName: '_$sS2Ss7CVarArg10FoundationWl', symObjAddr: 0x1BB0, symBinAddr: 0x6BD98, symSize: 0x44 } + - { offsetInCU: 0x7D4, offset: 0x9743E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_TA', symObjAddr: 0x1BF4, symBinAddr: 0x6BDDC, symSize: 0x8 } + - { offsetInCU: 0x7E8, offset: 0x97452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_TA', symObjAddr: 0x1BFC, symBinAddr: 0x6BDE4, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x97466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_TA', symObjAddr: 0x1C04, symBinAddr: 0x6BDEC, symSize: 0x8 } + - { offsetInCU: 0x810, offset: 0x9747A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_TA', symObjAddr: 0x1C0C, symBinAddr: 0x6BDF4, symSize: 0x8 } + - { offsetInCU: 0x824, offset: 0x9748E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_TA', symObjAddr: 0x1C14, symBinAddr: 0x6BDFC, symSize: 0x8 } + - { offsetInCU: 0x838, offset: 0x974A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x1C78, symBinAddr: 0x6BE04, symSize: 0x20 } + - { offsetInCU: 0x84C, offset: 0x974B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOb', symObjAddr: 0x1C98, symBinAddr: 0x6BE24, symSize: 0x48 } + - { offsetInCU: 0x860, offset: 0x974CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOd', symObjAddr: 0x1CE0, symBinAddr: 0x6BE6C, symSize: 0x48 } + - { offsetInCU: 0x874, offset: 0x974DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1EA4, symBinAddr: 0x6BFE0, symSize: 0x8 } + - { offsetInCU: 0x888, offset: 0x974F2, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1EAC, symBinAddr: 0x6BFE8, symSize: 0x10 } + - { offsetInCU: 0x89C, offset: 0x97506, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1EBC, symBinAddr: 0x6BFF8, symSize: 0x8 } + - { offsetInCU: 0x8E5, offset: 0x9754F, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1EC4, symBinAddr: 0x6C000, symSize: 0x10 } + - { offsetInCU: 0x901, offset: 0x9756B, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1EC4, symBinAddr: 0x6C000, symSize: 0x10 } + - { offsetInCU: 0x915, offset: 0x9757F, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1EC4, symBinAddr: 0x6C000, symSize: 0x10 } + - { offsetInCU: 0x954, offset: 0x975BE, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x6A29C, symSize: 0x4 } + - { offsetInCU: 0x970, offset: 0x975DA, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x6A2A0, symSize: 0x4 } + - { offsetInCU: 0x98C, offset: 0x975F6, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x6A2A4, symSize: 0x4 } + - { offsetInCU: 0x9A8, offset: 0x97612, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x6A2A8, symSize: 0x4 } + - { offsetInCU: 0x9C4, offset: 0x9762E, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x6A2AC, symSize: 0x4 } + - { offsetInCU: 0x9E0, offset: 0x9764A, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x6A2B0, symSize: 0x4 } + - { offsetInCU: 0x9FC, offset: 0x97666, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x6A2B4, symSize: 0x4 } + - { offsetInCU: 0xA18, offset: 0x97682, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x6A2B8, symSize: 0xC } + - { offsetInCU: 0xA34, offset: 0x9769E, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x6A2C4, symSize: 0xC } + - { offsetInCU: 0xD18, offset: 0x97982, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0x114, symBinAddr: 0x6A3B0, symSize: 0x40 } + - { offsetInCU: 0xE9B, offset: 0x97B05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF', symObjAddr: 0x154, symBinAddr: 0x6A3F0, symSize: 0x7D8 } + - { offsetInCU: 0x142F, offset: 0x98099, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_', symObjAddr: 0x93C, symBinAddr: 0x6ABD8, symSize: 0x5C } + - { offsetInCU: 0x1495, offset: 0x980FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_', symObjAddr: 0x998, symBinAddr: 0x6AC34, symSize: 0x5C } + - { offsetInCU: 0x14FB, offset: 0x98165, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_', symObjAddr: 0x9F4, symBinAddr: 0x6AC90, symSize: 0x5C } + - { offsetInCU: 0x1561, offset: 0x981CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_', symObjAddr: 0xA50, symBinAddr: 0x6ACEC, symSize: 0x5C } + - { offsetInCU: 0x15C7, offset: 0x98231, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_', symObjAddr: 0xAAC, symBinAddr: 0x6AD48, symSize: 0x5C } + - { offsetInCU: 0x1692, offset: 0x982FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xB08, symBinAddr: 0x6ADA4, symSize: 0x44 } + - { offsetInCU: 0x16FC, offset: 0x98366, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xB4C, symBinAddr: 0x6ADE8, symSize: 0x10 } + - { offsetInCU: 0x172E, offset: 0x98398, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xB4C, symBinAddr: 0x6ADE8, symSize: 0x10 } + - { offsetInCU: 0x175D, offset: 0x983C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xB5C, symBinAddr: 0x6ADF8, symSize: 0x54 } + - { offsetInCU: 0x17D4, offset: 0x9843E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0xCC0, symBinAddr: 0x6AF5C, symSize: 0x34 } + - { offsetInCU: 0x1837, offset: 0x984A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xCF4, symBinAddr: 0x6AF90, symSize: 0x54 } + - { offsetInCU: 0x18AE, offset: 0x98518, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xD48, symBinAddr: 0x6AFE4, symSize: 0x4C } + - { offsetInCU: 0x193A, offset: 0x985A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xD94, symBinAddr: 0x6B030, symSize: 0x84 } + - { offsetInCU: 0x19D5, offset: 0x9863F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xE18, symBinAddr: 0x6B0B4, symSize: 0x74 } + - { offsetInCU: 0x1A84, offset: 0x986EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xE8C, symBinAddr: 0x6B128, symSize: 0x84 } + - { offsetInCU: 0x1B21, offset: 0x9878B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xF10, symBinAddr: 0x6B1AC, symSize: 0x38 } + - { offsetInCU: 0x1BA1, offset: 0x9880B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF48, symBinAddr: 0x6B1E4, symSize: 0x38 } + - { offsetInCU: 0x1C21, offset: 0x9888B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF80, symBinAddr: 0x6B21C, symSize: 0x38 } + - { offsetInCU: 0x1CA1, offset: 0x9890B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xFB8, symBinAddr: 0x6B254, symSize: 0x38 } + - { offsetInCU: 0x1D21, offset: 0x9898B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xFF0, symBinAddr: 0x6B28C, symSize: 0x38 } + - { offsetInCU: 0x1DA1, offset: 0x98A0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1028, symBinAddr: 0x6B2C4, symSize: 0x38 } + - { offsetInCU: 0x1E21, offset: 0x98A8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1060, symBinAddr: 0x6B2FC, symSize: 0x38 } + - { offsetInCU: 0x1EA1, offset: 0x98B0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0x1098, symBinAddr: 0x6B334, symSize: 0x38 } + - { offsetInCU: 0x1F01, offset: 0x98B6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x10D0, symBinAddr: 0x6B36C, symSize: 0x44 } + - { offsetInCU: 0x1F98, offset: 0x98C02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x1114, symBinAddr: 0x6B3B0, symSize: 0x13C } + - { offsetInCU: 0x207D, offset: 0x98CE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0x1250, symBinAddr: 0x6B4EC, symSize: 0x1F0 } + - { offsetInCU: 0x221B, offset: 0x98E85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x1440, symBinAddr: 0x6B6DC, symSize: 0x78 } + - { offsetInCU: 0x22B1, offset: 0x98F1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x14B8, symBinAddr: 0x6B754, symSize: 0x94 } + - { offsetInCU: 0x22D4, offset: 0x98F3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x154C, symBinAddr: 0x6B7E8, symSize: 0x20 } + - { offsetInCU: 0x2319, offset: 0x98F83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x15E0, symBinAddr: 0x6B808, symSize: 0x254 } + - { offsetInCU: 0x2400, offset: 0x9906A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1834, symBinAddr: 0x6BA5C, symSize: 0x300 } ... diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h index 6e93a15..413de9e 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Headers/IoTConnect2-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_SWIFT_H #define IOTCONNECT2_SWIFT_H #pragma clang diagnostic push @@ -308,7 +308,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_SWIFT_H #define IOTCONNECT2_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist index f91930e..217fbb3 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist and b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Info.plist differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 index b7053d2..99d7d1c 100755 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 and b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/IoTConnect2 differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json index ae0cff5..49a1c58 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -4128,8 +4128,8 @@ }, { "kind": "Var", - "name": "DEV", - "printedName": "DEV", + "name": "EU", + "printedName": "EU", "children": [ { "kind": "TypeFunc", @@ -4159,8 +4159,8 @@ } ], "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", + "usr": "s:11IoTConnect215IOTCEnvironmentO2EUyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO2EUyA2CmF", "moduleName": "IoTConnect2", "declAttributes": [ "RawDocComment" @@ -4526,6 +4526,39 @@ "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -4564,39 +4597,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -5982,6 +5982,39 @@ "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -6020,39 +6053,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -6182,7 +6182,7 @@ { "kind": "Function", "name": "initialize", - "printedName": "initialize(config:)", + "printedName": "initialize(config:errorBlock:)", "children": [ { "kind": "TypeNominal", @@ -6194,11 +6194,29 @@ "name": "IoTConnectConfig", "printedName": "IoTConnect2.IoTConnectConfig", "usr": "s:11IoTConnect20A14TConnectConfigV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] } ], "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "usr": "s:11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", + "mangledName": "$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", "moduleName": "IoTConnect2", "declAttributes": [ "AccessControl", @@ -7428,6 +7446,7 @@ "mangledName": "$sSS", "moduleName": "Swift", "declAttributes": [ + "EagerMove", "Frozen" ], "isExternal": true, @@ -7960,12735 +7979,1514 @@ { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "BooleanLiteral", - "offset": 1649, + "offset": 1651, "length": 4, "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "BooleanLiteral", - "offset": 1682, + "offset": 1684, "length": 5, "value": "false" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "BooleanLiteral", - "offset": 1849, + "offset": 1851, "length": 4, "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "Array", - "offset": 1919, + "offset": 1921, "length": 2, "value": "[]" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "IntegerLiteral", - "offset": 1949, + "offset": 1951, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "IntegerLiteral", - "offset": 2026, + "offset": 2028, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2363, + "offset": 2365, "length": 48, "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2443, + "offset": 2445, "length": 41, "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2516, + "offset": 2518, "length": 26, "value": "\"$iothub\/twin\/GET\/?$rid=0\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2574, + "offset": 2576, "length": 20, "value": "\"$iothub\/twin\/res\/#\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 3942, + "offset": 10787, "length": 2, "value": "\"\"" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" + "offset": 10807, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" + "offset": 21746, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" + "offset": 161, + "length": 5, + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5639, + "offset": 161, "length": 5, - "value": "\"ios\"" + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" + "offset": 317, + "length": 7, + "value": "\"https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" + "offset": 352, + "length": 6, + "value": "\"http\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" + "offset": 454, + "length": 8, + "value": "\"Accept\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7342, + "offset": 494, "length": 16, - "value": "\"Failed to save\"" + "value": "\"Content-Length\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" + "offset": 562, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" + "offset": 521, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35224, - "length": 79, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35302, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, + "offset": 559, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1748, + "offset": 930, "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" + "value": "\"Please enter valid CPID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1240, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" + "offset": 1551, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" + "offset": 1782, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" + "offset": 1240, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" + "offset": 1551, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" + "offset": 1782, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1244, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" + "offset": 17699, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" + "offset": 397, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" + "offset": 438, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15429, + "offset": 19290, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" + "offset": 33456, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" + "offset": 281, + "length": 6, + "value": "\"EMEA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" + "offset": 327, + "length": 4, + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" + "offset": 281, + "length": 6, + "value": "\"EMEA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" + "offset": 327, + "length": 4, + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" + "offset": 470, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" + "offset": 511, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", @@ -21386,1407 +10184,994 @@ { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1118, + "offset": 1120, "length": 33, "value": "\"https:\/\/discovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1186, + "offset": 1191, + "length": 35, + "value": "\"https:\/\/eudiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1261, "length": 61, "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1285, + "offset": 1360, "length": 36, "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1392, + "offset": 1467, "length": 40, "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1497, + "offset": 1572, "length": 6, "value": "\"?pf=\"" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2702, - "length": 61, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2721, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2751, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2762, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, + "offset": 3047, "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" + "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" + "kind": "StringLiteral", + "offset": 3129, + "length": 7, + "value": "\"M_ios\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" + "kind": "StringLiteral", + "offset": 3162, + "length": 5, + "value": "\"2.1\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" + "kind": "StringLiteral", + "offset": 3198, + "length": 6, + "value": "\"mqtt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" + "kind": "StringLiteral", + "offset": 3235, + "length": 6, + "value": "\"http\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" + "kind": "StringLiteral", + "offset": 3272, + "length": 6, + "value": "\"amqp\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" + "kind": "FloatLiteral", + "offset": 3309, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" + "kind": "StringLiteral", + "offset": 3339, + "length": 9, + "value": "\"isDebug\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" + "offset": 3379, + "length": 14, + "value": "\"discoveryUrl\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" + "offset": 3423, + "length": 13, + "value": "\"Certificate\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" + "offset": 3463, + "length": 10, + "value": "\"Password\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" + "offset": 3503, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" + "kind": "IntegerLiteral", + "offset": 3540, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" + "kind": "IntegerLiteral", + "offset": 3571, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" + "kind": "BooleanLiteral", + "offset": 3601, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" + "kind": "FloatLiteral", + "offset": 3644, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" + "kind": "Dictionary", + "offset": 3684, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4579, + "offset": 3795, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4622, + "offset": 3823, "length": 1, "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4658, + "offset": 3851, "length": 1, "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4696, + "offset": 3879, "length": 1, "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4734, + "offset": 3925, "length": 1, - "value": "4" + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4769, + "offset": 3953, "length": 1, - "value": "5" + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4805, + "offset": 3985, "length": 1, - "value": "6" + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4874, + "offset": 4016, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4063, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4909, + "offset": 4086, "length": 1, "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4943, + "offset": 4113, "length": 1, "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4977, + "offset": 4148, "length": 1, "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5011, + "offset": 4171, "length": 1, "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5045, + "offset": 4194, "length": 1, "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5079, + "offset": 4217, "length": 1, "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5113, + "offset": 4243, "length": 1, "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5147, + "offset": 4267, "length": 1, "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5181, + "offset": 4300, "length": 1, "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5215, + "offset": 4332, "length": 2, "value": "10" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5390, + "offset": 4405, "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" + "value": "\"cpId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" + "offset": 4442, + "length": 10, + "value": "\"uniqueId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" + "offset": 4481, + "length": 8, + "value": "\"option\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" + "offset": 4521, + "length": 11, + "value": "\"attribute\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" + "offset": 4562, + "length": 9, + "value": "\"setting\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" + "offset": 4605, + "length": 10, + "value": "\"protocol\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" + "offset": 4644, + "length": 8, + "value": "\"device\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" + "offset": 4684, + "length": 11, + "value": "\"sdkConfig\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6089, + "offset": 4722, "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" + "value": "\"rule\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" + "kind": "IntegerLiteral", + "offset": 4781, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" + "kind": "IntegerLiteral", + "offset": 4824, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" + "kind": "IntegerLiteral", + "offset": 4860, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" + "kind": "IntegerLiteral", + "offset": 4898, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" + "kind": "IntegerLiteral", + "offset": 4936, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" + "kind": "IntegerLiteral", + "offset": 4971, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" + "kind": "IntegerLiteral", + "offset": 5007, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" + "kind": "IntegerLiteral", + "offset": 5076, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" + "kind": "IntegerLiteral", + "offset": 5111, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" + "kind": "IntegerLiteral", + "offset": 5145, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" + "kind": "IntegerLiteral", + "offset": 5179, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" + "kind": "IntegerLiteral", + "offset": 5213, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" + "kind": "IntegerLiteral", + "offset": 5247, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" + "kind": "IntegerLiteral", + "offset": 5281, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" + "kind": "IntegerLiteral", + "offset": 5315, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" + "kind": "IntegerLiteral", + "offset": 5349, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" + "kind": "IntegerLiteral", + "offset": 5383, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" + "kind": "IntegerLiteral", + "offset": 5417, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" + "kind": "IntegerLiteral", + "offset": 5452, + "length": 2, + "value": "12" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6921, + "offset": 5503, "length": 4, - "value": "\"cv\"" + "value": "\"dt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" + "offset": 5533, + "length": 3, + "value": "\"d\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" + "offset": 5561, + "length": 5, + "value": "\"ack\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7047, + "offset": 5592, "length": 6, - "value": "\"guid\"" + "value": "\"type\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" + "offset": 5626, + "length": 4, + "value": "\"st\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7138, + "offset": 5659, "length": 5, - "value": "\"ack\"" + "value": "\"msg\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" + "offset": 5689, + "length": 5, + "value": "\"cid\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7226, + "offset": 5752, "length": 4, "value": "\"ec\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7268, + "offset": 5782, "length": 4, - "value": "\"rg\"" + "value": "\"ct\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" + "offset": 5812, + "length": 6, + "value": "\"meta\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" + "offset": 5844, + "length": 5, + "value": "\"has\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" + "offset": 5875, + "length": 3, + "value": "\"p\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7441, + "offset": 5928, "length": 4, - "value": "\"mt\"" + "value": "\"df\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7483, + "offset": 5958, "length": 4, - "value": "\"dn\"" + "value": "\"cd\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" + "offset": 5988, + "length": 4, + "value": "\"at\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 341, + "offset": 6019, "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" + "value": "\"gtw\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" + "offset": 6050, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" + "offset": 6079, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" + "offset": 6110, + "length": 6, + "value": "\"edge\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" + "offset": 6142, + "length": 4, + "value": "\"pf\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2289, + "offset": 6173, "length": 5, - "value": "\"\"" + "value": "\"hwv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" + "offset": 6205, + "length": 5, + "value": "\"swv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" + "offset": 6235, + "length": 3, + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" + "offset": 6291, + "length": 6, + "value": "\"cpId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" + "offset": 6328, + "length": 10, + "value": "\"uniqueId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" + "offset": 6369, + "length": 3, + "value": "\"t\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" + "offset": 6403, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" + "offset": 6438, + "length": 3, + "value": "\"d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" + "offset": 6472, + "length": 5, + "value": "\"sdk\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2822, + "offset": 6508, "length": 3, - "value": "\"\/\"" + "value": "\"l\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" + "offset": 6542, + "length": 3, + "value": "\"e\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" + "offset": 6576, + "length": 3, + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6610, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" + "offset": 6647, + "length": 4, + "value": "\"id\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2465, - "length": 22, - "value": "\"SDKClient initialize\"" + "offset": 6682, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" + "offset": 6717, + "length": 4, + "value": "\"dt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" + "offset": 6752, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6786, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" + "offset": 6824, + "length": 9, + "value": "\"desired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" + "offset": 6864, + "length": 6, + "value": "\"time\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6901, + "length": 5, + "value": "\"dtg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" + "offset": 6937, + "length": 5, + "value": "\"has\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" + "offset": 6973, + "length": 6, + "value": "\"attr\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7010, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" + "offset": 7046, + "length": 3, + "value": "\"r\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7080, + "length": 5, + "value": "\"ota\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7123, + "length": 4, + "value": "\"cv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" + "offset": 7165, + "length": 4, + "value": "\"sg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 7207, + "length": 4, + "value": "\"ct\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7249, + "length": 6, + "value": "\"guid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" + "offset": 7293, + "length": 9, + "value": "\"command\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7340, + "length": 5, + "value": "\"ack\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" + "offset": 7383, + "length": 7, + "value": "\"ackId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7428, + "length": 4, + "value": "\"ec\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" + "offset": 7470, + "length": 4, + "value": "\"rg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7512, + "length": 4, + "value": "\"dv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" + "offset": 7554, + "length": 4, + "value": "\"ln\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7596, + "length": 9, + "value": "\"rptdata\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" + "offset": 7643, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7685, + "length": 4, + "value": "\"dn\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" + "offset": 7727, + "length": 3, + "value": "\"p\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7768, + "length": 9, + "value": "\"message\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" + "offset": 2071, + "length": 16, + "value": "\"^[a-zA-Z0-9]+$\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" + "kind": "StringLiteral", + "offset": 2120, + "length": 17, + "value": "\"^[\\w\\d—-]*$\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" + "offset": 6619, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" + "kind": "StringLiteral", + "offset": 6639, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" + "offset": 6867, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 6887, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 7117, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 7137, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 8017, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "IntegerLiteral", - "offset": 12454, + "offset": 11038, "length": 1, "value": "0" } diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index ad1ff5e..f8d6c61 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation @@ -141,7 +140,7 @@ public struct OfflineStorageOption { } public enum IOTCEnvironment : Swift.String, Swift.CaseIterable { case PROD - case DEV + case EU case AVNET case QA public init?(rawValue: Swift.String) @@ -220,7 +219,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2.SDKClient - public func initialize(config: IoTConnect2.IoTConnectConfig) + public func initialize(config: IoTConnect2.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc index f75af6e..b79c52b 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface index ad1ff5e..f8d6c61 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation @@ -141,7 +140,7 @@ public struct OfflineStorageOption { } public enum IOTCEnvironment : Swift.String, Swift.CaseIterable { case PROD - case DEV + case EU case AVNET case QA public init?(rawValue: Swift.String) @@ -220,7 +219,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2.SDKClient - public func initialize(config: IoTConnect2.IoTConnectConfig) + public func initialize(config: IoTConnect2.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json index ae0cff5..49a1c58 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -4128,8 +4128,8 @@ }, { "kind": "Var", - "name": "DEV", - "printedName": "DEV", + "name": "EU", + "printedName": "EU", "children": [ { "kind": "TypeFunc", @@ -4159,8 +4159,8 @@ } ], "declKind": "EnumElement", - "usr": "s:11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", - "mangledName": "$s11IoTConnect215IOTCEnvironmentO3DEVyA2CmF", + "usr": "s:11IoTConnect215IOTCEnvironmentO2EUyA2CmF", + "mangledName": "$s11IoTConnect215IOTCEnvironmentO2EUyA2CmF", "moduleName": "IoTConnect2", "declAttributes": [ "RawDocComment" @@ -4526,6 +4526,39 @@ "mangledName": "$s11IoTConnect20A4TCPfO3awsyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2.IoTCPf", + "usr": "s:11IoTConnect20A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -4564,39 +4597,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2.IoTCPf", - "usr": "s:11IoTConnect20A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -5982,6 +5982,39 @@ "mangledName": "$s11IoTConnect211CommandTypeO13DELETE_DEVICEyA2CmF", "moduleName": "IoTConnect2" }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2.CommandType", + "usr": "s:11IoTConnect211CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2", + "implicit": true, + "init_kind": "Designated" + }, { "kind": "Var", "name": "rawValue", @@ -6020,39 +6053,6 @@ "accessorKind": "get" } ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2.CommandType", - "usr": "s:11IoTConnect211CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2", - "implicit": true, - "init_kind": "Designated" } ], "declKind": "Enum", @@ -6182,7 +6182,7 @@ { "kind": "Function", "name": "initialize", - "printedName": "initialize(config:)", + "printedName": "initialize(config:errorBlock:)", "children": [ { "kind": "TypeNominal", @@ -6194,11 +6194,29 @@ "name": "IoTConnectConfig", "printedName": "IoTConnect2.IoTConnectConfig", "usr": "s:11IoTConnect20A14TConnectConfigV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] } ], "declKind": "Func", - "usr": "s:11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", + "usr": "s:11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", + "mangledName": "$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", "moduleName": "IoTConnect2", "declAttributes": [ "AccessControl", @@ -7428,6 +7446,7 @@ "mangledName": "$sSS", "moduleName": "Swift", "declAttributes": [ + "EagerMove", "Frozen" ], "isExternal": true, @@ -7960,12735 +7979,1514 @@ { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "BooleanLiteral", - "offset": 1649, + "offset": 1651, "length": 4, "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "BooleanLiteral", - "offset": 1682, + "offset": 1684, "length": 5, "value": "false" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "BooleanLiteral", - "offset": 1849, + "offset": 1851, "length": 4, "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "Array", - "offset": 1919, + "offset": 1921, "length": 2, "value": "[]" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "IntegerLiteral", - "offset": 1949, + "offset": 1951, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "IntegerLiteral", - "offset": 2026, + "offset": 2028, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2363, + "offset": 2365, "length": 48, "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2443, + "offset": 2445, "length": 41, "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2516, + "offset": 2518, "length": 26, "value": "\"$iothub\/twin\/GET\/?$rid=0\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 2574, + "offset": 2576, "length": 20, "value": "\"$iothub\/twin\/res\/#\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 3942, + "offset": 10787, "length": 2, "value": "\"\"" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" + "offset": 10807, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" + "offset": 21746, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" + "offset": 161, + "length": 5, + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" + "offset": 141, + "length": 4, + "value": "\"az\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 5639, + "offset": 161, "length": 5, - "value": "\"ios\"" + "value": "\"aws\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" + "offset": 317, + "length": 7, + "value": "\"https\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" + "offset": 352, + "length": 6, + "value": "\"http\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" + "offset": 454, + "length": 8, + "value": "\"Accept\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7342, + "offset": 494, "length": 16, - "value": "\"Failed to save\"" + "value": "\"Content-Length\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" + "offset": 562, + "length": 18, + "value": "\"application\/json\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" + "offset": 521, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35224, - "length": 79, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35302, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, + "offset": 559, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1748, + "offset": 930, "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" + "value": "\"Please enter valid CPID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1240, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" + "offset": 1551, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" + "offset": 1782, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 282, - "length": 5, - "value": "\"DEV\"" + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 305, - "length": 7, - "value": "\"AVNET\"" + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 327, - "length": 4, - "value": "\"QA\"" + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" + "offset": 361, + "length": 29, + "value": "\"<>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" + "offset": 1240, + "length": 31, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" + "offset": 1551, + "length": 32, + "value": "\"<> \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" + "offset": 1782, + "length": 30, + "value": "\" <>\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1244, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" + "offset": 17699, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" + "offset": 397, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" + "offset": 438, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15429, + "offset": 19290, "length": 2, "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" + "offset": 33456, + "length": 2, + "value": "\"\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" + "offset": 1206, + "length": 5, + "value": "\"c2d\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" + "offset": 281, + "length": 6, + "value": "\"EMEA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" + "offset": 327, + "length": 4, + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" + "offset": 123, + "length": 6, + "value": "\"PROD\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" + "offset": 281, + "length": 6, + "value": "\"EMEA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" + "kind": "StringLiteral", + "offset": 305, + "length": 7, + "value": "\"AVNET\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" + "offset": 327, + "length": 4, + "value": "\"QA\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" + "offset": 387, + "length": 4, + "value": "\"az\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" + "offset": 407, + "length": 5, + "value": "\"aws\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" + "offset": 470, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" + "offset": 511, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", @@ -21386,1407 +10184,994 @@ { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1118, + "offset": 1120, "length": 33, "value": "\"https:\/\/discovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1186, + "offset": 1191, + "length": 35, + "value": "\"https:\/\/eudiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1261, "length": 61, "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1285, + "offset": 1360, "length": 36, "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1392, + "offset": 1467, "length": 40, "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 1497, + "offset": 1572, "length": 6, "value": "\"?pf=\"" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2702, - "length": 61, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2721, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2751, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2762, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, + "offset": 3047, "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" + "value": "true" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" + "kind": "StringLiteral", + "offset": 3129, + "length": 7, + "value": "\"M_ios\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" + "kind": "StringLiteral", + "offset": 3162, + "length": 5, + "value": "\"2.1\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" + "kind": "StringLiteral", + "offset": 3198, + "length": 6, + "value": "\"mqtt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" + "kind": "StringLiteral", + "offset": 3235, + "length": 6, + "value": "\"http\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" + "kind": "StringLiteral", + "offset": 3272, + "length": 6, + "value": "\"amqp\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" + "kind": "FloatLiteral", + "offset": 3309, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" + "kind": "StringLiteral", + "offset": 3339, + "length": 9, + "value": "\"isDebug\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" + "offset": 3379, + "length": 14, + "value": "\"discoveryUrl\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" + "offset": 3423, + "length": 13, + "value": "\"Certificate\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" + "offset": 3463, + "length": 10, + "value": "\"Password\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" + "offset": 3503, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" + "kind": "IntegerLiteral", + "offset": 3540, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" + "kind": "IntegerLiteral", + "offset": 3571, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" + "kind": "BooleanLiteral", + "offset": 3601, + "length": 5, + "value": "false" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" + "kind": "FloatLiteral", + "offset": 3644, + "length": 4, + "value": "10.0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" + "kind": "Dictionary", + "offset": 3684, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4579, + "offset": 3795, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4622, + "offset": 3823, "length": 1, "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4658, + "offset": 3851, "length": 1, "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4696, + "offset": 3879, "length": 1, "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4734, + "offset": 3925, "length": 1, - "value": "4" + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4769, + "offset": 3953, "length": 1, - "value": "5" + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4805, + "offset": 3985, "length": 1, - "value": "6" + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4874, + "offset": 4016, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4063, "length": 1, "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4909, + "offset": 4086, "length": 1, "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4943, + "offset": 4113, "length": 1, "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 4977, + "offset": 4148, "length": 1, "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5011, + "offset": 4171, "length": 1, "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5045, + "offset": 4194, "length": 1, "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5079, + "offset": 4217, "length": 1, "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5113, + "offset": 4243, "length": 1, "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5147, + "offset": 4267, "length": 1, "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5181, + "offset": 4300, "length": 1, "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "IntegerLiteral", - "offset": 5215, + "offset": 4332, "length": 2, "value": "10" }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5390, + "offset": 4405, "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" + "value": "\"cpId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" + "offset": 4442, + "length": 10, + "value": "\"uniqueId\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" + "offset": 4481, + "length": 8, + "value": "\"option\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" + "offset": 4521, + "length": 11, + "value": "\"attribute\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" + "offset": 4562, + "length": 9, + "value": "\"setting\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" + "offset": 4605, + "length": 10, + "value": "\"protocol\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" + "offset": 4644, + "length": 8, + "value": "\"device\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" + "offset": 4684, + "length": 11, + "value": "\"sdkConfig\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6089, + "offset": 4722, "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" + "value": "\"rule\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" + "kind": "IntegerLiteral", + "offset": 4781, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" + "kind": "IntegerLiteral", + "offset": 4824, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" + "kind": "IntegerLiteral", + "offset": 4860, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" + "kind": "IntegerLiteral", + "offset": 4898, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" + "kind": "IntegerLiteral", + "offset": 4936, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" + "kind": "IntegerLiteral", + "offset": 4971, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" + "kind": "IntegerLiteral", + "offset": 5007, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" + "kind": "IntegerLiteral", + "offset": 5076, + "length": 1, + "value": "0" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" + "kind": "IntegerLiteral", + "offset": 5111, + "length": 1, + "value": "1" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" + "kind": "IntegerLiteral", + "offset": 5145, + "length": 1, + "value": "2" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" + "kind": "IntegerLiteral", + "offset": 5179, + "length": 1, + "value": "3" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" + "kind": "IntegerLiteral", + "offset": 5213, + "length": 1, + "value": "4" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" + "kind": "IntegerLiteral", + "offset": 5247, + "length": 1, + "value": "5" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" + "kind": "IntegerLiteral", + "offset": 5281, + "length": 1, + "value": "6" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" + "kind": "IntegerLiteral", + "offset": 5315, + "length": 1, + "value": "7" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" + "kind": "IntegerLiteral", + "offset": 5349, + "length": 1, + "value": "8" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" + "kind": "IntegerLiteral", + "offset": 5383, + "length": 1, + "value": "9" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" + "kind": "IntegerLiteral", + "offset": 5417, + "length": 2, + "value": "10" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" + "kind": "IntegerLiteral", + "offset": 5452, + "length": 2, + "value": "12" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6921, + "offset": 5503, "length": 4, - "value": "\"cv\"" + "value": "\"dt\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" + "offset": 5533, + "length": 3, + "value": "\"d\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" + "offset": 5561, + "length": 5, + "value": "\"ack\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7047, + "offset": 5592, "length": 6, - "value": "\"guid\"" + "value": "\"type\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" + "offset": 5626, + "length": 4, + "value": "\"st\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7138, + "offset": 5659, "length": 5, - "value": "\"ack\"" + "value": "\"msg\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" + "offset": 5689, + "length": 5, + "value": "\"cid\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7226, + "offset": 5752, "length": 4, "value": "\"ec\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7268, + "offset": 5782, "length": 4, - "value": "\"rg\"" + "value": "\"ct\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" + "offset": 5812, + "length": 6, + "value": "\"meta\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" + "offset": 5844, + "length": 5, + "value": "\"has\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" + "offset": 5875, + "length": 3, + "value": "\"p\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7441, + "offset": 5928, "length": 4, - "value": "\"mt\"" + "value": "\"df\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7483, + "offset": 5958, "length": 4, - "value": "\"dn\"" + "value": "\"cd\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" + "offset": 5988, + "length": 4, + "value": "\"at\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 341, + "offset": 6019, "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" + "value": "\"gtw\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" + "offset": 6050, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" + "offset": 6079, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" + "offset": 6110, + "length": 6, + "value": "\"edge\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" + "offset": 6142, + "length": 4, + "value": "\"pf\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2289, + "offset": 6173, "length": 5, - "value": "\"\"" + "value": "\"hwv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" + "offset": 6205, + "length": 5, + "value": "\"swv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" + "offset": 6235, + "length": 3, + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" + "offset": 6291, + "length": 6, + "value": "\"cpId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" + "offset": 6328, + "length": 10, + "value": "\"uniqueId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" + "offset": 6369, + "length": 3, + "value": "\"t\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" + "offset": 6403, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" + "offset": 6438, + "length": 3, + "value": "\"d\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" + "offset": 6472, + "length": 5, + "value": "\"sdk\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2822, + "offset": 6508, "length": 3, - "value": "\"\/\"" + "value": "\"l\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" + "offset": 6542, + "length": 3, + "value": "\"e\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" + "offset": 6576, + "length": 3, + "value": "\"v\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6610, + "length": 6, + "value": "\"data\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" + "offset": 6647, + "length": 4, + "value": "\"id\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 2465, - "length": 22, - "value": "\"SDKClient initialize\"" + "offset": 6682, + "length": 4, + "value": "\"tg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" + "offset": 6717, + "length": 4, + "value": "\"dt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" + "offset": 6752, + "length": 3, + "value": "\"g\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6786, + "length": 7, + "value": "\"error\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" + "offset": 6824, + "length": 9, + "value": "\"desired\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" + "offset": 6864, + "length": 6, + "value": "\"time\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6901, + "length": 5, + "value": "\"dtg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" + "offset": 6937, + "length": 5, + "value": "\"has\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" + "offset": 6973, + "length": 6, + "value": "\"attr\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7010, + "length": 5, + "value": "\"set\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" + "offset": 7046, + "length": 3, + "value": "\"r\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7080, + "length": 5, + "value": "\"ota\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7123, + "length": 4, + "value": "\"cv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" + "offset": 7165, + "length": 4, + "value": "\"sg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 7207, + "length": 4, + "value": "\"ct\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7249, + "length": 6, + "value": "\"guid\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" + "offset": 7293, + "length": 9, + "value": "\"command\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7340, + "length": 5, + "value": "\"ack\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" + "offset": 7383, + "length": 7, + "value": "\"ackId\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7428, + "length": 4, + "value": "\"ec\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" + "offset": 7470, + "length": 4, + "value": "\"rg\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7512, + "length": 4, + "value": "\"dv\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" + "offset": 7554, + "length": 4, + "value": "\"ln\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7596, + "length": 9, + "value": "\"rptdata\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" + "offset": 7643, + "length": 4, + "value": "\"mt\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7685, + "length": 4, + "value": "\"dn\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" + "offset": 7727, + "length": 3, + "value": "\"p\"" }, { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7768, + "length": 9, + "value": "\"message\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" + "offset": 2071, + "length": 16, + "value": "\"^[a-zA-Z0-9]+$\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" + "kind": "StringLiteral", + "offset": 2120, + "length": 17, + "value": "\"^[\\w\\d—-]*$\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" + "offset": 6619, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" + "kind": "StringLiteral", + "offset": 6639, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" + "offset": 6867, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" + "offset": 6887, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 7117, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 7137, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" + "kind": "StringLiteral", + "offset": 8017, + "length": 2, + "value": "\"\"" }, { "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", "kind": "IntegerLiteral", - "offset": 12454, + "offset": 11038, "length": 1, "value": "0" } diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index b69f354..7c85d95 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation @@ -141,7 +140,7 @@ public struct OfflineStorageOption { } public enum IOTCEnvironment : Swift.String, Swift.CaseIterable { case PROD - case DEV + case EU case AVNET case QA public init?(rawValue: Swift.String) @@ -220,7 +219,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2.SDKClient - public func initialize(config: IoTConnect2.IoTConnectConfig) + public func initialize(config: IoTConnect2.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 48a3915..122272d 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index b69f354..7c85d95 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2 -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2 import CocoaMQTT import CommonCrypto import Foundation @@ -141,7 +140,7 @@ public struct OfflineStorageOption { } public enum IOTCEnvironment : Swift.String, Swift.CaseIterable { case PROD - case DEV + case EU case AVNET case QA public init?(rawValue: Swift.String) @@ -220,7 +219,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2.SDKClient - public func initialize(config: IoTConnect2.IoTConnectConfig) + public func initialize(config: IoTConnect2.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources index 4c0cd9f..bd0b790 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/IoTConnect2.framework/_CodeSignature/CodeResources @@ -6,11 +6,11 @@ Headers/IoTConnect2-Swift.h - IP8BlqmMYzL2FgCHaCmNG1HAh1M= + GhK26ItL/lwitT6yp+aWm5TEskE= Info.plist - fiib3AsMzx70+iFsJJGUX/UMiAc= + yvc7bt2Sn7XK/y8NLUvzGpCRCoM= LICENSE @@ -18,43 +18,43 @@ Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.abi.json - ollTdEi5moD5kMAksBBHY9eYSKw= + k3zhYol37FFYbMu9ZbN+EuY7SVE= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - vCE2BV9pJwA6smTEi+7yc6x/SOk= + vMxh5DB4VBAQpm79YEwnTDUK37Q= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc - L/CK+YmaZvUjlobdwadHVCwFXfk= + 3rHSEnRlpE5N4UY/RAt4w9KuI98= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface - vCE2BV9pJwA6smTEi+7yc6x/SOk= + vMxh5DB4VBAQpm79YEwnTDUK37Q= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule - oKpEvQynqNs71wEz9I0I9icRcdA= + 9MxOKEJiTR/qWo0nMuoO6gJBvdA= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json - ollTdEi5moD5kMAksBBHY9eYSKw= + k3zhYol37FFYbMu9ZbN+EuY7SVE= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - kzD8BULaRBBG08EjEGR63Tqdy6o= + PHt2uhfvpqyGCSp1PJban1lTfro= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - hD5T9nj0i4lPFFEjt6ee0HBI0R8= + 5NEwt1XkoCxIhZ0THwkyt2QlNA0= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - kzD8BULaRBBG08EjEGR63Tqdy6o= + PHt2uhfvpqyGCSp1PJban1lTfro= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - rccdKLCxFCJAnQtxJPktx3avdZM= + 9+hqIzrlhElATU3YxzYEk2Kdu+M= Modules/module.modulemap @@ -67,7 +67,7 @@ hash2 - shmZYGehmFCjzd6uF+STWkKX658heynu431qu3+KC7U= + B9N2fdn6GpLHirRMdWYVjg5PNOJcBtbYX3km3bun5LY= LICENSE @@ -81,70 +81,70 @@ hash2 - fLH2P2LNOOqBvyzGHS5z0Z+jzEa9KtPYFUFcM9mv+2E= + luvN1TIJBHKUEHbEwJ7wOaMib1ZJhI0e/fDAWh6JR4Y= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - BvoirQP7/cQ8OOazUihj/dtgljINKNZxn5Bbyh9QG+A= + Fv75ISXgA8J1iS8o/ro0hKdxnuQrRcgK/dUXQG9qJDQ= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - 0oD1N8IzNCQIKbuVxXi1xWPgSKWUogMwRG+8hL2Klts= + cNczuW1d9qYZt5oolBhWHuEjSvaA/Ze9y02l9E/l2QI= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - BvoirQP7/cQ8OOazUihj/dtgljINKNZxn5Bbyh9QG+A= + Fv75ISXgA8J1iS8o/ro0hKdxnuQrRcgK/dUXQG9qJDQ= Modules/IoTConnect2.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - LzcQSBBQg0VZWKYjiyb4q/HdaxRrQWI41TnshDVwbak= + +KNUDU/sFopkKdHecmXZ/cWD+6pd5lhtGONPxHXCzSE= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - fLH2P2LNOOqBvyzGHS5z0Z+jzEa9KtPYFUFcM9mv+2E= + luvN1TIJBHKUEHbEwJ7wOaMib1ZJhI0e/fDAWh6JR4Y= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - AhYdzZPyWzzQmX470nm8PIGiJNJ58rt5sAElnAfdL+o= + p2hsRKue4JZ7dQtfBxiT80+DrQo5sTCAVnzohAEM5zs= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - gom7gTB6qZzpSC+Op3c/WhIuGE7R4PcMxHf7kW0q644= + Y1ZsbPnNIGdieqvb8xn48AmCO9XgU9oIkZDfmBk1iCc= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - AhYdzZPyWzzQmX470nm8PIGiJNJ58rt5sAElnAfdL+o= + p2hsRKue4JZ7dQtfBxiT80+DrQo5sTCAVnzohAEM5zs= Modules/IoTConnect2.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - Ap2Hzt3asQ+3iwq09haZ3EsUz1oXOWUrPOu5z8PQk+8= + Os+0Q2r4EkcN7V5TIFY402mB5KwSgc0hCwc17+ilZts= Modules/module.modulemap diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 index 976250b..3ffe0a6 100644 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 and b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/DWARF/IoTConnect2 differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml index 1e0ad3f..bd55432 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2.yml @@ -2,1828 +2,1678 @@ triple: 'arm64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' relocations: - - { offsetInCU: 0x34, offset: 0x5847B, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6B9F0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x584B0, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6BA20, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E028, symBinAddr: 0x85328, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58540, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x2B98, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5855C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x2BDC, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x58578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x2BE0, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x585D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x2E9C, symSize: 0xD84 } - - { offsetInCU: 0x470, offset: 0x58936, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1144, symBinAddr: 0x3C20, symSize: 0x384 } - - { offsetInCU: 0x4D3, offset: 0x58999, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x14C8, symBinAddr: 0x3FA4, symSize: 0x20 } - - { offsetInCU: 0x500, offset: 0x589C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1694, symBinAddr: 0x4170, symSize: 0x698 } - - { offsetInCU: 0x804, offset: 0x58CCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D2C, symBinAddr: 0x4808, symSize: 0x3D4 } - - { offsetInCU: 0xABA, offset: 0x58F80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2100, symBinAddr: 0x4BDC, symSize: 0x914 } - - { offsetInCU: 0xF90, offset: 0x59456, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A14, symBinAddr: 0x54F0, symSize: 0x668 } - - { offsetInCU: 0x138A, offset: 0x59850, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x307C, symBinAddr: 0x5B58, symSize: 0x3C18 } - - { offsetInCU: 0x2E80, offset: 0x5B346, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6CA4, symBinAddr: 0x9770, symSize: 0x150 } - - { offsetInCU: 0x2F6A, offset: 0x5B430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6DF4, symBinAddr: 0x98C0, symSize: 0x304 } - - { offsetInCU: 0x315B, offset: 0x5B621, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x70F8, symBinAddr: 0x9BC4, symSize: 0x3C8 } - - { offsetInCU: 0x34C4, offset: 0x5B98A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x74C0, symBinAddr: 0x9F8C, symSize: 0x2E4 } - - { offsetInCU: 0x3698, offset: 0x5BB5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x77A4, symBinAddr: 0xA270, symSize: 0x240 } - - { offsetInCU: 0x382A, offset: 0x5BCF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x79E4, symBinAddr: 0xA4B0, symSize: 0x244 } - - { offsetInCU: 0x39BC, offset: 0x5BE82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C28, symBinAddr: 0xA6F4, symSize: 0x430 } - - { offsetInCU: 0x3B25, offset: 0x5BFEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x8058, symBinAddr: 0xAB24, symSize: 0x650 } - - { offsetInCU: 0x3E38, offset: 0x5C2FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x86A8, symBinAddr: 0xB174, symSize: 0x224 } - - { offsetInCU: 0x4049, offset: 0x5C50F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9AF4, symBinAddr: 0xC5C0, symSize: 0x1514 } - - { offsetInCU: 0x5725, offset: 0x5DBEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x2B1C, symSize: 0x3C } - - { offsetInCU: 0x5755, offset: 0x5DC1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x2B58, symSize: 0x40 } - - { offsetInCU: 0x592D, offset: 0x5DDF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x14E8, symBinAddr: 0x3FC4, symSize: 0x8 } - - { offsetInCU: 0x5941, offset: 0x5DE07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x14F0, symBinAddr: 0x3FCC, symSize: 0x3C } - - { offsetInCU: 0x5955, offset: 0x5DE1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x152C, symBinAddr: 0x4008, symSize: 0x168 } - - { offsetInCU: 0x5E9B, offset: 0x5E361, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8940, symBinAddr: 0xB40C, symSize: 0xC } - - { offsetInCU: 0x5EAF, offset: 0x5E375, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x894C, symBinAddr: 0xB418, symSize: 0x4 } - - { offsetInCU: 0x5EC3, offset: 0x5E389, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8950, symBinAddr: 0xB41C, symSize: 0x20 } - - { offsetInCU: 0x5ED7, offset: 0x5E39D, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x8970, symBinAddr: 0xB43C, symSize: 0x28 } - - { offsetInCU: 0x5FE8, offset: 0x5E4AE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8EA8, symBinAddr: 0xB974, symSize: 0x2C } - - { offsetInCU: 0x5FFC, offset: 0x5E4C2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8ED4, symBinAddr: 0xB9A0, symSize: 0x2C } - - { offsetInCU: 0x6010, offset: 0x5E4D6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8F40, symBinAddr: 0xBA0C, symSize: 0x2C } - - { offsetInCU: 0x6024, offset: 0x5E4EA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8F6C, symBinAddr: 0xBA38, symSize: 0x2C } - - { offsetInCU: 0x6059, offset: 0x5E51F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x9188, symBinAddr: 0xBC54, symSize: 0x210 } - - { offsetInCU: 0x60AB, offset: 0x5E571, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x9398, symBinAddr: 0xBE64, symSize: 0x68 } - - { offsetInCU: 0x610C, offset: 0x5E5D2, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x955C, symBinAddr: 0xC028, symSize: 0x1DC } - - { offsetInCU: 0x6657, offset: 0x5EB1D, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB078, symBinAddr: 0xDB44, symSize: 0x40 } - - { offsetInCU: 0x666B, offset: 0x5EB31, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB0B8, symBinAddr: 0xDB84, symSize: 0x20 } - - { offsetInCU: 0x667F, offset: 0x5EB45, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB0D8, symBinAddr: 0xDBA4, symSize: 0x10 } - - { offsetInCU: 0x6693, offset: 0x5EB59, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB0E8, symBinAddr: 0xDBB4, symSize: 0x3C } - - { offsetInCU: 0x66A7, offset: 0x5EB6D, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB184, symBinAddr: 0xDC50, symSize: 0x44 } - - { offsetInCU: 0x66BB, offset: 0x5EB81, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB334, symBinAddr: 0xDE00, symSize: 0x10 } - - { offsetInCU: 0x66CF, offset: 0x5EB95, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB344, symBinAddr: 0xDE10, symSize: 0x10 } - - { offsetInCU: 0x66E3, offset: 0x5EBA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xB354, symBinAddr: 0xDE20, symSize: 0x5C } - - { offsetInCU: 0x66F7, offset: 0x5EBBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xB3B0, symBinAddr: 0xDE7C, symSize: 0x30C } - - { offsetInCU: 0x670B, offset: 0x5EBD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB6BC, symBinAddr: 0xE188, symSize: 0x240 } - - { offsetInCU: 0x671F, offset: 0x5EBE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB8FC, symBinAddr: 0xE3C8, symSize: 0x70 } - - { offsetInCU: 0x6733, offset: 0x5EBF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xB96C, symBinAddr: 0xE438, symSize: 0x34 } - - { offsetInCU: 0x6747, offset: 0x5EC0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xB9A0, symBinAddr: 0xE46C, symSize: 0x174 } - - { offsetInCU: 0x675B, offset: 0x5EC21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xBB14, symBinAddr: 0xE5E0, symSize: 0xB4 } - - { offsetInCU: 0x676F, offset: 0x5EC35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xBBC8, symBinAddr: 0xE694, symSize: 0x10 } - - { offsetInCU: 0x6783, offset: 0x5EC49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xBBD8, symBinAddr: 0xE6A4, symSize: 0x34 } - - { offsetInCU: 0x6797, offset: 0x5EC5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xBC8C, symBinAddr: 0xE758, symSize: 0x5C } - - { offsetInCU: 0x67AB, offset: 0x5EC71, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBD8C, symBinAddr: 0xE858, symSize: 0x2C } - - { offsetInCU: 0x67BF, offset: 0x5EC85, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBDB8, symBinAddr: 0xE884, symSize: 0x2C } - - { offsetInCU: 0x67D3, offset: 0x5EC99, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBDE4, symBinAddr: 0xE8B0, symSize: 0x2C } - - { offsetInCU: 0x67E7, offset: 0x5ECAD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBE10, symBinAddr: 0xE8DC, symSize: 0x2C } - - { offsetInCU: 0x67FB, offset: 0x5ECC1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBE3C, symBinAddr: 0xE908, symSize: 0x2C } - - { offsetInCU: 0x680F, offset: 0x5ECD5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBE68, symBinAddr: 0xE934, symSize: 0x2C } - - { offsetInCU: 0x6823, offset: 0x5ECE9, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBE94, symBinAddr: 0xE960, symSize: 0x2C } - - { offsetInCU: 0x6C2B, offset: 0x5F0F1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x89AC, symBinAddr: 0xB478, symSize: 0x14 } - - { offsetInCU: 0x6C69, offset: 0x5F12F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x89CC, symBinAddr: 0xB498, symSize: 0x8 } - - { offsetInCU: 0x6CB8, offset: 0x5F17E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x89D4, symBinAddr: 0xB4A0, symSize: 0x14 } - - { offsetInCU: 0x6D55, offset: 0x5F21B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x89E8, symBinAddr: 0xB4B4, symSize: 0x14 } - - { offsetInCU: 0x6DEA, offset: 0x5F2B0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x89FC, symBinAddr: 0xB4C8, symSize: 0x14 } - - { offsetInCU: 0x6E87, offset: 0x5F34D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A10, symBinAddr: 0xB4DC, symSize: 0x30 } - - { offsetInCU: 0x6FFA, offset: 0x5F4C0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8A40, symBinAddr: 0xB50C, symSize: 0x2C } - - { offsetInCU: 0x7187, offset: 0x5F64D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8A6C, symBinAddr: 0xB538, symSize: 0x24 } - - { offsetInCU: 0x7273, offset: 0x5F739, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8A90, symBinAddr: 0xB55C, symSize: 0x14 } - - { offsetInCU: 0x72D9, offset: 0x5F79F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8AA4, symBinAddr: 0xB570, symSize: 0x14 } - - { offsetInCU: 0x733F, offset: 0x5F805, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8AB8, symBinAddr: 0xB584, symSize: 0x14 } - - { offsetInCU: 0x73B4, offset: 0x5F87A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8ACC, symBinAddr: 0xB598, symSize: 0x14 } - - { offsetInCU: 0x745D, offset: 0x5F923, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8AE0, symBinAddr: 0xB5AC, symSize: 0x14 } - - { offsetInCU: 0x74D4, offset: 0x5F99A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8AF4, symBinAddr: 0xB5C0, symSize: 0x14 } - - { offsetInCU: 0x758C, offset: 0x5FA52, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B08, symBinAddr: 0xB5D4, symSize: 0x14 } - - { offsetInCU: 0x7626, offset: 0x5FAEC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B1C, symBinAddr: 0xB5E8, symSize: 0x10 } - - { offsetInCU: 0x768E, offset: 0x5FB54, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B2C, symBinAddr: 0xB5F8, symSize: 0x28 } - - { offsetInCU: 0x76AA, offset: 0x5FB70, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8B54, symBinAddr: 0xB620, symSize: 0x14 } - - { offsetInCU: 0x7726, offset: 0x5FBEC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8B84, symBinAddr: 0xB650, symSize: 0x14 } - - { offsetInCU: 0x7757, offset: 0x5FC1D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8B98, symBinAddr: 0xB664, symSize: 0x14 } - - { offsetInCU: 0x7788, offset: 0x5FC4E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8BAC, symBinAddr: 0xB678, symSize: 0x14 } - - { offsetInCU: 0x77B9, offset: 0x5FC7F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8BC0, symBinAddr: 0xB68C, symSize: 0x30 } - - { offsetInCU: 0x77E8, offset: 0x5FCAE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8BF0, symBinAddr: 0xB6BC, symSize: 0x2C } - - { offsetInCU: 0x7819, offset: 0x5FCDF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C1C, symBinAddr: 0xB6E8, symSize: 0x24 } - - { offsetInCU: 0x784A, offset: 0x5FD10, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8C40, symBinAddr: 0xB70C, symSize: 0x14 } - - { offsetInCU: 0x787B, offset: 0x5FD41, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8C54, symBinAddr: 0xB720, symSize: 0x14 } - - { offsetInCU: 0x78AC, offset: 0x5FD72, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8C68, symBinAddr: 0xB734, symSize: 0x14 } - - { offsetInCU: 0x78DD, offset: 0x5FDA3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8C7C, symBinAddr: 0xB748, symSize: 0x14 } - - { offsetInCU: 0x790E, offset: 0x5FDD4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8C90, symBinAddr: 0xB75C, symSize: 0x14 } - - { offsetInCU: 0x793F, offset: 0x5FE05, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8CA4, symBinAddr: 0xB770, symSize: 0x14 } - - { offsetInCU: 0x7970, offset: 0x5FE36, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8CB8, symBinAddr: 0xB784, symSize: 0x14 } - - { offsetInCU: 0x79A1, offset: 0x5FE67, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8CCC, symBinAddr: 0xB798, symSize: 0x10 } - - { offsetInCU: 0x79D2, offset: 0x5FE98, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8CDC, symBinAddr: 0xB7A8, symSize: 0x28 } - - { offsetInCU: 0x79EE, offset: 0x5FEB4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D04, symBinAddr: 0xB7D0, symSize: 0x14 } - - { offsetInCU: 0x7A2E, offset: 0x5FEF4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D24, symBinAddr: 0xB7F0, symSize: 0x40 } - - { offsetInCU: 0x7AAC, offset: 0x5FF72, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8D64, symBinAddr: 0xB830, symSize: 0x70 } - - { offsetInCU: 0x7B3F, offset: 0x60005, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E1C, symBinAddr: 0xB8E8, symSize: 0x4 } - - { offsetInCU: 0x7B5F, offset: 0x60025, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E1C, symBinAddr: 0xB8E8, symSize: 0x4 } - - { offsetInCU: 0x7B7F, offset: 0x60045, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E20, symBinAddr: 0xB8EC, symSize: 0x4 } - - { offsetInCU: 0x7B9F, offset: 0x60065, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E20, symBinAddr: 0xB8EC, symSize: 0x4 } - - { offsetInCU: 0x7BC5, offset: 0x6008B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E24, symBinAddr: 0xB8F0, symSize: 0x40 } - - { offsetInCU: 0x7C34, offset: 0x600FA, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8E64, symBinAddr: 0xB930, symSize: 0x8 } - - { offsetInCU: 0x7C5F, offset: 0x60125, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8E6C, symBinAddr: 0xB938, symSize: 0x3C } - - { offsetInCU: 0x7C90, offset: 0x60156, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8F98, symBinAddr: 0xBA64, symSize: 0x14 } - - { offsetInCU: 0x7CC1, offset: 0x60187, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8FAC, symBinAddr: 0xBA78, symSize: 0x3C } - - { offsetInCU: 0x7D01, offset: 0x601C7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FE8, symBinAddr: 0xBAB4, symSize: 0x88 } - - { offsetInCU: 0x7D82, offset: 0x60248, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9104, symBinAddr: 0xBBD0, symSize: 0x84 } - - { offsetInCU: 0x7DB6, offset: 0x6027C, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x9738, symBinAddr: 0xC204, symSize: 0xB0 } - - { offsetInCU: 0x7EA2, offset: 0x60368, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x97E8, symBinAddr: 0xC2B4, symSize: 0x1F0 } - - { offsetInCU: 0x80D1, offset: 0x60597, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x80F1, offset: 0x605B7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8105, offset: 0x605CB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8125, offset: 0x605EB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8139, offset: 0x605FF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x814D, offset: 0x60613, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8161, offset: 0x60627, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB008, symBinAddr: 0xDAD4, symSize: 0x38 } - - { offsetInCU: 0x8244, offset: 0x6070A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x8264, offset: 0x6072A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x8278, offset: 0x6073E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x8298, offset: 0x6075E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x82AC, offset: 0x60772, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x82C0, offset: 0x60786, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x82D4, offset: 0x6079A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB040, symBinAddr: 0xDB0C, symSize: 0x38 } - - { offsetInCU: 0x837B, offset: 0x60841, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBEC0, symBinAddr: 0xE98C, symSize: 0x80 } - - { offsetInCU: 0x840C, offset: 0x608D2, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBF40, symBinAddr: 0xEA0C, symSize: 0x90 } - - { offsetInCU: 0x85CE, offset: 0x60A94, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x907C, symBinAddr: 0xBB48, symSize: 0x10 } - - { offsetInCU: 0x85EA, offset: 0x60AB0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x908C, symBinAddr: 0xBB58, symSize: 0xC } - - { offsetInCU: 0x8654, offset: 0x60B1A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x9098, symBinAddr: 0xBB64, symSize: 0x44 } - - { offsetInCU: 0x867D, offset: 0x60B43, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x90DC, symBinAddr: 0xBBA8, symSize: 0x28 } - - { offsetInCU: 0x86B8, offset: 0x60B7E, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x9070, symBinAddr: 0xBB3C, symSize: 0xC } - - { offsetInCU: 0x8796, offset: 0x60C5C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x89C0, symBinAddr: 0xB48C, symSize: 0xC } - - { offsetInCU: 0x87C8, offset: 0x60C8E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8B68, symBinAddr: 0xB634, symSize: 0x10 } - - { offsetInCU: 0x87E4, offset: 0x60CAA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8B78, symBinAddr: 0xB644, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x60EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xEACC, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x60ED6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xEACC, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x60F06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xEADC, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x61035, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xEB08, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x61049, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xEB1C, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x61089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xEB2C, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x610D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0xEB4C, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x6113E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0xEB64, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x611B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0xEB90, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x611E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0xEB98, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x61214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0xEBBC, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x61230, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0xEBC8, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x6124C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2058, symBinAddr: 0x10B54, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x61292, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0xEC24, symSize: 0x40C } - - { offsetInCU: 0x2F5, offset: 0x612E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1388, symBinAddr: 0xFE84, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x6131E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x13D8, symBinAddr: 0xFED4, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x61341, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x242C, symBinAddr: 0x10F28, symSize: 0x144C } - - { offsetInCU: 0x381, offset: 0x61373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x534, symBinAddr: 0xF030, symSize: 0x100 } - - { offsetInCU: 0x3CD, offset: 0x613BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1428, symBinAddr: 0xFF24, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x61413, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1430, symBinAddr: 0xFF2C, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x614F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1470, symBinAddr: 0xFF6C, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61576, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xFFCC, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61596, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xFFCC, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x615B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14D4, symBinAddr: 0xFFD0, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x615E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x14FC, symBinAddr: 0xFFF8, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x61603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1508, symBinAddr: 0x10004, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x6161F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3878, symBinAddr: 0x12374, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x61663, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvgTf4d_n', symObjAddr: 0x38E4, symBinAddr: 0x123E0, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x61697, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1564, symBinAddr: 0x10060, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x616CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15B4, symBinAddr: 0x100B0, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x616F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x38F0, symBinAddr: 0x123EC, symSize: 0x248 } - - { offsetInCU: 0x771, offset: 0x61763, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x634, symBinAddr: 0xF130, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x6178E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1604, symBinAddr: 0x10100, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x617B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x160C, symBinAddr: 0x10108, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x617EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1630, symBinAddr: 0x1012C, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x61806, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x163C, symBinAddr: 0x10138, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x61822, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5A94, symBinAddr: 0x1454C, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x61868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x654, symBinAddr: 0xF150, symSize: 0x17C } - - { offsetInCU: 0x8CB, offset: 0x618BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1698, symBinAddr: 0x10194, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x618F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16E8, symBinAddr: 0x101E4, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x61917, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5C2C, symBinAddr: 0x146E4, symSize: 0x310 } - - { offsetInCU: 0x975, offset: 0x61967, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x7D0, symBinAddr: 0xF2CC, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x61992, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1728, symBinAddr: 0x10224, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x619BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1730, symBinAddr: 0x1022C, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x619EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1754, symBinAddr: 0x10250, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x61A0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5F3C, symBinAddr: 0x149F4, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x61A50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7F0, symBinAddr: 0xF2EC, symSize: 0x154 } - - { offsetInCU: 0xAB3, offset: 0x61AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0x102AC, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x61ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17F0, symBinAddr: 0x102EC, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x61AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6094, symBinAddr: 0x14B4C, symSize: 0x2C8 } - - { offsetInCU: 0xB51, offset: 0x61B43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x944, symBinAddr: 0xF440, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x61B6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1828, symBinAddr: 0x10324, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x61B99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1830, symBinAddr: 0x1032C, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x61BCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1854, symBinAddr: 0x10350, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x61BE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0x1035C, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x61C02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x635C, symBinAddr: 0x14E14, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x61C48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x964, symBinAddr: 0xF460, symSize: 0x1A4 } - - { offsetInCU: 0xCAB, offset: 0x61C9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18BC, symBinAddr: 0x103B8, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x61CD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x192C, symBinAddr: 0x10428, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x61CF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x64A4, symBinAddr: 0x14F5C, symSize: 0x4D8 } - - { offsetInCU: 0xD55, offset: 0x61D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xB08, symBinAddr: 0xF604, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x10488, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x61D9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1994, symBinAddr: 0x10490, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x61DCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x19B8, symBinAddr: 0x104B4, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x61DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x19C4, symBinAddr: 0x104C0, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x61E06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6A48, symBinAddr: 0x15500, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x61E4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB28, symBinAddr: 0xF624, symSize: 0x1F4 } - - { offsetInCU: 0xEAF, offset: 0x61EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x1051C, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x61ED8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A84, symBinAddr: 0x10580, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x61EFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CBC, symBinAddr: 0x15774, symSize: 0x57C } - - { offsetInCU: 0xF59, offset: 0x61F4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xD1C, symBinAddr: 0xF818, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61F96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1AD4, symBinAddr: 0x105D0, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x62027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1AEC, symBinAddr: 0x105E8, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x6210A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1B30, symBinAddr: 0x1062C, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x6217C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0x10694, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x621A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x1069C, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x621D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC4, symBinAddr: 0x106C0, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x621F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x106CC, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x62210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x727C, symBinAddr: 0x15D34, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x62256, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD34, symBinAddr: 0xF830, symSize: 0x118 } - - { offsetInCU: 0x12B9, offset: 0x622AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C2C, symBinAddr: 0x10728, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x622E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C58, symBinAddr: 0x10754, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x62305, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7334, symBinAddr: 0x15DEC, symSize: 0x1A0 } - - { offsetInCU: 0x136F, offset: 0x62361, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xE4C, symBinAddr: 0xF948, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x6238C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1C74, symBinAddr: 0x10770, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x623B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C7C, symBinAddr: 0x10778, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x623E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1CA0, symBinAddr: 0x1079C, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x62404, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1CAC, symBinAddr: 0x107A8, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x62420, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7518, symBinAddr: 0x15FD0, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x62466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE6C, symBinAddr: 0xF968, symSize: 0x1CC } - - { offsetInCU: 0x14C9, offset: 0x624BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D08, symBinAddr: 0x10804, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x624F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1D60, symBinAddr: 0x1085C, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x62515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x772C, symBinAddr: 0x161E4, symSize: 0x360 } - - { offsetInCU: 0x1567, offset: 0x62559, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1038, symBinAddr: 0xFB34, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DA8, symBinAddr: 0x108A4, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x625AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x108AC, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x625E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DD4, symBinAddr: 0x108D0, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x625FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0x108DC, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x62618, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7A8C, symBinAddr: 0x16544, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x6265E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1058, symBinAddr: 0xFB54, symSize: 0x1EC } - - { offsetInCU: 0x16C1, offset: 0x626B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E3C, symBinAddr: 0x10938, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x626EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E84, symBinAddr: 0x10980, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x6270D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C60, symBinAddr: 0x16718, symSize: 0x380 } - - { offsetInCU: 0x176B, offset: 0x6275D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1244, symBinAddr: 0xFD40, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x62788, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F48, symBinAddr: 0x10A44, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x627B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F50, symBinAddr: 0x10A4C, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x627E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1F74, symBinAddr: 0x10A70, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x62800, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F80, symBinAddr: 0x10A7C, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x6281C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8068, symBinAddr: 0x16B20, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x62862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x125C, symBinAddr: 0xFD58, symSize: 0x12C } - - { offsetInCU: 0x18C5, offset: 0x628B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FDC, symBinAddr: 0x10AD8, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x628EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2020, symBinAddr: 0x10B1C, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x62911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8164, symBinAddr: 0x16C1C, symSize: 0x1CC } - - { offsetInCU: 0x195C, offset: 0x6294E, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3B78, symBinAddr: 0x12634, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x62962, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3B9C, symBinAddr: 0x12658, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62976, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3BE0, symBinAddr: 0x1269C, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x6298A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3C00, symBinAddr: 0x126BC, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x6299E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3C44, symBinAddr: 0x12700, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x629B2, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3C88, symBinAddr: 0x12744, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x629C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3C90, symBinAddr: 0x12748, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x629DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x3CE0, symBinAddr: 0x12798, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x629EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x3D6C, symBinAddr: 0x12824, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x62A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x3D74, symBinAddr: 0x1282C, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x62A16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x3D78, symBinAddr: 0x12830, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x62A2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x3D7C, symBinAddr: 0x12834, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x62A3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x3D8C, symBinAddr: 0x12844, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62A52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x4654, symBinAddr: 0x1310C, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62A66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x4664, symBinAddr: 0x1311C, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x62A7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4668, symBinAddr: 0x13120, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x62A8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x46AC, symBinAddr: 0x13164, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x62AA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x46B0, symBinAddr: 0x13168, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x62AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x46F4, symBinAddr: 0x131AC, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x62ACA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x46F8, symBinAddr: 0x131B0, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x62ADE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x473C, symBinAddr: 0x131F4, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x62AF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4780, symBinAddr: 0x13238, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x62B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x47C4, symBinAddr: 0x1327C, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x62B1A, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4808, symBinAddr: 0x132C0, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x62B2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x484C, symBinAddr: 0x13304, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62B42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4890, symBinAddr: 0x13348, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62B56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x48D4, symBinAddr: 0x1338C, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x62B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x4918, symBinAddr: 0x133D0, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x62B7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x495C, symBinAddr: 0x13414, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x49A0, symBinAddr: 0x13458, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x62BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x49E4, symBinAddr: 0x1349C, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x62BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4A28, symBinAddr: 0x134E0, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x62BCE, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4A6C, symBinAddr: 0x13524, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x62BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4A78, symBinAddr: 0x13530, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x62BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4B08, symBinAddr: 0x135C0, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x62C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4BC4, symBinAddr: 0x1367C, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x62C1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4BCC, symBinAddr: 0x13684, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4BD0, symBinAddr: 0x13688, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62C46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4BD8, symBinAddr: 0x13690, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x62C5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4BE8, symBinAddr: 0x136A0, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x62C6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4C10, symBinAddr: 0x136C8, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4C54, symBinAddr: 0x1370C, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62C96, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4CC8, symBinAddr: 0x13780, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x62CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4CDC, symBinAddr: 0x13794, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x62CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x4D28, symBinAddr: 0x137E0, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x62CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x4D70, symBinAddr: 0x13828, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x62CE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x4DB8, symBinAddr: 0x13870, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x62CFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x4DC8, symBinAddr: 0x13880, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x62D0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x4E00, symBinAddr: 0x138B8, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x4E74, symBinAddr: 0x1392C, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62D36, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4F30, symBinAddr: 0x139E8, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x62D4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x4F4C, symBinAddr: 0x13A04, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x62D5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x4FC8, symBinAddr: 0x13A80, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5010, symBinAddr: 0x13AC8, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62D86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x5064, symBinAddr: 0x13B1C, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x62D9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x5074, symBinAddr: 0x13B2C, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x62DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x509C, symBinAddr: 0x13B54, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x62DC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x50D8, symBinAddr: 0x13B90, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x62DD6, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5144, symBinAddr: 0x13BFC, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x62DEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5150, symBinAddr: 0x13C08, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x62DFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5194, symBinAddr: 0x13C4C, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x62E12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x51DC, symBinAddr: 0x13C94, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x521C, symBinAddr: 0x13CD4, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x62E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x522C, symBinAddr: 0x13CE4, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x62E4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x527C, symBinAddr: 0x13D34, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62E62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5328, symBinAddr: 0x13DE0, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62E76, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x543C, symBinAddr: 0x13EF4, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x62E8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5468, symBinAddr: 0x13F20, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x62E9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x5504, symBinAddr: 0x13FBC, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x62EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x554C, symBinAddr: 0x14004, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x62EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x55A8, symBinAddr: 0x14060, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x62EDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x55B8, symBinAddr: 0x14070, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x62EEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5610, symBinAddr: 0x140C8, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x62F02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x56D4, symBinAddr: 0x1418C, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x62F16, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5818, symBinAddr: 0x142D0, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x584C, symBinAddr: 0x14304, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62F3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x5900, symBinAddr: 0x143B8, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62F52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5948, symBinAddr: 0x14400, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62F66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x59AC, symBinAddr: 0x14464, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x59BC, symBinAddr: 0x14474, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62F8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x59C0, symBinAddr: 0x14478, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62FA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5A04, symBinAddr: 0x144BC, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5A08, symBinAddr: 0x144C0, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62FCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5A4C, symBinAddr: 0x14504, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62FDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5A50, symBinAddr: 0x14508, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62FF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x697C, symBinAddr: 0x15434, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x63006, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x69C0, symBinAddr: 0x15478, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x6301A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6A04, symBinAddr: 0x154BC, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x6302E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7238, symBinAddr: 0x15CF0, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x63042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x74D4, symBinAddr: 0x15F8C, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x63056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7FE0, symBinAddr: 0x16A98, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x6306A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8024, symBinAddr: 0x16ADC, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x6307E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8330, symBinAddr: 0x16DE8, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x63092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8374, symBinAddr: 0x16E2C, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x630A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x83B8, symBinAddr: 0x16E70, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x630BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x8460, symBinAddr: 0x16F18, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x630CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x84A4, symBinAddr: 0x16F5C, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x630E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8534, symBinAddr: 0x16FEC, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x630F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x85F0, symBinAddr: 0x170A8, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x6310A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x85F4, symBinAddr: 0x170AC, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x6311E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8604, symBinAddr: 0x170BC, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x63132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8694, symBinAddr: 0x1714C, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x63146, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8750, symBinAddr: 0x17208, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x6315A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8754, symBinAddr: 0x1720C, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x6316E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8764, symBinAddr: 0x1721C, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x63182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x87F4, symBinAddr: 0x172AC, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x63196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x88B0, symBinAddr: 0x17368, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x631AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x88B8, symBinAddr: 0x17370, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x631BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x88BC, symBinAddr: 0x17374, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x631D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x88C8, symBinAddr: 0x17380, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x631E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x88D8, symBinAddr: 0x17390, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x631FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8968, symBinAddr: 0x17420, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x6320E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A24, symBinAddr: 0x174DC, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x63222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A28, symBinAddr: 0x174E0, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x63236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A40, symBinAddr: 0x174F8, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x6324A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A44, symBinAddr: 0x174FC, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x6325E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8A54, symBinAddr: 0x1750C, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x63272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8A8C, symBinAddr: 0x17544, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x63286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8B00, symBinAddr: 0x175B8, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x6329A, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8BC4, symBinAddr: 0x1767C, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x632AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x8BE8, symBinAddr: 0x176A0, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x632C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x8C5C, symBinAddr: 0x17714, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x632D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x8CA4, symBinAddr: 0x1775C, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x632EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x8CF8, symBinAddr: 0x177B0, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x632FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x8D08, symBinAddr: 0x177C0, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x63312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x8D40, symBinAddr: 0x177F8, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x63326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x8DA4, symBinAddr: 0x1785C, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x6333A, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8E50, symBinAddr: 0x17908, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x6334E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x8E64, symBinAddr: 0x1791C, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x63362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x8EC8, symBinAddr: 0x17980, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x63376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x8F10, symBinAddr: 0x179C8, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x6338A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x8F60, symBinAddr: 0x17A18, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x6339E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x8F70, symBinAddr: 0x17A28, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x633B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x8FA8, symBinAddr: 0x17A60, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x633C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9014, symBinAddr: 0x17ACC, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x633DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x90C8, symBinAddr: 0x17B80, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x633EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x90EC, symBinAddr: 0x17BA4, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x63402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9158, symBinAddr: 0x17C10, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x63416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x91A0, symBinAddr: 0x17C58, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x6342A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x91F0, symBinAddr: 0x17CA8, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x6343E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9200, symBinAddr: 0x17CB8, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9204, symBinAddr: 0x17CBC, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x63466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9248, symBinAddr: 0x17D00, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x6347A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x924C, symBinAddr: 0x17D04, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x6348E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9290, symBinAddr: 0x17D48, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x634A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9294, symBinAddr: 0x17D4C, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x634B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x92D8, symBinAddr: 0x17D90, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x634CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x92DC, symBinAddr: 0x17D94, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x634DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9320, symBinAddr: 0x17DD8, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x634F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9324, symBinAddr: 0x17DDC, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x63506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9368, symBinAddr: 0x17E20, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x6351A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x936C, symBinAddr: 0x17E24, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x6352E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x93B0, symBinAddr: 0x17E68, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x63542, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x93B4, symBinAddr: 0x17E6C, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x93F8, symBinAddr: 0x17EB0, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x6356A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x93FC, symBinAddr: 0x17EB4, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9440, symBinAddr: 0x17EF8, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x63592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9444, symBinAddr: 0x17EFC, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x635A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9488, symBinAddr: 0x17F40, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x635BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x948C, symBinAddr: 0x17F44, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x635CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94D0, symBinAddr: 0x17F88, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x635E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94D4, symBinAddr: 0x17F8C, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x635F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9518, symBinAddr: 0x17FD0, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x6360A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x951C, symBinAddr: 0x17FD4, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9560, symBinAddr: 0x18018, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x63632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9564, symBinAddr: 0x1801C, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95A8, symBinAddr: 0x18060, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95AC, symBinAddr: 0x18064, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x6366E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x95F0, symBinAddr: 0x180A8, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x63682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x95F4, symBinAddr: 0x180AC, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9638, symBinAddr: 0x180F0, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x636AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x967C, symBinAddr: 0x18134, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x636BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x96C0, symBinAddr: 0x18178, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x636D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9704, symBinAddr: 0x181BC, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x636E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9794, symBinAddr: 0x1824C, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x636FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9850, symBinAddr: 0x18308, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x6370E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9854, symBinAddr: 0x1830C, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x63722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x99B8, symBinAddr: 0x18470, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x99BC, symBinAddr: 0x18474, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x6374A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x99CC, symBinAddr: 0x18484, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x6375E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9A5C, symBinAddr: 0x18514, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x63772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9B18, symBinAddr: 0x185D0, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9B1C, symBinAddr: 0x185D4, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x6379A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B2C, symBinAddr: 0x185E4, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x637AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9B30, symBinAddr: 0x185E8, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x637C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B74, symBinAddr: 0x1862C, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x637D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9B78, symBinAddr: 0x18630, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x637EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9BBC, symBinAddr: 0x18674, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x637FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9BC0, symBinAddr: 0x18678, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x63812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C04, symBinAddr: 0x186BC, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C08, symBinAddr: 0x186C0, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x6383A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9C4C, symBinAddr: 0x18704, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x6384E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9C50, symBinAddr: 0x18708, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x63862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C94, symBinAddr: 0x1874C, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C98, symBinAddr: 0x18750, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x6388A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CDC, symBinAddr: 0x18794, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x6389E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9CE0, symBinAddr: 0x18798, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x638B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D24, symBinAddr: 0x187DC, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x638C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D28, symBinAddr: 0x187E0, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x638DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D6C, symBinAddr: 0x18824, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x638EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D70, symBinAddr: 0x18828, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x6393E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0xEBD4, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x6395A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0xEBFC, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x639A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1494, symBinAddr: 0xFF90, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63A45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1514, symBinAddr: 0x10010, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63A61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x153C, symBinAddr: 0x10038, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63A83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1648, symBinAddr: 0x10144, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x63A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1670, symBinAddr: 0x1016C, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x63AC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x1025C, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x63ADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0x10284, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x63AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x186C, symBinAddr: 0x10368, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x63B1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1894, symBinAddr: 0x10390, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x63B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x19D0, symBinAddr: 0x104CC, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x63B59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0x104F4, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x63BA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1B58, symBinAddr: 0x10654, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63C44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BDC, symBinAddr: 0x106D8, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x63C60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C04, symBinAddr: 0x10700, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1CB8, symBinAddr: 0x107B4, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x63C9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0x107DC, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x63CC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DEC, symBinAddr: 0x108E8, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x63CDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E14, symBinAddr: 0x10910, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1F8C, symBinAddr: 0x10A88, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x63D1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FB4, symBinAddr: 0x10AB0, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x63EC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x18944, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63F43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x18944, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x189C8, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63FBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x18A04, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63FF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x18A58, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x64017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x18A68, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x64042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x128, symBinAddr: 0x18A6C, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x64060, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x13C, symBinAddr: 0x18A80, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x6409A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x150, symBinAddr: 0x18A94, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x640C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x18AA4, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x640F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x18AA8, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x64111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x18AD4, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x64150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x18B08, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x6417E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x18B18, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x641A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x18B1C, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x641C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x18B24, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x64201, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x18B2C, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x6422F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x18B3C, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x6425A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x18B40, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x64278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x18B48, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x642B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x18B50, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x642E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x18B60, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x6430B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x18B64, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x64329, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x18B90, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x64368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x18BC4, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x64396, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x18BD4, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x643C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x18BD8, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x643DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x18C04, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x6441E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x18C38, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x6444C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x18C48, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x64477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x18C4C, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x64495, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x18C58, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x644D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x18C64, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x64501, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x18C74, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x6452C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x18C78, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x6454A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x18C84, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x64588, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x18C90, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x645B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x18CA0, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x645E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x18CA4, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x645F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x18CD4, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x6460A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x18D14, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x6461E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x18DB8, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x64632, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x18EBC, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x18EE8, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x6465A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x18F84, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x6466E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x18FCC, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64682, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x1902C, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64864, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1903C, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x6488F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x195E0, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x648AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x19850, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x648E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x192E8, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x6490E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x19828, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x6492A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x198A8, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64956, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x19900, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64986, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x19A04, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x6499A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x19A94, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x649AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x19B50, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x649C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x19B54, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x649D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x19B64, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x649EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x19BF4, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x649FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x19CB0, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x64A12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x19CB8, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x19CBC, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x64A3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x19CC4, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x64A4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x19CD4, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x19CD8, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64A76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x19D1C, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x64A8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x19D20, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x64BE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x19D6C, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x64C15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x19E80, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64C42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC9printLogs33_D78766567F29622279F8000760588BB6LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x1A258, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64D74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x19E9C, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x64DC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x19EBC, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x64E1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x19F48, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64E44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x19F4C, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x64E6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x19F50, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64E92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x19FC4, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x64EE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x19FC8, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64F3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x1A058, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x1A0BC, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64FD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x1A14C, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x65027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x1A1DC, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x65059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x1A250, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x65075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x1A254, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x650EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x1A304, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x651D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1A9D0, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x6522B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1AA44, symSize: 0x294 } - - { offsetInCU: 0x7C0, offset: 0x65359, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF6C, symBinAddr: 0x1ACD8, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x653D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFD4, symBinAddr: 0x1AD40, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x65416, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1038, symBinAddr: 0x1ADA4, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x6542A, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1048, symBinAddr: 0x1ADB4, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x6543E, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10DC, symBinAddr: 0x1ADC4, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x65452, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1124, symBinAddr: 0x1AE0C, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x65466, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1138, symBinAddr: 0x1AE20, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x6547A, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x117C, symBinAddr: 0x1AE64, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x6548E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11BC, symBinAddr: 0x1AEA4, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x654A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1380, symBinAddr: 0x1B068, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x654B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13B0, symBinAddr: 0x1B098, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x654CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x156C, symBinAddr: 0x1B254, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x65771, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AB8, symBinAddr: 0x83AC8, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x6578B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2AC0, symBinAddr: 0x83AD0, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65799, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1B294, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x657D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1B2C8, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x6580B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1B308, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65836, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1B33C, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65886, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1B37C, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x658B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1B3AC, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x658DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1B3B0, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x658F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1B3D4, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x65928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1B3E8, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x659B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1B458, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x659D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1B458, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x65A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1B4B4, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x65A9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1B520, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x65B27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1B658, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65B46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1B6B4, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x65B6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1B714, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x65B9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1B750, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x65C11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1B888, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x65C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1B8D4, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x65C59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1B924, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x65C88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1B960, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x65CB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1B968, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x65CD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1B998, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x65CF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1B9D4, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x65D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1BA6C, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x65D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x818, symBinAddr: 0x1BA9C, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65D94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x85C, symBinAddr: 0x1BAE0, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x65DC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1BB1C, symSize: 0x68 } - - { offsetInCU: 0x74C, offset: 0x65E6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1BB84, symSize: 0xC0 } - - { offsetInCU: 0x7E5, offset: 0x65F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9C0, symBinAddr: 0x1BC44, symSize: 0xC0 } - - { offsetInCU: 0x865, offset: 0x65F87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xC84, symBinAddr: 0x1BF08, symSize: 0x70 } - - { offsetInCU: 0x88F, offset: 0x65FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xCF4, symBinAddr: 0x1BF78, symSize: 0x30 } - - { offsetInCU: 0x8B4, offset: 0x65FD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xD24, symBinAddr: 0x1BFA8, symSize: 0x188 } - - { offsetInCU: 0x969, offset: 0x6608B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xEAC, symBinAddr: 0x1C130, symSize: 0x14 } - - { offsetInCU: 0x9B6, offset: 0x660D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0xEC0, symBinAddr: 0x1C144, symSize: 0x64 } - - { offsetInCU: 0xA52, offset: 0x66174, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0xF54, symBinAddr: 0x1C1D8, symSize: 0x6C } - - { offsetInCU: 0xB86, offset: 0x662A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x18B8, symBinAddr: 0x1CB3C, symSize: 0x228 } - - { offsetInCU: 0xC17, offset: 0x66339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B44, symBinAddr: 0x1CDC8, symSize: 0x190 } - - { offsetInCU: 0xD1D, offset: 0x6643F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1B524, symSize: 0x88 } - - { offsetInCU: 0xD53, offset: 0x66475, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1B5AC, symSize: 0xAC } - - { offsetInCU: 0xD93, offset: 0x664B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1B6A4, symSize: 0x10 } - - { offsetInCU: 0xDA7, offset: 0x664C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1B704, symSize: 0x10 } - - { offsetInCU: 0xDBB, offset: 0x664DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1B754, symSize: 0x88 } - - { offsetInCU: 0xDF1, offset: 0x66513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1B7DC, symSize: 0xAC } - - { offsetInCU: 0xE31, offset: 0x66553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1BA10, symSize: 0x5C } - - { offsetInCU: 0xE95, offset: 0x665B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xA80, symBinAddr: 0x1BD04, symSize: 0x204 } - - { offsetInCU: 0xF09, offset: 0x6662B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x172C, symBinAddr: 0x1C9B0, symSize: 0x13C } - - { offsetInCU: 0xFD3, offset: 0x666F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0xF24, symBinAddr: 0x1C1A8, symSize: 0x30 } - - { offsetInCU: 0x10C2, offset: 0x667E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x1894, symBinAddr: 0x1CB18, symSize: 0x24 } - - { offsetInCU: 0x1112, offset: 0x66834, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1C244, symSize: 0x21C } - - { offsetInCU: 0x1304, offset: 0x66A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x11DC, symBinAddr: 0x1C460, symSize: 0xC } - - { offsetInCU: 0x135B, offset: 0x66A7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1C46C, symSize: 0x4 } - - { offsetInCU: 0x1377, offset: 0x66A99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1C46C, symSize: 0x4 } - - { offsetInCU: 0x1390, offset: 0x66AB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1C46C, symSize: 0x4 } - - { offsetInCU: 0x13A9, offset: 0x66ACB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11EC, symBinAddr: 0x1C470, symSize: 0x4 } - - { offsetInCU: 0x13C1, offset: 0x66AE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11F0, symBinAddr: 0x1C474, symSize: 0xB8 } - - { offsetInCU: 0x1461, offset: 0x66B83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12E8, symBinAddr: 0x1C56C, symSize: 0x4 } - - { offsetInCU: 0x1479, offset: 0x66B9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x251C, symBinAddr: 0x1D790, symSize: 0x7C } - - { offsetInCU: 0x1556, offset: 0x66C78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x12A8, symBinAddr: 0x1C52C, symSize: 0x40 } - - { offsetInCU: 0x158B, offset: 0x66CAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x12F8, symBinAddr: 0x1C57C, symSize: 0x98 } - - { offsetInCU: 0x1648, offset: 0x66D6A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x1440, symBinAddr: 0x1C6C4, symSize: 0x198 } - - { offsetInCU: 0x1AF7, offset: 0x67219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x15D8, symBinAddr: 0x1C85C, symSize: 0x13C } - - { offsetInCU: 0x1BF4, offset: 0x67316, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1714, symBinAddr: 0x1C998, symSize: 0x18 } - - { offsetInCU: 0x1C08, offset: 0x6732A, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1868, symBinAddr: 0x1CAEC, symSize: 0x2C } - - { offsetInCU: 0x1C20, offset: 0x67342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1AE0, symBinAddr: 0x1CD64, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x67356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1B24, symBinAddr: 0x1CDA8, symSize: 0x20 } - - { offsetInCU: 0x1C48, offset: 0x6736A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1CD4, symBinAddr: 0x1CF58, symSize: 0x20 } - - { offsetInCU: 0x1C5C, offset: 0x6737E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1CF4, symBinAddr: 0x1CF78, symSize: 0x4 } - - { offsetInCU: 0x1C70, offset: 0x67392, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x1CF7C, symSize: 0x44 } - - { offsetInCU: 0x1C84, offset: 0x673A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D3C, symBinAddr: 0x1CFC0, symSize: 0x4 } - - { offsetInCU: 0x1C98, offset: 0x673BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D40, symBinAddr: 0x1CFC4, symSize: 0x44 } - - { offsetInCU: 0x1CAC, offset: 0x673CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwCP', symObjAddr: 0x1E60, symBinAddr: 0x1D0E4, symSize: 0x5C } - - { offsetInCU: 0x1CC0, offset: 0x673E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1EBC, symBinAddr: 0x1D140, symSize: 0x18 } - - { offsetInCU: 0x1CD4, offset: 0x673F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1ED4, symBinAddr: 0x1D158, symSize: 0x14 } - - { offsetInCU: 0x1CE8, offset: 0x6740A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1EE8, symBinAddr: 0x1D16C, symSize: 0x18 } - - { offsetInCU: 0x1CFC, offset: 0x6741E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwcp', symObjAddr: 0x1F00, symBinAddr: 0x1D184, symSize: 0x5C } - - { offsetInCU: 0x1D10, offset: 0x67432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x1F5C, symBinAddr: 0x1D1E0, symSize: 0x6C } - - { offsetInCU: 0x1D24, offset: 0x67446, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1FC8, symBinAddr: 0x1D24C, symSize: 0x14 } - - { offsetInCU: 0x1D38, offset: 0x6745A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x1FDC, symBinAddr: 0x1D260, symSize: 0x50 } - - { offsetInCU: 0x1D4C, offset: 0x6746E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x202C, symBinAddr: 0x1D2B0, symSize: 0x48 } - - { offsetInCU: 0x1D60, offset: 0x67482, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x2074, symBinAddr: 0x1D2F8, symSize: 0x48 } - - { offsetInCU: 0x1D74, offset: 0x67496, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x20BC, symBinAddr: 0x1D340, symSize: 0x8 } - - { offsetInCU: 0x1D88, offset: 0x674AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x20C4, symBinAddr: 0x1D348, symSize: 0x4 } - - { offsetInCU: 0x1D9C, offset: 0x674BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x20C8, symBinAddr: 0x1D34C, symSize: 0x8 } - - { offsetInCU: 0x1DB0, offset: 0x674D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x20D0, symBinAddr: 0x1D354, symSize: 0x10 } - - { offsetInCU: 0x1DC4, offset: 0x674E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x21B8, symBinAddr: 0x1D42C, symSize: 0x90 } - - { offsetInCU: 0x1DD8, offset: 0x674FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2248, symBinAddr: 0x1D4BC, symSize: 0xBC } - - { offsetInCU: 0x1DEC, offset: 0x6750E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2304, symBinAddr: 0x1D578, symSize: 0x4 } - - { offsetInCU: 0x1E00, offset: 0x67522, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2308, symBinAddr: 0x1D57C, symSize: 0x10 } - - { offsetInCU: 0x1E14, offset: 0x67536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x2318, symBinAddr: 0x1D58C, symSize: 0x90 } - - { offsetInCU: 0x1E28, offset: 0x6754A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x23A8, symBinAddr: 0x1D61C, symSize: 0xBC } - - { offsetInCU: 0x1E3C, offset: 0x6755E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x2464, symBinAddr: 0x1D6D8, symSize: 0x8 } - - { offsetInCU: 0x1E50, offset: 0x67572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x246C, symBinAddr: 0x1D6E0, symSize: 0x4 } - - { offsetInCU: 0x1E64, offset: 0x67586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2470, symBinAddr: 0x1D6E4, symSize: 0x8 } - - { offsetInCU: 0x1E78, offset: 0x6759A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2478, symBinAddr: 0x1D6EC, symSize: 0x10 } - - { offsetInCU: 0x1E97, offset: 0x675B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x24B0, symBinAddr: 0x1D724, symSize: 0x24 } - - { offsetInCU: 0x1EC0, offset: 0x675E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x25BC, symBinAddr: 0x1D830, symSize: 0x8 } - - { offsetInCU: 0x1ED4, offset: 0x675F6, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x25C4, symBinAddr: 0x1D838, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x6760A, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x25D4, symBinAddr: 0x1D848, symSize: 0x8 } - - { offsetInCU: 0x1EFC, offset: 0x6761E, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2660, symBinAddr: 0x1D850, symSize: 0x3C } - - { offsetInCU: 0x1F7E, offset: 0x676A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1B284, symSize: 0x4 } - - { offsetInCU: 0x1F9A, offset: 0x676BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1B288, symSize: 0x4 } - - { offsetInCU: 0x1FB6, offset: 0x676D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1B28C, symSize: 0x4 } - - { offsetInCU: 0x1FD2, offset: 0x676F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1B290, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x67AE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1D9A4, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x67AFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1D9E0, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67B0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1DA64, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x67B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1DB8C, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x67B53, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1DBBC, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x67B67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1DBD8, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x67B7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1DC74, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x67B8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1DCD8, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x67BA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1DD34, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x67BB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1DD44, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x67BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1DD74, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67BDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1DD9C, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67BF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1DDF8, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x67C07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1DE7C, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x67C1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1DEE0, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x67C2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1DF3C, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x67C43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1DF9C, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x67C63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1DFAC, symSize: 0x10C } - - { offsetInCU: 0x20B, offset: 0x67CAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x1E404, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67D03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA68, symBinAddr: 0x1E40C, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x67DE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA8, symBinAddr: 0x1E44C, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x67E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1E4AC, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x67E86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1E4AC, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x67EA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB0C, symBinAddr: 0x1E4B0, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67ED7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB34, symBinAddr: 0x1E4D8, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67EF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB40, symBinAddr: 0x1E4E4, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67F0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF18, symBinAddr: 0x1E8BC, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF84, symBinAddr: 0x1E928, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67F87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x1E540, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE8, symBinAddr: 0x1E58C, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF90, symBinAddr: 0x1E934, symSize: 0x144 } - - { offsetInCU: 0x58D, offset: 0x68031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x714, symBinAddr: 0x1E0B8, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x68080, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC28, symBinAddr: 0x1E5CC, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x680E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x1E5E4, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x68160, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC6C, symBinAddr: 0x1E610, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x6818B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC74, symBinAddr: 0x1E618, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x681BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC98, symBinAddr: 0x1E63C, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x681D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1E648, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x681F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1224, symBinAddr: 0x1EB44, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x6823A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x734, symBinAddr: 0x1E0D8, symSize: 0x1B8 } - - { offsetInCU: 0x7EB, offset: 0x6828F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1E6A4, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x682C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD4C, symBinAddr: 0x1E6F0, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x682E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1360, symBinAddr: 0x1EC80, symSize: 0x254 } - - { offsetInCU: 0x895, offset: 0x68339, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x8EC, symBinAddr: 0x1E290, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x68364, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE18, symBinAddr: 0x1E7BC, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x6838F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE20, symBinAddr: 0x1E7C4, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x683C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE44, symBinAddr: 0x1E7E8, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x683DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CEC, symBinAddr: 0x1F5A0, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x68422, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x90C, symBinAddr: 0x1E2B0, symSize: 0x154 } - - { offsetInCU: 0x9D3, offset: 0x68477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xEA0, symBinAddr: 0x1E844, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x684AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEE0, symBinAddr: 0x1E884, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x684D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E44, symBinAddr: 0x1F6F8, symSize: 0x2A8 } - - { offsetInCU: 0xA80, offset: 0x68524, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1138, symBinAddr: 0x1EA78, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x68538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x119C, symBinAddr: 0x1EABC, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x6854C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x11E0, symBinAddr: 0x1EB00, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x68560, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x15B4, symBinAddr: 0x1EED4, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x68574, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x163C, symBinAddr: 0x1EF18, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x68588, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x172C, symBinAddr: 0x1F008, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x6859C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1788, symBinAddr: 0x1F054, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x685B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1790, symBinAddr: 0x1F05C, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x685C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1794, symBinAddr: 0x1F060, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x685D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x179C, symBinAddr: 0x1F068, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x685EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x1F078, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x68600, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x1F0C8, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x68614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x188C, symBinAddr: 0x1F154, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x68628, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1894, symBinAddr: 0x1F15C, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x6863C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1898, symBinAddr: 0x1F160, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x68650, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x189C, symBinAddr: 0x1F164, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x68664, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18AC, symBinAddr: 0x1F174, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x68678, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x18E4, symBinAddr: 0x1F1AC, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x6868C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1948, symBinAddr: 0x1F210, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x686A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A08, symBinAddr: 0x1F2BC, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x686B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1A6C, symBinAddr: 0x1F320, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x686C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1AC8, symBinAddr: 0x1F37C, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x686DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B2C, symBinAddr: 0x1F3E0, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x686F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B3C, symBinAddr: 0x1F3F0, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x68704, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B40, symBinAddr: 0x1F3F4, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x68718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B84, symBinAddr: 0x1F438, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x6872C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B88, symBinAddr: 0x1F43C, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x68740, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BCC, symBinAddr: 0x1F480, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x68754, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x1F484, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x68768, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C14, symBinAddr: 0x1F4C8, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x6877C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C18, symBinAddr: 0x1F4CC, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x68790, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C5C, symBinAddr: 0x1F510, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x687A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C60, symBinAddr: 0x1F514, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x687B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CA4, symBinAddr: 0x1F558, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x687CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CA8, symBinAddr: 0x1F55C, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x687E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x20EC, symBinAddr: 0x1F9A0, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x687F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x2284, symBinAddr: 0x1FB38, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x68808, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2288, symBinAddr: 0x1FB3C, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x6881C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2298, symBinAddr: 0x1FB4C, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x68830, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x229C, symBinAddr: 0x1FB50, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x68844, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22E0, symBinAddr: 0x1FB94, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x68858, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E4, symBinAddr: 0x1FB98, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x6886C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2328, symBinAddr: 0x1FBDC, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x68880, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x232C, symBinAddr: 0x1FBE0, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x688D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xACC, symBinAddr: 0x1E470, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x68977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB4C, symBinAddr: 0x1E4F0, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x68993, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB74, symBinAddr: 0x1E518, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x689B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCB0, symBinAddr: 0x1E654, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x689D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCD8, symBinAddr: 0x1E67C, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x689F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE50, symBinAddr: 0x1E7F4, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x68A0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE78, symBinAddr: 0x1E81C, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x68B5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1FC50, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x68B80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1FC50, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68BB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x20198, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x68C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x201C0, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x68D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x20204, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x68D63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x20204, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x68DA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x2021C, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x68E86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x20260, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x1FC68, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68F81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x20004, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68F95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x20014, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68FB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x20024, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68FD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x20050, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x69012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x20084, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x69030, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x20094, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x6905B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x20098, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x69079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x200A0, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x690B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x200A8, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x690E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x200B8, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x69114, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x584, symBinAddr: 0x200BC, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x69132, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x598, symBinAddr: 0x200D0, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x69158, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x200E4, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x69176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x20110, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x691A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x2013C, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x691BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x20144, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x691FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x2014C, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x69219, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x2015C, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x69244, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x20160, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x69262, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x20168, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x6929E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x20170, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x692CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x20180, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x692F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x20184, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x69325, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x20194, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x69367, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x202C8, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x6937B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x202CC, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x6938F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x20310, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x693A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x20340, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x693B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x203BC, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x693CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x20540, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x693E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x208D4, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x6940F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x20904, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x69423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x20930, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x69437, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x20964, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x6944B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x209A8, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x6945F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x20B54, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x69473, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x20B9C, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x69487, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x20C14, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x6949B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x20C24, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x694AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x20C58, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x694C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x20C60, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x694D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x20C94, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x694EB, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x20CE8, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x694FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x20CFC, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x69513, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x20D38, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x69527, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x20D80, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x6953B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x20DC0, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x6954F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x20DD0, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x69563, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x20E08, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x69577, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x20E74, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x6958B, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x20F50, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x6959F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x20F6C, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x695B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x20FE0, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x695C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x2103C, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x695DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x210A0, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x695EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x210B0, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x69603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x210D8, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x69617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x21114, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x6962B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x21180, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x6963F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x211C4, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x69653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x2120C, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x69667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x2124C, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x6967B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x2125C, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x6968F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x212B0, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x696A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x212F4, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x696B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x21304, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x696CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x21394, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x696DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x21450, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x696F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x21458, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x69707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x2145C, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x6971B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x21468, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x69770, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x20288, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x699BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x21488, symSize: 0x190 } - - { offsetInCU: 0x373, offset: 0x69CC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x218, symBinAddr: 0x216A0, symSize: 0x2220 } - - { offsetInCU: 0x15CE, offset: 0x6AF1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB0E0, symBinAddr: 0x2C568, symSize: 0x3C84 } - - { offsetInCU: 0x3157, offset: 0x6CAA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xED64, symBinAddr: 0x301EC, symSize: 0x634 } - - { offsetInCU: 0x372B, offset: 0x6D078, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0xF3C0, symBinAddr: 0x30848, symSize: 0x40 } - - { offsetInCU: 0x3753, offset: 0x6D0A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x14074, symBinAddr: 0x354FC, symSize: 0x3E0 } - - { offsetInCU: 0x38E2, offset: 0x6D22F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10AE0, symBinAddr: 0x31F68, symSize: 0x271C } - - { offsetInCU: 0x5016, offset: 0x6E963, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x2438, symBinAddr: 0x238C0, symSize: 0x2A8 } - - { offsetInCU: 0x53D1, offset: 0x6ED1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x26E0, symBinAddr: 0x23B68, symSize: 0x6E8 } - - { offsetInCU: 0x5835, offset: 0x6F182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x2DC8, symBinAddr: 0x24250, symSize: 0x5D8 } - - { offsetInCU: 0x5B68, offset: 0x6F4B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x33A0, symBinAddr: 0x24828, symSize: 0x394C } - - { offsetInCU: 0x7562, offset: 0x70EAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6CEC, symBinAddr: 0x28174, symSize: 0x278 } - - { offsetInCU: 0x7679, offset: 0x70FC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x73E8, symBinAddr: 0x28870, symSize: 0x17AC } - - { offsetInCU: 0x7FD3, offset: 0x71920, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x6F64, symBinAddr: 0x283EC, symSize: 0x118 } - - { offsetInCU: 0x803C, offset: 0x71989, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x71D8, symBinAddr: 0x28660, symSize: 0x1E8 } - - { offsetInCU: 0x8109, offset: 0x71A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x73C0, symBinAddr: 0x28848, symSize: 0x28 } - - { offsetInCU: 0x84A1, offset: 0x71DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x8BE8, symBinAddr: 0x2A070, symSize: 0x754 } - - { offsetInCU: 0x88B2, offset: 0x721FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA270, symBinAddr: 0x2B6F8, symSize: 0xE70 } - - { offsetInCU: 0x917A, offset: 0x72AC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x933C, symBinAddr: 0x2A7C4, symSize: 0xB2C } - - { offsetInCU: 0x9BDB, offset: 0x73528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF82C, symBinAddr: 0x30CB4, symSize: 0x12B4 } - - { offsetInCU: 0xAC2E, offset: 0x7457B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x18320, symBinAddr: 0x396D8, symSize: 0xBD0 } - - { offsetInCU: 0xB955, offset: 0x752A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x131FC, symBinAddr: 0x34684, symSize: 0xE78 } - - { offsetInCU: 0xC283, offset: 0x75BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x14454, symBinAddr: 0x358DC, symSize: 0x1E8 } - - { offsetInCU: 0xC319, offset: 0x75C66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x1463C, symBinAddr: 0x35AC4, symSize: 0x290 } - - { offsetInCU: 0xC40A, offset: 0x75D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x148DC, symBinAddr: 0x35D64, symSize: 0x90 } - - { offsetInCU: 0xC49F, offset: 0x75DEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x149C0, symBinAddr: 0x35E48, symSize: 0x1004 } - - { offsetInCU: 0xCE94, offset: 0x767E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x159C4, symBinAddr: 0x36E4C, symSize: 0x4C } - - { offsetInCU: 0xCEB0, offset: 0x767FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x15A10, symBinAddr: 0x36E98, symSize: 0x150 } - - { offsetInCU: 0xCFBF, offset: 0x7690C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x15B60, symBinAddr: 0x36FE8, symSize: 0x54 } - - { offsetInCU: 0xD038, offset: 0x76985, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x15C08, symBinAddr: 0x3703C, symSize: 0x4C } - - { offsetInCU: 0xD0BC, offset: 0x76A09, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x15C54, symBinAddr: 0x37088, symSize: 0x50 } - - { offsetInCU: 0xD135, offset: 0x76A82, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x15CA4, symBinAddr: 0x370D8, symSize: 0x64 } - - { offsetInCU: 0xD177, offset: 0x76AC4, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15D08, symBinAddr: 0x3713C, symSize: 0x30 } - - { offsetInCU: 0xD1A4, offset: 0x76AF1, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15D38, symBinAddr: 0x3716C, symSize: 0x80 } - - { offsetInCU: 0xD242, offset: 0x76B8F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x15DB8, symBinAddr: 0x371EC, symSize: 0x6C } - - { offsetInCU: 0xD2DC, offset: 0x76C29, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15E24, symBinAddr: 0x37258, symSize: 0x4C } - - { offsetInCU: 0xD360, offset: 0x76CAD, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x15E9C, symBinAddr: 0x372D0, symSize: 0xE0 } - - { offsetInCU: 0xD3AA, offset: 0x76CF7, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15F7C, symBinAddr: 0x373B0, symSize: 0xC4 } - - { offsetInCU: 0xD3D7, offset: 0x76D24, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16040, symBinAddr: 0x37474, symSize: 0x174 } - - { offsetInCU: 0xD48B, offset: 0x76DD8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x161B4, symBinAddr: 0x375E8, symSize: 0x104 } - - { offsetInCU: 0xD61E, offset: 0x76F6B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x162B8, symBinAddr: 0x376EC, symSize: 0x128 } - - { offsetInCU: 0xD7C1, offset: 0x7710E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x163E0, symBinAddr: 0x37814, symSize: 0x16C } - - { offsetInCU: 0xD996, offset: 0x772E3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1654C, symBinAddr: 0x37980, symSize: 0x174 } - - { offsetInCU: 0xDB51, offset: 0x7749E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x166C0, symBinAddr: 0x37AF4, symSize: 0xFC } - - { offsetInCU: 0xDCF4, offset: 0x77641, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x167BC, symBinAddr: 0x37BF0, symSize: 0xFC } - - { offsetInCU: 0xDE97, offset: 0x777E4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x169BC, symBinAddr: 0x37DF0, symSize: 0xFC } - - { offsetInCU: 0xDFC1, offset: 0x7790E, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16AB8, symBinAddr: 0x37EEC, symSize: 0x40 } - - { offsetInCU: 0xE00E, offset: 0x7795B, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x16D5C, symBinAddr: 0x38190, symSize: 0x138 } - - { offsetInCU: 0xE0AD, offset: 0x779FA, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16E94, symBinAddr: 0x382C8, symSize: 0xB4 } - - { offsetInCU: 0xE15D, offset: 0x77AAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x17194, symBinAddr: 0x38588, symSize: 0x638 } - - { offsetInCU: 0xE501, offset: 0x77E4E, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x177CC, symBinAddr: 0x38BC0, symSize: 0x18C } - - { offsetInCU: 0xE612, offset: 0x77F5F, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17958, symBinAddr: 0x38D4C, symSize: 0xC0 } - - { offsetInCU: 0xE715, offset: 0x78062, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17C34, symBinAddr: 0x38FEC, symSize: 0x1A0 } - - { offsetInCU: 0xE86A, offset: 0x781B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17DD4, symBinAddr: 0x3918C, symSize: 0x380 } - - { offsetInCU: 0xEB96, offset: 0x784E3, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18EF0, symBinAddr: 0x3A2A8, symSize: 0x198 } - - { offsetInCU: 0xECB2, offset: 0x785FF, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19088, symBinAddr: 0x3A440, symSize: 0xC0 } - - { offsetInCU: 0xEFE4, offset: 0x78931, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x19148, symBinAddr: 0x3A500, symSize: 0xD28 } - - { offsetInCU: 0x1025F, offset: 0x79BAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19E70, symBinAddr: 0x3B228, symSize: 0x1C0 } - - { offsetInCU: 0x1040D, offset: 0x79D5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A030, symBinAddr: 0x3B3E8, symSize: 0x1A4 } - - { offsetInCU: 0x10500, offset: 0x79E4D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A1D4, symBinAddr: 0x3B58C, symSize: 0x84 } - - { offsetInCU: 0x1070D, offset: 0x7A05A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1ACD8, symBinAddr: 0x3C090, symSize: 0x8 } - - { offsetInCU: 0x10721, offset: 0x7A06E, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1ADBC, symBinAddr: 0x3C174, symSize: 0x10 } - - { offsetInCU: 0x10735, offset: 0x7A082, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1ADCC, symBinAddr: 0x3C184, symSize: 0x14 } - - { offsetInCU: 0x10749, offset: 0x7A096, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1ADE0, symBinAddr: 0x3C198, symSize: 0x50 } - - { offsetInCU: 0x1075D, offset: 0x7A0AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1AE40, symBinAddr: 0x3C1E8, symSize: 0x44 } - - { offsetInCU: 0x10771, offset: 0x7A0BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1AE84, symBinAddr: 0x3C22C, symSize: 0x30C } - - { offsetInCU: 0x10785, offset: 0x7A0D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1B190, symBinAddr: 0x3C538, symSize: 0x240 } - - { offsetInCU: 0x10799, offset: 0x7A0E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1B3D0, symBinAddr: 0x3C778, symSize: 0x70 } - - { offsetInCU: 0x107AD, offset: 0x7A0FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1B440, symBinAddr: 0x3C7E8, symSize: 0x34 } - - { offsetInCU: 0x107C1, offset: 0x7A10E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1B474, symBinAddr: 0x3C81C, symSize: 0x174 } - - { offsetInCU: 0x107D5, offset: 0x7A122, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1B5E8, symBinAddr: 0x3C990, symSize: 0xB4 } - - { offsetInCU: 0x1080A, offset: 0x7A157, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1BEB4, symBinAddr: 0x3CA44, symSize: 0xC4 } - - { offsetInCU: 0x10880, offset: 0x7A1CD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BF78, symBinAddr: 0x3CB08, symSize: 0x78 } - - { offsetInCU: 0x108AD, offset: 0x7A1FA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BFF0, symBinAddr: 0x3CB80, symSize: 0x80 } - - { offsetInCU: 0x10923, offset: 0x7A270, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C070, symBinAddr: 0x3CC00, symSize: 0x68 } - - { offsetInCU: 0x10A47, offset: 0x7A394, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C0D8, symBinAddr: 0x3CC68, symSize: 0x644 } - - { offsetInCU: 0x10EEB, offset: 0x7A838, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1C72C, symBinAddr: 0x3D2BC, symSize: 0x4C } - - { offsetInCU: 0x10EFF, offset: 0x7A84C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1C820, symBinAddr: 0x3D328, symSize: 0x8 } - - { offsetInCU: 0x10F13, offset: 0x7A860, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1C828, symBinAddr: 0x3D330, symSize: 0x44 } - - { offsetInCU: 0x10F27, offset: 0x7A874, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1C86C, symBinAddr: 0x3D374, symSize: 0x44 } - - { offsetInCU: 0x10F3B, offset: 0x7A888, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1C918, symBinAddr: 0x3D3DC, symSize: 0x8 } - - { offsetInCU: 0x10F4F, offset: 0x7A89C, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1C930, symBinAddr: 0x3D3E4, symSize: 0x3C } - - { offsetInCU: 0x10F63, offset: 0x7A8B0, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1C96C, symBinAddr: 0x3D420, symSize: 0x34 } - - { offsetInCU: 0x10F77, offset: 0x7A8C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1CA20, symBinAddr: 0x3D4D4, symSize: 0x44 } - - { offsetInCU: 0x10FAC, offset: 0x7A8F9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CB28, symBinAddr: 0x3D5DC, symSize: 0x48 } - - { offsetInCU: 0x10FCB, offset: 0x7A918, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CB70, symBinAddr: 0x3D624, symSize: 0x64 } - - { offsetInCU: 0x1100E, offset: 0x7A95B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CBD4, symBinAddr: 0x3D688, symSize: 0x80 } - - { offsetInCU: 0x110A3, offset: 0x7A9F0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CC54, symBinAddr: 0x3D708, symSize: 0x120 } - - { offsetInCU: 0x1118B, offset: 0x7AAD8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1CDBC, symBinAddr: 0x3D870, symSize: 0x48 } - - { offsetInCU: 0x1119F, offset: 0x7AAEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1CE04, symBinAddr: 0x3D8B8, symSize: 0x40 } - - { offsetInCU: 0x111B3, offset: 0x7AB00, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1CF18, symBinAddr: 0x3D9CC, symSize: 0x48 } - - { offsetInCU: 0x111C7, offset: 0x7AB14, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1CFE0, symBinAddr: 0x3DA94, symSize: 0x18 } - - { offsetInCU: 0x111DB, offset: 0x7AB28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1CFF8, symBinAddr: 0x3DAAC, symSize: 0x10 } - - { offsetInCU: 0x111EF, offset: 0x7AB3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1D008, symBinAddr: 0x3DABC, symSize: 0x34 } - - { offsetInCU: 0x11203, offset: 0x7AB50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D078, symBinAddr: 0x3DB2C, symSize: 0x30 } - - { offsetInCU: 0x11250, offset: 0x7AB9D, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x190, symBinAddr: 0x21618, symSize: 0x88 } - - { offsetInCU: 0x11698, offset: 0x7AFE5, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9E68, symBinAddr: 0x2B2F0, symSize: 0x408 } - - { offsetInCU: 0x11973, offset: 0x7B2C0, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF6A0, symBinAddr: 0x30B28, symSize: 0x18C } - - { offsetInCU: 0x11B91, offset: 0x7B4DE, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x1496C, symBinAddr: 0x35DF4, symSize: 0x54 } - - { offsetInCU: 0x11CFE, offset: 0x7B64B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x16F48, symBinAddr: 0x3837C, symSize: 0x110 } - - { offsetInCU: 0x11E3F, offset: 0x7B78C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x17098, symBinAddr: 0x3848C, symSize: 0xFC } - - { offsetInCU: 0x11F40, offset: 0x7B88D, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17A78, symBinAddr: 0x38E30, symSize: 0x1BC } - - { offsetInCU: 0x1200E, offset: 0x7B95B, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18154, symBinAddr: 0x3950C, symSize: 0x1CC } - - { offsetInCU: 0x122D1, offset: 0x7BC1E, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A434, symBinAddr: 0x3B7EC, symSize: 0x1DC } - - { offsetInCU: 0x123BD, offset: 0x7BD0A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A610, symBinAddr: 0x3B9C8, symSize: 0x11C } - - { offsetInCU: 0x12504, offset: 0x7BE51, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1A72C, symBinAddr: 0x3BAE4, symSize: 0xFC } - - { offsetInCU: 0x1264B, offset: 0x7BF98, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1A828, symBinAddr: 0x3BBE0, symSize: 0xE4 } - - { offsetInCU: 0x12786, offset: 0x7C0D3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1A90C, symBinAddr: 0x3BCC4, symSize: 0x114 } - - { offsetInCU: 0x128C7, offset: 0x7C214, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AA20, symBinAddr: 0x3BDD8, symSize: 0xEC } - - { offsetInCU: 0x12A0E, offset: 0x7C35B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1ABF4, symBinAddr: 0x3BFAC, symSize: 0xE4 } - - { offsetInCU: 0x12B6D, offset: 0x7C4BA, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CA64, symBinAddr: 0x3D518, symSize: 0xC4 } - - { offsetInCU: 0x12E13, offset: 0x7C760, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x707C, symBinAddr: 0x28504, symSize: 0x15C } - - { offsetInCU: 0x27, offset: 0x7CD0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3DB94, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7CD26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3DB94, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7CD3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3DBC4, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7CD4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3DCB0, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7CD62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3DF28, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7CD76, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3E344, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7CD8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3E34C, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7CD9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3E594, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7CDB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3E5DC, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7CDC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x3E698, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7D0F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x3EB54, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7D1A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x3ED58, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D62F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x3F968, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D84F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x3FEA8, symSize: 0x920 } - - { offsetInCU: 0xD3E, offset: 0x7DBE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x2154, symBinAddr: 0x407F4, symSize: 0x20FC } - - { offsetInCU: 0x202F, offset: 0x7EED6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xDDC0, symBinAddr: 0x4C460, symSize: 0x6B8 } - - { offsetInCU: 0x23FC, offset: 0x7F2A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4250, symBinAddr: 0x428F0, symSize: 0x1190 } - - { offsetInCU: 0x2F50, offset: 0x7FDF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x53E0, symBinAddr: 0x43A80, symSize: 0xB94 } - - { offsetInCU: 0x377E, offset: 0x80625, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x5F74, symBinAddr: 0x44614, symSize: 0x3DC } - - { offsetInCU: 0x3895, offset: 0x8073C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6BD4, symBinAddr: 0x45274, symSize: 0x1EC } - - { offsetInCU: 0x3B41, offset: 0x809E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x6DC0, symBinAddr: 0x45460, symSize: 0x914 } - - { offsetInCU: 0x42D4, offset: 0x8117B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x76D4, symBinAddr: 0x45D74, symSize: 0x2A8 } - - { offsetInCU: 0x440C, offset: 0x812B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x797C, symBinAddr: 0x4601C, symSize: 0x628 } - - { offsetInCU: 0x47FD, offset: 0x816A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x7FA4, symBinAddr: 0x46644, symSize: 0x658 } - - { offsetInCU: 0x4ABF, offset: 0x81966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x85FC, symBinAddr: 0x46C9C, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x81A24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x882C, symBinAddr: 0x46ECC, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x81AA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x8A58, symBinAddr: 0x470F8, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x81AD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x8AD8, symBinAddr: 0x47178, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81B10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xCA08, symBinAddr: 0x4B0A8, symSize: 0x780 } - - { offsetInCU: 0x4FB4, offset: 0x81E5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD188, symBinAddr: 0x4B828, symSize: 0x9BC } - - { offsetInCU: 0x52A3, offset: 0x8214A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xDB44, symBinAddr: 0x4C1E4, symSize: 0x218 } - - { offsetInCU: 0x5378, offset: 0x8221F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xE478, symBinAddr: 0x4CB18, symSize: 0x81C } - - { offsetInCU: 0x5683, offset: 0x8252A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xEC94, symBinAddr: 0x4D334, symSize: 0xBA8 } - - { offsetInCU: 0x5972, offset: 0x82819, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xF83C, symBinAddr: 0x4DEDC, symSize: 0x278 } - - { offsetInCU: 0x5A47, offset: 0x828EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0xFAB4, symBinAddr: 0x4E154, symSize: 0x214 } - - { offsetInCU: 0x5F3D, offset: 0x82DE4, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2128, symBinAddr: 0x407C8, symSize: 0x2C } - - { offsetInCU: 0x623B, offset: 0x830E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x8AF4, symBinAddr: 0x47194, symSize: 0x20 } - - { offsetInCU: 0x6294, offset: 0x8313B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8B14, symBinAddr: 0x471B4, symSize: 0x8C } - - { offsetInCU: 0x632C, offset: 0x831D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x8BA0, symBinAddr: 0x47240, symSize: 0xC04 } - - { offsetInCU: 0x683E, offset: 0x836E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x97A4, symBinAddr: 0x47E44, symSize: 0x40 } - - { offsetInCU: 0x6882, offset: 0x83729, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0x97E4, symBinAddr: 0x47E84, symSize: 0x58 } - - { offsetInCU: 0x68AD, offset: 0x83754, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0x983C, symBinAddr: 0x47EDC, symSize: 0x54 } - - { offsetInCU: 0x68EF, offset: 0x83796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9890, symBinAddr: 0x47F30, symSize: 0x64 } - - { offsetInCU: 0x6922, offset: 0x837C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x98F4, symBinAddr: 0x47F94, symSize: 0x4 } - - { offsetInCU: 0x694D, offset: 0x837F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x98F8, symBinAddr: 0x47F98, symSize: 0x78 } - - { offsetInCU: 0x698F, offset: 0x83836, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9970, symBinAddr: 0x48010, symSize: 0x90 } - - { offsetInCU: 0x69D1, offset: 0x83878, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x9A00, symBinAddr: 0x480A0, symSize: 0x6C } - - { offsetInCU: 0x6A04, offset: 0x838AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x9A6C, symBinAddr: 0x4810C, symSize: 0x4 } - - { offsetInCU: 0x6A20, offset: 0x838C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x9A70, symBinAddr: 0x48110, symSize: 0x4 } - - { offsetInCU: 0x6A4B, offset: 0x838F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0x9A74, symBinAddr: 0x48114, symSize: 0x74 } - - { offsetInCU: 0x6A7E, offset: 0x83925, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0x9AE8, symBinAddr: 0x48188, symSize: 0x4 } - - { offsetInCU: 0x6A9D, offset: 0x83944, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9AEC, symBinAddr: 0x4818C, symSize: 0x8 } - - { offsetInCU: 0x6AB9, offset: 0x83960, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0x9AEC, symBinAddr: 0x4818C, symSize: 0x8 } - - { offsetInCU: 0x6ACA, offset: 0x83971, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0x9AF4, symBinAddr: 0x48194, symSize: 0xC8 } - - { offsetInCU: 0x6B67, offset: 0x83A0E, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0x9BBC, symBinAddr: 0x4825C, symSize: 0xCC } - - { offsetInCU: 0x6C13, offset: 0x83ABA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0x9D84, symBinAddr: 0x48424, symSize: 0x1F4 } - - { offsetInCU: 0x6C9F, offset: 0x83B46, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0x9F78, symBinAddr: 0x48618, symSize: 0x1C4 } - - { offsetInCU: 0x6D57, offset: 0x83BFE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA13C, symBinAddr: 0x487DC, symSize: 0x3A0 } - - { offsetInCU: 0x6E77, offset: 0x83D1E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xA4DC, symBinAddr: 0x48B7C, symSize: 0x398 } - - { offsetInCU: 0x6F8E, offset: 0x83E35, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xA874, symBinAddr: 0x48F14, symSize: 0x1E4 } - - { offsetInCU: 0x701F, offset: 0x83EC6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xAA58, symBinAddr: 0x490F8, symSize: 0x204 } - - { offsetInCU: 0x70A5, offset: 0x83F4C, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xAC5C, symBinAddr: 0x492FC, symSize: 0x4C } - - { offsetInCU: 0x7162, offset: 0x84009, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xACA8, symBinAddr: 0x49348, symSize: 0x90 } - - { offsetInCU: 0x71FD, offset: 0x840A4, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xAD38, symBinAddr: 0x493D8, symSize: 0x40 } - - { offsetInCU: 0x723A, offset: 0x840E1, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xAD78, symBinAddr: 0x49418, symSize: 0x18 } - - { offsetInCU: 0x728C, offset: 0x84133, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xAD90, symBinAddr: 0x49430, symSize: 0x3C } - - { offsetInCU: 0x72B5, offset: 0x8415C, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xADCC, symBinAddr: 0x4946C, symSize: 0x1C } - - { offsetInCU: 0x7385, offset: 0x8422C, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xADE8, symBinAddr: 0x49488, symSize: 0xE0 } - - { offsetInCU: 0x74A8, offset: 0x8434F, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xAFAC, symBinAddr: 0x4964C, symSize: 0x294 } - - { offsetInCU: 0x751F, offset: 0x843C6, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xB4DC, symBinAddr: 0x49B7C, symSize: 0x8C } - - { offsetInCU: 0x7537, offset: 0x843DE, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xB568, symBinAddr: 0x49C08, symSize: 0x4C } - - { offsetInCU: 0x758C, offset: 0x84433, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xB5B4, symBinAddr: 0x49C54, symSize: 0x154 } - - { offsetInCU: 0x75FA, offset: 0x844A1, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xB708, symBinAddr: 0x49DA8, symSize: 0xF0 } - - { offsetInCU: 0x761F, offset: 0x844C6, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xB7F8, symBinAddr: 0x49E98, symSize: 0x214 } - - { offsetInCU: 0x7658, offset: 0x844FF, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xBA0C, symBinAddr: 0x4A0AC, symSize: 0x78 } - - { offsetInCU: 0x7670, offset: 0x84517, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xBA84, symBinAddr: 0x4A124, symSize: 0x1C } - - { offsetInCU: 0x7688, offset: 0x8452F, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBAA0, symBinAddr: 0x4A140, symSize: 0x1C } - - { offsetInCU: 0x76A0, offset: 0x84547, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBABC, symBinAddr: 0x4A15C, symSize: 0x1C } - - { offsetInCU: 0x7705, offset: 0x845AC, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xBAD8, symBinAddr: 0x4A178, symSize: 0x104 } - - { offsetInCU: 0x7868, offset: 0x8470F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBBDC, symBinAddr: 0x4A27C, symSize: 0x174 } - - { offsetInCU: 0x79D8, offset: 0x8487F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xBD50, symBinAddr: 0x4A3F0, symSize: 0x124 } - - { offsetInCU: 0x7AD8, offset: 0x8497F, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xBE74, symBinAddr: 0x4A514, symSize: 0x120 } - - { offsetInCU: 0x7D24, offset: 0x84BCB, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xBF94, symBinAddr: 0x4A634, symSize: 0x36C } - - { offsetInCU: 0x8312, offset: 0x851B9, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC300, symBinAddr: 0x4A9A0, symSize: 0x290 } - - { offsetInCU: 0x84FF, offset: 0x853A6, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC590, symBinAddr: 0x4AC30, symSize: 0x150 } - - { offsetInCU: 0x8665, offset: 0x8550C, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xC6E0, symBinAddr: 0x4AD80, symSize: 0x218 } - - { offsetInCU: 0x86B1, offset: 0x85558, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xC8F8, symBinAddr: 0x4AF98, symSize: 0x14 } - - { offsetInCU: 0x86EA, offset: 0x85591, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xC90C, symBinAddr: 0x4AFAC, symSize: 0xFC } - - { offsetInCU: 0x87A8, offset: 0x8564F, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xDD5C, symBinAddr: 0x4C3FC, symSize: 0x64 } - - { offsetInCU: 0x8854, offset: 0x856FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0xFCC8, symBinAddr: 0x4E368, symSize: 0xA78 } - - { offsetInCU: 0x8E22, offset: 0x85CC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10740, symBinAddr: 0x4EDE0, symSize: 0x104 } - - { offsetInCU: 0x8F8E, offset: 0x85E35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10844, symBinAddr: 0x4EEE4, symSize: 0x2D5C } - - { offsetInCU: 0x9654, offset: 0x864FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x135A0, symBinAddr: 0x51C40, symSize: 0x120 } - - { offsetInCU: 0x9765, offset: 0x8660C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x136C0, symBinAddr: 0x51D60, symSize: 0x80 } - - { offsetInCU: 0x97E8, offset: 0x8668F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13740, symBinAddr: 0x51DE0, symSize: 0x654 } - - { offsetInCU: 0x9B84, offset: 0x86A2B, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x13DF4, symBinAddr: 0x52434, symSize: 0x10 } - - { offsetInCU: 0x9B98, offset: 0x86A3F, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x13E04, symBinAddr: 0x52444, symSize: 0x10 } - - { offsetInCU: 0x9BAC, offset: 0x86A53, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x13E58, symBinAddr: 0x52454, symSize: 0x48 } - - { offsetInCU: 0x9BC0, offset: 0x86A67, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x13F08, symBinAddr: 0x5249C, symSize: 0x3C } - - { offsetInCU: 0x9BD4, offset: 0x86A7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x13F44, symBinAddr: 0x524D8, symSize: 0x44 } - - { offsetInCU: 0x9BE8, offset: 0x86A8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOf', symObjAddr: 0x13F88, symBinAddr: 0x5251C, symSize: 0x48 } - - { offsetInCU: 0x9BFC, offset: 0x86AA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x14048, symBinAddr: 0x525A0, symSize: 0x8 } - - { offsetInCU: 0x9C10, offset: 0x86AB7, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14050, symBinAddr: 0x525A8, symSize: 0x10 } - - { offsetInCU: 0x9C24, offset: 0x86ACB, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14060, symBinAddr: 0x525B8, symSize: 0x8 } - - { offsetInCU: 0x9C38, offset: 0x86ADF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x140E8, symBinAddr: 0x525FC, symSize: 0x30 } - - { offsetInCU: 0x9C90, offset: 0x86B37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x141A8, symBinAddr: 0x526BC, symSize: 0x24 } - - { offsetInCU: 0x9CCC, offset: 0x86B73, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14214, symBinAddr: 0x526E0, symSize: 0x44 } - - { offsetInCU: 0x9CFB, offset: 0x86BA2, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x3E6A8, symSize: 0x12C } - - { offsetInCU: 0x9D31, offset: 0x86BD8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x3E7D4, symSize: 0x58 } - - { offsetInCU: 0x9E11, offset: 0x86CB8, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x3E82C, symSize: 0x90 } - - { offsetInCU: 0x9E3A, offset: 0x86CE1, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x3E8BC, symSize: 0xA0 } - - { offsetInCU: 0x9F66, offset: 0x86E0D, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x3E95C, symSize: 0x9C } - - { offsetInCU: 0xA075, offset: 0x86F1C, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x3E9F8, symSize: 0x74 } - - { offsetInCU: 0xA0FA, offset: 0x86FA1, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x3EA6C, symSize: 0x4 } - - { offsetInCU: 0xA11C, offset: 0x86FC3, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x3EA70, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x879BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x527E8, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x879EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x53658, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x87A15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE78, symBinAddr: 0x53660, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x87A46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE9C, symBinAddr: 0x53684, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x87A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEA8, symBinAddr: 0x53690, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x87A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5B80, symBinAddr: 0x582D8, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87AC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x52808, symSize: 0x17C } - - { offsetInCU: 0x1BC, offset: 0x87B19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF04, symBinAddr: 0x536EC, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x87B50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF54, symBinAddr: 0x5373C, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x87B73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CAC, symBinAddr: 0x58404, symSize: 0x132C } - - { offsetInCU: 0x267, offset: 0x87BC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x19C, symBinAddr: 0x52984, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x87C13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xFA4, symBinAddr: 0x5378C, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x87C79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xFBC, symBinAddr: 0x537A4, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFE8, symBinAddr: 0x537D0, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87D1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xFF0, symBinAddr: 0x537D8, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x87D4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1014, symBinAddr: 0x537FC, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x87D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1020, symBinAddr: 0x53808, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x87D87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7ABC, symBinAddr: 0x597FC, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x87DCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BC, symBinAddr: 0x529A4, symSize: 0x264 } - - { offsetInCU: 0x4C5, offset: 0x87E22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x107C, symBinAddr: 0x53864, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x87E59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10CC, symBinAddr: 0x538B4, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x87E7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C98, symBinAddr: 0x599D8, symSize: 0xF38 } - - { offsetInCU: 0x569, offset: 0x87EC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x420, symBinAddr: 0x52C08, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x87EFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x52C28, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x87F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x52C28, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x87F81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1140, symBinAddr: 0x53928, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x87FE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x11A4, symBinAddr: 0x5398C, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x88003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x11CC, symBinAddr: 0x539B4, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x88039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11D4, symBinAddr: 0x539BC, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x880BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x123C, symBinAddr: 0x53A24, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x880DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1248, symBinAddr: 0x53A30, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x880F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x460, symBinAddr: 0x52C48, symSize: 0x190 } - - { offsetInCU: 0x7EF, offset: 0x8814C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x12A4, symBinAddr: 0x53A8C, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x88183, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12EC, symBinAddr: 0x53AD4, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x881A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DAC, symBinAddr: 0x5AAEC, symSize: 0x220 } - - { offsetInCU: 0x899, offset: 0x881F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x5F0, symBinAddr: 0x52DD8, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x88221, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x132C, symBinAddr: 0x53B14, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x8824C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1334, symBinAddr: 0x53B1C, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x8827D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1358, symBinAddr: 0x53B40, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x88299, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1364, symBinAddr: 0x53B4C, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x882B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8FCC, symBinAddr: 0x5AD0C, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x882FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x610, symBinAddr: 0x52DF8, symSize: 0x268 } - - { offsetInCU: 0x9F3, offset: 0x88350, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13C0, symBinAddr: 0x53BA8, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x88387, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1420, symBinAddr: 0x53C08, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x883AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9278, symBinAddr: 0x5AFB8, symSize: 0x538 } - - { offsetInCU: 0xA9D, offset: 0x883FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x878, symBinAddr: 0x53060, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x88445, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1478, symBinAddr: 0x53C60, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x884D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x53C78, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x885B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D4, symBinAddr: 0x53CBC, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x8862B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x153C, symBinAddr: 0x53D24, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x88656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1544, symBinAddr: 0x53D2C, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x88687, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1568, symBinAddr: 0x53D50, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x886A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x53D5C, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x886BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x97B0, symBinAddr: 0x5B4F0, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x88705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x898, symBinAddr: 0x53080, symSize: 0x118 } - - { offsetInCU: 0xDFD, offset: 0x8875A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15D0, symBinAddr: 0x53DB8, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x88791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15FC, symBinAddr: 0x53DE4, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x887B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9864, symBinAddr: 0x5B5A4, symSize: 0x1A0 } - - { offsetInCU: 0xEA8, offset: 0x88805, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x9B0, symBinAddr: 0x53198, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x88830, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x169C, symBinAddr: 0x53E84, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x8885B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16A4, symBinAddr: 0x53E8C, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x8888C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16C8, symBinAddr: 0x53EB0, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x888A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16D4, symBinAddr: 0x53EBC, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x888C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9A04, symBinAddr: 0x5B744, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x8890A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9D0, symBinAddr: 0x531B8, symSize: 0x214 } - - { offsetInCU: 0x1002, offset: 0x8895F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1730, symBinAddr: 0x53F18, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x88996, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x53F88, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x889B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9C38, symBinAddr: 0x5B978, symSize: 0x8C8 } - - { offsetInCU: 0x10A6, offset: 0x88A03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBE4, symBinAddr: 0x533CC, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x88A3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x533EC, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x88A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x533EC, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88AB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x198C, symBinAddr: 0x54174, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x88AF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x19D0, symBinAddr: 0x541B8, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x88B0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0x541E0, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x88B43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A00, symBinAddr: 0x541E8, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x88BA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1A3C, symBinAddr: 0x54224, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88BC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A48, symBinAddr: 0x54230, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x88BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA5CC, symBinAddr: 0x5C30C, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x88C0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC24, symBinAddr: 0x5340C, symSize: 0x244 } - - { offsetInCU: 0x1304, offset: 0x88C61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA4, symBinAddr: 0x5428C, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x88C98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AFC, symBinAddr: 0x542E4, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x88CBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA61C, symBinAddr: 0x5C35C, symSize: 0x760 } - - { offsetInCU: 0x13D3, offset: 0x88D30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1B4C, symBinAddr: 0x54334, symSize: 0x1B8 } - - { offsetInCU: 0x142F, offset: 0x88D8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x1D04, symBinAddr: 0x544EC, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x88DD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5948, symBinAddr: 0x58124, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x88E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x599C, symBinAddr: 0x58178, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x88E91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A1C, symBinAddr: 0x581F8, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x88EC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5A24, symBinAddr: 0x58200, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x88F47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5A84, symBinAddr: 0x58260, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x88F64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x1D14, symBinAddr: 0x544FC, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x88F78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x1D34, symBinAddr: 0x5451C, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x88F8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x1E28, symBinAddr: 0x54610, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x88FA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x21AC, symBinAddr: 0x54994, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x88FBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x2E04, symBinAddr: 0x555EC, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x88FE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x2E34, symBinAddr: 0x5561C, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x88FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x2E60, symBinAddr: 0x55648, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x8900C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x2E8C, symBinAddr: 0x55674, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x89020, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x2EB8, symBinAddr: 0x556A0, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x89034, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2EE4, symBinAddr: 0x556CC, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x89048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x2EEC, symBinAddr: 0x556D4, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x8905C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x32AC, symBinAddr: 0x55A94, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x89070, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3308, symBinAddr: 0x55AF0, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x89084, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x33F4, symBinAddr: 0x55BDC, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x89098, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3404, symBinAddr: 0x55BEC, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x890AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x3434, symBinAddr: 0x55C1C, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x890C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x3514, symBinAddr: 0x55CFC, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x890D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x384C, symBinAddr: 0x56034, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x890E8, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x40B0, symBinAddr: 0x56898, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x890FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x40B8, symBinAddr: 0x568A0, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x89110, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x441C, symBinAddr: 0x56C04, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x89124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x4478, symBinAddr: 0x56C60, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x89138, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x455C, symBinAddr: 0x56D44, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x8914C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x456C, symBinAddr: 0x56D54, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x89160, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x4610, symBinAddr: 0x56DF8, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x89174, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x479C, symBinAddr: 0x56F84, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x89188, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4B44, symBinAddr: 0x5732C, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x8919C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4B88, symBinAddr: 0x57370, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x891B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x4D04, symBinAddr: 0x574EC, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x891C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x4D60, symBinAddr: 0x57548, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x891D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x4DF4, symBinAddr: 0x575DC, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x891EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x4E04, symBinAddr: 0x575EC, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x89200, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x4E6C, symBinAddr: 0x57654, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x89214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x4F48, symBinAddr: 0x57730, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x89228, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x50B4, symBinAddr: 0x5789C, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x8923C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x50E0, symBinAddr: 0x578C8, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x89250, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x51A4, symBinAddr: 0x5798C, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x89264, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x5200, symBinAddr: 0x579E8, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x89278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x527C, symBinAddr: 0x57A64, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x8928C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x528C, symBinAddr: 0x57A74, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x892A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x52D4, symBinAddr: 0x57ABC, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x892B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x53B8, symBinAddr: 0x57BA0, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x892C8, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5550, symBinAddr: 0x57D38, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x892DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x5584, symBinAddr: 0x57D6C, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x892F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5680, symBinAddr: 0x57E68, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x89304, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x56DC, symBinAddr: 0x57EC4, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x89318, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x5758, symBinAddr: 0x57F40, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x8932C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x5768, symBinAddr: 0x57F50, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x89340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5790, symBinAddr: 0x57F78, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x89354, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x57CC, symBinAddr: 0x57FB4, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x89368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x5844, symBinAddr: 0x58020, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x8937C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5888, symBinAddr: 0x58064, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x89390, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x58E4, symBinAddr: 0x580C0, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x893A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x5938, symBinAddr: 0x58114, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x893B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5A8C, symBinAddr: 0x58268, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x893CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5A90, symBinAddr: 0x5826C, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x893E0, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5B58, symBinAddr: 0x582B0, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x893F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x6FD8, symBinAddr: 0x59730, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x89408, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x701C, symBinAddr: 0x59774, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x8941C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7A78, symBinAddr: 0x597B8, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x89430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x5A910, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x89444, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x8C14, symBinAddr: 0x5A954, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x89458, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x8C58, symBinAddr: 0x5A998, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x8946C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x8C9C, symBinAddr: 0x5A9DC, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x89480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x8CE0, symBinAddr: 0x5AA20, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x89494, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x8D24, symBinAddr: 0x5AA64, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x894A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x8D68, symBinAddr: 0x5AAA8, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x894BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA500, symBinAddr: 0x5C240, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x894D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xA544, symBinAddr: 0x5C284, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x894E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xA588, symBinAddr: 0x5C2C8, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x894F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xAD7C, symBinAddr: 0x5CABC, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x8950C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xADC0, symBinAddr: 0x5CB00, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x89520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xAE04, symBinAddr: 0x5CB44, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x89534, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xAE8C, symBinAddr: 0x5CBCC, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x89548, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xAED0, symBinAddr: 0x5CC10, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x8955C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xAF24, symBinAddr: 0x5CC54, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x89570, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xAFB4, symBinAddr: 0x5CCE4, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x89584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB070, symBinAddr: 0x5CDA0, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x89598, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB078, symBinAddr: 0x5CDA8, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x895AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB07C, symBinAddr: 0x5CDAC, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x895C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB088, symBinAddr: 0x5CDB8, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x895D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB098, symBinAddr: 0x5CDC8, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x895E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB128, symBinAddr: 0x5CE58, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x895FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB1E4, symBinAddr: 0x5CF14, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x89610, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB1E8, symBinAddr: 0x5CF18, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x89624, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB1F8, symBinAddr: 0x5CF28, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x89638, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB288, symBinAddr: 0x5CFB8, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x8964C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB344, symBinAddr: 0x5D074, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x89660, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB348, symBinAddr: 0x5D078, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x89674, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB358, symBinAddr: 0x5D088, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x89688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB3E8, symBinAddr: 0x5D118, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x8969C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB4A4, symBinAddr: 0x5D1D4, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x896B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB4A8, symBinAddr: 0x5D1D8, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x896C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB4B8, symBinAddr: 0x5D1E8, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x896D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB548, symBinAddr: 0x5D278, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x896EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB604, symBinAddr: 0x5D334, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x89700, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB60C, symBinAddr: 0x5D33C, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x89714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB610, symBinAddr: 0x5D340, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x89728, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB618, symBinAddr: 0x5D348, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x8973C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB628, symBinAddr: 0x5D358, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x89750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB6B8, symBinAddr: 0x5D3E8, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x89764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB774, symBinAddr: 0x5D4A4, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x89778, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB778, symBinAddr: 0x5D4A8, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x8978C, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB788, symBinAddr: 0x5D4B8, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x897A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xB7AC, symBinAddr: 0x5D4DC, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x897B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xB7CC, symBinAddr: 0x5D4FC, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x897C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xB80C, symBinAddr: 0x5D53C, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x897DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB81C, symBinAddr: 0x5D54C, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x897F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB820, symBinAddr: 0x5D550, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x89804, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB864, symBinAddr: 0x5D594, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x89818, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB868, symBinAddr: 0x5D598, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x8982C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB8AC, symBinAddr: 0x5D5DC, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x89840, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB8B0, symBinAddr: 0x5D5E0, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x89854, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB8F4, symBinAddr: 0x5D624, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x89868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB8F8, symBinAddr: 0x5D628, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x8987C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB93C, symBinAddr: 0x5D66C, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89890, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB940, symBinAddr: 0x5D670, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x898A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xB984, symBinAddr: 0x5D6B4, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x898B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xB988, symBinAddr: 0x5D6B8, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x898CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xB9CC, symBinAddr: 0x5D6FC, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x898E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xB9D0, symBinAddr: 0x5D700, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x898F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBA14, symBinAddr: 0x5D744, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x89908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBA18, symBinAddr: 0x5D748, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x8991C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBA5C, symBinAddr: 0x5D78C, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x89930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBA60, symBinAddr: 0x5D790, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x89944, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBAA4, symBinAddr: 0x5D7D4, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x89958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBAA8, symBinAddr: 0x5D7D8, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x8996C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBAEC, symBinAddr: 0x5D81C, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x89980, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAF0, symBinAddr: 0x5D820, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89994, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB34, symBinAddr: 0x5D864, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x899A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBB38, symBinAddr: 0x5D868, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x899BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB7C, symBinAddr: 0x5D8AC, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x899D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB80, symBinAddr: 0x5D8B0, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x899E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBBC4, symBinAddr: 0x5D8F4, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x899F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBBC8, symBinAddr: 0x5D8F8, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x89A0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC0C, symBinAddr: 0x5D93C, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x89A20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC10, symBinAddr: 0x5D940, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x89A34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC54, symBinAddr: 0x5D984, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x89A48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBC58, symBinAddr: 0x5D988, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x89A5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC9C, symBinAddr: 0x5D9CC, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x89A70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBCA0, symBinAddr: 0x5D9D0, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x89A84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCE4, symBinAddr: 0x5DA14, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x89A98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCE8, symBinAddr: 0x5DA18, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x89AAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xBD2C, symBinAddr: 0x5DA5C, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89AC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xBD70, symBinAddr: 0x5DAA0, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89AD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xBE00, symBinAddr: 0x5DB30, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x89AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xBEBC, symBinAddr: 0x5DBEC, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x89AFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xBEC0, symBinAddr: 0x5DBF0, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x89B10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBED0, symBinAddr: 0x5DC00, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x89B24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBED4, symBinAddr: 0x5DC04, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x89B38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF18, symBinAddr: 0x5DC48, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x89B4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF1C, symBinAddr: 0x5DC4C, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x89B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF60, symBinAddr: 0x5DC90, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x89B74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBF64, symBinAddr: 0x5DC94, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89BA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xEB4, symBinAddr: 0x5369C, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEDC, symBinAddr: 0x536C4, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x89BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x102C, symBinAddr: 0x53814, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x89BFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1054, symBinAddr: 0x5383C, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x89C18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x111C, symBinAddr: 0x53904, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x89C34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1128, symBinAddr: 0x53910, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x89C50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1130, symBinAddr: 0x53918, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x89C6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1138, symBinAddr: 0x53920, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89C8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1254, symBinAddr: 0x53A3C, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x89CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x127C, symBinAddr: 0x53A64, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x89CCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x53B58, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x89CE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1398, symBinAddr: 0x53B80, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x89D31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14FC, symBinAddr: 0x53CE4, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x89DD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1580, symBinAddr: 0x53D68, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x89DEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15A8, symBinAddr: 0x53D90, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x89E11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x53EC8, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x89E2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1708, symBinAddr: 0x53EF0, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x89E67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1808, symBinAddr: 0x53FF0, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x89F16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1890, symBinAddr: 0x54078, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x89F94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x18F0, symBinAddr: 0x540D8, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x89FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1930, symBinAddr: 0x54118, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x8A048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x5423C, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x8A064, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A7C, symBinAddr: 0x54264, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x8A09B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5A48, symBinAddr: 0x58224, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x8A2A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DD40, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8A2C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DD40, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x8A2E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5DD48, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x8A322, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5DD50, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8A340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5DD60, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x8A36B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5DD64, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x8A389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5DD6C, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x8A3C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5DD74, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x8A3F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5DD84, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x8A41E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5DD88, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x8A43C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5DD90, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x8A476, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5DD98, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A4A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5DDA8, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A4D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5DDAC, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A4E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5DE00, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A4F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5DE44, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DE54, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DE54, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A6A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5DE78, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8A7BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DE98, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8A7FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DE98, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8A849, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5DEBC, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8A966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DEDC, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8A9A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DEDC, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8A9F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5DF3C, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8AA0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5DF44, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8AA1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5DF80, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8AB37, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DFF8, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8ABF4, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DFF8, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8ADED, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5E360, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8AF9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E3A8, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8AFDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E3A8, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8B02B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5E3CC, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8B16C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5E3EC, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8B197, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5E480, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8B1DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x5EDB8, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8B24A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA70, symBinAddr: 0x5EE1C, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8B266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA7C, symBinAddr: 0x5EE28, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8B294, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAA0, symBinAddr: 0x5EE4C, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8B326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5E458, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8B351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF0, symBinAddr: 0x5EE9C, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8B37C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB94, symBinAddr: 0x5EF40, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8B398, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xBA0, symBinAddr: 0x5EF4C, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B659, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x5ECEC, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B6D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBC4, symBinAddr: 0x5EF70, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8B928, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC0, symBinAddr: 0x5F36C, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8BAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x10FC, symBinAddr: 0x5F4A8, symSize: 0xA58 } - - { offsetInCU: 0xF95, offset: 0x8C0B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B54, symBinAddr: 0x5FF00, symSize: 0x654 } - - { offsetInCU: 0x1345, offset: 0x8C462, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x21A8, symBinAddr: 0x60554, symSize: 0x470 } - - { offsetInCU: 0x14E4, offset: 0x8C601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2618, symBinAddr: 0x609C4, symSize: 0x618 } - - { offsetInCU: 0x1A13, offset: 0x8CB30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2C30, symBinAddr: 0x60FDC, symSize: 0x150 } - - { offsetInCU: 0x1B2D, offset: 0x8CC4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2D80, symBinAddr: 0x6112C, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8CC8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3330, symBinAddr: 0x61680, symSize: 0x204 } - - { offsetInCU: 0x1C21, offset: 0x8CD3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3534, symBinAddr: 0x61884, symSize: 0x23C } - - { offsetInCU: 0x1C86, offset: 0x8CDA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3770, symBinAddr: 0x61AC0, symSize: 0x238 } - - { offsetInCU: 0x1DAE, offset: 0x8CECB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39EC, symBinAddr: 0x61CF8, symSize: 0x29C } - - { offsetInCU: 0x1EED, offset: 0x8D00A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3C88, symBinAddr: 0x61F94, symSize: 0x188 } - - { offsetInCU: 0x1F33, offset: 0x8D050, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E10, symBinAddr: 0x6211C, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8D3A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4284, symBinAddr: 0x62590, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D4A0, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2DFC, symBinAddr: 0x611A8, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D4E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2E00, symBinAddr: 0x611AC, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D4F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2E04, symBinAddr: 0x611B0, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D50A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2E48, symBinAddr: 0x611F4, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D51E, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2E4C, symBinAddr: 0x611F8, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D532, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x2EDC, symBinAddr: 0x61244, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D546, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x2EE0, symBinAddr: 0x61248, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D55A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x2F34, symBinAddr: 0x6128C, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D56E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x2FC4, symBinAddr: 0x6131C, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x3080, symBinAddr: 0x613D8, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D596, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x3088, symBinAddr: 0x613E0, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D5AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x308C, symBinAddr: 0x613E4, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D5BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3094, symBinAddr: 0x613EC, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D5D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x30A4, symBinAddr: 0x613FC, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D5E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3134, symBinAddr: 0x6148C, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D5FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x31F0, symBinAddr: 0x61548, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D60E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x31F8, symBinAddr: 0x61550, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D622, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x31FC, symBinAddr: 0x61554, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D636, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x3208, symBinAddr: 0x61560, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D64A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x3218, symBinAddr: 0x61570, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D65E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3240, symBinAddr: 0x61590, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D672, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x324C, symBinAddr: 0x6159C, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D686, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3250, symBinAddr: 0x615A0, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D69A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3294, symBinAddr: 0x615E4, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D6AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x32A0, symBinAddr: 0x615F0, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D6C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x32A4, symBinAddr: 0x615F4, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D6D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x32E8, symBinAddr: 0x61638, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D6F5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x32F4, symBinAddr: 0x61644, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D72D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3308, symBinAddr: 0x61658, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D765, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x331C, symBinAddr: 0x6166C, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8D7C9, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x439C, symBinAddr: 0x626A8, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8D7DD, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4440, symBinAddr: 0x626F0, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8D7F1, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x447C, symBinAddr: 0x6272C, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8D805, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x44D4, symBinAddr: 0x62774, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8D819, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x44DC, symBinAddr: 0x6277C, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8D82D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x44EC, symBinAddr: 0x6278C, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8D841, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x454C, symBinAddr: 0x62794, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8D855, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x4600, symBinAddr: 0x62848, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8D884, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8D89C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8D8B0, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8D8C4, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8D8D8, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E4A4, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8D8EC, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x5E4A8, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8D96A, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x5E4CC, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8D9F9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x5E550, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8DA88, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x5E5D4, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8DB1F, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x5E660, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8DBF9, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x5E6C8, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8DCD3, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x5E730, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8DD48, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x5E79C, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8DDA5, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x5E7DC, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8DE02, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x5E81C, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8DE2B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x5E860, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8DE7E, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x5E8C8, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8DEFA, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x5E92C, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8DF8B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x5E990, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8E0F1, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8E111, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8E131, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8E145, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8E159, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8E16D, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5EA54, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8E216, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5EA9C, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8E2BD, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x5EB24, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8E360, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x5EBA4, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8E44C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8E46C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8E480, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E494, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E4A8, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EC88, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E518, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA4C, symBinAddr: 0x5EDF8, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E534, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x5EE04, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x5EE0C, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA68, symBinAddr: 0x5EE14, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E57E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB70, symBinAddr: 0x5EF1C, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E59A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB7C, symBinAddr: 0x5EF28, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E5B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB84, symBinAddr: 0x5EF30, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E5CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x5EF38, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8EA7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x62864, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8EA91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x629EC, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8EAA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x62A90, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8EAB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x62BEC, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8EACD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x62DD4, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8EAE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x62EC0, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8EAF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x63048, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8EB09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x630E0, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8EB1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x63178, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8EB31, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x63200, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8EB45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x63254, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8EB59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x63374, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8EB6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x633F8, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8EB81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x634EC, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8EB95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x6364C, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8EBA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x63728, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8EBBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x63870, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8EBD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x63908, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8EBE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x639D4, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8EC17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x63A5C, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8EC66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x63FB4, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8ECCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A8, symBinAddr: 0x63FCC, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8ED46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D4, symBinAddr: 0x63FF8, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8ED71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17DC, symBinAddr: 0x64000, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8EDA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1800, symBinAddr: 0x64024, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8EDBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x180C, symBinAddr: 0x64030, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8EDDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E30, symBinAddr: 0x65558, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8EE20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x63A7C, symSize: 0x200 } - - { offsetInCU: 0x425, offset: 0x8EE5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1458, symBinAddr: 0x63C7C, symSize: 0x338 } - - { offsetInCU: 0x456, offset: 0x8EE90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1868, symBinAddr: 0x6408C, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8EEB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x187C, symBinAddr: 0x640A0, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8EF0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x640B4, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8EF36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A64, symBinAddr: 0x64288, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8EF61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A6C, symBinAddr: 0x64290, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8EF92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A90, symBinAddr: 0x642B4, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8EFAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A9C, symBinAddr: 0x642C0, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8EFCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FEC, symBinAddr: 0x65714, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8F010, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x640D4, symSize: 0x1AC } - - { offsetInCU: 0x62B, offset: 0x8F065, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AF8, symBinAddr: 0x6431C, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8F09C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B44, symBinAddr: 0x64368, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8F0BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3138, symBinAddr: 0x65860, symSize: 0x294 } - - { offsetInCU: 0x6D5, offset: 0x8F10F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1B84, symBinAddr: 0x643A8, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8F13A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2300, symBinAddr: 0x64B24, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8F165, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2308, symBinAddr: 0x64B2C, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8F196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x232C, symBinAddr: 0x64B50, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8F1B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2338, symBinAddr: 0x64B5C, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8F1CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33CC, symBinAddr: 0x65AF4, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8F214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BA4, symBinAddr: 0x643C8, symSize: 0x264 } - - { offsetInCU: 0x819, offset: 0x8F253, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E08, symBinAddr: 0x6462C, symSize: 0x474 } - - { offsetInCU: 0x84A, offset: 0x8F284, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2394, symBinAddr: 0x64BB8, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8F2A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A8, symBinAddr: 0x64BCC, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8F2CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x23E0, symBinAddr: 0x64BE0, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8F2DF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2444, symBinAddr: 0x64C24, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8F2F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x250C, symBinAddr: 0x64CA4, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8F307, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2594, symBinAddr: 0x64CE8, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8F31B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x26C0, symBinAddr: 0x64E14, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8F32F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2714, symBinAddr: 0x64E58, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8F343, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x27A4, symBinAddr: 0x64EE8, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8F357, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2860, symBinAddr: 0x64FA4, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8F36B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2868, symBinAddr: 0x64FAC, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8F37F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x286C, symBinAddr: 0x64FB0, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8F393, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2874, symBinAddr: 0x64FB8, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8F3A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2884, symBinAddr: 0x64FC8, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8F3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2914, symBinAddr: 0x65058, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8F3CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x29D0, symBinAddr: 0x65114, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8F3E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x29D4, symBinAddr: 0x65118, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8F3F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x29E4, symBinAddr: 0x65128, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8F40B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2A14, symBinAddr: 0x65158, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8F41F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2A44, symBinAddr: 0x65188, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8F433, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2AA0, symBinAddr: 0x651E4, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8F447, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2B50, symBinAddr: 0x65278, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8F45B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2BB4, symBinAddr: 0x652DC, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8F46F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2C10, symBinAddr: 0x65338, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8F483, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2C70, symBinAddr: 0x65398, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F497, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2C80, symBinAddr: 0x653A8, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F4AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2C84, symBinAddr: 0x653AC, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F4BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2CC8, symBinAddr: 0x653F0, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F4D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2CCC, symBinAddr: 0x653F4, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F4E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D10, symBinAddr: 0x65438, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F4FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D14, symBinAddr: 0x6543C, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F50F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2D58, symBinAddr: 0x65480, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F523, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2D5C, symBinAddr: 0x65484, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DA0, symBinAddr: 0x654C8, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F54B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA4, symBinAddr: 0x654CC, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F55F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE8, symBinAddr: 0x65510, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F573, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DEC, symBinAddr: 0x65514, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x36A4, symBinAddr: 0x65DCC, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F5A6, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x36E8, symBinAddr: 0x65E10, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F5BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x37B4, symBinAddr: 0x65EDC, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F5CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3844, symBinAddr: 0x65F6C, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F5E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3900, symBinAddr: 0x66028, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F5F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3904, symBinAddr: 0x6602C, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F60A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3914, symBinAddr: 0x6603C, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F61E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3918, symBinAddr: 0x66040, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x395C, symBinAddr: 0x66084, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3960, symBinAddr: 0x66088, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F65A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39A4, symBinAddr: 0x660CC, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F66E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39A8, symBinAddr: 0x660D0, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F69C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1818, symBinAddr: 0x6403C, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F6B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x64064, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F6DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AA8, symBinAddr: 0x642CC, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F6F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x642F4, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F718, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2344, symBinAddr: 0x64B68, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F734, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x236C, symBinAddr: 0x64B90, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8F886, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6613C, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8F8AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6613C, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8F8C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x66168, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8F907, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x6619C, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8F925, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x661AC, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8F950, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x661B0, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8F96E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x661DC, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8F9AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x66210, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8F9DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x66220, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8FA07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x66224, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8FA1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x66254, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8FA2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6627C, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8FA43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x662B8, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8FA57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x66324, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8FA6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x66368, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8FA7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x663B0, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8FA93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x663F0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8FBD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x66400, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8FBFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8languageSSvpZ', symObjAddr: 0x8D10, symBinAddr: 0x853D8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8FC17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7versionSSvpZ', symObjAddr: 0x8D20, symBinAddr: 0x853E8, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8FC31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8D30, symBinAddr: 0x853F8, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8FC4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8D40, symBinAddr: 0x85408, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8FC65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8D50, symBinAddr: 0x85418, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8FC7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8D60, symBinAddr: 0x85428, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8FC99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x8D70, symBinAddr: 0x85438, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8FCB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x8D80, symBinAddr: 0x85448, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x8D90, symBinAddr: 0x85458, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8FCE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x8DA0, symBinAddr: 0x85468, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8FD01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x8DB0, symBinAddr: 0x85478, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8FD1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x8DC0, symBinAddr: 0x85488, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8FD35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x8DD0, symBinAddr: 0x85498, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8FD4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x8DE0, symBinAddr: 0x854A8, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8FD69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x8DF0, symBinAddr: 0x854B8, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8FD83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x8E00, symBinAddr: 0x854C8, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8FD9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x8E10, symBinAddr: 0x854D8, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x8FDB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x8E20, symBinAddr: 0x854E8, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x8FDD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x8E30, symBinAddr: 0x854F8, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x8FDEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x8E40, symBinAddr: 0x85508, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x8FE05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x8E50, symBinAddr: 0x85518, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x8FE1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x8E60, symBinAddr: 0x85528, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x8FE39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x8E70, symBinAddr: 0x85538, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x8FE53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x8E80, symBinAddr: 0x85548, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x8FE6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x8E90, symBinAddr: 0x85558, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x8FE87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x8EA0, symBinAddr: 0x85568, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x8FEA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x8EB0, symBinAddr: 0x85578, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x8FEBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x8EC0, symBinAddr: 0x85588, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x8FED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x8ED0, symBinAddr: 0x85598, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x8FEEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKeySSvpZ', symObjAddr: 0x8EE0, symBinAddr: 0x855A8, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x8FF09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKeySSvpZ', symObjAddr: 0x8EF0, symBinAddr: 0x855B8, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x8FF23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvpZ', symObjAddr: 0x8F00, symBinAddr: 0x855C8, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x8FF3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKeySSvpZ', symObjAddr: 0x8F10, symBinAddr: 0x855D8, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x8FF57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKeySSvpZ', symObjAddr: 0x8F20, symBinAddr: 0x855E8, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x8FF71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKeySSvpZ', symObjAddr: 0x8F30, symBinAddr: 0x855F8, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x8FF8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKeySSvpZ', symObjAddr: 0x8F40, symBinAddr: 0x85608, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x8FFA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvpZ', symObjAddr: 0x8F50, symBinAddr: 0x85618, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x8FFBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvpZ', symObjAddr: 0x8F60, symBinAddr: 0x85628, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x8FFD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvpZ', symObjAddr: 0x8F70, symBinAddr: 0x85638, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x8FFF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkeySSvpZ', symObjAddr: 0x8F80, symBinAddr: 0x85648, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x9000D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvpZ', symObjAddr: 0x8F90, symBinAddr: 0x85658, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x90027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKeySSvpZ', symObjAddr: 0x8FA0, symBinAddr: 0x85668, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x90041, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKeySSvpZ', symObjAddr: 0x8FB0, symBinAddr: 0x85678, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x9005B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKeySSvpZ', symObjAddr: 0x8FC0, symBinAddr: 0x85688, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x90075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKeySSvpZ', symObjAddr: 0x8FD0, symBinAddr: 0x85698, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x9008F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKeySSvpZ', symObjAddr: 0x8FE0, symBinAddr: 0x856A8, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x900A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKeySSvpZ', symObjAddr: 0x8FF0, symBinAddr: 0x856B8, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x900C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x9000, symBinAddr: 0x856C8, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x900DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x9010, symBinAddr: 0x856D8, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x900F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x9020, symBinAddr: 0x856E8, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x90111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKeySSvpZ', symObjAddr: 0x9030, symBinAddr: 0x856F8, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x9012B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKeySSvpZ', symObjAddr: 0x9040, symBinAddr: 0x85708, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x90145, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKeySSvpZ', symObjAddr: 0x9050, symBinAddr: 0x85718, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x9015F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x9060, symBinAddr: 0x85728, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x90179, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x9070, symBinAddr: 0x85738, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x90193, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x9080, symBinAddr: 0x85748, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x901AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x9090, symBinAddr: 0x85758, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x901C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x90A0, symBinAddr: 0x85768, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x901E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkeySSvpZ', symObjAddr: 0x90B0, symBinAddr: 0x85778, symSize: 0x0 } - - { offsetInCU: 0x63D, offset: 0x901EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x66400, symSize: 0x40 } - - { offsetInCU: 0x65B, offset: 0x9020D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x66440, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x9022B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x66480, symSize: 0x40 } - - { offsetInCU: 0x697, offset: 0x90249, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x664C0, symSize: 0x40 } - - { offsetInCU: 0x6B5, offset: 0x90267, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x66500, symSize: 0x40 } - - { offsetInCU: 0x6DF, offset: 0x90291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x66540, symSize: 0x14 } - - { offsetInCU: 0x6FA, offset: 0x902AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x666D4, symSize: 0x108 } - - { offsetInCU: 0x74C, offset: 0x902FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x66910, symSize: 0x8 } - - { offsetInCU: 0x768, offset: 0x9031A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x66918, symSize: 0x18 } - - { offsetInCU: 0x780, offset: 0x90332, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x66918, symSize: 0x18 } - - { offsetInCU: 0x792, offset: 0x90344, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x66554, symSize: 0x40 } - - { offsetInCU: 0x7B0, offset: 0x90362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x66594, symSize: 0x40 } - - { offsetInCU: 0x7CE, offset: 0x90380, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x665D4, symSize: 0x40 } - - { offsetInCU: 0x7EC, offset: 0x9039E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x66614, symSize: 0x40 } - - { offsetInCU: 0x80A, offset: 0x903BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x66654, symSize: 0x40 } - - { offsetInCU: 0x828, offset: 0x903DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x66694, symSize: 0x40 } - - { offsetInCU: 0x851, offset: 0x90403, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x66800, symSize: 0x4 } - - { offsetInCU: 0x865, offset: 0x90417, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x66804, symSize: 0x44 } - - { offsetInCU: 0x88F, offset: 0x90441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x66930, symSize: 0x90 } - - { offsetInCU: 0x8A3, offset: 0x90455, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x669C0, symSize: 0xBC } - - { offsetInCU: 0x8B7, offset: 0x90469, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x66A7C, symSize: 0x8 } - - { offsetInCU: 0x8CB, offset: 0x9047D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x66A84, symSize: 0x4 } - - { offsetInCU: 0x8DF, offset: 0x90491, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x66A88, symSize: 0x8 } - - { offsetInCU: 0x8F3, offset: 0x904A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x66A90, symSize: 0x10 } - - { offsetInCU: 0x907, offset: 0x904B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8language_WZ', symObjAddr: 0x6B0, symBinAddr: 0x66AA0, symSize: 0x20 } - - { offsetInCU: 0x921, offset: 0x904D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7version_WZ', symObjAddr: 0x6D0, symBinAddr: 0x66AC0, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x904ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x6EC, symBinAddr: 0x66ADC, symSize: 0x1C } - - { offsetInCU: 0x955, offset: 0x90507, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x708, symBinAddr: 0x66AF8, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x90521, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x724, symBinAddr: 0x66B14, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x9053B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPassword_WZ', symObjAddr: 0x740, symBinAddr: 0x66B30, symSize: 0x14 } - - { offsetInCU: 0x9AA, offset: 0x9055C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x754, symBinAddr: 0x66B44, symSize: 0x1C } - - { offsetInCU: 0x9C4, offset: 0x90576, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x770, symBinAddr: 0x66B60, symSize: 0x24 } - - { offsetInCU: 0x9DE, offset: 0x90590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x794, symBinAddr: 0x66B84, symSize: 0x20 } - - { offsetInCU: 0x9F8, offset: 0x905AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7B4, symBinAddr: 0x66BA4, symSize: 0x28 } - - { offsetInCU: 0xA12, offset: 0x905C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7DC, symBinAddr: 0x66BCC, symSize: 0x24 } - - { offsetInCU: 0xA2C, offset: 0x905DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x800, symBinAddr: 0x66BF0, symSize: 0x24 } - - { offsetInCU: 0xA46, offset: 0x905F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x824, symBinAddr: 0x66C14, symSize: 0x20 } - - { offsetInCU: 0xA60, offset: 0x90612, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x844, symBinAddr: 0x66C34, symSize: 0x28 } - - { offsetInCU: 0xA7A, offset: 0x9062C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x86C, symBinAddr: 0x66C5C, symSize: 0x1C } - - { offsetInCU: 0xA95, offset: 0x90647, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKey_WZ', symObjAddr: 0x888, symBinAddr: 0x66C78, symSize: 0x18 } - - { offsetInCU: 0xAAF, offset: 0x90661, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKey_WZ', symObjAddr: 0x8A0, symBinAddr: 0x66C90, symSize: 0x18 } - - { offsetInCU: 0xAC9, offset: 0x9067B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKey_WZ', symObjAddr: 0x8B8, symBinAddr: 0x66CA8, symSize: 0x1C } - - { offsetInCU: 0xAE3, offset: 0x90695, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x66CC4, symSize: 0x1C } - - { offsetInCU: 0xAFD, offset: 0x906AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x66CE0, symSize: 0x18 } - - { offsetInCU: 0xB17, offset: 0x906C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKey_WZ', symObjAddr: 0x908, symBinAddr: 0x66CF8, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x906E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKey_WZ', symObjAddr: 0x924, symBinAddr: 0x66D14, symSize: 0x1C } - - { offsetInCU: 0xB4B, offset: 0x906FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x940, symBinAddr: 0x66D30, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x90717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x66D4C, symSize: 0x18 } - - { offsetInCU: 0xB7F, offset: 0x90731, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKey_WZ', symObjAddr: 0x974, symBinAddr: 0x66D64, symSize: 0x18 } - - { offsetInCU: 0xB99, offset: 0x9074B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x98C, symBinAddr: 0x66D7C, symSize: 0x1C } - - { offsetInCU: 0xBB3, offset: 0x90765, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x66D98, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x9077F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkey_WZ', symObjAddr: 0x9C0, symBinAddr: 0x66DB0, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x90799, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x66DCC, symSize: 0x24 } - - { offsetInCU: 0xC01, offset: 0x907B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKey_WZ', symObjAddr: 0xA00, symBinAddr: 0x66DF0, symSize: 0x18 } - - { offsetInCU: 0xC1B, offset: 0x907CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKey_WZ', symObjAddr: 0xA18, symBinAddr: 0x66E08, symSize: 0x18 } - - { offsetInCU: 0xC35, offset: 0x907E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKey_WZ', symObjAddr: 0xA30, symBinAddr: 0x66E20, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x90801, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKey_WZ', symObjAddr: 0xA48, symBinAddr: 0x66E38, symSize: 0x1C } - - { offsetInCU: 0xC69, offset: 0x9081B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x66E54, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x90835, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKey_WZ', symObjAddr: 0xA7C, symBinAddr: 0x66E6C, symSize: 0x18 } - - { offsetInCU: 0xC9D, offset: 0x9084F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKey_WZ', symObjAddr: 0xA94, symBinAddr: 0x66E84, symSize: 0x1C } - - { offsetInCU: 0xCB7, offset: 0x90869, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x66EA0, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x90883, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkey_WZ', symObjAddr: 0xAC8, symBinAddr: 0x66EB8, symSize: 0x18 } - - { offsetInCU: 0xCEB, offset: 0x9089D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekey_WZ', symObjAddr: 0xAE0, symBinAddr: 0x66ED0, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x908B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkey_WZ', symObjAddr: 0xAF8, symBinAddr: 0x66EE8, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x908D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkey_WZ', symObjAddr: 0xB10, symBinAddr: 0x66F00, symSize: 0x20 } - - { offsetInCU: 0xD39, offset: 0x908EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKey_WZ', symObjAddr: 0xB30, symBinAddr: 0x66F20, symSize: 0x24 } - - { offsetInCU: 0xD53, offset: 0x90905, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKey_WZ', symObjAddr: 0xB54, symBinAddr: 0x66F44, symSize: 0x1C } - - { offsetInCU: 0xD6D, offset: 0x9091F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x66F60, symSize: 0x1C } - - { offsetInCU: 0xD87, offset: 0x90939, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x66F7C, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x90953, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x66F98, symSize: 0x18 } - - { offsetInCU: 0xDBB, offset: 0x9096D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKey_WZ', symObjAddr: 0xBC0, symBinAddr: 0x66FB0, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x90987, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x66FCC, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x909A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xBF4, symBinAddr: 0x66FE4, symSize: 0x18 } - - { offsetInCU: 0xE09, offset: 0x909BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC0C, symBinAddr: 0x66FFC, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x909D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKey_WZ', symObjAddr: 0xC24, symBinAddr: 0x67014, symSize: 0x1C } - - { offsetInCU: 0xE3D, offset: 0x909EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x67030, symSize: 0x24 } - - { offsetInCU: 0xE57, offset: 0x90A09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKey_WZ', symObjAddr: 0xC64, symBinAddr: 0x67054, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x90A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x67070, symSize: 0x20 } - - { offsetInCU: 0xE8B, offset: 0x90A3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCA0, symBinAddr: 0x67090, symSize: 0x18 } - - { offsetInCU: 0xEA5, offset: 0x90A57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCB8, symBinAddr: 0x670A8, symSize: 0x18 } - - { offsetInCU: 0xEBF, offset: 0x90A71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCD0, symBinAddr: 0x670C0, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x90A8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekey_WZ', symObjAddr: 0xCE8, symBinAddr: 0x670D8, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkey_WZ', symObjAddr: 0xD00, symBinAddr: 0x670F0, symSize: 0x18 } - - { offsetInCU: 0xF56, offset: 0x90B08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0xD18, symBinAddr: 0x67108, symSize: 0x13C } - - { offsetInCU: 0x1191, offset: 0x90D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x667DC, symSize: 0x24 } - - { offsetInCU: 0x1233, offset: 0x90DE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x66848, symSize: 0x4C } - - { offsetInCU: 0x130B, offset: 0x90EBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x66894, symSize: 0x34 } - - { offsetInCU: 0x1387, offset: 0x90F39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x668C8, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x910F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67244, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x91135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x67244, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x91181, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x67268, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x912C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1AE8, symBinAddr: 0x84DA0, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x9130B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x67364, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x9138A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x673A4, symSize: 0x3EC } - - { offsetInCU: 0x302, offset: 0x91575, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x55C, symBinAddr: 0x677A4, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x915DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C0, symBinAddr: 0x67808, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x91641, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x624, symBinAddr: 0x6786C, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x916A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x688, symBinAddr: 0x678D0, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x9170D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6EC, symBinAddr: 0x67934, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x9180A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x814, symBinAddr: 0x67A00, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x9187B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x67A3C, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x918B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x850, symBinAddr: 0x67A3C, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x918E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x860, symBinAddr: 0x67A4C, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x91967, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0x9C4, symBinAddr: 0x67BB0, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x919C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0x9F8, symBinAddr: 0x67BE4, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x91A49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA4C, symBinAddr: 0x67C38, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91AE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xA98, symBinAddr: 0x67C84, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x91B93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB2C, symBinAddr: 0x67D08, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x91C56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA0, symBinAddr: 0x67D7C, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91D05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC24, symBinAddr: 0x67E00, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC5C, symBinAddr: 0x67E38, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91E27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC94, symBinAddr: 0x67E70, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x91EB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCCC, symBinAddr: 0x67EA8, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x91F4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD04, symBinAddr: 0x67EE0, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x91FE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD3C, symBinAddr: 0x67F18, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x92078, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD74, symBinAddr: 0x67F50, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x9210D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDAC, symBinAddr: 0x67F88, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x92178, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDE4, symBinAddr: 0x67FC0, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x921D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE28, symBinAddr: 0x68004, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x922BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0xF60, symBinAddr: 0x6813C, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x923A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x100C, symBinAddr: 0x681E8, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x92441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1084, symBinAddr: 0x68260, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x9246E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1108, symBinAddr: 0x682E4, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x92514, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x672C8, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x9252C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x67318, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x925CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5B8, symBinAddr: 0x67800, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x925DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x61C, symBinAddr: 0x67864, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x925F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x680, symBinAddr: 0x678C8, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x92606, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6E4, symBinAddr: 0x6792C, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x9261A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x748, symBinAddr: 0x67990, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x9262E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x7AC, symBinAddr: 0x67998, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x92642, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOf', symObjAddr: 0x7CC, symBinAddr: 0x679B8, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x926A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1250, symBinAddr: 0x6842C, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x926B7, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1258, symBinAddr: 0x68434, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x926CB, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1268, symBinAddr: 0x68444, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x9270C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x129C, symBinAddr: 0x6844C, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x9280E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15BC, symBinAddr: 0x6876C, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x92961, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x67288, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x9297D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x6728C, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x92999, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x67290, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x929B5, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x67294, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x929D1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x67298, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x929ED, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x6729C, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x92A09, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x672A0, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92A25, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x672A4, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x92A41, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x672A8, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x92A5D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x672AC, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x92A79, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x672B0, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x92A95, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x672BC, symSize: 0xC } + - { offsetInCU: 0x34, offset: 0x58E66, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x6BFF0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x58E9B, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x6C020, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58F00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3B370, symBinAddr: 0x85530, symSize: 0x0 } + - { offsetInCU: 0x303, offset: 0x591B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9A3C, symBinAddr: 0xBC58, symSize: 0x1558 } + - { offsetInCU: 0x1C2A, offset: 0x5AADB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x2284, symSize: 0x3C } + - { offsetInCU: 0x1C5A, offset: 0x5AB0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x22C0, symSize: 0x40 } + - { offsetInCU: 0x1E04, offset: 0x5ACB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1C50, symBinAddr: 0x3E94, symSize: 0x8 } + - { offsetInCU: 0x1E18, offset: 0x5ACC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1C58, symBinAddr: 0x3E9C, symSize: 0x3C } + - { offsetInCU: 0x1E2C, offset: 0x5ACDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1C94, symBinAddr: 0x3ED8, symSize: 0x16C } + - { offsetInCU: 0x2296, offset: 0x5B147, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8888, symBinAddr: 0xAABC, symSize: 0xC } + - { offsetInCU: 0x22AA, offset: 0x5B15B, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8894, symBinAddr: 0xAAC8, symSize: 0x4 } + - { offsetInCU: 0x22BE, offset: 0x5B16F, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8898, symBinAddr: 0xAACC, symSize: 0x20 } + - { offsetInCU: 0x22D2, offset: 0x5B183, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x88B8, symBinAddr: 0xAAEC, symSize: 0x28 } + - { offsetInCU: 0x24F7, offset: 0x5B3A8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8EF8, symBinAddr: 0xB114, symSize: 0x2C } + - { offsetInCU: 0x250B, offset: 0x5B3BC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F24, symBinAddr: 0xB140, symSize: 0x2C } + - { offsetInCU: 0x251F, offset: 0x5B3D0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8F90, symBinAddr: 0xB1AC, symSize: 0x2C } + - { offsetInCU: 0x2533, offset: 0x5B3E4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8FBC, symBinAddr: 0xB1D8, symSize: 0x2C } + - { offsetInCU: 0x2B9D, offset: 0x5BA4E, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB004, symBinAddr: 0xD220, symSize: 0x40 } + - { offsetInCU: 0x2BB1, offset: 0x5BA62, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB044, symBinAddr: 0xD260, symSize: 0x20 } + - { offsetInCU: 0x2BC5, offset: 0x5BA76, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB064, symBinAddr: 0xD280, symSize: 0x10 } + - { offsetInCU: 0x2BD9, offset: 0x5BA8A, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB074, symBinAddr: 0xD290, symSize: 0x3C } + - { offsetInCU: 0x2BED, offset: 0x5BA9E, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB110, symBinAddr: 0xD32C, symSize: 0x44 } + - { offsetInCU: 0x2C01, offset: 0x5BAB2, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB2DC, symBinAddr: 0xD4F8, symSize: 0x8 } + - { offsetInCU: 0x2C15, offset: 0x5BAC6, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB2E4, symBinAddr: 0xD500, symSize: 0x10 } + - { offsetInCU: 0x2C29, offset: 0x5BADA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xB2F4, symBinAddr: 0xD510, symSize: 0x5C } + - { offsetInCU: 0x2C3D, offset: 0x5BAEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xB350, symBinAddr: 0xD56C, symSize: 0x30C } + - { offsetInCU: 0x2C51, offset: 0x5BB02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xB65C, symBinAddr: 0xD878, symSize: 0x240 } + - { offsetInCU: 0x2C65, offset: 0x5BB16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xB89C, symBinAddr: 0xDAB8, symSize: 0x70 } + - { offsetInCU: 0x2C79, offset: 0x5BB2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xB90C, symBinAddr: 0xDB28, symSize: 0x34 } + - { offsetInCU: 0x2C8D, offset: 0x5BB3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xB940, symBinAddr: 0xDB5C, symSize: 0x174 } + - { offsetInCU: 0x2CA1, offset: 0x5BB52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xBAB4, symBinAddr: 0xDCD0, symSize: 0xB4 } + - { offsetInCU: 0x2CB5, offset: 0x5BB66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xBB68, symBinAddr: 0xDD84, symSize: 0x10 } + - { offsetInCU: 0x2CC9, offset: 0x5BB7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xBB78, symBinAddr: 0xDD94, symSize: 0x34 } + - { offsetInCU: 0x2CDD, offset: 0x5BB8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xBC2C, symBinAddr: 0xDE48, symSize: 0x5C } + - { offsetInCU: 0x2CF1, offset: 0x5BBA2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBD2C, symBinAddr: 0xDF48, symSize: 0x2C } + - { offsetInCU: 0x2D05, offset: 0x5BBB6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBD58, symBinAddr: 0xDF74, symSize: 0x2C } + - { offsetInCU: 0x2D19, offset: 0x5BBCA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBD84, symBinAddr: 0xDFA0, symSize: 0x2C } + - { offsetInCU: 0x2D2D, offset: 0x5BBDE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBDB0, symBinAddr: 0xDFCC, symSize: 0x2C } + - { offsetInCU: 0x2D41, offset: 0x5BBF2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBDDC, symBinAddr: 0xDFF8, symSize: 0x2C } + - { offsetInCU: 0x2D55, offset: 0x5BC06, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBE08, symBinAddr: 0xE024, symSize: 0x2C } + - { offsetInCU: 0x2D69, offset: 0x5BC1A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBE34, symBinAddr: 0xE050, symSize: 0x2C } + - { offsetInCU: 0x313E, offset: 0x5BFEF, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x71A4, symBinAddr: 0x93E8, symSize: 0x6C } + - { offsetInCU: 0x3252, offset: 0x5C103, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x88F4, symBinAddr: 0xAB28, symSize: 0x80 } + - { offsetInCU: 0x32E3, offset: 0x5C194, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x8974, symBinAddr: 0xABA8, symSize: 0x90 } + - { offsetInCU: 0x3383, offset: 0x5C234, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8A04, symBinAddr: 0xAC38, symSize: 0x14 } + - { offsetInCU: 0x33C1, offset: 0x5C272, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8A24, symBinAddr: 0xAC58, symSize: 0x8 } + - { offsetInCU: 0x3424, offset: 0x5C2D5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A2C, symBinAddr: 0xAC60, symSize: 0x14 } + - { offsetInCU: 0x34D5, offset: 0x5C386, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A40, symBinAddr: 0xAC74, symSize: 0x14 } + - { offsetInCU: 0x357E, offset: 0x5C42F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A54, symBinAddr: 0xAC88, symSize: 0x14 } + - { offsetInCU: 0x3625, offset: 0x5C4D6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A68, symBinAddr: 0xAC9C, symSize: 0x30 } + - { offsetInCU: 0x37B1, offset: 0x5C662, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8A98, symBinAddr: 0xACCC, symSize: 0x2C } + - { offsetInCU: 0x3948, offset: 0x5C7F9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8AC4, symBinAddr: 0xACF8, symSize: 0x24 } + - { offsetInCU: 0x3A34, offset: 0x5C8E5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8AE8, symBinAddr: 0xAD1C, symSize: 0x14 } + - { offsetInCU: 0x3A9A, offset: 0x5C94B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8AFC, symBinAddr: 0xAD30, symSize: 0x14 } + - { offsetInCU: 0x3B00, offset: 0x5C9B1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8B10, symBinAddr: 0xAD44, symSize: 0x14 } + - { offsetInCU: 0x3B7F, offset: 0x5CA30, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8B24, symBinAddr: 0xAD58, symSize: 0x14 } + - { offsetInCU: 0x3C32, offset: 0x5CAE3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B38, symBinAddr: 0xAD6C, symSize: 0x14 } + - { offsetInCU: 0x3CB3, offset: 0x5CB64, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B4C, symBinAddr: 0xAD80, symSize: 0x14 } + - { offsetInCU: 0x3D75, offset: 0x5CC26, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B60, symBinAddr: 0xAD94, symSize: 0x14 } + - { offsetInCU: 0x3E0F, offset: 0x5CCC0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B74, symBinAddr: 0xADA8, symSize: 0x10 } + - { offsetInCU: 0x3E77, offset: 0x5CD28, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B84, symBinAddr: 0xADB8, symSize: 0x18 } + - { offsetInCU: 0x3E93, offset: 0x5CD44, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8B9C, symBinAddr: 0xADD0, symSize: 0x14 } + - { offsetInCU: 0x3F0F, offset: 0x5CDC0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8BCC, symBinAddr: 0xAE00, symSize: 0x8 } + - { offsetInCU: 0x3F2B, offset: 0x5CDDC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8BD4, symBinAddr: 0xAE08, symSize: 0x14 } + - { offsetInCU: 0x3F5C, offset: 0x5CE0D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8BE8, symBinAddr: 0xAE1C, symSize: 0x14 } + - { offsetInCU: 0x3F8D, offset: 0x5CE3E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8BFC, symBinAddr: 0xAE30, symSize: 0x14 } + - { offsetInCU: 0x3FBE, offset: 0x5CE6F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8C10, symBinAddr: 0xAE44, symSize: 0x30 } + - { offsetInCU: 0x3FED, offset: 0x5CE9E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C40, symBinAddr: 0xAE74, symSize: 0x2C } + - { offsetInCU: 0x401E, offset: 0x5CECF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C6C, symBinAddr: 0xAEA0, symSize: 0x24 } + - { offsetInCU: 0x404F, offset: 0x5CF00, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8C90, symBinAddr: 0xAEC4, symSize: 0x14 } + - { offsetInCU: 0x4080, offset: 0x5CF31, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8CA4, symBinAddr: 0xAED8, symSize: 0x14 } + - { offsetInCU: 0x40B1, offset: 0x5CF62, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8CB8, symBinAddr: 0xAEEC, symSize: 0x14 } + - { offsetInCU: 0x40E2, offset: 0x5CF93, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8CCC, symBinAddr: 0xAF00, symSize: 0x14 } + - { offsetInCU: 0x4113, offset: 0x5CFC4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8CE0, symBinAddr: 0xAF14, symSize: 0x14 } + - { offsetInCU: 0x4144, offset: 0x5CFF5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8CF4, symBinAddr: 0xAF28, symSize: 0x14 } + - { offsetInCU: 0x4175, offset: 0x5D026, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8D08, symBinAddr: 0xAF3C, symSize: 0x14 } + - { offsetInCU: 0x41A6, offset: 0x5D057, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8D1C, symBinAddr: 0xAF50, symSize: 0x10 } + - { offsetInCU: 0x41D7, offset: 0x5D088, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D2C, symBinAddr: 0xAF60, symSize: 0x18 } + - { offsetInCU: 0x41F3, offset: 0x5D0A4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D44, symBinAddr: 0xAF78, symSize: 0x14 } + - { offsetInCU: 0x4243, offset: 0x5D0F4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D64, symBinAddr: 0xAF98, symSize: 0x40 } + - { offsetInCU: 0x42CB, offset: 0x5D17C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8DA4, symBinAddr: 0xAFD8, symSize: 0x70 } + - { offsetInCU: 0x434F, offset: 0x5D200, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E5C, symBinAddr: 0xB090, symSize: 0x4 } + - { offsetInCU: 0x436B, offset: 0x5D21C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E60, symBinAddr: 0xB094, symSize: 0x4 } + - { offsetInCU: 0x4396, offset: 0x5D247, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E64, symBinAddr: 0xB098, symSize: 0x40 } + - { offsetInCU: 0x4424, offset: 0x5D2D5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8EBC, symBinAddr: 0xB0D8, symSize: 0x3C } + - { offsetInCU: 0x4455, offset: 0x5D306, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FE8, symBinAddr: 0xB204, symSize: 0x14 } + - { offsetInCU: 0x448C, offset: 0x5D33D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8FFC, symBinAddr: 0xB218, symSize: 0x3C } + - { offsetInCU: 0x44CC, offset: 0x5D37D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9038, symBinAddr: 0xB254, symSize: 0x88 } + - { offsetInCU: 0x4576, offset: 0x5D427, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9154, symBinAddr: 0xB370, symSize: 0x84 } + - { offsetInCU: 0x45AA, offset: 0x5D45B, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9704, symBinAddr: 0xB920, symSize: 0xB8 } + - { offsetInCU: 0x4682, offset: 0x5D533, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x97BC, symBinAddr: 0xB9D8, symSize: 0x164 } + - { offsetInCU: 0x48DF, offset: 0x5D790, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xAF94, symBinAddr: 0xD1B0, symSize: 0x38 } + - { offsetInCU: 0x48FF, offset: 0x5D7B0, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xAF94, symBinAddr: 0xD1B0, symSize: 0x38 } + - { offsetInCU: 0x4913, offset: 0x5D7C4, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xAF94, symBinAddr: 0xD1B0, symSize: 0x38 } + - { offsetInCU: 0x4933, offset: 0x5D7E4, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xAF94, symBinAddr: 0xD1B0, symSize: 0x38 } + - { offsetInCU: 0x4947, offset: 0x5D7F8, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xAF94, symBinAddr: 0xD1B0, symSize: 0x38 } + - { offsetInCU: 0x495B, offset: 0x5D80C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xAF94, symBinAddr: 0xD1B0, symSize: 0x38 } + - { offsetInCU: 0x496F, offset: 0x5D820, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xAF94, symBinAddr: 0xD1B0, symSize: 0x38 } + - { offsetInCU: 0x4A6C, offset: 0x5D91D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAFCC, symBinAddr: 0xD1E8, symSize: 0x38 } + - { offsetInCU: 0x4A8C, offset: 0x5D93D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAFCC, symBinAddr: 0xD1E8, symSize: 0x38 } + - { offsetInCU: 0x4AA0, offset: 0x5D951, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAFCC, symBinAddr: 0xD1E8, symSize: 0x38 } + - { offsetInCU: 0x4AC0, offset: 0x5D971, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAFCC, symBinAddr: 0xD1E8, symSize: 0x38 } + - { offsetInCU: 0x4AD4, offset: 0x5D985, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAFCC, symBinAddr: 0xD1E8, symSize: 0x38 } + - { offsetInCU: 0x4AE8, offset: 0x5D999, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAFCC, symBinAddr: 0xD1E8, symSize: 0x38 } + - { offsetInCU: 0x4AFC, offset: 0x5D9AD, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAFCC, symBinAddr: 0xD1E8, symSize: 0x38 } + - { offsetInCU: 0x4D29, offset: 0x5DBDA, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x90E8, symBinAddr: 0xB304, symSize: 0x44 } + - { offsetInCU: 0x4D52, offset: 0x5DC03, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x912C, symBinAddr: 0xB348, symSize: 0x28 } + - { offsetInCU: 0x4D8D, offset: 0x5DC3E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x90CC, symBinAddr: 0xB2E8, symSize: 0x10 } + - { offsetInCU: 0x4DA9, offset: 0x5DC5A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x90DC, symBinAddr: 0xB2F8, symSize: 0xC } + - { offsetInCU: 0x4DD7, offset: 0x5DC88, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x90C0, symBinAddr: 0xB2DC, symSize: 0xC } + - { offsetInCU: 0x4EBB, offset: 0x5DD6C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8A18, symBinAddr: 0xAC4C, symSize: 0xC } + - { offsetInCU: 0x4EED, offset: 0x5DD9E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8BB0, symBinAddr: 0xADE4, symSize: 0x10 } + - { offsetInCU: 0x4F09, offset: 0x5DDBA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8BC0, symBinAddr: 0xADF4, symSize: 0xC } + - { offsetInCU: 0x4F67, offset: 0x5DE18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x2300, symSize: 0x44 } + - { offsetInCU: 0x4F7B, offset: 0x5DE2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x2344, symSize: 0x4 } + - { offsetInCU: 0x4F8F, offset: 0x5DE40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19arrAttForValidationAA14AttributesDataVSgvM', symObjAddr: 0x104, symBinAddr: 0x2348, symSize: 0x44 } + - { offsetInCU: 0x4FB7, offset: 0x5DE68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x148, symBinAddr: 0x238C, symSize: 0x2DC } + - { offsetInCU: 0x50E8, offset: 0x5DF99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x424, symBinAddr: 0x2668, symSize: 0x1464 } + - { offsetInCU: 0x53E9, offset: 0x5E29A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1888, symBinAddr: 0x3ACC, symSize: 0x3A4 } + - { offsetInCU: 0x5442, offset: 0x5E2F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1C2C, symBinAddr: 0x3E70, symSize: 0x24 } + - { offsetInCU: 0x54C5, offset: 0x5E376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1E00, symBinAddr: 0x4044, symSize: 0x6F0 } + - { offsetInCU: 0x5866, offset: 0x5E717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x24F0, symBinAddr: 0x4734, symSize: 0x3D4 } + - { offsetInCU: 0x5B11, offset: 0x5E9C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x28C4, symBinAddr: 0x4B08, symSize: 0x7A8 } + - { offsetInCU: 0x612C, offset: 0x5EFDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x307C, symBinAddr: 0x52C0, symSize: 0x524 } + - { offsetInCU: 0x6521, offset: 0x5F3D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x35A0, symBinAddr: 0x57E4, symSize: 0x3C04 } + - { offsetInCU: 0x74FA, offset: 0x603AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x7220, symBinAddr: 0x9454, symSize: 0x150 } + - { offsetInCU: 0x75D9, offset: 0x6048A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x7370, symBinAddr: 0x95A4, symSize: 0x300 } + - { offsetInCU: 0x7836, offset: 0x606E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7670, symBinAddr: 0x98A4, symSize: 0x3C8 } + - { offsetInCU: 0x7B94, offset: 0x60A45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7A38, symBinAddr: 0x9C6C, symSize: 0x2B0 } + - { offsetInCU: 0x7D3B, offset: 0x60BEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7F38, symBinAddr: 0xA16C, symSize: 0x31C } + - { offsetInCU: 0x7E96, offset: 0x60D47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x8254, symBinAddr: 0xA488, symSize: 0x438 } + - { offsetInCU: 0x8100, offset: 0x60FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x868C, symBinAddr: 0xA8C0, symSize: 0x188 } + - { offsetInCU: 0x83B5, offset: 0x61266, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x91D8, symBinAddr: 0xB3F4, symSize: 0x1F4 } + - { offsetInCU: 0x843A, offset: 0x612EB, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x9528, symBinAddr: 0xB744, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x615ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xE08C, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x61628, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xE09C, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x6170F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xE08C, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x6177C, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xE0C8, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x61790, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xE0DC, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x61802, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0xE1BC, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x6185D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0xE1D4, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x618D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0xE200, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x6190C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0xE208, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x6193D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0xE22C, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x61959, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0xE238, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x61975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x22F8, symBinAddr: 0x103B4, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61B35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1348, symBinAddr: 0xF404, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x61B6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1398, symBinAddr: 0xF454, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x61B8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2714, symBinAddr: 0x107D0, symSize: 0x144C } + - { offsetInCU: 0x4B4, offset: 0x61BED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x13E8, symBinAddr: 0xF4A4, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x61C45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x13F0, symBinAddr: 0xF4AC, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x61D28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1430, symBinAddr: 0xF4EC, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x61D99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1490, symBinAddr: 0xF54C, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x61DE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x149C, symBinAddr: 0xF558, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x61E42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1518, symBinAddr: 0xF5D4, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x61E5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1524, symBinAddr: 0xF5E0, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x61E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0xF63C, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61ED2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0xF68C, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61EF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3B60, symBinAddr: 0x11C1C, symSize: 0x248 } + - { offsetInCU: 0x857, offset: 0x61F90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1628, symBinAddr: 0xF6E4, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61FC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1684, symBinAddr: 0xF740, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16A8, symBinAddr: 0xF764, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x62012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16B4, symBinAddr: 0xF770, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x6202E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x13D64, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x62107, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1710, symBinAddr: 0xF7CC, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x6213E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1760, symBinAddr: 0xF81C, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x62161, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5E9C, symBinAddr: 0x13F14, symSize: 0x310 } + - { offsetInCU: 0xA97, offset: 0x621D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17A8, symBinAddr: 0xF864, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x62205, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F8, symBinAddr: 0xF8B4, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x62236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x181C, symBinAddr: 0xF8D8, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x62252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1828, symBinAddr: 0xF8E4, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x6226E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x61AC, symBinAddr: 0x14224, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x6231E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1884, symBinAddr: 0xF940, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x62355, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C4, symBinAddr: 0xF980, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x62378, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6314, symBinAddr: 0x1438C, symSize: 0x2C8 } + - { offsetInCU: 0xCA2, offset: 0x623DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0xF9C0, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x62410, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1950, symBinAddr: 0xFA0C, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x62441, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1974, symBinAddr: 0xFA30, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x6245D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1980, symBinAddr: 0xFA3C, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x62479, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x65DC, symBinAddr: 0x14654, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x62539, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19DC, symBinAddr: 0xFA98, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x62570, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A4C, symBinAddr: 0xFB08, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x62593, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x673C, symBinAddr: 0x147B4, symSize: 0x4D8 } + - { offsetInCU: 0xEC9, offset: 0x62602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AAC, symBinAddr: 0xFB68, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x62637, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B34, symBinAddr: 0xFBF0, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x62668, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B58, symBinAddr: 0xFC14, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x62684, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B64, symBinAddr: 0xFC20, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x626A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x14D58, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x627B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BC0, symBinAddr: 0xFC7C, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x627EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C24, symBinAddr: 0xFCE0, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x6280E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6F74, symBinAddr: 0x14FEC, symSize: 0x57C } + - { offsetInCU: 0x1162, offset: 0x6289B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C74, symBinAddr: 0xFD30, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x6291B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1C8C, symBinAddr: 0xFD48, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x629FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CD0, symBinAddr: 0xFD8C, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x62A84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D38, symBinAddr: 0xFDF4, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x62AD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D54, symBinAddr: 0xFE10, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x62B0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D78, symBinAddr: 0xFE34, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x62B26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D84, symBinAddr: 0xFE40, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x62B42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7534, symBinAddr: 0x155AC, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0xFE9C, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x62C07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E0C, symBinAddr: 0xFEC8, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x62C2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x75F4, symBinAddr: 0x1566C, symSize: 0x1A0 } + - { offsetInCU: 0x156C, offset: 0x62CA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0xFEEC, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x62CDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1EA0, symBinAddr: 0xFF5C, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x62D0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1EC4, symBinAddr: 0xFF80, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x62D27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0xFF8C, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x62D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x77D8, symBinAddr: 0x15850, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x62E4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1F2C, symBinAddr: 0xFFE8, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x62E85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F84, symBinAddr: 0x10040, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x62EA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7A1C, symBinAddr: 0x15A94, symSize: 0x360 } + - { offsetInCU: 0x17D2, offset: 0x62F0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FD4, symBinAddr: 0x10090, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x62F40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2038, symBinAddr: 0x100F4, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x62F71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x205C, symBinAddr: 0x10118, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x62F8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2068, symBinAddr: 0x10124, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x62FA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7D7C, symBinAddr: 0x15DF4, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x6308B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x20C4, symBinAddr: 0x10180, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x630C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x210C, symBinAddr: 0x101C8, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x630E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7F70, symBinAddr: 0x15FE8, symSize: 0x380 } + - { offsetInCU: 0x1A2F, offset: 0x63168, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x21D8, symBinAddr: 0x10294, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x631B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x21F0, symBinAddr: 0x102AC, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x631E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2214, symBinAddr: 0x102D0, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x631FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2220, symBinAddr: 0x102DC, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x6321B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8378, symBinAddr: 0x163F0, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x632C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x227C, symBinAddr: 0x10338, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x632F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x22C0, symBinAddr: 0x1037C, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x6331C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8484, symBinAddr: 0x164FC, symSize: 0x1CC } + - { offsetInCU: 0x1C20, offset: 0x63359, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3DE8, symBinAddr: 0x11E64, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x6336D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3E0C, symBinAddr: 0x11E88, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x63381, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3E50, symBinAddr: 0x11ECC, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x63395, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3E70, symBinAddr: 0x11EEC, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x633A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3EB4, symBinAddr: 0x11F30, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x633BD, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3EF8, symBinAddr: 0x11F74, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x633D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3F00, symBinAddr: 0x11F78, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x633E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x3F50, symBinAddr: 0x11FC8, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x633F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x3FDC, symBinAddr: 0x12054, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x6340D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x3FE4, symBinAddr: 0x1205C, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x63421, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x3FE8, symBinAddr: 0x12060, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x63435, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x3FEC, symBinAddr: 0x12064, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x63449, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x3FFC, symBinAddr: 0x12074, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x6345D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x48AC, symBinAddr: 0x12924, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x63471, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x48BC, symBinAddr: 0x12934, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x63485, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x48C0, symBinAddr: 0x12938, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x63499, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4904, symBinAddr: 0x1297C, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x634AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4908, symBinAddr: 0x12980, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x634C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x494C, symBinAddr: 0x129C4, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x634D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4950, symBinAddr: 0x129C8, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x634E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x4994, symBinAddr: 0x12A0C, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x634FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x49D8, symBinAddr: 0x12A50, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x63511, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x12A94, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x63525, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4A60, symBinAddr: 0x12AD8, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x63539, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x12B1C, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x6354D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x12B60, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x63561, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x4B2C, symBinAddr: 0x12BA4, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x63575, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x4B70, symBinAddr: 0x12BE8, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x63589, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x4BB4, symBinAddr: 0x12C2C, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x6359D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x4BF8, symBinAddr: 0x12C70, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x635B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x4C3C, symBinAddr: 0x12CB4, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x635C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x4C80, symBinAddr: 0x12CF8, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x635D9, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4CC4, symBinAddr: 0x12D3C, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x635ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4CD0, symBinAddr: 0x12D48, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x63601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4D60, symBinAddr: 0x12DD8, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x63615, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x4E1C, symBinAddr: 0x12E94, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x63629, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4E24, symBinAddr: 0x12E9C, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x6363D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4E28, symBinAddr: 0x12EA0, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x63651, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4E30, symBinAddr: 0x12EA8, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x63665, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x4E40, symBinAddr: 0x12EB8, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x63679, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x4E68, symBinAddr: 0x12EE0, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x6368D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x4EAC, symBinAddr: 0x12F24, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x636A1, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4F20, symBinAddr: 0x12F98, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x636B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x4F34, symBinAddr: 0x12FAC, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x636C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x4F80, symBinAddr: 0x12FF8, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x636DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x4FC8, symBinAddr: 0x13040, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x636F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x5010, symBinAddr: 0x13088, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x63705, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x5020, symBinAddr: 0x13098, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x63719, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5058, symBinAddr: 0x130D0, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x6372D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x50CC, symBinAddr: 0x13144, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x63741, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5188, symBinAddr: 0x13200, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x63755, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x51A4, symBinAddr: 0x1321C, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x63769, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5220, symBinAddr: 0x13298, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x6377D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5268, symBinAddr: 0x132E0, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x63791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x52BC, symBinAddr: 0x13334, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x637A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x52CC, symBinAddr: 0x13344, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x637B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x52F4, symBinAddr: 0x1336C, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x637CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5330, symBinAddr: 0x133A8, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x637E1, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x539C, symBinAddr: 0x13414, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x637F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x53A8, symBinAddr: 0x13420, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x63809, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x53EC, symBinAddr: 0x13464, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x6381D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x5434, symBinAddr: 0x134AC, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63831, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5474, symBinAddr: 0x134EC, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x63845, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x5484, symBinAddr: 0x134FC, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x63859, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x54D4, symBinAddr: 0x1354C, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x6386D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5580, symBinAddr: 0x135F8, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x63881, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5694, symBinAddr: 0x1370C, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x63895, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x56C0, symBinAddr: 0x13738, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x638A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x575C, symBinAddr: 0x137D4, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x638BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x57A4, symBinAddr: 0x1381C, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x638D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x5800, symBinAddr: 0x13878, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x638E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x5810, symBinAddr: 0x13888, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x638F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5868, symBinAddr: 0x138E0, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x6390D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x592C, symBinAddr: 0x139A4, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63921, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5A70, symBinAddr: 0x13AE8, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x63935, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x5AA4, symBinAddr: 0x13B1C, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x63949, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x5B58, symBinAddr: 0x13BD0, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x6395D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x5BA0, symBinAddr: 0x13C18, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x63971, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x5C04, symBinAddr: 0x13C7C, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x63985, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5C14, symBinAddr: 0x13C8C, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x63999, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x5C18, symBinAddr: 0x13C90, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x639AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5C5C, symBinAddr: 0x13CD4, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x639C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5C60, symBinAddr: 0x13CD8, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x639D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5CA4, symBinAddr: 0x13D1C, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x639E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5CA8, symBinAddr: 0x13D20, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x639FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x6C14, symBinAddr: 0x14C8C, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63A11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x6C58, symBinAddr: 0x14CD0, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63A25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x6C9C, symBinAddr: 0x14D14, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x63A39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x74F0, symBinAddr: 0x15568, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x63A4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7794, symBinAddr: 0x1580C, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x63A61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x82F0, symBinAddr: 0x16368, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x63A75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8334, symBinAddr: 0x163AC, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x63A89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8650, symBinAddr: 0x166C8, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x63A9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8694, symBinAddr: 0x1670C, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63AB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x86D8, symBinAddr: 0x16750, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63AC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x8780, symBinAddr: 0x167F8, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x63AD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x87C4, symBinAddr: 0x1683C, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x63AED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8854, symBinAddr: 0x168CC, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63B01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8910, symBinAddr: 0x16988, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63B15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8914, symBinAddr: 0x1698C, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x63B29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8924, symBinAddr: 0x1699C, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x63B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x89B4, symBinAddr: 0x16A2C, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x63B51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8A70, symBinAddr: 0x16AE8, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x63B65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8A74, symBinAddr: 0x16AEC, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x63B79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8A84, symBinAddr: 0x16AFC, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x63B8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8B14, symBinAddr: 0x16B8C, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63BA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x8BD0, symBinAddr: 0x16C48, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63BB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8BD8, symBinAddr: 0x16C50, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x63BC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x8BDC, symBinAddr: 0x16C54, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x63BDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8BE8, symBinAddr: 0x16C60, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63BF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8BF8, symBinAddr: 0x16C70, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63C05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8C88, symBinAddr: 0x16D00, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x63C19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8D44, symBinAddr: 0x16DBC, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x63C2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8D48, symBinAddr: 0x16DC0, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x63C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8D60, symBinAddr: 0x16DD8, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x63C55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8D64, symBinAddr: 0x16DDC, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x63C69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x8D74, symBinAddr: 0x16DEC, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x63C7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x8DAC, symBinAddr: 0x16E24, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x63C91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x8E20, symBinAddr: 0x16E98, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63CA5, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8EE4, symBinAddr: 0x16F5C, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x63CB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x8F08, symBinAddr: 0x16F80, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63CCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x8F7C, symBinAddr: 0x16FF4, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63CE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x8FC4, symBinAddr: 0x1703C, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63CF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x9018, symBinAddr: 0x17090, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x63D09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x9028, symBinAddr: 0x170A0, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63D1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x9060, symBinAddr: 0x170D8, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63D31, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x90C4, symBinAddr: 0x1713C, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x63D45, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9170, symBinAddr: 0x171E8, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x63D59, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x9184, symBinAddr: 0x171FC, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x63D6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x91E8, symBinAddr: 0x17260, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x63D81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9230, symBinAddr: 0x172A8, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x63D95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x9280, symBinAddr: 0x172F8, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x63DA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x9290, symBinAddr: 0x17308, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63DBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x92C8, symBinAddr: 0x17340, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63DD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9334, symBinAddr: 0x173AC, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63DE5, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x93E8, symBinAddr: 0x17460, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x63DF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x940C, symBinAddr: 0x17484, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63E0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9478, symBinAddr: 0x174F0, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63E21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x94C0, symBinAddr: 0x17538, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63E35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9510, symBinAddr: 0x17588, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x63E49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9520, symBinAddr: 0x17598, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x63E5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9524, symBinAddr: 0x1759C, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x63E71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9568, symBinAddr: 0x175E0, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x63E85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x956C, symBinAddr: 0x175E4, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x63E99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x95B0, symBinAddr: 0x17628, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63EAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x95B4, symBinAddr: 0x1762C, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63EC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x95F8, symBinAddr: 0x17670, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63ED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x95FC, symBinAddr: 0x17674, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x63EE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9640, symBinAddr: 0x176B8, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63EFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9644, symBinAddr: 0x176BC, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63F11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9688, symBinAddr: 0x17700, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63F25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x968C, symBinAddr: 0x17704, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x63F39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96D0, symBinAddr: 0x17748, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x63F4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96D4, symBinAddr: 0x1774C, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x63F61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9718, symBinAddr: 0x17790, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x63F75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x971C, symBinAddr: 0x17794, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x63F89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9760, symBinAddr: 0x177D8, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63F9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9764, symBinAddr: 0x177DC, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63FB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97A8, symBinAddr: 0x17820, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63FC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97AC, symBinAddr: 0x17824, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x63FD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x97F0, symBinAddr: 0x17868, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63FED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x97F4, symBinAddr: 0x1786C, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x64001, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9838, symBinAddr: 0x178B0, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x64015, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x983C, symBinAddr: 0x178B4, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x64029, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9880, symBinAddr: 0x178F8, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x6403D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9884, symBinAddr: 0x178FC, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x64051, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98C8, symBinAddr: 0x17940, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x64065, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98CC, symBinAddr: 0x17944, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x64079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9910, symBinAddr: 0x17988, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x6408D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9914, symBinAddr: 0x1798C, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x640A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9958, symBinAddr: 0x179D0, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x640B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x999C, symBinAddr: 0x17A14, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x640C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x99E0, symBinAddr: 0x17A58, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x640DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9A24, symBinAddr: 0x17A9C, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x640F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9AB4, symBinAddr: 0x17B2C, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x64105, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9B70, symBinAddr: 0x17BE8, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x64119, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9B74, symBinAddr: 0x17BEC, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x6412D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9CD8, symBinAddr: 0x17D50, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x64141, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9CDC, symBinAddr: 0x17D54, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x64155, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9CEC, symBinAddr: 0x17D64, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x64169, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9D7C, symBinAddr: 0x17DF4, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x6417D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9E38, symBinAddr: 0x17EB0, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x64191, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9E3C, symBinAddr: 0x17EB4, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x641A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9E4C, symBinAddr: 0x17EC4, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x641B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9E50, symBinAddr: 0x17EC8, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x641CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9E94, symBinAddr: 0x17F0C, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x641E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9E98, symBinAddr: 0x17F10, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x641F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9EDC, symBinAddr: 0x17F54, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x64209, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x9EE0, symBinAddr: 0x17F58, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x6421D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9F24, symBinAddr: 0x17F9C, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x64231, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9F28, symBinAddr: 0x17FA0, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x64245, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9F6C, symBinAddr: 0x17FE4, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x64259, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9F70, symBinAddr: 0x17FE8, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x6426D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9FB4, symBinAddr: 0x1802C, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x64281, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9FB8, symBinAddr: 0x18030, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x64295, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9FFC, symBinAddr: 0x18074, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x642A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA000, symBinAddr: 0x18078, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x642BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA044, symBinAddr: 0x180BC, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x642D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA048, symBinAddr: 0x180C0, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x642E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA08C, symBinAddr: 0x18104, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x642F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x18108, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x64353, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0xE244, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x6436F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0xE26C, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x643DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1454, symBinAddr: 0xF510, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x6449A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1530, symBinAddr: 0xF5EC, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x644B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1558, symBinAddr: 0xF614, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x644D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16C0, symBinAddr: 0xF77C, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x644F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0xF7A4, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x64516, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1834, symBinAddr: 0xF8F0, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x64532, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0xF918, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x64554, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0xFA48, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x64570, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19B4, symBinAddr: 0xFA70, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x64592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B70, symBinAddr: 0xFC2C, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x645AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0xFC54, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x64601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1CF8, symBinAddr: 0xFDB4, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x646A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D90, symBinAddr: 0xFE4C, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x646BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DB8, symBinAddr: 0xFE74, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x646E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EDC, symBinAddr: 0xFF98, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x646FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1F04, symBinAddr: 0xFFC0, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x6471F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x10130, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x6473B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x209C, symBinAddr: 0x10158, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x6475D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x222C, symBinAddr: 0x102E8, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x64779, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2254, symBinAddr: 0x10310, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x64862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xE0EC, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x648E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0xE294, symSize: 0x40C } + - { offsetInCU: 0x31DB, offset: 0x64914, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5E4, symBinAddr: 0xE6A0, symSize: 0x100 } + - { offsetInCU: 0x320C, offset: 0x64945, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6E4, symBinAddr: 0xE7A0, symSize: 0x17C } + - { offsetInCU: 0x323D, offset: 0x64976, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x860, symBinAddr: 0xE91C, symSize: 0x154 } + - { offsetInCU: 0x326E, offset: 0x649A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9B4, symBinAddr: 0xEA70, symSize: 0x1A4 } + - { offsetInCU: 0x329F, offset: 0x649D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB58, symBinAddr: 0xEC14, symSize: 0x1F4 } + - { offsetInCU: 0x32D0, offset: 0x64A09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD4C, symBinAddr: 0xEE08, symSize: 0x118 } + - { offsetInCU: 0x3301, offset: 0x64A3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE64, symBinAddr: 0xEF20, symSize: 0x1CC } + - { offsetInCU: 0x3332, offset: 0x64A6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1030, symBinAddr: 0xF0EC, symSize: 0x1EC } + - { offsetInCU: 0x3363, offset: 0x64A9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x121C, symBinAddr: 0xF2D8, symSize: 0x12C } + - { offsetInCU: 0x27, offset: 0x64CD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x181E0, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x6509E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x184F4, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x650B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x18524, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x650C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x18564, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x650DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x18608, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x650EE, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1870C, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x65102, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x18738, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x65116, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x187D4, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x6512A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1881C, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x6513E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1887C, symSize: 0x10 } + - { offsetInCU: 0x614, offset: 0x652C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x181E0, symSize: 0x38 } + - { offsetInCU: 0x62C, offset: 0x652DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x181E0, symSize: 0x38 } + - { offsetInCU: 0x653, offset: 0x65304, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x18218, symSize: 0x3C } + - { offsetInCU: 0x66D, offset: 0x6531E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x18254, symSize: 0x54 } + - { offsetInCU: 0x6A2, offset: 0x65353, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x182A8, symSize: 0x10 } + - { offsetInCU: 0x6B6, offset: 0x65367, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x182B8, symSize: 0x4 } + - { offsetInCU: 0x6D7, offset: 0x65388, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0xDC, symBinAddr: 0x182BC, symSize: 0x14 } + - { offsetInCU: 0x6EB, offset: 0x6539C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0xF0, symBinAddr: 0x182D0, symSize: 0x14 } + - { offsetInCU: 0x71B, offset: 0x653CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x104, symBinAddr: 0x182E4, symSize: 0x10 } + - { offsetInCU: 0x73F, offset: 0x653F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x182F4, symSize: 0x4 } + - { offsetInCU: 0x760, offset: 0x65411, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x182F8, symSize: 0x2C } + - { offsetInCU: 0x774, offset: 0x65425, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x18324, symSize: 0x34 } + - { offsetInCU: 0x7A9, offset: 0x6545A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x18358, symSize: 0x10 } + - { offsetInCU: 0x7CD, offset: 0x6547E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x18368, symSize: 0x4 } + - { offsetInCU: 0x7EE, offset: 0x6549F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1836C, symSize: 0x8 } + - { offsetInCU: 0x802, offset: 0x654B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x18374, symSize: 0x8 } + - { offsetInCU: 0x832, offset: 0x654E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1837C, symSize: 0x10 } + - { offsetInCU: 0x856, offset: 0x65507, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1838C, symSize: 0x4 } + - { offsetInCU: 0x877, offset: 0x65528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x18390, symSize: 0x8 } + - { offsetInCU: 0x88B, offset: 0x6553C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x18398, symSize: 0x8 } + - { offsetInCU: 0x8BB, offset: 0x6556C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x183A0, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x65590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x183B0, symSize: 0x4 } + - { offsetInCU: 0x900, offset: 0x655B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x183B4, symSize: 0x2C } + - { offsetInCU: 0x914, offset: 0x655C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x183E0, symSize: 0x34 } + - { offsetInCU: 0x949, offset: 0x655FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x18414, symSize: 0x10 } + - { offsetInCU: 0x96D, offset: 0x6561E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x18424, symSize: 0x4 } + - { offsetInCU: 0x98E, offset: 0x6563F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x18428, symSize: 0x2C } + - { offsetInCU: 0x9A2, offset: 0x65653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x18454, symSize: 0x34 } + - { offsetInCU: 0x9D7, offset: 0x65688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x18488, symSize: 0x10 } + - { offsetInCU: 0x9FB, offset: 0x656AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x18498, symSize: 0x4 } + - { offsetInCU: 0xA1C, offset: 0x656CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1849C, symSize: 0xC } + - { offsetInCU: 0xA30, offset: 0x656E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x184A8, symSize: 0xC } + - { offsetInCU: 0xA64, offset: 0x65715, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x184B4, symSize: 0x10 } + - { offsetInCU: 0xA88, offset: 0x65739, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x184C4, symSize: 0x4 } + - { offsetInCU: 0xAA9, offset: 0x6575A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x184C8, symSize: 0xC } + - { offsetInCU: 0xABD, offset: 0x6576E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x184D4, symSize: 0xC } + - { offsetInCU: 0xAF1, offset: 0x657A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x184E0, symSize: 0x10 } + - { offsetInCU: 0xB15, offset: 0x657C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x184F0, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x65889, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x5B8, symBinAddr: 0x18E44, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x658BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x5E4, symBinAddr: 0x18E70, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x658D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xC94, symBinAddr: 0x19510, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x6594F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x7CC, symBinAddr: 0x19058, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x65980, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x7F8, symBinAddr: 0x19084, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x6599C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xD38, symBinAddr: 0x19574, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x659DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x820, symBinAddr: 0x190AC, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x65A0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0x934, symBinAddr: 0x191B0, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x65A20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0x9C4, symBinAddr: 0x19240, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65A34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xA80, symBinAddr: 0x192FC, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x65A48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xA84, symBinAddr: 0x19300, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x65A5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xA94, symBinAddr: 0x19310, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x65A70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xB24, symBinAddr: 0x193A0, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x65A84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xBE0, symBinAddr: 0x1945C, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x65A98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xBE8, symBinAddr: 0x19464, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x65AAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xBEC, symBinAddr: 0x19468, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x65AC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xBF4, symBinAddr: 0x19470, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x65AD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xC04, symBinAddr: 0x19480, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x65AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xC08, symBinAddr: 0x19484, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x65AFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xC4C, symBinAddr: 0x194C8, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x65B10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xC50, symBinAddr: 0x194CC, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x65C1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1888C, symSize: 0x2CC } + - { offsetInCU: 0x433, offset: 0x65C3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x2CC, symBinAddr: 0x18B58, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x65D67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x19714, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x65DAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x19734, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x65DFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x197C0, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x197C4, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x65E4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x197C8, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x65E74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1983C, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x65EB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x19840, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65F1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x198C0, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x65F71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x19924, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65FC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x199B4, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x66020, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x19A34, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x66052, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x19A98, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x6606E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x19A9C, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x66156, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1A1F0, symSize: 0x374 } + - { offsetInCU: 0x7D5, offset: 0x66469, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1050, symBinAddr: 0x1A630, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x6647D, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1060, symBinAddr: 0x1A640, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x66491, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10F4, symBinAddr: 0x1A650, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x664A5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x113C, symBinAddr: 0x1A698, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x664B9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1150, symBinAddr: 0x1A6AC, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x664CD, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1194, symBinAddr: 0x1A6F0, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x664E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x11D4, symBinAddr: 0x1A730, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x664F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1398, symBinAddr: 0x1A8F4, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x66509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x13C8, symBinAddr: 0x1A924, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x6651D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1584, symBinAddr: 0x1AAE0, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x66727, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x195E0, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x66750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x196F4, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x66880, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x19AA0, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x6695D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1A17C, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x669F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF84, symBinAddr: 0x1A564, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x66A64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0xFEC, symBinAddr: 0x1A5CC, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x66B10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2BF0, symBinAddr: 0x83C60, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x66B2A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2BF8, symBinAddr: 0x83C68, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x66B38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1AB20, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x66B74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1AB54, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x66BAA, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1AB94, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x66C1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1AC74, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x66C3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1AC74, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x66CB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1ADDC, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x66CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1ADDC, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x66CF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x1AE38, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x66D72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1AEA4, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x66D92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1AEA4, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x670AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1D28, symBinAddr: 0x1C838, symSize: 0x190 } + - { offsetInCU: 0x6B4, offset: 0x67175, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x1AF28, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x671AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x1AFB0, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x671EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x1B0A8, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x671FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x1B108, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x67213, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x1B158, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x67249, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x1B1E0, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x67289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x1B414, symSize: 0x5C } + - { offsetInCU: 0x98E, offset: 0x6744F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x17CC, symBinAddr: 0x1C2DC, symSize: 0x140 } + - { offsetInCU: 0xA8A, offset: 0x6754B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x190C, symBinAddr: 0x1C41C, symSize: 0x18 } + - { offsetInCU: 0xA9E, offset: 0x6755F, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A60, symBinAddr: 0x1C570, symSize: 0x2C } + - { offsetInCU: 0xAB6, offset: 0x67577, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1CC4, symBinAddr: 0x1C7D4, symSize: 0x44 } + - { offsetInCU: 0xACA, offset: 0x6758B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1D08, symBinAddr: 0x1C818, symSize: 0x20 } + - { offsetInCU: 0xADE, offset: 0x6759F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1EB8, symBinAddr: 0x1C9C8, symSize: 0x20 } + - { offsetInCU: 0xAF2, offset: 0x675B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1ED8, symBinAddr: 0x1C9E8, symSize: 0x4 } + - { offsetInCU: 0xB06, offset: 0x675C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1EDC, symBinAddr: 0x1C9EC, symSize: 0x44 } + - { offsetInCU: 0xB1A, offset: 0x675DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1F20, symBinAddr: 0x1CA30, symSize: 0x4 } + - { offsetInCU: 0xB2E, offset: 0x675EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1F24, symBinAddr: 0x1CA34, symSize: 0x44 } + - { offsetInCU: 0xB42, offset: 0x67603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x2048, symBinAddr: 0x1CB58, symSize: 0x18 } + - { offsetInCU: 0xB56, offset: 0x67617, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x2060, symBinAddr: 0x1CB70, symSize: 0x14 } + - { offsetInCU: 0xB6A, offset: 0x6762B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x2074, symBinAddr: 0x1CB84, symSize: 0x18 } + - { offsetInCU: 0xB7E, offset: 0x6763F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x20EC, symBinAddr: 0x1CBFC, symSize: 0x6C } + - { offsetInCU: 0xB92, offset: 0x67653, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2158, symBinAddr: 0x1CC68, symSize: 0x14 } + - { offsetInCU: 0xBA6, offset: 0x67667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x216C, symBinAddr: 0x1CC7C, symSize: 0x50 } + - { offsetInCU: 0xBBA, offset: 0x6767B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x21BC, symBinAddr: 0x1CCCC, symSize: 0x48 } + - { offsetInCU: 0xBCE, offset: 0x6768F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x2204, symBinAddr: 0x1CD14, symSize: 0x48 } + - { offsetInCU: 0xBE2, offset: 0x676A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x224C, symBinAddr: 0x1CD5C, symSize: 0x8 } + - { offsetInCU: 0xBF6, offset: 0x676B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2254, symBinAddr: 0x1CD64, symSize: 0x4 } + - { offsetInCU: 0xC0A, offset: 0x676CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2258, symBinAddr: 0x1CD68, symSize: 0x8 } + - { offsetInCU: 0xC1E, offset: 0x676DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x1CD70, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x676F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2348, symBinAddr: 0x1CE48, symSize: 0x90 } + - { offsetInCU: 0xC46, offset: 0x67707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23D8, symBinAddr: 0x1CED8, symSize: 0xBC } + - { offsetInCU: 0xC5A, offset: 0x6771B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2494, symBinAddr: 0x1CF94, symSize: 0x4 } + - { offsetInCU: 0xC6E, offset: 0x6772F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2498, symBinAddr: 0x1CF98, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x67743, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x24A8, symBinAddr: 0x1CFA8, symSize: 0x90 } + - { offsetInCU: 0xC96, offset: 0x67757, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2538, symBinAddr: 0x1D038, symSize: 0xBC } + - { offsetInCU: 0xCAA, offset: 0x6776B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x25F4, symBinAddr: 0x1D0F4, symSize: 0x8 } + - { offsetInCU: 0xCBE, offset: 0x6777F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x25FC, symBinAddr: 0x1D0FC, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x67793, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2600, symBinAddr: 0x1D100, symSize: 0x8 } + - { offsetInCU: 0xCE6, offset: 0x677A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2608, symBinAddr: 0x1D108, symSize: 0x10 } + - { offsetInCU: 0xD05, offset: 0x677C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2640, symBinAddr: 0x1D140, symSize: 0x24 } + - { offsetInCU: 0xD2E, offset: 0x677EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x274C, symBinAddr: 0x1D24C, symSize: 0x8 } + - { offsetInCU: 0xD42, offset: 0x67803, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2754, symBinAddr: 0x1D254, symSize: 0x10 } + - { offsetInCU: 0xD56, offset: 0x67817, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2764, symBinAddr: 0x1D264, symSize: 0x8 } + - { offsetInCU: 0xD6A, offset: 0x6782B, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x27F0, symBinAddr: 0x1D26C, symSize: 0x3C } + - { offsetInCU: 0xDEC, offset: 0x678AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1AB10, symSize: 0x4 } + - { offsetInCU: 0xE08, offset: 0x678C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1AB14, symSize: 0x4 } + - { offsetInCU: 0xE24, offset: 0x678E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1AB18, symSize: 0x4 } + - { offsetInCU: 0xE40, offset: 0x67901, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1AB1C, symSize: 0x4 } + - { offsetInCU: 0x10B2, offset: 0x67B73, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1ABC8, symSize: 0x40 } + - { offsetInCU: 0x10E0, offset: 0x67BA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1AC08, symSize: 0x60 } + - { offsetInCU: 0x1118, offset: 0x67BD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x1ACD4, symSize: 0x84 } + - { offsetInCU: 0x113F, offset: 0x67C00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x1AD58, symSize: 0x14 } + - { offsetInCU: 0x1186, offset: 0x67C47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x1AD6C, symSize: 0x28 } + - { offsetInCU: 0x128D, offset: 0x67D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x1B05C, symSize: 0x4C } + - { offsetInCU: 0x12AC, offset: 0x67D6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x1B0B8, symSize: 0x50 } + - { offsetInCU: 0x12D5, offset: 0x67D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x1B118, symSize: 0x3C } + - { offsetInCU: 0x12FA, offset: 0x67DBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x1B154, symSize: 0x4 } + - { offsetInCU: 0x134F, offset: 0x67E10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x1B28C, symSize: 0x4C } + - { offsetInCU: 0x136E, offset: 0x67E2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x1B2D8, symSize: 0x50 } + - { offsetInCU: 0x1397, offset: 0x67E58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x1B328, symSize: 0x3C } + - { offsetInCU: 0x13BC, offset: 0x67E7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x1B364, symSize: 0x8 } + - { offsetInCU: 0x13DD, offset: 0x67E9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x1B36C, symSize: 0x30 } + - { offsetInCU: 0x13FA, offset: 0x67EBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x1B39C, symSize: 0x3C } + - { offsetInCU: 0x141F, offset: 0x67EE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x1B3D8, symSize: 0x3C } + - { offsetInCU: 0x1469, offset: 0x67F2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x960, symBinAddr: 0x1B470, symSize: 0x30 } + - { offsetInCU: 0x1486, offset: 0x67F47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x990, symBinAddr: 0x1B4A0, symSize: 0x44 } + - { offsetInCU: 0x14AF, offset: 0x67F70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x9D4, symBinAddr: 0x1B4E4, symSize: 0x3C } + - { offsetInCU: 0x14DB, offset: 0x67F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x1B520, symSize: 0xC8 } + - { offsetInCU: 0x1552, offset: 0x68013, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x1B5E8, symSize: 0xC0 } + - { offsetInCU: 0x15E1, offset: 0x680A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB98, symBinAddr: 0x1B6A8, symSize: 0xC0 } + - { offsetInCU: 0x16BA, offset: 0x6817B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xC58, symBinAddr: 0x1B768, symSize: 0x204 } + - { offsetInCU: 0x1723, offset: 0x681E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1924, symBinAddr: 0x1C434, symSize: 0x13C } + - { offsetInCU: 0x17D1, offset: 0x68292, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xE5C, symBinAddr: 0x1B96C, symSize: 0x70 } + - { offsetInCU: 0x17FB, offset: 0x682BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xECC, symBinAddr: 0x1B9DC, symSize: 0x30 } + - { offsetInCU: 0x181D, offset: 0x682DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xEFC, symBinAddr: 0x1BA0C, symSize: 0x178 } + - { offsetInCU: 0x18C2, offset: 0x68383, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0x1074, symBinAddr: 0x1BB84, symSize: 0x14 } + - { offsetInCU: 0x190F, offset: 0x683D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0x10F8, symBinAddr: 0x1BC08, symSize: 0x3C } + - { offsetInCU: 0x1995, offset: 0x68456, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0x1088, symBinAddr: 0x1BB98, symSize: 0x70 } + - { offsetInCU: 0x1A29, offset: 0x684EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0x1134, symBinAddr: 0x1BC44, symSize: 0x78 } + - { offsetInCU: 0x1B0D, offset: 0x685CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0x11AC, symBinAddr: 0x1BCBC, symSize: 0x224 } + - { offsetInCU: 0x1CF9, offset: 0x687BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x13D0, symBinAddr: 0x1BEE0, symSize: 0xC } + - { offsetInCU: 0x1D50, offset: 0x68811, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1BEEC, symSize: 0x4 } + - { offsetInCU: 0x1D6C, offset: 0x6882D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1BEEC, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x68846, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1BEEC, symSize: 0x4 } + - { offsetInCU: 0x1D9E, offset: 0x6885F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13E0, symBinAddr: 0x1BEF0, symSize: 0x4 } + - { offsetInCU: 0x1DB6, offset: 0x68877, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13E4, symBinAddr: 0x1BEF4, symSize: 0xB8 } + - { offsetInCU: 0x1E56, offset: 0x68917, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14DC, symBinAddr: 0x1BFEC, symSize: 0x4 } + - { offsetInCU: 0x1E6E, offset: 0x6892F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26AC, symBinAddr: 0x1D1AC, symSize: 0x7C } + - { offsetInCU: 0x1F45, offset: 0x68A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x149C, symBinAddr: 0x1BFAC, symSize: 0x40 } + - { offsetInCU: 0x1F7A, offset: 0x68A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14EC, symBinAddr: 0x1BFFC, symSize: 0x98 } + - { offsetInCU: 0x2021, offset: 0x68AE2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x1634, symBinAddr: 0x1C144, symSize: 0x198 } + - { offsetInCU: 0x251E, offset: 0x68FDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x1A8C, symBinAddr: 0x1C59C, symSize: 0x24 } + - { offsetInCU: 0x2561, offset: 0x69022, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1AB0, symBinAddr: 0x1C5C0, symSize: 0x214 } + - { offsetInCU: 0x43, offset: 0x691DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1D3C0, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x691EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1D3FC, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x69202, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1D480, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x6921D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1D5A8, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x69246, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1D5D8, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x6925A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1D5F4, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x6926E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1D690, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x69282, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1D6F4, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x69296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1D750, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x692AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1D760, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x692BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1D790, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x692D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1D7B8, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x692E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1D814, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x692FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1D898, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x6930E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1D8FC, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x69322, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1D958, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x69336, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1D9B8, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x69382, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x1DDE0, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x693DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA28, symBinAddr: 0x1DDE8, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x694BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA68, symBinAddr: 0x1DE28, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x6952E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAC8, symBinAddr: 0x1DE88, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x6957D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD4, symBinAddr: 0x1DE94, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x695D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB50, symBinAddr: 0x1DF10, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x695F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB5C, symBinAddr: 0x1DF1C, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x69630, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBB8, symBinAddr: 0x1DF78, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x69667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC04, symBinAddr: 0x1DFC4, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x6968A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC8, symBinAddr: 0x1E388, symSize: 0x144 } + - { offsetInCU: 0x580, offset: 0x69717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC44, symBinAddr: 0x1E004, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x69772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC5C, symBinAddr: 0x1E01C, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x697EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC88, symBinAddr: 0x1E048, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x69821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x1E090, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x69852, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF4, symBinAddr: 0x1E0B4, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x6986E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1E0C0, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x6988A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x125C, symBinAddr: 0x1E598, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x6994A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD5C, symBinAddr: 0x1E11C, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x69981, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDA8, symBinAddr: 0x1E168, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x699A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13B0, symBinAddr: 0x1E6EC, symSize: 0x254 } + - { offsetInCU: 0x87C, offset: 0x69A13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE74, symBinAddr: 0x1E234, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x69A48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEC4, symBinAddr: 0x1E284, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x69A79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xEE8, symBinAddr: 0x1E2A8, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x69A95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x1E2B4, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x69AB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x1F00C, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x69B61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF50, symBinAddr: 0x1E310, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x69B98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF90, symBinAddr: 0x1E350, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x69BBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EA4, symBinAddr: 0x1F174, symSize: 0x2A8 } + - { offsetInCU: 0xA81, offset: 0x69C18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1170, symBinAddr: 0x1E4CC, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x69C2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x11D4, symBinAddr: 0x1E510, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x69C40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1218, symBinAddr: 0x1E554, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x69C54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x1E940, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x69C68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x1E984, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x69C7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x1EA74, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x69C90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x1EAC0, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x69CA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x1EAC8, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x69CB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x1EACC, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x69CCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x1EAD4, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x69CE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x1EAE4, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x69CF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x1EB34, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69D08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x1EBC0, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x69D1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x1EBC8, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69D30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x1EBCC, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x69D44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x1EBD0, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69D58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x1EBE0, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x69D6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x1EC18, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69D80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x1EC7C, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x69D94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x1ED28, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x69DA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x1ED8C, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x69DBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x1EDE8, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x69DD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x1EE4C, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x69DE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x1EE5C, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69DF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x1EE60, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x69E0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x1EEA4, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69E20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x1EEA8, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x69E34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x1EEEC, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69E48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x1EEF0, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x69E5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x1EF34, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69E70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x1EF38, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69E84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x1EF7C, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x69E98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x1EF80, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x69EAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x1EFC4, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x69EC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x1EFC8, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x69ED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x1F41C, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x69EE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x1F5B4, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69EFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x1F5B8, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69F10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x1F5C8, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69F24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x1F5CC, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69F38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x1F610, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69F4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x1F614, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69F60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x1F658, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69F74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x1F65C, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x69FD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA8C, symBinAddr: 0x1DE4C, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x6A093, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB68, symBinAddr: 0x1DF28, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x6A0AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB90, symBinAddr: 0x1DF50, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x6A0D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD0C, symBinAddr: 0x1E0CC, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x6A0ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD34, symBinAddr: 0x1E0F4, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x6A10F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF00, symBinAddr: 0x1E2C0, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x6A12B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF28, symBinAddr: 0x1E2E8, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x6A21A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1D9C8, symSize: 0x10C } + - { offsetInCU: 0x10B4, offset: 0x6A24B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x714, symBinAddr: 0x1DAD4, symSize: 0x1B8 } + - { offsetInCU: 0x10E5, offset: 0x6A27C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8CC, symBinAddr: 0x1DC8C, symSize: 0x154 } + - { offsetInCU: 0xA6, offset: 0x6A437, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x49C, symBinAddr: 0x1FAE0, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x6A457, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x49C, symBinAddr: 0x1FAE0, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x6A47D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x4B4, symBinAddr: 0x1FAF8, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x6A560, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4F8, symBinAddr: 0x1FB3C, symSize: 0x28 } + - { offsetInCU: 0x4C0, offset: 0x6A851, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x560, symBinAddr: 0x1FBA4, symSize: 0x4 } + - { offsetInCU: 0x4D4, offset: 0x6A865, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x564, symBinAddr: 0x1FBA8, symSize: 0x44 } + - { offsetInCU: 0x4E8, offset: 0x6A879, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x5A8, symBinAddr: 0x1FBEC, symSize: 0x30 } + - { offsetInCU: 0x4FC, offset: 0x6A88D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x5D8, symBinAddr: 0x1FC1C, symSize: 0x7C } + - { offsetInCU: 0x510, offset: 0x6A8A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x654, symBinAddr: 0x1FC98, symSize: 0x184 } + - { offsetInCU: 0x524, offset: 0x6A8B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0x7D8, symBinAddr: 0x1FE1C, symSize: 0x394 } + - { offsetInCU: 0x53F, offset: 0x6A8D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xB6C, symBinAddr: 0x201B0, symSize: 0x30 } + - { offsetInCU: 0x568, offset: 0x6A8F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xB9C, symBinAddr: 0x201E0, symSize: 0x2C } + - { offsetInCU: 0x57C, offset: 0x6A90D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xBC8, symBinAddr: 0x2020C, symSize: 0x34 } + - { offsetInCU: 0x590, offset: 0x6A921, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xBFC, symBinAddr: 0x20240, symSize: 0x44 } + - { offsetInCU: 0x5A4, offset: 0x6A935, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xC40, symBinAddr: 0x20284, symSize: 0x1B4 } + - { offsetInCU: 0x5B8, offset: 0x6A949, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0xDF4, symBinAddr: 0x20438, symSize: 0x48 } + - { offsetInCU: 0x5CC, offset: 0x6A95D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0xE3C, symBinAddr: 0x20480, symSize: 0x78 } + - { offsetInCU: 0x5E0, offset: 0x6A971, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0xEB4, symBinAddr: 0x204F8, symSize: 0x10 } + - { offsetInCU: 0x5F4, offset: 0x6A985, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0xEC8, symBinAddr: 0x2050C, symSize: 0x8 } + - { offsetInCU: 0x608, offset: 0x6A999, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x2054C, symSize: 0x54 } + - { offsetInCU: 0x61C, offset: 0x6A9AD, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xF5C, symBinAddr: 0x205A0, symSize: 0x14 } + - { offsetInCU: 0x630, offset: 0x6A9C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0xF70, symBinAddr: 0x205B4, symSize: 0x3C } + - { offsetInCU: 0x644, offset: 0x6A9D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0xFAC, symBinAddr: 0x205F0, symSize: 0x48 } + - { offsetInCU: 0x658, offset: 0x6A9E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0xFF4, symBinAddr: 0x20638, symSize: 0x40 } + - { offsetInCU: 0x66C, offset: 0x6A9FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x1034, symBinAddr: 0x20678, symSize: 0x10 } + - { offsetInCU: 0x680, offset: 0x6AA11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x1044, symBinAddr: 0x20688, symSize: 0x38 } + - { offsetInCU: 0x694, offset: 0x6AA25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x107C, symBinAddr: 0x206C0, symSize: 0x6C } + - { offsetInCU: 0x6A8, offset: 0x6AA39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x10E8, symBinAddr: 0x2072C, symSize: 0xDC } + - { offsetInCU: 0x6BC, offset: 0x6AA4D, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x11C4, symBinAddr: 0x20808, symSize: 0x1C } + - { offsetInCU: 0x6D0, offset: 0x6AA61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x20824, symSize: 0x74 } + - { offsetInCU: 0x6E4, offset: 0x6AA75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1254, symBinAddr: 0x20898, symSize: 0x5C } + - { offsetInCU: 0x6F8, offset: 0x6AA89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x12B0, symBinAddr: 0x208F4, symSize: 0x64 } + - { offsetInCU: 0x70C, offset: 0x6AA9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1314, symBinAddr: 0x20958, symSize: 0x10 } + - { offsetInCU: 0x720, offset: 0x6AAB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1324, symBinAddr: 0x20968, symSize: 0x28 } + - { offsetInCU: 0x734, offset: 0x6AAC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x134C, symBinAddr: 0x20990, symSize: 0x3C } + - { offsetInCU: 0x748, offset: 0x6AAD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x1388, symBinAddr: 0x209CC, symSize: 0x6C } + - { offsetInCU: 0x75C, offset: 0x6AAED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1400, symBinAddr: 0x20A38, symSize: 0x44 } + - { offsetInCU: 0x770, offset: 0x6AB01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1444, symBinAddr: 0x20A7C, symSize: 0x48 } + - { offsetInCU: 0x784, offset: 0x6AB15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x148C, symBinAddr: 0x20AC4, symSize: 0x40 } + - { offsetInCU: 0x798, offset: 0x6AB29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x14CC, symBinAddr: 0x20B04, symSize: 0x10 } + - { offsetInCU: 0x7AC, offset: 0x6AB3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x14E0, symBinAddr: 0x20B14, symSize: 0x54 } + - { offsetInCU: 0x7C0, offset: 0x6AB51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1534, symBinAddr: 0x20B68, symSize: 0x44 } + - { offsetInCU: 0x7D4, offset: 0x6AB65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1578, symBinAddr: 0x20BAC, symSize: 0x10 } + - { offsetInCU: 0x7E8, offset: 0x6AB79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x1594, symBinAddr: 0x20BBC, symSize: 0x90 } + - { offsetInCU: 0x7FC, offset: 0x6AB8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1624, symBinAddr: 0x20C4C, symSize: 0xBC } + - { offsetInCU: 0x810, offset: 0x6ABA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x16E0, symBinAddr: 0x20D08, symSize: 0x8 } + - { offsetInCU: 0x824, offset: 0x6ABB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x16E8, symBinAddr: 0x20D10, symSize: 0x4 } + - { offsetInCU: 0x838, offset: 0x6ABC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x16EC, symBinAddr: 0x20D14, symSize: 0xC } + - { offsetInCU: 0x84C, offset: 0x6ABDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x16F8, symBinAddr: 0x20D20, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x6AC54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x520, symBinAddr: 0x1FB64, symSize: 0x40 } + - { offsetInCU: 0xA66, offset: 0x6ADF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1F6B8, symSize: 0x18 } + - { offsetInCU: 0xA9F, offset: 0x6AE30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x1F6D0, symSize: 0x230 } + - { offsetInCU: 0xB10, offset: 0x6AEA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x28C, symBinAddr: 0x1F900, symSize: 0x2C } + - { offsetInCU: 0xB2A, offset: 0x6AEBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x2B8, symBinAddr: 0x1F92C, symSize: 0x34 } + - { offsetInCU: 0xB5F, offset: 0x6AEF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x2EC, symBinAddr: 0x1F960, symSize: 0x10 } + - { offsetInCU: 0xB73, offset: 0x6AF04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x2FC, symBinAddr: 0x1F970, symSize: 0x4 } + - { offsetInCU: 0xB94, offset: 0x6AF25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x300, symBinAddr: 0x1F974, symSize: 0x8 } + - { offsetInCU: 0xBA8, offset: 0x6AF39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x308, symBinAddr: 0x1F97C, symSize: 0x8 } + - { offsetInCU: 0xBD8, offset: 0x6AF69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x310, symBinAddr: 0x1F984, symSize: 0x10 } + - { offsetInCU: 0xBFC, offset: 0x6AF8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x320, symBinAddr: 0x1F994, symSize: 0x4 } + - { offsetInCU: 0xC1D, offset: 0x6AFAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x324, symBinAddr: 0x1F998, symSize: 0x14 } + - { offsetInCU: 0xC31, offset: 0x6AFC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x368, symBinAddr: 0x1F9AC, symSize: 0x14 } + - { offsetInCU: 0xC45, offset: 0x6AFD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x37C, symBinAddr: 0x1F9C0, symSize: 0x2C } + - { offsetInCU: 0xC59, offset: 0x6AFEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x3A8, symBinAddr: 0x1F9EC, symSize: 0x2C } + - { offsetInCU: 0xC6D, offset: 0x6AFFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x3D4, symBinAddr: 0x1FA18, symSize: 0x8 } + - { offsetInCU: 0xC81, offset: 0x6B012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x3DC, symBinAddr: 0x1FA20, symSize: 0x8 } + - { offsetInCU: 0xCB3, offset: 0x6B044, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x3E4, symBinAddr: 0x1FA28, symSize: 0x10 } + - { offsetInCU: 0xCC7, offset: 0x6B058, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x3F4, symBinAddr: 0x1FA38, symSize: 0x4 } + - { offsetInCU: 0xCE8, offset: 0x6B079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x3F8, symBinAddr: 0x1FA3C, symSize: 0x8 } + - { offsetInCU: 0xCFC, offset: 0x6B08D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x400, symBinAddr: 0x1FA44, symSize: 0x8 } + - { offsetInCU: 0xD2E, offset: 0x6B0BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x408, symBinAddr: 0x1FA4C, symSize: 0x10 } + - { offsetInCU: 0xD52, offset: 0x6B0E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x418, symBinAddr: 0x1FA5C, symSize: 0x4 } + - { offsetInCU: 0xD73, offset: 0x6B104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x41C, symBinAddr: 0x1FA60, symSize: 0x10 } + - { offsetInCU: 0xD97, offset: 0x6B128, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x42C, symBinAddr: 0x1FA70, symSize: 0x4 } + - { offsetInCU: 0xDC6, offset: 0x6B157, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x430, symBinAddr: 0x1FA74, symSize: 0x28 } + - { offsetInCU: 0xE51, offset: 0x6B1E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x458, symBinAddr: 0x1FA9C, symSize: 0x44 } + - { offsetInCU: 0x9D0, offset: 0x6BCD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x76D4, symBinAddr: 0x28414, symSize: 0x28 } + - { offsetInCU: 0x17CC, offset: 0x6CAD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x15E44, symBinAddr: 0x36B84, symSize: 0x90 } + - { offsetInCU: 0x1884, offset: 0x6CB8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x16DA8, symBinAddr: 0x37AE8, symSize: 0x44 } + - { offsetInCU: 0x18A0, offset: 0x6CBA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x16DEC, symBinAddr: 0x37B2C, symSize: 0x150 } + - { offsetInCU: 0x19B9, offset: 0x6CCC2, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x16F3C, symBinAddr: 0x37C7C, symSize: 0x54 } + - { offsetInCU: 0x1A37, offset: 0x6CD40, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x16FE4, symBinAddr: 0x37CD0, symSize: 0x4C } + - { offsetInCU: 0x1AC5, offset: 0x6CDCE, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x17030, symBinAddr: 0x37D1C, symSize: 0x50 } + - { offsetInCU: 0x1B33, offset: 0x6CE3C, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x17080, symBinAddr: 0x37D6C, symSize: 0x64 } + - { offsetInCU: 0x22A5, offset: 0x6D5AE, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x18014, symBinAddr: 0x38D00, symSize: 0x84 } + - { offsetInCU: 0x2309, offset: 0x6D612, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x18098, symBinAddr: 0x38D84, symSize: 0x80 } + - { offsetInCU: 0x23D6, offset: 0x6D6DF, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x18234, symBinAddr: 0x38F20, symSize: 0x40 } + - { offsetInCU: 0x26AA, offset: 0x6D9B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x18CF4, symBinAddr: 0x39964, symSize: 0x1A0 } + - { offsetInCU: 0x27FF, offset: 0x6DB08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x18E94, symBinAddr: 0x39B04, symSize: 0x360 } + - { offsetInCU: 0x2F21, offset: 0x6E22A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1A024, symBinAddr: 0x3AC94, symSize: 0xBB8 } + - { offsetInCU: 0x3F8D, offset: 0x6F296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1ABDC, symBinAddr: 0x3B84C, symSize: 0x1C0 } + - { offsetInCU: 0x410E, offset: 0x6F417, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1AD9C, symBinAddr: 0x3BA0C, symSize: 0x1A0 } + - { offsetInCU: 0x41F6, offset: 0x6F4FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24checkEdgeDeviceFaultTime05faultI0Sb10Foundation4DateVSg_tFTf4nd_n', symObjAddr: 0x1AF54, symBinAddr: 0x3BBC4, symSize: 0x3C0 } + - { offsetInCU: 0x45EA, offset: 0x6F8F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1B9B0, symBinAddr: 0x3C620, symSize: 0x8 } + - { offsetInCU: 0x45FE, offset: 0x6F907, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1B9B8, symBinAddr: 0x3C628, symSize: 0x10 } + - { offsetInCU: 0x4612, offset: 0x6F91B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1B9C8, symBinAddr: 0x3C638, symSize: 0x14 } + - { offsetInCU: 0x4626, offset: 0x6F92F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1B9DC, symBinAddr: 0x3C64C, symSize: 0x44 } + - { offsetInCU: 0x463A, offset: 0x6F943, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1BA30, symBinAddr: 0x3C690, symSize: 0x44 } + - { offsetInCU: 0x464E, offset: 0x6F957, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1BA74, symBinAddr: 0x3C6D4, symSize: 0x30C } + - { offsetInCU: 0x4662, offset: 0x6F96B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1BD80, symBinAddr: 0x3C9E0, symSize: 0x240 } + - { offsetInCU: 0x4676, offset: 0x6F97F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1BFC0, symBinAddr: 0x3CC20, symSize: 0x70 } + - { offsetInCU: 0x468A, offset: 0x6F993, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1C030, symBinAddr: 0x3CC90, symSize: 0x34 } + - { offsetInCU: 0x469E, offset: 0x6F9A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1C064, symBinAddr: 0x3CCC4, symSize: 0x174 } + - { offsetInCU: 0x46B2, offset: 0x6F9BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1C1D8, symBinAddr: 0x3CE38, symSize: 0xB4 } + - { offsetInCU: 0x4705, offset: 0x6FA0E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1CC34, symBinAddr: 0x3D07C, symSize: 0xC4 } + - { offsetInCU: 0x477B, offset: 0x6FA84, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1CCF8, symBinAddr: 0x3D140, symSize: 0x78 } + - { offsetInCU: 0x47A8, offset: 0x6FAB1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1CD70, symBinAddr: 0x3D1B8, symSize: 0x80 } + - { offsetInCU: 0x483C, offset: 0x6FB45, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1CDF0, symBinAddr: 0x3D238, symSize: 0x68 } + - { offsetInCU: 0x49A3, offset: 0x6FCAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1CE58, symBinAddr: 0x3D2A0, symSize: 0x640 } + - { offsetInCU: 0x4E67, offset: 0x70170, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1D4A8, symBinAddr: 0x3D8F0, symSize: 0x4C } + - { offsetInCU: 0x4E7B, offset: 0x70184, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1D59C, symBinAddr: 0x3D95C, symSize: 0x8 } + - { offsetInCU: 0x4E8F, offset: 0x70198, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x1D5A4, symBinAddr: 0x3D964, symSize: 0x44 } + - { offsetInCU: 0x4EA3, offset: 0x701AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1D5E8, symBinAddr: 0x3D9A8, symSize: 0x44 } + - { offsetInCU: 0x4EB7, offset: 0x701C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1D694, symBinAddr: 0x3DA10, symSize: 0x8 } + - { offsetInCU: 0x4ECB, offset: 0x701D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x1D724, symBinAddr: 0x3DA98, symSize: 0x44 } + - { offsetInCU: 0x4F00, offset: 0x70209, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1D82C, symBinAddr: 0x3DBA0, symSize: 0x48 } + - { offsetInCU: 0x4F14, offset: 0x7021D, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1D898, symBinAddr: 0x3DC0C, symSize: 0x3C } + - { offsetInCU: 0x4F28, offset: 0x70231, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1D8D4, symBinAddr: 0x3DC48, symSize: 0x34 } + - { offsetInCU: 0x4F3C, offset: 0x70245, size: 0x8, addend: 0x0, symName: '_$sSSSgWOs', symObjAddr: 0x1D92C, symBinAddr: 0x3DCA0, symSize: 0x28 } + - { offsetInCU: 0x4F50, offset: 0x70259, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x1DA1C, symBinAddr: 0x3DD90, symSize: 0x10 } + - { offsetInCU: 0x4F64, offset: 0x7026D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x1DA2C, symBinAddr: 0x3DDA0, symSize: 0x34 } + - { offsetInCU: 0x4F78, offset: 0x70281, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1DA9C, symBinAddr: 0x3DE10, symSize: 0x30 } + - { offsetInCU: 0x4F8C, offset: 0x70295, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x1DB2C, symBinAddr: 0x3DEA0, symSize: 0x8 } + - { offsetInCU: 0x4FA0, offset: 0x702A9, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1DB34, symBinAddr: 0x3DEA8, symSize: 0x10 } + - { offsetInCU: 0x4FB4, offset: 0x702BD, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1DB44, symBinAddr: 0x3DEB8, symSize: 0x8 } + - { offsetInCU: 0x56A1, offset: 0x709AA, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9F08, symBinAddr: 0x2AC48, symSize: 0x400 } + - { offsetInCU: 0x5804, offset: 0x70B0D, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xB184, symBinAddr: 0x2BEC4, symSize: 0x390 } + - { offsetInCU: 0x5AC8, offset: 0x70DD1, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xB514, symBinAddr: 0x2C254, symSize: 0x3B8 } + - { offsetInCU: 0x5F28, offset: 0x71231, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg596$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_Sb0E9TConnect20ehI0CSiSgSayADGSgADz_XxAJSiAJTf1cn_n', symObjAddr: 0x1028C, symBinAddr: 0x30FCC, symSize: 0x1E4 } + - { offsetInCU: 0x601E, offset: 0x71327, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x10470, symBinAddr: 0x311B0, symSize: 0x18C } + - { offsetInCU: 0x6412, offset: 0x7171B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x186C4, symBinAddr: 0x393B0, symSize: 0x110 } + - { offsetInCU: 0x6574, offset: 0x7187D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x18A00, symBinAddr: 0x39670, symSize: 0xE4 } + - { offsetInCU: 0x66CA, offset: 0x719D3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x18AE4, symBinAddr: 0x39754, symSize: 0x114 } + - { offsetInCU: 0x6820, offset: 0x71B29, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x18BF8, symBinAddr: 0x39868, symSize: 0xFC } + - { offsetInCU: 0x6957, offset: 0x71C60, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x191F4, symBinAddr: 0x39E64, symSize: 0x188 } + - { offsetInCU: 0x6CA4, offset: 0x71FAD, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1B314, symBinAddr: 0x3BF84, symSize: 0x1C8 } + - { offsetInCU: 0x6DD3, offset: 0x720DC, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x1B4DC, symBinAddr: 0x3C14C, symSize: 0x11C } + - { offsetInCU: 0x6F35, offset: 0x7223E, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x1B5F8, symBinAddr: 0x3C268, symSize: 0xFC } + - { offsetInCU: 0x708B, offset: 0x72394, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x1B6F4, symBinAddr: 0x3C364, symSize: 0xF0 } + - { offsetInCU: 0x71ED, offset: 0x724F6, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1B8CC, symBinAddr: 0x3C53C, symSize: 0xE4 } + - { offsetInCU: 0x7364, offset: 0x7266D, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1D768, symBinAddr: 0x3DADC, symSize: 0xC4 } + - { offsetInCU: 0x7911, offset: 0x72C1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x20D40, symSize: 0x190 } + - { offsetInCU: 0x7A5F, offset: 0x72D68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x190, symBinAddr: 0x20ED0, symSize: 0x6AC } + - { offsetInCU: 0x7CB5, offset: 0x72FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x29FC, symBinAddr: 0x2373C, symSize: 0x938 } + - { offsetInCU: 0x80A6, offset: 0x733AF, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x84C, symBinAddr: 0x2158C, symSize: 0x88 } + - { offsetInCU: 0x81F8, offset: 0x73501, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x8D4, symBinAddr: 0x21614, symSize: 0x1C54 } + - { offsetInCU: 0x92C5, offset: 0x745CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB8CC, symBinAddr: 0x2C60C, symSize: 0x4128 } + - { offsetInCU: 0xA487, offset: 0x75790, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xF9F4, symBinAddr: 0x30734, symSize: 0x578 } + - { offsetInCU: 0xA8D9, offset: 0x75BE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0xFF94, symBinAddr: 0x30CD4, symSize: 0x40 } + - { offsetInCU: 0xA901, offset: 0x75C0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x155DC, symBinAddr: 0x3631C, symSize: 0x3DC } + - { offsetInCU: 0xAAED, offset: 0x75DF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x1173C, symBinAddr: 0x3247C, symSize: 0x2F48 } + - { offsetInCU: 0xC2F0, offset: 0x775F9, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x2528, symBinAddr: 0x23268, symSize: 0x2E0 } + - { offsetInCU: 0xC6A7, offset: 0x779B0, size: 0x8, addend: 0x0, symName: '_$sSayxSicig11IoTConnect23AttV_Tg5', symObjAddr: 0x2808, symBinAddr: 0x23548, symSize: 0x78 } + - { offsetInCU: 0xC6EF, offset: 0x779F8, size: 0x8, addend: 0x0, symName: '_$sSayxSicig11IoTConnect27AttDataV_Tg5', symObjAddr: 0x2880, symBinAddr: 0x235C0, symSize: 0x6C } + - { offsetInCU: 0xC73F, offset: 0x77A48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getDiscoveryURLSSyF', symObjAddr: 0x28EC, symBinAddr: 0x2362C, symSize: 0x110 } + - { offsetInCU: 0xC879, offset: 0x77B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x3334, symBinAddr: 0x24074, symSize: 0x3B8 } + - { offsetInCU: 0xCB05, offset: 0x77E0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x36EC, symBinAddr: 0x2442C, symSize: 0x3914 } + - { offsetInCU: 0xE696, offset: 0x7999F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7000, symBinAddr: 0x27D40, symSize: 0x278 } + - { offsetInCU: 0xE7A2, offset: 0x79AAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x76FC, symBinAddr: 0x2843C, symSize: 0x1848 } + - { offsetInCU: 0xF229, offset: 0x7A532, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x7278, symBinAddr: 0x27FB8, symSize: 0x118 } + - { offsetInCU: 0xF2A6, offset: 0x7A5AF, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x7390, symBinAddr: 0x280D0, symSize: 0x15C } + - { offsetInCU: 0xF2C1, offset: 0x7A5CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x74EC, symBinAddr: 0x2822C, symSize: 0x1E8 } + - { offsetInCU: 0xF5A6, offset: 0x7A8AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0x8F98, symBinAddr: 0x29CD8, symSize: 0x3F8 } + - { offsetInCU: 0xF7C7, offset: 0x7AAD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA308, symBinAddr: 0x2B048, symSize: 0xE7C } + - { offsetInCU: 0x100B7, offset: 0x7B3C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x9390, symBinAddr: 0x2A0D0, symSize: 0xB78 } + - { offsetInCU: 0x10A74, offset: 0x7BD7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x105FC, symBinAddr: 0x3133C, symSize: 0x1140 } + - { offsetInCU: 0x11C29, offset: 0x7CF32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1937C, symBinAddr: 0x39FEC, symSize: 0xB10 } + - { offsetInCU: 0x126AA, offset: 0x7D9B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x14684, symBinAddr: 0x353C4, symSize: 0xF58 } + - { offsetInCU: 0x1318E, offset: 0x7E497, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x159B8, symBinAddr: 0x366F8, symSize: 0x1E8 } + - { offsetInCU: 0x13212, offset: 0x7E51B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x15BA0, symBinAddr: 0x368E0, symSize: 0x294 } + - { offsetInCU: 0x13329, offset: 0x7E632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x15ED4, symBinAddr: 0x36C14, symSize: 0xED4 } + - { offsetInCU: 0x13D4E, offset: 0x7F057, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x170E4, symBinAddr: 0x37DD0, symSize: 0x64 } + - { offsetInCU: 0x13D8C, offset: 0x7F095, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x17148, symBinAddr: 0x37E34, symSize: 0x30 } + - { offsetInCU: 0x13DD3, offset: 0x7F0DC, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x17178, symBinAddr: 0x37E64, symSize: 0x80 } + - { offsetInCU: 0x13E6D, offset: 0x7F176, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x171F8, symBinAddr: 0x37EE4, symSize: 0x6C } + - { offsetInCU: 0x13F1D, offset: 0x7F226, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x17264, symBinAddr: 0x37F50, symSize: 0x4C } + - { offsetInCU: 0x13F96, offset: 0x7F29F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x172DC, symBinAddr: 0x37FC8, symSize: 0xE0 } + - { offsetInCU: 0x1400A, offset: 0x7F313, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x173BC, symBinAddr: 0x380A8, symSize: 0xC4 } + - { offsetInCU: 0x14033, offset: 0x7F33C, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x17480, symBinAddr: 0x3816C, symSize: 0x174 } + - { offsetInCU: 0x1410C, offset: 0x7F415, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x175F4, symBinAddr: 0x382E0, symSize: 0x104 } + - { offsetInCU: 0x1423B, offset: 0x7F544, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x176F8, symBinAddr: 0x383E4, symSize: 0x124 } + - { offsetInCU: 0x1435C, offset: 0x7F665, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x1781C, symBinAddr: 0x38508, symSize: 0x170 } + - { offsetInCU: 0x144DD, offset: 0x7F7E6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1798C, symBinAddr: 0x38678, symSize: 0x174 } + - { offsetInCU: 0x1462B, offset: 0x7F934, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x17B00, symBinAddr: 0x387EC, symSize: 0xFC } + - { offsetInCU: 0x14761, offset: 0x7FA6A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x17BFC, symBinAddr: 0x388E8, symSize: 0xFC } + - { offsetInCU: 0x14897, offset: 0x7FBA0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect23AttV_Tg5', symObjAddr: 0x17CF8, symBinAddr: 0x389E4, symSize: 0x11C } + - { offsetInCU: 0x149CD, offset: 0x7FCD6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x17F18, symBinAddr: 0x38C04, symSize: 0xFC } + - { offsetInCU: 0x14B03, offset: 0x7FE0C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x18118, symBinAddr: 0x38E04, symSize: 0x11C } + - { offsetInCU: 0x14BEE, offset: 0x7FEF7, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x184D8, symBinAddr: 0x391C4, symSize: 0x138 } + - { offsetInCU: 0x14CBD, offset: 0x7FFC6, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x18610, symBinAddr: 0x392FC, symSize: 0xB4 } + - { offsetInCU: 0x14D2C, offset: 0x80035, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x18814, symBinAddr: 0x394C0, symSize: 0x18C } + - { offsetInCU: 0x14FE1, offset: 0x802EA, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x19E8C, symBinAddr: 0x3AAFC, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x809BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3DEF8, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x809D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3DEF8, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x809E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3DF28, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x809FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3E014, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x80A0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x3E27C, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x80A23, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x3E698, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x80A37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x3E6A0, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x80A4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x3E8DC, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x80A5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x3E924, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x80A73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x3E9E0, symSize: 0x10 } + - { offsetInCU: 0x60D, offset: 0x81161, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8D9C, symBinAddr: 0x4778C, symSize: 0x220 } + - { offsetInCU: 0x6CB, offset: 0x8121F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8FBC, symBinAddr: 0x479AC, symSize: 0x224 } + - { offsetInCU: 0x798, offset: 0x812EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xCE48, symBinAddr: 0x4B838, symSize: 0x774 } + - { offsetInCU: 0xACE, offset: 0x81622, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD5BC, symBinAddr: 0x4BFAC, symSize: 0x9CC } + - { offsetInCU: 0xDA8, offset: 0x818FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xDF88, symBinAddr: 0x4C978, symSize: 0x2AC } + - { offsetInCU: 0xEEA, offset: 0x81A3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xE8EC, symBinAddr: 0x4D2DC, symSize: 0x810 } + - { offsetInCU: 0x11E0, offset: 0x81D34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF0FC, symBinAddr: 0x4DAEC, symSize: 0xBB4 } + - { offsetInCU: 0x14BA, offset: 0x8200E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xFCB0, symBinAddr: 0x4E6A0, symSize: 0x314 } + - { offsetInCU: 0x15FC, offset: 0x82150, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0xFFC4, symBinAddr: 0x4E9B4, symSize: 0x208 } + - { offsetInCU: 0x1A7D, offset: 0x825D1, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1FD0, symBinAddr: 0x409C0, symSize: 0x2C } + - { offsetInCU: 0x1F82, offset: 0x82AD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0x9280, symBinAddr: 0x47C70, symSize: 0x20 } + - { offsetInCU: 0x1FC7, offset: 0x82B1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x92A0, symBinAddr: 0x47C90, symSize: 0x8C } + - { offsetInCU: 0x2083, offset: 0x82BD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0x9D98, symBinAddr: 0x48788, symSize: 0x54 } + - { offsetInCU: 0x20BD, offset: 0x82C11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0x9DEC, symBinAddr: 0x487DC, symSize: 0x50 } + - { offsetInCU: 0x2113, offset: 0x82C67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9E3C, symBinAddr: 0x4882C, symSize: 0x64 } + - { offsetInCU: 0x2146, offset: 0x82C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x9EA0, symBinAddr: 0x48890, symSize: 0x4 } + - { offsetInCU: 0x2185, offset: 0x82CD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9EA4, symBinAddr: 0x48894, symSize: 0x78 } + - { offsetInCU: 0x21DB, offset: 0x82D2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9F1C, symBinAddr: 0x4890C, symSize: 0x88 } + - { offsetInCU: 0x224C, offset: 0x82DA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x9FA4, symBinAddr: 0x48994, symSize: 0xDC } + - { offsetInCU: 0x22CE, offset: 0x82E22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA080, symBinAddr: 0x48A70, symSize: 0x4 } + - { offsetInCU: 0x22EA, offset: 0x82E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA084, symBinAddr: 0x48A74, symSize: 0x4 } + - { offsetInCU: 0x2324, offset: 0x82E78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xA088, symBinAddr: 0x48A78, symSize: 0x64 } + - { offsetInCU: 0x2681, offset: 0x831D5, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB398, symBinAddr: 0x49D88, symSize: 0xE4 } + - { offsetInCU: 0x2765, offset: 0x832B9, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xB560, symBinAddr: 0x49F50, symSize: 0x280 } + - { offsetInCU: 0x2901, offset: 0x83455, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xBD90, symBinAddr: 0x4A780, symSize: 0x64 } + - { offsetInCU: 0x2E11, offset: 0x83965, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xC404, symBinAddr: 0x4ADF4, symSize: 0x374 } + - { offsetInCU: 0x35B3, offset: 0x84107, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xC778, symBinAddr: 0x4B168, symSize: 0x280 } + - { offsetInCU: 0x398A, offset: 0x844DE, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xC9F8, symBinAddr: 0x4B3E8, symSize: 0x148 } + - { offsetInCU: 0x3B84, offset: 0x846D8, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xCB40, symBinAddr: 0x4B530, symSize: 0x1F8 } + - { offsetInCU: 0x3D43, offset: 0x84897, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1097C, symBinAddr: 0x4F36C, symSize: 0x104 } + - { offsetInCU: 0x3E8D, offset: 0x849E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x13504, symBinAddr: 0x51EF4, symSize: 0x120 } + - { offsetInCU: 0x3FA5, offset: 0x84AF9, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x13CF8, symBinAddr: 0x52688, symSize: 0x10 } + - { offsetInCU: 0x3FB9, offset: 0x84B0D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x13D08, symBinAddr: 0x52698, symSize: 0x10 } + - { offsetInCU: 0x3FCD, offset: 0x84B21, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x13D9C, symBinAddr: 0x526A8, symSize: 0x48 } + - { offsetInCU: 0x3FE1, offset: 0x84B35, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x13E88, symBinAddr: 0x526F0, symSize: 0x3C } + - { offsetInCU: 0x3FF5, offset: 0x84B49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOc', symObjAddr: 0x13EC4, symBinAddr: 0x5272C, symSize: 0x44 } + - { offsetInCU: 0x4009, offset: 0x84B5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOd', symObjAddr: 0x13F08, symBinAddr: 0x52770, symSize: 0x48 } + - { offsetInCU: 0x401D, offset: 0x84B71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x13F50, symBinAddr: 0x527B8, symSize: 0x44 } + - { offsetInCU: 0x4031, offset: 0x84B85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x13F94, symBinAddr: 0x527FC, symSize: 0x8 } + - { offsetInCU: 0x4045, offset: 0x84B99, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x13F9C, symBinAddr: 0x52804, symSize: 0x10 } + - { offsetInCU: 0x4059, offset: 0x84BAD, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x13FAC, symBinAddr: 0x52814, symSize: 0x8 } + - { offsetInCU: 0x406D, offset: 0x84BC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14034, symBinAddr: 0x52858, symSize: 0x30 } + - { offsetInCU: 0x40C5, offset: 0x84C19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x140F4, symBinAddr: 0x52918, symSize: 0x24 } + - { offsetInCU: 0x4101, offset: 0x84C55, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x1415C, symBinAddr: 0x52980, symSize: 0x44 } + - { offsetInCU: 0x4CC2, offset: 0x85816, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF10Foundation4DateV_Tg5', symObjAddr: 0x0, symBinAddr: 0x3E9F0, symSize: 0x6C } + - { offsetInCU: 0x4CDD, offset: 0x85831, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x6C, symBinAddr: 0x3EA5C, symSize: 0x134 } + - { offsetInCU: 0x4D19, offset: 0x8586D, size: 0x8, addend: 0x0, symName: '_$sSa5countSivg11IoTConnect23AttV_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x3EB90, symSize: 0x8 } + - { offsetInCU: 0x4D31, offset: 0x85885, size: 0x8, addend: 0x0, symName: '_$sSa5countSivg11IoTConnect23AttV_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x3EB90, symSize: 0x8 } + - { offsetInCU: 0x4D45, offset: 0x85899, size: 0x8, addend: 0x0, symName: '_$sSa5countSivg11IoTConnect23AttV_Tg5', symObjAddr: 0x1A0, symBinAddr: 0x3EB90, symSize: 0x8 } + - { offsetInCU: 0x4D57, offset: 0x858AB, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x1A8, symBinAddr: 0x3EB98, symSize: 0x80 } + - { offsetInCU: 0x4DBF, offset: 0x85913, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x228, symBinAddr: 0x3EC18, symSize: 0xA0 } + - { offsetInCU: 0x4F22, offset: 0x85A76, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2C8, symBinAddr: 0x3ECB8, symSize: 0x9C } + - { offsetInCU: 0x504D, offset: 0x85BA1, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x364, symBinAddr: 0x3ED54, symSize: 0x74 } + - { offsetInCU: 0x50D2, offset: 0x85C26, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3D8, symBinAddr: 0x3EDC8, symSize: 0x4 } + - { offsetInCU: 0x5110, offset: 0x85C64, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect23AttV_Tg5', symObjAddr: 0x3DC, symBinAddr: 0x3EDCC, symSize: 0x78 } + - { offsetInCU: 0x5195, offset: 0x85CE9, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect23AttV_Tg5.resume.0', symObjAddr: 0x454, symBinAddr: 0x3EE44, symSize: 0x4 } + - { offsetInCU: 0x51D3, offset: 0x85D27, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect27AttDataV_Tg5', symObjAddr: 0x458, symBinAddr: 0x3EE48, symSize: 0x90 } + - { offsetInCU: 0x5258, offset: 0x85DAC, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect27AttDataV_Tg5.resume.0', symObjAddr: 0x4E8, symBinAddr: 0x3EED8, symSize: 0x4 } + - { offsetInCU: 0x52A9, offset: 0x85DFD, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x4EC, symBinAddr: 0x3EEDC, symSize: 0xE8 } + - { offsetInCU: 0x538B, offset: 0x85EDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x5D4, symBinAddr: 0x3EFC4, symSize: 0x204 } + - { offsetInCU: 0x550A, offset: 0x8605E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x7D8, symBinAddr: 0x3F1C8, symSize: 0xB0C } + - { offsetInCU: 0x599C, offset: 0x864F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x12E4, symBinAddr: 0x3FCD4, symSize: 0x3CC } + - { offsetInCU: 0x5BB3, offset: 0x86707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x16B0, symBinAddr: 0x400A0, symSize: 0x920 } + - { offsetInCU: 0x5F2A, offset: 0x86A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x1FFC, symBinAddr: 0x409EC, symSize: 0x21E4 } + - { offsetInCU: 0x7447, offset: 0x87F9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE234, symBinAddr: 0x4CC24, symSize: 0x6B8 } + - { offsetInCU: 0x7852, offset: 0x883A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x41E0, symBinAddr: 0x42BD0, symSize: 0x158C } + - { offsetInCU: 0x870D, offset: 0x89261, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x576C, symBinAddr: 0x4415C, symSize: 0xFD4 } + - { offsetInCU: 0x9114, offset: 0x89C68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x6740, symBinAddr: 0x45130, symSize: 0x3B0 } + - { offsetInCU: 0x927D, offset: 0x89DD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7374, symBinAddr: 0x45D64, symSize: 0x1E8 } + - { offsetInCU: 0x94CF, offset: 0x8A023, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x755C, symBinAddr: 0x45F4C, symSize: 0x92C } + - { offsetInCU: 0x9CCF, offset: 0x8A823, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7E88, symBinAddr: 0x46878, symSize: 0x2A8 } + - { offsetInCU: 0x9E21, offset: 0x8A975, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x8130, symBinAddr: 0x46B20, symSize: 0x628 } + - { offsetInCU: 0xA1FF, offset: 0x8AD53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x8758, symBinAddr: 0x47148, symSize: 0x644 } + - { offsetInCU: 0xA4A1, offset: 0x8AFF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0x91E0, symBinAddr: 0x47BD0, symSize: 0x80 } + - { offsetInCU: 0xA4C4, offset: 0x8B018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0x9260, symBinAddr: 0x47C50, symSize: 0x20 } + - { offsetInCU: 0xA54F, offset: 0x8B0A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0x932C, symBinAddr: 0x47D1C, symSize: 0xA2C } + - { offsetInCU: 0xA952, offset: 0x8B4A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0x9D58, symBinAddr: 0x48748, symSize: 0x40 } + - { offsetInCU: 0xA9C5, offset: 0x8B519, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA0EC, symBinAddr: 0x48ADC, symSize: 0x4 } + - { offsetInCU: 0xA9D9, offset: 0x8B52D, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xA0F0, symBinAddr: 0x48AE0, symSize: 0x4 } + - { offsetInCU: 0xA9ED, offset: 0x8B541, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA0F4, symBinAddr: 0x48AE4, symSize: 0xC8 } + - { offsetInCU: 0xAA75, offset: 0x8B5C9, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA1BC, symBinAddr: 0x48BAC, symSize: 0xCC } + - { offsetInCU: 0xAB15, offset: 0x8B669, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA384, symBinAddr: 0x48D74, symSize: 0x1F4 } + - { offsetInCU: 0xABB5, offset: 0x8B709, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA578, symBinAddr: 0x48F68, symSize: 0x1C4 } + - { offsetInCU: 0xAC71, offset: 0x8B7C5, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA73C, symBinAddr: 0x4912C, symSize: 0x340 } + - { offsetInCU: 0xAD68, offset: 0x8B8BC, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAA7C, symBinAddr: 0x4946C, symSize: 0x340 } + - { offsetInCU: 0xAE44, offset: 0x8B998, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV15uncheckedRemove2at8isUniquex3key_q_5valuets10_HashTableV6BucketV_SbtFSS_ypTg5', symObjAddr: 0xADBC, symBinAddr: 0x497AC, symSize: 0x6C } + - { offsetInCU: 0xAEAF, offset: 0x8BA03, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xAE28, symBinAddr: 0x49818, symSize: 0x1DC } + - { offsetInCU: 0xAF54, offset: 0x8BAA8, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB004, symBinAddr: 0x499F4, symSize: 0x204 } + - { offsetInCU: 0xAFF2, offset: 0x8BB46, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB208, symBinAddr: 0x49BF8, symSize: 0x4C } + - { offsetInCU: 0xB09E, offset: 0x8BBF2, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB254, symBinAddr: 0x49C44, symSize: 0x90 } + - { offsetInCU: 0xB12A, offset: 0x8BC7E, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB2E4, symBinAddr: 0x49CD4, symSize: 0x40 } + - { offsetInCU: 0xB167, offset: 0x8BCBB, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB324, symBinAddr: 0x49D14, symSize: 0x18 } + - { offsetInCU: 0xB1B9, offset: 0x8BD0D, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xB33C, symBinAddr: 0x49D2C, symSize: 0x3C } + - { offsetInCU: 0xB1E2, offset: 0x8BD36, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xB378, symBinAddr: 0x49D68, symSize: 0x1C } + - { offsetInCU: 0xB223, offset: 0x8BD77, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBA64, symBinAddr: 0x4A454, symSize: 0x8C } + - { offsetInCU: 0xB237, offset: 0x8BD8B, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBAF0, symBinAddr: 0x4A4E0, symSize: 0x4C } + - { offsetInCU: 0xB267, offset: 0x8BDBB, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBB3C, symBinAddr: 0x4A52C, symSize: 0x164 } + - { offsetInCU: 0xB2C4, offset: 0x8BE18, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBCA0, symBinAddr: 0x4A690, symSize: 0xF0 } + - { offsetInCU: 0xB2EB, offset: 0x8BE3F, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xBDF4, symBinAddr: 0x4A7E4, symSize: 0x214 } + - { offsetInCU: 0xB320, offset: 0x8BE74, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC008, symBinAddr: 0x4A9F8, symSize: 0x78 } + - { offsetInCU: 0xB334, offset: 0x8BE88, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC080, symBinAddr: 0x4AA70, symSize: 0x1C } + - { offsetInCU: 0xB348, offset: 0x8BE9C, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC09C, symBinAddr: 0x4AA8C, symSize: 0x1C } + - { offsetInCU: 0xB37F, offset: 0x8BED3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC0B8, symBinAddr: 0x4AAA8, symSize: 0x104 } + - { offsetInCU: 0xB47D, offset: 0x8BFD1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC1BC, symBinAddr: 0x4ABAC, symSize: 0x124 } + - { offsetInCU: 0xB551, offset: 0x8C0A5, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC2E0, symBinAddr: 0x4ACD0, symSize: 0x124 } + - { offsetInCU: 0xB690, offset: 0x8C1E4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xCD38, symBinAddr: 0x4B728, symSize: 0x14 } + - { offsetInCU: 0xB6B2, offset: 0x8C206, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xCD4C, symBinAddr: 0x4B73C, symSize: 0xFC } + - { offsetInCU: 0xB78C, offset: 0x8C2E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x101CC, symBinAddr: 0x4EBBC, symSize: 0x7B0 } + - { offsetInCU: 0xBC13, offset: 0x8C767, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10A80, symBinAddr: 0x4F470, symSize: 0x2A84 } + - { offsetInCU: 0xC3A7, offset: 0x8CEFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x13624, symBinAddr: 0x52014, symSize: 0x674 } + - { offsetInCU: 0x95, offset: 0x8D3D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x539CC, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8D423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xF98, symBinAddr: 0x53A18, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8D454, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xFBC, symBinAddr: 0x53A3C, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8D470, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xFC8, symBinAddr: 0x53A48, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8D48C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5F38, symBinAddr: 0x58928, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8D523, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1024, symBinAddr: 0x53AA4, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8D55A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1074, symBinAddr: 0x53AF4, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8D57D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x606C, symBinAddr: 0x58A5C, symSize: 0x132C } + - { offsetInCU: 0x2D0, offset: 0x8D60B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x10C4, symBinAddr: 0x53B44, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8D666, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x10DC, symBinAddr: 0x53B5C, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8D6E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1108, symBinAddr: 0x53B88, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8D715, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1170, symBinAddr: 0x53BF0, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8D746, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1194, symBinAddr: 0x53C14, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8D762, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11A0, symBinAddr: 0x53C20, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8D77E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E7C, symBinAddr: 0x59E54, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8D870, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11FC, symBinAddr: 0x53C7C, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8D8A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x124C, symBinAddr: 0x53CCC, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8D8CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8078, symBinAddr: 0x5A050, symSize: 0xF38 } + - { offsetInCU: 0x611, offset: 0x8D94C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x146C, symBinAddr: 0x53EEC, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8D97D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1498, symBinAddr: 0x53F18, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8D999, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1508, symBinAddr: 0x53F88, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8D9CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1568, symBinAddr: 0x53FE8, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8DA1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x158C, symBinAddr: 0x5400C, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8DA3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1598, symBinAddr: 0x54018, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8DA56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x918C, symBinAddr: 0x5B164, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8DAB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15F4, symBinAddr: 0x54074, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8DAEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x163C, symBinAddr: 0x540BC, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8DB0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x91E8, symBinAddr: 0x5B1C0, symSize: 0x220 } + - { offsetInCU: 0x838, offset: 0x8DB73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1684, symBinAddr: 0x54104, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8DBA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x168C, symBinAddr: 0x5410C, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8DBD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16B0, symBinAddr: 0x54130, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8DBF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16BC, symBinAddr: 0x5413C, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8DC11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9408, symBinAddr: 0x5B3E0, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8DD6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1718, symBinAddr: 0x54198, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8DDA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1778, symBinAddr: 0x541F8, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8DDC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x96F4, symBinAddr: 0x5B6CC, symSize: 0x538 } + - { offsetInCU: 0xB19, offset: 0x8DE54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x54250, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8DED4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x17E8, symBinAddr: 0x54268, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8DFB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x182C, symBinAddr: 0x542AC, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8E03D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1894, symBinAddr: 0x54314, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8E092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18B8, symBinAddr: 0x54338, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8E0C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18DC, symBinAddr: 0x5435C, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8E0DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18E8, symBinAddr: 0x54368, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8E0FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9C2C, symBinAddr: 0x5BC04, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8E189, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1944, symBinAddr: 0x543C4, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8E1C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1970, symBinAddr: 0x543F0, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8E1E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9CE8, symBinAddr: 0x5BCC0, symSize: 0x1A0 } + - { offsetInCU: 0xF18, offset: 0x8E253, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A18, symBinAddr: 0x54498, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8E288, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x54510, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8E2B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x54534, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8E2D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x54540, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8E2F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9E88, symBinAddr: 0x5BE60, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8E3EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B1C, symBinAddr: 0x5459C, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8E423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B8C, symBinAddr: 0x5460C, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8E446, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA0D4, symBinAddr: 0x5C0AC, symSize: 0x8C8 } + - { offsetInCU: 0x11A5, offset: 0x8E4E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1D78, symBinAddr: 0x547F8, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8E511, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1DA4, symBinAddr: 0x54824, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8E525, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1DCC, symBinAddr: 0x5484C, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8E55A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DD4, symBinAddr: 0x54854, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8E5AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1DF8, symBinAddr: 0x54878, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8E5C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E04, symBinAddr: 0x54884, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8E5E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAA68, symBinAddr: 0x5CA40, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8E660, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x548E0, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8E697, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EB8, symBinAddr: 0x54938, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8E6BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAAC4, symBinAddr: 0x5CA9C, symSize: 0x760 } + - { offsetInCU: 0x1457, offset: 0x8E792, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D00, symBinAddr: 0x58774, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8E7EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5D54, symBinAddr: 0x587C8, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8E83E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5DD4, symBinAddr: 0x58848, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8E873, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5DDC, symBinAddr: 0x58850, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8E8F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5E3C, symBinAddr: 0x588B0, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8E910, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x20D0, symBinAddr: 0x54B50, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8E924, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x20F0, symBinAddr: 0x54B70, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8E938, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x21E4, symBinAddr: 0x54C64, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8E94C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x2564, symBinAddr: 0x54FE4, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8E967, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x31BC, symBinAddr: 0x55C3C, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8E990, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x31EC, symBinAddr: 0x55C6C, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8E9A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x3218, symBinAddr: 0x55C98, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8E9B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x3244, symBinAddr: 0x55CC4, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8E9CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x3270, symBinAddr: 0x55CF0, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8E9E0, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x329C, symBinAddr: 0x55D1C, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8E9F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x32A4, symBinAddr: 0x55D24, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8EA08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x3664, symBinAddr: 0x560E4, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8EA1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x36C0, symBinAddr: 0x56140, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8EA30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x37AC, symBinAddr: 0x5622C, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8EA44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x37BC, symBinAddr: 0x5623C, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8EA58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x37EC, symBinAddr: 0x5626C, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8EA6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x38CC, symBinAddr: 0x5634C, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8EA80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x3C04, symBinAddr: 0x56684, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8EA94, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4468, symBinAddr: 0x56EE8, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8EAA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4470, symBinAddr: 0x56EF0, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8EABC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x47D4, symBinAddr: 0x57254, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8EAD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x4830, symBinAddr: 0x572B0, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8EAE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x4914, symBinAddr: 0x57394, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8EAF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x4924, symBinAddr: 0x573A4, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8EB0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x49C8, symBinAddr: 0x57448, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8EB20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x4B54, symBinAddr: 0x575D4, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8EB34, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4EFC, symBinAddr: 0x5797C, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8EB48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x4F40, symBinAddr: 0x579C0, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8EB5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x50BC, symBinAddr: 0x57B3C, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8EB70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x5118, symBinAddr: 0x57B98, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8EB84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x51AC, symBinAddr: 0x57C2C, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8EB98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x51BC, symBinAddr: 0x57C3C, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8EBAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x5224, symBinAddr: 0x57CA4, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8EBC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x5300, symBinAddr: 0x57D80, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8EBD4, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x546C, symBinAddr: 0x57EEC, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8EBE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5498, symBinAddr: 0x57F18, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8EBFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x555C, symBinAddr: 0x57FDC, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8EC10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x55B8, symBinAddr: 0x58038, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8EC24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x5634, symBinAddr: 0x580B4, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8EC38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x5644, symBinAddr: 0x580C4, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8EC4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x568C, symBinAddr: 0x5810C, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8EC60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x5770, symBinAddr: 0x581F0, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8EC74, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5908, symBinAddr: 0x58388, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8EC88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x593C, symBinAddr: 0x583BC, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8EC9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x5A38, symBinAddr: 0x584B8, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8ECB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x5A94, symBinAddr: 0x58514, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8ECC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x5B10, symBinAddr: 0x58590, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8ECD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x5B20, symBinAddr: 0x585A0, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8ECEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x5B48, symBinAddr: 0x585C8, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8ED00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x5B84, symBinAddr: 0x58604, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8ED14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x5BFC, symBinAddr: 0x58670, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8ED28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x5C40, symBinAddr: 0x586B4, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8ED3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x5C9C, symBinAddr: 0x58710, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8ED50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x5CF0, symBinAddr: 0x58764, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8ED64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x5E44, symBinAddr: 0x588B8, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8ED78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x5E48, symBinAddr: 0x588BC, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8ED8C, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F10, symBinAddr: 0x58900, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8EDA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x7398, symBinAddr: 0x59D88, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8EDB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x73DC, symBinAddr: 0x59DCC, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8EDC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x7E38, symBinAddr: 0x59E10, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8EDDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x8FB0, symBinAddr: 0x5AF88, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8EDF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x8FF4, symBinAddr: 0x5AFCC, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8EE04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x9038, symBinAddr: 0x5B010, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8EE18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x907C, symBinAddr: 0x5B054, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8EE2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x90C0, symBinAddr: 0x5B098, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8EE40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x9104, symBinAddr: 0x5B0DC, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8EE54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x9148, symBinAddr: 0x5B120, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8EE68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA99C, symBinAddr: 0x5C974, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8EE7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xA9E0, symBinAddr: 0x5C9B8, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8EE90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xAA24, symBinAddr: 0x5C9FC, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8EEA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xB224, symBinAddr: 0x5D1FC, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8EEB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB268, symBinAddr: 0x5D240, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8EECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xB2AC, symBinAddr: 0x5D284, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8EEE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xB334, symBinAddr: 0x5D30C, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8EEF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xB378, symBinAddr: 0x5D350, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8EF08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB3CC, symBinAddr: 0x5D394, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8EF1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB45C, symBinAddr: 0x5D424, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8EF30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xB518, symBinAddr: 0x5D4E0, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8EF44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB520, symBinAddr: 0x5D4E8, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8EF58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xB524, symBinAddr: 0x5D4EC, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8EF6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB530, symBinAddr: 0x5D4F8, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8EF80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB540, symBinAddr: 0x5D508, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8EF94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB5D0, symBinAddr: 0x5D598, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8EFA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB68C, symBinAddr: 0x5D654, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8EFBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB690, symBinAddr: 0x5D658, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8EFD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xB6A0, symBinAddr: 0x5D668, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8EFE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xB730, symBinAddr: 0x5D6F8, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8EFF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xB7EC, symBinAddr: 0x5D7B4, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8F00C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xB7F0, symBinAddr: 0x5D7B8, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8F020, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB800, symBinAddr: 0x5D7C8, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8F034, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB890, symBinAddr: 0x5D858, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8F048, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xB94C, symBinAddr: 0x5D914, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8F05C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xB950, symBinAddr: 0x5D918, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8F070, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xB960, symBinAddr: 0x5D928, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8F084, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xB9F0, symBinAddr: 0x5D9B8, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8F098, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xBAAC, symBinAddr: 0x5DA74, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8F0AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBAB4, symBinAddr: 0x5DA7C, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8F0C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xBAB8, symBinAddr: 0x5DA80, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8F0D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBAC0, symBinAddr: 0x5DA88, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8F0E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xBAD0, symBinAddr: 0x5DA98, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8F0FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xBB60, symBinAddr: 0x5DB28, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8F110, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xBC1C, symBinAddr: 0x5DBE4, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8F124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xBC20, symBinAddr: 0x5DBE8, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8F138, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBC30, symBinAddr: 0x5DBF8, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8F14C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xBC54, symBinAddr: 0x5DC1C, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8F160, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xBC74, symBinAddr: 0x5DC3C, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8F174, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xBCB4, symBinAddr: 0x5DC7C, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8F188, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBCC4, symBinAddr: 0x5DC8C, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8F19C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBCC8, symBinAddr: 0x5DC90, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8F1B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBD0C, symBinAddr: 0x5DCD4, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8F1C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBD10, symBinAddr: 0x5DCD8, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8F1D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBD54, symBinAddr: 0x5DD1C, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8F1EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBD58, symBinAddr: 0x5DD20, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8F200, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBD9C, symBinAddr: 0x5DD64, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8F214, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBDA0, symBinAddr: 0x5DD68, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8F228, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBDE4, symBinAddr: 0x5DDAC, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8F23C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBDE8, symBinAddr: 0x5DDB0, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8F250, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xBE2C, symBinAddr: 0x5DDF4, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8F264, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xBE30, symBinAddr: 0x5DDF8, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8F278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBE74, symBinAddr: 0x5DE3C, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8F28C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBE78, symBinAddr: 0x5DE40, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8F2A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBEBC, symBinAddr: 0x5DE84, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8F2B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBEC0, symBinAddr: 0x5DE88, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8F2C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF04, symBinAddr: 0x5DECC, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8F2DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF08, symBinAddr: 0x5DED0, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8F2F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF4C, symBinAddr: 0x5DF14, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8F304, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBF50, symBinAddr: 0x5DF18, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8F318, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF94, symBinAddr: 0x5DF5C, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8F32C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF98, symBinAddr: 0x5DF60, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8F340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFDC, symBinAddr: 0x5DFA4, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8F354, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBFE0, symBinAddr: 0x5DFA8, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8F368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC024, symBinAddr: 0x5DFEC, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8F37C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC028, symBinAddr: 0x5DFF0, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8F390, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC06C, symBinAddr: 0x5E034, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8F3A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC070, symBinAddr: 0x5E038, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8F3B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC0B4, symBinAddr: 0x5E07C, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8F3CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC0B8, symBinAddr: 0x5E080, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8F3E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0FC, symBinAddr: 0x5E0C4, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8F3F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC100, symBinAddr: 0x5E0C8, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8F408, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC144, symBinAddr: 0x5E10C, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8F41C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC148, symBinAddr: 0x5E110, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8F430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC18C, symBinAddr: 0x5E154, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8F444, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC190, symBinAddr: 0x5E158, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8F458, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xC1D4, symBinAddr: 0x5E19C, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8F46C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xC218, symBinAddr: 0x5E1E0, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8F480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xC2A8, symBinAddr: 0x5E270, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8F494, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xC364, symBinAddr: 0x5E32C, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8F4A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xC368, symBinAddr: 0x5E330, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8F4BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC378, symBinAddr: 0x5E340, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8F4D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC37C, symBinAddr: 0x5E344, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8F4E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC3C0, symBinAddr: 0x5E388, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8F4F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC3C4, symBinAddr: 0x5E38C, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8F50C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC408, symBinAddr: 0x5E3D0, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8F520, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC40C, symBinAddr: 0x5E3D4, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8F54E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xFD4, symBinAddr: 0x53A54, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8F56A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xFFC, symBinAddr: 0x53A7C, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8F58C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11AC, symBinAddr: 0x53C2C, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8F5A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11D4, symBinAddr: 0x53C54, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8F5C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x129C, symBinAddr: 0x53D1C, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8F644, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12A8, symBinAddr: 0x53D28, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8F6C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x134C, symBinAddr: 0x53DCC, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8F704, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x13CC, symBinAddr: 0x53E4C, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8F76A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x15A4, symBinAddr: 0x54024, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8F786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x15CC, symBinAddr: 0x5404C, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8F7A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x54148, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8F7C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x16F0, symBinAddr: 0x54170, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8F817, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1854, symBinAddr: 0x542D4, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8F8B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x18F4, symBinAddr: 0x54374, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8F8D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x191C, symBinAddr: 0x5439C, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8F8F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1ACC, symBinAddr: 0x5454C, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8F913, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x54574, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8F95C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1BF4, symBinAddr: 0x54674, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8FA30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1C7C, symBinAddr: 0x546FC, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8FAAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CDC, symBinAddr: 0x5475C, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8FB00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D1C, symBinAddr: 0x5479C, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8FB62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E10, symBinAddr: 0x54890, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8FB7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1E38, symBinAddr: 0x548B8, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8FBBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E00, symBinAddr: 0x58874, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8FD51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x52A80, symSize: 0x17C } + - { offsetInCU: 0x2A47, offset: 0x8FD82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x17C, symBinAddr: 0x52BFC, symSize: 0x264 } + - { offsetInCU: 0x2A78, offset: 0x8FDB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x3E0, symBinAddr: 0x52E60, symSize: 0x190 } + - { offsetInCU: 0x2AA9, offset: 0x8FDE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x570, symBinAddr: 0x52FF0, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8FE07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x60C, symBinAddr: 0x5308C, symSize: 0x268 } + - { offsetInCU: 0x2AFD, offset: 0x8FE38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x874, symBinAddr: 0x532F4, symSize: 0x118 } + - { offsetInCU: 0x2B2E, offset: 0x8FE69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x98C, symBinAddr: 0x5340C, symSize: 0x214 } + - { offsetInCU: 0x2B5F, offset: 0x8FE9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBA0, symBinAddr: 0x53620, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8FED0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC50, symBinAddr: 0x536D0, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8FF12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x53780, symSize: 0x244 } + - { offsetInCU: 0x2DE8, offset: 0x90123, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F08, symBinAddr: 0x54988, symSize: 0x1B8 } + - { offsetInCU: 0x2E34, offset: 0x9016F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x20C0, symBinAddr: 0x54B40, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x90252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5E470, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x9038E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5E4DC, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x903A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5E530, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x903B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5E574, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x90497, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5E470, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x904B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5E478, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x904E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5E480, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x904F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5E490, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x90518, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5E494, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x9052C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5E49C, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x9055E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5E4A4, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x90582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5E4B4, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x905A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5E4B8, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x905B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5E4C0, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x905E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5E4C8, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x9060B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5E4D8, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x90661, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5E584, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x906B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5E5A8, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x907B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5E584, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x90820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E5C8, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x90871, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5E5EC, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E5C8, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x909E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5E60C, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x90A34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5E66C, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x90A48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5E674, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x90A5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5E6B0, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x90B62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5E60C, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x90BCC, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5E728, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x90D20, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x470, symBinAddr: 0x5EB5C, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x90F46, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5E728, symSize: 0x368 } + - { offsetInCU: 0x5AB, offset: 0x91150, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11updateValue_6forKeyq_Sgq_n_xtFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x5EA90, symSize: 0xCC } + - { offsetInCU: 0x27, offset: 0x91223, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5EBA4, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x91274, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5EBC8, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x9137A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5EBA4, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x9145C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA78, symBinAddr: 0x5F620, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x91478, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA84, symBinAddr: 0x5F62C, symSize: 0x64 } + - { offsetInCU: 0xD5, offset: 0x91490, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA84, symBinAddr: 0x5F62C, symSize: 0x64 } + - { offsetInCU: 0xE6, offset: 0x914A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xAE8, symBinAddr: 0x5F690, symSize: 0x38 } + - { offsetInCU: 0x175, offset: 0x91530, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xCBC, symBinAddr: 0x5F864, symSize: 0xC } + - { offsetInCU: 0x191, offset: 0x9154C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xCC8, symBinAddr: 0x5F870, symSize: 0x2C } + - { offsetInCU: 0x1A9, offset: 0x91564, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xCC8, symBinAddr: 0x5F870, symSize: 0x2C } + - { offsetInCU: 0x560, offset: 0x9191B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x7D4, symBinAddr: 0x5F37C, symSize: 0xC8 } + - { offsetInCU: 0x5D4, offset: 0x9198F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xCF4, symBinAddr: 0x5F89C, symSize: 0x334 } + - { offsetInCU: 0x806, offset: 0x91BC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1028, symBinAddr: 0x5FBD0, symSize: 0x13C } + - { offsetInCU: 0xA28, offset: 0x91DE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x32F8, symBinAddr: 0x61E00, symSize: 0x1FC } + - { offsetInCU: 0xAD9, offset: 0x91E94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x361C, symBinAddr: 0x620C8, symSize: 0x23C } + - { offsetInCU: 0xB3E, offset: 0x91EF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3858, symBinAddr: 0x62304, symSize: 0x29C } + - { offsetInCU: 0xC7D, offset: 0x92038, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3AF4, symBinAddr: 0x625A0, symSize: 0x188 } + - { offsetInCU: 0xCC3, offset: 0x9207E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3C7C, symBinAddr: 0x62728, symSize: 0x43C } + - { offsetInCU: 0xFFA, offset: 0x923B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x40B8, symBinAddr: 0x62B64, symSize: 0xC4 } + - { offsetInCU: 0x113F, offset: 0x924FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2D5C, symBinAddr: 0x61904, symSize: 0x4 } + - { offsetInCU: 0x1153, offset: 0x9250E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2D60, symBinAddr: 0x61908, symSize: 0x44 } + - { offsetInCU: 0x1167, offset: 0x92522, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2DA4, symBinAddr: 0x6194C, symSize: 0x4 } + - { offsetInCU: 0x117B, offset: 0x92536, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2DA8, symBinAddr: 0x61950, symSize: 0x4C } + - { offsetInCU: 0x118F, offset: 0x9254A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x2E38, symBinAddr: 0x6199C, symSize: 0x4 } + - { offsetInCU: 0x11A3, offset: 0x9255E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x2E3C, symBinAddr: 0x619A0, symSize: 0x44 } + - { offsetInCU: 0x11B7, offset: 0x92572, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x2E90, symBinAddr: 0x619E4, symSize: 0x90 } + - { offsetInCU: 0x11CB, offset: 0x92586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x2F20, symBinAddr: 0x61A74, symSize: 0xBC } + - { offsetInCU: 0x11DF, offset: 0x9259A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x2FDC, symBinAddr: 0x61B30, symSize: 0x8 } + - { offsetInCU: 0x11F3, offset: 0x925AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x2FE4, symBinAddr: 0x61B38, symSize: 0x4 } + - { offsetInCU: 0x1207, offset: 0x925C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x2FE8, symBinAddr: 0x61B3C, symSize: 0x8 } + - { offsetInCU: 0x121B, offset: 0x925D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x2FF0, symBinAddr: 0x61B44, symSize: 0x10 } + - { offsetInCU: 0x122F, offset: 0x925EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3000, symBinAddr: 0x61B54, symSize: 0x90 } + - { offsetInCU: 0x1243, offset: 0x925FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x3090, symBinAddr: 0x61BE4, symSize: 0xBC } + - { offsetInCU: 0x1257, offset: 0x92612, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x314C, symBinAddr: 0x61CA0, symSize: 0x8 } + - { offsetInCU: 0x126B, offset: 0x92626, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x3154, symBinAddr: 0x61CA8, symSize: 0x4 } + - { offsetInCU: 0x127F, offset: 0x9263A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x3158, symBinAddr: 0x61CAC, symSize: 0xC } + - { offsetInCU: 0x1293, offset: 0x9264E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x3164, symBinAddr: 0x61CB8, symSize: 0x10 } + - { offsetInCU: 0x12A7, offset: 0x92662, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x3174, symBinAddr: 0x61CC8, symSize: 0x20 } + - { offsetInCU: 0x12BB, offset: 0x92676, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x319C, symBinAddr: 0x61CE8, symSize: 0xC } + - { offsetInCU: 0x12CF, offset: 0x9268A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x31A8, symBinAddr: 0x61CF4, symSize: 0x4 } + - { offsetInCU: 0x12E3, offset: 0x9269E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x31AC, symBinAddr: 0x61CF8, symSize: 0x44 } + - { offsetInCU: 0x12F7, offset: 0x926B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x31F0, symBinAddr: 0x61D3C, symSize: 0xC } + - { offsetInCU: 0x130B, offset: 0x926C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x31FC, symBinAddr: 0x61D48, symSize: 0x4 } + - { offsetInCU: 0x131F, offset: 0x926DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3200, symBinAddr: 0x61D4C, symSize: 0x44 } + - { offsetInCU: 0x1333, offset: 0x926EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x3244, symBinAddr: 0x61D90, symSize: 0xC } + - { offsetInCU: 0x13E7, offset: 0x927A2, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x3530, symBinAddr: 0x62038, symSize: 0x48 } + - { offsetInCU: 0x13FB, offset: 0x927B6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOc', symObjAddr: 0x3578, symBinAddr: 0x62080, symSize: 0x48 } + - { offsetInCU: 0x145A, offset: 0x92815, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x417C, symBinAddr: 0x62C28, symSize: 0x3C } + - { offsetInCU: 0x146E, offset: 0x92829, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x41B8, symBinAddr: 0x62C64, symSize: 0x24 } + - { offsetInCU: 0x1482, offset: 0x9283D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4210, symBinAddr: 0x62CAC, symSize: 0x8 } + - { offsetInCU: 0x1496, offset: 0x92851, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4218, symBinAddr: 0x62CB4, symSize: 0x10 } + - { offsetInCU: 0x14AA, offset: 0x92865, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4228, symBinAddr: 0x62CC4, symSize: 0x8 } + - { offsetInCU: 0x14BE, offset: 0x92879, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x42C4, symBinAddr: 0x62CCC, symSize: 0x10 } + - { offsetInCU: 0x15DB, offset: 0x92996, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x198, symBinAddr: 0x5ED40, symSize: 0x134 } + - { offsetInCU: 0x169C, offset: 0x92A57, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x2CC, symBinAddr: 0x5EE74, symSize: 0x11C } + - { offsetInCU: 0x175D, offset: 0x92B18, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x3E8, symBinAddr: 0x5EF90, symSize: 0x90 } + - { offsetInCU: 0x193D, offset: 0x92CF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x8C0, symBinAddr: 0x5F468, symSize: 0xC } + - { offsetInCU: 0x19BD, offset: 0x92D78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x8CC, symBinAddr: 0x5F474, symSize: 0x9C } + - { offsetInCU: 0x1A3F, offset: 0x92DFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x968, symBinAddr: 0x5F510, symSize: 0x78 } + - { offsetInCU: 0x1A7D, offset: 0x92E38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x9E0, symBinAddr: 0x5F588, symSize: 0x98 } + - { offsetInCU: 0x1AE3, offset: 0x92E9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB94, symBinAddr: 0x5F73C, symSize: 0xC } + - { offsetInCU: 0x1B63, offset: 0x92F1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xBA0, symBinAddr: 0x5F748, symSize: 0x6C } + - { offsetInCU: 0x1C17, offset: 0x92FD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC0C, symBinAddr: 0x5F7B4, symSize: 0x48 } + - { offsetInCU: 0x1C89, offset: 0x93044, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xC54, symBinAddr: 0x5F7FC, symSize: 0x68 } + - { offsetInCU: 0x205E, offset: 0x93419, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5EBE8, symSize: 0x6C } + - { offsetInCU: 0x2095, offset: 0x93450, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5EC54, symSize: 0x28 } + - { offsetInCU: 0x20B4, offset: 0x9346F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5EC7C, symSize: 0x58 } + - { offsetInCU: 0x20E3, offset: 0x9349E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5ECD4, symSize: 0x4 } + - { offsetInCU: 0x20FB, offset: 0x934B6, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5ECD4, symSize: 0x4 } + - { offsetInCU: 0x210F, offset: 0x934CA, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5ECD4, symSize: 0x4 } + - { offsetInCU: 0x2123, offset: 0x934DE, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5ECD4, symSize: 0x4 } + - { offsetInCU: 0x2137, offset: 0x934F2, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x12C, symBinAddr: 0x5ECD4, symSize: 0x4 } + - { offsetInCU: 0x2157, offset: 0x93512, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x130, symBinAddr: 0x5ECD8, symSize: 0x24 } + - { offsetInCU: 0x216B, offset: 0x93526, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlF11IoTConnect27AttDataVSg_Tg5', symObjAddr: 0x154, symBinAddr: 0x5ECFC, symSize: 0x44 } + - { offsetInCU: 0x2216, offset: 0x935D1, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x478, symBinAddr: 0x5F020, symSize: 0xC4 } + - { offsetInCU: 0x23C9, offset: 0x93784, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x5F0E4, symSize: 0x48 } + - { offsetInCU: 0x23E1, offset: 0x9379C, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x5F0E4, symSize: 0x48 } + - { offsetInCU: 0x2401, offset: 0x937BC, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x5F0E4, symSize: 0x48 } + - { offsetInCU: 0x2415, offset: 0x937D0, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x5F0E4, symSize: 0x48 } + - { offsetInCU: 0x2429, offset: 0x937E4, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x5F0E4, symSize: 0x48 } + - { offsetInCU: 0x243D, offset: 0x937F8, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x53C, symBinAddr: 0x5F0E4, symSize: 0x48 } + - { offsetInCU: 0x2511, offset: 0x938CC, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x584, symBinAddr: 0x5F12C, symSize: 0x88 } + - { offsetInCU: 0x25CE, offset: 0x93989, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x60C, symBinAddr: 0x5F1B4, symSize: 0x80 } + - { offsetInCU: 0x2669, offset: 0x93A24, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x68C, symBinAddr: 0x5F234, symSize: 0xE4 } + - { offsetInCU: 0x27BD, offset: 0x93B78, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x5F318, symSize: 0x64 } + - { offsetInCU: 0x27D5, offset: 0x93B90, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x5F318, symSize: 0x64 } + - { offsetInCU: 0x27E9, offset: 0x93BA4, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x5F318, symSize: 0x64 } + - { offsetInCU: 0x27FD, offset: 0x93BB8, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x5F318, symSize: 0x64 } + - { offsetInCU: 0x2811, offset: 0x93BCC, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x770, symBinAddr: 0x5F318, symSize: 0x64 } + - { offsetInCU: 0x288E, offset: 0x93C49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x89C, symBinAddr: 0x5F444, symSize: 0x24 } + - { offsetInCU: 0x28F0, offset: 0x93CAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xB20, symBinAddr: 0x5F6C8, symSize: 0x74 } + - { offsetInCU: 0x299F, offset: 0x93D5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x1164, symBinAddr: 0x5FD0C, symSize: 0x938 } + - { offsetInCU: 0x2F4D, offset: 0x94308, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1A9C, symBinAddr: 0x60644, symSize: 0x654 } + - { offsetInCU: 0x32BC, offset: 0x94677, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x20F0, symBinAddr: 0x60C98, symSize: 0x470 } + - { offsetInCU: 0x3485, offset: 0x94840, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2560, symBinAddr: 0x61108, symSize: 0x5FC } + - { offsetInCU: 0x3988, offset: 0x94D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2B5C, symBinAddr: 0x61704, symSize: 0x150 } + - { offsetInCU: 0x3A94, offset: 0x94E4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2CAC, symBinAddr: 0x61854, symSize: 0x2C } + - { offsetInCU: 0x3ACD, offset: 0x94E88, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x2D58, symBinAddr: 0x61900, symSize: 0x4 } + - { offsetInCU: 0x3AFA, offset: 0x94EB5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3294, symBinAddr: 0x61D9C, symSize: 0x14 } + - { offsetInCU: 0x3B2A, offset: 0x94EE5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x32A8, symBinAddr: 0x61DB0, symSize: 0x14 } + - { offsetInCU: 0x3B5A, offset: 0x94F15, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x32BC, symBinAddr: 0x61DC4, symSize: 0x14 } + - { offsetInCU: 0x3B8A, offset: 0x94F45, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF11IoTConnect23AttV_Tg5', symObjAddr: 0x32D0, symBinAddr: 0x61DD8, symSize: 0x14 } + - { offsetInCU: 0x3BBA, offset: 0x94F75, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x32E4, symBinAddr: 0x61DEC, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x95105, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x62CDC, symSize: 0x208 } + - { offsetInCU: 0x57, offset: 0x95119, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x248, symBinAddr: 0x62EE4, symSize: 0xDC } + - { offsetInCU: 0x6B, offset: 0x9512D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x324, symBinAddr: 0x62FC0, symSize: 0x1DC } + - { offsetInCU: 0x7F, offset: 0x95141, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x500, symBinAddr: 0x6319C, symSize: 0x2A4 } + - { offsetInCU: 0x93, offset: 0x95155, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x7A4, symBinAddr: 0x63440, symSize: 0x16C } + - { offsetInCU: 0xA7, offset: 0x95169, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x910, symBinAddr: 0x635AC, symSize: 0x244 } + - { offsetInCU: 0xBB, offset: 0x9517D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0xB54, symBinAddr: 0x637F0, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x95191, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0xBEC, symBinAddr: 0x63888, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x951A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0xC84, symBinAddr: 0x63920, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x951B9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xD0C, symBinAddr: 0x639A8, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x951CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xD60, symBinAddr: 0x639FC, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x951E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xE84, symBinAddr: 0x63B20, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x951F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xF08, symBinAddr: 0x63BA4, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x95209, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xFFC, symBinAddr: 0x63C98, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x9521D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0x115C, symBinAddr: 0x63DF8, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x95231, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0x1238, symBinAddr: 0x63ED4, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x95245, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1380, symBinAddr: 0x6401C, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x95259, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x1418, symBinAddr: 0x640B4, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x9526D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x14E4, symBinAddr: 0x64180, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x952FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1A9C, symBinAddr: 0x64738, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x95356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1AB4, symBinAddr: 0x64750, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x953D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x6477C, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x95405, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x647EC, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x95436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B74, symBinAddr: 0x64810, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x95452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B80, symBinAddr: 0x6481C, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x9546E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x32CC, symBinAddr: 0x65E6C, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x95528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BDC, symBinAddr: 0x64878, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x9554B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BF0, symBinAddr: 0x6488C, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x955CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DB8, symBinAddr: 0x64A54, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x95601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E00, symBinAddr: 0x64A9C, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x95632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E24, symBinAddr: 0x64AC0, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x9564E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E30, symBinAddr: 0x64ACC, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x9566A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x34B4, symBinAddr: 0x66054, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x9571A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E8C, symBinAddr: 0x64B28, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x95751, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1ED8, symBinAddr: 0x64B74, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x95774, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3608, symBinAddr: 0x661A8, symSize: 0x294 } + - { offsetInCU: 0x716, offset: 0x957D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x279C, symBinAddr: 0x65438, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x9580D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x27A4, symBinAddr: 0x65440, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x9583E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x27C8, symBinAddr: 0x65464, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x9585A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x27D4, symBinAddr: 0x65470, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x95876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x389C, symBinAddr: 0x6643C, symSize: 0x398 } + - { offsetInCU: 0x929, offset: 0x959EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2830, symBinAddr: 0x654CC, symSize: 0x14 } + - { offsetInCU: 0x94C, offset: 0x95A0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2844, symBinAddr: 0x654E0, symSize: 0x14 } + - { offsetInCU: 0x970, offset: 0x95A32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x287C, symBinAddr: 0x654F4, symSize: 0x44 } + - { offsetInCU: 0x984, offset: 0x95A46, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x28E0, symBinAddr: 0x65538, symSize: 0x40 } + - { offsetInCU: 0x998, offset: 0x95A5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x29A8, symBinAddr: 0x655B8, symSize: 0x44 } + - { offsetInCU: 0x9AC, offset: 0x95A6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2A30, symBinAddr: 0x655FC, symSize: 0x44 } + - { offsetInCU: 0x9C0, offset: 0x95A82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x2B5C, symBinAddr: 0x65728, symSize: 0x44 } + - { offsetInCU: 0x9D4, offset: 0x95A96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2BB0, symBinAddr: 0x6576C, symSize: 0x90 } + - { offsetInCU: 0x9E8, offset: 0x95AAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2C40, symBinAddr: 0x657FC, symSize: 0xBC } + - { offsetInCU: 0x9FC, offset: 0x95ABE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2CFC, symBinAddr: 0x658B8, symSize: 0x8 } + - { offsetInCU: 0xA10, offset: 0x95AD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2D04, symBinAddr: 0x658C0, symSize: 0x4 } + - { offsetInCU: 0xA24, offset: 0x95AE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x2D08, symBinAddr: 0x658C4, symSize: 0x8 } + - { offsetInCU: 0xA38, offset: 0x95AFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2D10, symBinAddr: 0x658CC, symSize: 0x10 } + - { offsetInCU: 0xA4C, offset: 0x95B0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2D20, symBinAddr: 0x658DC, symSize: 0x90 } + - { offsetInCU: 0xA60, offset: 0x95B22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2DB0, symBinAddr: 0x6596C, symSize: 0xBC } + - { offsetInCU: 0xA74, offset: 0x95B36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2E6C, symBinAddr: 0x65A28, symSize: 0x4 } + - { offsetInCU: 0xA88, offset: 0x95B4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2E70, symBinAddr: 0x65A2C, symSize: 0x10 } + - { offsetInCU: 0xA9C, offset: 0x95B5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2E80, symBinAddr: 0x65A3C, symSize: 0x30 } + - { offsetInCU: 0xAB0, offset: 0x95B72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2EB0, symBinAddr: 0x65A6C, symSize: 0x30 } + - { offsetInCU: 0xAC4, offset: 0x95B86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2EE0, symBinAddr: 0x65A9C, symSize: 0x5C } + - { offsetInCU: 0xAD8, offset: 0x95B9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2F3C, symBinAddr: 0x65AF8, symSize: 0x94 } + - { offsetInCU: 0xAEC, offset: 0x95BAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2FEC, symBinAddr: 0x65B8C, symSize: 0x64 } + - { offsetInCU: 0xB00, offset: 0x95BC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x3050, symBinAddr: 0x65BF0, symSize: 0x5C } + - { offsetInCU: 0xB14, offset: 0x95BD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x30AC, symBinAddr: 0x65C4C, symSize: 0x60 } + - { offsetInCU: 0xB28, offset: 0x95BEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x310C, symBinAddr: 0x65CAC, symSize: 0x10 } + - { offsetInCU: 0xB3C, offset: 0x95BFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x311C, symBinAddr: 0x65CBC, symSize: 0x4 } + - { offsetInCU: 0xB50, offset: 0x95C12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3120, symBinAddr: 0x65CC0, symSize: 0x44 } + - { offsetInCU: 0xB64, offset: 0x95C26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3164, symBinAddr: 0x65D04, symSize: 0x4 } + - { offsetInCU: 0xB78, offset: 0x95C3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3168, symBinAddr: 0x65D08, symSize: 0x44 } + - { offsetInCU: 0xB8C, offset: 0x95C4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x31AC, symBinAddr: 0x65D4C, symSize: 0x4 } + - { offsetInCU: 0xBA0, offset: 0x95C62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x31B0, symBinAddr: 0x65D50, symSize: 0x44 } + - { offsetInCU: 0xBB4, offset: 0x95C76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x31F4, symBinAddr: 0x65D94, symSize: 0x4 } + - { offsetInCU: 0xBC8, offset: 0x95C8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x31F8, symBinAddr: 0x65D98, symSize: 0x44 } + - { offsetInCU: 0xBDC, offset: 0x95C9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x323C, symBinAddr: 0x65DDC, symSize: 0x4 } + - { offsetInCU: 0xBF0, offset: 0x95CB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3240, symBinAddr: 0x65DE0, symSize: 0x44 } + - { offsetInCU: 0xC04, offset: 0x95CC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3284, symBinAddr: 0x65E24, symSize: 0x4 } + - { offsetInCU: 0xC18, offset: 0x95CDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3288, symBinAddr: 0x65E28, symSize: 0x44 } + - { offsetInCU: 0xC37, offset: 0x95CF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3C34, symBinAddr: 0x667D4, symSize: 0x44 } + - { offsetInCU: 0xC4B, offset: 0x95D0D, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3C78, symBinAddr: 0x66818, symSize: 0x48 } + - { offsetInCU: 0xC5F, offset: 0x95D21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x3D44, symBinAddr: 0x668E4, symSize: 0x90 } + - { offsetInCU: 0xC73, offset: 0x95D35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3DD4, symBinAddr: 0x66974, symSize: 0xBC } + - { offsetInCU: 0xC87, offset: 0x95D49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3E90, symBinAddr: 0x66A30, symSize: 0x4 } + - { offsetInCU: 0xC9B, offset: 0x95D5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3E94, symBinAddr: 0x66A34, symSize: 0x10 } + - { offsetInCU: 0xCAF, offset: 0x95D71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3EA4, symBinAddr: 0x66A44, symSize: 0x4 } + - { offsetInCU: 0xCC3, offset: 0x95D85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3EA8, symBinAddr: 0x66A48, symSize: 0x44 } + - { offsetInCU: 0xCD7, offset: 0x95D99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3EEC, symBinAddr: 0x66A8C, symSize: 0x4 } + - { offsetInCU: 0xCEB, offset: 0x95DAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3EF0, symBinAddr: 0x66A90, symSize: 0x44 } + - { offsetInCU: 0xCFF, offset: 0x95DC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3F34, symBinAddr: 0x66AD4, symSize: 0x4 } + - { offsetInCU: 0xD13, offset: 0x95DD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3F38, symBinAddr: 0x66AD8, symSize: 0x44 } + - { offsetInCU: 0xD41, offset: 0x95E03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B8C, symBinAddr: 0x64828, symSize: 0x28 } + - { offsetInCU: 0xD5D, offset: 0x95E1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1BB4, symBinAddr: 0x64850, symSize: 0x28 } + - { offsetInCU: 0xD7F, offset: 0x95E41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E3C, symBinAddr: 0x64AD8, symSize: 0x28 } + - { offsetInCU: 0xD9B, offset: 0x95E5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E64, symBinAddr: 0x64B00, symSize: 0x28 } + - { offsetInCU: 0xDBD, offset: 0x95E7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x27E0, symBinAddr: 0x6547C, symSize: 0x28 } + - { offsetInCU: 0xDD9, offset: 0x95E9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2808, symBinAddr: 0x654A4, symSize: 0x28 } + - { offsetInCU: 0xEE6, offset: 0x95FA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x156C, symBinAddr: 0x64208, symSize: 0x200 } + - { offsetInCU: 0xF1D, offset: 0x95FDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x176C, symBinAddr: 0x64408, symSize: 0x330 } + - { offsetInCU: 0xF98, offset: 0x9605A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1C04, symBinAddr: 0x648A0, symSize: 0x1AC } + - { offsetInCU: 0xFE3, offset: 0x960A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1F18, symBinAddr: 0x64BB4, symSize: 0xC8 } + - { offsetInCU: 0x1006, offset: 0x960C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1FE0, symBinAddr: 0x64C7C, symSize: 0x2A8 } + - { offsetInCU: 0x103D, offset: 0x960FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x2288, symBinAddr: 0x64F24, symSize: 0x488 } + - { offsetInCU: 0x27, offset: 0x96186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x66B3C, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x96265, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x66C24, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x96279, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x66C54, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x9628D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x66C7C, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x962A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x66CB8, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x962B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x66D24, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x962C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x66D68, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x962DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x66DB0, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x962F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x66DF0, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x96400, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x66B3C, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x9641A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x66B68, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x9644F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x66B9C, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x96463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x66BAC, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x96484, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x66BB0, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x96498, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x66BDC, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x964CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x66C10, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x964F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x66C20, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x96543, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x66E00, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x965A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x67098, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x965BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x670A0, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x965D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x670A0, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x965F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x66F88, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x96608, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x66F8C, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x9663C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x670B8, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x96650, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x67148, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x96664, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x67204, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x96678, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x6720C, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x9668C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x67210, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x966A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x67218, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x96710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnnnd_n', symObjAddr: 0x438, symBinAddr: 0x67228, symSize: 0x17C } + - { offsetInCU: 0x518, offset: 0x96A34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x66F64, symSize: 0x24 } + - { offsetInCU: 0x60C, offset: 0x96B28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x66FD0, symSize: 0x4C } + - { offsetInCU: 0x6E4, offset: 0x96C00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x6701C, symSize: 0x34 } + - { offsetInCU: 0x760, offset: 0x96C7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x67050, symSize: 0x48 } + - { offsetInCU: 0x925, offset: 0x96E41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x66E00, symSize: 0x14 } + - { offsetInCU: 0x946, offset: 0x96E62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x66E14, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x96F27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x673A4, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x96F78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x673C8, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x9707E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x673A4, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x9710E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x2038, symBinAddr: 0x84F40, symSize: 0x0 } + - { offsetInCU: 0x60A, offset: 0x976C9, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x6741C, symSize: 0x4C } + - { offsetInCU: 0x622, offset: 0x976E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x67468, symSize: 0x94 } + - { offsetInCU: 0x7AC, offset: 0x9786B, size: 0x8, addend: 0x0, symName: '_$sSo11NSPredicateCMa', symObjAddr: 0x1B74, symBinAddr: 0x68EA8, symSize: 0x3C } + - { offsetInCU: 0x7C0, offset: 0x9787F, size: 0x8, addend: 0x0, symName: '_$sS2Ss7CVarArg10FoundationWl', symObjAddr: 0x1BB0, symBinAddr: 0x68EE4, symSize: 0x44 } + - { offsetInCU: 0x7D4, offset: 0x97893, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_TA', symObjAddr: 0x1BF4, symBinAddr: 0x68F28, symSize: 0x8 } + - { offsetInCU: 0x7E8, offset: 0x978A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_TA', symObjAddr: 0x1BFC, symBinAddr: 0x68F30, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x978BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_TA', symObjAddr: 0x1C04, symBinAddr: 0x68F38, symSize: 0x8 } + - { offsetInCU: 0x810, offset: 0x978CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_TA', symObjAddr: 0x1C0C, symBinAddr: 0x68F40, symSize: 0x8 } + - { offsetInCU: 0x824, offset: 0x978E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_TA', symObjAddr: 0x1C14, symBinAddr: 0x68F48, symSize: 0x8 } + - { offsetInCU: 0x838, offset: 0x978F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x1C78, symBinAddr: 0x68F50, symSize: 0x20 } + - { offsetInCU: 0x84C, offset: 0x9790B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOb', symObjAddr: 0x1C98, symBinAddr: 0x68F70, symSize: 0x48 } + - { offsetInCU: 0x860, offset: 0x9791F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOd', symObjAddr: 0x1CE0, symBinAddr: 0x68FB8, symSize: 0x48 } + - { offsetInCU: 0x874, offset: 0x97933, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1EA4, symBinAddr: 0x6912C, symSize: 0x8 } + - { offsetInCU: 0x888, offset: 0x97947, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1EAC, symBinAddr: 0x69134, symSize: 0x10 } + - { offsetInCU: 0x89C, offset: 0x9795B, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1EBC, symBinAddr: 0x69144, symSize: 0x8 } + - { offsetInCU: 0x8E5, offset: 0x979A4, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1EC4, symBinAddr: 0x6914C, symSize: 0x10 } + - { offsetInCU: 0x901, offset: 0x979C0, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1EC4, symBinAddr: 0x6914C, symSize: 0x10 } + - { offsetInCU: 0x915, offset: 0x979D4, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1EC4, symBinAddr: 0x6914C, symSize: 0x10 } + - { offsetInCU: 0x954, offset: 0x97A13, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x673E8, symSize: 0x4 } + - { offsetInCU: 0x970, offset: 0x97A2F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x673EC, symSize: 0x4 } + - { offsetInCU: 0x98C, offset: 0x97A4B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x673F0, symSize: 0x4 } + - { offsetInCU: 0x9A8, offset: 0x97A67, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x673F4, symSize: 0x4 } + - { offsetInCU: 0x9C4, offset: 0x97A83, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x673F8, symSize: 0x4 } + - { offsetInCU: 0x9E0, offset: 0x97A9F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x673FC, symSize: 0x4 } + - { offsetInCU: 0x9FC, offset: 0x97ABB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x67400, symSize: 0x4 } + - { offsetInCU: 0xA18, offset: 0x97AD7, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x67404, symSize: 0xC } + - { offsetInCU: 0xA34, offset: 0x97AF3, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x67410, symSize: 0xC } + - { offsetInCU: 0xD18, offset: 0x97DD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0x114, symBinAddr: 0x674FC, symSize: 0x40 } + - { offsetInCU: 0xE9B, offset: 0x97F5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF', symObjAddr: 0x154, symBinAddr: 0x6753C, symSize: 0x7D8 } + - { offsetInCU: 0x142F, offset: 0x984EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_', symObjAddr: 0x93C, symBinAddr: 0x67D24, symSize: 0x5C } + - { offsetInCU: 0x1495, offset: 0x98554, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_', symObjAddr: 0x998, symBinAddr: 0x67D80, symSize: 0x5C } + - { offsetInCU: 0x14FB, offset: 0x985BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_', symObjAddr: 0x9F4, symBinAddr: 0x67DDC, symSize: 0x5C } + - { offsetInCU: 0x1561, offset: 0x98620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_', symObjAddr: 0xA50, symBinAddr: 0x67E38, symSize: 0x5C } + - { offsetInCU: 0x15C7, offset: 0x98686, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_', symObjAddr: 0xAAC, symBinAddr: 0x67E94, symSize: 0x5C } + - { offsetInCU: 0x1692, offset: 0x98751, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xB08, symBinAddr: 0x67EF0, symSize: 0x44 } + - { offsetInCU: 0x16FC, offset: 0x987BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xB4C, symBinAddr: 0x67F34, symSize: 0x10 } + - { offsetInCU: 0x172E, offset: 0x987ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xB4C, symBinAddr: 0x67F34, symSize: 0x10 } + - { offsetInCU: 0x175D, offset: 0x9881C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xB5C, symBinAddr: 0x67F44, symSize: 0x54 } + - { offsetInCU: 0x17D4, offset: 0x98893, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0xCC0, symBinAddr: 0x680A8, symSize: 0x34 } + - { offsetInCU: 0x1837, offset: 0x988F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xCF4, symBinAddr: 0x680DC, symSize: 0x54 } + - { offsetInCU: 0x18AE, offset: 0x9896D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xD48, symBinAddr: 0x68130, symSize: 0x4C } + - { offsetInCU: 0x193A, offset: 0x989F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xD94, symBinAddr: 0x6817C, symSize: 0x84 } + - { offsetInCU: 0x19D5, offset: 0x98A94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xE18, symBinAddr: 0x68200, symSize: 0x74 } + - { offsetInCU: 0x1A84, offset: 0x98B43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xE8C, symBinAddr: 0x68274, symSize: 0x84 } + - { offsetInCU: 0x1B21, offset: 0x98BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xF10, symBinAddr: 0x682F8, symSize: 0x38 } + - { offsetInCU: 0x1BA1, offset: 0x98C60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF48, symBinAddr: 0x68330, symSize: 0x38 } + - { offsetInCU: 0x1C21, offset: 0x98CE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF80, symBinAddr: 0x68368, symSize: 0x38 } + - { offsetInCU: 0x1CA1, offset: 0x98D60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xFB8, symBinAddr: 0x683A0, symSize: 0x38 } + - { offsetInCU: 0x1D21, offset: 0x98DE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xFF0, symBinAddr: 0x683D8, symSize: 0x38 } + - { offsetInCU: 0x1DA1, offset: 0x98E60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1028, symBinAddr: 0x68410, symSize: 0x38 } + - { offsetInCU: 0x1E21, offset: 0x98EE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1060, symBinAddr: 0x68448, symSize: 0x38 } + - { offsetInCU: 0x1EA1, offset: 0x98F60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0x1098, symBinAddr: 0x68480, symSize: 0x38 } + - { offsetInCU: 0x1F01, offset: 0x98FC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x10D0, symBinAddr: 0x684B8, symSize: 0x44 } + - { offsetInCU: 0x1F98, offset: 0x99057, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x1114, symBinAddr: 0x684FC, symSize: 0x13C } + - { offsetInCU: 0x207D, offset: 0x9913C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0x1250, symBinAddr: 0x68638, symSize: 0x1F0 } + - { offsetInCU: 0x221B, offset: 0x992DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x1440, symBinAddr: 0x68828, symSize: 0x78 } + - { offsetInCU: 0x22B1, offset: 0x99370, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x14B8, symBinAddr: 0x688A0, symSize: 0x94 } + - { offsetInCU: 0x22D4, offset: 0x99393, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x154C, symBinAddr: 0x68934, symSize: 0x20 } + - { offsetInCU: 0x2319, offset: 0x993D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x15E0, symBinAddr: 0x68954, symSize: 0x254 } + - { offsetInCU: 0x2400, offset: 0x994BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1834, symBinAddr: 0x68BA8, symSize: 0x300 } ... diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml index 3a1ce5c..960c558 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml +++ b/IoTConnectDemo/IoTConnectDemo/IoTConnect2.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2.yml @@ -2,1790 +2,1638 @@ triple: 'x86_64-apple-darwin' binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2.framework/IoTConnect2' relocations: - - { offsetInCU: 0x34, offset: 0x59050, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x78F80, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x59085, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x78FB0, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x590EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x44A60, symBinAddr: 0x91320, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x59115, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xF0, symBinAddr: 0x2BF0, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x59131, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x130, symBinAddr: 0x2C30, symSize: 0x10 } - - { offsetInCU: 0xB2, offset: 0x5914D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x140, symBinAddr: 0x2C40, symSize: 0x320 } - - { offsetInCU: 0x109, offset: 0x591A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x460, symBinAddr: 0x2F60, symSize: 0xFF0 } - - { offsetInCU: 0x46E, offset: 0x59509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x1450, symBinAddr: 0x3F50, symSize: 0x660 } - - { offsetInCU: 0x4EF, offset: 0x5958A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1AB0, symBinAddr: 0x45B0, symSize: 0x20 } - - { offsetInCU: 0x51C, offset: 0x595B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D30, symBinAddr: 0x4830, symSize: 0x770 } - - { offsetInCU: 0x7E1, offset: 0x5987C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x24A0, symBinAddr: 0x4FA0, symSize: 0x480 } - - { offsetInCU: 0xA95, offset: 0x59B30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2920, symBinAddr: 0x5420, symSize: 0xA40 } - - { offsetInCU: 0xEC1, offset: 0x59F5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3360, symBinAddr: 0x5E60, symSize: 0x7A0 } - - { offsetInCU: 0x12A5, offset: 0x5A340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3B00, symBinAddr: 0x6600, symSize: 0x4B00 } - - { offsetInCU: 0x2C82, offset: 0x5BD1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8610, symBinAddr: 0xB100, symSize: 0x190 } - - { offsetInCU: 0x2D56, offset: 0x5BDF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x87A0, symBinAddr: 0xB290, symSize: 0x3B0 } - - { offsetInCU: 0x2F41, offset: 0x5BFDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8B50, symBinAddr: 0xB640, symSize: 0x480 } - - { offsetInCU: 0x32D0, offset: 0x5C36B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8FD0, symBinAddr: 0xBAC0, symSize: 0x360 } - - { offsetInCU: 0x348E, offset: 0x5C529, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x9330, symBinAddr: 0xBE20, symSize: 0x2A0 } - - { offsetInCU: 0x360A, offset: 0x5C6A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x95D0, symBinAddr: 0xC0C0, symSize: 0x2B0 } - - { offsetInCU: 0x3786, offset: 0x5C821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x9880, symBinAddr: 0xC370, symSize: 0x4A0 } - - { offsetInCU: 0x38B0, offset: 0x5C94B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x9D20, symBinAddr: 0xC810, symSize: 0x740 } - - { offsetInCU: 0x3B84, offset: 0x5CC1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0xA460, symBinAddr: 0xCF50, symSize: 0x250 } - - { offsetInCU: 0x3D99, offset: 0x5CE34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB980, symBinAddr: 0xE470, symSize: 0x1B60 } - - { offsetInCU: 0x546D, offset: 0x5E508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x2B80, symSize: 0x40 } - - { offsetInCU: 0x549D, offset: 0x5E538, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0xC0, symBinAddr: 0x2BC0, symSize: 0x30 } - - { offsetInCU: 0x5675, offset: 0x5E710, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1AD0, symBinAddr: 0x45D0, symSize: 0x10 } - - { offsetInCU: 0x5689, offset: 0x5E724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1AE0, symBinAddr: 0x45E0, symSize: 0x30 } - - { offsetInCU: 0x569D, offset: 0x5E738, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1B10, symBinAddr: 0x4610, symSize: 0x220 } - - { offsetInCU: 0x5BF9, offset: 0x5EC94, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0xA730, symBinAddr: 0xD220, symSize: 0x10 } - - { offsetInCU: 0x5C0D, offset: 0x5ECA8, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0xA740, symBinAddr: 0xD230, symSize: 0x10 } - - { offsetInCU: 0x5C21, offset: 0x5ECBC, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0xA750, symBinAddr: 0xD240, symSize: 0x20 } - - { offsetInCU: 0x5C35, offset: 0x5ECD0, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0xA770, symBinAddr: 0xD260, symSize: 0x30 } - - { offsetInCU: 0x5D46, offset: 0x5EDE1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xACE0, symBinAddr: 0xD7D0, symSize: 0x20 } - - { offsetInCU: 0x5D5A, offset: 0x5EDF5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xAD00, symBinAddr: 0xD7F0, symSize: 0x20 } - - { offsetInCU: 0x5D6E, offset: 0x5EE09, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xAD50, symBinAddr: 0xD840, symSize: 0x20 } - - { offsetInCU: 0x5D82, offset: 0x5EE1D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xAD70, symBinAddr: 0xD860, symSize: 0x20 } - - { offsetInCU: 0x5DB7, offset: 0x5EE52, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xAF50, symBinAddr: 0xDA40, symSize: 0x230 } - - { offsetInCU: 0x5E1D, offset: 0x5EEB8, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xB180, symBinAddr: 0xDC70, symSize: 0x50 } - - { offsetInCU: 0x5E7E, offset: 0x5EF19, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xB320, symBinAddr: 0xDE10, symSize: 0x260 } - - { offsetInCU: 0x63F5, offset: 0x5F490, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xD680, symBinAddr: 0x10170, symSize: 0x40 } - - { offsetInCU: 0x6409, offset: 0x5F4A4, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xD6C0, symBinAddr: 0x101B0, symSize: 0x30 } - - { offsetInCU: 0x641D, offset: 0x5F4B8, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xD6F0, symBinAddr: 0x101E0, symSize: 0x20 } - - { offsetInCU: 0x6431, offset: 0x5F4CC, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xD710, symBinAddr: 0x10200, symSize: 0x30 } - - { offsetInCU: 0x6445, offset: 0x5F4E0, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xD790, symBinAddr: 0x10280, symSize: 0x30 } - - { offsetInCU: 0x6459, offset: 0x5F4F4, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD930, symBinAddr: 0x10420, symSize: 0x20 } - - { offsetInCU: 0x646D, offset: 0x5F508, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD950, symBinAddr: 0x10440, symSize: 0x20 } - - { offsetInCU: 0x6481, offset: 0x5F51C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xD970, symBinAddr: 0x10460, symSize: 0x50 } - - { offsetInCU: 0x6495, offset: 0x5F530, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xD9C0, symBinAddr: 0x104B0, symSize: 0x180 } - - { offsetInCU: 0x64A9, offset: 0x5F544, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xDB40, symBinAddr: 0x10630, symSize: 0x2D0 } - - { offsetInCU: 0x64BD, offset: 0x5F558, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xDE10, symBinAddr: 0x10900, symSize: 0x70 } - - { offsetInCU: 0x64D1, offset: 0x5F56C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xDE80, symBinAddr: 0x10970, symSize: 0x30 } - - { offsetInCU: 0x64E5, offset: 0x5F580, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xDEB0, symBinAddr: 0x109A0, symSize: 0xD0 } - - { offsetInCU: 0x64F9, offset: 0x5F594, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xDF80, symBinAddr: 0x10A70, symSize: 0xB0 } - - { offsetInCU: 0x650D, offset: 0x5F5A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xE030, symBinAddr: 0x10B20, symSize: 0x20 } - - { offsetInCU: 0x6521, offset: 0x5F5BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xE050, symBinAddr: 0x10B40, symSize: 0x30 } - - { offsetInCU: 0x6535, offset: 0x5F5D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xE0E0, symBinAddr: 0x10BD0, symSize: 0x50 } - - { offsetInCU: 0x6549, offset: 0x5F5E4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xE1D0, symBinAddr: 0x10CC0, symSize: 0x20 } - - { offsetInCU: 0x655D, offset: 0x5F5F8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xE1F0, symBinAddr: 0x10CE0, symSize: 0x20 } - - { offsetInCU: 0x6571, offset: 0x5F60C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xE210, symBinAddr: 0x10D00, symSize: 0x20 } - - { offsetInCU: 0x6585, offset: 0x5F620, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xE230, symBinAddr: 0x10D20, symSize: 0x20 } - - { offsetInCU: 0x6599, offset: 0x5F634, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xE250, symBinAddr: 0x10D40, symSize: 0x20 } - - { offsetInCU: 0x65AD, offset: 0x5F648, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xE270, symBinAddr: 0x10D60, symSize: 0x20 } - - { offsetInCU: 0x65C1, offset: 0x5F65C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xE290, symBinAddr: 0x10D80, symSize: 0x20 } - - { offsetInCU: 0x69B1, offset: 0x5FA4C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA7C0, symBinAddr: 0xD2B0, symSize: 0x10 } - - { offsetInCU: 0x69EF, offset: 0x5FA8A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA7E0, symBinAddr: 0xD2D0, symSize: 0x10 } - - { offsetInCU: 0x6A3E, offset: 0x5FAD9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA7F0, symBinAddr: 0xD2E0, symSize: 0x10 } - - { offsetInCU: 0x6ADB, offset: 0x5FB76, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA800, symBinAddr: 0xD2F0, symSize: 0x10 } - - { offsetInCU: 0x6B70, offset: 0x5FC0B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA810, symBinAddr: 0xD300, symSize: 0x10 } - - { offsetInCU: 0x6C0D, offset: 0x5FCA8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA820, symBinAddr: 0xD310, symSize: 0x30 } - - { offsetInCU: 0x6D68, offset: 0x5FE03, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA850, symBinAddr: 0xD340, symSize: 0x30 } - - { offsetInCU: 0x6E65, offset: 0x5FF00, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA880, symBinAddr: 0xD370, symSize: 0x20 } - - { offsetInCU: 0x6F51, offset: 0x5FFEC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA8A0, symBinAddr: 0xD390, symSize: 0x10 } - - { offsetInCU: 0x6F8F, offset: 0x6002A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA8B0, symBinAddr: 0xD3A0, symSize: 0x10 } - - { offsetInCU: 0x6FCD, offset: 0x60068, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA8C0, symBinAddr: 0xD3B0, symSize: 0x10 } - - { offsetInCU: 0x701A, offset: 0x600B5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA8D0, symBinAddr: 0xD3C0, symSize: 0x10 } - - { offsetInCU: 0x70C3, offset: 0x6015E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA8E0, symBinAddr: 0xD3D0, symSize: 0x20 } - - { offsetInCU: 0x713A, offset: 0x601D5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA900, symBinAddr: 0xD3F0, symSize: 0x10 } - - { offsetInCU: 0x71F2, offset: 0x6028D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA910, symBinAddr: 0xD400, symSize: 0x20 } - - { offsetInCU: 0x728C, offset: 0x60327, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA930, symBinAddr: 0xD420, symSize: 0x10 } - - { offsetInCU: 0x72F4, offset: 0x6038F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA940, symBinAddr: 0xD430, symSize: 0x20 } - - { offsetInCU: 0x7310, offset: 0x603AB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA960, symBinAddr: 0xD450, symSize: 0x10 } - - { offsetInCU: 0x738C, offset: 0x60427, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA990, symBinAddr: 0xD480, symSize: 0x10 } - - { offsetInCU: 0x73BD, offset: 0x60458, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA9A0, symBinAddr: 0xD490, symSize: 0x10 } - - { offsetInCU: 0x73EE, offset: 0x60489, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA9B0, symBinAddr: 0xD4A0, symSize: 0x10 } - - { offsetInCU: 0x741F, offset: 0x604BA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA9C0, symBinAddr: 0xD4B0, symSize: 0x30 } - - { offsetInCU: 0x744E, offset: 0x604E9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA9F0, symBinAddr: 0xD4E0, symSize: 0x30 } - - { offsetInCU: 0x747F, offset: 0x6051A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xAA20, symBinAddr: 0xD510, symSize: 0x30 } - - { offsetInCU: 0x74B0, offset: 0x6054B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xAA50, symBinAddr: 0xD540, symSize: 0x10 } - - { offsetInCU: 0x74E1, offset: 0x6057C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xAA60, symBinAddr: 0xD550, symSize: 0x10 } - - { offsetInCU: 0x7512, offset: 0x605AD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xAA70, symBinAddr: 0xD560, symSize: 0x10 } - - { offsetInCU: 0x7543, offset: 0x605DE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xAA80, symBinAddr: 0xD570, symSize: 0x20 } - - { offsetInCU: 0x7574, offset: 0x6060F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xAAA0, symBinAddr: 0xD590, symSize: 0x20 } - - { offsetInCU: 0x75A5, offset: 0x60640, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xAAC0, symBinAddr: 0xD5B0, symSize: 0x10 } - - { offsetInCU: 0x75D6, offset: 0x60671, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xAAD0, symBinAddr: 0xD5C0, symSize: 0x20 } - - { offsetInCU: 0x7607, offset: 0x606A2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xAAF0, symBinAddr: 0xD5E0, symSize: 0x10 } - - { offsetInCU: 0x7638, offset: 0x606D3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xAB00, symBinAddr: 0xD5F0, symSize: 0x20 } - - { offsetInCU: 0x7654, offset: 0x606EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xAB20, symBinAddr: 0xD610, symSize: 0x10 } - - { offsetInCU: 0x7694, offset: 0x6072F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAB50, symBinAddr: 0xD640, symSize: 0x30 } - - { offsetInCU: 0x7712, offset: 0x607AD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAB80, symBinAddr: 0xD670, symSize: 0x60 } - - { offsetInCU: 0x77A5, offset: 0x60840, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC40, symBinAddr: 0xD730, symSize: 0x10 } - - { offsetInCU: 0x77E5, offset: 0x60880, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC50, symBinAddr: 0xD740, symSize: 0x10 } - - { offsetInCU: 0x782B, offset: 0x608C6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xAC60, symBinAddr: 0xD750, symSize: 0x40 } - - { offsetInCU: 0x789A, offset: 0x60935, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xACA0, symBinAddr: 0xD790, symSize: 0x10 } - - { offsetInCU: 0x78C5, offset: 0x60960, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xACB0, symBinAddr: 0xD7A0, symSize: 0x30 } - - { offsetInCU: 0x78F6, offset: 0x60991, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xAD90, symBinAddr: 0xD880, symSize: 0x10 } - - { offsetInCU: 0x7927, offset: 0x609C2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xADA0, symBinAddr: 0xD890, symSize: 0x30 } - - { offsetInCU: 0x7967, offset: 0x60A02, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xADD0, symBinAddr: 0xD8C0, symSize: 0x80 } - - { offsetInCU: 0x7A00, offset: 0x60A9B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xAEE0, symBinAddr: 0xD9D0, symSize: 0x70 } - - { offsetInCU: 0x7A43, offset: 0x60ADE, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0xB580, symBinAddr: 0xE070, symSize: 0xA0 } - - { offsetInCU: 0x7B2F, offset: 0x60BCA, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xB620, symBinAddr: 0xE110, symSize: 0x220 } - - { offsetInCU: 0x7D5D, offset: 0x60DF8, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xD4E0, symBinAddr: 0xFFD0, symSize: 0xD0 } - - { offsetInCU: 0x7EA5, offset: 0x60F40, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xD5B0, symBinAddr: 0x100A0, symSize: 0xD0 } - - { offsetInCU: 0x7FD8, offset: 0x61073, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE2B0, symBinAddr: 0x10DA0, symSize: 0x80 } - - { offsetInCU: 0x8069, offset: 0x61104, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE330, symBinAddr: 0x10E20, symSize: 0x80 } - - { offsetInCU: 0x822B, offset: 0x612C6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xAE60, symBinAddr: 0xD950, symSize: 0x10 } - - { offsetInCU: 0x8247, offset: 0x612E2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xAE70, symBinAddr: 0xD960, symSize: 0x10 } - - { offsetInCU: 0x82B1, offset: 0x6134C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xAE80, symBinAddr: 0xD970, symSize: 0x40 } - - { offsetInCU: 0x82DA, offset: 0x61375, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xAEC0, symBinAddr: 0xD9B0, symSize: 0x20 } - - { offsetInCU: 0x8315, offset: 0x613B0, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xAE50, symBinAddr: 0xD940, symSize: 0x10 } - - { offsetInCU: 0x83F3, offset: 0x6148E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0xA7D0, symBinAddr: 0xD2C0, symSize: 0x10 } - - { offsetInCU: 0x8416, offset: 0x614B1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA970, symBinAddr: 0xD460, symSize: 0x10 } - - { offsetInCU: 0x8432, offset: 0x614CD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA980, symBinAddr: 0xD470, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x616DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x61701, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10EE0, symSize: 0x20 } - - { offsetInCU: 0x79, offset: 0x6172F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0x10F00, symSize: 0x14 } - - { offsetInCU: 0x43, offset: 0x6185E, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0x10F50, symSize: 0x10 } - - { offsetInCU: 0x57, offset: 0x61872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0x10F90, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x618B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0x10FA0, symSize: 0x20 } - - { offsetInCU: 0xE4, offset: 0x618FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA0, symBinAddr: 0x10FC0, symSize: 0x10 } - - { offsetInCU: 0x142, offset: 0x6195D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC0, symBinAddr: 0x10FE0, symSize: 0x20 } - - { offsetInCU: 0x1BC, offset: 0x619D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0xF0, symBinAddr: 0x11010, symSize: 0x10 } - - { offsetInCU: 0x1E7, offset: 0x61A02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x11020, symSize: 0x20 } - - { offsetInCU: 0x218, offset: 0x61A33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x120, symBinAddr: 0x11040, symSize: 0x10 } - - { offsetInCU: 0x234, offset: 0x61A4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x130, symBinAddr: 0x11050, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x61A6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2240, symBinAddr: 0x13160, symSize: 0x340 } - - { offsetInCU: 0x296, offset: 0x61AB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x180, symBinAddr: 0x110A0, symSize: 0x4C0 } - - { offsetInCU: 0x2EB, offset: 0x61B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0x124A0, symSize: 0x50 } - - { offsetInCU: 0x322, offset: 0x61B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0x124F0, symSize: 0x50 } - - { offsetInCU: 0x345, offset: 0x61B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2580, symBinAddr: 0x134A0, symSize: 0x14F0 } - - { offsetInCU: 0x377, offset: 0x61B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x11560, symSize: 0xE0 } - - { offsetInCU: 0x3C3, offset: 0x61BDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1620, symBinAddr: 0x12540, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x61C32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1630, symBinAddr: 0x12550, symSize: 0x30 } - - { offsetInCU: 0x4FB, offset: 0x61D16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1660, symBinAddr: 0x12580, symSize: 0x20 } - - { offsetInCU: 0x57C, offset: 0x61D97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16B0, symBinAddr: 0x125D0, symSize: 0x10 } - - { offsetInCU: 0x5BC, offset: 0x61DD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16C0, symBinAddr: 0x125E0, symSize: 0x20 } - - { offsetInCU: 0x5ED, offset: 0x61E08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x12600, symSize: 0x10 } - - { offsetInCU: 0x609, offset: 0x61E24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x12610, symSize: 0x10 } - - { offsetInCU: 0x625, offset: 0x61E40, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3A70, symBinAddr: 0x14990, symSize: 0x60 } - - { offsetInCU: 0x669, offset: 0x61E84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvgTf4d_n', symObjAddr: 0x3AD0, symBinAddr: 0x149F0, symSize: 0x20 } - - { offsetInCU: 0x69D, offset: 0x61EB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x12660, symSize: 0x50 } - - { offsetInCU: 0x6D4, offset: 0x61EEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x126B0, symSize: 0x50 } - - { offsetInCU: 0x6F7, offset: 0x61F12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3AF0, symBinAddr: 0x14A10, symSize: 0x3A0 } - - { offsetInCU: 0x769, offset: 0x61F84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x720, symBinAddr: 0x11640, symSize: 0x20 } - - { offsetInCU: 0x792, offset: 0x61FAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x12700, symSize: 0x10 } - - { offsetInCU: 0x7BD, offset: 0x61FD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x12710, symSize: 0x20 } - - { offsetInCU: 0x7EE, offset: 0x62009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x12730, symSize: 0x10 } - - { offsetInCU: 0x80A, offset: 0x62025, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x12740, symSize: 0x10 } - - { offsetInCU: 0x826, offset: 0x62041, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6310, symBinAddr: 0x171E0, symSize: 0x160 } - - { offsetInCU: 0x86C, offset: 0x62087, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x740, symBinAddr: 0x11660, symSize: 0x1A0 } - - { offsetInCU: 0x8C1, offset: 0x620DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x12790, symSize: 0x50 } - - { offsetInCU: 0x8F8, offset: 0x62113, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x127E0, symSize: 0x50 } - - { offsetInCU: 0x91B, offset: 0x62136, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6470, symBinAddr: 0x17340, symSize: 0x320 } - - { offsetInCU: 0x96B, offset: 0x62186, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x8E0, symBinAddr: 0x11800, symSize: 0x20 } - - { offsetInCU: 0x994, offset: 0x621AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1910, symBinAddr: 0x12830, symSize: 0x10 } - - { offsetInCU: 0x9BF, offset: 0x621DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1920, symBinAddr: 0x12840, symSize: 0x20 } - - { offsetInCU: 0x9F0, offset: 0x6220B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1940, symBinAddr: 0x12860, symSize: 0x10 } - - { offsetInCU: 0xA0C, offset: 0x62227, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6790, symBinAddr: 0x17660, symSize: 0x120 } - - { offsetInCU: 0xA52, offset: 0x6226D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x900, symBinAddr: 0x11820, symSize: 0x170 } - - { offsetInCU: 0xAA7, offset: 0x622C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1990, symBinAddr: 0x128B0, symSize: 0x40 } - - { offsetInCU: 0xADE, offset: 0x622F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19D0, symBinAddr: 0x128F0, symSize: 0x40 } - - { offsetInCU: 0xB01, offset: 0x6231C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x68B0, symBinAddr: 0x17780, symSize: 0x310 } - - { offsetInCU: 0xB45, offset: 0x62360, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xA70, symBinAddr: 0x11990, symSize: 0x20 } - - { offsetInCU: 0xB6E, offset: 0x62389, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A10, symBinAddr: 0x12930, symSize: 0x10 } - - { offsetInCU: 0xB99, offset: 0x623B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x12940, symSize: 0x20 } - - { offsetInCU: 0xBCA, offset: 0x623E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x12960, symSize: 0x10 } - - { offsetInCU: 0xBE6, offset: 0x62401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x12970, symSize: 0x10 } - - { offsetInCU: 0xC02, offset: 0x6241D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6BC0, symBinAddr: 0x17A90, symSize: 0x120 } - - { offsetInCU: 0xC48, offset: 0x62463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA90, symBinAddr: 0x119B0, symSize: 0x1D0 } - - { offsetInCU: 0xC9D, offset: 0x624B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x129C0, symSize: 0x50 } - - { offsetInCU: 0xCD4, offset: 0x624EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AF0, symBinAddr: 0x12A10, symSize: 0x50 } - - { offsetInCU: 0xCF7, offset: 0x62512, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x17BB0, symSize: 0x580 } - - { offsetInCU: 0xD47, offset: 0x62562, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xC60, symBinAddr: 0x11B80, symSize: 0x20 } - - { offsetInCU: 0xD70, offset: 0x6258B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x12A80, symSize: 0x10 } - - { offsetInCU: 0xD9B, offset: 0x625B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B70, symBinAddr: 0x12A90, symSize: 0x20 } - - { offsetInCU: 0xDCC, offset: 0x625E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B90, symBinAddr: 0x12AB0, symSize: 0x10 } - - { offsetInCU: 0xDE8, offset: 0x62603, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x12AC0, symSize: 0x10 } - - { offsetInCU: 0xE04, offset: 0x6261F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x72F0, symBinAddr: 0x181C0, symSize: 0x210 } - - { offsetInCU: 0xE4A, offset: 0x62665, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC80, symBinAddr: 0x11BA0, symSize: 0x230 } - - { offsetInCU: 0xE9F, offset: 0x626BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BF0, symBinAddr: 0x12B10, symSize: 0x60 } - - { offsetInCU: 0xED6, offset: 0x626F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C50, symBinAddr: 0x12B70, symSize: 0x70 } - - { offsetInCU: 0xEF9, offset: 0x62714, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7500, symBinAddr: 0x183D0, symSize: 0x660 } - - { offsetInCU: 0xF49, offset: 0x62764, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xEB0, symBinAddr: 0x11DD0, symSize: 0x30 } - - { offsetInCU: 0xF94, offset: 0x627AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1CC0, symBinAddr: 0x12BE0, symSize: 0x10 } - - { offsetInCU: 0x101D, offset: 0x62838, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1CD0, symBinAddr: 0x12BF0, symSize: 0x40 } - - { offsetInCU: 0x1101, offset: 0x6291C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D10, symBinAddr: 0x12C30, symSize: 0x20 } - - { offsetInCU: 0x1173, offset: 0x6298E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D70, symBinAddr: 0x12C90, symSize: 0x10 } - - { offsetInCU: 0x119E, offset: 0x629B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D80, symBinAddr: 0x12CA0, symSize: 0x20 } - - { offsetInCU: 0x11CF, offset: 0x629EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DA0, symBinAddr: 0x12CC0, symSize: 0x10 } - - { offsetInCU: 0x11EB, offset: 0x62A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x12CD0, symSize: 0x10 } - - { offsetInCU: 0x1207, offset: 0x62A22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B90, symBinAddr: 0x18A60, symSize: 0xA0 } - - { offsetInCU: 0x124D, offset: 0x62A68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x11E00, symSize: 0x110 } - - { offsetInCU: 0x12A2, offset: 0x62ABD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E00, symBinAddr: 0x12D20, symSize: 0x30 } - - { offsetInCU: 0x12D9, offset: 0x62AF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E30, symBinAddr: 0x12D50, symSize: 0x20 } - - { offsetInCU: 0x12FC, offset: 0x62B17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C30, symBinAddr: 0x18B00, symSize: 0x180 } - - { offsetInCU: 0x1358, offset: 0x62B73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0xFF0, symBinAddr: 0x11F10, symSize: 0x20 } - - { offsetInCU: 0x1381, offset: 0x62B9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E50, symBinAddr: 0x12D70, symSize: 0x10 } - - { offsetInCU: 0x13AC, offset: 0x62BC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x12D80, symSize: 0x20 } - - { offsetInCU: 0x13DD, offset: 0x62BF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1E80, symBinAddr: 0x12DA0, symSize: 0x10 } - - { offsetInCU: 0x13F9, offset: 0x62C14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E90, symBinAddr: 0x12DB0, symSize: 0x10 } - - { offsetInCU: 0x1415, offset: 0x62C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7DE0, symBinAddr: 0x18CB0, symSize: 0x1C0 } - - { offsetInCU: 0x145B, offset: 0x62C76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1010, symBinAddr: 0x11F30, symSize: 0x1F0 } - - { offsetInCU: 0x14B0, offset: 0x62CCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EE0, symBinAddr: 0x12E00, symSize: 0x50 } - - { offsetInCU: 0x14E7, offset: 0x62D02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F30, symBinAddr: 0x12E50, symSize: 0x50 } - - { offsetInCU: 0x150A, offset: 0x62D25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x18E70, symSize: 0x3A0 } - - { offsetInCU: 0x154E, offset: 0x62D69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1200, symBinAddr: 0x12120, symSize: 0x20 } - - { offsetInCU: 0x1577, offset: 0x62D92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F80, symBinAddr: 0x12EA0, symSize: 0x10 } - - { offsetInCU: 0x15A2, offset: 0x62DBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F90, symBinAddr: 0x12EB0, symSize: 0x20 } - - { offsetInCU: 0x15D3, offset: 0x62DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FB0, symBinAddr: 0x12ED0, symSize: 0x10 } - - { offsetInCU: 0x15EF, offset: 0x62E0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FC0, symBinAddr: 0x12EE0, symSize: 0x10 } - - { offsetInCU: 0x160B, offset: 0x62E26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x19210, symSize: 0x190 } - - { offsetInCU: 0x1651, offset: 0x62E6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1220, symBinAddr: 0x12140, symSize: 0x210 } - - { offsetInCU: 0x16A6, offset: 0x62EC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2010, symBinAddr: 0x12F30, symSize: 0x50 } - - { offsetInCU: 0x16DD, offset: 0x62EF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2060, symBinAddr: 0x12F80, symSize: 0x50 } - - { offsetInCU: 0x1700, offset: 0x62F1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x84D0, symBinAddr: 0x193A0, symSize: 0x3D0 } - - { offsetInCU: 0x1750, offset: 0x62F6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x1430, symBinAddr: 0x12350, symSize: 0x20 } - - { offsetInCU: 0x1779, offset: 0x62F94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2130, symBinAddr: 0x13050, symSize: 0x10 } - - { offsetInCU: 0x17A4, offset: 0x62FBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x13060, symSize: 0x20 } - - { offsetInCU: 0x17D5, offset: 0x62FF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2160, symBinAddr: 0x13080, symSize: 0x10 } - - { offsetInCU: 0x17F1, offset: 0x6300C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2170, symBinAddr: 0x13090, symSize: 0x10 } - - { offsetInCU: 0x180D, offset: 0x63028, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8900, symBinAddr: 0x197D0, symSize: 0xE0 } - - { offsetInCU: 0x1853, offset: 0x6306E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1450, symBinAddr: 0x12370, symSize: 0x130 } - - { offsetInCU: 0x18A8, offset: 0x630C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x21C0, symBinAddr: 0x130E0, symSize: 0x40 } - - { offsetInCU: 0x18DF, offset: 0x630FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2200, symBinAddr: 0x13120, symSize: 0x40 } - - { offsetInCU: 0x1902, offset: 0x6311D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x89E0, symBinAddr: 0x198B0, symSize: 0x1C0 } - - { offsetInCU: 0x193F, offset: 0x6315A, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3ED0, symBinAddr: 0x14DB0, symSize: 0x30 } - - { offsetInCU: 0x1953, offset: 0x6316E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x3F00, symBinAddr: 0x14DE0, symSize: 0x30 } - - { offsetInCU: 0x1967, offset: 0x63182, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F30, symBinAddr: 0x14E10, symSize: 0x30 } - - { offsetInCU: 0x197B, offset: 0x63196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x3F60, symBinAddr: 0x14E40, symSize: 0x30 } - - { offsetInCU: 0x198F, offset: 0x631AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x3F90, symBinAddr: 0x14E70, symSize: 0x30 } - - { offsetInCU: 0x19A3, offset: 0x631BE, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FC0, symBinAddr: 0x14EA0, symSize: 0x10 } - - { offsetInCU: 0x19B7, offset: 0x631D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x3FE0, symBinAddr: 0x14EB0, symSize: 0x50 } - - { offsetInCU: 0x19CB, offset: 0x631E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4030, symBinAddr: 0x14F00, symSize: 0xA0 } - - { offsetInCU: 0x19DF, offset: 0x631FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x40D0, symBinAddr: 0x14FA0, symSize: 0x10 } - - { offsetInCU: 0x19F3, offset: 0x6320E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x40E0, symBinAddr: 0x14FB0, symSize: 0x10 } - - { offsetInCU: 0x1A07, offset: 0x63222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x40F0, symBinAddr: 0x14FC0, symSize: 0x10 } - - { offsetInCU: 0x1A1B, offset: 0x63236, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4100, symBinAddr: 0x14FD0, symSize: 0x10 } - - { offsetInCU: 0x1A2F, offset: 0x6324A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x4110, symBinAddr: 0x14FE0, symSize: 0x30 } - - { offsetInCU: 0x1A43, offset: 0x6325E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x4E60, symBinAddr: 0x15D30, symSize: 0x10 } - - { offsetInCU: 0x1A57, offset: 0x63272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x4E70, symBinAddr: 0x15D40, symSize: 0x10 } - - { offsetInCU: 0x1A6B, offset: 0x63286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x4E80, symBinAddr: 0x15D50, symSize: 0x30 } - - { offsetInCU: 0x1A7F, offset: 0x6329A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4EB0, symBinAddr: 0x15D80, symSize: 0x10 } - - { offsetInCU: 0x1A93, offset: 0x632AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4EC0, symBinAddr: 0x15D90, symSize: 0x30 } - - { offsetInCU: 0x1AA7, offset: 0x632C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4EF0, symBinAddr: 0x15DC0, symSize: 0x10 } - - { offsetInCU: 0x1ABB, offset: 0x632D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4F00, symBinAddr: 0x15DD0, symSize: 0x30 } - - { offsetInCU: 0x1ACF, offset: 0x632EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x4F30, symBinAddr: 0x15E00, symSize: 0x30 } - - { offsetInCU: 0x1AE3, offset: 0x632FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x4F60, symBinAddr: 0x15E30, symSize: 0x30 } - - { offsetInCU: 0x1AF7, offset: 0x63312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x4F90, symBinAddr: 0x15E60, symSize: 0x30 } - - { offsetInCU: 0x1B0B, offset: 0x63326, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4FC0, symBinAddr: 0x15E90, symSize: 0x40 } - - { offsetInCU: 0x1B1F, offset: 0x6333A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x5000, symBinAddr: 0x15ED0, symSize: 0x30 } - - { offsetInCU: 0x1B33, offset: 0x6334E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x5030, symBinAddr: 0x15F00, symSize: 0x30 } - - { offsetInCU: 0x1B47, offset: 0x63362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x5060, symBinAddr: 0x15F30, symSize: 0x30 } - - { offsetInCU: 0x1B5B, offset: 0x63376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x5090, symBinAddr: 0x15F60, symSize: 0x30 } - - { offsetInCU: 0x1B6F, offset: 0x6338A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x50C0, symBinAddr: 0x15F90, symSize: 0x30 } - - { offsetInCU: 0x1B83, offset: 0x6339E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x50F0, symBinAddr: 0x15FC0, symSize: 0x30 } - - { offsetInCU: 0x1B97, offset: 0x633B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x5120, symBinAddr: 0x15FF0, symSize: 0x30 } - - { offsetInCU: 0x1BAB, offset: 0x633C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x5150, symBinAddr: 0x16020, symSize: 0x30 } - - { offsetInCU: 0x1BBF, offset: 0x633DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x5180, symBinAddr: 0x16050, symSize: 0x10 } - - { offsetInCU: 0x1BD3, offset: 0x633EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x5190, symBinAddr: 0x16060, symSize: 0x80 } - - { offsetInCU: 0x1BE7, offset: 0x63402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x5210, symBinAddr: 0x160E0, symSize: 0xD0 } - - { offsetInCU: 0x1BFB, offset: 0x63416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x52E0, symBinAddr: 0x161B0, symSize: 0x10 } - - { offsetInCU: 0x1C0F, offset: 0x6342A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x52F0, symBinAddr: 0x161C0, symSize: 0x10 } - - { offsetInCU: 0x1C23, offset: 0x6343E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x5300, symBinAddr: 0x161D0, symSize: 0x10 } - - { offsetInCU: 0x1C37, offset: 0x63452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x5310, symBinAddr: 0x161E0, symSize: 0x10 } - - { offsetInCU: 0x1C4B, offset: 0x63466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x5320, symBinAddr: 0x161F0, symSize: 0x30 } - - { offsetInCU: 0x1C5F, offset: 0x6347A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x5350, symBinAddr: 0x16220, symSize: 0x40 } - - { offsetInCU: 0x1C73, offset: 0x6348E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x5390, symBinAddr: 0x16260, symSize: 0x70 } - - { offsetInCU: 0x1C87, offset: 0x634A2, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5400, symBinAddr: 0x162D0, symSize: 0x20 } - - { offsetInCU: 0x1C9B, offset: 0x634B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x5420, symBinAddr: 0x162F0, symSize: 0x50 } - - { offsetInCU: 0x1CAF, offset: 0x634CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x5470, symBinAddr: 0x16340, symSize: 0x40 } - - { offsetInCU: 0x1CC3, offset: 0x634DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x54B0, symBinAddr: 0x16380, symSize: 0x40 } - - { offsetInCU: 0x1CD7, offset: 0x634F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x54F0, symBinAddr: 0x163C0, symSize: 0x10 } - - { offsetInCU: 0x1CEB, offset: 0x63506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x5500, symBinAddr: 0x163D0, symSize: 0x40 } - - { offsetInCU: 0x1CFF, offset: 0x6351A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5540, symBinAddr: 0x16410, symSize: 0x80 } - - { offsetInCU: 0x1D13, offset: 0x6352E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x55C0, symBinAddr: 0x16490, symSize: 0xB0 } - - { offsetInCU: 0x1D27, offset: 0x63542, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5670, symBinAddr: 0x16540, symSize: 0x30 } - - { offsetInCU: 0x1D3B, offset: 0x63556, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x56A0, symBinAddr: 0x16570, symSize: 0x80 } - - { offsetInCU: 0x1D4F, offset: 0x6356A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5720, symBinAddr: 0x165F0, symSize: 0x40 } - - { offsetInCU: 0x1D63, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5760, symBinAddr: 0x16630, symSize: 0x50 } - - { offsetInCU: 0x1D77, offset: 0x63592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x57B0, symBinAddr: 0x16680, symSize: 0x10 } - - { offsetInCU: 0x1D8B, offset: 0x635A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x57C0, symBinAddr: 0x16690, symSize: 0x30 } - - { offsetInCU: 0x1D9F, offset: 0x635BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x57F0, symBinAddr: 0x166C0, symSize: 0x40 } - - { offsetInCU: 0x1DB3, offset: 0x635CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5830, symBinAddr: 0x16700, symSize: 0x60 } - - { offsetInCU: 0x1DC7, offset: 0x635E2, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5890, symBinAddr: 0x16760, symSize: 0x20 } - - { offsetInCU: 0x1DDB, offset: 0x635F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x58B0, symBinAddr: 0x16780, symSize: 0x50 } - - { offsetInCU: 0x1DEF, offset: 0x6360A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5900, symBinAddr: 0x167D0, symSize: 0x40 } - - { offsetInCU: 0x1E03, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x5940, symBinAddr: 0x16810, symSize: 0x50 } - - { offsetInCU: 0x1E17, offset: 0x63632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5990, symBinAddr: 0x16860, symSize: 0x10 } - - { offsetInCU: 0x1E2B, offset: 0x63646, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x59A0, symBinAddr: 0x16870, symSize: 0x50 } - - { offsetInCU: 0x1E3F, offset: 0x6365A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x59F0, symBinAddr: 0x168C0, symSize: 0xE0 } - - { offsetInCU: 0x1E53, offset: 0x6366E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5AD0, symBinAddr: 0x169A0, symSize: 0x110 } - - { offsetInCU: 0x1E67, offset: 0x63682, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5BE0, symBinAddr: 0x16AB0, symSize: 0x50 } - - { offsetInCU: 0x1E7B, offset: 0x63696, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5C30, symBinAddr: 0x16B00, symSize: 0xD0 } - - { offsetInCU: 0x1E8F, offset: 0x636AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x5D00, symBinAddr: 0x16BD0, symSize: 0x40 } - - { offsetInCU: 0x1EA3, offset: 0x636BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x5D40, symBinAddr: 0x16C10, symSize: 0x60 } - - { offsetInCU: 0x1EB7, offset: 0x636D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x5DA0, symBinAddr: 0x16C70, symSize: 0x10 } - - { offsetInCU: 0x1ECB, offset: 0x636E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x5DB0, symBinAddr: 0x16C80, symSize: 0x60 } - - { offsetInCU: 0x1EDF, offset: 0x636FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x5E10, symBinAddr: 0x16CE0, symSize: 0x110 } - - { offsetInCU: 0x1EF3, offset: 0x6370E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x5F20, symBinAddr: 0x16DF0, symSize: 0x160 } - - { offsetInCU: 0x1F07, offset: 0x63722, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x6080, symBinAddr: 0x16F50, symSize: 0x10 } - - { offsetInCU: 0x1F1B, offset: 0x63736, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x6090, symBinAddr: 0x16F60, symSize: 0x100 } - - { offsetInCU: 0x1F2F, offset: 0x6374A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x6190, symBinAddr: 0x17060, symSize: 0x40 } - - { offsetInCU: 0x1F43, offset: 0x6375E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x61D0, symBinAddr: 0x170A0, symSize: 0x70 } - - { offsetInCU: 0x1F57, offset: 0x63772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x6240, symBinAddr: 0x17110, symSize: 0x10 } - - { offsetInCU: 0x1F6B, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x6250, symBinAddr: 0x17120, symSize: 0x10 } - - { offsetInCU: 0x1F7F, offset: 0x6379A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x6260, symBinAddr: 0x17130, symSize: 0x30 } - - { offsetInCU: 0x1F93, offset: 0x637AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x6290, symBinAddr: 0x17160, symSize: 0x10 } - - { offsetInCU: 0x1FA7, offset: 0x637C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x62A0, symBinAddr: 0x17170, symSize: 0x30 } - - { offsetInCU: 0x1FBB, offset: 0x637D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x62D0, symBinAddr: 0x171A0, symSize: 0x10 } - - { offsetInCU: 0x1FCF, offset: 0x637EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x62E0, symBinAddr: 0x171B0, symSize: 0x30 } - - { offsetInCU: 0x1FE3, offset: 0x637FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7260, symBinAddr: 0x18130, symSize: 0x30 } - - { offsetInCU: 0x1FF7, offset: 0x63812, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x7290, symBinAddr: 0x18160, symSize: 0x30 } - - { offsetInCU: 0x200B, offset: 0x63826, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x72C0, symBinAddr: 0x18190, symSize: 0x30 } - - { offsetInCU: 0x201F, offset: 0x6383A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7B60, symBinAddr: 0x18A30, symSize: 0x30 } - - { offsetInCU: 0x2033, offset: 0x6384E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x7DB0, symBinAddr: 0x18C80, symSize: 0x30 } - - { offsetInCU: 0x2047, offset: 0x63862, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x88A0, symBinAddr: 0x19770, symSize: 0x30 } - - { offsetInCU: 0x205B, offset: 0x63876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x88D0, symBinAddr: 0x197A0, symSize: 0x30 } - - { offsetInCU: 0x206F, offset: 0x6388A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8BA0, symBinAddr: 0x19A70, symSize: 0x30 } - - { offsetInCU: 0x2083, offset: 0x6389E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x19AA0, symSize: 0x30 } - - { offsetInCU: 0x2097, offset: 0x638B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x8C00, symBinAddr: 0x19AD0, symSize: 0x30 } - - { offsetInCU: 0x20AB, offset: 0x638C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x8C90, symBinAddr: 0x19B60, symSize: 0x30 } - - { offsetInCU: 0x20BF, offset: 0x638DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8CC0, symBinAddr: 0x19B90, symSize: 0x80 } - - { offsetInCU: 0x20D3, offset: 0x638EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8D40, symBinAddr: 0x19C10, symSize: 0xD0 } - - { offsetInCU: 0x20E7, offset: 0x63902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8E10, symBinAddr: 0x19CE0, symSize: 0x10 } - - { offsetInCU: 0x20FB, offset: 0x63916, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8E20, symBinAddr: 0x19CF0, symSize: 0x10 } - - { offsetInCU: 0x210F, offset: 0x6392A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8E30, symBinAddr: 0x19D00, symSize: 0x80 } - - { offsetInCU: 0x2123, offset: 0x6393E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x8EB0, symBinAddr: 0x19D80, symSize: 0xD0 } - - { offsetInCU: 0x2137, offset: 0x63952, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x8F80, symBinAddr: 0x19E50, symSize: 0x10 } - - { offsetInCU: 0x214B, offset: 0x63966, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x8F90, symBinAddr: 0x19E60, symSize: 0x10 } - - { offsetInCU: 0x215F, offset: 0x6397A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x8FA0, symBinAddr: 0x19E70, symSize: 0x80 } - - { offsetInCU: 0x2173, offset: 0x6398E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9020, symBinAddr: 0x19EF0, symSize: 0xD0 } - - { offsetInCU: 0x2187, offset: 0x639A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x90F0, symBinAddr: 0x19FC0, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x639B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9100, symBinAddr: 0x19FD0, symSize: 0x10 } - - { offsetInCU: 0x21AF, offset: 0x639CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x9110, symBinAddr: 0x19FE0, symSize: 0x10 } - - { offsetInCU: 0x21C3, offset: 0x639DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9120, symBinAddr: 0x19FF0, symSize: 0x10 } - - { offsetInCU: 0x21D7, offset: 0x639F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9130, symBinAddr: 0x1A000, symSize: 0x80 } - - { offsetInCU: 0x21EB, offset: 0x63A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x91B0, symBinAddr: 0x1A080, symSize: 0xD0 } - - { offsetInCU: 0x21FF, offset: 0x63A1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9280, symBinAddr: 0x1A150, symSize: 0x10 } - - { offsetInCU: 0x2213, offset: 0x63A2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9290, symBinAddr: 0x1A160, symSize: 0x10 } - - { offsetInCU: 0x2227, offset: 0x63A42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x92C0, symBinAddr: 0x1A190, symSize: 0x10 } - - { offsetInCU: 0x223B, offset: 0x63A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x92D0, symBinAddr: 0x1A1A0, symSize: 0x10 } - - { offsetInCU: 0x224F, offset: 0x63A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x92E0, symBinAddr: 0x1A1B0, symSize: 0x40 } - - { offsetInCU: 0x2263, offset: 0x63A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x9320, symBinAddr: 0x1A1F0, symSize: 0x80 } - - { offsetInCU: 0x2277, offset: 0x63A92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x93A0, symBinAddr: 0x1A270, symSize: 0xC0 } - - { offsetInCU: 0x228B, offset: 0x63AA6, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9460, symBinAddr: 0x1A330, symSize: 0x40 } - - { offsetInCU: 0x229F, offset: 0x63ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x94A0, symBinAddr: 0x1A370, symSize: 0x90 } - - { offsetInCU: 0x22B3, offset: 0x63ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x9530, symBinAddr: 0x1A400, symSize: 0x40 } - - { offsetInCU: 0x22C7, offset: 0x63AE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x9570, symBinAddr: 0x1A440, symSize: 0x50 } - - { offsetInCU: 0x22DB, offset: 0x63AF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x95C0, symBinAddr: 0x1A490, symSize: 0x10 } - - { offsetInCU: 0x22EF, offset: 0x63B0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x95D0, symBinAddr: 0x1A4A0, symSize: 0x40 } - - { offsetInCU: 0x2303, offset: 0x63B1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x9610, symBinAddr: 0x1A4E0, symSize: 0x80 } - - { offsetInCU: 0x2317, offset: 0x63B32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x9690, symBinAddr: 0x1A560, symSize: 0xA0 } - - { offsetInCU: 0x232B, offset: 0x63B46, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9730, symBinAddr: 0x1A600, symSize: 0x30 } - - { offsetInCU: 0x233F, offset: 0x63B5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x9760, symBinAddr: 0x1A630, symSize: 0x80 } - - { offsetInCU: 0x2353, offset: 0x63B6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x97E0, symBinAddr: 0x1A6B0, symSize: 0x40 } - - { offsetInCU: 0x2367, offset: 0x63B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9820, symBinAddr: 0x1A6F0, symSize: 0x50 } - - { offsetInCU: 0x237B, offset: 0x63B96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x9870, symBinAddr: 0x1A740, symSize: 0x10 } - - { offsetInCU: 0x238F, offset: 0x63BAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x9880, symBinAddr: 0x1A750, symSize: 0x40 } - - { offsetInCU: 0x23A3, offset: 0x63BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x98C0, symBinAddr: 0x1A790, symSize: 0x80 } - - { offsetInCU: 0x23B7, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9940, symBinAddr: 0x1A810, symSize: 0xB0 } - - { offsetInCU: 0x23CB, offset: 0x63BE6, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x99F0, symBinAddr: 0x1A8C0, symSize: 0x30 } - - { offsetInCU: 0x23DF, offset: 0x63BFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x9A20, symBinAddr: 0x1A8F0, symSize: 0x80 } - - { offsetInCU: 0x23F3, offset: 0x63C0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9AA0, symBinAddr: 0x1A970, symSize: 0x40 } - - { offsetInCU: 0x2407, offset: 0x63C22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x9AE0, symBinAddr: 0x1A9B0, symSize: 0x50 } - - { offsetInCU: 0x241B, offset: 0x63C36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9B30, symBinAddr: 0x1AA00, symSize: 0x10 } - - { offsetInCU: 0x242F, offset: 0x63C4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B40, symBinAddr: 0x1AA10, symSize: 0x10 } - - { offsetInCU: 0x2443, offset: 0x63C5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9B50, symBinAddr: 0x1AA20, symSize: 0x30 } - - { offsetInCU: 0x2457, offset: 0x63C72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9B80, symBinAddr: 0x1AA50, symSize: 0x10 } - - { offsetInCU: 0x246B, offset: 0x63C86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9B90, symBinAddr: 0x1AA60, symSize: 0x30 } - - { offsetInCU: 0x247F, offset: 0x63C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9BC0, symBinAddr: 0x1AA90, symSize: 0x10 } - - { offsetInCU: 0x2493, offset: 0x63CAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9BD0, symBinAddr: 0x1AAA0, symSize: 0x30 } - - { offsetInCU: 0x24A7, offset: 0x63CC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9C00, symBinAddr: 0x1AAD0, symSize: 0x10 } - - { offsetInCU: 0x24BB, offset: 0x63CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9C10, symBinAddr: 0x1AAE0, symSize: 0x30 } - - { offsetInCU: 0x24CF, offset: 0x63CEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9C40, symBinAddr: 0x1AB10, symSize: 0x10 } - - { offsetInCU: 0x24E3, offset: 0x63CFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9C50, symBinAddr: 0x1AB20, symSize: 0x30 } - - { offsetInCU: 0x24F7, offset: 0x63D12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C80, symBinAddr: 0x1AB50, symSize: 0x10 } - - { offsetInCU: 0x250B, offset: 0x63D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C90, symBinAddr: 0x1AB60, symSize: 0x30 } - - { offsetInCU: 0x251F, offset: 0x63D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CC0, symBinAddr: 0x1AB90, symSize: 0x10 } - - { offsetInCU: 0x2533, offset: 0x63D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9CD0, symBinAddr: 0x1ABA0, symSize: 0x30 } - - { offsetInCU: 0x2547, offset: 0x63D62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D00, symBinAddr: 0x1ABD0, symSize: 0x10 } - - { offsetInCU: 0x255B, offset: 0x63D76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D10, symBinAddr: 0x1ABE0, symSize: 0x30 } - - { offsetInCU: 0x256F, offset: 0x63D8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D40, symBinAddr: 0x1AC10, symSize: 0x10 } - - { offsetInCU: 0x2583, offset: 0x63D9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9D50, symBinAddr: 0x1AC20, symSize: 0x30 } - - { offsetInCU: 0x2597, offset: 0x63DB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D80, symBinAddr: 0x1AC50, symSize: 0x10 } - - { offsetInCU: 0x25AB, offset: 0x63DC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x1AC60, symSize: 0x30 } - - { offsetInCU: 0x25BF, offset: 0x63DDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9DC0, symBinAddr: 0x1AC90, symSize: 0x10 } - - { offsetInCU: 0x25D3, offset: 0x63DEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x1ACA0, symSize: 0x30 } - - { offsetInCU: 0x25E7, offset: 0x63E02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E00, symBinAddr: 0x1ACD0, symSize: 0x10 } - - { offsetInCU: 0x25FB, offset: 0x63E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E10, symBinAddr: 0x1ACE0, symSize: 0x30 } - - { offsetInCU: 0x260F, offset: 0x63E2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E40, symBinAddr: 0x1AD10, symSize: 0x10 } - - { offsetInCU: 0x2623, offset: 0x63E3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9E50, symBinAddr: 0x1AD20, symSize: 0x30 } - - { offsetInCU: 0x2637, offset: 0x63E52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E80, symBinAddr: 0x1AD50, symSize: 0x10 } - - { offsetInCU: 0x264B, offset: 0x63E66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E90, symBinAddr: 0x1AD60, symSize: 0x30 } - - { offsetInCU: 0x265F, offset: 0x63E7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EC0, symBinAddr: 0x1AD90, symSize: 0x10 } - - { offsetInCU: 0x2673, offset: 0x63E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9ED0, symBinAddr: 0x1ADA0, symSize: 0x30 } - - { offsetInCU: 0x2687, offset: 0x63EA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9F00, symBinAddr: 0x1ADD0, symSize: 0x30 } - - { offsetInCU: 0x269B, offset: 0x63EB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9F30, symBinAddr: 0x1AE00, symSize: 0x30 } - - { offsetInCU: 0x26AF, offset: 0x63ECA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0x9F60, symBinAddr: 0x1AE30, symSize: 0x30 } - - { offsetInCU: 0x26C3, offset: 0x63EDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9F90, symBinAddr: 0x1AE60, symSize: 0x80 } - - { offsetInCU: 0x26D7, offset: 0x63EF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA010, symBinAddr: 0x1AEE0, symSize: 0xD0 } - - { offsetInCU: 0x26EB, offset: 0x63F06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA0E0, symBinAddr: 0x1AFB0, symSize: 0x10 } - - { offsetInCU: 0x26FF, offset: 0x63F1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA0F0, symBinAddr: 0x1AFC0, symSize: 0x10 } - - { offsetInCU: 0x2713, offset: 0x63F2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA270, symBinAddr: 0x1B140, symSize: 0x10 } - - { offsetInCU: 0x2727, offset: 0x63F42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA280, symBinAddr: 0x1B150, symSize: 0x10 } - - { offsetInCU: 0x273B, offset: 0x63F56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0xA290, symBinAddr: 0x1B160, symSize: 0x80 } - - { offsetInCU: 0x274F, offset: 0x63F6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA310, symBinAddr: 0x1B1E0, symSize: 0xD0 } - - { offsetInCU: 0x2763, offset: 0x63F7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA3E0, symBinAddr: 0x1B2B0, symSize: 0x10 } - - { offsetInCU: 0x2777, offset: 0x63F92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA3F0, symBinAddr: 0x1B2C0, symSize: 0x10 } - - { offsetInCU: 0x278B, offset: 0x63FA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA400, symBinAddr: 0x1B2D0, symSize: 0x10 } - - { offsetInCU: 0x279F, offset: 0x63FBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA410, symBinAddr: 0x1B2E0, symSize: 0x30 } - - { offsetInCU: 0x27B3, offset: 0x63FCE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA440, symBinAddr: 0x1B310, symSize: 0x10 } - - { offsetInCU: 0x27C7, offset: 0x63FE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA450, symBinAddr: 0x1B320, symSize: 0x30 } - - { offsetInCU: 0x27DB, offset: 0x63FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA480, symBinAddr: 0x1B350, symSize: 0x10 } - - { offsetInCU: 0x27EF, offset: 0x6400A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA490, symBinAddr: 0x1B360, symSize: 0x30 } - - { offsetInCU: 0x2803, offset: 0x6401E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA4C0, symBinAddr: 0x1B390, symSize: 0x10 } - - { offsetInCU: 0x2817, offset: 0x64032, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA4D0, symBinAddr: 0x1B3A0, symSize: 0x30 } - - { offsetInCU: 0x282B, offset: 0x64046, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA500, symBinAddr: 0x1B3D0, symSize: 0x10 } - - { offsetInCU: 0x283F, offset: 0x6405A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA510, symBinAddr: 0x1B3E0, symSize: 0x30 } - - { offsetInCU: 0x2853, offset: 0x6406E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA540, symBinAddr: 0x1B410, symSize: 0x10 } - - { offsetInCU: 0x2867, offset: 0x64082, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA550, symBinAddr: 0x1B420, symSize: 0x30 } - - { offsetInCU: 0x287B, offset: 0x64096, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA580, symBinAddr: 0x1B450, symSize: 0x10 } - - { offsetInCU: 0x288F, offset: 0x640AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA590, symBinAddr: 0x1B460, symSize: 0x30 } - - { offsetInCU: 0x28A3, offset: 0x640BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA5C0, symBinAddr: 0x1B490, symSize: 0x10 } - - { offsetInCU: 0x28B7, offset: 0x640D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA5D0, symBinAddr: 0x1B4A0, symSize: 0x30 } - - { offsetInCU: 0x28CB, offset: 0x640E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA600, symBinAddr: 0x1B4D0, symSize: 0x10 } - - { offsetInCU: 0x28DF, offset: 0x640FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA610, symBinAddr: 0x1B4E0, symSize: 0x30 } - - { offsetInCU: 0x292F, offset: 0x6414A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x140, symBinAddr: 0x11060, symSize: 0x20 } - - { offsetInCU: 0x294B, offset: 0x64166, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x160, symBinAddr: 0x11080, symSize: 0x20 } - - { offsetInCU: 0x2994, offset: 0x641AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1680, symBinAddr: 0x125A0, symSize: 0x30 } - - { offsetInCU: 0x2A37, offset: 0x64252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x12620, symSize: 0x20 } - - { offsetInCU: 0x2A53, offset: 0x6426E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x12640, symSize: 0x20 } - - { offsetInCU: 0x2A75, offset: 0x64290, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x12750, symSize: 0x20 } - - { offsetInCU: 0x2A91, offset: 0x642AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x12770, symSize: 0x20 } - - { offsetInCU: 0x2AB3, offset: 0x642CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1950, symBinAddr: 0x12870, symSize: 0x20 } - - { offsetInCU: 0x2ACF, offset: 0x642EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1970, symBinAddr: 0x12890, symSize: 0x20 } - - { offsetInCU: 0x2AF1, offset: 0x6430C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x12980, symSize: 0x20 } - - { offsetInCU: 0x2B0D, offset: 0x64328, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x129A0, symSize: 0x20 } - - { offsetInCU: 0x2B2F, offset: 0x6434A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x12AD0, symSize: 0x20 } - - { offsetInCU: 0x2B4B, offset: 0x64366, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1BD0, symBinAddr: 0x12AF0, symSize: 0x20 } - - { offsetInCU: 0x2B94, offset: 0x643AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D30, symBinAddr: 0x12C50, symSize: 0x40 } - - { offsetInCU: 0x2C37, offset: 0x64452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DC0, symBinAddr: 0x12CE0, symSize: 0x20 } - - { offsetInCU: 0x2C53, offset: 0x6446E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DE0, symBinAddr: 0x12D00, symSize: 0x20 } - - { offsetInCU: 0x2C75, offset: 0x64490, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EA0, symBinAddr: 0x12DC0, symSize: 0x20 } - - { offsetInCU: 0x2C91, offset: 0x644AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1EC0, symBinAddr: 0x12DE0, symSize: 0x20 } - - { offsetInCU: 0x2CB3, offset: 0x644CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x12EF0, symSize: 0x20 } - - { offsetInCU: 0x2CCF, offset: 0x644EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x12F10, symSize: 0x20 } - - { offsetInCU: 0x2CF1, offset: 0x6450C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2180, symBinAddr: 0x130A0, symSize: 0x20 } - - { offsetInCU: 0x2D0D, offset: 0x64528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x21A0, symBinAddr: 0x130C0, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x646D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1B830, symSize: 0xA0 } - - { offsetInCU: 0xA5, offset: 0x64751, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1B830, symSize: 0xA0 } - - { offsetInCU: 0xFE, offset: 0x647AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0xA0, symBinAddr: 0x1B8D0, symSize: 0x40 } - - { offsetInCU: 0x11C, offset: 0x647C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xE0, symBinAddr: 0x1B910, symSize: 0x50 } - - { offsetInCU: 0x156, offset: 0x64802, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x130, symBinAddr: 0x1B960, symSize: 0x10 } - - { offsetInCU: 0x174, offset: 0x64820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x1B970, symSize: 0x10 } - - { offsetInCU: 0x19F, offset: 0x6484B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x150, symBinAddr: 0x1B980, symSize: 0x20 } - - { offsetInCU: 0x1BD, offset: 0x64869, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x170, symBinAddr: 0x1B9A0, symSize: 0x20 } - - { offsetInCU: 0x1F7, offset: 0x648A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x190, symBinAddr: 0x1B9C0, symSize: 0x20 } - - { offsetInCU: 0x225, offset: 0x648D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x1B0, symBinAddr: 0x1B9E0, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x648FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x1C0, symBinAddr: 0x1B9F0, symSize: 0x30 } - - { offsetInCU: 0x26E, offset: 0x6491A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1F0, symBinAddr: 0x1BA20, symSize: 0x30 } - - { offsetInCU: 0x2AC, offset: 0x64958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x220, symBinAddr: 0x1BA50, symSize: 0x20 } - - { offsetInCU: 0x2DA, offset: 0x64986, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x240, symBinAddr: 0x1BA70, symSize: 0x10 } - - { offsetInCU: 0x305, offset: 0x649B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x250, symBinAddr: 0x1BA80, symSize: 0x10 } - - { offsetInCU: 0x323, offset: 0x649CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x260, symBinAddr: 0x1BA90, symSize: 0x10 } - - { offsetInCU: 0x361, offset: 0x64A0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x270, symBinAddr: 0x1BAA0, symSize: 0x20 } - - { offsetInCU: 0x38F, offset: 0x64A3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1BAC0, symSize: 0x10 } - - { offsetInCU: 0x3BA, offset: 0x64A66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x2A0, symBinAddr: 0x1BAD0, symSize: 0x10 } - - { offsetInCU: 0x3D8, offset: 0x64A84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x2B0, symBinAddr: 0x1BAE0, symSize: 0x10 } - - { offsetInCU: 0x416, offset: 0x64AC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x2C0, symBinAddr: 0x1BAF0, symSize: 0x20 } - - { offsetInCU: 0x444, offset: 0x64AF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2E0, symBinAddr: 0x1BB10, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x64B1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2F0, symBinAddr: 0x1BB20, symSize: 0x30 } - - { offsetInCU: 0x48D, offset: 0x64B39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x320, symBinAddr: 0x1BB50, symSize: 0x30 } - - { offsetInCU: 0x4CB, offset: 0x64B77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x350, symBinAddr: 0x1BB80, symSize: 0x20 } - - { offsetInCU: 0x4F9, offset: 0x64BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x370, symBinAddr: 0x1BBA0, symSize: 0x10 } - - { offsetInCU: 0x524, offset: 0x64BD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x380, symBinAddr: 0x1BBB0, symSize: 0x30 } - - { offsetInCU: 0x542, offset: 0x64BEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x3B0, symBinAddr: 0x1BBE0, symSize: 0x30 } - - { offsetInCU: 0x580, offset: 0x64C2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3E0, symBinAddr: 0x1BC10, symSize: 0x20 } - - { offsetInCU: 0x5AE, offset: 0x64C5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x400, symBinAddr: 0x1BC30, symSize: 0x10 } - - { offsetInCU: 0x5D9, offset: 0x64C85, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x410, symBinAddr: 0x1BC40, symSize: 0x10 } - - { offsetInCU: 0x5F7, offset: 0x64CA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x420, symBinAddr: 0x1BC50, symSize: 0x10 } - - { offsetInCU: 0x635, offset: 0x64CE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x430, symBinAddr: 0x1BC60, symSize: 0x20 } - - { offsetInCU: 0x663, offset: 0x64D0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x450, symBinAddr: 0x1BC80, symSize: 0x10 } - - { offsetInCU: 0x68E, offset: 0x64D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x460, symBinAddr: 0x1BC90, symSize: 0x10 } - - { offsetInCU: 0x6AC, offset: 0x64D58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x470, symBinAddr: 0x1BCA0, symSize: 0x10 } - - { offsetInCU: 0x6EA, offset: 0x64D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x480, symBinAddr: 0x1BCB0, symSize: 0x20 } - - { offsetInCU: 0x718, offset: 0x64DC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x4A0, symBinAddr: 0x1BCD0, symSize: 0x10 } - - { offsetInCU: 0x744, offset: 0x64DF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x4B0, symBinAddr: 0x1BCE0, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x64E04, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x4E0, symBinAddr: 0x1BD10, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x64E18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x520, symBinAddr: 0x1BD50, symSize: 0xD0 } - - { offsetInCU: 0x780, offset: 0x64E2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x5F0, symBinAddr: 0x1BE20, symSize: 0x100 } - - { offsetInCU: 0x794, offset: 0x64E40, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6F0, symBinAddr: 0x1BF20, symSize: 0x50 } - - { offsetInCU: 0x7A8, offset: 0x64E54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x740, symBinAddr: 0x1BF70, symSize: 0xD0 } - - { offsetInCU: 0x7BC, offset: 0x64E68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x810, symBinAddr: 0x1C040, symSize: 0x40 } - - { offsetInCU: 0x7D0, offset: 0x64E7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x850, symBinAddr: 0x1C080, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64E90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x8B0, symBinAddr: 0x1C0E0, symSize: 0xA } - - { offsetInCU: 0x52, offset: 0x65072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1C0F0, symSize: 0x350 } - - { offsetInCU: 0x7D, offset: 0x6509D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x700, symBinAddr: 0x1C7F0, symSize: 0x30 } - - { offsetInCU: 0x99, offset: 0x650B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x990, symBinAddr: 0x1CA80, symSize: 0x50 } - - { offsetInCU: 0xD1, offset: 0x650F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1C440, symSize: 0x310 } - - { offsetInCU: 0xFC, offset: 0x6511C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x960, symBinAddr: 0x1CA50, symSize: 0x30 } - - { offsetInCU: 0x118, offset: 0x65138, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x9E0, symBinAddr: 0x1CAD0, symSize: 0x50 } - - { offsetInCU: 0x144, offset: 0x65164, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1CB20, symSize: 0x120 } - - { offsetInCU: 0x174, offset: 0x65194, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1CC40, symSize: 0x80 } - - { offsetInCU: 0x188, offset: 0x651A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1CCC0, symSize: 0xD0 } - - { offsetInCU: 0x19C, offset: 0x651BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1CD90, symSize: 0x10 } - - { offsetInCU: 0x1B0, offset: 0x651D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1CDA0, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x651E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1CDB0, symSize: 0x80 } - - { offsetInCU: 0x1D8, offset: 0x651F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1CE30, symSize: 0xD0 } - - { offsetInCU: 0x1EC, offset: 0x6520C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1CF00, symSize: 0x10 } - - { offsetInCU: 0x200, offset: 0x65220, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1CF10, symSize: 0x10 } - - { offsetInCU: 0x214, offset: 0x65234, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1CF20, symSize: 0x10 } - - { offsetInCU: 0x228, offset: 0x65248, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1CF30, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x6525C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1CF40, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x65270, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1CF50, symSize: 0x30 } - - { offsetInCU: 0x264, offset: 0x65284, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1CF80, symSize: 0x10 } - - { offsetInCU: 0x278, offset: 0x65298, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1CF90, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x653F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1CFE0, symSize: 0x2B0 } - - { offsetInCU: 0x7C, offset: 0x65423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1D290, symSize: 0x20 } - - { offsetInCU: 0xA9, offset: 0x65450, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC9printLogs33_D78766567F29622279F8000760588BB6LL3msgySS_tFTf4nd_n', symObjAddr: 0x6D0, symBinAddr: 0x1D6B0, symSize: 0xC0 } - - { offsetInCU: 0x1DB, offset: 0x65582, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1D2B0, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x655D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1D2D0, symSize: 0x90 } - - { offsetInCU: 0x284, offset: 0x6562B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1D360, symSize: 0x10 } - - { offsetInCU: 0x2AD, offset: 0x65654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1D370, symSize: 0x10 } - - { offsetInCU: 0x2D6, offset: 0x6567D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1D380, symSize: 0x10 } - - { offsetInCU: 0x2FF, offset: 0x656A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1D420, symSize: 0x10 } - - { offsetInCU: 0x351, offset: 0x656F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1D430, symSize: 0x80 } - - { offsetInCU: 0x3A9, offset: 0x65750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1D4B0, symSize: 0x60 } - - { offsetInCU: 0x3EA, offset: 0x65791, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1D510, symSize: 0x90 } - - { offsetInCU: 0x446, offset: 0x657ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1D5A0, symSize: 0x80 } - - { offsetInCU: 0x494, offset: 0x6583B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1D620, symSize: 0x70 } - - { offsetInCU: 0x4C6, offset: 0x6586D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1D690, symSize: 0x10 } - - { offsetInCU: 0x4E2, offset: 0x65889, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6C0, symBinAddr: 0x1D6A0, symSize: 0x10 } - - { offsetInCU: 0x567, offset: 0x6590E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x790, symBinAddr: 0x1D770, symSize: 0x910 } - - { offsetInCU: 0x678, offset: 0x65A1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0x10A0, symBinAddr: 0x1E080, symSize: 0x70 } - - { offsetInCU: 0x6CD, offset: 0x65A74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1110, symBinAddr: 0x1E0F0, symSize: 0x2A0 } - - { offsetInCU: 0x7E5, offset: 0x65B8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x13B0, symBinAddr: 0x1E390, symSize: 0x60 } - - { offsetInCU: 0x824, offset: 0x65BCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0x1410, symBinAddr: 0x1E3F0, symSize: 0x60 } - - { offsetInCU: 0x863, offset: 0x65C0A, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1470, symBinAddr: 0x1E450, symSize: 0x20 } - - { offsetInCU: 0x877, offset: 0x65C1E, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1490, symBinAddr: 0x1E470, symSize: 0x20 } - - { offsetInCU: 0x88B, offset: 0x65C32, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1520, symBinAddr: 0x1E490, symSize: 0x40 } - - { offsetInCU: 0x89F, offset: 0x65C46, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1560, symBinAddr: 0x1E4D0, symSize: 0x20 } - - { offsetInCU: 0x8B3, offset: 0x65C5A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1580, symBinAddr: 0x1E4F0, symSize: 0x40 } - - { offsetInCU: 0x8C7, offset: 0x65C6E, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x15C0, symBinAddr: 0x1E530, symSize: 0x30 } - - { offsetInCU: 0x8DB, offset: 0x65C82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x15F0, symBinAddr: 0x1E560, symSize: 0x260 } - - { offsetInCU: 0x8EF, offset: 0x65C96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x1850, symBinAddr: 0x1E7C0, symSize: 0x30 } - - { offsetInCU: 0x903, offset: 0x65CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x1880, symBinAddr: 0x1E7F0, symSize: 0x260 } - - { offsetInCU: 0x917, offset: 0x65CBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1AE0, symBinAddr: 0x1EA50, symSize: 0x25 } - - { offsetInCU: 0x4F, offset: 0x65F65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2A10, symBinAddr: 0x8FAC0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x65F7F, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2A18, symBinAddr: 0x8FAC8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65F8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1EAC0, symSize: 0x30 } - - { offsetInCU: 0xB3, offset: 0x65FC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1EAF0, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x65FFF, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1EB30, symSize: 0x30 } - - { offsetInCU: 0x114, offset: 0x6602A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1EB60, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x6607A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1EBA0, symSize: 0x30 } - - { offsetInCU: 0x18F, offset: 0x660A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x180, symBinAddr: 0x1EC00, symSize: 0x10 } - - { offsetInCU: 0x1B8, offset: 0x660CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0x1EC10, symSize: 0x30 } - - { offsetInCU: 0x1D3, offset: 0x660E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x1C0, symBinAddr: 0x1EC40, symSize: 0x10 } - - { offsetInCU: 0x202, offset: 0x66118, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x1D0, symBinAddr: 0x1EC50, symSize: 0x20 } - - { offsetInCU: 0x293, offset: 0x661A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x240, symBinAddr: 0x1ECC0, symSize: 0x10 } - - { offsetInCU: 0x2F3, offset: 0x66209, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2A0, symBinAddr: 0x1ED20, symSize: 0x20 } - - { offsetInCU: 0x36D, offset: 0x66283, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0x1ED90, symSize: 0x10 } - - { offsetInCU: 0x3F7, offset: 0x6630D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x450, symBinAddr: 0x1EED0, symSize: 0x40 } - - { offsetInCU: 0x414, offset: 0x6632A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x4B0, symBinAddr: 0x1EF30, symSize: 0x50 } - - { offsetInCU: 0x43B, offset: 0x66351, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x520, symBinAddr: 0x1EFA0, symSize: 0x30 } - - { offsetInCU: 0x468, offset: 0x6637E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x550, symBinAddr: 0x1EFD0, symSize: 0x10 } - - { offsetInCU: 0x4DB, offset: 0x663F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x690, symBinAddr: 0x1F110, symSize: 0x40 } - - { offsetInCU: 0x4F8, offset: 0x6640E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x6D0, symBinAddr: 0x1F150, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x66435, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x720, symBinAddr: 0x1F1A0, symSize: 0x30 } - - { offsetInCU: 0x54C, offset: 0x66462, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x750, symBinAddr: 0x1F1D0, symSize: 0x10 } - - { offsetInCU: 0x577, offset: 0x6648D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x760, symBinAddr: 0x1F1E0, symSize: 0x30 } - - { offsetInCU: 0x594, offset: 0x664AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x790, symBinAddr: 0x1F210, symSize: 0x30 } - - { offsetInCU: 0x5BB, offset: 0x664D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x7C0, symBinAddr: 0x1F240, symSize: 0x30 } - - { offsetInCU: 0x612, offset: 0x66528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x840, symBinAddr: 0x1F2C0, symSize: 0x30 } - - { offsetInCU: 0x62F, offset: 0x66545, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x870, symBinAddr: 0x1F2F0, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x6656C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x8B0, symBinAddr: 0x1F330, symSize: 0x30 } - - { offsetInCU: 0x683, offset: 0x66599, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0x8E0, symBinAddr: 0x1F360, symSize: 0x70 } - - { offsetInCU: 0x72E, offset: 0x66644, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0x950, symBinAddr: 0x1F3D0, symSize: 0xA0 } - - { offsetInCU: 0x7AB, offset: 0x666C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9F0, symBinAddr: 0x1F470, symSize: 0xA0 } - - { offsetInCU: 0x80F, offset: 0x66725, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xC80, symBinAddr: 0x1F700, symSize: 0x60 } - - { offsetInCU: 0x839, offset: 0x6674F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xCE0, symBinAddr: 0x1F760, symSize: 0x30 } - - { offsetInCU: 0x85E, offset: 0x66774, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xD10, symBinAddr: 0x1F790, symSize: 0x180 } - - { offsetInCU: 0x913, offset: 0x66829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1F910, symSize: 0x10 } - - { offsetInCU: 0x960, offset: 0x66876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0xEA0, symBinAddr: 0x1F920, symSize: 0x70 } - - { offsetInCU: 0x9FC, offset: 0x66912, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0xF40, symBinAddr: 0x1F9C0, symSize: 0x80 } - - { offsetInCU: 0xB12, offset: 0x66A28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1900, symBinAddr: 0x20380, symSize: 0x220 } - - { offsetInCU: 0xBA3, offset: 0x66AB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B70, symBinAddr: 0x205F0, symSize: 0x170 } - - { offsetInCU: 0xCA8, offset: 0x66BBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x320, symBinAddr: 0x1EDA0, symSize: 0x80 } - - { offsetInCU: 0xCE0, offset: 0x66BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x3A0, symBinAddr: 0x1EE20, symSize: 0xB0 } - - { offsetInCU: 0xD20, offset: 0x66C36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x490, symBinAddr: 0x1EF10, symSize: 0x20 } - - { offsetInCU: 0xD34, offset: 0x66C4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x500, symBinAddr: 0x1EF80, symSize: 0x20 } - - { offsetInCU: 0xD48, offset: 0x66C5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x560, symBinAddr: 0x1EFE0, symSize: 0x80 } - - { offsetInCU: 0xD80, offset: 0x66C96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x5E0, symBinAddr: 0x1F060, symSize: 0xB0 } - - { offsetInCU: 0xDC0, offset: 0x66CD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x7F0, symBinAddr: 0x1F270, symSize: 0x50 } - - { offsetInCU: 0xE24, offset: 0x66D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xA90, symBinAddr: 0x1F510, symSize: 0x1F0 } - - { offsetInCU: 0xE98, offset: 0x66DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1790, symBinAddr: 0x20210, symSize: 0x120 } - - { offsetInCU: 0xF78, offset: 0x66E8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0xF10, symBinAddr: 0x1F990, symSize: 0x30 } - - { offsetInCU: 0x1067, offset: 0x66F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x18E0, symBinAddr: 0x20360, symSize: 0x20 } - - { offsetInCU: 0x10B7, offset: 0x66FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1FA40, symSize: 0x220 } - - { offsetInCU: 0x128D, offset: 0x671A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x11E0, symBinAddr: 0x1FC60, symSize: 0x10 } - - { offsetInCU: 0x12E4, offset: 0x671FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11F0, symBinAddr: 0x1FC70, symSize: 0x10 } - - { offsetInCU: 0x1332, offset: 0x67248, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1200, symBinAddr: 0x1FC80, symSize: 0x10 } - - { offsetInCU: 0x134A, offset: 0x67260, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1210, symBinAddr: 0x1FC90, symSize: 0xB0 } - - { offsetInCU: 0x13F0, offset: 0x67306, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1300, symBinAddr: 0x1FD80, symSize: 0x10 } - - { offsetInCU: 0x1408, offset: 0x6731E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26E0, symBinAddr: 0x21140, symSize: 0x70 } - - { offsetInCU: 0x14E5, offset: 0x673FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x12C0, symBinAddr: 0x1FD40, symSize: 0x40 } - - { offsetInCU: 0x1520, offset: 0x67436, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1330, symBinAddr: 0x1FDB0, symSize: 0x90 } - - { offsetInCU: 0x1617, offset: 0x6752D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x1480, symBinAddr: 0x1FF00, symSize: 0x1D0 } - - { offsetInCU: 0x1CC0, offset: 0x67BD6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x1650, symBinAddr: 0x200D0, symSize: 0x130 } - - { offsetInCU: 0x1DBD, offset: 0x67CD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x20200, symSize: 0x10 } - - { offsetInCU: 0x1DD1, offset: 0x67CE7, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x18B0, symBinAddr: 0x20330, symSize: 0x30 } - - { offsetInCU: 0x1DE9, offset: 0x67CFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1B20, symBinAddr: 0x205A0, symSize: 0x30 } - - { offsetInCU: 0x1DFD, offset: 0x67D13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1B50, symBinAddr: 0x205D0, symSize: 0x20 } - - { offsetInCU: 0x1E11, offset: 0x67D27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1CE0, symBinAddr: 0x20760, symSize: 0x20 } - - { offsetInCU: 0x1E25, offset: 0x67D3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1D00, symBinAddr: 0x20780, symSize: 0x10 } - - { offsetInCU: 0x1E39, offset: 0x67D4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1D10, symBinAddr: 0x20790, symSize: 0x30 } - - { offsetInCU: 0x1E4D, offset: 0x67D63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D40, symBinAddr: 0x207C0, symSize: 0x10 } - - { offsetInCU: 0x1E61, offset: 0x67D77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D50, symBinAddr: 0x207D0, symSize: 0x30 } - - { offsetInCU: 0x1E75, offset: 0x67D8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwCP', symObjAddr: 0x1E90, symBinAddr: 0x20910, symSize: 0x60 } - - { offsetInCU: 0x1E89, offset: 0x67D9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1EF0, symBinAddr: 0x20970, symSize: 0x20 } - - { offsetInCU: 0x1E9D, offset: 0x67DB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x1F10, symBinAddr: 0x20990, symSize: 0x20 } - - { offsetInCU: 0x1EB1, offset: 0x67DC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x1F30, symBinAddr: 0x209B0, symSize: 0x20 } - - { offsetInCU: 0x1EC5, offset: 0x67DDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwcp', symObjAddr: 0x1F50, symBinAddr: 0x209D0, symSize: 0x60 } - - { offsetInCU: 0x1ED9, offset: 0x67DEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x1FB0, symBinAddr: 0x20A30, symSize: 0x70 } - - { offsetInCU: 0x1EED, offset: 0x67E03, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2020, symBinAddr: 0x20AA0, symSize: 0x20 } - - { offsetInCU: 0x1F01, offset: 0x67E17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x2040, symBinAddr: 0x20AC0, symSize: 0x40 } - - { offsetInCU: 0x1F15, offset: 0x67E2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x2080, symBinAddr: 0x20B00, symSize: 0x50 } - - { offsetInCU: 0x1F29, offset: 0x67E3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x20D0, symBinAddr: 0x20B50, symSize: 0x50 } - - { offsetInCU: 0x1F3D, offset: 0x67E53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x2120, symBinAddr: 0x20BA0, symSize: 0x10 } - - { offsetInCU: 0x1F51, offset: 0x67E67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2130, symBinAddr: 0x20BB0, symSize: 0x10 } - - { offsetInCU: 0x1F65, offset: 0x67E7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2140, symBinAddr: 0x20BC0, symSize: 0x10 } - - { offsetInCU: 0x1F79, offset: 0x67E8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x2150, symBinAddr: 0x20BD0, symSize: 0x10 } - - { offsetInCU: 0x1F8D, offset: 0x67EA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2340, symBinAddr: 0x20DA0, symSize: 0x80 } - - { offsetInCU: 0x1FA1, offset: 0x67EB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23C0, symBinAddr: 0x20E20, symSize: 0xD0 } - - { offsetInCU: 0x1FB5, offset: 0x67ECB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2490, symBinAddr: 0x20EF0, symSize: 0x10 } - - { offsetInCU: 0x1FC9, offset: 0x67EDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x24A0, symBinAddr: 0x20F00, symSize: 0x10 } - - { offsetInCU: 0x1FDD, offset: 0x67EF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x24B0, symBinAddr: 0x20F10, symSize: 0x80 } - - { offsetInCU: 0x1FF1, offset: 0x67F07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2530, symBinAddr: 0x20F90, symSize: 0xD0 } - - { offsetInCU: 0x2005, offset: 0x67F1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x2600, symBinAddr: 0x21060, symSize: 0x10 } - - { offsetInCU: 0x2019, offset: 0x67F2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x2610, symBinAddr: 0x21070, symSize: 0x10 } - - { offsetInCU: 0x202D, offset: 0x67F43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2620, symBinAddr: 0x21080, symSize: 0x10 } - - { offsetInCU: 0x2041, offset: 0x67F57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2630, symBinAddr: 0x21090, symSize: 0x10 } - - { offsetInCU: 0x2060, offset: 0x67F76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2670, symBinAddr: 0x210D0, symSize: 0x20 } - - { offsetInCU: 0x2089, offset: 0x67F9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x2770, symBinAddr: 0x211D0, symSize: 0x10 } - - { offsetInCU: 0x209D, offset: 0x67FB3, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2780, symBinAddr: 0x211E0, symSize: 0x20 } - - { offsetInCU: 0x20B1, offset: 0x67FC7, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x27A0, symBinAddr: 0x21200, symSize: 0x10 } - - { offsetInCU: 0x20C5, offset: 0x67FDB, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2830, symBinAddr: 0x21210, symSize: 0x30 } - - { offsetInCU: 0x2147, offset: 0x6805D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1EA80, symSize: 0x10 } - - { offsetInCU: 0x2163, offset: 0x68079, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1EA90, symSize: 0x10 } - - { offsetInCU: 0x217F, offset: 0x68095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1EAA0, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x680B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1EAB0, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x6854F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x213D0, symSize: 0x30 } - - { offsetInCU: 0x57, offset: 0x68563, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x21400, symSize: 0x80 } - - { offsetInCU: 0x6B, offset: 0x68577, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x21480, symSize: 0x130 } - - { offsetInCU: 0x86, offset: 0x68592, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x215B0, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x685BB, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x215E0, symSize: 0x30 } - - { offsetInCU: 0xC3, offset: 0x685CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x21610, symSize: 0xC0 } - - { offsetInCU: 0xD7, offset: 0x685E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x216D0, symSize: 0x50 } - - { offsetInCU: 0xEB, offset: 0x685F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x21720, symSize: 0x50 } - - { offsetInCU: 0xFF, offset: 0x6860B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x21770, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x6861F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x21780, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x68633, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x217B0, symSize: 0x30 } - - { offsetInCU: 0x13B, offset: 0x68647, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x217E0, symSize: 0x60 } - - { offsetInCU: 0x14F, offset: 0x6865B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x21840, symSize: 0x80 } - - { offsetInCU: 0x163, offset: 0x6866F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x218C0, symSize: 0x60 } - - { offsetInCU: 0x177, offset: 0x68683, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x21920, symSize: 0x50 } - - { offsetInCU: 0x18B, offset: 0x68697, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x21970, symSize: 0x50 } - - { offsetInCU: 0x19F, offset: 0x686AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x219C0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x686CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x219D0, symSize: 0x100 } - - { offsetInCU: 0x20B, offset: 0x68717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x21E30, symSize: 0x10 } - - { offsetInCU: 0x25F, offset: 0x6876B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA70, symBinAddr: 0x21E40, symSize: 0x30 } - - { offsetInCU: 0x343, offset: 0x6884F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA0, symBinAddr: 0x21E70, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x688D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF0, symBinAddr: 0x21EC0, symSize: 0x10 } - - { offsetInCU: 0x404, offset: 0x68910, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB00, symBinAddr: 0x21ED0, symSize: 0x20 } - - { offsetInCU: 0x435, offset: 0x68941, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB20, symBinAddr: 0x21EF0, symSize: 0x10 } - - { offsetInCU: 0x451, offset: 0x6895D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB30, symBinAddr: 0x21F00, symSize: 0x10 } - - { offsetInCU: 0x46D, offset: 0x68979, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF00, symBinAddr: 0x222D0, symSize: 0x60 } - - { offsetInCU: 0x4B1, offset: 0x689BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF60, symBinAddr: 0x22330, symSize: 0x20 } - - { offsetInCU: 0x4E5, offset: 0x689F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB80, symBinAddr: 0x21F50, symSize: 0x40 } - - { offsetInCU: 0x51C, offset: 0x68A28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBC0, symBinAddr: 0x21F90, symSize: 0x40 } - - { offsetInCU: 0x53F, offset: 0x68A4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF80, symBinAddr: 0x22350, symSize: 0x140 } - - { offsetInCU: 0x58F, offset: 0x68A9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x700, symBinAddr: 0x21AD0, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x68AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC00, symBinAddr: 0x21FD0, symSize: 0x10 } - - { offsetInCU: 0x63A, offset: 0x68B46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC20, symBinAddr: 0x21FF0, symSize: 0x20 } - - { offsetInCU: 0x6B4, offset: 0x68BC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC50, symBinAddr: 0x22020, symSize: 0x10 } - - { offsetInCU: 0x6DF, offset: 0x68BEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC60, symBinAddr: 0x22030, symSize: 0x20 } - - { offsetInCU: 0x710, offset: 0x68C1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC80, symBinAddr: 0x22050, symSize: 0x10 } - - { offsetInCU: 0x72C, offset: 0x68C38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xC90, symBinAddr: 0x22060, symSize: 0x10 } - - { offsetInCU: 0x748, offset: 0x68C54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x11F0, symBinAddr: 0x22520, symSize: 0x110 } - - { offsetInCU: 0x78E, offset: 0x68C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x720, symBinAddr: 0x21AF0, symSize: 0x1B0 } - - { offsetInCU: 0x7E3, offset: 0x68CEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xCE0, symBinAddr: 0x220B0, symSize: 0x40 } - - { offsetInCU: 0x81A, offset: 0x68D26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD20, symBinAddr: 0x220F0, symSize: 0x40 } - - { offsetInCU: 0x83D, offset: 0x68D49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1300, symBinAddr: 0x22630, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x68D99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueSSvg', symObjAddr: 0x8D0, symBinAddr: 0x21CA0, symSize: 0x20 } - - { offsetInCU: 0x8B6, offset: 0x68DC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE00, symBinAddr: 0x221D0, symSize: 0x10 } - - { offsetInCU: 0x8E1, offset: 0x68DED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE10, symBinAddr: 0x221E0, symSize: 0x20 } - - { offsetInCU: 0x912, offset: 0x68E1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE30, symBinAddr: 0x22200, symSize: 0x10 } - - { offsetInCU: 0x92E, offset: 0x68E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CC0, symBinAddr: 0x22F50, symSize: 0x120 } - - { offsetInCU: 0x974, offset: 0x68E80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8F0, symBinAddr: 0x21CC0, symSize: 0x170 } - - { offsetInCU: 0x9C9, offset: 0x68ED5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xE80, symBinAddr: 0x22250, symSize: 0x40 } - - { offsetInCU: 0xA00, offset: 0x68F0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEC0, symBinAddr: 0x22290, symSize: 0x40 } - - { offsetInCU: 0xA23, offset: 0x68F2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1DE0, symBinAddr: 0x23070, symSize: 0x2F0 } - - { offsetInCU: 0xA76, offset: 0x68F82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1130, symBinAddr: 0x22490, symSize: 0x30 } - - { offsetInCU: 0xA8A, offset: 0x68F96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x1190, symBinAddr: 0x224C0, symSize: 0x30 } - - { offsetInCU: 0xA9E, offset: 0x68FAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x11C0, symBinAddr: 0x224F0, symSize: 0x30 } - - { offsetInCU: 0xAB2, offset: 0x68FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1550, symBinAddr: 0x22880, symSize: 0x30 } - - { offsetInCU: 0xAC6, offset: 0x68FD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x15C0, symBinAddr: 0x228B0, symSize: 0x30 } - - { offsetInCU: 0xADA, offset: 0x68FE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x1680, symBinAddr: 0x22970, symSize: 0x30 } - - { offsetInCU: 0xAEE, offset: 0x68FFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x16F0, symBinAddr: 0x229C0, symSize: 0x10 } - - { offsetInCU: 0xB02, offset: 0x6900E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1700, symBinAddr: 0x229D0, symSize: 0x10 } - - { offsetInCU: 0xB16, offset: 0x69022, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1710, symBinAddr: 0x229E0, symSize: 0x10 } - - { offsetInCU: 0xB2A, offset: 0x69036, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x1720, symBinAddr: 0x229F0, symSize: 0x10 } - - { offsetInCU: 0xB3E, offset: 0x6904A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x1740, symBinAddr: 0x22A00, symSize: 0x50 } - - { offsetInCU: 0xB52, offset: 0x6905E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1790, symBinAddr: 0x22A50, symSize: 0xA0 } - - { offsetInCU: 0xB66, offset: 0x69072, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1830, symBinAddr: 0x22AF0, symSize: 0x10 } - - { offsetInCU: 0xB7A, offset: 0x69086, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1840, symBinAddr: 0x22B00, symSize: 0x10 } - - { offsetInCU: 0xB8E, offset: 0x6909A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1850, symBinAddr: 0x22B10, symSize: 0x10 } - - { offsetInCU: 0xBA2, offset: 0x690AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x1860, symBinAddr: 0x22B20, symSize: 0x10 } - - { offsetInCU: 0xBB6, offset: 0x690C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x1870, symBinAddr: 0x22B30, symSize: 0x40 } - - { offsetInCU: 0xBCA, offset: 0x690D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x18B0, symBinAddr: 0x22B70, symSize: 0x80 } - - { offsetInCU: 0xBDE, offset: 0x690EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x1930, symBinAddr: 0x22BF0, symSize: 0xA0 } - - { offsetInCU: 0xBF2, offset: 0x690FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A00, symBinAddr: 0x22C90, symSize: 0x80 } - - { offsetInCU: 0xC06, offset: 0x69112, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1A80, symBinAddr: 0x22D10, symSize: 0x50 } - - { offsetInCU: 0xC1A, offset: 0x69126, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1AD0, symBinAddr: 0x22D60, symSize: 0x60 } - - { offsetInCU: 0xC2E, offset: 0x6913A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1B30, symBinAddr: 0x22DC0, symSize: 0x10 } - - { offsetInCU: 0xC42, offset: 0x6914E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B40, symBinAddr: 0x22DD0, symSize: 0x10 } - - { offsetInCU: 0xC56, offset: 0x69162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B50, symBinAddr: 0x22DE0, symSize: 0x30 } - - { offsetInCU: 0xC6A, offset: 0x69176, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1B80, symBinAddr: 0x22E10, symSize: 0x10 } - - { offsetInCU: 0xC7E, offset: 0x6918A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x22E20, symSize: 0x30 } - - { offsetInCU: 0xC92, offset: 0x6919E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BC0, symBinAddr: 0x22E50, symSize: 0x10 } - - { offsetInCU: 0xCA6, offset: 0x691B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x22E60, symSize: 0x30 } - - { offsetInCU: 0xCBA, offset: 0x691C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C00, symBinAddr: 0x22E90, symSize: 0x10 } - - { offsetInCU: 0xCCE, offset: 0x691DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C10, symBinAddr: 0x22EA0, symSize: 0x30 } - - { offsetInCU: 0xCE2, offset: 0x691EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C40, symBinAddr: 0x22ED0, symSize: 0x10 } - - { offsetInCU: 0xCF6, offset: 0x69202, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C50, symBinAddr: 0x22EE0, symSize: 0x30 } - - { offsetInCU: 0xD0A, offset: 0x69216, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C80, symBinAddr: 0x22F10, symSize: 0x10 } - - { offsetInCU: 0xD1E, offset: 0x6922A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C90, symBinAddr: 0x22F20, symSize: 0x30 } - - { offsetInCU: 0xD32, offset: 0x6923E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x20D0, symBinAddr: 0x23360, symSize: 0x30 } - - { offsetInCU: 0xD46, offset: 0x69252, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x2270, symBinAddr: 0x23500, symSize: 0x10 } - - { offsetInCU: 0xD5A, offset: 0x69266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2280, symBinAddr: 0x23510, symSize: 0x10 } - - { offsetInCU: 0xD6E, offset: 0x6927A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2290, symBinAddr: 0x23520, symSize: 0x10 } - - { offsetInCU: 0xD82, offset: 0x6928E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x22A0, symBinAddr: 0x23530, symSize: 0x30 } - - { offsetInCU: 0xD96, offset: 0x692A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22D0, symBinAddr: 0x23560, symSize: 0x10 } - - { offsetInCU: 0xDAA, offset: 0x692B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E0, symBinAddr: 0x23570, symSize: 0x30 } - - { offsetInCU: 0xDBE, offset: 0x692CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2310, symBinAddr: 0x235A0, symSize: 0x10 } - - { offsetInCU: 0xDD2, offset: 0x692DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2320, symBinAddr: 0x235B0, symSize: 0x30 } - - { offsetInCU: 0xE27, offset: 0x69333, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAC0, symBinAddr: 0x21E90, symSize: 0x30 } - - { offsetInCU: 0xECA, offset: 0x693D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB40, symBinAddr: 0x21F10, symSize: 0x20 } - - { offsetInCU: 0xEE6, offset: 0x693F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x21F30, symSize: 0x20 } - - { offsetInCU: 0xF08, offset: 0x69414, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCA0, symBinAddr: 0x22070, symSize: 0x20 } - - { offsetInCU: 0xF24, offset: 0x69430, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCC0, symBinAddr: 0x22090, symSize: 0x20 } - - { offsetInCU: 0xF46, offset: 0x69452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE40, symBinAddr: 0x22210, symSize: 0x20 } - - { offsetInCU: 0xF62, offset: 0x6946E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE60, symBinAddr: 0x22230, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x695BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x23650, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x695DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x23650, symSize: 0x10 } - - { offsetInCU: 0x7A, offset: 0x6960E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x810, symBinAddr: 0x23D60, symSize: 0x20 } - - { offsetInCU: 0x110, offset: 0x696A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x830, symBinAddr: 0x23D80, symSize: 0x40 } - - { offsetInCU: 0x20B, offset: 0x6979F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x870, symBinAddr: 0x23DC0, symSize: 0x10 } - - { offsetInCU: 0x261, offset: 0x697F5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x880, symBinAddr: 0x23DD0, symSize: 0x40 } - - { offsetInCU: 0x345, offset: 0x698D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x23E10, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x69958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x23660, symSize: 0x480 } - - { offsetInCU: 0x440, offset: 0x699D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOy', symObjAddr: 0x490, symBinAddr: 0x23AE0, symSize: 0x20 } - - { offsetInCU: 0x454, offset: 0x699E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVSgWOe', symObjAddr: 0x4E0, symBinAddr: 0x23B00, symSize: 0x20 } - - { offsetInCU: 0x474, offset: 0x69A08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x5D0, symBinAddr: 0x23B20, symSize: 0x30 } - - { offsetInCU: 0x492, offset: 0x69A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x600, symBinAddr: 0x23B50, symSize: 0x30 } - - { offsetInCU: 0x4D0, offset: 0x69A64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x630, symBinAddr: 0x23B80, symSize: 0x10 } - - { offsetInCU: 0x4EE, offset: 0x69A82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x640, symBinAddr: 0x23B90, symSize: 0x10 } - - { offsetInCU: 0x519, offset: 0x69AAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x650, symBinAddr: 0x23BA0, symSize: 0x10 } - - { offsetInCU: 0x537, offset: 0x69ACB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x660, symBinAddr: 0x23BB0, symSize: 0x10 } - - { offsetInCU: 0x575, offset: 0x69B09, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x670, symBinAddr: 0x23BC0, symSize: 0x20 } - - { offsetInCU: 0x5A3, offset: 0x69B37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x690, symBinAddr: 0x23BE0, symSize: 0x10 } - - { offsetInCU: 0x5D6, offset: 0x69B6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x6A0, symBinAddr: 0x23BF0, symSize: 0x30 } - - { offsetInCU: 0x5F4, offset: 0x69B88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x6D0, symBinAddr: 0x23C20, symSize: 0x20 } - - { offsetInCU: 0x61A, offset: 0x69BAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x6F0, symBinAddr: 0x23C40, symSize: 0x30 } - - { offsetInCU: 0x638, offset: 0x69BCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x720, symBinAddr: 0x23C70, symSize: 0x30 } - - { offsetInCU: 0x663, offset: 0x69BF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x750, symBinAddr: 0x23CA0, symSize: 0x10 } - - { offsetInCU: 0x681, offset: 0x69C15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x760, symBinAddr: 0x23CB0, symSize: 0x10 } - - { offsetInCU: 0x6BD, offset: 0x69C51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x770, symBinAddr: 0x23CC0, symSize: 0x10 } - - { offsetInCU: 0x6DB, offset: 0x69C6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x780, symBinAddr: 0x23CD0, symSize: 0x10 } - - { offsetInCU: 0x706, offset: 0x69C9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x790, symBinAddr: 0x23CE0, symSize: 0x10 } - - { offsetInCU: 0x724, offset: 0x69CB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x7A0, symBinAddr: 0x23CF0, symSize: 0x10 } - - { offsetInCU: 0x760, offset: 0x69CF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x7B0, symBinAddr: 0x23D00, symSize: 0x20 } - - { offsetInCU: 0x78E, offset: 0x69D22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x7D0, symBinAddr: 0x23D20, symSize: 0x10 } - - { offsetInCU: 0x7B9, offset: 0x69D4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x7E0, symBinAddr: 0x23D30, symSize: 0x20 } - - { offsetInCU: 0x7E7, offset: 0x69D7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x800, symBinAddr: 0x23D50, symSize: 0x10 } - - { offsetInCU: 0x829, offset: 0x69DBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x920, symBinAddr: 0x23E70, symSize: 0x10 } - - { offsetInCU: 0x83D, offset: 0x69DD1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x930, symBinAddr: 0x23E80, symSize: 0x30 } - - { offsetInCU: 0x851, offset: 0x69DE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x960, symBinAddr: 0x23EB0, symSize: 0x30 } - - { offsetInCU: 0x865, offset: 0x69DF9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x990, symBinAddr: 0x23EE0, symSize: 0x80 } - - { offsetInCU: 0x879, offset: 0x69E0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0xA10, symBinAddr: 0x23F60, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x69E21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0xC60, symBinAddr: 0x241B0, symSize: 0x4F0 } - - { offsetInCU: 0x8A8, offset: 0x69E3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0x1150, symBinAddr: 0x246A0, symSize: 0x30 } - - { offsetInCU: 0x8D1, offset: 0x69E65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0x1180, symBinAddr: 0x246D0, symSize: 0x20 } - - { offsetInCU: 0x8E5, offset: 0x69E79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0x11A0, symBinAddr: 0x246F0, symSize: 0x30 } - - { offsetInCU: 0x8F9, offset: 0x69E8D, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0x11D0, symBinAddr: 0x24720, symSize: 0x10 } - - { offsetInCU: 0x90D, offset: 0x69EA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x24730, symSize: 0x340 } - - { offsetInCU: 0x921, offset: 0x69EB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x1520, symBinAddr: 0x24A70, symSize: 0x40 } - - { offsetInCU: 0x935, offset: 0x69EC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1560, symBinAddr: 0x24AB0, symSize: 0x90 } - - { offsetInCU: 0x949, offset: 0x69EDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x24B40, symSize: 0x10 } - - { offsetInCU: 0x95D, offset: 0x69EF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwCP', symObjAddr: 0x1600, symBinAddr: 0x24B50, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x69F05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1630, symBinAddr: 0x24B80, symSize: 0x10 } - - { offsetInCU: 0x985, offset: 0x69F19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwcp', symObjAddr: 0x1640, symBinAddr: 0x24B90, symSize: 0x30 } - - { offsetInCU: 0x999, offset: 0x69F2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x24BC0, symSize: 0x50 } - - { offsetInCU: 0x9AD, offset: 0x69F41, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x16C0, symBinAddr: 0x24C10, symSize: 0x20 } - - { offsetInCU: 0x9C1, offset: 0x69F55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x16E0, symBinAddr: 0x24C30, symSize: 0x40 } - - { offsetInCU: 0x9D5, offset: 0x69F69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1720, symBinAddr: 0x24C70, symSize: 0x40 } - - { offsetInCU: 0x9E9, offset: 0x69F7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1760, symBinAddr: 0x24CB0, symSize: 0x50 } - - { offsetInCU: 0x9FD, offset: 0x69F91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x17B0, symBinAddr: 0x24D00, symSize: 0x10 } - - { offsetInCU: 0xA11, offset: 0x69FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x17C0, symBinAddr: 0x24D10, symSize: 0x30 } - - { offsetInCU: 0xA25, offset: 0x69FB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x17F0, symBinAddr: 0x24D40, symSize: 0x80 } - - { offsetInCU: 0xA39, offset: 0x69FCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x1870, symBinAddr: 0x24DC0, symSize: 0xE0 } - - { offsetInCU: 0xA4D, offset: 0x69FE1, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1950, symBinAddr: 0x24EA0, symSize: 0x30 } - - { offsetInCU: 0xA61, offset: 0x69FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1980, symBinAddr: 0x24ED0, symSize: 0x90 } - - { offsetInCU: 0xA75, offset: 0x6A009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1A10, symBinAddr: 0x24F60, symSize: 0x50 } - - { offsetInCU: 0xA89, offset: 0x6A01D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1A60, symBinAddr: 0x24FB0, symSize: 0x60 } - - { offsetInCU: 0xA9D, offset: 0x6A031, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x1AC0, symBinAddr: 0x25010, symSize: 0x10 } - - { offsetInCU: 0xAB1, offset: 0x6A045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x1AD0, symBinAddr: 0x25020, symSize: 0x30 } - - { offsetInCU: 0xAC5, offset: 0x6A059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x1B00, symBinAddr: 0x25050, symSize: 0x40 } - - { offsetInCU: 0xAD9, offset: 0x6A06D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x1B40, symBinAddr: 0x25090, symSize: 0x60 } - - { offsetInCU: 0xAED, offset: 0x6A081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x1BC0, symBinAddr: 0x250F0, symSize: 0x50 } - - { offsetInCU: 0xB01, offset: 0x6A095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1C10, symBinAddr: 0x25140, symSize: 0x40 } - - { offsetInCU: 0xB15, offset: 0x6A0A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x1C50, symBinAddr: 0x25180, symSize: 0x50 } - - { offsetInCU: 0xB29, offset: 0x6A0BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x1CA0, symBinAddr: 0x251D0, symSize: 0x10 } - - { offsetInCU: 0xB3D, offset: 0x6A0D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x1CC0, symBinAddr: 0x251E0, symSize: 0x40 } - - { offsetInCU: 0xB51, offset: 0x6A0E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1D00, symBinAddr: 0x25220, symSize: 0x50 } - - { offsetInCU: 0xB65, offset: 0x6A0F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1D50, symBinAddr: 0x25270, symSize: 0x10 } - - { offsetInCU: 0xB79, offset: 0x6A10D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x1D70, symBinAddr: 0x25280, symSize: 0x80 } - - { offsetInCU: 0xB8D, offset: 0x6A121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1DF0, symBinAddr: 0x25300, symSize: 0xD0 } - - { offsetInCU: 0xBA1, offset: 0x6A135, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1EC0, symBinAddr: 0x253D0, symSize: 0x10 } - - { offsetInCU: 0xBB5, offset: 0x6A149, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1ED0, symBinAddr: 0x253E0, symSize: 0x10 } - - { offsetInCU: 0xBC9, offset: 0x6A15D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1EE0, symBinAddr: 0x253F0, symSize: 0x10 } - - { offsetInCU: 0xBDD, offset: 0x6A171, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1EF0, symBinAddr: 0x25400, symSize: 0x10 } - - { offsetInCU: 0xC32, offset: 0x6A1C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x23E30, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x6A412, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x25450, symSize: 0x170 } - - { offsetInCU: 0x373, offset: 0x6A717, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x1F0, symBinAddr: 0x25640, symSize: 0x25F0 } - - { offsetInCU: 0x13EF, offset: 0x6B793, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xD460, symBinAddr: 0x328B0, symSize: 0x42E0 } - - { offsetInCU: 0x3193, offset: 0x6D537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x11740, symBinAddr: 0x36B90, symSize: 0x790 } - - { offsetInCU: 0x3783, offset: 0x6DB27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0x11ED0, symBinAddr: 0x37320, symSize: 0x40 } - - { offsetInCU: 0x37AB, offset: 0x6DB4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x17980, symBinAddr: 0x3CDD0, symSize: 0x450 } - - { offsetInCU: 0x3924, offset: 0x6DCC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x13B00, symBinAddr: 0x38F50, symSize: 0x2F60 } - - { offsetInCU: 0x4F6B, offset: 0x6F30F, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x27E0, symBinAddr: 0x27C30, symSize: 0x2F0 } - - { offsetInCU: 0x52C2, offset: 0x6F666, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2AD0, symBinAddr: 0x27F20, symSize: 0x7A0 } - - { offsetInCU: 0x573A, offset: 0x6FADE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x3270, symBinAddr: 0x286C0, symSize: 0x6E0 } - - { offsetInCU: 0x5A6D, offset: 0x6FE11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3950, symBinAddr: 0x28DA0, symSize: 0x4C30 } - - { offsetInCU: 0x75E7, offset: 0x7198B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x8580, symBinAddr: 0x2D9D0, symSize: 0x2E0 } - - { offsetInCU: 0x76E9, offset: 0x71A8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x8CE0, symBinAddr: 0x2E130, symSize: 0x1BC0 } - - { offsetInCU: 0x7FD5, offset: 0x72379, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x8860, symBinAddr: 0x2DCB0, symSize: 0x120 } - - { offsetInCU: 0x803E, offset: 0x723E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x8AA0, symBinAddr: 0x2DEF0, symSize: 0x210 } - - { offsetInCU: 0x812B, offset: 0x724CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x8CB0, symBinAddr: 0x2E100, symSize: 0x30 } - - { offsetInCU: 0x84CE, offset: 0x72872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0xA8A0, symBinAddr: 0x2FCF0, symSize: 0x8B0 } - - { offsetInCU: 0x88F3, offset: 0x72C97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xC210, symBinAddr: 0x31660, symSize: 0x1250 } - - { offsetInCU: 0x91BB, offset: 0x7355F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xB150, symBinAddr: 0x305A0, symSize: 0xC00 } - - { offsetInCU: 0x9C8B, offset: 0x7402F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x12380, symBinAddr: 0x377D0, symSize: 0x1780 } - - { offsetInCU: 0xAC1F, offset: 0x74FC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1C210, symBinAddr: 0x415A0, symSize: 0xE00 } - - { offsetInCU: 0xB861, offset: 0x75C05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x16A60, symBinAddr: 0x3BEB0, symSize: 0xF20 } - - { offsetInCU: 0xC1CF, offset: 0x76573, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x17DD0, symBinAddr: 0x3D220, symSize: 0x1C0 } - - { offsetInCU: 0xC270, offset: 0x76614, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x17F90, symBinAddr: 0x3D3E0, symSize: 0x2D0 } - - { offsetInCU: 0xC376, offset: 0x7671A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x18260, symBinAddr: 0x3D6B0, symSize: 0x80 } - - { offsetInCU: 0xC3F5, offset: 0x76799, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x18350, symBinAddr: 0x3D7A0, symSize: 0x1260 } - - { offsetInCU: 0xCD4E, offset: 0x770F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x195B0, symBinAddr: 0x3EA00, symSize: 0x50 } - - { offsetInCU: 0xCD6A, offset: 0x7710E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x19600, symBinAddr: 0x3EA50, symSize: 0x160 } - - { offsetInCU: 0xCE6E, offset: 0x77212, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x19760, symBinAddr: 0x3EBB0, symSize: 0x50 } - - { offsetInCU: 0xCEE7, offset: 0x7728B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x19800, symBinAddr: 0x3EC00, symSize: 0x40 } - - { offsetInCU: 0xCF6B, offset: 0x7730F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x19840, symBinAddr: 0x3EC40, symSize: 0x40 } - - { offsetInCU: 0xCFE4, offset: 0x77388, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x19880, symBinAddr: 0x3EC80, symSize: 0x60 } - - { offsetInCU: 0xD026, offset: 0x773CA, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x198E0, symBinAddr: 0x3ECE0, symSize: 0x30 } - - { offsetInCU: 0xD053, offset: 0x773F7, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19910, symBinAddr: 0x3ED10, symSize: 0x80 } - - { offsetInCU: 0xD0F1, offset: 0x77495, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x19990, symBinAddr: 0x3ED90, symSize: 0x60 } - - { offsetInCU: 0xD177, offset: 0x7751B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x199F0, symBinAddr: 0x3EDF0, symSize: 0x50 } - - { offsetInCU: 0xD1FB, offset: 0x7759F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x19A90, symBinAddr: 0x3EE90, symSize: 0xE0 } - - { offsetInCU: 0xD245, offset: 0x775E9, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19B70, symBinAddr: 0x3EF70, symSize: 0xC0 } - - { offsetInCU: 0xD272, offset: 0x77616, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19C30, symBinAddr: 0x3F030, symSize: 0x180 } - - { offsetInCU: 0xD326, offset: 0x776CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x19DB0, symBinAddr: 0x3F1B0, symSize: 0x110 } - - { offsetInCU: 0xD4B9, offset: 0x7785D, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x19EC0, symBinAddr: 0x3F2C0, symSize: 0x130 } - - { offsetInCU: 0xD685, offset: 0x77A29, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x19FF0, symBinAddr: 0x3F3F0, symSize: 0x180 } - - { offsetInCU: 0xD858, offset: 0x77BFC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1A170, symBinAddr: 0x3F570, symSize: 0x1A0 } - - { offsetInCU: 0xDA3D, offset: 0x77DE1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x1A310, symBinAddr: 0x3F710, symSize: 0x110 } - - { offsetInCU: 0xDBE0, offset: 0x77F84, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x1A420, symBinAddr: 0x3F820, symSize: 0x110 } - - { offsetInCU: 0xDD83, offset: 0x78127, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1A660, symBinAddr: 0x3FA60, symSize: 0x110 } - - { offsetInCU: 0xDE95, offset: 0x78239, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1A770, symBinAddr: 0x3FB70, symSize: 0x40 } - - { offsetInCU: 0xDEE2, offset: 0x78286, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1AA80, symBinAddr: 0x3FE80, symSize: 0x180 } - - { offsetInCU: 0xDF81, offset: 0x78325, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1AC00, symBinAddr: 0x40000, symSize: 0xD0 } - - { offsetInCU: 0xE03C, offset: 0x783E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFTf4nndnnnnnn_n', symObjAddr: 0x1AEE0, symBinAddr: 0x402A0, symSize: 0x700 } - - { offsetInCU: 0xE3F4, offset: 0x78798, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1B5E0, symBinAddr: 0x409A0, symSize: 0x170 } - - { offsetInCU: 0xE505, offset: 0x788A9, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x1B750, symBinAddr: 0x40B10, symSize: 0xA0 } - - { offsetInCU: 0xE608, offset: 0x789AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1BA70, symBinAddr: 0x40E00, symSize: 0x1B0 } - - { offsetInCU: 0xE75D, offset: 0x78B01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1BC20, symBinAddr: 0x40FB0, symSize: 0x400 } - - { offsetInCU: 0xEA71, offset: 0x78E15, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1D010, symBinAddr: 0x423A0, symSize: 0x170 } - - { offsetInCU: 0xEB8D, offset: 0x78F31, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x1D180, symBinAddr: 0x42510, symSize: 0xA0 } - - { offsetInCU: 0xEF17, offset: 0x792BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1D220, symBinAddr: 0x425B0, symSize: 0x1130 } - - { offsetInCU: 0x102DF, offset: 0x7A683, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E350, symBinAddr: 0x436E0, symSize: 0x1E0 } - - { offsetInCU: 0x1047D, offset: 0x7A821, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E530, symBinAddr: 0x438C0, symSize: 0x1B0 } - - { offsetInCU: 0x10570, offset: 0x7A914, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1E6E0, symBinAddr: 0x43A70, symSize: 0x90 } - - { offsetInCU: 0x10772, offset: 0x7AB16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1F240, symBinAddr: 0x445D0, symSize: 0x10 } - - { offsetInCU: 0x10786, offset: 0x7AB2A, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1F310, symBinAddr: 0x446A0, symSize: 0x20 } - - { offsetInCU: 0x1079A, offset: 0x7AB3E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1F330, symBinAddr: 0x446C0, symSize: 0x20 } - - { offsetInCU: 0x107AE, offset: 0x7AB52, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1F350, symBinAddr: 0x446E0, symSize: 0x60 } - - { offsetInCU: 0x107C2, offset: 0x7AB66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x1F3D0, symBinAddr: 0x44740, symSize: 0x30 } - - { offsetInCU: 0x107D6, offset: 0x7AB7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x1F400, symBinAddr: 0x44770, symSize: 0x180 } - - { offsetInCU: 0x107EA, offset: 0x7AB8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x1F580, symBinAddr: 0x448F0, symSize: 0x2D0 } - - { offsetInCU: 0x107FE, offset: 0x7ABA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x1F850, symBinAddr: 0x44BC0, symSize: 0x70 } - - { offsetInCU: 0x10812, offset: 0x7ABB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x1F8C0, symBinAddr: 0x44C30, symSize: 0x30 } - - { offsetInCU: 0x10826, offset: 0x7ABCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x1F8F0, symBinAddr: 0x44C60, symSize: 0xD0 } - - { offsetInCU: 0x1083A, offset: 0x7ABDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x1F9C0, symBinAddr: 0x44D30, symSize: 0xB0 } - - { offsetInCU: 0x1086F, offset: 0x7AC13, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x200E0, symBinAddr: 0x44DE0, symSize: 0xC0 } - - { offsetInCU: 0x108E5, offset: 0x7AC89, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x201A0, symBinAddr: 0x44EA0, symSize: 0x80 } - - { offsetInCU: 0x10912, offset: 0x7ACB6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x20220, symBinAddr: 0x44F20, symSize: 0x80 } - - { offsetInCU: 0x10988, offset: 0x7AD2C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x202A0, symBinAddr: 0x44FA0, symSize: 0x70 } - - { offsetInCU: 0x10AA1, offset: 0x7AE45, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x20310, symBinAddr: 0x45010, symSize: 0x800 } - - { offsetInCU: 0x10F5A, offset: 0x7B2FE, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x20B10, symBinAddr: 0x45810, symSize: 0x40 } - - { offsetInCU: 0x10F6E, offset: 0x7B312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x20C00, symBinAddr: 0x45880, symSize: 0x10 } - - { offsetInCU: 0x10F82, offset: 0x7B326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x20C10, symBinAddr: 0x45890, symSize: 0x30 } - - { offsetInCU: 0x10F96, offset: 0x7B33A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x20C40, symBinAddr: 0x458C0, symSize: 0x30 } - - { offsetInCU: 0x10FAA, offset: 0x7B34E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x20CE0, symBinAddr: 0x45910, symSize: 0x20 } - - { offsetInCU: 0x10FBE, offset: 0x7B362, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x20D20, symBinAddr: 0x45930, symSize: 0x30 } - - { offsetInCU: 0x10FD2, offset: 0x7B376, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x20D50, symBinAddr: 0x45960, symSize: 0x30 } - - { offsetInCU: 0x10FE6, offset: 0x7B38A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x20DE0, symBinAddr: 0x459F0, symSize: 0x30 } - - { offsetInCU: 0x1101B, offset: 0x7B3BF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x20EE0, symBinAddr: 0x45AF0, symSize: 0x40 } - - { offsetInCU: 0x1103A, offset: 0x7B3DE, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x20F20, symBinAddr: 0x45B30, symSize: 0x60 } - - { offsetInCU: 0x1107D, offset: 0x7B421, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x20F80, symBinAddr: 0x45B90, symSize: 0x80 } - - { offsetInCU: 0x11112, offset: 0x7B4B6, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x21000, symBinAddr: 0x45C10, symSize: 0x120 } - - { offsetInCU: 0x111FA, offset: 0x7B59E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x21170, symBinAddr: 0x45D80, symSize: 0x40 } - - { offsetInCU: 0x1120E, offset: 0x7B5B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x211B0, symBinAddr: 0x45DC0, symSize: 0x50 } - - { offsetInCU: 0x11222, offset: 0x7B5C6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x212C0, symBinAddr: 0x45ED0, symSize: 0x40 } - - { offsetInCU: 0x11236, offset: 0x7B5DA, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x21360, symBinAddr: 0x45F70, symSize: 0x10 } - - { offsetInCU: 0x1124A, offset: 0x7B5EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x21370, symBinAddr: 0x45F80, symSize: 0x20 } - - { offsetInCU: 0x1125E, offset: 0x7B602, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x21390, symBinAddr: 0x45FA0, symSize: 0x30 } - - { offsetInCU: 0x11272, offset: 0x7B616, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x21400, symBinAddr: 0x46010, symSize: 0x40 } - - { offsetInCU: 0x112B9, offset: 0x7B65D, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x170, symBinAddr: 0x255C0, symSize: 0x80 } - - { offsetInCU: 0x116F2, offset: 0x7BA96, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xBD50, symBinAddr: 0x311A0, symSize: 0x4C0 } - - { offsetInCU: 0x119D4, offset: 0x7BD78, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x121D0, symBinAddr: 0x37620, symSize: 0x1B0 } - - { offsetInCU: 0x11C01, offset: 0x7BFA5, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x182E0, symBinAddr: 0x3D730, symSize: 0x70 } - - { offsetInCU: 0x11D6E, offset: 0x7C112, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x1ACD0, symBinAddr: 0x400D0, symSize: 0xE0 } - - { offsetInCU: 0x11E9B, offset: 0x7C23F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x1ADF0, symBinAddr: 0x401B0, symSize: 0xF0 } - - { offsetInCU: 0x11FA2, offset: 0x7C346, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1B840, symBinAddr: 0x40BD0, symSize: 0x230 } - - { offsetInCU: 0x12070, offset: 0x7C414, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1C020, symBinAddr: 0x413B0, symSize: 0x1F0 } - - { offsetInCU: 0x1232C, offset: 0x7C6D0, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1E990, symBinAddr: 0x43D20, symSize: 0x260 } - - { offsetInCU: 0x12412, offset: 0x7C7B6, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1EBF0, symBinAddr: 0x43F80, symSize: 0xF0 } - - { offsetInCU: 0x12545, offset: 0x7C8E9, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1ECE0, symBinAddr: 0x44070, symSize: 0xF0 } - - { offsetInCU: 0x1268C, offset: 0x7CA30, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1EDD0, symBinAddr: 0x44160, symSize: 0xE0 } - - { offsetInCU: 0x127C7, offset: 0x7CB6B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1EEB0, symBinAddr: 0x44240, symSize: 0xF0 } - - { offsetInCU: 0x128F4, offset: 0x7CC98, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1EFA0, symBinAddr: 0x44330, symSize: 0xE0 } - - { offsetInCU: 0x12A3B, offset: 0x7CDDF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1F160, symBinAddr: 0x444F0, symSize: 0xE0 } - - { offsetInCU: 0x12B9A, offset: 0x7CF3E, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x20E10, symBinAddr: 0x45A20, symSize: 0xD0 } - - { offsetInCU: 0x12E40, offset: 0x7D1E4, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x8980, symBinAddr: 0x2DDD0, symSize: 0x120 } - - { offsetInCU: 0x27, offset: 0x7D79E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x46080, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7D7B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x46080, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7D7CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x460B0, symSize: 0x140 } - - { offsetInCU: 0x67, offset: 0x7D7DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x461F0, symSize: 0x440 } - - { offsetInCU: 0x7B, offset: 0x7D7F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x46630, symSize: 0x590 } - - { offsetInCU: 0x8F, offset: 0x7D806, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x46BC0, symSize: 0x10 } - - { offsetInCU: 0xA3, offset: 0x7D81A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x46BD0, symSize: 0x440 } - - { offsetInCU: 0xB7, offset: 0x7D82E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x47010, symSize: 0x40 } - - { offsetInCU: 0xCB, offset: 0x7D842, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x47050, symSize: 0x110 } - - { offsetInCU: 0xDF, offset: 0x7D856, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x47160, symSize: 0xA } - - { offsetInCU: 0x23B, offset: 0x7DB72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x480, symBinAddr: 0x475E0, symSize: 0x2D0 } - - { offsetInCU: 0x2F0, offset: 0x7DC27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x750, symBinAddr: 0x478B0, symSize: 0xE40 } - - { offsetInCU: 0x762, offset: 0x7E099, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x1590, symBinAddr: 0x486F0, symSize: 0x690 } - - { offsetInCU: 0x982, offset: 0x7E2B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1C20, symBinAddr: 0x48D80, symSize: 0xB00 } - - { offsetInCU: 0xD14, offset: 0x7E64B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x2750, symBinAddr: 0x498B0, symSize: 0x28F0 } - - { offsetInCU: 0x1EF3, offset: 0x7F82A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x10210, symBinAddr: 0x57370, symSize: 0x7F0 } - - { offsetInCU: 0x2281, offset: 0x7FBB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x5040, symBinAddr: 0x4C1A0, symSize: 0x1620 } - - { offsetInCU: 0x2DF3, offset: 0x8072A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x6660, symBinAddr: 0x4D7C0, symSize: 0xE80 } - - { offsetInCU: 0x3649, offset: 0x80F80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x74E0, symBinAddr: 0x4E640, symSize: 0x430 } - - { offsetInCU: 0x3760, offset: 0x81097, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8330, symBinAddr: 0x4F490, symSize: 0x210 } - - { offsetInCU: 0x3A1F, offset: 0x81356, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8540, symBinAddr: 0x4F6A0, symSize: 0xA50 } - - { offsetInCU: 0x4168, offset: 0x81A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8F90, symBinAddr: 0x500F0, symSize: 0x2F0 } - - { offsetInCU: 0x42A0, offset: 0x81BD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9280, symBinAddr: 0x503E0, symSize: 0x710 } - - { offsetInCU: 0x4693, offset: 0x81FCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x9990, symBinAddr: 0x50AF0, symSize: 0x760 } - - { offsetInCU: 0x496D, offset: 0x822A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA0F0, symBinAddr: 0x51250, symSize: 0x260 } - - { offsetInCU: 0x4A41, offset: 0x82378, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA350, symBinAddr: 0x514B0, symSize: 0x270 } - - { offsetInCU: 0x4ADA, offset: 0x82411, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0xA5C0, symBinAddr: 0x51720, symSize: 0xC0 } - - { offsetInCU: 0x4B07, offset: 0x8243E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0xA680, symBinAddr: 0x517E0, symSize: 0x20 } - - { offsetInCU: 0x4B43, offset: 0x8247A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xEC10, symBinAddr: 0x55D70, symSize: 0x8F0 } - - { offsetInCU: 0x4E8E, offset: 0x827C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xF500, symBinAddr: 0x56660, symSize: 0xA60 } - - { offsetInCU: 0x517D, offset: 0x82AB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xFF60, symBinAddr: 0x570C0, symSize: 0x240 } - - { offsetInCU: 0x5228, offset: 0x82B5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x10A00, symBinAddr: 0x57B60, symSize: 0x960 } - - { offsetInCU: 0x5533, offset: 0x82E6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11360, symBinAddr: 0x584C0, symSize: 0xBC0 } - - { offsetInCU: 0x5822, offset: 0x83159, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x11F20, symBinAddr: 0x59080, symSize: 0x2C0 } - - { offsetInCU: 0x58CD, offset: 0x83204, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x121E0, symBinAddr: 0x59340, symSize: 0x210 } - - { offsetInCU: 0x5D83, offset: 0x836BA, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2720, symBinAddr: 0x49880, symSize: 0x30 } - - { offsetInCU: 0x609A, offset: 0x839D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0xA6A0, symBinAddr: 0x51800, symSize: 0x20 } - - { offsetInCU: 0x60F3, offset: 0x83A2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xA6C0, symBinAddr: 0x51820, symSize: 0x90 } - - { offsetInCU: 0x61A1, offset: 0x83AD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0xA750, symBinAddr: 0x518B0, symSize: 0xDF0 } - - { offsetInCU: 0x66B3, offset: 0x83FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0xB540, symBinAddr: 0x526A0, symSize: 0x40 } - - { offsetInCU: 0x66F7, offset: 0x8402E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0xB580, symBinAddr: 0x526E0, symSize: 0x50 } - - { offsetInCU: 0x6722, offset: 0x84059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0xB5D0, symBinAddr: 0x52730, symSize: 0x50 } - - { offsetInCU: 0x6764, offset: 0x8409B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB620, symBinAddr: 0x52780, symSize: 0x60 } - - { offsetInCU: 0x6797, offset: 0x840CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xB680, symBinAddr: 0x527E0, symSize: 0x10 } - - { offsetInCU: 0x67C2, offset: 0x840F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB690, symBinAddr: 0x527F0, symSize: 0x70 } - - { offsetInCU: 0x6804, offset: 0x8413B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xB700, symBinAddr: 0x52860, symSize: 0x90 } - - { offsetInCU: 0x6846, offset: 0x8417D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xB790, symBinAddr: 0x528F0, symSize: 0x70 } - - { offsetInCU: 0x6879, offset: 0x841B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xB800, symBinAddr: 0x52960, symSize: 0x10 } - - { offsetInCU: 0x6895, offset: 0x841CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xB810, symBinAddr: 0x52970, symSize: 0x10 } - - { offsetInCU: 0x68C0, offset: 0x841F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xB820, symBinAddr: 0x52980, symSize: 0x70 } - - { offsetInCU: 0x68F3, offset: 0x8422A, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xB890, symBinAddr: 0x529F0, symSize: 0x10 } - - { offsetInCU: 0x6912, offset: 0x84249, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF11IoTConnect23AttV_Tg5', symObjAddr: 0xB8A0, symBinAddr: 0x52A00, symSize: 0x10 } - - { offsetInCU: 0x693F, offset: 0x84276, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xB8B0, symBinAddr: 0x52A10, symSize: 0xC0 } - - { offsetInCU: 0x69C7, offset: 0x842FE, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xB970, symBinAddr: 0x52AD0, symSize: 0xC0 } - - { offsetInCU: 0x6A7F, offset: 0x843B6, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xBB00, symBinAddr: 0x52C60, symSize: 0x260 } - - { offsetInCU: 0x6AF7, offset: 0x8442E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xBD60, symBinAddr: 0x52EC0, symSize: 0x220 } - - { offsetInCU: 0x6BA7, offset: 0x844DE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xBF80, symBinAddr: 0x530E0, symSize: 0x3C0 } - - { offsetInCU: 0x6CB3, offset: 0x845EA, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xC340, symBinAddr: 0x534A0, symSize: 0x3B0 } - - { offsetInCU: 0x6DE9, offset: 0x84720, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xC6F0, symBinAddr: 0x53850, symSize: 0x220 } - - { offsetInCU: 0x6E72, offset: 0x847A9, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xC910, symBinAddr: 0x53A70, symSize: 0x220 } - - { offsetInCU: 0x6EF0, offset: 0x84827, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xCB30, symBinAddr: 0x53C90, symSize: 0x40 } - - { offsetInCU: 0x6FB8, offset: 0x848EF, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xCB70, symBinAddr: 0x53CD0, symSize: 0xA0 } - - { offsetInCU: 0x7071, offset: 0x849A8, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xCC10, symBinAddr: 0x53D70, symSize: 0x40 } - - { offsetInCU: 0x70AE, offset: 0x849E5, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xCC50, symBinAddr: 0x53DB0, symSize: 0x20 } - - { offsetInCU: 0x70D7, offset: 0x84A0E, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xCC70, symBinAddr: 0x53DD0, symSize: 0x30 } - - { offsetInCU: 0x7100, offset: 0x84A37, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xCCA0, symBinAddr: 0x53E00, symSize: 0x20 } - - { offsetInCU: 0x7164, offset: 0x84A9B, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xCCC0, symBinAddr: 0x53E20, symSize: 0x120 } - - { offsetInCU: 0x7209, offset: 0x84B40, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xCF00, symBinAddr: 0x54060, symSize: 0x2C0 } - - { offsetInCU: 0x7280, offset: 0x84BB7, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xD470, symBinAddr: 0x545D0, symSize: 0x80 } - - { offsetInCU: 0x7298, offset: 0x84BCF, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xD4F0, symBinAddr: 0x54650, symSize: 0x60 } - - { offsetInCU: 0x72ED, offset: 0x84C24, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xD550, symBinAddr: 0x546B0, symSize: 0x170 } - - { offsetInCU: 0x735B, offset: 0x84C92, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xD6C0, symBinAddr: 0x54820, symSize: 0x100 } - - { offsetInCU: 0x7380, offset: 0x84CB7, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xD7C0, symBinAddr: 0x54920, symSize: 0x2D0 } - - { offsetInCU: 0x73B9, offset: 0x84CF0, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xDA90, symBinAddr: 0x54BF0, symSize: 0xA0 } - - { offsetInCU: 0x73D1, offset: 0x84D08, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xDB30, symBinAddr: 0x54C90, symSize: 0x20 } - - { offsetInCU: 0x73E9, offset: 0x84D20, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDB50, symBinAddr: 0x54CB0, symSize: 0x20 } - - { offsetInCU: 0x7401, offset: 0x84D38, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xDB70, symBinAddr: 0x54CD0, symSize: 0x20 } - - { offsetInCU: 0x7471, offset: 0x84DA8, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xDB90, symBinAddr: 0x54CF0, symSize: 0x110 } - - { offsetInCU: 0x75EA, offset: 0x84F21, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xDCA0, symBinAddr: 0x54E00, symSize: 0x1A0 } - - { offsetInCU: 0x778F, offset: 0x850C6, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xDE40, symBinAddr: 0x54FA0, symSize: 0x130 } - - { offsetInCU: 0x788F, offset: 0x851C6, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xDF70, symBinAddr: 0x550D0, symSize: 0x100 } - - { offsetInCU: 0x7ADB, offset: 0x85412, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xE070, symBinAddr: 0x551D0, symSize: 0x440 } - - { offsetInCU: 0x8108, offset: 0x85A3F, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xE4B0, symBinAddr: 0x55610, symSize: 0x2D0 } - - { offsetInCU: 0x8309, offset: 0x85C40, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xE780, symBinAddr: 0x558E0, symSize: 0x160 } - - { offsetInCU: 0x8499, offset: 0x85DD0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xE8E0, symBinAddr: 0x55A40, symSize: 0x200 } - - { offsetInCU: 0x8524, offset: 0x85E5B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xEAE0, symBinAddr: 0x55C40, symSize: 0x20 } - - { offsetInCU: 0x855D, offset: 0x85E94, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xEB00, symBinAddr: 0x55C60, symSize: 0x110 } - - { offsetInCU: 0x8613, offset: 0x85F4A, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x101A0, symBinAddr: 0x57300, symSize: 0x70 } - - { offsetInCU: 0x86BF, offset: 0x85FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x123F0, symBinAddr: 0x59550, symSize: 0xB50 } - - { offsetInCU: 0x8C3A, offset: 0x86571, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x12F40, symBinAddr: 0x5A0A0, symSize: 0x130 } - - { offsetInCU: 0x8DA6, offset: 0x866DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13070, symBinAddr: 0x5A1D0, symSize: 0x32B0 } - - { offsetInCU: 0x946C, offset: 0x86DA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x16320, symBinAddr: 0x5D480, symSize: 0x130 } - - { offsetInCU: 0x957D, offset: 0x86EB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x16450, symBinAddr: 0x5D5B0, symSize: 0x90 } - - { offsetInCU: 0x9600, offset: 0x86F37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x164E0, symBinAddr: 0x5D640, symSize: 0x7E0 } - - { offsetInCU: 0x99B0, offset: 0x872E7, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x16D30, symBinAddr: 0x5DE20, symSize: 0x20 } - - { offsetInCU: 0x99C4, offset: 0x872FB, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x16D50, symBinAddr: 0x5DE40, symSize: 0x20 } - - { offsetInCU: 0x99D8, offset: 0x8730F, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x16DA0, symBinAddr: 0x5DE60, symSize: 0x40 } - - { offsetInCU: 0x99EC, offset: 0x87323, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x16E60, symBinAddr: 0x5DEA0, symSize: 0x30 } - - { offsetInCU: 0x9A00, offset: 0x87337, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x16E90, symBinAddr: 0x5DED0, symSize: 0x30 } - - { offsetInCU: 0x9A14, offset: 0x8734B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOf', symObjAddr: 0x16EC0, symBinAddr: 0x5DF00, symSize: 0x40 } - - { offsetInCU: 0x9A28, offset: 0x8735F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x16F60, symBinAddr: 0x5DF70, symSize: 0x10 } - - { offsetInCU: 0x9A3C, offset: 0x87373, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16F70, symBinAddr: 0x5DF80, symSize: 0x20 } - - { offsetInCU: 0x9A50, offset: 0x87387, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x16F90, symBinAddr: 0x5DFA0, symSize: 0x10 } - - { offsetInCU: 0x9A64, offset: 0x8739B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x17020, symBinAddr: 0x5DFF0, symSize: 0x40 } - - { offsetInCU: 0x9ABC, offset: 0x873F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x170E0, symBinAddr: 0x5E0B0, symSize: 0x20 } - - { offsetInCU: 0x9AF8, offset: 0x8742F, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x17140, symBinAddr: 0x5E0D0, symSize: 0x30 } - - { offsetInCU: 0x9B27, offset: 0x8745E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x47170, symSize: 0x110 } - - { offsetInCU: 0x9B5D, offset: 0x87494, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x110, symBinAddr: 0x47280, symSize: 0x50 } - - { offsetInCU: 0x9C3D, offset: 0x87574, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x160, symBinAddr: 0x472D0, symSize: 0x90 } - - { offsetInCU: 0x9C60, offset: 0x87597, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x1F0, symBinAddr: 0x47360, symSize: 0xA0 } - - { offsetInCU: 0x9D71, offset: 0x876A8, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x290, symBinAddr: 0x47400, symSize: 0x90 } - - { offsetInCU: 0x9E6B, offset: 0x877A2, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x320, symBinAddr: 0x47490, symSize: 0x60 } - - { offsetInCU: 0x9EC7, offset: 0x877FE, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x380, symBinAddr: 0x474F0, symSize: 0x10 } - - { offsetInCU: 0x9EEF, offset: 0x87826, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3A0, symBinAddr: 0x47500, symSize: 0xE0 } - - { offsetInCU: 0x62, offset: 0x8823D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x5E210, symSize: 0x20 } - - { offsetInCU: 0x8B, offset: 0x88266, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1000, symBinAddr: 0x5F210, symSize: 0x10 } - - { offsetInCU: 0xB6, offset: 0x88291, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1010, symBinAddr: 0x5F220, symSize: 0x20 } - - { offsetInCU: 0xE7, offset: 0x882C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1030, symBinAddr: 0x5F240, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x882DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1040, symBinAddr: 0x5F250, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x882FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B80, symBinAddr: 0x64CD0, symSize: 0xE0 } - - { offsetInCU: 0x165, offset: 0x88340, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x5E230, symSize: 0x190 } - - { offsetInCU: 0x1BA, offset: 0x88395, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1090, symBinAddr: 0x5F2A0, symSize: 0x50 } - - { offsetInCU: 0x1F1, offset: 0x883CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E0, symBinAddr: 0x5F2F0, symSize: 0x50 } - - { offsetInCU: 0x214, offset: 0x883EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6C60, symBinAddr: 0x64DB0, symSize: 0x13C0 } - - { offsetInCU: 0x265, offset: 0x88440, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x1B0, symBinAddr: 0x5E3C0, symSize: 0x20 } - - { offsetInCU: 0x2B2, offset: 0x8848D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1130, symBinAddr: 0x5F340, symSize: 0x10 } - - { offsetInCU: 0x310, offset: 0x884EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1150, symBinAddr: 0x5F360, symSize: 0x20 } - - { offsetInCU: 0x38A, offset: 0x88565, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1180, symBinAddr: 0x5F390, symSize: 0x10 } - - { offsetInCU: 0x3B5, offset: 0x88590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1190, symBinAddr: 0x5F3A0, symSize: 0x20 } - - { offsetInCU: 0x3E6, offset: 0x885C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x11B0, symBinAddr: 0x5F3C0, symSize: 0x10 } - - { offsetInCU: 0x402, offset: 0x885DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11C0, symBinAddr: 0x5F3D0, symSize: 0x10 } - - { offsetInCU: 0x41E, offset: 0x885F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8A90, symBinAddr: 0x66200, symSize: 0x190 } - - { offsetInCU: 0x464, offset: 0x8863F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D0, symBinAddr: 0x5E3E0, symSize: 0x2B0 } - - { offsetInCU: 0x4B9, offset: 0x88694, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1210, symBinAddr: 0x5F420, symSize: 0x50 } - - { offsetInCU: 0x4F0, offset: 0x886CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1260, symBinAddr: 0x5F470, symSize: 0x50 } - - { offsetInCU: 0x513, offset: 0x886EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8C20, symBinAddr: 0x66390, symSize: 0x1180 } - - { offsetInCU: 0x55D, offset: 0x88738, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x480, symBinAddr: 0x5E690, symSize: 0x20 } - - { offsetInCU: 0x594, offset: 0x8876F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x4A0, symBinAddr: 0x5E6B0, symSize: 0x20 } - - { offsetInCU: 0x612, offset: 0x887ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x12F0, symBinAddr: 0x5F500, symSize: 0x70 } - - { offsetInCU: 0x678, offset: 0x88853, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1360, symBinAddr: 0x5F570, symSize: 0x30 } - - { offsetInCU: 0x694, offset: 0x8886F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5F5A0, symSize: 0x10 } - - { offsetInCU: 0x6CA, offset: 0x888A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A0, symBinAddr: 0x5F5B0, symSize: 0x60 } - - { offsetInCU: 0x74F, offset: 0x8892A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1400, symBinAddr: 0x5F610, symSize: 0x10 } - - { offsetInCU: 0x76B, offset: 0x88946, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1410, symBinAddr: 0x5F620, symSize: 0x10 } - - { offsetInCU: 0x788, offset: 0x88963, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x4C0, symBinAddr: 0x5E6D0, symSize: 0x190 } - - { offsetInCU: 0x7DD, offset: 0x889B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1460, symBinAddr: 0x5F670, symSize: 0x50 } - - { offsetInCU: 0x814, offset: 0x889EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x14B0, symBinAddr: 0x5F6C0, symSize: 0x50 } - - { offsetInCU: 0x837, offset: 0x88A12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9EF0, symBinAddr: 0x67660, symSize: 0x210 } - - { offsetInCU: 0x887, offset: 0x88A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x650, symBinAddr: 0x5E860, symSize: 0x20 } - - { offsetInCU: 0x8B0, offset: 0x88A8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1500, symBinAddr: 0x5F710, symSize: 0x10 } - - { offsetInCU: 0x8DB, offset: 0x88AB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1510, symBinAddr: 0x5F720, symSize: 0x20 } - - { offsetInCU: 0x90C, offset: 0x88AE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1530, symBinAddr: 0x5F740, symSize: 0x10 } - - { offsetInCU: 0x928, offset: 0x88B03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1540, symBinAddr: 0x5F750, symSize: 0x10 } - - { offsetInCU: 0x944, offset: 0x88B1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA100, symBinAddr: 0x67870, symSize: 0x240 } - - { offsetInCU: 0x98A, offset: 0x88B65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x670, symBinAddr: 0x5E880, symSize: 0x2A0 } - - { offsetInCU: 0x9DF, offset: 0x88BBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1590, symBinAddr: 0x5F7A0, symSize: 0x50 } - - { offsetInCU: 0xA16, offset: 0x88BF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15E0, symBinAddr: 0x5F7F0, symSize: 0x50 } - - { offsetInCU: 0xA39, offset: 0x88C14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA340, symBinAddr: 0x67AB0, symSize: 0x5E0 } - - { offsetInCU: 0xA89, offset: 0x88C64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x910, symBinAddr: 0x5EB20, symSize: 0x30 } - - { offsetInCU: 0xAD8, offset: 0x88CB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1630, symBinAddr: 0x5F840, symSize: 0x10 } - - { offsetInCU: 0xB61, offset: 0x88D3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1640, symBinAddr: 0x5F850, symSize: 0x40 } - - { offsetInCU: 0xC45, offset: 0x88E20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1680, symBinAddr: 0x5F890, symSize: 0x20 } - - { offsetInCU: 0xCB7, offset: 0x88E92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x5F8F0, symSize: 0x10 } - - { offsetInCU: 0xCE2, offset: 0x88EBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x5F900, symSize: 0x20 } - - { offsetInCU: 0xD13, offset: 0x88EEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1710, symBinAddr: 0x5F920, symSize: 0x10 } - - { offsetInCU: 0xD2F, offset: 0x88F0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1720, symBinAddr: 0x5F930, symSize: 0x10 } - - { offsetInCU: 0xD4B, offset: 0x88F26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA920, symBinAddr: 0x68090, symSize: 0xA0 } - - { offsetInCU: 0xD91, offset: 0x88F6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x940, symBinAddr: 0x5EB50, symSize: 0x110 } - - { offsetInCU: 0xDE6, offset: 0x88FC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5F980, symSize: 0x30 } - - { offsetInCU: 0xE1D, offset: 0x88FF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x5F9B0, symSize: 0x20 } - - { offsetInCU: 0xE40, offset: 0x8901B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA9C0, symBinAddr: 0x68130, symSize: 0x180 } - - { offsetInCU: 0xE91, offset: 0x8906C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0xA50, symBinAddr: 0x5EC60, symSize: 0x20 } - - { offsetInCU: 0xEBA, offset: 0x89095, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x5FA50, symSize: 0x10 } - - { offsetInCU: 0xEE5, offset: 0x890C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x5FA60, symSize: 0x20 } - - { offsetInCU: 0xF16, offset: 0x890F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x5FA80, symSize: 0x10 } - - { offsetInCU: 0xF32, offset: 0x8910D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x5FA90, symSize: 0x10 } - - { offsetInCU: 0xF4E, offset: 0x89129, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAB40, symBinAddr: 0x682B0, symSize: 0x1E0 } - - { offsetInCU: 0xF94, offset: 0x8916F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA70, symBinAddr: 0x5EC80, symSize: 0x250 } - - { offsetInCU: 0xFE9, offset: 0x891C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x5FAE0, symSize: 0x50 } - - { offsetInCU: 0x1020, offset: 0x891FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1920, symBinAddr: 0x5FB30, symSize: 0x50 } - - { offsetInCU: 0x1043, offset: 0x8921E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAD20, symBinAddr: 0x68490, symSize: 0x840 } - - { offsetInCU: 0x108D, offset: 0x89268, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xCC0, symBinAddr: 0x5EED0, symSize: 0x20 } - - { offsetInCU: 0x10C4, offset: 0x8929F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCE0, symBinAddr: 0x5EEF0, symSize: 0x20 } - - { offsetInCU: 0x1137, offset: 0x89312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5FCD0, symSize: 0x40 } - - { offsetInCU: 0x117D, offset: 0x89358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5FD10, symSize: 0x30 } - - { offsetInCU: 0x1191, offset: 0x8936C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1B30, symBinAddr: 0x5FD40, symSize: 0x10 } - - { offsetInCU: 0x11C7, offset: 0x893A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5FD50, symSize: 0x30 } - - { offsetInCU: 0x122C, offset: 0x89407, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1B70, symBinAddr: 0x5FD80, symSize: 0x10 } - - { offsetInCU: 0x1248, offset: 0x89423, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B80, symBinAddr: 0x5FD90, symSize: 0x10 } - - { offsetInCU: 0x1264, offset: 0x8943F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xB5F0, symBinAddr: 0x68D60, symSize: 0x50 } - - { offsetInCU: 0x1290, offset: 0x8946B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x5EF10, symSize: 0x2E0 } - - { offsetInCU: 0x12E5, offset: 0x894C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x5FDE0, symSize: 0x50 } - - { offsetInCU: 0x131C, offset: 0x894F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C20, symBinAddr: 0x5FE30, symSize: 0x50 } - - { offsetInCU: 0x133F, offset: 0x8951A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB640, symBinAddr: 0x68DB0, symSize: 0x950 } - - { offsetInCU: 0x13B4, offset: 0x8958F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1C70, symBinAddr: 0x5FE80, symSize: 0x1D0 } - - { offsetInCU: 0x1410, offset: 0x895EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x1E40, symBinAddr: 0x60050, symSize: 0x20 } - - { offsetInCU: 0x1455, offset: 0x89630, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6930, symBinAddr: 0x64B20, symSize: 0x50 } - - { offsetInCU: 0x14C0, offset: 0x8969B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6980, symBinAddr: 0x64B70, symSize: 0x80 } - - { offsetInCU: 0x1514, offset: 0x896EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6A00, symBinAddr: 0x64BF0, symSize: 0x10 } - - { offsetInCU: 0x154A, offset: 0x89725, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6A10, symBinAddr: 0x64C00, symSize: 0x20 } - - { offsetInCU: 0x15CB, offset: 0x897A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6A60, symBinAddr: 0x64C50, symSize: 0x10 } - - { offsetInCU: 0x15E8, offset: 0x897C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x1E60, symBinAddr: 0x60070, symSize: 0x20 } - - { offsetInCU: 0x15FC, offset: 0x897D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x1E80, symBinAddr: 0x60090, symSize: 0x140 } - - { offsetInCU: 0x1610, offset: 0x897EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x1FC0, symBinAddr: 0x601D0, symSize: 0x500 } - - { offsetInCU: 0x1624, offset: 0x897FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x24C0, symBinAddr: 0x606D0, symSize: 0xED0 } - - { offsetInCU: 0x163F, offset: 0x8981A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x3390, symBinAddr: 0x615A0, symSize: 0x30 } - - { offsetInCU: 0x1668, offset: 0x89843, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x33C0, symBinAddr: 0x615D0, symSize: 0x20 } - - { offsetInCU: 0x167C, offset: 0x89857, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x33E0, symBinAddr: 0x615F0, symSize: 0x20 } - - { offsetInCU: 0x1690, offset: 0x8986B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x3400, symBinAddr: 0x61610, symSize: 0x20 } - - { offsetInCU: 0x16A4, offset: 0x8987F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x3420, symBinAddr: 0x61630, symSize: 0x20 } - - { offsetInCU: 0x16B8, offset: 0x89893, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3440, symBinAddr: 0x61650, symSize: 0x10 } - - { offsetInCU: 0x16CC, offset: 0x898A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x3450, symBinAddr: 0x61660, symSize: 0x580 } - - { offsetInCU: 0x16E0, offset: 0x898BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x39D0, symBinAddr: 0x61BE0, symSize: 0x50 } - - { offsetInCU: 0x16F4, offset: 0x898CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3A20, symBinAddr: 0x61C30, symSize: 0x140 } - - { offsetInCU: 0x1708, offset: 0x898E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x3B60, symBinAddr: 0x61D70, symSize: 0x10 } - - { offsetInCU: 0x171C, offset: 0x898F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3B70, symBinAddr: 0x61D80, symSize: 0x30 } - - { offsetInCU: 0x1730, offset: 0x8990B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x3BA0, symBinAddr: 0x61DB0, symSize: 0x120 } - - { offsetInCU: 0x1744, offset: 0x8991F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x3CC0, symBinAddr: 0x61ED0, symSize: 0x480 } - - { offsetInCU: 0x1758, offset: 0x89933, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x4140, symBinAddr: 0x62350, symSize: 0x9D0 } - - { offsetInCU: 0x176C, offset: 0x89947, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4B10, symBinAddr: 0x62D20, symSize: 0x10 } - - { offsetInCU: 0x1780, offset: 0x8995B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4B20, symBinAddr: 0x62D30, symSize: 0x500 } - - { offsetInCU: 0x1794, offset: 0x8996F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x5020, symBinAddr: 0x63230, symSize: 0x50 } - - { offsetInCU: 0x17A8, offset: 0x89983, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x5070, symBinAddr: 0x63280, symSize: 0x130 } - - { offsetInCU: 0x17BC, offset: 0x89997, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x51A0, symBinAddr: 0x633B0, symSize: 0x10 } - - { offsetInCU: 0x17D0, offset: 0x899AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x51B0, symBinAddr: 0x633C0, symSize: 0xC0 } - - { offsetInCU: 0x17E4, offset: 0x899BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x5270, symBinAddr: 0x63480, symSize: 0x240 } - - { offsetInCU: 0x17F8, offset: 0x899D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x54B0, symBinAddr: 0x636C0, symSize: 0x450 } - - { offsetInCU: 0x180C, offset: 0x899E7, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5900, symBinAddr: 0x63B10, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x899FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x5910, symBinAddr: 0x63B20, symSize: 0x250 } - - { offsetInCU: 0x1834, offset: 0x89A0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x5B60, symBinAddr: 0x63D70, symSize: 0x50 } - - { offsetInCU: 0x1848, offset: 0x89A23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x5BB0, symBinAddr: 0x63DC0, symSize: 0xA0 } - - { offsetInCU: 0x185C, offset: 0x89A37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x5C50, symBinAddr: 0x63E60, symSize: 0x10 } - - { offsetInCU: 0x1870, offset: 0x89A4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x5C60, symBinAddr: 0x63E70, symSize: 0x70 } - - { offsetInCU: 0x1884, offset: 0x89A5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x5CD0, symBinAddr: 0x63EE0, symSize: 0x150 } - - { offsetInCU: 0x1898, offset: 0x89A73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x5E20, symBinAddr: 0x64030, symSize: 0x190 } - - { offsetInCU: 0x18AC, offset: 0x89A87, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5FB0, symBinAddr: 0x641C0, symSize: 0x10 } - - { offsetInCU: 0x18C0, offset: 0x89A9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x5FC0, symBinAddr: 0x641D0, symSize: 0x130 } - - { offsetInCU: 0x18D4, offset: 0x89AAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x60F0, symBinAddr: 0x64300, symSize: 0x50 } - - { offsetInCU: 0x18E8, offset: 0x89AC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x6140, symBinAddr: 0x64350, symSize: 0x80 } - - { offsetInCU: 0x18FC, offset: 0x89AD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x61C0, symBinAddr: 0x643D0, symSize: 0x10 } - - { offsetInCU: 0x1910, offset: 0x89AEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x61D0, symBinAddr: 0x643E0, symSize: 0x50 } - - { offsetInCU: 0x1924, offset: 0x89AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x6220, symBinAddr: 0x64430, symSize: 0x120 } - - { offsetInCU: 0x1938, offset: 0x89B13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x6340, symBinAddr: 0x64550, symSize: 0x1C0 } - - { offsetInCU: 0x194C, offset: 0x89B27, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6500, symBinAddr: 0x64710, symSize: 0x10 } - - { offsetInCU: 0x1960, offset: 0x89B3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x6510, symBinAddr: 0x64720, symSize: 0x150 } - - { offsetInCU: 0x1974, offset: 0x89B4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x6660, symBinAddr: 0x64870, symSize: 0x50 } - - { offsetInCU: 0x1988, offset: 0x89B63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x66B0, symBinAddr: 0x648C0, symSize: 0x80 } - - { offsetInCU: 0x199C, offset: 0x89B77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x6730, symBinAddr: 0x64940, symSize: 0x10 } - - { offsetInCU: 0x19B0, offset: 0x89B8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x6740, symBinAddr: 0x64950, symSize: 0x30 } - - { offsetInCU: 0x19C4, offset: 0x89B9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x6770, symBinAddr: 0x64980, symSize: 0x40 } - - { offsetInCU: 0x19D8, offset: 0x89BB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x67B0, symBinAddr: 0x649C0, symSize: 0x60 } - - { offsetInCU: 0x19EC, offset: 0x89BC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x6830, symBinAddr: 0x64A20, symSize: 0x50 } - - { offsetInCU: 0x1A00, offset: 0x89BDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x6880, symBinAddr: 0x64A70, symSize: 0x50 } - - { offsetInCU: 0x1A14, offset: 0x89BEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x68D0, symBinAddr: 0x64AC0, symSize: 0x50 } - - { offsetInCU: 0x1A28, offset: 0x89C03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x6920, symBinAddr: 0x64B10, symSize: 0x10 } - - { offsetInCU: 0x1A3C, offset: 0x89C17, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x6A70, symBinAddr: 0x64C60, symSize: 0x10 } - - { offsetInCU: 0x1A50, offset: 0x89C2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x6A80, symBinAddr: 0x64C70, symSize: 0x30 } - - { offsetInCU: 0x1A64, offset: 0x89C3F, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6B50, symBinAddr: 0x64CA0, symSize: 0x30 } - - { offsetInCU: 0x1A78, offset: 0x89C53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x8020, symBinAddr: 0x66170, symSize: 0x30 } - - { offsetInCU: 0x1A8C, offset: 0x89C67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x8050, symBinAddr: 0x661A0, symSize: 0x30 } - - { offsetInCU: 0x1AA0, offset: 0x89C7B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x8A60, symBinAddr: 0x661D0, symSize: 0x30 } - - { offsetInCU: 0x1AB4, offset: 0x89C8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0x9DA0, symBinAddr: 0x67510, symSize: 0x30 } - - { offsetInCU: 0x1AC8, offset: 0x89CA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x67540, symSize: 0x30 } - - { offsetInCU: 0x1ADC, offset: 0x89CB7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0x9E00, symBinAddr: 0x67570, symSize: 0x30 } - - { offsetInCU: 0x1AF0, offset: 0x89CCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0x9E30, symBinAddr: 0x675A0, symSize: 0x30 } - - { offsetInCU: 0x1B04, offset: 0x89CDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0x9E60, symBinAddr: 0x675D0, symSize: 0x30 } - - { offsetInCU: 0x1B18, offset: 0x89CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0x9E90, symBinAddr: 0x67600, symSize: 0x30 } - - { offsetInCU: 0x1B2C, offset: 0x89D07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0x9EC0, symBinAddr: 0x67630, symSize: 0x30 } - - { offsetInCU: 0x1B40, offset: 0x89D1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xB560, symBinAddr: 0x68CD0, symSize: 0x30 } - - { offsetInCU: 0x1B54, offset: 0x89D2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xB590, symBinAddr: 0x68D00, symSize: 0x30 } - - { offsetInCU: 0x1B68, offset: 0x89D43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xB5C0, symBinAddr: 0x68D30, symSize: 0x30 } - - { offsetInCU: 0x1B7C, offset: 0x89D57, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xBF90, symBinAddr: 0x69700, symSize: 0x30 } - - { offsetInCU: 0x1B90, offset: 0x89D6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xBFC0, symBinAddr: 0x69730, symSize: 0x30 } - - { offsetInCU: 0x1BA4, offset: 0x89D7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xBFF0, symBinAddr: 0x69760, symSize: 0x30 } - - { offsetInCU: 0x1BB8, offset: 0x89D93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xC050, symBinAddr: 0x697C0, symSize: 0x30 } - - { offsetInCU: 0x1BCC, offset: 0x89DA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xC080, symBinAddr: 0x697F0, symSize: 0x30 } - - { offsetInCU: 0x1BE0, offset: 0x89DBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC0D0, symBinAddr: 0x69820, symSize: 0x80 } - - { offsetInCU: 0x1BF4, offset: 0x89DCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC150, symBinAddr: 0x698A0, symSize: 0xD0 } - - { offsetInCU: 0x1C08, offset: 0x89DE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xC220, symBinAddr: 0x69970, symSize: 0x10 } - - { offsetInCU: 0x1C1C, offset: 0x89DF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC230, symBinAddr: 0x69980, symSize: 0x10 } - - { offsetInCU: 0x1C30, offset: 0x89E0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xC240, symBinAddr: 0x69990, symSize: 0x10 } - - { offsetInCU: 0x1C44, offset: 0x89E1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC250, symBinAddr: 0x699A0, symSize: 0x10 } - - { offsetInCU: 0x1C58, offset: 0x89E33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC260, symBinAddr: 0x699B0, symSize: 0x80 } - - { offsetInCU: 0x1C6C, offset: 0x89E47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC2E0, symBinAddr: 0x69A30, symSize: 0xD0 } - - { offsetInCU: 0x1C80, offset: 0x89E5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC3B0, symBinAddr: 0x69B00, symSize: 0x10 } - - { offsetInCU: 0x1C94, offset: 0x89E6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC3C0, symBinAddr: 0x69B10, symSize: 0x10 } - - { offsetInCU: 0x1CA8, offset: 0x89E83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xC3D0, symBinAddr: 0x69B20, symSize: 0x80 } - - { offsetInCU: 0x1CBC, offset: 0x89E97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xC450, symBinAddr: 0x69BA0, symSize: 0xD0 } - - { offsetInCU: 0x1CD0, offset: 0x89EAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xC520, symBinAddr: 0x69C70, symSize: 0x10 } - - { offsetInCU: 0x1CE4, offset: 0x89EBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xC530, symBinAddr: 0x69C80, symSize: 0x10 } - - { offsetInCU: 0x1CF8, offset: 0x89ED3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC540, symBinAddr: 0x69C90, symSize: 0x80 } - - { offsetInCU: 0x1D0C, offset: 0x89EE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC5C0, symBinAddr: 0x69D10, symSize: 0xD0 } - - { offsetInCU: 0x1D20, offset: 0x89EFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC690, symBinAddr: 0x69DE0, symSize: 0x10 } - - { offsetInCU: 0x1D34, offset: 0x89F0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC6A0, symBinAddr: 0x69DF0, symSize: 0x10 } - - { offsetInCU: 0x1D48, offset: 0x89F23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC6B0, symBinAddr: 0x69E00, symSize: 0x80 } - - { offsetInCU: 0x1D5C, offset: 0x89F37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC730, symBinAddr: 0x69E80, symSize: 0xD0 } - - { offsetInCU: 0x1D70, offset: 0x89F4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xC800, symBinAddr: 0x69F50, symSize: 0x10 } - - { offsetInCU: 0x1D84, offset: 0x89F5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC810, symBinAddr: 0x69F60, symSize: 0x10 } - - { offsetInCU: 0x1D98, offset: 0x89F73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xC820, symBinAddr: 0x69F70, symSize: 0x10 } - - { offsetInCU: 0x1DAC, offset: 0x89F87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC830, symBinAddr: 0x69F80, symSize: 0x10 } - - { offsetInCU: 0x1DC0, offset: 0x89F9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC840, symBinAddr: 0x69F90, symSize: 0x80 } - - { offsetInCU: 0x1DD4, offset: 0x89FAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC8C0, symBinAddr: 0x6A010, symSize: 0xD0 } - - { offsetInCU: 0x1DE8, offset: 0x89FC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC990, symBinAddr: 0x6A0E0, symSize: 0x10 } - - { offsetInCU: 0x1DFC, offset: 0x89FD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC9A0, symBinAddr: 0x6A0F0, symSize: 0x10 } - - { offsetInCU: 0x1E10, offset: 0x89FEB, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xC9B0, symBinAddr: 0x6A100, symSize: 0x30 } - - { offsetInCU: 0x1E24, offset: 0x89FFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xC9E0, symBinAddr: 0x6A130, symSize: 0x20 } - - { offsetInCU: 0x1E38, offset: 0x8A013, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xCA00, symBinAddr: 0x6A150, symSize: 0x40 } - - { offsetInCU: 0x1E4C, offset: 0x8A027, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xCA40, symBinAddr: 0x6A190, symSize: 0x10 } - - { offsetInCU: 0x1E60, offset: 0x8A03B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCA50, symBinAddr: 0x6A1A0, symSize: 0x10 } - - { offsetInCU: 0x1E74, offset: 0x8A04F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCA60, symBinAddr: 0x6A1B0, symSize: 0x30 } - - { offsetInCU: 0x1E88, offset: 0x8A063, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCA90, symBinAddr: 0x6A1E0, symSize: 0x10 } - - { offsetInCU: 0x1E9C, offset: 0x8A077, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCAA0, symBinAddr: 0x6A1F0, symSize: 0x30 } - - { offsetInCU: 0x1EB0, offset: 0x8A08B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCAD0, symBinAddr: 0x6A220, symSize: 0x10 } - - { offsetInCU: 0x1EC4, offset: 0x8A09F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCAE0, symBinAddr: 0x6A230, symSize: 0x30 } - - { offsetInCU: 0x1ED8, offset: 0x8A0B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xCB10, symBinAddr: 0x6A260, symSize: 0x10 } - - { offsetInCU: 0x1EEC, offset: 0x8A0C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xCB20, symBinAddr: 0x6A270, symSize: 0x30 } - - { offsetInCU: 0x1F00, offset: 0x8A0DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCB50, symBinAddr: 0x6A2A0, symSize: 0x10 } - - { offsetInCU: 0x1F14, offset: 0x8A0EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCB60, symBinAddr: 0x6A2B0, symSize: 0x30 } - - { offsetInCU: 0x1F28, offset: 0x8A103, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCB90, symBinAddr: 0x6A2E0, symSize: 0x10 } - - { offsetInCU: 0x1F3C, offset: 0x8A117, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCBA0, symBinAddr: 0x6A2F0, symSize: 0x30 } - - { offsetInCU: 0x1F50, offset: 0x8A12B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCBD0, symBinAddr: 0x6A320, symSize: 0x10 } - - { offsetInCU: 0x1F64, offset: 0x8A13F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCBE0, symBinAddr: 0x6A330, symSize: 0x30 } - - { offsetInCU: 0x1F78, offset: 0x8A153, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC10, symBinAddr: 0x6A360, symSize: 0x10 } - - { offsetInCU: 0x1F8C, offset: 0x8A167, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCC20, symBinAddr: 0x6A370, symSize: 0x30 } - - { offsetInCU: 0x1FA0, offset: 0x8A17B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCC50, symBinAddr: 0x6A3A0, symSize: 0x10 } - - { offsetInCU: 0x1FB4, offset: 0x8A18F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCC60, symBinAddr: 0x6A3B0, symSize: 0x30 } - - { offsetInCU: 0x1FC8, offset: 0x8A1A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC90, symBinAddr: 0x6A3E0, symSize: 0x10 } - - { offsetInCU: 0x1FDC, offset: 0x8A1B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCCA0, symBinAddr: 0x6A3F0, symSize: 0x30 } - - { offsetInCU: 0x1FF0, offset: 0x8A1CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCCD0, symBinAddr: 0x6A420, symSize: 0x10 } - - { offsetInCU: 0x2004, offset: 0x8A1DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCCE0, symBinAddr: 0x6A430, symSize: 0x30 } - - { offsetInCU: 0x2018, offset: 0x8A1F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD10, symBinAddr: 0x6A460, symSize: 0x10 } - - { offsetInCU: 0x202C, offset: 0x8A207, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xCD20, symBinAddr: 0x6A470, symSize: 0x30 } - - { offsetInCU: 0x2040, offset: 0x8A21B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCD50, symBinAddr: 0x6A4A0, symSize: 0x10 } - - { offsetInCU: 0x2054, offset: 0x8A22F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCD60, symBinAddr: 0x6A4B0, symSize: 0x30 } - - { offsetInCU: 0x2068, offset: 0x8A243, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD90, symBinAddr: 0x6A4E0, symSize: 0x10 } - - { offsetInCU: 0x207C, offset: 0x8A257, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCDA0, symBinAddr: 0x6A4F0, symSize: 0x30 } - - { offsetInCU: 0x2090, offset: 0x8A26B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCDD0, symBinAddr: 0x6A520, symSize: 0x10 } - - { offsetInCU: 0x20A4, offset: 0x8A27F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCDE0, symBinAddr: 0x6A530, symSize: 0x30 } - - { offsetInCU: 0x20B8, offset: 0x8A293, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE10, symBinAddr: 0x6A560, symSize: 0x10 } - - { offsetInCU: 0x20CC, offset: 0x8A2A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCE20, symBinAddr: 0x6A570, symSize: 0x30 } - - { offsetInCU: 0x20E0, offset: 0x8A2BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCE50, symBinAddr: 0x6A5A0, symSize: 0x10 } - - { offsetInCU: 0x20F4, offset: 0x8A2CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCE60, symBinAddr: 0x6A5B0, symSize: 0x30 } - - { offsetInCU: 0x2108, offset: 0x8A2E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE90, symBinAddr: 0x6A5E0, symSize: 0x10 } - - { offsetInCU: 0x211C, offset: 0x8A2F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCEA0, symBinAddr: 0x6A5F0, symSize: 0x30 } - - { offsetInCU: 0x2130, offset: 0x8A30B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xCED0, symBinAddr: 0x6A620, symSize: 0x30 } - - { offsetInCU: 0x2144, offset: 0x8A31F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xCF00, symBinAddr: 0x6A650, symSize: 0x80 } - - { offsetInCU: 0x2158, offset: 0x8A333, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xCF80, symBinAddr: 0x6A6D0, symSize: 0xD0 } - - { offsetInCU: 0x216C, offset: 0x8A347, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xD050, symBinAddr: 0x6A7A0, symSize: 0x10 } - - { offsetInCU: 0x2180, offset: 0x8A35B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xD060, symBinAddr: 0x6A7B0, symSize: 0x10 } - - { offsetInCU: 0x2194, offset: 0x8A36F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD070, symBinAddr: 0x6A7C0, symSize: 0x10 } - - { offsetInCU: 0x21A8, offset: 0x8A383, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD080, symBinAddr: 0x6A7D0, symSize: 0x30 } - - { offsetInCU: 0x21BC, offset: 0x8A397, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD0B0, symBinAddr: 0x6A800, symSize: 0x10 } - - { offsetInCU: 0x21D0, offset: 0x8A3AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD0C0, symBinAddr: 0x6A810, symSize: 0x30 } - - { offsetInCU: 0x21E4, offset: 0x8A3BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD0F0, symBinAddr: 0x6A840, symSize: 0x10 } - - { offsetInCU: 0x21F8, offset: 0x8A3D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD100, symBinAddr: 0x6A850, symSize: 0x30 } - - { offsetInCU: 0x2226, offset: 0x8A401, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1050, symBinAddr: 0x5F260, symSize: 0x20 } - - { offsetInCU: 0x2242, offset: 0x8A41D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1070, symBinAddr: 0x5F280, symSize: 0x20 } - - { offsetInCU: 0x2264, offset: 0x8A43F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11D0, symBinAddr: 0x5F3E0, symSize: 0x20 } - - { offsetInCU: 0x2280, offset: 0x8A45B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11F0, symBinAddr: 0x5F400, symSize: 0x20 } - - { offsetInCU: 0x229C, offset: 0x8A477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x12B0, symBinAddr: 0x5F4C0, symSize: 0x10 } - - { offsetInCU: 0x22B8, offset: 0x8A493, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12C0, symBinAddr: 0x5F4D0, symSize: 0x10 } - - { offsetInCU: 0x22D4, offset: 0x8A4AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x12D0, symBinAddr: 0x5F4E0, symSize: 0x10 } - - { offsetInCU: 0x22F0, offset: 0x8A4CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x12E0, symBinAddr: 0x5F4F0, symSize: 0x10 } - - { offsetInCU: 0x2312, offset: 0x8A4ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1420, symBinAddr: 0x5F630, symSize: 0x20 } - - { offsetInCU: 0x232E, offset: 0x8A509, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1440, symBinAddr: 0x5F650, symSize: 0x20 } - - { offsetInCU: 0x2350, offset: 0x8A52B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1550, symBinAddr: 0x5F760, symSize: 0x20 } - - { offsetInCU: 0x236C, offset: 0x8A547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x5F780, symSize: 0x20 } - - { offsetInCU: 0x23B5, offset: 0x8A590, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x16A0, symBinAddr: 0x5F8B0, symSize: 0x40 } - - { offsetInCU: 0x2458, offset: 0x8A633, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1730, symBinAddr: 0x5F940, symSize: 0x20 } - - { offsetInCU: 0x2474, offset: 0x8A64F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x5F960, symSize: 0x20 } - - { offsetInCU: 0x2496, offset: 0x8A671, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x5FAA0, symSize: 0x20 } - - { offsetInCU: 0x24B2, offset: 0x8A68D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5FAC0, symSize: 0x20 } - - { offsetInCU: 0x24EC, offset: 0x8A6C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1970, symBinAddr: 0x5FB80, symSize: 0x80 } - - { offsetInCU: 0x25BB, offset: 0x8A796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5FC00, symSize: 0x50 } - - { offsetInCU: 0x2639, offset: 0x8A814, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A40, symBinAddr: 0x5FC50, symSize: 0x30 } - - { offsetInCU: 0x268B, offset: 0x8A866, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A70, symBinAddr: 0x5FC80, symSize: 0x50 } - - { offsetInCU: 0x26ED, offset: 0x8A8C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1B90, symBinAddr: 0x5FDA0, symSize: 0x20 } - - { offsetInCU: 0x2709, offset: 0x8A8E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x5FDC0, symSize: 0x20 } - - { offsetInCU: 0x2740, offset: 0x8A91B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6A30, symBinAddr: 0x64C20, symSize: 0x30 } - - { offsetInCU: 0x27, offset: 0x8AB25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6AA20, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x8AB49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6AA20, symSize: 0x10 } - - { offsetInCU: 0x69, offset: 0x8AB67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x6AA30, symSize: 0x10 } - - { offsetInCU: 0xA5, offset: 0x8ABA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x6AA40, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8ABC1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x6AA50, symSize: 0x10 } - - { offsetInCU: 0xEE, offset: 0x8ABEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x6AA60, symSize: 0x10 } - - { offsetInCU: 0x10C, offset: 0x8AC0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x6AA70, symSize: 0x10 } - - { offsetInCU: 0x148, offset: 0x8AC46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x6AA80, symSize: 0x20 } - - { offsetInCU: 0x176, offset: 0x8AC74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x6AAA0, symSize: 0x10 } - - { offsetInCU: 0x1A1, offset: 0x8AC9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x6AAB0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x8ACBD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x6AAC0, symSize: 0x10 } - - { offsetInCU: 0x1FD, offset: 0x8ACFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x6AAD0, symSize: 0x20 } - - { offsetInCU: 0x22B, offset: 0x8AD29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x6AAF0, symSize: 0x10 } - - { offsetInCU: 0x257, offset: 0x8AD55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x6AB00, symSize: 0x40 } - - { offsetInCU: 0x26B, offset: 0x8AD69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x6AB40, symSize: 0x50 } - - { offsetInCU: 0x27F, offset: 0x8AD7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x6AB90, symSize: 0xA } - - { offsetInCU: 0x2B, offset: 0x8AE99, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6ABA0, symSize: 0x30 } - - { offsetInCU: 0x6D, offset: 0x8AEDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6ABA0, symSize: 0x30 } - - { offsetInCU: 0xB9, offset: 0x8AF27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x6ABD0, symSize: 0x14 } - - { offsetInCU: 0x27, offset: 0x8B040, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6ABF0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B082, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6ABF0, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8B0CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6AC10, symSize: 0x14 } - - { offsetInCU: 0x2B, offset: 0x8B1EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6AC30, symSize: 0x50 } - - { offsetInCU: 0x6D, offset: 0x8B22D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6AC30, symSize: 0x50 } - - { offsetInCU: 0xB9, offset: 0x8B279, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x6AC80, symSize: 0x10 } - - { offsetInCU: 0xCD, offset: 0x8B28D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x6AC90, symSize: 0x30 } - - { offsetInCU: 0xE1, offset: 0x8B2A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x6ACC0, symSize: 0x69 } - - { offsetInCU: 0x27, offset: 0x8B3BA, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AD30, symSize: 0x430 } - - { offsetInCU: 0xD9, offset: 0x8B46C, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AD30, symSize: 0x430 } - - { offsetInCU: 0x2B2, offset: 0x8B645, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x6B160, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x8B7EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B1A0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B831, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B1A0, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8B87D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6B1C0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x8B9BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x6B1E0, symSize: 0x70 } - - { offsetInCU: 0x7A, offset: 0x8B9E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x6B280, symSize: 0x30 } - - { offsetInCU: 0xBE, offset: 0x8BA2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x9D0, symBinAddr: 0x6BB70, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8BA9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA50, symBinAddr: 0x6BBF0, symSize: 0x20 } - - { offsetInCU: 0x149, offset: 0x8BAB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xA70, symBinAddr: 0x6BC10, symSize: 0x20 } - - { offsetInCU: 0x177, offset: 0x8BAE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xA90, symBinAddr: 0x6BC30, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8BB78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x6B250, symSize: 0x30 } - - { offsetInCU: 0x230, offset: 0x8BB9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAE0, symBinAddr: 0x6BC80, symSize: 0x70 } - - { offsetInCU: 0x25B, offset: 0x8BBCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB90, symBinAddr: 0x6BD30, symSize: 0x20 } - - { offsetInCU: 0x277, offset: 0x8BBE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xBB0, symBinAddr: 0x6BD50, symSize: 0x20 } - - { offsetInCU: 0x4CA, offset: 0x8BE39, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x8E0, symBinAddr: 0x6BA80, symSize: 0xF0 } - - { offsetInCU: 0x546, offset: 0x8BEB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBD0, symBinAddr: 0x6BD70, symSize: 0x490 } - - { offsetInCU: 0x79D, offset: 0x8C10C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1060, symBinAddr: 0x6C200, symSize: 0x150 } - - { offsetInCU: 0x921, offset: 0x8C290, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x11B0, symBinAddr: 0x6C350, symSize: 0x9A0 } - - { offsetInCU: 0xECB, offset: 0x8C83A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B50, symBinAddr: 0x6CCF0, symSize: 0x7A0 } - - { offsetInCU: 0x127B, offset: 0x8CBEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x22F0, symBinAddr: 0x6D490, symSize: 0x540 } - - { offsetInCU: 0x141A, offset: 0x8CD89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2830, symBinAddr: 0x6D9D0, symSize: 0x680 } - - { offsetInCU: 0x191F, offset: 0x8D28E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2EB0, symBinAddr: 0x6E050, symSize: 0x130 } - - { offsetInCU: 0x1A0F, offset: 0x8D37E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x2FE0, symBinAddr: 0x6E180, symSize: 0x30 } - - { offsetInCU: 0x1A52, offset: 0x8D3C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3620, symBinAddr: 0x6E750, symSize: 0x200 } - - { offsetInCU: 0x1B03, offset: 0x8D472, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3820, symBinAddr: 0x6E950, symSize: 0x220 } - - { offsetInCU: 0x1B68, offset: 0x8D4D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3A40, symBinAddr: 0x6EB70, symSize: 0x240 } - - { offsetInCU: 0x1C90, offset: 0x8D5FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3CB0, symBinAddr: 0x6EDB0, symSize: 0x290 } - - { offsetInCU: 0x1DCF, offset: 0x8D73E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3F40, symBinAddr: 0x6F040, symSize: 0x170 } - - { offsetInCU: 0x1E15, offset: 0x8D784, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x40B0, symBinAddr: 0x6F1B0, symSize: 0x570 } - - { offsetInCU: 0x2166, offset: 0x8DAD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4620, symBinAddr: 0x6F720, symSize: 0xD0 } - - { offsetInCU: 0x224C, offset: 0x8DBBB, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x3080, symBinAddr: 0x6E220, symSize: 0x10 } - - { offsetInCU: 0x228E, offset: 0x8DBFD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3090, symBinAddr: 0x6E230, symSize: 0x10 } - - { offsetInCU: 0x22A2, offset: 0x8DC11, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x30A0, symBinAddr: 0x6E240, symSize: 0x30 } - - { offsetInCU: 0x22B6, offset: 0x8DC25, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x30D0, symBinAddr: 0x6E270, symSize: 0x10 } - - { offsetInCU: 0x22CA, offset: 0x8DC39, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x30E0, symBinAddr: 0x6E280, symSize: 0x40 } - - { offsetInCU: 0x22DE, offset: 0x8DC4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3160, symBinAddr: 0x6E2C0, symSize: 0x10 } - - { offsetInCU: 0x22F2, offset: 0x8DC61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3170, symBinAddr: 0x6E2D0, symSize: 0x30 } - - { offsetInCU: 0x2306, offset: 0x8DC75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x31C0, symBinAddr: 0x6E300, symSize: 0x80 } - - { offsetInCU: 0x231A, offset: 0x8DC89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x3240, symBinAddr: 0x6E380, symSize: 0xD0 } - - { offsetInCU: 0x232E, offset: 0x8DC9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x3310, symBinAddr: 0x6E450, symSize: 0x10 } - - { offsetInCU: 0x2342, offset: 0x8DCB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x3320, symBinAddr: 0x6E460, symSize: 0x10 } - - { offsetInCU: 0x2356, offset: 0x8DCC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x3330, symBinAddr: 0x6E470, symSize: 0x10 } - - { offsetInCU: 0x236A, offset: 0x8DCD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3340, symBinAddr: 0x6E480, symSize: 0x10 } - - { offsetInCU: 0x237E, offset: 0x8DCED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3350, symBinAddr: 0x6E490, symSize: 0x80 } - - { offsetInCU: 0x2392, offset: 0x8DD01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x33D0, symBinAddr: 0x6E510, symSize: 0xD0 } - - { offsetInCU: 0x23A6, offset: 0x8DD15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x34A0, symBinAddr: 0x6E5E0, symSize: 0x10 } - - { offsetInCU: 0x23BA, offset: 0x8DD29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x34B0, symBinAddr: 0x6E5F0, symSize: 0x10 } - - { offsetInCU: 0x23CE, offset: 0x8DD3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x34C0, symBinAddr: 0x6E600, symSize: 0x10 } - - { offsetInCU: 0x23E2, offset: 0x8DD51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x34D0, symBinAddr: 0x6E610, symSize: 0x10 } - - { offsetInCU: 0x23F6, offset: 0x8DD65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x34E0, symBinAddr: 0x6E620, symSize: 0x20 } - - { offsetInCU: 0x240A, offset: 0x8DD79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x3510, symBinAddr: 0x6E640, symSize: 0x10 } - - { offsetInCU: 0x241E, offset: 0x8DD8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x3520, symBinAddr: 0x6E650, symSize: 0x10 } - - { offsetInCU: 0x2432, offset: 0x8DDA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3530, symBinAddr: 0x6E660, symSize: 0x30 } - - { offsetInCU: 0x2446, offset: 0x8DDB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3560, symBinAddr: 0x6E690, symSize: 0x10 } - - { offsetInCU: 0x245A, offset: 0x8DDC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x3570, symBinAddr: 0x6E6A0, symSize: 0x10 } - - { offsetInCU: 0x246E, offset: 0x8DDDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3580, symBinAddr: 0x6E6B0, symSize: 0x30 } - - { offsetInCU: 0x2482, offset: 0x8DDF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x35B0, symBinAddr: 0x6E6E0, symSize: 0x10 } - - { offsetInCU: 0x24A1, offset: 0x8DE10, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x35C0, symBinAddr: 0x6E6F0, symSize: 0x20 } - - { offsetInCU: 0x24D9, offset: 0x8DE48, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x35E0, symBinAddr: 0x6E710, symSize: 0x20 } - - { offsetInCU: 0x2511, offset: 0x8DE80, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3600, symBinAddr: 0x6E730, symSize: 0x20 } - - { offsetInCU: 0x2575, offset: 0x8DEE4, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x4750, symBinAddr: 0x6F850, symSize: 0x40 } - - { offsetInCU: 0x2589, offset: 0x8DEF8, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x47F0, symBinAddr: 0x6F890, symSize: 0x30 } - - { offsetInCU: 0x259D, offset: 0x8DF0C, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4820, symBinAddr: 0x6F8C0, symSize: 0x30 } - - { offsetInCU: 0x25B1, offset: 0x8DF20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4890, symBinAddr: 0x6F910, symSize: 0x20 } - - { offsetInCU: 0x25C5, offset: 0x8DF34, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x48B0, symBinAddr: 0x6F930, symSize: 0x20 } - - { offsetInCU: 0x25D9, offset: 0x8DF48, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x48D0, symBinAddr: 0x6F950, symSize: 0x10 } - - { offsetInCU: 0x25ED, offset: 0x8DF5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4940, symBinAddr: 0x6F960, symSize: 0x20 } - - { offsetInCU: 0x2601, offset: 0x8DF70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x49F0, symBinAddr: 0x6FA10, symSize: 0x10 } - - { offsetInCU: 0x2630, offset: 0x8DF9F, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x110, symBinAddr: 0x6B2B0, symSize: 0x10 } - - { offsetInCU: 0x2698, offset: 0x8E007, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x6B2C0, symSize: 0x30 } - - { offsetInCU: 0x2716, offset: 0x8E085, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x150, symBinAddr: 0x6B2F0, symSize: 0x70 } - - { offsetInCU: 0x27A5, offset: 0x8E114, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x1C0, symBinAddr: 0x6B360, symSize: 0x70 } - - { offsetInCU: 0x2834, offset: 0x8E1A3, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x230, symBinAddr: 0x6B3D0, symSize: 0x90 } - - { offsetInCU: 0x28CB, offset: 0x8E23A, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x2C0, symBinAddr: 0x6B460, symSize: 0x60 } - - { offsetInCU: 0x29A5, offset: 0x8E314, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x320, symBinAddr: 0x6B4C0, symSize: 0x60 } - - { offsetInCU: 0x2A7F, offset: 0x8E3EE, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x380, symBinAddr: 0x6B520, symSize: 0x60 } - - { offsetInCU: 0x2AF4, offset: 0x8E463, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x3E0, symBinAddr: 0x6B580, symSize: 0x40 } - - { offsetInCU: 0x2B51, offset: 0x8E4C0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x420, symBinAddr: 0x6B5C0, symSize: 0x40 } - - { offsetInCU: 0x2BAE, offset: 0x8E51D, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x460, symBinAddr: 0x6B600, symSize: 0x40 } - - { offsetInCU: 0x2BD7, offset: 0x8E546, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect20F4TCPfO_TB5', symObjAddr: 0x4A0, symBinAddr: 0x6B640, symSize: 0x60 } - - { offsetInCU: 0x2C2A, offset: 0x8E599, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x500, symBinAddr: 0x6B6A0, symSize: 0x60 } - - { offsetInCU: 0x2CA6, offset: 0x8E615, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x560, symBinAddr: 0x6B700, symSize: 0x60 } - - { offsetInCU: 0x2D37, offset: 0x8E6A6, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5C0, symBinAddr: 0x6B760, symSize: 0xB0 } - - { offsetInCU: 0x2EB0, offset: 0x8E81F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x670, symBinAddr: 0x6B810, symSize: 0x50 } - - { offsetInCU: 0x2F7C, offset: 0x8E8EB, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6C0, symBinAddr: 0x6B860, symSize: 0x90 } - - { offsetInCU: 0x2FFC, offset: 0x8E96B, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x750, symBinAddr: 0x6B8F0, symSize: 0x80 } - - { offsetInCU: 0x3076, offset: 0x8E9E5, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7D0, symBinAddr: 0x6B970, symSize: 0xD0 } - - { offsetInCU: 0x3153, offset: 0x8EAC2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8A0, symBinAddr: 0x6BA40, symSize: 0x40 } - - { offsetInCU: 0x31E4, offset: 0x8EB53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA10, symBinAddr: 0x6BBB0, symSize: 0x10 } - - { offsetInCU: 0x3200, offset: 0x8EB6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA20, symBinAddr: 0x6BBC0, symSize: 0x10 } - - { offsetInCU: 0x321C, offset: 0x8EB8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA30, symBinAddr: 0x6BBD0, symSize: 0x10 } - - { offsetInCU: 0x3230, offset: 0x8EB9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA40, symBinAddr: 0x6BBE0, symSize: 0x10 } - - { offsetInCU: 0x324A, offset: 0x8EBB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x6BCF0, symSize: 0x10 } - - { offsetInCU: 0x3266, offset: 0x8EBD5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB60, symBinAddr: 0x6BD00, symSize: 0x10 } - - { offsetInCU: 0x3282, offset: 0x8EBF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB70, symBinAddr: 0x6BD10, symSize: 0x10 } - - { offsetInCU: 0x3296, offset: 0x8EC05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB80, symBinAddr: 0x6BD20, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x8F0A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6FA50, symSize: 0x1A0 } - - { offsetInCU: 0x57, offset: 0x8F0B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6FBF0, symSize: 0x90 } - - { offsetInCU: 0x6B, offset: 0x8F0C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6FC80, symSize: 0x170 } - - { offsetInCU: 0x7F, offset: 0x8F0DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6FDF0, symSize: 0x1F0 } - - { offsetInCU: 0x93, offset: 0x8F0F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6FFE0, symSize: 0xE0 } - - { offsetInCU: 0xA7, offset: 0x8F104, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x700C0, symSize: 0x1C0 } - - { offsetInCU: 0xBB, offset: 0x8F118, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x70280, symSize: 0x20 } - - { offsetInCU: 0xCF, offset: 0x8F12C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x70310, symSize: 0x20 } - - { offsetInCU: 0xE3, offset: 0x8F140, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x703B0, symSize: 0x90 } - - { offsetInCU: 0xF7, offset: 0x8F154, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x70440, symSize: 0x50 } - - { offsetInCU: 0x10B, offset: 0x8F168, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x70490, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8F17C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x705B0, symSize: 0x70 } - - { offsetInCU: 0x133, offset: 0x8F190, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x70620, symSize: 0xF0 } - - { offsetInCU: 0x147, offset: 0x8F1A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x70710, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8F1B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x70870, symSize: 0xC0 } - - { offsetInCU: 0x16F, offset: 0x8F1CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x70930, symSize: 0x150 } - - { offsetInCU: 0x183, offset: 0x8F1E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x70A80, symSize: 0x20 } - - { offsetInCU: 0x197, offset: 0x8F1F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x70B10, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x8F208, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x70BD0, symSize: 0x80 } - - { offsetInCU: 0x1DD, offset: 0x8F23A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1240, symBinAddr: 0x70C50, symSize: 0x20 } - - { offsetInCU: 0x22A, offset: 0x8F287, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x711A0, symSize: 0x10 } - - { offsetInCU: 0x288, offset: 0x8F2E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17B0, symBinAddr: 0x711C0, symSize: 0x20 } - - { offsetInCU: 0x302, offset: 0x8F35F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x711F0, symSize: 0x10 } - - { offsetInCU: 0x32D, offset: 0x8F38A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x71200, symSize: 0x20 } - - { offsetInCU: 0x35E, offset: 0x8F3BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x71220, symSize: 0x10 } - - { offsetInCU: 0x37A, offset: 0x8F3D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x71230, symSize: 0x10 } - - { offsetInCU: 0x396, offset: 0x8F3F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E80, symBinAddr: 0x72760, symSize: 0x160 } - - { offsetInCU: 0x3DC, offset: 0x8F439, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1260, symBinAddr: 0x70C70, symSize: 0x1F0 } - - { offsetInCU: 0x41B, offset: 0x8F478, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1450, symBinAddr: 0x70E60, symSize: 0x340 } - - { offsetInCU: 0x44C, offset: 0x8F4A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x71280, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x8F4CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1880, symBinAddr: 0x71290, symSize: 0x10 } - - { offsetInCU: 0x4C7, offset: 0x8F524, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x712A0, symSize: 0x20 } - - { offsetInCU: 0x4F0, offset: 0x8F54D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x71490, symSize: 0x10 } - - { offsetInCU: 0x51B, offset: 0x8F578, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x714A0, symSize: 0x20 } - - { offsetInCU: 0x54C, offset: 0x8F5A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB0, symBinAddr: 0x714C0, symSize: 0x10 } - - { offsetInCU: 0x568, offset: 0x8F5C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x714D0, symSize: 0x10 } - - { offsetInCU: 0x584, offset: 0x8F5E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FE0, symBinAddr: 0x728C0, symSize: 0x120 } - - { offsetInCU: 0x5CA, offset: 0x8F627, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x712C0, symSize: 0x1B0 } - - { offsetInCU: 0x61F, offset: 0x8F67C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B10, symBinAddr: 0x71520, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x8F6B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B50, symBinAddr: 0x71560, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x8F6D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3100, symBinAddr: 0x729E0, symSize: 0x2B0 } - - { offsetInCU: 0x6C9, offset: 0x8F726, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1B90, symBinAddr: 0x715A0, symSize: 0x20 } - - { offsetInCU: 0x6F2, offset: 0x8F74F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23C0, symBinAddr: 0x71DD0, symSize: 0x10 } - - { offsetInCU: 0x71D, offset: 0x8F77A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23D0, symBinAddr: 0x71DE0, symSize: 0x20 } - - { offsetInCU: 0x74E, offset: 0x8F7AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23F0, symBinAddr: 0x71E00, symSize: 0x10 } - - { offsetInCU: 0x76A, offset: 0x8F7C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2400, symBinAddr: 0x71E10, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x8F7E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33B0, symBinAddr: 0x72C90, symSize: 0x250 } - - { offsetInCU: 0x7CC, offset: 0x8F829, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BB0, symBinAddr: 0x715C0, symSize: 0x2B0 } - - { offsetInCU: 0x80B, offset: 0x8F868, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E60, symBinAddr: 0x71870, symSize: 0x4E0 } - - { offsetInCU: 0x83C, offset: 0x8F899, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2450, symBinAddr: 0x71E60, symSize: 0x10 } - - { offsetInCU: 0x85F, offset: 0x8F8BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2460, symBinAddr: 0x71E70, symSize: 0x10 } - - { offsetInCU: 0x883, offset: 0x8F8E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x24A0, symBinAddr: 0x71E80, symSize: 0x30 } - - { offsetInCU: 0x897, offset: 0x8F8F4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2500, symBinAddr: 0x71EB0, symSize: 0x30 } - - { offsetInCU: 0x8AB, offset: 0x8F908, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x25A0, symBinAddr: 0x71F10, symSize: 0x30 } - - { offsetInCU: 0x8BF, offset: 0x8F91C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2610, symBinAddr: 0x71F40, symSize: 0x30 } - - { offsetInCU: 0x8D3, offset: 0x8F930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x2700, symBinAddr: 0x72030, symSize: 0x30 } - - { offsetInCU: 0x8E7, offset: 0x8F944, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2750, symBinAddr: 0x72060, symSize: 0x80 } - - { offsetInCU: 0x8FB, offset: 0x8F958, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x27D0, symBinAddr: 0x720E0, symSize: 0xD0 } - - { offsetInCU: 0x90F, offset: 0x8F96C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x28A0, symBinAddr: 0x721B0, symSize: 0x10 } - - { offsetInCU: 0x923, offset: 0x8F980, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x28B0, symBinAddr: 0x721C0, symSize: 0x10 } - - { offsetInCU: 0x937, offset: 0x8F994, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x28C0, symBinAddr: 0x721D0, symSize: 0x10 } - - { offsetInCU: 0x94B, offset: 0x8F9A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x28D0, symBinAddr: 0x721E0, symSize: 0x10 } - - { offsetInCU: 0x95F, offset: 0x8F9BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x28E0, symBinAddr: 0x721F0, symSize: 0x80 } - - { offsetInCU: 0x973, offset: 0x8F9D0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2960, symBinAddr: 0x72270, symSize: 0xD0 } - - { offsetInCU: 0x987, offset: 0x8F9E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2A30, symBinAddr: 0x72340, symSize: 0x10 } - - { offsetInCU: 0x99B, offset: 0x8F9F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2A40, symBinAddr: 0x72350, symSize: 0x10 } - - { offsetInCU: 0x9AF, offset: 0x8FA0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x2A50, symBinAddr: 0x72360, symSize: 0x30 } - - { offsetInCU: 0x9C3, offset: 0x8FA20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x2A80, symBinAddr: 0x72390, symSize: 0x30 } - - { offsetInCU: 0x9D7, offset: 0x8FA34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x2AB0, symBinAddr: 0x723C0, symSize: 0x70 } - - { offsetInCU: 0x9EB, offset: 0x8FA48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x2B20, symBinAddr: 0x72430, symSize: 0x90 } - - { offsetInCU: 0x9FF, offset: 0x8FA5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x2BE0, symBinAddr: 0x724C0, symSize: 0x70 } - - { offsetInCU: 0xA13, offset: 0x8FA70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x2C50, symBinAddr: 0x72530, symSize: 0x50 } - - { offsetInCU: 0xA27, offset: 0x8FA84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x2CA0, symBinAddr: 0x72580, symSize: 0x50 } - - { offsetInCU: 0xA3B, offset: 0x8FA98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x2CF0, symBinAddr: 0x725D0, symSize: 0x10 } - - { offsetInCU: 0xA4F, offset: 0x8FAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D00, symBinAddr: 0x725E0, symSize: 0x10 } - - { offsetInCU: 0xA63, offset: 0x8FAC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x725F0, symSize: 0x30 } - - { offsetInCU: 0xA77, offset: 0x8FAD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x2D40, symBinAddr: 0x72620, symSize: 0x10 } - - { offsetInCU: 0xA8B, offset: 0x8FAE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x2D50, symBinAddr: 0x72630, symSize: 0x30 } - - { offsetInCU: 0xA9F, offset: 0x8FAFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D80, symBinAddr: 0x72660, symSize: 0x10 } - - { offsetInCU: 0xAB3, offset: 0x8FB10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D90, symBinAddr: 0x72670, symSize: 0x30 } - - { offsetInCU: 0xAC7, offset: 0x8FB24, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DC0, symBinAddr: 0x726A0, symSize: 0x10 } - - { offsetInCU: 0xADB, offset: 0x8FB38, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DD0, symBinAddr: 0x726B0, symSize: 0x30 } - - { offsetInCU: 0xAEF, offset: 0x8FB4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E00, symBinAddr: 0x726E0, symSize: 0x10 } - - { offsetInCU: 0xB03, offset: 0x8FB60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E10, symBinAddr: 0x726F0, symSize: 0x30 } - - { offsetInCU: 0xB17, offset: 0x8FB74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E40, symBinAddr: 0x72720, symSize: 0x10 } - - { offsetInCU: 0xB2B, offset: 0x8FB88, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E50, symBinAddr: 0x72730, symSize: 0x30 } - - { offsetInCU: 0xB4A, offset: 0x8FBA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3600, symBinAddr: 0x72EE0, symSize: 0x30 } - - { offsetInCU: 0xB5E, offset: 0x8FBBB, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3630, symBinAddr: 0x72F10, symSize: 0x40 } - - { offsetInCU: 0xB72, offset: 0x8FBCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x36E0, symBinAddr: 0x72FC0, symSize: 0x80 } - - { offsetInCU: 0xB86, offset: 0x8FBE3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3760, symBinAddr: 0x73040, symSize: 0xD0 } - - { offsetInCU: 0xB9A, offset: 0x8FBF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3830, symBinAddr: 0x73110, symSize: 0x10 } - - { offsetInCU: 0xBAE, offset: 0x8FC0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3840, symBinAddr: 0x73120, symSize: 0x10 } - - { offsetInCU: 0xBC2, offset: 0x8FC1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3850, symBinAddr: 0x73130, symSize: 0x10 } - - { offsetInCU: 0xBD6, offset: 0x8FC33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3860, symBinAddr: 0x73140, symSize: 0x30 } - - { offsetInCU: 0xBEA, offset: 0x8FC47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3890, symBinAddr: 0x73170, symSize: 0x10 } - - { offsetInCU: 0xBFE, offset: 0x8FC5B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x38A0, symBinAddr: 0x73180, symSize: 0x30 } - - { offsetInCU: 0xC12, offset: 0x8FC6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x38D0, symBinAddr: 0x731B0, symSize: 0x10 } - - { offsetInCU: 0xC26, offset: 0x8FC83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x38E0, symBinAddr: 0x731C0, symSize: 0x30 } - - { offsetInCU: 0xC54, offset: 0x8FCB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x71240, symSize: 0x20 } - - { offsetInCU: 0xC70, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x71260, symSize: 0x20 } - - { offsetInCU: 0xC92, offset: 0x8FCEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x714E0, symSize: 0x20 } - - { offsetInCU: 0xCAE, offset: 0x8FD0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF0, symBinAddr: 0x71500, symSize: 0x20 } - - { offsetInCU: 0xCD0, offset: 0x8FD2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x71E20, symSize: 0x20 } - - { offsetInCU: 0xCEC, offset: 0x8FD49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2430, symBinAddr: 0x71E40, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8FE9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x73290, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x8FEBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x73290, symSize: 0x30 } - - { offsetInCU: 0x69, offset: 0x8FEDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x732C0, symSize: 0x30 } - - { offsetInCU: 0xA7, offset: 0x8FF1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x732F0, symSize: 0x10 } - - { offsetInCU: 0xC5, offset: 0x8FF39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x73300, symSize: 0x10 } - - { offsetInCU: 0xF0, offset: 0x8FF64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x73310, symSize: 0x30 } - - { offsetInCU: 0x10E, offset: 0x8FF82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x73340, symSize: 0x30 } - - { offsetInCU: 0x14C, offset: 0x8FFC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x73370, symSize: 0x20 } - - { offsetInCU: 0x17A, offset: 0x8FFEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x73390, symSize: 0x10 } - - { offsetInCU: 0x1A6, offset: 0x9001A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x733A0, symSize: 0x30 } - - { offsetInCU: 0x1BA, offset: 0x9002E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x733D0, symSize: 0x30 } - - { offsetInCU: 0x1CE, offset: 0x90042, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x73400, symSize: 0x40 } - - { offsetInCU: 0x1E2, offset: 0x90056, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x73440, symSize: 0x60 } - - { offsetInCU: 0x1F6, offset: 0x9006A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x734A0, symSize: 0x50 } - - { offsetInCU: 0x20A, offset: 0x9007E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x734F0, symSize: 0x40 } - - { offsetInCU: 0x21E, offset: 0x90092, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x73530, symSize: 0x50 } - - { offsetInCU: 0x232, offset: 0x900A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x73580, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x901EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x73590, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x90210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8languageSSvpZ', symObjAddr: 0x9FA0, symBinAddr: 0x913D0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x9022A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7versionSSvpZ', symObjAddr: 0x9FB0, symBinAddr: 0x913E0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x90244, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x9FC0, symBinAddr: 0x913F0, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x9025E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x9FD0, symBinAddr: 0x91400, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x90278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x9FE0, symBinAddr: 0x91410, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x90292, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x9FF0, symBinAddr: 0x91420, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x902AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0xA000, symBinAddr: 0x91430, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x902C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0xA010, symBinAddr: 0x91440, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x902E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0xA020, symBinAddr: 0x91450, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x902FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0xA030, symBinAddr: 0x91460, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x90314, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0xA040, symBinAddr: 0x91470, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x9032E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0xA050, symBinAddr: 0x91480, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x90348, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0xA060, symBinAddr: 0x91490, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x90362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0xA070, symBinAddr: 0x914A0, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x9037C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0xA080, symBinAddr: 0x914B0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x90396, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKeySSvpZ', symObjAddr: 0xA090, symBinAddr: 0x914C0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x903B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKeySSvpZ', symObjAddr: 0xA0A0, symBinAddr: 0x914D0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x903CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKeySSvpZ', symObjAddr: 0xA0B0, symBinAddr: 0x914E0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x903E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKeySSvpZ', symObjAddr: 0xA0C0, symBinAddr: 0x914F0, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x903FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKeySSvpZ', symObjAddr: 0xA0D0, symBinAddr: 0x91500, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x90418, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKeySSvpZ', symObjAddr: 0xA0E0, symBinAddr: 0x91510, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x90432, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKeySSvpZ', symObjAddr: 0xA0F0, symBinAddr: 0x91520, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x9044C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0xA100, symBinAddr: 0x91530, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x90466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0xA110, symBinAddr: 0x91540, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x90480, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvpZ', symObjAddr: 0xA120, symBinAddr: 0x91550, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x9049A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0xA130, symBinAddr: 0x91560, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x904B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKeySSvpZ', symObjAddr: 0xA140, symBinAddr: 0x91570, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x904CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkeySSvpZ', symObjAddr: 0xA150, symBinAddr: 0x91580, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x904E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0xA160, symBinAddr: 0x91590, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x90502, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKeySSvpZ', symObjAddr: 0xA170, symBinAddr: 0x915A0, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x9051C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKeySSvpZ', symObjAddr: 0xA180, symBinAddr: 0x915B0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x90536, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvpZ', symObjAddr: 0xA190, symBinAddr: 0x915C0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x90550, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKeySSvpZ', symObjAddr: 0xA1A0, symBinAddr: 0x915D0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x9056A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKeySSvpZ', symObjAddr: 0xA1B0, symBinAddr: 0x915E0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x90584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKeySSvpZ', symObjAddr: 0xA1C0, symBinAddr: 0x915F0, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x9059E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKeySSvpZ', symObjAddr: 0xA1D0, symBinAddr: 0x91600, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x905B8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvpZ', symObjAddr: 0xA1E0, symBinAddr: 0x91610, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x905D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvpZ', symObjAddr: 0xA1F0, symBinAddr: 0x91620, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x905EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvpZ', symObjAddr: 0xA200, symBinAddr: 0x91630, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x90606, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkeySSvpZ', symObjAddr: 0xA210, symBinAddr: 0x91640, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x90620, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvpZ', symObjAddr: 0xA220, symBinAddr: 0x91650, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x9063A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKeySSvpZ', symObjAddr: 0xA230, symBinAddr: 0x91660, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x90654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKeySSvpZ', symObjAddr: 0xA240, symBinAddr: 0x91670, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x9066E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKeySSvpZ', symObjAddr: 0xA250, symBinAddr: 0x91680, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x90688, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKeySSvpZ', symObjAddr: 0xA260, symBinAddr: 0x91690, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x906A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKeySSvpZ', symObjAddr: 0xA270, symBinAddr: 0x916A0, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x906BC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKeySSvpZ', symObjAddr: 0xA280, symBinAddr: 0x916B0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x906D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0xA290, symBinAddr: 0x916C0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x906F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0xA2A0, symBinAddr: 0x916D0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x9070A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0xA2B0, symBinAddr: 0x916E0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x90724, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKeySSvpZ', symObjAddr: 0xA2C0, symBinAddr: 0x916F0, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x9073E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKeySSvpZ', symObjAddr: 0xA2D0, symBinAddr: 0x91700, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x90758, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKeySSvpZ', symObjAddr: 0xA2E0, symBinAddr: 0x91710, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x90772, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKeySSvpZ', symObjAddr: 0xA2F0, symBinAddr: 0x91720, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x9078C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0xA300, symBinAddr: 0x91730, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x907A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0xA310, symBinAddr: 0x91740, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x907C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0xA320, symBinAddr: 0x91750, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x907DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekeySSvpZ', symObjAddr: 0xA330, symBinAddr: 0x91760, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x907F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkeySSvpZ', symObjAddr: 0xA340, symBinAddr: 0x91770, symSize: 0x0 } - - { offsetInCU: 0x63D, offset: 0x90802, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x73590, symSize: 0x30 } - - { offsetInCU: 0x65B, offset: 0x90820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKeySSvau', symObjAddr: 0x30, symBinAddr: 0x735C0, symSize: 0x30 } - - { offsetInCU: 0x679, offset: 0x9083E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkeySSvau', symObjAddr: 0x60, symBinAddr: 0x735F0, symSize: 0x30 } - - { offsetInCU: 0x697, offset: 0x9085C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkeySSvau', symObjAddr: 0x90, symBinAddr: 0x73620, symSize: 0x30 } - - { offsetInCU: 0x6B5, offset: 0x9087A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekeySSvau', symObjAddr: 0xC0, symBinAddr: 0x73650, symSize: 0x30 } - - { offsetInCU: 0x6DF, offset: 0x908A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0xF0, symBinAddr: 0x73680, symSize: 0x20 } - - { offsetInCU: 0x6FA, offset: 0x908BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x230, symBinAddr: 0x737C0, symSize: 0x410 } - - { offsetInCU: 0x74E, offset: 0x90913, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x750, symBinAddr: 0x73CE0, symSize: 0x10 } - - { offsetInCU: 0x76A, offset: 0x9092F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x760, symBinAddr: 0x73CF0, symSize: 0x20 } - - { offsetInCU: 0x794, offset: 0x90959, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkeySSvau', symObjAddr: 0x110, symBinAddr: 0x736A0, symSize: 0x30 } - - { offsetInCU: 0x7B2, offset: 0x90977, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKeySSvau', symObjAddr: 0x140, symBinAddr: 0x736D0, symSize: 0x30 } - - { offsetInCU: 0x7D0, offset: 0x90995, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x170, symBinAddr: 0x73700, symSize: 0x30 } - - { offsetInCU: 0x7EE, offset: 0x909B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x1A0, symBinAddr: 0x73730, symSize: 0x30 } - - { offsetInCU: 0x80C, offset: 0x909D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x1D0, symBinAddr: 0x73760, symSize: 0x30 } - - { offsetInCU: 0x82A, offset: 0x909EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKeySSvau', symObjAddr: 0x200, symBinAddr: 0x73790, symSize: 0x30 } - - { offsetInCU: 0x853, offset: 0x90A18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x660, symBinAddr: 0x73BF0, symSize: 0x10 } - - { offsetInCU: 0x867, offset: 0x90A2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x73C00, symSize: 0x30 } - - { offsetInCU: 0x891, offset: 0x90A56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x7A0, symBinAddr: 0x73D10, symSize: 0x80 } - - { offsetInCU: 0x8A5, offset: 0x90A6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x820, symBinAddr: 0x73D90, symSize: 0xD0 } - - { offsetInCU: 0x8B9, offset: 0x90A7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x8F0, symBinAddr: 0x73E60, symSize: 0x10 } - - { offsetInCU: 0x8CD, offset: 0x90A92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x900, symBinAddr: 0x73E70, symSize: 0x10 } - - { offsetInCU: 0x8E1, offset: 0x90AA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x910, symBinAddr: 0x73E80, symSize: 0x10 } - - { offsetInCU: 0x8F5, offset: 0x90ABA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x920, symBinAddr: 0x73E90, symSize: 0x10 } - - { offsetInCU: 0x909, offset: 0x90ACE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV8language_WZ', symObjAddr: 0x930, symBinAddr: 0x73EA0, symSize: 0x30 } - - { offsetInCU: 0x923, offset: 0x90AE8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV7version_WZ', symObjAddr: 0x960, symBinAddr: 0x73ED0, symSize: 0x30 } - - { offsetInCU: 0x93D, offset: 0x90B02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x990, symBinAddr: 0x73F00, symSize: 0x30 } - - { offsetInCU: 0x957, offset: 0x90B1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x9C0, symBinAddr: 0x73F30, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x90B36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x9F0, symBinAddr: 0x73F60, symSize: 0x30 } - - { offsetInCU: 0x98B, offset: 0x90B50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212SDKConstantsV11sslPassword_WZ', symObjAddr: 0xA20, symBinAddr: 0x73F90, symSize: 0x30 } - - { offsetInCU: 0x9AC, offset: 0x90B71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0xA50, symBinAddr: 0x73FC0, symSize: 0x30 } - - { offsetInCU: 0x9C6, offset: 0x90B8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0xA80, symBinAddr: 0x73FF0, symSize: 0x30 } - - { offsetInCU: 0x9E0, offset: 0x90BA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6option_WZ', symObjAddr: 0xAB0, symBinAddr: 0x74020, symSize: 0x30 } - - { offsetInCU: 0x9FA, offset: 0x90BBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0xAE0, symBinAddr: 0x74050, symSize: 0x30 } - - { offsetInCU: 0xA14, offset: 0x90BD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0xB10, symBinAddr: 0x74080, symSize: 0x30 } - - { offsetInCU: 0xA2E, offset: 0x90BF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0xB40, symBinAddr: 0x740B0, symSize: 0x30 } - - { offsetInCU: 0xA48, offset: 0x90C0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV6device_WZ', symObjAddr: 0xB70, symBinAddr: 0x740E0, symSize: 0x30 } - - { offsetInCU: 0xA62, offset: 0x90C27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0xBA0, symBinAddr: 0x74110, symSize: 0x30 } - - { offsetInCU: 0xA7C, offset: 0x90C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0xBD0, symBinAddr: 0x74140, symSize: 0x30 } - - { offsetInCU: 0xA97, offset: 0x90C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dateKey_WZ', symObjAddr: 0xC00, symBinAddr: 0x74170, symSize: 0x30 } - - { offsetInCU: 0xAB1, offset: 0x90C76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7dataKey_WZ', symObjAddr: 0xC30, symBinAddr: 0x741A0, symSize: 0x30 } - - { offsetInCU: 0xACB, offset: 0x90C90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6ackKey_WZ', symObjAddr: 0xC60, symBinAddr: 0x741D0, symSize: 0x30 } - - { offsetInCU: 0xAE5, offset: 0x90CAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV7typeKey_WZ', symObjAddr: 0xC90, symBinAddr: 0x74200, symSize: 0x30 } - - { offsetInCU: 0xAFF, offset: 0x90CC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV9statusKey_WZ', symObjAddr: 0xCC0, symBinAddr: 0x74230, symSize: 0x30 } - - { offsetInCU: 0xB19, offset: 0x90CDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV10messageKey_WZ', symObjAddr: 0xCF0, symBinAddr: 0x74260, symSize: 0x30 } - - { offsetInCU: 0xB33, offset: 0x90CF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DictAckKeysV6cidKey_WZ', symObjAddr: 0xD20, symBinAddr: 0x74290, symSize: 0x30 } - - { offsetInCU: 0xB4D, offset: 0x90D12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0xD50, symBinAddr: 0x742C0, symSize: 0x30 } - - { offsetInCU: 0xB67, offset: 0x90D2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5dfKey_WZ', symObjAddr: 0xD80, symBinAddr: 0x742F0, symSize: 0x30 } - - { offsetInCU: 0xB81, offset: 0x90D46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV5atKey_WZ', symObjAddr: 0xDB0, symBinAddr: 0x74320, symSize: 0x30 } - - { offsetInCU: 0xB9B, offset: 0x90D60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV6gtwKey_WZ', symObjAddr: 0xDE0, symBinAddr: 0x74350, symSize: 0x30 } - - { offsetInCU: 0xBB5, offset: 0x90D7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212DictMetaKeysV4gKey_WZ', symObjAddr: 0xE10, symBinAddr: 0x74380, symSize: 0x30 } - - { offsetInCU: 0xBCF, offset: 0x90D94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7cpIDkey_WZ', symObjAddr: 0xE40, symBinAddr: 0x743B0, symSize: 0x30 } - - { offsetInCU: 0xBE9, offset: 0x90DAE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11uniqueIDKey_WZ', symObjAddr: 0xE70, symBinAddr: 0x743E0, symSize: 0x30 } - - { offsetInCU: 0xC03, offset: 0x90DC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4tKey_WZ', symObjAddr: 0xEA0, symBinAddr: 0x74410, symSize: 0x30 } - - { offsetInCU: 0xC1D, offset: 0x90DE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5mtKey_WZ', symObjAddr: 0xED0, symBinAddr: 0x74440, symSize: 0x30 } - - { offsetInCU: 0xC37, offset: 0x90DFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4dKey_WZ', symObjAddr: 0xF00, symBinAddr: 0x74470, symSize: 0x30 } - - { offsetInCU: 0xC51, offset: 0x90E16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6sdkKey_WZ', symObjAddr: 0xF30, symBinAddr: 0x744A0, symSize: 0x30 } - - { offsetInCU: 0xC6B, offset: 0x90E30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11languageKey_WZ', symObjAddr: 0xF60, symBinAddr: 0x744D0, symSize: 0x30 } - - { offsetInCU: 0xC85, offset: 0x90E4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10versionKey_WZ', symObjAddr: 0xF90, symBinAddr: 0x74500, symSize: 0x30 } - - { offsetInCU: 0xC9F, offset: 0x90E64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7dataKey_WZ', symObjAddr: 0xFC0, symBinAddr: 0x74530, symSize: 0x30 } - - { offsetInCU: 0xCB9, offset: 0x90E7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV5idkey_WZ', symObjAddr: 0xFF0, symBinAddr: 0x74560, symSize: 0x30 } - - { offsetInCU: 0xCD3, offset: 0x90E98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6tagkey_WZ', symObjAddr: 0x1020, symBinAddr: 0x74590, symSize: 0x30 } - - { offsetInCU: 0xCED, offset: 0x90EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7datekey_WZ', symObjAddr: 0x1050, symBinAddr: 0x745C0, symSize: 0x30 } - - { offsetInCU: 0xD07, offset: 0x90ECC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV4gkey_WZ', symObjAddr: 0x1080, symBinAddr: 0x745F0, symSize: 0x30 } - - { offsetInCU: 0xD21, offset: 0x90EE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8errorkey_WZ', symObjAddr: 0x10B0, symBinAddr: 0x74620, symSize: 0x30 } - - { offsetInCU: 0xD3B, offset: 0x90F00, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV9desireKey_WZ', symObjAddr: 0x10E0, symBinAddr: 0x74650, symSize: 0x30 } - - { offsetInCU: 0xD55, offset: 0x90F1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6hasKey_WZ', symObjAddr: 0x1110, symBinAddr: 0x74680, symSize: 0x30 } - - { offsetInCU: 0xD6F, offset: 0x90F34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7attrKey_WZ', symObjAddr: 0x1140, symBinAddr: 0x746B0, symSize: 0x30 } - - { offsetInCU: 0xD89, offset: 0x90F4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6setKey_WZ', symObjAddr: 0x1170, symBinAddr: 0x746E0, symSize: 0x30 } - - { offsetInCU: 0xDA3, offset: 0x90F68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8rulesKey_WZ', symObjAddr: 0x11A0, symBinAddr: 0x74710, symSize: 0x30 } - - { offsetInCU: 0xDBD, offset: 0x90F82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6otaKey_WZ', symObjAddr: 0x11D0, symBinAddr: 0x74740, symSize: 0x30 } - - { offsetInCU: 0xDD7, offset: 0x90F9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV17conditionValueKey_WZ', symObjAddr: 0x1200, symBinAddr: 0x74770, symSize: 0x30 } - - { offsetInCU: 0xDF1, offset: 0x90FB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0x1230, symBinAddr: 0x747A0, symSize: 0x30 } - - { offsetInCU: 0xE0B, offset: 0x90FD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14commandTypeKey_WZ', symObjAddr: 0x1260, symBinAddr: 0x747D0, symSize: 0x30 } - - { offsetInCU: 0xE25, offset: 0x90FEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV7guidKey_WZ', symObjAddr: 0x1290, symBinAddr: 0x74800, symSize: 0x30 } - - { offsetInCU: 0xE3F, offset: 0x91004, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV10commandKey_WZ', symObjAddr: 0x12C0, symBinAddr: 0x74830, symSize: 0x30 } - - { offsetInCU: 0xE59, offset: 0x9101E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV6ackKey_WZ', symObjAddr: 0x12F0, symBinAddr: 0x74860, symSize: 0x30 } - - { offsetInCU: 0xE73, offset: 0x91038, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV8ackIDKey_WZ', symObjAddr: 0x1320, symBinAddr: 0x74890, symSize: 0x30 } - - { offsetInCU: 0xE8D, offset: 0x91052, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV12errorCodeKey_WZ', symObjAddr: 0x1350, symBinAddr: 0x748C0, symSize: 0x30 } - - { offsetInCU: 0xEA7, offset: 0x9106C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0x1380, symBinAddr: 0x748F0, symSize: 0x30 } - - { offsetInCU: 0xEC1, offset: 0x91086, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14medsageTypekey_WZ', symObjAddr: 0x13B0, symBinAddr: 0x74920, symSize: 0x30 } - - { offsetInCU: 0xEDB, offset: 0x910A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV14displayNamekey_WZ', symObjAddr: 0x13E0, symBinAddr: 0x74950, symSize: 0x30 } - - { offsetInCU: 0xEF5, offset: 0x910BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28DictkeysV11protocolkey_WZ', symObjAddr: 0x1410, symBinAddr: 0x74980, symSize: 0x30 } - - { offsetInCU: 0xF58, offset: 0x9111D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnndd_n', symObjAddr: 0x1440, symBinAddr: 0x749B0, symSize: 0x113 } - - { offsetInCU: 0x1193, offset: 0x91358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x640, symBinAddr: 0x73BD0, symSize: 0x20 } - - { offsetInCU: 0x124D, offset: 0x91412, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6A0, symBinAddr: 0x73C30, symSize: 0x40 } - - { offsetInCU: 0x1325, offset: 0x914EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E0, symBinAddr: 0x73C70, symSize: 0x30 } - - { offsetInCU: 0x13A1, offset: 0x91566, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x710, symBinAddr: 0x73CA0, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0x91720, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x74AD0, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x91762, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x74AD0, symSize: 0x20 } - - { offsetInCU: 0xB9, offset: 0x917AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x74AF0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x918EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x1FE8, symBinAddr: 0x90D98, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x91938, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0x1B0, symBinAddr: 0x74CC0, symSize: 0x30 } - - { offsetInCU: 0x117, offset: 0x919B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1E0, symBinAddr: 0x74CF0, symSize: 0x580 } - - { offsetInCU: 0x306, offset: 0x91BA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x7A0, symBinAddr: 0x75270, symSize: 0x50 } - - { offsetInCU: 0x375, offset: 0x91C15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x800, symBinAddr: 0x752D0, symSize: 0x50 } - - { offsetInCU: 0x3E4, offset: 0x91C84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x860, symBinAddr: 0x75330, symSize: 0x50 } - - { offsetInCU: 0x453, offset: 0x91CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x8C0, symBinAddr: 0x75390, symSize: 0x50 } - - { offsetInCU: 0x4C2, offset: 0x91D62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x920, symBinAddr: 0x753F0, symSize: 0x50 } - - { offsetInCU: 0x5C8, offset: 0x91E68, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xA30, symBinAddr: 0x754B0, symSize: 0x40 } - - { offsetInCU: 0x639, offset: 0x91ED9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xA70, symBinAddr: 0x754F0, symSize: 0x10 } - - { offsetInCU: 0x686, offset: 0x91F26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA80, symBinAddr: 0x75500, symSize: 0x50 } - - { offsetInCU: 0x707, offset: 0x91FA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0xBF0, symBinAddr: 0x75670, symSize: 0x30 } - - { offsetInCU: 0x768, offset: 0x92008, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xC20, symBinAddr: 0x756A0, symSize: 0x50 } - - { offsetInCU: 0x7E9, offset: 0x92089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xC70, symBinAddr: 0x756F0, symSize: 0x40 } - - { offsetInCU: 0x884, offset: 0x92124, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xCB0, symBinAddr: 0x75730, symSize: 0x80 } - - { offsetInCU: 0x933, offset: 0x921D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xD50, symBinAddr: 0x757B0, symSize: 0x70 } - - { offsetInCU: 0x9F6, offset: 0x92296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xDC0, symBinAddr: 0x75820, symSize: 0x80 } - - { offsetInCU: 0xAA5, offset: 0x92345, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xE40, symBinAddr: 0x758A0, symSize: 0x30 } - - { offsetInCU: 0xB34, offset: 0x923D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE70, symBinAddr: 0x758D0, symSize: 0x30 } - - { offsetInCU: 0xBC3, offset: 0x92463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xEA0, symBinAddr: 0x75900, symSize: 0x40 } - - { offsetInCU: 0xC53, offset: 0x924F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xEE0, symBinAddr: 0x75940, symSize: 0x40 } - - { offsetInCU: 0xCE6, offset: 0x92586, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF20, symBinAddr: 0x75980, symSize: 0x40 } - - { offsetInCU: 0xD79, offset: 0x92619, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF60, symBinAddr: 0x759C0, symSize: 0x40 } - - { offsetInCU: 0xE0C, offset: 0x926AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xFA0, symBinAddr: 0x75A00, symSize: 0x40 } - - { offsetInCU: 0xE9F, offset: 0x9273F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xFE0, symBinAddr: 0x75A40, symSize: 0x30 } - - { offsetInCU: 0xF08, offset: 0x927A8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x1010, symBinAddr: 0x75A70, symSize: 0x40 } - - { offsetInCU: 0xF69, offset: 0x92809, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x1050, symBinAddr: 0x75AB0, symSize: 0x130 } - - { offsetInCU: 0x1050, offset: 0x928F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0x1180, symBinAddr: 0x75BE0, symSize: 0xB0 } - - { offsetInCU: 0x1137, offset: 0x929D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x1230, symBinAddr: 0x75C90, symSize: 0x90 } - - { offsetInCU: 0x11D2, offset: 0x92A72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x12C0, symBinAddr: 0x75D20, symSize: 0xF0 } - - { offsetInCU: 0x11FF, offset: 0x92A9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x13B0, symBinAddr: 0x75E10, symSize: 0x20 } - - { offsetInCU: 0x12A5, offset: 0x92B45, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xE0, symBinAddr: 0x74BF0, symSize: 0x50 } - - { offsetInCU: 0x12BD, offset: 0x92B5D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x130, symBinAddr: 0x74C40, symSize: 0x80 } - - { offsetInCU: 0x135B, offset: 0x92BFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x7F0, symBinAddr: 0x752C0, symSize: 0x10 } - - { offsetInCU: 0x136F, offset: 0x92C0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x850, symBinAddr: 0x75320, symSize: 0x10 } - - { offsetInCU: 0x1383, offset: 0x92C23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x8B0, symBinAddr: 0x75380, symSize: 0x10 } - - { offsetInCU: 0x1397, offset: 0x92C37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x910, symBinAddr: 0x753E0, symSize: 0x10 } - - { offsetInCU: 0x13AB, offset: 0x92C4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x970, symBinAddr: 0x75440, symSize: 0x10 } - - { offsetInCU: 0x13BF, offset: 0x92C5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x9D0, symBinAddr: 0x75450, symSize: 0x20 } - - { offsetInCU: 0x13D3, offset: 0x92C73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOf', symObjAddr: 0x9F0, symBinAddr: 0x75470, symSize: 0x40 } - - { offsetInCU: 0x1434, offset: 0x92CD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x16E0, symBinAddr: 0x76140, symSize: 0x10 } - - { offsetInCU: 0x1448, offset: 0x92CE8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16F0, symBinAddr: 0x76150, symSize: 0x20 } - - { offsetInCU: 0x145C, offset: 0x92CFC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1710, symBinAddr: 0x76170, symSize: 0x10 } - - { offsetInCU: 0x1492, offset: 0x92D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1790, symBinAddr: 0x76180, symSize: 0x390 } - - { offsetInCU: 0x156A, offset: 0x92E0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1B20, symBinAddr: 0x76510, symSize: 0x450 } - - { offsetInCU: 0x1686, offset: 0x92F26, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x74B10, symSize: 0x10 } - - { offsetInCU: 0x16A2, offset: 0x92F42, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x10, symBinAddr: 0x74B20, symSize: 0x10 } - - { offsetInCU: 0x16BE, offset: 0x92F5E, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x20, symBinAddr: 0x74B30, symSize: 0x10 } - - { offsetInCU: 0x16DA, offset: 0x92F7A, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0x30, symBinAddr: 0x74B40, symSize: 0x10 } - - { offsetInCU: 0x16F6, offset: 0x92F96, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x40, symBinAddr: 0x74B50, symSize: 0x10 } - - { offsetInCU: 0x1712, offset: 0x92FB2, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x74B60, symSize: 0x10 } - - { offsetInCU: 0x172E, offset: 0x92FCE, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x60, symBinAddr: 0x74B70, symSize: 0x10 } - - { offsetInCU: 0x174A, offset: 0x92FEA, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x70, symBinAddr: 0x74B80, symSize: 0x10 } - - { offsetInCU: 0x1766, offset: 0x93006, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x80, symBinAddr: 0x74B90, symSize: 0x10 } - - { offsetInCU: 0x1782, offset: 0x93022, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x90, symBinAddr: 0x74BA0, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x9303E, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0xA0, symBinAddr: 0x74BB0, symSize: 0x20 } - - { offsetInCU: 0x17BA, offset: 0x9305A, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0xC0, symBinAddr: 0x74BD0, symSize: 0x20 } + - { offsetInCU: 0x34, offset: 0x5A510, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionString, symObjAddr: 0x0, symBinAddr: 0x79680, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5A545, size: 0x8, addend: 0x0, symName: _IoTConnect2VersionNumber, symObjAddr: 0x30, symBinAddr: 0x796B0, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x5A5AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x41E08, symBinAddr: 0x90528, symSize: 0x0 } + - { offsetInCU: 0x303, offset: 0x5A85E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB830, symBinAddr: 0xD6E0, symSize: 0x1BD0 } + - { offsetInCU: 0x1D03, offset: 0x5C25E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x1F70, symSize: 0x40 } + - { offsetInCU: 0x1D33, offset: 0x5C28E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0xC0, symBinAddr: 0x1FB0, symSize: 0x30 } + - { offsetInCU: 0x1EDD, offset: 0x5C438, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMU', symObjAddr: 0x1F40, symBinAddr: 0x3E30, symSize: 0x10 } + - { offsetInCU: 0x1EF1, offset: 0x5C44C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMa', symObjAddr: 0x1F50, symBinAddr: 0x3E40, symSize: 0x30 } + - { offsetInCU: 0x1F05, offset: 0x5C460, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCMr', symObjAddr: 0x1F80, symBinAddr: 0x3E70, symSize: 0x220 } + - { offsetInCU: 0x23AA, offset: 0x5C905, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0xA590, symBinAddr: 0xC470, symSize: 0x10 } + - { offsetInCU: 0x23BE, offset: 0x5C919, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0xA5A0, symBinAddr: 0xC480, symSize: 0x10 } + - { offsetInCU: 0x23D2, offset: 0x5C92D, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0xA5B0, symBinAddr: 0xC490, symSize: 0x20 } + - { offsetInCU: 0x23E6, offset: 0x5C941, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0xA5D0, symBinAddr: 0xC4B0, symSize: 0x30 } + - { offsetInCU: 0x260B, offset: 0x5CB66, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xAC70, symBinAddr: 0xCB20, symSize: 0x20 } + - { offsetInCU: 0x261F, offset: 0x5CB7A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xAC90, symBinAddr: 0xCB40, symSize: 0x20 } + - { offsetInCU: 0x2633, offset: 0x5CB8E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xACE0, symBinAddr: 0xCB90, symSize: 0x20 } + - { offsetInCU: 0x2647, offset: 0x5CBA2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xAD00, symBinAddr: 0xCBB0, symSize: 0x20 } + - { offsetInCU: 0x2CF1, offset: 0x5D24C, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xD5A0, symBinAddr: 0xF450, symSize: 0x40 } + - { offsetInCU: 0x2D05, offset: 0x5D260, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xD5E0, symBinAddr: 0xF490, symSize: 0x30 } + - { offsetInCU: 0x2D19, offset: 0x5D274, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xD610, symBinAddr: 0xF4C0, symSize: 0x20 } + - { offsetInCU: 0x2D2D, offset: 0x5D288, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xD630, symBinAddr: 0xF4E0, symSize: 0x30 } + - { offsetInCU: 0x2D41, offset: 0x5D29C, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xD6B0, symBinAddr: 0xF560, symSize: 0x30 } + - { offsetInCU: 0x2D55, offset: 0x5D2B0, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD870, symBinAddr: 0xF720, symSize: 0x20 } + - { offsetInCU: 0x2D69, offset: 0x5D2C4, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD890, symBinAddr: 0xF740, symSize: 0x20 } + - { offsetInCU: 0x2D7D, offset: 0x5D2D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOe', symObjAddr: 0xD8B0, symBinAddr: 0xF760, symSize: 0x50 } + - { offsetInCU: 0x2D91, offset: 0x5D2EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOe', symObjAddr: 0xD900, symBinAddr: 0xF7B0, symSize: 0x180 } + - { offsetInCU: 0x2DA5, offset: 0x5D300, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOe', symObjAddr: 0xDA80, symBinAddr: 0xF930, symSize: 0x2D0 } + - { offsetInCU: 0x2DB9, offset: 0x5D314, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOe', symObjAddr: 0xDD50, symBinAddr: 0xFC00, symSize: 0x70 } + - { offsetInCU: 0x2DCD, offset: 0x5D328, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOe', symObjAddr: 0xDDC0, symBinAddr: 0xFC70, symSize: 0x30 } + - { offsetInCU: 0x2DE1, offset: 0x5D33C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOe', symObjAddr: 0xDDF0, symBinAddr: 0xFCA0, symSize: 0xD0 } + - { offsetInCU: 0x2DF5, offset: 0x5D350, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOe', symObjAddr: 0xDEC0, symBinAddr: 0xFD70, symSize: 0xB0 } + - { offsetInCU: 0x2E09, offset: 0x5D364, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOe', symObjAddr: 0xDF70, symBinAddr: 0xFE20, symSize: 0x20 } + - { offsetInCU: 0x2E1D, offset: 0x5D378, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOe', symObjAddr: 0xDF90, symBinAddr: 0xFE40, symSize: 0x30 } + - { offsetInCU: 0x2E31, offset: 0x5D38C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVSgWOy', symObjAddr: 0xE020, symBinAddr: 0xFED0, symSize: 0x50 } + - { offsetInCU: 0x2E45, offset: 0x5D3A0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xE110, symBinAddr: 0xFFC0, symSize: 0x20 } + - { offsetInCU: 0x2E59, offset: 0x5D3B4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xE130, symBinAddr: 0xFFE0, symSize: 0x20 } + - { offsetInCU: 0x2E6D, offset: 0x5D3C8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xE150, symBinAddr: 0x10000, symSize: 0x20 } + - { offsetInCU: 0x2E81, offset: 0x5D3DC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xE170, symBinAddr: 0x10020, symSize: 0x20 } + - { offsetInCU: 0x2E95, offset: 0x5D3F0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xE190, symBinAddr: 0x10040, symSize: 0x20 } + - { offsetInCU: 0x2EA9, offset: 0x5D404, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xE1B0, symBinAddr: 0x10060, symSize: 0x20 } + - { offsetInCU: 0x2EBD, offset: 0x5D418, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xE1D0, symBinAddr: 0x10080, symSize: 0x20 } + - { offsetInCU: 0x3265, offset: 0x5D7C0, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x8A40, symBinAddr: 0xA930, symSize: 0x70 } + - { offsetInCU: 0x3379, offset: 0x5D8D4, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0xA620, symBinAddr: 0xC500, symSize: 0x80 } + - { offsetInCU: 0x340A, offset: 0x5D965, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0xA6A0, symBinAddr: 0xC580, symSize: 0x80 } + - { offsetInCU: 0x34AA, offset: 0x5DA05, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA720, symBinAddr: 0xC600, symSize: 0x10 } + - { offsetInCU: 0x34E8, offset: 0x5DA43, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA740, symBinAddr: 0xC620, symSize: 0x10 } + - { offsetInCU: 0x354B, offset: 0x5DAA6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA750, symBinAddr: 0xC630, symSize: 0x10 } + - { offsetInCU: 0x35FC, offset: 0x5DB57, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA760, symBinAddr: 0xC640, symSize: 0x10 } + - { offsetInCU: 0x36A5, offset: 0x5DC00, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA770, symBinAddr: 0xC650, symSize: 0x10 } + - { offsetInCU: 0x374C, offset: 0x5DCA7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA780, symBinAddr: 0xC660, symSize: 0x30 } + - { offsetInCU: 0x38C0, offset: 0x5DE1B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA7B0, symBinAddr: 0xC690, symSize: 0x30 } + - { offsetInCU: 0x39C7, offset: 0x5DF22, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA7E0, symBinAddr: 0xC6C0, symSize: 0x20 } + - { offsetInCU: 0x3AB3, offset: 0x5E00E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA800, symBinAddr: 0xC6E0, symSize: 0x10 } + - { offsetInCU: 0x3AF1, offset: 0x5E04C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA810, symBinAddr: 0xC6F0, symSize: 0x10 } + - { offsetInCU: 0x3B2F, offset: 0x5E08A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA820, symBinAddr: 0xC700, symSize: 0x10 } + - { offsetInCU: 0x3B86, offset: 0x5E0E1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA830, symBinAddr: 0xC710, symSize: 0x10 } + - { offsetInCU: 0x3C39, offset: 0x5E194, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA840, symBinAddr: 0xC720, symSize: 0x20 } + - { offsetInCU: 0x3CBA, offset: 0x5E215, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA860, symBinAddr: 0xC740, symSize: 0x10 } + - { offsetInCU: 0x3D7C, offset: 0x5E2D7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA870, symBinAddr: 0xC750, symSize: 0x20 } + - { offsetInCU: 0x3E16, offset: 0x5E371, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA890, symBinAddr: 0xC770, symSize: 0x10 } + - { offsetInCU: 0x3E7E, offset: 0x5E3D9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA8A0, symBinAddr: 0xC780, symSize: 0x20 } + - { offsetInCU: 0x3E9A, offset: 0x5E3F5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA8C0, symBinAddr: 0xC7A0, symSize: 0x10 } + - { offsetInCU: 0x3F16, offset: 0x5E471, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA8F0, symBinAddr: 0xC7D0, symSize: 0x10 } + - { offsetInCU: 0x3F32, offset: 0x5E48D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA900, symBinAddr: 0xC7E0, symSize: 0x10 } + - { offsetInCU: 0x3F63, offset: 0x5E4BE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA910, symBinAddr: 0xC7F0, symSize: 0x10 } + - { offsetInCU: 0x3F94, offset: 0x5E4EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA920, symBinAddr: 0xC800, symSize: 0x10 } + - { offsetInCU: 0x3FC5, offset: 0x5E520, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA930, symBinAddr: 0xC810, symSize: 0x30 } + - { offsetInCU: 0x3FF4, offset: 0x5E54F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA960, symBinAddr: 0xC840, symSize: 0x30 } + - { offsetInCU: 0x4025, offset: 0x5E580, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA990, symBinAddr: 0xC870, symSize: 0x30 } + - { offsetInCU: 0x4056, offset: 0x5E5B1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA9C0, symBinAddr: 0xC8A0, symSize: 0x10 } + - { offsetInCU: 0x4087, offset: 0x5E5E2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA9D0, symBinAddr: 0xC8B0, symSize: 0x10 } + - { offsetInCU: 0x40B8, offset: 0x5E613, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA9E0, symBinAddr: 0xC8C0, symSize: 0x10 } + - { offsetInCU: 0x40E9, offset: 0x5E644, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA9F0, symBinAddr: 0xC8D0, symSize: 0x20 } + - { offsetInCU: 0x411A, offset: 0x5E675, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xAA10, symBinAddr: 0xC8F0, symSize: 0x20 } + - { offsetInCU: 0x414B, offset: 0x5E6A6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xAA30, symBinAddr: 0xC910, symSize: 0x10 } + - { offsetInCU: 0x417C, offset: 0x5E6D7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xAA40, symBinAddr: 0xC920, symSize: 0x20 } + - { offsetInCU: 0x41AD, offset: 0x5E708, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xAA60, symBinAddr: 0xC940, symSize: 0x10 } + - { offsetInCU: 0x41DE, offset: 0x5E739, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xAA70, symBinAddr: 0xC950, symSize: 0x20 } + - { offsetInCU: 0x41FA, offset: 0x5E755, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xAA90, symBinAddr: 0xC970, symSize: 0x10 } + - { offsetInCU: 0x424A, offset: 0x5E7A5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAAC0, symBinAddr: 0xC9A0, symSize: 0x30 } + - { offsetInCU: 0x42D2, offset: 0x5E82D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAAF0, symBinAddr: 0xC9D0, symSize: 0x60 } + - { offsetInCU: 0x4356, offset: 0x5E8B1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xABB0, symBinAddr: 0xCA90, symSize: 0x10 } + - { offsetInCU: 0x4372, offset: 0x5E8CD, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xABC0, symBinAddr: 0xCAA0, symSize: 0x10 } + - { offsetInCU: 0x439D, offset: 0x5E8F8, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xABD0, symBinAddr: 0xCAB0, symSize: 0x40 } + - { offsetInCU: 0x442B, offset: 0x5E986, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xAC40, symBinAddr: 0xCAF0, symSize: 0x30 } + - { offsetInCU: 0x445C, offset: 0x5E9B7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xAD20, symBinAddr: 0xCBD0, symSize: 0x10 } + - { offsetInCU: 0x4493, offset: 0x5E9EE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xAD30, symBinAddr: 0xCBE0, symSize: 0x30 } + - { offsetInCU: 0x44D3, offset: 0x5EA2E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xAD60, symBinAddr: 0xCC10, symSize: 0x80 } + - { offsetInCU: 0x4595, offset: 0x5EAF0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xAE70, symBinAddr: 0xCD20, symSize: 0x70 } + - { offsetInCU: 0x45DD, offset: 0x5EB38, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0xB4B0, symBinAddr: 0xD360, symSize: 0xB0 } + - { offsetInCU: 0x46B5, offset: 0x5EC10, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5114$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xB560, symBinAddr: 0xD410, symSize: 0x190 } + - { offsetInCU: 0x4931, offset: 0x5EE8C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xD400, symBinAddr: 0xF2B0, symSize: 0xD0 } + - { offsetInCU: 0x4A93, offset: 0x5EFEE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xD4D0, symBinAddr: 0xF380, symSize: 0xD0 } + - { offsetInCU: 0x4D4C, offset: 0x5F2A7, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xAE10, symBinAddr: 0xCCC0, symSize: 0x40 } + - { offsetInCU: 0x4D75, offset: 0x5F2D0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xAE50, symBinAddr: 0xCD00, symSize: 0x20 } + - { offsetInCU: 0x4DB0, offset: 0x5F30B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xADF0, symBinAddr: 0xCCA0, symSize: 0x10 } + - { offsetInCU: 0x4DCC, offset: 0x5F327, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xAE00, symBinAddr: 0xCCB0, symSize: 0x10 } + - { offsetInCU: 0x4DFA, offset: 0x5F355, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xADE0, symBinAddr: 0xCC90, symSize: 0x10 } + - { offsetInCU: 0x4EDE, offset: 0x5F439, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0xA730, symBinAddr: 0xC610, symSize: 0x10 } + - { offsetInCU: 0x4F01, offset: 0x5F45C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA8D0, symBinAddr: 0xC7B0, symSize: 0x10 } + - { offsetInCU: 0x4F1D, offset: 0x5F478, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA8E0, symBinAddr: 0xC7C0, symSize: 0x10 } + - { offsetInCU: 0x4F83, offset: 0x5F4DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xF0, symBinAddr: 0x1FE0, symSize: 0x40 } + - { offsetInCU: 0x4F97, offset: 0x5F4F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x130, symBinAddr: 0x2020, symSize: 0x10 } + - { offsetInCU: 0x4FAB, offset: 0x5F506, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19arrAttForValidationAA14AttributesDataVSgvM', symObjAddr: 0x140, symBinAddr: 0x2030, symSize: 0x40 } + - { offsetInCU: 0x4FD3, offset: 0x5F52E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCACycfc', symObjAddr: 0x180, symBinAddr: 0x2070, symSize: 0x350 } + - { offsetInCU: 0x5102, offset: 0x5F65D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC4cpId06uniqueF03env10sdkOptions14deviceCallback010twinUpdateL017attributeCallBack05twinspQ008getChildL0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x4D0, symBinAddr: 0x23C0, symSize: 0x13D0 } + - { offsetInCU: 0x5403, offset: 0x5F95E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfd', symObjAddr: 0x18A0, symBinAddr: 0x3790, symSize: 0x680 } + - { offsetInCU: 0x547A, offset: 0x5F9D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerCfD', symObjAddr: 0x1F20, symBinAddr: 0x3E10, symSize: 0x20 } + - { offsetInCU: 0x54EF, offset: 0x5FA4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x21A0, symBinAddr: 0x4090, symSize: 0x7F0 } + - { offsetInCU: 0x5871, offset: 0x5FDCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x2990, symBinAddr: 0x4880, symSize: 0x480 } + - { offsetInCU: 0x5B1A, offset: 0x60075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2E10, symBinAddr: 0x4D00, symSize: 0x920 } + - { offsetInCU: 0x60AE, offset: 0x60609, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3730, symBinAddr: 0x5620, symSize: 0x620 } + - { offsetInCU: 0x648A, offset: 0x609E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3D50, symBinAddr: 0x5C40, symSize: 0x4CF0 } + - { offsetInCU: 0x74A6, offset: 0x61A01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8AC0, symBinAddr: 0xA9A0, symSize: 0x190 } + - { offsetInCU: 0x756F, offset: 0x61ACA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x8C50, symBinAddr: 0xAB30, symSize: 0x3B0 } + - { offsetInCU: 0x77CD, offset: 0x61D28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x9000, symBinAddr: 0xAEE0, symSize: 0x480 } + - { offsetInCU: 0x7B51, offset: 0x620AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x9480, symBinAddr: 0xB360, symSize: 0x330 } + - { offsetInCU: 0x7CF6, offset: 0x62251, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x9A70, symBinAddr: 0xB950, symSize: 0x380 } + - { offsetInCU: 0x7E19, offset: 0x62374, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17createChildDevice8deviceId0H3Tag11displayNameySS_S2StF', symObjAddr: 0x9DF0, symBinAddr: 0xBCD0, symSize: 0x560 } + - { offsetInCU: 0x808C, offset: 0x625E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0xA350, symBinAddr: 0xC230, symSize: 0x1C0 } + - { offsetInCU: 0x8389, offset: 0x628E4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xAEE0, symBinAddr: 0xCD90, symSize: 0x220 } + - { offsetInCU: 0x8422, offset: 0x6297D, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xB250, symBinAddr: 0xD100, symSize: 0x260 } + - { offsetInCU: 0x27, offset: 0x62C94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100E0, symSize: 0x20 } + - { offsetInCU: 0x62, offset: 0x62CCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0x10100, symSize: 0x14 } + - { offsetInCU: 0x149, offset: 0x62DB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect219EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100E0, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x62E21, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0x10150, symSize: 0x10 } + - { offsetInCU: 0x57, offset: 0x62E35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0x10190, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x62EA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x150, symBinAddr: 0x10270, symSize: 0x10 } + - { offsetInCU: 0x11C, offset: 0x62EFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x170, symBinAddr: 0x10290, symSize: 0x20 } + - { offsetInCU: 0x196, offset: 0x62F74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0x102C0, symSize: 0x10 } + - { offsetInCU: 0x1CB, offset: 0x62FA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B0, symBinAddr: 0x102D0, symSize: 0x20 } + - { offsetInCU: 0x1FC, offset: 0x62FDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D0, symBinAddr: 0x102F0, symSize: 0x10 } + - { offsetInCU: 0x218, offset: 0x62FF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E0, symBinAddr: 0x10300, symSize: 0x10 } + - { offsetInCU: 0x234, offset: 0x63012, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x25B0, symBinAddr: 0x126D0, symSize: 0x370 } + - { offsetInCU: 0x3E4, offset: 0x631C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1520, symBinAddr: 0x11640, symSize: 0x50 } + - { offsetInCU: 0x41B, offset: 0x631F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1570, symBinAddr: 0x11690, symSize: 0x50 } + - { offsetInCU: 0x43E, offset: 0x6321C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2920, symBinAddr: 0x12A40, symSize: 0x14F0 } + - { offsetInCU: 0x49C, offset: 0x6327A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C0, symBinAddr: 0x116E0, symSize: 0x10 } + - { offsetInCU: 0x4F4, offset: 0x632D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x15D0, symBinAddr: 0x116F0, symSize: 0x30 } + - { offsetInCU: 0x5D8, offset: 0x633B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1600, symBinAddr: 0x11720, symSize: 0x20 } + - { offsetInCU: 0x64A, offset: 0x63428, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1650, symBinAddr: 0x11770, symSize: 0x20 } + - { offsetInCU: 0x699, offset: 0x63477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1670, symBinAddr: 0x11790, symSize: 0x70 } + - { offsetInCU: 0x6F3, offset: 0x634D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x11800, symSize: 0x10 } + - { offsetInCU: 0x70F, offset: 0x634ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x11810, symSize: 0x10 } + - { offsetInCU: 0x74C, offset: 0x6352A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x11860, symSize: 0x50 } + - { offsetInCU: 0x783, offset: 0x63561, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x118B0, symSize: 0x50 } + - { offsetInCU: 0x7A6, offset: 0x63584, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3E10, symBinAddr: 0x13F30, symSize: 0x3A0 } + - { offsetInCU: 0x841, offset: 0x6361F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x11920, symSize: 0x70 } + - { offsetInCU: 0x876, offset: 0x63654, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1870, symBinAddr: 0x11990, symSize: 0x20 } + - { offsetInCU: 0x8A7, offset: 0x63685, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1890, symBinAddr: 0x119B0, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x636A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18A0, symBinAddr: 0x119C0, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x636BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6630, symBinAddr: 0x16700, symSize: 0x170 } + - { offsetInCU: 0x9A8, offset: 0x63786, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x11A10, symSize: 0x50 } + - { offsetInCU: 0x9DF, offset: 0x637BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1940, symBinAddr: 0x11A60, symSize: 0x50 } + - { offsetInCU: 0xA02, offset: 0x637E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x67A0, symBinAddr: 0x16870, symSize: 0x320 } + - { offsetInCU: 0xA71, offset: 0x6384F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x19B0, symBinAddr: 0x11AD0, symSize: 0x70 } + - { offsetInCU: 0xAA6, offset: 0x63884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x11B40, symSize: 0x20 } + - { offsetInCU: 0xAD7, offset: 0x638B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x11B60, symSize: 0x10 } + - { offsetInCU: 0xAF3, offset: 0x638D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x11B70, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x638ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6AC0, symBinAddr: 0x16B90, symSize: 0x130 } + - { offsetInCU: 0xBBF, offset: 0x6399D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x11BC0, symSize: 0x40 } + - { offsetInCU: 0xBF6, offset: 0x639D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AE0, symBinAddr: 0x11C00, symSize: 0x40 } + - { offsetInCU: 0xC19, offset: 0x639F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6BF0, symBinAddr: 0x16CC0, symSize: 0x310 } + - { offsetInCU: 0xC7C, offset: 0x63A5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B40, symBinAddr: 0x11C60, symSize: 0x60 } + - { offsetInCU: 0xCB1, offset: 0x63A8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x11CC0, symSize: 0x20 } + - { offsetInCU: 0xCE2, offset: 0x63AC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC0, symBinAddr: 0x11CE0, symSize: 0x10 } + - { offsetInCU: 0xCFE, offset: 0x63ADC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x11CF0, symSize: 0x10 } + - { offsetInCU: 0xD1A, offset: 0x63AF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6F00, symBinAddr: 0x16FD0, symSize: 0x130 } + - { offsetInCU: 0xDCA, offset: 0x63BA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C20, symBinAddr: 0x11D40, symSize: 0x50 } + - { offsetInCU: 0xE01, offset: 0x63BDF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C70, symBinAddr: 0x11D90, symSize: 0x50 } + - { offsetInCU: 0xE24, offset: 0x63C02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7030, symBinAddr: 0x17100, symSize: 0x580 } + - { offsetInCU: 0xE93, offset: 0x63C71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0x11E00, symSize: 0x90 } + - { offsetInCU: 0xEC8, offset: 0x63CA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D70, symBinAddr: 0x11E90, symSize: 0x20 } + - { offsetInCU: 0xEF9, offset: 0x63CD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D90, symBinAddr: 0x11EB0, symSize: 0x10 } + - { offsetInCU: 0xF15, offset: 0x63CF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DA0, symBinAddr: 0x11EC0, symSize: 0x10 } + - { offsetInCU: 0xF31, offset: 0x63D0F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7640, symBinAddr: 0x17710, symSize: 0x220 } + - { offsetInCU: 0x1045, offset: 0x63E23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DF0, symBinAddr: 0x11F10, symSize: 0x60 } + - { offsetInCU: 0x107C, offset: 0x63E5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E50, symBinAddr: 0x11F70, symSize: 0x70 } + - { offsetInCU: 0x109F, offset: 0x63E7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7860, symBinAddr: 0x17930, symSize: 0x660 } + - { offsetInCU: 0x112C, offset: 0x63F0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1EC0, symBinAddr: 0x11FE0, symSize: 0x10 } + - { offsetInCU: 0x11A4, offset: 0x63F82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH9hashValueSivgTW', symObjAddr: 0x1ED0, symBinAddr: 0x11FF0, symSize: 0x40 } + - { offsetInCU: 0x1288, offset: 0x64066, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1F10, symBinAddr: 0x12030, symSize: 0x20 } + - { offsetInCU: 0x130E, offset: 0x640EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F70, symBinAddr: 0x12090, symSize: 0x30 } + - { offsetInCU: 0x1358, offset: 0x64136, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FA0, symBinAddr: 0x120C0, symSize: 0x20 } + - { offsetInCU: 0x1389, offset: 0x64167, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FC0, symBinAddr: 0x120E0, symSize: 0x10 } + - { offsetInCU: 0x13A5, offset: 0x64183, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FD0, symBinAddr: 0x120F0, symSize: 0x10 } + - { offsetInCU: 0x13C1, offset: 0x6419F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7EF0, symBinAddr: 0x17FC0, symSize: 0xB0 } + - { offsetInCU: 0x143F, offset: 0x6421D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2020, symBinAddr: 0x12140, symSize: 0x30 } + - { offsetInCU: 0x1476, offset: 0x64254, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2050, symBinAddr: 0x12170, symSize: 0x20 } + - { offsetInCU: 0x1499, offset: 0x64277, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x18070, symSize: 0x180 } + - { offsetInCU: 0x1514, offset: 0x642F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x2090, symBinAddr: 0x121B0, symSize: 0x80 } + - { offsetInCU: 0x1549, offset: 0x64327, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2110, symBinAddr: 0x12230, symSize: 0x20 } + - { offsetInCU: 0x157A, offset: 0x64358, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x2130, symBinAddr: 0x12250, symSize: 0x10 } + - { offsetInCU: 0x1596, offset: 0x64374, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x12260, symSize: 0x10 } + - { offsetInCU: 0x15B2, offset: 0x64390, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x8150, symBinAddr: 0x18220, symSize: 0x1F0 } + - { offsetInCU: 0x16AD, offset: 0x6448B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2190, symBinAddr: 0x122B0, symSize: 0x50 } + - { offsetInCU: 0x16E4, offset: 0x644C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21E0, symBinAddr: 0x12300, symSize: 0x50 } + - { offsetInCU: 0x1707, offset: 0x644E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x18410, symSize: 0x3A0 } + - { offsetInCU: 0x176A, offset: 0x64548, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2250, symBinAddr: 0x12370, symSize: 0x80 } + - { offsetInCU: 0x179F, offset: 0x6457D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x22D0, symBinAddr: 0x123F0, symSize: 0x20 } + - { offsetInCU: 0x17D0, offset: 0x645AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22F0, symBinAddr: 0x12410, symSize: 0x10 } + - { offsetInCU: 0x17EC, offset: 0x645CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2300, symBinAddr: 0x12420, symSize: 0x10 } + - { offsetInCU: 0x1808, offset: 0x645E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x86E0, symBinAddr: 0x187B0, symSize: 0x1A0 } + - { offsetInCU: 0x18EA, offset: 0x646C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2350, symBinAddr: 0x12470, symSize: 0x50 } + - { offsetInCU: 0x1921, offset: 0x646FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A0, symBinAddr: 0x124C0, symSize: 0x50 } + - { offsetInCU: 0x1944, offset: 0x64722, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8880, symBinAddr: 0x18950, symSize: 0x3D0 } + - { offsetInCU: 0x19C7, offset: 0x647A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x125B0, symSize: 0x20 } + - { offsetInCU: 0x1A11, offset: 0x647EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24B0, symBinAddr: 0x125D0, symSize: 0x20 } + - { offsetInCU: 0x1A42, offset: 0x64820, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24D0, symBinAddr: 0x125F0, symSize: 0x10 } + - { offsetInCU: 0x1A5E, offset: 0x6483C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24E0, symBinAddr: 0x12600, symSize: 0x10 } + - { offsetInCU: 0x1A7A, offset: 0x64858, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8CB0, symBinAddr: 0x18D80, symSize: 0xF0 } + - { offsetInCU: 0x1B11, offset: 0x648EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2530, symBinAddr: 0x12650, symSize: 0x40 } + - { offsetInCU: 0x1B48, offset: 0x64926, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2570, symBinAddr: 0x12690, symSize: 0x40 } + - { offsetInCU: 0x1B6B, offset: 0x64949, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DA0, symBinAddr: 0x18E70, symSize: 0x1C0 } + - { offsetInCU: 0x1BA8, offset: 0x64986, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x41F0, symBinAddr: 0x142D0, symSize: 0x30 } + - { offsetInCU: 0x1BBC, offset: 0x6499A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x4220, symBinAddr: 0x14300, symSize: 0x30 } + - { offsetInCU: 0x1BD0, offset: 0x649AE, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x4250, symBinAddr: 0x14330, symSize: 0x30 } + - { offsetInCU: 0x1BE4, offset: 0x649C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESeAAWl', symObjAddr: 0x4280, symBinAddr: 0x14360, symSize: 0x30 } + - { offsetInCU: 0x1BF8, offset: 0x649D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVAESEAAWl', symObjAddr: 0x42B0, symBinAddr: 0x14390, symSize: 0x30 } + - { offsetInCU: 0x1C0C, offset: 0x649EA, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x42E0, symBinAddr: 0x143C0, symSize: 0x10 } + - { offsetInCU: 0x1C20, offset: 0x649FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x4300, symBinAddr: 0x143D0, symSize: 0x50 } + - { offsetInCU: 0x1C34, offset: 0x64A12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x4350, symBinAddr: 0x14420, symSize: 0xA0 } + - { offsetInCU: 0x1C48, offset: 0x64A26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x43F0, symBinAddr: 0x144C0, symSize: 0x10 } + - { offsetInCU: 0x1C5C, offset: 0x64A3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x4400, symBinAddr: 0x144D0, symSize: 0x10 } + - { offsetInCU: 0x1C70, offset: 0x64A4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x4410, symBinAddr: 0x144E0, symSize: 0x10 } + - { offsetInCU: 0x1C84, offset: 0x64A62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x4420, symBinAddr: 0x144F0, symSize: 0x10 } + - { offsetInCU: 0x1C98, offset: 0x64A76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVwCP', symObjAddr: 0x4430, symBinAddr: 0x14500, symSize: 0x30 } + - { offsetInCU: 0x1CAC, offset: 0x64A8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DVMa', symObjAddr: 0x5180, symBinAddr: 0x15250, symSize: 0x10 } + - { offsetInCU: 0x1CC0, offset: 0x64A9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x5190, symBinAddr: 0x15260, symSize: 0x10 } + - { offsetInCU: 0x1CD4, offset: 0x64AB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x51A0, symBinAddr: 0x15270, symSize: 0x30 } + - { offsetInCU: 0x1CE8, offset: 0x64AC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x51D0, symBinAddr: 0x152A0, symSize: 0x10 } + - { offsetInCU: 0x1CFC, offset: 0x64ADA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x51E0, symBinAddr: 0x152B0, symSize: 0x30 } + - { offsetInCU: 0x1D10, offset: 0x64AEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5210, symBinAddr: 0x152E0, symSize: 0x10 } + - { offsetInCU: 0x1D24, offset: 0x64B02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x5220, symBinAddr: 0x152F0, symSize: 0x30 } + - { offsetInCU: 0x1D38, offset: 0x64B16, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0D3KeyAAWl', symObjAddr: 0x5250, symBinAddr: 0x15320, symSize: 0x30 } + - { offsetInCU: 0x1D4C, offset: 0x64B2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSeAAWl', symObjAddr: 0x5280, symBinAddr: 0x15350, symSize: 0x30 } + - { offsetInCU: 0x1D60, offset: 0x64B3E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSeAAWl', symObjAddr: 0x52B0, symBinAddr: 0x15380, symSize: 0x30 } + - { offsetInCU: 0x1D74, offset: 0x64B52, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x52E0, symBinAddr: 0x153B0, symSize: 0x40 } + - { offsetInCU: 0x1D88, offset: 0x64B66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSeAAWl', symObjAddr: 0x5320, symBinAddr: 0x153F0, symSize: 0x30 } + - { offsetInCU: 0x1D9C, offset: 0x64B7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSeAAWl', symObjAddr: 0x5350, symBinAddr: 0x15420, symSize: 0x30 } + - { offsetInCU: 0x1DB0, offset: 0x64B8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSeAAWl', symObjAddr: 0x5380, symBinAddr: 0x15450, symSize: 0x30 } + - { offsetInCU: 0x1DC4, offset: 0x64BA2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVACSEAAWl', symObjAddr: 0x53B0, symBinAddr: 0x15480, symSize: 0x30 } + - { offsetInCU: 0x1DD8, offset: 0x64BB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVACSEAAWl', symObjAddr: 0x53E0, symBinAddr: 0x154B0, symSize: 0x30 } + - { offsetInCU: 0x1DEC, offset: 0x64BCA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVACSEAAWl', symObjAddr: 0x5410, symBinAddr: 0x154E0, symSize: 0x30 } + - { offsetInCU: 0x1E00, offset: 0x64BDE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVACSEAAWl', symObjAddr: 0x5440, symBinAddr: 0x15510, symSize: 0x30 } + - { offsetInCU: 0x1E14, offset: 0x64BF2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVACSEAAWl', symObjAddr: 0x5470, symBinAddr: 0x15540, symSize: 0x30 } + - { offsetInCU: 0x1E28, offset: 0x64C06, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x54A0, symBinAddr: 0x15570, symSize: 0x10 } + - { offsetInCU: 0x1E3C, offset: 0x64C1A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x54B0, symBinAddr: 0x15580, symSize: 0x80 } + - { offsetInCU: 0x1E50, offset: 0x64C2E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x5530, symBinAddr: 0x15600, symSize: 0xD0 } + - { offsetInCU: 0x1E64, offset: 0x64C42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x5600, symBinAddr: 0x156D0, symSize: 0x10 } + - { offsetInCU: 0x1E78, offset: 0x64C56, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x5610, symBinAddr: 0x156E0, symSize: 0x10 } + - { offsetInCU: 0x1E8C, offset: 0x64C6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x5620, symBinAddr: 0x156F0, symSize: 0x10 } + - { offsetInCU: 0x1EA0, offset: 0x64C7E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x5630, symBinAddr: 0x15700, symSize: 0x10 } + - { offsetInCU: 0x1EB4, offset: 0x64C92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwxx', symObjAddr: 0x5640, symBinAddr: 0x15710, symSize: 0x30 } + - { offsetInCU: 0x1EC8, offset: 0x64CA6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwcp', symObjAddr: 0x5670, symBinAddr: 0x15740, symSize: 0x40 } + - { offsetInCU: 0x1EDC, offset: 0x64CBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwca', symObjAddr: 0x56B0, symBinAddr: 0x15780, symSize: 0x70 } + - { offsetInCU: 0x1EF0, offset: 0x64CCE, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5720, symBinAddr: 0x157F0, symSize: 0x20 } + - { offsetInCU: 0x1F04, offset: 0x64CE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwta', symObjAddr: 0x5740, symBinAddr: 0x15810, symSize: 0x50 } + - { offsetInCU: 0x1F18, offset: 0x64CF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwet', symObjAddr: 0x5790, symBinAddr: 0x15860, symSize: 0x40 } + - { offsetInCU: 0x1F2C, offset: 0x64D0A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVwst', symObjAddr: 0x57D0, symBinAddr: 0x158A0, symSize: 0x40 } + - { offsetInCU: 0x1F40, offset: 0x64D1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETVMa', symObjAddr: 0x5810, symBinAddr: 0x158E0, symSize: 0x10 } + - { offsetInCU: 0x1F54, offset: 0x64D32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwxx', symObjAddr: 0x5820, symBinAddr: 0x158F0, symSize: 0x40 } + - { offsetInCU: 0x1F68, offset: 0x64D46, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwcp', symObjAddr: 0x5860, symBinAddr: 0x15930, symSize: 0x80 } + - { offsetInCU: 0x1F7C, offset: 0x64D5A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwca', symObjAddr: 0x58E0, symBinAddr: 0x159B0, symSize: 0xB0 } + - { offsetInCU: 0x1F90, offset: 0x64D6E, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5990, symBinAddr: 0x15A60, symSize: 0x30 } + - { offsetInCU: 0x1FA4, offset: 0x64D82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwta', symObjAddr: 0x59C0, symBinAddr: 0x15A90, symSize: 0x80 } + - { offsetInCU: 0x1FB8, offset: 0x64D96, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwet', symObjAddr: 0x5A40, symBinAddr: 0x15B10, symSize: 0x40 } + - { offsetInCU: 0x1FCC, offset: 0x64DAA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVwst', symObjAddr: 0x5A80, symBinAddr: 0x15B50, symSize: 0x50 } + - { offsetInCU: 0x1FE0, offset: 0x64DBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTVMa', symObjAddr: 0x5AD0, symBinAddr: 0x15BA0, symSize: 0x10 } + - { offsetInCU: 0x1FF4, offset: 0x64DD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwxx', symObjAddr: 0x5AE0, symBinAddr: 0x15BB0, symSize: 0x30 } + - { offsetInCU: 0x2008, offset: 0x64DE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwcp', symObjAddr: 0x5B10, symBinAddr: 0x15BE0, symSize: 0x40 } + - { offsetInCU: 0x201C, offset: 0x64DFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwca', symObjAddr: 0x5B50, symBinAddr: 0x15C20, symSize: 0x60 } + - { offsetInCU: 0x2030, offset: 0x64E0E, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5BB0, symBinAddr: 0x15C80, symSize: 0x20 } + - { offsetInCU: 0x2044, offset: 0x64E22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwta', symObjAddr: 0x5BD0, symBinAddr: 0x15CA0, symSize: 0x50 } + - { offsetInCU: 0x2058, offset: 0x64E36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwet', symObjAddr: 0x5C20, symBinAddr: 0x15CF0, symSize: 0x40 } + - { offsetInCU: 0x206C, offset: 0x64E4A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVwst', symObjAddr: 0x5C60, symBinAddr: 0x15D30, symSize: 0x50 } + - { offsetInCU: 0x2080, offset: 0x64E5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDVMa', symObjAddr: 0x5CB0, symBinAddr: 0x15D80, symSize: 0x10 } + - { offsetInCU: 0x2094, offset: 0x64E72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwxx', symObjAddr: 0x5CC0, symBinAddr: 0x15D90, symSize: 0x50 } + - { offsetInCU: 0x20A8, offset: 0x64E86, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwcp', symObjAddr: 0x5D10, symBinAddr: 0x15DE0, symSize: 0xE0 } + - { offsetInCU: 0x20BC, offset: 0x64E9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwca', symObjAddr: 0x5DF0, symBinAddr: 0x15EC0, symSize: 0x110 } + - { offsetInCU: 0x20D0, offset: 0x64EAE, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5F00, symBinAddr: 0x15FD0, symSize: 0x50 } + - { offsetInCU: 0x20E4, offset: 0x64EC2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwta', symObjAddr: 0x5F50, symBinAddr: 0x16020, symSize: 0xD0 } + - { offsetInCU: 0x20F8, offset: 0x64ED6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwet', symObjAddr: 0x6020, symBinAddr: 0x160F0, symSize: 0x40 } + - { offsetInCU: 0x210C, offset: 0x64EEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVwst', symObjAddr: 0x6060, symBinAddr: 0x16130, symSize: 0x60 } + - { offsetInCU: 0x2120, offset: 0x64EFE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PVMa', symObjAddr: 0x60C0, symBinAddr: 0x16190, symSize: 0x10 } + - { offsetInCU: 0x2134, offset: 0x64F12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwxx', symObjAddr: 0x60D0, symBinAddr: 0x161A0, symSize: 0x60 } + - { offsetInCU: 0x2148, offset: 0x64F26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwcp', symObjAddr: 0x6130, symBinAddr: 0x16200, symSize: 0x110 } + - { offsetInCU: 0x215C, offset: 0x64F3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwca', symObjAddr: 0x6240, symBinAddr: 0x16310, symSize: 0x160 } + - { offsetInCU: 0x2170, offset: 0x64F4E, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x63A0, symBinAddr: 0x16470, symSize: 0x10 } + - { offsetInCU: 0x2184, offset: 0x64F62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwta', symObjAddr: 0x63B0, symBinAddr: 0x16480, symSize: 0x100 } + - { offsetInCU: 0x2198, offset: 0x64F76, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwet', symObjAddr: 0x64B0, symBinAddr: 0x16580, symSize: 0x40 } + - { offsetInCU: 0x21AC, offset: 0x64F8A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVwst', symObjAddr: 0x64F0, symBinAddr: 0x165C0, symSize: 0x70 } + - { offsetInCU: 0x21C0, offset: 0x64F9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCVMa', symObjAddr: 0x6560, symBinAddr: 0x16630, symSize: 0x10 } + - { offsetInCU: 0x21D4, offset: 0x64FB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x6570, symBinAddr: 0x16640, symSize: 0x10 } + - { offsetInCU: 0x21E8, offset: 0x64FC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0x6580, symBinAddr: 0x16650, symSize: 0x30 } + - { offsetInCU: 0x21FC, offset: 0x64FDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x65B0, symBinAddr: 0x16680, symSize: 0x10 } + - { offsetInCU: 0x2210, offset: 0x64FEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x65C0, symBinAddr: 0x16690, symSize: 0x30 } + - { offsetInCU: 0x2224, offset: 0x65002, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x65F0, symBinAddr: 0x166C0, symSize: 0x10 } + - { offsetInCU: 0x2238, offset: 0x65016, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x6600, symBinAddr: 0x166D0, symSize: 0x30 } + - { offsetInCU: 0x224C, offset: 0x6502A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x75B0, symBinAddr: 0x17680, symSize: 0x30 } + - { offsetInCU: 0x2260, offset: 0x6503E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESeAAWl', symObjAddr: 0x75E0, symBinAddr: 0x176B0, symSize: 0x30 } + - { offsetInCU: 0x2274, offset: 0x65052, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESeAAWl', symObjAddr: 0x7610, symBinAddr: 0x176E0, symSize: 0x30 } + - { offsetInCU: 0x2288, offset: 0x65066, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0C3KeyAAWl', symObjAddr: 0x7EC0, symBinAddr: 0x17F90, symSize: 0x30 } + - { offsetInCU: 0x229C, offset: 0x6507A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8120, symBinAddr: 0x181F0, symSize: 0x30 } + - { offsetInCU: 0x22B0, offset: 0x6508E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8C50, symBinAddr: 0x18D20, symSize: 0x30 } + - { offsetInCU: 0x22C4, offset: 0x650A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESeAAWl', symObjAddr: 0x8C80, symBinAddr: 0x18D50, symSize: 0x30 } + - { offsetInCU: 0x22D8, offset: 0x650B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs0D3KeyAAWl', symObjAddr: 0x8F60, symBinAddr: 0x19030, symSize: 0x30 } + - { offsetInCU: 0x22EC, offset: 0x650CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVAESEAAWl', symObjAddr: 0x8F90, symBinAddr: 0x19060, symSize: 0x30 } + - { offsetInCU: 0x2300, offset: 0x650DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVAESEAAWl', symObjAddr: 0x8FC0, symBinAddr: 0x19090, symSize: 0x30 } + - { offsetInCU: 0x2314, offset: 0x650F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVAESEAAWl', symObjAddr: 0x9050, symBinAddr: 0x19120, symSize: 0x30 } + - { offsetInCU: 0x2328, offset: 0x65106, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9080, symBinAddr: 0x19150, symSize: 0x80 } + - { offsetInCU: 0x233C, offset: 0x6511A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9100, symBinAddr: 0x191D0, symSize: 0xD0 } + - { offsetInCU: 0x2350, offset: 0x6512E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x91D0, symBinAddr: 0x192A0, symSize: 0x10 } + - { offsetInCU: 0x2364, offset: 0x65142, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x91E0, symBinAddr: 0x192B0, symSize: 0x10 } + - { offsetInCU: 0x2378, offset: 0x65156, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x91F0, symBinAddr: 0x192C0, symSize: 0x80 } + - { offsetInCU: 0x238C, offset: 0x6516A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9270, symBinAddr: 0x19340, symSize: 0xD0 } + - { offsetInCU: 0x23A0, offset: 0x6517E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9340, symBinAddr: 0x19410, symSize: 0x10 } + - { offsetInCU: 0x23B4, offset: 0x65192, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9350, symBinAddr: 0x19420, symSize: 0x10 } + - { offsetInCU: 0x23C8, offset: 0x651A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x9360, symBinAddr: 0x19430, symSize: 0x80 } + - { offsetInCU: 0x23DC, offset: 0x651BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x93E0, symBinAddr: 0x194B0, symSize: 0xD0 } + - { offsetInCU: 0x23F0, offset: 0x651CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwug', symObjAddr: 0x94B0, symBinAddr: 0x19580, symSize: 0x10 } + - { offsetInCU: 0x2404, offset: 0x651E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x94C0, symBinAddr: 0x19590, symSize: 0x10 } + - { offsetInCU: 0x2418, offset: 0x651F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwui', symObjAddr: 0x94D0, symBinAddr: 0x195A0, symSize: 0x10 } + - { offsetInCU: 0x242C, offset: 0x6520A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x94E0, symBinAddr: 0x195B0, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x6521E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0x94F0, symBinAddr: 0x195C0, symSize: 0x80 } + - { offsetInCU: 0x2454, offset: 0x65232, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0x9570, symBinAddr: 0x19640, symSize: 0xD0 } + - { offsetInCU: 0x2468, offset: 0x65246, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9640, symBinAddr: 0x19710, symSize: 0x10 } + - { offsetInCU: 0x247C, offset: 0x6525A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9650, symBinAddr: 0x19720, symSize: 0x10 } + - { offsetInCU: 0x2490, offset: 0x6526E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0x9680, symBinAddr: 0x19750, symSize: 0x10 } + - { offsetInCU: 0x24A4, offset: 0x65282, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0x9690, symBinAddr: 0x19760, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x65296, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwxx', symObjAddr: 0x96A0, symBinAddr: 0x19770, symSize: 0x40 } + - { offsetInCU: 0x24CC, offset: 0x652AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwcp', symObjAddr: 0x96E0, symBinAddr: 0x197B0, symSize: 0x80 } + - { offsetInCU: 0x24E0, offset: 0x652BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwca', symObjAddr: 0x9760, symBinAddr: 0x19830, symSize: 0xC0 } + - { offsetInCU: 0x24F4, offset: 0x652D2, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9820, symBinAddr: 0x198F0, symSize: 0x40 } + - { offsetInCU: 0x2508, offset: 0x652E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwta', symObjAddr: 0x9860, symBinAddr: 0x19930, symSize: 0x90 } + - { offsetInCU: 0x251C, offset: 0x652FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwet', symObjAddr: 0x98F0, symBinAddr: 0x199C0, symSize: 0x40 } + - { offsetInCU: 0x2530, offset: 0x6530E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVwst', symObjAddr: 0x9930, symBinAddr: 0x19A00, symSize: 0x50 } + - { offsetInCU: 0x2544, offset: 0x65322, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDVMa', symObjAddr: 0x9980, symBinAddr: 0x19A50, symSize: 0x10 } + - { offsetInCU: 0x2558, offset: 0x65336, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwxx', symObjAddr: 0x9990, symBinAddr: 0x19A60, symSize: 0x40 } + - { offsetInCU: 0x256C, offset: 0x6534A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwcp', symObjAddr: 0x99D0, symBinAddr: 0x19AA0, symSize: 0x80 } + - { offsetInCU: 0x2580, offset: 0x6535E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwca', symObjAddr: 0x9A50, symBinAddr: 0x19B20, symSize: 0xA0 } + - { offsetInCU: 0x2594, offset: 0x65372, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9AF0, symBinAddr: 0x19BC0, symSize: 0x30 } + - { offsetInCU: 0x25A8, offset: 0x65386, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwta', symObjAddr: 0x9B20, symBinAddr: 0x19BF0, symSize: 0x80 } + - { offsetInCU: 0x25BC, offset: 0x6539A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwet', symObjAddr: 0x9BA0, symBinAddr: 0x19C70, symSize: 0x40 } + - { offsetInCU: 0x25D0, offset: 0x653AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVwst', symObjAddr: 0x9BE0, symBinAddr: 0x19CB0, symSize: 0x50 } + - { offsetInCU: 0x25E4, offset: 0x653C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGVMa', symObjAddr: 0x9C30, symBinAddr: 0x19D00, symSize: 0x10 } + - { offsetInCU: 0x25F8, offset: 0x653D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwxx', symObjAddr: 0x9C40, symBinAddr: 0x19D10, symSize: 0x40 } + - { offsetInCU: 0x260C, offset: 0x653EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwcp', symObjAddr: 0x9C80, symBinAddr: 0x19D50, symSize: 0x80 } + - { offsetInCU: 0x2620, offset: 0x653FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwca', symObjAddr: 0x9D00, symBinAddr: 0x19DD0, symSize: 0xB0 } + - { offsetInCU: 0x2634, offset: 0x65412, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9DB0, symBinAddr: 0x19E80, symSize: 0x30 } + - { offsetInCU: 0x2648, offset: 0x65426, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwta', symObjAddr: 0x9DE0, symBinAddr: 0x19EB0, symSize: 0x80 } + - { offsetInCU: 0x265C, offset: 0x6543A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwet', symObjAddr: 0x9E60, symBinAddr: 0x19F30, symSize: 0x40 } + - { offsetInCU: 0x2670, offset: 0x6544E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVwst', symObjAddr: 0x9EA0, symBinAddr: 0x19F70, symSize: 0x50 } + - { offsetInCU: 0x2684, offset: 0x65462, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBVMa', symObjAddr: 0x9EF0, symBinAddr: 0x19FC0, symSize: 0x10 } + - { offsetInCU: 0x2698, offset: 0x65476, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F00, symBinAddr: 0x19FD0, symSize: 0x10 } + - { offsetInCU: 0x26AC, offset: 0x6548A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9F10, symBinAddr: 0x19FE0, symSize: 0x30 } + - { offsetInCU: 0x26C0, offset: 0x6549E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F40, symBinAddr: 0x1A010, symSize: 0x10 } + - { offsetInCU: 0x26D4, offset: 0x654B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9F50, symBinAddr: 0x1A020, symSize: 0x30 } + - { offsetInCU: 0x26E8, offset: 0x654C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9F80, symBinAddr: 0x1A050, symSize: 0x10 } + - { offsetInCU: 0x26FC, offset: 0x654DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x1A060, symSize: 0x30 } + - { offsetInCU: 0x2710, offset: 0x654EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0x9FC0, symBinAddr: 0x1A090, symSize: 0x10 } + - { offsetInCU: 0x2724, offset: 0x65502, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0x9FD0, symBinAddr: 0x1A0A0, symSize: 0x30 } + - { offsetInCU: 0x2738, offset: 0x65516, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA000, symBinAddr: 0x1A0D0, symSize: 0x10 } + - { offsetInCU: 0x274C, offset: 0x6552A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFSQAAWl', symObjAddr: 0xA010, symBinAddr: 0x1A0E0, symSize: 0x30 } + - { offsetInCU: 0x2760, offset: 0x6553E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA040, symBinAddr: 0x1A110, symSize: 0x10 } + - { offsetInCU: 0x2774, offset: 0x65552, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA050, symBinAddr: 0x1A120, symSize: 0x30 } + - { offsetInCU: 0x2788, offset: 0x65566, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA080, symBinAddr: 0x1A150, symSize: 0x10 } + - { offsetInCU: 0x279C, offset: 0x6557A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x1A160, symSize: 0x30 } + - { offsetInCU: 0x27B0, offset: 0x6558E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0C0, symBinAddr: 0x1A190, symSize: 0x10 } + - { offsetInCU: 0x27C4, offset: 0x655A2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0D0, symBinAddr: 0x1A1A0, symSize: 0x30 } + - { offsetInCU: 0x27D8, offset: 0x655B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA100, symBinAddr: 0x1A1D0, symSize: 0x10 } + - { offsetInCU: 0x27EC, offset: 0x655CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA110, symBinAddr: 0x1A1E0, symSize: 0x30 } + - { offsetInCU: 0x2800, offset: 0x655DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA140, symBinAddr: 0x1A210, symSize: 0x10 } + - { offsetInCU: 0x2814, offset: 0x655F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA150, symBinAddr: 0x1A220, symSize: 0x30 } + - { offsetInCU: 0x2828, offset: 0x65606, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA180, symBinAddr: 0x1A250, symSize: 0x10 } + - { offsetInCU: 0x283C, offset: 0x6561A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA190, symBinAddr: 0x1A260, symSize: 0x30 } + - { offsetInCU: 0x2850, offset: 0x6562E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA1C0, symBinAddr: 0x1A290, symSize: 0x10 } + - { offsetInCU: 0x2864, offset: 0x65642, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x1A2A0, symSize: 0x30 } + - { offsetInCU: 0x2878, offset: 0x65656, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0C3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA200, symBinAddr: 0x1A2D0, symSize: 0x10 } + - { offsetInCU: 0x288C, offset: 0x6566A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA210, symBinAddr: 0x1A2E0, symSize: 0x30 } + - { offsetInCU: 0x28A0, offset: 0x6567E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA240, symBinAddr: 0x1A310, symSize: 0x10 } + - { offsetInCU: 0x28B4, offset: 0x65692, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA250, symBinAddr: 0x1A320, symSize: 0x30 } + - { offsetInCU: 0x28C8, offset: 0x656A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA280, symBinAddr: 0x1A350, symSize: 0x10 } + - { offsetInCU: 0x28DC, offset: 0x656BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA290, symBinAddr: 0x1A360, symSize: 0x30 } + - { offsetInCU: 0x28F0, offset: 0x656CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0xA2C0, symBinAddr: 0x1A390, symSize: 0x30 } + - { offsetInCU: 0x2904, offset: 0x656E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0xA2F0, symBinAddr: 0x1A3C0, symSize: 0x30 } + - { offsetInCU: 0x2918, offset: 0x656F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs0E3KeyAAWl', symObjAddr: 0xA320, symBinAddr: 0x1A3F0, symSize: 0x30 } + - { offsetInCU: 0x292C, offset: 0x6570A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0xA350, symBinAddr: 0x1A420, symSize: 0x80 } + - { offsetInCU: 0x2940, offset: 0x6571E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA3D0, symBinAddr: 0x1A4A0, symSize: 0xD0 } + - { offsetInCU: 0x2954, offset: 0x65732, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA4A0, symBinAddr: 0x1A570, symSize: 0x10 } + - { offsetInCU: 0x2968, offset: 0x65746, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA4B0, symBinAddr: 0x1A580, symSize: 0x10 } + - { offsetInCU: 0x297C, offset: 0x6575A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA630, symBinAddr: 0x1A700, symSize: 0x10 } + - { offsetInCU: 0x2990, offset: 0x6576E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA640, symBinAddr: 0x1A710, symSize: 0x10 } + - { offsetInCU: 0x29A4, offset: 0x65782, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwet', symObjAddr: 0xA650, symBinAddr: 0x1A720, symSize: 0x80 } + - { offsetInCU: 0x29B8, offset: 0x65796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwst', symObjAddr: 0xA6D0, symBinAddr: 0x1A7A0, symSize: 0xD0 } + - { offsetInCU: 0x29CC, offset: 0x657AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOwup', symObjAddr: 0xA7A0, symBinAddr: 0x1A870, symSize: 0x10 } + - { offsetInCU: 0x29E0, offset: 0x657BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOMa', symObjAddr: 0xA7B0, symBinAddr: 0x1A880, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x657D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA7C0, symBinAddr: 0x1A890, symSize: 0x10 } + - { offsetInCU: 0x2A08, offset: 0x657E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA7D0, symBinAddr: 0x1A8A0, symSize: 0x30 } + - { offsetInCU: 0x2A1C, offset: 0x657FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA800, symBinAddr: 0x1A8D0, symSize: 0x10 } + - { offsetInCU: 0x2A30, offset: 0x6580E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA810, symBinAddr: 0x1A8E0, symSize: 0x30 } + - { offsetInCU: 0x2A44, offset: 0x65822, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASQWb', symObjAddr: 0xA840, symBinAddr: 0x1A910, symSize: 0x10 } + - { offsetInCU: 0x2A58, offset: 0x65836, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHSQAAWl', symObjAddr: 0xA850, symBinAddr: 0x1A920, symSize: 0x30 } + - { offsetInCU: 0x2A6C, offset: 0x6584A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA880, symBinAddr: 0x1A950, symSize: 0x10 } + - { offsetInCU: 0x2A80, offset: 0x6585E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA890, symBinAddr: 0x1A960, symSize: 0x30 } + - { offsetInCU: 0x2A94, offset: 0x65872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA8C0, symBinAddr: 0x1A990, symSize: 0x10 } + - { offsetInCU: 0x2AA8, offset: 0x65886, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA8D0, symBinAddr: 0x1A9A0, symSize: 0x30 } + - { offsetInCU: 0x2ABC, offset: 0x6589A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA900, symBinAddr: 0x1A9D0, symSize: 0x10 } + - { offsetInCU: 0x2AD0, offset: 0x658AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA910, symBinAddr: 0x1A9E0, symSize: 0x30 } + - { offsetInCU: 0x2AE4, offset: 0x658C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA940, symBinAddr: 0x1AA10, symSize: 0x10 } + - { offsetInCU: 0x2AF8, offset: 0x658D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA950, symBinAddr: 0x1AA20, symSize: 0x30 } + - { offsetInCU: 0x2B0C, offset: 0x658EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA980, symBinAddr: 0x1AA50, symSize: 0x10 } + - { offsetInCU: 0x2B20, offset: 0x658FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA990, symBinAddr: 0x1AA60, symSize: 0x30 } + - { offsetInCU: 0x2B34, offset: 0x65912, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA9C0, symBinAddr: 0x1AA90, symSize: 0x10 } + - { offsetInCU: 0x2B48, offset: 0x65926, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA9D0, symBinAddr: 0x1AAA0, symSize: 0x30 } + - { offsetInCU: 0x2BA2, offset: 0x65980, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F0, symBinAddr: 0x10310, symSize: 0x20 } + - { offsetInCU: 0x2BBE, offset: 0x6599C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x210, symBinAddr: 0x10330, symSize: 0x20 } + - { offsetInCU: 0x2C29, offset: 0x65A07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1620, symBinAddr: 0x11740, symSize: 0x30 } + - { offsetInCU: 0x2CEA, offset: 0x65AC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x11820, symSize: 0x20 } + - { offsetInCU: 0x2D06, offset: 0x65AE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x11840, symSize: 0x20 } + - { offsetInCU: 0x2D28, offset: 0x65B06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x119D0, symSize: 0x20 } + - { offsetInCU: 0x2D44, offset: 0x65B22, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18D0, symBinAddr: 0x119F0, symSize: 0x20 } + - { offsetInCU: 0x2D66, offset: 0x65B44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x11B80, symSize: 0x20 } + - { offsetInCU: 0x2D82, offset: 0x65B60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x11BA0, symSize: 0x20 } + - { offsetInCU: 0x2DA4, offset: 0x65B82, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BE0, symBinAddr: 0x11D00, symSize: 0x20 } + - { offsetInCU: 0x2DC0, offset: 0x65B9E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C00, symBinAddr: 0x11D20, symSize: 0x20 } + - { offsetInCU: 0x2DE2, offset: 0x65BC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DB0, symBinAddr: 0x11ED0, symSize: 0x20 } + - { offsetInCU: 0x2DFE, offset: 0x65BDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DD0, symBinAddr: 0x11EF0, symSize: 0x20 } + - { offsetInCU: 0x2E51, offset: 0x65C2F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1F30, symBinAddr: 0x12050, symSize: 0x40 } + - { offsetInCU: 0x2EF4, offset: 0x65CD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FE0, symBinAddr: 0x12100, symSize: 0x20 } + - { offsetInCU: 0x2F10, offset: 0x65CEE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2000, symBinAddr: 0x12120, symSize: 0x20 } + - { offsetInCU: 0x2F32, offset: 0x65D10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x2150, symBinAddr: 0x12270, symSize: 0x20 } + - { offsetInCU: 0x2F4E, offset: 0x65D2C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x2170, symBinAddr: 0x12290, symSize: 0x20 } + - { offsetInCU: 0x2F70, offset: 0x65D4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2310, symBinAddr: 0x12430, symSize: 0x20 } + - { offsetInCU: 0x2F8C, offset: 0x65D6A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2330, symBinAddr: 0x12450, symSize: 0x20 } + - { offsetInCU: 0x2FAE, offset: 0x65D8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24F0, symBinAddr: 0x12610, symSize: 0x20 } + - { offsetInCU: 0x2FCA, offset: 0x65DA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2510, symBinAddr: 0x12630, symSize: 0x20 } + - { offsetInCU: 0x30B3, offset: 0x65E91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV10CodingKeys33_4B024185B60AAD6BD439A25F7D3E2AFCLLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0x101A0, symSize: 0xD0 } + - { offsetInCU: 0x3132, offset: 0x65F10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x230, symBinAddr: 0x10350, symSize: 0x4C0 } + - { offsetInCU: 0x3163, offset: 0x65F41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6F0, symBinAddr: 0x10810, symSize: 0xE0 } + - { offsetInCU: 0x3194, offset: 0x65F72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7D0, symBinAddr: 0x108F0, symSize: 0x1A0 } + - { offsetInCU: 0x31C5, offset: 0x65FA3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x970, symBinAddr: 0x10A90, symSize: 0x170 } + - { offsetInCU: 0x31F6, offset: 0x65FD4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xAE0, symBinAddr: 0x10C00, symSize: 0x1D0 } + - { offsetInCU: 0x3227, offset: 0x66005, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect21PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xCB0, symBinAddr: 0x10DD0, symSize: 0x230 } + - { offsetInCU: 0x3258, offset: 0x66036, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect22DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x11000, symSize: 0x110 } + - { offsetInCU: 0x3289, offset: 0x66067, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xFF0, symBinAddr: 0x11110, symSize: 0x1F0 } + - { offsetInCU: 0x32BA, offset: 0x66098, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x11E0, symBinAddr: 0x11300, symSize: 0x210 } + - { offsetInCU: 0x32EB, offset: 0x660C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x13F0, symBinAddr: 0x11510, symSize: 0x130 } + - { offsetInCU: 0x27, offset: 0x66305, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AD20, symSize: 0x60 } + - { offsetInCU: 0x3ED, offset: 0x666CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwCP', symObjAddr: 0x470, symBinAddr: 0x1B190, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x666DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwxx', symObjAddr: 0x4A0, symBinAddr: 0x1B1C0, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x666F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwcp', symObjAddr: 0x4E0, symBinAddr: 0x1B200, symSize: 0xD0 } + - { offsetInCU: 0x429, offset: 0x66707, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwca', symObjAddr: 0x5B0, symBinAddr: 0x1B2D0, symSize: 0x100 } + - { offsetInCU: 0x43D, offset: 0x6671B, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6B0, symBinAddr: 0x1B3D0, symSize: 0x50 } + - { offsetInCU: 0x451, offset: 0x6672F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwta', symObjAddr: 0x700, symBinAddr: 0x1B420, symSize: 0xD0 } + - { offsetInCU: 0x465, offset: 0x66743, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwet', symObjAddr: 0x7D0, symBinAddr: 0x1B4F0, symSize: 0x40 } + - { offsetInCU: 0x479, offset: 0x66757, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVwst', symObjAddr: 0x810, symBinAddr: 0x1B530, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x6676B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVMa', symObjAddr: 0x870, symBinAddr: 0x1B590, symSize: 0xA } + - { offsetInCU: 0x614, offset: 0x668F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AD20, symSize: 0x60 } + - { offsetInCU: 0x653, offset: 0x66931, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x60, symBinAddr: 0x1AD80, symSize: 0x40 } + - { offsetInCU: 0x66D, offset: 0x6694B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xA0, symBinAddr: 0x1ADC0, symSize: 0x50 } + - { offsetInCU: 0x69D, offset: 0x6697B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xF0, symBinAddr: 0x1AE10, symSize: 0x10 } + - { offsetInCU: 0x6B1, offset: 0x6698F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x1AE20, symSize: 0x10 } + - { offsetInCU: 0x6D2, offset: 0x669B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvg', symObjAddr: 0x110, symBinAddr: 0x1AE30, symSize: 0x20 } + - { offsetInCU: 0x6E6, offset: 0x669C4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0Vvs', symObjAddr: 0x130, symBinAddr: 0x1AE50, symSize: 0x20 } + - { offsetInCU: 0x716, offset: 0x669F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM', symObjAddr: 0x150, symBinAddr: 0x1AE70, symSize: 0x20 } + - { offsetInCU: 0x73A, offset: 0x66A18, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14offlineStorageAA07OfflinefD0VvM.resume.0', symObjAddr: 0x170, symBinAddr: 0x1AE90, symSize: 0x10 } + - { offsetInCU: 0x75B, offset: 0x66A39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x180, symBinAddr: 0x1AEA0, symSize: 0x30 } + - { offsetInCU: 0x76F, offset: 0x66A4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1B0, symBinAddr: 0x1AED0, symSize: 0x30 } + - { offsetInCU: 0x7A3, offset: 0x66A81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1E0, symBinAddr: 0x1AF00, symSize: 0x20 } + - { offsetInCU: 0x7C7, offset: 0x66AA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x200, symBinAddr: 0x1AF20, symSize: 0x10 } + - { offsetInCU: 0x7E8, offset: 0x66AC6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvg', symObjAddr: 0x210, symBinAddr: 0x1AF30, symSize: 0x10 } + - { offsetInCU: 0x7FC, offset: 0x66ADA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvs', symObjAddr: 0x220, symBinAddr: 0x1AF40, symSize: 0x10 } + - { offsetInCU: 0x830, offset: 0x66B0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM', symObjAddr: 0x230, symBinAddr: 0x1AF50, symSize: 0x20 } + - { offsetInCU: 0x854, offset: 0x66B32, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x250, symBinAddr: 0x1AF70, symSize: 0x10 } + - { offsetInCU: 0x875, offset: 0x66B53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x260, symBinAddr: 0x1AF80, symSize: 0x10 } + - { offsetInCU: 0x889, offset: 0x66B67, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x270, symBinAddr: 0x1AF90, symSize: 0x10 } + - { offsetInCU: 0x8BD, offset: 0x66B9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x280, symBinAddr: 0x1AFA0, symSize: 0x20 } + - { offsetInCU: 0x8E1, offset: 0x66BBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x1AFC0, symSize: 0x10 } + - { offsetInCU: 0x902, offset: 0x66BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2B0, symBinAddr: 0x1AFD0, symSize: 0x30 } + - { offsetInCU: 0x916, offset: 0x66BF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvs', symObjAddr: 0x2E0, symBinAddr: 0x1B000, symSize: 0x30 } + - { offsetInCU: 0x94A, offset: 0x66C28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM', symObjAddr: 0x310, symBinAddr: 0x1B030, symSize: 0x20 } + - { offsetInCU: 0x96E, offset: 0x66C4C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1B050, symSize: 0x10 } + - { offsetInCU: 0x98F, offset: 0x66C6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvg', symObjAddr: 0x340, symBinAddr: 0x1B060, symSize: 0x30 } + - { offsetInCU: 0x9A3, offset: 0x66C81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvs', symObjAddr: 0x370, symBinAddr: 0x1B090, symSize: 0x30 } + - { offsetInCU: 0x9D7, offset: 0x66CB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3A0, symBinAddr: 0x1B0C0, symSize: 0x20 } + - { offsetInCU: 0x9FB, offset: 0x66CD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x3C0, symBinAddr: 0x1B0E0, symSize: 0x10 } + - { offsetInCU: 0xA1C, offset: 0x66CFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x3D0, symBinAddr: 0x1B0F0, symSize: 0x10 } + - { offsetInCU: 0xA30, offset: 0x66D0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x3E0, symBinAddr: 0x1B100, symSize: 0x10 } + - { offsetInCU: 0xA64, offset: 0x66D42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x3F0, symBinAddr: 0x1B110, symSize: 0x20 } + - { offsetInCU: 0xA88, offset: 0x66D66, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x410, symBinAddr: 0x1B130, symSize: 0x10 } + - { offsetInCU: 0xAA9, offset: 0x66D87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x420, symBinAddr: 0x1B140, symSize: 0x10 } + - { offsetInCU: 0xABD, offset: 0x66D9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x430, symBinAddr: 0x1B150, symSize: 0x10 } + - { offsetInCU: 0xAF1, offset: 0x66DCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x440, symBinAddr: 0x1B160, symSize: 0x20 } + - { offsetInCU: 0xB15, offset: 0x66DF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x460, symBinAddr: 0x1B180, symSize: 0x10 } + - { offsetInCU: 0x7F, offset: 0x66EB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x700, symBinAddr: 0x1BCA0, symSize: 0x30 } + - { offsetInCU: 0xB0, offset: 0x66EE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x730, symBinAddr: 0x1BCD0, symSize: 0x30 } + - { offsetInCU: 0xCC, offset: 0x66F03, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xE50, symBinAddr: 0x1C3D0, symSize: 0x60 } + - { offsetInCU: 0x145, offset: 0x66F7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x930, symBinAddr: 0x1BED0, symSize: 0x30 } + - { offsetInCU: 0x176, offset: 0x66FAD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x960, symBinAddr: 0x1BF00, symSize: 0x30 } + - { offsetInCU: 0x192, offset: 0x66FC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xEF0, symBinAddr: 0x1C430, symSize: 0x60 } + - { offsetInCU: 0x1D2, offset: 0x67009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x990, symBinAddr: 0x1BF30, symSize: 0x120 } + - { offsetInCU: 0x202, offset: 0x67039, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwet', symObjAddr: 0xAD0, symBinAddr: 0x1C050, symSize: 0x80 } + - { offsetInCU: 0x216, offset: 0x6704D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwst', symObjAddr: 0xB50, symBinAddr: 0x1C0D0, symSize: 0xD0 } + - { offsetInCU: 0x22A, offset: 0x67061, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOwup', symObjAddr: 0xC20, symBinAddr: 0x1C1A0, symSize: 0x10 } + - { offsetInCU: 0x23E, offset: 0x67075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOMa', symObjAddr: 0xC30, symBinAddr: 0x1C1B0, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x67089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwet', symObjAddr: 0xC40, symBinAddr: 0x1C1C0, symSize: 0x80 } + - { offsetInCU: 0x266, offset: 0x6709D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwst', symObjAddr: 0xCC0, symBinAddr: 0x1C240, symSize: 0xD0 } + - { offsetInCU: 0x27A, offset: 0x670B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwug', symObjAddr: 0xD90, symBinAddr: 0x1C310, symSize: 0x10 } + - { offsetInCU: 0x28E, offset: 0x670C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwup', symObjAddr: 0xDA0, symBinAddr: 0x1C320, symSize: 0x10 } + - { offsetInCU: 0x2A2, offset: 0x670D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOwui', symObjAddr: 0xDB0, symBinAddr: 0x1C330, symSize: 0x10 } + - { offsetInCU: 0x2B6, offset: 0x670ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOMa', symObjAddr: 0xDC0, symBinAddr: 0x1C340, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x67101, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOSHAASQWb', symObjAddr: 0xDD0, symBinAddr: 0x1C350, symSize: 0x10 } + - { offsetInCU: 0x2DE, offset: 0x67115, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoOAESQAAWl', symObjAddr: 0xDE0, symBinAddr: 0x1C360, symSize: 0x30 } + - { offsetInCU: 0x2F2, offset: 0x67129, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOSHAASQWb', symObjAddr: 0xE10, symBinAddr: 0x1C390, symSize: 0x10 } + - { offsetInCU: 0x306, offset: 0x6713D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsOAESQAAWl', symObjAddr: 0xE20, symBinAddr: 0x1C3A0, symSize: 0x30 } + - { offsetInCU: 0x410, offset: 0x67247, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1B5A0, symSize: 0x370 } + - { offsetInCU: 0x433, offset: 0x6726A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23LogV4InfoO8rawValueSSvg', symObjAddr: 0x370, symBinAddr: 0x1B910, symSize: 0x310 } + - { offsetInCU: 0xD3, offset: 0x67394, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1C780, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x673D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1C7A0, symSize: 0x90 } + - { offsetInCU: 0x16B, offset: 0x6742C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1C830, symSize: 0x10 } + - { offsetInCU: 0x194, offset: 0x67455, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1C840, symSize: 0x10 } + - { offsetInCU: 0x1BD, offset: 0x6747E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1C850, symSize: 0x10 } + - { offsetInCU: 0x1E6, offset: 0x674A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1C8F0, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x674E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1C900, symSize: 0x80 } + - { offsetInCU: 0x28E, offset: 0x6754F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1C980, symSize: 0x60 } + - { offsetInCU: 0x2E3, offset: 0x675A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1C9E0, symSize: 0x90 } + - { offsetInCU: 0x335, offset: 0x675F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1CA70, symSize: 0x80 } + - { offsetInCU: 0x392, offset: 0x67653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1CAF0, symSize: 0x60 } + - { offsetInCU: 0x3C4, offset: 0x67685, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6A0, symBinAddr: 0x1CB50, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x676A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1CB60, symSize: 0x10 } + - { offsetInCU: 0x4D3, offset: 0x67794, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0K11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1020, symBinAddr: 0x1D4D0, symSize: 0x3E0 } + - { offsetInCU: 0x7C6, offset: 0x67A87, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x14C0, symBinAddr: 0x1D970, symSize: 0x20 } + - { offsetInCU: 0x7DA, offset: 0x67A9B, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x14E0, symBinAddr: 0x1D990, symSize: 0x20 } + - { offsetInCU: 0x7EE, offset: 0x67AAF, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1570, symBinAddr: 0x1D9B0, symSize: 0x40 } + - { offsetInCU: 0x802, offset: 0x67AC3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x15B0, symBinAddr: 0x1D9F0, symSize: 0x20 } + - { offsetInCU: 0x816, offset: 0x67AD7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x15D0, symBinAddr: 0x1DA10, symSize: 0x40 } + - { offsetInCU: 0x82A, offset: 0x67AEB, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1610, symBinAddr: 0x1DA50, symSize: 0x30 } + - { offsetInCU: 0x83E, offset: 0x67AFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOy', symObjAddr: 0x1640, symBinAddr: 0x1DA80, symSize: 0x260 } + - { offsetInCU: 0x852, offset: 0x67B13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOy', symObjAddr: 0x18A0, symBinAddr: 0x1DCE0, symSize: 0x30 } + - { offsetInCU: 0x866, offset: 0x67B27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVSgWOe', symObjAddr: 0x18D0, symBinAddr: 0x1DD10, symSize: 0x260 } + - { offsetInCU: 0x87A, offset: 0x67B3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVSgWOe', symObjAddr: 0x1B30, symBinAddr: 0x1DF70, symSize: 0x25 } + - { offsetInCU: 0xA79, offset: 0x67D3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1C4B0, symSize: 0x2B0 } + - { offsetInCU: 0xAA2, offset: 0x67D63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1C760, symSize: 0x20 } + - { offsetInCU: 0xBD2, offset: 0x67E93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0j8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x6C0, symBinAddr: 0x1CB70, symSize: 0x8F0 } + - { offsetInCU: 0xCD9, offset: 0x67F9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0k8MQTTConnH0OtFTf4dnn_n', symObjAddr: 0xFB0, symBinAddr: 0x1D460, symSize: 0x70 } + - { offsetInCU: 0xD57, offset: 0x68018, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x1400, symBinAddr: 0x1D8B0, symSize: 0x60 } + - { offsetInCU: 0xD8C, offset: 0x6804D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0J0_pSgtFTf4dnn_n', symObjAddr: 0x1460, symBinAddr: 0x1D910, symSize: 0x60 } + - { offsetInCU: 0x4F, offset: 0x680F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2B20, symBinAddr: 0x8EC58, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x68113, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvpZ', symObjAddr: 0x2B28, symBinAddr: 0x8EC60, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x68121, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1DFE0, symSize: 0x30 } + - { offsetInCU: 0xB3, offset: 0x6815D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect231ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1E010, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x68193, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1E050, symSize: 0x30 } + - { offsetInCU: 0x159, offset: 0x68203, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0x1E140, symSize: 0x50 } + - { offsetInCU: 0x1E6, offset: 0x68290, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2F0, symBinAddr: 0x1E290, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x682CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x350, symBinAddr: 0x1E2F0, symSize: 0x20 } + - { offsetInCU: 0x29C, offset: 0x68346, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x3C0, symBinAddr: 0x1E360, symSize: 0x80 } + - { offsetInCU: 0x5C1, offset: 0x6866B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1CC0, symBinAddr: 0x1FC60, symSize: 0x170 } + - { offsetInCU: 0x688, offset: 0x68732, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x440, symBinAddr: 0x1E3E0, symSize: 0x80 } + - { offsetInCU: 0x6C0, offset: 0x6876A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4C0, symBinAddr: 0x1E460, symSize: 0xB0 } + - { offsetInCU: 0x700, offset: 0x687AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOy', symObjAddr: 0x5B0, symBinAddr: 0x1E550, symSize: 0x20 } + - { offsetInCU: 0x714, offset: 0x687BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_SgWOe', symObjAddr: 0x620, symBinAddr: 0x1E5C0, symSize: 0x20 } + - { offsetInCU: 0x728, offset: 0x687D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x680, symBinAddr: 0x1E620, symSize: 0x80 } + - { offsetInCU: 0x760, offset: 0x6880A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x700, symBinAddr: 0x1E6A0, symSize: 0xB0 } + - { offsetInCU: 0x7A0, offset: 0x6884A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvpACTk', symObjAddr: 0x910, symBinAddr: 0x1E8B0, symSize: 0x50 } + - { offsetInCU: 0x9AA, offset: 0x68A54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_', symObjAddr: 0x17C0, symBinAddr: 0x1F760, symSize: 0x130 } + - { offsetInCU: 0xAA6, offset: 0x68B50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC03setC5Flags33_17FCE93BD00079DDB4A790576201CC32LLyyKFyyKXEfU_TA', symObjAddr: 0x18F0, symBinAddr: 0x1F890, symSize: 0x10 } + - { offsetInCU: 0xABA, offset: 0x68B64, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A20, symBinAddr: 0x1F9C0, symSize: 0x30 } + - { offsetInCU: 0xAD2, offset: 0x68B7C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOACs0D0AAWl', symObjAddr: 0x1C70, symBinAddr: 0x1FC10, symSize: 0x30 } + - { offsetInCU: 0xAE6, offset: 0x68B90, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCMa', symObjAddr: 0x1CA0, symBinAddr: 0x1FC40, symSize: 0x20 } + - { offsetInCU: 0xAFA, offset: 0x68BA4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCMa', symObjAddr: 0x1E30, symBinAddr: 0x1FDD0, symSize: 0x20 } + - { offsetInCU: 0xB0E, offset: 0x68BB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E50, symBinAddr: 0x1FDF0, symSize: 0x10 } + - { offsetInCU: 0xB22, offset: 0x68BCC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E60, symBinAddr: 0x1FE00, symSize: 0x30 } + - { offsetInCU: 0xB36, offset: 0x68BE0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E90, symBinAddr: 0x1FE30, symSize: 0x10 } + - { offsetInCU: 0xB4A, offset: 0x68BF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1EA0, symBinAddr: 0x1FE40, symSize: 0x30 } + - { offsetInCU: 0xB5E, offset: 0x68C08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOy', symObjAddr: 0x1FF0, symBinAddr: 0x1FF90, symSize: 0x20 } + - { offsetInCU: 0xB72, offset: 0x68C1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwxx', symObjAddr: 0x2010, symBinAddr: 0x1FFB0, symSize: 0x20 } + - { offsetInCU: 0xB86, offset: 0x68C30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOWOe', symObjAddr: 0x2030, symBinAddr: 0x1FFD0, symSize: 0x20 } + - { offsetInCU: 0xB9A, offset: 0x68C44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwca', symObjAddr: 0x20C0, symBinAddr: 0x20060, symSize: 0x70 } + - { offsetInCU: 0xBAE, offset: 0x68C58, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2130, symBinAddr: 0x200D0, symSize: 0x20 } + - { offsetInCU: 0xBC2, offset: 0x68C6C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwta', symObjAddr: 0x2150, symBinAddr: 0x200F0, symSize: 0x40 } + - { offsetInCU: 0xBD6, offset: 0x68C80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwet', symObjAddr: 0x2190, symBinAddr: 0x20130, symSize: 0x50 } + - { offsetInCU: 0xBEA, offset: 0x68C94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwst', symObjAddr: 0x21E0, symBinAddr: 0x20180, symSize: 0x50 } + - { offsetInCU: 0xBFE, offset: 0x68CA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwug', symObjAddr: 0x2230, symBinAddr: 0x201D0, symSize: 0x10 } + - { offsetInCU: 0xC12, offset: 0x68CBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwup', symObjAddr: 0x2240, symBinAddr: 0x201E0, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x68CD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOwui', symObjAddr: 0x2250, symBinAddr: 0x201F0, symSize: 0x10 } + - { offsetInCU: 0xC3A, offset: 0x68CE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x20200, symSize: 0x10 } + - { offsetInCU: 0xC4E, offset: 0x68CF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2450, symBinAddr: 0x203D0, symSize: 0x80 } + - { offsetInCU: 0xC62, offset: 0x68D0C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwst', symObjAddr: 0x24D0, symBinAddr: 0x20450, symSize: 0xD0 } + - { offsetInCU: 0xC76, offset: 0x68D20, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOwup', symObjAddr: 0x25A0, symBinAddr: 0x20520, symSize: 0x10 } + - { offsetInCU: 0xC8A, offset: 0x68D34, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusOMa', symObjAddr: 0x25B0, symBinAddr: 0x20530, symSize: 0x10 } + - { offsetInCU: 0xC9E, offset: 0x68D48, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwet', symObjAddr: 0x25C0, symBinAddr: 0x20540, symSize: 0x80 } + - { offsetInCU: 0xCB2, offset: 0x68D5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwst', symObjAddr: 0x2640, symBinAddr: 0x205C0, symSize: 0xD0 } + - { offsetInCU: 0xCC6, offset: 0x68D70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwug', symObjAddr: 0x2710, symBinAddr: 0x20690, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x68D84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwup', symObjAddr: 0x2720, symBinAddr: 0x206A0, symSize: 0x10 } + - { offsetInCU: 0xCEE, offset: 0x68D98, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOwui', symObjAddr: 0x2730, symBinAddr: 0x206B0, symSize: 0x10 } + - { offsetInCU: 0xD02, offset: 0x68DAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionOMa', symObjAddr: 0x2740, symBinAddr: 0x206C0, symSize: 0x10 } + - { offsetInCU: 0xD21, offset: 0x68DCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2780, symBinAddr: 0x20700, symSize: 0x20 } + - { offsetInCU: 0xD4A, offset: 0x68DF4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_TA', symObjAddr: 0x2880, symBinAddr: 0x20800, symSize: 0x10 } + - { offsetInCU: 0xD5E, offset: 0x68E08, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2890, symBinAddr: 0x20810, symSize: 0x20 } + - { offsetInCU: 0xD72, offset: 0x68E1C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x28B0, symBinAddr: 0x20830, symSize: 0x10 } + - { offsetInCU: 0xD86, offset: 0x68E30, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2940, symBinAddr: 0x20840, symSize: 0x30 } + - { offsetInCU: 0xE08, offset: 0x68EB2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1DFA0, symSize: 0x10 } + - { offsetInCU: 0xE24, offset: 0x68ECE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1DFB0, symSize: 0x10 } + - { offsetInCU: 0xE40, offset: 0x68EEA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1DFC0, symSize: 0x10 } + - { offsetInCU: 0xE5C, offset: 0x68F06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217ReachabilityErrorOs0D0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1DFD0, symSize: 0x10 } + - { offsetInCU: 0x11AB, offset: 0x69255, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea11IoTConnect2E19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1E080, symSize: 0x40 } + - { offsetInCU: 0x11D9, offset: 0x69283, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1E0C0, symSize: 0x50 } + - { offsetInCU: 0x120D, offset: 0x692B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1F0, symBinAddr: 0x1E190, symSize: 0x80 } + - { offsetInCU: 0x1234, offset: 0x692DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x270, symBinAddr: 0x1E210, symSize: 0x10 } + - { offsetInCU: 0x1277, offset: 0x69321, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x280, symBinAddr: 0x1E220, symSize: 0x20 } + - { offsetInCU: 0x137E, offset: 0x69428, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x570, symBinAddr: 0x1E510, symSize: 0x40 } + - { offsetInCU: 0x139B, offset: 0x69445, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5D0, symBinAddr: 0x1E570, symSize: 0x50 } + - { offsetInCU: 0x13C2, offset: 0x6946C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x640, symBinAddr: 0x1E5E0, symSize: 0x30 } + - { offsetInCU: 0x13E5, offset: 0x6948F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x670, symBinAddr: 0x1E610, symSize: 0x10 } + - { offsetInCU: 0x143A, offset: 0x694E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x7B0, symBinAddr: 0x1E750, symSize: 0x40 } + - { offsetInCU: 0x1457, offset: 0x69501, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7F0, symBinAddr: 0x1E790, symSize: 0x50 } + - { offsetInCU: 0x147E, offset: 0x69528, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x840, symBinAddr: 0x1E7E0, symSize: 0x30 } + - { offsetInCU: 0x14A1, offset: 0x6954B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x870, symBinAddr: 0x1E810, symSize: 0x10 } + - { offsetInCU: 0x14C2, offset: 0x6956C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x880, symBinAddr: 0x1E820, symSize: 0x30 } + - { offsetInCU: 0x14DF, offset: 0x69589, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x8B0, symBinAddr: 0x1E850, symSize: 0x30 } + - { offsetInCU: 0x1506, offset: 0x695B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8E0, symBinAddr: 0x1E880, symSize: 0x30 } + - { offsetInCU: 0x154E, offset: 0x695F8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvg', symObjAddr: 0x960, symBinAddr: 0x1E900, symSize: 0x30 } + - { offsetInCU: 0x156B, offset: 0x69615, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0Cvs', symObjAddr: 0x990, symBinAddr: 0x1E930, symSize: 0x40 } + - { offsetInCU: 0x1592, offset: 0x6963C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18notificationCenterSo014NSNotificationE0CvM', symObjAddr: 0x9D0, symBinAddr: 0x1E970, symSize: 0x30 } + - { offsetInCU: 0x15BC, offset: 0x69666, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StringSSvg', symObjAddr: 0xA00, symBinAddr: 0x1E9A0, symSize: 0xD0 } + - { offsetInCU: 0x1633, offset: 0x696DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC07currentC6StatusAC10ConnectionOvg', symObjAddr: 0xAD0, symBinAddr: 0x1EA70, symSize: 0xA0 } + - { offsetInCU: 0x16A6, offset: 0x69750, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB70, symBinAddr: 0x1EB10, symSize: 0xA0 } + - { offsetInCU: 0x1763, offset: 0x6980D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyF', symObjAddr: 0xC10, symBinAddr: 0x1EBB0, symSize: 0x1F0 } + - { offsetInCU: 0x17CC, offset: 0x69876, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC06notifyC7Changed33_17FCE93BD00079DDB4A790576201CC32LLyyFyycfU_', symObjAddr: 0x1900, symBinAddr: 0x1F8A0, symSize: 0x120 } + - { offsetInCU: 0x1890, offset: 0x6993A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfC', symObjAddr: 0xE00, symBinAddr: 0x1EDA0, symSize: 0x60 } + - { offsetInCU: 0x18BA, offset: 0x69964, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfc', symObjAddr: 0xE60, symBinAddr: 0x1EE00, symSize: 0x30 } + - { offsetInCU: 0x18DC, offset: 0x69986, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8hostname8queueQoS11targetQueue012notificationH0ACSS_8Dispatch0jF1SVSo012OS_dispatch_E0CSgAMtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1EE30, symSize: 0x160 } + - { offsetInCU: 0x1981, offset: 0x69A2B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC8queueQoS11targetQueue012notificationG0AC8Dispatch0iE1SV_So012OS_dispatch_D0CSgALtKcfC', symObjAddr: 0xFF0, symBinAddr: 0x1EF90, symSize: 0x10 } + - { offsetInCU: 0x19CE, offset: 0x69A78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC12stopNotifieryyF', symObjAddr: 0x1070, symBinAddr: 0x1F010, symSize: 0x30 } + - { offsetInCU: 0x1A52, offset: 0x69AFC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfd', symObjAddr: 0x1000, symBinAddr: 0x1EFA0, symSize: 0x70 } + - { offsetInCU: 0x1AE4, offset: 0x69B8E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityCfD', symObjAddr: 0x10A0, symBinAddr: 0x1F040, symSize: 0x80 } + - { offsetInCU: 0x1BB2, offset: 0x69C5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKF', symObjAddr: 0x1120, symBinAddr: 0x1F0C0, symSize: 0x230 } + - { offsetInCU: 0x1D80, offset: 0x69E2A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_To', symObjAddr: 0x1350, symBinAddr: 0x1F2F0, symSize: 0x10 } + - { offsetInCU: 0x1DD7, offset: 0x69E81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x1360, symBinAddr: 0x1F300, symSize: 0x10 } + - { offsetInCU: 0x1E25, offset: 0x69ECF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1370, symBinAddr: 0x1F310, symSize: 0x10 } + - { offsetInCU: 0x1E3D, offset: 0x69EE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1380, symBinAddr: 0x1F320, symSize: 0xB0 } + - { offsetInCU: 0x1EE3, offset: 0x69F8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1470, symBinAddr: 0x1F410, symSize: 0x10 } + - { offsetInCU: 0x1EFB, offset: 0x69FA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC13startNotifieryyKFySo09SCNetworkC3Refa_So0fC5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x27F0, symBinAddr: 0x20770, symSize: 0x70 } + - { offsetInCU: 0x1FD2, offset: 0x6A07C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC11descriptionSSvg', symObjAddr: 0x1430, symBinAddr: 0x1F3D0, symSize: 0x40 } + - { offsetInCU: 0x200D, offset: 0x6A0B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14A0, symBinAddr: 0x1F440, symSize: 0x90 } + - { offsetInCU: 0x20EA, offset: 0x6A194, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV11IoTConnect2E11descriptionSSvg', symObjAddr: 0x15F0, symBinAddr: 0x1F590, symSize: 0x1D0 } + - { offsetInCU: 0x27E1, offset: 0x6A88B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221ReachabilityWeakifier33_17FCE93BD00079DDB4A790576201CC32LLCfD', symObjAddr: 0x1A50, symBinAddr: 0x1F9F0, symSize: 0x20 } + - { offsetInCU: 0x2824, offset: 0x6A8CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationI0ACSo09SCNetworkcE0a_8Dispatch0lG1SVSo012OS_dispatch_F0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1A70, symBinAddr: 0x1FA10, symSize: 0x200 } + - { offsetInCU: 0x43, offset: 0x6AA81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x20A00, symSize: 0x30 } + - { offsetInCU: 0x57, offset: 0x6AA95, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x20A30, symSize: 0x80 } + - { offsetInCU: 0x6B, offset: 0x6AAA9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x20AB0, symSize: 0x130 } + - { offsetInCU: 0x86, offset: 0x6AAC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x20BE0, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x6AAED, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x20C10, symSize: 0x30 } + - { offsetInCU: 0xC3, offset: 0x6AB01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x20C40, symSize: 0xC0 } + - { offsetInCU: 0xD7, offset: 0x6AB15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x20D00, symSize: 0x50 } + - { offsetInCU: 0xEB, offset: 0x6AB29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x20D50, symSize: 0x50 } + - { offsetInCU: 0xFF, offset: 0x6AB3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x20DA0, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x6AB51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x20DB0, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x6AB65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x20DE0, symSize: 0x30 } + - { offsetInCU: 0x13B, offset: 0x6AB79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x20E10, symSize: 0x60 } + - { offsetInCU: 0x14F, offset: 0x6AB8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x20E70, symSize: 0x80 } + - { offsetInCU: 0x163, offset: 0x6ABA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x20EF0, symSize: 0x60 } + - { offsetInCU: 0x177, offset: 0x6ABB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x20F50, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x6ABC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x20FA0, symSize: 0x50 } + - { offsetInCU: 0x19F, offset: 0x6ABDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x20FF0, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x6AC29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x21420, symSize: 0x10 } + - { offsetInCU: 0x243, offset: 0x6AC81, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA30, symBinAddr: 0x21430, symSize: 0x30 } + - { offsetInCU: 0x327, offset: 0x6AD65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x21460, symSize: 0x20 } + - { offsetInCU: 0x399, offset: 0x6ADD7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAB0, symBinAddr: 0x214B0, symSize: 0x20 } + - { offsetInCU: 0x3E8, offset: 0x6AE26, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD0, symBinAddr: 0x214D0, symSize: 0x70 } + - { offsetInCU: 0x442, offset: 0x6AE80, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB40, symBinAddr: 0x21540, symSize: 0x10 } + - { offsetInCU: 0x45E, offset: 0x6AE9C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB50, symBinAddr: 0x21550, symSize: 0x10 } + - { offsetInCU: 0x49B, offset: 0x6AED9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBA0, symBinAddr: 0x215A0, symSize: 0x40 } + - { offsetInCU: 0x4D2, offset: 0x6AF10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE0, symBinAddr: 0x215E0, symSize: 0x40 } + - { offsetInCU: 0x4F5, offset: 0x6AF33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFE0, symBinAddr: 0x219E0, symSize: 0x140 } + - { offsetInCU: 0x582, offset: 0x6AFC0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC20, symBinAddr: 0x21620, symSize: 0x10 } + - { offsetInCU: 0x5D5, offset: 0x6B013, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x21640, symSize: 0x20 } + - { offsetInCU: 0x64F, offset: 0x6B08D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC70, symBinAddr: 0x21670, symSize: 0x60 } + - { offsetInCU: 0x684, offset: 0x6B0C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x216D0, symSize: 0x20 } + - { offsetInCU: 0x6B5, offset: 0x6B0F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF0, symBinAddr: 0x216F0, symSize: 0x10 } + - { offsetInCU: 0x6D1, offset: 0x6B10F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x21700, symSize: 0x10 } + - { offsetInCU: 0x6ED, offset: 0x6B12B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1250, symBinAddr: 0x21BB0, symSize: 0x120 } + - { offsetInCU: 0x79D, offset: 0x6B1DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD50, symBinAddr: 0x21750, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x6B212, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD90, symBinAddr: 0x21790, symSize: 0x40 } + - { offsetInCU: 0x7F7, offset: 0x6B235, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1370, symBinAddr: 0x21CD0, symSize: 0x250 } + - { offsetInCU: 0x866, offset: 0x6B2A4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x21870, symSize: 0x70 } + - { offsetInCU: 0x89B, offset: 0x6B2D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE0, symBinAddr: 0x218E0, symSize: 0x20 } + - { offsetInCU: 0x8CC, offset: 0x6B30A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF00, symBinAddr: 0x21900, symSize: 0x10 } + - { offsetInCU: 0x8E8, offset: 0x6B326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF10, symBinAddr: 0x21910, symSize: 0x10 } + - { offsetInCU: 0x904, offset: 0x6B342, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D30, symBinAddr: 0x225F0, symSize: 0x130 } + - { offsetInCU: 0x9B4, offset: 0x6B3F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF60, symBinAddr: 0x21960, symSize: 0x40 } + - { offsetInCU: 0x9EB, offset: 0x6B429, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFA0, symBinAddr: 0x219A0, symSize: 0x40 } + - { offsetInCU: 0xA0E, offset: 0x6B44C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E60, symBinAddr: 0x22720, symSize: 0x2F0 } + - { offsetInCU: 0xA6B, offset: 0x6B4A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x1190, symBinAddr: 0x21B20, symSize: 0x30 } + - { offsetInCU: 0xA7F, offset: 0x6B4BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSeAAWl', symObjAddr: 0x11F0, symBinAddr: 0x21B50, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x6B4D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x21B80, symSize: 0x30 } + - { offsetInCU: 0xAA7, offset: 0x6B4E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0F3KeyAAWl', symObjAddr: 0x15C0, symBinAddr: 0x21F20, symSize: 0x30 } + - { offsetInCU: 0xABB, offset: 0x6B4F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x1630, symBinAddr: 0x21F50, symSize: 0x30 } + - { offsetInCU: 0xACF, offset: 0x6B50D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x16F0, symBinAddr: 0x22010, symSize: 0x30 } + - { offsetInCU: 0xAE3, offset: 0x6B521, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x1760, symBinAddr: 0x22060, symSize: 0x10 } + - { offsetInCU: 0xAF7, offset: 0x6B535, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x1770, symBinAddr: 0x22070, symSize: 0x10 } + - { offsetInCU: 0xB0B, offset: 0x6B549, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x1780, symBinAddr: 0x22080, symSize: 0x10 } + - { offsetInCU: 0xB1F, offset: 0x6B55D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x1790, symBinAddr: 0x22090, symSize: 0x10 } + - { offsetInCU: 0xB33, offset: 0x6B571, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x220A0, symSize: 0x50 } + - { offsetInCU: 0xB47, offset: 0x6B585, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x220F0, symSize: 0xA0 } + - { offsetInCU: 0xB5B, offset: 0x6B599, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwug', symObjAddr: 0x18A0, symBinAddr: 0x22190, symSize: 0x10 } + - { offsetInCU: 0xB6F, offset: 0x6B5AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x18B0, symBinAddr: 0x221A0, symSize: 0x10 } + - { offsetInCU: 0xB83, offset: 0x6B5C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwui', symObjAddr: 0x18C0, symBinAddr: 0x221B0, symSize: 0x10 } + - { offsetInCU: 0xB97, offset: 0x6B5D5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x18D0, symBinAddr: 0x221C0, symSize: 0x10 } + - { offsetInCU: 0xBAB, offset: 0x6B5E9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwxx', symObjAddr: 0x18E0, symBinAddr: 0x221D0, symSize: 0x40 } + - { offsetInCU: 0xBBF, offset: 0x6B5FD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwcp', symObjAddr: 0x1920, symBinAddr: 0x22210, symSize: 0x80 } + - { offsetInCU: 0xBD3, offset: 0x6B611, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwca', symObjAddr: 0x19A0, symBinAddr: 0x22290, symSize: 0xA0 } + - { offsetInCU: 0xBE7, offset: 0x6B625, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwta', symObjAddr: 0x1A70, symBinAddr: 0x22330, symSize: 0x80 } + - { offsetInCU: 0xBFB, offset: 0x6B639, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwet', symObjAddr: 0x1AF0, symBinAddr: 0x223B0, symSize: 0x50 } + - { offsetInCU: 0xC0F, offset: 0x6B64D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVwst', symObjAddr: 0x1B40, symBinAddr: 0x22400, symSize: 0x60 } + - { offsetInCU: 0xC23, offset: 0x6B661, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataVMa', symObjAddr: 0x1BA0, symBinAddr: 0x22460, symSize: 0x10 } + - { offsetInCU: 0xC37, offset: 0x6B675, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BB0, symBinAddr: 0x22470, symSize: 0x10 } + - { offsetInCU: 0xC4B, offset: 0x6B689, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1BC0, symBinAddr: 0x22480, symSize: 0x30 } + - { offsetInCU: 0xC5F, offset: 0x6B69D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x1BF0, symBinAddr: 0x224B0, symSize: 0x10 } + - { offsetInCU: 0xC73, offset: 0x6B6B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x1C00, symBinAddr: 0x224C0, symSize: 0x30 } + - { offsetInCU: 0xC87, offset: 0x6B6C5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C30, symBinAddr: 0x224F0, symSize: 0x10 } + - { offsetInCU: 0xC9B, offset: 0x6B6D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C40, symBinAddr: 0x22500, symSize: 0x30 } + - { offsetInCU: 0xCAF, offset: 0x6B6ED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C70, symBinAddr: 0x22530, symSize: 0x10 } + - { offsetInCU: 0xCC3, offset: 0x6B701, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C80, symBinAddr: 0x22540, symSize: 0x30 } + - { offsetInCU: 0xCD7, offset: 0x6B715, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CB0, symBinAddr: 0x22570, symSize: 0x10 } + - { offsetInCU: 0xCEB, offset: 0x6B729, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CC0, symBinAddr: 0x22580, symSize: 0x30 } + - { offsetInCU: 0xCFF, offset: 0x6B73D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF0, symBinAddr: 0x225B0, symSize: 0x10 } + - { offsetInCU: 0xD13, offset: 0x6B751, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x225C0, symSize: 0x30 } + - { offsetInCU: 0xD27, offset: 0x6B765, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs0G3KeyAAWl', symObjAddr: 0x2150, symBinAddr: 0x22A10, symSize: 0x30 } + - { offsetInCU: 0xD3B, offset: 0x6B779, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOwup', symObjAddr: 0x22F0, symBinAddr: 0x22BB0, symSize: 0x10 } + - { offsetInCU: 0xD4F, offset: 0x6B78D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOMa', symObjAddr: 0x2300, symBinAddr: 0x22BC0, symSize: 0x10 } + - { offsetInCU: 0xD63, offset: 0x6B7A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASQWb', symObjAddr: 0x2310, symBinAddr: 0x22BD0, symSize: 0x10 } + - { offsetInCU: 0xD77, offset: 0x6B7B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFSQAAWl', symObjAddr: 0x2320, symBinAddr: 0x22BE0, symSize: 0x30 } + - { offsetInCU: 0xD8B, offset: 0x6B7C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2350, symBinAddr: 0x22C10, symSize: 0x10 } + - { offsetInCU: 0xD9F, offset: 0x6B7DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2360, symBinAddr: 0x22C20, symSize: 0x30 } + - { offsetInCU: 0xDB3, offset: 0x6B7F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2390, symBinAddr: 0x22C50, symSize: 0x10 } + - { offsetInCU: 0xDC7, offset: 0x6B805, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23A0, symBinAddr: 0x22C60, symSize: 0x30 } + - { offsetInCU: 0xE26, offset: 0x6B864, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA80, symBinAddr: 0x21480, symSize: 0x30 } + - { offsetInCU: 0xEE7, offset: 0x6B925, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x21560, symSize: 0x20 } + - { offsetInCU: 0xF03, offset: 0x6B941, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB80, symBinAddr: 0x21580, symSize: 0x20 } + - { offsetInCU: 0xF25, offset: 0x6B963, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD10, symBinAddr: 0x21710, symSize: 0x20 } + - { offsetInCU: 0xF41, offset: 0x6B97F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD30, symBinAddr: 0x21730, symSize: 0x20 } + - { offsetInCU: 0xF63, offset: 0x6B9A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF20, symBinAddr: 0x21920, symSize: 0x20 } + - { offsetInCU: 0xF7F, offset: 0x6B9BD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV10CodingKeys33_9425940E3EC4B13D58EAEA207546B25CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF40, symBinAddr: 0x21940, symSize: 0x20 } + - { offsetInCU: 0x106E, offset: 0x6BAAC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x21000, symSize: 0x100 } + - { offsetInCU: 0x109F, offset: 0x6BADD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x700, symBinAddr: 0x21100, symSize: 0x1B0 } + - { offsetInCU: 0x10D0, offset: 0x6BB0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect221EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B0, symBinAddr: 0x212B0, symSize: 0x170 } + - { offsetInCU: 0xA6, offset: 0x6BCC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x590, symBinAddr: 0x23220, symSize: 0x10 } + - { offsetInCU: 0xE2, offset: 0x6BD05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x5A0, symBinAddr: 0x23230, symSize: 0x40 } + - { offsetInCU: 0x1C6, offset: 0x6BDE9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E0, symBinAddr: 0x23270, symSize: 0x20 } + - { offsetInCU: 0x4B7, offset: 0x6C0DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASQWb', symObjAddr: 0x640, symBinAddr: 0x232D0, symSize: 0x10 } + - { offsetInCU: 0x4CB, offset: 0x6C0EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOACSQAAWl', symObjAddr: 0x650, symBinAddr: 0x232E0, symSize: 0x30 } + - { offsetInCU: 0x4DF, offset: 0x6C102, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwCP', symObjAddr: 0x680, symBinAddr: 0x23310, symSize: 0x30 } + - { offsetInCU: 0x4F3, offset: 0x6C116, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwxx', symObjAddr: 0x6B0, symBinAddr: 0x23340, symSize: 0x80 } + - { offsetInCU: 0x507, offset: 0x6C12A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwcp', symObjAddr: 0x730, symBinAddr: 0x233C0, symSize: 0x250 } + - { offsetInCU: 0x51B, offset: 0x6C13E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwca', symObjAddr: 0x980, symBinAddr: 0x23610, symSize: 0x4F0 } + - { offsetInCU: 0x536, offset: 0x6C159, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVWOh', symObjAddr: 0xE70, symBinAddr: 0x23B00, symSize: 0x30 } + - { offsetInCU: 0x55F, offset: 0x6C182, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVWOh', symObjAddr: 0xEA0, symBinAddr: 0x23B30, symSize: 0x20 } + - { offsetInCU: 0x573, offset: 0x6C196, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215SDKClientOptionVWOh', symObjAddr: 0xEC0, symBinAddr: 0x23B50, symSize: 0x30 } + - { offsetInCU: 0x587, offset: 0x6C1AA, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xEF0, symBinAddr: 0x23B80, symSize: 0x10 } + - { offsetInCU: 0x59B, offset: 0x6C1BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwta', symObjAddr: 0xF00, symBinAddr: 0x23B90, symSize: 0x340 } + - { offsetInCU: 0x5AF, offset: 0x6C1D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwet', symObjAddr: 0x1240, symBinAddr: 0x23ED0, symSize: 0x40 } + - { offsetInCU: 0x5C3, offset: 0x6C1E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVwst', symObjAddr: 0x1280, symBinAddr: 0x23F10, symSize: 0x90 } + - { offsetInCU: 0x5D7, offset: 0x6C1FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigVMa', symObjAddr: 0x1310, symBinAddr: 0x23FA0, symSize: 0x10 } + - { offsetInCU: 0x5EB, offset: 0x6C20E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwxx', symObjAddr: 0x1330, symBinAddr: 0x23FC0, symSize: 0x10 } + - { offsetInCU: 0x5FF, offset: 0x6C222, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwca', symObjAddr: 0x1380, symBinAddr: 0x24010, symSize: 0x50 } + - { offsetInCU: 0x613, offset: 0x6C236, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x13D0, symBinAddr: 0x24060, symSize: 0x20 } + - { offsetInCU: 0x627, offset: 0x6C24A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwta', symObjAddr: 0x13F0, symBinAddr: 0x24080, symSize: 0x40 } + - { offsetInCU: 0x63B, offset: 0x6C25E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwet', symObjAddr: 0x1430, symBinAddr: 0x240C0, symSize: 0x40 } + - { offsetInCU: 0x64F, offset: 0x6C272, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVwst', symObjAddr: 0x1470, symBinAddr: 0x24100, symSize: 0x50 } + - { offsetInCU: 0x663, offset: 0x6C286, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigVMa', symObjAddr: 0x14C0, symBinAddr: 0x24150, symSize: 0x10 } + - { offsetInCU: 0x677, offset: 0x6C29A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwxx', symObjAddr: 0x14D0, symBinAddr: 0x24160, symSize: 0x30 } + - { offsetInCU: 0x68B, offset: 0x6C2AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwcp', symObjAddr: 0x1500, symBinAddr: 0x24190, symSize: 0x80 } + - { offsetInCU: 0x69F, offset: 0x6C2C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwca', symObjAddr: 0x1580, symBinAddr: 0x24210, symSize: 0xE0 } + - { offsetInCU: 0x6B3, offset: 0x6C2D6, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1660, symBinAddr: 0x242F0, symSize: 0x30 } + - { offsetInCU: 0x6C7, offset: 0x6C2EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwta', symObjAddr: 0x1690, symBinAddr: 0x24320, symSize: 0x90 } + - { offsetInCU: 0x6DB, offset: 0x6C2FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwet', symObjAddr: 0x1720, symBinAddr: 0x243B0, symSize: 0x50 } + - { offsetInCU: 0x6EF, offset: 0x6C312, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVwst', symObjAddr: 0x1770, symBinAddr: 0x24400, symSize: 0x60 } + - { offsetInCU: 0x703, offset: 0x6C326, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigVMa', symObjAddr: 0x17D0, symBinAddr: 0x24460, symSize: 0x10 } + - { offsetInCU: 0x717, offset: 0x6C33A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwxx', symObjAddr: 0x17E0, symBinAddr: 0x24470, symSize: 0x30 } + - { offsetInCU: 0x72B, offset: 0x6C34E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwcp', symObjAddr: 0x1810, symBinAddr: 0x244A0, symSize: 0x40 } + - { offsetInCU: 0x73F, offset: 0x6C362, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwca', symObjAddr: 0x1850, symBinAddr: 0x244E0, symSize: 0x60 } + - { offsetInCU: 0x753, offset: 0x6C376, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwta', symObjAddr: 0x18D0, symBinAddr: 0x24540, symSize: 0x50 } + - { offsetInCU: 0x767, offset: 0x6C38A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwet', symObjAddr: 0x1920, symBinAddr: 0x24590, symSize: 0x40 } + - { offsetInCU: 0x77B, offset: 0x6C39E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVwst', symObjAddr: 0x1960, symBinAddr: 0x245D0, symSize: 0x50 } + - { offsetInCU: 0x78F, offset: 0x6C3B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigVMa', symObjAddr: 0x19B0, symBinAddr: 0x24620, symSize: 0x10 } + - { offsetInCU: 0x7A3, offset: 0x6C3C6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwet', symObjAddr: 0x19D0, symBinAddr: 0x24630, symSize: 0x40 } + - { offsetInCU: 0x7B7, offset: 0x6C3DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVwst', symObjAddr: 0x1A10, symBinAddr: 0x24670, symSize: 0x50 } + - { offsetInCU: 0x7CB, offset: 0x6C3EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigVMa', symObjAddr: 0x1A60, symBinAddr: 0x246C0, symSize: 0x10 } + - { offsetInCU: 0x7DF, offset: 0x6C402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwet', symObjAddr: 0x1A80, symBinAddr: 0x246D0, symSize: 0x80 } + - { offsetInCU: 0x7F3, offset: 0x6C416, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwst', symObjAddr: 0x1B00, symBinAddr: 0x24750, symSize: 0xD0 } + - { offsetInCU: 0x807, offset: 0x6C42A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwug', symObjAddr: 0x1BD0, symBinAddr: 0x24820, symSize: 0x10 } + - { offsetInCU: 0x81B, offset: 0x6C43E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwup', symObjAddr: 0x1BE0, symBinAddr: 0x24830, symSize: 0x10 } + - { offsetInCU: 0x82F, offset: 0x6C452, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOwui', symObjAddr: 0x1BF0, symBinAddr: 0x24840, symSize: 0x10 } + - { offsetInCU: 0x843, offset: 0x6C466, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOMa', symObjAddr: 0x1C00, symBinAddr: 0x24850, symSize: 0x10 } + - { offsetInCU: 0x8BA, offset: 0x6C4DD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x600, symBinAddr: 0x23290, symSize: 0x40 } + - { offsetInCU: 0xA5E, offset: 0x6C681, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22CF0, symSize: 0x10 } + - { offsetInCU: 0xA93, offset: 0x6C6B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A14TConnectConfigV8uniqueId18mqttConnectionType05debugD00gD010sdkOptionsACSS_AA04MqtthI0OAA05DebugD0VSgAA0mD0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x22D00, symSize: 0x280 } + - { offsetInCU: 0xB04, offset: 0x6C727, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x2C0, symBinAddr: 0x22F80, symSize: 0x30 } + - { offsetInCU: 0xB1E, offset: 0x6C741, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x2F0, symBinAddr: 0x22FB0, symSize: 0x30 } + - { offsetInCU: 0xB52, offset: 0x6C775, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x320, symBinAddr: 0x22FE0, symSize: 0x10 } + - { offsetInCU: 0xB66, offset: 0x6C789, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x22FF0, symSize: 0x10 } + - { offsetInCU: 0xB87, offset: 0x6C7AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvg', symObjAddr: 0x340, symBinAddr: 0x23000, symSize: 0x10 } + - { offsetInCU: 0xB9B, offset: 0x6C7BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvs', symObjAddr: 0x350, symBinAddr: 0x23010, symSize: 0x10 } + - { offsetInCU: 0xBCF, offset: 0x6C7F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM', symObjAddr: 0x360, symBinAddr: 0x23020, symSize: 0x20 } + - { offsetInCU: 0xBF3, offset: 0x6C816, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x380, symBinAddr: 0x23040, symSize: 0x10 } + - { offsetInCU: 0xC14, offset: 0x6C837, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV011certificateD0AA011CertificateD0VSgvg', symObjAddr: 0x390, symBinAddr: 0x23050, symSize: 0x30 } + - { offsetInCU: 0xC28, offset: 0x6C84B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MqttConfigV014offlineStorageD0AA07OfflinefD0VSgvg', symObjAddr: 0x3F0, symBinAddr: 0x23080, symSize: 0x20 } + - { offsetInCU: 0xC3C, offset: 0x6C85F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV15certificatePathSSvg', symObjAddr: 0x410, symBinAddr: 0x230A0, symSize: 0x30 } + - { offsetInCU: 0xC50, offset: 0x6C873, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x440, symBinAddr: 0x230D0, symSize: 0x30 } + - { offsetInCU: 0xC64, offset: 0x6C887, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x470, symBinAddr: 0x23100, symSize: 0x10 } + - { offsetInCU: 0xC78, offset: 0x6C89B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x480, symBinAddr: 0x23110, symSize: 0x10 } + - { offsetInCU: 0xCAA, offset: 0x6C8CD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x490, symBinAddr: 0x23120, symSize: 0x10 } + - { offsetInCU: 0xCBE, offset: 0x6C8E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x4A0, symBinAddr: 0x23130, symSize: 0x10 } + - { offsetInCU: 0xCDF, offset: 0x6C902, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x4B0, symBinAddr: 0x23140, symSize: 0x10 } + - { offsetInCU: 0xCF3, offset: 0x6C916, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x4C0, symBinAddr: 0x23150, symSize: 0x10 } + - { offsetInCU: 0xD25, offset: 0x6C948, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x4D0, symBinAddr: 0x23160, symSize: 0x20 } + - { offsetInCU: 0xD49, offset: 0x6C96C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x4F0, symBinAddr: 0x23180, symSize: 0x10 } + - { offsetInCU: 0xD6A, offset: 0x6C98D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x500, symBinAddr: 0x23190, symSize: 0x20 } + - { offsetInCU: 0xD8E, offset: 0x6C9B1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x520, symBinAddr: 0x231B0, symSize: 0x10 } + - { offsetInCU: 0xDBD, offset: 0x6C9E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x530, symBinAddr: 0x231C0, symSize: 0x20 } + - { offsetInCU: 0xE48, offset: 0x6CA6B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect218MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x550, symBinAddr: 0x231E0, symSize: 0x40 } + - { offsetInCU: 0x9EB, offset: 0x6D57E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyFTo', symObjAddr: 0x90E0, symBinAddr: 0x2D980, symSize: 0x30 } + - { offsetInCU: 0x17E2, offset: 0x6E375, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x1A280, symBinAddr: 0x3EB20, symSize: 0x80 } + - { offsetInCU: 0x1884, offset: 0x6E417, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x1B470, symBinAddr: 0x3FD10, symSize: 0x40 } + - { offsetInCU: 0x18A0, offset: 0x6E433, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x1B4B0, symBinAddr: 0x3FD50, symSize: 0x160 } + - { offsetInCU: 0x19A9, offset: 0x6E53C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x1B610, symBinAddr: 0x3FEB0, symSize: 0x50 } + - { offsetInCU: 0x1A27, offset: 0x6E5BA, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x1B6B0, symBinAddr: 0x3FF00, symSize: 0x40 } + - { offsetInCU: 0x1AB5, offset: 0x6E648, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x1B6F0, symBinAddr: 0x3FF40, symSize: 0x40 } + - { offsetInCU: 0x1B23, offset: 0x6E6B6, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x1B730, symBinAddr: 0x3FF80, symSize: 0x60 } + - { offsetInCU: 0x22CB, offset: 0x6EE5E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x1C790, symBinAddr: 0x40FE0, symSize: 0x90 } + - { offsetInCU: 0x232F, offset: 0x6EEC2, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x1C820, symBinAddr: 0x41070, symSize: 0x80 } + - { offsetInCU: 0x23FC, offset: 0x6EF8F, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1C9C0, symBinAddr: 0x41210, symSize: 0x40 } + - { offsetInCU: 0x26D0, offset: 0x6F263, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0ijK4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1D4C0, symBinAddr: 0x41CA0, symSize: 0x1B0 } + - { offsetInCU: 0x27D5, offset: 0x6F368, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC18addValInNestedDict4dict10parentName03attL03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1D670, symBinAddr: 0x41E50, symSize: 0x3E0 } + - { offsetInCU: 0x2F4E, offset: 0x6FAE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1EAD0, symBinAddr: 0x432B0, symSize: 0xD90 } + - { offsetInCU: 0x4058, offset: 0x70BEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1F860, symBinAddr: 0x44040, symSize: 0x1E0 } + - { offsetInCU: 0x41C9, offset: 0x70D5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1FA40, symBinAddr: 0x44220, symSize: 0x1B0 } + - { offsetInCU: 0x42B1, offset: 0x70E44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC24checkEdgeDeviceFaultTime05faultI0Sb10Foundation4DateVSg_tFTf4nd_n', symObjAddr: 0x1FC30, symBinAddr: 0x44410, symSize: 0x400 } + - { offsetInCU: 0x4695, offset: 0x71228, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x206F0, symBinAddr: 0x44ED0, symSize: 0x10 } + - { offsetInCU: 0x46A9, offset: 0x7123C, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x20700, symBinAddr: 0x44EE0, symSize: 0x20 } + - { offsetInCU: 0x46BD, offset: 0x71250, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x20720, symBinAddr: 0x44F00, symSize: 0x20 } + - { offsetInCU: 0x46D1, offset: 0x71264, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x20740, symBinAddr: 0x44F20, symSize: 0x40 } + - { offsetInCU: 0x46E5, offset: 0x71278, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVACSeAAWl', symObjAddr: 0x207A0, symBinAddr: 0x44F60, symSize: 0x30 } + - { offsetInCU: 0x46F9, offset: 0x7128C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSgWOy', symObjAddr: 0x207D0, symBinAddr: 0x44F90, symSize: 0x180 } + - { offsetInCU: 0x470D, offset: 0x712A0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSgWOy', symObjAddr: 0x20950, symBinAddr: 0x45110, symSize: 0x2D0 } + - { offsetInCU: 0x4721, offset: 0x712B4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSgWOy', symObjAddr: 0x20C20, symBinAddr: 0x453E0, symSize: 0x70 } + - { offsetInCU: 0x4735, offset: 0x712C8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSgWOy', symObjAddr: 0x20C90, symBinAddr: 0x45450, symSize: 0x30 } + - { offsetInCU: 0x4749, offset: 0x712DC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSgWOy', symObjAddr: 0x20CC0, symBinAddr: 0x45480, symSize: 0xD0 } + - { offsetInCU: 0x475D, offset: 0x712F0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSgWOy', symObjAddr: 0x20D90, symBinAddr: 0x45550, symSize: 0xB0 } + - { offsetInCU: 0x47B0, offset: 0x71343, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x21620, symBinAddr: 0x45770, symSize: 0xC0 } + - { offsetInCU: 0x4826, offset: 0x713B9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x216E0, symBinAddr: 0x45830, symSize: 0x80 } + - { offsetInCU: 0x4853, offset: 0x713E6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x21760, symBinAddr: 0x458B0, symSize: 0x80 } + - { offsetInCU: 0x48E7, offset: 0x7147A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x217E0, symBinAddr: 0x45930, symSize: 0x70 } + - { offsetInCU: 0x4A3E, offset: 0x715D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x21850, symBinAddr: 0x459A0, symSize: 0x780 } + - { offsetInCU: 0x4F17, offset: 0x71AAA, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x21FD0, symBinAddr: 0x46120, symSize: 0x40 } + - { offsetInCU: 0x4F2B, offset: 0x71ABE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x220C0, symBinAddr: 0x46190, symSize: 0x10 } + - { offsetInCU: 0x4F3F, offset: 0x71AD2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pWOc', symObjAddr: 0x220D0, symBinAddr: 0x461A0, symSize: 0x30 } + - { offsetInCU: 0x4F53, offset: 0x71AE6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVACSeAAWl', symObjAddr: 0x22100, symBinAddr: 0x461D0, symSize: 0x30 } + - { offsetInCU: 0x4F67, offset: 0x71AFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x221A0, symBinAddr: 0x46220, symSize: 0x20 } + - { offsetInCU: 0x4F7B, offset: 0x71B0E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVWOc', symObjAddr: 0x22240, symBinAddr: 0x462A0, symSize: 0x30 } + - { offsetInCU: 0x4FB0, offset: 0x71B43, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x22340, symBinAddr: 0x463A0, symSize: 0x40 } + - { offsetInCU: 0x4FC4, offset: 0x71B57, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x223B0, symBinAddr: 0x46410, symSize: 0x30 } + - { offsetInCU: 0x4FD8, offset: 0x71B6B, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x223E0, symBinAddr: 0x46440, symSize: 0x30 } + - { offsetInCU: 0x4FEC, offset: 0x71B7F, size: 0x8, addend: 0x0, symName: '_$sSSSgWOs', symObjAddr: 0x22430, symBinAddr: 0x46490, symSize: 0x20 } + - { offsetInCU: 0x5000, offset: 0x71B93, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect213ModelEdgeRuleVSgWOy', symObjAddr: 0x224F0, symBinAddr: 0x46550, symSize: 0x20 } + - { offsetInCU: 0x5014, offset: 0x71BA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212EdgeRuleDataVSgWOy', symObjAddr: 0x22510, symBinAddr: 0x46570, symSize: 0x30 } + - { offsetInCU: 0x5028, offset: 0x71BBB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x22580, symBinAddr: 0x465E0, symSize: 0x40 } + - { offsetInCU: 0x503C, offset: 0x71BCF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x22610, symBinAddr: 0x46670, symSize: 0x20 } + - { offsetInCU: 0x5050, offset: 0x71BE3, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x22630, symBinAddr: 0x46690, symSize: 0x20 } + - { offsetInCU: 0x5064, offset: 0x71BF7, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x22650, symBinAddr: 0x466B0, symSize: 0x10 } + - { offsetInCU: 0x573C, offset: 0x722CF, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xBF40, symBinAddr: 0x307E0, symSize: 0x4B0 } + - { offsetInCU: 0x588B, offset: 0x7241E, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xD5F0, symBinAddr: 0x31E90, symSize: 0x3C0 } + - { offsetInCU: 0x5B8F, offset: 0x72722, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xD9B0, symBinAddr: 0x32250, symSize: 0x390 } + - { offsetInCU: 0x5FFA, offset: 0x72B8D, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg596$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_Sb0E9TConnect20ehI0CSiSgSayADGSgADz_XxAJSiAJTf1cn_n', symObjAddr: 0x13730, symBinAddr: 0x37FD0, symSize: 0x200 } + - { offsetInCU: 0x60F0, offset: 0x72C83, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5154$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x13930, symBinAddr: 0x381D0, symSize: 0x1B0 } + - { offsetInCU: 0x64F8, offset: 0x7308B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x1CF20, symBinAddr: 0x41770, symSize: 0xE0 } + - { offsetInCU: 0x6646, offset: 0x731D9, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x1D200, symBinAddr: 0x419E0, symSize: 0xE0 } + - { offsetInCU: 0x679C, offset: 0x7332F, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x1D2E0, symBinAddr: 0x41AC0, symSize: 0xF0 } + - { offsetInCU: 0x68E4, offset: 0x73477, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x1D3D0, symBinAddr: 0x41BB0, symSize: 0xF0 } + - { offsetInCU: 0x6A1B, offset: 0x735AE, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5175$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1DA50, symBinAddr: 0x42230, symSize: 0x1A0 } + - { offsetInCU: 0x6D61, offset: 0x738F4, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5109$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0E9TConnect20ehI0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x20030, symBinAddr: 0x44810, symSize: 0x240 } + - { offsetInCU: 0x6E90, offset: 0x73A23, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x20270, symBinAddr: 0x44A50, symSize: 0xF0 } + - { offsetInCU: 0x6FDE, offset: 0x73B71, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x20360, symBinAddr: 0x44B40, symSize: 0xF0 } + - { offsetInCU: 0x7134, offset: 0x73CC7, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x20450, symBinAddr: 0x44C30, symSize: 0xE0 } + - { offsetInCU: 0x7296, offset: 0x73E29, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x20610, symBinAddr: 0x44DF0, symSize: 0xE0 } + - { offsetInCU: 0x740D, offset: 0x73FA0, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x22270, symBinAddr: 0x462D0, symSize: 0xD0 } + - { offsetInCU: 0x79BA, offset: 0x7454D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x248A0, symSize: 0x170 } + - { offsetInCU: 0x7B08, offset: 0x7469B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x170, symBinAddr: 0x24A10, symSize: 0x730 } + - { offsetInCU: 0x7D5E, offset: 0x748F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC10initialize4cpId06uniqueG02pf14deviceCallback010twinUpdateK0013getAttributesK00n5TwinsK00n12ChildDevucesK0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2EC0, symBinAddr: 0x27760, symSize: 0xA70 } + - { offsetInCU: 0x814B, offset: 0x74CDE, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x8A0, symBinAddr: 0x25140, symSize: 0x80 } + - { offsetInCU: 0x8281, offset: 0x74E14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x920, symBinAddr: 0x251C0, symSize: 0x2050 } + - { offsetInCU: 0x916C, offset: 0x75CFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xDD40, symBinAddr: 0x325E0, symSize: 0x5090 } + - { offsetInCU: 0xA42B, offset: 0x76FBE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x12DD0, symBinAddr: 0x37670, symSize: 0x640 } + - { offsetInCU: 0xA847, offset: 0x773DA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tF', symObjAddr: 0x13410, symBinAddr: 0x37CB0, symSize: 0x40 } + - { offsetInCU: 0xA86F, offset: 0x77402, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryF0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x199A0, symBinAddr: 0x3E240, symSize: 0x450 } + - { offsetInCU: 0xAA45, offset: 0x775D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x15170, symBinAddr: 0x39A10, symSize: 0x37F0 } + - { offsetInCU: 0xC1BC, offset: 0x78D4F, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2AA14StringProtocolRzrlE7keyPathypSgAA03KeyF0V_tcigSS_ypTg5', symObjAddr: 0x2970, symBinAddr: 0x27210, symSize: 0x340 } + - { offsetInCU: 0xC51F, offset: 0x790B2, size: 0x8, addend: 0x0, symName: '_$sSayxSicig11IoTConnect23AttV_Tg5', symObjAddr: 0x2CB0, symBinAddr: 0x27550, symSize: 0x70 } + - { offsetInCU: 0xC567, offset: 0x790FA, size: 0x8, addend: 0x0, symName: '_$sSayxSicig11IoTConnect27AttDataV_Tg5', symObjAddr: 0x2D20, symBinAddr: 0x275C0, symSize: 0x60 } + - { offsetInCU: 0xC5B7, offset: 0x7914A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC15getDiscoveryURLSSyF', symObjAddr: 0x2D80, symBinAddr: 0x27620, symSize: 0x140 } + - { offsetInCU: 0xC6F6, offset: 0x79289, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tF', symObjAddr: 0x3930, symBinAddr: 0x281D0, symSize: 0x460 } + - { offsetInCU: 0xC982, offset: 0x79515, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13initaliseCall33_C42AC2514C5B8C4D28E40F629D521C45LL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3D90, symBinAddr: 0x28630, symSize: 0x4C20 } + - { offsetInCU: 0xE5C1, offset: 0x7B154, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x89B0, symBinAddr: 0x2D250, symSize: 0x2E0 } + - { offsetInCU: 0xE6B8, offset: 0x7B24B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC13startMQTTCall33_C42AC2514C5B8C4D28E40F629D521C45LL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x9110, symBinAddr: 0x2D9B0, symSize: 0x1CB0 } + - { offsetInCU: 0xF0C1, offset: 0x7BC54, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC28startTimerForReInitialiseDSC33_C42AC2514C5B8C4D28E40F629D521C45LL21durationSyncFrequencyySd_tF', symObjAddr: 0x8C90, symBinAddr: 0x2D530, symSize: 0x120 } + - { offsetInCU: 0xF13E, offset: 0x7BCD1, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x8DB0, symBinAddr: 0x2D650, symSize: 0x120 } + - { offsetInCU: 0xF159, offset: 0x7BCEC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12reInitialise33_C42AC2514C5B8C4D28E40F629D521C45LLyyF', symObjAddr: 0x8ED0, symBinAddr: 0x2D770, symSize: 0x210 } + - { offsetInCU: 0xF465, offset: 0x7BFF8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tF', symObjAddr: 0xADC0, symBinAddr: 0x2F660, symSize: 0x4C0 } + - { offsetInCU: 0xF6C2, offset: 0x7C255, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC25getUpdatedSyncResponseFor33_C42AC2514C5B8C4D28E40F629D521C45LL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xC3F0, symBinAddr: 0x30C90, symSize: 0x1200 } + - { offsetInCU: 0xFFBB, offset: 0x7CB4E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22startEdgeDeviceProcess33_C42AC2514C5B8C4D28E40F629D521C45LL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xB280, symBinAddr: 0x2FB20, symSize: 0xCC0 } + - { offsetInCU: 0x109B8, offset: 0x7D54B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x13AE0, symBinAddr: 0x38380, symSize: 0x1690 } + - { offsetInCU: 0x11AD0, offset: 0x7E663, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0K15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1DBF0, symBinAddr: 0x423D0, symSize: 0xD70 } + - { offsetInCU: 0x1247B, offset: 0x7F00E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x18960, symBinAddr: 0x3D200, symSize: 0x1040 } + - { offsetInCU: 0x12F72, offset: 0x7FB05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC11isDateValid7dateVal0H6Format10Foundation0F0VSgSS_SStF', symObjAddr: 0x19DF0, symBinAddr: 0x3E690, symSize: 0x1C0 } + - { offsetInCU: 0x12FF6, offset: 0x7FB89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC19reachabilityChanged33_C42AC2514C5B8C4D28E40F629D521C45LL4notey10Foundation12NotificationV_tF', symObjAddr: 0x19FB0, symBinAddr: 0x3E850, symSize: 0x2D0 } + - { offsetInCU: 0x13122, offset: 0x7FCB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x1A300, symBinAddr: 0x3EBA0, symSize: 0x1170 } + - { offsetInCU: 0x13AE4, offset: 0x80677, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1B790, symBinAddr: 0x3FFE0, symSize: 0x60 } + - { offsetInCU: 0x13B22, offset: 0x806B5, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1B7F0, symBinAddr: 0x40040, symSize: 0x30 } + - { offsetInCU: 0x13B69, offset: 0x806FC, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1B820, symBinAddr: 0x40070, symSize: 0x80 } + - { offsetInCU: 0x13C03, offset: 0x80796, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x1B8A0, symBinAddr: 0x400F0, symSize: 0x60 } + - { offsetInCU: 0x13C9F, offset: 0x80832, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1B900, symBinAddr: 0x40150, symSize: 0x50 } + - { offsetInCU: 0x13D18, offset: 0x808AB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1B9A0, symBinAddr: 0x401F0, symSize: 0xE0 } + - { offsetInCU: 0x13D7C, offset: 0x8090F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1BA80, symBinAddr: 0x402D0, symSize: 0xC0 } + - { offsetInCU: 0x13DA5, offset: 0x80938, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1BB40, symBinAddr: 0x40390, symSize: 0x180 } + - { offsetInCU: 0x13E8E, offset: 0x80A21, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x1BCC0, symBinAddr: 0x40510, symSize: 0x110 } + - { offsetInCU: 0x13FBD, offset: 0x80B50, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x1BDD0, symBinAddr: 0x40620, symSize: 0x130 } + - { offsetInCU: 0x140EC, offset: 0x80C7F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x1BF00, symBinAddr: 0x40750, symSize: 0x180 } + - { offsetInCU: 0x1425D, offset: 0x80DF0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x1C080, symBinAddr: 0x408D0, symSize: 0x1A0 } + - { offsetInCU: 0x143D5, offset: 0x80F68, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x1C220, symBinAddr: 0x40A70, symSize: 0x110 } + - { offsetInCU: 0x1450B, offset: 0x8109E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x1C330, symBinAddr: 0x40B80, symSize: 0x110 } + - { offsetInCU: 0x14641, offset: 0x811D4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF11IoTConnect23AttV_Tg5', symObjAddr: 0x1C440, symBinAddr: 0x40C90, symSize: 0x110 } + - { offsetInCU: 0x14777, offset: 0x8130A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1C680, symBinAddr: 0x40ED0, symSize: 0x110 } + - { offsetInCU: 0x14895, offset: 0x81428, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x1C8A0, symBinAddr: 0x410F0, symSize: 0x120 } + - { offsetInCU: 0x14980, offset: 0x81513, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1CCD0, symBinAddr: 0x41520, symSize: 0x180 } + - { offsetInCU: 0x14A4F, offset: 0x815E2, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1CE50, symBinAddr: 0x416A0, symSize: 0xD0 } + - { offsetInCU: 0x14ABE, offset: 0x81651, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1D040, symBinAddr: 0x41850, symSize: 0x170 } + - { offsetInCU: 0x14D73, offset: 0x81906, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1E960, symBinAddr: 0x43140, symSize: 0x170 } + - { offsetInCU: 0x27, offset: 0x81FC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x466F0, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x81FE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x466F0, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x81FF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x46720, symSize: 0x140 } + - { offsetInCU: 0x67, offset: 0x82009, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x46860, symSize: 0x440 } + - { offsetInCU: 0x7B, offset: 0x8201D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x46CA0, symSize: 0x590 } + - { offsetInCU: 0x8F, offset: 0x82031, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x47230, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x82045, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x47240, symSize: 0x440 } + - { offsetInCU: 0xB7, offset: 0x82059, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x47680, symSize: 0x40 } + - { offsetInCU: 0xCB, offset: 0x8206D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x476C0, symSize: 0x110 } + - { offsetInCU: 0xDF, offset: 0x82081, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x477D0, symSize: 0xA } + - { offsetInCU: 0x5CD, offset: 0x8272F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17publishDataOnMQTT33_A48B1C228846A7AB9658151B3C52D65DLL17dictSDKToHubForOS11strPubTopic0U13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA650, symBinAddr: 0x51E30, symSize: 0x250 } + - { offsetInCU: 0x6A1, offset: 0x82803, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA8A0, symBinAddr: 0x52080, symSize: 0x260 } + - { offsetInCU: 0x784, offset: 0x828E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xEF00, symBinAddr: 0x566E0, symSize: 0x8E0 } + - { offsetInCU: 0xABA, offset: 0x82C1C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xF7E0, symBinAddr: 0x56FC0, symSize: 0xA50 } + - { offsetInCU: 0xD94, offset: 0x82EF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM22DLLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0x10230, symBinAddr: 0x57A10, symSize: 0x300 } + - { offsetInCU: 0xEAC, offset: 0x8300E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x10D20, symBinAddr: 0x58500, symSize: 0x950 } + - { offsetInCU: 0x11A2, offset: 0x83304, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12swapFilename33_A48B1C228846A7AB9658151B3C52D65DLL11oldFileName7logPath8callBackySSSg_SSyyctF04$s11a11TConnect210c16C10createFile33_fghijklM68DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0uavc20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11670, symBinAddr: 0x58E50, symSize: 0xBD0 } + - { offsetInCU: 0x147C, offset: 0x835DE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10createFile33_A48B1C228846A7AB9658151B3C52D65DLL11offlineData03oldE07logPath8callBackySDySSypG_SSSgSSySbctF04$s11a11TConnect210c20C14offlineProcess33_fghijklM30DLLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x12240, symBinAddr: 0x59A20, symSize: 0x370 } + - { offsetInCU: 0x1594, offset: 0x836F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x125B0, symBinAddr: 0x59D90, symSize: 0x210 } + - { offsetInCU: 0x19E0, offset: 0x83B42, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2610, symBinAddr: 0x49DF0, symSize: 0x30 } + - { offsetInCU: 0x1EE4, offset: 0x84046, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCMa', symObjAddr: 0xABE0, symBinAddr: 0x523C0, symSize: 0x20 } + - { offsetInCU: 0x1F29, offset: 0x8408B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xAC00, symBinAddr: 0x523E0, symSize: 0x90 } + - { offsetInCU: 0x1FF0, offset: 0x84152, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFTo', symObjAddr: 0xB8F0, symBinAddr: 0x530D0, symSize: 0x50 } + - { offsetInCU: 0x202A, offset: 0x8418C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTo', symObjAddr: 0xB940, symBinAddr: 0x53120, symSize: 0x50 } + - { offsetInCU: 0x2080, offset: 0x841E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xB990, symBinAddr: 0x53170, symSize: 0x60 } + - { offsetInCU: 0x20B3, offset: 0x84215, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xB9F0, symBinAddr: 0x531D0, symSize: 0x10 } + - { offsetInCU: 0x20F2, offset: 0x84254, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBA00, symBinAddr: 0x531E0, symSize: 0x70 } + - { offsetInCU: 0x2148, offset: 0x842AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xBA70, symBinAddr: 0x53250, symSize: 0x90 } + - { offsetInCU: 0x21B9, offset: 0x8431B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xBB00, symBinAddr: 0x532E0, symSize: 0xE0 } + - { offsetInCU: 0x223B, offset: 0x8439D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xBBE0, symBinAddr: 0x533C0, symSize: 0x10 } + - { offsetInCU: 0x2257, offset: 0x843B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xBBF0, symBinAddr: 0x533D0, symSize: 0x10 } + - { offsetInCU: 0x2291, offset: 0x843F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTo', symObjAddr: 0xBC00, symBinAddr: 0x533E0, symSize: 0x60 } + - { offsetInCU: 0x25A2, offset: 0x84704, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xD140, symBinAddr: 0x54920, symSize: 0x120 } + - { offsetInCU: 0x2608, offset: 0x8476A, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xD380, symBinAddr: 0x54B60, symSize: 0x2A0 } + - { offsetInCU: 0x278C, offset: 0x848EE, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xDC10, symBinAddr: 0x553F0, symSize: 0x70 } + - { offsetInCU: 0x2CA1, offset: 0x84E03, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xE370, symBinAddr: 0x55B50, symSize: 0x450 } + - { offsetInCU: 0x34C8, offset: 0x8562A, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xE7C0, symBinAddr: 0x55FA0, symSize: 0x2D0 } + - { offsetInCU: 0x388A, offset: 0x859EC, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xEA90, symBinAddr: 0x56270, symSize: 0x160 } + - { offsetInCU: 0x3A85, offset: 0x85BE7, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xEBF0, symBinAddr: 0x563D0, symSize: 0x1E0 } + - { offsetInCU: 0x3CCE, offset: 0x85E30, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x130B0, symBinAddr: 0x5A890, symSize: 0x130 } + - { offsetInCU: 0x3E18, offset: 0x85F7A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x16130, symBinAddr: 0x5D910, symSize: 0x130 } + - { offsetInCU: 0x3F30, offset: 0x86092, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x16B20, symBinAddr: 0x5E290, symSize: 0x20 } + - { offsetInCU: 0x3F44, offset: 0x860A6, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x16B40, symBinAddr: 0x5E2B0, symSize: 0x20 } + - { offsetInCU: 0x3F58, offset: 0x860BA, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x16BC0, symBinAddr: 0x5E2D0, symSize: 0x40 } + - { offsetInCU: 0x3F6C, offset: 0x860CE, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x16CB0, symBinAddr: 0x5E310, symSize: 0x30 } + - { offsetInCU: 0x3F80, offset: 0x860E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOc', symObjAddr: 0x16CE0, symBinAddr: 0x5E340, symSize: 0x30 } + - { offsetInCU: 0x3F94, offset: 0x860F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSgWOd', symObjAddr: 0x16D10, symBinAddr: 0x5E370, symSize: 0x40 } + - { offsetInCU: 0x3FA8, offset: 0x8610A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVWOb', symObjAddr: 0x16D50, symBinAddr: 0x5E3B0, symSize: 0x30 } + - { offsetInCU: 0x3FBC, offset: 0x8611E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_TA', symObjAddr: 0x16D80, symBinAddr: 0x5E3E0, symSize: 0x10 } + - { offsetInCU: 0x3FD0, offset: 0x86132, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16D90, symBinAddr: 0x5E3F0, symSize: 0x20 } + - { offsetInCU: 0x3FE4, offset: 0x86146, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x16DB0, symBinAddr: 0x5E410, symSize: 0x10 } + - { offsetInCU: 0x3FF8, offset: 0x8615A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x16E40, symBinAddr: 0x5E460, symSize: 0x40 } + - { offsetInCU: 0x4050, offset: 0x861B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x16F00, symBinAddr: 0x5E520, symSize: 0x20 } + - { offsetInCU: 0x408C, offset: 0x861EE, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x16F50, symBinAddr: 0x5E570, symSize: 0x30 } + - { offsetInCU: 0x4C36, offset: 0x86D98, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF10Foundation4DateV_Tg5', symObjAddr: 0x0, symBinAddr: 0x477E0, symSize: 0x70 } + - { offsetInCU: 0x4C51, offset: 0x86DB3, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x70, symBinAddr: 0x47850, symSize: 0x140 } + - { offsetInCU: 0x4C8D, offset: 0x86DEF, size: 0x8, addend: 0x0, symName: '_$sSa5countSivg11IoTConnect23AttV_Tg5', symObjAddr: 0x1B0, symBinAddr: 0x47990, symSize: 0x10 } + - { offsetInCU: 0x4CCB, offset: 0x86E2D, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x1C0, symBinAddr: 0x479A0, symSize: 0x70 } + - { offsetInCU: 0x4D2C, offset: 0x86E8E, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x230, symBinAddr: 0x47A10, symSize: 0xA0 } + - { offsetInCU: 0x4E73, offset: 0x86FD5, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2D0, symBinAddr: 0x47AB0, symSize: 0x90 } + - { offsetInCU: 0x4F89, offset: 0x870EB, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x360, symBinAddr: 0x47B40, symSize: 0x60 } + - { offsetInCU: 0x4FE5, offset: 0x87147, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C0, symBinAddr: 0x47BA0, symSize: 0x10 } + - { offsetInCU: 0x5015, offset: 0x87177, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect23AttV_Tg5', symObjAddr: 0x3D0, symBinAddr: 0x47BB0, symSize: 0x60 } + - { offsetInCU: 0x5071, offset: 0x871D3, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect23AttV_Tg5.resume.0', symObjAddr: 0x430, symBinAddr: 0x47C10, symSize: 0x10 } + - { offsetInCU: 0x50AF, offset: 0x87211, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect27AttDataV_Tg5', symObjAddr: 0x440, symBinAddr: 0x47C20, symSize: 0x80 } + - { offsetInCU: 0x5134, offset: 0x87296, size: 0x8, addend: 0x0, symName: '_$sSayxSiciM11IoTConnect27AttDataV_Tg5.resume.0', symObjAddr: 0x4C0, symBinAddr: 0x47CA0, symSize: 0x10 } + - { offsetInCU: 0x5185, offset: 0x872E7, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x4D0, symBinAddr: 0x47CB0, symSize: 0xE0 } + - { offsetInCU: 0x5267, offset: 0x873C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x5B0, symBinAddr: 0x47D90, symSize: 0x2D0 } + - { offsetInCU: 0x53E5, offset: 0x87547, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x880, symBinAddr: 0x48060, symSize: 0xDA0 } + - { offsetInCU: 0x5854, offset: 0x879B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10disconnectyyF', symObjAddr: 0x1620, symBinAddr: 0x48E00, symSize: 0x4F0 } + - { offsetInCU: 0x5AD3, offset: 0x87C35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGF', symObjAddr: 0x1B10, symBinAddr: 0x492F0, symSize: 0xB00 } + - { offsetInCU: 0x5E46, offset: 0x87FA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_', symObjAddr: 0x2640, symBinAddr: 0x49E20, symSize: 0x2870 } + - { offsetInCU: 0x7289, offset: 0x893EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC14offlineProcess33_A48B1C228846A7AB9658151B3C52D65DLLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x10530, symBinAddr: 0x57D10, symSize: 0x7F0 } + - { offsetInCU: 0x7647, offset: 0x897A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC10deleteFile33_A48B1C228846A7AB9658151B3C52D65DLL7logPath0deO0ySS_SStF', symObjAddr: 0x4EB0, symBinAddr: 0x4C690, symSize: 0x19B0 } + - { offsetInCU: 0x848C, offset: 0x8A5EE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyF', symObjAddr: 0x6860, symBinAddr: 0x4E040, symSize: 0x1200 } + - { offsetInCU: 0x8E46, offset: 0x8AFA8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC16checkOfflineData33_A48B1C228846A7AB9658151B3C52D65DLLyyFySiXEfU0_', symObjAddr: 0x7A60, symBinAddr: 0x4F240, symSize: 0x400 } + - { offsetInCU: 0x8FAF, offset: 0x8B111, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8880, symBinAddr: 0x50060, symSize: 0x210 } + - { offsetInCU: 0x923A, offset: 0x8B39C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC22sendOfflineDataProcess33_A48B1C228846A7AB9658151B3C52D65DLL03offF3Obj07offlineF6Length0rF4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8A90, symBinAddr: 0x50270, symSize: 0xA60 } + - { offsetInCU: 0x99F3, offset: 0x8BB55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC8holdFunc33_A48B1C228846A7AB9658151B3C52D65DLL10offDataObj07offlineO6Length0qO4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x94F0, symBinAddr: 0x50CD0, symSize: 0x2F0 } + - { offsetInCU: 0x9B45, offset: 0x8BCA7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x97E0, symBinAddr: 0x50FC0, symSize: 0x730 } + - { offsetInCU: 0x9F27, offset: 0x8C089, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC29publishTwinPropertyDataOnMQTT04withG0ySDySSypG_tF', symObjAddr: 0x9F10, symBinAddr: 0x516F0, symSize: 0x740 } + - { offsetInCU: 0xA1E1, offset: 0x8C343, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfd', symObjAddr: 0xAB00, symBinAddr: 0x522E0, symSize: 0xC0 } + - { offsetInCU: 0xA204, offset: 0x8C366, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientCfD', symObjAddr: 0xABC0, symBinAddr: 0x523A0, symSize: 0x20 } + - { offsetInCU: 0xA28F, offset: 0x8C3F1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtF', symObjAddr: 0xAC90, symBinAddr: 0x52470, symSize: 0xC20 } + - { offsetInCU: 0xA6C6, offset: 0x8C828, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0h8MQTTConnG0OtFyyScMYccfU_', symObjAddr: 0xB8B0, symBinAddr: 0x53090, symSize: 0x40 } + - { offsetInCU: 0xA739, offset: 0x8C89B, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xBC60, symBinAddr: 0x53440, symSize: 0x10 } + - { offsetInCU: 0xA74D, offset: 0x8C8AF, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xBC70, symBinAddr: 0x53450, symSize: 0x10 } + - { offsetInCU: 0xA761, offset: 0x8C8C3, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xBC80, symBinAddr: 0x53460, symSize: 0xC0 } + - { offsetInCU: 0xA7D4, offset: 0x8C936, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xBD40, symBinAddr: 0x53520, symSize: 0xC0 } + - { offsetInCU: 0xA880, offset: 0x8C9E2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xBED0, symBinAddr: 0x536B0, symSize: 0x260 } + - { offsetInCU: 0xA90C, offset: 0x8CA6E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xC130, symBinAddr: 0x53910, symSize: 0x220 } + - { offsetInCU: 0xA9DC, offset: 0x8CB3E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xC350, symBinAddr: 0x53B30, symSize: 0x3C0 } + - { offsetInCU: 0xAABF, offset: 0x8CC21, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xC710, symBinAddr: 0x53EF0, symSize: 0x3D0 } + - { offsetInCU: 0xAB9B, offset: 0x8CCFD, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV15uncheckedRemove2at8isUniquex3key_q_5valuets10_HashTableV6BucketV_SbtFSS_ypTg5', symObjAddr: 0xCAE0, symBinAddr: 0x542C0, symSize: 0x70 } + - { offsetInCU: 0xAC0D, offset: 0x8CD6F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xCB50, symBinAddr: 0x54330, symSize: 0x220 } + - { offsetInCU: 0xACAA, offset: 0x8CE0C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xCD70, symBinAddr: 0x54550, symSize: 0x230 } + - { offsetInCU: 0xAD40, offset: 0x8CEA2, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xCFA0, symBinAddr: 0x54780, symSize: 0x40 } + - { offsetInCU: 0xADF3, offset: 0x8CF55, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xCFE0, symBinAddr: 0x547C0, symSize: 0xA0 } + - { offsetInCU: 0xAEA8, offset: 0x8D00A, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xD080, symBinAddr: 0x54860, symSize: 0x40 } + - { offsetInCU: 0xAEE5, offset: 0x8D047, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xD0C0, symBinAddr: 0x548A0, symSize: 0x20 } + - { offsetInCU: 0xAF0E, offset: 0x8D070, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xD0E0, symBinAddr: 0x548C0, symSize: 0x30 } + - { offsetInCU: 0xAF37, offset: 0x8D099, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiF11IoTConnect27AttDataV_Tg5', symObjAddr: 0xD110, symBinAddr: 0x548F0, symSize: 0x20 } + - { offsetInCU: 0xAF78, offset: 0x8D0DA, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xD8B0, symBinAddr: 0x55090, symSize: 0x80 } + - { offsetInCU: 0xAF8C, offset: 0x8D0EE, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xD930, symBinAddr: 0x55110, symSize: 0x60 } + - { offsetInCU: 0xAFBC, offset: 0x8D11E, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xD990, symBinAddr: 0x55170, symSize: 0x180 } + - { offsetInCU: 0xB019, offset: 0x8D17B, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xDB10, symBinAddr: 0x552F0, symSize: 0x100 } + - { offsetInCU: 0xB040, offset: 0x8D1A2, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xDC80, symBinAddr: 0x55460, symSize: 0x2D0 } + - { offsetInCU: 0xB075, offset: 0x8D1D7, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xDF50, symBinAddr: 0x55730, symSize: 0xA0 } + - { offsetInCU: 0xB089, offset: 0x8D1EB, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xDFF0, symBinAddr: 0x557D0, symSize: 0x20 } + - { offsetInCU: 0xB09D, offset: 0x8D1FF, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE010, symBinAddr: 0x557F0, symSize: 0x20 } + - { offsetInCU: 0xB0D4, offset: 0x8D236, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xE030, symBinAddr: 0x55810, symSize: 0x110 } + - { offsetInCU: 0xB1D2, offset: 0x8D334, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE140, symBinAddr: 0x55920, symSize: 0x130 } + - { offsetInCU: 0xB2A6, offset: 0x8D408, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xE270, symBinAddr: 0x55A50, symSize: 0x100 } + - { offsetInCU: 0xB3EC, offset: 0x8D54E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xEDD0, symBinAddr: 0x565B0, symSize: 0x20 } + - { offsetInCU: 0xB40E, offset: 0x8D570, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xEDF0, symBinAddr: 0x565D0, symSize: 0x110 } + - { offsetInCU: 0xB4E0, offset: 0x8D642, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0i8MQTTConnF0OtFTf4dnn_n', symObjAddr: 0x127C0, symBinAddr: 0x59FA0, symSize: 0x8F0 } + - { offsetInCU: 0xB9ED, offset: 0x8DB4F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0I11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x131E0, symBinAddr: 0x5A9C0, symSize: 0x2F50 } + - { offsetInCU: 0xC15F, offset: 0x8E2C1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect210MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0H0_pSgtFTf4dnn_n', symObjAddr: 0x16260, symBinAddr: 0x5DA40, symSize: 0x850 } + - { offsetInCU: 0x95, offset: 0x8E79C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x10E0, symBinAddr: 0x5F770, symSize: 0x50 } + - { offsetInCU: 0xDF, offset: 0x8E7E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1130, symBinAddr: 0x5F7C0, symSize: 0x20 } + - { offsetInCU: 0x110, offset: 0x8E817, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1150, symBinAddr: 0x5F7E0, symSize: 0x10 } + - { offsetInCU: 0x12C, offset: 0x8E833, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1160, symBinAddr: 0x5F7F0, symSize: 0x10 } + - { offsetInCU: 0x148, offset: 0x8E84F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6FD0, symBinAddr: 0x655A0, symSize: 0xF0 } + - { offsetInCU: 0x1DF, offset: 0x8E8E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x5F840, symSize: 0x50 } + - { offsetInCU: 0x216, offset: 0x8E91D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1200, symBinAddr: 0x5F890, symSize: 0x50 } + - { offsetInCU: 0x239, offset: 0x8E940, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x70C0, symBinAddr: 0x65690, symSize: 0x13C0 } + - { offsetInCU: 0x2C7, offset: 0x8E9CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1250, symBinAddr: 0x5F8E0, symSize: 0x10 } + - { offsetInCU: 0x31A, offset: 0x8EA21, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1270, symBinAddr: 0x5F900, symSize: 0x20 } + - { offsetInCU: 0x394, offset: 0x8EA9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x12A0, symBinAddr: 0x5F930, symSize: 0x90 } + - { offsetInCU: 0x3C9, offset: 0x8EAD0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1330, symBinAddr: 0x5F9C0, symSize: 0x20 } + - { offsetInCU: 0x3FA, offset: 0x8EB01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1350, symBinAddr: 0x5F9E0, symSize: 0x10 } + - { offsetInCU: 0x416, offset: 0x8EB1D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1360, symBinAddr: 0x5F9F0, symSize: 0x10 } + - { offsetInCU: 0x432, offset: 0x8EB39, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8EF0, symBinAddr: 0x66AE0, symSize: 0x1B0 } + - { offsetInCU: 0x514, offset: 0x8EC1B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13B0, symBinAddr: 0x5FA40, symSize: 0x50 } + - { offsetInCU: 0x54B, offset: 0x8EC52, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1400, symBinAddr: 0x5FA90, symSize: 0x50 } + - { offsetInCU: 0x56E, offset: 0x8EC75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x90A0, symBinAddr: 0x66C90, symSize: 0x1180 } + - { offsetInCU: 0x5F0, offset: 0x8ECF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1650, symBinAddr: 0x5FCE0, symSize: 0x30 } + - { offsetInCU: 0x621, offset: 0x8ED28, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1680, symBinAddr: 0x5FD10, symSize: 0x80 } + - { offsetInCU: 0x63D, offset: 0x8ED44, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x5FD90, symSize: 0x70 } + - { offsetInCU: 0x672, offset: 0x8ED79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5FE00, symSize: 0x20 } + - { offsetInCU: 0x6C2, offset: 0x8EDC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1790, symBinAddr: 0x5FE20, symSize: 0x10 } + - { offsetInCU: 0x6DE, offset: 0x8EDE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x5FE30, symSize: 0x10 } + - { offsetInCU: 0x6FA, offset: 0x8EE01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xA370, symBinAddr: 0x67F60, symSize: 0x60 } + - { offsetInCU: 0x759, offset: 0x8EE60, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x5FE80, symSize: 0x50 } + - { offsetInCU: 0x790, offset: 0x8EE97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1840, symBinAddr: 0x5FED0, symSize: 0x50 } + - { offsetInCU: 0x7B3, offset: 0x8EEBA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA3D0, symBinAddr: 0x67FC0, symSize: 0x210 } + - { offsetInCU: 0x817, offset: 0x8EF1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5FF40, symSize: 0x10 } + - { offsetInCU: 0x84C, offset: 0x8EF53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18C0, symBinAddr: 0x5FF50, symSize: 0x20 } + - { offsetInCU: 0x87D, offset: 0x8EF84, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18E0, symBinAddr: 0x5FF70, symSize: 0x10 } + - { offsetInCU: 0x899, offset: 0x8EFA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x5FF80, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x8EFBC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA5E0, symBinAddr: 0x681D0, symSize: 0x270 } + - { offsetInCU: 0xA01, offset: 0x8F108, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1940, symBinAddr: 0x5FFD0, symSize: 0x50 } + - { offsetInCU: 0xA38, offset: 0x8F13F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1990, symBinAddr: 0x60020, symSize: 0x50 } + - { offsetInCU: 0xA5B, offset: 0x8F162, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA850, symBinAddr: 0x68440, symSize: 0x5E0 } + - { offsetInCU: 0xAE8, offset: 0x8F1EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x19E0, symBinAddr: 0x60070, symSize: 0x10 } + - { offsetInCU: 0xB60, offset: 0x8F267, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x60080, symSize: 0x40 } + - { offsetInCU: 0xC44, offset: 0x8F34B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A30, symBinAddr: 0x600C0, symSize: 0x20 } + - { offsetInCU: 0xCCA, offset: 0x8F3D1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A90, symBinAddr: 0x60120, symSize: 0x30 } + - { offsetInCU: 0xD14, offset: 0x8F41B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x60150, symSize: 0x20 } + - { offsetInCU: 0xD45, offset: 0x8F44C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x60170, symSize: 0x10 } + - { offsetInCU: 0xD61, offset: 0x8F468, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AF0, symBinAddr: 0x60180, symSize: 0x10 } + - { offsetInCU: 0xD7D, offset: 0x8F484, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAE30, symBinAddr: 0x68A20, symSize: 0xA0 } + - { offsetInCU: 0xDFB, offset: 0x8F502, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x601D0, symSize: 0x30 } + - { offsetInCU: 0xE32, offset: 0x8F539, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B70, symBinAddr: 0x60200, symSize: 0x20 } + - { offsetInCU: 0xE55, offset: 0x8F55C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAED0, symBinAddr: 0x68AC0, symSize: 0x180 } + - { offsetInCU: 0xEC5, offset: 0x8F5CC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C30, symBinAddr: 0x602C0, symSize: 0xA0 } + - { offsetInCU: 0xEFA, offset: 0x8F601, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1CD0, symBinAddr: 0x60360, symSize: 0x20 } + - { offsetInCU: 0xF2B, offset: 0x8F632, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1CF0, symBinAddr: 0x60380, symSize: 0x10 } + - { offsetInCU: 0xF47, offset: 0x8F64E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D00, symBinAddr: 0x60390, symSize: 0x10 } + - { offsetInCU: 0xF63, offset: 0x8F66A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xB050, symBinAddr: 0x68C40, symSize: 0x1F0 } + - { offsetInCU: 0x105E, offset: 0x8F765, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D50, symBinAddr: 0x603E0, symSize: 0x50 } + - { offsetInCU: 0x1095, offset: 0x8F79C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1DA0, symBinAddr: 0x60430, symSize: 0x50 } + - { offsetInCU: 0x10B8, offset: 0x8F7BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB240, symBinAddr: 0x68E30, symSize: 0x840 } + - { offsetInCU: 0x1152, offset: 0x8F859, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x605D0, symSize: 0x30 } + - { offsetInCU: 0x1183, offset: 0x8F88A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x1F70, symBinAddr: 0x60600, symSize: 0x30 } + - { offsetInCU: 0x1197, offset: 0x8F89E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1FA0, symBinAddr: 0x60630, symSize: 0x10 } + - { offsetInCU: 0x11CC, offset: 0x8F8D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FB0, symBinAddr: 0x60640, symSize: 0x20 } + - { offsetInCU: 0x121C, offset: 0x8F923, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x60660, symSize: 0x10 } + - { offsetInCU: 0x1238, offset: 0x8F93F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FE0, symBinAddr: 0x60670, symSize: 0x10 } + - { offsetInCU: 0x1254, offset: 0x8F95B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xBB10, symBinAddr: 0x69700, symSize: 0x60 } + - { offsetInCU: 0x12D2, offset: 0x8F9D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2030, symBinAddr: 0x606C0, symSize: 0x50 } + - { offsetInCU: 0x1309, offset: 0x8FA10, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2080, symBinAddr: 0x60710, symSize: 0x50 } + - { offsetInCU: 0x132C, offset: 0x8FA33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xBB70, symBinAddr: 0x69760, symSize: 0x950 } + - { offsetInCU: 0x1404, offset: 0x8FB0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6D80, symBinAddr: 0x653F0, symSize: 0x50 } + - { offsetInCU: 0x145D, offset: 0x8FB64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6DD0, symBinAddr: 0x65440, symSize: 0x80 } + - { offsetInCU: 0x14B1, offset: 0x8FBB8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6E50, symBinAddr: 0x654C0, symSize: 0x10 } + - { offsetInCU: 0x14E6, offset: 0x8FBED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E60, symBinAddr: 0x654D0, symSize: 0x20 } + - { offsetInCU: 0x1567, offset: 0x8FC6E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6EB0, symBinAddr: 0x65520, symSize: 0x10 } + - { offsetInCU: 0x1584, offset: 0x8FC8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCMa', symObjAddr: 0x22C0, symBinAddr: 0x60950, symSize: 0x20 } + - { offsetInCU: 0x1598, offset: 0x8FC9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwxx', symObjAddr: 0x22E0, symBinAddr: 0x60970, symSize: 0x140 } + - { offsetInCU: 0x15AC, offset: 0x8FCB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwcp', symObjAddr: 0x2420, symBinAddr: 0x60AB0, symSize: 0x4F0 } + - { offsetInCU: 0x15C0, offset: 0x8FCC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwca', symObjAddr: 0x2910, symBinAddr: 0x60FA0, symSize: 0xED0 } + - { offsetInCU: 0x15DB, offset: 0x8FCE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVWOh', symObjAddr: 0x37E0, symBinAddr: 0x61E70, symSize: 0x30 } + - { offsetInCU: 0x1604, offset: 0x8FD0B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVWOh', symObjAddr: 0x3810, symBinAddr: 0x61EA0, symSize: 0x20 } + - { offsetInCU: 0x1618, offset: 0x8FD1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVWOh', symObjAddr: 0x3830, symBinAddr: 0x61EC0, symSize: 0x20 } + - { offsetInCU: 0x162C, offset: 0x8FD33, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVWOh', symObjAddr: 0x3850, symBinAddr: 0x61EE0, symSize: 0x20 } + - { offsetInCU: 0x1640, offset: 0x8FD47, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVWOh', symObjAddr: 0x3870, symBinAddr: 0x61F00, symSize: 0x20 } + - { offsetInCU: 0x1654, offset: 0x8FD5B, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3890, symBinAddr: 0x61F20, symSize: 0x10 } + - { offsetInCU: 0x1668, offset: 0x8FD6F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwta', symObjAddr: 0x38A0, symBinAddr: 0x61F30, symSize: 0x580 } + - { offsetInCU: 0x167C, offset: 0x8FD83, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwet', symObjAddr: 0x3E20, symBinAddr: 0x624B0, symSize: 0x50 } + - { offsetInCU: 0x1690, offset: 0x8FD97, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVwst', symObjAddr: 0x3E70, symBinAddr: 0x62500, symSize: 0x140 } + - { offsetInCU: 0x16A4, offset: 0x8FDAB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityVMa', symObjAddr: 0x3FB0, symBinAddr: 0x62640, symSize: 0x10 } + - { offsetInCU: 0x16B8, offset: 0x8FDBF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwCP', symObjAddr: 0x3FC0, symBinAddr: 0x62650, symSize: 0x30 } + - { offsetInCU: 0x16CC, offset: 0x8FDD3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwxx', symObjAddr: 0x3FF0, symBinAddr: 0x62680, symSize: 0x120 } + - { offsetInCU: 0x16E0, offset: 0x8FDE7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwcp', symObjAddr: 0x4110, symBinAddr: 0x627A0, symSize: 0x480 } + - { offsetInCU: 0x16F4, offset: 0x8FDFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwca', symObjAddr: 0x4590, symBinAddr: 0x62C20, symSize: 0x9D0 } + - { offsetInCU: 0x1708, offset: 0x8FE0F, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4F60, symBinAddr: 0x635F0, symSize: 0x10 } + - { offsetInCU: 0x171C, offset: 0x8FE23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwta', symObjAddr: 0x4F70, symBinAddr: 0x63600, symSize: 0x500 } + - { offsetInCU: 0x1730, offset: 0x8FE37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwet', symObjAddr: 0x5470, symBinAddr: 0x63B00, symSize: 0x50 } + - { offsetInCU: 0x1744, offset: 0x8FE4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVwst', symObjAddr: 0x54C0, symBinAddr: 0x63B50, symSize: 0x130 } + - { offsetInCU: 0x1758, offset: 0x8FE5F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVMa', symObjAddr: 0x55F0, symBinAddr: 0x63C80, symSize: 0x10 } + - { offsetInCU: 0x176C, offset: 0x8FE73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwxx', symObjAddr: 0x5600, symBinAddr: 0x63C90, symSize: 0xC0 } + - { offsetInCU: 0x1780, offset: 0x8FE87, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwcp', symObjAddr: 0x56C0, symBinAddr: 0x63D50, symSize: 0x240 } + - { offsetInCU: 0x1794, offset: 0x8FE9B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwca', symObjAddr: 0x5900, symBinAddr: 0x63F90, symSize: 0x450 } + - { offsetInCU: 0x17A8, offset: 0x8FEAF, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5D50, symBinAddr: 0x643E0, symSize: 0x10 } + - { offsetInCU: 0x17BC, offset: 0x8FEC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwta', symObjAddr: 0x5D60, symBinAddr: 0x643F0, symSize: 0x250 } + - { offsetInCU: 0x17D0, offset: 0x8FED7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwet', symObjAddr: 0x5FB0, symBinAddr: 0x64640, symSize: 0x50 } + - { offsetInCU: 0x17E4, offset: 0x8FEEB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVwst', symObjAddr: 0x6000, symBinAddr: 0x64690, symSize: 0xA0 } + - { offsetInCU: 0x17F8, offset: 0x8FEFF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVMa', symObjAddr: 0x60A0, symBinAddr: 0x64730, symSize: 0x10 } + - { offsetInCU: 0x180C, offset: 0x8FF13, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwxx', symObjAddr: 0x60B0, symBinAddr: 0x64740, symSize: 0x70 } + - { offsetInCU: 0x1820, offset: 0x8FF27, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwcp', symObjAddr: 0x6120, symBinAddr: 0x647B0, symSize: 0x150 } + - { offsetInCU: 0x1834, offset: 0x8FF3B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwca', symObjAddr: 0x6270, symBinAddr: 0x64900, symSize: 0x190 } + - { offsetInCU: 0x1848, offset: 0x8FF4F, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x6400, symBinAddr: 0x64A90, symSize: 0x10 } + - { offsetInCU: 0x185C, offset: 0x8FF63, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwta', symObjAddr: 0x6410, symBinAddr: 0x64AA0, symSize: 0x130 } + - { offsetInCU: 0x1870, offset: 0x8FF77, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwet', symObjAddr: 0x6540, symBinAddr: 0x64BD0, symSize: 0x50 } + - { offsetInCU: 0x1884, offset: 0x8FF8B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVwst', symObjAddr: 0x6590, symBinAddr: 0x64C20, symSize: 0x80 } + - { offsetInCU: 0x1898, offset: 0x8FF9F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVMa', symObjAddr: 0x6610, symBinAddr: 0x64CA0, symSize: 0x10 } + - { offsetInCU: 0x18AC, offset: 0x8FFB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwxx', symObjAddr: 0x6620, symBinAddr: 0x64CB0, symSize: 0x50 } + - { offsetInCU: 0x18C0, offset: 0x8FFC7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwcp', symObjAddr: 0x6670, symBinAddr: 0x64D00, symSize: 0x120 } + - { offsetInCU: 0x18D4, offset: 0x8FFDB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwca', symObjAddr: 0x6790, symBinAddr: 0x64E20, symSize: 0x1C0 } + - { offsetInCU: 0x18E8, offset: 0x8FFEF, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6950, symBinAddr: 0x64FE0, symSize: 0x10 } + - { offsetInCU: 0x18FC, offset: 0x90003, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwta', symObjAddr: 0x6960, symBinAddr: 0x64FF0, symSize: 0x150 } + - { offsetInCU: 0x1910, offset: 0x90017, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwet', symObjAddr: 0x6AB0, symBinAddr: 0x65140, symSize: 0x50 } + - { offsetInCU: 0x1924, offset: 0x9002B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVwst', symObjAddr: 0x6B00, symBinAddr: 0x65190, symSize: 0x80 } + - { offsetInCU: 0x1938, offset: 0x9003F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVMa', symObjAddr: 0x6B80, symBinAddr: 0x65210, symSize: 0x10 } + - { offsetInCU: 0x194C, offset: 0x90053, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwxx', symObjAddr: 0x6B90, symBinAddr: 0x65220, symSize: 0x30 } + - { offsetInCU: 0x1960, offset: 0x90067, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwcp', symObjAddr: 0x6BC0, symBinAddr: 0x65250, symSize: 0x40 } + - { offsetInCU: 0x1974, offset: 0x9007B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwca', symObjAddr: 0x6C00, symBinAddr: 0x65290, symSize: 0x60 } + - { offsetInCU: 0x1988, offset: 0x9008F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwta', symObjAddr: 0x6C80, symBinAddr: 0x652F0, symSize: 0x50 } + - { offsetInCU: 0x199C, offset: 0x900A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwet', symObjAddr: 0x6CD0, symBinAddr: 0x65340, symSize: 0x50 } + - { offsetInCU: 0x19B0, offset: 0x900B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVwst', symObjAddr: 0x6D20, symBinAddr: 0x65390, symSize: 0x50 } + - { offsetInCU: 0x19C4, offset: 0x900CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVMa', symObjAddr: 0x6D70, symBinAddr: 0x653E0, symSize: 0x10 } + - { offsetInCU: 0x19D8, offset: 0x900DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASQWb', symObjAddr: 0x6EC0, symBinAddr: 0x65530, symSize: 0x10 } + - { offsetInCU: 0x19EC, offset: 0x900F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCACSQAAWl', symObjAddr: 0x6ED0, symBinAddr: 0x65540, symSize: 0x30 } + - { offsetInCU: 0x1A00, offset: 0x90107, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6FA0, symBinAddr: 0x65570, symSize: 0x30 } + - { offsetInCU: 0x1A14, offset: 0x9011B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0x8480, symBinAddr: 0x66A50, symSize: 0x30 } + - { offsetInCU: 0x1A28, offset: 0x9012F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSeAAWl', symObjAddr: 0x84B0, symBinAddr: 0x66A80, symSize: 0x30 } + - { offsetInCU: 0x1A3C, offset: 0x90143, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataVACSEAAWl', symObjAddr: 0x8EC0, symBinAddr: 0x66AB0, symSize: 0x30 } + - { offsetInCU: 0x1A50, offset: 0x90157, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xA220, symBinAddr: 0x67E10, symSize: 0x30 } + - { offsetInCU: 0x1A64, offset: 0x9016B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSeAAWl', symObjAddr: 0xA250, symBinAddr: 0x67E40, symSize: 0x30 } + - { offsetInCU: 0x1A78, offset: 0x9017F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSeAAWl', symObjAddr: 0xA280, symBinAddr: 0x67E70, symSize: 0x30 } + - { offsetInCU: 0x1A8C, offset: 0x90193, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSeAAWl', symObjAddr: 0xA2B0, symBinAddr: 0x67EA0, symSize: 0x30 } + - { offsetInCU: 0x1AA0, offset: 0x901A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaVACSEAAWl', symObjAddr: 0xA2E0, symBinAddr: 0x67ED0, symSize: 0x30 } + - { offsetInCU: 0x1AB4, offset: 0x901BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVACSEAAWl', symObjAddr: 0xA310, symBinAddr: 0x67F00, symSize: 0x30 } + - { offsetInCU: 0x1AC8, offset: 0x901CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoVACSEAAWl', symObjAddr: 0xA340, symBinAddr: 0x67F30, symSize: 0x30 } + - { offsetInCU: 0x1ADC, offset: 0x901E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0E3KeyAAWl', symObjAddr: 0xBA80, symBinAddr: 0x69670, symSize: 0x30 } + - { offsetInCU: 0x1AF0, offset: 0x901F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSeAAWl', symObjAddr: 0xBAB0, symBinAddr: 0x696A0, symSize: 0x30 } + - { offsetInCU: 0x1B04, offset: 0x9020B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsVACSEAAWl', symObjAddr: 0xBAE0, symBinAddr: 0x696D0, symSize: 0x30 } + - { offsetInCU: 0x1B18, offset: 0x9021F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xC4C0, symBinAddr: 0x6A0B0, symSize: 0x30 } + - { offsetInCU: 0x1B2C, offset: 0x90233, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xC4F0, symBinAddr: 0x6A0E0, symSize: 0x30 } + - { offsetInCU: 0x1B40, offset: 0x90247, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSeAAWl', symObjAddr: 0xC520, symBinAddr: 0x6A110, symSize: 0x30 } + - { offsetInCU: 0x1B54, offset: 0x9025B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwVACSEAAWl', symObjAddr: 0xC580, symBinAddr: 0x6A170, symSize: 0x30 } + - { offsetInCU: 0x1B68, offset: 0x9026F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs0D3KeyAAWl', symObjAddr: 0xC5B0, symBinAddr: 0x6A1A0, symSize: 0x30 } + - { offsetInCU: 0x1B7C, offset: 0x90283, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC600, symBinAddr: 0x6A1D0, symSize: 0x80 } + - { offsetInCU: 0x1B90, offset: 0x90297, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC680, symBinAddr: 0x6A250, symSize: 0xD0 } + - { offsetInCU: 0x1BA4, offset: 0x902AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xC750, symBinAddr: 0x6A320, symSize: 0x10 } + - { offsetInCU: 0x1BB8, offset: 0x902BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC760, symBinAddr: 0x6A330, symSize: 0x10 } + - { offsetInCU: 0x1BCC, offset: 0x902D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xC770, symBinAddr: 0x6A340, symSize: 0x10 } + - { offsetInCU: 0x1BE0, offset: 0x902E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC780, symBinAddr: 0x6A350, symSize: 0x10 } + - { offsetInCU: 0x1BF4, offset: 0x902FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xC790, symBinAddr: 0x6A360, symSize: 0x80 } + - { offsetInCU: 0x1C08, offset: 0x9030F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xC810, symBinAddr: 0x6A3E0, symSize: 0xD0 } + - { offsetInCU: 0x1C1C, offset: 0x90323, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xC8E0, symBinAddr: 0x6A4B0, symSize: 0x10 } + - { offsetInCU: 0x1C30, offset: 0x90337, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xC8F0, symBinAddr: 0x6A4C0, symSize: 0x10 } + - { offsetInCU: 0x1C44, offset: 0x9034B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwet', symObjAddr: 0xC900, symBinAddr: 0x6A4D0, symSize: 0x80 } + - { offsetInCU: 0x1C58, offset: 0x9035F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwst', symObjAddr: 0xC980, symBinAddr: 0x6A550, symSize: 0xD0 } + - { offsetInCU: 0x1C6C, offset: 0x90373, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOwup', symObjAddr: 0xCA50, symBinAddr: 0x6A620, symSize: 0x10 } + - { offsetInCU: 0x1C80, offset: 0x90387, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOMa', symObjAddr: 0xCA60, symBinAddr: 0x6A630, symSize: 0x10 } + - { offsetInCU: 0x1C94, offset: 0x9039B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xCA70, symBinAddr: 0x6A640, symSize: 0x80 } + - { offsetInCU: 0x1CA8, offset: 0x903AF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xCAF0, symBinAddr: 0x6A6C0, symSize: 0xD0 } + - { offsetInCU: 0x1CBC, offset: 0x903C3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xCBC0, symBinAddr: 0x6A790, symSize: 0x10 } + - { offsetInCU: 0x1CD0, offset: 0x903D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xCBD0, symBinAddr: 0x6A7A0, symSize: 0x10 } + - { offsetInCU: 0x1CE4, offset: 0x903EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xCBE0, symBinAddr: 0x6A7B0, symSize: 0x80 } + - { offsetInCU: 0x1CF8, offset: 0x903FF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xCC60, symBinAddr: 0x6A830, symSize: 0xD0 } + - { offsetInCU: 0x1D0C, offset: 0x90413, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwug', symObjAddr: 0xCD30, symBinAddr: 0x6A900, symSize: 0x10 } + - { offsetInCU: 0x1D20, offset: 0x90427, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xCD40, symBinAddr: 0x6A910, symSize: 0x10 } + - { offsetInCU: 0x1D34, offset: 0x9043B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwui', symObjAddr: 0xCD50, symBinAddr: 0x6A920, symSize: 0x10 } + - { offsetInCU: 0x1D48, offset: 0x9044F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xCD60, symBinAddr: 0x6A930, symSize: 0x10 } + - { offsetInCU: 0x1D5C, offset: 0x90463, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwet', symObjAddr: 0xCD70, symBinAddr: 0x6A940, symSize: 0x80 } + - { offsetInCU: 0x1D70, offset: 0x90477, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwst', symObjAddr: 0xCDF0, symBinAddr: 0x6A9C0, symSize: 0xD0 } + - { offsetInCU: 0x1D84, offset: 0x9048B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOwup', symObjAddr: 0xCEC0, symBinAddr: 0x6AA90, symSize: 0x10 } + - { offsetInCU: 0x1D98, offset: 0x9049F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOMa', symObjAddr: 0xCED0, symBinAddr: 0x6AAA0, symSize: 0x10 } + - { offsetInCU: 0x1DAC, offset: 0x904B3, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xCEE0, symBinAddr: 0x6AAB0, symSize: 0x30 } + - { offsetInCU: 0x1DC0, offset: 0x904C7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwet', symObjAddr: 0xCF10, symBinAddr: 0x6AAE0, symSize: 0x20 } + - { offsetInCU: 0x1DD4, offset: 0x904DB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVwst', symObjAddr: 0xCF30, symBinAddr: 0x6AB00, symSize: 0x40 } + - { offsetInCU: 0x1DE8, offset: 0x904EF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasVMa', symObjAddr: 0xCF70, symBinAddr: 0x6AB40, symSize: 0x10 } + - { offsetInCU: 0x1DFC, offset: 0x90503, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCF80, symBinAddr: 0x6AB50, symSize: 0x10 } + - { offsetInCU: 0x1E10, offset: 0x90517, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCF90, symBinAddr: 0x6AB60, symSize: 0x30 } + - { offsetInCU: 0x1E24, offset: 0x9052B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xCFC0, symBinAddr: 0x6AB90, symSize: 0x10 } + - { offsetInCU: 0x1E38, offset: 0x9053F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xCFD0, symBinAddr: 0x6ABA0, symSize: 0x30 } + - { offsetInCU: 0x1E4C, offset: 0x90553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xD000, symBinAddr: 0x6ABD0, symSize: 0x10 } + - { offsetInCU: 0x1E60, offset: 0x90567, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xD010, symBinAddr: 0x6ABE0, symSize: 0x30 } + - { offsetInCU: 0x1E74, offset: 0x9057B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xD040, symBinAddr: 0x6AC10, symSize: 0x10 } + - { offsetInCU: 0x1E88, offset: 0x9058F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xD050, symBinAddr: 0x6AC20, symSize: 0x30 } + - { offsetInCU: 0x1E9C, offset: 0x905A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xD080, symBinAddr: 0x6AC50, symSize: 0x10 } + - { offsetInCU: 0x1EB0, offset: 0x905B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xD090, symBinAddr: 0x6AC60, symSize: 0x30 } + - { offsetInCU: 0x1EC4, offset: 0x905CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASQWb', symObjAddr: 0xD0C0, symBinAddr: 0x6AC90, symSize: 0x10 } + - { offsetInCU: 0x1ED8, offset: 0x905DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFSQAAWl', symObjAddr: 0xD0D0, symBinAddr: 0x6ACA0, symSize: 0x30 } + - { offsetInCU: 0x1EEC, offset: 0x905F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD100, symBinAddr: 0x6ACD0, symSize: 0x10 } + - { offsetInCU: 0x1F00, offset: 0x90607, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD110, symBinAddr: 0x6ACE0, symSize: 0x30 } + - { offsetInCU: 0x1F14, offset: 0x9061B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD140, symBinAddr: 0x6AD10, symSize: 0x10 } + - { offsetInCU: 0x1F28, offset: 0x9062F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD150, symBinAddr: 0x6AD20, symSize: 0x30 } + - { offsetInCU: 0x1F3C, offset: 0x90643, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD180, symBinAddr: 0x6AD50, symSize: 0x10 } + - { offsetInCU: 0x1F50, offset: 0x90657, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD190, symBinAddr: 0x6AD60, symSize: 0x30 } + - { offsetInCU: 0x1F64, offset: 0x9066B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD1C0, symBinAddr: 0x6AD90, symSize: 0x10 } + - { offsetInCU: 0x1F78, offset: 0x9067F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD1D0, symBinAddr: 0x6ADA0, symSize: 0x30 } + - { offsetInCU: 0x1F8C, offset: 0x90693, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD200, symBinAddr: 0x6ADD0, symSize: 0x10 } + - { offsetInCU: 0x1FA0, offset: 0x906A7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD210, symBinAddr: 0x6ADE0, symSize: 0x30 } + - { offsetInCU: 0x1FB4, offset: 0x906BB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD240, symBinAddr: 0x6AE10, symSize: 0x10 } + - { offsetInCU: 0x1FC8, offset: 0x906CF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD250, symBinAddr: 0x6AE20, symSize: 0x30 } + - { offsetInCU: 0x1FDC, offset: 0x906E3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD280, symBinAddr: 0x6AE50, symSize: 0x10 } + - { offsetInCU: 0x1FF0, offset: 0x906F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD290, symBinAddr: 0x6AE60, symSize: 0x30 } + - { offsetInCU: 0x2004, offset: 0x9070B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD2C0, symBinAddr: 0x6AE90, symSize: 0x10 } + - { offsetInCU: 0x2018, offset: 0x9071F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD2D0, symBinAddr: 0x6AEA0, symSize: 0x30 } + - { offsetInCU: 0x202C, offset: 0x90733, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD300, symBinAddr: 0x6AED0, symSize: 0x10 } + - { offsetInCU: 0x2040, offset: 0x90747, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD310, symBinAddr: 0x6AEE0, symSize: 0x30 } + - { offsetInCU: 0x2054, offset: 0x9075B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD340, symBinAddr: 0x6AF10, symSize: 0x10 } + - { offsetInCU: 0x2068, offset: 0x9076F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD350, symBinAddr: 0x6AF20, symSize: 0x30 } + - { offsetInCU: 0x207C, offset: 0x90783, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD380, symBinAddr: 0x6AF50, symSize: 0x10 } + - { offsetInCU: 0x2090, offset: 0x90797, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD390, symBinAddr: 0x6AF60, symSize: 0x30 } + - { offsetInCU: 0x20A4, offset: 0x907AB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD3C0, symBinAddr: 0x6AF90, symSize: 0x10 } + - { offsetInCU: 0x20B8, offset: 0x907BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD3D0, symBinAddr: 0x6AFA0, symSize: 0x30 } + - { offsetInCU: 0x20CC, offset: 0x907D3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs0D3KeyAAWl', symObjAddr: 0xD400, symBinAddr: 0x6AFD0, symSize: 0x30 } + - { offsetInCU: 0x20E0, offset: 0x907E7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwet', symObjAddr: 0xD430, symBinAddr: 0x6B000, symSize: 0x80 } + - { offsetInCU: 0x20F4, offset: 0x907FB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwst', symObjAddr: 0xD4B0, symBinAddr: 0x6B080, symSize: 0xD0 } + - { offsetInCU: 0x2108, offset: 0x9080F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOwup', symObjAddr: 0xD580, symBinAddr: 0x6B150, symSize: 0x10 } + - { offsetInCU: 0x211C, offset: 0x90823, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOMa', symObjAddr: 0xD590, symBinAddr: 0x6B160, symSize: 0x10 } + - { offsetInCU: 0x2130, offset: 0x90837, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD5A0, symBinAddr: 0x6B170, symSize: 0x10 } + - { offsetInCU: 0x2144, offset: 0x9084B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD5B0, symBinAddr: 0x6B180, symSize: 0x30 } + - { offsetInCU: 0x2158, offset: 0x9085F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD5E0, symBinAddr: 0x6B1B0, symSize: 0x10 } + - { offsetInCU: 0x216C, offset: 0x90873, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD5F0, symBinAddr: 0x6B1C0, symSize: 0x30 } + - { offsetInCU: 0x2180, offset: 0x90887, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD620, symBinAddr: 0x6B1F0, symSize: 0x10 } + - { offsetInCU: 0x2194, offset: 0x9089B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD630, symBinAddr: 0x6B200, symSize: 0x30 } + - { offsetInCU: 0x21C2, offset: 0x908C9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1170, symBinAddr: 0x5F800, symSize: 0x20 } + - { offsetInCU: 0x21DE, offset: 0x908E5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1190, symBinAddr: 0x5F820, symSize: 0x20 } + - { offsetInCU: 0x2200, offset: 0x90907, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x5FA00, symSize: 0x20 } + - { offsetInCU: 0x221C, offset: 0x90923, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5FA20, symSize: 0x20 } + - { offsetInCU: 0x2238, offset: 0x9093F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1450, symBinAddr: 0x5FAE0, symSize: 0x10 } + - { offsetInCU: 0x22B8, offset: 0x909BF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1460, symBinAddr: 0x5FAF0, symSize: 0xB0 } + - { offsetInCU: 0x233A, offset: 0x90A41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x5FBA0, symSize: 0x90 } + - { offsetInCU: 0x2378, offset: 0x90A7F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x15A0, symBinAddr: 0x5FC30, symSize: 0xB0 } + - { offsetInCU: 0x23DE, offset: 0x90AE5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x5FE40, symSize: 0x20 } + - { offsetInCU: 0x23FA, offset: 0x90B01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x5FE60, symSize: 0x20 } + - { offsetInCU: 0x241C, offset: 0x90B23, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1900, symBinAddr: 0x5FF90, symSize: 0x20 } + - { offsetInCU: 0x2438, offset: 0x90B3F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1920, symBinAddr: 0x5FFB0, symSize: 0x20 } + - { offsetInCU: 0x248B, offset: 0x90B92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A50, symBinAddr: 0x600E0, symSize: 0x40 } + - { offsetInCU: 0x252E, offset: 0x90C35, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B00, symBinAddr: 0x60190, symSize: 0x20 } + - { offsetInCU: 0x254A, offset: 0x90C51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x601B0, symSize: 0x20 } + - { offsetInCU: 0x256C, offset: 0x90C73, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D10, symBinAddr: 0x603A0, symSize: 0x20 } + - { offsetInCU: 0x2588, offset: 0x90C8F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1D30, symBinAddr: 0x603C0, symSize: 0x20 } + - { offsetInCU: 0x25D1, offset: 0x90CD8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1DF0, symBinAddr: 0x60480, symSize: 0x80 } + - { offsetInCU: 0x26BD, offset: 0x90DC4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1E70, symBinAddr: 0x60500, symSize: 0x50 } + - { offsetInCU: 0x273B, offset: 0x90E42, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1EC0, symBinAddr: 0x60550, symSize: 0x30 } + - { offsetInCU: 0x278D, offset: 0x90E94, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1EF0, symBinAddr: 0x60580, symSize: 0x50 } + - { offsetInCU: 0x27EF, offset: 0x90EF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x60680, symSize: 0x20 } + - { offsetInCU: 0x280B, offset: 0x90F12, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x2010, symBinAddr: 0x606A0, symSize: 0x20 } + - { offsetInCU: 0x284C, offset: 0x90F53, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6E80, symBinAddr: 0x654F0, symSize: 0x30 } + - { offsetInCU: 0x29DF, offset: 0x910E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x5E690, symSize: 0x190 } + - { offsetInCU: 0x2A10, offset: 0x91117, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x190, symBinAddr: 0x5E820, symSize: 0x2B0 } + - { offsetInCU: 0x2A41, offset: 0x91148, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x440, symBinAddr: 0x5EAD0, symSize: 0x190 } + - { offsetInCU: 0x2A72, offset: 0x91179, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV10CodingKeys33_D17CFB835C45FE211390BE3A2ECF7992LLO11stringValueSSvg', symObjAddr: 0x5D0, symBinAddr: 0x5EC60, symSize: 0xB0 } + - { offsetInCU: 0x2A93, offset: 0x9119A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect24MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x680, symBinAddr: 0x5ED10, symSize: 0x2A0 } + - { offsetInCU: 0x2AC4, offset: 0x911CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x920, symBinAddr: 0x5EFB0, symSize: 0x110 } + - { offsetInCU: 0x2AF5, offset: 0x911FC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA30, symBinAddr: 0x5F0C0, symSize: 0x250 } + - { offsetInCU: 0x2B26, offset: 0x9122D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC80, symBinAddr: 0x5F310, symSize: 0xB0 } + - { offsetInCU: 0x2B5A, offset: 0x91261, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xD30, symBinAddr: 0x5F3C0, symSize: 0xB0 } + - { offsetInCU: 0x2B9A, offset: 0x912A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDE0, symBinAddr: 0x5F470, symSize: 0x2E0 } + - { offsetInCU: 0x2DAB, offset: 0x914B2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x20D0, symBinAddr: 0x60760, symSize: 0x1D0 } + - { offsetInCU: 0x2DF7, offset: 0x914FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect28JSONNullCfD', symObjAddr: 0x22A0, symBinAddr: 0x60930, symSize: 0x20 } + - { offsetInCU: 0x27, offset: 0x915DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6B390, symSize: 0x10 } + - { offsetInCU: 0x163, offset: 0x9171B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x6B470, symSize: 0x40 } + - { offsetInCU: 0x177, offset: 0x9172F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x6B4B0, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x91743, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x6B500, symSize: 0xA } + - { offsetInCU: 0x26C, offset: 0x91824, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6B390, symSize: 0x10 } + - { offsetInCU: 0x286, offset: 0x9183E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x6B3A0, symSize: 0x10 } + - { offsetInCU: 0x2B8, offset: 0x91870, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x6B3B0, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x91884, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x6B3C0, symSize: 0x10 } + - { offsetInCU: 0x2ED, offset: 0x918A5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x6B3D0, symSize: 0x10 } + - { offsetInCU: 0x301, offset: 0x918B9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x6B3E0, symSize: 0x10 } + - { offsetInCU: 0x333, offset: 0x918EB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x6B3F0, symSize: 0x20 } + - { offsetInCU: 0x357, offset: 0x9190F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x6B410, symSize: 0x10 } + - { offsetInCU: 0x378, offset: 0x91930, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x6B420, symSize: 0x10 } + - { offsetInCU: 0x38C, offset: 0x91944, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x6B430, symSize: 0x10 } + - { offsetInCU: 0x3C0, offset: 0x91978, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x6B440, symSize: 0x20 } + - { offsetInCU: 0x3E4, offset: 0x9199C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect220OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x6B460, symSize: 0x10 } + - { offsetInCU: 0x2B, offset: 0x919F2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6B510, symSize: 0x30 } + - { offsetInCU: 0x7C, offset: 0x91A43, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x6B540, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x91B49, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6B510, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x91BB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B560, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x91C02, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6B580, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x91D08, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect217MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6B560, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x91D74, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6B5A0, symSize: 0x50 } + - { offsetInCU: 0x7C, offset: 0x91DC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x6B5F0, symSize: 0x10 } + - { offsetInCU: 0x90, offset: 0x91DD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x6B600, symSize: 0x30 } + - { offsetInCU: 0xA4, offset: 0x91DED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x6B630, symSize: 0x69 } + - { offsetInCU: 0x1AA, offset: 0x91EF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6B5A0, symSize: 0x50 } + - { offsetInCU: 0x27, offset: 0x91F5B, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6B6A0, symSize: 0x430 } + - { offsetInCU: 0x16B, offset: 0x9209F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x530, symBinAddr: 0x6BBA0, symSize: 0x40 } + - { offsetInCU: 0x38A, offset: 0x922BE, size: 0x8, addend: 0x0, symName: '_$sSD11IoTConnect2SSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6B6A0, symSize: 0x430 } + - { offsetInCU: 0x558, offset: 0x9248C, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11updateValue_6forKeyq_Sgq_n_xtFSS_ypTg5', symObjAddr: 0x430, symBinAddr: 0x6BAD0, symSize: 0xD0 } + - { offsetInCU: 0x27, offset: 0x92537, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6BBE0, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x92588, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6BC00, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x9268E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect212CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6BBE0, symSize: 0x20 } + - { offsetInCU: 0xA1, offset: 0x92770, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xB00, symBinAddr: 0x6C6E0, symSize: 0x20 } + - { offsetInCU: 0xBD, offset: 0x9278C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xB20, symBinAddr: 0x6C700, symSize: 0x70 } + - { offsetInCU: 0xE6, offset: 0x927B5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllG0QzvgZTW', symObjAddr: 0xB90, symBinAddr: 0x6C770, symSize: 0x30 } + - { offsetInCU: 0x175, offset: 0x92844, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xD40, symBinAddr: 0x6C920, symSize: 0x20 } + - { offsetInCU: 0x191, offset: 0x92860, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSYAASY8rawValue03RawE0QzvgTW', symObjAddr: 0xD60, symBinAddr: 0x6C940, symSize: 0x30 } + - { offsetInCU: 0x497, offset: 0x92B66, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x820, symBinAddr: 0x6C400, symSize: 0xF0 } + - { offsetInCU: 0x50B, offset: 0x92BDA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC10getBaseURL03strF08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xD90, symBinAddr: 0x6C970, symSize: 0x3B0 } + - { offsetInCU: 0x73E, offset: 0x92E0D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1140, symBinAddr: 0x6CD20, symSize: 0x150 } + - { offsetInCU: 0x960, offset: 0x9302F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC8toString33_5FCE04B2AC7C139FB74F19035F1F95E8LL12fromDateTimeSS10Foundation0P0VSg_tFTf4nd_n', symObjAddr: 0x3760, symBinAddr: 0x6F2A0, symSize: 0x1F0 } + - { offsetInCU: 0xA11, offset: 0x930E0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC25checkForIfFileExistAtPath04fileJ0Sbyp_tFTf4nd_n', symObjAddr: 0x3A60, symBinAddr: 0x6F540, symSize: 0x220 } + - { offsetInCU: 0xA76, offset: 0x93145, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3C80, symBinAddr: 0x6F760, symSize: 0x290 } + - { offsetInCU: 0xBB5, offset: 0x93284, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3F10, symBinAddr: 0x6F9F0, symSize: 0x170 } + - { offsetInCU: 0xBFB, offset: 0x932CA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x4080, symBinAddr: 0x6FB60, symSize: 0x520 } + - { offsetInCU: 0xF2A, offset: 0x935F9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC15getSubStringFor12strToProcess8indStart0K3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x45A0, symBinAddr: 0x70080, symSize: 0xD0 } + - { offsetInCU: 0x104F, offset: 0x9371E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3160, symBinAddr: 0x6ED40, symSize: 0x10 } + - { offsetInCU: 0x1063, offset: 0x93732, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOACSQAAWl', symObjAddr: 0x3170, symBinAddr: 0x6ED50, symSize: 0x30 } + - { offsetInCU: 0x1077, offset: 0x93746, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x31A0, symBinAddr: 0x6ED80, symSize: 0x10 } + - { offsetInCU: 0x108B, offset: 0x9375A, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect215IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x31B0, symBinAddr: 0x6ED90, symSize: 0x40 } + - { offsetInCU: 0x109F, offset: 0x9376E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASQWb', symObjAddr: 0x3230, symBinAddr: 0x6EDD0, symSize: 0x10 } + - { offsetInCU: 0x10B3, offset: 0x93782, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOACSQAAWl', symObjAddr: 0x3240, symBinAddr: 0x6EDE0, symSize: 0x30 } + - { offsetInCU: 0x10C7, offset: 0x93796, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwet', symObjAddr: 0x3290, symBinAddr: 0x6EE10, symSize: 0x80 } + - { offsetInCU: 0x10DB, offset: 0x937AA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwst', symObjAddr: 0x3310, symBinAddr: 0x6EE90, symSize: 0xD0 } + - { offsetInCU: 0x10EF, offset: 0x937BE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwug', symObjAddr: 0x33E0, symBinAddr: 0x6EF60, symSize: 0x10 } + - { offsetInCU: 0x1103, offset: 0x937D2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwup', symObjAddr: 0x33F0, symBinAddr: 0x6EF70, symSize: 0x10 } + - { offsetInCU: 0x1117, offset: 0x937E6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOwui', symObjAddr: 0x3400, symBinAddr: 0x6EF80, symSize: 0x10 } + - { offsetInCU: 0x112B, offset: 0x937FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOMa', symObjAddr: 0x3410, symBinAddr: 0x6EF90, symSize: 0x10 } + - { offsetInCU: 0x113F, offset: 0x9380E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwet', symObjAddr: 0x3420, symBinAddr: 0x6EFA0, symSize: 0x80 } + - { offsetInCU: 0x1153, offset: 0x93822, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwst', symObjAddr: 0x34A0, symBinAddr: 0x6F020, symSize: 0xD0 } + - { offsetInCU: 0x1167, offset: 0x93836, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwug', symObjAddr: 0x3570, symBinAddr: 0x6F0F0, symSize: 0x10 } + - { offsetInCU: 0x117B, offset: 0x9384A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwup', symObjAddr: 0x3580, symBinAddr: 0x6F100, symSize: 0x10 } + - { offsetInCU: 0x118F, offset: 0x9385E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOwui', symObjAddr: 0x3590, symBinAddr: 0x6F110, symSize: 0x10 } + - { offsetInCU: 0x11A3, offset: 0x93872, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOMa', symObjAddr: 0x35A0, symBinAddr: 0x6F120, symSize: 0x10 } + - { offsetInCU: 0x11B7, offset: 0x93886, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCMa', symObjAddr: 0x35B0, symBinAddr: 0x6F130, symSize: 0x20 } + - { offsetInCU: 0x11CB, offset: 0x9389A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT', symObjAddr: 0x35E0, symBinAddr: 0x6F150, symSize: 0x10 } + - { offsetInCU: 0x11DF, offset: 0x938AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb', symObjAddr: 0x35F0, symBinAddr: 0x6F160, symSize: 0x10 } + - { offsetInCU: 0x11F3, offset: 0x938C2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3600, symBinAddr: 0x6F170, symSize: 0x30 } + - { offsetInCU: 0x1207, offset: 0x938D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT', symObjAddr: 0x3630, symBinAddr: 0x6F1A0, symSize: 0x10 } + - { offsetInCU: 0x121B, offset: 0x938EA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb', symObjAddr: 0x3640, symBinAddr: 0x6F1B0, symSize: 0x10 } + - { offsetInCU: 0x122F, offset: 0x938FE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3650, symBinAddr: 0x6F1C0, symSize: 0x30 } + - { offsetInCU: 0x1243, offset: 0x93912, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT', symObjAddr: 0x3680, symBinAddr: 0x6F1F0, symSize: 0x10 } + - { offsetInCU: 0x12F7, offset: 0x939C6, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x3980, symBinAddr: 0x6F4C0, symSize: 0x40 } + - { offsetInCU: 0x130B, offset: 0x939DA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOc', symObjAddr: 0x39C0, symBinAddr: 0x6F500, symSize: 0x40 } + - { offsetInCU: 0x136A, offset: 0x93A39, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4670, symBinAddr: 0x70150, symSize: 0x30 } + - { offsetInCU: 0x137E, offset: 0x93A4D, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x46A0, symBinAddr: 0x70180, symSize: 0x30 } + - { offsetInCU: 0x1392, offset: 0x93A61, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC12makeSyncCall11withBaseURL0G4Data0G5BlockySS_SDys11AnyHashableVypGSgy10Foundation0J0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4710, symBinAddr: 0x701D0, symSize: 0x20 } + - { offsetInCU: 0x13A6, offset: 0x93A75, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4730, symBinAddr: 0x701F0, symSize: 0x20 } + - { offsetInCU: 0x13BA, offset: 0x93A89, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4750, symBinAddr: 0x70210, symSize: 0x10 } + - { offsetInCU: 0x13CE, offset: 0x93A9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27KeyPathVMa', symObjAddr: 0x47F0, symBinAddr: 0x70220, symSize: 0xA } + - { offsetInCU: 0x14EB, offset: 0x93BBA, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect23HasV10CodingKeysO_Tg5', symObjAddr: 0x1D0, symBinAddr: 0x6BDB0, symSize: 0x160 } + - { offsetInCU: 0x15AE, offset: 0x93C7D, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect215IOTCEnvironmentO_TB5', symObjAddr: 0x330, symBinAddr: 0x6BF10, symSize: 0x140 } + - { offsetInCU: 0x1671, offset: 0x93D40, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF11IoTConnect20D4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x6C050, symSize: 0x90 } + - { offsetInCU: 0x1813, offset: 0x93EE2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x930, symBinAddr: 0x6C510, symSize: 0x10 } + - { offsetInCU: 0x1893, offset: 0x93F62, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x940, symBinAddr: 0x6C520, symSize: 0xA0 } + - { offsetInCU: 0x1915, offset: 0x93FE4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x9E0, symBinAddr: 0x6C5C0, symSize: 0x80 } + - { offsetInCU: 0x1953, offset: 0x94022, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA60, symBinAddr: 0x6C640, symSize: 0xA0 } + - { offsetInCU: 0x19B9, offset: 0x94088, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC30, symBinAddr: 0x6C810, symSize: 0x10 } + - { offsetInCU: 0x1A39, offset: 0x94108, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xC40, symBinAddr: 0x6C820, symSize: 0x60 } + - { offsetInCU: 0x1AE4, offset: 0x941B3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xCA0, symBinAddr: 0x6C880, symSize: 0x40 } + - { offsetInCU: 0x1B4B, offset: 0x9421A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xCE0, symBinAddr: 0x6C8C0, symSize: 0x60 } + - { offsetInCU: 0x1F1D, offset: 0x945EC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x6BC20, symSize: 0x70 } + - { offsetInCU: 0x1F54, offset: 0x94623, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x6BC90, symSize: 0x30 } + - { offsetInCU: 0x1F6F, offset: 0x9463E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x6BCC0, symSize: 0x70 } + - { offsetInCU: 0x1F9E, offset: 0x9466D, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x150, symBinAddr: 0x6BD30, symSize: 0x10 } + - { offsetInCU: 0x2012, offset: 0x946E1, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x160, symBinAddr: 0x6BD40, symSize: 0x30 } + - { offsetInCU: 0x2026, offset: 0x946F5, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlF11IoTConnect27AttDataVSg_Tg5', symObjAddr: 0x190, symBinAddr: 0x6BD70, symSize: 0x40 } + - { offsetInCU: 0x20D1, offset: 0x947A0, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x500, symBinAddr: 0x6C0E0, symSize: 0xB0 } + - { offsetInCU: 0x2283, offset: 0x94952, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x5B0, symBinAddr: 0x6C190, symSize: 0x50 } + - { offsetInCU: 0x236A, offset: 0x94A39, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x600, symBinAddr: 0x6C1E0, symSize: 0x90 } + - { offsetInCU: 0x23F8, offset: 0x94AC7, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x690, symBinAddr: 0x6C270, symSize: 0x80 } + - { offsetInCU: 0x246A, offset: 0x94B39, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x710, symBinAddr: 0x6C2F0, symSize: 0xD0 } + - { offsetInCU: 0x2599, offset: 0x94C68, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x7E0, symBinAddr: 0x6C3C0, symSize: 0x40 } + - { offsetInCU: 0x2627, offset: 0x94CF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect215IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x910, symBinAddr: 0x6C4F0, symSize: 0x20 } + - { offsetInCU: 0x2689, offset: 0x94D58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xBC0, symBinAddr: 0x6C7A0, symSize: 0x70 } + - { offsetInCU: 0x2738, offset: 0x94E07, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC14manageDebugLog4code8uniqueId02cpI07message7logFlag02isE7Enabledyyp_S3SS2btF', symObjAddr: 0x1290, symBinAddr: 0x6CE70, symSize: 0x960 } + - { offsetInCU: 0x2CDE, offset: 0x953AD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1BF0, symBinAddr: 0x6D7D0, symSize: 0x7A0 } + - { offsetInCU: 0x304D, offset: 0x9571C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2390, symBinAddr: 0x6DF70, symSize: 0x540 } + - { offsetInCU: 0x3208, offset: 0x958D7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x28D0, symBinAddr: 0x6E4B0, symSize: 0x670 } + - { offsetInCU: 0x36E1, offset: 0x95DB0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2F40, symBinAddr: 0x6EB20, symSize: 0x130 } + - { offsetInCU: 0x37C3, offset: 0x95E92, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26CommonCfD', symObjAddr: 0x3070, symBinAddr: 0x6EC50, symSize: 0x30 } + - { offsetInCU: 0x37FC, offset: 0x95ECB, size: 0x8, addend: 0x0, symName: '_$sSS11IoTConnect2E6stringS2S_tcfC', symObjAddr: 0x3150, symBinAddr: 0x6ED30, symSize: 0x10 } + - { offsetInCU: 0x3829, offset: 0x95EF8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x36C0, symBinAddr: 0x6F200, symSize: 0x20 } + - { offsetInCU: 0x3859, offset: 0x95F28, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x36E0, symBinAddr: 0x6F220, symSize: 0x20 } + - { offsetInCU: 0x3889, offset: 0x95F58, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF11IoTConnect27AttDataV_Tg5', symObjAddr: 0x3700, symBinAddr: 0x6F240, symSize: 0x20 } + - { offsetInCU: 0x38B9, offset: 0x95F88, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyF11IoTConnect23AttV_Tg5', symObjAddr: 0x3720, symBinAddr: 0x6F260, symSize: 0x20 } + - { offsetInCU: 0x38E9, offset: 0x95FB8, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3740, symBinAddr: 0x6F280, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x96148, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x70230, symSize: 0x210 } + - { offsetInCU: 0x57, offset: 0x9615C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwxx', symObjAddr: 0x250, symBinAddr: 0x70440, symSize: 0xD0 } + - { offsetInCU: 0x6B, offset: 0x96170, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwcp', symObjAddr: 0x320, symBinAddr: 0x70510, symSize: 0x1F0 } + - { offsetInCU: 0x7F, offset: 0x96184, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwca', symObjAddr: 0x510, symBinAddr: 0x70700, symSize: 0x2E0 } + - { offsetInCU: 0x93, offset: 0x96198, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwtk', symObjAddr: 0x7F0, symBinAddr: 0x709E0, symSize: 0x160 } + - { offsetInCU: 0xA7, offset: 0x961AC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwta', symObjAddr: 0x950, symBinAddr: 0x70B40, symSize: 0x2B0 } + - { offsetInCU: 0xBB, offset: 0x961C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwet', symObjAddr: 0xC00, symBinAddr: 0x70DF0, symSize: 0x20 } + - { offsetInCU: 0xCF, offset: 0x961D4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVwst', symObjAddr: 0xC90, symBinAddr: 0x70E80, symSize: 0x20 } + - { offsetInCU: 0xE3, offset: 0x961E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVMr', symObjAddr: 0xD30, symBinAddr: 0x70F20, symSize: 0x90 } + - { offsetInCU: 0xF7, offset: 0x961FC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xDC0, symBinAddr: 0x70FB0, symSize: 0x50 } + - { offsetInCU: 0x10B, offset: 0x96210, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwCP', symObjAddr: 0xE10, symBinAddr: 0x71000, symSize: 0x120 } + - { offsetInCU: 0x11F, offset: 0x96224, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwxx', symObjAddr: 0xF30, symBinAddr: 0x71120, symSize: 0x70 } + - { offsetInCU: 0x133, offset: 0x96238, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwcp', symObjAddr: 0xFA0, symBinAddr: 0x71190, symSize: 0xF0 } + - { offsetInCU: 0x147, offset: 0x9624C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwca', symObjAddr: 0x1090, symBinAddr: 0x71280, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x96260, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwtk', symObjAddr: 0x11F0, symBinAddr: 0x713E0, symSize: 0xC0 } + - { offsetInCU: 0x16F, offset: 0x96274, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwta', symObjAddr: 0x12B0, symBinAddr: 0x714A0, symSize: 0x150 } + - { offsetInCU: 0x183, offset: 0x96288, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwet', symObjAddr: 0x1400, symBinAddr: 0x715F0, symSize: 0x20 } + - { offsetInCU: 0x197, offset: 0x9629C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVwst', symObjAddr: 0x1490, symBinAddr: 0x71680, symSize: 0x20 } + - { offsetInCU: 0x1AB, offset: 0x962B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVMr', symObjAddr: 0x1550, symBinAddr: 0x71740, symSize: 0x80 } + - { offsetInCU: 0x239, offset: 0x9633E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B10, symBinAddr: 0x71D00, symSize: 0x10 } + - { offsetInCU: 0x28C, offset: 0x96391, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1B30, symBinAddr: 0x71D20, symSize: 0x20 } + - { offsetInCU: 0x306, offset: 0x9640B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x71D50, symSize: 0x80 } + - { offsetInCU: 0x33B, offset: 0x96440, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BE0, symBinAddr: 0x71DD0, symSize: 0x20 } + - { offsetInCU: 0x36C, offset: 0x96471, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1C00, symBinAddr: 0x71DF0, symSize: 0x10 } + - { offsetInCU: 0x388, offset: 0x9648D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C10, symBinAddr: 0x71E00, symSize: 0x10 } + - { offsetInCU: 0x3A4, offset: 0x964A9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3450, symBinAddr: 0x73510, symSize: 0x170 } + - { offsetInCU: 0x44E, offset: 0x96553, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C60, symBinAddr: 0x71E50, symSize: 0x10 } + - { offsetInCU: 0x471, offset: 0x96576, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C70, symBinAddr: 0x71E60, symSize: 0x10 } + - { offsetInCU: 0x4F2, offset: 0x965F7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1E50, symBinAddr: 0x72040, symSize: 0x60 } + - { offsetInCU: 0x527, offset: 0x9662C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1EB0, symBinAddr: 0x720A0, symSize: 0x20 } + - { offsetInCU: 0x558, offset: 0x9665D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1ED0, symBinAddr: 0x720C0, symSize: 0x10 } + - { offsetInCU: 0x574, offset: 0x96679, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1EE0, symBinAddr: 0x720D0, symSize: 0x10 } + - { offsetInCU: 0x590, offset: 0x96695, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x35C0, symBinAddr: 0x73680, symSize: 0x120 } + - { offsetInCU: 0x640, offset: 0x96745, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1F30, symBinAddr: 0x72120, symSize: 0x40 } + - { offsetInCU: 0x677, offset: 0x9677C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F70, symBinAddr: 0x72160, symSize: 0x40 } + - { offsetInCU: 0x69A, offset: 0x9679F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x36E0, symBinAddr: 0x737A0, symSize: 0x2B0 } + - { offsetInCU: 0x6FE, offset: 0x96803, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2990, symBinAddr: 0x72B80, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x96838, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x29A0, symBinAddr: 0x72B90, symSize: 0x20 } + - { offsetInCU: 0x764, offset: 0x96869, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x29C0, symBinAddr: 0x72BB0, symSize: 0x10 } + - { offsetInCU: 0x780, offset: 0x96885, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x29D0, symBinAddr: 0x72BC0, symSize: 0x10 } + - { offsetInCU: 0x79C, offset: 0x968A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3990, symBinAddr: 0x73A50, symSize: 0x2A0 } + - { offsetInCU: 0x901, offset: 0x96A06, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2A20, symBinAddr: 0x72C10, symSize: 0x10 } + - { offsetInCU: 0x924, offset: 0x96A29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2A30, symBinAddr: 0x72C20, symSize: 0x10 } + - { offsetInCU: 0x948, offset: 0x96A4D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2A70, symBinAddr: 0x72C30, symSize: 0x30 } + - { offsetInCU: 0x95C, offset: 0x96A61, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2AD0, symBinAddr: 0x72C60, symSize: 0x30 } + - { offsetInCU: 0x970, offset: 0x96A75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0E3KeyAAWl', symObjAddr: 0x2B70, symBinAddr: 0x72CC0, symSize: 0x30 } + - { offsetInCU: 0x984, offset: 0x96A89, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSeAAWl', symObjAddr: 0x2BE0, symBinAddr: 0x72CF0, symSize: 0x30 } + - { offsetInCU: 0x998, offset: 0x96A9D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVACSEAAWl', symObjAddr: 0x2CD0, symBinAddr: 0x72DE0, symSize: 0x30 } + - { offsetInCU: 0x9AC, offset: 0x96AB1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2D20, symBinAddr: 0x72E10, symSize: 0x80 } + - { offsetInCU: 0x9C0, offset: 0x96AC5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2DA0, symBinAddr: 0x72E90, symSize: 0xD0 } + - { offsetInCU: 0x9D4, offset: 0x96AD9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwug', symObjAddr: 0x2E70, symBinAddr: 0x72F60, symSize: 0x10 } + - { offsetInCU: 0x9E8, offset: 0x96AED, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x2E80, symBinAddr: 0x72F70, symSize: 0x10 } + - { offsetInCU: 0x9FC, offset: 0x96B01, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwui', symObjAddr: 0x2E90, symBinAddr: 0x72F80, symSize: 0x10 } + - { offsetInCU: 0xA10, offset: 0x96B15, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x2EA0, symBinAddr: 0x72F90, symSize: 0x10 } + - { offsetInCU: 0xA24, offset: 0x96B29, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x2EB0, symBinAddr: 0x72FA0, symSize: 0x80 } + - { offsetInCU: 0xA38, offset: 0x96B3D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x2F30, symBinAddr: 0x73020, symSize: 0xD0 } + - { offsetInCU: 0xA4C, offset: 0x96B51, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3000, symBinAddr: 0x730F0, symSize: 0x10 } + - { offsetInCU: 0xA60, offset: 0x96B65, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3010, symBinAddr: 0x73100, symSize: 0x10 } + - { offsetInCU: 0xA74, offset: 0x96B79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwCP', symObjAddr: 0x3020, symBinAddr: 0x73110, symSize: 0x30 } + - { offsetInCU: 0xA88, offset: 0x96B8D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwxx', symObjAddr: 0x3050, symBinAddr: 0x73140, symSize: 0x30 } + - { offsetInCU: 0xA9C, offset: 0x96BA1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwcp', symObjAddr: 0x3080, symBinAddr: 0x73170, symSize: 0x70 } + - { offsetInCU: 0xAB0, offset: 0x96BB5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwca', symObjAddr: 0x30F0, symBinAddr: 0x731E0, symSize: 0x90 } + - { offsetInCU: 0xAC4, offset: 0x96BC9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwta', symObjAddr: 0x31B0, symBinAddr: 0x73270, symSize: 0x70 } + - { offsetInCU: 0xAD8, offset: 0x96BDD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwet', symObjAddr: 0x3220, symBinAddr: 0x732E0, symSize: 0x50 } + - { offsetInCU: 0xAEC, offset: 0x96BF1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVwst', symObjAddr: 0x3270, symBinAddr: 0x73330, symSize: 0x50 } + - { offsetInCU: 0xB00, offset: 0x96C05, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttVMa', symObjAddr: 0x32C0, symBinAddr: 0x73380, symSize: 0x10 } + - { offsetInCU: 0xB14, offset: 0x96C19, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x32D0, symBinAddr: 0x73390, symSize: 0x10 } + - { offsetInCU: 0xB28, offset: 0x96C2D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x32E0, symBinAddr: 0x733A0, symSize: 0x30 } + - { offsetInCU: 0xB3C, offset: 0x96C41, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3310, symBinAddr: 0x733D0, symSize: 0x10 } + - { offsetInCU: 0xB50, offset: 0x96C55, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3320, symBinAddr: 0x733E0, symSize: 0x30 } + - { offsetInCU: 0xB64, offset: 0x96C69, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3350, symBinAddr: 0x73410, symSize: 0x10 } + - { offsetInCU: 0xB78, offset: 0x96C7D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3360, symBinAddr: 0x73420, symSize: 0x30 } + - { offsetInCU: 0xB8C, offset: 0x96C91, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3390, symBinAddr: 0x73450, symSize: 0x10 } + - { offsetInCU: 0xBA0, offset: 0x96CA5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x33A0, symBinAddr: 0x73460, symSize: 0x30 } + - { offsetInCU: 0xBB4, offset: 0x96CB9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x33D0, symBinAddr: 0x73490, symSize: 0x10 } + - { offsetInCU: 0xBC8, offset: 0x96CCD, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x33E0, symBinAddr: 0x734A0, symSize: 0x30 } + - { offsetInCU: 0xBDC, offset: 0x96CE1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3410, symBinAddr: 0x734D0, symSize: 0x10 } + - { offsetInCU: 0xBF0, offset: 0x96CF5, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3420, symBinAddr: 0x734E0, symSize: 0x30 } + - { offsetInCU: 0xC0F, offset: 0x96D14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs0D3KeyAAWl', symObjAddr: 0x3C30, symBinAddr: 0x73CF0, symSize: 0x30 } + - { offsetInCU: 0xC23, offset: 0x96D28, size: 0x8, addend: 0x0, symName: '_$sSay11IoTConnect27AttDataVGSgWOb', symObjAddr: 0x3C60, symBinAddr: 0x73D20, symSize: 0x40 } + - { offsetInCU: 0xC37, offset: 0x96D3C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwet', symObjAddr: 0x3D10, symBinAddr: 0x73DD0, symSize: 0x80 } + - { offsetInCU: 0xC4B, offset: 0x96D50, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwst', symObjAddr: 0x3D90, symBinAddr: 0x73E50, symSize: 0xD0 } + - { offsetInCU: 0xC5F, offset: 0x96D64, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOwup', symObjAddr: 0x3E60, symBinAddr: 0x73F20, symSize: 0x10 } + - { offsetInCU: 0xC73, offset: 0x96D78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOMa', symObjAddr: 0x3E70, symBinAddr: 0x73F30, symSize: 0x10 } + - { offsetInCU: 0xC87, offset: 0x96D8C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOSHAASQWb', symObjAddr: 0x3E80, symBinAddr: 0x73F40, symSize: 0x10 } + - { offsetInCU: 0xC9B, offset: 0x96DA0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFSQAAWl', symObjAddr: 0x3E90, symBinAddr: 0x73F50, symSize: 0x30 } + - { offsetInCU: 0xCAF, offset: 0x96DB4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3EC0, symBinAddr: 0x73F80, symSize: 0x10 } + - { offsetInCU: 0xCC3, offset: 0x96DC8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3ED0, symBinAddr: 0x73F90, symSize: 0x30 } + - { offsetInCU: 0xCD7, offset: 0x96DDC, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3F00, symBinAddr: 0x73FC0, symSize: 0x10 } + - { offsetInCU: 0xCEB, offset: 0x96DF0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3F10, symBinAddr: 0x73FD0, symSize: 0x30 } + - { offsetInCU: 0xD19, offset: 0x96E1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C20, symBinAddr: 0x71E10, symSize: 0x20 } + - { offsetInCU: 0xD35, offset: 0x96E3A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C40, symBinAddr: 0x71E30, symSize: 0x20 } + - { offsetInCU: 0xD57, offset: 0x96E5C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1EF0, symBinAddr: 0x720E0, symSize: 0x20 } + - { offsetInCU: 0xD73, offset: 0x96E78, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1F10, symBinAddr: 0x72100, symSize: 0x20 } + - { offsetInCU: 0xD95, offset: 0x96E9A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x29E0, symBinAddr: 0x72BD0, symSize: 0x20 } + - { offsetInCU: 0xDB1, offset: 0x96EB6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2A00, symBinAddr: 0x72BF0, symSize: 0x20 } + - { offsetInCU: 0xEBE, offset: 0x96FC3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x15D0, symBinAddr: 0x717C0, symSize: 0x1F0 } + - { offsetInCU: 0xEF5, offset: 0x96FFA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect214AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x17C0, symBinAddr: 0x719B0, symSize: 0x350 } + - { offsetInCU: 0xF70, offset: 0x97075, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect23AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1C80, symBinAddr: 0x71E70, symSize: 0x1B0 } + - { offsetInCU: 0xFBB, offset: 0x970C0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV10CodingKeys33_9936A2664B7ED610BFB01487F35E220BLLO11stringValueSSvg', symObjAddr: 0x1FB0, symBinAddr: 0x721A0, symSize: 0xD0 } + - { offsetInCU: 0xFDC, offset: 0x970E1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x2080, symBinAddr: 0x72270, symSize: 0x330 } + - { offsetInCU: 0x1013, offset: 0x97118, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect27AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x23B0, symBinAddr: 0x725A0, symSize: 0x540 } + - { offsetInCU: 0x27, offset: 0x9719F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x74080, symSize: 0x30 } + - { offsetInCU: 0x106, offset: 0x9727E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x74190, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x97292, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x741C0, symSize: 0x30 } + - { offsetInCU: 0x12E, offset: 0x972A6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x741F0, symSize: 0x40 } + - { offsetInCU: 0x142, offset: 0x972BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x74230, symSize: 0x60 } + - { offsetInCU: 0x156, offset: 0x972CE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x74290, symSize: 0x50 } + - { offsetInCU: 0x16A, offset: 0x972E2, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x742E0, symSize: 0x40 } + - { offsetInCU: 0x17E, offset: 0x972F6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x74320, symSize: 0x50 } + - { offsetInCU: 0x192, offset: 0x9730A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x74370, symSize: 0xA } + - { offsetInCU: 0x2A1, offset: 0x97419, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x74080, symSize: 0x30 } + - { offsetInCU: 0x2BB, offset: 0x97433, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x740B0, symSize: 0x30 } + - { offsetInCU: 0x2EF, offset: 0x97467, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x740E0, symSize: 0x10 } + - { offsetInCU: 0x303, offset: 0x9747B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x740F0, symSize: 0x10 } + - { offsetInCU: 0x324, offset: 0x9749C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x74100, symSize: 0x30 } + - { offsetInCU: 0x338, offset: 0x974B0, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x74130, symSize: 0x30 } + - { offsetInCU: 0x36C, offset: 0x974E4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x74160, symSize: 0x20 } + - { offsetInCU: 0x390, offset: 0x97508, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x74180, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x9755A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x74380, symSize: 0x20 } + - { offsetInCU: 0x87, offset: 0x975BA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x540, symBinAddr: 0x748C0, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x975D6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x550, symBinAddr: 0x748D0, symSize: 0x20 } + - { offsetInCU: 0xD8, offset: 0x9760B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASQWb', symObjAddr: 0x450, symBinAddr: 0x747D0, symSize: 0x10 } + - { offsetInCU: 0xEC, offset: 0x9761F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOACSQAAWl', symObjAddr: 0x460, symBinAddr: 0x747E0, symSize: 0x30 } + - { offsetInCU: 0x120, offset: 0x97653, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwet', symObjAddr: 0x590, symBinAddr: 0x748F0, symSize: 0x80 } + - { offsetInCU: 0x134, offset: 0x97667, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwst', symObjAddr: 0x610, symBinAddr: 0x74970, symSize: 0xD0 } + - { offsetInCU: 0x148, offset: 0x9767B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwug', symObjAddr: 0x6E0, symBinAddr: 0x74A40, symSize: 0x10 } + - { offsetInCU: 0x15C, offset: 0x9768F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwup', symObjAddr: 0x6F0, symBinAddr: 0x74A50, symSize: 0x10 } + - { offsetInCU: 0x170, offset: 0x976A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOwui', symObjAddr: 0x700, symBinAddr: 0x74A60, symSize: 0x10 } + - { offsetInCU: 0x184, offset: 0x976B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOMa', symObjAddr: 0x710, symBinAddr: 0x74A70, symSize: 0x10 } + - { offsetInCU: 0x1F4, offset: 0x97727, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect26SDKURLV9discoveryyS2S_S5StFZTf4nndnnnd_n', symObjAddr: 0x720, symBinAddr: 0x74A80, symSize: 0x148 } + - { offsetInCU: 0x518, offset: 0x97A4B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x430, symBinAddr: 0x747B0, symSize: 0x20 } + - { offsetInCU: 0x5EB, offset: 0x97B1E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x490, symBinAddr: 0x74810, symSize: 0x40 } + - { offsetInCU: 0x6C3, offset: 0x97BF6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4D0, symBinAddr: 0x74850, symSize: 0x30 } + - { offsetInCU: 0x73F, offset: 0x97C72, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x500, symBinAddr: 0x74880, symSize: 0x40 } + - { offsetInCU: 0x904, offset: 0x97E37, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x74380, symSize: 0x20 } + - { offsetInCU: 0x925, offset: 0x97E58, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x20, symBinAddr: 0x743A0, symSize: 0x410 } + - { offsetInCU: 0x2B, offset: 0x97F1F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x74BD0, symSize: 0x20 } + - { offsetInCU: 0x7C, offset: 0x97F70, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x74BF0, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x98076, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect211HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x74BD0, symSize: 0x20 } + - { offsetInCU: 0x4F, offset: 0x98106, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvpZ', symObjAddr: 0x2660, symBinAddr: 0x8FF38, symSize: 0x0 } + - { offsetInCU: 0x60A, offset: 0x986C1, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xB0, symBinAddr: 0x74CC0, symSize: 0x50 } + - { offsetInCU: 0x622, offset: 0x986D9, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6shared_WZ', symObjAddr: 0x100, symBinAddr: 0x74D10, symSize: 0xC0 } + - { offsetInCU: 0x79C, offset: 0x98853, size: 0x8, addend: 0x0, symName: '_$sSo11NSPredicateCMa', symObjAddr: 0x2050, symBinAddr: 0x76B70, symSize: 0x30 } + - { offsetInCU: 0x7B0, offset: 0x98867, size: 0x8, addend: 0x0, symName: '_$sS2Ss7CVarArg10FoundationWl', symObjAddr: 0x2080, symBinAddr: 0x76BA0, symSize: 0x30 } + - { offsetInCU: 0x7C4, offset: 0x9887B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_TA', symObjAddr: 0x20B0, symBinAddr: 0x76BD0, symSize: 0x10 } + - { offsetInCU: 0x7D8, offset: 0x9888F, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_TA', symObjAddr: 0x20C0, symBinAddr: 0x76BE0, symSize: 0x10 } + - { offsetInCU: 0x7EC, offset: 0x988A3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_TA', symObjAddr: 0x20D0, symBinAddr: 0x76BF0, symSize: 0x10 } + - { offsetInCU: 0x800, offset: 0x988B7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_TA', symObjAddr: 0x20E0, symBinAddr: 0x76C00, symSize: 0x10 } + - { offsetInCU: 0x814, offset: 0x988CB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_TA', symObjAddr: 0x20F0, symBinAddr: 0x76C10, symSize: 0x10 } + - { offsetInCU: 0x828, offset: 0x988DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCMa', symObjAddr: 0x2150, symBinAddr: 0x76C20, symSize: 0x20 } + - { offsetInCU: 0x83C, offset: 0x988F3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOb', symObjAddr: 0x2170, symBinAddr: 0x76C40, symSize: 0x40 } + - { offsetInCU: 0x850, offset: 0x98907, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect216callBackResponse_pSgWOd', symObjAddr: 0x21B0, symBinAddr: 0x76C80, symSize: 0x40 } + - { offsetInCU: 0x864, offset: 0x9891B, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect20A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x2550, symBinAddr: 0x76FD0, symSize: 0x10 } + - { offsetInCU: 0x878, offset: 0x9892F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2560, symBinAddr: 0x76FE0, symSize: 0x20 } + - { offsetInCU: 0x88C, offset: 0x98943, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2580, symBinAddr: 0x77000, symSize: 0x10 } + - { offsetInCU: 0x8D5, offset: 0x9898C, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x2590, symBinAddr: 0x77010, symSize: 0x20 } + - { offsetInCU: 0x944, offset: 0x989FB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x74C10, symSize: 0x10 } + - { offsetInCU: 0x960, offset: 0x98A17, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x10, symBinAddr: 0x74C20, symSize: 0x10 } + - { offsetInCU: 0x97C, offset: 0x98A33, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x20, symBinAddr: 0x74C30, symSize: 0x10 } + - { offsetInCU: 0x998, offset: 0x98A4F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x30, symBinAddr: 0x74C40, symSize: 0x10 } + - { offsetInCU: 0x9B4, offset: 0x98A6B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x40, symBinAddr: 0x74C50, symSize: 0x10 } + - { offsetInCU: 0x9D0, offset: 0x98A87, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x74C60, symSize: 0x10 } + - { offsetInCU: 0x9EC, offset: 0x98AA3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x60, symBinAddr: 0x74C70, symSize: 0x10 } + - { offsetInCU: 0xA08, offset: 0x98ABF, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x70, symBinAddr: 0x74C80, symSize: 0x20 } + - { offsetInCU: 0xA24, offset: 0x98ADB, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x90, symBinAddr: 0x74CA0, symSize: 0x20 } + - { offsetInCU: 0xCFC, offset: 0x98DB3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC6sharedACvgZ', symObjAddr: 0x1C0, symBinAddr: 0x74DD0, symSize: 0x30 } + - { offsetInCU: 0xE7F, offset: 0x98F36, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF', symObjAddr: 0x1F0, symBinAddr: 0x74E00, symSize: 0xA50 } + - { offsetInCU: 0x1443, offset: 0x994FA, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_', symObjAddr: 0xC40, symBinAddr: 0x75850, symSize: 0x50 } + - { offsetInCU: 0x14B2, offset: 0x99569, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_', symObjAddr: 0xC90, symBinAddr: 0x758A0, symSize: 0x50 } + - { offsetInCU: 0x1521, offset: 0x995D8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_', symObjAddr: 0xCE0, symBinAddr: 0x758F0, symSize: 0x50 } + - { offsetInCU: 0x1590, offset: 0x99647, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_', symObjAddr: 0xD30, symBinAddr: 0x75940, symSize: 0x50 } + - { offsetInCU: 0x15FF, offset: 0x996B6, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_', symObjAddr: 0xD80, symBinAddr: 0x75990, symSize: 0x50 } + - { offsetInCU: 0x16D3, offset: 0x9978A, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xDD0, symBinAddr: 0x759E0, symSize: 0x40 } + - { offsetInCU: 0x173D, offset: 0x997F4, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xE10, symBinAddr: 0x75A20, symSize: 0x10 } + - { offsetInCU: 0x1780, offset: 0x99837, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xE20, symBinAddr: 0x75A30, symSize: 0x50 } + - { offsetInCU: 0x17F7, offset: 0x998AE, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC11getAllTwinsyyF', symObjAddr: 0xF90, symBinAddr: 0x75BA0, symSize: 0x30 } + - { offsetInCU: 0x185A, offset: 0x99911, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xFC0, symBinAddr: 0x75BD0, symSize: 0x50 } + - { offsetInCU: 0x18D1, offset: 0x99988, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0x1010, symBinAddr: 0x75C20, symSize: 0x40 } + - { offsetInCU: 0x195D, offset: 0x99A14, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x1050, symBinAddr: 0x75C60, symSize: 0x80 } + - { offsetInCU: 0x19F8, offset: 0x99AAF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x10D0, symBinAddr: 0x75CE0, symSize: 0x70 } + - { offsetInCU: 0x1AA7, offset: 0x99B5E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0x1140, symBinAddr: 0x75D50, symSize: 0x80 } + - { offsetInCU: 0x1B44, offset: 0x99BFB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0x11C0, symBinAddr: 0x75DD0, symSize: 0x30 } + - { offsetInCU: 0x1BC2, offset: 0x99C79, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x11F0, symBinAddr: 0x75E00, symSize: 0x30 } + - { offsetInCU: 0x1C40, offset: 0x99CF7, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1220, symBinAddr: 0x75E30, symSize: 0x40 } + - { offsetInCU: 0x1CBE, offset: 0x99D75, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1260, symBinAddr: 0x75E70, symSize: 0x40 } + - { offsetInCU: 0x1D3C, offset: 0x99DF3, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x12A0, symBinAddr: 0x75EB0, symSize: 0x40 } + - { offsetInCU: 0x1DBA, offset: 0x99E71, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0x12E0, symBinAddr: 0x75EF0, symSize: 0x40 } + - { offsetInCU: 0x1E38, offset: 0x99EEF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1320, symBinAddr: 0x75F30, symSize: 0x40 } + - { offsetInCU: 0x1EB6, offset: 0x99F6D, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0x1360, symBinAddr: 0x75F70, symSize: 0x30 } + - { offsetInCU: 0x1F14, offset: 0x99FCB, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x1390, symBinAddr: 0x75FA0, symSize: 0x40 } + - { offsetInCU: 0x1FAB, offset: 0x9A062, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x13D0, symBinAddr: 0x75FE0, symSize: 0x130 } + - { offsetInCU: 0x2091, offset: 0x9A148, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17createChildDevice8deviceId0G3Tag11displayName0dE8CallBackySS_S2SyypSgctF', symObjAddr: 0x1500, symBinAddr: 0x76110, symSize: 0x200 } + - { offsetInCU: 0x2231, offset: 0x9A2E8, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC17deleteChildDevice8deviceId0dE8CallBackySS_yypSgctF', symObjAddr: 0x1700, symBinAddr: 0x76310, symSize: 0x90 } + - { offsetInCU: 0x22C7, offset: 0x9A37E, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfd', symObjAddr: 0x1790, symBinAddr: 0x763A0, symSize: 0x100 } + - { offsetInCU: 0x22EA, offset: 0x9A3A1, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientCfD', symObjAddr: 0x1890, symBinAddr: 0x764A0, symSize: 0x20 } + - { offsetInCU: 0x2328, offset: 0x9A3DF, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1960, symBinAddr: 0x764C0, symSize: 0x310 } + - { offsetInCU: 0x23E5, offset: 0x9A49C, size: 0x8, addend: 0x0, symName: '_$s11IoTConnect29SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1C70, symBinAddr: 0x767D0, symSize: 0x3A0 } ... diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS deleted file mode 100755 index a2f48d1..0000000 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json deleted file mode 100644 index 169ab97..0000000 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json +++ /dev/null @@ -1,22932 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS12ReachabilityC", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2_AWS.DebugConfig", - "usr": "s:15IoTConnect2_AWS11DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2_AWS.MqttConfig", - "usr": "s:15IoTConnect2_AWS10MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS11DebugConfigV", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS10MqttConfigV", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PREQA", - "printedName": "PREQA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "POC", - "printedName": "POC", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS0A4TCPfO", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS9SSLOptionV", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS11CommandTypeO", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS9SDKClientC", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", - "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4310, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34350, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34392, - "length": 48, - "value": "\"twinPropertySubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34421, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34515, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34565, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34614, - "length": 48, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34643, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34661, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34737, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34787, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34891, - "length": 11, - "value": "\"subForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34988, - "length": 11, - "value": "\"pubForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 89, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2295, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2315, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2406, - "length": 92, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2448, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2477, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2497, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2549, - "length": 93, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2580, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2413, - "length": 26, - "value": "\"SDKClient initialize AWS\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS deleted file mode 100644 index 8c3d4b1..0000000 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml deleted file mode 100644 index 6c2b159..0000000 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml +++ /dev/null @@ -1,1833 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' -relocations: - - { offsetInCU: 0x34, offset: 0x57F7E, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6D7D0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x57FB3, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6D808, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58018, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E128, symBinAddr: 0x88A20, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58043, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x407C, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5805F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x40C0, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x5807B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x40C4, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x580D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x4380, symSize: 0xDC0 } - - { offsetInCU: 0x45B, offset: 0x58424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x1180, symBinAddr: 0x5140, symSize: 0x384 } - - { offsetInCU: 0x4BE, offset: 0x58487, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1504, symBinAddr: 0x54C4, symSize: 0x20 } - - { offsetInCU: 0x4EB, offset: 0x584B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x16D0, symBinAddr: 0x5690, symSize: 0x6C8 } - - { offsetInCU: 0x7EF, offset: 0x587B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D98, symBinAddr: 0x5D58, symSize: 0x3E4 } - - { offsetInCU: 0xAA5, offset: 0x58A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x217C, symBinAddr: 0x613C, symSize: 0x914 } - - { offsetInCU: 0xF7B, offset: 0x58F44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A90, symBinAddr: 0x6A50, symSize: 0x678 } - - { offsetInCU: 0x1375, offset: 0x5933E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3108, symBinAddr: 0x70C8, symSize: 0x3C18 } - - { offsetInCU: 0x2E6B, offset: 0x5AE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6D30, symBinAddr: 0xACE0, symSize: 0x150 } - - { offsetInCU: 0x2F55, offset: 0x5AF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6E80, symBinAddr: 0xAE30, symSize: 0x304 } - - { offsetInCU: 0x3146, offset: 0x5B10F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7184, symBinAddr: 0xB134, symSize: 0x3C8 } - - { offsetInCU: 0x34AF, offset: 0x5B478, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x754C, symBinAddr: 0xB4FC, symSize: 0x2E4 } - - { offsetInCU: 0x3683, offset: 0x5B64C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x7830, symBinAddr: 0xB7E0, symSize: 0x240 } - - { offsetInCU: 0x3815, offset: 0x5B7DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x7A70, symBinAddr: 0xBA20, symSize: 0x244 } - - { offsetInCU: 0x39A7, offset: 0x5B970, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7CB4, symBinAddr: 0xBC64, symSize: 0x430 } - - { offsetInCU: 0x3B10, offset: 0x5BAD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x80E4, symBinAddr: 0xC094, symSize: 0x650 } - - { offsetInCU: 0x3E23, offset: 0x5BDEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x8734, symBinAddr: 0xC6E4, symSize: 0x224 } - - { offsetInCU: 0x4034, offset: 0x5BFFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9B80, symBinAddr: 0xDB30, symSize: 0x15A8 } - - { offsetInCU: 0x5710, offset: 0x5D6D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4000, symSize: 0x3C } - - { offsetInCU: 0x5740, offset: 0x5D709, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x403C, symSize: 0x40 } - - { offsetInCU: 0x5909, offset: 0x5D8D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1524, symBinAddr: 0x54E4, symSize: 0x8 } - - { offsetInCU: 0x591D, offset: 0x5D8E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x152C, symBinAddr: 0x54EC, symSize: 0x3C } - - { offsetInCU: 0x5931, offset: 0x5D8FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1568, symBinAddr: 0x5528, symSize: 0x168 } - - { offsetInCU: 0x5E77, offset: 0x5DE40, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x89CC, symBinAddr: 0xC97C, symSize: 0xC } - - { offsetInCU: 0x5E8B, offset: 0x5DE54, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x89D8, symBinAddr: 0xC988, symSize: 0x4 } - - { offsetInCU: 0x5E9F, offset: 0x5DE68, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x89DC, symBinAddr: 0xC98C, symSize: 0x20 } - - { offsetInCU: 0x5EB3, offset: 0x5DE7C, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x89FC, symBinAddr: 0xC9AC, symSize: 0x28 } - - { offsetInCU: 0x5FC4, offset: 0x5DF8D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8F34, symBinAddr: 0xCEE4, symSize: 0x2C } - - { offsetInCU: 0x5FD8, offset: 0x5DFA1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F60, symBinAddr: 0xCF10, symSize: 0x2C } - - { offsetInCU: 0x5FEC, offset: 0x5DFB5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8FCC, symBinAddr: 0xCF7C, symSize: 0x2C } - - { offsetInCU: 0x6000, offset: 0x5DFC9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8FF8, symBinAddr: 0xCFA8, symSize: 0x2C } - - { offsetInCU: 0x6035, offset: 0x5DFFE, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x9214, symBinAddr: 0xD1C4, symSize: 0x210 } - - { offsetInCU: 0x6087, offset: 0x5E050, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x9424, symBinAddr: 0xD3D4, symSize: 0x68 } - - { offsetInCU: 0x60E8, offset: 0x5E0B1, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x95E8, symBinAddr: 0xD598, symSize: 0x1DC } - - { offsetInCU: 0x6633, offset: 0x5E5FC, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB198, symBinAddr: 0xF148, symSize: 0x40 } - - { offsetInCU: 0x6647, offset: 0x5E610, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB1D8, symBinAddr: 0xF188, symSize: 0x20 } - - { offsetInCU: 0x665B, offset: 0x5E624, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB1F8, symBinAddr: 0xF1A8, symSize: 0x10 } - - { offsetInCU: 0x666F, offset: 0x5E638, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB208, symBinAddr: 0xF1B8, symSize: 0x3C } - - { offsetInCU: 0x6683, offset: 0x5E64C, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB2A4, symBinAddr: 0xF254, symSize: 0x44 } - - { offsetInCU: 0x6697, offset: 0x5E660, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB454, symBinAddr: 0xF404, symSize: 0x10 } - - { offsetInCU: 0x66AB, offset: 0x5E674, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB464, symBinAddr: 0xF414, symSize: 0x10 } - - { offsetInCU: 0x66BF, offset: 0x5E688, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xB474, symBinAddr: 0xF424, symSize: 0x5C } - - { offsetInCU: 0x66D3, offset: 0x5E69C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xB4D0, symBinAddr: 0xF480, symSize: 0x30C } - - { offsetInCU: 0x66E7, offset: 0x5E6B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB7DC, symBinAddr: 0xF78C, symSize: 0x240 } - - { offsetInCU: 0x66FB, offset: 0x5E6C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xBA1C, symBinAddr: 0xF9CC, symSize: 0x70 } - - { offsetInCU: 0x670F, offset: 0x5E6D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xBA8C, symBinAddr: 0xFA3C, symSize: 0x34 } - - { offsetInCU: 0x6723, offset: 0x5E6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xBAC0, symBinAddr: 0xFA70, symSize: 0x174 } - - { offsetInCU: 0x6737, offset: 0x5E700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xBC34, symBinAddr: 0xFBE4, symSize: 0xB4 } - - { offsetInCU: 0x674B, offset: 0x5E714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xBCE8, symBinAddr: 0xFC98, symSize: 0x10 } - - { offsetInCU: 0x675F, offset: 0x5E728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xBCF8, symBinAddr: 0xFCA8, symSize: 0x34 } - - { offsetInCU: 0x6773, offset: 0x5E73C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xBDAC, symBinAddr: 0xFD5C, symSize: 0x5C } - - { offsetInCU: 0x6787, offset: 0x5E750, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBEAC, symBinAddr: 0xFE5C, symSize: 0x2C } - - { offsetInCU: 0x679B, offset: 0x5E764, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBED8, symBinAddr: 0xFE88, symSize: 0x2C } - - { offsetInCU: 0x67AF, offset: 0x5E778, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBF04, symBinAddr: 0xFEB4, symSize: 0x2C } - - { offsetInCU: 0x67C3, offset: 0x5E78C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBF30, symBinAddr: 0xFEE0, symSize: 0x2C } - - { offsetInCU: 0x67D7, offset: 0x5E7A0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBF5C, symBinAddr: 0xFF0C, symSize: 0x2C } - - { offsetInCU: 0x67EB, offset: 0x5E7B4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBF88, symBinAddr: 0xFF38, symSize: 0x2C } - - { offsetInCU: 0x67FF, offset: 0x5E7C8, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBFB4, symBinAddr: 0xFF64, symSize: 0x2C } - - { offsetInCU: 0x6C07, offset: 0x5EBD0, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8A38, symBinAddr: 0xC9E8, symSize: 0x14 } - - { offsetInCU: 0x6C45, offset: 0x5EC0E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8A58, symBinAddr: 0xCA08, symSize: 0x8 } - - { offsetInCU: 0x6C94, offset: 0x5EC5D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A60, symBinAddr: 0xCA10, symSize: 0x14 } - - { offsetInCU: 0x6D31, offset: 0x5ECFA, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A74, symBinAddr: 0xCA24, symSize: 0x14 } - - { offsetInCU: 0x6DC6, offset: 0x5ED8F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A88, symBinAddr: 0xCA38, symSize: 0x14 } - - { offsetInCU: 0x6E63, offset: 0x5EE2C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A9C, symBinAddr: 0xCA4C, symSize: 0x30 } - - { offsetInCU: 0x6FD6, offset: 0x5EF9F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8ACC, symBinAddr: 0xCA7C, symSize: 0x2C } - - { offsetInCU: 0x7163, offset: 0x5F12C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8AF8, symBinAddr: 0xCAA8, symSize: 0x24 } - - { offsetInCU: 0x724F, offset: 0x5F218, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8B1C, symBinAddr: 0xCACC, symSize: 0x14 } - - { offsetInCU: 0x72B5, offset: 0x5F27E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8B30, symBinAddr: 0xCAE0, symSize: 0x14 } - - { offsetInCU: 0x731B, offset: 0x5F2E4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8B44, symBinAddr: 0xCAF4, symSize: 0x14 } - - { offsetInCU: 0x7390, offset: 0x5F359, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8B58, symBinAddr: 0xCB08, symSize: 0x14 } - - { offsetInCU: 0x7439, offset: 0x5F402, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B6C, symBinAddr: 0xCB1C, symSize: 0x14 } - - { offsetInCU: 0x74B0, offset: 0x5F479, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B80, symBinAddr: 0xCB30, symSize: 0x14 } - - { offsetInCU: 0x7568, offset: 0x5F531, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B94, symBinAddr: 0xCB44, symSize: 0x14 } - - { offsetInCU: 0x7602, offset: 0x5F5CB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8BA8, symBinAddr: 0xCB58, symSize: 0x10 } - - { offsetInCU: 0x766A, offset: 0x5F633, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8BB8, symBinAddr: 0xCB68, symSize: 0x28 } - - { offsetInCU: 0x7686, offset: 0x5F64F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8BE0, symBinAddr: 0xCB90, symSize: 0x14 } - - { offsetInCU: 0x7702, offset: 0x5F6CB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8C10, symBinAddr: 0xCBC0, symSize: 0x14 } - - { offsetInCU: 0x7733, offset: 0x5F6FC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8C24, symBinAddr: 0xCBD4, symSize: 0x14 } - - { offsetInCU: 0x7764, offset: 0x5F72D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8C38, symBinAddr: 0xCBE8, symSize: 0x14 } - - { offsetInCU: 0x7795, offset: 0x5F75E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8C4C, symBinAddr: 0xCBFC, symSize: 0x30 } - - { offsetInCU: 0x77C4, offset: 0x5F78D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C7C, symBinAddr: 0xCC2C, symSize: 0x2C } - - { offsetInCU: 0x77F5, offset: 0x5F7BE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8CA8, symBinAddr: 0xCC58, symSize: 0x24 } - - { offsetInCU: 0x7826, offset: 0x5F7EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8CCC, symBinAddr: 0xCC7C, symSize: 0x14 } - - { offsetInCU: 0x7857, offset: 0x5F820, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8CE0, symBinAddr: 0xCC90, symSize: 0x14 } - - { offsetInCU: 0x7888, offset: 0x5F851, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8CF4, symBinAddr: 0xCCA4, symSize: 0x14 } - - { offsetInCU: 0x78B9, offset: 0x5F882, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8D08, symBinAddr: 0xCCB8, symSize: 0x14 } - - { offsetInCU: 0x78EA, offset: 0x5F8B3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8D1C, symBinAddr: 0xCCCC, symSize: 0x14 } - - { offsetInCU: 0x791B, offset: 0x5F8E4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8D30, symBinAddr: 0xCCE0, symSize: 0x14 } - - { offsetInCU: 0x794C, offset: 0x5F915, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8D44, symBinAddr: 0xCCF4, symSize: 0x14 } - - { offsetInCU: 0x797D, offset: 0x5F946, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8D58, symBinAddr: 0xCD08, symSize: 0x10 } - - { offsetInCU: 0x79AE, offset: 0x5F977, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D68, symBinAddr: 0xCD18, symSize: 0x28 } - - { offsetInCU: 0x79CA, offset: 0x5F993, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D90, symBinAddr: 0xCD40, symSize: 0x14 } - - { offsetInCU: 0x7A0A, offset: 0x5F9D3, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8DB0, symBinAddr: 0xCD60, symSize: 0x40 } - - { offsetInCU: 0x7A88, offset: 0x5FA51, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8DF0, symBinAddr: 0xCDA0, symSize: 0x70 } - - { offsetInCU: 0x7B1B, offset: 0x5FAE4, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EA8, symBinAddr: 0xCE58, symSize: 0x4 } - - { offsetInCU: 0x7B3B, offset: 0x5FB04, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EA8, symBinAddr: 0xCE58, symSize: 0x4 } - - { offsetInCU: 0x7B5B, offset: 0x5FB24, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EAC, symBinAddr: 0xCE5C, symSize: 0x4 } - - { offsetInCU: 0x7B7B, offset: 0x5FB44, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8EAC, symBinAddr: 0xCE5C, symSize: 0x4 } - - { offsetInCU: 0x7BA1, offset: 0x5FB6A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8EB0, symBinAddr: 0xCE60, symSize: 0x40 } - - { offsetInCU: 0x7C10, offset: 0x5FBD9, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8EF0, symBinAddr: 0xCEA0, symSize: 0x8 } - - { offsetInCU: 0x7C3B, offset: 0x5FC04, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8EF8, symBinAddr: 0xCEA8, symSize: 0x3C } - - { offsetInCU: 0x7C6C, offset: 0x5FC35, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9024, symBinAddr: 0xCFD4, symSize: 0x14 } - - { offsetInCU: 0x7C9D, offset: 0x5FC66, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x9038, symBinAddr: 0xCFE8, symSize: 0x3C } - - { offsetInCU: 0x7CDD, offset: 0x5FCA6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9074, symBinAddr: 0xD024, symSize: 0x88 } - - { offsetInCU: 0x7D5E, offset: 0x5FD27, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9190, symBinAddr: 0xD140, symSize: 0x84 } - - { offsetInCU: 0x7D92, offset: 0x5FD5B, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x97C4, symBinAddr: 0xD774, symSize: 0xB0 } - - { offsetInCU: 0x7E7E, offset: 0x5FE47, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9874, symBinAddr: 0xD824, symSize: 0x1F0 } - - { offsetInCU: 0x80AD, offset: 0x60076, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x80CD, offset: 0x60096, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x80E1, offset: 0x600AA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8101, offset: 0x600CA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8115, offset: 0x600DE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8129, offset: 0x600F2, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x813D, offset: 0x60106, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB128, symBinAddr: 0xF0D8, symSize: 0x38 } - - { offsetInCU: 0x8220, offset: 0x601E9, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8240, offset: 0x60209, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8254, offset: 0x6021D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8274, offset: 0x6023D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8288, offset: 0x60251, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x829C, offset: 0x60265, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x82B0, offset: 0x60279, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB160, symBinAddr: 0xF110, symSize: 0x38 } - - { offsetInCU: 0x8357, offset: 0x60320, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBFE0, symBinAddr: 0xFF90, symSize: 0x80 } - - { offsetInCU: 0x83E8, offset: 0x603B1, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xC060, symBinAddr: 0x10010, symSize: 0x90 } - - { offsetInCU: 0x85AA, offset: 0x60573, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x9108, symBinAddr: 0xD0B8, symSize: 0x10 } - - { offsetInCU: 0x85C6, offset: 0x6058F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x9118, symBinAddr: 0xD0C8, symSize: 0xC } - - { offsetInCU: 0x8630, offset: 0x605F9, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x9124, symBinAddr: 0xD0D4, symSize: 0x44 } - - { offsetInCU: 0x8659, offset: 0x60622, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x9168, symBinAddr: 0xD118, symSize: 0x28 } - - { offsetInCU: 0x8694, offset: 0x6065D, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x90FC, symBinAddr: 0xD0AC, symSize: 0xC } - - { offsetInCU: 0x8772, offset: 0x6073B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8A4C, symBinAddr: 0xC9FC, symSize: 0xC } - - { offsetInCU: 0x87A4, offset: 0x6076D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8BF4, symBinAddr: 0xCBA4, symSize: 0x10 } - - { offsetInCU: 0x87C0, offset: 0x60789, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8C04, symBinAddr: 0xCBB4, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x60991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100D0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x609B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x100D0, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x609E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x100E0, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x60B14, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x1010C, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x60B28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x10120, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x60B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x10130, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x60BB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0x10150, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x60C1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0x10168, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x60C97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0x10194, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x60CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0x1019C, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x60CF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0x101C0, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x60D0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0x101CC, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x60D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x20F8, symBinAddr: 0x121F8, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x60D71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0x10228, symSize: 0x41C } - - { offsetInCU: 0x2F5, offset: 0x60DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1428, symBinAddr: 0x11528, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x60DFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1478, symBinAddr: 0x11578, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x60E20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x24CC, symBinAddr: 0x125CC, symSize: 0x145C } - - { offsetInCU: 0x381, offset: 0x60E52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x544, symBinAddr: 0x10644, symSize: 0x110 } - - { offsetInCU: 0x3CD, offset: 0x60E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14C8, symBinAddr: 0x115C8, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x60EF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x14D0, symBinAddr: 0x115D0, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x60FD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x11610, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11670, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61075, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x11670, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x61095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x11674, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x610C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x159C, symBinAddr: 0x1169C, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x610E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15A8, symBinAddr: 0x116A8, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x610FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3928, symBinAddr: 0x13A28, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x61142, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvgTf4d_n', symObjAddr: 0x3994, symBinAddr: 0x13A94, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x61176, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1604, symBinAddr: 0x11704, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x611AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1654, symBinAddr: 0x11754, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x611D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x39A0, symBinAddr: 0x13AA0, symSize: 0x258 } - - { offsetInCU: 0x771, offset: 0x61242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x654, symBinAddr: 0x10754, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x6126D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16A4, symBinAddr: 0x117A4, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x61298, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16AC, symBinAddr: 0x117AC, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x612C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16D0, symBinAddr: 0x117D0, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x612E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16DC, symBinAddr: 0x117DC, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x61301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5B54, symBinAddr: 0x15C10, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x61347, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x674, symBinAddr: 0x10774, symSize: 0x18C } - - { offsetInCU: 0x8CB, offset: 0x6139C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1738, symBinAddr: 0x11838, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x613D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1788, symBinAddr: 0x11888, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x613F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x15DA8, symSize: 0x320 } - - { offsetInCU: 0x975, offset: 0x61446, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x800, symBinAddr: 0x10900, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x61471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17C8, symBinAddr: 0x118C8, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x6149C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17D0, symBinAddr: 0x118D0, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x614CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x17F4, symBinAddr: 0x118F4, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x614E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x600C, symBinAddr: 0x160C8, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x6152F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x820, symBinAddr: 0x10920, symSize: 0x164 } - - { offsetInCU: 0xAB3, offset: 0x61584, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1850, symBinAddr: 0x11950, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x615BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1890, symBinAddr: 0x11990, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x615DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6164, symBinAddr: 0x16220, symSize: 0x2D8 } - - { offsetInCU: 0xB51, offset: 0x61622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x984, symBinAddr: 0x10A84, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x6164D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18C8, symBinAddr: 0x119C8, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x61678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x119D0, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x616A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18F4, symBinAddr: 0x119F4, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x616C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1900, symBinAddr: 0x11A00, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x616E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x643C, symBinAddr: 0x164F8, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x61727, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9A4, symBinAddr: 0x10AA4, symSize: 0x1B4 } - - { offsetInCU: 0xCAB, offset: 0x6177C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x195C, symBinAddr: 0x11A5C, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x617B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19CC, symBinAddr: 0x11ACC, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x617D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6584, symBinAddr: 0x16640, symSize: 0x4E8 } - - { offsetInCU: 0xD55, offset: 0x61826, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xB58, symBinAddr: 0x10C58, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x11B2C, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x6187C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A34, symBinAddr: 0x11B34, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x618AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A58, symBinAddr: 0x11B58, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x618C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A64, symBinAddr: 0x11B64, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x618E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B38, symBinAddr: 0x16BF4, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x6192B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB78, symBinAddr: 0x10C78, symSize: 0x204 } - - { offsetInCU: 0xEAF, offset: 0x61980, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x11BC0, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x619B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B24, symBinAddr: 0x11C24, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x619DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6DAC, symBinAddr: 0x16E68, symSize: 0x58C } - - { offsetInCU: 0xF59, offset: 0x61A2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xD7C, symBinAddr: 0x10E7C, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61A75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1B74, symBinAddr: 0x11C74, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x61B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1B8C, symBinAddr: 0x11C8C, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x61BE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1BD0, symBinAddr: 0x11CD0, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x61C5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x11D38, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x61C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C40, symBinAddr: 0x11D40, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x61CB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1C64, symBinAddr: 0x11D64, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x61CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C70, symBinAddr: 0x11D70, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x61CEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x737C, symBinAddr: 0x17438, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x61D35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD94, symBinAddr: 0x10E94, symSize: 0x128 } - - { offsetInCU: 0x12B9, offset: 0x61D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1CCC, symBinAddr: 0x11DCC, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x61DC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CF8, symBinAddr: 0x11DF8, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x61DE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7434, symBinAddr: 0x174F0, symSize: 0x1B0 } - - { offsetInCU: 0x136F, offset: 0x61E40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xEBC, symBinAddr: 0x10FBC, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x61E6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1D14, symBinAddr: 0x11E14, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x61E96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D1C, symBinAddr: 0x11E1C, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x61EC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D40, symBinAddr: 0x11E40, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x61EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D4C, symBinAddr: 0x11E4C, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x61EFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7628, symBinAddr: 0x176E4, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x61F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEDC, symBinAddr: 0x10FDC, symSize: 0x1DC } - - { offsetInCU: 0x14C9, offset: 0x61F9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DA8, symBinAddr: 0x11EA8, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x61FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E00, symBinAddr: 0x11F00, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x61FF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x783C, symBinAddr: 0x178F8, symSize: 0x370 } - - { offsetInCU: 0x1567, offset: 0x62038, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x10B8, symBinAddr: 0x111B8, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1E48, symBinAddr: 0x11F48, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x6208E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E50, symBinAddr: 0x11F50, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x620BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E74, symBinAddr: 0x11F74, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x620DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x11F80, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x620F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7BAC, symBinAddr: 0x17C68, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x6213D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10D8, symBinAddr: 0x111D8, symSize: 0x1FC } - - { offsetInCU: 0x16C1, offset: 0x62192, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EDC, symBinAddr: 0x11FDC, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x621C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F24, symBinAddr: 0x12024, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x621EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D80, symBinAddr: 0x17E3C, symSize: 0x390 } - - { offsetInCU: 0x176B, offset: 0x6223C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x12D4, symBinAddr: 0x113D4, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x62267, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FE8, symBinAddr: 0x120E8, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x62292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FF0, symBinAddr: 0x120F0, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x622C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2014, symBinAddr: 0x12114, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x622DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2020, symBinAddr: 0x12120, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x622FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8198, symBinAddr: 0x18254, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x62341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12EC, symBinAddr: 0x113EC, symSize: 0x13C } - - { offsetInCU: 0x18C5, offset: 0x62396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x207C, symBinAddr: 0x1217C, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x623CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x20C0, symBinAddr: 0x121C0, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x623F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8294, symBinAddr: 0x18350, symSize: 0x1DC } - - { offsetInCU: 0x195C, offset: 0x6242D, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3C38, symBinAddr: 0x13CF8, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x62441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3C5C, symBinAddr: 0x13D1C, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62455, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3CA0, symBinAddr: 0x13D60, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x62469, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3CC0, symBinAddr: 0x13D80, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x6247D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3D04, symBinAddr: 0x13DC4, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x62491, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3D48, symBinAddr: 0x13E08, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x624A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3D50, symBinAddr: 0x13E0C, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x624B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x3DA0, symBinAddr: 0x13E5C, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x624CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x3E2C, symBinAddr: 0x13EE8, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x624E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x3E34, symBinAddr: 0x13EF0, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x624F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x3E38, symBinAddr: 0x13EF4, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x62509, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x3E3C, symBinAddr: 0x13EF8, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x6251D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x3E4C, symBinAddr: 0x13F08, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62531, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x4714, symBinAddr: 0x147D0, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x4724, symBinAddr: 0x147E0, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x62559, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4728, symBinAddr: 0x147E4, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x6256D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x476C, symBinAddr: 0x14828, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x62581, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4770, symBinAddr: 0x1482C, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x62595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x47B4, symBinAddr: 0x14870, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x625A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x47B8, symBinAddr: 0x14874, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x625BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x47FC, symBinAddr: 0x148B8, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x625D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4840, symBinAddr: 0x148FC, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x625E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4884, symBinAddr: 0x14940, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x625F9, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x48C8, symBinAddr: 0x14984, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x6260D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x490C, symBinAddr: 0x149C8, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62621, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4950, symBinAddr: 0x14A0C, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62635, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x4994, symBinAddr: 0x14A50, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x62649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x49D8, symBinAddr: 0x14A94, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x6265D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x14AD8, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62671, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x4A60, symBinAddr: 0x14B1C, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x62685, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x14B60, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x62699, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x14BA4, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x626AD, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4B2C, symBinAddr: 0x14BE8, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x626C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4B38, symBinAddr: 0x14BF4, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x626D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4BC8, symBinAddr: 0x14C84, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x626E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4C84, symBinAddr: 0x14D40, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x626FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4C8C, symBinAddr: 0x14D48, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4C90, symBinAddr: 0x14D4C, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4C98, symBinAddr: 0x14D54, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x62739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4CA8, symBinAddr: 0x14D64, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x6274D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4CD0, symBinAddr: 0x14D8C, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4D14, symBinAddr: 0x14DD0, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62775, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4D88, symBinAddr: 0x14E44, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x62789, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4D9C, symBinAddr: 0x14E58, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x6279D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x4DE8, symBinAddr: 0x14EA4, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x627B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x4E30, symBinAddr: 0x14EEC, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x627C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x4E78, symBinAddr: 0x14F34, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x627D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x4E88, symBinAddr: 0x14F44, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x627ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x4EC0, symBinAddr: 0x14F7C, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x4F34, symBinAddr: 0x14FF0, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62815, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4FF0, symBinAddr: 0x150AC, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x62829, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x500C, symBinAddr: 0x150C8, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x6283D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5088, symBinAddr: 0x15144, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x50D0, symBinAddr: 0x1518C, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x5124, symBinAddr: 0x151E0, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x62879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x5134, symBinAddr: 0x151F0, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x6288D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x515C, symBinAddr: 0x15218, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x628A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5198, symBinAddr: 0x15254, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x628B5, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5204, symBinAddr: 0x152C0, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x628C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5210, symBinAddr: 0x152CC, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x628DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5254, symBinAddr: 0x15310, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x628F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x529C, symBinAddr: 0x15358, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62905, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x52DC, symBinAddr: 0x15398, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x62919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x52EC, symBinAddr: 0x153A8, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x6292D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x533C, symBinAddr: 0x153F8, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x53E8, symBinAddr: 0x154A4, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62955, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x54FC, symBinAddr: 0x155B8, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x62969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5528, symBinAddr: 0x155E4, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x6297D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x55C4, symBinAddr: 0x15680, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x62991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x560C, symBinAddr: 0x156C8, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x629A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x5668, symBinAddr: 0x15724, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x629B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x5678, symBinAddr: 0x15734, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x629CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x56D0, symBinAddr: 0x1578C, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x629E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x5794, symBinAddr: 0x15850, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x629F5, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x58D8, symBinAddr: 0x15994, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62A09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x590C, symBinAddr: 0x159C8, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62A1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x59C0, symBinAddr: 0x15A7C, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62A31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5A08, symBinAddr: 0x15AC4, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x5A6C, symBinAddr: 0x15B28, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5A7C, symBinAddr: 0x15B38, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x5A80, symBinAddr: 0x15B3C, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5AC4, symBinAddr: 0x15B80, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62A95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5AC8, symBinAddr: 0x15B84, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62AA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5B0C, symBinAddr: 0x15BC8, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62ABD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5B10, symBinAddr: 0x15BCC, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62AD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x6A6C, symBinAddr: 0x16B28, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x62AE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x6AB0, symBinAddr: 0x16B6C, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x62AF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6AF4, symBinAddr: 0x16BB0, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x62B0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7338, symBinAddr: 0x173F4, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x62B21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x75E4, symBinAddr: 0x176A0, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x62B35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8110, symBinAddr: 0x181CC, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x62B49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8154, symBinAddr: 0x18210, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x62B5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8470, symBinAddr: 0x1852C, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x62B71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x84B4, symBinAddr: 0x18570, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x62B85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x84F8, symBinAddr: 0x185B4, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x62B99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x85A0, symBinAddr: 0x1865C, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x62BAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x85E4, symBinAddr: 0x186A0, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x62BC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8674, symBinAddr: 0x18730, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x62BD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8730, symBinAddr: 0x187EC, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x62BE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8734, symBinAddr: 0x187F0, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x62BFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8744, symBinAddr: 0x18800, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x62C11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x87D4, symBinAddr: 0x18890, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x62C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8890, symBinAddr: 0x1894C, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x62C39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8894, symBinAddr: 0x18950, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x62C4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x88A4, symBinAddr: 0x18960, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x62C61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8934, symBinAddr: 0x189F0, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x62C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x89F0, symBinAddr: 0x18AAC, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x62C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x89F8, symBinAddr: 0x18AB4, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x62C9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x89FC, symBinAddr: 0x18AB8, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x62CB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A08, symBinAddr: 0x18AC4, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x62CC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8A18, symBinAddr: 0x18AD4, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x62CD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8AA8, symBinAddr: 0x18B64, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x62CED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8B64, symBinAddr: 0x18C20, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x62D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8B68, symBinAddr: 0x18C24, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x62D15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8B80, symBinAddr: 0x18C3C, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x62D29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8B84, symBinAddr: 0x18C40, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x62D3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8B94, symBinAddr: 0x18C50, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x62D51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8BCC, symBinAddr: 0x18C88, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x62D65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8C40, symBinAddr: 0x18CFC, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x62D79, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8D04, symBinAddr: 0x18DC0, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x62D8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x8D28, symBinAddr: 0x18DE4, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x62DA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x8D9C, symBinAddr: 0x18E58, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x62DB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x8DE4, symBinAddr: 0x18EA0, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x62DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x8E38, symBinAddr: 0x18EF4, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x62DDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x8E48, symBinAddr: 0x18F04, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x62DF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x8E80, symBinAddr: 0x18F3C, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x62E05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x8EE4, symBinAddr: 0x18FA0, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x62E19, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8F90, symBinAddr: 0x1904C, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x62E2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x8FA4, symBinAddr: 0x19060, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x62E41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x9008, symBinAddr: 0x190C4, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x62E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9050, symBinAddr: 0x1910C, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x62E69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x90A0, symBinAddr: 0x1915C, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x62E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x90B0, symBinAddr: 0x1916C, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x62E91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x90E8, symBinAddr: 0x191A4, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x62EA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9154, symBinAddr: 0x19210, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x62EB9, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9208, symBinAddr: 0x192C4, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x62ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x922C, symBinAddr: 0x192E8, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x62EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9298, symBinAddr: 0x19354, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x62EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x92E0, symBinAddr: 0x1939C, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x62F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9330, symBinAddr: 0x193EC, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x62F1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9340, symBinAddr: 0x193FC, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x62F31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9344, symBinAddr: 0x19400, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x62F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9388, symBinAddr: 0x19444, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x62F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x938C, symBinAddr: 0x19448, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x62F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x93D0, symBinAddr: 0x1948C, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x62F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x93D4, symBinAddr: 0x19490, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x62F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9418, symBinAddr: 0x194D4, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x62FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x941C, symBinAddr: 0x194D8, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x62FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9460, symBinAddr: 0x1951C, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x62FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9464, symBinAddr: 0x19520, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x62FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x94A8, symBinAddr: 0x19564, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x62FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x94AC, symBinAddr: 0x19568, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x6300D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94F0, symBinAddr: 0x195AC, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x63021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94F4, symBinAddr: 0x195B0, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9538, symBinAddr: 0x195F4, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x63049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x953C, symBinAddr: 0x195F8, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x6305D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9580, symBinAddr: 0x1963C, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x63071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9584, symBinAddr: 0x19640, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x63085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95C8, symBinAddr: 0x19684, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x63099, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95CC, symBinAddr: 0x19688, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x630AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9610, symBinAddr: 0x196CC, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x630C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9614, symBinAddr: 0x196D0, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x630D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9658, symBinAddr: 0x19714, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x630E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x965C, symBinAddr: 0x19718, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x630FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96A0, symBinAddr: 0x1975C, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x63111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96A4, symBinAddr: 0x19760, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x96E8, symBinAddr: 0x197A4, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x63139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x96EC, symBinAddr: 0x197A8, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x6314D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9730, symBinAddr: 0x197EC, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x63161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9734, symBinAddr: 0x197F0, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9778, symBinAddr: 0x19834, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x63189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x97BC, symBinAddr: 0x19878, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x6319D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9800, symBinAddr: 0x198BC, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x631B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9844, symBinAddr: 0x19900, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x631C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x98D4, symBinAddr: 0x19990, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x631D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9990, symBinAddr: 0x19A4C, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x631ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9994, symBinAddr: 0x19A50, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x63201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9AF8, symBinAddr: 0x19BB4, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63215, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9AFC, symBinAddr: 0x19BB8, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x63229, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9B0C, symBinAddr: 0x19BC8, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x6323D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9B9C, symBinAddr: 0x19C58, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x63251, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9C58, symBinAddr: 0x19D14, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63265, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9C5C, symBinAddr: 0x19D18, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x63279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9C6C, symBinAddr: 0x19D28, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x6328D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9C70, symBinAddr: 0x19D2C, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x632A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9CB4, symBinAddr: 0x19D70, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x632B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9CB8, symBinAddr: 0x19D74, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x632C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9CFC, symBinAddr: 0x19DB8, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x632DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9D00, symBinAddr: 0x19DBC, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x632F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D44, symBinAddr: 0x19E00, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63305, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D48, symBinAddr: 0x19E04, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x63319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D8C, symBinAddr: 0x19E48, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x6332D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x19E4C, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x63341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9DD4, symBinAddr: 0x19E90, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63355, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9DD8, symBinAddr: 0x19E94, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x63369, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E1C, symBinAddr: 0x19ED8, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x6337D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9E20, symBinAddr: 0x19EDC, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x63391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E64, symBinAddr: 0x19F20, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x633A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E68, symBinAddr: 0x19F24, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x633B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EAC, symBinAddr: 0x19F68, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x633CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9EB0, symBinAddr: 0x19F6C, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x6341D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0x101D8, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x63439, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0x10200, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x63482, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1534, symBinAddr: 0x11634, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63524, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15B4, symBinAddr: 0x116B4, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15DC, symBinAddr: 0x116DC, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0x117E8, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x6357E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1710, symBinAddr: 0x11810, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x635A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x11900, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x635BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1828, symBinAddr: 0x11928, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x635DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x190C, symBinAddr: 0x11A0C, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1934, symBinAddr: 0x11A34, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x6361C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A70, symBinAddr: 0x11B70, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x63638, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A98, symBinAddr: 0x11B98, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x63681, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1BF8, symBinAddr: 0x11CF8, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63723, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C7C, symBinAddr: 0x11D7C, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x6373F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1CA4, symBinAddr: 0x11DA4, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1D58, symBinAddr: 0x11E58, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x6377D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1D80, symBinAddr: 0x11E80, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x6379F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E8C, symBinAddr: 0x11F8C, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x637BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1EB4, symBinAddr: 0x11FB4, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x637DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x202C, symBinAddr: 0x1212C, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x637F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2054, symBinAddr: 0x12154, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x639A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A088, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63A22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A088, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63A7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x1A10C, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63A99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x1A148, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x1A19C, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x63AF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x1A1AC, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x63B21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x128, symBinAddr: 0x1A1B0, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x63B3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x13C, symBinAddr: 0x1A1C4, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x63B79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x150, symBinAddr: 0x1A1D8, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x63BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x1A1E8, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x63BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x1A1EC, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x63BF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x1A218, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x63C2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x1A24C, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x63C5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x1A25C, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x63C88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x1A260, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x63CA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x1A268, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x63CE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x1A270, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x63D0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x1A280, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x63D39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x1A284, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x63D57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x1A28C, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x63D91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x1A294, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x63DBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x1A2A4, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x63DEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x1A2A8, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x63E08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x1A2D4, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x63E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x1A308, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x63E75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1A318, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x63EA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x1A31C, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x63EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x1A348, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x63EFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x1A37C, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x63F2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x1A38C, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x63F56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x1A390, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x63F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x1A39C, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x63FB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x1A3A8, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x63FE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1A3B8, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x6400B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x1A3BC, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x64029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x1A3C8, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x64067, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x1A3D4, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x64095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x1A3E4, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x640C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x1A3E8, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x640D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x1A418, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x640E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x1A458, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x640FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x1A4FC, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x64111, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x1A600, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x1A62C, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x64139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x1A6C8, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x6414D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x1A710, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x1A770, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64343, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1A780, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x6436E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x1AD24, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x6438A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x1AF94, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x643C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x1AA2C, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x643ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x1AF6C, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x64409, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x1AFEC, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64435, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x1B044, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64465, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x1B148, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x64479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x1B1D8, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x6448D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x1B294, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x644A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x1B298, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x644B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x1B2A8, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x644C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x1B338, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x644DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x1B3F4, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x644F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x1B3FC, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64505, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x1B400, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x64519, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x1B408, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x6452D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x1B418, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64541, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x1B41C, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x1B460, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x64569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x1B464, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x646C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1B4B0, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x646F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1B5C4, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64721, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC9printLogs33_05B95674BA567498C742095BB49A0405LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x1B99C, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x1B5E0, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x648A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x1B600, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x648FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x1B68C, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64923, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x1B690, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x6494A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x1B694, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64971, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x1B708, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x649C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1B70C, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64A1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x1B79C, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64A5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x1B800, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64AB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x1B890, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x64B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x1B920, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x64B38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x1B994, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x64B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x1B998, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x64BCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x1BA48, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x64CB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1C114, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x64D0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1C188, symSize: 0x2A4 } - - { offsetInCU: 0x7C0, offset: 0x64E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF7C, symBinAddr: 0x1C42C, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x64EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFE4, symBinAddr: 0x1C494, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x64EF5, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1048, symBinAddr: 0x1C4F8, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x64F09, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1058, symBinAddr: 0x1C508, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x64F1D, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10EC, symBinAddr: 0x1C518, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x64F31, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1134, symBinAddr: 0x1C560, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x64F45, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1148, symBinAddr: 0x1C574, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x64F59, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x118C, symBinAddr: 0x1C5B8, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x64F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11CC, symBinAddr: 0x1C5F8, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x64F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1390, symBinAddr: 0x1C7BC, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x64F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13C0, symBinAddr: 0x1C7EC, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x64FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x157C, symBinAddr: 0x1C9A8, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x65250, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x29C8, symBinAddr: 0x871C0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x6526A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x29D0, symBinAddr: 0x871C8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65278, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1C9E8, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x652B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1CA1C, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x652EA, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1CA5C, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65315, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1CA90, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1CAD0, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x65390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1CB00, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x653B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1CB04, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x653D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1CB28, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x65407, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1CB3C, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x65498, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CBAC, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x654B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1CBAC, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x65502, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1CC08, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x6557C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1CC74, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x65606, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1CDAC, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1CE08, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x6564E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1CE68, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x6567D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1CEA4, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x656F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1CFDC, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x6570F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1D028, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x65738, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1D078, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x65767, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1D0B4, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x65792, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1D0BC, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x657AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1D0EC, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x657D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1D128, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x6582D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1D1C0, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x6584A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x818, symBinAddr: 0x1D1F0, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65873, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x85C, symBinAddr: 0x1D234, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x658A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1D270, symSize: 0x68 } - - { offsetInCU: 0x710, offset: 0x65911, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1D2D8, symSize: 0x4 } - - { offsetInCU: 0x779, offset: 0x6597A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x904, symBinAddr: 0x1D2DC, symSize: 0x128 } - - { offsetInCU: 0x853, offset: 0x65A54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xC50, symBinAddr: 0x1D628, symSize: 0x70 } - - { offsetInCU: 0x87D, offset: 0x65A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xCC0, symBinAddr: 0x1D698, symSize: 0x30 } - - { offsetInCU: 0x8A2, offset: 0x65AA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xCF0, symBinAddr: 0x1D6C8, symSize: 0x198 } - - { offsetInCU: 0x957, offset: 0x65B58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xE88, symBinAddr: 0x1D860, symSize: 0x14 } - - { offsetInCU: 0x9A4, offset: 0x65BA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0xE9C, symBinAddr: 0x1D874, symSize: 0x64 } - - { offsetInCU: 0xA40, offset: 0x65C41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0xF30, symBinAddr: 0x1D908, symSize: 0x6C } - - { offsetInCU: 0xB74, offset: 0x65D75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x17D4, symBinAddr: 0x1E1AC, symSize: 0x258 } - - { offsetInCU: 0xC05, offset: 0x65E06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1A90, symBinAddr: 0x1E468, symSize: 0x1A0 } - - { offsetInCU: 0xCED, offset: 0x65EEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1CC78, symSize: 0x88 } - - { offsetInCU: 0xD23, offset: 0x65F24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1CD00, symSize: 0xAC } - - { offsetInCU: 0xD63, offset: 0x65F64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1CDF8, symSize: 0x10 } - - { offsetInCU: 0xD77, offset: 0x65F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1CE58, symSize: 0x10 } - - { offsetInCU: 0xD8B, offset: 0x65F8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1CEA8, symSize: 0x88 } - - { offsetInCU: 0xDC1, offset: 0x65FC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1CF30, symSize: 0xAC } - - { offsetInCU: 0xE01, offset: 0x66002, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1D164, symSize: 0x5C } - - { offsetInCU: 0xEA2, offset: 0x660A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xA2C, symBinAddr: 0x1D404, symSize: 0x224 } - - { offsetInCU: 0xF16, offset: 0x66117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1648, symBinAddr: 0x1E020, symSize: 0x13C } - - { offsetInCU: 0xFE0, offset: 0x661E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0xF00, symBinAddr: 0x1D8D8, symSize: 0x30 } - - { offsetInCU: 0x10CF, offset: 0x662D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x17B0, symBinAddr: 0x1E188, symSize: 0x24 } - - { offsetInCU: 0x111F, offset: 0x66320, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0xF9C, symBinAddr: 0x1D974, symSize: 0x22C } - - { offsetInCU: 0x1311, offset: 0x66512, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x11C8, symBinAddr: 0x1DBA0, symSize: 0xC } - - { offsetInCU: 0x1368, offset: 0x66569, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DBAC, symSize: 0x4 } - - { offsetInCU: 0x1384, offset: 0x66585, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DBAC, symSize: 0x4 } - - { offsetInCU: 0x139D, offset: 0x6659E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11D4, symBinAddr: 0x1DBAC, symSize: 0x4 } - - { offsetInCU: 0x13B6, offset: 0x665B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11D8, symBinAddr: 0x1DBB0, symSize: 0x4 } - - { offsetInCU: 0x13CE, offset: 0x665CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11DC, symBinAddr: 0x1DBB4, symSize: 0xB8 } - - { offsetInCU: 0x146E, offset: 0x6666F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12D4, symBinAddr: 0x1DCAC, symSize: 0x4 } - - { offsetInCU: 0x1486, offset: 0x66687, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2478, symBinAddr: 0x1EE40, symSize: 0x7C } - - { offsetInCU: 0x1563, offset: 0x66764, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x1294, symBinAddr: 0x1DC6C, symSize: 0x40 } - - { offsetInCU: 0x1598, offset: 0x66799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg', symObjAddr: 0x12D8, symBinAddr: 0x1DCB0, symSize: 0x2C } - - { offsetInCU: 0x15E3, offset: 0x667E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1304, symBinAddr: 0x1DCDC, symSize: 0x2C } - - { offsetInCU: 0x162E, offset: 0x6682F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1330, symBinAddr: 0x1DD08, symSize: 0x2C } - - { offsetInCU: 0x16BB, offset: 0x668BC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x135C, symBinAddr: 0x1DD34, symSize: 0x198 } - - { offsetInCU: 0x1B6A, offset: 0x66D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x14F4, symBinAddr: 0x1DECC, symSize: 0x13C } - - { offsetInCU: 0x1C67, offset: 0x66E68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1630, symBinAddr: 0x1E008, symSize: 0x18 } - - { offsetInCU: 0x1C7B, offset: 0x66E7C, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1784, symBinAddr: 0x1E15C, symSize: 0x2C } - - { offsetInCU: 0x1C93, offset: 0x66E94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1A2C, symBinAddr: 0x1E404, symSize: 0x44 } - - { offsetInCU: 0x1CA7, offset: 0x66EA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1A70, symBinAddr: 0x1E448, symSize: 0x20 } - - { offsetInCU: 0x1CBB, offset: 0x66EBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1C30, symBinAddr: 0x1E608, symSize: 0x20 } - - { offsetInCU: 0x1CCF, offset: 0x66ED0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1C50, symBinAddr: 0x1E628, symSize: 0x4 } - - { offsetInCU: 0x1CE3, offset: 0x66EE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1C54, symBinAddr: 0x1E62C, symSize: 0x44 } - - { offsetInCU: 0x1CF7, offset: 0x66EF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1C98, symBinAddr: 0x1E670, symSize: 0x4 } - - { offsetInCU: 0x1D0B, offset: 0x66F0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1C9C, symBinAddr: 0x1E674, symSize: 0x44 } - - { offsetInCU: 0x1D1F, offset: 0x66F20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwCP', symObjAddr: 0x1DBC, symBinAddr: 0x1E794, symSize: 0x5C } - - { offsetInCU: 0x1D33, offset: 0x66F34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1E18, symBinAddr: 0x1E7F0, symSize: 0x18 } - - { offsetInCU: 0x1D47, offset: 0x66F48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1E30, symBinAddr: 0x1E808, symSize: 0x14 } - - { offsetInCU: 0x1D5B, offset: 0x66F5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1E44, symBinAddr: 0x1E81C, symSize: 0x18 } - - { offsetInCU: 0x1D6F, offset: 0x66F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwcp', symObjAddr: 0x1E5C, symBinAddr: 0x1E834, symSize: 0x5C } - - { offsetInCU: 0x1D83, offset: 0x66F84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x1EB8, symBinAddr: 0x1E890, symSize: 0x6C } - - { offsetInCU: 0x1D97, offset: 0x66F98, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1F24, symBinAddr: 0x1E8FC, symSize: 0x14 } - - { offsetInCU: 0x1DAB, offset: 0x66FAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x1F38, symBinAddr: 0x1E910, symSize: 0x50 } - - { offsetInCU: 0x1DBF, offset: 0x66FC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x1F88, symBinAddr: 0x1E960, symSize: 0x48 } - - { offsetInCU: 0x1DD3, offset: 0x66FD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x1FD0, symBinAddr: 0x1E9A8, symSize: 0x48 } - - { offsetInCU: 0x1DE7, offset: 0x66FE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x2018, symBinAddr: 0x1E9F0, symSize: 0x8 } - - { offsetInCU: 0x1DFB, offset: 0x66FFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2020, symBinAddr: 0x1E9F8, symSize: 0x4 } - - { offsetInCU: 0x1E0F, offset: 0x67010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2024, symBinAddr: 0x1E9FC, symSize: 0x8 } - - { offsetInCU: 0x1E23, offset: 0x67024, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x202C, symBinAddr: 0x1EA04, symSize: 0x10 } - - { offsetInCU: 0x1E37, offset: 0x67038, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2114, symBinAddr: 0x1EADC, symSize: 0x90 } - - { offsetInCU: 0x1E4B, offset: 0x6704C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x21A4, symBinAddr: 0x1EB6C, symSize: 0xBC } - - { offsetInCU: 0x1E5F, offset: 0x67060, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2260, symBinAddr: 0x1EC28, symSize: 0x4 } - - { offsetInCU: 0x1E73, offset: 0x67074, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2264, symBinAddr: 0x1EC2C, symSize: 0x10 } - - { offsetInCU: 0x1E87, offset: 0x67088, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x2274, symBinAddr: 0x1EC3C, symSize: 0x90 } - - { offsetInCU: 0x1E9B, offset: 0x6709C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2304, symBinAddr: 0x1ECCC, symSize: 0xBC } - - { offsetInCU: 0x1EAF, offset: 0x670B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x23C0, symBinAddr: 0x1ED88, symSize: 0x8 } - - { offsetInCU: 0x1EC3, offset: 0x670C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x23C8, symBinAddr: 0x1ED90, symSize: 0x4 } - - { offsetInCU: 0x1ED7, offset: 0x670D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x23CC, symBinAddr: 0x1ED94, symSize: 0x8 } - - { offsetInCU: 0x1EEB, offset: 0x670EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x23D4, symBinAddr: 0x1ED9C, symSize: 0x10 } - - { offsetInCU: 0x1F0A, offset: 0x6710B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x240C, symBinAddr: 0x1EDD4, symSize: 0x24 } - - { offsetInCU: 0x1F33, offset: 0x67134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x2518, symBinAddr: 0x1EEE0, symSize: 0x8 } - - { offsetInCU: 0x1F47, offset: 0x67148, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2520, symBinAddr: 0x1EEE8, symSize: 0x10 } - - { offsetInCU: 0x1F5B, offset: 0x6715C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2530, symBinAddr: 0x1EEF8, symSize: 0x8 } - - { offsetInCU: 0x1F6F, offset: 0x67170, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x25BC, symBinAddr: 0x1EF00, symSize: 0x3C } - - { offsetInCU: 0x1FF1, offset: 0x671F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1C9D8, symSize: 0x4 } - - { offsetInCU: 0x200D, offset: 0x6720E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1C9DC, symSize: 0x4 } - - { offsetInCU: 0x2029, offset: 0x6722A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1C9E0, symSize: 0x4 } - - { offsetInCU: 0x2045, offset: 0x67246, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1C9E4, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x67639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1F004, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x6764D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F040, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F0C4, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x6767C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1F1EC, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x676A5, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1F21C, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x676B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1F238, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x676CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1F2D4, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x676E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1F338, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x676F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1F394, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x67709, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1F3A4, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x6771D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1F3D4, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1F3FC, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67745, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1F458, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x67759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1F4DC, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x6776D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1F540, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x67781, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1F59C, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x67795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1F5FC, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x677B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1F60C, symSize: 0x11C } - - { offsetInCU: 0x20B, offset: 0x67801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA90, symBinAddr: 0x1FA94, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA98, symBinAddr: 0x1FA9C, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x67938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAD8, symBinAddr: 0x1FADC, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x679B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB3C, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x679D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB38, symBinAddr: 0x1FB3C, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x679F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB3C, symBinAddr: 0x1FB40, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67A29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB64, symBinAddr: 0x1FB68, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB70, symBinAddr: 0x1FB74, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67A61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF48, symBinAddr: 0x1FF4C, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67AA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xFB4, symBinAddr: 0x1FFB8, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67AD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBCC, symBinAddr: 0x1FBD0, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67B10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC18, symBinAddr: 0x1FC1C, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC0, symBinAddr: 0x1FFC4, symSize: 0x154 } - - { offsetInCU: 0x58D, offset: 0x67B83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x724, symBinAddr: 0x1F728, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x67BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC58, symBinAddr: 0x1FC5C, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x67C38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC70, symBinAddr: 0x1FC74, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x67CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC9C, symBinAddr: 0x1FCA0, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x67CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1FCA8, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x67D0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCC8, symBinAddr: 0x1FCCC, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x67D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCD4, symBinAddr: 0x1FCD8, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x67D46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1264, symBinAddr: 0x201E4, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x67D8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x744, symBinAddr: 0x1F748, symSize: 0x1C8 } - - { offsetInCU: 0x7EB, offset: 0x67DE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD30, symBinAddr: 0x1FD34, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x67E18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD7C, symBinAddr: 0x1FD80, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x67E3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13A0, symBinAddr: 0x20320, symSize: 0x264 } - - { offsetInCU: 0x895, offset: 0x67E8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x90C, symBinAddr: 0x1F910, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x67EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE48, symBinAddr: 0x1FE4C, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x67EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE50, symBinAddr: 0x1FE54, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x67F12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE74, symBinAddr: 0x1FE78, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x67F2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x20C50, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x67F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x92C, symBinAddr: 0x1F930, symSize: 0x164 } - - { offsetInCU: 0x9D3, offset: 0x67FC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xED0, symBinAddr: 0x1FED4, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x68000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF10, symBinAddr: 0x1FF14, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x68023, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E94, symBinAddr: 0x20DA8, symSize: 0x2B8 } - - { offsetInCU: 0xA80, offset: 0x68076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1178, symBinAddr: 0x20118, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x6808A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x11DC, symBinAddr: 0x2015C, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x6809E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x201A0, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x680B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x20584, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x680C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x205C8, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x680DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x206B8, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x680EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x20704, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x68102, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x2070C, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x68116, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x20710, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x6812A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x20718, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x6813E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x20728, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x68152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x20778, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x68166, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x20804, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x6817A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x2080C, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x6818E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x20810, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x681A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x20814, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x681B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x20824, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x681CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x2085C, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x681DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x208C0, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x681F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x2096C, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x68206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x209D0, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x6821A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x20A2C, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x6822E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x20A90, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x68242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x20AA0, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x68256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x20AA4, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x6826A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x20AE8, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x6827E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x20AEC, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x68292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x20B30, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x682A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x20B34, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x682BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x20B78, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x682CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x20B7C, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x682E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x20BC0, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x682F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x20BC4, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x6830A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x20C08, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x6831E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x20C0C, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x68332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x21060, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x68346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x211F8, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x6835A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x211FC, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x6836E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x2120C, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x68382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x21210, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x68396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x21254, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x683AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x21258, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x683BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x2129C, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x683D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x212A0, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x68427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAFC, symBinAddr: 0x1FB00, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x684C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB7C, symBinAddr: 0x1FB80, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x684E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBA4, symBinAddr: 0x1FBA8, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x68507, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCE0, symBinAddr: 0x1FCE4, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x68523, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD08, symBinAddr: 0x1FD0C, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x68545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE80, symBinAddr: 0x1FE84, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x68561, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEA8, symBinAddr: 0x1FEAC, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x686AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x21310, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x686D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x21310, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68705, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x21858, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x6879B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x21880, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x68895, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x218C4, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x688B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x218C4, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x688F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x218DC, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x689D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x21920, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68A57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x21328, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68AD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x216C4, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68AE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x216D4, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68B07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x216E4, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68B25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x21710, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x68B64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x21744, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x68B82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x21754, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x68BAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x21758, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x68BCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x21760, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x68C05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x21768, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x68C33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x21778, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x68C66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x584, symBinAddr: 0x2177C, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x68C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x598, symBinAddr: 0x21790, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x68CAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x217A4, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x68CC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x217D0, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x68CF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x217FC, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x68D11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x21804, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x68D4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x2180C, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x68D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x2181C, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x68D96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x21820, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x68DB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x21828, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x68DF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x21830, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x68E1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x21840, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x68E49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x21844, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x68E77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x21854, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x68EB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x21988, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x68ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x2198C, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x68EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x219D0, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x68EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x21A00, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x68F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x21A7C, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x68F1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x21C00, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x68F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x21F94, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x68F61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x21FC4, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x68F75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x21FF0, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x68F89, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x22024, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x68F9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x22068, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x68FB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x22214, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x68FC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x2225C, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x68FD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x222D4, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x68FED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x222E4, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x69001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x22318, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x69015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x22320, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x69029, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x22354, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x6903D, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x223A8, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x69051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x223BC, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x69065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x223F8, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x69079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x22440, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x6908D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x22480, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x690A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x22490, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x690B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x224C8, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x690C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x22534, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x690DD, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x22610, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x690F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x2262C, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x69105, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x226A0, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x69119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x226FC, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x6912D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x22760, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x69141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x22770, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x69155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x22798, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x69169, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x227D4, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x6917D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x22840, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x69191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x22884, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x691A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x228CC, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x691B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x2290C, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x691CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x2291C, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x691E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x22970, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x691F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x229B4, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x69209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x229C4, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x6921D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x22A54, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x69231, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x22B10, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x69245, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x22B18, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x69259, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x22B1C, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x6926D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x22B28, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x692C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x21948, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x6950D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x22B48, symSize: 0x1A0 } - - { offsetInCU: 0x34F, offset: 0x697EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x1A0, symBinAddr: 0x22CE8, symSize: 0x628 } - - { offsetInCU: 0x6AA, offset: 0x69B49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2D3C, symBinAddr: 0x25884, symSize: 0x6F8 } - - { offsetInCU: 0xBCE, offset: 0x6A06D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x850, symBinAddr: 0x23398, symSize: 0x2244 } - - { offsetInCU: 0x1E29, offset: 0x6B2C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB7FC, symBinAddr: 0x2E344, symSize: 0x3CB4 } - - { offsetInCU: 0x39B2, offset: 0x6CE51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xF4B0, symBinAddr: 0x31FF8, symSize: 0x634 } - - { offsetInCU: 0x3F86, offset: 0x6D425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tF', symObjAddr: 0xFB0C, symBinAddr: 0x32654, symSize: 0x40 } - - { offsetInCU: 0x3FAE, offset: 0x6D44D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x1490C, symBinAddr: 0x37454, symSize: 0x3E0 } - - { offsetInCU: 0x413D, offset: 0x6D5DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x1123C, symBinAddr: 0x33D84, symSize: 0x276C } - - { offsetInCU: 0x5871, offset: 0x6ED10, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2A94, symBinAddr: 0x255DC, symSize: 0x2A8 } - - { offsetInCU: 0x5D25, offset: 0x6F1C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x3434, symBinAddr: 0x25F7C, symSize: 0x5D8 } - - { offsetInCU: 0x6058, offset: 0x6F4F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3A0C, symBinAddr: 0x26554, symSize: 0x395C } - - { offsetInCU: 0x7A52, offset: 0x70EF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7368, symBinAddr: 0x29EB0, symSize: 0x278 } - - { offsetInCU: 0x7B69, offset: 0x71008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x7A74, symBinAddr: 0x2A5BC, symSize: 0x17AC } - - { offsetInCU: 0x84C3, offset: 0x71962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x75E0, symBinAddr: 0x2A128, symSize: 0x118 } - - { offsetInCU: 0x852C, offset: 0x719CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x7864, symBinAddr: 0x2A3AC, symSize: 0x1E8 } - - { offsetInCU: 0x85F9, offset: 0x71A98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x7A4C, symBinAddr: 0x2A594, symSize: 0x28 } - - { offsetInCU: 0x8836, offset: 0x71CD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x9274, symBinAddr: 0x2BDBC, symSize: 0x754 } - - { offsetInCU: 0x8C47, offset: 0x720E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA97C, symBinAddr: 0x2D4C4, symSize: 0xE80 } - - { offsetInCU: 0x950F, offset: 0x729AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x99C8, symBinAddr: 0x2C510, symSize: 0xBAC } - - { offsetInCU: 0x9F70, offset: 0x7340F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xFF78, symBinAddr: 0x32AC0, symSize: 0x12C4 } - - { offsetInCU: 0xAFC3, offset: 0x74462, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x185D0, symBinAddr: 0x3B048, symSize: 0xBD0 } - - { offsetInCU: 0xBCEA, offset: 0x75189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x139A8, symBinAddr: 0x364F0, symSize: 0xF64 } - - { offsetInCU: 0xC618, offset: 0x75AB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x14CEC, symBinAddr: 0x37834, symSize: 0x208 } - - { offsetInCU: 0xC6AE, offset: 0x75B4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14EF4, symBinAddr: 0x37A3C, symSize: 0x290 } - - { offsetInCU: 0xC79F, offset: 0x75C3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x15194, symBinAddr: 0x37CDC, symSize: 0xA0 } - - { offsetInCU: 0xC834, offset: 0x75CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x15288, symBinAddr: 0x37DD0, symSize: 0x1024 } - - { offsetInCU: 0xD229, offset: 0x766C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x162AC, symBinAddr: 0x38DF4, symSize: 0x4C } - - { offsetInCU: 0xD245, offset: 0x766E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x162F8, symBinAddr: 0x38E40, symSize: 0x150 } - - { offsetInCU: 0xD354, offset: 0x767F3, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x16448, symBinAddr: 0x38F90, symSize: 0x54 } - - { offsetInCU: 0xD3CD, offset: 0x7686C, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x164F0, symBinAddr: 0x38FE4, symSize: 0x4C } - - { offsetInCU: 0xD451, offset: 0x768F0, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x1653C, symBinAddr: 0x39030, symSize: 0x50 } - - { offsetInCU: 0xD4CA, offset: 0x76969, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x1658C, symBinAddr: 0x39080, symSize: 0x64 } - - { offsetInCU: 0xD50C, offset: 0x769AB, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x165F0, symBinAddr: 0x390E4, symSize: 0x30 } - - { offsetInCU: 0xD539, offset: 0x769D8, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16620, symBinAddr: 0x39114, symSize: 0x80 } - - { offsetInCU: 0xD5D7, offset: 0x76A76, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x166A0, symBinAddr: 0x39194, symSize: 0x6C } - - { offsetInCU: 0xD671, offset: 0x76B10, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1670C, symBinAddr: 0x39200, symSize: 0x4C } - - { offsetInCU: 0xD6F5, offset: 0x76B94, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x16784, symBinAddr: 0x39278, symSize: 0xE0 } - - { offsetInCU: 0xD73F, offset: 0x76BDE, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x16864, symBinAddr: 0x39358, symSize: 0xC4 } - - { offsetInCU: 0xD76C, offset: 0x76C0B, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16928, symBinAddr: 0x3941C, symSize: 0x174 } - - { offsetInCU: 0xD820, offset: 0x76CBF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x16A9C, symBinAddr: 0x39590, symSize: 0x104 } - - { offsetInCU: 0xD9B3, offset: 0x76E52, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x16BA0, symBinAddr: 0x39694, symSize: 0x128 } - - { offsetInCU: 0xDB56, offset: 0x76FF5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x16CC8, symBinAddr: 0x397BC, symSize: 0x16C } - - { offsetInCU: 0xDD2B, offset: 0x771CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x16E34, symBinAddr: 0x39928, symSize: 0x174 } - - { offsetInCU: 0xDEE6, offset: 0x77385, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16FA8, symBinAddr: 0x39A9C, symSize: 0xFC } - - { offsetInCU: 0xE089, offset: 0x77528, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x170A4, symBinAddr: 0x39B98, symSize: 0xFC } - - { offsetInCU: 0xE22C, offset: 0x776CB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x172A4, symBinAddr: 0x39D98, symSize: 0xFC } - - { offsetInCU: 0xE356, offset: 0x777F5, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x173A0, symBinAddr: 0x39E94, symSize: 0x40 } - - { offsetInCU: 0xE3A3, offset: 0x77842, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x17644, symBinAddr: 0x3A138, symSize: 0x138 } - - { offsetInCU: 0xE442, offset: 0x778E1, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1777C, symBinAddr: 0x3A270, symSize: 0xB4 } - - { offsetInCU: 0xE511, offset: 0x779B0, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x17A7C, symBinAddr: 0x3A530, symSize: 0x18C } - - { offsetInCU: 0xE622, offset: 0x77AC1, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17C08, symBinAddr: 0x3A6BC, symSize: 0xC0 } - - { offsetInCU: 0xE725, offset: 0x77BC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17EE4, symBinAddr: 0x3A95C, symSize: 0x1A0 } - - { offsetInCU: 0xE87A, offset: 0x77D19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x18084, symBinAddr: 0x3AAFC, symSize: 0x380 } - - { offsetInCU: 0xEBA6, offset: 0x78045, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x191A0, symBinAddr: 0x3BC18, symSize: 0x198 } - - { offsetInCU: 0xECC2, offset: 0x78161, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19338, symBinAddr: 0x3BDB0, symSize: 0xC0 } - - { offsetInCU: 0xEFF4, offset: 0x78493, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x193F8, symBinAddr: 0x3BE70, symSize: 0xD38 } - - { offsetInCU: 0x1026F, offset: 0x7970E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A130, symBinAddr: 0x3CBA8, symSize: 0x1C0 } - - { offsetInCU: 0x1041D, offset: 0x798BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A2F0, symBinAddr: 0x3CD68, symSize: 0x1A4 } - - { offsetInCU: 0x10510, offset: 0x799AF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A494, symBinAddr: 0x3CF0C, symSize: 0x84 } - - { offsetInCU: 0x1071D, offset: 0x79BBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1AFB8, symBinAddr: 0x3DA30, symSize: 0x8 } - - { offsetInCU: 0x10731, offset: 0x79BD0, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1B09C, symBinAddr: 0x3DB14, symSize: 0x10 } - - { offsetInCU: 0x10745, offset: 0x79BE4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1B0AC, symBinAddr: 0x3DB24, symSize: 0x14 } - - { offsetInCU: 0x10759, offset: 0x79BF8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1B0C0, symBinAddr: 0x3DB38, symSize: 0x50 } - - { offsetInCU: 0x1076D, offset: 0x79C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1B120, symBinAddr: 0x3DB88, symSize: 0x44 } - - { offsetInCU: 0x10781, offset: 0x79C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1B164, symBinAddr: 0x3DBCC, symSize: 0x30C } - - { offsetInCU: 0x10795, offset: 0x79C34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1B470, symBinAddr: 0x3DED8, symSize: 0x240 } - - { offsetInCU: 0x107A9, offset: 0x79C48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1B6B0, symBinAddr: 0x3E118, symSize: 0x70 } - - { offsetInCU: 0x107BD, offset: 0x79C5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1B720, symBinAddr: 0x3E188, symSize: 0x34 } - - { offsetInCU: 0x107D1, offset: 0x79C70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1B754, symBinAddr: 0x3E1BC, symSize: 0x174 } - - { offsetInCU: 0x107E5, offset: 0x79C84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1B8C8, symBinAddr: 0x3E330, symSize: 0xB4 } - - { offsetInCU: 0x1081A, offset: 0x79CB9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1C194, symBinAddr: 0x3E3E4, symSize: 0xC4 } - - { offsetInCU: 0x10890, offset: 0x79D2F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C258, symBinAddr: 0x3E4A8, symSize: 0x78 } - - { offsetInCU: 0x108BD, offset: 0x79D5C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1C2D0, symBinAddr: 0x3E520, symSize: 0x80 } - - { offsetInCU: 0x10933, offset: 0x79DD2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C350, symBinAddr: 0x3E5A0, symSize: 0x68 } - - { offsetInCU: 0x10A57, offset: 0x79EF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C3B8, symBinAddr: 0x3E608, symSize: 0x664 } - - { offsetInCU: 0x10EFB, offset: 0x7A39A, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1CA2C, symBinAddr: 0x3EC7C, symSize: 0x4C } - - { offsetInCU: 0x10F0F, offset: 0x7A3AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1CB20, symBinAddr: 0x3ECE8, symSize: 0x8 } - - { offsetInCU: 0x10F23, offset: 0x7A3C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1CB28, symBinAddr: 0x3ECF0, symSize: 0x44 } - - { offsetInCU: 0x10F37, offset: 0x7A3D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1CB6C, symBinAddr: 0x3ED34, symSize: 0x44 } - - { offsetInCU: 0x10F4B, offset: 0x7A3EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1CC18, symBinAddr: 0x3ED9C, symSize: 0x8 } - - { offsetInCU: 0x10F5F, offset: 0x7A3FE, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1CC30, symBinAddr: 0x3EDA4, symSize: 0x3C } - - { offsetInCU: 0x10F73, offset: 0x7A412, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1CC6C, symBinAddr: 0x3EDE0, symSize: 0x34 } - - { offsetInCU: 0x10F87, offset: 0x7A426, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1CD20, symBinAddr: 0x3EE94, symSize: 0x44 } - - { offsetInCU: 0x10FBC, offset: 0x7A45B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CE28, symBinAddr: 0x3EF9C, symSize: 0x48 } - - { offsetInCU: 0x10FDB, offset: 0x7A47A, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CE70, symBinAddr: 0x3EFE4, symSize: 0x64 } - - { offsetInCU: 0x1101E, offset: 0x7A4BD, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CED4, symBinAddr: 0x3F048, symSize: 0x80 } - - { offsetInCU: 0x110B3, offset: 0x7A552, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CF54, symBinAddr: 0x3F0C8, symSize: 0x120 } - - { offsetInCU: 0x1119B, offset: 0x7A63A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1D0BC, symBinAddr: 0x3F230, symSize: 0x48 } - - { offsetInCU: 0x111AF, offset: 0x7A64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1D104, symBinAddr: 0x3F278, symSize: 0x40 } - - { offsetInCU: 0x111C3, offset: 0x7A662, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1D218, symBinAddr: 0x3F38C, symSize: 0x48 } - - { offsetInCU: 0x111D7, offset: 0x7A676, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1D2E0, symBinAddr: 0x3F454, symSize: 0x18 } - - { offsetInCU: 0x111EB, offset: 0x7A68A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1D2F8, symBinAddr: 0x3F46C, symSize: 0x10 } - - { offsetInCU: 0x111FF, offset: 0x7A69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1D308, symBinAddr: 0x3F47C, symSize: 0x34 } - - { offsetInCU: 0x11213, offset: 0x7A6B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D378, symBinAddr: 0x3F4EC, symSize: 0x30 } - - { offsetInCU: 0x112C9, offset: 0x7A768, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x7C8, symBinAddr: 0x23310, symSize: 0x88 } - - { offsetInCU: 0x116A8, offset: 0x7AB47, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xA574, symBinAddr: 0x2D0BC, symSize: 0x408 } - - { offsetInCU: 0x11983, offset: 0x7AE22, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xFDEC, symBinAddr: 0x32934, symSize: 0x18C } - - { offsetInCU: 0x11BA1, offset: 0x7B040, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x15234, symBinAddr: 0x37D7C, symSize: 0x54 } - - { offsetInCU: 0x11D0E, offset: 0x7B1AD, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x17830, symBinAddr: 0x3A324, symSize: 0x110 } - - { offsetInCU: 0x11E4F, offset: 0x7B2EE, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x17980, symBinAddr: 0x3A434, symSize: 0xFC } - - { offsetInCU: 0x11F50, offset: 0x7B3EF, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17D28, symBinAddr: 0x3A7A0, symSize: 0x1BC } - - { offsetInCU: 0x1201E, offset: 0x7B4BD, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18404, symBinAddr: 0x3AE7C, symSize: 0x1CC } - - { offsetInCU: 0x122E1, offset: 0x7B780, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A714, symBinAddr: 0x3D18C, symSize: 0x1DC } - - { offsetInCU: 0x123CD, offset: 0x7B86C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A8F0, symBinAddr: 0x3D368, symSize: 0x11C } - - { offsetInCU: 0x12514, offset: 0x7B9B3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1AA0C, symBinAddr: 0x3D484, symSize: 0xFC } - - { offsetInCU: 0x1265B, offset: 0x7BAFA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1AB08, symBinAddr: 0x3D580, symSize: 0xE4 } - - { offsetInCU: 0x12796, offset: 0x7BC35, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1ABEC, symBinAddr: 0x3D664, symSize: 0x114 } - - { offsetInCU: 0x128D7, offset: 0x7BD76, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AD00, symBinAddr: 0x3D778, symSize: 0xEC } - - { offsetInCU: 0x12A1E, offset: 0x7BEBD, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1AED4, symBinAddr: 0x3D94C, symSize: 0xE4 } - - { offsetInCU: 0x12B7D, offset: 0x7C01C, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CD64, symBinAddr: 0x3EED8, symSize: 0xC4 } - - { offsetInCU: 0x12E23, offset: 0x7C2C2, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x76F8, symBinAddr: 0x2A240, symSize: 0x16C } - - { offsetInCU: 0x27, offset: 0x7C870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F554, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7C888, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3F554, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7C89C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3F584, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7C8B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3F670, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7C8C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3F8E8, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7C8D8, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3FD04, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7C8EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3FD0C, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7C900, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3FF54, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7C914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3FF9C, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7C928, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x40058, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7CC5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x40514, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7CD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x40718, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D191, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x41328, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D3B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x41868, symSize: 0x9B0 } - - { offsetInCU: 0xD3E, offset: 0x7D747, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x21E4, symBinAddr: 0x42244, symSize: 0x21A4 } - - { offsetInCU: 0x202F, offset: 0x7EA38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE918, symBinAddr: 0x4E978, symSize: 0x6F8 } - - { offsetInCU: 0x23FC, offset: 0x7EE05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4388, symBinAddr: 0x443E8, symSize: 0x1288 } - - { offsetInCU: 0x2F50, offset: 0x7F959, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x5610, symBinAddr: 0x45670, symSize: 0xBF4 } - - { offsetInCU: 0x377E, offset: 0x80187, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x6204, symBinAddr: 0x46264, symSize: 0x418 } - - { offsetInCU: 0x3895, offset: 0x8029E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6F14, symBinAddr: 0x46F74, symSize: 0x20C } - - { offsetInCU: 0x3B41, offset: 0x8054A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x7120, symBinAddr: 0x47180, symSize: 0x924 } - - { offsetInCU: 0x42D4, offset: 0x80CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7A44, symBinAddr: 0x47AA4, symSize: 0x2E8 } - - { offsetInCU: 0x440C, offset: 0x80E15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7D2C, symBinAddr: 0x47D8C, symSize: 0x658 } - - { offsetInCU: 0x47FD, offset: 0x81206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x8384, symBinAddr: 0x483E4, symSize: 0x688 } - - { offsetInCU: 0x4ABF, offset: 0x814C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8A0C, symBinAddr: 0x48A6C, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x81586, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8C3C, symBinAddr: 0x48C9C, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x81609, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x8E68, symBinAddr: 0x48EC8, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x81636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x8EE8, symBinAddr: 0x48F48, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD4AC, symBinAddr: 0x4D50C, symSize: 0x7CC } - - { offsetInCU: 0x4FB0, offset: 0x819B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xDC78, symBinAddr: 0x4DCD8, symSize: 0xA24 } - - { offsetInCU: 0x529F, offset: 0x81CA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE69C, symBinAddr: 0x4E6FC, symSize: 0x218 } - - { offsetInCU: 0x5374, offset: 0x81D7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xF010, symBinAddr: 0x4F070, symSize: 0x86C } - - { offsetInCU: 0x567F, offset: 0x82088, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF87C, symBinAddr: 0x4F8DC, symSize: 0xC18 } - - { offsetInCU: 0x596E, offset: 0x82377, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x10494, symBinAddr: 0x504F4, symSize: 0x278 } - - { offsetInCU: 0x5A43, offset: 0x8244C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x1070C, symBinAddr: 0x5076C, symSize: 0x214 } - - { offsetInCU: 0x5F39, offset: 0x82942, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x21B8, symBinAddr: 0x42218, symSize: 0x2C } - - { offsetInCU: 0x6237, offset: 0x82C40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x8F04, symBinAddr: 0x48F64, symSize: 0x20 } - - { offsetInCU: 0x6290, offset: 0x82C99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8F24, symBinAddr: 0x48F84, symSize: 0x8C } - - { offsetInCU: 0x6328, offset: 0x82D31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x8FB0, symBinAddr: 0x49010, symSize: 0x1298 } - - { offsetInCU: 0x6AA0, offset: 0x834A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xA248, symBinAddr: 0x4A2A8, symSize: 0x40 } - - { offsetInCU: 0x6AE4, offset: 0x834ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xA288, symBinAddr: 0x4A2E8, symSize: 0x58 } - - { offsetInCU: 0x6B0F, offset: 0x83518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xA2E0, symBinAddr: 0x4A340, symSize: 0x54 } - - { offsetInCU: 0x6B51, offset: 0x8355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA334, symBinAddr: 0x4A394, symSize: 0x64 } - - { offsetInCU: 0x6B84, offset: 0x8358D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA398, symBinAddr: 0x4A3F8, symSize: 0x4 } - - { offsetInCU: 0x6BAF, offset: 0x835B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA39C, symBinAddr: 0x4A3FC, symSize: 0x78 } - - { offsetInCU: 0x6BF1, offset: 0x835FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA414, symBinAddr: 0x4A474, symSize: 0x90 } - - { offsetInCU: 0x6C33, offset: 0x8363C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA4A4, symBinAddr: 0x4A504, symSize: 0x6C } - - { offsetInCU: 0x6C66, offset: 0x8366F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA510, symBinAddr: 0x4A570, symSize: 0x4 } - - { offsetInCU: 0x6C82, offset: 0x8368B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA514, symBinAddr: 0x4A574, symSize: 0x4 } - - { offsetInCU: 0x6CAD, offset: 0x836B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA518, symBinAddr: 0x4A578, symSize: 0x74 } - - { offsetInCU: 0x6CE0, offset: 0x836E9, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA58C, symBinAddr: 0x4A5EC, symSize: 0x4 } - - { offsetInCU: 0x6CFF, offset: 0x83708, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA590, symBinAddr: 0x4A5F0, symSize: 0x8 } - - { offsetInCU: 0x6D1B, offset: 0x83724, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA590, symBinAddr: 0x4A5F0, symSize: 0x8 } - - { offsetInCU: 0x6D2C, offset: 0x83735, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA598, symBinAddr: 0x4A5F8, symSize: 0xC8 } - - { offsetInCU: 0x6DC9, offset: 0x837D2, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA660, symBinAddr: 0x4A6C0, symSize: 0xCC } - - { offsetInCU: 0x6E75, offset: 0x8387E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA828, symBinAddr: 0x4A888, symSize: 0x1F4 } - - { offsetInCU: 0x6F01, offset: 0x8390A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xAA1C, symBinAddr: 0x4AA7C, symSize: 0x1C4 } - - { offsetInCU: 0x6FB9, offset: 0x839C2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xABE0, symBinAddr: 0x4AC40, symSize: 0x3A0 } - - { offsetInCU: 0x70D9, offset: 0x83AE2, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAF80, symBinAddr: 0x4AFE0, symSize: 0x398 } - - { offsetInCU: 0x71F0, offset: 0x83BF9, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB318, symBinAddr: 0x4B378, symSize: 0x1E4 } - - { offsetInCU: 0x7281, offset: 0x83C8A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB4FC, symBinAddr: 0x4B55C, symSize: 0x204 } - - { offsetInCU: 0x7307, offset: 0x83D10, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB700, symBinAddr: 0x4B760, symSize: 0x4C } - - { offsetInCU: 0x73C4, offset: 0x83DCD, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB74C, symBinAddr: 0x4B7AC, symSize: 0x90 } - - { offsetInCU: 0x745F, offset: 0x83E68, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB7DC, symBinAddr: 0x4B83C, symSize: 0x40 } - - { offsetInCU: 0x749C, offset: 0x83EA5, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB81C, symBinAddr: 0x4B87C, symSize: 0x18 } - - { offsetInCU: 0x74EE, offset: 0x83EF7, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB834, symBinAddr: 0x4B894, symSize: 0x3C } - - { offsetInCU: 0x7517, offset: 0x83F20, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB870, symBinAddr: 0x4B8D0, symSize: 0x1C } - - { offsetInCU: 0x75E7, offset: 0x83FF0, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB88C, symBinAddr: 0x4B8EC, symSize: 0xE0 } - - { offsetInCU: 0x770A, offset: 0x84113, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xBA50, symBinAddr: 0x4BAB0, symSize: 0x294 } - - { offsetInCU: 0x7781, offset: 0x8418A, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBF80, symBinAddr: 0x4BFE0, symSize: 0x8C } - - { offsetInCU: 0x7799, offset: 0x841A2, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xC00C, symBinAddr: 0x4C06C, symSize: 0x4C } - - { offsetInCU: 0x77EE, offset: 0x841F7, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xC058, symBinAddr: 0x4C0B8, symSize: 0x154 } - - { offsetInCU: 0x785C, offset: 0x84265, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC1AC, symBinAddr: 0x4C20C, symSize: 0xF0 } - - { offsetInCU: 0x7881, offset: 0x8428A, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC29C, symBinAddr: 0x4C2FC, symSize: 0x214 } - - { offsetInCU: 0x78BA, offset: 0x842C3, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC4B0, symBinAddr: 0x4C510, symSize: 0x78 } - - { offsetInCU: 0x78D2, offset: 0x842DB, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC528, symBinAddr: 0x4C588, symSize: 0x1C } - - { offsetInCU: 0x78EA, offset: 0x842F3, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC544, symBinAddr: 0x4C5A4, symSize: 0x1C } - - { offsetInCU: 0x7902, offset: 0x8430B, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC560, symBinAddr: 0x4C5C0, symSize: 0x1C } - - { offsetInCU: 0x7967, offset: 0x84370, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC57C, symBinAddr: 0x4C5DC, symSize: 0x104 } - - { offsetInCU: 0x7ACA, offset: 0x844D3, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC680, symBinAddr: 0x4C6E0, symSize: 0x174 } - - { offsetInCU: 0x7C3A, offset: 0x84643, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC7F4, symBinAddr: 0x4C854, symSize: 0x124 } - - { offsetInCU: 0x7D3A, offset: 0x84743, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC918, symBinAddr: 0x4C978, symSize: 0x120 } - - { offsetInCU: 0x7F86, offset: 0x8498F, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xCA38, symBinAddr: 0x4CA98, symSize: 0x36C } - - { offsetInCU: 0x8574, offset: 0x84F7D, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xCDA4, symBinAddr: 0x4CE04, symSize: 0x290 } - - { offsetInCU: 0x8761, offset: 0x8516A, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xD034, symBinAddr: 0x4D094, symSize: 0x150 } - - { offsetInCU: 0x88C7, offset: 0x852D0, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xD184, symBinAddr: 0x4D1E4, symSize: 0x218 } - - { offsetInCU: 0x8913, offset: 0x8531C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD39C, symBinAddr: 0x4D3FC, symSize: 0x14 } - - { offsetInCU: 0x894C, offset: 0x85355, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD3B0, symBinAddr: 0x4D410, symSize: 0xFC } - - { offsetInCU: 0x8A0A, offset: 0x85413, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xE8B4, symBinAddr: 0x4E914, symSize: 0x64 } - - { offsetInCU: 0x8AB6, offset: 0x854BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x10920, symBinAddr: 0x50980, symSize: 0xA78 } - - { offsetInCU: 0x9084, offset: 0x85A8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x11398, symBinAddr: 0x513F8, symSize: 0x104 } - - { offsetInCU: 0x91F0, offset: 0x85BF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x1149C, symBinAddr: 0x514FC, symSize: 0x2D8C } - - { offsetInCU: 0x98B6, offset: 0x862BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x14228, symBinAddr: 0x54288, symSize: 0x120 } - - { offsetInCU: 0x99C7, offset: 0x863D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x14348, symBinAddr: 0x543A8, symSize: 0x80 } - - { offsetInCU: 0x9A4A, offset: 0x86453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x143C8, symBinAddr: 0x54428, symSize: 0x654 } - - { offsetInCU: 0x9DE6, offset: 0x867EF, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14A7C, symBinAddr: 0x54A7C, symSize: 0x10 } - - { offsetInCU: 0x9DFA, offset: 0x86803, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x14A8C, symBinAddr: 0x54A8C, symSize: 0x10 } - - { offsetInCU: 0x9E0E, offset: 0x86817, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x14AE0, symBinAddr: 0x54A9C, symSize: 0x48 } - - { offsetInCU: 0x9E22, offset: 0x8682B, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x14B90, symBinAddr: 0x54AE4, symSize: 0x3C } - - { offsetInCU: 0x9E36, offset: 0x8683F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x14BCC, symBinAddr: 0x54B20, symSize: 0x44 } - - { offsetInCU: 0x9E4A, offset: 0x86853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOf', symObjAddr: 0x14C10, symBinAddr: 0x54B64, symSize: 0x48 } - - { offsetInCU: 0x9E5E, offset: 0x86867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x14CD0, symBinAddr: 0x54BE8, symSize: 0x8 } - - { offsetInCU: 0x9E72, offset: 0x8687B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14CD8, symBinAddr: 0x54BF0, symSize: 0x10 } - - { offsetInCU: 0x9E86, offset: 0x8688F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14CE8, symBinAddr: 0x54C00, symSize: 0x8 } - - { offsetInCU: 0x9E9A, offset: 0x868A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14D70, symBinAddr: 0x54C44, symSize: 0x30 } - - { offsetInCU: 0x9EF2, offset: 0x868FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x14E30, symBinAddr: 0x54D04, symSize: 0x24 } - - { offsetInCU: 0x9F2E, offset: 0x86937, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14E9C, symBinAddr: 0x54D28, symSize: 0x44 } - - { offsetInCU: 0x9F5D, offset: 0x86966, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x40068, symSize: 0x12C } - - { offsetInCU: 0x9F93, offset: 0x8699C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x40194, symSize: 0x58 } - - { offsetInCU: 0xA073, offset: 0x86A7C, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x401EC, symSize: 0x90 } - - { offsetInCU: 0xA09C, offset: 0x86AA5, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x4027C, symSize: 0xA0 } - - { offsetInCU: 0xA1C8, offset: 0x86BD1, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x4031C, symSize: 0x9C } - - { offsetInCU: 0xA2D7, offset: 0x86CE0, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x403B8, symSize: 0x74 } - - { offsetInCU: 0xA35C, offset: 0x86D65, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x4042C, symSize: 0x4 } - - { offsetInCU: 0xA37E, offset: 0x86D87, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x40430, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x87783, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x54E30, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x877AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEE0, symBinAddr: 0x55D10, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x877D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE8, symBinAddr: 0x55D18, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x8780A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF0C, symBinAddr: 0x55D3C, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x87826, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF18, symBinAddr: 0x55D48, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x87842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5C00, symBinAddr: 0x5A9A0, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87888, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x54E50, symSize: 0x18C } - - { offsetInCU: 0x1BC, offset: 0x878DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF74, symBinAddr: 0x55DA4, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x87914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC4, symBinAddr: 0x55DF4, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x87937, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5D2C, symBinAddr: 0x5AACC, symSize: 0x133C } - - { offsetInCU: 0x267, offset: 0x87988, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x1AC, symBinAddr: 0x54FDC, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x879D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1014, symBinAddr: 0x55E44, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x87A3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x102C, symBinAddr: 0x55E5C, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87AB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1058, symBinAddr: 0x55E88, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1060, symBinAddr: 0x55E90, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x87B13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1084, symBinAddr: 0x55EB4, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x87B2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1090, symBinAddr: 0x55EC0, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x87B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B4C, symBinAddr: 0x5BED4, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x87B91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CC, symBinAddr: 0x54FFC, symSize: 0x274 } - - { offsetInCU: 0x4C5, offset: 0x87BE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x10EC, symBinAddr: 0x55F1C, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x87C1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x113C, symBinAddr: 0x55F6C, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x87C40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7D28, symBinAddr: 0x5C0B0, symSize: 0xF48 } - - { offsetInCU: 0x569, offset: 0x87C8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x440, symBinAddr: 0x55270, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x87CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x55290, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x87CF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x460, symBinAddr: 0x55290, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x87D45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x55FE0, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x87DAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1214, symBinAddr: 0x56044, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x87DC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x123C, symBinAddr: 0x5606C, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x87DFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1244, symBinAddr: 0x56074, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x87E82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x12AC, symBinAddr: 0x560DC, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x87E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x12B8, symBinAddr: 0x560E8, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x87EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x480, symBinAddr: 0x552B0, symSize: 0x1A0 } - - { offsetInCU: 0x7EF, offset: 0x87F10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1314, symBinAddr: 0x56144, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x87F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x135C, symBinAddr: 0x5618C, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x87F6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8E4C, symBinAddr: 0x5D1D4, symSize: 0x230 } - - { offsetInCU: 0x899, offset: 0x87FBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x620, symBinAddr: 0x55450, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x87FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x139C, symBinAddr: 0x561CC, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x88010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A4, symBinAddr: 0x561D4, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x88041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x13C8, symBinAddr: 0x561F8, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x8805D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x13D4, symBinAddr: 0x56204, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x88079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x907C, symBinAddr: 0x5D404, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x880BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x55470, symSize: 0x278 } - - { offsetInCU: 0x9F3, offset: 0x88114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1430, symBinAddr: 0x56260, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x8814B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1490, symBinAddr: 0x562C0, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x8816E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9328, symBinAddr: 0x5D6B0, symSize: 0x548 } - - { offsetInCU: 0xA9D, offset: 0x881BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x8B8, symBinAddr: 0x556E8, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x88209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x14E8, symBinAddr: 0x56318, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x8829A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1500, symBinAddr: 0x56330, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x8837D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1544, symBinAddr: 0x56374, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x883EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x15AC, symBinAddr: 0x563DC, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x8841A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15B4, symBinAddr: 0x563E4, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x8844B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15D8, symBinAddr: 0x56408, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x88467, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15E4, symBinAddr: 0x56414, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x88483, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9870, symBinAddr: 0x5DBF8, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x884C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8D8, symBinAddr: 0x55708, symSize: 0x128 } - - { offsetInCU: 0xDFD, offset: 0x8851E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1640, symBinAddr: 0x56470, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x88555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x166C, symBinAddr: 0x5649C, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x88578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9924, symBinAddr: 0x5DCAC, symSize: 0x1B0 } - - { offsetInCU: 0xEA8, offset: 0x885C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0xA00, symBinAddr: 0x55830, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x885F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x170C, symBinAddr: 0x5653C, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x8861F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1714, symBinAddr: 0x56544, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x88650, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1738, symBinAddr: 0x56568, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x8866C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1744, symBinAddr: 0x56574, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x88688, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9AD4, symBinAddr: 0x5DE5C, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x886CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA20, symBinAddr: 0x55850, symSize: 0x224 } - - { offsetInCU: 0x1002, offset: 0x88723, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x565D0, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x8875A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1810, symBinAddr: 0x56640, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x8877D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9D08, symBinAddr: 0x5E090, symSize: 0x8D8 } - - { offsetInCU: 0x10A6, offset: 0x887C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC44, symBinAddr: 0x55A74, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x88800, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55A94, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x8882E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC64, symBinAddr: 0x55A94, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88877, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x19FC, symBinAddr: 0x5682C, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x888BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1A40, symBinAddr: 0x56870, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x888D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1A68, symBinAddr: 0x56898, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x88907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A70, symBinAddr: 0x568A0, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x8896C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1AAC, symBinAddr: 0x568DC, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88988, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AB8, symBinAddr: 0x568E8, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x889A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA6AC, symBinAddr: 0x5EA34, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x889D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC84, symBinAddr: 0x55AB4, symSize: 0x254 } - - { offsetInCU: 0x1304, offset: 0x88A25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B14, symBinAddr: 0x56944, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x88A5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B6C, symBinAddr: 0x5699C, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x88A7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA6FC, symBinAddr: 0x5EA84, symSize: 0x770 } - - { offsetInCU: 0x13D3, offset: 0x88AF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1BBC, symBinAddr: 0x569EC, symSize: 0x1C8 } - - { offsetInCU: 0x142F, offset: 0x88B50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x1D84, symBinAddr: 0x56BB4, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x88B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x59C8, symBinAddr: 0x5A7EC, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x88C02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5A1C, symBinAddr: 0x5A840, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x88C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A9C, symBinAddr: 0x5A8C0, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x88C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5AA4, symBinAddr: 0x5A8C8, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x88D0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5B04, symBinAddr: 0x5A928, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x88D28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x1D94, symBinAddr: 0x56BC4, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x88D3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x1DB4, symBinAddr: 0x56BE4, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x88D50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x1EA8, symBinAddr: 0x56CD8, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x88D64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x222C, symBinAddr: 0x5705C, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x88D7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x2E84, symBinAddr: 0x57CB4, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x88DA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x2EB4, symBinAddr: 0x57CE4, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x88DBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x2EE0, symBinAddr: 0x57D10, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x88DD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x2F0C, symBinAddr: 0x57D3C, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x88DE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x2F38, symBinAddr: 0x57D68, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x88DF8, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2F64, symBinAddr: 0x57D94, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x88E0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x2F6C, symBinAddr: 0x57D9C, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x88E20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x332C, symBinAddr: 0x5815C, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x88E34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3388, symBinAddr: 0x581B8, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x88E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x3474, symBinAddr: 0x582A4, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x88E5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3484, symBinAddr: 0x582B4, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x88E70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x34B4, symBinAddr: 0x582E4, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x88E84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x3594, symBinAddr: 0x583C4, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x88E98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x38CC, symBinAddr: 0x586FC, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x88EAC, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4130, symBinAddr: 0x58F60, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x88EC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4138, symBinAddr: 0x58F68, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x88ED4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x449C, symBinAddr: 0x592CC, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x88EE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x44F8, symBinAddr: 0x59328, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x88EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x45DC, symBinAddr: 0x5940C, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x88F10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x45EC, symBinAddr: 0x5941C, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x88F24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x4690, symBinAddr: 0x594C0, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x88F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x481C, symBinAddr: 0x5964C, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x88F4C, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4BC4, symBinAddr: 0x599F4, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x88F60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4C08, symBinAddr: 0x59A38, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x88F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x4D84, symBinAddr: 0x59BB4, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x88F88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x4DE0, symBinAddr: 0x59C10, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x88F9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x4E74, symBinAddr: 0x59CA4, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x88FB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x4E84, symBinAddr: 0x59CB4, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x88FC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x4EEC, symBinAddr: 0x59D1C, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x88FD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x4FC8, symBinAddr: 0x59DF8, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x88FEC, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5134, symBinAddr: 0x59F64, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x89000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5160, symBinAddr: 0x59F90, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x89014, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x5224, symBinAddr: 0x5A054, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x89028, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x5280, symBinAddr: 0x5A0B0, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x8903C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x52FC, symBinAddr: 0x5A12C, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x89050, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x530C, symBinAddr: 0x5A13C, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x89064, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x5354, symBinAddr: 0x5A184, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x89078, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x5438, symBinAddr: 0x5A268, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x8908C, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x55D0, symBinAddr: 0x5A400, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x890A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x5604, symBinAddr: 0x5A434, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x890B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5700, symBinAddr: 0x5A530, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x890C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x575C, symBinAddr: 0x5A58C, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x890DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x57D8, symBinAddr: 0x5A608, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x890F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x57E8, symBinAddr: 0x5A618, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x89104, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5810, symBinAddr: 0x5A640, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x89118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x584C, symBinAddr: 0x5A67C, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x8912C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x58C4, symBinAddr: 0x5A6E8, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x89140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5908, symBinAddr: 0x5A72C, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x89154, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x5964, symBinAddr: 0x5A788, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x89168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x59B8, symBinAddr: 0x5A7DC, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x8917C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5B0C, symBinAddr: 0x5A930, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x89190, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5B10, symBinAddr: 0x5A934, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x891A4, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5BD8, symBinAddr: 0x5A978, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x891B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x7068, symBinAddr: 0x5BE08, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x891CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x70AC, symBinAddr: 0x5BE4C, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x891E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7B08, symBinAddr: 0x5BE90, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x891F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x8C70, symBinAddr: 0x5CFF8, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x89208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x8CB4, symBinAddr: 0x5D03C, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x8921C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x8CF8, symBinAddr: 0x5D080, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x89230, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x8D3C, symBinAddr: 0x5D0C4, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x89244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x8D80, symBinAddr: 0x5D108, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x89258, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x8DC4, symBinAddr: 0x5D14C, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x8926C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x8E08, symBinAddr: 0x5D190, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x89280, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA5E0, symBinAddr: 0x5E968, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x89294, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xA624, symBinAddr: 0x5E9AC, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x892A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xA668, symBinAddr: 0x5E9F0, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x892BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xAE6C, symBinAddr: 0x5F1F4, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x892D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xAEB0, symBinAddr: 0x5F238, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x892E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xAEF4, symBinAddr: 0x5F27C, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x892F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xAF7C, symBinAddr: 0x5F304, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x8930C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xAFC0, symBinAddr: 0x5F348, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x89320, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB014, symBinAddr: 0x5F38C, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x89334, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB0A4, symBinAddr: 0x5F41C, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x89348, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB160, symBinAddr: 0x5F4D8, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x8935C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB168, symBinAddr: 0x5F4E0, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x89370, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB16C, symBinAddr: 0x5F4E4, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x89384, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB178, symBinAddr: 0x5F4F0, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x89398, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB188, symBinAddr: 0x5F500, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x893AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB218, symBinAddr: 0x5F590, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x893C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB2D4, symBinAddr: 0x5F64C, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x893D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB2D8, symBinAddr: 0x5F650, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x893E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB2E8, symBinAddr: 0x5F660, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x893FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB378, symBinAddr: 0x5F6F0, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x89410, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB434, symBinAddr: 0x5F7AC, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x89424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB438, symBinAddr: 0x5F7B0, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x89438, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB448, symBinAddr: 0x5F7C0, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x8944C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB4D8, symBinAddr: 0x5F850, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x89460, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB594, symBinAddr: 0x5F90C, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x89474, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB598, symBinAddr: 0x5F910, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x89488, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB5A8, symBinAddr: 0x5F920, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x8949C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB638, symBinAddr: 0x5F9B0, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x894B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB6F4, symBinAddr: 0x5FA6C, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x894C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB6FC, symBinAddr: 0x5FA74, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x894D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB700, symBinAddr: 0x5FA78, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x894EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB708, symBinAddr: 0x5FA80, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x89500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB718, symBinAddr: 0x5FA90, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x89514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB7A8, symBinAddr: 0x5FB20, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x89528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB864, symBinAddr: 0x5FBDC, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x8953C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB868, symBinAddr: 0x5FBE0, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x89550, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB878, symBinAddr: 0x5FBF0, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x89564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xB89C, symBinAddr: 0x5FC14, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x89578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xB8BC, symBinAddr: 0x5FC34, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x8958C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xB8FC, symBinAddr: 0x5FC74, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x895A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB90C, symBinAddr: 0x5FC84, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x895B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB910, symBinAddr: 0x5FC88, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x895C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB954, symBinAddr: 0x5FCCC, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x895DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB958, symBinAddr: 0x5FCD0, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x895F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB99C, symBinAddr: 0x5FD14, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x89604, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB9A0, symBinAddr: 0x5FD18, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x89618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB9E4, symBinAddr: 0x5FD5C, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x8962C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB9E8, symBinAddr: 0x5FD60, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x89640, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBA2C, symBinAddr: 0x5FDA4, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBA30, symBinAddr: 0x5FDA8, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x89668, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBA74, symBinAddr: 0x5FDEC, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x8967C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBA78, symBinAddr: 0x5FDF0, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x89690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBABC, symBinAddr: 0x5FE34, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x896A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAC0, symBinAddr: 0x5FE38, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x896B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB04, symBinAddr: 0x5FE7C, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x896CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB08, symBinAddr: 0x5FE80, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x896E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB4C, symBinAddr: 0x5FEC4, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x896F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB50, symBinAddr: 0x5FEC8, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x89708, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB94, symBinAddr: 0x5FF0C, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x8971C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBB98, symBinAddr: 0x5FF10, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x89730, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBBDC, symBinAddr: 0x5FF54, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x89744, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBBE0, symBinAddr: 0x5FF58, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89758, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC24, symBinAddr: 0x5FF9C, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x8976C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBC28, symBinAddr: 0x5FFA0, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x89780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC6C, symBinAddr: 0x5FFE4, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x89794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC70, symBinAddr: 0x5FFE8, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x897A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCB4, symBinAddr: 0x6002C, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x897BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCB8, symBinAddr: 0x60030, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x897D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBCFC, symBinAddr: 0x60074, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x897E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD00, symBinAddr: 0x60078, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x897F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBD44, symBinAddr: 0x600BC, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x8980C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBD48, symBinAddr: 0x600C0, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x89820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBD8C, symBinAddr: 0x60104, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x89834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBD90, symBinAddr: 0x60108, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x89848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBDD4, symBinAddr: 0x6014C, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x8985C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBDD8, symBinAddr: 0x60150, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x89870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xBE1C, symBinAddr: 0x60194, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xBE60, symBinAddr: 0x601D8, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xBEF0, symBinAddr: 0x60268, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x898AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xBFAC, symBinAddr: 0x60324, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x898C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xBFB0, symBinAddr: 0x60328, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x898D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBFC0, symBinAddr: 0x60338, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x898E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBFC4, symBinAddr: 0x6033C, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x898FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC008, symBinAddr: 0x60380, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x89910, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC00C, symBinAddr: 0x60384, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x89924, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC050, symBinAddr: 0x603C8, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x89938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC054, symBinAddr: 0x603CC, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89966, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF24, symBinAddr: 0x55D54, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89982, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x55D7C, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x899A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x109C, symBinAddr: 0x55ECC, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x899C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x10C4, symBinAddr: 0x55EF4, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x899DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x118C, symBinAddr: 0x55FBC, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x899F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1198, symBinAddr: 0x55FC8, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x89A14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x11A0, symBinAddr: 0x55FD0, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x89A30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x11A8, symBinAddr: 0x55FD8, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89A52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x12C4, symBinAddr: 0x560F4, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x89A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x12EC, symBinAddr: 0x5611C, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x89A90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x13E0, symBinAddr: 0x56210, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x89AAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1408, symBinAddr: 0x56238, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x89AF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x156C, symBinAddr: 0x5639C, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x89B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15F0, symBinAddr: 0x56420, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x89BB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1618, symBinAddr: 0x56448, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x89BD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x56580, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x89BF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1778, symBinAddr: 0x565A8, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x89C2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1878, symBinAddr: 0x566A8, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x89CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1900, symBinAddr: 0x56730, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x89D58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1960, symBinAddr: 0x56790, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x89DAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x19A0, symBinAddr: 0x567D0, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x89E0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1AC4, symBinAddr: 0x568F4, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x89E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1AEC, symBinAddr: 0x5691C, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x89E5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5AC8, symBinAddr: 0x5A8EC, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x8A068, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x60478, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8A08C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x60478, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x8A0AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x60480, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x8A0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x60488, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8A104, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x60498, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x8A12F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x6049C, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x8A14D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x604A4, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x8A189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x604AC, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x8A1B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x604BC, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x8A1E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x604C0, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x8A200, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x604C8, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x8A23A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x604D0, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A268, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x604E0, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A294, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x604E4, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A2A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x60538, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A2BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x6057C, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A3D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6058C, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A41A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6058C, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x605B0, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8A57F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x605D0, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8A5C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x605D0, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8A60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x605F4, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8A72A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x60614, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8A76C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x60614, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8A7BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x60674, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8A7CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x6067C, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8A7E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x606B8, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8A8FB, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x60730, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8A9B8, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x60730, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8ABB1, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x60A98, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8AD61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60AE0, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8ADA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x60AE0, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8ADEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x60B04, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8AF30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x60B24, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8AF5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x60BB8, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8AF9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x614F0, symSize: 0x44 } - - { offsetInCU: 0x12D, offset: 0x8B00E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA74, symBinAddr: 0x61558, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8B02A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA80, symBinAddr: 0x61564, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8B058, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x61588, symSize: 0x54 } - - { offsetInCU: 0x209, offset: 0x8B0EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x60B90, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8B115, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF8, symBinAddr: 0x615DC, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8B140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x61680, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8B15C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xBA8, symBinAddr: 0x6168C, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B41D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x61424, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B499, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBCC, symBinAddr: 0x616B0, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8B6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC8, symBinAddr: 0x61AAC, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8B870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1104, symBinAddr: 0x61BE8, symSize: 0xAB0 } - - { offsetInCU: 0xF95, offset: 0x8BE76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1BB4, symBinAddr: 0x62698, symSize: 0x694 } - - { offsetInCU: 0x1345, offset: 0x8C226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2248, symBinAddr: 0x62D2C, symSize: 0x4B0 } - - { offsetInCU: 0x14E4, offset: 0x8C3C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x26F8, symBinAddr: 0x631DC, symSize: 0x668 } - - { offsetInCU: 0x1A13, offset: 0x8C8F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2D60, symBinAddr: 0x63844, symSize: 0x160 } - - { offsetInCU: 0x1B2D, offset: 0x8CA0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2EC0, symBinAddr: 0x639A4, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8CA51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3470, symBinAddr: 0x63EF8, symSize: 0x224 } - - { offsetInCU: 0x1C21, offset: 0x8CB02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3694, symBinAddr: 0x6411C, symSize: 0x25C } - - { offsetInCU: 0x1C86, offset: 0x8CB67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x38F0, symBinAddr: 0x64378, symSize: 0x248 } - - { offsetInCU: 0x1DAE, offset: 0x8CC8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3B7C, symBinAddr: 0x645C0, symSize: 0x2BC } - - { offsetInCU: 0x1EED, offset: 0x8CDCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3E38, symBinAddr: 0x6487C, symSize: 0x1A8 } - - { offsetInCU: 0x1F33, offset: 0x8CE14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3FE0, symBinAddr: 0x64A24, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8D168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4454, symBinAddr: 0x64E98, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D264, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2F3C, symBinAddr: 0x63A20, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D2A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2F40, symBinAddr: 0x63A24, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D2BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2F44, symBinAddr: 0x63A28, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D2CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2F88, symBinAddr: 0x63A6C, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D2E2, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2F8C, symBinAddr: 0x63A70, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D2F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x301C, symBinAddr: 0x63ABC, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D30A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x3020, symBinAddr: 0x63AC0, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D31E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x3074, symBinAddr: 0x63B04, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x3104, symBinAddr: 0x63B94, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x31C0, symBinAddr: 0x63C50, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D35A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x31C8, symBinAddr: 0x63C58, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D36E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x31CC, symBinAddr: 0x63C5C, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x31D4, symBinAddr: 0x63C64, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x31E4, symBinAddr: 0x63C74, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D3AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x3274, symBinAddr: 0x63D04, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x3330, symBinAddr: 0x63DC0, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D3D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3338, symBinAddr: 0x63DC8, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D3E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x333C, symBinAddr: 0x63DCC, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D3FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3348, symBinAddr: 0x63DD8, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D40E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3358, symBinAddr: 0x63DE8, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D422, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3380, symBinAddr: 0x63E08, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x338C, symBinAddr: 0x63E14, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D44A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3390, symBinAddr: 0x63E18, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D45E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x33D4, symBinAddr: 0x63E5C, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x33E0, symBinAddr: 0x63E68, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x33E4, symBinAddr: 0x63E6C, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D49A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3428, symBinAddr: 0x63EB0, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D4B9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3434, symBinAddr: 0x63EBC, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D4F1, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3448, symBinAddr: 0x63ED0, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D529, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x345C, symBinAddr: 0x63EE4, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8D58D, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x456C, symBinAddr: 0x64FB0, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8D5A1, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4610, symBinAddr: 0x64FF8, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8D5B5, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x464C, symBinAddr: 0x65034, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8D5C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x46A4, symBinAddr: 0x6507C, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8D5DD, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x46AC, symBinAddr: 0x65084, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8D5F1, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x46BC, symBinAddr: 0x65094, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8D605, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x471C, symBinAddr: 0x6509C, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8D619, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x47D0, symBinAddr: 0x65150, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8D648, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8D660, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8D674, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8D688, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8D69C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x60BDC, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8D6B0, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x60BE0, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8D72E, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x60C04, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8D7BD, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x60C88, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8D84C, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x60D0C, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8D8E3, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x60D98, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8D9BD, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x60E00, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8DA97, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x60E68, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8DB0C, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x60ED4, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8DB69, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x60F14, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8DBC6, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x60F54, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8DBEF, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x60F98, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8DC42, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x61000, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8DCBE, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x61064, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8DD4F, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x610C8, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8DEB5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8DED5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8DEF5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8DF09, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8DF1D, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8DF31, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x6118C, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8DFDA, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x611D4, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8E081, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x6125C, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8E124, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x612DC, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8E210, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8E230, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8E244, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E258, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E26C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x613C0, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E2DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x61534, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E2F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA5C, symBinAddr: 0x61540, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E314, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA64, symBinAddr: 0x61548, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E328, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA6C, symBinAddr: 0x61550, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E342, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB78, symBinAddr: 0x6165C, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E35E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB84, symBinAddr: 0x61668, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E37A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x61670, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E38E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB94, symBinAddr: 0x61678, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8E841, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6516C, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8E855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x652F4, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8E869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x65398, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8E87D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x654F4, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8E891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x656DC, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8E8A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x657C8, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8E8B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x65950, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8E8CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x659E8, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8E8E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x65A80, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8E8F5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x65B08, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8E909, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x65B5C, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8E91D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x65C7C, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8E931, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x65D00, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8E945, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x65DF4, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8E959, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x65F54, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8E96D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x66030, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8E981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x66178, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8E995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x66210, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8E9A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x662DC, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8E9DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x66364, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8EA2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x668FC, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8EA90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17E8, symBinAddr: 0x66914, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8EB0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1814, symBinAddr: 0x66940, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8EB35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x181C, symBinAddr: 0x66948, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8EB66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1840, symBinAddr: 0x6696C, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8EB82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x184C, symBinAddr: 0x66978, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8EB9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2EBC, symBinAddr: 0x67EEC, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8EBE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x66384, symSize: 0x210 } - - { offsetInCU: 0x425, offset: 0x8EC23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1468, symBinAddr: 0x66594, symSize: 0x368 } - - { offsetInCU: 0x456, offset: 0x8EC54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18A8, symBinAddr: 0x669D4, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8EC77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18BC, symBinAddr: 0x669E8, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8ECCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x18D0, symBinAddr: 0x669FC, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8ECFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x66BE0, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8ED25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1ABC, symBinAddr: 0x66BE8, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8ED56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x66C0C, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8ED72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AEC, symBinAddr: 0x66C18, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8ED8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3078, symBinAddr: 0x680A8, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8EDD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x66A1C, symSize: 0x1BC } - - { offsetInCU: 0x62B, offset: 0x8EE29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B48, symBinAddr: 0x66C74, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8EE60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B94, symBinAddr: 0x66CC0, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8EE83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31C4, symBinAddr: 0x681F4, symSize: 0x2A4 } - - { offsetInCU: 0x6D5, offset: 0x8EED3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1BD4, symBinAddr: 0x66D00, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8EEFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x238C, symBinAddr: 0x674B8, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8EF29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2394, symBinAddr: 0x674C0, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8EF5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23B8, symBinAddr: 0x674E4, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8EF76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23C4, symBinAddr: 0x674F0, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8EF92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3468, symBinAddr: 0x68498, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8EFD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BF4, symBinAddr: 0x66D20, symSize: 0x274 } - - { offsetInCU: 0x819, offset: 0x8F017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E68, symBinAddr: 0x66F94, symSize: 0x4A0 } - - { offsetInCU: 0x84A, offset: 0x8F048, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2420, symBinAddr: 0x6754C, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8F06B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2434, symBinAddr: 0x67560, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8F08F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x246C, symBinAddr: 0x67574, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8F0A3, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24D0, symBinAddr: 0x675B8, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8F0B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2598, symBinAddr: 0x67638, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8F0CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2620, symBinAddr: 0x6767C, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8F0DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x274C, symBinAddr: 0x677A8, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8F0F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x27A0, symBinAddr: 0x677EC, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8F107, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2830, symBinAddr: 0x6787C, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8F11B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x28EC, symBinAddr: 0x67938, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8F12F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x28F4, symBinAddr: 0x67940, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8F143, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x28F8, symBinAddr: 0x67944, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8F157, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2900, symBinAddr: 0x6794C, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8F16B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2910, symBinAddr: 0x6795C, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8F17F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x29A0, symBinAddr: 0x679EC, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8F193, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2A5C, symBinAddr: 0x67AA8, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8F1A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2A60, symBinAddr: 0x67AAC, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8F1BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2A70, symBinAddr: 0x67ABC, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8F1CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2AA0, symBinAddr: 0x67AEC, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8F1E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2AD0, symBinAddr: 0x67B1C, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8F1F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2B2C, symBinAddr: 0x67B78, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8F20B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2BDC, symBinAddr: 0x67C0C, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8F21F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2C40, symBinAddr: 0x67C70, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8F233, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2C9C, symBinAddr: 0x67CCC, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8F247, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2CFC, symBinAddr: 0x67D2C, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F25B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D0C, symBinAddr: 0x67D3C, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F26F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x67D40, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D54, symBinAddr: 0x67D84, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F297, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D58, symBinAddr: 0x67D88, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F2AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D9C, symBinAddr: 0x67DCC, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F2BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA0, symBinAddr: 0x67DD0, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F2D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE4, symBinAddr: 0x67E14, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F2E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DE8, symBinAddr: 0x67E18, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F2FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E2C, symBinAddr: 0x67E5C, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F30F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E30, symBinAddr: 0x67E60, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F323, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E74, symBinAddr: 0x67EA4, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F337, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E78, symBinAddr: 0x67EA8, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3740, symBinAddr: 0x68770, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F36A, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3784, symBinAddr: 0x687B4, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F37E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x3850, symBinAddr: 0x68880, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F392, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x38E0, symBinAddr: 0x68910, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F3A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x399C, symBinAddr: 0x689CC, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F3BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x39A0, symBinAddr: 0x689D0, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F3CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x39B0, symBinAddr: 0x689E0, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F3E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x39B4, symBinAddr: 0x689E4, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F3F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x39F8, symBinAddr: 0x68A28, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F40A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39FC, symBinAddr: 0x68A2C, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F41E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3A40, symBinAddr: 0x68A70, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F432, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3A44, symBinAddr: 0x68A74, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F460, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1858, symBinAddr: 0x66984, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F47C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1880, symBinAddr: 0x669AC, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F49E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AF8, symBinAddr: 0x66C24, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F4BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x66C4C, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F4DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23D0, symBinAddr: 0x674FC, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F4F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x23F8, symBinAddr: 0x67524, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8F64A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x68AE0, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8F66E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x68AE0, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8F68C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x68B0C, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8F6CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x68B40, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8F6E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x68B50, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8F714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x68B54, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8F732, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x68B80, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8F771, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x68BB4, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8F79F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x68BC4, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8F7CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x68BC8, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8F7DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x68BF8, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8F7F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x68C20, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8F807, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x68C5C, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8F81B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x68CC8, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8F82F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x68D0C, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8F843, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x68D54, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8F857, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x68D94, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8F99D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68DA4, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8F9C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0SSvpZ', symObjAddr: 0x8E88, symBinAddr: 0x88AD0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8F9DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8languageSSvpZ', symObjAddr: 0x8E98, symBinAddr: 0x88AE0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8F9F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7versionSSvpZ', symObjAddr: 0x8EA8, symBinAddr: 0x88AF0, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8FA0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8EB8, symBinAddr: 0x88B00, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8FA29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8EC8, symBinAddr: 0x88B10, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8FA43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8ED8, symBinAddr: 0x88B20, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8FA5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8EE8, symBinAddr: 0x88B30, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8FA77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x8EF8, symBinAddr: 0x88B40, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8FA91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x8F08, symBinAddr: 0x88B50, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8FAAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x8F18, symBinAddr: 0x88B60, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8FAC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x8F28, symBinAddr: 0x88B70, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8FADF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x8F38, symBinAddr: 0x88B80, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8FAF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x8F48, symBinAddr: 0x88B90, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8FB13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x8F58, symBinAddr: 0x88BA0, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8FB2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x8F68, symBinAddr: 0x88BB0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8FB47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x8F78, symBinAddr: 0x88BC0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8FB61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x8F88, symBinAddr: 0x88BD0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x8FB7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x8F98, symBinAddr: 0x88BE0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x8FB95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x8FA8, symBinAddr: 0x88BF0, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x8FBAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x8FB8, symBinAddr: 0x88C00, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x8FBC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x8FC8, symBinAddr: 0x88C10, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x8FBE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x8FD8, symBinAddr: 0x88C20, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x8FBFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x8FE8, symBinAddr: 0x88C30, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x8FC17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x8FF8, symBinAddr: 0x88C40, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x8FC31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x9008, symBinAddr: 0x88C50, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x8FC4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x9018, symBinAddr: 0x88C60, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x8FC65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x9028, symBinAddr: 0x88C70, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x8FC7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x9038, symBinAddr: 0x88C80, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x8FC99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x9048, symBinAddr: 0x88C90, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x8FCB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x9058, symBinAddr: 0x88CA0, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKeySSvpZ', symObjAddr: 0x9068, symBinAddr: 0x88CB0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x8FCE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKeySSvpZ', symObjAddr: 0x9078, symBinAddr: 0x88CC0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x8FD01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvpZ', symObjAddr: 0x9088, symBinAddr: 0x88CD0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x8FD1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKeySSvpZ', symObjAddr: 0x9098, symBinAddr: 0x88CE0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x8FD35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKeySSvpZ', symObjAddr: 0x90A8, symBinAddr: 0x88CF0, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x8FD4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKeySSvpZ', symObjAddr: 0x90B8, symBinAddr: 0x88D00, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x8FD69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKeySSvpZ', symObjAddr: 0x90C8, symBinAddr: 0x88D10, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x8FD83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvpZ', symObjAddr: 0x90D8, symBinAddr: 0x88D20, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x8FD9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvpZ', symObjAddr: 0x90E8, symBinAddr: 0x88D30, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x8FDB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvpZ', symObjAddr: 0x90F8, symBinAddr: 0x88D40, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x8FDD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkeySSvpZ', symObjAddr: 0x9108, symBinAddr: 0x88D50, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x8FDEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvpZ', symObjAddr: 0x9118, symBinAddr: 0x88D60, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x8FE05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKeySSvpZ', symObjAddr: 0x9128, symBinAddr: 0x88D70, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x8FE1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKeySSvpZ', symObjAddr: 0x9138, symBinAddr: 0x88D80, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x8FE39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKeySSvpZ', symObjAddr: 0x9148, symBinAddr: 0x88D90, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x8FE53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKeySSvpZ', symObjAddr: 0x9158, symBinAddr: 0x88DA0, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x8FE6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKeySSvpZ', symObjAddr: 0x9168, symBinAddr: 0x88DB0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x8FE87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKeySSvpZ', symObjAddr: 0x9178, symBinAddr: 0x88DC0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x8FEA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x9188, symBinAddr: 0x88DD0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x8FEBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x9198, symBinAddr: 0x88DE0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x8FED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x91A8, symBinAddr: 0x88DF0, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x8FEEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKeySSvpZ', symObjAddr: 0x91B8, symBinAddr: 0x88E00, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x8FF09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKeySSvpZ', symObjAddr: 0x91C8, symBinAddr: 0x88E10, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x8FF23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKeySSvpZ', symObjAddr: 0x91D8, symBinAddr: 0x88E20, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x8FF3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x91E8, symBinAddr: 0x88E30, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x8FF57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x91F8, symBinAddr: 0x88E40, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x8FF71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x9208, symBinAddr: 0x88E50, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x8FF8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x9218, symBinAddr: 0x88E60, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x8FFA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x9228, symBinAddr: 0x88E70, symSize: 0x0 } - - { offsetInCU: 0x649, offset: 0x8FFBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkeySSvpZ', symObjAddr: 0x9238, symBinAddr: 0x88E80, symSize: 0x0 } - - { offsetInCU: 0x657, offset: 0x8FFCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x68DA4, symSize: 0x40 } - - { offsetInCU: 0x675, offset: 0x8FFEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x68DE4, symSize: 0x40 } - - { offsetInCU: 0x693, offset: 0x90009, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x68E24, symSize: 0x40 } - - { offsetInCU: 0x6B1, offset: 0x90027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x68E64, symSize: 0x40 } - - { offsetInCU: 0x6CF, offset: 0x90045, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x68EA4, symSize: 0x40 } - - { offsetInCU: 0x6F9, offset: 0x9006F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x68EE4, symSize: 0x14 } - - { offsetInCU: 0x714, offset: 0x9008A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x69078, symSize: 0x108 } - - { offsetInCU: 0x766, offset: 0x900DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x692B4, symSize: 0x8 } - - { offsetInCU: 0x782, offset: 0x900F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x692BC, symSize: 0x18 } - - { offsetInCU: 0x79A, offset: 0x90110, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x692BC, symSize: 0x18 } - - { offsetInCU: 0x7AC, offset: 0x90122, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x68EF8, symSize: 0x40 } - - { offsetInCU: 0x7CA, offset: 0x90140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x68F38, symSize: 0x40 } - - { offsetInCU: 0x7E8, offset: 0x9015E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x68F78, symSize: 0x40 } - - { offsetInCU: 0x806, offset: 0x9017C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x68FB8, symSize: 0x40 } - - { offsetInCU: 0x824, offset: 0x9019A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x68FF8, symSize: 0x40 } - - { offsetInCU: 0x842, offset: 0x901B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x69038, symSize: 0x40 } - - { offsetInCU: 0x86B, offset: 0x901E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x691A4, symSize: 0x4 } - - { offsetInCU: 0x87F, offset: 0x901F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x691A8, symSize: 0x44 } - - { offsetInCU: 0x8A9, offset: 0x9021F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x692D4, symSize: 0x90 } - - { offsetInCU: 0x8BD, offset: 0x90233, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x69364, symSize: 0xBC } - - { offsetInCU: 0x8D1, offset: 0x90247, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x69420, symSize: 0x8 } - - { offsetInCU: 0x8E5, offset: 0x9025B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x69428, symSize: 0x4 } - - { offsetInCU: 0x8F9, offset: 0x9026F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x6942C, symSize: 0x8 } - - { offsetInCU: 0x90D, offset: 0x90283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x69434, symSize: 0x10 } - - { offsetInCU: 0x921, offset: 0x90297, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0_WZ', symObjAddr: 0x6B0, symBinAddr: 0x69444, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x902B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8language_WZ', symObjAddr: 0x6CC, symBinAddr: 0x69460, symSize: 0x20 } - - { offsetInCU: 0x955, offset: 0x902CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7version_WZ', symObjAddr: 0x6EC, symBinAddr: 0x69480, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x902E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x708, symBinAddr: 0x6949C, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x902FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x724, symBinAddr: 0x694B8, symSize: 0x1C } - - { offsetInCU: 0x9A3, offset: 0x90319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x740, symBinAddr: 0x694D4, symSize: 0x1C } - - { offsetInCU: 0x9BD, offset: 0x90333, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPassword_WZ', symObjAddr: 0x75C, symBinAddr: 0x694F0, symSize: 0x14 } - - { offsetInCU: 0x9DE, offset: 0x90354, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x770, symBinAddr: 0x69504, symSize: 0x1C } - - { offsetInCU: 0x9F8, offset: 0x9036E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x78C, symBinAddr: 0x69520, symSize: 0x24 } - - { offsetInCU: 0xA12, offset: 0x90388, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x7B0, symBinAddr: 0x69544, symSize: 0x20 } - - { offsetInCU: 0xA2C, offset: 0x903A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7D0, symBinAddr: 0x69564, symSize: 0x28 } - - { offsetInCU: 0xA46, offset: 0x903BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7F8, symBinAddr: 0x6958C, symSize: 0x24 } - - { offsetInCU: 0xA60, offset: 0x903D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x81C, symBinAddr: 0x695B0, symSize: 0x24 } - - { offsetInCU: 0xA7A, offset: 0x903F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x840, symBinAddr: 0x695D4, symSize: 0x20 } - - { offsetInCU: 0xA94, offset: 0x9040A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x860, symBinAddr: 0x695F4, symSize: 0x28 } - - { offsetInCU: 0xAAE, offset: 0x90424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x888, symBinAddr: 0x6961C, symSize: 0x1C } - - { offsetInCU: 0xAC9, offset: 0x9043F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKey_WZ', symObjAddr: 0x8A4, symBinAddr: 0x69638, symSize: 0x18 } - - { offsetInCU: 0xAE3, offset: 0x90459, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKey_WZ', symObjAddr: 0x8BC, symBinAddr: 0x69650, symSize: 0x18 } - - { offsetInCU: 0xAFD, offset: 0x90473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x69668, symSize: 0x1C } - - { offsetInCU: 0xB17, offset: 0x9048D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x69684, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x904A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKey_WZ', symObjAddr: 0x90C, symBinAddr: 0x696A0, symSize: 0x18 } - - { offsetInCU: 0xB4B, offset: 0x904C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKey_WZ', symObjAddr: 0x924, symBinAddr: 0x696B8, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x904DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKey_WZ', symObjAddr: 0x940, symBinAddr: 0x696D4, symSize: 0x1C } - - { offsetInCU: 0xB7F, offset: 0x904F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x696F0, symSize: 0x1C } - - { offsetInCU: 0xB99, offset: 0x9050F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKey_WZ', symObjAddr: 0x978, symBinAddr: 0x6970C, symSize: 0x18 } - - { offsetInCU: 0xBB3, offset: 0x90529, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKey_WZ', symObjAddr: 0x990, symBinAddr: 0x69724, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x90543, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x6973C, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x9055D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKey_WZ', symObjAddr: 0x9C4, symBinAddr: 0x69758, symSize: 0x18 } - - { offsetInCU: 0xC01, offset: 0x90577, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x69770, symSize: 0x1C } - - { offsetInCU: 0xC1B, offset: 0x90591, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9F8, symBinAddr: 0x6978C, symSize: 0x24 } - - { offsetInCU: 0xC35, offset: 0x905AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKey_WZ', symObjAddr: 0xA1C, symBinAddr: 0x697B0, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x905C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKey_WZ', symObjAddr: 0xA34, symBinAddr: 0x697C8, symSize: 0x18 } - - { offsetInCU: 0xC69, offset: 0x905DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKey_WZ', symObjAddr: 0xA4C, symBinAddr: 0x697E0, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x905F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x697F8, symSize: 0x1C } - - { offsetInCU: 0xC9D, offset: 0x90613, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKey_WZ', symObjAddr: 0xA80, symBinAddr: 0x69814, symSize: 0x18 } - - { offsetInCU: 0xCB7, offset: 0x9062D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKey_WZ', symObjAddr: 0xA98, symBinAddr: 0x6982C, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x90647, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x69844, symSize: 0x1C } - - { offsetInCU: 0xCEB, offset: 0x90661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkey_WZ', symObjAddr: 0xACC, symBinAddr: 0x69860, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x9067B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkey_WZ', symObjAddr: 0xAE4, symBinAddr: 0x69878, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x90695, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekey_WZ', symObjAddr: 0xAFC, symBinAddr: 0x69890, symSize: 0x18 } - - { offsetInCU: 0xD39, offset: 0x906AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkey_WZ', symObjAddr: 0xB14, symBinAddr: 0x698A8, symSize: 0x18 } - - { offsetInCU: 0xD53, offset: 0x906C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkey_WZ', symObjAddr: 0xB2C, symBinAddr: 0x698C0, symSize: 0x20 } - - { offsetInCU: 0xD6D, offset: 0x906E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKey_WZ', symObjAddr: 0xB4C, symBinAddr: 0x698E0, symSize: 0x24 } - - { offsetInCU: 0xD87, offset: 0x906FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x69904, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x90717, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x69920, symSize: 0x1C } - - { offsetInCU: 0xDBB, offset: 0x90731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x6993C, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x9074B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKey_WZ', symObjAddr: 0xBC4, symBinAddr: 0x69958, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x90765, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x69970, symSize: 0x1C } - - { offsetInCU: 0xE09, offset: 0x9077F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBF8, symBinAddr: 0x6998C, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x90799, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xC10, symBinAddr: 0x699A4, symSize: 0x18 } - - { offsetInCU: 0xE3D, offset: 0x907B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC28, symBinAddr: 0x699BC, symSize: 0x18 } - - { offsetInCU: 0xE57, offset: 0x907CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x699D4, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x907E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKey_WZ', symObjAddr: 0xC5C, symBinAddr: 0x699F0, symSize: 0x24 } - - { offsetInCU: 0xE8B, offset: 0x90801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x69A14, symSize: 0x1C } - - { offsetInCU: 0xEA5, offset: 0x9081B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKey_WZ', symObjAddr: 0xC9C, symBinAddr: 0x69A30, symSize: 0x20 } - - { offsetInCU: 0xEBF, offset: 0x90835, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCBC, symBinAddr: 0x69A50, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x9084F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCD4, symBinAddr: 0x69A68, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCEC, symBinAddr: 0x69A80, symSize: 0x18 } - - { offsetInCU: 0xF0D, offset: 0x90883, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekey_WZ', symObjAddr: 0xD04, symBinAddr: 0x69A98, symSize: 0x18 } - - { offsetInCU: 0xF27, offset: 0x9089D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkey_WZ', symObjAddr: 0xD1C, symBinAddr: 0x69AB0, symSize: 0x18 } - - { offsetInCU: 0xF69, offset: 0x908DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0xD34, symBinAddr: 0x69AC8, symSize: 0x288 } - - { offsetInCU: 0x10FC, offset: 0x90A72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x69180, symSize: 0x24 } - - { offsetInCU: 0x119E, offset: 0x90B14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x691EC, symSize: 0x4C } - - { offsetInCU: 0x1276, offset: 0x90BEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x69238, symSize: 0x34 } - - { offsetInCU: 0x12F2, offset: 0x90C68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x6926C, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x90E31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69D50, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x90E73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69D50, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x90EBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x69D74, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x91000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1B00, symBinAddr: 0x88498, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x91049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x69E70, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x910C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x69EB0, symSize: 0x3F8 } - - { offsetInCU: 0x302, offset: 0x912B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x564, symBinAddr: 0x6A2B8, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x91319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C8, symBinAddr: 0x6A31C, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x9137F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x62C, symBinAddr: 0x6A380, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x913E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x690, symBinAddr: 0x6A3E4, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x9144B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6F4, symBinAddr: 0x6A448, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x91548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x81C, symBinAddr: 0x6A514, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x915B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6A550, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x915F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6A550, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x91624, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x868, symBinAddr: 0x6A560, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x916A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x9CC, symBinAddr: 0x6A6C4, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x91706, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xA00, symBinAddr: 0x6A6F8, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x91787, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA54, symBinAddr: 0x6A74C, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91822, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xAA0, symBinAddr: 0x6A798, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x918D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB34, symBinAddr: 0x6A81C, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x91994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA8, symBinAddr: 0x6A890, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91A43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC2C, symBinAddr: 0x6A914, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91AD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC64, symBinAddr: 0x6A94C, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91B65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC9C, symBinAddr: 0x6A984, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x91BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCD4, symBinAddr: 0x6A9BC, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x91C8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD0C, symBinAddr: 0x6A9F4, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x91D21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD44, symBinAddr: 0x6AA2C, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x91DB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD7C, symBinAddr: 0x6AA64, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x91E4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDB4, symBinAddr: 0x6AA9C, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x91EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDEC, symBinAddr: 0x6AAD4, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x91F17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE30, symBinAddr: 0x6AB18, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x91FFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xF68, symBinAddr: 0x6AC50, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x920E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1014, symBinAddr: 0x6ACFC, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x9217F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x108C, symBinAddr: 0x6AD74, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x921AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1110, symBinAddr: 0x6ADF8, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x92252, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x69DD4, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x9226A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x69E24, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x92308, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5C0, symBinAddr: 0x6A314, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x9231C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x624, symBinAddr: 0x6A378, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x92330, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x688, symBinAddr: 0x6A3DC, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x92344, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6EC, symBinAddr: 0x6A440, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x92358, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x750, symBinAddr: 0x6A4A4, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x9236C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x7B4, symBinAddr: 0x6A4AC, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x92380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOf', symObjAddr: 0x7D4, symBinAddr: 0x6A4CC, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x923E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1258, symBinAddr: 0x6AF40, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x923F5, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1260, symBinAddr: 0x6AF48, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x92409, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1270, symBinAddr: 0x6AF58, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x9244A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x12A4, symBinAddr: 0x6AF60, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x9254C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15C4, symBinAddr: 0x6B280, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x9269F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x69D94, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x926BB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x69D98, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x926D7, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x69D9C, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x926F3, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x69DA0, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x9270F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x69DA4, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x9272B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x69DA8, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x92747, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x69DAC, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92763, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x69DB0, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x9277F, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x69DB4, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x9279B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x69DB8, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x927B7, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x69DBC, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x927D3, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x69DC8, symSize: 0xC } -... diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS deleted file mode 100755 index a9beaf7..0000000 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json deleted file mode 100644 index 04360c8..0000000 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,22932 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS12ReachabilityC", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2_AWS.DebugConfig", - "usr": "s:15IoTConnect2_AWS11DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2_AWS.MqttConfig", - "usr": "s:15IoTConnect2_AWS10MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS11DebugConfigV", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS10MqttConfigV", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PREQA", - "printedName": "PREQA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "POC", - "printedName": "POC", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS0A4TCPfO", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS9SSLOptionV", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS11CommandTypeO", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS9SDKClientC", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", - "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34350, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34392, - "length": 48, - "value": "\"twinPropertySubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34421, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34515, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34565, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34614, - "length": 48, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34643, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34661, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34737, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34787, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34891, - "length": 11, - "value": "\"subForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34988, - "length": 11, - "value": "\"pubForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 89, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2295, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2315, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2406, - "length": 92, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2448, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2477, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2497, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2549, - "length": 93, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2580, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2413, - "length": 26, - "value": "\"SDKClient initialize AWS\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 4c111b1..0000000 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json deleted file mode 100644 index 04360c8..0000000 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ /dev/null @@ -1,22932 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", - "children": [ - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Network", - "printedName": "Network", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClientOption", - "printedName": "SDKClientOption", - "children": [ - { - "kind": "Var", - "name": "ssl", - "printedName": "ssl", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "SSLOption", - "printedName": "IoTConnect2_AWS.SSLOption", - "usr": "s:15IoTConnect2_AWS9SSLOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorage", - "printedName": "offlineStorage", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "OfflineStorageOption", - "printedName": "IoTConnect2_AWS.OfflineStorageOption", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "skipValidation", - "printedName": "skipValidation", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "devicePK", - "printedName": "devicePK", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "cpId", - "printedName": "cpId", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "pf", - "printedName": "pf", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "env", - "printedName": "env", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", - "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "SystemConfiguration", - "printedName": "SystemConfiguration", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "TypeDecl", - "name": "ReachabilityError", - "printedName": "ReachabilityError", - "children": [ - { - "kind": "Var", - "name": "failedToCreateWithAddress", - "printedName": "failedToCreateWithAddress", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Darwin.sockaddr, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "sockaddr", - "printedName": "Darwin.sockaddr", - "usr": "c:@S@sockaddr" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "failedToCreateWithHostname", - "printedName": "failedToCreateWithHostname", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, Swift.Int32)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetCallback", - "printedName": "unableToSetCallback", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToSetDispatchQueue", - "printedName": "unableToSetDispatchQueue", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "unableToGetFlags", - "printedName": "unableToGetFlags", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - }, - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.ReachabilityError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ReachabilityError", - "printedName": "IoTConnect2_AWS.ReachabilityError", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", - "moduleName": "IoTConnect2_AWS" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", - "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Reachability", - "printedName": "Reachability", - "children": [ - { - "kind": "TypeDecl", - "name": "Connection", - "printedName": "Connection", - "children": [ - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ] - }, - { - "kind": "Var", - "name": "unavailable", - "printedName": "unavailable", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "wifi", - "printedName": "wifi", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "cellular", - "printedName": "cellular", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - }, - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - } - ] - }, - { - "kind": "Var", - "name": "whenReachable", - "printedName": "whenReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "whenUnreachable", - "printedName": "whenUnreachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.Reachability) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - } - ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "reachableOnWWAN", - "printedName": "reachableOnWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "Available" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allowsCellularConnection", - "printedName": "allowsCellularConnection", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "notificationCenter", - "printedName": "notificationCenter", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NotificationCenter", - "printedName": "Foundation.NotificationCenter", - "usr": "c:objc(cs)NSNotificationCenter" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "currentReachabilityString", - "printedName": "currentReachabilityString", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "connection", - "printedName": "connection", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Connection", - "printedName": "IoTConnect2_AWS.Reachability.Connection", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", - "moduleName": "IoTConnect2_AWS", - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "SCNetworkReachability", - "printedName": "SystemConfiguration.SCNetworkReachability", - "usr": "c:@T@SCNetworkReachabilityRef" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "Required" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(queueQoS:targetQueue:notificationQueue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Reachability", - "printedName": "IoTConnect2_AWS.Reachability", - "usr": "s:15IoTConnect2_AWS12ReachabilityC" - }, - { - "kind": "TypeNominal", - "name": "DispatchQoS", - "printedName": "Dispatch.DispatchQoS", - "hasDefaultArg": true, - "usr": "s:8Dispatch0A3QoSV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Dispatch.DispatchQueue?", - "children": [ - { - "kind": "TypeNominal", - "name": "DispatchQueue", - "printedName": "Dispatch.DispatchQueue", - "usr": "c:objc(cs)OS_dispatch_queue" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "Convenience", - "AccessControl" - ], - "throwing": true, - "init_kind": "Convenience" - }, - { - "kind": "Function", - "name": "startNotifier", - "printedName": "startNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ], - "isFromExtension": true, - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "stopNotifier", - "printedName": "stopNotifier()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "isReachable", - "printedName": "isReachable", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWWAN", - "printedName": "isReachableViaWWAN", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "isReachableViaWiFi", - "printedName": "isReachableViaWiFi", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", - "moduleName": "IoTConnect2_AWS", - "deprecated": true, - "declAttributes": [ - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "description", - "printedName": "description", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", - "moduleName": "IoTConnect2_AWS", - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS12ReachabilityC", - "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IoTConnectConfig", - "printedName": "IoTConnectConfig", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.DebugConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "DebugConfig", - "printedName": "IoTConnect2_AWS.DebugConfig", - "usr": "s:15IoTConnect2_AWS11DebugConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.MqttConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConfig", - "printedName": "IoTConnect2_AWS.MqttConfig", - "usr": "s:15IoTConnect2_AWS10MqttConfigV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "SDKClientOption", - "printedName": "IoTConnect2_AWS.SDKClientOption", - "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", - "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "DebugConfig", - "printedName": "DebugConfig", - "children": [ - { - "kind": "Var", - "name": "discoveryUrl", - "printedName": "discoveryUrl", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS11DebugConfigV", - "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConfig", - "printedName": "MqttConfig", - "children": [ - { - "kind": "Var", - "name": "certificateConfig", - "printedName": "certificateConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CertificateConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "CertificateConfig", - "printedName": "IoTConnect2_AWS.CertificateConfig", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "offlineStorageConfig", - "printedName": "offlineStorageConfig", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", - "children": [ - { - "kind": "TypeNominal", - "name": "OfflineStorageConfig", - "printedName": "IoTConnect2_AWS.OfflineStorageConfig", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS10MqttConfigV", - "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "CertificateConfig", - "printedName": "CertificateConfig", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "certificatePassword", - "printedName": "certificatePassword", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasStorage", - "AccessControl" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS17CertificateConfigV", - "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageConfig", - "printedName": "OfflineStorageConfig", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "TypeDecl", - "name": "MqttConnectionType", - "printedName": "MqttConnectionType", - "children": [ - { - "kind": "Var", - "name": "userCredntialAuthentication", - "printedName": "userCredntialAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "certificateAuthentication", - "printedName": "certificateAuthentication", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - }, - { - "kind": "TypeNominal", - "name": "MqttConnectionType", - "printedName": "IoTConnect2_AWS.MqttConnectionType", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", - "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "CocoaMQTT", - "printedName": "CocoaMQTT", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "OfflineStorageOption", - "printedName": "OfflineStorageOption", - "children": [ - { - "kind": "Var", - "name": "availSpaceInMb", - "printedName": "availSpaceInMb", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "fileCount", - "printedName": "fileCount", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "disabled", - "printedName": "disabled", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", - "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "IOTCEnvironment", - "printedName": "IOTCEnvironment", - "children": [ - { - "kind": "Var", - "name": "PROD", - "printedName": "PROD", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PREQA", - "printedName": "PREQA", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "POC", - "printedName": "POC", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IOTCEnvironment?", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "allCases", - "printedName": "allCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", - "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "CaseIterable", - "printedName": "CaseIterable", - "children": [ - { - "kind": "TypeWitness", - "name": "AllCases", - "printedName": "AllCases", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", - "children": [ - { - "kind": "TypeNominal", - "name": "IOTCEnvironment", - "printedName": "IoTConnect2_AWS.IOTCEnvironment", - "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" - } - ], - "usr": "s:Sa" - } - ] - } - ], - "usr": "s:s12CaseIterableP", - "mangledName": "$ss12CaseIterableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "IoTCPf", - "printedName": "IoTCPf", - "children": [ - { - "kind": "Var", - "name": "az", - "printedName": "az", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "aws", - "printedName": "aws", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.IoTCPf.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.IoTCPf?", - "children": [ - { - "kind": "TypeNominal", - "name": "IoTCPf", - "printedName": "IoTConnect2_AWS.IoTCPf", - "usr": "s:15IoTConnect2_AWS0A4TCPfO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS0A4TCPfO", - "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SSLOption", - "printedName": "SSLOption", - "children": [ - { - "kind": "Var", - "name": "certificatePath", - "printedName": "certificatePath", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "password", - "printedName": "password", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "_modify" - } - ] - } - ], - "declKind": "Struct", - "usr": "s:15IoTConnect2_AWS9SSLOptionV", - "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "CommandType", - "printedName": "CommandType", - "children": [ - { - "kind": "Var", - "name": "DEVICE_COMMAND", - "printedName": "DEVICE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "OTA_COMMAND", - "printedName": "OTA_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "MODULE_COMMAND", - "printedName": "MODULE_COMMAND", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "REFRESH_ATTRIBUTE", - "printedName": "REFRESH_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "FIRMWARE_UPDATE", - "printedName": "FIRMWARE_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_EDGE_RULE", - "printedName": "REFRESH_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "REFRESH_CHILD_DEVICE", - "printedName": "REFRESH_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_CHANGE", - "printedName": "DATA_FREQUENCY_CHANGE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DELETED", - "printedName": "DEVICE_DELETED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_DISABLED", - "printedName": "DEVICE_DISABLED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_RELEASED", - "printedName": "DEVICE_RELEASED", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_OPERATION", - "printedName": "STOP_OPERATION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "START_HEART_RATE", - "printedName": "START_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "STOP_HEART_RATE", - "printedName": "STOP_HEART_RATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "PASSWORD_INFO_UPDATE", - "printedName": "PASSWORD_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DEVICE_INFO_UPDATE", - "printedName": "DEVICE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "RULE_INFO_UPDATE", - "printedName": "RULE_INFO_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DEVICE_CONNECTION_STATUS", - "printedName": "DEVICE_CONNECTION_STATUS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "DATA_FREQUENCY_UPDATE", - "printedName": "DATA_FREQUENCY_UPDATE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "STOP_SDK_CONNECTION", - "printedName": "STOP_SDK_CONNECTION", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "IDENTITIY_RESPONSE", - "printedName": "IDENTITIY_RESPONSE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_DEVICE_TEMPLATE_TWIN", - "printedName": "GET_DEVICE_TEMPLATE_TWIN", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_EDGE_RULE", - "printedName": "GET_EDGE_RULE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_CHILD_DEVICE", - "printedName": "GET_CHILD_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "GET_PENDING_OTAS", - "printedName": "GET_PENDING_OTAS", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "CREATE_DEVICE", - "printedName": "CREATE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "DELETE_DEVICE", - "printedName": "DELETE_DEVICE", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "IoTConnect2_AWS.CommandType.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", - "moduleName": "IoTConnect2_AWS" - }, - { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "IoTConnect2_AWS.CommandType?", - "children": [ - { - "kind": "TypeNominal", - "name": "CommandType", - "printedName": "IoTConnect2_AWS.CommandType", - "usr": "s:15IoTConnect2_AWS11CommandTypeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", - "moduleName": "IoTConnect2_AWS", - "implicit": true, - "init_kind": "Designated" - } - ], - "declKind": "Enum", - "usr": "s:15IoTConnect2_AWS11CommandTypeO", - "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "Int", - "conformances": [ - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "SDKClient", - "printedName": "SDKClient", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Var", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "SDKClient", - "printedName": "IoTConnect2_AWS.SDKClient", - "usr": "s:15IoTConnect2_AWS9SDKClientC" - } - ], - "declKind": "Accessor", - "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "get" - } - ] - }, - { - "kind": "Function", - "name": "initialize", - "printedName": "initialize(config:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "IoTConnectConfig", - "printedName": "IoTConnect2_AWS.IoTConnectConfig", - "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendData", - "printedName": "sendData(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendLog", - "printedName": "sendLog(data:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.String : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAck", - "printedName": "sendAck(data:msgType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.String : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.String : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckCmd", - "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendOTAAckCmd", - "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAckModule", - "printedName": "sendAckModule(ackGuid:status:msg:childId:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAllTwins", - "printedName": "getAllTwins()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "updateTwin", - "printedName": "updateTwin(key:value:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dispose", - "printedName": "dispose(sdkconnection:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "hasDefaultArg": true, - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getAttributes", - "printedName": "getAttributes(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getTwins", - "printedName": "getTwins(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getChildDevices", - "printedName": "getChildDevices(callBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "getDeviceCallBack", - "printedName": "getDeviceCallBack(deviceCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceCommand", - "printedName": "onDeviceCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onAttrChangeCommand", - "printedName": "onAttrChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onDeviceChangeCommand", - "printedName": "onDeviceChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onRuleChangeCommand", - "printedName": "onRuleChangeCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onOTACommand", - "printedName": "onOTACommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onModuleCommand", - "printedName": "onModuleCommand(commandCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onTwinChangeCommand", - "printedName": "onTwinChangeCommand(twinUpdateCallback:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "onFrequencyChangeCommand", - "printedName": "onFrequencyChangeCommand(dfValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "createChildDevice", - "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "deleteChildDevice", - "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Any?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ] - } - ], - "declKind": "Func", - "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:15IoTConnect2_AWS9SDKClientC", - "mangledName": "$s15IoTConnect2_AWS9SDKClientC", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "hasMissingDesignatedInitializers": true - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ - { - "kind": "Var", - "name": "reachabilityChanged", - "printedName": "reachabilityChanged", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Var", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage" - ], - "isFromExtension": true, - "isLet": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" - } - ], - "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", - "moduleName": "IoTConnect2_AWS", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ - { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "String", - "printedName": "String", - "children": [ - { - "kind": "Constructor", - "name": "init", - "printedName": "init(string:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", - "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", - "moduleName": "IoTConnect2_AWS", - "declAttributes": [ - "AccessControl" - ], - "isFromExtension": true, - "init_kind": "Designated" - } - ], - "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" - }, - { - "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" - }, - { - "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" - }, - { - "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:SK", - "mangledName": "$sSK" - }, - { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", - "children": [ - { - "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", - "children": [ - { - "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" - } - ] - } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", - "children": [ - { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", - "children": [ - { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", - "children": [ - { - "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sy", - "mangledName": "$sSy" - }, - { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", - "children": [ - { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] - } - ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ - { - "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ - { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", - "children": [ - { - "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" - } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - } - ] - } - ], - "json_format_version": 8 - }, - "ConstValues": [ - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1649, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1682, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 1849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 1919, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 1949, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 2026, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2363, - "length": 48, - "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2443, - "length": 41, - "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2516, - "length": 26, - "value": "\"$iothub\/twin\/GET\/?$rid=0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 2574, - "length": 20, - "value": "\"$iothub\/twin\/res\/#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 3942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 3955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4342, - "length": 52, - "value": "\"checkForIfFileExistAtPath false certPathFlag false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4427, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 40, - "value": "\"dataSDKOptions.ssl.certificatePath nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 4551, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 4877, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5609, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 5639, - "length": 5, - "value": "\"ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6677, - "length": 20, - "value": "\"Mqtt Connected ✅\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 6700, - "length": 18, - "value": "\"Mqtt Failed 🚫\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7069, - "length": 11, - "value": "\"text.json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7270, - "length": 19, - "value": "\"Save successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7342, - "length": 16, - "value": "\"Failed to save\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 7487, - "length": 8, - "value": "\"deinit\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 7981, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8164, - "length": 40, - "value": "\"df \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8173, - "length": 4, - "value": "\" diff\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8185, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8193, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 8609, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 8622, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 8973, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 9116, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 9129, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 9222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 9455, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10047, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10205, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10218, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10398, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 10411, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10602, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 10622, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 10672, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11127, - "length": 14, - "value": "\"p.topics.ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11361, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 11531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 11544, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11822, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11864, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11933, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 11971, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12565, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 12779, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 12912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 13053, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14013, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14131, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 14190, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14379, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14386, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14401, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14417, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14419, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14435, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14437, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14453, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14455, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14471, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14484, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14500, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14611, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14618, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14621, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14630, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14632, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14641, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14643, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14654, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14663, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14676, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 14685, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 15445, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15460, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15471, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 15830, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 15846, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16064, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16201, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16217, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Array", - "offset": 16507, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16522, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16531, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 16622, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16911, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16918, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16933, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16949, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16951, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16967, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16969, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16985, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 16987, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17003, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17016, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17032, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17155, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17162, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17165, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17174, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17176, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17185, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17187, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17196, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17198, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17207, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17220, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17229, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "Dictionary", - "offset": 17344, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17601, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17626, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17693, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17700, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17715, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17731, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17733, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17749, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17751, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17767, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17769, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17785, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17798, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17814, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17937, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 17962, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18025, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18032, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18035, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18044, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18046, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18055, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18057, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18066, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18068, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18077, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18090, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18099, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18334, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18359, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18422, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18429, - "length": 16, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18444, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18460, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18462, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18478, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18480, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18496, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18498, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18514, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18527, - "length": 17, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18543, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18745, - "length": 4, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18748, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18757, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18759, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18768, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18770, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18779, - "length": 3, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18781, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18790, - "length": 14, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18803, - "length": 10, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 18812, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19149, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19190, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19244, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19328, - "length": 6, - "value": "\"%.4f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19382, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19427, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19456, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19474, - "length": 24, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19497, - "length": 12, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 19665, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 19846, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 19859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 20283, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20411, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20424, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20716, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 20729, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 20975, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21127, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21153, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21361, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21418, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21446, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21466, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 21634, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 21647, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 21939, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22082, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22211, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22224, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22401, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22471, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 22641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22779, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 22931, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 22988, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23166, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23296, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23435, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "BooleanLiteral", - "offset": 23448, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 23505, - "length": 30, - "value": "\"Child Devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "IntegerLiteral", - "offset": 23908, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 24893, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", - "kind": "StringLiteral", - "offset": 25397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 141, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 161, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 317, - "length": 7, - "value": "\"https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 352, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 14, - "value": "\"Content-Type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 454, - "length": 8, - "value": "\"Accept\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 494, - "length": 16, - "value": "\"Content-Length\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 562, - "length": 18, - "value": "\"application\/json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 713, - "length": 25, - "value": "\"discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 873, - "length": 16, - "value": "\"\/api\/sdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", - "kind": "StringLiteral", - "offset": 1019, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 430, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "BooleanLiteral", - "offset": 468, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 521, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", - "kind": "StringLiteral", - "offset": 559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 29, - "value": "\"<>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 415, - "length": 37, - "value": "\"Discovery URL can not be blank\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 477, - "length": 62, - "value": "\"SDK options : set proper certificate file path and try again\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 564, - "length": 23, - "value": "\"Unable to get baseUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 612, - "length": 30, - "value": "\"Device information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 667, - "length": 37, - "value": "\"Device broker information not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 729, - "length": 24, - "value": "\"Please give CPID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 778, - "length": 28, - "value": "\"Please give uniqueID value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 831, - "length": 26, - "value": "\"Client connection closed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 882, - "length": 23, - "value": "\"Please give env value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 930, - "length": 47, - "value": "\"It does not matched with payload's 'uniqueId'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1002, - "length": 35, - "value": "\"Missing required parameter 'data'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1062, - "length": 49, - "value": "\"Publish data failed : MQTT connection not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1136, - "length": 31, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1192, - "length": 55, - "value": "\"Device is barred updateTwin() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1272, - "length": 69, - "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1366, - "length": 56, - "value": "\"Device is barred getAllTwins() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1447, - "length": 32, - "value": "\"<> \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1504, - "length": 72, - "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 52, - "value": "\"Device is barred SendAck() method is not permitted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1678, - "length": 30, - "value": "\" <>\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1733, - "length": 26, - "value": "\"Unable to scan directory\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1784, - "length": 26, - "value": "\"Connection not available\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1835, - "length": 27, - "value": "\"Attributes data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1887, - "length": 22, - "value": "\"Twins data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1934, - "length": 30, - "value": "\"Child devices data not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 1989, - "length": 20, - "value": "\"JSON parsing error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2047, - "length": 80, - "value": "\"Device not found. Device is not whitelisted to platform\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2153, - "length": 22, - "value": "\"Device is not active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2201, - "length": 63, - "value": "\"Un-Associated. Device has not any template associated with it\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2290, - "length": 70, - "value": "\"Device is not acquired. Device is created but it is in release state\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 67, - "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2479, - "length": 39, - "value": "\"Company not found as SID is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2543, - "length": 25, - "value": "\"Subscription is expired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2593, - "length": 24, - "value": "\"Connection Not Allowed\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2642, - "length": 31, - "value": "\"Invalid Bootstrap Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2698, - "length": 33, - "value": "\"Invalid Operational Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 73, - "value": "\"Please pass attribute value as String or check the format you have sent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2892, - "length": 42, - "value": "\"Device information received successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 18, - "value": "\"Device connected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3004, - "length": 21, - "value": "\"Device disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3051, - "length": 17, - "value": "\"Initializing...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3094, - "length": 15, - "value": "\"Connecting...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3135, - "length": 15, - "value": "\"Rechecking...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3176, - "length": 49, - "value": "\"BaseUrl received to sync the device information\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3251, - "length": 24, - "value": "\"Response Code : 0 'OK'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 43, - "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3370, - "length": 35, - "value": "\"Response Code : 2 'AUTO_REGISTER'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3431, - "length": 38, - "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3495, - "length": 37, - "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3558, - "length": 34, - "value": "\"Response Code : 5 'OBJECT_MOVED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3618, - "length": 36, - "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3680, - "length": 44, - "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3750, - "length": 14, - "value": "\"Publish data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3790, - "length": 36, - "value": "\"Twin property updated successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3852, - "length": 59, - "value": "\"Request sent successfully to get the all twin properties.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3937, - "length": 35, - "value": "\"Command : 0x01 : STANDARD_COMMAND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 3998, - "length": 34, - "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4058, - "length": 34, - "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4118, - "length": 33, - "value": "\"Command : 0x11 : SETTING_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4177, - "length": 34, - "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4237, - "length": 32, - "value": "\"Command : 0x13 : DEVICE_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4295, - "length": 38, - "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4359, - "length": 35, - "value": "\"Command acknowledgement success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4420, - "length": 40, - "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4486, - "length": 20, - "value": "\"Offline data saved\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4532, - "length": 45, - "value": "\"File has been created to store offline data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4603, - "length": 26, - "value": "\"Offline log file deleted\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4655, - "length": 23, - "value": "\"No offline data found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4704, - "length": 40, - "value": "\"Offline data publish :: Send\/Total :: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4770, - "length": 29, - "value": "\"Device already disconnected\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4825, - "length": 29, - "value": "\"Get attributes successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4880, - "length": 24, - "value": "\"Get twind successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 4930, - "length": 32, - "value": "\"Get child devices successfully\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5072, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5142, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5211, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5280, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5349, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5487, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5556, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5625, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "IntegerLiteral", - "offset": 5694, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", - "kind": "StringLiteral", - "offset": 5788, - "length": 7, - "value": "\"Error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 440, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Date+Extension.swift", - "kind": "StringLiteral", - "offset": 558, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 882, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 1157, - "length": 31, - "value": "\"CertificateConfig is empty...\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "Dictionary", - "offset": 1277, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 1668, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 2208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3263, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3388, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 3446, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 3678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4221, - "length": 14, - "value": "\"MQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 4234, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 4457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5223, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5305, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 5555, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 5887, - "length": 22, - "value": "\"Invalid json formate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6048, - "length": 61, - "value": "\"Unrecognized message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "StringLiteral", - "offset": 6108, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "IntegerLiteral", - "offset": 6278, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6313, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6367, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6524, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6713, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MqttClient\/MqttClientService.swift", - "kind": "BooleanLiteral", - "offset": 6769, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1741, - "length": 33, - "value": "\"ReachabilityChangedNotification\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 21, - "value": "\"reachabilityChanged\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2332, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2386, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2432, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2752, - "length": 10, - "value": "\"Cellular\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2794, - "length": 6, - "value": "\"WiFi\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2839, - "length": 15, - "value": "\"No Connection\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 2886, - "length": 13, - "value": "\"unavailable\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 3138, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3609, - "length": 15, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 3623, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4271, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 4382, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 5042, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 5154, - "length": 32, - "value": "\"uk.co.ashleymills.reachability\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "IntegerLiteral", - "offset": 7663, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 8670, - "length": 5, - "value": "\"nil\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9263, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "BooleanLiteral", - "offset": 9335, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 10149, - "length": 19, - "value": "\"unavailable flags\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13151, - "length": 3, - "value": "\"W\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13157, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13198, - "length": 3, - "value": "\"R\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13204, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13254, - "length": 3, - "value": "\"c\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13260, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13311, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13317, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13369, - "length": 3, - "value": "\"i\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13375, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13426, - "length": 3, - "value": "\"C\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13432, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13482, - "length": 3, - "value": "\"D\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13488, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13532, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13538, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13576, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13582, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13602, - "length": 39, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13607, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13611, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13616, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13620, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13624, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13628, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13632, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", - "kind": "StringLiteral", - "offset": 13640, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", - "kind": "BooleanLiteral", - "offset": 1116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 829, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 860, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1348, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1476, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1601, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1657, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 1820, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 1833, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2261, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2408, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2427, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2648, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2667, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2817, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 2828, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 2873, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 2886, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3113, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3434, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 3839, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 3950, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4034, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4040, - "length": 7, - "value": "\"\/uid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4048, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4060, - "length": 370, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4222, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4256, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4294, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4327, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 4394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4857, - "length": 54, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 4910, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5096, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5109, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 5206, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5572, - "length": 33, - "value": "\"Error parsing syncCall Response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5836, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 5849, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5923, - "length": 63, - "value": "\"identity pos data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 5985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6116, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6129, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6140, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6159, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6246, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6508, - "length": 52, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6538, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6559, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 6774, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 6787, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7662, - "length": 35, - "value": "\"certPathFlag \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 7858, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 7871, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8107, - "length": 86, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8130, - "length": 7, - "value": "\"d.p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8142, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8145, - "length": 1, - "value": "\"\/devices\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8176, - "length": 8, - "value": "\"d.p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8189, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8192, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8236, - "length": 60, - "value": "\"resourceUrl \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8263, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8295, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8476, - "length": 26, - "value": "\"Generated token \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8501, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 8749, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9031, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9204, - "length": 7, - "value": "\"d.p.n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9439, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9566, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9623, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 9642, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 9867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 9880, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10189, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10534, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10655, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10712, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 10731, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 10956, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 10969, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11099, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11218, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11275, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 11294, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11519, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 11532, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 11841, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12218, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12404, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 12423, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12648, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 12661, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 12970, - "length": 9, - "value": "\"d.sc.sf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13347, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13467, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13524, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 13543, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13768, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 13781, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 13911, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14100, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14119, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14344, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14357, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14583, - "length": 6, - "value": "\"d.ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 14602, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 14828, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 14841, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15186, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15389, - "length": 49, - "value": "\"Error parsing DSC: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 15437, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15621, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 15790, - "length": 22, - "value": "[(\"sdkStatus\", \"error\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 15899, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16229, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16384, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16582, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16603, - "length": 14, - "value": "\"reInitialise\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 16656, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 16773, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 16786, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17309, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17343, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 17485, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 17498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19165, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19298, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19371, - "length": 9, - "value": "\"connect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19437, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19501, - "length": 9, - "value": "\"success\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19660, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 19713, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 19765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20003, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20126, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 20179, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20421, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20680, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 20794, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 20823, - "length": 30, - "value": "\"Did recive 201 startMQTTCall\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21134, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21323, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21504, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21636, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21746, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21790, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 21904, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 21960, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22072, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22116, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22188, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 22237, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22347, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22391, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22494, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22555, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22661, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22706, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22816, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 22861, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 22973, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23017, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23121, - "length": 3, - "value": "\"f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23199, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23325, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23394, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23521, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23626, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 23643, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 23899, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 23912, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24434, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24694, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 24967, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25073, - "length": 6, - "value": "\"d.bu\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25145, - "length": 6, - "value": "\"sync\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25475, - "length": 60, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25534, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 25733, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25833, - "length": 58, - "value": "\"Success Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 25890, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26054, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 26251, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26370, - "length": 6, - "value": "\"d.rc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 26669, - "length": 5, - "value": "\"d.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27037, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27050, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27309, - "length": 5, - "value": "\"d.d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27463, - "length": 4, - "value": "\"sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27490, - "length": 6, - "value": "\"d.sc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 27968, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 27981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28150, - "length": 55, - "value": "\"Error parsing Sync Call: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 28204, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 28388, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 29296, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 29423, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30010, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30083, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 30122, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30228, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30243, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30291, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30305, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30352, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30407, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30471, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30488, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30542, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30552, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30580, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30607, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30720, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 30797, - "length": 33, - "value": "\"UniqueId not exist in 'devices'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31350, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31396, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31490, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31553, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31694, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31752, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 31771, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31912, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 31965, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32014, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32097, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32150, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32276, - "length": 5, - "value": "\"att\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32425, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32470, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32502, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32738, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 32790, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32835, - "length": 16, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 32850, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33001, - "length": 31, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33016, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33031, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 33199, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33275, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33317, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33346, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33407, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33527, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 33680, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 33733, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33834, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33860, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33936, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33964, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 33977, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 34124, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34225, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34251, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34327, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34355, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34368, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34562, - "length": 7, - "value": "\"data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 34740, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34766, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34824, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34866, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 34895, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 34961, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35086, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35250, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35362, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35388, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35469, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35579, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35605, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 35764, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35794, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35813, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35845, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35889, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35947, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 35966, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 36064, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36092, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36111, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36141, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36183, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36237, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36256, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36297, - "length": 11, - "value": "\"faultdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 36325, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37291, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37321, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37325, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37368, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37436, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37450, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37465, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37547, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37769, - "length": 16, - "value": "\"faultAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 37803, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37846, - "length": 15, - "value": "\"dataAttribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37914, - "length": 9, - "value": "\"dataAtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37928, - "length": 5, - "value": "\"key\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 37943, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38272, - "length": 42, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38313, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38345, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38462, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38586, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38615, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38828, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 38861, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 38971, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 38986, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 39069, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39129, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39173, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39228, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39272, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39533, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 39573, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39616, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39883, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39929, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 39974, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 40257, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40569, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40592, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40595, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40778, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40805, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 40808, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41179, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41183, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41453, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41462, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41481, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41663, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41883, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41916, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41932, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 41966, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 41982, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42017, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42173, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 42508, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42638, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42687, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 42738, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44339, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44388, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 44782, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44914, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 45014, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46818, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46867, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 46918, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47779, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 47783, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48071, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48080, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48099, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48269, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48305, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 48547, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48582, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 48723, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49925, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 49974, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 50025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51148, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51197, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51248, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 51950, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52039, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52174, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52207, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52225, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52259, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52343, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52675, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 52766, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 52870, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53507, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53534, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53537, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53890, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 53894, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54213, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54222, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 54241, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 54976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55609, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55829, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55862, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55912, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 55928, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 55963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 56111, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57017, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57021, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57311, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57320, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57339, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57750, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57945, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 57978, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 57994, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58028, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58044, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 58079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 58992, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59075, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59120, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59144, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59171, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59193, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59221, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59381, - "length": 14, - "value": "\"p.topics.rpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59655, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59688, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59706, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59740, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 59908, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 59989, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60086, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60182, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 60341, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 60447, - "length": 14, - "value": "\"p.topics.flt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60890, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60927, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 60990, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61108, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61146, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61386, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 61398, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61450, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61495, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61574, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61685, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61900, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 61955, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62215, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62270, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62533, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62687, - "length": 12, - "value": "\"YYYY-MM-dd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62783, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 62838, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 62993, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63089, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63144, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63371, - "length": 6, - "value": "8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 63418, - "length": 7, - "value": "-8121.2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63553, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63594, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63665, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63755, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63864, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63898, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 63944, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64128, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64191, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64394, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64431, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64494, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64612, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64650, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64890, - "length": 13, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 64902, - "length": 57, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64954, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 64999, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65078, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65321, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65365, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65402, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65504, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 65544, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 65618, - "length": 10, - "value": "\"HH:mm:ss\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65722, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65785, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65880, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 65965, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 66960, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67028, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67119, - "length": 5, - "value": "\"AND\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67180, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67354, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67422, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67468, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67495, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67541, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 67591, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67736, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67861, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67886, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 67922, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 67929, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68056, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68304, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68557, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68660, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68670, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 68879, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 68888, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69390, - "length": 14, - "value": "\"p.topics.erm\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69642, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69669, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69725, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 69752, - "length": 3, - "value": "\"#\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69810, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 69950, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70078, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70103, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70139, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 70146, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70313, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70330, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70515, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 70560, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 70812, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71050, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71238, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71325, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71391, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71486, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 71504, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71557, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71774, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71799, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71835, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 71842, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 71956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 72206, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72620, - "length": 3, - "value": "\">\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72690, - "length": 3, - "value": "\"<\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72760, - "length": 3, - "value": "\"=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72831, - "length": 4, - "value": "\"!=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72903, - "length": 4, - "value": "\">=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 72975, - "length": 4, - "value": "\"<=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73070, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73741, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73778, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73804, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 73975, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74060, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74129, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74195, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74270, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74303, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74383, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74387, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74419, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74444, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74447, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74524, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74602, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74645, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 74717, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 74760, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 74983, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75123, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75527, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75567, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75596, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75640, - "length": 3, - "value": "\"0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 75656, - "length": 3, - "value": "\"1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75685, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75732, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75820, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 75867, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76006, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76072, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76127, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76185, - "length": 6, - "value": "\"True\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76220, - "length": 7, - "value": "\"False\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76256, - "length": 6, - "value": "\"true\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76291, - "length": 7, - "value": "\"false\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76323, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76390, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76428, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76457, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76510, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76635, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76664, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76740, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76804, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 76865, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76919, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 76948, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77015, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77019, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77047, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77072, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 77075, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 77148, - "length": 4, - "value": "\"to\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77609, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77654, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77839, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 77926, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78254, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78273, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78318, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78479, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78566, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 78893, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78912, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 78957, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79118, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79205, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79290, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79403, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79462, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 79531, - "length": 35, - "value": "\"\\[\\d*\\.?\\d*\\,\\d*\\.?\\d*\\]\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79711, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79747, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 79761, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79825, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 79869, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80254, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80298, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 80356, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81042, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81158, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81181, - "length": 38, - "value": "\"Network available via Cellular Data.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81295, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81318, - "length": 29, - "value": "\"Network available via WiFi.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81405, - "length": 27, - "value": "\"Network is not available.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 81497, - "length": 22, - "value": "\"Network unavailable.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81564, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 81682, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82202, - "length": 11, - "value": "\"meta.edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82252, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82505, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82541, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82565, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 82568, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 82941, - "length": 3, - "value": "\"h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83015, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83022, - "length": 4, - "value": "3600" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83078, - "length": 3, - "value": "\"m\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83152, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 83159, - "length": 2, - "value": "60" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83437, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83611, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 83697, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 83851, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "FloatLiteral", - "offset": 83965, - "length": 3, - "value": "0.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 84054, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84334, - "length": 40, - "value": "\"timer userInfo \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84370, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84373, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84487, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84597, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 84629, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84658, - "length": 17, - "value": "\"fire timer \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 84949, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85330, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85426, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85433, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85596, - "length": 15, - "value": "\"p.topics.erpt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85768, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 85775, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "BooleanLiteral", - "offset": 86805, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 86883, - "length": 13, - "value": "\"p.topics.hb\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Dictionary", - "offset": 86969, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87260, - "length": 8, - "value": "31536000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87404, - "length": 32, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87421, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87424, - "length": 1, - "value": "\"\n\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 87435, - "length": 19, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "IntegerLiteral", - "offset": 87809, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "Array", - "offset": 87967, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88102, - "length": 27, - "value": "\"SharedAccessSignature sr=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88133, - "length": 21, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88150, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88153, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88157, - "length": 7, - "value": "\"&sig=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88167, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88190, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88193, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", - "kind": "StringLiteral", - "offset": 88197, - "length": 6, - "value": "\"&se=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 397, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 477, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 659, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 707, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 751, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 782, - "length": 15, - "value": "\"logs\/offline\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 845, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 1708, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2002, - "length": 6, - "value": "\"p.id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2053, - "length": 5, - "value": "\"p.h\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2103, - "length": 5, - "value": "\"p.p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 6, - "value": "\"p.un\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 2390, - "length": 7, - "value": "\"p.pwd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2484, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2518, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 2562, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 2976, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3391, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3430, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 3580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3690, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 3771, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4136, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4343, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4356, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4621, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4767, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 4834, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 4903, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5024, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5164, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5177, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5418, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 5469, - "length": 4, - "value": "1000" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 5596, - "length": 3, - "value": "0.5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 5721, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5775, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 5795, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6096, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6169, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 6254, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6414, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6508, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6590, - "length": 8, - "value": "\"file: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 6647, - "length": 8, - "value": "\"Active\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 6704, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7346, - "length": 18, - "value": "\"fileSize-Bytes: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 7491, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7694, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 7815, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 7896, - "length": 29, - "value": "\"PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8079, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8092, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8267, - "length": 31, - "value": "\"PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8297, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8417, - "length": 32, - "value": "\"PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8448, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 8726, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 8882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 8895, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9035, - "length": 70, - "value": "\"UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9104, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9306, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9481, - "length": 55, - "value": "\"PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 9535, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9723, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 9859, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10070, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10129, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10200, - "length": 4, - "value": "1500" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10262, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10340, - "length": 4, - "value": "1024" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 10402, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10585, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 10710, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10795, - "length": 41, - "value": "\"ExceedLimit-PackageObj-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 10985, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 10998, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11185, - "length": 43, - "value": "\"ExceedLimit-PackageObj-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11289, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 11505, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11747, - "length": 46, - "value": "\"ExceedLimit-PackageObj-Removed:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11792, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11920, - "length": 44, - "value": "\"ExceedLimit-PackageObj-After:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 11963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 12253, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12426, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12574, - "length": 82, - "value": "\"ExceedLimit-UpdateFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 12655, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 12852, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13039, - "length": 67, - "value": "\"ExceedLimit-PackageObj-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13105, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13288, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 13432, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13898, - "length": 45, - "value": "\"allFiles-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 13942, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14014, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14125, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14244, - "length": 47, - "value": "\"allFiles-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14290, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14652, - "length": 83, - "value": "\"allFiles-offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14734, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 14930, - "length": 3, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 14973, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15331, - "length": 83, - "value": "\"offlineProcess-fileSize-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15413, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15593, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15687, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 15862, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 15952, - "length": 74, - "value": "\"offlineProcess-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16025, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 16189, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16443, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16472, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16552, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16735, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16762, - "length": 40, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16801, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 16806, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 17051, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17201, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17214, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17383, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17396, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17461, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17511, - "length": 70, - "value": "\"createFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 17580, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17759, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 17825, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 18280, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18738, - "length": 72, - "value": "\"swapFilename-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 18809, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 18977, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19215, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19276, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19316, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19343, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19379, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19449, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19650, - "length": 47, - "value": "\"deleteFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19696, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19733, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19806, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19861, - "length": 46, - "value": "\"deleteFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 19906, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 19942, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 19989, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 20318, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20663, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 20676, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20779, - "length": 77, - "value": "\"deleteFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 20855, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21024, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21170, - "length": 70, - "value": "\"deleteFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21239, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21396, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21717, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 21730, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21809, - "length": 74, - "value": "\"deleteFilePath-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 21882, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22039, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 22230, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22277, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22325, - "length": 3, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22345, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22533, - "length": 53, - "value": "\"checkOfflineData-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22585, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22618, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22687, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22734, - "length": 52, - "value": "\"checkOfflineData-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 22785, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 22817, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 22860, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23064, - "length": 20, - "value": "\"tempArray-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23152, - "length": 19, - "value": "\"tempArray-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23283, - "length": 76, - "value": "\"checkOfflineData-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23358, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 23517, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 23603, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23706, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23714, - "length": 6, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 23719, - "length": 7, - "value": "\".json\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24114, - "length": 9, - "value": "\"Active_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 24611, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24624, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 24697, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25034, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25185, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Array", - "offset": 25282, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25339, - "length": 42, - "value": "\"checkAndSendOfflineData-Read-parse error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25524, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 25589, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25662, - "length": 44, - "value": "\"checkAndSendOfflineData-Main:\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 25705, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 25746, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26147, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26215, - "length": 68, - "value": "\"checkAndSendOfflineData-parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26282, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26446, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26664, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26677, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 26734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 26994, - "length": 13, - "value": "\"CNT-Start: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27207, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27431, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27473, - "length": 15, - "value": "\"CNT-After-1: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27645, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27667, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27684, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 27706, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 27719, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 27980, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28074, - "length": 4, - "value": "\"od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28082, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28159, - "length": 13, - "value": "\"p.topics.od\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 28311, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28503, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28553, - "length": 15, - "value": "\"CNT-After-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28729, - "length": 62, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28751, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28768, - "length": 1, - "value": "\" \/ \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 28790, - "length": 47, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28803, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 28884, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 28927, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 29084, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29629, - "length": 46, - "value": "\"publishTopicOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29665, - "length": 1, - "value": "\" \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29674, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29726, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 29781, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30225, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30268, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 30428, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30578, - "length": 48, - "value": "\"publishTwinPropertyDataOnMQTT: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 30625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31138, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31151, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31331, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31344, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31440, - "length": 44, - "value": "\"parse error: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 31483, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 31643, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32147, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32160, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32348, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32361, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 32929, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 32942, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33122, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33135, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33241, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33320, - "length": 3, - "value": "\":\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33382, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33417, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 33468, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33508, - "length": 33, - "value": "\"mqttDidDisconnect(_:withError:)\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33569, - "length": 15, - "value": "\"didDisconnect\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33618, - "length": 37, - "value": "\"[TRACE] [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33641, - "length": 1, - "value": "\"]: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 33654, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 33920, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34018, - "length": 13, - "value": "\"ack: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34030, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "Dictionary", - "offset": 34087, - "length": 24, - "value": "[(\"sdkStatus\", \"connect\")]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 34113, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34153, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34203, - "length": 8, - "value": "\"topics\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34265, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34350, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34392, - "length": 48, - "value": "\"twinPropertySubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34421, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34439, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34515, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34565, - "length": 5, - "value": "\"pub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34614, - "length": 48, - "value": "\"twinResponseSubTopic \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34643, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34661, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34737, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34787, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34891, - "length": 11, - "value": "\"subForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 34988, - "length": 11, - "value": "\"pubForAll\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 35516, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35529, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "FloatLiteral", - "offset": 35625, - "length": 3, - "value": "1.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 35731, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 35781, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36084, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36208, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 36263, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36321, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36431, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36548, - "length": 21, - "value": "\"new state: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36568, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 36771, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 36894, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37034, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37170, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37307, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37438, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37573, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37693, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 37830, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 37953, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38192, - "length": 37, - "value": "\"MQTT message did publish \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38548, - "length": 59, - "value": "\"message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38595, - "length": 1, - "value": "\", id: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38606, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 38692, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 38888, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 38957, - "length": 62, - "value": "\"Error parsing New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39018, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39064, - "length": 63, - "value": "\"Success New Message: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 39126, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39359, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39370, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39430, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39476, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39641, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39652, - "length": 2, - "value": "-1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 39712, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 39758, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40130, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40143, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40791, - "length": 27, - "value": "\"Did recive 201 MQTTClient\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 40880, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 40934, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 40981, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41175, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41188, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41288, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41342, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41389, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 41575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41588, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41688, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41742, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 41921, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 41976, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42155, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42210, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42389, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 42788, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42801, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 42897, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 42951, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44228, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44241, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 44336, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44391, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44659, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44672, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 44963, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 44976, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45071, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45126, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45323, - "length": 2, - "value": "13" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45378, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45572, - "length": 2, - "value": "14" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 45815, - "length": 2, - "value": "15" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 45870, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46061, - "length": 2, - "value": "16" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46116, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46410, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46423, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 46721, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 46734, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 46956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47011, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47203, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47258, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47456, - "length": 2, - "value": "21" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47511, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 47799, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47812, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 47931, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 47981, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 48662, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 48675, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 48870, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 49149, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49162, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49258, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49308, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49489, - "length": 2, - "value": "17" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49540, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49721, - "length": 2, - "value": "18" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 49772, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 49956, - "length": 2, - "value": "19" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50007, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50190, - "length": 2, - "value": "20" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50241, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 50350, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50417, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 50583, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50730, - "length": 43, - "value": "\"subscribed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50753, - "length": 1, - "value": "\", failed: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50772, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50874, - "length": 18, - "value": "\"topic: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 50891, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51139, - "length": 44, - "value": "\"mqttDidDisconnect: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51182, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51314, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51465, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51478, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 51793, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 51945, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "BooleanLiteral", - "offset": 52015, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52087, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52211, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "StringLiteral", - "offset": 52256, - "length": 11, - "value": "\"sdkStatus\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", - "kind": "IntegerLiteral", - "offset": 52300, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 535, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1206, - "length": 5, - "value": "\"c2d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "BooleanLiteral", - "offset": 1374, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "IntegerLiteral", - "offset": 1433, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", - "kind": "StringLiteral", - "offset": 1748, - "length": 25, - "value": "\"Wrong type for JSONNull\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2219, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "Array", - "offset": 2319, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2400, - "length": 27, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "StringLiteral", - "offset": 2426, - "length": 52, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2988, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "IntegerLiteral", - "offset": 2994, - "length": 3, - "value": "299" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3507, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3551, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPService.swift", - "kind": "BooleanLiteral", - "offset": 3609, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 611, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 617, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 821, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "IntegerLiteral", - "offset": 827, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1007, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1489, - "length": 54, - "value": "\"Filepath: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 1542, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 1898, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2138, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "BooleanLiteral", - "offset": 2400, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2725, - "length": 39, - "value": "\"Ooops! Something went wrong: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Storage\/CacheService.swift", - "kind": "StringLiteral", - "offset": 2763, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 522, - "length": 41, - "value": "\"Illegal regular expression: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 561, - "length": 1, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 669, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "Array", - "offset": 747, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1000, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Utilities\/Extension.swift", - "kind": "StringLiteral", - "offset": 1025, - "length": 6, - "value": "\"%.0f\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 123, - "length": 6, - "value": "\"PROD\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 197, - "length": 7, - "value": "\"PREQA\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 5, - "value": "\"poc\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 387, - "length": 4, - "value": "\"az\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 407, - "length": 5, - "value": "\"aws\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 470, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 511, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 747, - "length": 19, - "value": "\"BaseURL \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1099, - "length": 39, - "value": "\"getBaseURL response \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1134, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1137, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1206, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1370, - "length": 47, - "value": "\"getBaseURL error \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 1444, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1959, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 1980, - "length": 24, - "value": "\"makeSyncCall \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2003, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2121, - "length": 54, - "value": "\"makeSyncCall response\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2174, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2718, - "length": 5, - "value": "\"UTC\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 2836, - "length": 30, - "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3296, - "length": 15, - "value": "\"code: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3310, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3375, - "length": 13, - "value": "\"logs\/debug\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3443, - "length": 11, - "value": "\"error.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3508, - "length": 10, - "value": "\"info.txt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3594, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3703, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3806, - "length": 60, - "value": "\"\n[\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3817, - "length": 1, - "value": "\"] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3827, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3836, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3848, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 3865, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4363, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 4491, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5069, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 5196, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5627, - "length": 53, - "value": "\"deleteAllLogFile-directoryContents-Before: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5679, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5712, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5781, - "length": 11, - "value": "\".DS_Store\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5828, - "length": 52, - "value": "\"deleteAllLogFile-directoryContents-After: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 5879, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 5911, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6221, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6234, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6325, - "length": 83, - "value": "\"deleteAllLogFile-Remove-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6407, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6568, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6690, - "length": 76, - "value": "\"deleteAllLogFile-error.localizedDescription: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 6765, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 6914, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7165, - "length": 13, - "value": "\"p.topics.di\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7214, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7246, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7251, - "length": 25, - "value": "\"Data sync successfully.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 14, - "value": "\"logs\/offline\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 7714, - "length": 12, - "value": "\"logs\/debug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 8448, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8596, - "length": 81, - "value": "\"[ERR_IN01] \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8616, - "length": 1, - "value": "\" [\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8628, - "length": 1, - "value": "\"_\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8643, - "length": 1, - "value": "\"] : \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8676, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8827, - "length": 40, - "value": "\"FolderURL-(\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8852, - "length": 1, - "value": "\": \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 8866, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 9413, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10029, - "length": 71, - "value": "\"ERROR: SecPKCS12Import returned errSecAuthFailed. Incorrect password?\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10145, - "length": 59, - "value": "\"Failed to open the certificate file-2: \"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10203, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10326, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 10435, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 10901, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11050, - "length": 8, - "value": "\"number\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11124, - "length": 8, - "value": "\"string\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11198, - "length": 8, - "value": "\"object\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11244, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 11444, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 11484, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11556, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11575, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11607, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11760, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11785, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11938, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11958, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11970, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 11990, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12002, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12063, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 12132, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12168, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12190, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12227, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12238, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12273, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12283, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12339, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 12457, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12491, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12722, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12796, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12857, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12927, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 12981, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13033, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 13239, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13360, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13380, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13422, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13480, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 13549, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13651, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13792, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 13909, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14150, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14180, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 14318, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14350, - "length": 8, - "value": "\"parent\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14372, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14405, - "length": 7, - "value": "\"sTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14416, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14447, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 14457, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14511, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14531, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14548, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14567, - "length": 3, - "value": "\"-\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14584, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14646, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14706, - "length": 4, - "value": "\"tw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 14907, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Dictionary", - "offset": 15012, - "length": 3, - "value": "[]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15133, - "length": 11, - "value": "\"localName\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15153, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15200, - "length": 5, - "value": "\"agt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15258, - "length": 7, - "value": "\"count\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "IntegerLiteral", - "offset": 15327, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15429, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15570, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15687, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "Array", - "offset": 15841, - "length": 15, - "value": "[\"s\", \"m\", \"h\"]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 15875, - "length": 3, - "value": "\",\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16012, - "length": 20, - "value": "\"tumblingWindowTime\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16082, - "length": 10, - "value": "\"lastChar\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16139, - "length": 18, - "value": "\"edgeAttributeKey\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16205, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16255, - "length": 9, - "value": "\"attrTag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16310, - "length": 9, - "value": "\"devices\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16488, - "length": 8, - "value": "\"status\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "BooleanLiteral", - "offset": 16498, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16504, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16513, - "length": 9, - "value": "\"mainObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16533, - "length": 8, - "value": "\"intObj\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16551, - "length": 9, - "value": "\"message\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 16562, - "length": 76, - "value": "\"Edge data set and started the interval as per attribute's tumbling window.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17074, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", - "kind": "StringLiteral", - "offset": 17662, - "length": 3, - "value": "\".\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1262, - "length": 10, - "value": "\"log:mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", - "kind": "StringLiteral", - "offset": 1297, - "length": 11, - "value": "\"log:https\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", - "kind": "StringLiteral", - "offset": 536, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 155, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 177, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 198, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 222, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", - "kind": "StringLiteral", - "offset": 248, - "length": 7, - "value": "\"PATCH\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 110, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 135, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 163, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 194, - "length": 3, - "value": "101" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 233, - "length": 3, - "value": "102" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 274, - "length": 3, - "value": "103" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 310, - "length": 3, - "value": "104" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 347, - "length": 3, - "value": "105" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 377, - "length": 3, - "value": "106" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 408, - "length": 3, - "value": "107" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 439, - "length": 3, - "value": "108" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 469, - "length": 3, - "value": "109" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 501, - "length": 3, - "value": "110" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 532, - "length": 3, - "value": "111" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 568, - "length": 3, - "value": "112" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 610, - "length": 3, - "value": "113" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 650, - "length": 3, - "value": "115" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 698, - "length": 3, - "value": "116" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 743, - "length": 3, - "value": "117" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 786, - "length": 3, - "value": "199" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 828, - "length": 3, - "value": "200" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 873, - "length": 3, - "value": "201" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 913, - "length": 3, - "value": "202" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 942, - "length": 3, - "value": "203" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 974, - "length": 3, - "value": "204" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1006, - "length": 3, - "value": "205" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1035, - "length": 3, - "value": "221" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 1064, - "length": 3, - "value": "222" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1118, - "length": 33, - "value": "\"https:\/\/discovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1186, - "length": 61, - "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1285, - "length": 36, - "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1392, - "length": 40, - "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 1497, - "length": 6, - "value": "\"?pf=\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2227, - "length": 89, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2254, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2284, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2295, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2315, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2406, - "length": 92, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2436, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2448, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2466, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2477, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2492, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2497, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2549, - "length": 93, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2580, - "length": 1, - "value": "\"\/api\/v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2592, - "length": 1, - "value": "\"\/dsdk\/cpid\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2610, - "length": 1, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2621, - "length": 1, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 1, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2641, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 2845, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2927, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2960, - "length": 5, - "value": "\"2.1\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 2996, - "length": 6, - "value": "\"mqtt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3033, - "length": 6, - "value": "\"http\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3070, - "length": 6, - "value": "\"amqp\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3107, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3137, - "length": 9, - "value": "\"isDebug\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3177, - "length": 14, - "value": "\"discoveryUrl\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3221, - "length": 13, - "value": "\"Certificate\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3261, - "length": 10, - "value": "\"Password\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 3301, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3338, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "BooleanLiteral", - "offset": 3399, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "FloatLiteral", - "offset": 3442, - "length": 4, - "value": "10.0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "Dictionary", - "offset": 3482, - "length": 63, - "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3593, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3621, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3649, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3677, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3723, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3751, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3783, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3814, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3861, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3884, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3911, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3946, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3969, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 3992, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4015, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4041, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4065, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4098, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4130, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4203, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4240, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4279, - "length": 8, - "value": "\"option\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4319, - "length": 11, - "value": "\"attribute\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4360, - "length": 9, - "value": "\"setting\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4403, - "length": 10, - "value": "\"protocol\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4442, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 11, - "value": "\"sdkConfig\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 4520, - "length": 6, - "value": "\"rule\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4579, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4622, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4658, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4696, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4734, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4769, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4805, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4874, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4909, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4943, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 4977, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5011, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5045, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5079, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5113, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5147, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5181, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5215, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "IntegerLiteral", - "offset": 5250, - "length": 2, - "value": "12" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5301, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5331, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5359, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5390, - "length": 6, - "value": "\"type\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5424, - "length": 4, - "value": "\"st\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5457, - "length": 5, - "value": "\"msg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5487, - "length": 5, - "value": "\"cid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5550, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5580, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5610, - "length": 6, - "value": "\"meta\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5642, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5673, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5726, - "length": 4, - "value": "\"df\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 4, - "value": "\"cd\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 4, - "value": "\"at\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5817, - "length": 5, - "value": "\"gtw\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5848, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5877, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5908, - "length": 6, - "value": "\"edge\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5940, - "length": 4, - "value": "\"pf\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 5971, - "length": 5, - "value": "\"hwv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6003, - "length": 5, - "value": "\"swv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6033, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6089, - "length": 6, - "value": "\"cpId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6126, - "length": 10, - "value": "\"uniqueId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6167, - "length": 3, - "value": "\"t\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6201, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6236, - "length": 3, - "value": "\"d\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6270, - "length": 5, - "value": "\"sdk\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6306, - "length": 3, - "value": "\"l\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6340, - "length": 3, - "value": "\"e\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6374, - "length": 3, - "value": "\"v\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6408, - "length": 6, - "value": "\"data\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6445, - "length": 4, - "value": "\"id\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6480, - "length": 4, - "value": "\"tg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6515, - "length": 4, - "value": "\"dt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6550, - "length": 3, - "value": "\"g\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6584, - "length": 7, - "value": "\"error\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6622, - "length": 9, - "value": "\"desired\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6662, - "length": 6, - "value": "\"time\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6699, - "length": 5, - "value": "\"dtg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6735, - "length": 5, - "value": "\"has\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6771, - "length": 6, - "value": "\"attr\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6808, - "length": 5, - "value": "\"set\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6844, - "length": 3, - "value": "\"r\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6878, - "length": 5, - "value": "\"ota\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6921, - "length": 4, - "value": "\"cv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 6963, - "length": 4, - "value": "\"sg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7005, - "length": 4, - "value": "\"ct\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7047, - "length": 6, - "value": "\"guid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7091, - "length": 9, - "value": "\"command\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7138, - "length": 5, - "value": "\"ack\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7181, - "length": 7, - "value": "\"ackId\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7226, - "length": 4, - "value": "\"ec\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7268, - "length": 4, - "value": "\"rg\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7310, - "length": 4, - "value": "\"dv\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7352, - "length": 4, - "value": "\"ln\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7394, - "length": 9, - "value": "\"rptdata\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7441, - "length": 4, - "value": "\"mt\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7483, - "length": 4, - "value": "\"dn\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", - "kind": "StringLiteral", - "offset": 7525, - "length": 3, - "value": "\"p\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 313, - "length": 6, - "value": "\"nine\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 327, - "length": 7, - "value": "\"M_ios\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 341, - "length": 5, - "value": "\"2.0\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1037, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1119, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1205, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1286, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1370, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "BooleanLiteral", - "offset": 1449, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2258, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2266, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2270, - "length": 8, - "value": "\"\/lang\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2281, - "length": 9, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2289, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2293, - "length": 7, - "value": "\"\/ver\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2303, - "length": 8, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2310, - "length": 5, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2314, - "length": 7, - "value": "\"\/env\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2324, - "length": 45, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2368, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2740, - "length": 10, - "value": "\"https:\/\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2758, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2822, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2856, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 2885, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2905, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "IntegerLiteral", - "offset": 2948, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPManager.swift", - "kind": "StringLiteral", - "offset": 3064, - "length": 3, - "value": "\"\/\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 2413, - "length": 26, - "value": "\"SDKClient initialize AWS\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5227, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5247, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5356, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5475, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5495, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5604, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5725, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 5745, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 5854, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 6625, - "length": 2, - "value": "\"\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 9646, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10664, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10686, - "length": 24, - "value": "\"Child device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10736, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10926, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 10948, - "length": 27, - "value": "\"Message missing child tag\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 10989, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11011, - "length": 39, - "value": "\"Message missing child device uniqueid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11064, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11086, - "length": 43, - "value": "\"Message missing child device display name\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11143, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11165, - "length": 26, - "value": "\"Gateway device not found\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11205, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11227, - "length": 47, - "value": "\"Could not create device, something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11288, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11310, - "length": 31, - "value": "\"Child device tag is not valid\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11355, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11377, - "length": 56, - "value": "\"Child device tag name cannot be same as Gateway device\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11447, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11469, - "length": 35, - "value": "\"Child uniqueid is already exists.\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11518, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11540, - "length": 49, - "value": "\"Child uniqueid should not exceed 128 characters\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "StringLiteral", - "offset": 11626, - "length": 22, - "value": "\"Something went wrong\"" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 11918, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12054, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12318, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", - "kind": "IntegerLiteral", - "offset": 12454, - "length": 1, - "value": "0" - } - ] -} \ No newline at end of file diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc deleted file mode 100644 index e12d362..0000000 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS deleted file mode 100644 index 6c598b9..0000000 Binary files a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS and /dev/null differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml deleted file mode 100644 index b53af28..0000000 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml +++ /dev/null @@ -1,1831 +0,0 @@ ---- -triple: 'arm64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' -relocations: - - { offsetInCU: 0x34, offset: 0x5847B, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6B910, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x584B0, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6B948, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x58515, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3E0D0, symBinAddr: 0x85318, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x58540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xBC, symBinAddr: 0x22D0, symSize: 0x44 } - - { offsetInCU: 0x96, offset: 0x5855C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x2314, symSize: 0x4 } - - { offsetInCU: 0xB2, offset: 0x58578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x104, symBinAddr: 0x2318, symSize: 0x2BC } - - { offsetInCU: 0x10B, offset: 0x585D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x3C0, symBinAddr: 0x25D4, symSize: 0xDB0 } - - { offsetInCU: 0x45B, offset: 0x58921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x1170, symBinAddr: 0x3384, symSize: 0x384 } - - { offsetInCU: 0x4BE, offset: 0x58984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x14F4, symBinAddr: 0x3708, symSize: 0x20 } - - { offsetInCU: 0x4EB, offset: 0x589B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x16C0, symBinAddr: 0x38D4, symSize: 0x698 } - - { offsetInCU: 0x7EF, offset: 0x58CB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x1D58, symBinAddr: 0x3F6C, symSize: 0x3D4 } - - { offsetInCU: 0xAA5, offset: 0x58F6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x212C, symBinAddr: 0x4340, symSize: 0x914 } - - { offsetInCU: 0xF7B, offset: 0x59441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2A40, symBinAddr: 0x4C54, symSize: 0x668 } - - { offsetInCU: 0x1375, offset: 0x5983B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x30A8, symBinAddr: 0x52BC, symSize: 0x3C18 } - - { offsetInCU: 0x2E6B, offset: 0x5B331, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6CD0, symBinAddr: 0x8ED4, symSize: 0x150 } - - { offsetInCU: 0x2F55, offset: 0x5B41B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x6E20, symBinAddr: 0x9024, symSize: 0x304 } - - { offsetInCU: 0x3146, offset: 0x5B60C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7124, symBinAddr: 0x9328, symSize: 0x3C8 } - - { offsetInCU: 0x34AF, offset: 0x5B975, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x74EC, symBinAddr: 0x96F0, symSize: 0x2E4 } - - { offsetInCU: 0x3683, offset: 0x5BB49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x77D0, symBinAddr: 0x99D4, symSize: 0x240 } - - { offsetInCU: 0x3815, offset: 0x5BCDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x7A10, symBinAddr: 0x9C14, symSize: 0x244 } - - { offsetInCU: 0x39A7, offset: 0x5BE6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C54, symBinAddr: 0x9E58, symSize: 0x430 } - - { offsetInCU: 0x3B10, offset: 0x5BFD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x8084, symBinAddr: 0xA288, symSize: 0x650 } - - { offsetInCU: 0x3E23, offset: 0x5C2E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x86D4, symBinAddr: 0xA8D8, symSize: 0x224 } - - { offsetInCU: 0x4034, offset: 0x5C4FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x9B20, symBinAddr: 0xBD24, symSize: 0x1514 } - - { offsetInCU: 0x5710, offset: 0x5DBD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x2254, symSize: 0x3C } - - { offsetInCU: 0x5740, offset: 0x5DC06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0x7C, symBinAddr: 0x2290, symSize: 0x40 } - - { offsetInCU: 0x5909, offset: 0x5DDCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1514, symBinAddr: 0x3728, symSize: 0x8 } - - { offsetInCU: 0x591D, offset: 0x5DDE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x151C, symBinAddr: 0x3730, symSize: 0x3C } - - { offsetInCU: 0x5931, offset: 0x5DDF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1558, symBinAddr: 0x376C, symSize: 0x168 } - - { offsetInCU: 0x5E77, offset: 0x5E33D, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x896C, symBinAddr: 0xAB70, symSize: 0xC } - - { offsetInCU: 0x5E8B, offset: 0x5E351, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x8978, symBinAddr: 0xAB7C, symSize: 0x4 } - - { offsetInCU: 0x5E9F, offset: 0x5E365, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x897C, symBinAddr: 0xAB80, symSize: 0x20 } - - { offsetInCU: 0x5EB3, offset: 0x5E379, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x899C, symBinAddr: 0xABA0, symSize: 0x28 } - - { offsetInCU: 0x5FC4, offset: 0x5E48A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8ED4, symBinAddr: 0xB0D8, symSize: 0x2C } - - { offsetInCU: 0x5FD8, offset: 0x5E49E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8F00, symBinAddr: 0xB104, symSize: 0x2C } - - { offsetInCU: 0x5FEC, offset: 0x5E4B2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8F6C, symBinAddr: 0xB170, symSize: 0x2C } - - { offsetInCU: 0x6000, offset: 0x5E4C6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8F98, symBinAddr: 0xB19C, symSize: 0x2C } - - { offsetInCU: 0x6035, offset: 0x5E4FB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x91B4, symBinAddr: 0xB3B8, symSize: 0x210 } - - { offsetInCU: 0x6087, offset: 0x5E54D, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x93C4, symBinAddr: 0xB5C8, symSize: 0x68 } - - { offsetInCU: 0x60E8, offset: 0x5E5AE, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x9588, symBinAddr: 0xB78C, symSize: 0x1DC } - - { offsetInCU: 0x6633, offset: 0x5EAF9, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xB0A4, symBinAddr: 0xD2A8, symSize: 0x40 } - - { offsetInCU: 0x6647, offset: 0x5EB0D, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xB0E4, symBinAddr: 0xD2E8, symSize: 0x20 } - - { offsetInCU: 0x665B, offset: 0x5EB21, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xB104, symBinAddr: 0xD308, symSize: 0x10 } - - { offsetInCU: 0x666F, offset: 0x5EB35, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xB114, symBinAddr: 0xD318, symSize: 0x3C } - - { offsetInCU: 0x6683, offset: 0x5EB49, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xB1B0, symBinAddr: 0xD3B4, symSize: 0x44 } - - { offsetInCU: 0x6697, offset: 0x5EB5D, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB360, symBinAddr: 0xD564, symSize: 0x10 } - - { offsetInCU: 0x66AB, offset: 0x5EB71, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB370, symBinAddr: 0xD574, symSize: 0x10 } - - { offsetInCU: 0x66BF, offset: 0x5EB85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xB380, symBinAddr: 0xD584, symSize: 0x5C } - - { offsetInCU: 0x66D3, offset: 0x5EB99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xB3DC, symBinAddr: 0xD5E0, symSize: 0x30C } - - { offsetInCU: 0x66E7, offset: 0x5EBAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB6E8, symBinAddr: 0xD8EC, symSize: 0x240 } - - { offsetInCU: 0x66FB, offset: 0x5EBC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xB928, symBinAddr: 0xDB2C, symSize: 0x70 } - - { offsetInCU: 0x670F, offset: 0x5EBD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xB998, symBinAddr: 0xDB9C, symSize: 0x34 } - - { offsetInCU: 0x6723, offset: 0x5EBE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xB9CC, symBinAddr: 0xDBD0, symSize: 0x174 } - - { offsetInCU: 0x6737, offset: 0x5EBFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xBB40, symBinAddr: 0xDD44, symSize: 0xB4 } - - { offsetInCU: 0x674B, offset: 0x5EC11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xBBF4, symBinAddr: 0xDDF8, symSize: 0x10 } - - { offsetInCU: 0x675F, offset: 0x5EC25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xBC04, symBinAddr: 0xDE08, symSize: 0x34 } - - { offsetInCU: 0x6773, offset: 0x5EC39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xBCB8, symBinAddr: 0xDEBC, symSize: 0x5C } - - { offsetInCU: 0x6787, offset: 0x5EC4D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBDB8, symBinAddr: 0xDFBC, symSize: 0x2C } - - { offsetInCU: 0x679B, offset: 0x5EC61, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBDE4, symBinAddr: 0xDFE8, symSize: 0x2C } - - { offsetInCU: 0x67AF, offset: 0x5EC75, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBE10, symBinAddr: 0xE014, symSize: 0x2C } - - { offsetInCU: 0x67C3, offset: 0x5EC89, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBE3C, symBinAddr: 0xE040, symSize: 0x2C } - - { offsetInCU: 0x67D7, offset: 0x5EC9D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBE68, symBinAddr: 0xE06C, symSize: 0x2C } - - { offsetInCU: 0x67EB, offset: 0x5ECB1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBE94, symBinAddr: 0xE098, symSize: 0x2C } - - { offsetInCU: 0x67FF, offset: 0x5ECC5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBEC0, symBinAddr: 0xE0C4, symSize: 0x2C } - - { offsetInCU: 0x6C07, offset: 0x5F0CD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x89D8, symBinAddr: 0xABDC, symSize: 0x14 } - - { offsetInCU: 0x6C45, offset: 0x5F10B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x89F8, symBinAddr: 0xABFC, symSize: 0x8 } - - { offsetInCU: 0x6C94, offset: 0x5F15A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8A00, symBinAddr: 0xAC04, symSize: 0x14 } - - { offsetInCU: 0x6D31, offset: 0x5F1F7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8A14, symBinAddr: 0xAC18, symSize: 0x14 } - - { offsetInCU: 0x6DC6, offset: 0x5F28C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8A28, symBinAddr: 0xAC2C, symSize: 0x14 } - - { offsetInCU: 0x6E63, offset: 0x5F329, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8A3C, symBinAddr: 0xAC40, symSize: 0x30 } - - { offsetInCU: 0x6FD6, offset: 0x5F49C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8A6C, symBinAddr: 0xAC70, symSize: 0x2C } - - { offsetInCU: 0x7163, offset: 0x5F629, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8A98, symBinAddr: 0xAC9C, symSize: 0x24 } - - { offsetInCU: 0x724F, offset: 0x5F715, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8ABC, symBinAddr: 0xACC0, symSize: 0x14 } - - { offsetInCU: 0x72B5, offset: 0x5F77B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8AD0, symBinAddr: 0xACD4, symSize: 0x14 } - - { offsetInCU: 0x731B, offset: 0x5F7E1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8AE4, symBinAddr: 0xACE8, symSize: 0x14 } - - { offsetInCU: 0x7390, offset: 0x5F856, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8AF8, symBinAddr: 0xACFC, symSize: 0x14 } - - { offsetInCU: 0x7439, offset: 0x5F8FF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8B0C, symBinAddr: 0xAD10, symSize: 0x14 } - - { offsetInCU: 0x74B0, offset: 0x5F976, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8B20, symBinAddr: 0xAD24, symSize: 0x14 } - - { offsetInCU: 0x7568, offset: 0x5FA2E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8B34, symBinAddr: 0xAD38, symSize: 0x14 } - - { offsetInCU: 0x7602, offset: 0x5FAC8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8B48, symBinAddr: 0xAD4C, symSize: 0x10 } - - { offsetInCU: 0x766A, offset: 0x5FB30, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8B58, symBinAddr: 0xAD5C, symSize: 0x28 } - - { offsetInCU: 0x7686, offset: 0x5FB4C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8B80, symBinAddr: 0xAD84, symSize: 0x14 } - - { offsetInCU: 0x7702, offset: 0x5FBC8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8BB0, symBinAddr: 0xADB4, symSize: 0x14 } - - { offsetInCU: 0x7733, offset: 0x5FBF9, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8BC4, symBinAddr: 0xADC8, symSize: 0x14 } - - { offsetInCU: 0x7764, offset: 0x5FC2A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8BD8, symBinAddr: 0xADDC, symSize: 0x14 } - - { offsetInCU: 0x7795, offset: 0x5FC5B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8BEC, symBinAddr: 0xADF0, symSize: 0x30 } - - { offsetInCU: 0x77C4, offset: 0x5FC8A, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8C1C, symBinAddr: 0xAE20, symSize: 0x2C } - - { offsetInCU: 0x77F5, offset: 0x5FCBB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8C48, symBinAddr: 0xAE4C, symSize: 0x24 } - - { offsetInCU: 0x7826, offset: 0x5FCEC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8C6C, symBinAddr: 0xAE70, symSize: 0x14 } - - { offsetInCU: 0x7857, offset: 0x5FD1D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8C80, symBinAddr: 0xAE84, symSize: 0x14 } - - { offsetInCU: 0x7888, offset: 0x5FD4E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8C94, symBinAddr: 0xAE98, symSize: 0x14 } - - { offsetInCU: 0x78B9, offset: 0x5FD7F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8CA8, symBinAddr: 0xAEAC, symSize: 0x14 } - - { offsetInCU: 0x78EA, offset: 0x5FDB0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8CBC, symBinAddr: 0xAEC0, symSize: 0x14 } - - { offsetInCU: 0x791B, offset: 0x5FDE1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8CD0, symBinAddr: 0xAED4, symSize: 0x14 } - - { offsetInCU: 0x794C, offset: 0x5FE12, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8CE4, symBinAddr: 0xAEE8, symSize: 0x14 } - - { offsetInCU: 0x797D, offset: 0x5FE43, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8CF8, symBinAddr: 0xAEFC, symSize: 0x10 } - - { offsetInCU: 0x79AE, offset: 0x5FE74, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8D08, symBinAddr: 0xAF0C, symSize: 0x28 } - - { offsetInCU: 0x79CA, offset: 0x5FE90, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8D30, symBinAddr: 0xAF34, symSize: 0x14 } - - { offsetInCU: 0x7A0A, offset: 0x5FED0, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D50, symBinAddr: 0xAF54, symSize: 0x40 } - - { offsetInCU: 0x7A88, offset: 0x5FF4E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8D90, symBinAddr: 0xAF94, symSize: 0x70 } - - { offsetInCU: 0x7B1B, offset: 0x5FFE1, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E48, symBinAddr: 0xB04C, symSize: 0x4 } - - { offsetInCU: 0x7B3B, offset: 0x60001, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E48, symBinAddr: 0xB04C, symSize: 0x4 } - - { offsetInCU: 0x7B5B, offset: 0x60021, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E4C, symBinAddr: 0xB050, symSize: 0x4 } - - { offsetInCU: 0x7B7B, offset: 0x60041, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8E4C, symBinAddr: 0xB050, symSize: 0x4 } - - { offsetInCU: 0x7BA1, offset: 0x60067, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8E50, symBinAddr: 0xB054, symSize: 0x40 } - - { offsetInCU: 0x7C10, offset: 0x600D6, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8E90, symBinAddr: 0xB094, symSize: 0x8 } - - { offsetInCU: 0x7C3B, offset: 0x60101, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8E98, symBinAddr: 0xB09C, symSize: 0x3C } - - { offsetInCU: 0x7C6C, offset: 0x60132, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8FC4, symBinAddr: 0xB1C8, symSize: 0x14 } - - { offsetInCU: 0x7C9D, offset: 0x60163, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8FD8, symBinAddr: 0xB1DC, symSize: 0x3C } - - { offsetInCU: 0x7CDD, offset: 0x601A3, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x9014, symBinAddr: 0xB218, symSize: 0x88 } - - { offsetInCU: 0x7D5E, offset: 0x60224, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x9130, symBinAddr: 0xB334, symSize: 0x84 } - - { offsetInCU: 0x7D92, offset: 0x60258, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0x9764, symBinAddr: 0xB968, symSize: 0xB0 } - - { offsetInCU: 0x7E7E, offset: 0x60344, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x9814, symBinAddr: 0xBA18, symSize: 0x1F0 } - - { offsetInCU: 0x80AD, offset: 0x60573, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x80CD, offset: 0x60593, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x80E1, offset: 0x605A7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8101, offset: 0x605C7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8115, offset: 0x605DB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8129, offset: 0x605EF, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x813D, offset: 0x60603, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xB034, symBinAddr: 0xD238, symSize: 0x38 } - - { offsetInCU: 0x8220, offset: 0x606E6, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8240, offset: 0x60706, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8254, offset: 0x6071A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8274, offset: 0x6073A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8288, offset: 0x6074E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x829C, offset: 0x60762, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x82B0, offset: 0x60776, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xB06C, symBinAddr: 0xD270, symSize: 0x38 } - - { offsetInCU: 0x8357, offset: 0x6081D, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBEEC, symBinAddr: 0xE0F0, symSize: 0x80 } - - { offsetInCU: 0x83E8, offset: 0x608AE, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xBF6C, symBinAddr: 0xE170, symSize: 0x90 } - - { offsetInCU: 0x85AA, offset: 0x60A70, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x90A8, symBinAddr: 0xB2AC, symSize: 0x10 } - - { offsetInCU: 0x85C6, offset: 0x60A8C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x90B8, symBinAddr: 0xB2BC, symSize: 0xC } - - { offsetInCU: 0x8630, offset: 0x60AF6, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x90C4, symBinAddr: 0xB2C8, symSize: 0x44 } - - { offsetInCU: 0x8659, offset: 0x60B1F, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x9108, symBinAddr: 0xB30C, symSize: 0x28 } - - { offsetInCU: 0x8694, offset: 0x60B5A, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x909C, symBinAddr: 0xB2A0, symSize: 0xC } - - { offsetInCU: 0x8772, offset: 0x60C38, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x89EC, symBinAddr: 0xABF0, symSize: 0xC } - - { offsetInCU: 0x87A4, offset: 0x60C6A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8B94, symBinAddr: 0xAD98, symSize: 0x10 } - - { offsetInCU: 0x87C0, offset: 0x60C86, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8BA4, symBinAddr: 0xADA8, symSize: 0xC } - - { offsetInCU: 0x27, offset: 0x60E8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xE230, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x60EB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xE230, symSize: 0x10 } - - { offsetInCU: 0x7B, offset: 0x60EE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xE240, symSize: 0x20 } - - { offsetInCU: 0x43, offset: 0x61011, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xE26C, symSize: 0x8 } - - { offsetInCU: 0x57, offset: 0x61025, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xE280, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x61065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xE290, symSize: 0x20 } - - { offsetInCU: 0xE6, offset: 0x610B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x50, symBinAddr: 0xE2B0, symSize: 0x14 } - - { offsetInCU: 0x14C, offset: 0x6111A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x68, symBinAddr: 0xE2C8, symSize: 0x28 } - - { offsetInCU: 0x1C6, offset: 0x61194, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x94, symBinAddr: 0xE2F4, symSize: 0x8 } - - { offsetInCU: 0x1F1, offset: 0x611BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x9C, symBinAddr: 0xE2FC, symSize: 0x24 } - - { offsetInCU: 0x222, offset: 0x611F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0xC0, symBinAddr: 0xE320, symSize: 0xC } - - { offsetInCU: 0x23E, offset: 0x6120C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0xCC, symBinAddr: 0xE32C, symSize: 0xC } - - { offsetInCU: 0x25A, offset: 0x61228, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2058, symBinAddr: 0x102B8, symSize: 0x3D4 } - - { offsetInCU: 0x2A0, offset: 0x6126E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x128, symBinAddr: 0xE388, symSize: 0x40C } - - { offsetInCU: 0x2F5, offset: 0x612C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1388, symBinAddr: 0xF5E8, symSize: 0x50 } - - { offsetInCU: 0x32C, offset: 0x612FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x13D8, symBinAddr: 0xF638, symSize: 0x50 } - - { offsetInCU: 0x34F, offset: 0x6131D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x242C, symBinAddr: 0x1068C, symSize: 0x144C } - - { offsetInCU: 0x381, offset: 0x6134F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x534, symBinAddr: 0xE794, symSize: 0x100 } - - { offsetInCU: 0x3CD, offset: 0x6139B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1428, symBinAddr: 0xF688, symSize: 0x8 } - - { offsetInCU: 0x421, offset: 0x613EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1430, symBinAddr: 0xF690, symSize: 0x40 } - - { offsetInCU: 0x504, offset: 0x614D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1470, symBinAddr: 0xF6D0, symSize: 0x24 } - - { offsetInCU: 0x584, offset: 0x61552, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xF730, symSize: 0x4 } - - { offsetInCU: 0x5A4, offset: 0x61572, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x14D0, symBinAddr: 0xF730, symSize: 0x4 } - - { offsetInCU: 0x5C4, offset: 0x61592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14D4, symBinAddr: 0xF734, symSize: 0x28 } - - { offsetInCU: 0x5F5, offset: 0x615C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x14FC, symBinAddr: 0xF75C, symSize: 0xC } - - { offsetInCU: 0x611, offset: 0x615DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1508, symBinAddr: 0xF768, symSize: 0xC } - - { offsetInCU: 0x62D, offset: 0x615FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3878, symBinAddr: 0x11AD8, symSize: 0x6C } - - { offsetInCU: 0x671, offset: 0x6163F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvgTf4d_n', symObjAddr: 0x38E4, symBinAddr: 0x11B44, symSize: 0xC } - - { offsetInCU: 0x6A5, offset: 0x61673, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1564, symBinAddr: 0xF7C4, symSize: 0x50 } - - { offsetInCU: 0x6DC, offset: 0x616AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15B4, symBinAddr: 0xF814, symSize: 0x50 } - - { offsetInCU: 0x6FF, offset: 0x616CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x38F0, symBinAddr: 0x11B50, symSize: 0x248 } - - { offsetInCU: 0x771, offset: 0x6173F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x634, symBinAddr: 0xE894, symSize: 0x20 } - - { offsetInCU: 0x79C, offset: 0x6176A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1604, symBinAddr: 0xF864, symSize: 0x8 } - - { offsetInCU: 0x7C7, offset: 0x61795, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x160C, symBinAddr: 0xF86C, symSize: 0x24 } - - { offsetInCU: 0x7F8, offset: 0x617C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1630, symBinAddr: 0xF890, symSize: 0xC } - - { offsetInCU: 0x814, offset: 0x617E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x163C, symBinAddr: 0xF89C, symSize: 0xC } - - { offsetInCU: 0x830, offset: 0x617FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5A94, symBinAddr: 0x13CB0, symSize: 0x198 } - - { offsetInCU: 0x876, offset: 0x61844, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x654, symBinAddr: 0xE8B4, symSize: 0x17C } - - { offsetInCU: 0x8CB, offset: 0x61899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1698, symBinAddr: 0xF8F8, symSize: 0x50 } - - { offsetInCU: 0x902, offset: 0x618D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16E8, symBinAddr: 0xF948, symSize: 0x40 } - - { offsetInCU: 0x925, offset: 0x618F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5C2C, symBinAddr: 0x13E48, symSize: 0x310 } - - { offsetInCU: 0x975, offset: 0x61943, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x7D0, symBinAddr: 0xEA30, symSize: 0x20 } - - { offsetInCU: 0x9A0, offset: 0x6196E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1728, symBinAddr: 0xF988, symSize: 0x8 } - - { offsetInCU: 0x9CB, offset: 0x61999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1730, symBinAddr: 0xF990, symSize: 0x24 } - - { offsetInCU: 0x9FC, offset: 0x619CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1754, symBinAddr: 0xF9B4, symSize: 0xC } - - { offsetInCU: 0xA18, offset: 0x619E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5F3C, symBinAddr: 0x14158, symSize: 0x158 } - - { offsetInCU: 0xA5E, offset: 0x61A2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7F0, symBinAddr: 0xEA50, symSize: 0x154 } - - { offsetInCU: 0xAB3, offset: 0x61A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0xFA10, symSize: 0x40 } - - { offsetInCU: 0xAEA, offset: 0x61AB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17F0, symBinAddr: 0xFA50, symSize: 0x38 } - - { offsetInCU: 0xB0D, offset: 0x61ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6094, symBinAddr: 0x142B0, symSize: 0x2C8 } - - { offsetInCU: 0xB51, offset: 0x61B1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x944, symBinAddr: 0xEBA4, symSize: 0x20 } - - { offsetInCU: 0xB7C, offset: 0x61B4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1828, symBinAddr: 0xFA88, symSize: 0x8 } - - { offsetInCU: 0xBA7, offset: 0x61B75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1830, symBinAddr: 0xFA90, symSize: 0x24 } - - { offsetInCU: 0xBD8, offset: 0x61BA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1854, symBinAddr: 0xFAB4, symSize: 0xC } - - { offsetInCU: 0xBF4, offset: 0x61BC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0xFAC0, symSize: 0xC } - - { offsetInCU: 0xC10, offset: 0x61BDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x635C, symBinAddr: 0x14578, symSize: 0x148 } - - { offsetInCU: 0xC56, offset: 0x61C24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x964, symBinAddr: 0xEBC4, symSize: 0x1A4 } - - { offsetInCU: 0xCAB, offset: 0x61C79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18BC, symBinAddr: 0xFB1C, symSize: 0x70 } - - { offsetInCU: 0xCE2, offset: 0x61CB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x192C, symBinAddr: 0xFB8C, symSize: 0x58 } - - { offsetInCU: 0xD05, offset: 0x61CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x64A4, symBinAddr: 0x146C0, symSize: 0x4D8 } - - { offsetInCU: 0xD55, offset: 0x61D23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xB08, symBinAddr: 0xED68, symSize: 0x20 } - - { offsetInCU: 0xD80, offset: 0x61D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x198C, symBinAddr: 0xFBEC, symSize: 0x8 } - - { offsetInCU: 0xDAB, offset: 0x61D79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1994, symBinAddr: 0xFBF4, symSize: 0x24 } - - { offsetInCU: 0xDDC, offset: 0x61DAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x19B8, symBinAddr: 0xFC18, symSize: 0xC } - - { offsetInCU: 0xDF8, offset: 0x61DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x19C4, symBinAddr: 0xFC24, symSize: 0xC } - - { offsetInCU: 0xE14, offset: 0x61DE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6A48, symBinAddr: 0x14C64, symSize: 0x274 } - - { offsetInCU: 0xE5A, offset: 0x61E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB28, symBinAddr: 0xED88, symSize: 0x1F4 } - - { offsetInCU: 0xEAF, offset: 0x61E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A20, symBinAddr: 0xFC80, symSize: 0x64 } - - { offsetInCU: 0xEE6, offset: 0x61EB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A84, symBinAddr: 0xFCE4, symSize: 0x50 } - - { offsetInCU: 0xF09, offset: 0x61ED7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CBC, symBinAddr: 0x14ED8, symSize: 0x57C } - - { offsetInCU: 0xF59, offset: 0x61F27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xD1C, symBinAddr: 0xEF7C, symSize: 0x18 } - - { offsetInCU: 0xFA4, offset: 0x61F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1AD4, symBinAddr: 0xFD34, symSize: 0x18 } - - { offsetInCU: 0x1035, offset: 0x62003, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1AEC, symBinAddr: 0xFD4C, symSize: 0x44 } - - { offsetInCU: 0x1118, offset: 0x620E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1B30, symBinAddr: 0xFD90, symSize: 0x28 } - - { offsetInCU: 0x118A, offset: 0x62158, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0xFDF8, symSize: 0x8 } - - { offsetInCU: 0x11B5, offset: 0x62183, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0xFE00, symSize: 0x24 } - - { offsetInCU: 0x11E6, offset: 0x621B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC4, symBinAddr: 0xFE24, symSize: 0xC } - - { offsetInCU: 0x1202, offset: 0x621D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0xFE30, symSize: 0xC } - - { offsetInCU: 0x121E, offset: 0x621EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x727C, symBinAddr: 0x15498, symSize: 0xB8 } - - { offsetInCU: 0x1264, offset: 0x62232, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD34, symBinAddr: 0xEF94, symSize: 0x118 } - - { offsetInCU: 0x12B9, offset: 0x62287, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C2C, symBinAddr: 0xFE8C, symSize: 0x2C } - - { offsetInCU: 0x12F0, offset: 0x622BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C58, symBinAddr: 0xFEB8, symSize: 0x1C } - - { offsetInCU: 0x1313, offset: 0x622E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7334, symBinAddr: 0x15550, symSize: 0x1A0 } - - { offsetInCU: 0x136F, offset: 0x6233D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xE4C, symBinAddr: 0xF0AC, symSize: 0x20 } - - { offsetInCU: 0x139A, offset: 0x62368, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1C74, symBinAddr: 0xFED4, symSize: 0x8 } - - { offsetInCU: 0x13C5, offset: 0x62393, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1C7C, symBinAddr: 0xFEDC, symSize: 0x24 } - - { offsetInCU: 0x13F6, offset: 0x623C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1CA0, symBinAddr: 0xFF00, symSize: 0xC } - - { offsetInCU: 0x1412, offset: 0x623E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1CAC, symBinAddr: 0xFF0C, symSize: 0xC } - - { offsetInCU: 0x142E, offset: 0x623FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7518, symBinAddr: 0x15734, symSize: 0x214 } - - { offsetInCU: 0x1474, offset: 0x62442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE6C, symBinAddr: 0xF0CC, symSize: 0x1CC } - - { offsetInCU: 0x14C9, offset: 0x62497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D08, symBinAddr: 0xFF68, symSize: 0x58 } - - { offsetInCU: 0x1500, offset: 0x624CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1D60, symBinAddr: 0xFFC0, symSize: 0x48 } - - { offsetInCU: 0x1523, offset: 0x624F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x772C, symBinAddr: 0x15948, symSize: 0x360 } - - { offsetInCU: 0x1567, offset: 0x62535, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1038, symBinAddr: 0xF298, symSize: 0x20 } - - { offsetInCU: 0x1592, offset: 0x62560, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DA8, symBinAddr: 0x10008, symSize: 0x8 } - - { offsetInCU: 0x15BD, offset: 0x6258B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x10010, symSize: 0x24 } - - { offsetInCU: 0x15EE, offset: 0x625BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DD4, symBinAddr: 0x10034, symSize: 0xC } - - { offsetInCU: 0x160A, offset: 0x625D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0x10040, symSize: 0xC } - - { offsetInCU: 0x1626, offset: 0x625F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7A8C, symBinAddr: 0x15CA8, symSize: 0x1D4 } - - { offsetInCU: 0x166C, offset: 0x6263A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1058, symBinAddr: 0xF2B8, symSize: 0x1EC } - - { offsetInCU: 0x16C1, offset: 0x6268F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E3C, symBinAddr: 0x1009C, symSize: 0x48 } - - { offsetInCU: 0x16F8, offset: 0x626C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E84, symBinAddr: 0x100E4, symSize: 0x40 } - - { offsetInCU: 0x171B, offset: 0x626E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C60, symBinAddr: 0x15E7C, symSize: 0x380 } - - { offsetInCU: 0x176B, offset: 0x62739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1244, symBinAddr: 0xF4A4, symSize: 0x18 } - - { offsetInCU: 0x1796, offset: 0x62764, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F48, symBinAddr: 0x101A8, symSize: 0x8 } - - { offsetInCU: 0x17C1, offset: 0x6278F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F50, symBinAddr: 0x101B0, symSize: 0x24 } - - { offsetInCU: 0x17F2, offset: 0x627C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1F74, symBinAddr: 0x101D4, symSize: 0xC } - - { offsetInCU: 0x180E, offset: 0x627DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F80, symBinAddr: 0x101E0, symSize: 0xC } - - { offsetInCU: 0x182A, offset: 0x627F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8068, symBinAddr: 0x16284, symSize: 0xFC } - - { offsetInCU: 0x1870, offset: 0x6283E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x125C, symBinAddr: 0xF4BC, symSize: 0x12C } - - { offsetInCU: 0x18C5, offset: 0x62893, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FDC, symBinAddr: 0x1023C, symSize: 0x44 } - - { offsetInCU: 0x18FC, offset: 0x628CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2020, symBinAddr: 0x10280, symSize: 0x38 } - - { offsetInCU: 0x191F, offset: 0x628ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8164, symBinAddr: 0x16380, symSize: 0x1CC } - - { offsetInCU: 0x195C, offset: 0x6292A, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3B78, symBinAddr: 0x11D98, symSize: 0x24 } - - { offsetInCU: 0x1970, offset: 0x6293E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3B9C, symBinAddr: 0x11DBC, symSize: 0x44 } - - { offsetInCU: 0x1984, offset: 0x62952, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3BE0, symBinAddr: 0x11E00, symSize: 0x20 } - - { offsetInCU: 0x1998, offset: 0x62966, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3C00, symBinAddr: 0x11E20, symSize: 0x44 } - - { offsetInCU: 0x19AC, offset: 0x6297A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3C44, symBinAddr: 0x11E64, symSize: 0x44 } - - { offsetInCU: 0x19C0, offset: 0x6298E, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3C88, symBinAddr: 0x11EA8, symSize: 0x4 } - - { offsetInCU: 0x19D4, offset: 0x629A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3C90, symBinAddr: 0x11EAC, symSize: 0x50 } - - { offsetInCU: 0x19E8, offset: 0x629B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x3CE0, symBinAddr: 0x11EFC, symSize: 0x8C } - - { offsetInCU: 0x19FC, offset: 0x629CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x3D6C, symBinAddr: 0x11F88, symSize: 0x8 } - - { offsetInCU: 0x1A10, offset: 0x629DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x3D74, symBinAddr: 0x11F90, symSize: 0x4 } - - { offsetInCU: 0x1A24, offset: 0x629F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x3D78, symBinAddr: 0x11F94, symSize: 0x4 } - - { offsetInCU: 0x1A38, offset: 0x62A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x3D7C, symBinAddr: 0x11F98, symSize: 0x10 } - - { offsetInCU: 0x1A4C, offset: 0x62A1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x3D8C, symBinAddr: 0x11FA8, symSize: 0x30 } - - { offsetInCU: 0x1A60, offset: 0x62A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x4654, symBinAddr: 0x12870, symSize: 0x10 } - - { offsetInCU: 0x1A74, offset: 0x62A42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x4664, symBinAddr: 0x12880, symSize: 0x4 } - - { offsetInCU: 0x1A88, offset: 0x62A56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4668, symBinAddr: 0x12884, symSize: 0x44 } - - { offsetInCU: 0x1A9C, offset: 0x62A6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x46AC, symBinAddr: 0x128C8, symSize: 0x4 } - - { offsetInCU: 0x1AB0, offset: 0x62A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x46B0, symBinAddr: 0x128CC, symSize: 0x44 } - - { offsetInCU: 0x1AC4, offset: 0x62A92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x46F4, symBinAddr: 0x12910, symSize: 0x4 } - - { offsetInCU: 0x1AD8, offset: 0x62AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x46F8, symBinAddr: 0x12914, symSize: 0x44 } - - { offsetInCU: 0x1AEC, offset: 0x62ABA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x473C, symBinAddr: 0x12958, symSize: 0x44 } - - { offsetInCU: 0x1B00, offset: 0x62ACE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4780, symBinAddr: 0x1299C, symSize: 0x44 } - - { offsetInCU: 0x1B14, offset: 0x62AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x47C4, symBinAddr: 0x129E0, symSize: 0x44 } - - { offsetInCU: 0x1B28, offset: 0x62AF6, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4808, symBinAddr: 0x12A24, symSize: 0x44 } - - { offsetInCU: 0x1B3C, offset: 0x62B0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x484C, symBinAddr: 0x12A68, symSize: 0x44 } - - { offsetInCU: 0x1B50, offset: 0x62B1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4890, symBinAddr: 0x12AAC, symSize: 0x44 } - - { offsetInCU: 0x1B64, offset: 0x62B32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x48D4, symBinAddr: 0x12AF0, symSize: 0x44 } - - { offsetInCU: 0x1B78, offset: 0x62B46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x4918, symBinAddr: 0x12B34, symSize: 0x44 } - - { offsetInCU: 0x1B8C, offset: 0x62B5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x495C, symBinAddr: 0x12B78, symSize: 0x44 } - - { offsetInCU: 0x1BA0, offset: 0x62B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x49A0, symBinAddr: 0x12BBC, symSize: 0x44 } - - { offsetInCU: 0x1BB4, offset: 0x62B82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x49E4, symBinAddr: 0x12C00, symSize: 0x44 } - - { offsetInCU: 0x1BC8, offset: 0x62B96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4A28, symBinAddr: 0x12C44, symSize: 0x44 } - - { offsetInCU: 0x1BDC, offset: 0x62BAA, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4A6C, symBinAddr: 0x12C88, symSize: 0xC } - - { offsetInCU: 0x1BF0, offset: 0x62BBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4A78, symBinAddr: 0x12C94, symSize: 0x90 } - - { offsetInCU: 0x1C04, offset: 0x62BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4B08, symBinAddr: 0x12D24, symSize: 0xBC } - - { offsetInCU: 0x1C18, offset: 0x62BE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4BC4, symBinAddr: 0x12DE0, symSize: 0x8 } - - { offsetInCU: 0x1C2C, offset: 0x62BFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4BCC, symBinAddr: 0x12DE8, symSize: 0x4 } - - { offsetInCU: 0x1C40, offset: 0x62C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4BD0, symBinAddr: 0x12DEC, symSize: 0x8 } - - { offsetInCU: 0x1C54, offset: 0x62C22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4BD8, symBinAddr: 0x12DF4, symSize: 0x10 } - - { offsetInCU: 0x1C68, offset: 0x62C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4BE8, symBinAddr: 0x12E04, symSize: 0x28 } - - { offsetInCU: 0x1C7C, offset: 0x62C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4C10, symBinAddr: 0x12E2C, symSize: 0x44 } - - { offsetInCU: 0x1C90, offset: 0x62C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4C54, symBinAddr: 0x12E70, symSize: 0x74 } - - { offsetInCU: 0x1CA4, offset: 0x62C72, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4CC8, symBinAddr: 0x12EE4, symSize: 0x14 } - - { offsetInCU: 0x1CB8, offset: 0x62C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4CDC, symBinAddr: 0x12EF8, symSize: 0x4C } - - { offsetInCU: 0x1CCC, offset: 0x62C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x4D28, symBinAddr: 0x12F44, symSize: 0x48 } - - { offsetInCU: 0x1CE0, offset: 0x62CAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x4D70, symBinAddr: 0x12F8C, symSize: 0x48 } - - { offsetInCU: 0x1CF4, offset: 0x62CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x4DB8, symBinAddr: 0x12FD4, symSize: 0x10 } - - { offsetInCU: 0x1D08, offset: 0x62CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x4DC8, symBinAddr: 0x12FE4, symSize: 0x38 } - - { offsetInCU: 0x1D1C, offset: 0x62CEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x4E00, symBinAddr: 0x1301C, symSize: 0x74 } - - { offsetInCU: 0x1D30, offset: 0x62CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x4E74, symBinAddr: 0x13090, symSize: 0xBC } - - { offsetInCU: 0x1D44, offset: 0x62D12, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x4F30, symBinAddr: 0x1314C, symSize: 0x1C } - - { offsetInCU: 0x1D58, offset: 0x62D26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x4F4C, symBinAddr: 0x13168, symSize: 0x7C } - - { offsetInCU: 0x1D6C, offset: 0x62D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x4FC8, symBinAddr: 0x131E4, symSize: 0x48 } - - { offsetInCU: 0x1D80, offset: 0x62D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5010, symBinAddr: 0x1322C, symSize: 0x54 } - - { offsetInCU: 0x1D94, offset: 0x62D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x5064, symBinAddr: 0x13280, symSize: 0x10 } - - { offsetInCU: 0x1DA8, offset: 0x62D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x5074, symBinAddr: 0x13290, symSize: 0x28 } - - { offsetInCU: 0x1DBC, offset: 0x62D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x509C, symBinAddr: 0x132B8, symSize: 0x3C } - - { offsetInCU: 0x1DD0, offset: 0x62D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x50D8, symBinAddr: 0x132F4, symSize: 0x6C } - - { offsetInCU: 0x1DE4, offset: 0x62DB2, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5144, symBinAddr: 0x13360, symSize: 0xC } - - { offsetInCU: 0x1DF8, offset: 0x62DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5150, symBinAddr: 0x1336C, symSize: 0x44 } - - { offsetInCU: 0x1E0C, offset: 0x62DDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5194, symBinAddr: 0x133B0, symSize: 0x48 } - - { offsetInCU: 0x1E20, offset: 0x62DEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x51DC, symBinAddr: 0x133F8, symSize: 0x40 } - - { offsetInCU: 0x1E34, offset: 0x62E02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x521C, symBinAddr: 0x13438, symSize: 0x10 } - - { offsetInCU: 0x1E48, offset: 0x62E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x522C, symBinAddr: 0x13448, symSize: 0x50 } - - { offsetInCU: 0x1E5C, offset: 0x62E2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x527C, symBinAddr: 0x13498, symSize: 0xAC } - - { offsetInCU: 0x1E70, offset: 0x62E3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5328, symBinAddr: 0x13544, symSize: 0x114 } - - { offsetInCU: 0x1E84, offset: 0x62E52, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x543C, symBinAddr: 0x13658, symSize: 0x2C } - - { offsetInCU: 0x1E98, offset: 0x62E66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5468, symBinAddr: 0x13684, symSize: 0x9C } - - { offsetInCU: 0x1EAC, offset: 0x62E7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x5504, symBinAddr: 0x13720, symSize: 0x48 } - - { offsetInCU: 0x1EC0, offset: 0x62E8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x554C, symBinAddr: 0x13768, symSize: 0x5C } - - { offsetInCU: 0x1ED4, offset: 0x62EA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x55A8, symBinAddr: 0x137C4, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x62EB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x55B8, symBinAddr: 0x137D4, symSize: 0x58 } - - { offsetInCU: 0x1EFC, offset: 0x62ECA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5610, symBinAddr: 0x1382C, symSize: 0xC4 } - - { offsetInCU: 0x1F10, offset: 0x62EDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x56D4, symBinAddr: 0x138F0, symSize: 0x144 } - - { offsetInCU: 0x1F24, offset: 0x62EF2, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5818, symBinAddr: 0x13A34, symSize: 0x34 } - - { offsetInCU: 0x1F38, offset: 0x62F06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x584C, symBinAddr: 0x13A68, symSize: 0xB4 } - - { offsetInCU: 0x1F4C, offset: 0x62F1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x5900, symBinAddr: 0x13B1C, symSize: 0x48 } - - { offsetInCU: 0x1F60, offset: 0x62F2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5948, symBinAddr: 0x13B64, symSize: 0x64 } - - { offsetInCU: 0x1F74, offset: 0x62F42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x59AC, symBinAddr: 0x13BC8, symSize: 0x10 } - - { offsetInCU: 0x1F88, offset: 0x62F56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x59BC, symBinAddr: 0x13BD8, symSize: 0x4 } - - { offsetInCU: 0x1F9C, offset: 0x62F6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x59C0, symBinAddr: 0x13BDC, symSize: 0x44 } - - { offsetInCU: 0x1FB0, offset: 0x62F7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5A04, symBinAddr: 0x13C20, symSize: 0x4 } - - { offsetInCU: 0x1FC4, offset: 0x62F92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5A08, symBinAddr: 0x13C24, symSize: 0x44 } - - { offsetInCU: 0x1FD8, offset: 0x62FA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5A4C, symBinAddr: 0x13C68, symSize: 0x4 } - - { offsetInCU: 0x1FEC, offset: 0x62FBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5A50, symBinAddr: 0x13C6C, symSize: 0x44 } - - { offsetInCU: 0x2000, offset: 0x62FCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x697C, symBinAddr: 0x14B98, symSize: 0x44 } - - { offsetInCU: 0x2014, offset: 0x62FE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x69C0, symBinAddr: 0x14BDC, symSize: 0x44 } - - { offsetInCU: 0x2028, offset: 0x62FF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6A04, symBinAddr: 0x14C20, symSize: 0x44 } - - { offsetInCU: 0x203C, offset: 0x6300A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7238, symBinAddr: 0x15454, symSize: 0x44 } - - { offsetInCU: 0x2050, offset: 0x6301E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x74D4, symBinAddr: 0x156F0, symSize: 0x44 } - - { offsetInCU: 0x2064, offset: 0x63032, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7FE0, symBinAddr: 0x161FC, symSize: 0x44 } - - { offsetInCU: 0x2078, offset: 0x63046, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8024, symBinAddr: 0x16240, symSize: 0x44 } - - { offsetInCU: 0x208C, offset: 0x6305A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8330, symBinAddr: 0x1654C, symSize: 0x44 } - - { offsetInCU: 0x20A0, offset: 0x6306E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8374, symBinAddr: 0x16590, symSize: 0x44 } - - { offsetInCU: 0x20B4, offset: 0x63082, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x83B8, symBinAddr: 0x165D4, symSize: 0x44 } - - { offsetInCU: 0x20C8, offset: 0x63096, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x8460, symBinAddr: 0x1667C, symSize: 0x44 } - - { offsetInCU: 0x20DC, offset: 0x630AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x84A4, symBinAddr: 0x166C0, symSize: 0x90 } - - { offsetInCU: 0x20F0, offset: 0x630BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8534, symBinAddr: 0x16750, symSize: 0xBC } - - { offsetInCU: 0x2104, offset: 0x630D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x85F0, symBinAddr: 0x1680C, symSize: 0x4 } - - { offsetInCU: 0x2118, offset: 0x630E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x85F4, symBinAddr: 0x16810, symSize: 0x10 } - - { offsetInCU: 0x212C, offset: 0x630FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8604, symBinAddr: 0x16820, symSize: 0x90 } - - { offsetInCU: 0x2140, offset: 0x6310E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8694, symBinAddr: 0x168B0, symSize: 0xBC } - - { offsetInCU: 0x2154, offset: 0x63122, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8750, symBinAddr: 0x1696C, symSize: 0x4 } - - { offsetInCU: 0x2168, offset: 0x63136, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8754, symBinAddr: 0x16970, symSize: 0x10 } - - { offsetInCU: 0x217C, offset: 0x6314A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8764, symBinAddr: 0x16980, symSize: 0x90 } - - { offsetInCU: 0x2190, offset: 0x6315E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x87F4, symBinAddr: 0x16A10, symSize: 0xBC } - - { offsetInCU: 0x21A4, offset: 0x63172, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x88B0, symBinAddr: 0x16ACC, symSize: 0x8 } - - { offsetInCU: 0x21B8, offset: 0x63186, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x88B8, symBinAddr: 0x16AD4, symSize: 0x4 } - - { offsetInCU: 0x21CC, offset: 0x6319A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x88BC, symBinAddr: 0x16AD8, symSize: 0xC } - - { offsetInCU: 0x21E0, offset: 0x631AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x88C8, symBinAddr: 0x16AE4, symSize: 0x10 } - - { offsetInCU: 0x21F4, offset: 0x631C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x88D8, symBinAddr: 0x16AF4, symSize: 0x90 } - - { offsetInCU: 0x2208, offset: 0x631D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8968, symBinAddr: 0x16B84, symSize: 0xBC } - - { offsetInCU: 0x221C, offset: 0x631EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A24, symBinAddr: 0x16C40, symSize: 0x4 } - - { offsetInCU: 0x2230, offset: 0x631FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A28, symBinAddr: 0x16C44, symSize: 0x10 } - - { offsetInCU: 0x2244, offset: 0x63212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A40, symBinAddr: 0x16C5C, symSize: 0x4 } - - { offsetInCU: 0x2258, offset: 0x63226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A44, symBinAddr: 0x16C60, symSize: 0x10 } - - { offsetInCU: 0x226C, offset: 0x6323A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8A54, symBinAddr: 0x16C70, symSize: 0x38 } - - { offsetInCU: 0x2280, offset: 0x6324E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8A8C, symBinAddr: 0x16CA8, symSize: 0x74 } - - { offsetInCU: 0x2294, offset: 0x63262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8B00, symBinAddr: 0x16D1C, symSize: 0xC4 } - - { offsetInCU: 0x22A8, offset: 0x63276, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8BC4, symBinAddr: 0x16DE0, symSize: 0x24 } - - { offsetInCU: 0x22BC, offset: 0x6328A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x8BE8, symBinAddr: 0x16E04, symSize: 0x74 } - - { offsetInCU: 0x22D0, offset: 0x6329E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x8C5C, symBinAddr: 0x16E78, symSize: 0x48 } - - { offsetInCU: 0x22E4, offset: 0x632B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x8CA4, symBinAddr: 0x16EC0, symSize: 0x54 } - - { offsetInCU: 0x22F8, offset: 0x632C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x8CF8, symBinAddr: 0x16F14, symSize: 0x10 } - - { offsetInCU: 0x230C, offset: 0x632DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x8D08, symBinAddr: 0x16F24, symSize: 0x38 } - - { offsetInCU: 0x2320, offset: 0x632EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x8D40, symBinAddr: 0x16F5C, symSize: 0x64 } - - { offsetInCU: 0x2334, offset: 0x63302, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x8DA4, symBinAddr: 0x16FC0, symSize: 0xAC } - - { offsetInCU: 0x2348, offset: 0x63316, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x8E50, symBinAddr: 0x1706C, symSize: 0x14 } - - { offsetInCU: 0x235C, offset: 0x6332A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x8E64, symBinAddr: 0x17080, symSize: 0x64 } - - { offsetInCU: 0x2370, offset: 0x6333E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x8EC8, symBinAddr: 0x170E4, symSize: 0x48 } - - { offsetInCU: 0x2384, offset: 0x63352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x8F10, symBinAddr: 0x1712C, symSize: 0x50 } - - { offsetInCU: 0x2398, offset: 0x63366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x8F60, symBinAddr: 0x1717C, symSize: 0x10 } - - { offsetInCU: 0x23AC, offset: 0x6337A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x8F70, symBinAddr: 0x1718C, symSize: 0x38 } - - { offsetInCU: 0x23C0, offset: 0x6338E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x8FA8, symBinAddr: 0x171C4, symSize: 0x6C } - - { offsetInCU: 0x23D4, offset: 0x633A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9014, symBinAddr: 0x17230, symSize: 0xB4 } - - { offsetInCU: 0x23E8, offset: 0x633B6, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x90C8, symBinAddr: 0x172E4, symSize: 0x24 } - - { offsetInCU: 0x23FC, offset: 0x633CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x90EC, symBinAddr: 0x17308, symSize: 0x6C } - - { offsetInCU: 0x2410, offset: 0x633DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9158, symBinAddr: 0x17374, symSize: 0x48 } - - { offsetInCU: 0x2424, offset: 0x633F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x91A0, symBinAddr: 0x173BC, symSize: 0x50 } - - { offsetInCU: 0x2438, offset: 0x63406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x91F0, symBinAddr: 0x1740C, symSize: 0x10 } - - { offsetInCU: 0x244C, offset: 0x6341A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9200, symBinAddr: 0x1741C, symSize: 0x4 } - - { offsetInCU: 0x2460, offset: 0x6342E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9204, symBinAddr: 0x17420, symSize: 0x44 } - - { offsetInCU: 0x2474, offset: 0x63442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9248, symBinAddr: 0x17464, symSize: 0x4 } - - { offsetInCU: 0x2488, offset: 0x63456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x924C, symBinAddr: 0x17468, symSize: 0x44 } - - { offsetInCU: 0x249C, offset: 0x6346A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9290, symBinAddr: 0x174AC, symSize: 0x4 } - - { offsetInCU: 0x24B0, offset: 0x6347E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9294, symBinAddr: 0x174B0, symSize: 0x44 } - - { offsetInCU: 0x24C4, offset: 0x63492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x92D8, symBinAddr: 0x174F4, symSize: 0x4 } - - { offsetInCU: 0x24D8, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x92DC, symBinAddr: 0x174F8, symSize: 0x44 } - - { offsetInCU: 0x24EC, offset: 0x634BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9320, symBinAddr: 0x1753C, symSize: 0x4 } - - { offsetInCU: 0x2500, offset: 0x634CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9324, symBinAddr: 0x17540, symSize: 0x44 } - - { offsetInCU: 0x2514, offset: 0x634E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9368, symBinAddr: 0x17584, symSize: 0x4 } - - { offsetInCU: 0x2528, offset: 0x634F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x936C, symBinAddr: 0x17588, symSize: 0x44 } - - { offsetInCU: 0x253C, offset: 0x6350A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x93B0, symBinAddr: 0x175CC, symSize: 0x4 } - - { offsetInCU: 0x2550, offset: 0x6351E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x93B4, symBinAddr: 0x175D0, symSize: 0x44 } - - { offsetInCU: 0x2564, offset: 0x63532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x93F8, symBinAddr: 0x17614, symSize: 0x4 } - - { offsetInCU: 0x2578, offset: 0x63546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x93FC, symBinAddr: 0x17618, symSize: 0x44 } - - { offsetInCU: 0x258C, offset: 0x6355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9440, symBinAddr: 0x1765C, symSize: 0x4 } - - { offsetInCU: 0x25A0, offset: 0x6356E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9444, symBinAddr: 0x17660, symSize: 0x44 } - - { offsetInCU: 0x25B4, offset: 0x63582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9488, symBinAddr: 0x176A4, symSize: 0x4 } - - { offsetInCU: 0x25C8, offset: 0x63596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x948C, symBinAddr: 0x176A8, symSize: 0x44 } - - { offsetInCU: 0x25DC, offset: 0x635AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x94D0, symBinAddr: 0x176EC, symSize: 0x4 } - - { offsetInCU: 0x25F0, offset: 0x635BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x94D4, symBinAddr: 0x176F0, symSize: 0x44 } - - { offsetInCU: 0x2604, offset: 0x635D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9518, symBinAddr: 0x17734, symSize: 0x4 } - - { offsetInCU: 0x2618, offset: 0x635E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x951C, symBinAddr: 0x17738, symSize: 0x44 } - - { offsetInCU: 0x262C, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9560, symBinAddr: 0x1777C, symSize: 0x4 } - - { offsetInCU: 0x2640, offset: 0x6360E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9564, symBinAddr: 0x17780, symSize: 0x44 } - - { offsetInCU: 0x2654, offset: 0x63622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x95A8, symBinAddr: 0x177C4, symSize: 0x4 } - - { offsetInCU: 0x2668, offset: 0x63636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x95AC, symBinAddr: 0x177C8, symSize: 0x44 } - - { offsetInCU: 0x267C, offset: 0x6364A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x95F0, symBinAddr: 0x1780C, symSize: 0x4 } - - { offsetInCU: 0x2690, offset: 0x6365E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x95F4, symBinAddr: 0x17810, symSize: 0x44 } - - { offsetInCU: 0x26A4, offset: 0x63672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9638, symBinAddr: 0x17854, symSize: 0x44 } - - { offsetInCU: 0x26B8, offset: 0x63686, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x967C, symBinAddr: 0x17898, symSize: 0x44 } - - { offsetInCU: 0x26CC, offset: 0x6369A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x96C0, symBinAddr: 0x178DC, symSize: 0x44 } - - { offsetInCU: 0x26E0, offset: 0x636AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9704, symBinAddr: 0x17920, symSize: 0x90 } - - { offsetInCU: 0x26F4, offset: 0x636C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9794, symBinAddr: 0x179B0, symSize: 0xBC } - - { offsetInCU: 0x2708, offset: 0x636D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9850, symBinAddr: 0x17A6C, symSize: 0x4 } - - { offsetInCU: 0x271C, offset: 0x636EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9854, symBinAddr: 0x17A70, symSize: 0x10 } - - { offsetInCU: 0x2730, offset: 0x636FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x99B8, symBinAddr: 0x17BD4, symSize: 0x4 } - - { offsetInCU: 0x2744, offset: 0x63712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x99BC, symBinAddr: 0x17BD8, symSize: 0x10 } - - { offsetInCU: 0x2758, offset: 0x63726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x99CC, symBinAddr: 0x17BE8, symSize: 0x90 } - - { offsetInCU: 0x276C, offset: 0x6373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9A5C, symBinAddr: 0x17C78, symSize: 0xBC } - - { offsetInCU: 0x2780, offset: 0x6374E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9B18, symBinAddr: 0x17D34, symSize: 0x4 } - - { offsetInCU: 0x2794, offset: 0x63762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9B1C, symBinAddr: 0x17D38, symSize: 0x10 } - - { offsetInCU: 0x27A8, offset: 0x63776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B2C, symBinAddr: 0x17D48, symSize: 0x4 } - - { offsetInCU: 0x27BC, offset: 0x6378A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9B30, symBinAddr: 0x17D4C, symSize: 0x44 } - - { offsetInCU: 0x27D0, offset: 0x6379E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B74, symBinAddr: 0x17D90, symSize: 0x4 } - - { offsetInCU: 0x27E4, offset: 0x637B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9B78, symBinAddr: 0x17D94, symSize: 0x44 } - - { offsetInCU: 0x27F8, offset: 0x637C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9BBC, symBinAddr: 0x17DD8, symSize: 0x4 } - - { offsetInCU: 0x280C, offset: 0x637DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9BC0, symBinAddr: 0x17DDC, symSize: 0x44 } - - { offsetInCU: 0x2820, offset: 0x637EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C04, symBinAddr: 0x17E20, symSize: 0x4 } - - { offsetInCU: 0x2834, offset: 0x63802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C08, symBinAddr: 0x17E24, symSize: 0x44 } - - { offsetInCU: 0x2848, offset: 0x63816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9C4C, symBinAddr: 0x17E68, symSize: 0x4 } - - { offsetInCU: 0x285C, offset: 0x6382A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9C50, symBinAddr: 0x17E6C, symSize: 0x44 } - - { offsetInCU: 0x2870, offset: 0x6383E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C94, symBinAddr: 0x17EB0, symSize: 0x4 } - - { offsetInCU: 0x2884, offset: 0x63852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C98, symBinAddr: 0x17EB4, symSize: 0x44 } - - { offsetInCU: 0x2898, offset: 0x63866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CDC, symBinAddr: 0x17EF8, symSize: 0x4 } - - { offsetInCU: 0x28AC, offset: 0x6387A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9CE0, symBinAddr: 0x17EFC, symSize: 0x44 } - - { offsetInCU: 0x28C0, offset: 0x6388E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D24, symBinAddr: 0x17F40, symSize: 0x4 } - - { offsetInCU: 0x28D4, offset: 0x638A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D28, symBinAddr: 0x17F44, symSize: 0x44 } - - { offsetInCU: 0x28E8, offset: 0x638B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D6C, symBinAddr: 0x17F88, symSize: 0x4 } - - { offsetInCU: 0x28FC, offset: 0x638CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9D70, symBinAddr: 0x17F8C, symSize: 0x44 } - - { offsetInCU: 0x294C, offset: 0x6391A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0xD8, symBinAddr: 0xE338, symSize: 0x28 } - - { offsetInCU: 0x2968, offset: 0x63936, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x100, symBinAddr: 0xE360, symSize: 0x28 } - - { offsetInCU: 0x29B1, offset: 0x6397F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1494, symBinAddr: 0xF6F4, symSize: 0x3C } - - { offsetInCU: 0x2A53, offset: 0x63A21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1514, symBinAddr: 0xF774, symSize: 0x28 } - - { offsetInCU: 0x2A6F, offset: 0x63A3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x153C, symBinAddr: 0xF79C, symSize: 0x28 } - - { offsetInCU: 0x2A91, offset: 0x63A5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1648, symBinAddr: 0xF8A8, symSize: 0x28 } - - { offsetInCU: 0x2AAD, offset: 0x63A7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1670, symBinAddr: 0xF8D0, symSize: 0x28 } - - { offsetInCU: 0x2ACF, offset: 0x63A9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0xF9C0, symSize: 0x28 } - - { offsetInCU: 0x2AEB, offset: 0x63AB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0xF9E8, symSize: 0x28 } - - { offsetInCU: 0x2B0D, offset: 0x63ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x186C, symBinAddr: 0xFACC, symSize: 0x28 } - - { offsetInCU: 0x2B29, offset: 0x63AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1894, symBinAddr: 0xFAF4, symSize: 0x28 } - - { offsetInCU: 0x2B4B, offset: 0x63B19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x19D0, symBinAddr: 0xFC30, symSize: 0x28 } - - { offsetInCU: 0x2B67, offset: 0x63B35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0xFC58, symSize: 0x28 } - - { offsetInCU: 0x2BB0, offset: 0x63B7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1B58, symBinAddr: 0xFDB8, symSize: 0x40 } - - { offsetInCU: 0x2C52, offset: 0x63C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BDC, symBinAddr: 0xFE3C, symSize: 0x28 } - - { offsetInCU: 0x2C6E, offset: 0x63C3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C04, symBinAddr: 0xFE64, symSize: 0x28 } - - { offsetInCU: 0x2C90, offset: 0x63C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1CB8, symBinAddr: 0xFF18, symSize: 0x28 } - - { offsetInCU: 0x2CAC, offset: 0x63C7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0xFF40, symSize: 0x28 } - - { offsetInCU: 0x2CCE, offset: 0x63C9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DEC, symBinAddr: 0x1004C, symSize: 0x28 } - - { offsetInCU: 0x2CEA, offset: 0x63CB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E14, symBinAddr: 0x10074, symSize: 0x28 } - - { offsetInCU: 0x2D0C, offset: 0x63CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1F8C, symBinAddr: 0x101EC, symSize: 0x28 } - - { offsetInCU: 0x2D28, offset: 0x63CF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FB4, symBinAddr: 0x10214, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x63EA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x180A8, symSize: 0x84 } - - { offsetInCU: 0xA5, offset: 0x63F1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x180A8, symSize: 0x84 } - - { offsetInCU: 0xFE, offset: 0x63F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x84, symBinAddr: 0x1812C, symSize: 0x3C } - - { offsetInCU: 0x11C, offset: 0x63F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xC0, symBinAddr: 0x18168, symSize: 0x54 } - - { offsetInCU: 0x15B, offset: 0x63FD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x114, symBinAddr: 0x181BC, symSize: 0x10 } - - { offsetInCU: 0x179, offset: 0x63FF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x124, symBinAddr: 0x181CC, symSize: 0x4 } - - { offsetInCU: 0x1A4, offset: 0x6401E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x128, symBinAddr: 0x181D0, symSize: 0x14 } - - { offsetInCU: 0x1C2, offset: 0x6403C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x13C, symBinAddr: 0x181E4, symSize: 0x14 } - - { offsetInCU: 0x1FC, offset: 0x64076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x150, symBinAddr: 0x181F8, symSize: 0x10 } - - { offsetInCU: 0x22A, offset: 0x640A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x160, symBinAddr: 0x18208, symSize: 0x4 } - - { offsetInCU: 0x255, offset: 0x640CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x164, symBinAddr: 0x1820C, symSize: 0x2C } - - { offsetInCU: 0x273, offset: 0x640ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x190, symBinAddr: 0x18238, symSize: 0x34 } - - { offsetInCU: 0x2B2, offset: 0x6412C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1C4, symBinAddr: 0x1826C, symSize: 0x10 } - - { offsetInCU: 0x2E0, offset: 0x6415A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x1D4, symBinAddr: 0x1827C, symSize: 0x4 } - - { offsetInCU: 0x30B, offset: 0x64185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x1D8, symBinAddr: 0x18280, symSize: 0x8 } - - { offsetInCU: 0x329, offset: 0x641A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x1E0, symBinAddr: 0x18288, symSize: 0x8 } - - { offsetInCU: 0x363, offset: 0x641DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x1E8, symBinAddr: 0x18290, symSize: 0x10 } - - { offsetInCU: 0x391, offset: 0x6420B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1F8, symBinAddr: 0x182A0, symSize: 0x4 } - - { offsetInCU: 0x3BC, offset: 0x64236, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1FC, symBinAddr: 0x182A4, symSize: 0x8 } - - { offsetInCU: 0x3DA, offset: 0x64254, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x204, symBinAddr: 0x182AC, symSize: 0x8 } - - { offsetInCU: 0x414, offset: 0x6428E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x20C, symBinAddr: 0x182B4, symSize: 0x10 } - - { offsetInCU: 0x442, offset: 0x642BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x21C, symBinAddr: 0x182C4, symSize: 0x4 } - - { offsetInCU: 0x46D, offset: 0x642E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x220, symBinAddr: 0x182C8, symSize: 0x2C } - - { offsetInCU: 0x48B, offset: 0x64305, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x24C, symBinAddr: 0x182F4, symSize: 0x34 } - - { offsetInCU: 0x4CA, offset: 0x64344, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x280, symBinAddr: 0x18328, symSize: 0x10 } - - { offsetInCU: 0x4F8, offset: 0x64372, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x18338, symSize: 0x4 } - - { offsetInCU: 0x523, offset: 0x6439D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x294, symBinAddr: 0x1833C, symSize: 0x2C } - - { offsetInCU: 0x541, offset: 0x643BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x2C0, symBinAddr: 0x18368, symSize: 0x34 } - - { offsetInCU: 0x580, offset: 0x643FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2F4, symBinAddr: 0x1839C, symSize: 0x10 } - - { offsetInCU: 0x5AE, offset: 0x64428, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x304, symBinAddr: 0x183AC, symSize: 0x4 } - - { offsetInCU: 0x5D9, offset: 0x64453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x308, symBinAddr: 0x183B0, symSize: 0xC } - - { offsetInCU: 0x5F7, offset: 0x64471, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x314, symBinAddr: 0x183BC, symSize: 0xC } - - { offsetInCU: 0x635, offset: 0x644AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x320, symBinAddr: 0x183C8, symSize: 0x10 } - - { offsetInCU: 0x663, offset: 0x644DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x183D8, symSize: 0x4 } - - { offsetInCU: 0x68E, offset: 0x64508, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x334, symBinAddr: 0x183DC, symSize: 0xC } - - { offsetInCU: 0x6AC, offset: 0x64526, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x340, symBinAddr: 0x183E8, symSize: 0xC } - - { offsetInCU: 0x6EA, offset: 0x64564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x34C, symBinAddr: 0x183F4, symSize: 0x10 } - - { offsetInCU: 0x718, offset: 0x64592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x35C, symBinAddr: 0x18404, symSize: 0x4 } - - { offsetInCU: 0x744, offset: 0x645BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x360, symBinAddr: 0x18408, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x645D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x390, symBinAddr: 0x18438, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x645E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x3D0, symBinAddr: 0x18478, symSize: 0xA4 } - - { offsetInCU: 0x780, offset: 0x645FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x474, symBinAddr: 0x1851C, symSize: 0x104 } - - { offsetInCU: 0x794, offset: 0x6460E, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x578, symBinAddr: 0x18620, symSize: 0x2C } - - { offsetInCU: 0x7A8, offset: 0x64622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x5A4, symBinAddr: 0x1864C, symSize: 0x9C } - - { offsetInCU: 0x7BC, offset: 0x64636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x640, symBinAddr: 0x186E8, symSize: 0x48 } - - { offsetInCU: 0x7D0, offset: 0x6464A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x688, symBinAddr: 0x18730, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x6465E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x6E8, symBinAddr: 0x18790, symSize: 0x10 } - - { offsetInCU: 0x52, offset: 0x64840, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x187A0, symSize: 0x2AC } - - { offsetInCU: 0x7D, offset: 0x6486B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5A4, symBinAddr: 0x18D44, symSize: 0x28 } - - { offsetInCU: 0x99, offset: 0x64887, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x814, symBinAddr: 0x18FB4, symSize: 0x58 } - - { offsetInCU: 0xD1, offset: 0x648BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2AC, symBinAddr: 0x18A4C, symSize: 0x2BC } - - { offsetInCU: 0xFC, offset: 0x648EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7EC, symBinAddr: 0x18F8C, symSize: 0x28 } - - { offsetInCU: 0x118, offset: 0x64906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x86C, symBinAddr: 0x1900C, symSize: 0x58 } - - { offsetInCU: 0x144, offset: 0x64932, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8C4, symBinAddr: 0x19064, symSize: 0x104 } - - { offsetInCU: 0x174, offset: 0x64962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9D8, symBinAddr: 0x19168, symSize: 0x90 } - - { offsetInCU: 0x188, offset: 0x64976, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA68, symBinAddr: 0x191F8, symSize: 0xBC } - - { offsetInCU: 0x19C, offset: 0x6498A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB24, symBinAddr: 0x192B4, symSize: 0x4 } - - { offsetInCU: 0x1B0, offset: 0x6499E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB28, symBinAddr: 0x192B8, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x649B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB38, symBinAddr: 0x192C8, symSize: 0x90 } - - { offsetInCU: 0x1D8, offset: 0x649C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBC8, symBinAddr: 0x19358, symSize: 0xBC } - - { offsetInCU: 0x1EC, offset: 0x649DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xC84, symBinAddr: 0x19414, symSize: 0x8 } - - { offsetInCU: 0x200, offset: 0x649EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xC8C, symBinAddr: 0x1941C, symSize: 0x4 } - - { offsetInCU: 0x214, offset: 0x64A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xC90, symBinAddr: 0x19420, symSize: 0x8 } - - { offsetInCU: 0x228, offset: 0x64A16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xC98, symBinAddr: 0x19428, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x64A2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCA8, symBinAddr: 0x19438, symSize: 0x4 } - - { offsetInCU: 0x250, offset: 0x64A3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCAC, symBinAddr: 0x1943C, symSize: 0x44 } - - { offsetInCU: 0x264, offset: 0x64A52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xCF0, symBinAddr: 0x19480, symSize: 0x4 } - - { offsetInCU: 0x278, offset: 0x64A66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xCF4, symBinAddr: 0x19484, symSize: 0x44 } - - { offsetInCU: 0x4F, offset: 0x64BC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x194D0, symSize: 0x114 } - - { offsetInCU: 0x7C, offset: 0x64BF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x195E4, symSize: 0x1C } - - { offsetInCU: 0xA9, offset: 0x64C1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC9printLogs33_05B95674BA567498C742095BB49A0405LL3msgySS_tFTf4nd_n', symObjAddr: 0x4EC, symBinAddr: 0x199BC, symSize: 0xAC } - - { offsetInCU: 0x1DB, offset: 0x64D50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x130, symBinAddr: 0x19600, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x64DA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x150, symBinAddr: 0x19620, symSize: 0x8C } - - { offsetInCU: 0x284, offset: 0x64DF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1DC, symBinAddr: 0x196AC, symSize: 0x4 } - - { offsetInCU: 0x2AB, offset: 0x64E20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E0, symBinAddr: 0x196B0, symSize: 0x4 } - - { offsetInCU: 0x2D2, offset: 0x64E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E4, symBinAddr: 0x196B4, symSize: 0x4 } - - { offsetInCU: 0x2F9, offset: 0x64E6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x258, symBinAddr: 0x19728, symSize: 0x4 } - - { offsetInCU: 0x34B, offset: 0x64EC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1972C, symSize: 0x90 } - - { offsetInCU: 0x3A3, offset: 0x64F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2EC, symBinAddr: 0x197BC, symSize: 0x64 } - - { offsetInCU: 0x3E4, offset: 0x64F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x350, symBinAddr: 0x19820, symSize: 0x90 } - - { offsetInCU: 0x440, offset: 0x64FB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3E0, symBinAddr: 0x198B0, symSize: 0x90 } - - { offsetInCU: 0x48E, offset: 0x65003, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x470, symBinAddr: 0x19940, symSize: 0x74 } - - { offsetInCU: 0x4C0, offset: 0x65035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4E4, symBinAddr: 0x199B4, symSize: 0x4 } - - { offsetInCU: 0x4DC, offset: 0x65051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4E8, symBinAddr: 0x199B8, symSize: 0x4 } - - { offsetInCU: 0x556, offset: 0x650CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x598, symBinAddr: 0x19A68, symSize: 0x6CC } - - { offsetInCU: 0x63D, offset: 0x651B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xC64, symBinAddr: 0x1A134, symSize: 0x74 } - - { offsetInCU: 0x692, offset: 0x65207, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xCD8, symBinAddr: 0x1A1A8, symSize: 0x294 } - - { offsetInCU: 0x7C0, offset: 0x65335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF6C, symBinAddr: 0x1A43C, symSize: 0x68 } - - { offsetInCU: 0x83E, offset: 0x653B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFD4, symBinAddr: 0x1A4A4, symSize: 0x64 } - - { offsetInCU: 0x87D, offset: 0x653F2, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1038, symBinAddr: 0x1A508, symSize: 0x10 } - - { offsetInCU: 0x891, offset: 0x65406, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1048, symBinAddr: 0x1A518, symSize: 0x10 } - - { offsetInCU: 0x8A5, offset: 0x6541A, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10DC, symBinAddr: 0x1A528, symSize: 0x48 } - - { offsetInCU: 0x8B9, offset: 0x6542E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1124, symBinAddr: 0x1A570, symSize: 0x14 } - - { offsetInCU: 0x8CD, offset: 0x65442, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1138, symBinAddr: 0x1A584, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x65456, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x117C, symBinAddr: 0x1A5C8, symSize: 0x40 } - - { offsetInCU: 0x8F5, offset: 0x6546A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11BC, symBinAddr: 0x1A608, symSize: 0x1C4 } - - { offsetInCU: 0x909, offset: 0x6547E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1380, symBinAddr: 0x1A7CC, symSize: 0x30 } - - { offsetInCU: 0x91D, offset: 0x65492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13B0, symBinAddr: 0x1A7FC, symSize: 0x1BC } - - { offsetInCU: 0x931, offset: 0x654A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x156C, symBinAddr: 0x1A9B8, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x6574D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AB8, symBinAddr: 0x83AB8, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x65767, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2AC0, symBinAddr: 0x83AC0, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65775, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1A9F8, symSize: 0x34 } - - { offsetInCU: 0xB3, offset: 0x657B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1AA2C, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x657E7, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1AA6C, symSize: 0x34 } - - { offsetInCU: 0x114, offset: 0x65812, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1AAA0, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x65862, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1AAE0, symSize: 0x24 } - - { offsetInCU: 0x18F, offset: 0x6588D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x128, symBinAddr: 0x1AB10, symSize: 0x4 } - - { offsetInCU: 0x1B8, offset: 0x658B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x12C, symBinAddr: 0x1AB14, symSize: 0x24 } - - { offsetInCU: 0x1D3, offset: 0x658D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x150, symBinAddr: 0x1AB38, symSize: 0x14 } - - { offsetInCU: 0x206, offset: 0x65904, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x164, symBinAddr: 0x1AB4C, symSize: 0x28 } - - { offsetInCU: 0x297, offset: 0x65995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1ABBC, symSize: 0x14 } - - { offsetInCU: 0x2B7, offset: 0x659B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D4, symBinAddr: 0x1ABBC, symSize: 0x14 } - - { offsetInCU: 0x301, offset: 0x659FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x230, symBinAddr: 0x1AC18, symSize: 0x28 } - - { offsetInCU: 0x37B, offset: 0x65A79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x29C, symBinAddr: 0x1AC84, symSize: 0x4 } - - { offsetInCU: 0x405, offset: 0x65B03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x3D4, symBinAddr: 0x1ADBC, symSize: 0x4C } - - { offsetInCU: 0x424, offset: 0x65B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x430, symBinAddr: 0x1AE18, symSize: 0x50 } - - { offsetInCU: 0x44D, offset: 0x65B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x490, symBinAddr: 0x1AE78, symSize: 0x3C } - - { offsetInCU: 0x47C, offset: 0x65B7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x4CC, symBinAddr: 0x1AEB4, symSize: 0x4 } - - { offsetInCU: 0x4EF, offset: 0x65BED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x604, symBinAddr: 0x1AFEC, symSize: 0x4C } - - { offsetInCU: 0x50E, offset: 0x65C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x650, symBinAddr: 0x1B038, symSize: 0x50 } - - { offsetInCU: 0x537, offset: 0x65C35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x6A0, symBinAddr: 0x1B088, symSize: 0x3C } - - { offsetInCU: 0x566, offset: 0x65C64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x6DC, symBinAddr: 0x1B0C4, symSize: 0x8 } - - { offsetInCU: 0x591, offset: 0x65C8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x6E4, symBinAddr: 0x1B0CC, symSize: 0x30 } - - { offsetInCU: 0x5AE, offset: 0x65CAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x714, symBinAddr: 0x1B0FC, symSize: 0x3C } - - { offsetInCU: 0x5D3, offset: 0x65CD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x750, symBinAddr: 0x1B138, symSize: 0x3C } - - { offsetInCU: 0x62C, offset: 0x65D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x7E8, symBinAddr: 0x1B1D0, symSize: 0x30 } - - { offsetInCU: 0x649, offset: 0x65D47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x818, symBinAddr: 0x1B200, symSize: 0x44 } - - { offsetInCU: 0x672, offset: 0x65D70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x85C, symBinAddr: 0x1B244, symSize: 0x3C } - - { offsetInCU: 0x6A1, offset: 0x65D9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0x898, symBinAddr: 0x1B280, symSize: 0x68 } - - { offsetInCU: 0x74C, offset: 0x65E4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0x900, symBinAddr: 0x1B2E8, symSize: 0xC0 } - - { offsetInCU: 0x7E5, offset: 0x65EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9C0, symBinAddr: 0x1B3A8, symSize: 0xC0 } - - { offsetInCU: 0x865, offset: 0x65F63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xC84, symBinAddr: 0x1B66C, symSize: 0x70 } - - { offsetInCU: 0x88F, offset: 0x65F8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xCF4, symBinAddr: 0x1B6DC, symSize: 0x30 } - - { offsetInCU: 0x8B4, offset: 0x65FB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xD24, symBinAddr: 0x1B70C, symSize: 0x188 } - - { offsetInCU: 0x969, offset: 0x66067, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xEAC, symBinAddr: 0x1B894, symSize: 0x14 } - - { offsetInCU: 0x9B6, offset: 0x660B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0xEC0, symBinAddr: 0x1B8A8, symSize: 0x64 } - - { offsetInCU: 0xA52, offset: 0x66150, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0xF54, symBinAddr: 0x1B93C, symSize: 0x6C } - - { offsetInCU: 0xB86, offset: 0x66284, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x18B8, symBinAddr: 0x1C2A0, symSize: 0x228 } - - { offsetInCU: 0xC17, offset: 0x66315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B44, symBinAddr: 0x1C52C, symSize: 0x190 } - - { offsetInCU: 0xD1D, offset: 0x6641B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x2A0, symBinAddr: 0x1AC88, symSize: 0x88 } - - { offsetInCU: 0xD53, offset: 0x66451, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x328, symBinAddr: 0x1AD10, symSize: 0xAC } - - { offsetInCU: 0xD93, offset: 0x66491, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x420, symBinAddr: 0x1AE08, symSize: 0x10 } - - { offsetInCU: 0xDA7, offset: 0x664A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x480, symBinAddr: 0x1AE68, symSize: 0x10 } - - { offsetInCU: 0xDBB, offset: 0x664B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x4D0, symBinAddr: 0x1AEB8, symSize: 0x88 } - - { offsetInCU: 0xDF1, offset: 0x664EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x558, symBinAddr: 0x1AF40, symSize: 0xAC } - - { offsetInCU: 0xE31, offset: 0x6652F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x78C, symBinAddr: 0x1B174, symSize: 0x5C } - - { offsetInCU: 0xE95, offset: 0x66593, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xA80, symBinAddr: 0x1B468, symSize: 0x204 } - - { offsetInCU: 0xF09, offset: 0x66607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x172C, symBinAddr: 0x1C114, symSize: 0x13C } - - { offsetInCU: 0xFD3, offset: 0x666D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0xF24, symBinAddr: 0x1B90C, symSize: 0x30 } - - { offsetInCU: 0x10C2, offset: 0x667C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x1894, symBinAddr: 0x1C27C, symSize: 0x24 } - - { offsetInCU: 0x1112, offset: 0x66810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1B9A8, symSize: 0x21C } - - { offsetInCU: 0x1304, offset: 0x66A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x11DC, symBinAddr: 0x1BBC4, symSize: 0xC } - - { offsetInCU: 0x135B, offset: 0x66A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1BBD0, symSize: 0x4 } - - { offsetInCU: 0x1377, offset: 0x66A75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1BBD0, symSize: 0x4 } - - { offsetInCU: 0x1390, offset: 0x66A8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11E8, symBinAddr: 0x1BBD0, symSize: 0x4 } - - { offsetInCU: 0x13A9, offset: 0x66AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x11EC, symBinAddr: 0x1BBD4, symSize: 0x4 } - - { offsetInCU: 0x13C1, offset: 0x66ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x11F0, symBinAddr: 0x1BBD8, symSize: 0xB8 } - - { offsetInCU: 0x1461, offset: 0x66B5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x12E8, symBinAddr: 0x1BCD0, symSize: 0x4 } - - { offsetInCU: 0x1479, offset: 0x66B77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x251C, symBinAddr: 0x1CEF4, symSize: 0x7C } - - { offsetInCU: 0x1556, offset: 0x66C54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x12A8, symBinAddr: 0x1BC90, symSize: 0x40 } - - { offsetInCU: 0x158B, offset: 0x66C89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x12F8, symBinAddr: 0x1BCE0, symSize: 0x98 } - - { offsetInCU: 0x1648, offset: 0x66D46, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x1440, symBinAddr: 0x1BE28, symSize: 0x198 } - - { offsetInCU: 0x1AF7, offset: 0x671F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x15D8, symBinAddr: 0x1BFC0, symSize: 0x13C } - - { offsetInCU: 0x1BF4, offset: 0x672F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1714, symBinAddr: 0x1C0FC, symSize: 0x18 } - - { offsetInCU: 0x1C08, offset: 0x67306, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1868, symBinAddr: 0x1C250, symSize: 0x2C } - - { offsetInCU: 0x1C20, offset: 0x6731E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1AE0, symBinAddr: 0x1C4C8, symSize: 0x44 } - - { offsetInCU: 0x1C34, offset: 0x67332, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1B24, symBinAddr: 0x1C50C, symSize: 0x20 } - - { offsetInCU: 0x1C48, offset: 0x67346, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1CD4, symBinAddr: 0x1C6BC, symSize: 0x20 } - - { offsetInCU: 0x1C5C, offset: 0x6735A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1CF4, symBinAddr: 0x1C6DC, symSize: 0x4 } - - { offsetInCU: 0x1C70, offset: 0x6736E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x1C6E0, symSize: 0x44 } - - { offsetInCU: 0x1C84, offset: 0x67382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D3C, symBinAddr: 0x1C724, symSize: 0x4 } - - { offsetInCU: 0x1C98, offset: 0x67396, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D40, symBinAddr: 0x1C728, symSize: 0x44 } - - { offsetInCU: 0x1CAC, offset: 0x673AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwCP', symObjAddr: 0x1E60, symBinAddr: 0x1C848, symSize: 0x5C } - - { offsetInCU: 0x1CC0, offset: 0x673BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1EBC, symBinAddr: 0x1C8A4, symSize: 0x18 } - - { offsetInCU: 0x1CD4, offset: 0x673D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1ED4, symBinAddr: 0x1C8BC, symSize: 0x14 } - - { offsetInCU: 0x1CE8, offset: 0x673E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1EE8, symBinAddr: 0x1C8D0, symSize: 0x18 } - - { offsetInCU: 0x1CFC, offset: 0x673FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwcp', symObjAddr: 0x1F00, symBinAddr: 0x1C8E8, symSize: 0x5C } - - { offsetInCU: 0x1D10, offset: 0x6740E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x1F5C, symBinAddr: 0x1C944, symSize: 0x6C } - - { offsetInCU: 0x1D24, offset: 0x67422, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x1FC8, symBinAddr: 0x1C9B0, symSize: 0x14 } - - { offsetInCU: 0x1D38, offset: 0x67436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x1FDC, symBinAddr: 0x1C9C4, symSize: 0x50 } - - { offsetInCU: 0x1D4C, offset: 0x6744A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x202C, symBinAddr: 0x1CA14, symSize: 0x48 } - - { offsetInCU: 0x1D60, offset: 0x6745E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x2074, symBinAddr: 0x1CA5C, symSize: 0x48 } - - { offsetInCU: 0x1D74, offset: 0x67472, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x20BC, symBinAddr: 0x1CAA4, symSize: 0x8 } - - { offsetInCU: 0x1D88, offset: 0x67486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x20C4, symBinAddr: 0x1CAAC, symSize: 0x4 } - - { offsetInCU: 0x1D9C, offset: 0x6749A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x20C8, symBinAddr: 0x1CAB0, symSize: 0x8 } - - { offsetInCU: 0x1DB0, offset: 0x674AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x20D0, symBinAddr: 0x1CAB8, symSize: 0x10 } - - { offsetInCU: 0x1DC4, offset: 0x674C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x21B8, symBinAddr: 0x1CB90, symSize: 0x90 } - - { offsetInCU: 0x1DD8, offset: 0x674D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2248, symBinAddr: 0x1CC20, symSize: 0xBC } - - { offsetInCU: 0x1DEC, offset: 0x674EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2304, symBinAddr: 0x1CCDC, symSize: 0x4 } - - { offsetInCU: 0x1E00, offset: 0x674FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2308, symBinAddr: 0x1CCE0, symSize: 0x10 } - - { offsetInCU: 0x1E14, offset: 0x67512, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x2318, symBinAddr: 0x1CCF0, symSize: 0x90 } - - { offsetInCU: 0x1E28, offset: 0x67526, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x23A8, symBinAddr: 0x1CD80, symSize: 0xBC } - - { offsetInCU: 0x1E3C, offset: 0x6753A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x2464, symBinAddr: 0x1CE3C, symSize: 0x8 } - - { offsetInCU: 0x1E50, offset: 0x6754E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x246C, symBinAddr: 0x1CE44, symSize: 0x4 } - - { offsetInCU: 0x1E64, offset: 0x67562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2470, symBinAddr: 0x1CE48, symSize: 0x8 } - - { offsetInCU: 0x1E78, offset: 0x67576, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2478, symBinAddr: 0x1CE50, symSize: 0x10 } - - { offsetInCU: 0x1E97, offset: 0x67595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x24B0, symBinAddr: 0x1CE88, symSize: 0x24 } - - { offsetInCU: 0x1EC0, offset: 0x675BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x25BC, symBinAddr: 0x1CF94, symSize: 0x8 } - - { offsetInCU: 0x1ED4, offset: 0x675D2, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x25C4, symBinAddr: 0x1CF9C, symSize: 0x10 } - - { offsetInCU: 0x1EE8, offset: 0x675E6, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x25D4, symBinAddr: 0x1CFAC, symSize: 0x8 } - - { offsetInCU: 0x1EFC, offset: 0x675FA, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2660, symBinAddr: 0x1CFB4, symSize: 0x3C } - - { offsetInCU: 0x1F7E, offset: 0x6767C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1A9E8, symSize: 0x4 } - - { offsetInCU: 0x1F9A, offset: 0x67698, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1A9EC, symSize: 0x4 } - - { offsetInCU: 0x1FB6, offset: 0x676B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1A9F0, symSize: 0x4 } - - { offsetInCU: 0x1FD2, offset: 0x676D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1A9F4, symSize: 0x4 } - - { offsetInCU: 0x43, offset: 0x67AC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1D108, symSize: 0x3C } - - { offsetInCU: 0x57, offset: 0x67AD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1D144, symSize: 0x84 } - - { offsetInCU: 0x6B, offset: 0x67AEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1D1C8, symSize: 0x128 } - - { offsetInCU: 0x86, offset: 0x67B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1D2F0, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x67B2F, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1D320, symSize: 0x1C } - - { offsetInCU: 0xC3, offset: 0x67B43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1D33C, symSize: 0x9C } - - { offsetInCU: 0xD7, offset: 0x67B57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1D3D8, symSize: 0x64 } - - { offsetInCU: 0xEB, offset: 0x67B6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1D43C, symSize: 0x5C } - - { offsetInCU: 0xFF, offset: 0x67B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1D498, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x67B93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1D4A8, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x67BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1D4D8, symSize: 0x28 } - - { offsetInCU: 0x13B, offset: 0x67BBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1D500, symSize: 0x5C } - - { offsetInCU: 0x14F, offset: 0x67BCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1D55C, symSize: 0x84 } - - { offsetInCU: 0x163, offset: 0x67BE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1D5E0, symSize: 0x64 } - - { offsetInCU: 0x177, offset: 0x67BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1D644, symSize: 0x5C } - - { offsetInCU: 0x18B, offset: 0x67C0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1D6A0, symSize: 0x60 } - - { offsetInCU: 0x19F, offset: 0x67C1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1D700, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x67C3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1D710, symSize: 0x10C } - - { offsetInCU: 0x20B, offset: 0x67C8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x1DB68, symSize: 0x8 } - - { offsetInCU: 0x25F, offset: 0x67CDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA68, symBinAddr: 0x1DB70, symSize: 0x40 } - - { offsetInCU: 0x342, offset: 0x67DC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA8, symBinAddr: 0x1DBB0, symSize: 0x24 } - - { offsetInCU: 0x3C2, offset: 0x67E42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1DC10, symSize: 0x4 } - - { offsetInCU: 0x3E2, offset: 0x67E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xB08, symBinAddr: 0x1DC10, symSize: 0x4 } - - { offsetInCU: 0x402, offset: 0x67E82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB0C, symBinAddr: 0x1DC14, symSize: 0x28 } - - { offsetInCU: 0x433, offset: 0x67EB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB34, symBinAddr: 0x1DC3C, symSize: 0xC } - - { offsetInCU: 0x44F, offset: 0x67ECF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB40, symBinAddr: 0x1DC48, symSize: 0xC } - - { offsetInCU: 0x46B, offset: 0x67EEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF18, symBinAddr: 0x1E020, symSize: 0x6C } - - { offsetInCU: 0x4AF, offset: 0x67F2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF84, symBinAddr: 0x1E08C, symSize: 0xC } - - { offsetInCU: 0x4E3, offset: 0x67F63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x1DCA4, symSize: 0x4C } - - { offsetInCU: 0x51A, offset: 0x67F9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE8, symBinAddr: 0x1DCF0, symSize: 0x40 } - - { offsetInCU: 0x53D, offset: 0x67FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF90, symBinAddr: 0x1E098, symSize: 0x144 } - - { offsetInCU: 0x58D, offset: 0x6800D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x714, symBinAddr: 0x1D81C, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x6805C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC28, symBinAddr: 0x1DD30, symSize: 0x14 } - - { offsetInCU: 0x642, offset: 0x680C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x1DD48, symSize: 0x28 } - - { offsetInCU: 0x6BC, offset: 0x6813C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC6C, symBinAddr: 0x1DD74, symSize: 0x8 } - - { offsetInCU: 0x6E7, offset: 0x68167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC74, symBinAddr: 0x1DD7C, symSize: 0x24 } - - { offsetInCU: 0x718, offset: 0x68198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC98, symBinAddr: 0x1DDA0, symSize: 0xC } - - { offsetInCU: 0x734, offset: 0x681B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xCA4, symBinAddr: 0x1DDAC, symSize: 0xC } - - { offsetInCU: 0x750, offset: 0x681D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1224, symBinAddr: 0x1E2A8, symSize: 0x13C } - - { offsetInCU: 0x796, offset: 0x68216, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x734, symBinAddr: 0x1D83C, symSize: 0x1B8 } - - { offsetInCU: 0x7EB, offset: 0x6826B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1DE08, symSize: 0x4C } - - { offsetInCU: 0x822, offset: 0x682A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD4C, symBinAddr: 0x1DE54, symSize: 0x40 } - - { offsetInCU: 0x845, offset: 0x682C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1360, symBinAddr: 0x1E3E4, symSize: 0x254 } - - { offsetInCU: 0x895, offset: 0x68315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x8EC, symBinAddr: 0x1D9F4, symSize: 0x20 } - - { offsetInCU: 0x8C0, offset: 0x68340, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE18, symBinAddr: 0x1DF20, symSize: 0x8 } - - { offsetInCU: 0x8EB, offset: 0x6836B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE20, symBinAddr: 0x1DF28, symSize: 0x24 } - - { offsetInCU: 0x91C, offset: 0x6839C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE44, symBinAddr: 0x1DF4C, symSize: 0xC } - - { offsetInCU: 0x938, offset: 0x683B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CEC, symBinAddr: 0x1ED04, symSize: 0x158 } - - { offsetInCU: 0x97E, offset: 0x683FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x90C, symBinAddr: 0x1DA14, symSize: 0x154 } - - { offsetInCU: 0x9D3, offset: 0x68453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xEA0, symBinAddr: 0x1DFA8, symSize: 0x40 } - - { offsetInCU: 0xA0A, offset: 0x6848A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEE0, symBinAddr: 0x1DFE8, symSize: 0x38 } - - { offsetInCU: 0xA2D, offset: 0x684AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E44, symBinAddr: 0x1EE5C, symSize: 0x2A8 } - - { offsetInCU: 0xA80, offset: 0x68500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1138, symBinAddr: 0x1E1DC, symSize: 0x44 } - - { offsetInCU: 0xA94, offset: 0x68514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x119C, symBinAddr: 0x1E220, symSize: 0x44 } - - { offsetInCU: 0xAA8, offset: 0x68528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x11E0, symBinAddr: 0x1E264, symSize: 0x44 } - - { offsetInCU: 0xABC, offset: 0x6853C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x15B4, symBinAddr: 0x1E638, symSize: 0x44 } - - { offsetInCU: 0xAD0, offset: 0x68550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x163C, symBinAddr: 0x1E67C, symSize: 0x44 } - - { offsetInCU: 0xAE4, offset: 0x68564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x172C, symBinAddr: 0x1E76C, symSize: 0x44 } - - { offsetInCU: 0xAF8, offset: 0x68578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1788, symBinAddr: 0x1E7B8, symSize: 0x8 } - - { offsetInCU: 0xB0C, offset: 0x6858C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1790, symBinAddr: 0x1E7C0, symSize: 0x4 } - - { offsetInCU: 0xB20, offset: 0x685A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1794, symBinAddr: 0x1E7C4, symSize: 0x8 } - - { offsetInCU: 0xB34, offset: 0x685B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x179C, symBinAddr: 0x1E7CC, symSize: 0x10 } - - { offsetInCU: 0xB48, offset: 0x685C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x1E7DC, symSize: 0x50 } - - { offsetInCU: 0xB5C, offset: 0x685DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x1E82C, symSize: 0x8C } - - { offsetInCU: 0xB70, offset: 0x685F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x188C, symBinAddr: 0x1E8B8, symSize: 0x8 } - - { offsetInCU: 0xB84, offset: 0x68604, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1894, symBinAddr: 0x1E8C0, symSize: 0x4 } - - { offsetInCU: 0xB98, offset: 0x68618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1898, symBinAddr: 0x1E8C4, symSize: 0x4 } - - { offsetInCU: 0xBAC, offset: 0x6862C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x189C, symBinAddr: 0x1E8C8, symSize: 0x10 } - - { offsetInCU: 0xBC0, offset: 0x68640, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18AC, symBinAddr: 0x1E8D8, symSize: 0x38 } - - { offsetInCU: 0xBD4, offset: 0x68654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x18E4, symBinAddr: 0x1E910, symSize: 0x64 } - - { offsetInCU: 0xBE8, offset: 0x68668, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1948, symBinAddr: 0x1E974, symSize: 0xAC } - - { offsetInCU: 0xBFC, offset: 0x6867C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A08, symBinAddr: 0x1EA20, symSize: 0x64 } - - { offsetInCU: 0xC10, offset: 0x68690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1A6C, symBinAddr: 0x1EA84, symSize: 0x5C } - - { offsetInCU: 0xC24, offset: 0x686A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1AC8, symBinAddr: 0x1EAE0, symSize: 0x64 } - - { offsetInCU: 0xC38, offset: 0x686B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B2C, symBinAddr: 0x1EB44, symSize: 0x10 } - - { offsetInCU: 0xC4C, offset: 0x686CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B3C, symBinAddr: 0x1EB54, symSize: 0x4 } - - { offsetInCU: 0xC60, offset: 0x686E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B40, symBinAddr: 0x1EB58, symSize: 0x44 } - - { offsetInCU: 0xC74, offset: 0x686F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B84, symBinAddr: 0x1EB9C, symSize: 0x4 } - - { offsetInCU: 0xC88, offset: 0x68708, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B88, symBinAddr: 0x1EBA0, symSize: 0x44 } - - { offsetInCU: 0xC9C, offset: 0x6871C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BCC, symBinAddr: 0x1EBE4, symSize: 0x4 } - - { offsetInCU: 0xCB0, offset: 0x68730, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x1EBE8, symSize: 0x44 } - - { offsetInCU: 0xCC4, offset: 0x68744, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C14, symBinAddr: 0x1EC2C, symSize: 0x4 } - - { offsetInCU: 0xCD8, offset: 0x68758, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C18, symBinAddr: 0x1EC30, symSize: 0x44 } - - { offsetInCU: 0xCEC, offset: 0x6876C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C5C, symBinAddr: 0x1EC74, symSize: 0x4 } - - { offsetInCU: 0xD00, offset: 0x68780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C60, symBinAddr: 0x1EC78, symSize: 0x44 } - - { offsetInCU: 0xD14, offset: 0x68794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CA4, symBinAddr: 0x1ECBC, symSize: 0x4 } - - { offsetInCU: 0xD28, offset: 0x687A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CA8, symBinAddr: 0x1ECC0, symSize: 0x44 } - - { offsetInCU: 0xD3C, offset: 0x687BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x20EC, symBinAddr: 0x1F104, symSize: 0x44 } - - { offsetInCU: 0xD50, offset: 0x687D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x2284, symBinAddr: 0x1F29C, symSize: 0x4 } - - { offsetInCU: 0xD64, offset: 0x687E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2288, symBinAddr: 0x1F2A0, symSize: 0x10 } - - { offsetInCU: 0xD78, offset: 0x687F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2298, symBinAddr: 0x1F2B0, symSize: 0x4 } - - { offsetInCU: 0xD8C, offset: 0x6880C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x229C, symBinAddr: 0x1F2B4, symSize: 0x44 } - - { offsetInCU: 0xDA0, offset: 0x68820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22E0, symBinAddr: 0x1F2F8, symSize: 0x4 } - - { offsetInCU: 0xDB4, offset: 0x68834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E4, symBinAddr: 0x1F2FC, symSize: 0x44 } - - { offsetInCU: 0xDC8, offset: 0x68848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2328, symBinAddr: 0x1F340, symSize: 0x4 } - - { offsetInCU: 0xDDC, offset: 0x6885C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x232C, symBinAddr: 0x1F344, symSize: 0x44 } - - { offsetInCU: 0xE31, offset: 0x688B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xACC, symBinAddr: 0x1DBD4, symSize: 0x3C } - - { offsetInCU: 0xED3, offset: 0x68953, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB4C, symBinAddr: 0x1DC54, symSize: 0x28 } - - { offsetInCU: 0xEEF, offset: 0x6896F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB74, symBinAddr: 0x1DC7C, symSize: 0x28 } - - { offsetInCU: 0xF11, offset: 0x68991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCB0, symBinAddr: 0x1DDB8, symSize: 0x28 } - - { offsetInCU: 0xF2D, offset: 0x689AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCD8, symBinAddr: 0x1DDE0, symSize: 0x28 } - - { offsetInCU: 0xF4F, offset: 0x689CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE50, symBinAddr: 0x1DF58, symSize: 0x28 } - - { offsetInCU: 0xF6B, offset: 0x689EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE78, symBinAddr: 0x1DF80, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x68B38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1F3B4, symSize: 0x18 } - - { offsetInCU: 0x4B, offset: 0x68B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x1F3B4, symSize: 0x18 } - - { offsetInCU: 0x7E, offset: 0x68B8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x660, symBinAddr: 0x1F8FC, symSize: 0x28 } - - { offsetInCU: 0x114, offset: 0x68C25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x688, symBinAddr: 0x1F924, symSize: 0x44 } - - { offsetInCU: 0x20E, offset: 0x68D1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x1F968, symSize: 0x18 } - - { offsetInCU: 0x22E, offset: 0x68D3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6CC, symBinAddr: 0x1F968, symSize: 0x18 } - - { offsetInCU: 0x26E, offset: 0x68D7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6E4, symBinAddr: 0x1F980, symSize: 0x44 } - - { offsetInCU: 0x351, offset: 0x68E62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x728, symBinAddr: 0x1F9C4, symSize: 0x28 } - - { offsetInCU: 0x3D0, offset: 0x68EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x1F3CC, symSize: 0x39C } - - { offsetInCU: 0x44C, offset: 0x68F5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOy', symObjAddr: 0x3B4, symBinAddr: 0x1F768, symSize: 0x10 } - - { offsetInCU: 0x460, offset: 0x68F71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOe', symObjAddr: 0x3F4, symBinAddr: 0x1F778, symSize: 0x10 } - - { offsetInCU: 0x480, offset: 0x68F91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x4EC, symBinAddr: 0x1F788, symSize: 0x2C } - - { offsetInCU: 0x49E, offset: 0x68FAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x518, symBinAddr: 0x1F7B4, symSize: 0x34 } - - { offsetInCU: 0x4DD, offset: 0x68FEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x54C, symBinAddr: 0x1F7E8, symSize: 0x10 } - - { offsetInCU: 0x4FB, offset: 0x6900C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x55C, symBinAddr: 0x1F7F8, symSize: 0x4 } - - { offsetInCU: 0x526, offset: 0x69037, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x560, symBinAddr: 0x1F7FC, symSize: 0x8 } - - { offsetInCU: 0x544, offset: 0x69055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x568, symBinAddr: 0x1F804, symSize: 0x8 } - - { offsetInCU: 0x57E, offset: 0x6908F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x570, symBinAddr: 0x1F80C, symSize: 0x10 } - - { offsetInCU: 0x5AC, offset: 0x690BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x580, symBinAddr: 0x1F81C, symSize: 0x4 } - - { offsetInCU: 0x5DF, offset: 0x690F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x584, symBinAddr: 0x1F820, symSize: 0x14 } - - { offsetInCU: 0x5FD, offset: 0x6910E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x598, symBinAddr: 0x1F834, symSize: 0x14 } - - { offsetInCU: 0x623, offset: 0x69134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x5AC, symBinAddr: 0x1F848, symSize: 0x2C } - - { offsetInCU: 0x641, offset: 0x69152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x5D8, symBinAddr: 0x1F874, symSize: 0x2C } - - { offsetInCU: 0x66C, offset: 0x6917D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x604, symBinAddr: 0x1F8A0, symSize: 0x8 } - - { offsetInCU: 0x68A, offset: 0x6919B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x60C, symBinAddr: 0x1F8A8, symSize: 0x8 } - - { offsetInCU: 0x6C6, offset: 0x691D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x614, symBinAddr: 0x1F8B0, symSize: 0x10 } - - { offsetInCU: 0x6E4, offset: 0x691F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x624, symBinAddr: 0x1F8C0, symSize: 0x4 } - - { offsetInCU: 0x70F, offset: 0x69220, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x628, symBinAddr: 0x1F8C4, symSize: 0x8 } - - { offsetInCU: 0x72D, offset: 0x6923E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x630, symBinAddr: 0x1F8CC, symSize: 0x8 } - - { offsetInCU: 0x769, offset: 0x6927A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x638, symBinAddr: 0x1F8D4, symSize: 0x10 } - - { offsetInCU: 0x797, offset: 0x692A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x648, symBinAddr: 0x1F8E4, symSize: 0x4 } - - { offsetInCU: 0x7C2, offset: 0x692D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x64C, symBinAddr: 0x1F8E8, symSize: 0x10 } - - { offsetInCU: 0x7F0, offset: 0x69301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x65C, symBinAddr: 0x1F8F8, symSize: 0x4 } - - { offsetInCU: 0x832, offset: 0x69343, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x790, symBinAddr: 0x1FA2C, symSize: 0x4 } - - { offsetInCU: 0x846, offset: 0x69357, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x794, symBinAddr: 0x1FA30, symSize: 0x44 } - - { offsetInCU: 0x85A, offset: 0x6936B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x7D8, symBinAddr: 0x1FA74, symSize: 0x30 } - - { offsetInCU: 0x86E, offset: 0x6937F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x808, symBinAddr: 0x1FAA4, symSize: 0x7C } - - { offsetInCU: 0x882, offset: 0x69393, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x884, symBinAddr: 0x1FB20, symSize: 0x184 } - - { offsetInCU: 0x896, offset: 0x693A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0xA08, symBinAddr: 0x1FCA4, symSize: 0x394 } - - { offsetInCU: 0x8B1, offset: 0x693C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xD9C, symBinAddr: 0x20038, symSize: 0x30 } - - { offsetInCU: 0x8DA, offset: 0x693EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xDCC, symBinAddr: 0x20068, symSize: 0x2C } - - { offsetInCU: 0x8EE, offset: 0x693FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xDF8, symBinAddr: 0x20094, symSize: 0x34 } - - { offsetInCU: 0x902, offset: 0x69413, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xE2C, symBinAddr: 0x200C8, symSize: 0x44 } - - { offsetInCU: 0x916, offset: 0x69427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xE70, symBinAddr: 0x2010C, symSize: 0x1AC } - - { offsetInCU: 0x92A, offset: 0x6943B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x101C, symBinAddr: 0x202B8, symSize: 0x48 } - - { offsetInCU: 0x93E, offset: 0x6944F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1064, symBinAddr: 0x20300, symSize: 0x78 } - - { offsetInCU: 0x952, offset: 0x69463, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x10DC, symBinAddr: 0x20378, symSize: 0x10 } - - { offsetInCU: 0x966, offset: 0x69477, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwCP', symObjAddr: 0x10EC, symBinAddr: 0x20388, symSize: 0x34 } - - { offsetInCU: 0x97A, offset: 0x6948B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1120, symBinAddr: 0x203BC, symSize: 0x8 } - - { offsetInCU: 0x98E, offset: 0x6949F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwcp', symObjAddr: 0x1128, symBinAddr: 0x203C4, symSize: 0x34 } - - { offsetInCU: 0x9A2, offset: 0x694B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x115C, symBinAddr: 0x203F8, symSize: 0x54 } - - { offsetInCU: 0x9B6, offset: 0x694C7, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x11B0, symBinAddr: 0x2044C, symSize: 0x14 } - - { offsetInCU: 0x9CA, offset: 0x694DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x11C4, symBinAddr: 0x20460, symSize: 0x3C } - - { offsetInCU: 0x9DE, offset: 0x694EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1200, symBinAddr: 0x2049C, symSize: 0x48 } - - { offsetInCU: 0x9F2, offset: 0x69503, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1248, symBinAddr: 0x204E4, symSize: 0x40 } - - { offsetInCU: 0xA06, offset: 0x69517, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x1288, symBinAddr: 0x20524, symSize: 0x10 } - - { offsetInCU: 0xA1A, offset: 0x6952B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x1298, symBinAddr: 0x20534, symSize: 0x38 } - - { offsetInCU: 0xA2E, offset: 0x6953F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x12D0, symBinAddr: 0x2056C, symSize: 0x6C } - - { offsetInCU: 0xA42, offset: 0x69553, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x133C, symBinAddr: 0x205D8, symSize: 0xDC } - - { offsetInCU: 0xA56, offset: 0x69567, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1418, symBinAddr: 0x206B4, symSize: 0x1C } - - { offsetInCU: 0xA6A, offset: 0x6957B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1434, symBinAddr: 0x206D0, symSize: 0x74 } - - { offsetInCU: 0xA7E, offset: 0x6958F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x14A8, symBinAddr: 0x20744, symSize: 0x5C } - - { offsetInCU: 0xA92, offset: 0x695A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1504, symBinAddr: 0x207A0, symSize: 0x64 } - - { offsetInCU: 0xAA6, offset: 0x695B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1568, symBinAddr: 0x20804, symSize: 0x10 } - - { offsetInCU: 0xABA, offset: 0x695CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1578, symBinAddr: 0x20814, symSize: 0x28 } - - { offsetInCU: 0xACE, offset: 0x695DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x15A0, symBinAddr: 0x2083C, symSize: 0x3C } - - { offsetInCU: 0xAE2, offset: 0x695F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x15DC, symBinAddr: 0x20878, symSize: 0x6C } - - { offsetInCU: 0xAF6, offset: 0x69607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1654, symBinAddr: 0x208E4, symSize: 0x44 } - - { offsetInCU: 0xB0A, offset: 0x6961B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1698, symBinAddr: 0x20928, symSize: 0x48 } - - { offsetInCU: 0xB1E, offset: 0x6962F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x16E0, symBinAddr: 0x20970, symSize: 0x40 } - - { offsetInCU: 0xB32, offset: 0x69643, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x1720, symBinAddr: 0x209B0, symSize: 0x10 } - - { offsetInCU: 0xB46, offset: 0x69657, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1734, symBinAddr: 0x209C0, symSize: 0x54 } - - { offsetInCU: 0xB5A, offset: 0x6966B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1788, symBinAddr: 0x20A14, symSize: 0x44 } - - { offsetInCU: 0xB6E, offset: 0x6967F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x17CC, symBinAddr: 0x20A58, symSize: 0x10 } - - { offsetInCU: 0xB82, offset: 0x69693, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x17E8, symBinAddr: 0x20A68, symSize: 0x90 } - - { offsetInCU: 0xB96, offset: 0x696A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1878, symBinAddr: 0x20AF8, symSize: 0xBC } - - { offsetInCU: 0xBAA, offset: 0x696BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1934, symBinAddr: 0x20BB4, symSize: 0x8 } - - { offsetInCU: 0xBBE, offset: 0x696CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x193C, symBinAddr: 0x20BBC, symSize: 0x4 } - - { offsetInCU: 0xBD2, offset: 0x696E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1940, symBinAddr: 0x20BC0, symSize: 0xC } - - { offsetInCU: 0xBE6, offset: 0x696F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x194C, symBinAddr: 0x20BCC, symSize: 0x10 } - - { offsetInCU: 0xC3B, offset: 0x6974C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x750, symBinAddr: 0x1F9EC, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x69997, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x20BEC, symSize: 0x190 } - - { offsetInCU: 0x34F, offset: 0x69C78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x190, symBinAddr: 0x20D7C, symSize: 0x628 } - - { offsetInCU: 0x6AA, offset: 0x69FD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2D08, symBinAddr: 0x238F4, symSize: 0x6E8 } - - { offsetInCU: 0xBCE, offset: 0x6A4F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x840, symBinAddr: 0x2142C, symSize: 0x2220 } - - { offsetInCU: 0x1E29, offset: 0x6B752, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB708, symBinAddr: 0x2C2F4, symSize: 0x3C84 } - - { offsetInCU: 0x39B2, offset: 0x6D2DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xF38C, symBinAddr: 0x2FF78, symSize: 0x634 } - - { offsetInCU: 0x3F86, offset: 0x6D8AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tF', symObjAddr: 0xF9E8, symBinAddr: 0x305D4, symSize: 0x40 } - - { offsetInCU: 0x3FAE, offset: 0x6D8D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x1469C, symBinAddr: 0x35288, symSize: 0x3E0 } - - { offsetInCU: 0x413D, offset: 0x6DA66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x11108, symBinAddr: 0x31CF4, symSize: 0x271C } - - { offsetInCU: 0x5871, offset: 0x6F19A, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2A60, symBinAddr: 0x2364C, symSize: 0x2A8 } - - { offsetInCU: 0x5D25, offset: 0x6F64E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x33F0, symBinAddr: 0x23FDC, symSize: 0x5D8 } - - { offsetInCU: 0x6058, offset: 0x6F981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x39C8, symBinAddr: 0x245B4, symSize: 0x394C } - - { offsetInCU: 0x7A52, offset: 0x7137B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x7314, symBinAddr: 0x27F00, symSize: 0x278 } - - { offsetInCU: 0x7B69, offset: 0x71492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x7A10, symBinAddr: 0x285FC, symSize: 0x17AC } - - { offsetInCU: 0x84C3, offset: 0x71DEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x758C, symBinAddr: 0x28178, symSize: 0x118 } - - { offsetInCU: 0x852C, offset: 0x71E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x7800, symBinAddr: 0x283EC, symSize: 0x1E8 } - - { offsetInCU: 0x85F9, offset: 0x71F22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x79E8, symBinAddr: 0x285D4, symSize: 0x28 } - - { offsetInCU: 0x8836, offset: 0x7215F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x9210, symBinAddr: 0x29DFC, symSize: 0x754 } - - { offsetInCU: 0x8C47, offset: 0x72570, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xA898, symBinAddr: 0x2B484, symSize: 0xE70 } - - { offsetInCU: 0x950F, offset: 0x72E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x9964, symBinAddr: 0x2A550, symSize: 0xB2C } - - { offsetInCU: 0x9F70, offset: 0x73899, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xFE54, symBinAddr: 0x30A40, symSize: 0x12B4 } - - { offsetInCU: 0xAFC3, offset: 0x748EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x18310, symBinAddr: 0x38E2C, symSize: 0xBD0 } - - { offsetInCU: 0xBCEA, offset: 0x75613, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x13824, symBinAddr: 0x34410, symSize: 0xE78 } - - { offsetInCU: 0xC618, offset: 0x75F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x14A7C, symBinAddr: 0x35668, symSize: 0x1E8 } - - { offsetInCU: 0xC6AE, offset: 0x75FD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14C64, symBinAddr: 0x35850, symSize: 0x290 } - - { offsetInCU: 0xC79F, offset: 0x760C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14F04, symBinAddr: 0x35AF0, symSize: 0x90 } - - { offsetInCU: 0xC834, offset: 0x7615D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x14FE8, symBinAddr: 0x35BD4, symSize: 0x1004 } - - { offsetInCU: 0xD229, offset: 0x76B52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x15FEC, symBinAddr: 0x36BD8, symSize: 0x4C } - - { offsetInCU: 0xD245, offset: 0x76B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x16038, symBinAddr: 0x36C24, symSize: 0x150 } - - { offsetInCU: 0xD354, offset: 0x76C7D, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x16188, symBinAddr: 0x36D74, symSize: 0x54 } - - { offsetInCU: 0xD3CD, offset: 0x76CF6, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x16230, symBinAddr: 0x36DC8, symSize: 0x4C } - - { offsetInCU: 0xD451, offset: 0x76D7A, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x1627C, symBinAddr: 0x36E14, symSize: 0x50 } - - { offsetInCU: 0xD4CA, offset: 0x76DF3, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x162CC, symBinAddr: 0x36E64, symSize: 0x64 } - - { offsetInCU: 0xD50C, offset: 0x76E35, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x16330, symBinAddr: 0x36EC8, symSize: 0x30 } - - { offsetInCU: 0xD539, offset: 0x76E62, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16360, symBinAddr: 0x36EF8, symSize: 0x80 } - - { offsetInCU: 0xD5D7, offset: 0x76F00, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x163E0, symBinAddr: 0x36F78, symSize: 0x6C } - - { offsetInCU: 0xD671, offset: 0x76F9A, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1644C, symBinAddr: 0x36FE4, symSize: 0x4C } - - { offsetInCU: 0xD6F5, offset: 0x7701E, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x164C4, symBinAddr: 0x3705C, symSize: 0xE0 } - - { offsetInCU: 0xD73F, offset: 0x77068, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x165A4, symBinAddr: 0x3713C, symSize: 0xC4 } - - { offsetInCU: 0xD76C, offset: 0x77095, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x16668, symBinAddr: 0x37200, symSize: 0x174 } - - { offsetInCU: 0xD820, offset: 0x77149, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x167DC, symBinAddr: 0x37374, symSize: 0x104 } - - { offsetInCU: 0xD9B3, offset: 0x772DC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x168E0, symBinAddr: 0x37478, symSize: 0x128 } - - { offsetInCU: 0xDB56, offset: 0x7747F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x16A08, symBinAddr: 0x375A0, symSize: 0x16C } - - { offsetInCU: 0xDD2B, offset: 0x77654, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x16B74, symBinAddr: 0x3770C, symSize: 0x174 } - - { offsetInCU: 0xDEE6, offset: 0x7780F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x16CE8, symBinAddr: 0x37880, symSize: 0xFC } - - { offsetInCU: 0xE089, offset: 0x779B2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x16DE4, symBinAddr: 0x3797C, symSize: 0xFC } - - { offsetInCU: 0xE22C, offset: 0x77B55, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x16FE4, symBinAddr: 0x37B7C, symSize: 0xFC } - - { offsetInCU: 0xE356, offset: 0x77C7F, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x170E0, symBinAddr: 0x37C78, symSize: 0x40 } - - { offsetInCU: 0xE3A3, offset: 0x77CCC, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x17384, symBinAddr: 0x37F1C, symSize: 0x138 } - - { offsetInCU: 0xE442, offset: 0x77D6B, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x174BC, symBinAddr: 0x38054, symSize: 0xB4 } - - { offsetInCU: 0xE511, offset: 0x77E3A, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x177BC, symBinAddr: 0x38314, symSize: 0x18C } - - { offsetInCU: 0xE622, offset: 0x77F4B, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x17948, symBinAddr: 0x384A0, symSize: 0xC0 } - - { offsetInCU: 0xE725, offset: 0x7804E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17C24, symBinAddr: 0x38740, symSize: 0x1A0 } - - { offsetInCU: 0xE87A, offset: 0x781A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17DC4, symBinAddr: 0x388E0, symSize: 0x380 } - - { offsetInCU: 0xEBA6, offset: 0x784CF, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18EE0, symBinAddr: 0x399FC, symSize: 0x198 } - - { offsetInCU: 0xECC2, offset: 0x785EB, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x19078, symBinAddr: 0x39B94, symSize: 0xC0 } - - { offsetInCU: 0xEFF4, offset: 0x7891D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x19138, symBinAddr: 0x39C54, symSize: 0xD28 } - - { offsetInCU: 0x1026F, offset: 0x79B98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19E60, symBinAddr: 0x3A97C, symSize: 0x1C0 } - - { offsetInCU: 0x1041D, offset: 0x79D46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1A020, symBinAddr: 0x3AB3C, symSize: 0x1A4 } - - { offsetInCU: 0x10510, offset: 0x79E39, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1A1C4, symBinAddr: 0x3ACE0, symSize: 0x84 } - - { offsetInCU: 0x1071D, offset: 0x7A046, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1ACC8, symBinAddr: 0x3B7E4, symSize: 0x8 } - - { offsetInCU: 0x10731, offset: 0x7A05A, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1ADAC, symBinAddr: 0x3B8C8, symSize: 0x10 } - - { offsetInCU: 0x10745, offset: 0x7A06E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1ADBC, symBinAddr: 0x3B8D8, symSize: 0x14 } - - { offsetInCU: 0x10759, offset: 0x7A082, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1ADD0, symBinAddr: 0x3B8EC, symSize: 0x50 } - - { offsetInCU: 0x1076D, offset: 0x7A096, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1AE30, symBinAddr: 0x3B93C, symSize: 0x44 } - - { offsetInCU: 0x10781, offset: 0x7A0AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1AE74, symBinAddr: 0x3B980, symSize: 0x30C } - - { offsetInCU: 0x10795, offset: 0x7A0BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1B180, symBinAddr: 0x3BC8C, symSize: 0x240 } - - { offsetInCU: 0x107A9, offset: 0x7A0D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1B3C0, symBinAddr: 0x3BECC, symSize: 0x70 } - - { offsetInCU: 0x107BD, offset: 0x7A0E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1B430, symBinAddr: 0x3BF3C, symSize: 0x34 } - - { offsetInCU: 0x107D1, offset: 0x7A0FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1B464, symBinAddr: 0x3BF70, symSize: 0x174 } - - { offsetInCU: 0x107E5, offset: 0x7A10E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1B5D8, symBinAddr: 0x3C0E4, symSize: 0xB4 } - - { offsetInCU: 0x1081A, offset: 0x7A143, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1BEA4, symBinAddr: 0x3C198, symSize: 0xC4 } - - { offsetInCU: 0x10890, offset: 0x7A1B9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BF68, symBinAddr: 0x3C25C, symSize: 0x78 } - - { offsetInCU: 0x108BD, offset: 0x7A1E6, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1BFE0, symBinAddr: 0x3C2D4, symSize: 0x80 } - - { offsetInCU: 0x10933, offset: 0x7A25C, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1C060, symBinAddr: 0x3C354, symSize: 0x68 } - - { offsetInCU: 0x10A57, offset: 0x7A380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1C0C8, symBinAddr: 0x3C3BC, symSize: 0x644 } - - { offsetInCU: 0x10EFB, offset: 0x7A824, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1C71C, symBinAddr: 0x3CA10, symSize: 0x4C } - - { offsetInCU: 0x10F0F, offset: 0x7A838, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1C810, symBinAddr: 0x3CA7C, symSize: 0x8 } - - { offsetInCU: 0x10F23, offset: 0x7A84C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1C818, symBinAddr: 0x3CA84, symSize: 0x44 } - - { offsetInCU: 0x10F37, offset: 0x7A860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1C85C, symBinAddr: 0x3CAC8, symSize: 0x44 } - - { offsetInCU: 0x10F4B, offset: 0x7A874, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1C908, symBinAddr: 0x3CB30, symSize: 0x8 } - - { offsetInCU: 0x10F5F, offset: 0x7A888, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1C920, symBinAddr: 0x3CB38, symSize: 0x3C } - - { offsetInCU: 0x10F73, offset: 0x7A89C, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1C95C, symBinAddr: 0x3CB74, symSize: 0x34 } - - { offsetInCU: 0x10F87, offset: 0x7A8B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1CA10, symBinAddr: 0x3CC28, symSize: 0x44 } - - { offsetInCU: 0x10FBC, offset: 0x7A8E5, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1CB18, symBinAddr: 0x3CD30, symSize: 0x48 } - - { offsetInCU: 0x10FDB, offset: 0x7A904, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x1CB60, symBinAddr: 0x3CD78, symSize: 0x64 } - - { offsetInCU: 0x1101E, offset: 0x7A947, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x1CBC4, symBinAddr: 0x3CDDC, symSize: 0x80 } - - { offsetInCU: 0x110B3, offset: 0x7A9DC, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x1CC44, symBinAddr: 0x3CE5C, symSize: 0x120 } - - { offsetInCU: 0x1119B, offset: 0x7AAC4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x1CDAC, symBinAddr: 0x3CFC4, symSize: 0x48 } - - { offsetInCU: 0x111AF, offset: 0x7AAD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1CDF4, symBinAddr: 0x3D00C, symSize: 0x40 } - - { offsetInCU: 0x111C3, offset: 0x7AAEC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1CF08, symBinAddr: 0x3D120, symSize: 0x48 } - - { offsetInCU: 0x111D7, offset: 0x7AB00, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1CFD0, symBinAddr: 0x3D1E8, symSize: 0x18 } - - { offsetInCU: 0x111EB, offset: 0x7AB14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1CFE8, symBinAddr: 0x3D200, symSize: 0x10 } - - { offsetInCU: 0x111FF, offset: 0x7AB28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1CFF8, symBinAddr: 0x3D210, symSize: 0x34 } - - { offsetInCU: 0x11213, offset: 0x7AB3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1D068, symBinAddr: 0x3D280, symSize: 0x30 } - - { offsetInCU: 0x112C9, offset: 0x7ABF2, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x7B8, symBinAddr: 0x213A4, symSize: 0x88 } - - { offsetInCU: 0x116A8, offset: 0x7AFD1, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xA490, symBinAddr: 0x2B07C, symSize: 0x408 } - - { offsetInCU: 0x11983, offset: 0x7B2AC, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xFCC8, symBinAddr: 0x308B4, symSize: 0x18C } - - { offsetInCU: 0x11BA1, offset: 0x7B4CA, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x14F94, symBinAddr: 0x35B80, symSize: 0x54 } - - { offsetInCU: 0x11D0E, offset: 0x7B637, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x17570, symBinAddr: 0x38108, symSize: 0x110 } - - { offsetInCU: 0x11E4F, offset: 0x7B778, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x176C0, symBinAddr: 0x38218, symSize: 0xFC } - - { offsetInCU: 0x11F50, offset: 0x7B879, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x17A68, symBinAddr: 0x38584, symSize: 0x1BC } - - { offsetInCU: 0x1201E, offset: 0x7B947, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x18144, symBinAddr: 0x38C60, symSize: 0x1CC } - - { offsetInCU: 0x122E1, offset: 0x7BC0A, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1A424, symBinAddr: 0x3AF40, symSize: 0x1DC } - - { offsetInCU: 0x123CD, offset: 0x7BCF6, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1A600, symBinAddr: 0x3B11C, symSize: 0x11C } - - { offsetInCU: 0x12514, offset: 0x7BE3D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1A71C, symBinAddr: 0x3B238, symSize: 0xFC } - - { offsetInCU: 0x1265B, offset: 0x7BF84, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1A818, symBinAddr: 0x3B334, symSize: 0xE4 } - - { offsetInCU: 0x12796, offset: 0x7C0BF, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1A8FC, symBinAddr: 0x3B418, symSize: 0x114 } - - { offsetInCU: 0x128D7, offset: 0x7C200, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1AA10, symBinAddr: 0x3B52C, symSize: 0xEC } - - { offsetInCU: 0x12A1E, offset: 0x7C347, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1ABE4, symBinAddr: 0x3B700, symSize: 0xE4 } - - { offsetInCU: 0x12B7D, offset: 0x7C4A6, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1CA54, symBinAddr: 0x3CC6C, symSize: 0xC4 } - - { offsetInCU: 0x12E23, offset: 0x7C74C, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x76A4, symBinAddr: 0x28290, symSize: 0x15C } - - { offsetInCU: 0x27, offset: 0x7CCFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3D2E8, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7CD12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3D2E8, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7CD26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3D318, symSize: 0xEC } - - { offsetInCU: 0x67, offset: 0x7CD3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3D404, symSize: 0x278 } - - { offsetInCU: 0x7B, offset: 0x7CD4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x394, symBinAddr: 0x3D67C, symSize: 0x41C } - - { offsetInCU: 0x8F, offset: 0x7CD62, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7E4, symBinAddr: 0x3DA98, symSize: 0x8 } - - { offsetInCU: 0xA3, offset: 0x7CD76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7EC, symBinAddr: 0x3DAA0, symSize: 0x248 } - - { offsetInCU: 0xB7, offset: 0x7CD8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA34, symBinAddr: 0x3DCE8, symSize: 0x48 } - - { offsetInCU: 0xCB, offset: 0x7CD9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA7C, symBinAddr: 0x3DD30, symSize: 0xBC } - - { offsetInCU: 0xDF, offset: 0x7CDB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB38, symBinAddr: 0x3DDEC, symSize: 0x10 } - - { offsetInCU: 0x251, offset: 0x7D0E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x4B4, symBinAddr: 0x3E2A8, symSize: 0x204 } - - { offsetInCU: 0x300, offset: 0x7D193, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x6B8, symBinAddr: 0x3E4AC, symSize: 0xC10 } - - { offsetInCU: 0x788, offset: 0x7D61B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x12C8, symBinAddr: 0x3F0BC, symSize: 0x540 } - - { offsetInCU: 0x9A8, offset: 0x7D83B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1808, symBinAddr: 0x3F5FC, symSize: 0x920 } - - { offsetInCU: 0xD3E, offset: 0x7DBD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x2154, symBinAddr: 0x3FF48, symSize: 0x20FC } - - { offsetInCU: 0x202F, offset: 0x7EEC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE414, symBinAddr: 0x4C208, symSize: 0x6B8 } - - { offsetInCU: 0x23FC, offset: 0x7F28F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4250, symBinAddr: 0x42044, symSize: 0x1190 } - - { offsetInCU: 0x2F50, offset: 0x7FDE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x53E0, symBinAddr: 0x431D4, symSize: 0xB94 } - - { offsetInCU: 0x377E, offset: 0x80611, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x5F74, symBinAddr: 0x43D68, symSize: 0x3DC } - - { offsetInCU: 0x3895, offset: 0x80728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x6BD4, symBinAddr: 0x449C8, symSize: 0x1EC } - - { offsetInCU: 0x3B41, offset: 0x809D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x6DC0, symBinAddr: 0x44BB4, symSize: 0x914 } - - { offsetInCU: 0x42D4, offset: 0x81167, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x76D4, symBinAddr: 0x454C8, symSize: 0x2A8 } - - { offsetInCU: 0x440C, offset: 0x8129F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x797C, symBinAddr: 0x45770, symSize: 0x628 } - - { offsetInCU: 0x47FD, offset: 0x81690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x7FA4, symBinAddr: 0x45D98, symSize: 0x658 } - - { offsetInCU: 0x4ABF, offset: 0x81952, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x85FC, symBinAddr: 0x463F0, symSize: 0x230 } - - { offsetInCU: 0x4B7D, offset: 0x81A10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x882C, symBinAddr: 0x46620, symSize: 0x22C } - - { offsetInCU: 0x4C00, offset: 0x81A93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x8A58, symBinAddr: 0x4684C, symSize: 0x80 } - - { offsetInCU: 0x4C2D, offset: 0x81AC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x8AD8, symBinAddr: 0x468CC, symSize: 0x1C } - - { offsetInCU: 0x4C69, offset: 0x81AFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD05C, symBinAddr: 0x4AE50, symSize: 0x780 } - - { offsetInCU: 0x4FB4, offset: 0x81E47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xD7DC, symBinAddr: 0x4B5D0, symSize: 0x9BC } - - { offsetInCU: 0x52A3, offset: 0x82136, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE198, symBinAddr: 0x4BF8C, symSize: 0x218 } - - { offsetInCU: 0x5378, offset: 0x8220B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xEACC, symBinAddr: 0x4C8C0, symSize: 0x81C } - - { offsetInCU: 0x5683, offset: 0x82516, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF2E8, symBinAddr: 0x4D0DC, symSize: 0xBA8 } - - { offsetInCU: 0x5972, offset: 0x82805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0xFE90, symBinAddr: 0x4DC84, symSize: 0x278 } - - { offsetInCU: 0x5A47, offset: 0x828DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x10108, symBinAddr: 0x4DEFC, symSize: 0x214 } - - { offsetInCU: 0x5F3D, offset: 0x82DD0, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2128, symBinAddr: 0x3FF1C, symSize: 0x2C } - - { offsetInCU: 0x623B, offset: 0x830CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x8AF4, symBinAddr: 0x468E8, symSize: 0x20 } - - { offsetInCU: 0x6294, offset: 0x83127, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x8B14, symBinAddr: 0x46908, symSize: 0x8C } - - { offsetInCU: 0x632C, offset: 0x831BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x8BA0, symBinAddr: 0x46994, symSize: 0x1258 } - - { offsetInCU: 0x6AA4, offset: 0x83937, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0x9DF8, symBinAddr: 0x47BEC, symSize: 0x40 } - - { offsetInCU: 0x6AE8, offset: 0x8397B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0x9E38, symBinAddr: 0x47C2C, symSize: 0x58 } - - { offsetInCU: 0x6B13, offset: 0x839A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0x9E90, symBinAddr: 0x47C84, symSize: 0x54 } - - { offsetInCU: 0x6B55, offset: 0x839E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9EE4, symBinAddr: 0x47CD8, symSize: 0x64 } - - { offsetInCU: 0x6B88, offset: 0x83A1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x9F48, symBinAddr: 0x47D3C, symSize: 0x4 } - - { offsetInCU: 0x6BB3, offset: 0x83A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x9F4C, symBinAddr: 0x47D40, symSize: 0x78 } - - { offsetInCU: 0x6BF5, offset: 0x83A88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x9FC4, symBinAddr: 0x47DB8, symSize: 0x90 } - - { offsetInCU: 0x6C37, offset: 0x83ACA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA054, symBinAddr: 0x47E48, symSize: 0x6C } - - { offsetInCU: 0x6C6A, offset: 0x83AFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA0C0, symBinAddr: 0x47EB4, symSize: 0x4 } - - { offsetInCU: 0x6C86, offset: 0x83B19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA0C4, symBinAddr: 0x47EB8, symSize: 0x4 } - - { offsetInCU: 0x6CB1, offset: 0x83B44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA0C8, symBinAddr: 0x47EBC, symSize: 0x74 } - - { offsetInCU: 0x6CE4, offset: 0x83B77, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA13C, symBinAddr: 0x47F30, symSize: 0x4 } - - { offsetInCU: 0x6D03, offset: 0x83B96, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA140, symBinAddr: 0x47F34, symSize: 0x8 } - - { offsetInCU: 0x6D1F, offset: 0x83BB2, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA140, symBinAddr: 0x47F34, symSize: 0x8 } - - { offsetInCU: 0x6D30, offset: 0x83BC3, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA148, symBinAddr: 0x47F3C, symSize: 0xC8 } - - { offsetInCU: 0x6DCD, offset: 0x83C60, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA210, symBinAddr: 0x48004, symSize: 0xCC } - - { offsetInCU: 0x6E79, offset: 0x83D0C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA3D8, symBinAddr: 0x481CC, symSize: 0x1F4 } - - { offsetInCU: 0x6F05, offset: 0x83D98, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xA5CC, symBinAddr: 0x483C0, symSize: 0x1C4 } - - { offsetInCU: 0x6FBD, offset: 0x83E50, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xA790, symBinAddr: 0x48584, symSize: 0x3A0 } - - { offsetInCU: 0x70DD, offset: 0x83F70, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAB30, symBinAddr: 0x48924, symSize: 0x398 } - - { offsetInCU: 0x71F4, offset: 0x84087, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xAEC8, symBinAddr: 0x48CBC, symSize: 0x1E4 } - - { offsetInCU: 0x7285, offset: 0x84118, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB0AC, symBinAddr: 0x48EA0, symSize: 0x204 } - - { offsetInCU: 0x730B, offset: 0x8419E, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB2B0, symBinAddr: 0x490A4, symSize: 0x4C } - - { offsetInCU: 0x73C8, offset: 0x8425B, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB2FC, symBinAddr: 0x490F0, symSize: 0x90 } - - { offsetInCU: 0x7463, offset: 0x842F6, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB38C, symBinAddr: 0x49180, symSize: 0x40 } - - { offsetInCU: 0x74A0, offset: 0x84333, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB3CC, symBinAddr: 0x491C0, symSize: 0x18 } - - { offsetInCU: 0x74F2, offset: 0x84385, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB3E4, symBinAddr: 0x491D8, symSize: 0x3C } - - { offsetInCU: 0x751B, offset: 0x843AE, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB420, symBinAddr: 0x49214, symSize: 0x1C } - - { offsetInCU: 0x75EB, offset: 0x8447E, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB43C, symBinAddr: 0x49230, symSize: 0xE0 } - - { offsetInCU: 0x770E, offset: 0x845A1, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xB600, symBinAddr: 0x493F4, symSize: 0x294 } - - { offsetInCU: 0x7785, offset: 0x84618, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBB30, symBinAddr: 0x49924, symSize: 0x8C } - - { offsetInCU: 0x779D, offset: 0x84630, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBBBC, symBinAddr: 0x499B0, symSize: 0x4C } - - { offsetInCU: 0x77F2, offset: 0x84685, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBC08, symBinAddr: 0x499FC, symSize: 0x154 } - - { offsetInCU: 0x7860, offset: 0x846F3, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xBD5C, symBinAddr: 0x49B50, symSize: 0xF0 } - - { offsetInCU: 0x7885, offset: 0x84718, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xBE4C, symBinAddr: 0x49C40, symSize: 0x214 } - - { offsetInCU: 0x78BE, offset: 0x84751, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC060, symBinAddr: 0x49E54, symSize: 0x78 } - - { offsetInCU: 0x78D6, offset: 0x84769, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC0D8, symBinAddr: 0x49ECC, symSize: 0x1C } - - { offsetInCU: 0x78EE, offset: 0x84781, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC0F4, symBinAddr: 0x49EE8, symSize: 0x1C } - - { offsetInCU: 0x7906, offset: 0x84799, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC110, symBinAddr: 0x49F04, symSize: 0x1C } - - { offsetInCU: 0x796B, offset: 0x847FE, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC12C, symBinAddr: 0x49F20, symSize: 0x104 } - - { offsetInCU: 0x7ACE, offset: 0x84961, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC230, symBinAddr: 0x4A024, symSize: 0x174 } - - { offsetInCU: 0x7C3E, offset: 0x84AD1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC3A4, symBinAddr: 0x4A198, symSize: 0x124 } - - { offsetInCU: 0x7D3E, offset: 0x84BD1, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC4C8, symBinAddr: 0x4A2BC, symSize: 0x120 } - - { offsetInCU: 0x7F8A, offset: 0x84E1D, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xC5E8, symBinAddr: 0x4A3DC, symSize: 0x36C } - - { offsetInCU: 0x8578, offset: 0x8540B, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xC954, symBinAddr: 0x4A748, symSize: 0x290 } - - { offsetInCU: 0x8765, offset: 0x855F8, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xCBE4, symBinAddr: 0x4A9D8, symSize: 0x150 } - - { offsetInCU: 0x88CB, offset: 0x8575E, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xCD34, symBinAddr: 0x4AB28, symSize: 0x218 } - - { offsetInCU: 0x8917, offset: 0x857AA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xCF4C, symBinAddr: 0x4AD40, symSize: 0x14 } - - { offsetInCU: 0x8950, offset: 0x857E3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xCF60, symBinAddr: 0x4AD54, symSize: 0xFC } - - { offsetInCU: 0x8A0E, offset: 0x858A1, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0xE3B0, symBinAddr: 0x4C1A4, symSize: 0x64 } - - { offsetInCU: 0x8ABA, offset: 0x8594D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x1031C, symBinAddr: 0x4E110, symSize: 0xA78 } - - { offsetInCU: 0x9088, offset: 0x85F1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10D94, symBinAddr: 0x4EB88, symSize: 0x104 } - - { offsetInCU: 0x91F4, offset: 0x86087, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x10E98, symBinAddr: 0x4EC8C, symSize: 0x2D5C } - - { offsetInCU: 0x98BA, offset: 0x8674D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x13BF4, symBinAddr: 0x519E8, symSize: 0x120 } - - { offsetInCU: 0x99CB, offset: 0x8685E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x13D14, symBinAddr: 0x51B08, symSize: 0x80 } - - { offsetInCU: 0x9A4E, offset: 0x868E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x13D94, symBinAddr: 0x51B88, symSize: 0x654 } - - { offsetInCU: 0x9DEA, offset: 0x86C7D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14448, symBinAddr: 0x521DC, symSize: 0x10 } - - { offsetInCU: 0x9DFE, offset: 0x86C91, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x14458, symBinAddr: 0x521EC, symSize: 0x10 } - - { offsetInCU: 0x9E12, offset: 0x86CA5, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x144AC, symBinAddr: 0x521FC, symSize: 0x48 } - - { offsetInCU: 0x9E26, offset: 0x86CB9, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x1455C, symBinAddr: 0x52244, symSize: 0x3C } - - { offsetInCU: 0x9E3A, offset: 0x86CCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x14598, symBinAddr: 0x52280, symSize: 0x44 } - - { offsetInCU: 0x9E4E, offset: 0x86CE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOf', symObjAddr: 0x145DC, symBinAddr: 0x522C4, symSize: 0x48 } - - { offsetInCU: 0x9E62, offset: 0x86CF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x1469C, symBinAddr: 0x52348, symSize: 0x8 } - - { offsetInCU: 0x9E76, offset: 0x86D09, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x146A4, symBinAddr: 0x52350, symSize: 0x10 } - - { offsetInCU: 0x9E8A, offset: 0x86D1D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x146B4, symBinAddr: 0x52360, symSize: 0x8 } - - { offsetInCU: 0x9E9E, offset: 0x86D31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x1473C, symBinAddr: 0x523A4, symSize: 0x30 } - - { offsetInCU: 0x9EF6, offset: 0x86D89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x147FC, symBinAddr: 0x52464, symSize: 0x24 } - - { offsetInCU: 0x9F32, offset: 0x86DC5, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14868, symBinAddr: 0x52488, symSize: 0x44 } - - { offsetInCU: 0x9F61, offset: 0x86DF4, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x3DDFC, symSize: 0x12C } - - { offsetInCU: 0x9F97, offset: 0x86E2A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x12C, symBinAddr: 0x3DF28, symSize: 0x58 } - - { offsetInCU: 0xA077, offset: 0x86F0A, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x184, symBinAddr: 0x3DF80, symSize: 0x90 } - - { offsetInCU: 0xA0A0, offset: 0x86F33, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x214, symBinAddr: 0x3E010, symSize: 0xA0 } - - { offsetInCU: 0xA1CC, offset: 0x8705F, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x3E0B0, symSize: 0x9C } - - { offsetInCU: 0xA2DB, offset: 0x8716E, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x350, symBinAddr: 0x3E14C, symSize: 0x74 } - - { offsetInCU: 0xA360, offset: 0x871F3, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x3C4, symBinAddr: 0x3E1C0, symSize: 0x4 } - - { offsetInCU: 0xA382, offset: 0x87215, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3D0, symBinAddr: 0x3E1C4, symSize: 0xE4 } - - { offsetInCU: 0x62, offset: 0x87C11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x52590, symSize: 0x20 } - - { offsetInCU: 0x8D, offset: 0x87C3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x53400, symSize: 0x8 } - - { offsetInCU: 0xB8, offset: 0x87C67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE78, symBinAddr: 0x53408, symSize: 0x24 } - - { offsetInCU: 0xE9, offset: 0x87C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE9C, symBinAddr: 0x5342C, symSize: 0xC } - - { offsetInCU: 0x105, offset: 0x87CB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEA8, symBinAddr: 0x53438, symSize: 0xC } - - { offsetInCU: 0x121, offset: 0x87CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5B80, symBinAddr: 0x58080, symSize: 0x12C } - - { offsetInCU: 0x167, offset: 0x87D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x525B0, symSize: 0x17C } - - { offsetInCU: 0x1BC, offset: 0x87D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF04, symBinAddr: 0x53494, symSize: 0x50 } - - { offsetInCU: 0x1F3, offset: 0x87DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF54, symBinAddr: 0x534E4, symSize: 0x50 } - - { offsetInCU: 0x216, offset: 0x87DC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5CAC, symBinAddr: 0x581AC, symSize: 0x132C } - - { offsetInCU: 0x267, offset: 0x87E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x19C, symBinAddr: 0x5272C, symSize: 0x20 } - - { offsetInCU: 0x2B6, offset: 0x87E65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xFA4, symBinAddr: 0x53534, symSize: 0x14 } - - { offsetInCU: 0x31C, offset: 0x87ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xFBC, symBinAddr: 0x5354C, symSize: 0x28 } - - { offsetInCU: 0x396, offset: 0x87F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFE8, symBinAddr: 0x53578, symSize: 0x8 } - - { offsetInCU: 0x3C1, offset: 0x87F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xFF0, symBinAddr: 0x53580, symSize: 0x24 } - - { offsetInCU: 0x3F2, offset: 0x87FA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1014, symBinAddr: 0x535A4, symSize: 0xC } - - { offsetInCU: 0x40E, offset: 0x87FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1020, symBinAddr: 0x535B0, symSize: 0xC } - - { offsetInCU: 0x42A, offset: 0x87FD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7ABC, symBinAddr: 0x595A4, symSize: 0x1DC } - - { offsetInCU: 0x470, offset: 0x8801F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BC, symBinAddr: 0x5274C, symSize: 0x264 } - - { offsetInCU: 0x4C5, offset: 0x88074, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x107C, symBinAddr: 0x5360C, symSize: 0x50 } - - { offsetInCU: 0x4FC, offset: 0x880AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10CC, symBinAddr: 0x5365C, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x880CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C98, symBinAddr: 0x59780, symSize: 0xF38 } - - { offsetInCU: 0x569, offset: 0x88118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x420, symBinAddr: 0x529B0, symSize: 0x20 } - - { offsetInCU: 0x5A2, offset: 0x88151, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x529D0, symSize: 0x20 } - - { offsetInCU: 0x5D0, offset: 0x8817F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x440, symBinAddr: 0x529D0, symSize: 0x20 } - - { offsetInCU: 0x624, offset: 0x881D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1140, symBinAddr: 0x536D0, symSize: 0x64 } - - { offsetInCU: 0x68A, offset: 0x88239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x11A4, symBinAddr: 0x53734, symSize: 0x28 } - - { offsetInCU: 0x6A6, offset: 0x88255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x11CC, symBinAddr: 0x5375C, symSize: 0x8 } - - { offsetInCU: 0x6DC, offset: 0x8828B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11D4, symBinAddr: 0x53764, symSize: 0x68 } - - { offsetInCU: 0x761, offset: 0x88310, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x123C, symBinAddr: 0x537CC, symSize: 0xC } - - { offsetInCU: 0x77D, offset: 0x8832C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1248, symBinAddr: 0x537D8, symSize: 0xC } - - { offsetInCU: 0x79A, offset: 0x88349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x460, symBinAddr: 0x529F0, symSize: 0x190 } - - { offsetInCU: 0x7EF, offset: 0x8839E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x12A4, symBinAddr: 0x53834, symSize: 0x48 } - - { offsetInCU: 0x826, offset: 0x883D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12EC, symBinAddr: 0x5387C, symSize: 0x40 } - - { offsetInCU: 0x849, offset: 0x883F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DAC, symBinAddr: 0x5A894, symSize: 0x220 } - - { offsetInCU: 0x899, offset: 0x88448, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x5F0, symBinAddr: 0x52B80, symSize: 0x20 } - - { offsetInCU: 0x8C4, offset: 0x88473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x132C, symBinAddr: 0x538BC, symSize: 0x8 } - - { offsetInCU: 0x8EF, offset: 0x8849E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1334, symBinAddr: 0x538C4, symSize: 0x24 } - - { offsetInCU: 0x920, offset: 0x884CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1358, symBinAddr: 0x538E8, symSize: 0xC } - - { offsetInCU: 0x93C, offset: 0x884EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1364, symBinAddr: 0x538F4, symSize: 0xC } - - { offsetInCU: 0x958, offset: 0x88507, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8FCC, symBinAddr: 0x5AAB4, symSize: 0x2AC } - - { offsetInCU: 0x99E, offset: 0x8854D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x610, symBinAddr: 0x52BA0, symSize: 0x268 } - - { offsetInCU: 0x9F3, offset: 0x885A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13C0, symBinAddr: 0x53950, symSize: 0x60 } - - { offsetInCU: 0xA2A, offset: 0x885D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1420, symBinAddr: 0x539B0, symSize: 0x58 } - - { offsetInCU: 0xA4D, offset: 0x885FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9278, symBinAddr: 0x5AD60, symSize: 0x538 } - - { offsetInCU: 0xA9D, offset: 0x8864C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x878, symBinAddr: 0x52E08, symSize: 0x20 } - - { offsetInCU: 0xAE8, offset: 0x88697, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1478, symBinAddr: 0x53A08, symSize: 0x18 } - - { offsetInCU: 0xB79, offset: 0x88728, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x53A20, symSize: 0x44 } - - { offsetInCU: 0xC5C, offset: 0x8880B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D4, symBinAddr: 0x53A64, symSize: 0x28 } - - { offsetInCU: 0xCCE, offset: 0x8887D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x153C, symBinAddr: 0x53ACC, symSize: 0x8 } - - { offsetInCU: 0xCF9, offset: 0x888A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1544, symBinAddr: 0x53AD4, symSize: 0x24 } - - { offsetInCU: 0xD2A, offset: 0x888D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1568, symBinAddr: 0x53AF8, symSize: 0xC } - - { offsetInCU: 0xD46, offset: 0x888F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1574, symBinAddr: 0x53B04, symSize: 0xC } - - { offsetInCU: 0xD62, offset: 0x88911, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x97B0, symBinAddr: 0x5B298, symSize: 0xB4 } - - { offsetInCU: 0xDA8, offset: 0x88957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x898, symBinAddr: 0x52E28, symSize: 0x118 } - - { offsetInCU: 0xDFD, offset: 0x889AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15D0, symBinAddr: 0x53B60, symSize: 0x2C } - - { offsetInCU: 0xE34, offset: 0x889E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15FC, symBinAddr: 0x53B8C, symSize: 0x1C } - - { offsetInCU: 0xE57, offset: 0x88A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9864, symBinAddr: 0x5B34C, symSize: 0x1A0 } - - { offsetInCU: 0xEA8, offset: 0x88A57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x9B0, symBinAddr: 0x52F40, symSize: 0x20 } - - { offsetInCU: 0xED3, offset: 0x88A82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x169C, symBinAddr: 0x53C2C, symSize: 0x8 } - - { offsetInCU: 0xEFE, offset: 0x88AAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16A4, symBinAddr: 0x53C34, symSize: 0x24 } - - { offsetInCU: 0xF2F, offset: 0x88ADE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16C8, symBinAddr: 0x53C58, symSize: 0xC } - - { offsetInCU: 0xF4B, offset: 0x88AFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16D4, symBinAddr: 0x53C64, symSize: 0xC } - - { offsetInCU: 0xF67, offset: 0x88B16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9A04, symBinAddr: 0x5B4EC, symSize: 0x234 } - - { offsetInCU: 0xFAD, offset: 0x88B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9D0, symBinAddr: 0x52F60, symSize: 0x214 } - - { offsetInCU: 0x1002, offset: 0x88BB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1730, symBinAddr: 0x53CC0, symSize: 0x70 } - - { offsetInCU: 0x1039, offset: 0x88BE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x53D30, symSize: 0x68 } - - { offsetInCU: 0x105C, offset: 0x88C0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9C38, symBinAddr: 0x5B720, symSize: 0x8C8 } - - { offsetInCU: 0x10A6, offset: 0x88C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBE4, symBinAddr: 0x53174, symSize: 0x20 } - - { offsetInCU: 0x10DF, offset: 0x88C8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x53194, symSize: 0x20 } - - { offsetInCU: 0x110D, offset: 0x88CBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC04, symBinAddr: 0x53194, symSize: 0x20 } - - { offsetInCU: 0x1156, offset: 0x88D05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x198C, symBinAddr: 0x53F1C, symSize: 0x44 } - - { offsetInCU: 0x119C, offset: 0x88D4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x19D0, symBinAddr: 0x53F60, symSize: 0x28 } - - { offsetInCU: 0x11B0, offset: 0x88D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x19F8, symBinAddr: 0x53F88, symSize: 0x8 } - - { offsetInCU: 0x11E6, offset: 0x88D95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A00, symBinAddr: 0x53F90, symSize: 0x3C } - - { offsetInCU: 0x124B, offset: 0x88DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1A3C, symBinAddr: 0x53FCC, symSize: 0xC } - - { offsetInCU: 0x1267, offset: 0x88E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A48, symBinAddr: 0x53FD8, symSize: 0xC } - - { offsetInCU: 0x1283, offset: 0x88E32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xA5CC, symBinAddr: 0x5C0B4, symSize: 0x50 } - - { offsetInCU: 0x12AF, offset: 0x88E5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC24, symBinAddr: 0x531B4, symSize: 0x244 } - - { offsetInCU: 0x1304, offset: 0x88EB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA4, symBinAddr: 0x54034, symSize: 0x58 } - - { offsetInCU: 0x133B, offset: 0x88EEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AFC, symBinAddr: 0x5408C, symSize: 0x50 } - - { offsetInCU: 0x135E, offset: 0x88F0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA61C, symBinAddr: 0x5C104, symSize: 0x760 } - - { offsetInCU: 0x13D3, offset: 0x88F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1B4C, symBinAddr: 0x540DC, symSize: 0x1B8 } - - { offsetInCU: 0x142F, offset: 0x88FDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x1D04, symBinAddr: 0x54294, symSize: 0x10 } - - { offsetInCU: 0x1476, offset: 0x89025, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5948, symBinAddr: 0x57ECC, symSize: 0x54 } - - { offsetInCU: 0x14E1, offset: 0x89090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x599C, symBinAddr: 0x57F20, symSize: 0x80 } - - { offsetInCU: 0x1534, offset: 0x890E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5A1C, symBinAddr: 0x57FA0, symSize: 0x8 } - - { offsetInCU: 0x156A, offset: 0x89119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5A24, symBinAddr: 0x57FA8, symSize: 0x24 } - - { offsetInCU: 0x15EA, offset: 0x89199, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5A84, symBinAddr: 0x58008, symSize: 0x8 } - - { offsetInCU: 0x1607, offset: 0x891B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x1D14, symBinAddr: 0x542A4, symSize: 0x20 } - - { offsetInCU: 0x161B, offset: 0x891CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x1D34, symBinAddr: 0x542C4, symSize: 0xF4 } - - { offsetInCU: 0x162F, offset: 0x891DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x1E28, symBinAddr: 0x543B8, symSize: 0x384 } - - { offsetInCU: 0x1643, offset: 0x891F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x21AC, symBinAddr: 0x5473C, symSize: 0xC58 } - - { offsetInCU: 0x165E, offset: 0x8920D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x2E04, symBinAddr: 0x55394, symSize: 0x30 } - - { offsetInCU: 0x1687, offset: 0x89236, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x2E34, symBinAddr: 0x553C4, symSize: 0x2C } - - { offsetInCU: 0x169B, offset: 0x8924A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x2E60, symBinAddr: 0x553F0, symSize: 0x2C } - - { offsetInCU: 0x16AF, offset: 0x8925E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x2E8C, symBinAddr: 0x5541C, symSize: 0x2C } - - { offsetInCU: 0x16C3, offset: 0x89272, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x2EB8, symBinAddr: 0x55448, symSize: 0x2C } - - { offsetInCU: 0x16D7, offset: 0x89286, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x2EE4, symBinAddr: 0x55474, symSize: 0x8 } - - { offsetInCU: 0x16EB, offset: 0x8929A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x2EEC, symBinAddr: 0x5547C, symSize: 0x3C0 } - - { offsetInCU: 0x16FF, offset: 0x892AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x32AC, symBinAddr: 0x5583C, symSize: 0x5C } - - { offsetInCU: 0x1713, offset: 0x892C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3308, symBinAddr: 0x55898, symSize: 0xEC } - - { offsetInCU: 0x1727, offset: 0x892D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x33F4, symBinAddr: 0x55984, symSize: 0x10 } - - { offsetInCU: 0x173B, offset: 0x892EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3404, symBinAddr: 0x55994, symSize: 0x30 } - - { offsetInCU: 0x174F, offset: 0x892FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x3434, symBinAddr: 0x559C4, symSize: 0xE0 } - - { offsetInCU: 0x1763, offset: 0x89312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x3514, symBinAddr: 0x55AA4, symSize: 0x338 } - - { offsetInCU: 0x1777, offset: 0x89326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x384C, symBinAddr: 0x55DDC, symSize: 0x864 } - - { offsetInCU: 0x178B, offset: 0x8933A, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x40B0, symBinAddr: 0x56640, symSize: 0x8 } - - { offsetInCU: 0x179F, offset: 0x8934E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x40B8, symBinAddr: 0x56648, symSize: 0x364 } - - { offsetInCU: 0x17B3, offset: 0x89362, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x441C, symBinAddr: 0x569AC, symSize: 0x5C } - - { offsetInCU: 0x17C7, offset: 0x89376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x4478, symBinAddr: 0x56A08, symSize: 0xE4 } - - { offsetInCU: 0x17DB, offset: 0x8938A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x455C, symBinAddr: 0x56AEC, symSize: 0x10 } - - { offsetInCU: 0x17EF, offset: 0x8939E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x456C, symBinAddr: 0x56AFC, symSize: 0xA4 } - - { offsetInCU: 0x1803, offset: 0x893B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x4610, symBinAddr: 0x56BA0, symSize: 0x18C } - - { offsetInCU: 0x1817, offset: 0x893C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x479C, symBinAddr: 0x56D2C, symSize: 0x3A8 } - - { offsetInCU: 0x182B, offset: 0x893DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4B44, symBinAddr: 0x570D4, symSize: 0x44 } - - { offsetInCU: 0x183F, offset: 0x893EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4B88, symBinAddr: 0x57118, symSize: 0x17C } - - { offsetInCU: 0x1853, offset: 0x89402, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x4D04, symBinAddr: 0x57294, symSize: 0x5C } - - { offsetInCU: 0x1867, offset: 0x89416, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x4D60, symBinAddr: 0x572F0, symSize: 0x94 } - - { offsetInCU: 0x187B, offset: 0x8942A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x4DF4, symBinAddr: 0x57384, symSize: 0x10 } - - { offsetInCU: 0x188F, offset: 0x8943E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x4E04, symBinAddr: 0x57394, symSize: 0x68 } - - { offsetInCU: 0x18A3, offset: 0x89452, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x4E6C, symBinAddr: 0x573FC, symSize: 0xDC } - - { offsetInCU: 0x18B7, offset: 0x89466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x4F48, symBinAddr: 0x574D8, symSize: 0x16C } - - { offsetInCU: 0x18CB, offset: 0x8947A, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x50B4, symBinAddr: 0x57644, symSize: 0x2C } - - { offsetInCU: 0x18DF, offset: 0x8948E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x50E0, symBinAddr: 0x57670, symSize: 0xC4 } - - { offsetInCU: 0x18F3, offset: 0x894A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x51A4, symBinAddr: 0x57734, symSize: 0x5C } - - { offsetInCU: 0x1907, offset: 0x894B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x5200, symBinAddr: 0x57790, symSize: 0x7C } - - { offsetInCU: 0x191B, offset: 0x894CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x527C, symBinAddr: 0x5780C, symSize: 0x10 } - - { offsetInCU: 0x192F, offset: 0x894DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x528C, symBinAddr: 0x5781C, symSize: 0x48 } - - { offsetInCU: 0x1943, offset: 0x894F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x52D4, symBinAddr: 0x57864, symSize: 0xE4 } - - { offsetInCU: 0x1957, offset: 0x89506, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x53B8, symBinAddr: 0x57948, symSize: 0x198 } - - { offsetInCU: 0x196B, offset: 0x8951A, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5550, symBinAddr: 0x57AE0, symSize: 0x34 } - - { offsetInCU: 0x197F, offset: 0x8952E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x5584, symBinAddr: 0x57B14, symSize: 0xFC } - - { offsetInCU: 0x1993, offset: 0x89542, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5680, symBinAddr: 0x57C10, symSize: 0x5C } - - { offsetInCU: 0x19A7, offset: 0x89556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x56DC, symBinAddr: 0x57C6C, symSize: 0x7C } - - { offsetInCU: 0x19BB, offset: 0x8956A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x5758, symBinAddr: 0x57CE8, symSize: 0x10 } - - { offsetInCU: 0x19CF, offset: 0x8957E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x5768, symBinAddr: 0x57CF8, symSize: 0x28 } - - { offsetInCU: 0x19E3, offset: 0x89592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5790, symBinAddr: 0x57D20, symSize: 0x3C } - - { offsetInCU: 0x19F7, offset: 0x895A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x57CC, symBinAddr: 0x57D5C, symSize: 0x6C } - - { offsetInCU: 0x1A0B, offset: 0x895BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x5844, symBinAddr: 0x57DC8, symSize: 0x44 } - - { offsetInCU: 0x1A1F, offset: 0x895CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5888, symBinAddr: 0x57E0C, symSize: 0x5C } - - { offsetInCU: 0x1A33, offset: 0x895E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x58E4, symBinAddr: 0x57E68, symSize: 0x54 } - - { offsetInCU: 0x1A47, offset: 0x895F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x5938, symBinAddr: 0x57EBC, symSize: 0x10 } - - { offsetInCU: 0x1A5B, offset: 0x8960A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5A8C, symBinAddr: 0x58010, symSize: 0x4 } - - { offsetInCU: 0x1A6F, offset: 0x8961E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5A90, symBinAddr: 0x58014, symSize: 0x44 } - - { offsetInCU: 0x1A83, offset: 0x89632, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5B58, symBinAddr: 0x58058, symSize: 0x28 } - - { offsetInCU: 0x1A97, offset: 0x89646, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x6FD8, symBinAddr: 0x594D8, symSize: 0x44 } - - { offsetInCU: 0x1AAB, offset: 0x8965A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x701C, symBinAddr: 0x5951C, symSize: 0x44 } - - { offsetInCU: 0x1ABF, offset: 0x8966E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7A78, symBinAddr: 0x59560, symSize: 0x44 } - - { offsetInCU: 0x1AD3, offset: 0x89682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x5A6B8, symSize: 0x44 } - - { offsetInCU: 0x1AE7, offset: 0x89696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x8C14, symBinAddr: 0x5A6FC, symSize: 0x44 } - - { offsetInCU: 0x1AFB, offset: 0x896AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x8C58, symBinAddr: 0x5A740, symSize: 0x44 } - - { offsetInCU: 0x1B0F, offset: 0x896BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x8C9C, symBinAddr: 0x5A784, symSize: 0x44 } - - { offsetInCU: 0x1B23, offset: 0x896D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x8CE0, symBinAddr: 0x5A7C8, symSize: 0x44 } - - { offsetInCU: 0x1B37, offset: 0x896E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x8D24, symBinAddr: 0x5A80C, symSize: 0x44 } - - { offsetInCU: 0x1B4B, offset: 0x896FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x8D68, symBinAddr: 0x5A850, symSize: 0x44 } - - { offsetInCU: 0x1B5F, offset: 0x8970E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA500, symBinAddr: 0x5BFE8, symSize: 0x44 } - - { offsetInCU: 0x1B73, offset: 0x89722, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xA544, symBinAddr: 0x5C02C, symSize: 0x44 } - - { offsetInCU: 0x1B87, offset: 0x89736, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xA588, symBinAddr: 0x5C070, symSize: 0x44 } - - { offsetInCU: 0x1B9B, offset: 0x8974A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xAD7C, symBinAddr: 0x5C864, symSize: 0x44 } - - { offsetInCU: 0x1BAF, offset: 0x8975E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xADC0, symBinAddr: 0x5C8A8, symSize: 0x44 } - - { offsetInCU: 0x1BC3, offset: 0x89772, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xAE04, symBinAddr: 0x5C8EC, symSize: 0x44 } - - { offsetInCU: 0x1BD7, offset: 0x89786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xAE8C, symBinAddr: 0x5C974, symSize: 0x44 } - - { offsetInCU: 0x1BEB, offset: 0x8979A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xAED0, symBinAddr: 0x5C9B8, symSize: 0x44 } - - { offsetInCU: 0x1BFF, offset: 0x897AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xAF24, symBinAddr: 0x5C9FC, symSize: 0x90 } - - { offsetInCU: 0x1C13, offset: 0x897C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xAFB4, symBinAddr: 0x5CA8C, symSize: 0xBC } - - { offsetInCU: 0x1C27, offset: 0x897D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB070, symBinAddr: 0x5CB48, symSize: 0x8 } - - { offsetInCU: 0x1C3B, offset: 0x897EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB078, symBinAddr: 0x5CB50, symSize: 0x4 } - - { offsetInCU: 0x1C4F, offset: 0x897FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB07C, symBinAddr: 0x5CB54, symSize: 0xC } - - { offsetInCU: 0x1C63, offset: 0x89812, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB088, symBinAddr: 0x5CB60, symSize: 0x10 } - - { offsetInCU: 0x1C77, offset: 0x89826, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB098, symBinAddr: 0x5CB70, symSize: 0x90 } - - { offsetInCU: 0x1C8B, offset: 0x8983A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB128, symBinAddr: 0x5CC00, symSize: 0xBC } - - { offsetInCU: 0x1C9F, offset: 0x8984E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB1E4, symBinAddr: 0x5CCBC, symSize: 0x4 } - - { offsetInCU: 0x1CB3, offset: 0x89862, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB1E8, symBinAddr: 0x5CCC0, symSize: 0x10 } - - { offsetInCU: 0x1CC7, offset: 0x89876, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB1F8, symBinAddr: 0x5CCD0, symSize: 0x90 } - - { offsetInCU: 0x1CDB, offset: 0x8988A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB288, symBinAddr: 0x5CD60, symSize: 0xBC } - - { offsetInCU: 0x1CEF, offset: 0x8989E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB344, symBinAddr: 0x5CE1C, symSize: 0x4 } - - { offsetInCU: 0x1D03, offset: 0x898B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB348, symBinAddr: 0x5CE20, symSize: 0x10 } - - { offsetInCU: 0x1D17, offset: 0x898C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB358, symBinAddr: 0x5CE30, symSize: 0x90 } - - { offsetInCU: 0x1D2B, offset: 0x898DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB3E8, symBinAddr: 0x5CEC0, symSize: 0xBC } - - { offsetInCU: 0x1D3F, offset: 0x898EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB4A4, symBinAddr: 0x5CF7C, symSize: 0x4 } - - { offsetInCU: 0x1D53, offset: 0x89902, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB4A8, symBinAddr: 0x5CF80, symSize: 0x10 } - - { offsetInCU: 0x1D67, offset: 0x89916, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB4B8, symBinAddr: 0x5CF90, symSize: 0x90 } - - { offsetInCU: 0x1D7B, offset: 0x8992A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB548, symBinAddr: 0x5D020, symSize: 0xBC } - - { offsetInCU: 0x1D8F, offset: 0x8993E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB604, symBinAddr: 0x5D0DC, symSize: 0x8 } - - { offsetInCU: 0x1DA3, offset: 0x89952, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB60C, symBinAddr: 0x5D0E4, symSize: 0x4 } - - { offsetInCU: 0x1DB7, offset: 0x89966, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB610, symBinAddr: 0x5D0E8, symSize: 0x8 } - - { offsetInCU: 0x1DCB, offset: 0x8997A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB618, symBinAddr: 0x5D0F0, symSize: 0x10 } - - { offsetInCU: 0x1DDF, offset: 0x8998E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB628, symBinAddr: 0x5D100, symSize: 0x90 } - - { offsetInCU: 0x1DF3, offset: 0x899A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB6B8, symBinAddr: 0x5D190, symSize: 0xBC } - - { offsetInCU: 0x1E07, offset: 0x899B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB774, symBinAddr: 0x5D24C, symSize: 0x4 } - - { offsetInCU: 0x1E1B, offset: 0x899CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB778, symBinAddr: 0x5D250, symSize: 0x10 } - - { offsetInCU: 0x1E2F, offset: 0x899DE, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xB788, symBinAddr: 0x5D260, symSize: 0x24 } - - { offsetInCU: 0x1E43, offset: 0x899F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xB7AC, symBinAddr: 0x5D284, symSize: 0x20 } - - { offsetInCU: 0x1E57, offset: 0x89A06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xB7CC, symBinAddr: 0x5D2A4, symSize: 0x40 } - - { offsetInCU: 0x1E6B, offset: 0x89A1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xB80C, symBinAddr: 0x5D2E4, symSize: 0x10 } - - { offsetInCU: 0x1E7F, offset: 0x89A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB81C, symBinAddr: 0x5D2F4, symSize: 0x4 } - - { offsetInCU: 0x1E93, offset: 0x89A42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB820, symBinAddr: 0x5D2F8, symSize: 0x44 } - - { offsetInCU: 0x1EA7, offset: 0x89A56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB864, symBinAddr: 0x5D33C, symSize: 0x4 } - - { offsetInCU: 0x1EBB, offset: 0x89A6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB868, symBinAddr: 0x5D340, symSize: 0x44 } - - { offsetInCU: 0x1ECF, offset: 0x89A7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB8AC, symBinAddr: 0x5D384, symSize: 0x4 } - - { offsetInCU: 0x1EE3, offset: 0x89A92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB8B0, symBinAddr: 0x5D388, symSize: 0x44 } - - { offsetInCU: 0x1EF7, offset: 0x89AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xB8F4, symBinAddr: 0x5D3CC, symSize: 0x4 } - - { offsetInCU: 0x1F0B, offset: 0x89ABA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xB8F8, symBinAddr: 0x5D3D0, symSize: 0x44 } - - { offsetInCU: 0x1F1F, offset: 0x89ACE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB93C, symBinAddr: 0x5D414, symSize: 0x4 } - - { offsetInCU: 0x1F33, offset: 0x89AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB940, symBinAddr: 0x5D418, symSize: 0x44 } - - { offsetInCU: 0x1F47, offset: 0x89AF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xB984, symBinAddr: 0x5D45C, symSize: 0x4 } - - { offsetInCU: 0x1F5B, offset: 0x89B0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xB988, symBinAddr: 0x5D460, symSize: 0x44 } - - { offsetInCU: 0x1F6F, offset: 0x89B1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xB9CC, symBinAddr: 0x5D4A4, symSize: 0x4 } - - { offsetInCU: 0x1F83, offset: 0x89B32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xB9D0, symBinAddr: 0x5D4A8, symSize: 0x44 } - - { offsetInCU: 0x1F97, offset: 0x89B46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBA14, symBinAddr: 0x5D4EC, symSize: 0x4 } - - { offsetInCU: 0x1FAB, offset: 0x89B5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBA18, symBinAddr: 0x5D4F0, symSize: 0x44 } - - { offsetInCU: 0x1FBF, offset: 0x89B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBA5C, symBinAddr: 0x5D534, symSize: 0x4 } - - { offsetInCU: 0x1FD3, offset: 0x89B82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBA60, symBinAddr: 0x5D538, symSize: 0x44 } - - { offsetInCU: 0x1FE7, offset: 0x89B96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBAA4, symBinAddr: 0x5D57C, symSize: 0x4 } - - { offsetInCU: 0x1FFB, offset: 0x89BAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBAA8, symBinAddr: 0x5D580, symSize: 0x44 } - - { offsetInCU: 0x200F, offset: 0x89BBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBAEC, symBinAddr: 0x5D5C4, symSize: 0x4 } - - { offsetInCU: 0x2023, offset: 0x89BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBAF0, symBinAddr: 0x5D5C8, symSize: 0x44 } - - { offsetInCU: 0x2037, offset: 0x89BE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBB34, symBinAddr: 0x5D60C, symSize: 0x4 } - - { offsetInCU: 0x204B, offset: 0x89BFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBB38, symBinAddr: 0x5D610, symSize: 0x44 } - - { offsetInCU: 0x205F, offset: 0x89C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBB7C, symBinAddr: 0x5D654, symSize: 0x4 } - - { offsetInCU: 0x2073, offset: 0x89C22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBB80, symBinAddr: 0x5D658, symSize: 0x44 } - - { offsetInCU: 0x2087, offset: 0x89C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBBC4, symBinAddr: 0x5D69C, symSize: 0x4 } - - { offsetInCU: 0x209B, offset: 0x89C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBBC8, symBinAddr: 0x5D6A0, symSize: 0x44 } - - { offsetInCU: 0x20AF, offset: 0x89C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC0C, symBinAddr: 0x5D6E4, symSize: 0x4 } - - { offsetInCU: 0x20C3, offset: 0x89C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBC10, symBinAddr: 0x5D6E8, symSize: 0x44 } - - { offsetInCU: 0x20D7, offset: 0x89C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBC54, symBinAddr: 0x5D72C, symSize: 0x4 } - - { offsetInCU: 0x20EB, offset: 0x89C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBC58, symBinAddr: 0x5D730, symSize: 0x44 } - - { offsetInCU: 0x20FF, offset: 0x89CAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBC9C, symBinAddr: 0x5D774, symSize: 0x4 } - - { offsetInCU: 0x2113, offset: 0x89CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBCA0, symBinAddr: 0x5D778, symSize: 0x44 } - - { offsetInCU: 0x2127, offset: 0x89CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBCE4, symBinAddr: 0x5D7BC, symSize: 0x4 } - - { offsetInCU: 0x213B, offset: 0x89CEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBCE8, symBinAddr: 0x5D7C0, symSize: 0x44 } - - { offsetInCU: 0x214F, offset: 0x89CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xBD2C, symBinAddr: 0x5D804, symSize: 0x44 } - - { offsetInCU: 0x2163, offset: 0x89D12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xBD70, symBinAddr: 0x5D848, symSize: 0x90 } - - { offsetInCU: 0x2177, offset: 0x89D26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xBE00, symBinAddr: 0x5D8D8, symSize: 0xBC } - - { offsetInCU: 0x218B, offset: 0x89D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xBEBC, symBinAddr: 0x5D994, symSize: 0x4 } - - { offsetInCU: 0x219F, offset: 0x89D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xBEC0, symBinAddr: 0x5D998, symSize: 0x10 } - - { offsetInCU: 0x21B3, offset: 0x89D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xBED0, symBinAddr: 0x5D9A8, symSize: 0x4 } - - { offsetInCU: 0x21C7, offset: 0x89D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xBED4, symBinAddr: 0x5D9AC, symSize: 0x44 } - - { offsetInCU: 0x21DB, offset: 0x89D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF18, symBinAddr: 0x5D9F0, symSize: 0x4 } - - { offsetInCU: 0x21EF, offset: 0x89D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF1C, symBinAddr: 0x5D9F4, symSize: 0x44 } - - { offsetInCU: 0x2203, offset: 0x89DB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF60, symBinAddr: 0x5DA38, symSize: 0x4 } - - { offsetInCU: 0x2217, offset: 0x89DC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBF64, symBinAddr: 0x5DA3C, symSize: 0x44 } - - { offsetInCU: 0x2245, offset: 0x89DF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xEB4, symBinAddr: 0x53444, symSize: 0x28 } - - { offsetInCU: 0x2261, offset: 0x89E10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xEDC, symBinAddr: 0x5346C, symSize: 0x28 } - - { offsetInCU: 0x2283, offset: 0x89E32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x102C, symBinAddr: 0x535BC, symSize: 0x28 } - - { offsetInCU: 0x229F, offset: 0x89E4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1054, symBinAddr: 0x535E4, symSize: 0x28 } - - { offsetInCU: 0x22BB, offset: 0x89E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x111C, symBinAddr: 0x536AC, symSize: 0xC } - - { offsetInCU: 0x22D7, offset: 0x89E86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1128, symBinAddr: 0x536B8, symSize: 0x8 } - - { offsetInCU: 0x22F3, offset: 0x89EA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1130, symBinAddr: 0x536C0, symSize: 0x8 } - - { offsetInCU: 0x230F, offset: 0x89EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1138, symBinAddr: 0x536C8, symSize: 0x8 } - - { offsetInCU: 0x2331, offset: 0x89EE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1254, symBinAddr: 0x537E4, symSize: 0x28 } - - { offsetInCU: 0x234D, offset: 0x89EFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x127C, symBinAddr: 0x5380C, symSize: 0x28 } - - { offsetInCU: 0x236F, offset: 0x89F1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x53900, symSize: 0x28 } - - { offsetInCU: 0x238B, offset: 0x89F3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1398, symBinAddr: 0x53928, symSize: 0x28 } - - { offsetInCU: 0x23D4, offset: 0x89F83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14FC, symBinAddr: 0x53A8C, symSize: 0x40 } - - { offsetInCU: 0x2476, offset: 0x8A025, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1580, symBinAddr: 0x53B10, symSize: 0x28 } - - { offsetInCU: 0x2492, offset: 0x8A041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15A8, symBinAddr: 0x53B38, symSize: 0x28 } - - { offsetInCU: 0x24B4, offset: 0x8A063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x53C70, symSize: 0x28 } - - { offsetInCU: 0x24D0, offset: 0x8A07F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1708, symBinAddr: 0x53C98, symSize: 0x28 } - - { offsetInCU: 0x250A, offset: 0x8A0B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1808, symBinAddr: 0x53D98, symSize: 0x88 } - - { offsetInCU: 0x25B9, offset: 0x8A168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1890, symBinAddr: 0x53E20, symSize: 0x60 } - - { offsetInCU: 0x2637, offset: 0x8A1E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x18F0, symBinAddr: 0x53E80, symSize: 0x40 } - - { offsetInCU: 0x2689, offset: 0x8A238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1930, symBinAddr: 0x53EC0, symSize: 0x5C } - - { offsetInCU: 0x26EB, offset: 0x8A29A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x53FE4, symSize: 0x28 } - - { offsetInCU: 0x2707, offset: 0x8A2B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A7C, symBinAddr: 0x5400C, symSize: 0x28 } - - { offsetInCU: 0x273E, offset: 0x8A2ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5A48, symBinAddr: 0x57FCC, symSize: 0x3C } - - { offsetInCU: 0x27, offset: 0x8A4F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DAE8, symSize: 0x8 } - - { offsetInCU: 0x4B, offset: 0x8A51A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5DAE8, symSize: 0x8 } - - { offsetInCU: 0x69, offset: 0x8A538, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5DAF0, symSize: 0x8 } - - { offsetInCU: 0xA5, offset: 0x8A574, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5DAF8, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8A592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5DB08, symSize: 0x4 } - - { offsetInCU: 0xEE, offset: 0x8A5BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5DB0C, symSize: 0x8 } - - { offsetInCU: 0x10C, offset: 0x8A5DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5DB14, symSize: 0x8 } - - { offsetInCU: 0x148, offset: 0x8A617, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5DB1C, symSize: 0x10 } - - { offsetInCU: 0x176, offset: 0x8A645, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5DB2C, symSize: 0x4 } - - { offsetInCU: 0x1A1, offset: 0x8A670, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5DB30, symSize: 0x8 } - - { offsetInCU: 0x1BF, offset: 0x8A68E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5DB38, symSize: 0x8 } - - { offsetInCU: 0x1F9, offset: 0x8A6C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5DB40, symSize: 0x10 } - - { offsetInCU: 0x227, offset: 0x8A6F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5DB50, symSize: 0x4 } - - { offsetInCU: 0x253, offset: 0x8A722, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5DB54, symSize: 0x54 } - - { offsetInCU: 0x267, offset: 0x8A736, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5DBA8, symSize: 0x44 } - - { offsetInCU: 0x27B, offset: 0x8A74A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5DBEC, symSize: 0x10 } - - { offsetInCU: 0x2B, offset: 0x8A866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DBFC, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x8A8A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DBFC, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x8A8F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5DC20, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x8AA0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DC40, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8AA4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5DC40, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8AA9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5DC64, symSize: 0x20 } - - { offsetInCU: 0x2B, offset: 0x8ABB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DC84, symSize: 0x60 } - - { offsetInCU: 0x6D, offset: 0x8ABFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5DC84, symSize: 0x60 } - - { offsetInCU: 0xBB, offset: 0x8AC48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5DCE4, symSize: 0x8 } - - { offsetInCU: 0xCF, offset: 0x8AC5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5DCEC, symSize: 0x3C } - - { offsetInCU: 0xE3, offset: 0x8AC70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5DD28, symSize: 0x78 } - - { offsetInCU: 0x27, offset: 0x8AD89, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DDA0, symSize: 0x368 } - - { offsetInCU: 0xE4, offset: 0x8AE46, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5DDA0, symSize: 0x368 } - - { offsetInCU: 0x2DD, offset: 0x8B03F, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5E108, symSize: 0x48 } - - { offsetInCU: 0x27, offset: 0x8B1EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E150, symSize: 0x24 } - - { offsetInCU: 0x69, offset: 0x8B231, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5E150, symSize: 0x24 } - - { offsetInCU: 0xB5, offset: 0x8B27D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5E174, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x8B3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5E194, symSize: 0x6C } - - { offsetInCU: 0x7A, offset: 0x8B3E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5E228, symSize: 0x24 } - - { offsetInCU: 0xBE, offset: 0x8B42D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0xA0C, symBinAddr: 0x5EB60, symSize: 0x44 } - - { offsetInCU: 0x12D, offset: 0x8B49C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA74, symBinAddr: 0x5EBC8, symSize: 0xC } - - { offsetInCU: 0x149, offset: 0x8B4B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA80, symBinAddr: 0x5EBD4, symSize: 0x24 } - - { offsetInCU: 0x177, offset: 0x8B4E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xAA4, symBinAddr: 0x5EBF8, symSize: 0x54 } - - { offsetInCU: 0x209, offset: 0x8B578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5E200, symSize: 0x28 } - - { offsetInCU: 0x234, offset: 0x8B5A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAF8, symBinAddr: 0x5EC4C, symSize: 0x80 } - - { offsetInCU: 0x25F, offset: 0x8B5CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xB9C, symBinAddr: 0x5ECF0, symSize: 0xC } - - { offsetInCU: 0x27B, offset: 0x8B5EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xBA8, symBinAddr: 0x5ECFC, symSize: 0x24 } - - { offsetInCU: 0x53C, offset: 0x8B8AB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x940, symBinAddr: 0x5EA94, symSize: 0xCC } - - { offsetInCU: 0x5B8, offset: 0x8B927, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBCC, symBinAddr: 0x5ED20, symSize: 0x3FC } - - { offsetInCU: 0x80B, offset: 0x8BB7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xFC8, symBinAddr: 0x5F11C, symSize: 0x13C } - - { offsetInCU: 0x98F, offset: 0x8BCFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1104, symBinAddr: 0x5F258, symSize: 0xA58 } - - { offsetInCU: 0xF95, offset: 0x8C304, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B5C, symBinAddr: 0x5FCB0, symSize: 0x654 } - - { offsetInCU: 0x1345, offset: 0x8C6B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x21B0, symBinAddr: 0x60304, symSize: 0x470 } - - { offsetInCU: 0x14E4, offset: 0x8C853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2620, symBinAddr: 0x60774, symSize: 0x618 } - - { offsetInCU: 0x1A13, offset: 0x8CD82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2C38, symBinAddr: 0x60D8C, symSize: 0x150 } - - { offsetInCU: 0x1B2D, offset: 0x8CE9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2D88, symBinAddr: 0x60EDC, symSize: 0x2C } - - { offsetInCU: 0x1B70, offset: 0x8CEDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3338, symBinAddr: 0x61430, symSize: 0x204 } - - { offsetInCU: 0x1C21, offset: 0x8CF90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x353C, symBinAddr: 0x61634, symSize: 0x23C } - - { offsetInCU: 0x1C86, offset: 0x8CFF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3778, symBinAddr: 0x61870, symSize: 0x238 } - - { offsetInCU: 0x1DAE, offset: 0x8D11D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39F4, symBinAddr: 0x61AA8, symSize: 0x29C } - - { offsetInCU: 0x1EED, offset: 0x8D25C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3C90, symBinAddr: 0x61D44, symSize: 0x188 } - - { offsetInCU: 0x1F33, offset: 0x8D2A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3E18, symBinAddr: 0x61ECC, symSize: 0x474 } - - { offsetInCU: 0x2287, offset: 0x8D5F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x428C, symBinAddr: 0x62340, symSize: 0xC4 } - - { offsetInCU: 0x2383, offset: 0x8D6F2, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2E04, symBinAddr: 0x60F58, symSize: 0x4 } - - { offsetInCU: 0x23C5, offset: 0x8D734, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2E08, symBinAddr: 0x60F5C, symSize: 0x4 } - - { offsetInCU: 0x23D9, offset: 0x8D748, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2E0C, symBinAddr: 0x60F60, symSize: 0x44 } - - { offsetInCU: 0x23ED, offset: 0x8D75C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2E50, symBinAddr: 0x60FA4, symSize: 0x4 } - - { offsetInCU: 0x2401, offset: 0x8D770, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2E54, symBinAddr: 0x60FA8, symSize: 0x4C } - - { offsetInCU: 0x2415, offset: 0x8D784, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x2EE4, symBinAddr: 0x60FF4, symSize: 0x4 } - - { offsetInCU: 0x2429, offset: 0x8D798, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x2EE8, symBinAddr: 0x60FF8, symSize: 0x44 } - - { offsetInCU: 0x243D, offset: 0x8D7AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x2F3C, symBinAddr: 0x6103C, symSize: 0x90 } - - { offsetInCU: 0x2451, offset: 0x8D7C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x2FCC, symBinAddr: 0x610CC, symSize: 0xBC } - - { offsetInCU: 0x2465, offset: 0x8D7D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3088, symBinAddr: 0x61188, symSize: 0x8 } - - { offsetInCU: 0x2479, offset: 0x8D7E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3090, symBinAddr: 0x61190, symSize: 0x4 } - - { offsetInCU: 0x248D, offset: 0x8D7FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x3094, symBinAddr: 0x61194, symSize: 0x8 } - - { offsetInCU: 0x24A1, offset: 0x8D810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x309C, symBinAddr: 0x6119C, symSize: 0x10 } - - { offsetInCU: 0x24B5, offset: 0x8D824, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x30AC, symBinAddr: 0x611AC, symSize: 0x90 } - - { offsetInCU: 0x24C9, offset: 0x8D838, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x313C, symBinAddr: 0x6123C, symSize: 0xBC } - - { offsetInCU: 0x24DD, offset: 0x8D84C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x31F8, symBinAddr: 0x612F8, symSize: 0x8 } - - { offsetInCU: 0x24F1, offset: 0x8D860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3200, symBinAddr: 0x61300, symSize: 0x4 } - - { offsetInCU: 0x2505, offset: 0x8D874, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x3204, symBinAddr: 0x61304, symSize: 0xC } - - { offsetInCU: 0x2519, offset: 0x8D888, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3210, symBinAddr: 0x61310, symSize: 0x10 } - - { offsetInCU: 0x252D, offset: 0x8D89C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3220, symBinAddr: 0x61320, symSize: 0x20 } - - { offsetInCU: 0x2541, offset: 0x8D8B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3248, symBinAddr: 0x61340, symSize: 0xC } - - { offsetInCU: 0x2555, offset: 0x8D8C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3254, symBinAddr: 0x6134C, symSize: 0x4 } - - { offsetInCU: 0x2569, offset: 0x8D8D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3258, symBinAddr: 0x61350, symSize: 0x44 } - - { offsetInCU: 0x257D, offset: 0x8D8EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x329C, symBinAddr: 0x61394, symSize: 0xC } - - { offsetInCU: 0x2591, offset: 0x8D900, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x32A8, symBinAddr: 0x613A0, symSize: 0x4 } - - { offsetInCU: 0x25A5, offset: 0x8D914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x32AC, symBinAddr: 0x613A4, symSize: 0x44 } - - { offsetInCU: 0x25B9, offset: 0x8D928, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x32F0, symBinAddr: 0x613E8, symSize: 0xC } - - { offsetInCU: 0x25D8, offset: 0x8D947, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x32FC, symBinAddr: 0x613F4, symSize: 0x14 } - - { offsetInCU: 0x2610, offset: 0x8D97F, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3310, symBinAddr: 0x61408, symSize: 0x14 } - - { offsetInCU: 0x2648, offset: 0x8D9B7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3324, symBinAddr: 0x6141C, symSize: 0x14 } - - { offsetInCU: 0x26AC, offset: 0x8DA1B, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x43A4, symBinAddr: 0x62458, symSize: 0x48 } - - { offsetInCU: 0x26C0, offset: 0x8DA2F, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4448, symBinAddr: 0x624A0, symSize: 0x3C } - - { offsetInCU: 0x26D4, offset: 0x8DA43, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4484, symBinAddr: 0x624DC, symSize: 0x24 } - - { offsetInCU: 0x26E8, offset: 0x8DA57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x44DC, symBinAddr: 0x62524, symSize: 0x8 } - - { offsetInCU: 0x26FC, offset: 0x8DA6B, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x44E4, symBinAddr: 0x6252C, symSize: 0x10 } - - { offsetInCU: 0x2710, offset: 0x8DA7F, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x44F4, symBinAddr: 0x6253C, symSize: 0x8 } - - { offsetInCU: 0x2724, offset: 0x8DA93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4554, symBinAddr: 0x62544, symSize: 0x8 } - - { offsetInCU: 0x2738, offset: 0x8DAA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x4608, symBinAddr: 0x625F8, symSize: 0x10 } - - { offsetInCU: 0x2767, offset: 0x8DAD6, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x277F, offset: 0x8DAEE, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x2793, offset: 0x8DB02, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x27A7, offset: 0x8DB16, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x27BB, offset: 0x8DB2A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0xF8, symBinAddr: 0x5E24C, symSize: 0x4 } - - { offsetInCU: 0x27CF, offset: 0x8DB3E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0xFC, symBinAddr: 0x5E250, symSize: 0x24 } - - { offsetInCU: 0x284D, offset: 0x8DBBC, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x120, symBinAddr: 0x5E274, symSize: 0x84 } - - { offsetInCU: 0x28DC, offset: 0x8DC4B, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x1A4, symBinAddr: 0x5E2F8, symSize: 0x84 } - - { offsetInCU: 0x296B, offset: 0x8DCDA, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x228, symBinAddr: 0x5E37C, symSize: 0x8C } - - { offsetInCU: 0x2A02, offset: 0x8DD71, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x2B4, symBinAddr: 0x5E408, symSize: 0x68 } - - { offsetInCU: 0x2ADC, offset: 0x8DE4B, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x31C, symBinAddr: 0x5E470, symSize: 0x68 } - - { offsetInCU: 0x2BB6, offset: 0x8DF25, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x384, symBinAddr: 0x5E4D8, symSize: 0x6C } - - { offsetInCU: 0x2C2B, offset: 0x8DF9A, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x3F0, symBinAddr: 0x5E544, symSize: 0x40 } - - { offsetInCU: 0x2C88, offset: 0x8DFF7, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x430, symBinAddr: 0x5E584, symSize: 0x40 } - - { offsetInCU: 0x2CE5, offset: 0x8E054, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x470, symBinAddr: 0x5E5C4, symSize: 0x44 } - - { offsetInCU: 0x2D0E, offset: 0x8E07D, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x4B4, symBinAddr: 0x5E608, symSize: 0x68 } - - { offsetInCU: 0x2D61, offset: 0x8E0D0, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x51C, symBinAddr: 0x5E670, symSize: 0x64 } - - { offsetInCU: 0x2DDD, offset: 0x8E14C, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x580, symBinAddr: 0x5E6D4, symSize: 0x64 } - - { offsetInCU: 0x2E6E, offset: 0x8E1DD, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5E4, symBinAddr: 0x5E738, symSize: 0xC4 } - - { offsetInCU: 0x2FD4, offset: 0x8E343, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x2FF4, offset: 0x8E363, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x3014, offset: 0x8E383, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x3028, offset: 0x8E397, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x303C, offset: 0x8E3AB, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x3050, offset: 0x8E3BF, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x6A8, symBinAddr: 0x5E7FC, symSize: 0x48 } - - { offsetInCU: 0x30F9, offset: 0x8E468, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5E844, symSize: 0x88 } - - { offsetInCU: 0x31A0, offset: 0x8E50F, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x778, symBinAddr: 0x5E8CC, symSize: 0x80 } - - { offsetInCU: 0x3243, offset: 0x8E5B2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7F8, symBinAddr: 0x5E94C, symSize: 0xE4 } - - { offsetInCU: 0x332F, offset: 0x8E69E, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x334F, offset: 0x8E6BE, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x3363, offset: 0x8E6D2, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x3377, offset: 0x8E6E6, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x338B, offset: 0x8E6FA, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8DC, symBinAddr: 0x5EA30, symSize: 0x64 } - - { offsetInCU: 0x33FB, offset: 0x8E76A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x5EBA4, symSize: 0xC } - - { offsetInCU: 0x3417, offset: 0x8E786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA5C, symBinAddr: 0x5EBB0, symSize: 0x8 } - - { offsetInCU: 0x3433, offset: 0x8E7A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA64, symBinAddr: 0x5EBB8, symSize: 0x8 } - - { offsetInCU: 0x3447, offset: 0x8E7B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA6C, symBinAddr: 0x5EBC0, symSize: 0x8 } - - { offsetInCU: 0x3461, offset: 0x8E7D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB78, symBinAddr: 0x5ECCC, symSize: 0xC } - - { offsetInCU: 0x347D, offset: 0x8E7EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB84, symBinAddr: 0x5ECD8, symSize: 0x8 } - - { offsetInCU: 0x3499, offset: 0x8E808, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x5ECE0, symSize: 0x8 } - - { offsetInCU: 0x34AD, offset: 0x8E81C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB94, symBinAddr: 0x5ECE8, symSize: 0x8 } - - { offsetInCU: 0x43, offset: 0x8ECCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x62614, symSize: 0x188 } - - { offsetInCU: 0x57, offset: 0x8ECE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x6279C, symSize: 0xA4 } - - { offsetInCU: 0x6B, offset: 0x8ECF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x62840, symSize: 0x15C } - - { offsetInCU: 0x7F, offset: 0x8ED0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x6299C, symSize: 0x1E8 } - - { offsetInCU: 0x93, offset: 0x8ED1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x62B84, symSize: 0xEC } - - { offsetInCU: 0xA7, offset: 0x8ED33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x62C70, symSize: 0x188 } - - { offsetInCU: 0xBB, offset: 0x8ED47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x62DF8, symSize: 0xC } - - { offsetInCU: 0xCF, offset: 0x8ED5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x62E90, symSize: 0xC } - - { offsetInCU: 0xE3, offset: 0x8ED6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x62F28, symSize: 0x88 } - - { offsetInCU: 0xF7, offset: 0x8ED83, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x62FB0, symSize: 0x54 } - - { offsetInCU: 0x10B, offset: 0x8ED97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x63004, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8EDAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB50, symBinAddr: 0x63124, symSize: 0x84 } - - { offsetInCU: 0x133, offset: 0x8EDBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD4, symBinAddr: 0x631A8, symSize: 0xF4 } - - { offsetInCU: 0x147, offset: 0x8EDD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCC8, symBinAddr: 0x6329C, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8EDE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE28, symBinAddr: 0x633FC, symSize: 0xDC } - - { offsetInCU: 0x16F, offset: 0x8EDFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF04, symBinAddr: 0x634D8, symSize: 0x148 } - - { offsetInCU: 0x183, offset: 0x8EE0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x104C, symBinAddr: 0x63620, symSize: 0xC } - - { offsetInCU: 0x197, offset: 0x8EE23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E4, symBinAddr: 0x636B8, symSize: 0xC } - - { offsetInCU: 0x1AB, offset: 0x8EE37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B0, symBinAddr: 0x63784, symSize: 0x88 } - - { offsetInCU: 0x1DD, offset: 0x8EE69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1238, symBinAddr: 0x6380C, symSize: 0x20 } - - { offsetInCU: 0x22C, offset: 0x8EEB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x63D64, symSize: 0x14 } - - { offsetInCU: 0x292, offset: 0x8EF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A8, symBinAddr: 0x63D7C, symSize: 0x28 } - - { offsetInCU: 0x30C, offset: 0x8EF98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D4, symBinAddr: 0x63DA8, symSize: 0x8 } - - { offsetInCU: 0x337, offset: 0x8EFC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17DC, symBinAddr: 0x63DB0, symSize: 0x24 } - - { offsetInCU: 0x368, offset: 0x8EFF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1800, symBinAddr: 0x63DD4, symSize: 0xC } - - { offsetInCU: 0x384, offset: 0x8F010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x180C, symBinAddr: 0x63DE0, symSize: 0xC } - - { offsetInCU: 0x3A0, offset: 0x8F02C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E30, symBinAddr: 0x65308, symSize: 0x1BC } - - { offsetInCU: 0x3E6, offset: 0x8F072, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1258, symBinAddr: 0x6382C, symSize: 0x200 } - - { offsetInCU: 0x425, offset: 0x8F0B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1458, symBinAddr: 0x63A2C, symSize: 0x338 } - - { offsetInCU: 0x456, offset: 0x8F0E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1868, symBinAddr: 0x63E3C, symSize: 0x14 } - - { offsetInCU: 0x479, offset: 0x8F105, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x187C, symBinAddr: 0x63E50, symSize: 0x14 } - - { offsetInCU: 0x4D1, offset: 0x8F15D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x63E64, symSize: 0x20 } - - { offsetInCU: 0x4FC, offset: 0x8F188, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A64, symBinAddr: 0x64038, symSize: 0x8 } - - { offsetInCU: 0x527, offset: 0x8F1B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A6C, symBinAddr: 0x64040, symSize: 0x24 } - - { offsetInCU: 0x558, offset: 0x8F1E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A90, symBinAddr: 0x64064, symSize: 0xC } - - { offsetInCU: 0x574, offset: 0x8F200, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A9C, symBinAddr: 0x64070, symSize: 0xC } - - { offsetInCU: 0x590, offset: 0x8F21C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FEC, symBinAddr: 0x654C4, symSize: 0x14C } - - { offsetInCU: 0x5D6, offset: 0x8F262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x63E84, symSize: 0x1AC } - - { offsetInCU: 0x62B, offset: 0x8F2B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AF8, symBinAddr: 0x640CC, symSize: 0x4C } - - { offsetInCU: 0x662, offset: 0x8F2EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B44, symBinAddr: 0x64118, symSize: 0x40 } - - { offsetInCU: 0x685, offset: 0x8F311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3138, symBinAddr: 0x65610, symSize: 0x294 } - - { offsetInCU: 0x6D5, offset: 0x8F361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1B84, symBinAddr: 0x64158, symSize: 0x20 } - - { offsetInCU: 0x700, offset: 0x8F38C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2300, symBinAddr: 0x648D4, symSize: 0x8 } - - { offsetInCU: 0x72B, offset: 0x8F3B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2308, symBinAddr: 0x648DC, symSize: 0x24 } - - { offsetInCU: 0x75C, offset: 0x8F3E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x232C, symBinAddr: 0x64900, symSize: 0xC } - - { offsetInCU: 0x778, offset: 0x8F404, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2338, symBinAddr: 0x6490C, symSize: 0xC } - - { offsetInCU: 0x794, offset: 0x8F420, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33CC, symBinAddr: 0x658A4, symSize: 0x2D8 } - - { offsetInCU: 0x7DA, offset: 0x8F466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BA4, symBinAddr: 0x64178, symSize: 0x264 } - - { offsetInCU: 0x819, offset: 0x8F4A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E08, symBinAddr: 0x643DC, symSize: 0x474 } - - { offsetInCU: 0x84A, offset: 0x8F4D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2394, symBinAddr: 0x64968, symSize: 0x14 } - - { offsetInCU: 0x86D, offset: 0x8F4F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A8, symBinAddr: 0x6497C, symSize: 0x14 } - - { offsetInCU: 0x891, offset: 0x8F51D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x23E0, symBinAddr: 0x64990, symSize: 0x44 } - - { offsetInCU: 0x8A5, offset: 0x8F531, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2444, symBinAddr: 0x649D4, symSize: 0x40 } - - { offsetInCU: 0x8B9, offset: 0x8F545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x250C, symBinAddr: 0x64A54, symSize: 0x44 } - - { offsetInCU: 0x8CD, offset: 0x8F559, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2594, symBinAddr: 0x64A98, symSize: 0x44 } - - { offsetInCU: 0x8E1, offset: 0x8F56D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x26C0, symBinAddr: 0x64BC4, symSize: 0x44 } - - { offsetInCU: 0x8F5, offset: 0x8F581, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2714, symBinAddr: 0x64C08, symSize: 0x90 } - - { offsetInCU: 0x909, offset: 0x8F595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x27A4, symBinAddr: 0x64C98, symSize: 0xBC } - - { offsetInCU: 0x91D, offset: 0x8F5A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2860, symBinAddr: 0x64D54, symSize: 0x8 } - - { offsetInCU: 0x931, offset: 0x8F5BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2868, symBinAddr: 0x64D5C, symSize: 0x4 } - - { offsetInCU: 0x945, offset: 0x8F5D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x286C, symBinAddr: 0x64D60, symSize: 0x8 } - - { offsetInCU: 0x959, offset: 0x8F5E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2874, symBinAddr: 0x64D68, symSize: 0x10 } - - { offsetInCU: 0x96D, offset: 0x8F5F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2884, symBinAddr: 0x64D78, symSize: 0x90 } - - { offsetInCU: 0x981, offset: 0x8F60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2914, symBinAddr: 0x64E08, symSize: 0xBC } - - { offsetInCU: 0x995, offset: 0x8F621, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x29D0, symBinAddr: 0x64EC4, symSize: 0x4 } - - { offsetInCU: 0x9A9, offset: 0x8F635, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x29D4, symBinAddr: 0x64EC8, symSize: 0x10 } - - { offsetInCU: 0x9BD, offset: 0x8F649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x29E4, symBinAddr: 0x64ED8, symSize: 0x30 } - - { offsetInCU: 0x9D1, offset: 0x8F65D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2A14, symBinAddr: 0x64F08, symSize: 0x30 } - - { offsetInCU: 0x9E5, offset: 0x8F671, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2A44, symBinAddr: 0x64F38, symSize: 0x5C } - - { offsetInCU: 0x9F9, offset: 0x8F685, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2AA0, symBinAddr: 0x64F94, symSize: 0x94 } - - { offsetInCU: 0xA0D, offset: 0x8F699, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2B50, symBinAddr: 0x65028, symSize: 0x64 } - - { offsetInCU: 0xA21, offset: 0x8F6AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2BB4, symBinAddr: 0x6508C, symSize: 0x5C } - - { offsetInCU: 0xA35, offset: 0x8F6C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2C10, symBinAddr: 0x650E8, symSize: 0x60 } - - { offsetInCU: 0xA49, offset: 0x8F6D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2C70, symBinAddr: 0x65148, symSize: 0x10 } - - { offsetInCU: 0xA5D, offset: 0x8F6E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2C80, symBinAddr: 0x65158, symSize: 0x4 } - - { offsetInCU: 0xA71, offset: 0x8F6FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2C84, symBinAddr: 0x6515C, symSize: 0x44 } - - { offsetInCU: 0xA85, offset: 0x8F711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2CC8, symBinAddr: 0x651A0, symSize: 0x4 } - - { offsetInCU: 0xA99, offset: 0x8F725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2CCC, symBinAddr: 0x651A4, symSize: 0x44 } - - { offsetInCU: 0xAAD, offset: 0x8F739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D10, symBinAddr: 0x651E8, symSize: 0x4 } - - { offsetInCU: 0xAC1, offset: 0x8F74D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D14, symBinAddr: 0x651EC, symSize: 0x44 } - - { offsetInCU: 0xAD5, offset: 0x8F761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2D58, symBinAddr: 0x65230, symSize: 0x4 } - - { offsetInCU: 0xAE9, offset: 0x8F775, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2D5C, symBinAddr: 0x65234, symSize: 0x44 } - - { offsetInCU: 0xAFD, offset: 0x8F789, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DA0, symBinAddr: 0x65278, symSize: 0x4 } - - { offsetInCU: 0xB11, offset: 0x8F79D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DA4, symBinAddr: 0x6527C, symSize: 0x44 } - - { offsetInCU: 0xB25, offset: 0x8F7B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DE8, symBinAddr: 0x652C0, symSize: 0x4 } - - { offsetInCU: 0xB39, offset: 0x8F7C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DEC, symBinAddr: 0x652C4, symSize: 0x44 } - - { offsetInCU: 0xB58, offset: 0x8F7E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x36A4, symBinAddr: 0x65B7C, symSize: 0x44 } - - { offsetInCU: 0xB6C, offset: 0x8F7F8, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x36E8, symBinAddr: 0x65BC0, symSize: 0x48 } - - { offsetInCU: 0xB80, offset: 0x8F80C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x37B4, symBinAddr: 0x65C8C, symSize: 0x90 } - - { offsetInCU: 0xB94, offset: 0x8F820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3844, symBinAddr: 0x65D1C, symSize: 0xBC } - - { offsetInCU: 0xBA8, offset: 0x8F834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3900, symBinAddr: 0x65DD8, symSize: 0x4 } - - { offsetInCU: 0xBBC, offset: 0x8F848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3904, symBinAddr: 0x65DDC, symSize: 0x10 } - - { offsetInCU: 0xBD0, offset: 0x8F85C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3914, symBinAddr: 0x65DEC, symSize: 0x4 } - - { offsetInCU: 0xBE4, offset: 0x8F870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3918, symBinAddr: 0x65DF0, symSize: 0x44 } - - { offsetInCU: 0xBF8, offset: 0x8F884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x395C, symBinAddr: 0x65E34, symSize: 0x4 } - - { offsetInCU: 0xC0C, offset: 0x8F898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3960, symBinAddr: 0x65E38, symSize: 0x44 } - - { offsetInCU: 0xC20, offset: 0x8F8AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39A4, symBinAddr: 0x65E7C, symSize: 0x4 } - - { offsetInCU: 0xC34, offset: 0x8F8C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39A8, symBinAddr: 0x65E80, symSize: 0x44 } - - { offsetInCU: 0xC62, offset: 0x8F8EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1818, symBinAddr: 0x63DEC, symSize: 0x28 } - - { offsetInCU: 0xC7E, offset: 0x8F90A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x63E14, symSize: 0x28 } - - { offsetInCU: 0xCA0, offset: 0x8F92C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AA8, symBinAddr: 0x6407C, symSize: 0x28 } - - { offsetInCU: 0xCBC, offset: 0x8F948, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x640A4, symSize: 0x28 } - - { offsetInCU: 0xCDE, offset: 0x8F96A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2344, symBinAddr: 0x64918, symSize: 0x28 } - - { offsetInCU: 0xCFA, offset: 0x8F986, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x236C, symBinAddr: 0x64940, symSize: 0x28 } - - { offsetInCU: 0x27, offset: 0x8FAD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x65EEC, symSize: 0x2C } - - { offsetInCU: 0x4B, offset: 0x8FAFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x65EEC, symSize: 0x2C } - - { offsetInCU: 0x69, offset: 0x8FB1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x65F18, symSize: 0x34 } - - { offsetInCU: 0xA8, offset: 0x8FB59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x65F4C, symSize: 0x10 } - - { offsetInCU: 0xC6, offset: 0x8FB77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x65F5C, symSize: 0x4 } - - { offsetInCU: 0xF1, offset: 0x8FBA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x65F60, symSize: 0x2C } - - { offsetInCU: 0x10F, offset: 0x8FBC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x65F8C, symSize: 0x34 } - - { offsetInCU: 0x14E, offset: 0x8FBFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x65FC0, symSize: 0x10 } - - { offsetInCU: 0x17C, offset: 0x8FC2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x65FD0, symSize: 0x4 } - - { offsetInCU: 0x1A8, offset: 0x8FC59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x65FD4, symSize: 0x30 } - - { offsetInCU: 0x1BC, offset: 0x8FC6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x66004, symSize: 0x28 } - - { offsetInCU: 0x1D0, offset: 0x8FC81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6602C, symSize: 0x3C } - - { offsetInCU: 0x1E4, offset: 0x8FC95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x66068, symSize: 0x6C } - - { offsetInCU: 0x1F8, offset: 0x8FCA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x660D4, symSize: 0x44 } - - { offsetInCU: 0x20C, offset: 0x8FCBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x66118, symSize: 0x48 } - - { offsetInCU: 0x220, offset: 0x8FCD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x66160, symSize: 0x40 } - - { offsetInCU: 0x234, offset: 0x8FCE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x661A0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x8FE2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x661B0, symSize: 0x40 } - - { offsetInCU: 0x4B, offset: 0x8FE4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0SSvpZ', symObjAddr: 0x8F90, symBinAddr: 0x853C8, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x8FE69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8languageSSvpZ', symObjAddr: 0x8FA0, symBinAddr: 0x853D8, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x8FE83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7versionSSvpZ', symObjAddr: 0x8FB0, symBinAddr: 0x853E8, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x8FE9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0x8FC0, symBinAddr: 0x853F8, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x8FEB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0x8FD0, symBinAddr: 0x85408, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x8FED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0x8FE0, symBinAddr: 0x85418, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x8FEEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0x8FF0, symBinAddr: 0x85428, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x8FF05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0x9000, symBinAddr: 0x85438, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x8FF1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0x9010, symBinAddr: 0x85448, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x8FF39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0x9020, symBinAddr: 0x85458, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x8FF53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0x9030, symBinAddr: 0x85468, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x8FF6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0x9040, symBinAddr: 0x85478, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x8FF87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0x9050, symBinAddr: 0x85488, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x8FFA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0x9060, symBinAddr: 0x85498, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x8FFBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0x9070, symBinAddr: 0x854A8, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x8FFD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0x9080, symBinAddr: 0x854B8, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x8FFEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKeySSvpZ', symObjAddr: 0x9090, symBinAddr: 0x854C8, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x90009, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKeySSvpZ', symObjAddr: 0x90A0, symBinAddr: 0x854D8, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x90023, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKeySSvpZ', symObjAddr: 0x90B0, symBinAddr: 0x854E8, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x9003D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKeySSvpZ', symObjAddr: 0x90C0, symBinAddr: 0x854F8, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x90057, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKeySSvpZ', symObjAddr: 0x90D0, symBinAddr: 0x85508, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x90071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKeySSvpZ', symObjAddr: 0x90E0, symBinAddr: 0x85518, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x9008B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKeySSvpZ', symObjAddr: 0x90F0, symBinAddr: 0x85528, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x900A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0x9100, symBinAddr: 0x85538, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x900BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0x9110, symBinAddr: 0x85548, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x900D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvpZ', symObjAddr: 0x9120, symBinAddr: 0x85558, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x900F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0x9130, symBinAddr: 0x85568, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x9010D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKeySSvpZ', symObjAddr: 0x9140, symBinAddr: 0x85578, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x90127, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkeySSvpZ', symObjAddr: 0x9150, symBinAddr: 0x85588, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x90141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0x9160, symBinAddr: 0x85598, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x9015B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKeySSvpZ', symObjAddr: 0x9170, symBinAddr: 0x855A8, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x90175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKeySSvpZ', symObjAddr: 0x9180, symBinAddr: 0x855B8, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x9018F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvpZ', symObjAddr: 0x9190, symBinAddr: 0x855C8, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x901A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKeySSvpZ', symObjAddr: 0x91A0, symBinAddr: 0x855D8, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x901C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKeySSvpZ', symObjAddr: 0x91B0, symBinAddr: 0x855E8, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x901DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKeySSvpZ', symObjAddr: 0x91C0, symBinAddr: 0x855F8, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x901F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKeySSvpZ', symObjAddr: 0x91D0, symBinAddr: 0x85608, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x90211, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvpZ', symObjAddr: 0x91E0, symBinAddr: 0x85618, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x9022B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvpZ', symObjAddr: 0x91F0, symBinAddr: 0x85628, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x90245, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvpZ', symObjAddr: 0x9200, symBinAddr: 0x85638, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x9025F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkeySSvpZ', symObjAddr: 0x9210, symBinAddr: 0x85648, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x90279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvpZ', symObjAddr: 0x9220, symBinAddr: 0x85658, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x90293, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKeySSvpZ', symObjAddr: 0x9230, symBinAddr: 0x85668, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x902AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKeySSvpZ', symObjAddr: 0x9240, symBinAddr: 0x85678, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x902C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKeySSvpZ', symObjAddr: 0x9250, symBinAddr: 0x85688, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x902E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKeySSvpZ', symObjAddr: 0x9260, symBinAddr: 0x85698, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x902FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKeySSvpZ', symObjAddr: 0x9270, symBinAddr: 0x856A8, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x90315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKeySSvpZ', symObjAddr: 0x9280, symBinAddr: 0x856B8, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x9032F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0x9290, symBinAddr: 0x856C8, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x90349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0x92A0, symBinAddr: 0x856D8, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x90363, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0x92B0, symBinAddr: 0x856E8, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x9037D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKeySSvpZ', symObjAddr: 0x92C0, symBinAddr: 0x856F8, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x90397, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKeySSvpZ', symObjAddr: 0x92D0, symBinAddr: 0x85708, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x903B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKeySSvpZ', symObjAddr: 0x92E0, symBinAddr: 0x85718, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x903CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKeySSvpZ', symObjAddr: 0x92F0, symBinAddr: 0x85728, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x903E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0x9300, symBinAddr: 0x85738, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x903FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0x9310, symBinAddr: 0x85748, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x90419, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0x9320, symBinAddr: 0x85758, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x90433, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekeySSvpZ', symObjAddr: 0x9330, symBinAddr: 0x85768, symSize: 0x0 } - - { offsetInCU: 0x649, offset: 0x9044D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkeySSvpZ', symObjAddr: 0x9340, symBinAddr: 0x85778, symSize: 0x0 } - - { offsetInCU: 0x657, offset: 0x9045B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x661B0, symSize: 0x40 } - - { offsetInCU: 0x675, offset: 0x90479, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvau', symObjAddr: 0x40, symBinAddr: 0x661F0, symSize: 0x40 } - - { offsetInCU: 0x693, offset: 0x90497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvau', symObjAddr: 0x80, symBinAddr: 0x66230, symSize: 0x40 } - - { offsetInCU: 0x6B1, offset: 0x904B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvau', symObjAddr: 0xC0, symBinAddr: 0x66270, symSize: 0x40 } - - { offsetInCU: 0x6CF, offset: 0x904D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvau', symObjAddr: 0x100, symBinAddr: 0x662B0, symSize: 0x40 } - - { offsetInCU: 0x6F9, offset: 0x904FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x140, symBinAddr: 0x662F0, symSize: 0x14 } - - { offsetInCU: 0x714, offset: 0x90518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x2D4, symBinAddr: 0x66484, symSize: 0x108 } - - { offsetInCU: 0x766, offset: 0x9056A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x510, symBinAddr: 0x666C0, symSize: 0x8 } - - { offsetInCU: 0x782, offset: 0x90586, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x666C8, symSize: 0x18 } - - { offsetInCU: 0x79A, offset: 0x9059E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x518, symBinAddr: 0x666C8, symSize: 0x18 } - - { offsetInCU: 0x7AC, offset: 0x905B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvau', symObjAddr: 0x154, symBinAddr: 0x66304, symSize: 0x40 } - - { offsetInCU: 0x7CA, offset: 0x905CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvau', symObjAddr: 0x194, symBinAddr: 0x66344, symSize: 0x40 } - - { offsetInCU: 0x7E8, offset: 0x905EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x1D4, symBinAddr: 0x66384, symSize: 0x40 } - - { offsetInCU: 0x806, offset: 0x9060A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x214, symBinAddr: 0x663C4, symSize: 0x40 } - - { offsetInCU: 0x824, offset: 0x90628, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x254, symBinAddr: 0x66404, symSize: 0x40 } - - { offsetInCU: 0x842, offset: 0x90646, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvau', symObjAddr: 0x294, symBinAddr: 0x66444, symSize: 0x40 } - - { offsetInCU: 0x86B, offset: 0x9066F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x400, symBinAddr: 0x665B0, symSize: 0x4 } - - { offsetInCU: 0x87F, offset: 0x90683, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x404, symBinAddr: 0x665B4, symSize: 0x44 } - - { offsetInCU: 0x8A9, offset: 0x906AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x540, symBinAddr: 0x666E0, symSize: 0x90 } - - { offsetInCU: 0x8BD, offset: 0x906C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x5D0, symBinAddr: 0x66770, symSize: 0xBC } - - { offsetInCU: 0x8D1, offset: 0x906D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x68C, symBinAddr: 0x6682C, symSize: 0x8 } - - { offsetInCU: 0x8E5, offset: 0x906E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x694, symBinAddr: 0x66834, symSize: 0x4 } - - { offsetInCU: 0x8F9, offset: 0x906FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x698, symBinAddr: 0x66838, symSize: 0x8 } - - { offsetInCU: 0x90D, offset: 0x90711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x6A0, symBinAddr: 0x66840, symSize: 0x10 } - - { offsetInCU: 0x921, offset: 0x90725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0_WZ', symObjAddr: 0x6B0, symBinAddr: 0x66850, symSize: 0x1C } - - { offsetInCU: 0x93B, offset: 0x9073F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8language_WZ', symObjAddr: 0x6CC, symBinAddr: 0x6686C, symSize: 0x20 } - - { offsetInCU: 0x955, offset: 0x90759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7version_WZ', symObjAddr: 0x6EC, symBinAddr: 0x6688C, symSize: 0x1C } - - { offsetInCU: 0x96F, offset: 0x90773, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x708, symBinAddr: 0x668A8, symSize: 0x1C } - - { offsetInCU: 0x989, offset: 0x9078D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x724, symBinAddr: 0x668C4, symSize: 0x1C } - - { offsetInCU: 0x9A3, offset: 0x907A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0x740, symBinAddr: 0x668E0, symSize: 0x1C } - - { offsetInCU: 0x9BD, offset: 0x907C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPassword_WZ', symObjAddr: 0x75C, symBinAddr: 0x668FC, symSize: 0x14 } - - { offsetInCU: 0x9DE, offset: 0x907E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0x770, symBinAddr: 0x66910, symSize: 0x1C } - - { offsetInCU: 0x9F8, offset: 0x907FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0x78C, symBinAddr: 0x6692C, symSize: 0x24 } - - { offsetInCU: 0xA12, offset: 0x90816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6option_WZ', symObjAddr: 0x7B0, symBinAddr: 0x66950, symSize: 0x20 } - - { offsetInCU: 0xA2C, offset: 0x90830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0x7D0, symBinAddr: 0x66970, symSize: 0x28 } - - { offsetInCU: 0xA46, offset: 0x9084A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0x7F8, symBinAddr: 0x66998, symSize: 0x24 } - - { offsetInCU: 0xA60, offset: 0x90864, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0x81C, symBinAddr: 0x669BC, symSize: 0x24 } - - { offsetInCU: 0xA7A, offset: 0x9087E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6device_WZ', symObjAddr: 0x840, symBinAddr: 0x669E0, symSize: 0x20 } - - { offsetInCU: 0xA94, offset: 0x90898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0x860, symBinAddr: 0x66A00, symSize: 0x28 } - - { offsetInCU: 0xAAE, offset: 0x908B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0x888, symBinAddr: 0x66A28, symSize: 0x1C } - - { offsetInCU: 0xAC9, offset: 0x908CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKey_WZ', symObjAddr: 0x8A4, symBinAddr: 0x66A44, symSize: 0x18 } - - { offsetInCU: 0xAE3, offset: 0x908E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKey_WZ', symObjAddr: 0x8BC, symBinAddr: 0x66A5C, symSize: 0x18 } - - { offsetInCU: 0xAFD, offset: 0x90901, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKey_WZ', symObjAddr: 0x8D4, symBinAddr: 0x66A74, symSize: 0x1C } - - { offsetInCU: 0xB17, offset: 0x9091B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKey_WZ', symObjAddr: 0x8F0, symBinAddr: 0x66A90, symSize: 0x1C } - - { offsetInCU: 0xB31, offset: 0x90935, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKey_WZ', symObjAddr: 0x90C, symBinAddr: 0x66AAC, symSize: 0x18 } - - { offsetInCU: 0xB4B, offset: 0x9094F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKey_WZ', symObjAddr: 0x924, symBinAddr: 0x66AC4, symSize: 0x1C } - - { offsetInCU: 0xB65, offset: 0x90969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKey_WZ', symObjAddr: 0x940, symBinAddr: 0x66AE0, symSize: 0x1C } - - { offsetInCU: 0xB7F, offset: 0x90983, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0x95C, symBinAddr: 0x66AFC, symSize: 0x1C } - - { offsetInCU: 0xB99, offset: 0x9099D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKey_WZ', symObjAddr: 0x978, symBinAddr: 0x66B18, symSize: 0x18 } - - { offsetInCU: 0xBB3, offset: 0x909B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKey_WZ', symObjAddr: 0x990, symBinAddr: 0x66B30, symSize: 0x18 } - - { offsetInCU: 0xBCD, offset: 0x909D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKey_WZ', symObjAddr: 0x9A8, symBinAddr: 0x66B48, symSize: 0x1C } - - { offsetInCU: 0xBE7, offset: 0x909EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKey_WZ', symObjAddr: 0x9C4, symBinAddr: 0x66B64, symSize: 0x18 } - - { offsetInCU: 0xC01, offset: 0x90A05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkey_WZ', symObjAddr: 0x9DC, symBinAddr: 0x66B7C, symSize: 0x1C } - - { offsetInCU: 0xC1B, offset: 0x90A1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKey_WZ', symObjAddr: 0x9F8, symBinAddr: 0x66B98, symSize: 0x24 } - - { offsetInCU: 0xC35, offset: 0x90A39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKey_WZ', symObjAddr: 0xA1C, symBinAddr: 0x66BBC, symSize: 0x18 } - - { offsetInCU: 0xC4F, offset: 0x90A53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKey_WZ', symObjAddr: 0xA34, symBinAddr: 0x66BD4, symSize: 0x18 } - - { offsetInCU: 0xC69, offset: 0x90A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKey_WZ', symObjAddr: 0xA4C, symBinAddr: 0x66BEC, symSize: 0x18 } - - { offsetInCU: 0xC83, offset: 0x90A87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKey_WZ', symObjAddr: 0xA64, symBinAddr: 0x66C04, symSize: 0x1C } - - { offsetInCU: 0xC9D, offset: 0x90AA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKey_WZ', symObjAddr: 0xA80, symBinAddr: 0x66C20, symSize: 0x18 } - - { offsetInCU: 0xCB7, offset: 0x90ABB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKey_WZ', symObjAddr: 0xA98, symBinAddr: 0x66C38, symSize: 0x18 } - - { offsetInCU: 0xCD1, offset: 0x90AD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKey_WZ', symObjAddr: 0xAB0, symBinAddr: 0x66C50, symSize: 0x1C } - - { offsetInCU: 0xCEB, offset: 0x90AEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkey_WZ', symObjAddr: 0xACC, symBinAddr: 0x66C6C, symSize: 0x18 } - - { offsetInCU: 0xD05, offset: 0x90B09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkey_WZ', symObjAddr: 0xAE4, symBinAddr: 0x66C84, symSize: 0x18 } - - { offsetInCU: 0xD1F, offset: 0x90B23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekey_WZ', symObjAddr: 0xAFC, symBinAddr: 0x66C9C, symSize: 0x18 } - - { offsetInCU: 0xD39, offset: 0x90B3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkey_WZ', symObjAddr: 0xB14, symBinAddr: 0x66CB4, symSize: 0x18 } - - { offsetInCU: 0xD53, offset: 0x90B57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkey_WZ', symObjAddr: 0xB2C, symBinAddr: 0x66CCC, symSize: 0x20 } - - { offsetInCU: 0xD6D, offset: 0x90B71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKey_WZ', symObjAddr: 0xB4C, symBinAddr: 0x66CEC, symSize: 0x24 } - - { offsetInCU: 0xD87, offset: 0x90B8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x66D10, symSize: 0x1C } - - { offsetInCU: 0xDA1, offset: 0x90BA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKey_WZ', symObjAddr: 0xB8C, symBinAddr: 0x66D2C, symSize: 0x1C } - - { offsetInCU: 0xDBB, offset: 0x90BBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKey_WZ', symObjAddr: 0xBA8, symBinAddr: 0x66D48, symSize: 0x1C } - - { offsetInCU: 0xDD5, offset: 0x90BD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKey_WZ', symObjAddr: 0xBC4, symBinAddr: 0x66D64, symSize: 0x18 } - - { offsetInCU: 0xDEF, offset: 0x90BF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKey_WZ', symObjAddr: 0xBDC, symBinAddr: 0x66D7C, symSize: 0x1C } - - { offsetInCU: 0xE09, offset: 0x90C0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKey_WZ', symObjAddr: 0xBF8, symBinAddr: 0x66D98, symSize: 0x18 } - - { offsetInCU: 0xE23, offset: 0x90C27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0xC10, symBinAddr: 0x66DB0, symSize: 0x18 } - - { offsetInCU: 0xE3D, offset: 0x90C41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKey_WZ', symObjAddr: 0xC28, symBinAddr: 0x66DC8, symSize: 0x18 } - - { offsetInCU: 0xE57, offset: 0x90C5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKey_WZ', symObjAddr: 0xC40, symBinAddr: 0x66DE0, symSize: 0x1C } - - { offsetInCU: 0xE71, offset: 0x90C75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKey_WZ', symObjAddr: 0xC5C, symBinAddr: 0x66DFC, symSize: 0x24 } - - { offsetInCU: 0xE8B, offset: 0x90C8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKey_WZ', symObjAddr: 0xC80, symBinAddr: 0x66E20, symSize: 0x1C } - - { offsetInCU: 0xEA5, offset: 0x90CA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKey_WZ', symObjAddr: 0xC9C, symBinAddr: 0x66E3C, symSize: 0x20 } - - { offsetInCU: 0xEBF, offset: 0x90CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKey_WZ', symObjAddr: 0xCBC, symBinAddr: 0x66E5C, symSize: 0x18 } - - { offsetInCU: 0xED9, offset: 0x90CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0xCD4, symBinAddr: 0x66E74, symSize: 0x18 } - - { offsetInCU: 0xEF3, offset: 0x90CF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekey_WZ', symObjAddr: 0xCEC, symBinAddr: 0x66E8C, symSize: 0x18 } - - { offsetInCU: 0xF0D, offset: 0x90D11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekey_WZ', symObjAddr: 0xD04, symBinAddr: 0x66EA4, symSize: 0x18 } - - { offsetInCU: 0xF27, offset: 0x90D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkey_WZ', symObjAddr: 0xD1C, symBinAddr: 0x66EBC, symSize: 0x18 } - - { offsetInCU: 0xF69, offset: 0x90D6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0xD34, symBinAddr: 0x66ED4, symSize: 0x288 } - - { offsetInCU: 0x10FC, offset: 0x90F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x3DC, symBinAddr: 0x6658C, symSize: 0x24 } - - { offsetInCU: 0x119E, offset: 0x90FA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x448, symBinAddr: 0x665F8, symSize: 0x4C } - - { offsetInCU: 0x1276, offset: 0x9107A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x494, symBinAddr: 0x66644, symSize: 0x34 } - - { offsetInCU: 0x12F2, offset: 0x910F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x4C8, symBinAddr: 0x66678, symSize: 0x48 } - - { offsetInCU: 0x2B, offset: 0x912BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6715C, symSize: 0x24 } - - { offsetInCU: 0x6D, offset: 0x91301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6715C, symSize: 0x24 } - - { offsetInCU: 0xB9, offset: 0x9134D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x67180, symSize: 0x20 } - - { offsetInCU: 0x4F, offset: 0x9148E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1B00, symBinAddr: 0x84D90, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x914D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0xDC, symBinAddr: 0x6727C, symSize: 0x40 } - - { offsetInCU: 0x117, offset: 0x91556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x11C, symBinAddr: 0x672BC, symSize: 0x3F8 } - - { offsetInCU: 0x302, offset: 0x91741, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x564, symBinAddr: 0x676C4, symSize: 0x5C } - - { offsetInCU: 0x368, offset: 0x917A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x5C8, symBinAddr: 0x67728, symSize: 0x5C } - - { offsetInCU: 0x3CE, offset: 0x9180D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x62C, symBinAddr: 0x6778C, symSize: 0x5C } - - { offsetInCU: 0x434, offset: 0x91873, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x690, symBinAddr: 0x677F0, symSize: 0x5C } - - { offsetInCU: 0x49A, offset: 0x918D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x6F4, symBinAddr: 0x67854, symSize: 0x5C } - - { offsetInCU: 0x597, offset: 0x919D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x81C, symBinAddr: 0x67920, symSize: 0x3C } - - { offsetInCU: 0x608, offset: 0x91A47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6795C, symSize: 0x10 } - - { offsetInCU: 0x644, offset: 0x91A83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x858, symBinAddr: 0x6795C, symSize: 0x10 } - - { offsetInCU: 0x673, offset: 0x91AB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x868, symBinAddr: 0x6796C, symSize: 0x54 } - - { offsetInCU: 0x6F4, offset: 0x91B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0x9CC, symBinAddr: 0x67AD0, symSize: 0x34 } - - { offsetInCU: 0x755, offset: 0x91B94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xA00, symBinAddr: 0x67B04, symSize: 0x54 } - - { offsetInCU: 0x7D6, offset: 0x91C15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xA54, symBinAddr: 0x67B58, symSize: 0x4C } - - { offsetInCU: 0x871, offset: 0x91CB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xAA0, symBinAddr: 0x67BA4, symSize: 0x84 } - - { offsetInCU: 0x920, offset: 0x91D5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xB34, symBinAddr: 0x67C28, symSize: 0x74 } - - { offsetInCU: 0x9E3, offset: 0x91E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xBA8, symBinAddr: 0x67C9C, symSize: 0x84 } - - { offsetInCU: 0xA92, offset: 0x91ED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xC2C, symBinAddr: 0x67D20, symSize: 0x38 } - - { offsetInCU: 0xB23, offset: 0x91F62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC64, symBinAddr: 0x67D58, symSize: 0x38 } - - { offsetInCU: 0xBB4, offset: 0x91FF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xC9C, symBinAddr: 0x67D90, symSize: 0x38 } - - { offsetInCU: 0xC46, offset: 0x92085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xCD4, symBinAddr: 0x67DC8, symSize: 0x38 } - - { offsetInCU: 0xCDB, offset: 0x9211A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD0C, symBinAddr: 0x67E00, symSize: 0x38 } - - { offsetInCU: 0xD70, offset: 0x921AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD44, symBinAddr: 0x67E38, symSize: 0x38 } - - { offsetInCU: 0xE05, offset: 0x92244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xD7C, symBinAddr: 0x67E70, symSize: 0x38 } - - { offsetInCU: 0xE9A, offset: 0x922D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xDB4, symBinAddr: 0x67EA8, symSize: 0x38 } - - { offsetInCU: 0xF05, offset: 0x92344, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xDEC, symBinAddr: 0x67EE0, symSize: 0x44 } - - { offsetInCU: 0xF66, offset: 0x923A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xE30, symBinAddr: 0x67F24, symSize: 0x138 } - - { offsetInCU: 0x104C, offset: 0x9248B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0xF68, symBinAddr: 0x6805C, symSize: 0xAC } - - { offsetInCU: 0x1133, offset: 0x92572, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1014, symBinAddr: 0x68108, symSize: 0x78 } - - { offsetInCU: 0x11CE, offset: 0x9260D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x108C, symBinAddr: 0x68180, symSize: 0x84 } - - { offsetInCU: 0x11FB, offset: 0x9263A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x1110, symBinAddr: 0x68204, symSize: 0x1C } - - { offsetInCU: 0x12A1, offset: 0x926E0, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x40, symBinAddr: 0x671E0, symSize: 0x50 } - - { offsetInCU: 0x12B9, offset: 0x926F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x90, symBinAddr: 0x67230, symSize: 0x4C } - - { offsetInCU: 0x1357, offset: 0x92796, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x5C0, symBinAddr: 0x67720, symSize: 0x8 } - - { offsetInCU: 0x136B, offset: 0x927AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x624, symBinAddr: 0x67784, symSize: 0x8 } - - { offsetInCU: 0x137F, offset: 0x927BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x688, symBinAddr: 0x677E8, symSize: 0x8 } - - { offsetInCU: 0x1393, offset: 0x927D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x6EC, symBinAddr: 0x6784C, symSize: 0x8 } - - { offsetInCU: 0x13A7, offset: 0x927E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x750, symBinAddr: 0x678B0, symSize: 0x8 } - - { offsetInCU: 0x13BB, offset: 0x927FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x7B4, symBinAddr: 0x678B8, symSize: 0x20 } - - { offsetInCU: 0x13CF, offset: 0x9280E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOf', symObjAddr: 0x7D4, symBinAddr: 0x678D8, symSize: 0x48 } - - { offsetInCU: 0x1430, offset: 0x9286F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1258, symBinAddr: 0x6834C, symSize: 0x8 } - - { offsetInCU: 0x1444, offset: 0x92883, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1260, symBinAddr: 0x68354, symSize: 0x10 } - - { offsetInCU: 0x1458, offset: 0x92897, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1270, symBinAddr: 0x68364, symSize: 0x8 } - - { offsetInCU: 0x1499, offset: 0x928D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x12A4, symBinAddr: 0x6836C, symSize: 0x320 } - - { offsetInCU: 0x159B, offset: 0x929DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x15C4, symBinAddr: 0x6868C, symSize: 0x3CC } - - { offsetInCU: 0x16EE, offset: 0x92B2D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x671A0, symSize: 0x4 } - - { offsetInCU: 0x170A, offset: 0x92B49, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x4, symBinAddr: 0x671A4, symSize: 0x4 } - - { offsetInCU: 0x1726, offset: 0x92B65, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x8, symBinAddr: 0x671A8, symSize: 0x4 } - - { offsetInCU: 0x1742, offset: 0x92B81, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0xC, symBinAddr: 0x671AC, symSize: 0x4 } - - { offsetInCU: 0x175E, offset: 0x92B9D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x10, symBinAddr: 0x671B0, symSize: 0x4 } - - { offsetInCU: 0x177A, offset: 0x92BB9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x671B4, symSize: 0x4 } - - { offsetInCU: 0x1796, offset: 0x92BD5, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x18, symBinAddr: 0x671B8, symSize: 0x4 } - - { offsetInCU: 0x17B2, offset: 0x92BF1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x1C, symBinAddr: 0x671BC, symSize: 0x4 } - - { offsetInCU: 0x17CE, offset: 0x92C0D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x20, symBinAddr: 0x671C0, symSize: 0x4 } - - { offsetInCU: 0x17EA, offset: 0x92C29, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x24, symBinAddr: 0x671C4, symSize: 0x4 } - - { offsetInCU: 0x1806, offset: 0x92C45, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x28, symBinAddr: 0x671C8, symSize: 0xC } - - { offsetInCU: 0x1822, offset: 0x92C61, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x34, symBinAddr: 0x671D4, symSize: 0xC } -... diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml b/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml deleted file mode 100644 index f61dce2..0000000 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml +++ /dev/null @@ -1,1793 +0,0 @@ ---- -triple: 'x86_64-apple-darwin' -binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' -relocations: - - { offsetInCU: 0x34, offset: 0x59050, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x78E70, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x59085, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x78EA8, symSize: 0x0 } - - { offsetInCU: 0x4F, offset: 0x590EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x44A68, symBinAddr: 0x91310, symSize: 0x0 } - - { offsetInCU: 0x7A, offset: 0x59115, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xF0, symBinAddr: 0x2120, symSize: 0x40 } - - { offsetInCU: 0x96, offset: 0x59131, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x130, symBinAddr: 0x2160, symSize: 0x10 } - - { offsetInCU: 0xB2, offset: 0x5914D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x140, symBinAddr: 0x2170, symSize: 0x320 } - - { offsetInCU: 0x109, offset: 0x591A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x460, symBinAddr: 0x2490, symSize: 0x1010 } - - { offsetInCU: 0x459, offset: 0x594F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x1470, symBinAddr: 0x34A0, symSize: 0x660 } - - { offsetInCU: 0x4DA, offset: 0x59575, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1AD0, symBinAddr: 0x3B00, symSize: 0x20 } - - { offsetInCU: 0x507, offset: 0x595A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D50, symBinAddr: 0x3D80, symSize: 0x770 } - - { offsetInCU: 0x7CC, offset: 0x59867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x24C0, symBinAddr: 0x44F0, symSize: 0x480 } - - { offsetInCU: 0xA80, offset: 0x59B1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2940, symBinAddr: 0x4970, symSize: 0xA40 } - - { offsetInCU: 0xEAC, offset: 0x59F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3380, symBinAddr: 0x53B0, symSize: 0x7A0 } - - { offsetInCU: 0x1290, offset: 0x5A32B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3B20, symBinAddr: 0x5B50, symSize: 0x4B00 } - - { offsetInCU: 0x2C6D, offset: 0x5BD08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8630, symBinAddr: 0xA650, symSize: 0x190 } - - { offsetInCU: 0x2D41, offset: 0x5BDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x87C0, symBinAddr: 0xA7E0, symSize: 0x3B0 } - - { offsetInCU: 0x2F2C, offset: 0x5BFC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8B70, symBinAddr: 0xAB90, symSize: 0x480 } - - { offsetInCU: 0x32BB, offset: 0x5C356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x8FF0, symBinAddr: 0xB010, symSize: 0x360 } - - { offsetInCU: 0x3479, offset: 0x5C514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8getTwins8callBackyyypSgc_tF', symObjAddr: 0x9350, symBinAddr: 0xB370, symSize: 0x2A0 } - - { offsetInCU: 0x35F5, offset: 0x5C690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15getChildDevices8callBackyyypSgXE_tF', symObjAddr: 0x95F0, symBinAddr: 0xB610, symSize: 0x2B0 } - - { offsetInCU: 0x3771, offset: 0x5C80C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x98A0, symBinAddr: 0xB8C0, symSize: 0x4A0 } - - { offsetInCU: 0x389B, offset: 0x5C936, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x9D40, symBinAddr: 0xBD60, symSize: 0x740 } - - { offsetInCU: 0x3B6F, offset: 0x5CC0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0xA480, symBinAddr: 0xC4A0, symSize: 0x250 } - - { offsetInCU: 0x3D84, offset: 0x5CE1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB9A0, symBinAddr: 0xD9C0, symSize: 0x1B60 } - - { offsetInCU: 0x5458, offset: 0x5E4F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x20B0, symSize: 0x40 } - - { offsetInCU: 0x5488, offset: 0x5E523, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvau', symObjAddr: 0xC0, symBinAddr: 0x20F0, symSize: 0x30 } - - { offsetInCU: 0x5651, offset: 0x5E6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1AF0, symBinAddr: 0x3B20, symSize: 0x10 } - - { offsetInCU: 0x5665, offset: 0x5E700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1B00, symBinAddr: 0x3B30, symSize: 0x30 } - - { offsetInCU: 0x5679, offset: 0x5E714, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1B30, symBinAddr: 0x3B60, symSize: 0x220 } - - { offsetInCU: 0x5BD5, offset: 0x5EC70, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0xA750, symBinAddr: 0xC770, symSize: 0x10 } - - { offsetInCU: 0x5BE9, offset: 0x5EC84, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0xA760, symBinAddr: 0xC780, symSize: 0x10 } - - { offsetInCU: 0x5BFD, offset: 0x5EC98, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0xA770, symBinAddr: 0xC790, symSize: 0x20 } - - { offsetInCU: 0x5C11, offset: 0x5ECAC, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0xA790, symBinAddr: 0xC7B0, symSize: 0x30 } - - { offsetInCU: 0x5D22, offset: 0x5EDBD, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xAD00, symBinAddr: 0xCD20, symSize: 0x20 } - - { offsetInCU: 0x5D36, offset: 0x5EDD1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xAD20, symBinAddr: 0xCD40, symSize: 0x20 } - - { offsetInCU: 0x5D4A, offset: 0x5EDE5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xAD70, symBinAddr: 0xCD90, symSize: 0x20 } - - { offsetInCU: 0x5D5E, offset: 0x5EDF9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xAD90, symBinAddr: 0xCDB0, symSize: 0x20 } - - { offsetInCU: 0x5D93, offset: 0x5EE2E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xAF70, symBinAddr: 0xCF90, symSize: 0x230 } - - { offsetInCU: 0x5DF9, offset: 0x5EE94, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xB1A0, symBinAddr: 0xD1C0, symSize: 0x50 } - - { offsetInCU: 0x5E5A, offset: 0x5EEF5, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xB340, symBinAddr: 0xD360, symSize: 0x260 } - - { offsetInCU: 0x63D1, offset: 0x5F46C, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xD6A0, symBinAddr: 0xF6C0, symSize: 0x40 } - - { offsetInCU: 0x63E5, offset: 0x5F480, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xD6E0, symBinAddr: 0xF700, symSize: 0x30 } - - { offsetInCU: 0x63F9, offset: 0x5F494, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xD710, symBinAddr: 0xF730, symSize: 0x20 } - - { offsetInCU: 0x640D, offset: 0x5F4A8, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xD730, symBinAddr: 0xF750, symSize: 0x30 } - - { offsetInCU: 0x6421, offset: 0x5F4BC, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xD7B0, symBinAddr: 0xF7D0, symSize: 0x30 } - - { offsetInCU: 0x6435, offset: 0x5F4D0, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD950, symBinAddr: 0xF970, symSize: 0x20 } - - { offsetInCU: 0x6449, offset: 0x5F4E4, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD970, symBinAddr: 0xF990, symSize: 0x20 } - - { offsetInCU: 0x645D, offset: 0x5F4F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xD990, symBinAddr: 0xF9B0, symSize: 0x50 } - - { offsetInCU: 0x6471, offset: 0x5F50C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xD9E0, symBinAddr: 0xFA00, symSize: 0x180 } - - { offsetInCU: 0x6485, offset: 0x5F520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xDB60, symBinAddr: 0xFB80, symSize: 0x2D0 } - - { offsetInCU: 0x6499, offset: 0x5F534, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xDE30, symBinAddr: 0xFE50, symSize: 0x70 } - - { offsetInCU: 0x64AD, offset: 0x5F548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xDEA0, symBinAddr: 0xFEC0, symSize: 0x30 } - - { offsetInCU: 0x64C1, offset: 0x5F55C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xDED0, symBinAddr: 0xFEF0, symSize: 0xD0 } - - { offsetInCU: 0x64D5, offset: 0x5F570, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xDFA0, symBinAddr: 0xFFC0, symSize: 0xB0 } - - { offsetInCU: 0x64E9, offset: 0x5F584, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xE050, symBinAddr: 0x10070, symSize: 0x20 } - - { offsetInCU: 0x64FD, offset: 0x5F598, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xE070, symBinAddr: 0x10090, symSize: 0x30 } - - { offsetInCU: 0x6511, offset: 0x5F5AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xE100, symBinAddr: 0x10120, symSize: 0x50 } - - { offsetInCU: 0x6525, offset: 0x5F5C0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xE1F0, symBinAddr: 0x10210, symSize: 0x20 } - - { offsetInCU: 0x6539, offset: 0x5F5D4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xE210, symBinAddr: 0x10230, symSize: 0x20 } - - { offsetInCU: 0x654D, offset: 0x5F5E8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xE230, symBinAddr: 0x10250, symSize: 0x20 } - - { offsetInCU: 0x6561, offset: 0x5F5FC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xE250, symBinAddr: 0x10270, symSize: 0x20 } - - { offsetInCU: 0x6575, offset: 0x5F610, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xE270, symBinAddr: 0x10290, symSize: 0x20 } - - { offsetInCU: 0x6589, offset: 0x5F624, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xE290, symBinAddr: 0x102B0, symSize: 0x20 } - - { offsetInCU: 0x659D, offset: 0x5F638, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xE2B0, symBinAddr: 0x102D0, symSize: 0x20 } - - { offsetInCU: 0x698D, offset: 0x5FA28, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA7E0, symBinAddr: 0xC800, symSize: 0x10 } - - { offsetInCU: 0x69CB, offset: 0x5FA66, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA800, symBinAddr: 0xC820, symSize: 0x10 } - - { offsetInCU: 0x6A1A, offset: 0x5FAB5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA810, symBinAddr: 0xC830, symSize: 0x10 } - - { offsetInCU: 0x6AB7, offset: 0x5FB52, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA820, symBinAddr: 0xC840, symSize: 0x10 } - - { offsetInCU: 0x6B4C, offset: 0x5FBE7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA830, symBinAddr: 0xC850, symSize: 0x10 } - - { offsetInCU: 0x6BE9, offset: 0x5FC84, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA840, symBinAddr: 0xC860, symSize: 0x30 } - - { offsetInCU: 0x6D44, offset: 0x5FDDF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA870, symBinAddr: 0xC890, symSize: 0x30 } - - { offsetInCU: 0x6E41, offset: 0x5FEDC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA8A0, symBinAddr: 0xC8C0, symSize: 0x20 } - - { offsetInCU: 0x6F2D, offset: 0x5FFC8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA8C0, symBinAddr: 0xC8E0, symSize: 0x10 } - - { offsetInCU: 0x6F6B, offset: 0x60006, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA8D0, symBinAddr: 0xC8F0, symSize: 0x10 } - - { offsetInCU: 0x6FA9, offset: 0x60044, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA8E0, symBinAddr: 0xC900, symSize: 0x10 } - - { offsetInCU: 0x6FF6, offset: 0x60091, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA8F0, symBinAddr: 0xC910, symSize: 0x10 } - - { offsetInCU: 0x709F, offset: 0x6013A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA900, symBinAddr: 0xC920, symSize: 0x20 } - - { offsetInCU: 0x7116, offset: 0x601B1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA920, symBinAddr: 0xC940, symSize: 0x10 } - - { offsetInCU: 0x71CE, offset: 0x60269, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA930, symBinAddr: 0xC950, symSize: 0x20 } - - { offsetInCU: 0x7268, offset: 0x60303, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA950, symBinAddr: 0xC970, symSize: 0x10 } - - { offsetInCU: 0x72D0, offset: 0x6036B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA960, symBinAddr: 0xC980, symSize: 0x20 } - - { offsetInCU: 0x72EC, offset: 0x60387, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA980, symBinAddr: 0xC9A0, symSize: 0x10 } - - { offsetInCU: 0x7368, offset: 0x60403, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA9B0, symBinAddr: 0xC9D0, symSize: 0x10 } - - { offsetInCU: 0x7399, offset: 0x60434, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA9C0, symBinAddr: 0xC9E0, symSize: 0x10 } - - { offsetInCU: 0x73CA, offset: 0x60465, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA9D0, symBinAddr: 0xC9F0, symSize: 0x10 } - - { offsetInCU: 0x73FB, offset: 0x60496, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA9E0, symBinAddr: 0xCA00, symSize: 0x30 } - - { offsetInCU: 0x742A, offset: 0x604C5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xAA10, symBinAddr: 0xCA30, symSize: 0x30 } - - { offsetInCU: 0x745B, offset: 0x604F6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xAA40, symBinAddr: 0xCA60, symSize: 0x30 } - - { offsetInCU: 0x748C, offset: 0x60527, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xAA70, symBinAddr: 0xCA90, symSize: 0x10 } - - { offsetInCU: 0x74BD, offset: 0x60558, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xAA80, symBinAddr: 0xCAA0, symSize: 0x10 } - - { offsetInCU: 0x74EE, offset: 0x60589, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xAA90, symBinAddr: 0xCAB0, symSize: 0x10 } - - { offsetInCU: 0x751F, offset: 0x605BA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xAAA0, symBinAddr: 0xCAC0, symSize: 0x20 } - - { offsetInCU: 0x7550, offset: 0x605EB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xAAC0, symBinAddr: 0xCAE0, symSize: 0x20 } - - { offsetInCU: 0x7581, offset: 0x6061C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xAAE0, symBinAddr: 0xCB00, symSize: 0x10 } - - { offsetInCU: 0x75B2, offset: 0x6064D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xAAF0, symBinAddr: 0xCB10, symSize: 0x20 } - - { offsetInCU: 0x75E3, offset: 0x6067E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xAB10, symBinAddr: 0xCB30, symSize: 0x10 } - - { offsetInCU: 0x7614, offset: 0x606AF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xAB20, symBinAddr: 0xCB40, symSize: 0x20 } - - { offsetInCU: 0x7630, offset: 0x606CB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xAB40, symBinAddr: 0xCB60, symSize: 0x10 } - - { offsetInCU: 0x7670, offset: 0x6070B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAB70, symBinAddr: 0xCB90, symSize: 0x30 } - - { offsetInCU: 0x76EE, offset: 0x60789, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xABA0, symBinAddr: 0xCBC0, symSize: 0x60 } - - { offsetInCU: 0x7781, offset: 0x6081C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC60, symBinAddr: 0xCC80, symSize: 0x10 } - - { offsetInCU: 0x77C1, offset: 0x6085C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xAC70, symBinAddr: 0xCC90, symSize: 0x10 } - - { offsetInCU: 0x7807, offset: 0x608A2, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xAC80, symBinAddr: 0xCCA0, symSize: 0x40 } - - { offsetInCU: 0x7876, offset: 0x60911, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xACC0, symBinAddr: 0xCCE0, symSize: 0x10 } - - { offsetInCU: 0x78A1, offset: 0x6093C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xACD0, symBinAddr: 0xCCF0, symSize: 0x30 } - - { offsetInCU: 0x78D2, offset: 0x6096D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xADB0, symBinAddr: 0xCDD0, symSize: 0x10 } - - { offsetInCU: 0x7903, offset: 0x6099E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xADC0, symBinAddr: 0xCDE0, symSize: 0x30 } - - { offsetInCU: 0x7943, offset: 0x609DE, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xADF0, symBinAddr: 0xCE10, symSize: 0x80 } - - { offsetInCU: 0x79DC, offset: 0x60A77, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xAF00, symBinAddr: 0xCF20, symSize: 0x70 } - - { offsetInCU: 0x7A1F, offset: 0x60ABA, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTg5Tf4gd_n', symObjAddr: 0xB5A0, symBinAddr: 0xD5C0, symSize: 0xA0 } - - { offsetInCU: 0x7B0B, offset: 0x60BA6, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xB640, symBinAddr: 0xD660, symSize: 0x220 } - - { offsetInCU: 0x7D39, offset: 0x60DD4, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tg5Tf4gd_n', symObjAddr: 0xD500, symBinAddr: 0xF520, symSize: 0xD0 } - - { offsetInCU: 0x7E81, offset: 0x60F1C, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xD5D0, symBinAddr: 0xF5F0, symSize: 0xD0 } - - { offsetInCU: 0x7FB4, offset: 0x6104F, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE2D0, symBinAddr: 0x102F0, symSize: 0x80 } - - { offsetInCU: 0x8045, offset: 0x610E0, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgq5Tf4nnd_n', symObjAddr: 0xE350, symBinAddr: 0x10370, symSize: 0x80 } - - { offsetInCU: 0x8207, offset: 0x612A2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xAE80, symBinAddr: 0xCEA0, symSize: 0x10 } - - { offsetInCU: 0x8223, offset: 0x612BE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xAE90, symBinAddr: 0xCEB0, symSize: 0x10 } - - { offsetInCU: 0x828D, offset: 0x61328, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xAEA0, symBinAddr: 0xCEC0, symSize: 0x40 } - - { offsetInCU: 0x82B6, offset: 0x61351, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xAEE0, symBinAddr: 0xCF00, symSize: 0x20 } - - { offsetInCU: 0x82F1, offset: 0x6138C, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xAE70, symBinAddr: 0xCE90, symSize: 0x10 } - - { offsetInCU: 0x83CF, offset: 0x6146A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0xA7F0, symBinAddr: 0xC810, symSize: 0x10 } - - { offsetInCU: 0x83F2, offset: 0x6148D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA990, symBinAddr: 0xC9B0, symSize: 0x10 } - - { offsetInCU: 0x840E, offset: 0x614A9, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA9A0, symBinAddr: 0xC9C0, symSize: 0x10 } - - { offsetInCU: 0x27, offset: 0x616B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10430, symSize: 0x20 } - - { offsetInCU: 0x4B, offset: 0x616DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x10430, symSize: 0x20 } - - { offsetInCU: 0x79, offset: 0x6170B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0x10450, symSize: 0x14 } - - { offsetInCU: 0x43, offset: 0x6183A, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0x104A0, symSize: 0x10 } - - { offsetInCU: 0x57, offset: 0x6184E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0x104E0, symSize: 0x10 } - - { offsetInCU: 0x97, offset: 0x6188E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0x104F0, symSize: 0x20 } - - { offsetInCU: 0xE4, offset: 0x618DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA0, symBinAddr: 0x10510, symSize: 0x10 } - - { offsetInCU: 0x142, offset: 0x61939, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC0, symBinAddr: 0x10530, symSize: 0x20 } - - { offsetInCU: 0x1BC, offset: 0x619B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0xF0, symBinAddr: 0x10560, symSize: 0x10 } - - { offsetInCU: 0x1E7, offset: 0x619DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x100, symBinAddr: 0x10570, symSize: 0x20 } - - { offsetInCU: 0x218, offset: 0x61A0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x120, symBinAddr: 0x10590, symSize: 0x10 } - - { offsetInCU: 0x234, offset: 0x61A2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x130, symBinAddr: 0x105A0, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x61A47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2240, symBinAddr: 0x126B0, symSize: 0x340 } - - { offsetInCU: 0x296, offset: 0x61A8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x180, symBinAddr: 0x105F0, symSize: 0x4C0 } - - { offsetInCU: 0x2EB, offset: 0x61AE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0x119F0, symSize: 0x50 } - - { offsetInCU: 0x322, offset: 0x61B19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0x11A40, symSize: 0x50 } - - { offsetInCU: 0x345, offset: 0x61B3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2580, symBinAddr: 0x129F0, symSize: 0x14F0 } - - { offsetInCU: 0x377, offset: 0x61B6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x640, symBinAddr: 0x10AB0, symSize: 0xE0 } - - { offsetInCU: 0x3C3, offset: 0x61BBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1620, symBinAddr: 0x11A90, symSize: 0x10 } - - { offsetInCU: 0x417, offset: 0x61C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1630, symBinAddr: 0x11AA0, symSize: 0x30 } - - { offsetInCU: 0x4FB, offset: 0x61CF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1660, symBinAddr: 0x11AD0, symSize: 0x20 } - - { offsetInCU: 0x57C, offset: 0x61D73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16B0, symBinAddr: 0x11B20, symSize: 0x10 } - - { offsetInCU: 0x5BC, offset: 0x61DB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16C0, symBinAddr: 0x11B30, symSize: 0x20 } - - { offsetInCU: 0x5ED, offset: 0x61DE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x11B50, symSize: 0x10 } - - { offsetInCU: 0x609, offset: 0x61E00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x11B60, symSize: 0x10 } - - { offsetInCU: 0x625, offset: 0x61E1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3A70, symBinAddr: 0x13EE0, symSize: 0x60 } - - { offsetInCU: 0x669, offset: 0x61E60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvgTf4d_n', symObjAddr: 0x3AD0, symBinAddr: 0x13F40, symSize: 0x20 } - - { offsetInCU: 0x69D, offset: 0x61E94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x11BB0, symSize: 0x50 } - - { offsetInCU: 0x6D4, offset: 0x61ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x11C00, symSize: 0x50 } - - { offsetInCU: 0x6F7, offset: 0x61EEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3AF0, symBinAddr: 0x13F60, symSize: 0x3A0 } - - { offsetInCU: 0x769, offset: 0x61F60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x720, symBinAddr: 0x10B90, symSize: 0x20 } - - { offsetInCU: 0x792, offset: 0x61F89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x11C50, symSize: 0x10 } - - { offsetInCU: 0x7BD, offset: 0x61FB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x11C60, symSize: 0x20 } - - { offsetInCU: 0x7EE, offset: 0x61FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x11C80, symSize: 0x10 } - - { offsetInCU: 0x80A, offset: 0x62001, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x11C90, symSize: 0x10 } - - { offsetInCU: 0x826, offset: 0x6201D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6310, symBinAddr: 0x16730, symSize: 0x160 } - - { offsetInCU: 0x86C, offset: 0x62063, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x740, symBinAddr: 0x10BB0, symSize: 0x1A0 } - - { offsetInCU: 0x8C1, offset: 0x620B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x11CE0, symSize: 0x50 } - - { offsetInCU: 0x8F8, offset: 0x620EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x11D30, symSize: 0x50 } - - { offsetInCU: 0x91B, offset: 0x62112, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6470, symBinAddr: 0x16890, symSize: 0x320 } - - { offsetInCU: 0x96B, offset: 0x62162, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x8E0, symBinAddr: 0x10D50, symSize: 0x20 } - - { offsetInCU: 0x994, offset: 0x6218B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1910, symBinAddr: 0x11D80, symSize: 0x10 } - - { offsetInCU: 0x9BF, offset: 0x621B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1920, symBinAddr: 0x11D90, symSize: 0x20 } - - { offsetInCU: 0x9F0, offset: 0x621E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1940, symBinAddr: 0x11DB0, symSize: 0x10 } - - { offsetInCU: 0xA0C, offset: 0x62203, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6790, symBinAddr: 0x16BB0, symSize: 0x120 } - - { offsetInCU: 0xA52, offset: 0x62249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x900, symBinAddr: 0x10D70, symSize: 0x170 } - - { offsetInCU: 0xAA7, offset: 0x6229E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1990, symBinAddr: 0x11E00, symSize: 0x40 } - - { offsetInCU: 0xADE, offset: 0x622D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19D0, symBinAddr: 0x11E40, symSize: 0x40 } - - { offsetInCU: 0xB01, offset: 0x622F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x68B0, symBinAddr: 0x16CD0, symSize: 0x310 } - - { offsetInCU: 0xB45, offset: 0x6233C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xA70, symBinAddr: 0x10EE0, symSize: 0x20 } - - { offsetInCU: 0xB6E, offset: 0x62365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A10, symBinAddr: 0x11E80, symSize: 0x10 } - - { offsetInCU: 0xB99, offset: 0x62390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x11E90, symSize: 0x20 } - - { offsetInCU: 0xBCA, offset: 0x623C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x11EB0, symSize: 0x10 } - - { offsetInCU: 0xBE6, offset: 0x623DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x11EC0, symSize: 0x10 } - - { offsetInCU: 0xC02, offset: 0x623F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6BC0, symBinAddr: 0x16FE0, symSize: 0x120 } - - { offsetInCU: 0xC48, offset: 0x6243F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA90, symBinAddr: 0x10F00, symSize: 0x1D0 } - - { offsetInCU: 0xC9D, offset: 0x62494, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x11F10, symSize: 0x50 } - - { offsetInCU: 0xCD4, offset: 0x624CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AF0, symBinAddr: 0x11F60, symSize: 0x50 } - - { offsetInCU: 0xCF7, offset: 0x624EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x17100, symSize: 0x580 } - - { offsetInCU: 0xD47, offset: 0x6253E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xC60, symBinAddr: 0x110D0, symSize: 0x20 } - - { offsetInCU: 0xD70, offset: 0x62567, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x11FD0, symSize: 0x10 } - - { offsetInCU: 0xD9B, offset: 0x62592, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B70, symBinAddr: 0x11FE0, symSize: 0x20 } - - { offsetInCU: 0xDCC, offset: 0x625C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B90, symBinAddr: 0x12000, symSize: 0x10 } - - { offsetInCU: 0xDE8, offset: 0x625DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x12010, symSize: 0x10 } - - { offsetInCU: 0xE04, offset: 0x625FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x72F0, symBinAddr: 0x17710, symSize: 0x210 } - - { offsetInCU: 0xE4A, offset: 0x62641, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xC80, symBinAddr: 0x110F0, symSize: 0x230 } - - { offsetInCU: 0xE9F, offset: 0x62696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BF0, symBinAddr: 0x12060, symSize: 0x60 } - - { offsetInCU: 0xED6, offset: 0x626CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C50, symBinAddr: 0x120C0, symSize: 0x70 } - - { offsetInCU: 0xEF9, offset: 0x626F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7500, symBinAddr: 0x17920, symSize: 0x660 } - - { offsetInCU: 0xF49, offset: 0x62740, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xEB0, symBinAddr: 0x11320, symSize: 0x30 } - - { offsetInCU: 0xF94, offset: 0x6278B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1CC0, symBinAddr: 0x12130, symSize: 0x10 } - - { offsetInCU: 0x101D, offset: 0x62814, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1CD0, symBinAddr: 0x12140, symSize: 0x40 } - - { offsetInCU: 0x1101, offset: 0x628F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D10, symBinAddr: 0x12180, symSize: 0x20 } - - { offsetInCU: 0x1173, offset: 0x6296A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D70, symBinAddr: 0x121E0, symSize: 0x10 } - - { offsetInCU: 0x119E, offset: 0x62995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D80, symBinAddr: 0x121F0, symSize: 0x20 } - - { offsetInCU: 0x11CF, offset: 0x629C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1DA0, symBinAddr: 0x12210, symSize: 0x10 } - - { offsetInCU: 0x11EB, offset: 0x629E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DB0, symBinAddr: 0x12220, symSize: 0x10 } - - { offsetInCU: 0x1207, offset: 0x629FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7B90, symBinAddr: 0x17FB0, symSize: 0xA0 } - - { offsetInCU: 0x124D, offset: 0x62A44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x11350, symSize: 0x110 } - - { offsetInCU: 0x12A2, offset: 0x62A99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E00, symBinAddr: 0x12270, symSize: 0x30 } - - { offsetInCU: 0x12D9, offset: 0x62AD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E30, symBinAddr: 0x122A0, symSize: 0x20 } - - { offsetInCU: 0x12FC, offset: 0x62AF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7C30, symBinAddr: 0x18050, symSize: 0x180 } - - { offsetInCU: 0x1358, offset: 0x62B4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0xFF0, symBinAddr: 0x11460, symSize: 0x20 } - - { offsetInCU: 0x1381, offset: 0x62B78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E50, symBinAddr: 0x122C0, symSize: 0x10 } - - { offsetInCU: 0x13AC, offset: 0x62BA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x122D0, symSize: 0x20 } - - { offsetInCU: 0x13DD, offset: 0x62BD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1E80, symBinAddr: 0x122F0, symSize: 0x10 } - - { offsetInCU: 0x13F9, offset: 0x62BF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E90, symBinAddr: 0x12300, symSize: 0x10 } - - { offsetInCU: 0x1415, offset: 0x62C0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x7DE0, symBinAddr: 0x18200, symSize: 0x1C0 } - - { offsetInCU: 0x145B, offset: 0x62C52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1010, symBinAddr: 0x11480, symSize: 0x1F0 } - - { offsetInCU: 0x14B0, offset: 0x62CA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1EE0, symBinAddr: 0x12350, symSize: 0x50 } - - { offsetInCU: 0x14E7, offset: 0x62CDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F30, symBinAddr: 0x123A0, symSize: 0x50 } - - { offsetInCU: 0x150A, offset: 0x62D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x183C0, symSize: 0x3A0 } - - { offsetInCU: 0x154E, offset: 0x62D45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1200, symBinAddr: 0x11670, symSize: 0x20 } - - { offsetInCU: 0x1577, offset: 0x62D6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F80, symBinAddr: 0x123F0, symSize: 0x10 } - - { offsetInCU: 0x15A2, offset: 0x62D99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F90, symBinAddr: 0x12400, symSize: 0x20 } - - { offsetInCU: 0x15D3, offset: 0x62DCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FB0, symBinAddr: 0x12420, symSize: 0x10 } - - { offsetInCU: 0x15EF, offset: 0x62DE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FC0, symBinAddr: 0x12430, symSize: 0x10 } - - { offsetInCU: 0x160B, offset: 0x62E02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x18760, symSize: 0x190 } - - { offsetInCU: 0x1651, offset: 0x62E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1220, symBinAddr: 0x11690, symSize: 0x210 } - - { offsetInCU: 0x16A6, offset: 0x62E9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2010, symBinAddr: 0x12480, symSize: 0x50 } - - { offsetInCU: 0x16DD, offset: 0x62ED4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2060, symBinAddr: 0x124D0, symSize: 0x50 } - - { offsetInCU: 0x1700, offset: 0x62EF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x84D0, symBinAddr: 0x188F0, symSize: 0x3D0 } - - { offsetInCU: 0x1750, offset: 0x62F47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x1430, symBinAddr: 0x118A0, symSize: 0x20 } - - { offsetInCU: 0x1779, offset: 0x62F70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2130, symBinAddr: 0x125A0, symSize: 0x10 } - - { offsetInCU: 0x17A4, offset: 0x62F9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x125B0, symSize: 0x20 } - - { offsetInCU: 0x17D5, offset: 0x62FCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2160, symBinAddr: 0x125D0, symSize: 0x10 } - - { offsetInCU: 0x17F1, offset: 0x62FE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2170, symBinAddr: 0x125E0, symSize: 0x10 } - - { offsetInCU: 0x180D, offset: 0x63004, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8900, symBinAddr: 0x18D20, symSize: 0xE0 } - - { offsetInCU: 0x1853, offset: 0x6304A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1450, symBinAddr: 0x118C0, symSize: 0x130 } - - { offsetInCU: 0x18A8, offset: 0x6309F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x21C0, symBinAddr: 0x12630, symSize: 0x40 } - - { offsetInCU: 0x18DF, offset: 0x630D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2200, symBinAddr: 0x12670, symSize: 0x40 } - - { offsetInCU: 0x1902, offset: 0x630F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x89E0, symBinAddr: 0x18E00, symSize: 0x1C0 } - - { offsetInCU: 0x193F, offset: 0x63136, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3ED0, symBinAddr: 0x14300, symSize: 0x30 } - - { offsetInCU: 0x1953, offset: 0x6314A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3F00, symBinAddr: 0x14330, symSize: 0x30 } - - { offsetInCU: 0x1967, offset: 0x6315E, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F30, symBinAddr: 0x14360, symSize: 0x30 } - - { offsetInCU: 0x197B, offset: 0x63172, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3F60, symBinAddr: 0x14390, symSize: 0x30 } - - { offsetInCU: 0x198F, offset: 0x63186, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3F90, symBinAddr: 0x143C0, symSize: 0x30 } - - { offsetInCU: 0x19A3, offset: 0x6319A, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FC0, symBinAddr: 0x143F0, symSize: 0x10 } - - { offsetInCU: 0x19B7, offset: 0x631AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3FE0, symBinAddr: 0x14400, symSize: 0x50 } - - { offsetInCU: 0x19CB, offset: 0x631C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4030, symBinAddr: 0x14450, symSize: 0xA0 } - - { offsetInCU: 0x19DF, offset: 0x631D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x40D0, symBinAddr: 0x144F0, symSize: 0x10 } - - { offsetInCU: 0x19F3, offset: 0x631EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x40E0, symBinAddr: 0x14500, symSize: 0x10 } - - { offsetInCU: 0x1A07, offset: 0x631FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x40F0, symBinAddr: 0x14510, symSize: 0x10 } - - { offsetInCU: 0x1A1B, offset: 0x63212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4100, symBinAddr: 0x14520, symSize: 0x10 } - - { offsetInCU: 0x1A2F, offset: 0x63226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x4110, symBinAddr: 0x14530, symSize: 0x30 } - - { offsetInCU: 0x1A43, offset: 0x6323A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x4E60, symBinAddr: 0x15280, symSize: 0x10 } - - { offsetInCU: 0x1A57, offset: 0x6324E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x4E70, symBinAddr: 0x15290, symSize: 0x10 } - - { offsetInCU: 0x1A6B, offset: 0x63262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4E80, symBinAddr: 0x152A0, symSize: 0x30 } - - { offsetInCU: 0x1A7F, offset: 0x63276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4EB0, symBinAddr: 0x152D0, symSize: 0x10 } - - { offsetInCU: 0x1A93, offset: 0x6328A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4EC0, symBinAddr: 0x152E0, symSize: 0x30 } - - { offsetInCU: 0x1AA7, offset: 0x6329E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4EF0, symBinAddr: 0x15310, symSize: 0x10 } - - { offsetInCU: 0x1ABB, offset: 0x632B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4F00, symBinAddr: 0x15320, symSize: 0x30 } - - { offsetInCU: 0x1ACF, offset: 0x632C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x4F30, symBinAddr: 0x15350, symSize: 0x30 } - - { offsetInCU: 0x1AE3, offset: 0x632DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4F60, symBinAddr: 0x15380, symSize: 0x30 } - - { offsetInCU: 0x1AF7, offset: 0x632EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4F90, symBinAddr: 0x153B0, symSize: 0x30 } - - { offsetInCU: 0x1B0B, offset: 0x63302, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4FC0, symBinAddr: 0x153E0, symSize: 0x40 } - - { offsetInCU: 0x1B1F, offset: 0x63316, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x5000, symBinAddr: 0x15420, symSize: 0x30 } - - { offsetInCU: 0x1B33, offset: 0x6332A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x5030, symBinAddr: 0x15450, symSize: 0x30 } - - { offsetInCU: 0x1B47, offset: 0x6333E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x5060, symBinAddr: 0x15480, symSize: 0x30 } - - { offsetInCU: 0x1B5B, offset: 0x63352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x5090, symBinAddr: 0x154B0, symSize: 0x30 } - - { offsetInCU: 0x1B6F, offset: 0x63366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x50C0, symBinAddr: 0x154E0, symSize: 0x30 } - - { offsetInCU: 0x1B83, offset: 0x6337A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x50F0, symBinAddr: 0x15510, symSize: 0x30 } - - { offsetInCU: 0x1B97, offset: 0x6338E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x5120, symBinAddr: 0x15540, symSize: 0x30 } - - { offsetInCU: 0x1BAB, offset: 0x633A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x5150, symBinAddr: 0x15570, symSize: 0x30 } - - { offsetInCU: 0x1BBF, offset: 0x633B6, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x5180, symBinAddr: 0x155A0, symSize: 0x10 } - - { offsetInCU: 0x1BD3, offset: 0x633CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x5190, symBinAddr: 0x155B0, symSize: 0x80 } - - { offsetInCU: 0x1BE7, offset: 0x633DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x5210, symBinAddr: 0x15630, symSize: 0xD0 } - - { offsetInCU: 0x1BFB, offset: 0x633F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x52E0, symBinAddr: 0x15700, symSize: 0x10 } - - { offsetInCU: 0x1C0F, offset: 0x63406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x52F0, symBinAddr: 0x15710, symSize: 0x10 } - - { offsetInCU: 0x1C23, offset: 0x6341A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x5300, symBinAddr: 0x15720, symSize: 0x10 } - - { offsetInCU: 0x1C37, offset: 0x6342E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x5310, symBinAddr: 0x15730, symSize: 0x10 } - - { offsetInCU: 0x1C4B, offset: 0x63442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x5320, symBinAddr: 0x15740, symSize: 0x30 } - - { offsetInCU: 0x1C5F, offset: 0x63456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x5350, symBinAddr: 0x15770, symSize: 0x40 } - - { offsetInCU: 0x1C73, offset: 0x6346A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x5390, symBinAddr: 0x157B0, symSize: 0x70 } - - { offsetInCU: 0x1C87, offset: 0x6347E, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5400, symBinAddr: 0x15820, symSize: 0x20 } - - { offsetInCU: 0x1C9B, offset: 0x63492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x5420, symBinAddr: 0x15840, symSize: 0x50 } - - { offsetInCU: 0x1CAF, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x5470, symBinAddr: 0x15890, symSize: 0x40 } - - { offsetInCU: 0x1CC3, offset: 0x634BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x54B0, symBinAddr: 0x158D0, symSize: 0x40 } - - { offsetInCU: 0x1CD7, offset: 0x634CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x54F0, symBinAddr: 0x15910, symSize: 0x10 } - - { offsetInCU: 0x1CEB, offset: 0x634E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x5500, symBinAddr: 0x15920, symSize: 0x40 } - - { offsetInCU: 0x1CFF, offset: 0x634F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5540, symBinAddr: 0x15960, symSize: 0x80 } - - { offsetInCU: 0x1D13, offset: 0x6350A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x55C0, symBinAddr: 0x159E0, symSize: 0xB0 } - - { offsetInCU: 0x1D27, offset: 0x6351E, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5670, symBinAddr: 0x15A90, symSize: 0x30 } - - { offsetInCU: 0x1D3B, offset: 0x63532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x56A0, symBinAddr: 0x15AC0, symSize: 0x80 } - - { offsetInCU: 0x1D4F, offset: 0x63546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5720, symBinAddr: 0x15B40, symSize: 0x40 } - - { offsetInCU: 0x1D63, offset: 0x6355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5760, symBinAddr: 0x15B80, symSize: 0x50 } - - { offsetInCU: 0x1D77, offset: 0x6356E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x57B0, symBinAddr: 0x15BD0, symSize: 0x10 } - - { offsetInCU: 0x1D8B, offset: 0x63582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x57C0, symBinAddr: 0x15BE0, symSize: 0x30 } - - { offsetInCU: 0x1D9F, offset: 0x63596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x57F0, symBinAddr: 0x15C10, symSize: 0x40 } - - { offsetInCU: 0x1DB3, offset: 0x635AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5830, symBinAddr: 0x15C50, symSize: 0x60 } - - { offsetInCU: 0x1DC7, offset: 0x635BE, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5890, symBinAddr: 0x15CB0, symSize: 0x20 } - - { offsetInCU: 0x1DDB, offset: 0x635D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x58B0, symBinAddr: 0x15CD0, symSize: 0x50 } - - { offsetInCU: 0x1DEF, offset: 0x635E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5900, symBinAddr: 0x15D20, symSize: 0x40 } - - { offsetInCU: 0x1E03, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x5940, symBinAddr: 0x15D60, symSize: 0x50 } - - { offsetInCU: 0x1E17, offset: 0x6360E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5990, symBinAddr: 0x15DB0, symSize: 0x10 } - - { offsetInCU: 0x1E2B, offset: 0x63622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x59A0, symBinAddr: 0x15DC0, symSize: 0x50 } - - { offsetInCU: 0x1E3F, offset: 0x63636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x59F0, symBinAddr: 0x15E10, symSize: 0xE0 } - - { offsetInCU: 0x1E53, offset: 0x6364A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5AD0, symBinAddr: 0x15EF0, symSize: 0x110 } - - { offsetInCU: 0x1E67, offset: 0x6365E, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5BE0, symBinAddr: 0x16000, symSize: 0x50 } - - { offsetInCU: 0x1E7B, offset: 0x63672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5C30, symBinAddr: 0x16050, symSize: 0xD0 } - - { offsetInCU: 0x1E8F, offset: 0x63686, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x5D00, symBinAddr: 0x16120, symSize: 0x40 } - - { offsetInCU: 0x1EA3, offset: 0x6369A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x5D40, symBinAddr: 0x16160, symSize: 0x60 } - - { offsetInCU: 0x1EB7, offset: 0x636AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x5DA0, symBinAddr: 0x161C0, symSize: 0x10 } - - { offsetInCU: 0x1ECB, offset: 0x636C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x5DB0, symBinAddr: 0x161D0, symSize: 0x60 } - - { offsetInCU: 0x1EDF, offset: 0x636D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5E10, symBinAddr: 0x16230, symSize: 0x110 } - - { offsetInCU: 0x1EF3, offset: 0x636EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x5F20, symBinAddr: 0x16340, symSize: 0x160 } - - { offsetInCU: 0x1F07, offset: 0x636FE, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x6080, symBinAddr: 0x164A0, symSize: 0x10 } - - { offsetInCU: 0x1F1B, offset: 0x63712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x6090, symBinAddr: 0x164B0, symSize: 0x100 } - - { offsetInCU: 0x1F2F, offset: 0x63726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x6190, symBinAddr: 0x165B0, symSize: 0x40 } - - { offsetInCU: 0x1F43, offset: 0x6373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x61D0, symBinAddr: 0x165F0, symSize: 0x70 } - - { offsetInCU: 0x1F57, offset: 0x6374E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x6240, symBinAddr: 0x16660, symSize: 0x10 } - - { offsetInCU: 0x1F6B, offset: 0x63762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x6250, symBinAddr: 0x16670, symSize: 0x10 } - - { offsetInCU: 0x1F7F, offset: 0x63776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x6260, symBinAddr: 0x16680, symSize: 0x30 } - - { offsetInCU: 0x1F93, offset: 0x6378A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x6290, symBinAddr: 0x166B0, symSize: 0x10 } - - { offsetInCU: 0x1FA7, offset: 0x6379E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x62A0, symBinAddr: 0x166C0, symSize: 0x30 } - - { offsetInCU: 0x1FBB, offset: 0x637B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x62D0, symBinAddr: 0x166F0, symSize: 0x10 } - - { offsetInCU: 0x1FCF, offset: 0x637C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x62E0, symBinAddr: 0x16700, symSize: 0x30 } - - { offsetInCU: 0x1FE3, offset: 0x637DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7260, symBinAddr: 0x17680, symSize: 0x30 } - - { offsetInCU: 0x1FF7, offset: 0x637EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x7290, symBinAddr: 0x176B0, symSize: 0x30 } - - { offsetInCU: 0x200B, offset: 0x63802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x72C0, symBinAddr: 0x176E0, symSize: 0x30 } - - { offsetInCU: 0x201F, offset: 0x63816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7B60, symBinAddr: 0x17F80, symSize: 0x30 } - - { offsetInCU: 0x2033, offset: 0x6382A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7DB0, symBinAddr: 0x181D0, symSize: 0x30 } - - { offsetInCU: 0x2047, offset: 0x6383E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x88A0, symBinAddr: 0x18CC0, symSize: 0x30 } - - { offsetInCU: 0x205B, offset: 0x63852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x88D0, symBinAddr: 0x18CF0, symSize: 0x30 } - - { offsetInCU: 0x206F, offset: 0x63866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8BA0, symBinAddr: 0x18FC0, symSize: 0x30 } - - { offsetInCU: 0x2083, offset: 0x6387A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8BD0, symBinAddr: 0x18FF0, symSize: 0x30 } - - { offsetInCU: 0x2097, offset: 0x6388E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x8C00, symBinAddr: 0x19020, symSize: 0x30 } - - { offsetInCU: 0x20AB, offset: 0x638A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x8C90, symBinAddr: 0x190B0, symSize: 0x30 } - - { offsetInCU: 0x20BF, offset: 0x638B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8CC0, symBinAddr: 0x190E0, symSize: 0x80 } - - { offsetInCU: 0x20D3, offset: 0x638CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8D40, symBinAddr: 0x19160, symSize: 0xD0 } - - { offsetInCU: 0x20E7, offset: 0x638DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8E10, symBinAddr: 0x19230, symSize: 0x10 } - - { offsetInCU: 0x20FB, offset: 0x638F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8E20, symBinAddr: 0x19240, symSize: 0x10 } - - { offsetInCU: 0x210F, offset: 0x63906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8E30, symBinAddr: 0x19250, symSize: 0x80 } - - { offsetInCU: 0x2123, offset: 0x6391A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8EB0, symBinAddr: 0x192D0, symSize: 0xD0 } - - { offsetInCU: 0x2137, offset: 0x6392E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8F80, symBinAddr: 0x193A0, symSize: 0x10 } - - { offsetInCU: 0x214B, offset: 0x63942, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8F90, symBinAddr: 0x193B0, symSize: 0x10 } - - { offsetInCU: 0x215F, offset: 0x63956, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8FA0, symBinAddr: 0x193C0, symSize: 0x80 } - - { offsetInCU: 0x2173, offset: 0x6396A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9020, symBinAddr: 0x19440, symSize: 0xD0 } - - { offsetInCU: 0x2187, offset: 0x6397E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x90F0, symBinAddr: 0x19510, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x63992, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9100, symBinAddr: 0x19520, symSize: 0x10 } - - { offsetInCU: 0x21AF, offset: 0x639A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x9110, symBinAddr: 0x19530, symSize: 0x10 } - - { offsetInCU: 0x21C3, offset: 0x639BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9120, symBinAddr: 0x19540, symSize: 0x10 } - - { offsetInCU: 0x21D7, offset: 0x639CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9130, symBinAddr: 0x19550, symSize: 0x80 } - - { offsetInCU: 0x21EB, offset: 0x639E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x91B0, symBinAddr: 0x195D0, symSize: 0xD0 } - - { offsetInCU: 0x21FF, offset: 0x639F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9280, symBinAddr: 0x196A0, symSize: 0x10 } - - { offsetInCU: 0x2213, offset: 0x63A0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9290, symBinAddr: 0x196B0, symSize: 0x10 } - - { offsetInCU: 0x2227, offset: 0x63A1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x92C0, symBinAddr: 0x196E0, symSize: 0x10 } - - { offsetInCU: 0x223B, offset: 0x63A32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x92D0, symBinAddr: 0x196F0, symSize: 0x10 } - - { offsetInCU: 0x224F, offset: 0x63A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x92E0, symBinAddr: 0x19700, symSize: 0x40 } - - { offsetInCU: 0x2263, offset: 0x63A5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x9320, symBinAddr: 0x19740, symSize: 0x80 } - - { offsetInCU: 0x2277, offset: 0x63A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x93A0, symBinAddr: 0x197C0, symSize: 0xC0 } - - { offsetInCU: 0x228B, offset: 0x63A82, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9460, symBinAddr: 0x19880, symSize: 0x40 } - - { offsetInCU: 0x229F, offset: 0x63A96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x94A0, symBinAddr: 0x198C0, symSize: 0x90 } - - { offsetInCU: 0x22B3, offset: 0x63AAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x9530, symBinAddr: 0x19950, symSize: 0x40 } - - { offsetInCU: 0x22C7, offset: 0x63ABE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x9570, symBinAddr: 0x19990, symSize: 0x50 } - - { offsetInCU: 0x22DB, offset: 0x63AD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x95C0, symBinAddr: 0x199E0, symSize: 0x10 } - - { offsetInCU: 0x22EF, offset: 0x63AE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x95D0, symBinAddr: 0x199F0, symSize: 0x40 } - - { offsetInCU: 0x2303, offset: 0x63AFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x9610, symBinAddr: 0x19A30, symSize: 0x80 } - - { offsetInCU: 0x2317, offset: 0x63B0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x9690, symBinAddr: 0x19AB0, symSize: 0xA0 } - - { offsetInCU: 0x232B, offset: 0x63B22, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9730, symBinAddr: 0x19B50, symSize: 0x30 } - - { offsetInCU: 0x233F, offset: 0x63B36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x9760, symBinAddr: 0x19B80, symSize: 0x80 } - - { offsetInCU: 0x2353, offset: 0x63B4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x97E0, symBinAddr: 0x19C00, symSize: 0x40 } - - { offsetInCU: 0x2367, offset: 0x63B5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9820, symBinAddr: 0x19C40, symSize: 0x50 } - - { offsetInCU: 0x237B, offset: 0x63B72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x9870, symBinAddr: 0x19C90, symSize: 0x10 } - - { offsetInCU: 0x238F, offset: 0x63B86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x9880, symBinAddr: 0x19CA0, symSize: 0x40 } - - { offsetInCU: 0x23A3, offset: 0x63B9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x98C0, symBinAddr: 0x19CE0, symSize: 0x80 } - - { offsetInCU: 0x23B7, offset: 0x63BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9940, symBinAddr: 0x19D60, symSize: 0xB0 } - - { offsetInCU: 0x23CB, offset: 0x63BC2, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x99F0, symBinAddr: 0x19E10, symSize: 0x30 } - - { offsetInCU: 0x23DF, offset: 0x63BD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x9A20, symBinAddr: 0x19E40, symSize: 0x80 } - - { offsetInCU: 0x23F3, offset: 0x63BEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9AA0, symBinAddr: 0x19EC0, symSize: 0x40 } - - { offsetInCU: 0x2407, offset: 0x63BFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x9AE0, symBinAddr: 0x19F00, symSize: 0x50 } - - { offsetInCU: 0x241B, offset: 0x63C12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9B30, symBinAddr: 0x19F50, symSize: 0x10 } - - { offsetInCU: 0x242F, offset: 0x63C26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B40, symBinAddr: 0x19F60, symSize: 0x10 } - - { offsetInCU: 0x2443, offset: 0x63C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9B50, symBinAddr: 0x19F70, symSize: 0x30 } - - { offsetInCU: 0x2457, offset: 0x63C4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9B80, symBinAddr: 0x19FA0, symSize: 0x10 } - - { offsetInCU: 0x246B, offset: 0x63C62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9B90, symBinAddr: 0x19FB0, symSize: 0x30 } - - { offsetInCU: 0x247F, offset: 0x63C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9BC0, symBinAddr: 0x19FE0, symSize: 0x10 } - - { offsetInCU: 0x2493, offset: 0x63C8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9BD0, symBinAddr: 0x19FF0, symSize: 0x30 } - - { offsetInCU: 0x24A7, offset: 0x63C9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9C00, symBinAddr: 0x1A020, symSize: 0x10 } - - { offsetInCU: 0x24BB, offset: 0x63CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9C10, symBinAddr: 0x1A030, symSize: 0x30 } - - { offsetInCU: 0x24CF, offset: 0x63CC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9C40, symBinAddr: 0x1A060, symSize: 0x10 } - - { offsetInCU: 0x24E3, offset: 0x63CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9C50, symBinAddr: 0x1A070, symSize: 0x30 } - - { offsetInCU: 0x24F7, offset: 0x63CEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9C80, symBinAddr: 0x1A0A0, symSize: 0x10 } - - { offsetInCU: 0x250B, offset: 0x63D02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9C90, symBinAddr: 0x1A0B0, symSize: 0x30 } - - { offsetInCU: 0x251F, offset: 0x63D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9CC0, symBinAddr: 0x1A0E0, symSize: 0x10 } - - { offsetInCU: 0x2533, offset: 0x63D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9CD0, symBinAddr: 0x1A0F0, symSize: 0x30 } - - { offsetInCU: 0x2547, offset: 0x63D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D00, symBinAddr: 0x1A120, symSize: 0x10 } - - { offsetInCU: 0x255B, offset: 0x63D52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D10, symBinAddr: 0x1A130, symSize: 0x30 } - - { offsetInCU: 0x256F, offset: 0x63D66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9D40, symBinAddr: 0x1A160, symSize: 0x10 } - - { offsetInCU: 0x2583, offset: 0x63D7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9D50, symBinAddr: 0x1A170, symSize: 0x30 } - - { offsetInCU: 0x2597, offset: 0x63D8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9D80, symBinAddr: 0x1A1A0, symSize: 0x10 } - - { offsetInCU: 0x25AB, offset: 0x63DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9D90, symBinAddr: 0x1A1B0, symSize: 0x30 } - - { offsetInCU: 0x25BF, offset: 0x63DB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9DC0, symBinAddr: 0x1A1E0, symSize: 0x10 } - - { offsetInCU: 0x25D3, offset: 0x63DCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x1A1F0, symSize: 0x30 } - - { offsetInCU: 0x25E7, offset: 0x63DDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E00, symBinAddr: 0x1A220, symSize: 0x10 } - - { offsetInCU: 0x25FB, offset: 0x63DF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E10, symBinAddr: 0x1A230, symSize: 0x30 } - - { offsetInCU: 0x260F, offset: 0x63E06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9E40, symBinAddr: 0x1A260, symSize: 0x10 } - - { offsetInCU: 0x2623, offset: 0x63E1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9E50, symBinAddr: 0x1A270, symSize: 0x30 } - - { offsetInCU: 0x2637, offset: 0x63E2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9E80, symBinAddr: 0x1A2A0, symSize: 0x10 } - - { offsetInCU: 0x264B, offset: 0x63E42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9E90, symBinAddr: 0x1A2B0, symSize: 0x30 } - - { offsetInCU: 0x265F, offset: 0x63E56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9EC0, symBinAddr: 0x1A2E0, symSize: 0x10 } - - { offsetInCU: 0x2673, offset: 0x63E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9ED0, symBinAddr: 0x1A2F0, symSize: 0x30 } - - { offsetInCU: 0x2687, offset: 0x63E7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9F00, symBinAddr: 0x1A320, symSize: 0x30 } - - { offsetInCU: 0x269B, offset: 0x63E92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9F30, symBinAddr: 0x1A350, symSize: 0x30 } - - { offsetInCU: 0x26AF, offset: 0x63EA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9F60, symBinAddr: 0x1A380, symSize: 0x30 } - - { offsetInCU: 0x26C3, offset: 0x63EBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9F90, symBinAddr: 0x1A3B0, symSize: 0x80 } - - { offsetInCU: 0x26D7, offset: 0x63ECE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA010, symBinAddr: 0x1A430, symSize: 0xD0 } - - { offsetInCU: 0x26EB, offset: 0x63EE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA0E0, symBinAddr: 0x1A500, symSize: 0x10 } - - { offsetInCU: 0x26FF, offset: 0x63EF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA0F0, symBinAddr: 0x1A510, symSize: 0x10 } - - { offsetInCU: 0x2713, offset: 0x63F0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA270, symBinAddr: 0x1A690, symSize: 0x10 } - - { offsetInCU: 0x2727, offset: 0x63F1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA280, symBinAddr: 0x1A6A0, symSize: 0x10 } - - { offsetInCU: 0x273B, offset: 0x63F32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0xA290, symBinAddr: 0x1A6B0, symSize: 0x80 } - - { offsetInCU: 0x274F, offset: 0x63F46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA310, symBinAddr: 0x1A730, symSize: 0xD0 } - - { offsetInCU: 0x2763, offset: 0x63F5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA3E0, symBinAddr: 0x1A800, symSize: 0x10 } - - { offsetInCU: 0x2777, offset: 0x63F6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA3F0, symBinAddr: 0x1A810, symSize: 0x10 } - - { offsetInCU: 0x278B, offset: 0x63F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA400, symBinAddr: 0x1A820, symSize: 0x10 } - - { offsetInCU: 0x279F, offset: 0x63F96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA410, symBinAddr: 0x1A830, symSize: 0x30 } - - { offsetInCU: 0x27B3, offset: 0x63FAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA440, symBinAddr: 0x1A860, symSize: 0x10 } - - { offsetInCU: 0x27C7, offset: 0x63FBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA450, symBinAddr: 0x1A870, symSize: 0x30 } - - { offsetInCU: 0x27DB, offset: 0x63FD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA480, symBinAddr: 0x1A8A0, symSize: 0x10 } - - { offsetInCU: 0x27EF, offset: 0x63FE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA490, symBinAddr: 0x1A8B0, symSize: 0x30 } - - { offsetInCU: 0x2803, offset: 0x63FFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA4C0, symBinAddr: 0x1A8E0, symSize: 0x10 } - - { offsetInCU: 0x2817, offset: 0x6400E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA4D0, symBinAddr: 0x1A8F0, symSize: 0x30 } - - { offsetInCU: 0x282B, offset: 0x64022, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA500, symBinAddr: 0x1A920, symSize: 0x10 } - - { offsetInCU: 0x283F, offset: 0x64036, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA510, symBinAddr: 0x1A930, symSize: 0x30 } - - { offsetInCU: 0x2853, offset: 0x6404A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA540, symBinAddr: 0x1A960, symSize: 0x10 } - - { offsetInCU: 0x2867, offset: 0x6405E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA550, symBinAddr: 0x1A970, symSize: 0x30 } - - { offsetInCU: 0x287B, offset: 0x64072, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA580, symBinAddr: 0x1A9A0, symSize: 0x10 } - - { offsetInCU: 0x288F, offset: 0x64086, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA590, symBinAddr: 0x1A9B0, symSize: 0x30 } - - { offsetInCU: 0x28A3, offset: 0x6409A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA5C0, symBinAddr: 0x1A9E0, symSize: 0x10 } - - { offsetInCU: 0x28B7, offset: 0x640AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA5D0, symBinAddr: 0x1A9F0, symSize: 0x30 } - - { offsetInCU: 0x28CB, offset: 0x640C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA600, symBinAddr: 0x1AA20, symSize: 0x10 } - - { offsetInCU: 0x28DF, offset: 0x640D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA610, symBinAddr: 0x1AA30, symSize: 0x30 } - - { offsetInCU: 0x292F, offset: 0x64126, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x140, symBinAddr: 0x105B0, symSize: 0x20 } - - { offsetInCU: 0x294B, offset: 0x64142, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x160, symBinAddr: 0x105D0, symSize: 0x20 } - - { offsetInCU: 0x2994, offset: 0x6418B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1680, symBinAddr: 0x11AF0, symSize: 0x30 } - - { offsetInCU: 0x2A37, offset: 0x6422E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x11B70, symSize: 0x20 } - - { offsetInCU: 0x2A53, offset: 0x6424A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x11B90, symSize: 0x20 } - - { offsetInCU: 0x2A75, offset: 0x6426C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x11CA0, symSize: 0x20 } - - { offsetInCU: 0x2A91, offset: 0x64288, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x11CC0, symSize: 0x20 } - - { offsetInCU: 0x2AB3, offset: 0x642AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1950, symBinAddr: 0x11DC0, symSize: 0x20 } - - { offsetInCU: 0x2ACF, offset: 0x642C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1970, symBinAddr: 0x11DE0, symSize: 0x20 } - - { offsetInCU: 0x2AF1, offset: 0x642E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x11ED0, symSize: 0x20 } - - { offsetInCU: 0x2B0D, offset: 0x64304, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x11EF0, symSize: 0x20 } - - { offsetInCU: 0x2B2F, offset: 0x64326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x12020, symSize: 0x20 } - - { offsetInCU: 0x2B4B, offset: 0x64342, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1BD0, symBinAddr: 0x12040, symSize: 0x20 } - - { offsetInCU: 0x2B94, offset: 0x6438B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D30, symBinAddr: 0x121A0, symSize: 0x40 } - - { offsetInCU: 0x2C37, offset: 0x6442E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DC0, symBinAddr: 0x12230, symSize: 0x20 } - - { offsetInCU: 0x2C53, offset: 0x6444A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DE0, symBinAddr: 0x12250, symSize: 0x20 } - - { offsetInCU: 0x2C75, offset: 0x6446C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EA0, symBinAddr: 0x12310, symSize: 0x20 } - - { offsetInCU: 0x2C91, offset: 0x64488, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1EC0, symBinAddr: 0x12330, symSize: 0x20 } - - { offsetInCU: 0x2CB3, offset: 0x644AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x12440, symSize: 0x20 } - - { offsetInCU: 0x2CCF, offset: 0x644C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x12460, symSize: 0x20 } - - { offsetInCU: 0x2CF1, offset: 0x644E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2180, symBinAddr: 0x125F0, symSize: 0x20 } - - { offsetInCU: 0x2D0D, offset: 0x64504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x21A0, symBinAddr: 0x12610, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x646AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AD80, symSize: 0xA0 } - - { offsetInCU: 0xA5, offset: 0x6472D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1AD80, symSize: 0xA0 } - - { offsetInCU: 0xFE, offset: 0x64786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0xA0, symBinAddr: 0x1AE20, symSize: 0x40 } - - { offsetInCU: 0x11C, offset: 0x647A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xE0, symBinAddr: 0x1AE60, symSize: 0x50 } - - { offsetInCU: 0x156, offset: 0x647DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0x130, symBinAddr: 0x1AEB0, symSize: 0x10 } - - { offsetInCU: 0x174, offset: 0x647FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x140, symBinAddr: 0x1AEC0, symSize: 0x10 } - - { offsetInCU: 0x19F, offset: 0x64827, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x150, symBinAddr: 0x1AED0, symSize: 0x20 } - - { offsetInCU: 0x1BD, offset: 0x64845, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x170, symBinAddr: 0x1AEF0, symSize: 0x20 } - - { offsetInCU: 0x1F7, offset: 0x6487F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x190, symBinAddr: 0x1AF10, symSize: 0x20 } - - { offsetInCU: 0x225, offset: 0x648AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x1B0, symBinAddr: 0x1AF30, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x648D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x1C0, symBinAddr: 0x1AF40, symSize: 0x30 } - - { offsetInCU: 0x26E, offset: 0x648F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1F0, symBinAddr: 0x1AF70, symSize: 0x30 } - - { offsetInCU: 0x2AC, offset: 0x64934, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x220, symBinAddr: 0x1AFA0, symSize: 0x20 } - - { offsetInCU: 0x2DA, offset: 0x64962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x240, symBinAddr: 0x1AFC0, symSize: 0x10 } - - { offsetInCU: 0x305, offset: 0x6498D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x250, symBinAddr: 0x1AFD0, symSize: 0x10 } - - { offsetInCU: 0x323, offset: 0x649AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x260, symBinAddr: 0x1AFE0, symSize: 0x10 } - - { offsetInCU: 0x361, offset: 0x649E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x270, symBinAddr: 0x1AFF0, symSize: 0x20 } - - { offsetInCU: 0x38F, offset: 0x64A17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x290, symBinAddr: 0x1B010, symSize: 0x10 } - - { offsetInCU: 0x3BA, offset: 0x64A42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x2A0, symBinAddr: 0x1B020, symSize: 0x10 } - - { offsetInCU: 0x3D8, offset: 0x64A60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x2B0, symBinAddr: 0x1B030, symSize: 0x10 } - - { offsetInCU: 0x416, offset: 0x64A9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x2C0, symBinAddr: 0x1B040, symSize: 0x20 } - - { offsetInCU: 0x444, offset: 0x64ACC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2E0, symBinAddr: 0x1B060, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x64AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2F0, symBinAddr: 0x1B070, symSize: 0x30 } - - { offsetInCU: 0x48D, offset: 0x64B15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x320, symBinAddr: 0x1B0A0, symSize: 0x30 } - - { offsetInCU: 0x4CB, offset: 0x64B53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x350, symBinAddr: 0x1B0D0, symSize: 0x20 } - - { offsetInCU: 0x4F9, offset: 0x64B81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x370, symBinAddr: 0x1B0F0, symSize: 0x10 } - - { offsetInCU: 0x524, offset: 0x64BAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x380, symBinAddr: 0x1B100, symSize: 0x30 } - - { offsetInCU: 0x542, offset: 0x64BCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x3B0, symBinAddr: 0x1B130, symSize: 0x30 } - - { offsetInCU: 0x580, offset: 0x64C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3E0, symBinAddr: 0x1B160, symSize: 0x20 } - - { offsetInCU: 0x5AE, offset: 0x64C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x400, symBinAddr: 0x1B180, symSize: 0x10 } - - { offsetInCU: 0x5D9, offset: 0x64C61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x410, symBinAddr: 0x1B190, symSize: 0x10 } - - { offsetInCU: 0x5F7, offset: 0x64C7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x420, symBinAddr: 0x1B1A0, symSize: 0x10 } - - { offsetInCU: 0x635, offset: 0x64CBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x430, symBinAddr: 0x1B1B0, symSize: 0x20 } - - { offsetInCU: 0x663, offset: 0x64CEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x450, symBinAddr: 0x1B1D0, symSize: 0x10 } - - { offsetInCU: 0x68E, offset: 0x64D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x460, symBinAddr: 0x1B1E0, symSize: 0x10 } - - { offsetInCU: 0x6AC, offset: 0x64D34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x470, symBinAddr: 0x1B1F0, symSize: 0x10 } - - { offsetInCU: 0x6EA, offset: 0x64D72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x480, symBinAddr: 0x1B200, symSize: 0x20 } - - { offsetInCU: 0x718, offset: 0x64DA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x4A0, symBinAddr: 0x1B220, symSize: 0x10 } - - { offsetInCU: 0x744, offset: 0x64DCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x4B0, symBinAddr: 0x1B230, symSize: 0x30 } - - { offsetInCU: 0x758, offset: 0x64DE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x4E0, symBinAddr: 0x1B260, symSize: 0x40 } - - { offsetInCU: 0x76C, offset: 0x64DF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x520, symBinAddr: 0x1B2A0, symSize: 0xD0 } - - { offsetInCU: 0x780, offset: 0x64E08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x5F0, symBinAddr: 0x1B370, symSize: 0x100 } - - { offsetInCU: 0x794, offset: 0x64E1C, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6F0, symBinAddr: 0x1B470, symSize: 0x50 } - - { offsetInCU: 0x7A8, offset: 0x64E30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x740, symBinAddr: 0x1B4C0, symSize: 0xD0 } - - { offsetInCU: 0x7BC, offset: 0x64E44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x810, symBinAddr: 0x1B590, symSize: 0x40 } - - { offsetInCU: 0x7D0, offset: 0x64E58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x850, symBinAddr: 0x1B5D0, symSize: 0x60 } - - { offsetInCU: 0x7E4, offset: 0x64E6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x8B0, symBinAddr: 0x1B630, symSize: 0xA } - - { offsetInCU: 0x52, offset: 0x6504E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1B640, symSize: 0x350 } - - { offsetInCU: 0x7D, offset: 0x65079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x700, symBinAddr: 0x1BD40, symSize: 0x30 } - - { offsetInCU: 0x99, offset: 0x65095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x990, symBinAddr: 0x1BFD0, symSize: 0x50 } - - { offsetInCU: 0xD1, offset: 0x650CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x350, symBinAddr: 0x1B990, symSize: 0x310 } - - { offsetInCU: 0xFC, offset: 0x650F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x960, symBinAddr: 0x1BFA0, symSize: 0x30 } - - { offsetInCU: 0x118, offset: 0x65114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0x9E0, symBinAddr: 0x1C020, symSize: 0x50 } - - { offsetInCU: 0x144, offset: 0x65140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA30, symBinAddr: 0x1C070, symSize: 0x120 } - - { offsetInCU: 0x174, offset: 0x65170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0xB70, symBinAddr: 0x1C190, symSize: 0x80 } - - { offsetInCU: 0x188, offset: 0x65184, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xBF0, symBinAddr: 0x1C210, symSize: 0xD0 } - - { offsetInCU: 0x19C, offset: 0x65198, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xCC0, symBinAddr: 0x1C2E0, symSize: 0x10 } - - { offsetInCU: 0x1B0, offset: 0x651AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xCD0, symBinAddr: 0x1C2F0, symSize: 0x10 } - - { offsetInCU: 0x1C4, offset: 0x651C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xCE0, symBinAddr: 0x1C300, symSize: 0x80 } - - { offsetInCU: 0x1D8, offset: 0x651D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xD60, symBinAddr: 0x1C380, symSize: 0xD0 } - - { offsetInCU: 0x1EC, offset: 0x651E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xE30, symBinAddr: 0x1C450, symSize: 0x10 } - - { offsetInCU: 0x200, offset: 0x651FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xE40, symBinAddr: 0x1C460, symSize: 0x10 } - - { offsetInCU: 0x214, offset: 0x65210, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xE50, symBinAddr: 0x1C470, symSize: 0x10 } - - { offsetInCU: 0x228, offset: 0x65224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xE60, symBinAddr: 0x1C480, symSize: 0x10 } - - { offsetInCU: 0x23C, offset: 0x65238, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xE70, symBinAddr: 0x1C490, symSize: 0x10 } - - { offsetInCU: 0x250, offset: 0x6524C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xE80, symBinAddr: 0x1C4A0, symSize: 0x30 } - - { offsetInCU: 0x264, offset: 0x65260, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xEB0, symBinAddr: 0x1C4D0, symSize: 0x10 } - - { offsetInCU: 0x278, offset: 0x65274, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xEC0, symBinAddr: 0x1C4E0, symSize: 0x30 } - - { offsetInCU: 0x4F, offset: 0x653D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1C530, symSize: 0x2B0 } - - { offsetInCU: 0x7C, offset: 0x653FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1C7E0, symSize: 0x20 } - - { offsetInCU: 0xA9, offset: 0x6542C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC9printLogs33_05B95674BA567498C742095BB49A0405LL3msgySS_tFTf4nd_n', symObjAddr: 0x6D0, symBinAddr: 0x1CC00, symSize: 0xC0 } - - { offsetInCU: 0x1DB, offset: 0x6555E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1C800, symSize: 0x20 } - - { offsetInCU: 0x230, offset: 0x655B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1C820, symSize: 0x90 } - - { offsetInCU: 0x284, offset: 0x65607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1C8B0, symSize: 0x10 } - - { offsetInCU: 0x2AD, offset: 0x65630, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1C8C0, symSize: 0x10 } - - { offsetInCU: 0x2D6, offset: 0x65659, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1C8D0, symSize: 0x10 } - - { offsetInCU: 0x2FF, offset: 0x65682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1C970, symSize: 0x10 } - - { offsetInCU: 0x351, offset: 0x656D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1C980, symSize: 0x80 } - - { offsetInCU: 0x3A9, offset: 0x6572C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1CA00, symSize: 0x60 } - - { offsetInCU: 0x3EA, offset: 0x6576D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1CA60, symSize: 0x90 } - - { offsetInCU: 0x446, offset: 0x657C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1CAF0, symSize: 0x80 } - - { offsetInCU: 0x494, offset: 0x65817, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1CB70, symSize: 0x70 } - - { offsetInCU: 0x4C6, offset: 0x65849, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1CBE0, symSize: 0x10 } - - { offsetInCU: 0x4E2, offset: 0x65865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6C0, symBinAddr: 0x1CBF0, symSize: 0x10 } - - { offsetInCU: 0x567, offset: 0x658EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x790, symBinAddr: 0x1CCC0, symSize: 0x910 } - - { offsetInCU: 0x678, offset: 0x659FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0x10A0, symBinAddr: 0x1D5D0, symSize: 0x70 } - - { offsetInCU: 0x6CD, offset: 0x65A50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1110, symBinAddr: 0x1D640, symSize: 0x2A0 } - - { offsetInCU: 0x7E5, offset: 0x65B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x13B0, symBinAddr: 0x1D8E0, symSize: 0x60 } - - { offsetInCU: 0x824, offset: 0x65BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0x1410, symBinAddr: 0x1D940, symSize: 0x60 } - - { offsetInCU: 0x863, offset: 0x65BE6, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1470, symBinAddr: 0x1D9A0, symSize: 0x20 } - - { offsetInCU: 0x877, offset: 0x65BFA, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1490, symBinAddr: 0x1D9C0, symSize: 0x20 } - - { offsetInCU: 0x88B, offset: 0x65C0E, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1520, symBinAddr: 0x1D9E0, symSize: 0x40 } - - { offsetInCU: 0x89F, offset: 0x65C22, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x1560, symBinAddr: 0x1DA20, symSize: 0x20 } - - { offsetInCU: 0x8B3, offset: 0x65C36, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1580, symBinAddr: 0x1DA40, symSize: 0x40 } - - { offsetInCU: 0x8C7, offset: 0x65C4A, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x15C0, symBinAddr: 0x1DA80, symSize: 0x30 } - - { offsetInCU: 0x8DB, offset: 0x65C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x15F0, symBinAddr: 0x1DAB0, symSize: 0x260 } - - { offsetInCU: 0x8EF, offset: 0x65C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1850, symBinAddr: 0x1DD10, symSize: 0x30 } - - { offsetInCU: 0x903, offset: 0x65C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x1880, symBinAddr: 0x1DD40, symSize: 0x260 } - - { offsetInCU: 0x917, offset: 0x65C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1AE0, symBinAddr: 0x1DFA0, symSize: 0x25 } - - { offsetInCU: 0x4F, offset: 0x65F41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2A10, symBinAddr: 0x8FAB0, symSize: 0x0 } - - { offsetInCU: 0x69, offset: 0x65F5B, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2A18, symBinAddr: 0x8FAB8, symSize: 0x0 } - - { offsetInCU: 0x77, offset: 0x65F69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1E010, symSize: 0x30 } - - { offsetInCU: 0xB3, offset: 0x65FA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1E040, symSize: 0x40 } - - { offsetInCU: 0xE9, offset: 0x65FDB, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1E080, symSize: 0x30 } - - { offsetInCU: 0x114, offset: 0x66006, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1E0B0, symSize: 0x40 } - - { offsetInCU: 0x164, offset: 0x66056, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1E0F0, symSize: 0x30 } - - { offsetInCU: 0x18F, offset: 0x66081, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x180, symBinAddr: 0x1E150, symSize: 0x10 } - - { offsetInCU: 0x1B8, offset: 0x660AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x190, symBinAddr: 0x1E160, symSize: 0x30 } - - { offsetInCU: 0x1D3, offset: 0x660C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x1C0, symBinAddr: 0x1E190, symSize: 0x10 } - - { offsetInCU: 0x202, offset: 0x660F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x1D0, symBinAddr: 0x1E1A0, symSize: 0x20 } - - { offsetInCU: 0x293, offset: 0x66185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x240, symBinAddr: 0x1E210, symSize: 0x10 } - - { offsetInCU: 0x2F3, offset: 0x661E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x2A0, symBinAddr: 0x1E270, symSize: 0x20 } - - { offsetInCU: 0x36D, offset: 0x6625F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x310, symBinAddr: 0x1E2E0, symSize: 0x10 } - - { offsetInCU: 0x3F7, offset: 0x662E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x450, symBinAddr: 0x1E420, symSize: 0x40 } - - { offsetInCU: 0x414, offset: 0x66306, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x4B0, symBinAddr: 0x1E480, symSize: 0x50 } - - { offsetInCU: 0x43B, offset: 0x6632D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x520, symBinAddr: 0x1E4F0, symSize: 0x30 } - - { offsetInCU: 0x468, offset: 0x6635A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x550, symBinAddr: 0x1E520, symSize: 0x10 } - - { offsetInCU: 0x4DB, offset: 0x663CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x690, symBinAddr: 0x1E660, symSize: 0x40 } - - { offsetInCU: 0x4F8, offset: 0x663EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x6D0, symBinAddr: 0x1E6A0, symSize: 0x50 } - - { offsetInCU: 0x51F, offset: 0x66411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x720, symBinAddr: 0x1E6F0, symSize: 0x30 } - - { offsetInCU: 0x54C, offset: 0x6643E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x750, symBinAddr: 0x1E720, symSize: 0x10 } - - { offsetInCU: 0x577, offset: 0x66469, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x760, symBinAddr: 0x1E730, symSize: 0x30 } - - { offsetInCU: 0x594, offset: 0x66486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x790, symBinAddr: 0x1E760, symSize: 0x30 } - - { offsetInCU: 0x5BB, offset: 0x664AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x7C0, symBinAddr: 0x1E790, symSize: 0x30 } - - { offsetInCU: 0x612, offset: 0x66504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x840, symBinAddr: 0x1E810, symSize: 0x30 } - - { offsetInCU: 0x62F, offset: 0x66521, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x870, symBinAddr: 0x1E840, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x66548, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x8B0, symBinAddr: 0x1E880, symSize: 0x30 } - - { offsetInCU: 0x683, offset: 0x66575, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0x8E0, symBinAddr: 0x1E8B0, symSize: 0x70 } - - { offsetInCU: 0x72E, offset: 0x66620, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0x950, symBinAddr: 0x1E920, symSize: 0xA0 } - - { offsetInCU: 0x7AB, offset: 0x6669D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0x9F0, symBinAddr: 0x1E9C0, symSize: 0xA0 } - - { offsetInCU: 0x80F, offset: 0x66701, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xC80, symBinAddr: 0x1EC50, symSize: 0x60 } - - { offsetInCU: 0x839, offset: 0x6672B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xCE0, symBinAddr: 0x1ECB0, symSize: 0x30 } - - { offsetInCU: 0x85E, offset: 0x66750, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xD10, symBinAddr: 0x1ECE0, symSize: 0x180 } - - { offsetInCU: 0x913, offset: 0x66805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1EE60, symSize: 0x10 } - - { offsetInCU: 0x960, offset: 0x66852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0xEA0, symBinAddr: 0x1EE70, symSize: 0x70 } - - { offsetInCU: 0x9FC, offset: 0x668EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0xF40, symBinAddr: 0x1EF10, symSize: 0x80 } - - { offsetInCU: 0xB12, offset: 0x66A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1900, symBinAddr: 0x1F8D0, symSize: 0x220 } - - { offsetInCU: 0xBA3, offset: 0x66A95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1B70, symBinAddr: 0x1FB40, symSize: 0x170 } - - { offsetInCU: 0xCA8, offset: 0x66B9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x320, symBinAddr: 0x1E2F0, symSize: 0x80 } - - { offsetInCU: 0xCE0, offset: 0x66BD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x3A0, symBinAddr: 0x1E370, symSize: 0xB0 } - - { offsetInCU: 0xD20, offset: 0x66C12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x490, symBinAddr: 0x1E460, symSize: 0x20 } - - { offsetInCU: 0xD34, offset: 0x66C26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x500, symBinAddr: 0x1E4D0, symSize: 0x20 } - - { offsetInCU: 0xD48, offset: 0x66C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x560, symBinAddr: 0x1E530, symSize: 0x80 } - - { offsetInCU: 0xD80, offset: 0x66C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x5E0, symBinAddr: 0x1E5B0, symSize: 0xB0 } - - { offsetInCU: 0xDC0, offset: 0x66CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x7F0, symBinAddr: 0x1E7C0, symSize: 0x50 } - - { offsetInCU: 0xE24, offset: 0x66D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xA90, symBinAddr: 0x1EA60, symSize: 0x1F0 } - - { offsetInCU: 0xE98, offset: 0x66D8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1790, symBinAddr: 0x1F760, symSize: 0x120 } - - { offsetInCU: 0xF78, offset: 0x66E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0xF10, symBinAddr: 0x1EEE0, symSize: 0x30 } - - { offsetInCU: 0x1067, offset: 0x66F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x18E0, symBinAddr: 0x1F8B0, symSize: 0x20 } - - { offsetInCU: 0x10B7, offset: 0x66FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0xFC0, symBinAddr: 0x1EF90, symSize: 0x220 } - - { offsetInCU: 0x128D, offset: 0x6717F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x11E0, symBinAddr: 0x1F1B0, symSize: 0x10 } - - { offsetInCU: 0x12E4, offset: 0x671D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x11F0, symBinAddr: 0x1F1C0, symSize: 0x10 } - - { offsetInCU: 0x1332, offset: 0x67224, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1200, symBinAddr: 0x1F1D0, symSize: 0x10 } - - { offsetInCU: 0x134A, offset: 0x6723C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1210, symBinAddr: 0x1F1E0, symSize: 0xB0 } - - { offsetInCU: 0x13F0, offset: 0x672E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1300, symBinAddr: 0x1F2D0, symSize: 0x10 } - - { offsetInCU: 0x1408, offset: 0x672FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26E0, symBinAddr: 0x20690, symSize: 0x70 } - - { offsetInCU: 0x14E5, offset: 0x673D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x12C0, symBinAddr: 0x1F290, symSize: 0x40 } - - { offsetInCU: 0x1520, offset: 0x67412, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x1330, symBinAddr: 0x1F300, symSize: 0x90 } - - { offsetInCU: 0x1617, offset: 0x67509, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x1480, symBinAddr: 0x1F450, symSize: 0x1D0 } - - { offsetInCU: 0x1CC0, offset: 0x67BB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x1650, symBinAddr: 0x1F620, symSize: 0x130 } - - { offsetInCU: 0x1DBD, offset: 0x67CAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1780, symBinAddr: 0x1F750, symSize: 0x10 } - - { offsetInCU: 0x1DD1, offset: 0x67CC3, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x18B0, symBinAddr: 0x1F880, symSize: 0x30 } - - { offsetInCU: 0x1DE9, offset: 0x67CDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1B20, symBinAddr: 0x1FAF0, symSize: 0x30 } - - { offsetInCU: 0x1DFD, offset: 0x67CEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1B50, symBinAddr: 0x1FB20, symSize: 0x20 } - - { offsetInCU: 0x1E11, offset: 0x67D03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1CE0, symBinAddr: 0x1FCB0, symSize: 0x20 } - - { offsetInCU: 0x1E25, offset: 0x67D17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1D00, symBinAddr: 0x1FCD0, symSize: 0x10 } - - { offsetInCU: 0x1E39, offset: 0x67D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1D10, symBinAddr: 0x1FCE0, symSize: 0x30 } - - { offsetInCU: 0x1E4D, offset: 0x67D3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1D40, symBinAddr: 0x1FD10, symSize: 0x10 } - - { offsetInCU: 0x1E61, offset: 0x67D53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1D50, symBinAddr: 0x1FD20, symSize: 0x30 } - - { offsetInCU: 0x1E75, offset: 0x67D67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwCP', symObjAddr: 0x1E90, symBinAddr: 0x1FE60, symSize: 0x60 } - - { offsetInCU: 0x1E89, offset: 0x67D7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1EF0, symBinAddr: 0x1FEC0, symSize: 0x20 } - - { offsetInCU: 0x1E9D, offset: 0x67D8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1F10, symBinAddr: 0x1FEE0, symSize: 0x20 } - - { offsetInCU: 0x1EB1, offset: 0x67DA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1F30, symBinAddr: 0x1FF00, symSize: 0x20 } - - { offsetInCU: 0x1EC5, offset: 0x67DB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwcp', symObjAddr: 0x1F50, symBinAddr: 0x1FF20, symSize: 0x60 } - - { offsetInCU: 0x1ED9, offset: 0x67DCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x1FB0, symBinAddr: 0x1FF80, symSize: 0x70 } - - { offsetInCU: 0x1EED, offset: 0x67DDF, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2020, symBinAddr: 0x1FFF0, symSize: 0x20 } - - { offsetInCU: 0x1F01, offset: 0x67DF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x2040, symBinAddr: 0x20010, symSize: 0x40 } - - { offsetInCU: 0x1F15, offset: 0x67E07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x2080, symBinAddr: 0x20050, symSize: 0x50 } - - { offsetInCU: 0x1F29, offset: 0x67E1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x20D0, symBinAddr: 0x200A0, symSize: 0x50 } - - { offsetInCU: 0x1F3D, offset: 0x67E2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x2120, symBinAddr: 0x200F0, symSize: 0x10 } - - { offsetInCU: 0x1F51, offset: 0x67E43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2130, symBinAddr: 0x20100, symSize: 0x10 } - - { offsetInCU: 0x1F65, offset: 0x67E57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2140, symBinAddr: 0x20110, symSize: 0x10 } - - { offsetInCU: 0x1F79, offset: 0x67E6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x2150, symBinAddr: 0x20120, symSize: 0x10 } - - { offsetInCU: 0x1F8D, offset: 0x67E7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2340, symBinAddr: 0x202F0, symSize: 0x80 } - - { offsetInCU: 0x1FA1, offset: 0x67E93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23C0, symBinAddr: 0x20370, symSize: 0xD0 } - - { offsetInCU: 0x1FB5, offset: 0x67EA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2490, symBinAddr: 0x20440, symSize: 0x10 } - - { offsetInCU: 0x1FC9, offset: 0x67EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x24A0, symBinAddr: 0x20450, symSize: 0x10 } - - { offsetInCU: 0x1FDD, offset: 0x67ECF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x24B0, symBinAddr: 0x20460, symSize: 0x80 } - - { offsetInCU: 0x1FF1, offset: 0x67EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2530, symBinAddr: 0x204E0, symSize: 0xD0 } - - { offsetInCU: 0x2005, offset: 0x67EF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x2600, symBinAddr: 0x205B0, symSize: 0x10 } - - { offsetInCU: 0x2019, offset: 0x67F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x2610, symBinAddr: 0x205C0, symSize: 0x10 } - - { offsetInCU: 0x202D, offset: 0x67F1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2620, symBinAddr: 0x205D0, symSize: 0x10 } - - { offsetInCU: 0x2041, offset: 0x67F33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2630, symBinAddr: 0x205E0, symSize: 0x10 } - - { offsetInCU: 0x2060, offset: 0x67F52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2670, symBinAddr: 0x20620, symSize: 0x20 } - - { offsetInCU: 0x2089, offset: 0x67F7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x2770, symBinAddr: 0x20720, symSize: 0x10 } - - { offsetInCU: 0x209D, offset: 0x67F8F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2780, symBinAddr: 0x20730, symSize: 0x20 } - - { offsetInCU: 0x20B1, offset: 0x67FA3, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x27A0, symBinAddr: 0x20750, symSize: 0x10 } - - { offsetInCU: 0x20C5, offset: 0x67FB7, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2830, symBinAddr: 0x20760, symSize: 0x30 } - - { offsetInCU: 0x2147, offset: 0x68039, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1DFD0, symSize: 0x10 } - - { offsetInCU: 0x2163, offset: 0x68055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1DFE0, symSize: 0x10 } - - { offsetInCU: 0x217F, offset: 0x68071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1DFF0, symSize: 0x10 } - - { offsetInCU: 0x219B, offset: 0x6808D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1E000, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x6852B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x20920, symSize: 0x30 } - - { offsetInCU: 0x57, offset: 0x6853F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x20950, symSize: 0x80 } - - { offsetInCU: 0x6B, offset: 0x68553, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x209D0, symSize: 0x130 } - - { offsetInCU: 0x86, offset: 0x6856E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x20B00, symSize: 0x30 } - - { offsetInCU: 0xAF, offset: 0x68597, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x20B30, symSize: 0x30 } - - { offsetInCU: 0xC3, offset: 0x685AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x20B60, symSize: 0xC0 } - - { offsetInCU: 0xD7, offset: 0x685BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x20C20, symSize: 0x50 } - - { offsetInCU: 0xEB, offset: 0x685D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x20C70, symSize: 0x50 } - - { offsetInCU: 0xFF, offset: 0x685E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x20CC0, symSize: 0x10 } - - { offsetInCU: 0x113, offset: 0x685FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x20CD0, symSize: 0x30 } - - { offsetInCU: 0x127, offset: 0x6860F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x20D00, symSize: 0x30 } - - { offsetInCU: 0x13B, offset: 0x68623, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x20D30, symSize: 0x60 } - - { offsetInCU: 0x14F, offset: 0x68637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x20D90, symSize: 0x80 } - - { offsetInCU: 0x163, offset: 0x6864B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x20E10, symSize: 0x60 } - - { offsetInCU: 0x177, offset: 0x6865F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x20E70, symSize: 0x50 } - - { offsetInCU: 0x18B, offset: 0x68673, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x20EC0, symSize: 0x50 } - - { offsetInCU: 0x19F, offset: 0x68687, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x20F10, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x686A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x20F20, symSize: 0x100 } - - { offsetInCU: 0x20B, offset: 0x686F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA60, symBinAddr: 0x21380, symSize: 0x10 } - - { offsetInCU: 0x25F, offset: 0x68747, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA70, symBinAddr: 0x21390, symSize: 0x30 } - - { offsetInCU: 0x343, offset: 0x6882B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xAA0, symBinAddr: 0x213C0, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x688AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF0, symBinAddr: 0x21410, symSize: 0x10 } - - { offsetInCU: 0x404, offset: 0x688EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB00, symBinAddr: 0x21420, symSize: 0x20 } - - { offsetInCU: 0x435, offset: 0x6891D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB20, symBinAddr: 0x21440, symSize: 0x10 } - - { offsetInCU: 0x451, offset: 0x68939, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB30, symBinAddr: 0x21450, symSize: 0x10 } - - { offsetInCU: 0x46D, offset: 0x68955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xF00, symBinAddr: 0x21820, symSize: 0x60 } - - { offsetInCU: 0x4B1, offset: 0x68999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvgTf4d_n', symObjAddr: 0xF60, symBinAddr: 0x21880, symSize: 0x20 } - - { offsetInCU: 0x4E5, offset: 0x689CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xB80, symBinAddr: 0x214A0, symSize: 0x40 } - - { offsetInCU: 0x51C, offset: 0x68A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBC0, symBinAddr: 0x214E0, symSize: 0x40 } - - { offsetInCU: 0x53F, offset: 0x68A27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xF80, symBinAddr: 0x218A0, symSize: 0x140 } - - { offsetInCU: 0x58F, offset: 0x68A77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x700, symBinAddr: 0x21020, symSize: 0x20 } - - { offsetInCU: 0x5DC, offset: 0x68AC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC00, symBinAddr: 0x21520, symSize: 0x10 } - - { offsetInCU: 0x63A, offset: 0x68B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC20, symBinAddr: 0x21540, symSize: 0x20 } - - { offsetInCU: 0x6B4, offset: 0x68B9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC50, symBinAddr: 0x21570, symSize: 0x10 } - - { offsetInCU: 0x6DF, offset: 0x68BC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xC60, symBinAddr: 0x21580, symSize: 0x20 } - - { offsetInCU: 0x710, offset: 0x68BF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xC80, symBinAddr: 0x215A0, symSize: 0x10 } - - { offsetInCU: 0x72C, offset: 0x68C14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xC90, symBinAddr: 0x215B0, symSize: 0x10 } - - { offsetInCU: 0x748, offset: 0x68C30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x11F0, symBinAddr: 0x21A70, symSize: 0x110 } - - { offsetInCU: 0x78E, offset: 0x68C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x720, symBinAddr: 0x21040, symSize: 0x1B0 } - - { offsetInCU: 0x7E3, offset: 0x68CCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xCE0, symBinAddr: 0x21600, symSize: 0x40 } - - { offsetInCU: 0x81A, offset: 0x68D02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD20, symBinAddr: 0x21640, symSize: 0x40 } - - { offsetInCU: 0x83D, offset: 0x68D25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1300, symBinAddr: 0x21B80, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x68D75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueSSvg', symObjAddr: 0x8D0, symBinAddr: 0x211F0, symSize: 0x20 } - - { offsetInCU: 0x8B6, offset: 0x68D9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE00, symBinAddr: 0x21720, symSize: 0x10 } - - { offsetInCU: 0x8E1, offset: 0x68DC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xE10, symBinAddr: 0x21730, symSize: 0x20 } - - { offsetInCU: 0x912, offset: 0x68DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xE30, symBinAddr: 0x21750, symSize: 0x10 } - - { offsetInCU: 0x92E, offset: 0x68E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1CC0, symBinAddr: 0x224A0, symSize: 0x120 } - - { offsetInCU: 0x974, offset: 0x68E5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8F0, symBinAddr: 0x21210, symSize: 0x170 } - - { offsetInCU: 0x9C9, offset: 0x68EB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xE80, symBinAddr: 0x217A0, symSize: 0x40 } - - { offsetInCU: 0xA00, offset: 0x68EE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xEC0, symBinAddr: 0x217E0, symSize: 0x40 } - - { offsetInCU: 0xA23, offset: 0x68F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1DE0, symBinAddr: 0x225C0, symSize: 0x2F0 } - - { offsetInCU: 0xA76, offset: 0x68F5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1130, symBinAddr: 0x219E0, symSize: 0x30 } - - { offsetInCU: 0xA8A, offset: 0x68F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x1190, symBinAddr: 0x21A10, symSize: 0x30 } - - { offsetInCU: 0xA9E, offset: 0x68F86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x11C0, symBinAddr: 0x21A40, symSize: 0x30 } - - { offsetInCU: 0xAB2, offset: 0x68F9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1550, symBinAddr: 0x21DD0, symSize: 0x30 } - - { offsetInCU: 0xAC6, offset: 0x68FAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x15C0, symBinAddr: 0x21E00, symSize: 0x30 } - - { offsetInCU: 0xADA, offset: 0x68FC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x1680, symBinAddr: 0x21EC0, symSize: 0x30 } - - { offsetInCU: 0xAEE, offset: 0x68FD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x16F0, symBinAddr: 0x21F10, symSize: 0x10 } - - { offsetInCU: 0xB02, offset: 0x68FEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1700, symBinAddr: 0x21F20, symSize: 0x10 } - - { offsetInCU: 0xB16, offset: 0x68FFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1710, symBinAddr: 0x21F30, symSize: 0x10 } - - { offsetInCU: 0xB2A, offset: 0x69012, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x1720, symBinAddr: 0x21F40, symSize: 0x10 } - - { offsetInCU: 0xB3E, offset: 0x69026, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1740, symBinAddr: 0x21F50, symSize: 0x50 } - - { offsetInCU: 0xB52, offset: 0x6903A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1790, symBinAddr: 0x21FA0, symSize: 0xA0 } - - { offsetInCU: 0xB66, offset: 0x6904E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1830, symBinAddr: 0x22040, symSize: 0x10 } - - { offsetInCU: 0xB7A, offset: 0x69062, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1840, symBinAddr: 0x22050, symSize: 0x10 } - - { offsetInCU: 0xB8E, offset: 0x69076, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1850, symBinAddr: 0x22060, symSize: 0x10 } - - { offsetInCU: 0xBA2, offset: 0x6908A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x1860, symBinAddr: 0x22070, symSize: 0x10 } - - { offsetInCU: 0xBB6, offset: 0x6909E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x1870, symBinAddr: 0x22080, symSize: 0x40 } - - { offsetInCU: 0xBCA, offset: 0x690B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x18B0, symBinAddr: 0x220C0, symSize: 0x80 } - - { offsetInCU: 0xBDE, offset: 0x690C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1930, symBinAddr: 0x22140, symSize: 0xA0 } - - { offsetInCU: 0xBF2, offset: 0x690DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A00, symBinAddr: 0x221E0, symSize: 0x80 } - - { offsetInCU: 0xC06, offset: 0x690EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1A80, symBinAddr: 0x22260, symSize: 0x50 } - - { offsetInCU: 0xC1A, offset: 0x69102, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1AD0, symBinAddr: 0x222B0, symSize: 0x60 } - - { offsetInCU: 0xC2E, offset: 0x69116, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B30, symBinAddr: 0x22310, symSize: 0x10 } - - { offsetInCU: 0xC42, offset: 0x6912A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B40, symBinAddr: 0x22320, symSize: 0x10 } - - { offsetInCU: 0xC56, offset: 0x6913E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B50, symBinAddr: 0x22330, symSize: 0x30 } - - { offsetInCU: 0xC6A, offset: 0x69152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B80, symBinAddr: 0x22360, symSize: 0x10 } - - { offsetInCU: 0xC7E, offset: 0x69166, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x22370, symSize: 0x30 } - - { offsetInCU: 0xC92, offset: 0x6917A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1BC0, symBinAddr: 0x223A0, symSize: 0x10 } - - { offsetInCU: 0xCA6, offset: 0x6918E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1BD0, symBinAddr: 0x223B0, symSize: 0x30 } - - { offsetInCU: 0xCBA, offset: 0x691A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C00, symBinAddr: 0x223E0, symSize: 0x10 } - - { offsetInCU: 0xCCE, offset: 0x691B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C10, symBinAddr: 0x223F0, symSize: 0x30 } - - { offsetInCU: 0xCE2, offset: 0x691CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C40, symBinAddr: 0x22420, symSize: 0x10 } - - { offsetInCU: 0xCF6, offset: 0x691DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C50, symBinAddr: 0x22430, symSize: 0x30 } - - { offsetInCU: 0xD0A, offset: 0x691F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C80, symBinAddr: 0x22460, symSize: 0x10 } - - { offsetInCU: 0xD1E, offset: 0x69206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C90, symBinAddr: 0x22470, symSize: 0x30 } - - { offsetInCU: 0xD32, offset: 0x6921A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x20D0, symBinAddr: 0x228B0, symSize: 0x30 } - - { offsetInCU: 0xD46, offset: 0x6922E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x2270, symBinAddr: 0x22A50, symSize: 0x10 } - - { offsetInCU: 0xD5A, offset: 0x69242, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2280, symBinAddr: 0x22A60, symSize: 0x10 } - - { offsetInCU: 0xD6E, offset: 0x69256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2290, symBinAddr: 0x22A70, symSize: 0x10 } - - { offsetInCU: 0xD82, offset: 0x6926A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x22A0, symBinAddr: 0x22A80, symSize: 0x30 } - - { offsetInCU: 0xD96, offset: 0x6927E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x22D0, symBinAddr: 0x22AB0, symSize: 0x10 } - - { offsetInCU: 0xDAA, offset: 0x69292, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x22E0, symBinAddr: 0x22AC0, symSize: 0x30 } - - { offsetInCU: 0xDBE, offset: 0x692A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2310, symBinAddr: 0x22AF0, symSize: 0x10 } - - { offsetInCU: 0xDD2, offset: 0x692BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2320, symBinAddr: 0x22B00, symSize: 0x30 } - - { offsetInCU: 0xE27, offset: 0x6930F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xAC0, symBinAddr: 0x213E0, symSize: 0x30 } - - { offsetInCU: 0xECA, offset: 0x693B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB40, symBinAddr: 0x21460, symSize: 0x20 } - - { offsetInCU: 0xEE6, offset: 0x693CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x21480, symSize: 0x20 } - - { offsetInCU: 0xF08, offset: 0x693F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xCA0, symBinAddr: 0x215C0, symSize: 0x20 } - - { offsetInCU: 0xF24, offset: 0x6940C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xCC0, symBinAddr: 0x215E0, symSize: 0x20 } - - { offsetInCU: 0xF46, offset: 0x6942E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xE40, symBinAddr: 0x21760, symSize: 0x20 } - - { offsetInCU: 0xF62, offset: 0x6944A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xE60, symBinAddr: 0x21780, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x69597, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22BA0, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x695BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22BA0, symSize: 0x10 } - - { offsetInCU: 0x7A, offset: 0x695EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x810, symBinAddr: 0x232B0, symSize: 0x20 } - - { offsetInCU: 0x110, offset: 0x69680, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x830, symBinAddr: 0x232D0, symSize: 0x40 } - - { offsetInCU: 0x20B, offset: 0x6977B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x870, symBinAddr: 0x23310, symSize: 0x10 } - - { offsetInCU: 0x261, offset: 0x697D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x880, symBinAddr: 0x23320, symSize: 0x40 } - - { offsetInCU: 0x345, offset: 0x698B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8C0, symBinAddr: 0x23360, symSize: 0x20 } - - { offsetInCU: 0x3C4, offset: 0x69934, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x22BB0, symSize: 0x480 } - - { offsetInCU: 0x440, offset: 0x699B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOy', symObjAddr: 0x490, symBinAddr: 0x23030, symSize: 0x20 } - - { offsetInCU: 0x454, offset: 0x699C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVSgWOe', symObjAddr: 0x4E0, symBinAddr: 0x23050, symSize: 0x20 } - - { offsetInCU: 0x474, offset: 0x699E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x5D0, symBinAddr: 0x23070, symSize: 0x30 } - - { offsetInCU: 0x492, offset: 0x69A02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x600, symBinAddr: 0x230A0, symSize: 0x30 } - - { offsetInCU: 0x4D0, offset: 0x69A40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x630, symBinAddr: 0x230D0, symSize: 0x10 } - - { offsetInCU: 0x4EE, offset: 0x69A5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x640, symBinAddr: 0x230E0, symSize: 0x10 } - - { offsetInCU: 0x519, offset: 0x69A89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x650, symBinAddr: 0x230F0, symSize: 0x10 } - - { offsetInCU: 0x537, offset: 0x69AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x660, symBinAddr: 0x23100, symSize: 0x10 } - - { offsetInCU: 0x575, offset: 0x69AE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x670, symBinAddr: 0x23110, symSize: 0x20 } - - { offsetInCU: 0x5A3, offset: 0x69B13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x690, symBinAddr: 0x23130, symSize: 0x10 } - - { offsetInCU: 0x5D6, offset: 0x69B46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x6A0, symBinAddr: 0x23140, symSize: 0x30 } - - { offsetInCU: 0x5F4, offset: 0x69B64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x6D0, symBinAddr: 0x23170, symSize: 0x20 } - - { offsetInCU: 0x61A, offset: 0x69B8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x6F0, symBinAddr: 0x23190, symSize: 0x30 } - - { offsetInCU: 0x638, offset: 0x69BA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x720, symBinAddr: 0x231C0, symSize: 0x30 } - - { offsetInCU: 0x663, offset: 0x69BD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x750, symBinAddr: 0x231F0, symSize: 0x10 } - - { offsetInCU: 0x681, offset: 0x69BF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x760, symBinAddr: 0x23200, symSize: 0x10 } - - { offsetInCU: 0x6BD, offset: 0x69C2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x770, symBinAddr: 0x23210, symSize: 0x10 } - - { offsetInCU: 0x6DB, offset: 0x69C4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x780, symBinAddr: 0x23220, symSize: 0x10 } - - { offsetInCU: 0x706, offset: 0x69C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x790, symBinAddr: 0x23230, symSize: 0x10 } - - { offsetInCU: 0x724, offset: 0x69C94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x7A0, symBinAddr: 0x23240, symSize: 0x10 } - - { offsetInCU: 0x760, offset: 0x69CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x7B0, symBinAddr: 0x23250, symSize: 0x20 } - - { offsetInCU: 0x78E, offset: 0x69CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x7D0, symBinAddr: 0x23270, symSize: 0x10 } - - { offsetInCU: 0x7B9, offset: 0x69D29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x7E0, symBinAddr: 0x23280, symSize: 0x20 } - - { offsetInCU: 0x7E7, offset: 0x69D57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x800, symBinAddr: 0x232A0, symSize: 0x10 } - - { offsetInCU: 0x829, offset: 0x69D99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x920, symBinAddr: 0x233C0, symSize: 0x10 } - - { offsetInCU: 0x83D, offset: 0x69DAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x930, symBinAddr: 0x233D0, symSize: 0x30 } - - { offsetInCU: 0x851, offset: 0x69DC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x960, symBinAddr: 0x23400, symSize: 0x30 } - - { offsetInCU: 0x865, offset: 0x69DD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x990, symBinAddr: 0x23430, symSize: 0x80 } - - { offsetInCU: 0x879, offset: 0x69DE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0xA10, symBinAddr: 0x234B0, symSize: 0x250 } - - { offsetInCU: 0x88D, offset: 0x69DFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0xC60, symBinAddr: 0x23700, symSize: 0x4F0 } - - { offsetInCU: 0x8A8, offset: 0x69E18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0x1150, symBinAddr: 0x23BF0, symSize: 0x30 } - - { offsetInCU: 0x8D1, offset: 0x69E41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0x1180, symBinAddr: 0x23C20, symSize: 0x20 } - - { offsetInCU: 0x8E5, offset: 0x69E55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0x11A0, symBinAddr: 0x23C40, symSize: 0x30 } - - { offsetInCU: 0x8F9, offset: 0x69E69, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0x11D0, symBinAddr: 0x23C70, symSize: 0x10 } - - { offsetInCU: 0x90D, offset: 0x69E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x23C80, symSize: 0x340 } - - { offsetInCU: 0x921, offset: 0x69E91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x1520, symBinAddr: 0x23FC0, symSize: 0x40 } - - { offsetInCU: 0x935, offset: 0x69EA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1560, symBinAddr: 0x24000, symSize: 0x90 } - - { offsetInCU: 0x949, offset: 0x69EB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x15F0, symBinAddr: 0x24090, symSize: 0x10 } - - { offsetInCU: 0x95D, offset: 0x69ECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwCP', symObjAddr: 0x1600, symBinAddr: 0x240A0, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x69EE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1630, symBinAddr: 0x240D0, symSize: 0x10 } - - { offsetInCU: 0x985, offset: 0x69EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwcp', symObjAddr: 0x1640, symBinAddr: 0x240E0, symSize: 0x30 } - - { offsetInCU: 0x999, offset: 0x69F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x1670, symBinAddr: 0x24110, symSize: 0x50 } - - { offsetInCU: 0x9AD, offset: 0x69F1D, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x16C0, symBinAddr: 0x24160, symSize: 0x20 } - - { offsetInCU: 0x9C1, offset: 0x69F31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x16E0, symBinAddr: 0x24180, symSize: 0x40 } - - { offsetInCU: 0x9D5, offset: 0x69F45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1720, symBinAddr: 0x241C0, symSize: 0x40 } - - { offsetInCU: 0x9E9, offset: 0x69F59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1760, symBinAddr: 0x24200, symSize: 0x50 } - - { offsetInCU: 0x9FD, offset: 0x69F6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x17B0, symBinAddr: 0x24250, symSize: 0x10 } - - { offsetInCU: 0xA11, offset: 0x69F81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x17C0, symBinAddr: 0x24260, symSize: 0x30 } - - { offsetInCU: 0xA25, offset: 0x69F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x17F0, symBinAddr: 0x24290, symSize: 0x80 } - - { offsetInCU: 0xA39, offset: 0x69FA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x1870, symBinAddr: 0x24310, symSize: 0xE0 } - - { offsetInCU: 0xA4D, offset: 0x69FBD, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1950, symBinAddr: 0x243F0, symSize: 0x30 } - - { offsetInCU: 0xA61, offset: 0x69FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1980, symBinAddr: 0x24420, symSize: 0x90 } - - { offsetInCU: 0xA75, offset: 0x69FE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1A10, symBinAddr: 0x244B0, symSize: 0x50 } - - { offsetInCU: 0xA89, offset: 0x69FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1A60, symBinAddr: 0x24500, symSize: 0x60 } - - { offsetInCU: 0xA9D, offset: 0x6A00D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1AC0, symBinAddr: 0x24560, symSize: 0x10 } - - { offsetInCU: 0xAB1, offset: 0x6A021, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1AD0, symBinAddr: 0x24570, symSize: 0x30 } - - { offsetInCU: 0xAC5, offset: 0x6A035, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x1B00, symBinAddr: 0x245A0, symSize: 0x40 } - - { offsetInCU: 0xAD9, offset: 0x6A049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x1B40, symBinAddr: 0x245E0, symSize: 0x60 } - - { offsetInCU: 0xAED, offset: 0x6A05D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1BC0, symBinAddr: 0x24640, symSize: 0x50 } - - { offsetInCU: 0xB01, offset: 0x6A071, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1C10, symBinAddr: 0x24690, symSize: 0x40 } - - { offsetInCU: 0xB15, offset: 0x6A085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x1C50, symBinAddr: 0x246D0, symSize: 0x50 } - - { offsetInCU: 0xB29, offset: 0x6A099, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x1CA0, symBinAddr: 0x24720, symSize: 0x10 } - - { offsetInCU: 0xB3D, offset: 0x6A0AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x1CC0, symBinAddr: 0x24730, symSize: 0x40 } - - { offsetInCU: 0xB51, offset: 0x6A0C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1D00, symBinAddr: 0x24770, symSize: 0x50 } - - { offsetInCU: 0xB65, offset: 0x6A0D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1D50, symBinAddr: 0x247C0, symSize: 0x10 } - - { offsetInCU: 0xB79, offset: 0x6A0E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x1D70, symBinAddr: 0x247D0, symSize: 0x80 } - - { offsetInCU: 0xB8D, offset: 0x6A0FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1DF0, symBinAddr: 0x24850, symSize: 0xD0 } - - { offsetInCU: 0xBA1, offset: 0x6A111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1EC0, symBinAddr: 0x24920, symSize: 0x10 } - - { offsetInCU: 0xBB5, offset: 0x6A125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1ED0, symBinAddr: 0x24930, symSize: 0x10 } - - { offsetInCU: 0xBC9, offset: 0x6A139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1EE0, symBinAddr: 0x24940, symSize: 0x10 } - - { offsetInCU: 0xBDD, offset: 0x6A14D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1EF0, symBinAddr: 0x24950, symSize: 0x10 } - - { offsetInCU: 0xC32, offset: 0x6A1A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8E0, symBinAddr: 0x23380, symSize: 0x40 } - - { offsetInCU: 0x6E, offset: 0x6A3EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x249A0, symSize: 0x170 } - - { offsetInCU: 0x35A, offset: 0x6A6DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x170, symBinAddr: 0x24B10, symSize: 0x700 } - - { offsetInCU: 0x6C9, offset: 0x6AA49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x31D0, symBinAddr: 0x27B70, symSize: 0x7A0 } - - { offsetInCU: 0xC01, offset: 0x6AF81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x8F0, symBinAddr: 0x25290, symSize: 0x25F0 } - - { offsetInCU: 0x1C7D, offset: 0x6BFFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xDB60, symBinAddr: 0x32500, symSize: 0x42E0 } - - { offsetInCU: 0x3A21, offset: 0x6DDA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x11E40, symBinAddr: 0x367E0, symSize: 0x790 } - - { offsetInCU: 0x4011, offset: 0x6E391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tF', symObjAddr: 0x125D0, symBinAddr: 0x36F70, symSize: 0x40 } - - { offsetInCU: 0x4039, offset: 0x6E3B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x18080, symBinAddr: 0x3CA20, symSize: 0x450 } - - { offsetInCU: 0x41B2, offset: 0x6E532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x14200, symBinAddr: 0x38BA0, symSize: 0x2F60 } - - { offsetInCU: 0x57F9, offset: 0x6FB79, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2EE0, symBinAddr: 0x27880, symSize: 0x2F0 } - - { offsetInCU: 0x5C49, offset: 0x6FFC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x3970, symBinAddr: 0x28310, symSize: 0x6E0 } - - { offsetInCU: 0x5F7C, offset: 0x702FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x4050, symBinAddr: 0x289F0, symSize: 0x4C30 } - - { offsetInCU: 0x7AF6, offset: 0x71E76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x8C80, symBinAddr: 0x2D620, symSize: 0x2E0 } - - { offsetInCU: 0x7BF8, offset: 0x71F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x93E0, symBinAddr: 0x2DD80, symSize: 0x1BC0 } - - { offsetInCU: 0x84E4, offset: 0x72864, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x8F60, symBinAddr: 0x2D900, symSize: 0x120 } - - { offsetInCU: 0x854D, offset: 0x728CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x91A0, symBinAddr: 0x2DB40, symSize: 0x210 } - - { offsetInCU: 0x863A, offset: 0x729BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x93B0, symBinAddr: 0x2DD50, symSize: 0x30 } - - { offsetInCU: 0x8882, offset: 0x72C02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0xAFA0, symBinAddr: 0x2F940, symSize: 0x8B0 } - - { offsetInCU: 0x8CA7, offset: 0x73027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xC910, symBinAddr: 0x312B0, symSize: 0x1250 } - - { offsetInCU: 0x956F, offset: 0x738EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xB850, symBinAddr: 0x301F0, symSize: 0xC00 } - - { offsetInCU: 0xA03F, offset: 0x743BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x12A80, symBinAddr: 0x37420, symSize: 0x1780 } - - { offsetInCU: 0xAFD3, offset: 0x75353, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1C210, symBinAddr: 0x40AF0, symSize: 0xE00 } - - { offsetInCU: 0xBC15, offset: 0x75F95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x17160, symBinAddr: 0x3BB00, symSize: 0xF20 } - - { offsetInCU: 0xC583, offset: 0x76903, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x184D0, symBinAddr: 0x3CE70, symSize: 0x1C0 } - - { offsetInCU: 0xC624, offset: 0x769A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x18690, symBinAddr: 0x3D030, symSize: 0x2D0 } - - { offsetInCU: 0xC72A, offset: 0x76AAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x18960, symBinAddr: 0x3D300, symSize: 0x80 } - - { offsetInCU: 0xC7A9, offset: 0x76B29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x18A50, symBinAddr: 0x3D3F0, symSize: 0x1260 } - - { offsetInCU: 0xD102, offset: 0x77482, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x19CB0, symBinAddr: 0x3E650, symSize: 0x50 } - - { offsetInCU: 0xD11E, offset: 0x7749E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x19D00, symBinAddr: 0x3E6A0, symSize: 0x160 } - - { offsetInCU: 0xD222, offset: 0x775A2, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tg5', symObjAddr: 0x19E60, symBinAddr: 0x3E800, symSize: 0x50 } - - { offsetInCU: 0xD29B, offset: 0x7761B, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tg5', symObjAddr: 0x19F00, symBinAddr: 0x3E850, symSize: 0x40 } - - { offsetInCU: 0xD31F, offset: 0x7769F, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tg5', symObjAddr: 0x19F40, symBinAddr: 0x3E890, symSize: 0x40 } - - { offsetInCU: 0xD398, offset: 0x77718, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x19F80, symBinAddr: 0x3E8D0, symSize: 0x60 } - - { offsetInCU: 0xD3DA, offset: 0x7775A, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19FE0, symBinAddr: 0x3E930, symSize: 0x30 } - - { offsetInCU: 0xD407, offset: 0x77787, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1A010, symBinAddr: 0x3E960, symSize: 0x80 } - - { offsetInCU: 0xD4A5, offset: 0x77825, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x1A090, symBinAddr: 0x3E9E0, symSize: 0x60 } - - { offsetInCU: 0xD52B, offset: 0x778AB, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x1A0F0, symBinAddr: 0x3EA40, symSize: 0x50 } - - { offsetInCU: 0xD5AF, offset: 0x7792F, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x1A190, symBinAddr: 0x3EAE0, symSize: 0xE0 } - - { offsetInCU: 0xD5F9, offset: 0x77979, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x1A270, symBinAddr: 0x3EBC0, symSize: 0xC0 } - - { offsetInCU: 0xD626, offset: 0x779A6, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x1A330, symBinAddr: 0x3EC80, symSize: 0x180 } - - { offsetInCU: 0xD6DA, offset: 0x77A5A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x1A4B0, symBinAddr: 0x3EE00, symSize: 0x110 } - - { offsetInCU: 0xD86D, offset: 0x77BED, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x1A5C0, symBinAddr: 0x3EF10, symSize: 0x130 } - - { offsetInCU: 0xDA39, offset: 0x77DB9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x1A6F0, symBinAddr: 0x3F040, symSize: 0x180 } - - { offsetInCU: 0xDC0C, offset: 0x77F8C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x1A870, symBinAddr: 0x3F1C0, symSize: 0x1A0 } - - { offsetInCU: 0xDDF1, offset: 0x78171, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x1AA10, symBinAddr: 0x3F360, symSize: 0x110 } - - { offsetInCU: 0xDF94, offset: 0x78314, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x1AB20, symBinAddr: 0x3F470, symSize: 0x110 } - - { offsetInCU: 0xE137, offset: 0x784B7, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1AD60, symBinAddr: 0x3F6B0, symSize: 0x110 } - - { offsetInCU: 0xE249, offset: 0x785C9, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1AE70, symBinAddr: 0x3F7C0, symSize: 0x40 } - - { offsetInCU: 0xE296, offset: 0x78616, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1B180, symBinAddr: 0x3FAD0, symSize: 0x180 } - - { offsetInCU: 0xE335, offset: 0x786B5, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1B300, symBinAddr: 0x3FC50, symSize: 0xD0 } - - { offsetInCU: 0xE404, offset: 0x78784, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1B5E0, symBinAddr: 0x3FEF0, symSize: 0x170 } - - { offsetInCU: 0xE515, offset: 0x78895, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSS_s15EmptyCollectionVySSGTg5Tf4ndn_n', symObjAddr: 0x1B750, symBinAddr: 0x40060, symSize: 0xA0 } - - { offsetInCU: 0xE618, offset: 0x78998, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1BA70, symBinAddr: 0x40350, symSize: 0x1B0 } - - { offsetInCU: 0xE76D, offset: 0x78AED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1BC20, symBinAddr: 0x40500, symSize: 0x400 } - - { offsetInCU: 0xEA81, offset: 0x78E01, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1D010, symBinAddr: 0x418F0, symSize: 0x170 } - - { offsetInCU: 0xEB9D, offset: 0x78F1D, size: 0x8, addend: 0x0, symName: '_$sSa15replaceSubrange_4withySnySiG_qd__nt7ElementQyd__RszSlRd__lFSDySSypG_s15EmptyCollectionVyAFGTg5Tf4ndn_n', symObjAddr: 0x1D180, symBinAddr: 0x41A60, symSize: 0xA0 } - - { offsetInCU: 0xEF27, offset: 0x792A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1D220, symBinAddr: 0x41B00, symSize: 0x1130 } - - { offsetInCU: 0x102EF, offset: 0x7A66F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E350, symBinAddr: 0x42C30, symSize: 0x1E0 } - - { offsetInCU: 0x1048D, offset: 0x7A80D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1E530, symBinAddr: 0x42E10, symSize: 0x1B0 } - - { offsetInCU: 0x10580, offset: 0x7A900, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tg5Tf4nnd_n', symObjAddr: 0x1E6E0, symBinAddr: 0x42FC0, symSize: 0x90 } - - { offsetInCU: 0x10782, offset: 0x7AB02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1F240, symBinAddr: 0x43B20, symSize: 0x10 } - - { offsetInCU: 0x10796, offset: 0x7AB16, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1F310, symBinAddr: 0x43BF0, symSize: 0x20 } - - { offsetInCU: 0x107AA, offset: 0x7AB2A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1F330, symBinAddr: 0x43C10, symSize: 0x20 } - - { offsetInCU: 0x107BE, offset: 0x7AB3E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1F350, symBinAddr: 0x43C30, symSize: 0x60 } - - { offsetInCU: 0x107D2, offset: 0x7AB52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1F3D0, symBinAddr: 0x43C90, symSize: 0x30 } - - { offsetInCU: 0x107E6, offset: 0x7AB66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1F400, symBinAddr: 0x43CC0, symSize: 0x180 } - - { offsetInCU: 0x107FA, offset: 0x7AB7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1F580, symBinAddr: 0x43E40, symSize: 0x2D0 } - - { offsetInCU: 0x1080E, offset: 0x7AB8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1F850, symBinAddr: 0x44110, symSize: 0x70 } - - { offsetInCU: 0x10822, offset: 0x7ABA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1F8C0, symBinAddr: 0x44180, symSize: 0x30 } - - { offsetInCU: 0x10836, offset: 0x7ABB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1F8F0, symBinAddr: 0x441B0, symSize: 0xD0 } - - { offsetInCU: 0x1084A, offset: 0x7ABCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1F9C0, symBinAddr: 0x44280, symSize: 0xB0 } - - { offsetInCU: 0x1087F, offset: 0x7ABFF, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x200E0, symBinAddr: 0x44330, symSize: 0xC0 } - - { offsetInCU: 0x108F5, offset: 0x7AC75, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x201A0, symBinAddr: 0x443F0, symSize: 0x80 } - - { offsetInCU: 0x10922, offset: 0x7ACA2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x20220, symBinAddr: 0x44470, symSize: 0x80 } - - { offsetInCU: 0x10998, offset: 0x7AD18, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x202A0, symBinAddr: 0x444F0, symSize: 0x70 } - - { offsetInCU: 0x10AB1, offset: 0x7AE31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x20310, symBinAddr: 0x44560, symSize: 0x800 } - - { offsetInCU: 0x10F6A, offset: 0x7B2EA, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x20B10, symBinAddr: 0x44D60, symSize: 0x40 } - - { offsetInCU: 0x10F7E, offset: 0x7B2FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x20C00, symBinAddr: 0x44DD0, symSize: 0x10 } - - { offsetInCU: 0x10F92, offset: 0x7B312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x20C10, symBinAddr: 0x44DE0, symSize: 0x30 } - - { offsetInCU: 0x10FA6, offset: 0x7B326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x20C40, symBinAddr: 0x44E10, symSize: 0x30 } - - { offsetInCU: 0x10FBA, offset: 0x7B33A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x20CE0, symBinAddr: 0x44E60, symSize: 0x20 } - - { offsetInCU: 0x10FCE, offset: 0x7B34E, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x20D20, symBinAddr: 0x44E80, symSize: 0x30 } - - { offsetInCU: 0x10FE2, offset: 0x7B362, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x20D50, symBinAddr: 0x44EB0, symSize: 0x30 } - - { offsetInCU: 0x10FF6, offset: 0x7B376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x20DE0, symBinAddr: 0x44F40, symSize: 0x30 } - - { offsetInCU: 0x1102B, offset: 0x7B3AB, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x20EE0, symBinAddr: 0x45040, symSize: 0x40 } - - { offsetInCU: 0x1104A, offset: 0x7B3CA, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tg5Tf4d_n', symObjAddr: 0x20F20, symBinAddr: 0x45080, symSize: 0x60 } - - { offsetInCU: 0x1108D, offset: 0x7B40D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tg5Tf4nnd_n', symObjAddr: 0x20F80, symBinAddr: 0x450E0, symSize: 0x80 } - - { offsetInCU: 0x11122, offset: 0x7B4A2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5Tf4nng_n', symObjAddr: 0x21000, symBinAddr: 0x45160, symSize: 0x120 } - - { offsetInCU: 0x1120A, offset: 0x7B58A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOf', symObjAddr: 0x21170, symBinAddr: 0x452D0, symSize: 0x40 } - - { offsetInCU: 0x1121E, offset: 0x7B59E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x211B0, symBinAddr: 0x45310, symSize: 0x50 } - - { offsetInCU: 0x11232, offset: 0x7B5B2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x212C0, symBinAddr: 0x45420, symSize: 0x40 } - - { offsetInCU: 0x11246, offset: 0x7B5C6, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x21360, symBinAddr: 0x454C0, symSize: 0x10 } - - { offsetInCU: 0x1125A, offset: 0x7B5DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x21370, symBinAddr: 0x454D0, symSize: 0x20 } - - { offsetInCU: 0x1126E, offset: 0x7B5EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x21390, symBinAddr: 0x454F0, symSize: 0x30 } - - { offsetInCU: 0x11282, offset: 0x7B602, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x21400, symBinAddr: 0x45560, symSize: 0x40 } - - { offsetInCU: 0x11338, offset: 0x7B6B8, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x870, symBinAddr: 0x25210, symSize: 0x80 } - - { offsetInCU: 0x11708, offset: 0x7BA88, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xC450, symBinAddr: 0x30DF0, symSize: 0x4C0 } - - { offsetInCU: 0x119EA, offset: 0x7BD6A, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x128D0, symBinAddr: 0x37270, symSize: 0x1B0 } - - { offsetInCU: 0x11C17, offset: 0x7BF97, size: 0x8, addend: 0x0, symName: '_$sSmsSKRzrlE10removeLast7ElementSTQzyFSS_Tg5', symObjAddr: 0x189E0, symBinAddr: 0x3D380, symSize: 0x70 } - - { offsetInCU: 0x11D84, offset: 0x7C104, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTg5Tf4gd_n', symObjAddr: 0x1B3D0, symBinAddr: 0x3FD20, symSize: 0xE0 } - - { offsetInCU: 0x11EB1, offset: 0x7C231, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n', symObjAddr: 0x1B4F0, symBinAddr: 0x3FE00, symSize: 0xF0 } - - { offsetInCU: 0x11FB2, offset: 0x7C332, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1B840, symBinAddr: 0x40120, symSize: 0x230 } - - { offsetInCU: 0x12080, offset: 0x7C400, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1C020, symBinAddr: 0x40900, symSize: 0x1F0 } - - { offsetInCU: 0x1233C, offset: 0x7C6BC, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1E990, symBinAddr: 0x43270, symSize: 0x260 } - - { offsetInCU: 0x12422, offset: 0x7C7A2, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTg5Tf4gd_n', symObjAddr: 0x1EBF0, symBinAddr: 0x434D0, symSize: 0xF0 } - - { offsetInCU: 0x12555, offset: 0x7C8D5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTg5Tf4gd_n', symObjAddr: 0x1ECE0, symBinAddr: 0x435C0, symSize: 0xF0 } - - { offsetInCU: 0x1269C, offset: 0x7CA1C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTg5Tf4gd_n', symObjAddr: 0x1EDD0, symBinAddr: 0x436B0, symSize: 0xE0 } - - { offsetInCU: 0x127D7, offset: 0x7CB57, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTg5Tf4gd_n', symObjAddr: 0x1EEB0, symBinAddr: 0x43790, symSize: 0xF0 } - - { offsetInCU: 0x12904, offset: 0x7CC84, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTg5Tf4gd_n', symObjAddr: 0x1EFA0, symBinAddr: 0x43880, symSize: 0xE0 } - - { offsetInCU: 0x12A4B, offset: 0x7CDCB, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTg5Tf4gd_n', symObjAddr: 0x1F160, symBinAddr: 0x43A40, symSize: 0xE0 } - - { offsetInCU: 0x12BAA, offset: 0x7CF2A, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x20E10, symBinAddr: 0x44F70, symSize: 0xD0 } - - { offsetInCU: 0x12E50, offset: 0x7D1D0, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x9080, symBinAddr: 0x2DA20, symSize: 0x120 } - - { offsetInCU: 0x27, offset: 0x7D78A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x455D0, symSize: 0x30 } - - { offsetInCU: 0x3F, offset: 0x7D7A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x455D0, symSize: 0x30 } - - { offsetInCU: 0x53, offset: 0x7D7B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x45600, symSize: 0x140 } - - { offsetInCU: 0x67, offset: 0x7D7CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x45740, symSize: 0x440 } - - { offsetInCU: 0x7B, offset: 0x7D7DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x45B80, symSize: 0x590 } - - { offsetInCU: 0x8F, offset: 0x7D7F2, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x46110, symSize: 0x10 } - - { offsetInCU: 0xA3, offset: 0x7D806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x46120, symSize: 0x440 } - - { offsetInCU: 0xB7, offset: 0x7D81A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x46560, symSize: 0x40 } - - { offsetInCU: 0xCB, offset: 0x7D82E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x465A0, symSize: 0x110 } - - { offsetInCU: 0xDF, offset: 0x7D842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x466B0, symSize: 0xA } - - { offsetInCU: 0x23B, offset: 0x7DB5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x480, symBinAddr: 0x46B30, symSize: 0x2D0 } - - { offsetInCU: 0x2F0, offset: 0x7DC13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x750, symBinAddr: 0x46E00, symSize: 0xE40 } - - { offsetInCU: 0x762, offset: 0x7E085, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x1590, symBinAddr: 0x47C40, symSize: 0x690 } - - { offsetInCU: 0x982, offset: 0x7E2A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1C20, symBinAddr: 0x482D0, symSize: 0xB00 } - - { offsetInCU: 0xD14, offset: 0x7E637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x2750, symBinAddr: 0x48E00, symSize: 0x28F0 } - - { offsetInCU: 0x1EF3, offset: 0x7F816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x109F0, symBinAddr: 0x570A0, symSize: 0x7F0 } - - { offsetInCU: 0x2281, offset: 0x7FBA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x5040, symBinAddr: 0x4B6F0, symSize: 0x1620 } - - { offsetInCU: 0x2DF3, offset: 0x80716, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x6660, symBinAddr: 0x4CD10, symSize: 0xE80 } - - { offsetInCU: 0x3649, offset: 0x80F6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x74E0, symBinAddr: 0x4DB90, symSize: 0x430 } - - { offsetInCU: 0x3760, offset: 0x81083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8330, symBinAddr: 0x4E9E0, symSize: 0x210 } - - { offsetInCU: 0x3A1F, offset: 0x81342, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8540, symBinAddr: 0x4EBF0, symSize: 0xA50 } - - { offsetInCU: 0x4168, offset: 0x81A8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8F90, symBinAddr: 0x4F640, symSize: 0x2F0 } - - { offsetInCU: 0x42A0, offset: 0x81BC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9280, symBinAddr: 0x4F930, symSize: 0x710 } - - { offsetInCU: 0x4693, offset: 0x81FB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x9990, symBinAddr: 0x50040, symSize: 0x760 } - - { offsetInCU: 0x496D, offset: 0x82290, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA0F0, symBinAddr: 0x507A0, symSize: 0x260 } - - { offsetInCU: 0x4A41, offset: 0x82364, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA350, symBinAddr: 0x50A00, symSize: 0x270 } - - { offsetInCU: 0x4ADA, offset: 0x823FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0xA5C0, symBinAddr: 0x50C70, symSize: 0xC0 } - - { offsetInCU: 0x4B07, offset: 0x8242A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0xA680, symBinAddr: 0x50D30, symSize: 0x20 } - - { offsetInCU: 0x4B43, offset: 0x82466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xF3F0, symBinAddr: 0x55AA0, symSize: 0x8F0 } - - { offsetInCU: 0x4E8E, offset: 0x827B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xFCE0, symBinAddr: 0x56390, symSize: 0xA60 } - - { offsetInCU: 0x517D, offset: 0x82AA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0x10740, symBinAddr: 0x56DF0, symSize: 0x240 } - - { offsetInCU: 0x5228, offset: 0x82B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x111E0, symBinAddr: 0x57890, symSize: 0x960 } - - { offsetInCU: 0x5533, offset: 0x82E56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11B40, symBinAddr: 0x581F0, symSize: 0xBC0 } - - { offsetInCU: 0x5822, offset: 0x83145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x12700, symBinAddr: 0x58DB0, symSize: 0x2C0 } - - { offsetInCU: 0x58CD, offset: 0x831F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x129C0, symBinAddr: 0x59070, symSize: 0x210 } - - { offsetInCU: 0x5D83, offset: 0x836A6, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2720, symBinAddr: 0x48DD0, symSize: 0x30 } - - { offsetInCU: 0x609A, offset: 0x839BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0xA6A0, symBinAddr: 0x50D50, symSize: 0x20 } - - { offsetInCU: 0x60F3, offset: 0x83A16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xA6C0, symBinAddr: 0x50D70, symSize: 0x90 } - - { offsetInCU: 0x61A1, offset: 0x83AC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0xA750, symBinAddr: 0x50E00, symSize: 0x15D0 } - - { offsetInCU: 0x685C, offset: 0x8417F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xBD20, symBinAddr: 0x523D0, symSize: 0x40 } - - { offsetInCU: 0x68A0, offset: 0x841C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xBD60, symBinAddr: 0x52410, symSize: 0x50 } - - { offsetInCU: 0x68CB, offset: 0x841EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xBDB0, symBinAddr: 0x52460, symSize: 0x50 } - - { offsetInCU: 0x690D, offset: 0x84230, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBE00, symBinAddr: 0x524B0, symSize: 0x60 } - - { offsetInCU: 0x6940, offset: 0x84263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xBE60, symBinAddr: 0x52510, symSize: 0x10 } - - { offsetInCU: 0x696B, offset: 0x8428E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBE70, symBinAddr: 0x52520, symSize: 0x70 } - - { offsetInCU: 0x69AD, offset: 0x842D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xBEE0, symBinAddr: 0x52590, symSize: 0x90 } - - { offsetInCU: 0x69EF, offset: 0x84312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xBF70, symBinAddr: 0x52620, symSize: 0x70 } - - { offsetInCU: 0x6A22, offset: 0x84345, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xBFE0, symBinAddr: 0x52690, symSize: 0x10 } - - { offsetInCU: 0x6A3E, offset: 0x84361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xBFF0, symBinAddr: 0x526A0, symSize: 0x10 } - - { offsetInCU: 0x6A69, offset: 0x8438C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xC000, symBinAddr: 0x526B0, symSize: 0x70 } - - { offsetInCU: 0x6A9C, offset: 0x843BF, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xC070, symBinAddr: 0x52720, symSize: 0x10 } - - { offsetInCU: 0x6ABB, offset: 0x843DE, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xC080, symBinAddr: 0x52730, symSize: 0x10 } - - { offsetInCU: 0x6AE8, offset: 0x8440B, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xC090, symBinAddr: 0x52740, symSize: 0xC0 } - - { offsetInCU: 0x6B70, offset: 0x84493, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xC150, symBinAddr: 0x52800, symSize: 0xC0 } - - { offsetInCU: 0x6C28, offset: 0x8454B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xC2E0, symBinAddr: 0x52990, symSize: 0x260 } - - { offsetInCU: 0x6CA0, offset: 0x845C3, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xC540, symBinAddr: 0x52BF0, symSize: 0x220 } - - { offsetInCU: 0x6D50, offset: 0x84673, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xC760, symBinAddr: 0x52E10, symSize: 0x3C0 } - - { offsetInCU: 0x6E5C, offset: 0x8477F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xCB20, symBinAddr: 0x531D0, symSize: 0x3B0 } - - { offsetInCU: 0x6F92, offset: 0x848B5, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xCED0, symBinAddr: 0x53580, symSize: 0x220 } - - { offsetInCU: 0x701B, offset: 0x8493E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xD0F0, symBinAddr: 0x537A0, symSize: 0x220 } - - { offsetInCU: 0x7099, offset: 0x849BC, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xD310, symBinAddr: 0x539C0, symSize: 0x40 } - - { offsetInCU: 0x7161, offset: 0x84A84, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xD350, symBinAddr: 0x53A00, symSize: 0xA0 } - - { offsetInCU: 0x721A, offset: 0x84B3D, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xD3F0, symBinAddr: 0x53AA0, symSize: 0x40 } - - { offsetInCU: 0x7257, offset: 0x84B7A, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xD430, symBinAddr: 0x53AE0, symSize: 0x20 } - - { offsetInCU: 0x7280, offset: 0x84BA3, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xD450, symBinAddr: 0x53B00, symSize: 0x30 } - - { offsetInCU: 0x72A9, offset: 0x84BCC, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xD480, symBinAddr: 0x53B30, symSize: 0x20 } - - { offsetInCU: 0x730D, offset: 0x84C30, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xD4A0, symBinAddr: 0x53B50, symSize: 0x120 } - - { offsetInCU: 0x73B2, offset: 0x84CD5, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixxSgSRys5UInt8VG_Sits010FixedWidthB0RzlFs5Int32V_Tg5', symObjAddr: 0xD6E0, symBinAddr: 0x53D90, symSize: 0x2C0 } - - { offsetInCU: 0x7429, offset: 0x84D4C, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xDC50, symBinAddr: 0x54300, symSize: 0x80 } - - { offsetInCU: 0x7441, offset: 0x84D64, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xDCD0, symBinAddr: 0x54380, symSize: 0x60 } - - { offsetInCU: 0x7496, offset: 0x84DB9, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xDD30, symBinAddr: 0x543E0, symSize: 0x170 } - - { offsetInCU: 0x7504, offset: 0x84E27, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xDEA0, symBinAddr: 0x54550, symSize: 0x100 } - - { offsetInCU: 0x7529, offset: 0x84E4C, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xDFA0, symBinAddr: 0x54650, symSize: 0x2D0 } - - { offsetInCU: 0x7562, offset: 0x84E85, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xE270, symBinAddr: 0x54920, symSize: 0xA0 } - - { offsetInCU: 0x757A, offset: 0x84E9D, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xE310, symBinAddr: 0x549C0, symSize: 0x20 } - - { offsetInCU: 0x7592, offset: 0x84EB5, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE330, symBinAddr: 0x549E0, symSize: 0x20 } - - { offsetInCU: 0x75AA, offset: 0x84ECD, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE350, symBinAddr: 0x54A00, symSize: 0x20 } - - { offsetInCU: 0x761A, offset: 0x84F3D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xE370, symBinAddr: 0x54A20, symSize: 0x110 } - - { offsetInCU: 0x7793, offset: 0x850B6, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE480, symBinAddr: 0x54B30, symSize: 0x1A0 } - - { offsetInCU: 0x7938, offset: 0x8525B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE620, symBinAddr: 0x54CD0, symSize: 0x130 } - - { offsetInCU: 0x7A38, offset: 0x8535B, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xE750, symBinAddr: 0x54E00, symSize: 0x100 } - - { offsetInCU: 0x7C84, offset: 0x855A7, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C46STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1cn_n', symObjAddr: 0xE850, symBinAddr: 0x54F00, symSize: 0x440 } - - { offsetInCU: 0x82B1, offset: 0x85BD4, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xEC90, symBinAddr: 0x55340, symSize: 0x2D0 } - - { offsetInCU: 0x84B2, offset: 0x85DD5, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nncn_n', symObjAddr: 0xEF60, symBinAddr: 0x55610, symSize: 0x160 } - - { offsetInCU: 0x8642, offset: 0x85F65, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg565$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TG5Tf4nnd_nTf1nnnnc_n', symObjAddr: 0xF0C0, symBinAddr: 0x55770, symSize: 0x200 } - - { offsetInCU: 0x86CD, offset: 0x85FF0, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xF2C0, symBinAddr: 0x55970, symSize: 0x20 } - - { offsetInCU: 0x8706, offset: 0x86029, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xF2E0, symBinAddr: 0x55990, symSize: 0x110 } - - { offsetInCU: 0x87BC, offset: 0x860DF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgq5Tf4nnd_n', symObjAddr: 0x10980, symBinAddr: 0x57030, symSize: 0x70 } - - { offsetInCU: 0x8868, offset: 0x8618B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x12BD0, symBinAddr: 0x59280, symSize: 0xB50 } - - { offsetInCU: 0x8DE3, offset: 0x86706, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x13720, symBinAddr: 0x59DD0, symSize: 0x130 } - - { offsetInCU: 0x8F4F, offset: 0x86872, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13850, symBinAddr: 0x59F00, symSize: 0x32B0 } - - { offsetInCU: 0x9615, offset: 0x86F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x16B00, symBinAddr: 0x5D1B0, symSize: 0x130 } - - { offsetInCU: 0x9726, offset: 0x87049, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTf4dnd_n', symObjAddr: 0x16C30, symBinAddr: 0x5D2E0, symSize: 0x90 } - - { offsetInCU: 0x97A9, offset: 0x870CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x16CC0, symBinAddr: 0x5D370, symSize: 0x7E0 } - - { offsetInCU: 0x9B59, offset: 0x8747C, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x17510, symBinAddr: 0x5DB50, symSize: 0x20 } - - { offsetInCU: 0x9B6D, offset: 0x87490, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x17530, symBinAddr: 0x5DB70, symSize: 0x20 } - - { offsetInCU: 0x9B81, offset: 0x874A4, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x17580, symBinAddr: 0x5DB90, symSize: 0x40 } - - { offsetInCU: 0x9B95, offset: 0x874B8, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x17640, symBinAddr: 0x5DBD0, symSize: 0x30 } - - { offsetInCU: 0x9BA9, offset: 0x874CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x17670, symBinAddr: 0x5DC00, symSize: 0x30 } - - { offsetInCU: 0x9BBD, offset: 0x874E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOf', symObjAddr: 0x176A0, symBinAddr: 0x5DC30, symSize: 0x40 } - - { offsetInCU: 0x9BD1, offset: 0x874F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x17740, symBinAddr: 0x5DCA0, symSize: 0x10 } - - { offsetInCU: 0x9BE5, offset: 0x87508, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x17750, symBinAddr: 0x5DCB0, symSize: 0x20 } - - { offsetInCU: 0x9BF9, offset: 0x8751C, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x17770, symBinAddr: 0x5DCD0, symSize: 0x10 } - - { offsetInCU: 0x9C0D, offset: 0x87530, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x17800, symBinAddr: 0x5DD20, symSize: 0x40 } - - { offsetInCU: 0x9C65, offset: 0x87588, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x178C0, symBinAddr: 0x5DDE0, symSize: 0x20 } - - { offsetInCU: 0x9CA1, offset: 0x875C4, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x17920, symBinAddr: 0x5DE00, symSize: 0x30 } - - { offsetInCU: 0x9CD0, offset: 0x875F3, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x466C0, symSize: 0x110 } - - { offsetInCU: 0x9D06, offset: 0x87629, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlFs6UInt16V_Tg5', symObjAddr: 0x110, symBinAddr: 0x467D0, symSize: 0x50 } - - { offsetInCU: 0x9DE6, offset: 0x87709, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x160, symBinAddr: 0x46820, symSize: 0x90 } - - { offsetInCU: 0x9E09, offset: 0x8772C, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x1F0, symBinAddr: 0x468B0, symSize: 0xA0 } - - { offsetInCU: 0x9F1A, offset: 0x8783D, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x290, symBinAddr: 0x46950, symSize: 0x90 } - - { offsetInCU: 0xA014, offset: 0x87937, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x320, symBinAddr: 0x469E0, symSize: 0x60 } - - { offsetInCU: 0xA070, offset: 0x87993, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x380, symBinAddr: 0x46A40, symSize: 0x10 } - - { offsetInCU: 0xA098, offset: 0x879BB, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x3A0, symBinAddr: 0x46A50, symSize: 0xE0 } - - { offsetInCU: 0x62, offset: 0x883D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x0, symBinAddr: 0x5DF40, symSize: 0x20 } - - { offsetInCU: 0x8B, offset: 0x883FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1000, symBinAddr: 0x5EF40, symSize: 0x10 } - - { offsetInCU: 0xB6, offset: 0x88426, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1010, symBinAddr: 0x5EF50, symSize: 0x20 } - - { offsetInCU: 0xE7, offset: 0x88457, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1030, symBinAddr: 0x5EF70, symSize: 0x10 } - - { offsetInCU: 0x103, offset: 0x88473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1040, symBinAddr: 0x5EF80, symSize: 0x10 } - - { offsetInCU: 0x11F, offset: 0x8848F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6B80, symBinAddr: 0x64A00, symSize: 0xE0 } - - { offsetInCU: 0x165, offset: 0x884D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x20, symBinAddr: 0x5DF60, symSize: 0x190 } - - { offsetInCU: 0x1BA, offset: 0x8852A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1090, symBinAddr: 0x5EFD0, symSize: 0x50 } - - { offsetInCU: 0x1F1, offset: 0x88561, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E0, symBinAddr: 0x5F020, symSize: 0x50 } - - { offsetInCU: 0x214, offset: 0x88584, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6C60, symBinAddr: 0x64AE0, symSize: 0x13C0 } - - { offsetInCU: 0x265, offset: 0x885D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x1B0, symBinAddr: 0x5E0F0, symSize: 0x20 } - - { offsetInCU: 0x2B2, offset: 0x88622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1130, symBinAddr: 0x5F070, symSize: 0x10 } - - { offsetInCU: 0x310, offset: 0x88680, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1150, symBinAddr: 0x5F090, symSize: 0x20 } - - { offsetInCU: 0x38A, offset: 0x886FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1180, symBinAddr: 0x5F0C0, symSize: 0x10 } - - { offsetInCU: 0x3B5, offset: 0x88725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1190, symBinAddr: 0x5F0D0, symSize: 0x20 } - - { offsetInCU: 0x3E6, offset: 0x88756, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x11B0, symBinAddr: 0x5F0F0, symSize: 0x10 } - - { offsetInCU: 0x402, offset: 0x88772, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11C0, symBinAddr: 0x5F100, symSize: 0x10 } - - { offsetInCU: 0x41E, offset: 0x8878E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8A90, symBinAddr: 0x65F30, symSize: 0x190 } - - { offsetInCU: 0x464, offset: 0x887D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D0, symBinAddr: 0x5E110, symSize: 0x2B0 } - - { offsetInCU: 0x4B9, offset: 0x88829, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1210, symBinAddr: 0x5F150, symSize: 0x50 } - - { offsetInCU: 0x4F0, offset: 0x88860, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1260, symBinAddr: 0x5F1A0, symSize: 0x50 } - - { offsetInCU: 0x513, offset: 0x88883, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8C20, symBinAddr: 0x660C0, symSize: 0x1180 } - - { offsetInCU: 0x55D, offset: 0x888CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueSSvg', symObjAddr: 0x480, symBinAddr: 0x5E3C0, symSize: 0x20 } - - { offsetInCU: 0x594, offset: 0x88904, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO11stringValueSSvg', symObjAddr: 0x4A0, symBinAddr: 0x5E3E0, symSize: 0x20 } - - { offsetInCU: 0x612, offset: 0x88982, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x12F0, symBinAddr: 0x5F230, symSize: 0x70 } - - { offsetInCU: 0x678, offset: 0x889E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1360, symBinAddr: 0x5F2A0, symSize: 0x30 } - - { offsetInCU: 0x694, offset: 0x88A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5F2D0, symSize: 0x10 } - - { offsetInCU: 0x6CA, offset: 0x88A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x13A0, symBinAddr: 0x5F2E0, symSize: 0x60 } - - { offsetInCU: 0x74F, offset: 0x88ABF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1400, symBinAddr: 0x5F340, symSize: 0x10 } - - { offsetInCU: 0x76B, offset: 0x88ADB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1410, symBinAddr: 0x5F350, symSize: 0x10 } - - { offsetInCU: 0x788, offset: 0x88AF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x4C0, symBinAddr: 0x5E400, symSize: 0x190 } - - { offsetInCU: 0x7DD, offset: 0x88B4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1460, symBinAddr: 0x5F3A0, symSize: 0x50 } - - { offsetInCU: 0x814, offset: 0x88B84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x14B0, symBinAddr: 0x5F3F0, symSize: 0x50 } - - { offsetInCU: 0x837, offset: 0x88BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9EF0, symBinAddr: 0x67390, symSize: 0x210 } - - { offsetInCU: 0x887, offset: 0x88BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x650, symBinAddr: 0x5E590, symSize: 0x20 } - - { offsetInCU: 0x8B0, offset: 0x88C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1500, symBinAddr: 0x5F440, symSize: 0x10 } - - { offsetInCU: 0x8DB, offset: 0x88C4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1510, symBinAddr: 0x5F450, symSize: 0x20 } - - { offsetInCU: 0x90C, offset: 0x88C7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1530, symBinAddr: 0x5F470, symSize: 0x10 } - - { offsetInCU: 0x928, offset: 0x88C98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1540, symBinAddr: 0x5F480, symSize: 0x10 } - - { offsetInCU: 0x944, offset: 0x88CB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA100, symBinAddr: 0x675A0, symSize: 0x240 } - - { offsetInCU: 0x98A, offset: 0x88CFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x670, symBinAddr: 0x5E5B0, symSize: 0x2A0 } - - { offsetInCU: 0x9DF, offset: 0x88D4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1590, symBinAddr: 0x5F4D0, symSize: 0x50 } - - { offsetInCU: 0xA16, offset: 0x88D86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15E0, symBinAddr: 0x5F520, symSize: 0x50 } - - { offsetInCU: 0xA39, offset: 0x88DA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA340, symBinAddr: 0x677E0, symSize: 0x5E0 } - - { offsetInCU: 0xA89, offset: 0x88DF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x910, symBinAddr: 0x5E850, symSize: 0x30 } - - { offsetInCU: 0xAD8, offset: 0x88E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1630, symBinAddr: 0x5F570, symSize: 0x10 } - - { offsetInCU: 0xB61, offset: 0x88ED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1640, symBinAddr: 0x5F580, symSize: 0x40 } - - { offsetInCU: 0xC45, offset: 0x88FB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1680, symBinAddr: 0x5F5C0, symSize: 0x20 } - - { offsetInCU: 0xCB7, offset: 0x89027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16E0, symBinAddr: 0x5F620, symSize: 0x10 } - - { offsetInCU: 0xCE2, offset: 0x89052, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x5F630, symSize: 0x20 } - - { offsetInCU: 0xD13, offset: 0x89083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1710, symBinAddr: 0x5F650, symSize: 0x10 } - - { offsetInCU: 0xD2F, offset: 0x8909F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1720, symBinAddr: 0x5F660, symSize: 0x10 } - - { offsetInCU: 0xD4B, offset: 0x890BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA920, symBinAddr: 0x67DC0, symSize: 0xA0 } - - { offsetInCU: 0xD91, offset: 0x89101, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x940, symBinAddr: 0x5E880, symSize: 0x110 } - - { offsetInCU: 0xDE6, offset: 0x89156, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5F6B0, symSize: 0x30 } - - { offsetInCU: 0xE1D, offset: 0x8918D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17A0, symBinAddr: 0x5F6E0, symSize: 0x20 } - - { offsetInCU: 0xE40, offset: 0x891B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA9C0, symBinAddr: 0x67E60, symSize: 0x180 } - - { offsetInCU: 0xE91, offset: 0x89201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0xA50, symBinAddr: 0x5E990, symSize: 0x20 } - - { offsetInCU: 0xEBA, offset: 0x8922A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1840, symBinAddr: 0x5F780, symSize: 0x10 } - - { offsetInCU: 0xEE5, offset: 0x89255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x5F790, symSize: 0x20 } - - { offsetInCU: 0xF16, offset: 0x89286, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x5F7B0, symSize: 0x10 } - - { offsetInCU: 0xF32, offset: 0x892A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x5F7C0, symSize: 0x10 } - - { offsetInCU: 0xF4E, offset: 0x892BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAB40, symBinAddr: 0x67FE0, symSize: 0x1E0 } - - { offsetInCU: 0xF94, offset: 0x89304, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA70, symBinAddr: 0x5E9B0, symSize: 0x250 } - - { offsetInCU: 0xFE9, offset: 0x89359, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x5F810, symSize: 0x50 } - - { offsetInCU: 0x1020, offset: 0x89390, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1920, symBinAddr: 0x5F860, symSize: 0x50 } - - { offsetInCU: 0x1043, offset: 0x893B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAD20, symBinAddr: 0x681C0, symSize: 0x840 } - - { offsetInCU: 0x108D, offset: 0x893FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xCC0, symBinAddr: 0x5EC00, symSize: 0x20 } - - { offsetInCU: 0x10C4, offset: 0x89434, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCE0, symBinAddr: 0x5EC20, symSize: 0x20 } - - { offsetInCU: 0x1137, offset: 0x894A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5FA00, symSize: 0x40 } - - { offsetInCU: 0x117D, offset: 0x894ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5FA40, symSize: 0x30 } - - { offsetInCU: 0x1191, offset: 0x89501, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1B30, symBinAddr: 0x5FA70, symSize: 0x10 } - - { offsetInCU: 0x11C7, offset: 0x89537, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5FA80, symSize: 0x30 } - - { offsetInCU: 0x122C, offset: 0x8959C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1B70, symBinAddr: 0x5FAB0, symSize: 0x10 } - - { offsetInCU: 0x1248, offset: 0x895B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B80, symBinAddr: 0x5FAC0, symSize: 0x10 } - - { offsetInCU: 0x1264, offset: 0x895D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_nTf4g_n', symObjAddr: 0xB5F0, symBinAddr: 0x68A90, symSize: 0x50 } - - { offsetInCU: 0x1290, offset: 0x89600, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x5EC40, symSize: 0x2E0 } - - { offsetInCU: 0x12E5, offset: 0x89655, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x5FB10, symSize: 0x50 } - - { offsetInCU: 0x131C, offset: 0x8968C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C20, symBinAddr: 0x5FB60, symSize: 0x50 } - - { offsetInCU: 0x133F, offset: 0x896AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB640, symBinAddr: 0x68AE0, symSize: 0x950 } - - { offsetInCU: 0x13B4, offset: 0x89724, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1C70, symBinAddr: 0x5FBB0, symSize: 0x1D0 } - - { offsetInCU: 0x1410, offset: 0x89780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x1E40, symBinAddr: 0x5FD80, symSize: 0x20 } - - { offsetInCU: 0x1455, offset: 0x897C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6930, symBinAddr: 0x64850, symSize: 0x50 } - - { offsetInCU: 0x14C0, offset: 0x89830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6980, symBinAddr: 0x648A0, symSize: 0x80 } - - { offsetInCU: 0x1514, offset: 0x89884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6A00, symBinAddr: 0x64920, symSize: 0x10 } - - { offsetInCU: 0x154A, offset: 0x898BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6A10, symBinAddr: 0x64930, symSize: 0x20 } - - { offsetInCU: 0x15CB, offset: 0x8993B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6A60, symBinAddr: 0x64980, symSize: 0x10 } - - { offsetInCU: 0x15E8, offset: 0x89958, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x1E60, symBinAddr: 0x5FDA0, symSize: 0x20 } - - { offsetInCU: 0x15FC, offset: 0x8996C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x1E80, symBinAddr: 0x5FDC0, symSize: 0x140 } - - { offsetInCU: 0x1610, offset: 0x89980, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x1FC0, symBinAddr: 0x5FF00, symSize: 0x500 } - - { offsetInCU: 0x1624, offset: 0x89994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x24C0, symBinAddr: 0x60400, symSize: 0xED0 } - - { offsetInCU: 0x163F, offset: 0x899AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x3390, symBinAddr: 0x612D0, symSize: 0x30 } - - { offsetInCU: 0x1668, offset: 0x899D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x33C0, symBinAddr: 0x61300, symSize: 0x20 } - - { offsetInCU: 0x167C, offset: 0x899EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x33E0, symBinAddr: 0x61320, symSize: 0x20 } - - { offsetInCU: 0x1690, offset: 0x89A00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x3400, symBinAddr: 0x61340, symSize: 0x20 } - - { offsetInCU: 0x16A4, offset: 0x89A14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x3420, symBinAddr: 0x61360, symSize: 0x20 } - - { offsetInCU: 0x16B8, offset: 0x89A28, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3440, symBinAddr: 0x61380, symSize: 0x10 } - - { offsetInCU: 0x16CC, offset: 0x89A3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x3450, symBinAddr: 0x61390, symSize: 0x580 } - - { offsetInCU: 0x16E0, offset: 0x89A50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x39D0, symBinAddr: 0x61910, symSize: 0x50 } - - { offsetInCU: 0x16F4, offset: 0x89A64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3A20, symBinAddr: 0x61960, symSize: 0x140 } - - { offsetInCU: 0x1708, offset: 0x89A78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x3B60, symBinAddr: 0x61AA0, symSize: 0x10 } - - { offsetInCU: 0x171C, offset: 0x89A8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3B70, symBinAddr: 0x61AB0, symSize: 0x30 } - - { offsetInCU: 0x1730, offset: 0x89AA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x3BA0, symBinAddr: 0x61AE0, symSize: 0x120 } - - { offsetInCU: 0x1744, offset: 0x89AB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x3CC0, symBinAddr: 0x61C00, symSize: 0x480 } - - { offsetInCU: 0x1758, offset: 0x89AC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x4140, symBinAddr: 0x62080, symSize: 0x9D0 } - - { offsetInCU: 0x176C, offset: 0x89ADC, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4B10, symBinAddr: 0x62A50, symSize: 0x10 } - - { offsetInCU: 0x1780, offset: 0x89AF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4B20, symBinAddr: 0x62A60, symSize: 0x500 } - - { offsetInCU: 0x1794, offset: 0x89B04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x5020, symBinAddr: 0x62F60, symSize: 0x50 } - - { offsetInCU: 0x17A8, offset: 0x89B18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x5070, symBinAddr: 0x62FB0, symSize: 0x130 } - - { offsetInCU: 0x17BC, offset: 0x89B2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x51A0, symBinAddr: 0x630E0, symSize: 0x10 } - - { offsetInCU: 0x17D0, offset: 0x89B40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x51B0, symBinAddr: 0x630F0, symSize: 0xC0 } - - { offsetInCU: 0x17E4, offset: 0x89B54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x5270, symBinAddr: 0x631B0, symSize: 0x240 } - - { offsetInCU: 0x17F8, offset: 0x89B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x54B0, symBinAddr: 0x633F0, symSize: 0x450 } - - { offsetInCU: 0x180C, offset: 0x89B7C, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5900, symBinAddr: 0x63840, symSize: 0x10 } - - { offsetInCU: 0x1820, offset: 0x89B90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x5910, symBinAddr: 0x63850, symSize: 0x250 } - - { offsetInCU: 0x1834, offset: 0x89BA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x5B60, symBinAddr: 0x63AA0, symSize: 0x50 } - - { offsetInCU: 0x1848, offset: 0x89BB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x5BB0, symBinAddr: 0x63AF0, symSize: 0xA0 } - - { offsetInCU: 0x185C, offset: 0x89BCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x5C50, symBinAddr: 0x63B90, symSize: 0x10 } - - { offsetInCU: 0x1870, offset: 0x89BE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x5C60, symBinAddr: 0x63BA0, symSize: 0x70 } - - { offsetInCU: 0x1884, offset: 0x89BF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x5CD0, symBinAddr: 0x63C10, symSize: 0x150 } - - { offsetInCU: 0x1898, offset: 0x89C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x5E20, symBinAddr: 0x63D60, symSize: 0x190 } - - { offsetInCU: 0x18AC, offset: 0x89C1C, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x5FB0, symBinAddr: 0x63EF0, symSize: 0x10 } - - { offsetInCU: 0x18C0, offset: 0x89C30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5FC0, symBinAddr: 0x63F00, symSize: 0x130 } - - { offsetInCU: 0x18D4, offset: 0x89C44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x60F0, symBinAddr: 0x64030, symSize: 0x50 } - - { offsetInCU: 0x18E8, offset: 0x89C58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x6140, symBinAddr: 0x64080, symSize: 0x80 } - - { offsetInCU: 0x18FC, offset: 0x89C6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x61C0, symBinAddr: 0x64100, symSize: 0x10 } - - { offsetInCU: 0x1910, offset: 0x89C80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x61D0, symBinAddr: 0x64110, symSize: 0x50 } - - { offsetInCU: 0x1924, offset: 0x89C94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x6220, symBinAddr: 0x64160, symSize: 0x120 } - - { offsetInCU: 0x1938, offset: 0x89CA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x6340, symBinAddr: 0x64280, symSize: 0x1C0 } - - { offsetInCU: 0x194C, offset: 0x89CBC, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6500, symBinAddr: 0x64440, symSize: 0x10 } - - { offsetInCU: 0x1960, offset: 0x89CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x6510, symBinAddr: 0x64450, symSize: 0x150 } - - { offsetInCU: 0x1974, offset: 0x89CE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x6660, symBinAddr: 0x645A0, symSize: 0x50 } - - { offsetInCU: 0x1988, offset: 0x89CF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x66B0, symBinAddr: 0x645F0, symSize: 0x80 } - - { offsetInCU: 0x199C, offset: 0x89D0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x6730, symBinAddr: 0x64670, symSize: 0x10 } - - { offsetInCU: 0x19B0, offset: 0x89D20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x6740, symBinAddr: 0x64680, symSize: 0x30 } - - { offsetInCU: 0x19C4, offset: 0x89D34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x6770, symBinAddr: 0x646B0, symSize: 0x40 } - - { offsetInCU: 0x19D8, offset: 0x89D48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x67B0, symBinAddr: 0x646F0, symSize: 0x60 } - - { offsetInCU: 0x19EC, offset: 0x89D5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x6830, symBinAddr: 0x64750, symSize: 0x50 } - - { offsetInCU: 0x1A00, offset: 0x89D70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x6880, symBinAddr: 0x647A0, symSize: 0x50 } - - { offsetInCU: 0x1A14, offset: 0x89D84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x68D0, symBinAddr: 0x647F0, symSize: 0x50 } - - { offsetInCU: 0x1A28, offset: 0x89D98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x6920, symBinAddr: 0x64840, symSize: 0x10 } - - { offsetInCU: 0x1A3C, offset: 0x89DAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x6A70, symBinAddr: 0x64990, symSize: 0x10 } - - { offsetInCU: 0x1A50, offset: 0x89DC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x6A80, symBinAddr: 0x649A0, symSize: 0x30 } - - { offsetInCU: 0x1A64, offset: 0x89DD4, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6B50, symBinAddr: 0x649D0, symSize: 0x30 } - - { offsetInCU: 0x1A78, offset: 0x89DE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x8020, symBinAddr: 0x65EA0, symSize: 0x30 } - - { offsetInCU: 0x1A8C, offset: 0x89DFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x8050, symBinAddr: 0x65ED0, symSize: 0x30 } - - { offsetInCU: 0x1AA0, offset: 0x89E10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x8A60, symBinAddr: 0x65F00, symSize: 0x30 } - - { offsetInCU: 0x1AB4, offset: 0x89E24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x9DA0, symBinAddr: 0x67240, symSize: 0x30 } - - { offsetInCU: 0x1AC8, offset: 0x89E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x9DD0, symBinAddr: 0x67270, symSize: 0x30 } - - { offsetInCU: 0x1ADC, offset: 0x89E4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x9E00, symBinAddr: 0x672A0, symSize: 0x30 } - - { offsetInCU: 0x1AF0, offset: 0x89E60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x9E30, symBinAddr: 0x672D0, symSize: 0x30 } - - { offsetInCU: 0x1B04, offset: 0x89E74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x9E60, symBinAddr: 0x67300, symSize: 0x30 } - - { offsetInCU: 0x1B18, offset: 0x89E88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x9E90, symBinAddr: 0x67330, symSize: 0x30 } - - { offsetInCU: 0x1B2C, offset: 0x89E9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x9EC0, symBinAddr: 0x67360, symSize: 0x30 } - - { offsetInCU: 0x1B40, offset: 0x89EB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xB560, symBinAddr: 0x68A00, symSize: 0x30 } - - { offsetInCU: 0x1B54, offset: 0x89EC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xB590, symBinAddr: 0x68A30, symSize: 0x30 } - - { offsetInCU: 0x1B68, offset: 0x89ED8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xB5C0, symBinAddr: 0x68A60, symSize: 0x30 } - - { offsetInCU: 0x1B7C, offset: 0x89EEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xBF90, symBinAddr: 0x69430, symSize: 0x30 } - - { offsetInCU: 0x1B90, offset: 0x89F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xBFC0, symBinAddr: 0x69460, symSize: 0x30 } - - { offsetInCU: 0x1BA4, offset: 0x89F14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xBFF0, symBinAddr: 0x69490, symSize: 0x30 } - - { offsetInCU: 0x1BB8, offset: 0x89F28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xC050, symBinAddr: 0x694F0, symSize: 0x30 } - - { offsetInCU: 0x1BCC, offset: 0x89F3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xC080, symBinAddr: 0x69520, symSize: 0x30 } - - { offsetInCU: 0x1BE0, offset: 0x89F50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC0D0, symBinAddr: 0x69550, symSize: 0x80 } - - { offsetInCU: 0x1BF4, offset: 0x89F64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC150, symBinAddr: 0x695D0, symSize: 0xD0 } - - { offsetInCU: 0x1C08, offset: 0x89F78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xC220, symBinAddr: 0x696A0, symSize: 0x10 } - - { offsetInCU: 0x1C1C, offset: 0x89F8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC230, symBinAddr: 0x696B0, symSize: 0x10 } - - { offsetInCU: 0x1C30, offset: 0x89FA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xC240, symBinAddr: 0x696C0, symSize: 0x10 } - - { offsetInCU: 0x1C44, offset: 0x89FB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC250, symBinAddr: 0x696D0, symSize: 0x10 } - - { offsetInCU: 0x1C58, offset: 0x89FC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC260, symBinAddr: 0x696E0, symSize: 0x80 } - - { offsetInCU: 0x1C6C, offset: 0x89FDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC2E0, symBinAddr: 0x69760, symSize: 0xD0 } - - { offsetInCU: 0x1C80, offset: 0x89FF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC3B0, symBinAddr: 0x69830, symSize: 0x10 } - - { offsetInCU: 0x1C94, offset: 0x8A004, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC3C0, symBinAddr: 0x69840, symSize: 0x10 } - - { offsetInCU: 0x1CA8, offset: 0x8A018, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xC3D0, symBinAddr: 0x69850, symSize: 0x80 } - - { offsetInCU: 0x1CBC, offset: 0x8A02C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xC450, symBinAddr: 0x698D0, symSize: 0xD0 } - - { offsetInCU: 0x1CD0, offset: 0x8A040, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xC520, symBinAddr: 0x699A0, symSize: 0x10 } - - { offsetInCU: 0x1CE4, offset: 0x8A054, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xC530, symBinAddr: 0x699B0, symSize: 0x10 } - - { offsetInCU: 0x1CF8, offset: 0x8A068, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC540, symBinAddr: 0x699C0, symSize: 0x80 } - - { offsetInCU: 0x1D0C, offset: 0x8A07C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC5C0, symBinAddr: 0x69A40, symSize: 0xD0 } - - { offsetInCU: 0x1D20, offset: 0x8A090, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC690, symBinAddr: 0x69B10, symSize: 0x10 } - - { offsetInCU: 0x1D34, offset: 0x8A0A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC6A0, symBinAddr: 0x69B20, symSize: 0x10 } - - { offsetInCU: 0x1D48, offset: 0x8A0B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC6B0, symBinAddr: 0x69B30, symSize: 0x80 } - - { offsetInCU: 0x1D5C, offset: 0x8A0CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC730, symBinAddr: 0x69BB0, symSize: 0xD0 } - - { offsetInCU: 0x1D70, offset: 0x8A0E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xC800, symBinAddr: 0x69C80, symSize: 0x10 } - - { offsetInCU: 0x1D84, offset: 0x8A0F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC810, symBinAddr: 0x69C90, symSize: 0x10 } - - { offsetInCU: 0x1D98, offset: 0x8A108, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xC820, symBinAddr: 0x69CA0, symSize: 0x10 } - - { offsetInCU: 0x1DAC, offset: 0x8A11C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC830, symBinAddr: 0x69CB0, symSize: 0x10 } - - { offsetInCU: 0x1DC0, offset: 0x8A130, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC840, symBinAddr: 0x69CC0, symSize: 0x80 } - - { offsetInCU: 0x1DD4, offset: 0x8A144, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC8C0, symBinAddr: 0x69D40, symSize: 0xD0 } - - { offsetInCU: 0x1DE8, offset: 0x8A158, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC990, symBinAddr: 0x69E10, symSize: 0x10 } - - { offsetInCU: 0x1DFC, offset: 0x8A16C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC9A0, symBinAddr: 0x69E20, symSize: 0x10 } - - { offsetInCU: 0x1E10, offset: 0x8A180, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xC9B0, symBinAddr: 0x69E30, symSize: 0x30 } - - { offsetInCU: 0x1E24, offset: 0x8A194, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xC9E0, symBinAddr: 0x69E60, symSize: 0x20 } - - { offsetInCU: 0x1E38, offset: 0x8A1A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xCA00, symBinAddr: 0x69E80, symSize: 0x40 } - - { offsetInCU: 0x1E4C, offset: 0x8A1BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xCA40, symBinAddr: 0x69EC0, symSize: 0x10 } - - { offsetInCU: 0x1E60, offset: 0x8A1D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCA50, symBinAddr: 0x69ED0, symSize: 0x10 } - - { offsetInCU: 0x1E74, offset: 0x8A1E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCA60, symBinAddr: 0x69EE0, symSize: 0x30 } - - { offsetInCU: 0x1E88, offset: 0x8A1F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCA90, symBinAddr: 0x69F10, symSize: 0x10 } - - { offsetInCU: 0x1E9C, offset: 0x8A20C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCAA0, symBinAddr: 0x69F20, symSize: 0x30 } - - { offsetInCU: 0x1EB0, offset: 0x8A220, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCAD0, symBinAddr: 0x69F50, symSize: 0x10 } - - { offsetInCU: 0x1EC4, offset: 0x8A234, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCAE0, symBinAddr: 0x69F60, symSize: 0x30 } - - { offsetInCU: 0x1ED8, offset: 0x8A248, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xCB10, symBinAddr: 0x69F90, symSize: 0x10 } - - { offsetInCU: 0x1EEC, offset: 0x8A25C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xCB20, symBinAddr: 0x69FA0, symSize: 0x30 } - - { offsetInCU: 0x1F00, offset: 0x8A270, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCB50, symBinAddr: 0x69FD0, symSize: 0x10 } - - { offsetInCU: 0x1F14, offset: 0x8A284, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCB60, symBinAddr: 0x69FE0, symSize: 0x30 } - - { offsetInCU: 0x1F28, offset: 0x8A298, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCB90, symBinAddr: 0x6A010, symSize: 0x10 } - - { offsetInCU: 0x1F3C, offset: 0x8A2AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCBA0, symBinAddr: 0x6A020, symSize: 0x30 } - - { offsetInCU: 0x1F50, offset: 0x8A2C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCBD0, symBinAddr: 0x6A050, symSize: 0x10 } - - { offsetInCU: 0x1F64, offset: 0x8A2D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCBE0, symBinAddr: 0x6A060, symSize: 0x30 } - - { offsetInCU: 0x1F78, offset: 0x8A2E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC10, symBinAddr: 0x6A090, symSize: 0x10 } - - { offsetInCU: 0x1F8C, offset: 0x8A2FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCC20, symBinAddr: 0x6A0A0, symSize: 0x30 } - - { offsetInCU: 0x1FA0, offset: 0x8A310, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCC50, symBinAddr: 0x6A0D0, symSize: 0x10 } - - { offsetInCU: 0x1FB4, offset: 0x8A324, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCC60, symBinAddr: 0x6A0E0, symSize: 0x30 } - - { offsetInCU: 0x1FC8, offset: 0x8A338, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCC90, symBinAddr: 0x6A110, symSize: 0x10 } - - { offsetInCU: 0x1FDC, offset: 0x8A34C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCCA0, symBinAddr: 0x6A120, symSize: 0x30 } - - { offsetInCU: 0x1FF0, offset: 0x8A360, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCCD0, symBinAddr: 0x6A150, symSize: 0x10 } - - { offsetInCU: 0x2004, offset: 0x8A374, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCCE0, symBinAddr: 0x6A160, symSize: 0x30 } - - { offsetInCU: 0x2018, offset: 0x8A388, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD10, symBinAddr: 0x6A190, symSize: 0x10 } - - { offsetInCU: 0x202C, offset: 0x8A39C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xCD20, symBinAddr: 0x6A1A0, symSize: 0x30 } - - { offsetInCU: 0x2040, offset: 0x8A3B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCD50, symBinAddr: 0x6A1D0, symSize: 0x10 } - - { offsetInCU: 0x2054, offset: 0x8A3C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCD60, symBinAddr: 0x6A1E0, symSize: 0x30 } - - { offsetInCU: 0x2068, offset: 0x8A3D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCD90, symBinAddr: 0x6A210, symSize: 0x10 } - - { offsetInCU: 0x207C, offset: 0x8A3EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCDA0, symBinAddr: 0x6A220, symSize: 0x30 } - - { offsetInCU: 0x2090, offset: 0x8A400, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCDD0, symBinAddr: 0x6A250, symSize: 0x10 } - - { offsetInCU: 0x20A4, offset: 0x8A414, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCDE0, symBinAddr: 0x6A260, symSize: 0x30 } - - { offsetInCU: 0x20B8, offset: 0x8A428, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE10, symBinAddr: 0x6A290, symSize: 0x10 } - - { offsetInCU: 0x20CC, offset: 0x8A43C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCE20, symBinAddr: 0x6A2A0, symSize: 0x30 } - - { offsetInCU: 0x20E0, offset: 0x8A450, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xCE50, symBinAddr: 0x6A2D0, symSize: 0x10 } - - { offsetInCU: 0x20F4, offset: 0x8A464, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xCE60, symBinAddr: 0x6A2E0, symSize: 0x30 } - - { offsetInCU: 0x2108, offset: 0x8A478, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xCE90, symBinAddr: 0x6A310, symSize: 0x10 } - - { offsetInCU: 0x211C, offset: 0x8A48C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xCEA0, symBinAddr: 0x6A320, symSize: 0x30 } - - { offsetInCU: 0x2130, offset: 0x8A4A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xCED0, symBinAddr: 0x6A350, symSize: 0x30 } - - { offsetInCU: 0x2144, offset: 0x8A4B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xCF00, symBinAddr: 0x6A380, symSize: 0x80 } - - { offsetInCU: 0x2158, offset: 0x8A4C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xCF80, symBinAddr: 0x6A400, symSize: 0xD0 } - - { offsetInCU: 0x216C, offset: 0x8A4DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xD050, symBinAddr: 0x6A4D0, symSize: 0x10 } - - { offsetInCU: 0x2180, offset: 0x8A4F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xD060, symBinAddr: 0x6A4E0, symSize: 0x10 } - - { offsetInCU: 0x2194, offset: 0x8A504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD070, symBinAddr: 0x6A4F0, symSize: 0x10 } - - { offsetInCU: 0x21A8, offset: 0x8A518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD080, symBinAddr: 0x6A500, symSize: 0x30 } - - { offsetInCU: 0x21BC, offset: 0x8A52C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD0B0, symBinAddr: 0x6A530, symSize: 0x10 } - - { offsetInCU: 0x21D0, offset: 0x8A540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD0C0, symBinAddr: 0x6A540, symSize: 0x30 } - - { offsetInCU: 0x21E4, offset: 0x8A554, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD0F0, symBinAddr: 0x6A570, symSize: 0x10 } - - { offsetInCU: 0x21F8, offset: 0x8A568, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD100, symBinAddr: 0x6A580, symSize: 0x30 } - - { offsetInCU: 0x2226, offset: 0x8A596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1050, symBinAddr: 0x5EF90, symSize: 0x20 } - - { offsetInCU: 0x2242, offset: 0x8A5B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1070, symBinAddr: 0x5EFB0, symSize: 0x20 } - - { offsetInCU: 0x2264, offset: 0x8A5D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11D0, symBinAddr: 0x5F110, symSize: 0x20 } - - { offsetInCU: 0x2280, offset: 0x8A5F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11F0, symBinAddr: 0x5F130, symSize: 0x20 } - - { offsetInCU: 0x229C, offset: 0x8A60C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x12B0, symBinAddr: 0x5F1F0, symSize: 0x10 } - - { offsetInCU: 0x22B8, offset: 0x8A628, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12C0, symBinAddr: 0x5F200, symSize: 0x10 } - - { offsetInCU: 0x22D4, offset: 0x8A644, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x12D0, symBinAddr: 0x5F210, symSize: 0x10 } - - { offsetInCU: 0x22F0, offset: 0x8A660, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x12E0, symBinAddr: 0x5F220, symSize: 0x10 } - - { offsetInCU: 0x2312, offset: 0x8A682, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1420, symBinAddr: 0x5F360, symSize: 0x20 } - - { offsetInCU: 0x232E, offset: 0x8A69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1440, symBinAddr: 0x5F380, symSize: 0x20 } - - { offsetInCU: 0x2350, offset: 0x8A6C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1550, symBinAddr: 0x5F490, symSize: 0x20 } - - { offsetInCU: 0x236C, offset: 0x8A6DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1570, symBinAddr: 0x5F4B0, symSize: 0x20 } - - { offsetInCU: 0x23B5, offset: 0x8A725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x16A0, symBinAddr: 0x5F5E0, symSize: 0x40 } - - { offsetInCU: 0x2458, offset: 0x8A7C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1730, symBinAddr: 0x5F670, symSize: 0x20 } - - { offsetInCU: 0x2474, offset: 0x8A7E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1750, symBinAddr: 0x5F690, symSize: 0x20 } - - { offsetInCU: 0x2496, offset: 0x8A806, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x5F7D0, symSize: 0x20 } - - { offsetInCU: 0x24B2, offset: 0x8A822, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5F7F0, symSize: 0x20 } - - { offsetInCU: 0x24EC, offset: 0x8A85C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1970, symBinAddr: 0x5F8B0, symSize: 0x80 } - - { offsetInCU: 0x25BB, offset: 0x8A92B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5F930, symSize: 0x50 } - - { offsetInCU: 0x2639, offset: 0x8A9A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A40, symBinAddr: 0x5F980, symSize: 0x30 } - - { offsetInCU: 0x268B, offset: 0x8A9FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A70, symBinAddr: 0x5F9B0, symSize: 0x50 } - - { offsetInCU: 0x26ED, offset: 0x8AA5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1B90, symBinAddr: 0x5FAD0, symSize: 0x20 } - - { offsetInCU: 0x2709, offset: 0x8AA79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1BB0, symBinAddr: 0x5FAF0, symSize: 0x20 } - - { offsetInCU: 0x2740, offset: 0x8AAB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6A30, symBinAddr: 0x64950, symSize: 0x30 } - - { offsetInCU: 0x27, offset: 0x8ACBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6A750, symSize: 0x10 } - - { offsetInCU: 0x4B, offset: 0x8ACDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x6A750, symSize: 0x10 } - - { offsetInCU: 0x69, offset: 0x8ACFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x6A760, symSize: 0x10 } - - { offsetInCU: 0xA5, offset: 0x8AD38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x6A770, symSize: 0x10 } - - { offsetInCU: 0xC3, offset: 0x8AD56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x6A780, symSize: 0x10 } - - { offsetInCU: 0xEE, offset: 0x8AD81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x6A790, symSize: 0x10 } - - { offsetInCU: 0x10C, offset: 0x8AD9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x6A7A0, symSize: 0x10 } - - { offsetInCU: 0x148, offset: 0x8ADDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x6A7B0, symSize: 0x20 } - - { offsetInCU: 0x176, offset: 0x8AE09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x6A7D0, symSize: 0x10 } - - { offsetInCU: 0x1A1, offset: 0x8AE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x6A7E0, symSize: 0x10 } - - { offsetInCU: 0x1BF, offset: 0x8AE52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x6A7F0, symSize: 0x10 } - - { offsetInCU: 0x1FD, offset: 0x8AE90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x6A800, symSize: 0x20 } - - { offsetInCU: 0x22B, offset: 0x8AEBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x6A820, symSize: 0x10 } - - { offsetInCU: 0x257, offset: 0x8AEEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x6A830, symSize: 0x40 } - - { offsetInCU: 0x26B, offset: 0x8AEFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x6A870, symSize: 0x50 } - - { offsetInCU: 0x27F, offset: 0x8AF12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x6A8C0, symSize: 0xA } - - { offsetInCU: 0x2B, offset: 0x8B02E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A8D0, symSize: 0x30 } - - { offsetInCU: 0x6D, offset: 0x8B070, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A8D0, symSize: 0x30 } - - { offsetInCU: 0xB9, offset: 0x8B0BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x6A900, symSize: 0x14 } - - { offsetInCU: 0x27, offset: 0x8B1D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6A920, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B217, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6A920, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8B263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6A940, symSize: 0x14 } - - { offsetInCU: 0x2B, offset: 0x8B380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A960, symSize: 0x50 } - - { offsetInCU: 0x6D, offset: 0x8B3C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6A960, symSize: 0x50 } - - { offsetInCU: 0xB9, offset: 0x8B40E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x6A9B0, symSize: 0x10 } - - { offsetInCU: 0xCD, offset: 0x8B422, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x6A9C0, symSize: 0x30 } - - { offsetInCU: 0xE1, offset: 0x8B436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x6A9F0, symSize: 0x69 } - - { offsetInCU: 0x27, offset: 0x8B54F, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AA60, symSize: 0x430 } - - { offsetInCU: 0xD9, offset: 0x8B601, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x6AA60, symSize: 0x430 } - - { offsetInCU: 0x2B2, offset: 0x8B7DA, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x6AE90, symSize: 0x40 } - - { offsetInCU: 0x27, offset: 0x8B984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6AED0, symSize: 0x20 } - - { offsetInCU: 0x69, offset: 0x8B9C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6AED0, symSize: 0x20 } - - { offsetInCU: 0xB5, offset: 0x8BA12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x6AEF0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x8BB53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x6AF10, symSize: 0x70 } - - { offsetInCU: 0x7A, offset: 0x8BB7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x6AFB0, symSize: 0x30 } - - { offsetInCU: 0xBE, offset: 0x8BBC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x9D0, symBinAddr: 0x6B8A0, symSize: 0x40 } - - { offsetInCU: 0x12D, offset: 0x8BC31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xA50, symBinAddr: 0x6B920, symSize: 0x20 } - - { offsetInCU: 0x149, offset: 0x8BC4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA70, symBinAddr: 0x6B940, symSize: 0x20 } - - { offsetInCU: 0x177, offset: 0x8BC7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA90, symBinAddr: 0x6B960, symSize: 0x50 } - - { offsetInCU: 0x209, offset: 0x8BD0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x6AF80, symSize: 0x30 } - - { offsetInCU: 0x230, offset: 0x8BD34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xAE0, symBinAddr: 0x6B9B0, symSize: 0x70 } - - { offsetInCU: 0x25B, offset: 0x8BD5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xB90, symBinAddr: 0x6BA60, symSize: 0x20 } - - { offsetInCU: 0x277, offset: 0x8BD7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xBB0, symBinAddr: 0x6BA80, symSize: 0x20 } - - { offsetInCU: 0x4CA, offset: 0x8BFCE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x8E0, symBinAddr: 0x6B7B0, symSize: 0xF0 } - - { offsetInCU: 0x546, offset: 0x8C04A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xBD0, symBinAddr: 0x6BAA0, symSize: 0x490 } - - { offsetInCU: 0x79D, offset: 0x8C2A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1060, symBinAddr: 0x6BF30, symSize: 0x150 } - - { offsetInCU: 0x921, offset: 0x8C425, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x11B0, symBinAddr: 0x6C080, symSize: 0x9A0 } - - { offsetInCU: 0xECB, offset: 0x8C9CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1B50, symBinAddr: 0x6CA20, symSize: 0x7A0 } - - { offsetInCU: 0x127B, offset: 0x8CD7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x22F0, symBinAddr: 0x6D1C0, symSize: 0x540 } - - { offsetInCU: 0x141A, offset: 0x8CF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2830, symBinAddr: 0x6D700, symSize: 0x680 } - - { offsetInCU: 0x191F, offset: 0x8D423, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2EB0, symBinAddr: 0x6DD80, symSize: 0x130 } - - { offsetInCU: 0x1A0F, offset: 0x8D513, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2FE0, symBinAddr: 0x6DEB0, symSize: 0x30 } - - { offsetInCU: 0x1A52, offset: 0x8D556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3620, symBinAddr: 0x6E480, symSize: 0x200 } - - { offsetInCU: 0x1B03, offset: 0x8D607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x3820, symBinAddr: 0x6E680, symSize: 0x220 } - - { offsetInCU: 0x1B68, offset: 0x8D66C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3A40, symBinAddr: 0x6E8A0, symSize: 0x240 } - - { offsetInCU: 0x1C90, offset: 0x8D794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3CB0, symBinAddr: 0x6EAE0, symSize: 0x290 } - - { offsetInCU: 0x1DCF, offset: 0x8D8D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3F40, symBinAddr: 0x6ED70, symSize: 0x170 } - - { offsetInCU: 0x1E15, offset: 0x8D919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x40B0, symBinAddr: 0x6EEE0, symSize: 0x570 } - - { offsetInCU: 0x2166, offset: 0x8DC6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4620, symBinAddr: 0x6F450, symSize: 0xD0 } - - { offsetInCU: 0x224C, offset: 0x8DD50, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x3080, symBinAddr: 0x6DF50, symSize: 0x10 } - - { offsetInCU: 0x228E, offset: 0x8DD92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3090, symBinAddr: 0x6DF60, symSize: 0x10 } - - { offsetInCU: 0x22A2, offset: 0x8DDA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x30A0, symBinAddr: 0x6DF70, symSize: 0x30 } - - { offsetInCU: 0x22B6, offset: 0x8DDBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x30D0, symBinAddr: 0x6DFA0, symSize: 0x10 } - - { offsetInCU: 0x22CA, offset: 0x8DDCE, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x30E0, symBinAddr: 0x6DFB0, symSize: 0x40 } - - { offsetInCU: 0x22DE, offset: 0x8DDE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x3160, symBinAddr: 0x6DFF0, symSize: 0x10 } - - { offsetInCU: 0x22F2, offset: 0x8DDF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x3170, symBinAddr: 0x6E000, symSize: 0x30 } - - { offsetInCU: 0x2306, offset: 0x8DE0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x31C0, symBinAddr: 0x6E030, symSize: 0x80 } - - { offsetInCU: 0x231A, offset: 0x8DE1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x3240, symBinAddr: 0x6E0B0, symSize: 0xD0 } - - { offsetInCU: 0x232E, offset: 0x8DE32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3310, symBinAddr: 0x6E180, symSize: 0x10 } - - { offsetInCU: 0x2342, offset: 0x8DE46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3320, symBinAddr: 0x6E190, symSize: 0x10 } - - { offsetInCU: 0x2356, offset: 0x8DE5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x3330, symBinAddr: 0x6E1A0, symSize: 0x10 } - - { offsetInCU: 0x236A, offset: 0x8DE6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x3340, symBinAddr: 0x6E1B0, symSize: 0x10 } - - { offsetInCU: 0x237E, offset: 0x8DE82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x3350, symBinAddr: 0x6E1C0, symSize: 0x80 } - - { offsetInCU: 0x2392, offset: 0x8DE96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x33D0, symBinAddr: 0x6E240, symSize: 0xD0 } - - { offsetInCU: 0x23A6, offset: 0x8DEAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x34A0, symBinAddr: 0x6E310, symSize: 0x10 } - - { offsetInCU: 0x23BA, offset: 0x8DEBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x34B0, symBinAddr: 0x6E320, symSize: 0x10 } - - { offsetInCU: 0x23CE, offset: 0x8DED2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x34C0, symBinAddr: 0x6E330, symSize: 0x10 } - - { offsetInCU: 0x23E2, offset: 0x8DEE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x34D0, symBinAddr: 0x6E340, symSize: 0x10 } - - { offsetInCU: 0x23F6, offset: 0x8DEFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x34E0, symBinAddr: 0x6E350, symSize: 0x20 } - - { offsetInCU: 0x240A, offset: 0x8DF0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3510, symBinAddr: 0x6E370, symSize: 0x10 } - - { offsetInCU: 0x241E, offset: 0x8DF22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3520, symBinAddr: 0x6E380, symSize: 0x10 } - - { offsetInCU: 0x2432, offset: 0x8DF36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3530, symBinAddr: 0x6E390, symSize: 0x30 } - - { offsetInCU: 0x2446, offset: 0x8DF4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x3560, symBinAddr: 0x6E3C0, symSize: 0x10 } - - { offsetInCU: 0x245A, offset: 0x8DF5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x3570, symBinAddr: 0x6E3D0, symSize: 0x10 } - - { offsetInCU: 0x246E, offset: 0x8DF72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3580, symBinAddr: 0x6E3E0, symSize: 0x30 } - - { offsetInCU: 0x2482, offset: 0x8DF86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x35B0, symBinAddr: 0x6E410, symSize: 0x10 } - - { offsetInCU: 0x24A1, offset: 0x8DFA5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x35C0, symBinAddr: 0x6E420, symSize: 0x20 } - - { offsetInCU: 0x24D9, offset: 0x8DFDD, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x35E0, symBinAddr: 0x6E440, symSize: 0x20 } - - { offsetInCU: 0x2511, offset: 0x8E015, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3600, symBinAddr: 0x6E460, symSize: 0x20 } - - { offsetInCU: 0x2575, offset: 0x8E079, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x4750, symBinAddr: 0x6F580, symSize: 0x40 } - - { offsetInCU: 0x2589, offset: 0x8E08D, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x47F0, symBinAddr: 0x6F5C0, symSize: 0x30 } - - { offsetInCU: 0x259D, offset: 0x8E0A1, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4820, symBinAddr: 0x6F5F0, symSize: 0x30 } - - { offsetInCU: 0x25B1, offset: 0x8E0B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4890, symBinAddr: 0x6F640, symSize: 0x20 } - - { offsetInCU: 0x25C5, offset: 0x8E0C9, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x48B0, symBinAddr: 0x6F660, symSize: 0x20 } - - { offsetInCU: 0x25D9, offset: 0x8E0DD, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x48D0, symBinAddr: 0x6F680, symSize: 0x10 } - - { offsetInCU: 0x25ED, offset: 0x8E0F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4940, symBinAddr: 0x6F690, symSize: 0x20 } - - { offsetInCU: 0x2601, offset: 0x8E105, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x49F0, symBinAddr: 0x6F740, symSize: 0x10 } - - { offsetInCU: 0x2630, offset: 0x8E134, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x110, symBinAddr: 0x6AFE0, symSize: 0x10 } - - { offsetInCU: 0x2698, offset: 0x8E19C, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x6AFF0, symSize: 0x30 } - - { offsetInCU: 0x2716, offset: 0x8E21A, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x150, symBinAddr: 0x6B020, symSize: 0x70 } - - { offsetInCU: 0x27A5, offset: 0x8E2A9, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x1C0, symBinAddr: 0x6B090, symSize: 0x70 } - - { offsetInCU: 0x2834, offset: 0x8E338, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x230, symBinAddr: 0x6B100, symSize: 0x90 } - - { offsetInCU: 0x28CB, offset: 0x8E3CF, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x2C0, symBinAddr: 0x6B190, symSize: 0x60 } - - { offsetInCU: 0x29A5, offset: 0x8E4A9, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x320, symBinAddr: 0x6B1F0, symSize: 0x60 } - - { offsetInCU: 0x2A7F, offset: 0x8E583, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE04hashB0Sivg15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x380, symBinAddr: 0x6B250, symSize: 0x60 } - - { offsetInCU: 0x2AF4, offset: 0x8E5F8, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x3E0, symBinAddr: 0x6B2B0, symSize: 0x40 } - - { offsetInCU: 0x2B51, offset: 0x8E655, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x420, symBinAddr: 0x6B2F0, symSize: 0x40 } - - { offsetInCU: 0x2BAE, offset: 0x8E6B2, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE4hash4intoys6HasherVz_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x460, symBinAddr: 0x6B330, symSize: 0x40 } - - { offsetInCU: 0x2BD7, offset: 0x8E6DB, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS0F4TCPfO_TB5', symObjAddr: 0x4A0, symBinAddr: 0x6B370, symSize: 0x60 } - - { offsetInCU: 0x2C2A, offset: 0x8E72E, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x500, symBinAddr: 0x6B3D0, symSize: 0x60 } - - { offsetInCU: 0x2CA6, offset: 0x8E7AA, size: 0x8, addend: 0x0, symName: '_$sSYsSHRzSH8RawValueSYRpzrlE08_rawHashB04seedS2i_tF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x560, symBinAddr: 0x6B430, symSize: 0x60 } - - { offsetInCU: 0x2D37, offset: 0x8E83B, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x5C0, symBinAddr: 0x6B490, symSize: 0xB0 } - - { offsetInCU: 0x2EB0, offset: 0x8E9B4, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x670, symBinAddr: 0x6B540, symSize: 0x50 } - - { offsetInCU: 0x2F7C, offset: 0x8EA80, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x6C0, symBinAddr: 0x6B590, symSize: 0x90 } - - { offsetInCU: 0x2FFC, offset: 0x8EB00, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x750, symBinAddr: 0x6B620, symSize: 0x80 } - - { offsetInCU: 0x3076, offset: 0x8EB7A, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x7D0, symBinAddr: 0x6B6A0, symSize: 0xD0 } - - { offsetInCU: 0x3153, offset: 0x8EC57, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x8A0, symBinAddr: 0x6B770, symSize: 0x40 } - - { offsetInCU: 0x31E4, offset: 0x8ECE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA10, symBinAddr: 0x6B8E0, symSize: 0x10 } - - { offsetInCU: 0x3200, offset: 0x8ED04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0xA20, symBinAddr: 0x6B8F0, symSize: 0x10 } - - { offsetInCU: 0x321C, offset: 0x8ED20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA30, symBinAddr: 0x6B900, symSize: 0x10 } - - { offsetInCU: 0x3230, offset: 0x8ED34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA40, symBinAddr: 0x6B910, symSize: 0x10 } - - { offsetInCU: 0x324A, offset: 0x8ED4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB50, symBinAddr: 0x6BA20, symSize: 0x10 } - - { offsetInCU: 0x3266, offset: 0x8ED6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB60, symBinAddr: 0x6BA30, symSize: 0x10 } - - { offsetInCU: 0x3282, offset: 0x8ED86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB70, symBinAddr: 0x6BA40, symSize: 0x10 } - - { offsetInCU: 0x3296, offset: 0x8ED9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB80, symBinAddr: 0x6BA50, symSize: 0x10 } - - { offsetInCU: 0x43, offset: 0x8F235, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6F780, symSize: 0x1A0 } - - { offsetInCU: 0x57, offset: 0x8F249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6F920, symSize: 0x90 } - - { offsetInCU: 0x6B, offset: 0x8F25D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6F9B0, symSize: 0x170 } - - { offsetInCU: 0x7F, offset: 0x8F271, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6FB20, symSize: 0x1F0 } - - { offsetInCU: 0x93, offset: 0x8F285, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6FD10, symSize: 0xE0 } - - { offsetInCU: 0xA7, offset: 0x8F299, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x6FDF0, symSize: 0x1C0 } - - { offsetInCU: 0xBB, offset: 0x8F2AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x6FFB0, symSize: 0x20 } - - { offsetInCU: 0xCF, offset: 0x8F2C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x70040, symSize: 0x20 } - - { offsetInCU: 0xE3, offset: 0x8F2D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x700E0, symSize: 0x90 } - - { offsetInCU: 0xF7, offset: 0x8F2E9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x70170, symSize: 0x50 } - - { offsetInCU: 0x10B, offset: 0x8F2FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x701C0, symSize: 0x120 } - - { offsetInCU: 0x11F, offset: 0x8F311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x702E0, symSize: 0x70 } - - { offsetInCU: 0x133, offset: 0x8F325, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x70350, symSize: 0xF0 } - - { offsetInCU: 0x147, offset: 0x8F339, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x70440, symSize: 0x160 } - - { offsetInCU: 0x15B, offset: 0x8F34D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x705A0, symSize: 0xC0 } - - { offsetInCU: 0x16F, offset: 0x8F361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x70660, symSize: 0x150 } - - { offsetInCU: 0x183, offset: 0x8F375, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x707B0, symSize: 0x20 } - - { offsetInCU: 0x197, offset: 0x8F389, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x70840, symSize: 0x20 } - - { offsetInCU: 0x1AB, offset: 0x8F39D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x70900, symSize: 0x80 } - - { offsetInCU: 0x1DD, offset: 0x8F3CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1240, symBinAddr: 0x70980, symSize: 0x20 } - - { offsetInCU: 0x22A, offset: 0x8F41C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1790, symBinAddr: 0x70ED0, symSize: 0x10 } - - { offsetInCU: 0x288, offset: 0x8F47A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17B0, symBinAddr: 0x70EF0, symSize: 0x20 } - - { offsetInCU: 0x302, offset: 0x8F4F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17E0, symBinAddr: 0x70F20, symSize: 0x10 } - - { offsetInCU: 0x32D, offset: 0x8F51F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x70F30, symSize: 0x20 } - - { offsetInCU: 0x35E, offset: 0x8F550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1810, symBinAddr: 0x70F50, symSize: 0x10 } - - { offsetInCU: 0x37A, offset: 0x8F56C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x70F60, symSize: 0x10 } - - { offsetInCU: 0x396, offset: 0x8F588, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2E80, symBinAddr: 0x72490, symSize: 0x160 } - - { offsetInCU: 0x3DC, offset: 0x8F5CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1260, symBinAddr: 0x709A0, symSize: 0x1F0 } - - { offsetInCU: 0x41B, offset: 0x8F60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1450, symBinAddr: 0x70B90, symSize: 0x340 } - - { offsetInCU: 0x44C, offset: 0x8F63E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1870, symBinAddr: 0x70FB0, symSize: 0x10 } - - { offsetInCU: 0x46F, offset: 0x8F661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1880, symBinAddr: 0x70FC0, symSize: 0x10 } - - { offsetInCU: 0x4C7, offset: 0x8F6B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1890, symBinAddr: 0x70FD0, symSize: 0x20 } - - { offsetInCU: 0x4F0, offset: 0x8F6E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x711C0, symSize: 0x10 } - - { offsetInCU: 0x51B, offset: 0x8F70D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x711D0, symSize: 0x20 } - - { offsetInCU: 0x54C, offset: 0x8F73E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB0, symBinAddr: 0x711F0, symSize: 0x10 } - - { offsetInCU: 0x568, offset: 0x8F75A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x71200, symSize: 0x10 } - - { offsetInCU: 0x584, offset: 0x8F776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2FE0, symBinAddr: 0x725F0, symSize: 0x120 } - - { offsetInCU: 0x5CA, offset: 0x8F7BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18B0, symBinAddr: 0x70FF0, symSize: 0x1B0 } - - { offsetInCU: 0x61F, offset: 0x8F811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B10, symBinAddr: 0x71250, symSize: 0x40 } - - { offsetInCU: 0x656, offset: 0x8F848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B50, symBinAddr: 0x71290, symSize: 0x40 } - - { offsetInCU: 0x679, offset: 0x8F86B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3100, symBinAddr: 0x72710, symSize: 0x2B0 } - - { offsetInCU: 0x6C9, offset: 0x8F8BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1B90, symBinAddr: 0x712D0, symSize: 0x20 } - - { offsetInCU: 0x6F2, offset: 0x8F8E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23C0, symBinAddr: 0x71B00, symSize: 0x10 } - - { offsetInCU: 0x71D, offset: 0x8F90F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23D0, symBinAddr: 0x71B10, symSize: 0x20 } - - { offsetInCU: 0x74E, offset: 0x8F940, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23F0, symBinAddr: 0x71B30, symSize: 0x10 } - - { offsetInCU: 0x76A, offset: 0x8F95C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2400, symBinAddr: 0x71B40, symSize: 0x10 } - - { offsetInCU: 0x786, offset: 0x8F978, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x33B0, symBinAddr: 0x729C0, symSize: 0x250 } - - { offsetInCU: 0x7CC, offset: 0x8F9BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1BB0, symBinAddr: 0x712F0, symSize: 0x2B0 } - - { offsetInCU: 0x80B, offset: 0x8F9FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1E60, symBinAddr: 0x715A0, symSize: 0x4E0 } - - { offsetInCU: 0x83C, offset: 0x8FA2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2450, symBinAddr: 0x71B90, symSize: 0x10 } - - { offsetInCU: 0x85F, offset: 0x8FA51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2460, symBinAddr: 0x71BA0, symSize: 0x10 } - - { offsetInCU: 0x883, offset: 0x8FA75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x24A0, symBinAddr: 0x71BB0, symSize: 0x30 } - - { offsetInCU: 0x897, offset: 0x8FA89, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x2500, symBinAddr: 0x71BE0, symSize: 0x30 } - - { offsetInCU: 0x8AB, offset: 0x8FA9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x25A0, symBinAddr: 0x71C40, symSize: 0x30 } - - { offsetInCU: 0x8BF, offset: 0x8FAB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2610, symBinAddr: 0x71C70, symSize: 0x30 } - - { offsetInCU: 0x8D3, offset: 0x8FAC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x2700, symBinAddr: 0x71D60, symSize: 0x30 } - - { offsetInCU: 0x8E7, offset: 0x8FAD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2750, symBinAddr: 0x71D90, symSize: 0x80 } - - { offsetInCU: 0x8FB, offset: 0x8FAED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x27D0, symBinAddr: 0x71E10, symSize: 0xD0 } - - { offsetInCU: 0x90F, offset: 0x8FB01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x28A0, symBinAddr: 0x71EE0, symSize: 0x10 } - - { offsetInCU: 0x923, offset: 0x8FB15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x28B0, symBinAddr: 0x71EF0, symSize: 0x10 } - - { offsetInCU: 0x937, offset: 0x8FB29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x28C0, symBinAddr: 0x71F00, symSize: 0x10 } - - { offsetInCU: 0x94B, offset: 0x8FB3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x28D0, symBinAddr: 0x71F10, symSize: 0x10 } - - { offsetInCU: 0x95F, offset: 0x8FB51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x28E0, symBinAddr: 0x71F20, symSize: 0x80 } - - { offsetInCU: 0x973, offset: 0x8FB65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2960, symBinAddr: 0x71FA0, symSize: 0xD0 } - - { offsetInCU: 0x987, offset: 0x8FB79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2A30, symBinAddr: 0x72070, symSize: 0x10 } - - { offsetInCU: 0x99B, offset: 0x8FB8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2A40, symBinAddr: 0x72080, symSize: 0x10 } - - { offsetInCU: 0x9AF, offset: 0x8FBA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2A50, symBinAddr: 0x72090, symSize: 0x30 } - - { offsetInCU: 0x9C3, offset: 0x8FBB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2A80, symBinAddr: 0x720C0, symSize: 0x30 } - - { offsetInCU: 0x9D7, offset: 0x8FBC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2AB0, symBinAddr: 0x720F0, symSize: 0x70 } - - { offsetInCU: 0x9EB, offset: 0x8FBDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2B20, symBinAddr: 0x72160, symSize: 0x90 } - - { offsetInCU: 0x9FF, offset: 0x8FBF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2BE0, symBinAddr: 0x721F0, symSize: 0x70 } - - { offsetInCU: 0xA13, offset: 0x8FC05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2C50, symBinAddr: 0x72260, symSize: 0x50 } - - { offsetInCU: 0xA27, offset: 0x8FC19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2CA0, symBinAddr: 0x722B0, symSize: 0x50 } - - { offsetInCU: 0xA3B, offset: 0x8FC2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2CF0, symBinAddr: 0x72300, symSize: 0x10 } - - { offsetInCU: 0xA4F, offset: 0x8FC41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D00, symBinAddr: 0x72310, symSize: 0x10 } - - { offsetInCU: 0xA63, offset: 0x8FC55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D10, symBinAddr: 0x72320, symSize: 0x30 } - - { offsetInCU: 0xA77, offset: 0x8FC69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D40, symBinAddr: 0x72350, symSize: 0x10 } - - { offsetInCU: 0xA8B, offset: 0x8FC7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D50, symBinAddr: 0x72360, symSize: 0x30 } - - { offsetInCU: 0xA9F, offset: 0x8FC91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2D80, symBinAddr: 0x72390, symSize: 0x10 } - - { offsetInCU: 0xAB3, offset: 0x8FCA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2D90, symBinAddr: 0x723A0, symSize: 0x30 } - - { offsetInCU: 0xAC7, offset: 0x8FCB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DC0, symBinAddr: 0x723D0, symSize: 0x10 } - - { offsetInCU: 0xADB, offset: 0x8FCCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2DD0, symBinAddr: 0x723E0, symSize: 0x30 } - - { offsetInCU: 0xAEF, offset: 0x8FCE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E00, symBinAddr: 0x72410, symSize: 0x10 } - - { offsetInCU: 0xB03, offset: 0x8FCF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E10, symBinAddr: 0x72420, symSize: 0x30 } - - { offsetInCU: 0xB17, offset: 0x8FD09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E40, symBinAddr: 0x72450, symSize: 0x10 } - - { offsetInCU: 0xB2B, offset: 0x8FD1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E50, symBinAddr: 0x72460, symSize: 0x30 } - - { offsetInCU: 0xB4A, offset: 0x8FD3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3600, symBinAddr: 0x72C10, symSize: 0x30 } - - { offsetInCU: 0xB5E, offset: 0x8FD50, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3630, symBinAddr: 0x72C40, symSize: 0x40 } - - { offsetInCU: 0xB72, offset: 0x8FD64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x36E0, symBinAddr: 0x72CF0, symSize: 0x80 } - - { offsetInCU: 0xB86, offset: 0x8FD78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3760, symBinAddr: 0x72D70, symSize: 0xD0 } - - { offsetInCU: 0xB9A, offset: 0x8FD8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3830, symBinAddr: 0x72E40, symSize: 0x10 } - - { offsetInCU: 0xBAE, offset: 0x8FDA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3840, symBinAddr: 0x72E50, symSize: 0x10 } - - { offsetInCU: 0xBC2, offset: 0x8FDB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3850, symBinAddr: 0x72E60, symSize: 0x10 } - - { offsetInCU: 0xBD6, offset: 0x8FDC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3860, symBinAddr: 0x72E70, symSize: 0x30 } - - { offsetInCU: 0xBEA, offset: 0x8FDDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3890, symBinAddr: 0x72EA0, symSize: 0x10 } - - { offsetInCU: 0xBFE, offset: 0x8FDF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x38A0, symBinAddr: 0x72EB0, symSize: 0x30 } - - { offsetInCU: 0xC12, offset: 0x8FE04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x38D0, symBinAddr: 0x72EE0, symSize: 0x10 } - - { offsetInCU: 0xC26, offset: 0x8FE18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x38E0, symBinAddr: 0x72EF0, symSize: 0x30 } - - { offsetInCU: 0xC54, offset: 0x8FE46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1830, symBinAddr: 0x70F70, symSize: 0x20 } - - { offsetInCU: 0xC70, offset: 0x8FE62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1850, symBinAddr: 0x70F90, symSize: 0x20 } - - { offsetInCU: 0xC92, offset: 0x8FE84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1AD0, symBinAddr: 0x71210, symSize: 0x20 } - - { offsetInCU: 0xCAE, offset: 0x8FEA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF0, symBinAddr: 0x71230, symSize: 0x20 } - - { offsetInCU: 0xCD0, offset: 0x8FEC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x71B50, symSize: 0x20 } - - { offsetInCU: 0xCEC, offset: 0x8FEDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2430, symBinAddr: 0x71B70, symSize: 0x20 } - - { offsetInCU: 0x27, offset: 0x90030, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x72FC0, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x90054, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x72FC0, symSize: 0x30 } - - { offsetInCU: 0x69, offset: 0x90072, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x72FF0, symSize: 0x30 } - - { offsetInCU: 0xA7, offset: 0x900B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x73020, symSize: 0x10 } - - { offsetInCU: 0xC5, offset: 0x900CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x73030, symSize: 0x10 } - - { offsetInCU: 0xF0, offset: 0x900F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x73040, symSize: 0x30 } - - { offsetInCU: 0x10E, offset: 0x90117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x73070, symSize: 0x30 } - - { offsetInCU: 0x14C, offset: 0x90155, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x730A0, symSize: 0x20 } - - { offsetInCU: 0x17A, offset: 0x90183, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x730C0, symSize: 0x10 } - - { offsetInCU: 0x1A6, offset: 0x901AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x730D0, symSize: 0x30 } - - { offsetInCU: 0x1BA, offset: 0x901C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x73100, symSize: 0x30 } - - { offsetInCU: 0x1CE, offset: 0x901D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x73130, symSize: 0x40 } - - { offsetInCU: 0x1E2, offset: 0x901EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x73170, symSize: 0x60 } - - { offsetInCU: 0x1F6, offset: 0x901FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x731D0, symSize: 0x50 } - - { offsetInCU: 0x20A, offset: 0x90213, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x73220, symSize: 0x40 } - - { offsetInCU: 0x21E, offset: 0x90227, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x73260, symSize: 0x50 } - - { offsetInCU: 0x232, offset: 0x9023B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x732B0, symSize: 0xA } - - { offsetInCU: 0x27, offset: 0x90381, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x732C0, symSize: 0x30 } - - { offsetInCU: 0x4B, offset: 0x903A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0SSvpZ', symObjAddr: 0xA780, symBinAddr: 0x913C0, symSize: 0x0 } - - { offsetInCU: 0x65, offset: 0x903BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8languageSSvpZ', symObjAddr: 0xA790, symBinAddr: 0x913D0, symSize: 0x0 } - - { offsetInCU: 0x7F, offset: 0x903D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7versionSSvpZ', symObjAddr: 0xA7A0, symBinAddr: 0x913E0, symSize: 0x0 } - - { offsetInCU: 0x99, offset: 0x903F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvpZ', symObjAddr: 0xA7B0, symBinAddr: 0x913F0, symSize: 0x0 } - - { offsetInCU: 0xB3, offset: 0x9040D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvpZ', symObjAddr: 0xA7C0, symBinAddr: 0x91400, symSize: 0x0 } - - { offsetInCU: 0xCD, offset: 0x90427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvpZ', symObjAddr: 0xA7D0, symBinAddr: 0x91410, symSize: 0x0 } - - { offsetInCU: 0xE7, offset: 0x90441, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPasswordSSvpZ', symObjAddr: 0xA7E0, symBinAddr: 0x91420, symSize: 0x0 } - - { offsetInCU: 0x101, offset: 0x9045B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpIdSSvpZ', symObjAddr: 0xA7F0, symBinAddr: 0x91430, symSize: 0x0 } - - { offsetInCU: 0x11B, offset: 0x90475, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueIdSSvpZ', symObjAddr: 0xA800, symBinAddr: 0x91440, symSize: 0x0 } - - { offsetInCU: 0x135, offset: 0x9048F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6optionSSvpZ', symObjAddr: 0xA810, symBinAddr: 0x91450, symSize: 0x0 } - - { offsetInCU: 0x14F, offset: 0x904A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attributeSSvpZ', symObjAddr: 0xA820, symBinAddr: 0x91460, symSize: 0x0 } - - { offsetInCU: 0x169, offset: 0x904C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7settingSSvpZ', symObjAddr: 0xA830, symBinAddr: 0x91470, symSize: 0x0 } - - { offsetInCU: 0x183, offset: 0x904DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKeySSvpZ', symObjAddr: 0xA840, symBinAddr: 0x91480, symSize: 0x0 } - - { offsetInCU: 0x19D, offset: 0x904F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6deviceSSvpZ', symObjAddr: 0xA850, symBinAddr: 0x91490, symSize: 0x0 } - - { offsetInCU: 0x1B7, offset: 0x90511, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfigSSvpZ', symObjAddr: 0xA860, symBinAddr: 0x914A0, symSize: 0x0 } - - { offsetInCU: 0x1D1, offset: 0x9052B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4ruleSSvpZ', symObjAddr: 0xA870, symBinAddr: 0x914B0, symSize: 0x0 } - - { offsetInCU: 0x1EB, offset: 0x90545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKeySSvpZ', symObjAddr: 0xA880, symBinAddr: 0x914C0, symSize: 0x0 } - - { offsetInCU: 0x205, offset: 0x9055F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKeySSvpZ', symObjAddr: 0xA890, symBinAddr: 0x914D0, symSize: 0x0 } - - { offsetInCU: 0x21F, offset: 0x90579, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKeySSvpZ', symObjAddr: 0xA8A0, symBinAddr: 0x914E0, symSize: 0x0 } - - { offsetInCU: 0x239, offset: 0x90593, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKeySSvpZ', symObjAddr: 0xA8B0, symBinAddr: 0x914F0, symSize: 0x0 } - - { offsetInCU: 0x253, offset: 0x905AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKeySSvpZ', symObjAddr: 0xA8C0, symBinAddr: 0x91500, symSize: 0x0 } - - { offsetInCU: 0x26D, offset: 0x905C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKeySSvpZ', symObjAddr: 0xA8D0, symBinAddr: 0x91510, symSize: 0x0 } - - { offsetInCU: 0x287, offset: 0x905E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKeySSvpZ', symObjAddr: 0xA8E0, symBinAddr: 0x91520, symSize: 0x0 } - - { offsetInCU: 0x2A1, offset: 0x905FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvpZ', symObjAddr: 0xA8F0, symBinAddr: 0x91530, symSize: 0x0 } - - { offsetInCU: 0x2BB, offset: 0x90615, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKeySSvpZ', symObjAddr: 0xA900, symBinAddr: 0x91540, symSize: 0x0 } - - { offsetInCU: 0x2D5, offset: 0x9062F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvpZ', symObjAddr: 0xA910, symBinAddr: 0x91550, symSize: 0x0 } - - { offsetInCU: 0x2EF, offset: 0x90649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKeySSvpZ', symObjAddr: 0xA920, symBinAddr: 0x91560, symSize: 0x0 } - - { offsetInCU: 0x309, offset: 0x90663, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKeySSvpZ', symObjAddr: 0xA930, symBinAddr: 0x91570, symSize: 0x0 } - - { offsetInCU: 0x323, offset: 0x9067D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkeySSvpZ', symObjAddr: 0xA940, symBinAddr: 0x91580, symSize: 0x0 } - - { offsetInCU: 0x33D, offset: 0x90697, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKeySSvpZ', symObjAddr: 0xA950, symBinAddr: 0x91590, symSize: 0x0 } - - { offsetInCU: 0x357, offset: 0x906B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKeySSvpZ', symObjAddr: 0xA960, symBinAddr: 0x915A0, symSize: 0x0 } - - { offsetInCU: 0x371, offset: 0x906CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKeySSvpZ', symObjAddr: 0xA970, symBinAddr: 0x915B0, symSize: 0x0 } - - { offsetInCU: 0x38B, offset: 0x906E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvpZ', symObjAddr: 0xA980, symBinAddr: 0x915C0, symSize: 0x0 } - - { offsetInCU: 0x3A5, offset: 0x906FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKeySSvpZ', symObjAddr: 0xA990, symBinAddr: 0x915D0, symSize: 0x0 } - - { offsetInCU: 0x3BF, offset: 0x90719, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKeySSvpZ', symObjAddr: 0xA9A0, symBinAddr: 0x915E0, symSize: 0x0 } - - { offsetInCU: 0x3D9, offset: 0x90733, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKeySSvpZ', symObjAddr: 0xA9B0, symBinAddr: 0x915F0, symSize: 0x0 } - - { offsetInCU: 0x3F3, offset: 0x9074D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKeySSvpZ', symObjAddr: 0xA9C0, symBinAddr: 0x91600, symSize: 0x0 } - - { offsetInCU: 0x40D, offset: 0x90767, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvpZ', symObjAddr: 0xA9D0, symBinAddr: 0x91610, symSize: 0x0 } - - { offsetInCU: 0x427, offset: 0x90781, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvpZ', symObjAddr: 0xA9E0, symBinAddr: 0x91620, symSize: 0x0 } - - { offsetInCU: 0x441, offset: 0x9079B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvpZ', symObjAddr: 0xA9F0, symBinAddr: 0x91630, symSize: 0x0 } - - { offsetInCU: 0x45B, offset: 0x907B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkeySSvpZ', symObjAddr: 0xAA00, symBinAddr: 0x91640, symSize: 0x0 } - - { offsetInCU: 0x475, offset: 0x907CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvpZ', symObjAddr: 0xAA10, symBinAddr: 0x91650, symSize: 0x0 } - - { offsetInCU: 0x48F, offset: 0x907E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKeySSvpZ', symObjAddr: 0xAA20, symBinAddr: 0x91660, symSize: 0x0 } - - { offsetInCU: 0x4A9, offset: 0x90803, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKeySSvpZ', symObjAddr: 0xAA30, symBinAddr: 0x91670, symSize: 0x0 } - - { offsetInCU: 0x4C3, offset: 0x9081D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKeySSvpZ', symObjAddr: 0xAA40, symBinAddr: 0x91680, symSize: 0x0 } - - { offsetInCU: 0x4DD, offset: 0x90837, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKeySSvpZ', symObjAddr: 0xAA50, symBinAddr: 0x91690, symSize: 0x0 } - - { offsetInCU: 0x4F7, offset: 0x90851, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKeySSvpZ', symObjAddr: 0xAA60, symBinAddr: 0x916A0, symSize: 0x0 } - - { offsetInCU: 0x511, offset: 0x9086B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKeySSvpZ', symObjAddr: 0xAA70, symBinAddr: 0x916B0, symSize: 0x0 } - - { offsetInCU: 0x52B, offset: 0x90885, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKeySSvpZ', symObjAddr: 0xAA80, symBinAddr: 0x916C0, symSize: 0x0 } - - { offsetInCU: 0x545, offset: 0x9089F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKeySSvpZ', symObjAddr: 0xAA90, symBinAddr: 0x916D0, symSize: 0x0 } - - { offsetInCU: 0x55F, offset: 0x908B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvpZ', symObjAddr: 0xAAA0, symBinAddr: 0x916E0, symSize: 0x0 } - - { offsetInCU: 0x579, offset: 0x908D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKeySSvpZ', symObjAddr: 0xAAB0, symBinAddr: 0x916F0, symSize: 0x0 } - - { offsetInCU: 0x593, offset: 0x908ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKeySSvpZ', symObjAddr: 0xAAC0, symBinAddr: 0x91700, symSize: 0x0 } - - { offsetInCU: 0x5AD, offset: 0x90907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKeySSvpZ', symObjAddr: 0xAAD0, symBinAddr: 0x91710, symSize: 0x0 } - - { offsetInCU: 0x5C7, offset: 0x90921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKeySSvpZ', symObjAddr: 0xAAE0, symBinAddr: 0x91720, symSize: 0x0 } - - { offsetInCU: 0x5E1, offset: 0x9093B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKeySSvpZ', symObjAddr: 0xAAF0, symBinAddr: 0x91730, symSize: 0x0 } - - { offsetInCU: 0x5FB, offset: 0x90955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKeySSvpZ', symObjAddr: 0xAB00, symBinAddr: 0x91740, symSize: 0x0 } - - { offsetInCU: 0x615, offset: 0x9096F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekeySSvpZ', symObjAddr: 0xAB10, symBinAddr: 0x91750, symSize: 0x0 } - - { offsetInCU: 0x62F, offset: 0x90989, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekeySSvpZ', symObjAddr: 0xAB20, symBinAddr: 0x91760, symSize: 0x0 } - - { offsetInCU: 0x649, offset: 0x909A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkeySSvpZ', symObjAddr: 0xAB30, symBinAddr: 0x91770, symSize: 0x0 } - - { offsetInCU: 0x657, offset: 0x909B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKeySSvau', symObjAddr: 0x0, symBinAddr: 0x732C0, symSize: 0x30 } - - { offsetInCU: 0x675, offset: 0x909CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKeySSvau', symObjAddr: 0x30, symBinAddr: 0x732F0, symSize: 0x30 } - - { offsetInCU: 0x693, offset: 0x909ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkeySSvau', symObjAddr: 0x60, symBinAddr: 0x73320, symSize: 0x30 } - - { offsetInCU: 0x6B1, offset: 0x90A0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkeySSvau', symObjAddr: 0x90, symBinAddr: 0x73350, symSize: 0x30 } - - { offsetInCU: 0x6CF, offset: 0x90A29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekeySSvau', symObjAddr: 0xC0, symBinAddr: 0x73380, symSize: 0x30 } - - { offsetInCU: 0x6F9, offset: 0x90A53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0xF0, symBinAddr: 0x733B0, symSize: 0x20 } - - { offsetInCU: 0x714, offset: 0x90A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x230, symBinAddr: 0x734F0, symSize: 0x410 } - - { offsetInCU: 0x768, offset: 0x90AC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x750, symBinAddr: 0x73A10, symSize: 0x10 } - - { offsetInCU: 0x784, offset: 0x90ADE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x760, symBinAddr: 0x73A20, symSize: 0x20 } - - { offsetInCU: 0x7AE, offset: 0x90B08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkeySSvau', symObjAddr: 0x110, symBinAddr: 0x733D0, symSize: 0x30 } - - { offsetInCU: 0x7CC, offset: 0x90B26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKeySSvau', symObjAddr: 0x140, symBinAddr: 0x73400, symSize: 0x30 } - - { offsetInCU: 0x7EA, offset: 0x90B44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTTSSvau', symObjAddr: 0x170, symBinAddr: 0x73430, symSize: 0x30 } - - { offsetInCU: 0x808, offset: 0x90B62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTPSSvau', symObjAddr: 0x1A0, symBinAddr: 0x73460, symSize: 0x30 } - - { offsetInCU: 0x826, offset: 0x90B80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQPSSvau', symObjAddr: 0x1D0, symBinAddr: 0x73490, symSize: 0x30 } - - { offsetInCU: 0x844, offset: 0x90B9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKeySSvau', symObjAddr: 0x200, symBinAddr: 0x734C0, symSize: 0x30 } - - { offsetInCU: 0x86D, offset: 0x90BC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x660, symBinAddr: 0x73920, symSize: 0x10 } - - { offsetInCU: 0x881, offset: 0x90BDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x670, symBinAddr: 0x73930, symSize: 0x30 } - - { offsetInCU: 0x8AB, offset: 0x90C05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x7A0, symBinAddr: 0x73A40, symSize: 0x80 } - - { offsetInCU: 0x8BF, offset: 0x90C19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x820, symBinAddr: 0x73AC0, symSize: 0xD0 } - - { offsetInCU: 0x8D3, offset: 0x90C2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x8F0, symBinAddr: 0x73B90, symSize: 0x10 } - - { offsetInCU: 0x8E7, offset: 0x90C41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x900, symBinAddr: 0x73BA0, symSize: 0x10 } - - { offsetInCU: 0x8FB, offset: 0x90C55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x910, symBinAddr: 0x73BB0, symSize: 0x10 } - - { offsetInCU: 0x90F, offset: 0x90C69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x920, symBinAddr: 0x73BC0, symSize: 0x10 } - - { offsetInCU: 0x923, offset: 0x90C7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV08endPointC0_WZ', symObjAddr: 0x930, symBinAddr: 0x73BD0, symSize: 0x30 } - - { offsetInCU: 0x93D, offset: 0x90C97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV8language_WZ', symObjAddr: 0x960, symBinAddr: 0x73C00, symSize: 0x30 } - - { offsetInCU: 0x957, offset: 0x90CB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV7version_WZ', symObjAddr: 0x990, symBinAddr: 0x73C30, symSize: 0x30 } - - { offsetInCU: 0x971, offset: 0x90CCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolMQTT_WZ', symObjAddr: 0x9C0, symBinAddr: 0x73C60, symSize: 0x30 } - - { offsetInCU: 0x98B, offset: 0x90CE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolHTTP_WZ', symObjAddr: 0x9F0, symBinAddr: 0x73C90, symSize: 0x30 } - - { offsetInCU: 0x9A5, offset: 0x90CFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV12protocolAMQP_WZ', symObjAddr: 0xA20, symBinAddr: 0x73CC0, symSize: 0x30 } - - { offsetInCU: 0x9BF, offset: 0x90D19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12SDKConstantsV11sslPassword_WZ', symObjAddr: 0xA50, symBinAddr: 0x73CF0, symSize: 0x30 } - - { offsetInCU: 0x9E0, offset: 0x90D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4cpId_WZ', symObjAddr: 0xA80, symBinAddr: 0x73D20, symSize: 0x30 } - - { offsetInCU: 0x9FA, offset: 0x90D54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV8uniqueId_WZ', symObjAddr: 0xAB0, symBinAddr: 0x73D50, symSize: 0x30 } - - { offsetInCU: 0xA14, offset: 0x90D6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6option_WZ', symObjAddr: 0xAE0, symBinAddr: 0x73D80, symSize: 0x30 } - - { offsetInCU: 0xA2E, offset: 0x90D88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9attribute_WZ', symObjAddr: 0xB10, symBinAddr: 0x73DB0, symSize: 0x30 } - - { offsetInCU: 0xA48, offset: 0x90DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV7setting_WZ', symObjAddr: 0xB40, symBinAddr: 0x73DE0, symSize: 0x30 } - - { offsetInCU: 0xA62, offset: 0x90DBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV11protocolKey_WZ', symObjAddr: 0xB70, symBinAddr: 0x73E10, symSize: 0x30 } - - { offsetInCU: 0xA7C, offset: 0x90DD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV6device_WZ', symObjAddr: 0xBA0, symBinAddr: 0x73E40, symSize: 0x30 } - - { offsetInCU: 0xA96, offset: 0x90DF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV9sdkConfig_WZ', symObjAddr: 0xBD0, symBinAddr: 0x73E70, symSize: 0x30 } - - { offsetInCU: 0xAB0, offset: 0x90E0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10DeviceSyncV7RequestV4rule_WZ', symObjAddr: 0xC00, symBinAddr: 0x73EA0, symSize: 0x30 } - - { offsetInCU: 0xACB, offset: 0x90E25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dateKey_WZ', symObjAddr: 0xC30, symBinAddr: 0x73ED0, symSize: 0x30 } - - { offsetInCU: 0xAE5, offset: 0x90E3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7dataKey_WZ', symObjAddr: 0xC60, symBinAddr: 0x73F00, symSize: 0x30 } - - { offsetInCU: 0xAFF, offset: 0x90E59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6ackKey_WZ', symObjAddr: 0xC90, symBinAddr: 0x73F30, symSize: 0x30 } - - { offsetInCU: 0xB19, offset: 0x90E73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV7typeKey_WZ', symObjAddr: 0xCC0, symBinAddr: 0x73F60, symSize: 0x30 } - - { offsetInCU: 0xB33, offset: 0x90E8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV9statusKey_WZ', symObjAddr: 0xCF0, symBinAddr: 0x73F90, symSize: 0x30 } - - { offsetInCU: 0xB4D, offset: 0x90EA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV10messageKey_WZ', symObjAddr: 0xD20, symBinAddr: 0x73FC0, symSize: 0x30 } - - { offsetInCU: 0xB67, offset: 0x90EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DictAckKeysV6cidKey_WZ', symObjAddr: 0xD50, symBinAddr: 0x73FF0, symSize: 0x30 } - - { offsetInCU: 0xB81, offset: 0x90EDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20DictSyncresponseKeysV7metaKey_WZ', symObjAddr: 0xD80, symBinAddr: 0x74020, symSize: 0x30 } - - { offsetInCU: 0xB9B, offset: 0x90EF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5dfKey_WZ', symObjAddr: 0xDB0, symBinAddr: 0x74050, symSize: 0x30 } - - { offsetInCU: 0xBB5, offset: 0x90F0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV5atKey_WZ', symObjAddr: 0xDE0, symBinAddr: 0x74080, symSize: 0x30 } - - { offsetInCU: 0xBCF, offset: 0x90F29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV6gtwKey_WZ', symObjAddr: 0xE10, symBinAddr: 0x740B0, symSize: 0x30 } - - { offsetInCU: 0xBE9, offset: 0x90F43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12DictMetaKeysV4gKey_WZ', symObjAddr: 0xE40, symBinAddr: 0x740E0, symSize: 0x30 } - - { offsetInCU: 0xC03, offset: 0x90F5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7cpIDkey_WZ', symObjAddr: 0xE70, symBinAddr: 0x74110, symSize: 0x30 } - - { offsetInCU: 0xC1D, offset: 0x90F77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11uniqueIDKey_WZ', symObjAddr: 0xEA0, symBinAddr: 0x74140, symSize: 0x30 } - - { offsetInCU: 0xC37, offset: 0x90F91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4tKey_WZ', symObjAddr: 0xED0, symBinAddr: 0x74170, symSize: 0x30 } - - { offsetInCU: 0xC51, offset: 0x90FAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5mtKey_WZ', symObjAddr: 0xF00, symBinAddr: 0x741A0, symSize: 0x30 } - - { offsetInCU: 0xC6B, offset: 0x90FC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4dKey_WZ', symObjAddr: 0xF30, symBinAddr: 0x741D0, symSize: 0x30 } - - { offsetInCU: 0xC85, offset: 0x90FDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6sdkKey_WZ', symObjAddr: 0xF60, symBinAddr: 0x74200, symSize: 0x30 } - - { offsetInCU: 0xC9F, offset: 0x90FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11languageKey_WZ', symObjAddr: 0xF90, symBinAddr: 0x74230, symSize: 0x30 } - - { offsetInCU: 0xCB9, offset: 0x91013, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10versionKey_WZ', symObjAddr: 0xFC0, symBinAddr: 0x74260, symSize: 0x30 } - - { offsetInCU: 0xCD3, offset: 0x9102D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7dataKey_WZ', symObjAddr: 0xFF0, symBinAddr: 0x74290, symSize: 0x30 } - - { offsetInCU: 0xCED, offset: 0x91047, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV5idkey_WZ', symObjAddr: 0x1020, symBinAddr: 0x742C0, symSize: 0x30 } - - { offsetInCU: 0xD07, offset: 0x91061, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6tagkey_WZ', symObjAddr: 0x1050, symBinAddr: 0x742F0, symSize: 0x30 } - - { offsetInCU: 0xD21, offset: 0x9107B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7datekey_WZ', symObjAddr: 0x1080, symBinAddr: 0x74320, symSize: 0x30 } - - { offsetInCU: 0xD3B, offset: 0x91095, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV4gkey_WZ', symObjAddr: 0x10B0, symBinAddr: 0x74350, symSize: 0x30 } - - { offsetInCU: 0xD55, offset: 0x910AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8errorkey_WZ', symObjAddr: 0x10E0, symBinAddr: 0x74380, symSize: 0x30 } - - { offsetInCU: 0xD6F, offset: 0x910C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV9desireKey_WZ', symObjAddr: 0x1110, symBinAddr: 0x743B0, symSize: 0x30 } - - { offsetInCU: 0xD89, offset: 0x910E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6hasKey_WZ', symObjAddr: 0x1140, symBinAddr: 0x743E0, symSize: 0x30 } - - { offsetInCU: 0xDA3, offset: 0x910FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7attrKey_WZ', symObjAddr: 0x1170, symBinAddr: 0x74410, symSize: 0x30 } - - { offsetInCU: 0xDBD, offset: 0x91117, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6setKey_WZ', symObjAddr: 0x11A0, symBinAddr: 0x74440, symSize: 0x30 } - - { offsetInCU: 0xDD7, offset: 0x91131, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8rulesKey_WZ', symObjAddr: 0x11D0, symBinAddr: 0x74470, symSize: 0x30 } - - { offsetInCU: 0xDF1, offset: 0x9114B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6otaKey_WZ', symObjAddr: 0x1200, symBinAddr: 0x744A0, symSize: 0x30 } - - { offsetInCU: 0xE0B, offset: 0x91165, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV17conditionValueKey_WZ', symObjAddr: 0x1230, symBinAddr: 0x744D0, symSize: 0x30 } - - { offsetInCU: 0xE25, offset: 0x9117F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV19subscriptionGUIDKey_WZ', symObjAddr: 0x1260, symBinAddr: 0x74500, symSize: 0x30 } - - { offsetInCU: 0xE3F, offset: 0x91199, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14commandTypeKey_WZ', symObjAddr: 0x1290, symBinAddr: 0x74530, symSize: 0x30 } - - { offsetInCU: 0xE59, offset: 0x911B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV7guidKey_WZ', symObjAddr: 0x12C0, symBinAddr: 0x74560, symSize: 0x30 } - - { offsetInCU: 0xE73, offset: 0x911CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV10commandKey_WZ', symObjAddr: 0x12F0, symBinAddr: 0x74590, symSize: 0x30 } - - { offsetInCU: 0xE8D, offset: 0x911E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV6ackKey_WZ', symObjAddr: 0x1320, symBinAddr: 0x745C0, symSize: 0x30 } - - { offsetInCU: 0xEA7, offset: 0x91201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV8ackIDKey_WZ', symObjAddr: 0x1350, symBinAddr: 0x745F0, symSize: 0x30 } - - { offsetInCU: 0xEC1, offset: 0x9121B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV12errorCodeKey_WZ', symObjAddr: 0x1380, symBinAddr: 0x74620, symSize: 0x30 } - - { offsetInCU: 0xEDB, offset: 0x91235, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11ruleGUIDKey_WZ', symObjAddr: 0x13B0, symBinAddr: 0x74650, symSize: 0x30 } - - { offsetInCU: 0xEF5, offset: 0x9124F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14medsageTypekey_WZ', symObjAddr: 0x13E0, symBinAddr: 0x74680, symSize: 0x30 } - - { offsetInCU: 0xF0F, offset: 0x91269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV14displayNamekey_WZ', symObjAddr: 0x1410, symBinAddr: 0x746B0, symSize: 0x30 } - - { offsetInCU: 0xF29, offset: 0x91283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8DictkeysV11protocolkey_WZ', symObjAddr: 0x1440, symBinAddr: 0x746E0, symSize: 0x30 } - - { offsetInCU: 0xF97, offset: 0x912F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x1470, symBinAddr: 0x74710, symSize: 0x2B6 } - - { offsetInCU: 0x1226, offset: 0x91580, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x640, symBinAddr: 0x73900, symSize: 0x20 } - - { offsetInCU: 0x12E0, offset: 0x9163A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x6A0, symBinAddr: 0x73960, symSize: 0x40 } - - { offsetInCU: 0x13B8, offset: 0x91712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E0, symBinAddr: 0x739A0, symSize: 0x30 } - - { offsetInCU: 0x1434, offset: 0x9178E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x710, symBinAddr: 0x739D0, symSize: 0x40 } - - { offsetInCU: 0x2B, offset: 0x91957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x749D0, symSize: 0x20 } - - { offsetInCU: 0x6D, offset: 0x91999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x749D0, symSize: 0x20 } - - { offsetInCU: 0xB9, offset: 0x919E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x749F0, symSize: 0x14 } - - { offsetInCU: 0x4F, offset: 0x91B26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1FD8, symBinAddr: 0x90D88, symSize: 0x0 } - - { offsetInCU: 0x98, offset: 0x91B6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0x1B0, symBinAddr: 0x74BC0, symSize: 0x30 } - - { offsetInCU: 0x117, offset: 0x91BEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tF', symObjAddr: 0x1E0, symBinAddr: 0x74BF0, symSize: 0x570 } - - { offsetInCU: 0x306, offset: 0x91DDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_', symObjAddr: 0x790, symBinAddr: 0x75160, symSize: 0x50 } - - { offsetInCU: 0x375, offset: 0x91E4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_', symObjAddr: 0x7F0, symBinAddr: 0x751C0, symSize: 0x50 } - - { offsetInCU: 0x3E4, offset: 0x91EBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_', symObjAddr: 0x850, symBinAddr: 0x75220, symSize: 0x50 } - - { offsetInCU: 0x453, offset: 0x91F2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_', symObjAddr: 0x8B0, symBinAddr: 0x75280, symSize: 0x50 } - - { offsetInCU: 0x4C2, offset: 0x91F99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_', symObjAddr: 0x910, symBinAddr: 0x752E0, symSize: 0x50 } - - { offsetInCU: 0x5C8, offset: 0x9209F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xA20, symBinAddr: 0x753A0, symSize: 0x40 } - - { offsetInCU: 0x639, offset: 0x92110, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xA60, symBinAddr: 0x753E0, symSize: 0x10 } - - { offsetInCU: 0x686, offset: 0x9215D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA70, symBinAddr: 0x753F0, symSize: 0x50 } - - { offsetInCU: 0x707, offset: 0x921DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0xBE0, symBinAddr: 0x75560, symSize: 0x30 } - - { offsetInCU: 0x768, offset: 0x9223F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xC10, symBinAddr: 0x75590, symSize: 0x50 } - - { offsetInCU: 0x7E9, offset: 0x922C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xC60, symBinAddr: 0x755E0, symSize: 0x40 } - - { offsetInCU: 0x884, offset: 0x9235B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xCA0, symBinAddr: 0x75620, symSize: 0x80 } - - { offsetInCU: 0x933, offset: 0x9240A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xD40, symBinAddr: 0x756A0, symSize: 0x70 } - - { offsetInCU: 0x9F6, offset: 0x924CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xDB0, symBinAddr: 0x75710, symSize: 0x80 } - - { offsetInCU: 0xAA5, offset: 0x9257C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xE30, symBinAddr: 0x75790, symSize: 0x30 } - - { offsetInCU: 0xB34, offset: 0x9260B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE60, symBinAddr: 0x757C0, symSize: 0x30 } - - { offsetInCU: 0xBC3, offset: 0x9269A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE90, symBinAddr: 0x757F0, symSize: 0x40 } - - { offsetInCU: 0xC53, offset: 0x9272A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xED0, symBinAddr: 0x75830, symSize: 0x40 } - - { offsetInCU: 0xCE6, offset: 0x927BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF10, symBinAddr: 0x75870, symSize: 0x40 } - - { offsetInCU: 0xD79, offset: 0x92850, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF50, symBinAddr: 0x758B0, symSize: 0x40 } - - { offsetInCU: 0xE0C, offset: 0x928E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF90, symBinAddr: 0x758F0, symSize: 0x40 } - - { offsetInCU: 0xE9F, offset: 0x92976, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xFD0, symBinAddr: 0x75930, symSize: 0x30 } - - { offsetInCU: 0xF08, offset: 0x929DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x1000, symBinAddr: 0x75960, symSize: 0x40 } - - { offsetInCU: 0xF69, offset: 0x92A40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x1040, symBinAddr: 0x759A0, symSize: 0x130 } - - { offsetInCU: 0x1050, offset: 0x92B27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0x1170, symBinAddr: 0x75AD0, symSize: 0xB0 } - - { offsetInCU: 0x1137, offset: 0x92C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1220, symBinAddr: 0x75B80, symSize: 0x90 } - - { offsetInCU: 0x11D2, offset: 0x92CA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x12B0, symBinAddr: 0x75C10, symSize: 0xF0 } - - { offsetInCU: 0x11FF, offset: 0x92CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x13A0, symBinAddr: 0x75D00, symSize: 0x20 } - - { offsetInCU: 0x12A5, offset: 0x92D7C, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xE0, symBinAddr: 0x74AF0, symSize: 0x50 } - - { offsetInCU: 0x12BD, offset: 0x92D94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x130, symBinAddr: 0x74B40, symSize: 0x80 } - - { offsetInCU: 0x135B, offset: 0x92E32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU_TA', symObjAddr: 0x7E0, symBinAddr: 0x751B0, symSize: 0x10 } - - { offsetInCU: 0x136F, offset: 0x92E46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU0_TA', symObjAddr: 0x840, symBinAddr: 0x75210, symSize: 0x10 } - - { offsetInCU: 0x1383, offset: 0x92E5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU1_TA', symObjAddr: 0x8A0, symBinAddr: 0x75270, symSize: 0x10 } - - { offsetInCU: 0x1397, offset: 0x92E6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU2_TA', symObjAddr: 0x900, symBinAddr: 0x752D0, symSize: 0x10 } - - { offsetInCU: 0x13AB, offset: 0x92E82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6configyAA0A14TConnectConfigV_tFyypSgcfU3_TA', symObjAddr: 0x960, symBinAddr: 0x75330, symSize: 0x10 } - - { offsetInCU: 0x13BF, offset: 0x92E96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x9C0, symBinAddr: 0x75340, symSize: 0x20 } - - { offsetInCU: 0x13D3, offset: 0x92EAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOf', symObjAddr: 0x9E0, symBinAddr: 0x75360, symSize: 0x40 } - - { offsetInCU: 0x1434, offset: 0x92F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x16D0, symBinAddr: 0x76030, symSize: 0x10 } - - { offsetInCU: 0x1448, offset: 0x92F1F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x16E0, symBinAddr: 0x76040, symSize: 0x20 } - - { offsetInCU: 0x145C, offset: 0x92F33, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1700, symBinAddr: 0x76060, symSize: 0x10 } - - { offsetInCU: 0x1492, offset: 0x92F69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1780, symBinAddr: 0x76070, symSize: 0x390 } - - { offsetInCU: 0x156A, offset: 0x93041, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1B10, symBinAddr: 0x76400, symSize: 0x450 } - - { offsetInCU: 0x1686, offset: 0x9315D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x74A10, symSize: 0x10 } - - { offsetInCU: 0x16A2, offset: 0x93179, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SSt_Tg5', symObjAddr: 0x10, symBinAddr: 0x74A20, symSize: 0x10 } - - { offsetInCU: 0x16BE, offset: 0x93195, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x20, symBinAddr: 0x74A30, symSize: 0x10 } - - { offsetInCU: 0x16DA, offset: 0x931B1, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypSgt_Tg5', symObjAddr: 0x30, symBinAddr: 0x74A40, symSize: 0x10 } - - { offsetInCU: 0x16F6, offset: 0x931CD, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x40, symBinAddr: 0x74A50, symSize: 0x10 } - - { offsetInCU: 0x1712, offset: 0x931E9, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x74A60, symSize: 0x10 } - - { offsetInCU: 0x172E, offset: 0x93205, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x60, symBinAddr: 0x74A70, symSize: 0x10 } - - { offsetInCU: 0x174A, offset: 0x93221, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x70, symBinAddr: 0x74A80, symSize: 0x10 } - - { offsetInCU: 0x1766, offset: 0x9323D, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSiSg_Tg5', symObjAddr: 0x80, symBinAddr: 0x74A90, symSize: 0x10 } - - { offsetInCU: 0x1782, offset: 0x93259, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x90, symBinAddr: 0x74AA0, symSize: 0x10 } - - { offsetInCU: 0x179E, offset: 0x93275, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0xA0, symBinAddr: 0x74AB0, symSize: 0x20 } - - { offsetInCU: 0x17BA, offset: 0x93291, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0xC0, symBinAddr: 0x74AD0, symSize: 0x20 } -... diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/Info.plist b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/Info.plist similarity index 100% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/Info.plist rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/Info.plist diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h similarity index 99% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h index a76ebf6..7afd2d9 100644 --- a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_AWS_SWIFT_H #define IOTCONNECT2_AWS_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist similarity index 70% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist index 708cd18..d35d017 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Info.plist and b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Info.plist differ diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS new file mode 100755 index 0000000..7e865d5 Binary files /dev/null and b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/IoTConnect2_AWS differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/LICENSE b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/LICENSE similarity index 100% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/LICENSE rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/LICENSE diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..921758c --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,11121 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS12ReachabilityC", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2_AWS.DebugConfig", + "usr": "s:15IoTConnect2_AWS11DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2_AWS.MqttConfig", + "usr": "s:15IoTConnect2_AWS10MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS11DebugConfigV", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS10MqttConfigV", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PREQA", + "printedName": "PREQA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "POC", + "printedName": "POC", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS0A4TCPfO", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS9SSLOptionV", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS11CommandTypeO", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:errorBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS9SDKClientC", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", + "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10694, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10714, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 21067, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1240, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1782, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1240, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1782, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4310, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17549, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19290, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33316, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7566, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 2071, + "length": 16, + "value": "\"^[a-zA-Z0-9]+$\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 2120, + "length": 17, + "value": "\"^[\\w\\d—-]*$\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6157, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6177, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6405, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6425, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6655, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6675, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 7555, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 10576, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface index 42f9806..a382382 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation @@ -219,7 +218,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2_AWS.SDKClient - public func initialize(config: IoTConnect2_AWS.IoTConnectConfig) + public func initialize(config: IoTConnect2_AWS.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..34ebd6c Binary files /dev/null and b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface similarity index 98% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface index 42f9806..a382382 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphoneos.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation @@ -219,7 +218,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2_AWS.SDKClient - public func initialize(config: IoTConnect2_AWS.IoTConnectConfig) + public func initialize(config: IoTConnect2_AWS.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/module.modulemap b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/module.modulemap similarity index 100% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/module.modulemap rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/IoTConnect2_AWS.framework/Modules/module.modulemap diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS new file mode 100644 index 0000000..35d3eab Binary files /dev/null and b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS differ diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml new file mode 100644 index 0000000..6b2658f --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml @@ -0,0 +1,1664 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' +relocations: + - { offsetInCU: 0x34, offset: 0x58969, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6FEB0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5899E, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6FEE8, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58A03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3A9F8, symBinAddr: 0x88BC8, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x58CA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x97CC, symBinAddr: 0x11764, symSize: 0x15FC } + - { offsetInCU: 0x1C16, offset: 0x5A5CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x8000, symSize: 0x3C } + - { offsetInCU: 0x1DD2, offset: 0x5A786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1B6C, symBinAddr: 0x9B2C, symSize: 0x8 } + - { offsetInCU: 0x1DE6, offset: 0x5A79A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1B74, symBinAddr: 0x9B34, symSize: 0x3C } + - { offsetInCU: 0x1DFA, offset: 0x5A7AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1BB0, symBinAddr: 0x9B70, symSize: 0x168 } + - { offsetInCU: 0x2285, offset: 0x5AC39, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x85B0, symBinAddr: 0x10560, symSize: 0xC } + - { offsetInCU: 0x2299, offset: 0x5AC4D, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x85BC, symBinAddr: 0x1056C, symSize: 0x4 } + - { offsetInCU: 0x22AD, offset: 0x5AC61, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x85C0, symBinAddr: 0x10570, symSize: 0x20 } + - { offsetInCU: 0x22C1, offset: 0x5AC75, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x85E0, symBinAddr: 0x10590, symSize: 0x28 } + - { offsetInCU: 0x24E6, offset: 0x5AE9A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8C20, symBinAddr: 0x10BB8, symSize: 0x2C } + - { offsetInCU: 0x24FA, offset: 0x5AEAE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8C4C, symBinAddr: 0x10BE4, symSize: 0x2C } + - { offsetInCU: 0x250E, offset: 0x5AEC2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8CB8, symBinAddr: 0x10C50, symSize: 0x2C } + - { offsetInCU: 0x2522, offset: 0x5AED6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8CE4, symBinAddr: 0x10C7C, symSize: 0x2C } + - { offsetInCU: 0x2576, offset: 0x5AF2A, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x90F4, symBinAddr: 0x1108C, symSize: 0x68 } + - { offsetInCU: 0x2BAB, offset: 0x5B55F, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xAE38, symBinAddr: 0x12DD0, symSize: 0x40 } + - { offsetInCU: 0x2BBF, offset: 0x5B573, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xAE78, symBinAddr: 0x12E10, symSize: 0x20 } + - { offsetInCU: 0x2BD3, offset: 0x5B587, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xAE98, symBinAddr: 0x12E30, symSize: 0x10 } + - { offsetInCU: 0x2BE7, offset: 0x5B59B, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xAEA8, symBinAddr: 0x12E40, symSize: 0x3C } + - { offsetInCU: 0x2BFB, offset: 0x5B5AF, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAF44, symBinAddr: 0x12EDC, symSize: 0x44 } + - { offsetInCU: 0x2C0F, offset: 0x5B5C3, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB110, symBinAddr: 0x130A8, symSize: 0x8 } + - { offsetInCU: 0x2C23, offset: 0x5B5D7, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB118, symBinAddr: 0x130B0, symSize: 0x10 } + - { offsetInCU: 0x2C37, offset: 0x5B5EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xB128, symBinAddr: 0x130C0, symSize: 0x5C } + - { offsetInCU: 0x2C4B, offset: 0x5B5FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xB184, symBinAddr: 0x1311C, symSize: 0x30C } + - { offsetInCU: 0x2C5F, offset: 0x5B613, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB490, symBinAddr: 0x13428, symSize: 0x240 } + - { offsetInCU: 0x2C73, offset: 0x5B627, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xB6D0, symBinAddr: 0x13668, symSize: 0x70 } + - { offsetInCU: 0x2C87, offset: 0x5B63B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xB740, symBinAddr: 0x136D8, symSize: 0x34 } + - { offsetInCU: 0x2C9B, offset: 0x5B64F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xB774, symBinAddr: 0x1370C, symSize: 0x174 } + - { offsetInCU: 0x2CAF, offset: 0x5B663, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xB8E8, symBinAddr: 0x13880, symSize: 0xB4 } + - { offsetInCU: 0x2CC3, offset: 0x5B677, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xB99C, symBinAddr: 0x13934, symSize: 0x10 } + - { offsetInCU: 0x2CD7, offset: 0x5B68B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xB9AC, symBinAddr: 0x13944, symSize: 0x34 } + - { offsetInCU: 0x2CEB, offset: 0x5B69F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xBA60, symBinAddr: 0x139F8, symSize: 0x5C } + - { offsetInCU: 0x2CFF, offset: 0x5B6B3, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBB60, symBinAddr: 0x13AF8, symSize: 0x2C } + - { offsetInCU: 0x2D13, offset: 0x5B6C7, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBB8C, symBinAddr: 0x13B24, symSize: 0x2C } + - { offsetInCU: 0x2D27, offset: 0x5B6DB, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBBB8, symBinAddr: 0x13B50, symSize: 0x2C } + - { offsetInCU: 0x2D3B, offset: 0x5B6EF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBBE4, symBinAddr: 0x13B7C, symSize: 0x2C } + - { offsetInCU: 0x2D4F, offset: 0x5B703, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBC10, symBinAddr: 0x13BA8, symSize: 0x2C } + - { offsetInCU: 0x2D63, offset: 0x5B717, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBC3C, symBinAddr: 0x13BD4, symSize: 0x2C } + - { offsetInCU: 0x2D77, offset: 0x5B72B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBC68, symBinAddr: 0x13C00, symSize: 0x2C } + - { offsetInCU: 0x314C, offset: 0x5BB00, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6ECC, symBinAddr: 0xEE8C, symSize: 0x6C } + - { offsetInCU: 0x3260, offset: 0x5BC14, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x861C, symBinAddr: 0x105CC, symSize: 0x80 } + - { offsetInCU: 0x32F1, offset: 0x5BCA5, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x869C, symBinAddr: 0x1064C, symSize: 0x90 } + - { offsetInCU: 0x3391, offset: 0x5BD45, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x872C, symBinAddr: 0x106DC, symSize: 0x14 } + - { offsetInCU: 0x33CF, offset: 0x5BD83, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x874C, symBinAddr: 0x106FC, symSize: 0x8 } + - { offsetInCU: 0x3432, offset: 0x5BDE6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x8754, symBinAddr: 0x10704, symSize: 0x14 } + - { offsetInCU: 0x34E3, offset: 0x5BE97, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8768, symBinAddr: 0x10718, symSize: 0x14 } + - { offsetInCU: 0x358C, offset: 0x5BF40, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x877C, symBinAddr: 0x1072C, symSize: 0x14 } + - { offsetInCU: 0x3633, offset: 0x5BFE7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8790, symBinAddr: 0x10740, symSize: 0x30 } + - { offsetInCU: 0x37BF, offset: 0x5C173, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x87C0, symBinAddr: 0x10770, symSize: 0x2C } + - { offsetInCU: 0x3956, offset: 0x5C30A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x87EC, symBinAddr: 0x1079C, symSize: 0x24 } + - { offsetInCU: 0x3A42, offset: 0x5C3F6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8810, symBinAddr: 0x107C0, symSize: 0x14 } + - { offsetInCU: 0x3AA8, offset: 0x5C45C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x8824, symBinAddr: 0x107D4, symSize: 0x14 } + - { offsetInCU: 0x3B0E, offset: 0x5C4C2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8838, symBinAddr: 0x107E8, symSize: 0x14 } + - { offsetInCU: 0x3B8D, offset: 0x5C541, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x884C, symBinAddr: 0x107FC, symSize: 0x14 } + - { offsetInCU: 0x3C40, offset: 0x5C5F4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8860, symBinAddr: 0x10810, symSize: 0x14 } + - { offsetInCU: 0x3CC1, offset: 0x5C675, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8874, symBinAddr: 0x10824, symSize: 0x14 } + - { offsetInCU: 0x3D83, offset: 0x5C737, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8888, symBinAddr: 0x10838, symSize: 0x14 } + - { offsetInCU: 0x3E1D, offset: 0x5C7D1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x889C, symBinAddr: 0x1084C, symSize: 0x10 } + - { offsetInCU: 0x3E85, offset: 0x5C839, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x88AC, symBinAddr: 0x1085C, symSize: 0x18 } + - { offsetInCU: 0x3EA1, offset: 0x5C855, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x88C4, symBinAddr: 0x10874, symSize: 0x14 } + - { offsetInCU: 0x3F1D, offset: 0x5C8D1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x88F4, symBinAddr: 0x108A4, symSize: 0x8 } + - { offsetInCU: 0x3F39, offset: 0x5C8ED, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x88FC, symBinAddr: 0x108AC, symSize: 0x14 } + - { offsetInCU: 0x3F6A, offset: 0x5C91E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8910, symBinAddr: 0x108C0, symSize: 0x14 } + - { offsetInCU: 0x3F9B, offset: 0x5C94F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x8924, symBinAddr: 0x108D4, symSize: 0x14 } + - { offsetInCU: 0x3FCC, offset: 0x5C980, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8938, symBinAddr: 0x108E8, symSize: 0x30 } + - { offsetInCU: 0x3FFB, offset: 0x5C9AF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8968, symBinAddr: 0x10918, symSize: 0x2C } + - { offsetInCU: 0x402C, offset: 0x5C9E0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8994, symBinAddr: 0x10944, symSize: 0x24 } + - { offsetInCU: 0x405D, offset: 0x5CA11, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x89B8, symBinAddr: 0x10968, symSize: 0x14 } + - { offsetInCU: 0x408E, offset: 0x5CA42, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x89CC, symBinAddr: 0x1097C, symSize: 0x14 } + - { offsetInCU: 0x40BF, offset: 0x5CA73, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x89E0, symBinAddr: 0x10990, symSize: 0x14 } + - { offsetInCU: 0x40F0, offset: 0x5CAA4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x89F4, symBinAddr: 0x109A4, symSize: 0x14 } + - { offsetInCU: 0x4121, offset: 0x5CAD5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8A08, symBinAddr: 0x109B8, symSize: 0x14 } + - { offsetInCU: 0x4152, offset: 0x5CB06, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8A1C, symBinAddr: 0x109CC, symSize: 0x14 } + - { offsetInCU: 0x4183, offset: 0x5CB37, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8A30, symBinAddr: 0x109E0, symSize: 0x14 } + - { offsetInCU: 0x41B4, offset: 0x5CB68, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x8A44, symBinAddr: 0x109F4, symSize: 0x10 } + - { offsetInCU: 0x41E5, offset: 0x5CB99, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x8A54, symBinAddr: 0x10A04, symSize: 0x18 } + - { offsetInCU: 0x4201, offset: 0x5CBB5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8A6C, symBinAddr: 0x10A1C, symSize: 0x14 } + - { offsetInCU: 0x4251, offset: 0x5CC05, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8A8C, symBinAddr: 0x10A3C, symSize: 0x40 } + - { offsetInCU: 0x42D9, offset: 0x5CC8D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8ACC, symBinAddr: 0x10A7C, symSize: 0x70 } + - { offsetInCU: 0x435D, offset: 0x5CD11, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8B84, symBinAddr: 0x10B34, symSize: 0x4 } + - { offsetInCU: 0x4379, offset: 0x5CD2D, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8B88, symBinAddr: 0x10B38, symSize: 0x4 } + - { offsetInCU: 0x43A4, offset: 0x5CD58, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8B8C, symBinAddr: 0x10B3C, symSize: 0x40 } + - { offsetInCU: 0x4432, offset: 0x5CDE6, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8BE4, symBinAddr: 0x10B7C, symSize: 0x3C } + - { offsetInCU: 0x4463, offset: 0x5CE17, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8D10, symBinAddr: 0x10CA8, symSize: 0x14 } + - { offsetInCU: 0x449A, offset: 0x5CE4E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8D24, symBinAddr: 0x10CBC, symSize: 0x3C } + - { offsetInCU: 0x44DA, offset: 0x5CE8E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8D60, symBinAddr: 0x10CF8, symSize: 0x88 } + - { offsetInCU: 0x4584, offset: 0x5CF38, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8E7C, symBinAddr: 0x10E14, symSize: 0x84 } + - { offsetInCU: 0x45B8, offset: 0x5CF6C, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9494, symBinAddr: 0x1142C, symSize: 0xB8 } + - { offsetInCU: 0x4690, offset: 0x5D044, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x954C, symBinAddr: 0x114E4, symSize: 0x164 } + - { offsetInCU: 0x48ED, offset: 0x5D2A1, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xADC8, symBinAddr: 0x12D60, symSize: 0x38 } + - { offsetInCU: 0x490D, offset: 0x5D2C1, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xADC8, symBinAddr: 0x12D60, symSize: 0x38 } + - { offsetInCU: 0x4921, offset: 0x5D2D5, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xADC8, symBinAddr: 0x12D60, symSize: 0x38 } + - { offsetInCU: 0x4941, offset: 0x5D2F5, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xADC8, symBinAddr: 0x12D60, symSize: 0x38 } + - { offsetInCU: 0x4955, offset: 0x5D309, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xADC8, symBinAddr: 0x12D60, symSize: 0x38 } + - { offsetInCU: 0x4969, offset: 0x5D31D, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xADC8, symBinAddr: 0x12D60, symSize: 0x38 } + - { offsetInCU: 0x497D, offset: 0x5D331, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xADC8, symBinAddr: 0x12D60, symSize: 0x38 } + - { offsetInCU: 0x4A7A, offset: 0x5D42E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAE00, symBinAddr: 0x12D98, symSize: 0x38 } + - { offsetInCU: 0x4A9A, offset: 0x5D44E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAE00, symBinAddr: 0x12D98, symSize: 0x38 } + - { offsetInCU: 0x4AAE, offset: 0x5D462, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAE00, symBinAddr: 0x12D98, symSize: 0x38 } + - { offsetInCU: 0x4ACE, offset: 0x5D482, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAE00, symBinAddr: 0x12D98, symSize: 0x38 } + - { offsetInCU: 0x4AE2, offset: 0x5D496, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAE00, symBinAddr: 0x12D98, symSize: 0x38 } + - { offsetInCU: 0x4AF6, offset: 0x5D4AA, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAE00, symBinAddr: 0x12D98, symSize: 0x38 } + - { offsetInCU: 0x4B0A, offset: 0x5D4BE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xAE00, symBinAddr: 0x12D98, symSize: 0x38 } + - { offsetInCU: 0x4D37, offset: 0x5D6EB, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8E10, symBinAddr: 0x10DA8, symSize: 0x44 } + - { offsetInCU: 0x4D60, offset: 0x5D714, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8E54, symBinAddr: 0x10DEC, symSize: 0x28 } + - { offsetInCU: 0x4D9B, offset: 0x5D74F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x8DF4, symBinAddr: 0x10D8C, symSize: 0x10 } + - { offsetInCU: 0x4DB7, offset: 0x5D76B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x8E04, symBinAddr: 0x10D9C, symSize: 0xC } + - { offsetInCU: 0x4DE5, offset: 0x5D799, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x8DE8, symBinAddr: 0x10D80, symSize: 0xC } + - { offsetInCU: 0x4EC9, offset: 0x5D87D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x8740, symBinAddr: 0x106F0, symSize: 0xC } + - { offsetInCU: 0x4EFB, offset: 0x5D8AF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x88D8, symBinAddr: 0x10888, symSize: 0x10 } + - { offsetInCU: 0x4F17, offset: 0x5D8CB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x88E8, symBinAddr: 0x10898, symSize: 0xC } + - { offsetInCU: 0x4F75, offset: 0x5D929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x803C, symSize: 0x44 } + - { offsetInCU: 0x4F89, offset: 0x5D93D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x8080, symSize: 0x4 } + - { offsetInCU: 0x4FB1, offset: 0x5D965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x8084, symSize: 0x2BC } + - { offsetInCU: 0x50E2, offset: 0x5DA96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x8340, symSize: 0x1444 } + - { offsetInCU: 0x53E3, offset: 0x5DD97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x17C4, symBinAddr: 0x9784, symSize: 0x384 } + - { offsetInCU: 0x543C, offset: 0x5DDF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1B48, symBinAddr: 0x9B08, symSize: 0x24 } + - { offsetInCU: 0x54BF, offset: 0x5DE73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D18, symBinAddr: 0x9CD8, symSize: 0x6B4 } + - { offsetInCU: 0x582C, offset: 0x5E1E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x23CC, symBinAddr: 0xA38C, symSize: 0x3E4 } + - { offsetInCU: 0x5AD7, offset: 0x5E48B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x27B0, symBinAddr: 0xA770, symSize: 0x794 } + - { offsetInCU: 0x6128, offset: 0x5EADC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2F44, symBinAddr: 0xAF04, symSize: 0x534 } + - { offsetInCU: 0x651D, offset: 0x5EED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3478, symBinAddr: 0xB438, symSize: 0x3A54 } + - { offsetInCU: 0x74F6, offset: 0x5FEAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6F48, symBinAddr: 0xEEF8, symSize: 0x150 } + - { offsetInCU: 0x75D5, offset: 0x5FF89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x7098, symBinAddr: 0xF048, symSize: 0x300 } + - { offsetInCU: 0x7832, offset: 0x601E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7398, symBinAddr: 0xF348, symSize: 0x3C8 } + - { offsetInCU: 0x7B90, offset: 0x60544, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7760, symBinAddr: 0xF710, symSize: 0x2B0 } + - { offsetInCU: 0x7D37, offset: 0x606EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C60, symBinAddr: 0xFC10, symSize: 0x31C } + - { offsetInCU: 0x7E92, offset: 0x60846, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x7F7C, symBinAddr: 0xFF2C, symSize: 0x438 } + - { offsetInCU: 0x80FC, offset: 0x60AB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x83B4, symBinAddr: 0x10364, symSize: 0x188 } + - { offsetInCU: 0x83B1, offset: 0x60D65, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8F00, symBinAddr: 0x10E98, symSize: 0x1F4 } + - { offsetInCU: 0x8436, offset: 0x60DEA, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x92B8, symBinAddr: 0x11250, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x610E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13C38, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x61121, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0x13C48, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x61208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0x13C38, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x61275, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0x13C74, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x61289, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0x13C88, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x612FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0x13D68, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x61356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0x13D80, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x613D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0x13DAC, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x61405, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x13DB4, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x61436, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0x13DD8, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x61452, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0x13DE4, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x6146E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x2398, symBinAddr: 0x16000, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x6162E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13E8, symBinAddr: 0x15050, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x61665, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1438, symBinAddr: 0x150A0, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x61688, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x27B4, symBinAddr: 0x1641C, symSize: 0x145C } + - { offsetInCU: 0x4B4, offset: 0x616E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1488, symBinAddr: 0x150F0, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x6173E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1490, symBinAddr: 0x150F8, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x61821, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x14D0, symBinAddr: 0x15138, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x61892, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1530, symBinAddr: 0x15198, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x618E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x153C, symBinAddr: 0x151A4, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x6193B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x15B8, symBinAddr: 0x15220, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x61957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x15C4, symBinAddr: 0x1522C, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x61994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1620, symBinAddr: 0x15288, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x619CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1670, symBinAddr: 0x152D8, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x619EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3C10, symBinAddr: 0x17878, symSize: 0x258 } + - { offsetInCU: 0x857, offset: 0x61A89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x15330, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61ABE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1724, symBinAddr: 0x1538C, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61AEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1748, symBinAddr: 0x153B0, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x61B0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1754, symBinAddr: 0x153BC, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x61B27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5DAC, symBinAddr: 0x199D0, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x61C00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17B0, symBinAddr: 0x15418, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x61C37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1800, symBinAddr: 0x15468, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x61C5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5F5C, symBinAddr: 0x19B80, symSize: 0x320 } + - { offsetInCU: 0xA97, offset: 0x61CC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1848, symBinAddr: 0x154B0, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x61CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1898, symBinAddr: 0x15500, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x61D2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x18BC, symBinAddr: 0x15524, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x61D4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18C8, symBinAddr: 0x15530, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x61D67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x627C, symBinAddr: 0x19EA0, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x61E17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1924, symBinAddr: 0x1558C, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x61E4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1964, symBinAddr: 0x155CC, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x61E71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x63E4, symBinAddr: 0x1A008, symSize: 0x2D8 } + - { offsetInCU: 0xCA2, offset: 0x61ED4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x19A4, symBinAddr: 0x1560C, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x61F09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x19F0, symBinAddr: 0x15658, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x61F3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1A14, symBinAddr: 0x1567C, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x61F56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x15688, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x61F72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x66BC, symBinAddr: 0x1A2E0, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x62032, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1A7C, symBinAddr: 0x156E4, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x62069, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AEC, symBinAddr: 0x15754, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x6208C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x681C, symBinAddr: 0x1A440, symSize: 0x4E8 } + - { offsetInCU: 0xEC9, offset: 0x620FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B4C, symBinAddr: 0x157B4, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x62130, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BD4, symBinAddr: 0x1583C, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x62161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BF8, symBinAddr: 0x15860, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x6217D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1C04, symBinAddr: 0x1586C, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x62199, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6DD0, symBinAddr: 0x1A9F4, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x622AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C60, symBinAddr: 0x158C8, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x622E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1CC4, symBinAddr: 0x1592C, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x62307, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7064, symBinAddr: 0x1AC88, symSize: 0x58C } + - { offsetInCU: 0x1162, offset: 0x62394, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1D14, symBinAddr: 0x1597C, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x62414, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1D2C, symBinAddr: 0x15994, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x624F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D70, symBinAddr: 0x159D8, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x6257D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1DD8, symBinAddr: 0x15A40, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x625D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DF4, symBinAddr: 0x15A5C, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x62603, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1E18, symBinAddr: 0x15A80, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x6261F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E24, symBinAddr: 0x15A8C, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x6263B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7634, symBinAddr: 0x1B258, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x626C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E80, symBinAddr: 0x15AE8, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x62700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EAC, symBinAddr: 0x15B14, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x62723, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x76F4, symBinAddr: 0x1B318, symSize: 0x1B0 } + - { offsetInCU: 0x156C, offset: 0x6279E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1ED0, symBinAddr: 0x15B38, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x627D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x15BA8, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x62804, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1F64, symBinAddr: 0x15BCC, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x62820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1F70, symBinAddr: 0x15BD8, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x6283C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x78E8, symBinAddr: 0x1B50C, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x62947, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1FCC, symBinAddr: 0x15C34, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x6297E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2024, symBinAddr: 0x15C8C, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x629A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7B2C, symBinAddr: 0x1B750, symSize: 0x370 } + - { offsetInCU: 0x17D2, offset: 0x62A04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x15CDC, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x62A39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x20D8, symBinAddr: 0x15D40, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x62A6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x20FC, symBinAddr: 0x15D64, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x62A86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2108, symBinAddr: 0x15D70, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x62AA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E9C, symBinAddr: 0x1BAC0, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x62B84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2164, symBinAddr: 0x15DCC, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x62BBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21AC, symBinAddr: 0x15E14, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x62BDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8090, symBinAddr: 0x1BCB4, symSize: 0x390 } + - { offsetInCU: 0x1A2F, offset: 0x62C61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2278, symBinAddr: 0x15EE0, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x62CAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2290, symBinAddr: 0x15EF8, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x62CDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22B4, symBinAddr: 0x15F1C, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x62CF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x22C0, symBinAddr: 0x15F28, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x62D14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x84A8, symBinAddr: 0x1C0CC, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x62DBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x231C, symBinAddr: 0x15F84, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x62DF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2360, symBinAddr: 0x15FC8, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x62E15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x85B4, symBinAddr: 0x1C1D8, symSize: 0x1DC } + - { offsetInCU: 0x1C20, offset: 0x62E52, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3EA8, symBinAddr: 0x17AD0, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x62E66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3ECC, symBinAddr: 0x17AF4, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x62E7A, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3F10, symBinAddr: 0x17B38, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x62E8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3F30, symBinAddr: 0x17B58, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x62EA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3F74, symBinAddr: 0x17B9C, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x62EB6, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3FB8, symBinAddr: 0x17BE0, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x62ECA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3FC0, symBinAddr: 0x17BE4, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x62EDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4010, symBinAddr: 0x17C34, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x62EF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x409C, symBinAddr: 0x17CC0, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x62F06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x40A4, symBinAddr: 0x17CC8, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x62F1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x40A8, symBinAddr: 0x17CCC, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x62F2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x40AC, symBinAddr: 0x17CD0, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x62F42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x40BC, symBinAddr: 0x17CE0, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x62F56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x496C, symBinAddr: 0x18590, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x62F6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x497C, symBinAddr: 0x185A0, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x62F7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x4980, symBinAddr: 0x185A4, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x62F92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x49C4, symBinAddr: 0x185E8, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x62FA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x49C8, symBinAddr: 0x185EC, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x62FBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x4A0C, symBinAddr: 0x18630, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x62FCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4A10, symBinAddr: 0x18634, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x62FE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x4A54, symBinAddr: 0x18678, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x62FF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x4A98, symBinAddr: 0x186BC, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x6300A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4ADC, symBinAddr: 0x18700, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x6301E, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4B20, symBinAddr: 0x18744, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x63032, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x4B64, symBinAddr: 0x18788, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x63046, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4BA8, symBinAddr: 0x187CC, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x6305A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x4BEC, symBinAddr: 0x18810, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x6306E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x4C30, symBinAddr: 0x18854, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x63082, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x4C74, symBinAddr: 0x18898, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x63096, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x4CB8, symBinAddr: 0x188DC, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x630AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x4CFC, symBinAddr: 0x18920, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x630BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4D40, symBinAddr: 0x18964, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x630D2, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4D84, symBinAddr: 0x189A8, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x630E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4D90, symBinAddr: 0x189B4, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x630FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4E20, symBinAddr: 0x18A44, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x6310E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4EDC, symBinAddr: 0x18B00, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x63122, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4EE4, symBinAddr: 0x18B08, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x63136, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4EE8, symBinAddr: 0x18B0C, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x6314A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4EF0, symBinAddr: 0x18B14, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x6315E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4F00, symBinAddr: 0x18B24, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x63172, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4F28, symBinAddr: 0x18B4C, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x63186, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4F6C, symBinAddr: 0x18B90, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x6319A, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4FE0, symBinAddr: 0x18C04, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x631AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4FF4, symBinAddr: 0x18C18, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x631C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x5040, symBinAddr: 0x18C64, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x631D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x5088, symBinAddr: 0x18CAC, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x631EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x50D0, symBinAddr: 0x18CF4, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x631FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x50E0, symBinAddr: 0x18D04, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x63212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5118, symBinAddr: 0x18D3C, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x63226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x518C, symBinAddr: 0x18DB0, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x6323A, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5248, symBinAddr: 0x18E6C, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x6324E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x5264, symBinAddr: 0x18E88, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x63262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x52E0, symBinAddr: 0x18F04, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x63276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5328, symBinAddr: 0x18F4C, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x6328A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x537C, symBinAddr: 0x18FA0, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x6329E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x538C, symBinAddr: 0x18FB0, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x632B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x53B4, symBinAddr: 0x18FD8, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x632C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x53F0, symBinAddr: 0x19014, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x632DA, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x545C, symBinAddr: 0x19080, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x632EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5468, symBinAddr: 0x1908C, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x63302, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x54AC, symBinAddr: 0x190D0, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x63316, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x54F4, symBinAddr: 0x19118, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x6332A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5534, symBinAddr: 0x19158, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x6333E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x5544, symBinAddr: 0x19168, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x63352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x5594, symBinAddr: 0x191B8, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x63366, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5640, symBinAddr: 0x19264, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x6337A, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5754, symBinAddr: 0x19378, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x6338E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5780, symBinAddr: 0x193A4, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x633A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x581C, symBinAddr: 0x19440, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x633B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x5864, symBinAddr: 0x19488, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x633CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x58C0, symBinAddr: 0x194E4, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x633DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x58D0, symBinAddr: 0x194F4, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x633F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5928, symBinAddr: 0x1954C, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x63406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x59EC, symBinAddr: 0x19610, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x6341A, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5B30, symBinAddr: 0x19754, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x6342E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x5B64, symBinAddr: 0x19788, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x63442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x5C18, symBinAddr: 0x1983C, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x63456, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5C60, symBinAddr: 0x19884, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x6346A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x5CC4, symBinAddr: 0x198E8, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x6347E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5CD4, symBinAddr: 0x198F8, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x63492, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x5CD8, symBinAddr: 0x198FC, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x634A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5D1C, symBinAddr: 0x19940, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x634BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5D20, symBinAddr: 0x19944, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x634CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5D64, symBinAddr: 0x19988, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x634E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5D68, symBinAddr: 0x1998C, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x634F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x6D04, symBinAddr: 0x1A928, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x6350A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x6D48, symBinAddr: 0x1A96C, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x6351E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6D8C, symBinAddr: 0x1A9B0, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x63532, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x75F0, symBinAddr: 0x1B214, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x63546, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x78A4, symBinAddr: 0x1B4C8, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x6355A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8420, symBinAddr: 0x1C044, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x6356E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8464, symBinAddr: 0x1C088, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x63582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8790, symBinAddr: 0x1C3B4, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x63596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x87D4, symBinAddr: 0x1C3F8, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x635AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x8818, symBinAddr: 0x1C43C, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x635BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x88C0, symBinAddr: 0x1C4E4, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x635D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8904, symBinAddr: 0x1C528, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x635E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8994, symBinAddr: 0x1C5B8, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x635FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A50, symBinAddr: 0x1C674, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x6360E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A54, symBinAddr: 0x1C678, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x63622, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8A64, symBinAddr: 0x1C688, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x63636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8AF4, symBinAddr: 0x1C718, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x6364A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8BB0, symBinAddr: 0x1C7D4, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x6365E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8BB4, symBinAddr: 0x1C7D8, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x63672, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8BC4, symBinAddr: 0x1C7E8, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x63686, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8C54, symBinAddr: 0x1C878, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x6369A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x8D10, symBinAddr: 0x1C934, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x636AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8D18, symBinAddr: 0x1C93C, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x636C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x8D1C, symBinAddr: 0x1C940, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x636D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8D28, symBinAddr: 0x1C94C, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x636EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8D38, symBinAddr: 0x1C95C, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x636FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8DC8, symBinAddr: 0x1C9EC, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x63712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8E84, symBinAddr: 0x1CAA8, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x63726, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8E88, symBinAddr: 0x1CAAC, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x6373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8EA0, symBinAddr: 0x1CAC4, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x6374E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8EA4, symBinAddr: 0x1CAC8, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x63762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8EB4, symBinAddr: 0x1CAD8, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x63776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8EEC, symBinAddr: 0x1CB10, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x6378A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8F60, symBinAddr: 0x1CB84, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x6379E, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9024, symBinAddr: 0x1CC48, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x637B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x9048, symBinAddr: 0x1CC6C, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x637C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x90BC, symBinAddr: 0x1CCE0, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x637DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x9104, symBinAddr: 0x1CD28, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x637EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x9158, symBinAddr: 0x1CD7C, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x63802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x9168, symBinAddr: 0x1CD8C, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x91A0, symBinAddr: 0x1CDC4, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x6382A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x9204, symBinAddr: 0x1CE28, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x6383E, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x92B0, symBinAddr: 0x1CED4, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x63852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x92C4, symBinAddr: 0x1CEE8, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x63866, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x9328, symBinAddr: 0x1CF4C, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x6387A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9370, symBinAddr: 0x1CF94, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x6388E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x93C0, symBinAddr: 0x1CFE4, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x638A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x93D0, symBinAddr: 0x1CFF4, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x638B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x9408, symBinAddr: 0x1D02C, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x638CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9474, symBinAddr: 0x1D098, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x638DE, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9528, symBinAddr: 0x1D14C, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x638F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x954C, symBinAddr: 0x1D170, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x95B8, symBinAddr: 0x1D1DC, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x6391A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x9600, symBinAddr: 0x1D224, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x6392E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9650, symBinAddr: 0x1D274, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x63942, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9660, symBinAddr: 0x1D284, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x63956, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9664, symBinAddr: 0x1D288, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x6396A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x96A8, symBinAddr: 0x1D2CC, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x6397E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x96AC, symBinAddr: 0x1D2D0, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x63992, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x96F0, symBinAddr: 0x1D314, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x639A6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x96F4, symBinAddr: 0x1D318, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x639BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9738, symBinAddr: 0x1D35C, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x639CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x973C, symBinAddr: 0x1D360, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x639E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9780, symBinAddr: 0x1D3A4, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x639F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9784, symBinAddr: 0x1D3A8, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63A0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97C8, symBinAddr: 0x1D3EC, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63A1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97CC, symBinAddr: 0x1D3F0, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x63A32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9810, symBinAddr: 0x1D434, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x63A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9814, symBinAddr: 0x1D438, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x63A5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9858, symBinAddr: 0x1D47C, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x63A6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x985C, symBinAddr: 0x1D480, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x63A82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x98A0, symBinAddr: 0x1D4C4, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63A96, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x98A4, symBinAddr: 0x1D4C8, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63AAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98E8, symBinAddr: 0x1D50C, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63ABE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98EC, symBinAddr: 0x1D510, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x63AD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9930, symBinAddr: 0x1D554, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63AE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9934, symBinAddr: 0x1D558, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63AFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9978, symBinAddr: 0x1D59C, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x63B0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x997C, symBinAddr: 0x1D5A0, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x63B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x99C0, symBinAddr: 0x1D5E4, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x63B36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x99C4, symBinAddr: 0x1D5E8, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x63B4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9A08, symBinAddr: 0x1D62C, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x63B5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9A0C, symBinAddr: 0x1D630, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x63B72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9A50, symBinAddr: 0x1D674, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x63B86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9A54, symBinAddr: 0x1D678, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x63B9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9A98, symBinAddr: 0x1D6BC, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x63BAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9ADC, symBinAddr: 0x1D700, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x63BC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9B20, symBinAddr: 0x1D744, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x63BD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9B64, symBinAddr: 0x1D788, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x63BEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9BF4, symBinAddr: 0x1D818, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x63BFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9CB0, symBinAddr: 0x1D8D4, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x63C12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9CB4, symBinAddr: 0x1D8D8, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x63C26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9E18, symBinAddr: 0x1DA3C, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x63C3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9E1C, symBinAddr: 0x1DA40, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x63C4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9E2C, symBinAddr: 0x1DA50, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x63C62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9EBC, symBinAddr: 0x1DAE0, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x63C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9F78, symBinAddr: 0x1DB9C, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x63C8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9F7C, symBinAddr: 0x1DBA0, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x63C9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F8C, symBinAddr: 0x1DBB0, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x63CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x1DBB4, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x63CC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9FD4, symBinAddr: 0x1DBF8, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x63CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9FD8, symBinAddr: 0x1DBFC, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x63CEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA01C, symBinAddr: 0x1DC40, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x63D02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA020, symBinAddr: 0x1DC44, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x63D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA064, symBinAddr: 0x1DC88, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x63D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA068, symBinAddr: 0x1DC8C, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x63D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA0AC, symBinAddr: 0x1DCD0, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x63D52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA0B0, symBinAddr: 0x1DCD4, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x63D66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0F4, symBinAddr: 0x1DD18, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x63D7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0F8, symBinAddr: 0x1DD1C, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x63D8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA13C, symBinAddr: 0x1DD60, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x63DA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA140, symBinAddr: 0x1DD64, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x63DB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA184, symBinAddr: 0x1DDA8, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x63DCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA188, symBinAddr: 0x1DDAC, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x63DDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA1CC, symBinAddr: 0x1DDF0, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x63DF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x1DDF4, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x63E4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0x13DF0, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x63E68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0x13E18, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x63ED3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x14F4, symBinAddr: 0x1515C, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x63F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x15D0, symBinAddr: 0x15238, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x63FAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x15F8, symBinAddr: 0x15260, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x63FD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x153C8, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x63FED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1788, symBinAddr: 0x153F0, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x6400F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18D4, symBinAddr: 0x1553C, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x6402B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18FC, symBinAddr: 0x15564, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x6404D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1A2C, symBinAddr: 0x15694, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x64069, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1A54, symBinAddr: 0x156BC, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x6408B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1C10, symBinAddr: 0x15878, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x640A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C38, symBinAddr: 0x158A0, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x640FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D98, symBinAddr: 0x15A00, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x6419C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0x15A98, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x641B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1E58, symBinAddr: 0x15AC0, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x641DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F7C, symBinAddr: 0x15BE4, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x641F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1FA4, symBinAddr: 0x15C0C, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x64218, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2114, symBinAddr: 0x15D7C, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x64234, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x213C, symBinAddr: 0x15DA4, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x64256, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x22CC, symBinAddr: 0x15F34, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x64272, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x22F4, symBinAddr: 0x15F5C, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x6435B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0x13C98, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x643DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0x13E40, symSize: 0x41C } + - { offsetInCU: 0x31DB, offset: 0x6440D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5F4, symBinAddr: 0x1425C, symSize: 0x110 } + - { offsetInCU: 0x320C, offset: 0x6443E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x704, symBinAddr: 0x1436C, symSize: 0x18C } + - { offsetInCU: 0x323D, offset: 0x6446F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x890, symBinAddr: 0x144F8, symSize: 0x164 } + - { offsetInCU: 0x326E, offset: 0x644A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9F4, symBinAddr: 0x1465C, symSize: 0x1B4 } + - { offsetInCU: 0x329F, offset: 0x644D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xBA8, symBinAddr: 0x14810, symSize: 0x204 } + - { offsetInCU: 0x32D0, offset: 0x64502, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDAC, symBinAddr: 0x14A14, symSize: 0x128 } + - { offsetInCU: 0x3301, offset: 0x64533, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xED4, symBinAddr: 0x14B3C, symSize: 0x1DC } + - { offsetInCU: 0x3332, offset: 0x64564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x10B0, symBinAddr: 0x14D18, symSize: 0x1FC } + - { offsetInCU: 0x3363, offset: 0x64595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x12AC, symBinAddr: 0x14F14, symSize: 0x13C } + - { offsetInCU: 0x27, offset: 0x647D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DECC, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x64B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x1E1E0, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x64BAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x1E210, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x64BBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x1E250, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x64BD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x1E2F4, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x64BE7, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1E3F8, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x64BFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x1E424, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x64C0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x1E4C0, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x64C23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1E508, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x64C37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1E568, symSize: 0x10 } + - { offsetInCU: 0x60E, offset: 0x64DB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DECC, symSize: 0x38 } + - { offsetInCU: 0x626, offset: 0x64DD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1DECC, symSize: 0x38 } + - { offsetInCU: 0x64D, offset: 0x64DF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x1DF04, symSize: 0x3C } + - { offsetInCU: 0x667, offset: 0x64E11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x1DF40, symSize: 0x54 } + - { offsetInCU: 0x69C, offset: 0x64E46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x1DF94, symSize: 0x10 } + - { offsetInCU: 0x6B0, offset: 0x64E5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x1DFA4, symSize: 0x4 } + - { offsetInCU: 0x6D1, offset: 0x64E7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0xDC, symBinAddr: 0x1DFA8, symSize: 0x14 } + - { offsetInCU: 0x6E5, offset: 0x64E8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0xF0, symBinAddr: 0x1DFBC, symSize: 0x14 } + - { offsetInCU: 0x715, offset: 0x64EBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x104, symBinAddr: 0x1DFD0, symSize: 0x10 } + - { offsetInCU: 0x739, offset: 0x64EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x1DFE0, symSize: 0x4 } + - { offsetInCU: 0x75A, offset: 0x64F04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x1DFE4, symSize: 0x2C } + - { offsetInCU: 0x76E, offset: 0x64F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x1E010, symSize: 0x34 } + - { offsetInCU: 0x7A3, offset: 0x64F4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1E044, symSize: 0x10 } + - { offsetInCU: 0x7C7, offset: 0x64F71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1E054, symSize: 0x4 } + - { offsetInCU: 0x7E8, offset: 0x64F92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1E058, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x64FA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x1E060, symSize: 0x8 } + - { offsetInCU: 0x82C, offset: 0x64FD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1E068, symSize: 0x10 } + - { offsetInCU: 0x850, offset: 0x64FFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1E078, symSize: 0x4 } + - { offsetInCU: 0x871, offset: 0x6501B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x1E07C, symSize: 0x8 } + - { offsetInCU: 0x885, offset: 0x6502F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1E084, symSize: 0x8 } + - { offsetInCU: 0x8B5, offset: 0x6505F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x1E08C, symSize: 0x10 } + - { offsetInCU: 0x8D9, offset: 0x65083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x1E09C, symSize: 0x4 } + - { offsetInCU: 0x8FA, offset: 0x650A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x1E0A0, symSize: 0x2C } + - { offsetInCU: 0x90E, offset: 0x650B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x1E0CC, symSize: 0x34 } + - { offsetInCU: 0x943, offset: 0x650ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x1E100, symSize: 0x10 } + - { offsetInCU: 0x967, offset: 0x65111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x1E110, symSize: 0x4 } + - { offsetInCU: 0x988, offset: 0x65132, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x1E114, symSize: 0x2C } + - { offsetInCU: 0x99C, offset: 0x65146, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x1E140, symSize: 0x34 } + - { offsetInCU: 0x9D1, offset: 0x6517B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1E174, symSize: 0x10 } + - { offsetInCU: 0x9F5, offset: 0x6519F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1E184, symSize: 0x4 } + - { offsetInCU: 0xA16, offset: 0x651C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1E188, symSize: 0xC } + - { offsetInCU: 0xA2A, offset: 0x651D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1E194, symSize: 0xC } + - { offsetInCU: 0xA5E, offset: 0x65208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x1E1A0, symSize: 0x10 } + - { offsetInCU: 0xA82, offset: 0x6522C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x1E1B0, symSize: 0x4 } + - { offsetInCU: 0xAA3, offset: 0x6524D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1E1B4, symSize: 0xC } + - { offsetInCU: 0xAB7, offset: 0x65261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x1E1C0, symSize: 0xC } + - { offsetInCU: 0xAEB, offset: 0x65295, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x1E1CC, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x652B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x1E1DC, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x6537C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x5B8, symBinAddr: 0x1EB30, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x653AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5E4, symBinAddr: 0x1EB5C, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x653C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x820, symBinAddr: 0x1ED98, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x65442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x7CC, symBinAddr: 0x1ED44, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x65473, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7F8, symBinAddr: 0x1ED70, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x6548F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x884, symBinAddr: 0x1EDFC, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x654CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8E8, symBinAddr: 0x1EE60, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x654FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9FC, symBinAddr: 0x1EF64, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x65513, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA8C, symBinAddr: 0x1EFF4, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65527, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB48, symBinAddr: 0x1F0B0, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x6553B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB4C, symBinAddr: 0x1F0B4, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x6554F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB5C, symBinAddr: 0x1F0C4, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x65563, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBEC, symBinAddr: 0x1F154, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x65577, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xCA8, symBinAddr: 0x1F210, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x6558B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xCB0, symBinAddr: 0x1F218, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x6559F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xCB4, symBinAddr: 0x1F21C, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x655B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xCBC, symBinAddr: 0x1F224, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x655C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCCC, symBinAddr: 0x1F234, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x655DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCD0, symBinAddr: 0x1F238, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x655EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xD14, symBinAddr: 0x1F27C, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x65603, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xD18, symBinAddr: 0x1F280, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x6570D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1E578, symSize: 0x2CC } + - { offsetInCU: 0x433, offset: 0x65730, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2CC, symBinAddr: 0x1E844, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x6585A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x1F400, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x6589E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x1F420, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x658F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x1F4AC, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x1F4B0, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x65940, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1F4B4, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x65967, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1F528, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x659A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x1F52C, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65A0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x1F5AC, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x65A64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x1F610, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65AB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x1F6A0, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x65B13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x1F720, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x65B45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1F784, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x65B61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x1F788, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x65C49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1FEDC, symSize: 0x384 } + - { offsetInCU: 0x7D5, offset: 0x65F5C, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1060, symBinAddr: 0x2032C, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x65F70, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1070, symBinAddr: 0x2033C, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x65F84, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1104, symBinAddr: 0x2034C, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x65F98, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x114C, symBinAddr: 0x20394, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x65FAC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1160, symBinAddr: 0x203A8, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x65FC0, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x11A4, symBinAddr: 0x203EC, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x65FD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11E4, symBinAddr: 0x2042C, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x65FE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x13A8, symBinAddr: 0x205F0, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x65FFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13D8, symBinAddr: 0x20620, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x66010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1594, symBinAddr: 0x207DC, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x6621A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1F2CC, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x66243, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1F3E0, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x66373, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x1F78C, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x66450, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1FE68, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x664E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF94, symBinAddr: 0x20260, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x66557, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFFC, symBinAddr: 0x202C8, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x66603, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2AF0, symBinAddr: 0x87310, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x6661D, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2AF8, symBinAddr: 0x87318, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x6662B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x2081C, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x66667, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x20850, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x6669D, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x20890, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x6670D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20970, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x6672D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x20970, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x667A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x20AD8, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x667C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x20AD8, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x667EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x20B34, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x66865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20BA0, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x66885, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x20BA0, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x66BA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1C70, symBinAddr: 0x2247C, symSize: 0x1A0 } + - { offsetInCU: 0x6B4, offset: 0x66C68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x20C24, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x66C9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x20CAC, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x66CDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x20DA4, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x66CF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x20E04, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x66D06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x20E54, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x66D3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x20EDC, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x66D7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x21110, symSize: 0x5C } + - { offsetInCU: 0x9D1, offset: 0x66F85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x16E4, symBinAddr: 0x21EF0, symSize: 0x140 } + - { offsetInCU: 0xACD, offset: 0x67081, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x1824, symBinAddr: 0x22030, symSize: 0x18 } + - { offsetInCU: 0xAE1, offset: 0x67095, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1978, symBinAddr: 0x22184, symSize: 0x2C } + - { offsetInCU: 0xAF9, offset: 0x670AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1C0C, symBinAddr: 0x22418, symSize: 0x44 } + - { offsetInCU: 0xB0D, offset: 0x670C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1C50, symBinAddr: 0x2245C, symSize: 0x20 } + - { offsetInCU: 0xB21, offset: 0x670D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1E10, symBinAddr: 0x2261C, symSize: 0x20 } + - { offsetInCU: 0xB35, offset: 0x670E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E30, symBinAddr: 0x2263C, symSize: 0x4 } + - { offsetInCU: 0xB49, offset: 0x670FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E34, symBinAddr: 0x22640, symSize: 0x44 } + - { offsetInCU: 0xB5D, offset: 0x67111, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E78, symBinAddr: 0x22684, symSize: 0x4 } + - { offsetInCU: 0xB71, offset: 0x67125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1E7C, symBinAddr: 0x22688, symSize: 0x44 } + - { offsetInCU: 0xB85, offset: 0x67139, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1FA0, symBinAddr: 0x227AC, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x6714D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x1FB8, symBinAddr: 0x227C4, symSize: 0x14 } + - { offsetInCU: 0xBAD, offset: 0x67161, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x1FCC, symBinAddr: 0x227D8, symSize: 0x18 } + - { offsetInCU: 0xBC1, offset: 0x67175, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x2044, symBinAddr: 0x22850, symSize: 0x6C } + - { offsetInCU: 0xBD5, offset: 0x67189, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x20B0, symBinAddr: 0x228BC, symSize: 0x14 } + - { offsetInCU: 0xBE9, offset: 0x6719D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x20C4, symBinAddr: 0x228D0, symSize: 0x50 } + - { offsetInCU: 0xBFD, offset: 0x671B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x2114, symBinAddr: 0x22920, symSize: 0x48 } + - { offsetInCU: 0xC11, offset: 0x671C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x215C, symBinAddr: 0x22968, symSize: 0x48 } + - { offsetInCU: 0xC25, offset: 0x671D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x21A4, symBinAddr: 0x229B0, symSize: 0x8 } + - { offsetInCU: 0xC39, offset: 0x671ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x21AC, symBinAddr: 0x229B8, symSize: 0x4 } + - { offsetInCU: 0xC4D, offset: 0x67201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x21B0, symBinAddr: 0x229BC, symSize: 0x8 } + - { offsetInCU: 0xC61, offset: 0x67215, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x21B8, symBinAddr: 0x229C4, symSize: 0x10 } + - { offsetInCU: 0xC75, offset: 0x67229, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x22A0, symBinAddr: 0x22A9C, symSize: 0x90 } + - { offsetInCU: 0xC89, offset: 0x6723D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x2330, symBinAddr: 0x22B2C, symSize: 0xBC } + - { offsetInCU: 0xC9D, offset: 0x67251, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x23EC, symBinAddr: 0x22BE8, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x67265, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x23F0, symBinAddr: 0x22BEC, symSize: 0x10 } + - { offsetInCU: 0xCC5, offset: 0x67279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x2400, symBinAddr: 0x22BFC, symSize: 0x90 } + - { offsetInCU: 0xCD9, offset: 0x6728D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2490, symBinAddr: 0x22C8C, symSize: 0xBC } + - { offsetInCU: 0xCED, offset: 0x672A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x254C, symBinAddr: 0x22D48, symSize: 0x8 } + - { offsetInCU: 0xD01, offset: 0x672B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x2554, symBinAddr: 0x22D50, symSize: 0x4 } + - { offsetInCU: 0xD15, offset: 0x672C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2558, symBinAddr: 0x22D54, symSize: 0x8 } + - { offsetInCU: 0xD29, offset: 0x672DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2560, symBinAddr: 0x22D5C, symSize: 0x10 } + - { offsetInCU: 0xD48, offset: 0x672FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2598, symBinAddr: 0x22D94, symSize: 0x24 } + - { offsetInCU: 0xD71, offset: 0x67325, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x26A4, symBinAddr: 0x22EA0, symSize: 0x8 } + - { offsetInCU: 0xD85, offset: 0x67339, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x26AC, symBinAddr: 0x22EA8, symSize: 0x10 } + - { offsetInCU: 0xD99, offset: 0x6734D, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x26BC, symBinAddr: 0x22EB8, symSize: 0x8 } + - { offsetInCU: 0xDAD, offset: 0x67361, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2748, symBinAddr: 0x22EC0, symSize: 0x3C } + - { offsetInCU: 0xE2F, offset: 0x673E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x2080C, symSize: 0x4 } + - { offsetInCU: 0xE4B, offset: 0x673FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x20810, symSize: 0x4 } + - { offsetInCU: 0xE67, offset: 0x6741B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x20814, symSize: 0x4 } + - { offsetInCU: 0xE83, offset: 0x67437, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x20818, symSize: 0x4 } + - { offsetInCU: 0x10F5, offset: 0x676A9, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x208C4, symSize: 0x40 } + - { offsetInCU: 0x1123, offset: 0x676D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x20904, symSize: 0x60 } + - { offsetInCU: 0x115B, offset: 0x6770F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x209D0, symSize: 0x84 } + - { offsetInCU: 0x1182, offset: 0x67736, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x20A54, symSize: 0x14 } + - { offsetInCU: 0x11C9, offset: 0x6777D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x20A68, symSize: 0x28 } + - { offsetInCU: 0x12D0, offset: 0x67884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x20D58, symSize: 0x4C } + - { offsetInCU: 0x12EF, offset: 0x678A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x20DB4, symSize: 0x50 } + - { offsetInCU: 0x1318, offset: 0x678CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x20E14, symSize: 0x3C } + - { offsetInCU: 0x133D, offset: 0x678F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x20E50, symSize: 0x4 } + - { offsetInCU: 0x1392, offset: 0x67946, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x20F88, symSize: 0x4C } + - { offsetInCU: 0x13B1, offset: 0x67965, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x20FD4, symSize: 0x50 } + - { offsetInCU: 0x13DA, offset: 0x6798E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x21024, symSize: 0x3C } + - { offsetInCU: 0x13FF, offset: 0x679B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x21060, symSize: 0x8 } + - { offsetInCU: 0x1420, offset: 0x679D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x21068, symSize: 0x30 } + - { offsetInCU: 0x143D, offset: 0x679F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x21098, symSize: 0x3C } + - { offsetInCU: 0x1462, offset: 0x67A16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x210D4, symSize: 0x3C } + - { offsetInCU: 0x14AC, offset: 0x67A60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x960, symBinAddr: 0x2116C, symSize: 0x30 } + - { offsetInCU: 0x14C9, offset: 0x67A7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x990, symBinAddr: 0x2119C, symSize: 0x44 } + - { offsetInCU: 0x14F2, offset: 0x67AA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x9D4, symBinAddr: 0x211E0, symSize: 0x3C } + - { offsetInCU: 0x151E, offset: 0x67AD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x2121C, symSize: 0xC8 } + - { offsetInCU: 0x1558, offset: 0x67B0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x212E4, symSize: 0x4 } + - { offsetInCU: 0x15FC, offset: 0x67BB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xADC, symBinAddr: 0x212E8, symSize: 0x128 } + - { offsetInCU: 0x172D, offset: 0x67CE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xC04, symBinAddr: 0x21410, symSize: 0x224 } + - { offsetInCU: 0x1796, offset: 0x67D4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x183C, symBinAddr: 0x22048, symSize: 0x13C } + - { offsetInCU: 0x1844, offset: 0x67DF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xE28, symBinAddr: 0x21634, symSize: 0x70 } + - { offsetInCU: 0x186E, offset: 0x67E22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xE98, symBinAddr: 0x216A4, symSize: 0x30 } + - { offsetInCU: 0x1890, offset: 0x67E44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xEC8, symBinAddr: 0x216D4, symSize: 0x188 } + - { offsetInCU: 0x1935, offset: 0x67EE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0x1050, symBinAddr: 0x2185C, symSize: 0x14 } + - { offsetInCU: 0x1982, offset: 0x67F36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0x10D4, symBinAddr: 0x218E0, symSize: 0x3C } + - { offsetInCU: 0x1A08, offset: 0x67FBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0x1064, symBinAddr: 0x21870, symSize: 0x70 } + - { offsetInCU: 0x1A9C, offset: 0x68050, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0x1110, symBinAddr: 0x2191C, symSize: 0x78 } + - { offsetInCU: 0x1B80, offset: 0x68134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0x1188, symBinAddr: 0x21994, symSize: 0x230 } + - { offsetInCU: 0x1D6C, offset: 0x68320, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x13B8, symBinAddr: 0x21BC4, symSize: 0xC } + - { offsetInCU: 0x1DC3, offset: 0x68377, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21BD0, symSize: 0x4 } + - { offsetInCU: 0x1DDF, offset: 0x68393, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21BD0, symSize: 0x4 } + - { offsetInCU: 0x1DF8, offset: 0x683AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13C4, symBinAddr: 0x21BD0, symSize: 0x4 } + - { offsetInCU: 0x1E11, offset: 0x683C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13C8, symBinAddr: 0x21BD4, symSize: 0x4 } + - { offsetInCU: 0x1E29, offset: 0x683DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13CC, symBinAddr: 0x21BD8, symSize: 0xB8 } + - { offsetInCU: 0x1EC9, offset: 0x6847D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14C4, symBinAddr: 0x21CD0, symSize: 0x4 } + - { offsetInCU: 0x1EE1, offset: 0x68495, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x2604, symBinAddr: 0x22E00, symSize: 0x7C } + - { offsetInCU: 0x1FB8, offset: 0x6856C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x1484, symBinAddr: 0x21C90, symSize: 0x40 } + - { offsetInCU: 0x1FED, offset: 0x685A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg', symObjAddr: 0x14C8, symBinAddr: 0x21CD4, symSize: 0x2C } + - { offsetInCU: 0x202E, offset: 0x685E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14F4, symBinAddr: 0x21D00, symSize: 0x2C } + - { offsetInCU: 0x206F, offset: 0x68623, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg', symObjAddr: 0x1520, symBinAddr: 0x21D2C, symSize: 0x2C } + - { offsetInCU: 0x20E6, offset: 0x6869A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x154C, symBinAddr: 0x21D58, symSize: 0x198 } + - { offsetInCU: 0x25E3, offset: 0x68B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x19A4, symBinAddr: 0x221B0, symSize: 0x24 } + - { offsetInCU: 0x2626, offset: 0x68BDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x19C8, symBinAddr: 0x221D4, symSize: 0x244 } + - { offsetInCU: 0x43, offset: 0x68D79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x22FC4, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x68D8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x23000, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x68DA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x23084, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x68DBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x231AC, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x68DE5, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x231DC, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x68DF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x231F8, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x68E0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x23294, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x68E21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x232F8, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x68E35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x23354, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x68E49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x23364, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x68E5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x23394, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x68E71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x233BC, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x68E85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x23418, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x68E99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x2349C, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x68EAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x23500, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x68EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x2355C, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x68ED5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x235BC, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x68F21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA50, symBinAddr: 0x23A14, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x68F79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA58, symBinAddr: 0x23A1C, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x6905C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA98, symBinAddr: 0x23A5C, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x690CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAF8, symBinAddr: 0x23ABC, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x6911C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xB04, symBinAddr: 0x23AC8, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x69176, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB80, symBinAddr: 0x23B44, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x69192, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB8C, symBinAddr: 0x23B50, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x691CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBE8, symBinAddr: 0x23BAC, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x69206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC34, symBinAddr: 0x23BF8, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x69229, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFF8, symBinAddr: 0x23FBC, symSize: 0x154 } + - { offsetInCU: 0x580, offset: 0x692B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC74, symBinAddr: 0x23C38, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x69311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC8C, symBinAddr: 0x23C50, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x6938B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xCB8, symBinAddr: 0x23C7C, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x693C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x23CC4, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x693F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xD24, symBinAddr: 0x23CE8, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x6940D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD30, symBinAddr: 0x23CF4, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x69429, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x129C, symBinAddr: 0x241DC, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x694E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD8C, symBinAddr: 0x23D50, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x69520, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDD8, symBinAddr: 0x23D9C, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x69543, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13F0, symBinAddr: 0x24330, symSize: 0x264 } + - { offsetInCU: 0x87C, offset: 0x695B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xEA4, symBinAddr: 0x23E68, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x695E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x23EB8, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x69618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF18, symBinAddr: 0x23EDC, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x69634, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF24, symBinAddr: 0x23EE8, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x69650, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D8C, symBinAddr: 0x24C60, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x69700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF80, symBinAddr: 0x23F44, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x69737, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFC0, symBinAddr: 0x23F84, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x6975A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EF4, symBinAddr: 0x24DC8, symSize: 0x2B8 } + - { offsetInCU: 0xA81, offset: 0x697B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x11B0, symBinAddr: 0x24110, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x697CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x1214, symBinAddr: 0x24154, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x697DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1258, symBinAddr: 0x24198, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x697F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1654, symBinAddr: 0x24594, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x69807, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x16DC, symBinAddr: 0x245D8, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x6981B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x17CC, symBinAddr: 0x246C8, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x6982F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1828, symBinAddr: 0x24714, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x69843, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1830, symBinAddr: 0x2471C, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x69857, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1834, symBinAddr: 0x24720, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x6986B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x183C, symBinAddr: 0x24728, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x6987F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1850, symBinAddr: 0x24738, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x69893, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x18A0, symBinAddr: 0x24788, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x698A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x192C, symBinAddr: 0x24814, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x698BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1934, symBinAddr: 0x2481C, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x698CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1938, symBinAddr: 0x24820, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x698E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x193C, symBinAddr: 0x24824, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x698F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x194C, symBinAddr: 0x24834, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x6990B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1984, symBinAddr: 0x2486C, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x6991F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x19E8, symBinAddr: 0x248D0, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x69933, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1AA8, symBinAddr: 0x2497C, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x69947, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1B0C, symBinAddr: 0x249E0, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x6995B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B68, symBinAddr: 0x24A3C, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x6996F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1BCC, symBinAddr: 0x24AA0, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x69983, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BDC, symBinAddr: 0x24AB0, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69997, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BE0, symBinAddr: 0x24AB4, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x699AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1C24, symBinAddr: 0x24AF8, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x699BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1C28, symBinAddr: 0x24AFC, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x699D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C6C, symBinAddr: 0x24B40, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x699E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C70, symBinAddr: 0x24B44, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x699FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CB4, symBinAddr: 0x24B88, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69A0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CB8, symBinAddr: 0x24B8C, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69A23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CFC, symBinAddr: 0x24BD0, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x69A37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x24BD4, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x69A4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1D44, symBinAddr: 0x24C18, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x69A5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D48, symBinAddr: 0x24C1C, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x69A73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x21AC, symBinAddr: 0x25080, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x69A87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x2344, symBinAddr: 0x25218, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69A9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2348, symBinAddr: 0x2521C, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69AAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2358, symBinAddr: 0x2522C, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69AC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x235C, symBinAddr: 0x25230, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69AD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x23A0, symBinAddr: 0x25274, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69AEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x23A4, symBinAddr: 0x25278, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69AFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x23E8, symBinAddr: 0x252BC, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69B13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23EC, symBinAddr: 0x252C0, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x69B72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xABC, symBinAddr: 0x23A80, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x69C32, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB98, symBinAddr: 0x23B5C, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x69C4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xBC0, symBinAddr: 0x23B84, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x69C70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD3C, symBinAddr: 0x23D00, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x69C8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD64, symBinAddr: 0x23D28, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x69CAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF30, symBinAddr: 0x23EF4, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x69CCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF58, symBinAddr: 0x23F1C, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x69DB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x235CC, symSize: 0x11C } + - { offsetInCU: 0x10B4, offset: 0x69DEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x724, symBinAddr: 0x236E8, symSize: 0x1C8 } + - { offsetInCU: 0x10E5, offset: 0x69E1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8EC, symBinAddr: 0x238B0, symSize: 0x164 } + - { offsetInCU: 0xA6, offset: 0x69FD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x49C, symBinAddr: 0x25744, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x69FF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x49C, symBinAddr: 0x25744, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x6A01C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x4B4, symBinAddr: 0x2575C, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x6A0FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4F8, symBinAddr: 0x257A0, symSize: 0x28 } + - { offsetInCU: 0x4C0, offset: 0x6A3F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x560, symBinAddr: 0x25808, symSize: 0x4 } + - { offsetInCU: 0x4D4, offset: 0x6A404, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x564, symBinAddr: 0x2580C, symSize: 0x44 } + - { offsetInCU: 0x4E8, offset: 0x6A418, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x5A8, symBinAddr: 0x25850, symSize: 0x30 } + - { offsetInCU: 0x4FC, offset: 0x6A42C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x5D8, symBinAddr: 0x25880, symSize: 0x7C } + - { offsetInCU: 0x510, offset: 0x6A440, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x654, symBinAddr: 0x258FC, symSize: 0x184 } + - { offsetInCU: 0x524, offset: 0x6A454, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0x7D8, symBinAddr: 0x25A80, symSize: 0x394 } + - { offsetInCU: 0x53F, offset: 0x6A46F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xB6C, symBinAddr: 0x25E14, symSize: 0x30 } + - { offsetInCU: 0x568, offset: 0x6A498, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xB9C, symBinAddr: 0x25E44, symSize: 0x2C } + - { offsetInCU: 0x57C, offset: 0x6A4AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xBC8, symBinAddr: 0x25E70, symSize: 0x34 } + - { offsetInCU: 0x590, offset: 0x6A4C0, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xBFC, symBinAddr: 0x25EA4, symSize: 0x44 } + - { offsetInCU: 0x5A4, offset: 0x6A4D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xC40, symBinAddr: 0x25EE8, symSize: 0x1B4 } + - { offsetInCU: 0x5B8, offset: 0x6A4E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0xDF4, symBinAddr: 0x2609C, symSize: 0x48 } + - { offsetInCU: 0x5CC, offset: 0x6A4FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0xE3C, symBinAddr: 0x260E4, symSize: 0x78 } + - { offsetInCU: 0x5E0, offset: 0x6A510, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0xEB4, symBinAddr: 0x2615C, symSize: 0x10 } + - { offsetInCU: 0x5F4, offset: 0x6A524, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0xEC8, symBinAddr: 0x26170, symSize: 0x8 } + - { offsetInCU: 0x608, offset: 0x6A538, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x261B0, symSize: 0x54 } + - { offsetInCU: 0x61C, offset: 0x6A54C, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xF5C, symBinAddr: 0x26204, symSize: 0x14 } + - { offsetInCU: 0x630, offset: 0x6A560, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0xF70, symBinAddr: 0x26218, symSize: 0x3C } + - { offsetInCU: 0x644, offset: 0x6A574, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0xFAC, symBinAddr: 0x26254, symSize: 0x48 } + - { offsetInCU: 0x658, offset: 0x6A588, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0xFF4, symBinAddr: 0x2629C, symSize: 0x40 } + - { offsetInCU: 0x66C, offset: 0x6A59C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x1034, symBinAddr: 0x262DC, symSize: 0x10 } + - { offsetInCU: 0x680, offset: 0x6A5B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x1044, symBinAddr: 0x262EC, symSize: 0x38 } + - { offsetInCU: 0x694, offset: 0x6A5C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x107C, symBinAddr: 0x26324, symSize: 0x6C } + - { offsetInCU: 0x6A8, offset: 0x6A5D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x10E8, symBinAddr: 0x26390, symSize: 0xDC } + - { offsetInCU: 0x6BC, offset: 0x6A5EC, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x11C4, symBinAddr: 0x2646C, symSize: 0x1C } + - { offsetInCU: 0x6D0, offset: 0x6A600, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x26488, symSize: 0x74 } + - { offsetInCU: 0x6E4, offset: 0x6A614, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1254, symBinAddr: 0x264FC, symSize: 0x5C } + - { offsetInCU: 0x6F8, offset: 0x6A628, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x12B0, symBinAddr: 0x26558, symSize: 0x64 } + - { offsetInCU: 0x70C, offset: 0x6A63C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1314, symBinAddr: 0x265BC, symSize: 0x10 } + - { offsetInCU: 0x720, offset: 0x6A650, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1324, symBinAddr: 0x265CC, symSize: 0x28 } + - { offsetInCU: 0x734, offset: 0x6A664, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x134C, symBinAddr: 0x265F4, symSize: 0x3C } + - { offsetInCU: 0x748, offset: 0x6A678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x1388, symBinAddr: 0x26630, symSize: 0x6C } + - { offsetInCU: 0x75C, offset: 0x6A68C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1400, symBinAddr: 0x2669C, symSize: 0x44 } + - { offsetInCU: 0x770, offset: 0x6A6A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1444, symBinAddr: 0x266E0, symSize: 0x48 } + - { offsetInCU: 0x784, offset: 0x6A6B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x148C, symBinAddr: 0x26728, symSize: 0x40 } + - { offsetInCU: 0x798, offset: 0x6A6C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x14CC, symBinAddr: 0x26768, symSize: 0x10 } + - { offsetInCU: 0x7AC, offset: 0x6A6DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x14E0, symBinAddr: 0x26778, symSize: 0x54 } + - { offsetInCU: 0x7C0, offset: 0x6A6F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1534, symBinAddr: 0x267CC, symSize: 0x44 } + - { offsetInCU: 0x7D4, offset: 0x6A704, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1578, symBinAddr: 0x26810, symSize: 0x10 } + - { offsetInCU: 0x7E8, offset: 0x6A718, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x1594, symBinAddr: 0x26820, symSize: 0x90 } + - { offsetInCU: 0x7FC, offset: 0x6A72C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1624, symBinAddr: 0x268B0, symSize: 0xBC } + - { offsetInCU: 0x810, offset: 0x6A740, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x16E0, symBinAddr: 0x2696C, symSize: 0x8 } + - { offsetInCU: 0x824, offset: 0x6A754, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x16E8, symBinAddr: 0x26974, symSize: 0x4 } + - { offsetInCU: 0x838, offset: 0x6A768, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x16EC, symBinAddr: 0x26978, symSize: 0xC } + - { offsetInCU: 0x84C, offset: 0x6A77C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x16F8, symBinAddr: 0x26984, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x6A7F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x520, symBinAddr: 0x257C8, symSize: 0x40 } + - { offsetInCU: 0xA66, offset: 0x6A996, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x2531C, symSize: 0x18 } + - { offsetInCU: 0xA9F, offset: 0x6A9CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x25334, symSize: 0x230 } + - { offsetInCU: 0xB10, offset: 0x6AA40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x28C, symBinAddr: 0x25564, symSize: 0x2C } + - { offsetInCU: 0xB2A, offset: 0x6AA5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x2B8, symBinAddr: 0x25590, symSize: 0x34 } + - { offsetInCU: 0xB5F, offset: 0x6AA8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x2EC, symBinAddr: 0x255C4, symSize: 0x10 } + - { offsetInCU: 0xB73, offset: 0x6AAA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x2FC, symBinAddr: 0x255D4, symSize: 0x4 } + - { offsetInCU: 0xB94, offset: 0x6AAC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x300, symBinAddr: 0x255D8, symSize: 0x8 } + - { offsetInCU: 0xBA8, offset: 0x6AAD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x308, symBinAddr: 0x255E0, symSize: 0x8 } + - { offsetInCU: 0xBD8, offset: 0x6AB08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x310, symBinAddr: 0x255E8, symSize: 0x10 } + - { offsetInCU: 0xBFC, offset: 0x6AB2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x320, symBinAddr: 0x255F8, symSize: 0x4 } + - { offsetInCU: 0xC1D, offset: 0x6AB4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x324, symBinAddr: 0x255FC, symSize: 0x14 } + - { offsetInCU: 0xC31, offset: 0x6AB61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x368, symBinAddr: 0x25610, symSize: 0x14 } + - { offsetInCU: 0xC45, offset: 0x6AB75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x37C, symBinAddr: 0x25624, symSize: 0x2C } + - { offsetInCU: 0xC59, offset: 0x6AB89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x3A8, symBinAddr: 0x25650, symSize: 0x2C } + - { offsetInCU: 0xC6D, offset: 0x6AB9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x3D4, symBinAddr: 0x2567C, symSize: 0x8 } + - { offsetInCU: 0xC81, offset: 0x6ABB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x3DC, symBinAddr: 0x25684, symSize: 0x8 } + - { offsetInCU: 0xCB3, offset: 0x6ABE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x3E4, symBinAddr: 0x2568C, symSize: 0x10 } + - { offsetInCU: 0xCC7, offset: 0x6ABF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x3F4, symBinAddr: 0x2569C, symSize: 0x4 } + - { offsetInCU: 0xCE8, offset: 0x6AC18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x3F8, symBinAddr: 0x256A0, symSize: 0x8 } + - { offsetInCU: 0xCFC, offset: 0x6AC2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x400, symBinAddr: 0x256A8, symSize: 0x8 } + - { offsetInCU: 0xD2E, offset: 0x6AC5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x408, symBinAddr: 0x256B0, symSize: 0x10 } + - { offsetInCU: 0xD52, offset: 0x6AC82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x418, symBinAddr: 0x256C0, symSize: 0x4 } + - { offsetInCU: 0xD73, offset: 0x6ACA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x41C, symBinAddr: 0x256C4, symSize: 0x10 } + - { offsetInCU: 0xD97, offset: 0x6ACC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x42C, symBinAddr: 0x256D4, symSize: 0x4 } + - { offsetInCU: 0xDC6, offset: 0x6ACF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x430, symBinAddr: 0x256D8, symSize: 0x28 } + - { offsetInCU: 0xE51, offset: 0x6AD81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x458, symBinAddr: 0x25700, symSize: 0x44 } + - { offsetInCU: 0x943, offset: 0x6B7EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x72C4, symBinAddr: 0x2DC68, symSize: 0x28 } + - { offsetInCU: 0x18F2, offset: 0x6C79A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x146F8, symBinAddr: 0x3B09C, symSize: 0xA0 } + - { offsetInCU: 0x198A, offset: 0x6C832, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x1568C, symBinAddr: 0x3C030, symSize: 0x44 } + - { offsetInCU: 0x19A6, offset: 0x6C84E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x156D0, symBinAddr: 0x3C074, symSize: 0x150 } + - { offsetInCU: 0x1ABF, offset: 0x6C967, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x15820, symBinAddr: 0x3C1C4, symSize: 0x54 } + - { offsetInCU: 0x1B3D, offset: 0x6C9E5, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x158C8, symBinAddr: 0x3C218, symSize: 0x4C } + - { offsetInCU: 0x1BCB, offset: 0x6CA73, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x15914, symBinAddr: 0x3C264, symSize: 0x50 } + - { offsetInCU: 0x1C39, offset: 0x6CAE1, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x15964, symBinAddr: 0x3C2B4, symSize: 0x64 } + - { offsetInCU: 0x22CF, offset: 0x6D177, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x167DC, symBinAddr: 0x3D12C, symSize: 0x84 } + - { offsetInCU: 0x2333, offset: 0x6D1DB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x16860, symBinAddr: 0x3D1B0, symSize: 0x80 } + - { offsetInCU: 0x2400, offset: 0x6D2A8, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x169FC, symBinAddr: 0x3D34C, symSize: 0x40 } + - { offsetInCU: 0x2525, offset: 0x6D3CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x17370, symBinAddr: 0x3DC44, symSize: 0x1A0 } + - { offsetInCU: 0x2703, offset: 0x6D5AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1760C, symBinAddr: 0x3DEE0, symSize: 0x360 } + - { offsetInCU: 0x2E25, offset: 0x6DCCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1879C, symBinAddr: 0x3F070, symSize: 0xBCC } + - { offsetInCU: 0x3E91, offset: 0x6ED39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19368, symBinAddr: 0x3FC3C, symSize: 0x1C0 } + - { offsetInCU: 0x4012, offset: 0x6EEBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19528, symBinAddr: 0x3FDFC, symSize: 0x1A0 } + - { offsetInCU: 0x441A, offset: 0x6F2C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1A144, symBinAddr: 0x40A18, symSize: 0x8 } + - { offsetInCU: 0x442E, offset: 0x6F2D6, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1A214, symBinAddr: 0x40AE8, symSize: 0x10 } + - { offsetInCU: 0x4442, offset: 0x6F2EA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1A224, symBinAddr: 0x40AF8, symSize: 0x14 } + - { offsetInCU: 0x4456, offset: 0x6F2FE, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1A238, symBinAddr: 0x40B0C, symSize: 0x44 } + - { offsetInCU: 0x446A, offset: 0x6F312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1A28C, symBinAddr: 0x40B50, symSize: 0x44 } + - { offsetInCU: 0x447E, offset: 0x6F326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1A2D0, symBinAddr: 0x40B94, symSize: 0x30C } + - { offsetInCU: 0x4492, offset: 0x6F33A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1A5DC, symBinAddr: 0x40EA0, symSize: 0x240 } + - { offsetInCU: 0x44A6, offset: 0x6F34E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1A81C, symBinAddr: 0x410E0, symSize: 0x70 } + - { offsetInCU: 0x44BA, offset: 0x6F362, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1A88C, symBinAddr: 0x41150, symSize: 0x34 } + - { offsetInCU: 0x44CE, offset: 0x6F376, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1A8C0, symBinAddr: 0x41184, symSize: 0x174 } + - { offsetInCU: 0x44E2, offset: 0x6F38A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1AA34, symBinAddr: 0x412F8, symSize: 0xB4 } + - { offsetInCU: 0x4535, offset: 0x6F3DD, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1B300, symBinAddr: 0x413AC, symSize: 0xC4 } + - { offsetInCU: 0x45AB, offset: 0x6F453, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B3C4, symBinAddr: 0x41470, symSize: 0x78 } + - { offsetInCU: 0x45D8, offset: 0x6F480, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B43C, symBinAddr: 0x414E8, symSize: 0x80 } + - { offsetInCU: 0x466C, offset: 0x6F514, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B4BC, symBinAddr: 0x41568, symSize: 0x68 } + - { offsetInCU: 0x47D3, offset: 0x6F67B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B524, symBinAddr: 0x415D0, symSize: 0x660 } + - { offsetInCU: 0x4C97, offset: 0x6FB3F, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1BB94, symBinAddr: 0x41C40, symSize: 0x4C } + - { offsetInCU: 0x4CAB, offset: 0x6FB53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1BC88, symBinAddr: 0x41CAC, symSize: 0x8 } + - { offsetInCU: 0x4CBF, offset: 0x6FB67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1BC90, symBinAddr: 0x41CB4, symSize: 0x44 } + - { offsetInCU: 0x4CD3, offset: 0x6FB7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1BCD4, symBinAddr: 0x41CF8, symSize: 0x44 } + - { offsetInCU: 0x4CE7, offset: 0x6FB8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BD80, symBinAddr: 0x41D60, symSize: 0x8 } + - { offsetInCU: 0x4CFB, offset: 0x6FBA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1BE10, symBinAddr: 0x41DE8, symSize: 0x44 } + - { offsetInCU: 0x4D30, offset: 0x6FBD8, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BF18, symBinAddr: 0x41EF0, symSize: 0x48 } + - { offsetInCU: 0x4D44, offset: 0x6FBEC, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BF84, symBinAddr: 0x41F5C, symSize: 0x3C } + - { offsetInCU: 0x4D58, offset: 0x6FC00, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BFC0, symBinAddr: 0x41F98, symSize: 0x34 } + - { offsetInCU: 0x4D6C, offset: 0x6FC14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1C018, symBinAddr: 0x41FF0, symSize: 0x40 } + - { offsetInCU: 0x4D80, offset: 0x6FC28, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1C058, symBinAddr: 0x42030, symSize: 0x48 } + - { offsetInCU: 0x4D94, offset: 0x6FC3C, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1C164, symBinAddr: 0x4213C, symSize: 0x18 } + - { offsetInCU: 0x4DA8, offset: 0x6FC50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1C17C, symBinAddr: 0x42154, symSize: 0x10 } + - { offsetInCU: 0x4DBC, offset: 0x6FC64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1C18C, symBinAddr: 0x42164, symSize: 0x34 } + - { offsetInCU: 0x4DD0, offset: 0x6FC78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1C1FC, symBinAddr: 0x421D4, symSize: 0x30 } + - { offsetInCU: 0x5456, offset: 0x702FE, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9B78, symBinAddr: 0x3051C, symSize: 0x400 } + - { offsetInCU: 0x55B9, offset: 0x70461, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xAE04, symBinAddr: 0x317A8, symSize: 0x390 } + - { offsetInCU: 0x587D, offset: 0x70725, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xB194, symBinAddr: 0x31B38, symSize: 0x3B8 } + - { offsetInCU: 0x5CDB, offset: 0x70B83, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF5B4, symBinAddr: 0x35F58, symSize: 0x18C } + - { offsetInCU: 0x60B1, offset: 0x70F59, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x16E8C, symBinAddr: 0x3D7DC, symSize: 0x110 } + - { offsetInCU: 0x61CE, offset: 0x71076, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x171C8, symBinAddr: 0x3DA9C, symSize: 0x1A8 } + - { offsetInCU: 0x62FD, offset: 0x711A5, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x17510, symBinAddr: 0x3DDE4, symSize: 0xFC } + - { offsetInCU: 0x6434, offset: 0x712DC, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1796C, symBinAddr: 0x3E240, symSize: 0x188 } + - { offsetInCU: 0x6781, offset: 0x71629, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x198B0, symBinAddr: 0x40184, symSize: 0x1C8 } + - { offsetInCU: 0x68B0, offset: 0x71758, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x19A78, symBinAddr: 0x4034C, symSize: 0x11C } + - { offsetInCU: 0x6A12, offset: 0x718BA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x19B94, symBinAddr: 0x40468, symSize: 0xFC } + - { offsetInCU: 0x6B74, offset: 0x71A1C, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x19C90, symBinAddr: 0x40564, symSize: 0xE4 } + - { offsetInCU: 0x6CCA, offset: 0x71B72, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19D74, symBinAddr: 0x40648, symSize: 0x114 } + - { offsetInCU: 0x6E20, offset: 0x71CC8, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19E88, symBinAddr: 0x4075C, symSize: 0xF0 } + - { offsetInCU: 0x6F82, offset: 0x71E2A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1A060, symBinAddr: 0x40934, symSize: 0xE4 } + - { offsetInCU: 0x70F9, offset: 0x71FA1, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BE54, symBinAddr: 0x41E2C, symSize: 0xC4 } + - { offsetInCU: 0x7660, offset: 0x72508, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x269A4, symSize: 0x1A0 } + - { offsetInCU: 0x7733, offset: 0x725DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x1A0, symBinAddr: 0x26B44, symSize: 0x34C } + - { offsetInCU: 0x78A6, offset: 0x7274E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2598, symBinAddr: 0x28F3C, symSize: 0x96C } + - { offsetInCU: 0x7C97, offset: 0x72B3F, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x4EC, symBinAddr: 0x26E90, symSize: 0x88 } + - { offsetInCU: 0x7E08, offset: 0x72CB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x574, symBinAddr: 0x26F18, symSize: 0x1D44 } + - { offsetInCU: 0x8FA5, offset: 0x73E4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB54C, symBinAddr: 0x31EF0, symSize: 0x3810 } + - { offsetInCU: 0xA2CC, offset: 0x75174, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xED5C, symBinAddr: 0x35700, symSize: 0x578 } + - { offsetInCU: 0xA71E, offset: 0x755C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x10890, symBinAddr: 0x37234, symSize: 0x25C0 } + - { offsetInCU: 0xBDAC, offset: 0x76C54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13E70, symBinAddr: 0x3A814, symSize: 0x3DC } + - { offsetInCU: 0xBF47, offset: 0x76DEF, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x22B8, symBinAddr: 0x28C5C, symSize: 0x2E0 } + - { offsetInCU: 0xC3CC, offset: 0x77274, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x2F04, symBinAddr: 0x298A8, symSize: 0x3B8 } + - { offsetInCU: 0xC658, offset: 0x77500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x32BC, symBinAddr: 0x29C60, symSize: 0x3924 } + - { offsetInCU: 0xE205, offset: 0x790AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6BE0, symBinAddr: 0x2D584, symSize: 0x278 } + - { offsetInCU: 0xE311, offset: 0x791B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x72EC, symBinAddr: 0x2DC90, symSize: 0x1848 } + - { offsetInCU: 0xED98, offset: 0x79C40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x6E58, symBinAddr: 0x2D7FC, symSize: 0x118 } + - { offsetInCU: 0xEE11, offset: 0x79CB9, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6F70, symBinAddr: 0x2D914, symSize: 0x16C } + - { offsetInCU: 0xEE2C, offset: 0x79CD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x70DC, symBinAddr: 0x2DA80, symSize: 0x1E8 } + - { offsetInCU: 0xF10F, offset: 0x79FB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x8B88, symBinAddr: 0x2F52C, symSize: 0x3F8 } + - { offsetInCU: 0xF330, offset: 0x7A1D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9F78, symBinAddr: 0x3091C, symSize: 0xE8C } + - { offsetInCU: 0xFC3C, offset: 0x7AAE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8F80, symBinAddr: 0x2F924, symSize: 0xBF8 } + - { offsetInCU: 0x1060C, offset: 0x7B4B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF740, symBinAddr: 0x360E4, symSize: 0x1150 } + - { offsetInCU: 0x117C1, offset: 0x7C669, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x17AF4, symBinAddr: 0x3E3C8, symSize: 0xB10 } + - { offsetInCU: 0x12251, offset: 0x7D0F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x12E50, symBinAddr: 0x397F4, symSize: 0x1020 } + - { offsetInCU: 0x12D35, offset: 0x7DBDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x1424C, symBinAddr: 0x3ABF0, symSize: 0x208 } + - { offsetInCU: 0x12DB9, offset: 0x7DC61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14454, symBinAddr: 0x3ADF8, symSize: 0x294 } + - { offsetInCU: 0x12EC9, offset: 0x7DD71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x14798, symBinAddr: 0x3B13C, symSize: 0xEF4 } + - { offsetInCU: 0x138F4, offset: 0x7E79C, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x159C8, symBinAddr: 0x3C318, symSize: 0x64 } + - { offsetInCU: 0x13932, offset: 0x7E7DA, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15A2C, symBinAddr: 0x3C37C, symSize: 0x30 } + - { offsetInCU: 0x13979, offset: 0x7E821, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15A5C, symBinAddr: 0x3C3AC, symSize: 0x80 } + - { offsetInCU: 0x13A13, offset: 0x7E8BB, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x15ADC, symBinAddr: 0x3C42C, symSize: 0x6C } + - { offsetInCU: 0x13AC3, offset: 0x7E96B, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15B48, symBinAddr: 0x3C498, symSize: 0x4C } + - { offsetInCU: 0x13B3C, offset: 0x7E9E4, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x15BC0, symBinAddr: 0x3C510, symSize: 0xE0 } + - { offsetInCU: 0x13BB0, offset: 0x7EA58, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15CA0, symBinAddr: 0x3C5F0, symSize: 0xC4 } + - { offsetInCU: 0x13BD9, offset: 0x7EA81, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15D64, symBinAddr: 0x3C6B4, symSize: 0x174 } + - { offsetInCU: 0x13CB2, offset: 0x7EB5A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x15ED8, symBinAddr: 0x3C828, symSize: 0x104 } + - { offsetInCU: 0x13DE1, offset: 0x7EC89, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x15FDC, symBinAddr: 0x3C92C, symSize: 0x124 } + - { offsetInCU: 0x13F02, offset: 0x7EDAA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x16100, symBinAddr: 0x3CA50, symSize: 0x170 } + - { offsetInCU: 0x14083, offset: 0x7EF2B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x16270, symBinAddr: 0x3CBC0, symSize: 0x174 } + - { offsetInCU: 0x141D1, offset: 0x7F079, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x163E4, symBinAddr: 0x3CD34, symSize: 0xFC } + - { offsetInCU: 0x14307, offset: 0x7F1AF, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x164E0, symBinAddr: 0x3CE30, symSize: 0xFC } + - { offsetInCU: 0x1443D, offset: 0x7F2E5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x166E0, symBinAddr: 0x3D030, symSize: 0xFC } + - { offsetInCU: 0x14573, offset: 0x7F41B, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x168E0, symBinAddr: 0x3D230, symSize: 0x11C } + - { offsetInCU: 0x1465E, offset: 0x7F506, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x16CA0, symBinAddr: 0x3D5F0, symSize: 0x138 } + - { offsetInCU: 0x1472D, offset: 0x7F5D5, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16DD8, symBinAddr: 0x3D728, symSize: 0xB4 } + - { offsetInCU: 0x14787, offset: 0x7F62F, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x16FDC, symBinAddr: 0x3D8EC, symSize: 0x18C } + - { offsetInCU: 0x149C7, offset: 0x7F86F, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18604, symBinAddr: 0x3EED8, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x7FFA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x4223C, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x7FFBA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x4223C, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x7FFCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x4226C, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x7FFE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x42358, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x7FFF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x425C0, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x8000A, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x429DC, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x8001E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x429E4, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x80032, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x42C20, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x80046, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x42C68, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x8005A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x42D24, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x80654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x900C, symBinAddr: 0x4BD40, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x80712, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x922C, symBinAddr: 0x4BF60, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x807DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD87C, symBinAddr: 0x505B0, symSize: 0x7C0 } + - { offsetInCU: 0x9D6, offset: 0x80B11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xE03C, symBinAddr: 0x50D70, symSize: 0xA34 } + - { offsetInCU: 0xCB0, offset: 0x80DEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xEA70, symBinAddr: 0x517A4, symSize: 0x2AC } + - { offsetInCU: 0xDF2, offset: 0x80F2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xF414, symBinAddr: 0x52148, symSize: 0x860 } + - { offsetInCU: 0x10E8, offset: 0x81223, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xFC74, symBinAddr: 0x529A8, symSize: 0xC2C } + - { offsetInCU: 0x13C2, offset: 0x814FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x108A0, symBinAddr: 0x535D4, symSize: 0x314 } + - { offsetInCU: 0x1504, offset: 0x8163F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x10BB4, symBinAddr: 0x538E8, symSize: 0x208 } + - { offsetInCU: 0x1985, offset: 0x81AC0, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1EDC, symBinAddr: 0x44C10, symSize: 0x2C } + - { offsetInCU: 0x1E8A, offset: 0x81FC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x94F0, symBinAddr: 0x4C224, symSize: 0x20 } + - { offsetInCU: 0x1ECF, offset: 0x8200A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x9510, symBinAddr: 0x4C244, symSize: 0x8C } + - { offsetInCU: 0x1F8B, offset: 0x820C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xA6A4, symBinAddr: 0x4D3D8, symSize: 0x54 } + - { offsetInCU: 0x1FC5, offset: 0x82100, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xA6F8, symBinAddr: 0x4D42C, symSize: 0x50 } + - { offsetInCU: 0x201B, offset: 0x82156, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA748, symBinAddr: 0x4D47C, symSize: 0x64 } + - { offsetInCU: 0x204E, offset: 0x82189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA7AC, symBinAddr: 0x4D4E0, symSize: 0x4 } + - { offsetInCU: 0x208D, offset: 0x821C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA7B0, symBinAddr: 0x4D4E4, symSize: 0x78 } + - { offsetInCU: 0x20E3, offset: 0x8221E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA828, symBinAddr: 0x4D55C, symSize: 0x88 } + - { offsetInCU: 0x2154, offset: 0x8228F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA8B0, symBinAddr: 0x4D5E4, symSize: 0xDC } + - { offsetInCU: 0x21D6, offset: 0x82311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA98C, symBinAddr: 0x4D6C0, symSize: 0x4 } + - { offsetInCU: 0x21F2, offset: 0x8232D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA990, symBinAddr: 0x4D6C4, symSize: 0x4 } + - { offsetInCU: 0x222C, offset: 0x82367, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA994, symBinAddr: 0x4D6C8, symSize: 0x64 } + - { offsetInCU: 0x2599, offset: 0x826D4, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xBC3C, symBinAddr: 0x4E970, symSize: 0xE4 } + - { offsetInCU: 0x267D, offset: 0x827B8, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xBE04, symBinAddr: 0x4EB38, symSize: 0x280 } + - { offsetInCU: 0x2819, offset: 0x82954, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xC634, symBinAddr: 0x4F368, symSize: 0x64 } + - { offsetInCU: 0x2DFA, offset: 0x82F35, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xCE38, symBinAddr: 0x4FB6C, symSize: 0x374 } + - { offsetInCU: 0x359C, offset: 0x836D7, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xD1AC, symBinAddr: 0x4FEE0, symSize: 0x280 } + - { offsetInCU: 0x3973, offset: 0x83AAE, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xD42C, symBinAddr: 0x50160, symSize: 0x148 } + - { offsetInCU: 0x3B6D, offset: 0x83CA8, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xD574, symBinAddr: 0x502A8, symSize: 0x1F8 } + - { offsetInCU: 0x3D2C, offset: 0x83E67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1156C, symBinAddr: 0x542A0, symSize: 0x104 } + - { offsetInCU: 0x3E76, offset: 0x83FB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x14064, symBinAddr: 0x56D98, symSize: 0x120 } + - { offsetInCU: 0x3F8E, offset: 0x840C9, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x14858, symBinAddr: 0x5752C, symSize: 0x10 } + - { offsetInCU: 0x3FA2, offset: 0x840DD, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x14868, symBinAddr: 0x5753C, symSize: 0x10 } + - { offsetInCU: 0x3FB6, offset: 0x840F1, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x148FC, symBinAddr: 0x5754C, symSize: 0x48 } + - { offsetInCU: 0x3FCA, offset: 0x84105, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x149E8, symBinAddr: 0x57594, symSize: 0x3C } + - { offsetInCU: 0x3FDE, offset: 0x84119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x14A24, symBinAddr: 0x575D0, symSize: 0x44 } + - { offsetInCU: 0x3FF2, offset: 0x8412D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOd', symObjAddr: 0x14A68, symBinAddr: 0x57614, symSize: 0x48 } + - { offsetInCU: 0x4006, offset: 0x84141, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x14AB0, symBinAddr: 0x5765C, symSize: 0x8 } + - { offsetInCU: 0x401A, offset: 0x84155, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x14AB8, symBinAddr: 0x57664, symSize: 0x10 } + - { offsetInCU: 0x402E, offset: 0x84169, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x14AC8, symBinAddr: 0x57674, symSize: 0x8 } + - { offsetInCU: 0x4042, offset: 0x8417D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x14B50, symBinAddr: 0x576B8, symSize: 0x30 } + - { offsetInCU: 0x409A, offset: 0x841D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x14C10, symBinAddr: 0x57778, symSize: 0x24 } + - { offsetInCU: 0x40D6, offset: 0x84211, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x14C78, symBinAddr: 0x577E0, symSize: 0x44 } + - { offsetInCU: 0x4BFB, offset: 0x84D36, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x42D34, symSize: 0x134 } + - { offsetInCU: 0x4C29, offset: 0x84D64, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x134, symBinAddr: 0x42E68, symSize: 0x80 } + - { offsetInCU: 0x4C91, offset: 0x84DCC, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x1B4, symBinAddr: 0x42EE8, symSize: 0xA0 } + - { offsetInCU: 0x4DF4, offset: 0x84F2F, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x254, symBinAddr: 0x42F88, symSize: 0x9C } + - { offsetInCU: 0x4F1F, offset: 0x8505A, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x2F0, symBinAddr: 0x43024, symSize: 0x74 } + - { offsetInCU: 0x4FA4, offset: 0x850DF, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x364, symBinAddr: 0x43098, symSize: 0x4 } + - { offsetInCU: 0x4FF5, offset: 0x85130, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x4309C, symSize: 0xE8 } + - { offsetInCU: 0x50D7, offset: 0x85212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x43184, symSize: 0x204 } + - { offsetInCU: 0x5256, offset: 0x85391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x43388, symSize: 0xB0C } + - { offsetInCU: 0x56E8, offset: 0x85823, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x1160, symBinAddr: 0x43E94, symSize: 0x3CC } + - { offsetInCU: 0x58FF, offset: 0x85A3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x152C, symBinAddr: 0x44260, symSize: 0x9B0 } + - { offsetInCU: 0x5C76, offset: 0x85DB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x1F08, symBinAddr: 0x44C3C, symSize: 0x229C } + - { offsetInCU: 0x7193, offset: 0x872CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xED1C, symBinAddr: 0x51A50, symSize: 0x6F8 } + - { offsetInCU: 0x759E, offset: 0x876D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x41A4, symBinAddr: 0x46ED8, symSize: 0x1660 } + - { offsetInCU: 0x8459, offset: 0x88594, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x5804, symBinAddr: 0x48538, symSize: 0x1038 } + - { offsetInCU: 0x8E60, offset: 0x88F9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x683C, symBinAddr: 0x49570, symSize: 0x3F0 } + - { offsetInCU: 0x8FC9, offset: 0x89104, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7524, symBinAddr: 0x4A258, symSize: 0x208 } + - { offsetInCU: 0x921B, offset: 0x89356, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x772C, symBinAddr: 0x4A460, symSize: 0x93C } + - { offsetInCU: 0x9A1B, offset: 0x89B56, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8068, symBinAddr: 0x4AD9C, symSize: 0x2E8 } + - { offsetInCU: 0x9B6D, offset: 0x89CA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x8350, symBinAddr: 0x4B084, symSize: 0x648 } + - { offsetInCU: 0x9F3A, offset: 0x8A075, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x8998, symBinAddr: 0x4B6CC, symSize: 0x674 } + - { offsetInCU: 0xA1DC, offset: 0x8A317, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x9450, symBinAddr: 0x4C184, symSize: 0x80 } + - { offsetInCU: 0xA1FF, offset: 0x8A33A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x94D0, symBinAddr: 0x4C204, symSize: 0x20 } + - { offsetInCU: 0xA28A, offset: 0x8A3C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x959C, symBinAddr: 0x4C2D0, symSize: 0x10C8 } + - { offsetInCU: 0xA8F2, offset: 0x8AA2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xA664, symBinAddr: 0x4D398, symSize: 0x40 } + - { offsetInCU: 0xA965, offset: 0x8AAA0, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA9F8, symBinAddr: 0x4D72C, symSize: 0x4 } + - { offsetInCU: 0xA980, offset: 0x8AABB, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA9FC, symBinAddr: 0x4D730, symSize: 0x8 } + - { offsetInCU: 0xA998, offset: 0x8AAD3, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA9FC, symBinAddr: 0x4D730, symSize: 0x8 } + - { offsetInCU: 0xA9A9, offset: 0x8AAE4, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xAA04, symBinAddr: 0x4D738, symSize: 0xC8 } + - { offsetInCU: 0xAA31, offset: 0x8AB6C, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xAACC, symBinAddr: 0x4D800, symSize: 0xCC } + - { offsetInCU: 0xAAD1, offset: 0x8AC0C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xAC94, symBinAddr: 0x4D9C8, symSize: 0x1F4 } + - { offsetInCU: 0xAB71, offset: 0x8ACAC, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xAE88, symBinAddr: 0x4DBBC, symSize: 0x1C4 } + - { offsetInCU: 0xAC2D, offset: 0x8AD68, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xB04C, symBinAddr: 0x4DD80, symSize: 0x340 } + - { offsetInCU: 0xAD24, offset: 0x8AE5F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xB38C, symBinAddr: 0x4E0C0, symSize: 0x340 } + - { offsetInCU: 0xAE0E, offset: 0x8AF49, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB6CC, symBinAddr: 0x4E400, symSize: 0x1DC } + - { offsetInCU: 0xAEB3, offset: 0x8AFEE, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB8A8, symBinAddr: 0x4E5DC, symSize: 0x204 } + - { offsetInCU: 0xAF51, offset: 0x8B08C, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xBAAC, symBinAddr: 0x4E7E0, symSize: 0x4C } + - { offsetInCU: 0xAFFD, offset: 0x8B138, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xBAF8, symBinAddr: 0x4E82C, symSize: 0x90 } + - { offsetInCU: 0xB089, offset: 0x8B1C4, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xBB88, symBinAddr: 0x4E8BC, symSize: 0x40 } + - { offsetInCU: 0xB0C6, offset: 0x8B201, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xBBC8, symBinAddr: 0x4E8FC, symSize: 0x18 } + - { offsetInCU: 0xB118, offset: 0x8B253, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xBBE0, symBinAddr: 0x4E914, symSize: 0x3C } + - { offsetInCU: 0xB141, offset: 0x8B27C, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xBC1C, symBinAddr: 0x4E950, symSize: 0x1C } + - { offsetInCU: 0xB182, offset: 0x8B2BD, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xC308, symBinAddr: 0x4F03C, symSize: 0x8C } + - { offsetInCU: 0xB196, offset: 0x8B2D1, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xC394, symBinAddr: 0x4F0C8, symSize: 0x4C } + - { offsetInCU: 0xB1C6, offset: 0x8B301, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xC3E0, symBinAddr: 0x4F114, symSize: 0x164 } + - { offsetInCU: 0xB223, offset: 0x8B35E, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC544, symBinAddr: 0x4F278, symSize: 0xF0 } + - { offsetInCU: 0xB24A, offset: 0x8B385, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC698, symBinAddr: 0x4F3CC, symSize: 0x214 } + - { offsetInCU: 0xB27F, offset: 0x8B3BA, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC8AC, symBinAddr: 0x4F5E0, symSize: 0x78 } + - { offsetInCU: 0xB293, offset: 0x8B3CE, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC924, symBinAddr: 0x4F658, symSize: 0x1C } + - { offsetInCU: 0xB2A7, offset: 0x8B3E2, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC940, symBinAddr: 0x4F674, symSize: 0x1C } + - { offsetInCU: 0xB2BB, offset: 0x8B3F6, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC95C, symBinAddr: 0x4F690, symSize: 0x1C } + - { offsetInCU: 0xB2F2, offset: 0x8B42D, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC978, symBinAddr: 0x4F6AC, symSize: 0x104 } + - { offsetInCU: 0xB3F0, offset: 0x8B52B, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xCA7C, symBinAddr: 0x4F7B0, symSize: 0x174 } + - { offsetInCU: 0xB506, offset: 0x8B641, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xCBF0, symBinAddr: 0x4F924, symSize: 0x124 } + - { offsetInCU: 0xB5DA, offset: 0x8B715, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xCD14, symBinAddr: 0x4FA48, symSize: 0x124 } + - { offsetInCU: 0xB719, offset: 0x8B854, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD76C, symBinAddr: 0x504A0, symSize: 0x14 } + - { offsetInCU: 0xB73B, offset: 0x8B876, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD780, symBinAddr: 0x504B4, symSize: 0xFC } + - { offsetInCU: 0xB815, offset: 0x8B950, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x10DBC, symBinAddr: 0x53AF0, symSize: 0x7B0 } + - { offsetInCU: 0xBC9C, offset: 0x8BDD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x11670, symBinAddr: 0x543A4, symSize: 0x29F4 } + - { offsetInCU: 0xC430, offset: 0x8C56B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x14184, symBinAddr: 0x56EB8, symSize: 0x674 } + - { offsetInCU: 0x95, offset: 0x8CA40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xFBC, symBinAddr: 0x5889C, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8CA93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1008, symBinAddr: 0x588E8, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8CAC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x102C, symBinAddr: 0x5890C, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8CAE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1038, symBinAddr: 0x58918, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8CAFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5FB8, symBinAddr: 0x5D808, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8CB93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1094, symBinAddr: 0x58974, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8CBCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x10E4, symBinAddr: 0x589C4, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8CBED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x60EC, symBinAddr: 0x5D93C, symSize: 0x133C } + - { offsetInCU: 0x2D0, offset: 0x8CC7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1134, symBinAddr: 0x58A14, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8CCD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x114C, symBinAddr: 0x58A2C, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8CD50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1178, symBinAddr: 0x58A58, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8CD85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x11E0, symBinAddr: 0x58AC0, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8CDB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1204, symBinAddr: 0x58AE4, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8CDD2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1210, symBinAddr: 0x58AF0, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8CDEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7F0C, symBinAddr: 0x5ED44, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8CEE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x126C, symBinAddr: 0x58B4C, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8CF17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x12BC, symBinAddr: 0x58B9C, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8CF3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8108, symBinAddr: 0x5EF40, symSize: 0xF48 } + - { offsetInCU: 0x611, offset: 0x8CFBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x14DC, symBinAddr: 0x58DBC, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8CFED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1508, symBinAddr: 0x58DE8, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8D009, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1578, symBinAddr: 0x58E58, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8D03E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x15D8, symBinAddr: 0x58EB8, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8D08E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x15FC, symBinAddr: 0x58EDC, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8D0AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1608, symBinAddr: 0x58EE8, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8D0C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x922C, symBinAddr: 0x60064, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8D125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1664, symBinAddr: 0x58F44, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8D15C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x16AC, symBinAddr: 0x58F8C, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8D17F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9288, symBinAddr: 0x600C0, symSize: 0x230 } + - { offsetInCU: 0x838, offset: 0x8D1E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x16F4, symBinAddr: 0x58FD4, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8D218, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x16FC, symBinAddr: 0x58FDC, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8D249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1720, symBinAddr: 0x59000, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8D265, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x172C, symBinAddr: 0x5900C, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8D281, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x94B8, symBinAddr: 0x602F0, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8D3DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1788, symBinAddr: 0x59068, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8D414, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x17E8, symBinAddr: 0x590C8, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8D437, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x97A4, symBinAddr: 0x605DC, symSize: 0x548 } + - { offsetInCU: 0xB19, offset: 0x8D4C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1840, symBinAddr: 0x59120, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8D544, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x1858, symBinAddr: 0x59138, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8D627, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x189C, symBinAddr: 0x5917C, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8D6AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0x591E4, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8D702, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1928, symBinAddr: 0x59208, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8D733, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x194C, symBinAddr: 0x5922C, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8D74F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1958, symBinAddr: 0x59238, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8D76B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9CEC, symBinAddr: 0x60B24, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8D7F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19B4, symBinAddr: 0x59294, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8D830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x19E0, symBinAddr: 0x592C0, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8D853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9DA8, symBinAddr: 0x60BE0, symSize: 0x1B0 } + - { offsetInCU: 0xF18, offset: 0x8D8C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x59368, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8D8F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x593E0, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8D929, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B24, symBinAddr: 0x59404, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8D945, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B30, symBinAddr: 0x59410, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8D961, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9F58, symBinAddr: 0x60D90, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8DA5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B8C, symBinAddr: 0x5946C, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8DA93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BFC, symBinAddr: 0x594DC, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8DAB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA1A4, symBinAddr: 0x60FDC, symSize: 0x8D8 } + - { offsetInCU: 0x11A5, offset: 0x8DB50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1DE8, symBinAddr: 0x596C8, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8DB81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1E14, symBinAddr: 0x596F4, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8DB95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1E3C, symBinAddr: 0x5971C, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8DBCA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1E44, symBinAddr: 0x59724, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8DC1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1E68, symBinAddr: 0x59748, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8DC36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E74, symBinAddr: 0x59754, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8DC52, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAB48, symBinAddr: 0x61980, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8DCD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0x597B0, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8DD07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F28, symBinAddr: 0x59808, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8DD2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xABA4, symBinAddr: 0x619DC, symSize: 0x770 } + - { offsetInCU: 0x1457, offset: 0x8DE02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D80, symBinAddr: 0x5D654, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8DE5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5DD4, symBinAddr: 0x5D6A8, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8DEAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5E54, symBinAddr: 0x5D728, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8DEE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E5C, symBinAddr: 0x5D730, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8DF63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5EBC, symBinAddr: 0x5D790, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8DF80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x2150, symBinAddr: 0x59A30, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8DF94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x2170, symBinAddr: 0x59A50, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8DFA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x2264, symBinAddr: 0x59B44, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8DFBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x25E4, symBinAddr: 0x59EC4, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8DFD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x323C, symBinAddr: 0x5AB1C, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8E000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x326C, symBinAddr: 0x5AB4C, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8E014, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x3298, symBinAddr: 0x5AB78, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8E028, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x32C4, symBinAddr: 0x5ABA4, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8E03C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x32F0, symBinAddr: 0x5ABD0, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8E050, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x331C, symBinAddr: 0x5ABFC, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8E064, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x3324, symBinAddr: 0x5AC04, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8E078, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x36E4, symBinAddr: 0x5AFC4, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8E08C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3740, symBinAddr: 0x5B020, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8E0A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x382C, symBinAddr: 0x5B10C, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8E0B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x383C, symBinAddr: 0x5B11C, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8E0C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x386C, symBinAddr: 0x5B14C, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8E0DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x394C, symBinAddr: 0x5B22C, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8E0F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x3C84, symBinAddr: 0x5B564, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8E104, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x44E8, symBinAddr: 0x5BDC8, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8E118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x44F0, symBinAddr: 0x5BDD0, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8E12C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x4854, symBinAddr: 0x5C134, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8E140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x48B0, symBinAddr: 0x5C190, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8E154, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x4994, symBinAddr: 0x5C274, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8E168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x49A4, symBinAddr: 0x5C284, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8E17C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x4A48, symBinAddr: 0x5C328, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8E190, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x4BD4, symBinAddr: 0x5C4B4, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8E1A4, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4F7C, symBinAddr: 0x5C85C, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8E1B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4FC0, symBinAddr: 0x5C8A0, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8E1CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x513C, symBinAddr: 0x5CA1C, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8E1E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x5198, symBinAddr: 0x5CA78, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8E1F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x522C, symBinAddr: 0x5CB0C, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8E208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x523C, symBinAddr: 0x5CB1C, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8E21C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x52A4, symBinAddr: 0x5CB84, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8E230, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x5380, symBinAddr: 0x5CC60, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8E244, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x54EC, symBinAddr: 0x5CDCC, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8E258, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5518, symBinAddr: 0x5CDF8, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8E26C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x55DC, symBinAddr: 0x5CEBC, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8E280, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x5638, symBinAddr: 0x5CF18, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8E294, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x56B4, symBinAddr: 0x5CF94, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8E2A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x56C4, symBinAddr: 0x5CFA4, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8E2BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x570C, symBinAddr: 0x5CFEC, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8E2D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x57F0, symBinAddr: 0x5D0D0, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8E2E4, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5988, symBinAddr: 0x5D268, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8E2F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x59BC, symBinAddr: 0x5D29C, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8E30C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5AB8, symBinAddr: 0x5D398, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8E320, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x5B14, symBinAddr: 0x5D3F4, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8E334, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x5B90, symBinAddr: 0x5D470, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8E348, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x5BA0, symBinAddr: 0x5D480, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8E35C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5BC8, symBinAddr: 0x5D4A8, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8E370, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x5C04, symBinAddr: 0x5D4E4, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8E384, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x5C7C, symBinAddr: 0x5D550, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8E398, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5CC0, symBinAddr: 0x5D594, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8E3AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x5D1C, symBinAddr: 0x5D5F0, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8E3C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x5D70, symBinAddr: 0x5D644, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8E3D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5EC4, symBinAddr: 0x5D798, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8E3E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5EC8, symBinAddr: 0x5D79C, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8E3FC, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F90, symBinAddr: 0x5D7E0, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8E410, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x7428, symBinAddr: 0x5EC78, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8E424, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x746C, symBinAddr: 0x5ECBC, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8E438, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7EC8, symBinAddr: 0x5ED00, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8E44C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x9050, symBinAddr: 0x5FE88, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8E460, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x9094, symBinAddr: 0x5FECC, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8E474, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x90D8, symBinAddr: 0x5FF10, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8E488, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x911C, symBinAddr: 0x5FF54, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8E49C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x9160, symBinAddr: 0x5FF98, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8E4B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x91A4, symBinAddr: 0x5FFDC, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8E4C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x91E8, symBinAddr: 0x60020, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8E4D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xAA7C, symBinAddr: 0x618B4, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8E4EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xAAC0, symBinAddr: 0x618F8, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8E500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xAB04, symBinAddr: 0x6193C, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8E514, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xB314, symBinAddr: 0x6214C, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8E528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB358, symBinAddr: 0x62190, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8E53C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xB39C, symBinAddr: 0x621D4, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8E550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xB424, symBinAddr: 0x6225C, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8E564, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB468, symBinAddr: 0x622A0, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E578, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB4BC, symBinAddr: 0x622E4, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E58C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB54C, symBinAddr: 0x62374, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E5A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB608, symBinAddr: 0x62430, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8E5B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB610, symBinAddr: 0x62438, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8E5C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB614, symBinAddr: 0x6243C, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8E5DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB620, symBinAddr: 0x62448, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8E5F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB630, symBinAddr: 0x62458, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8E604, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB6C0, symBinAddr: 0x624E8, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8E618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB77C, symBinAddr: 0x625A4, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8E62C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB780, symBinAddr: 0x625A8, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8E640, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB790, symBinAddr: 0x625B8, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8E654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB820, symBinAddr: 0x62648, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8E668, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB8DC, symBinAddr: 0x62704, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8E67C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB8E0, symBinAddr: 0x62708, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8E690, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB8F0, symBinAddr: 0x62718, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8E6A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB980, symBinAddr: 0x627A8, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8E6B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBA3C, symBinAddr: 0x62864, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8E6CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBA40, symBinAddr: 0x62868, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8E6E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xBA50, symBinAddr: 0x62878, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8E6F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xBAE0, symBinAddr: 0x62908, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8E708, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xBB9C, symBinAddr: 0x629C4, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8E71C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBBA4, symBinAddr: 0x629CC, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8E730, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xBBA8, symBinAddr: 0x629D0, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8E744, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBBB0, symBinAddr: 0x629D8, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8E758, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xBBC0, symBinAddr: 0x629E8, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8E76C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xBC50, symBinAddr: 0x62A78, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8E780, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBD0C, symBinAddr: 0x62B34, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8E794, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBD10, symBinAddr: 0x62B38, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8E7A8, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBD20, symBinAddr: 0x62B48, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8E7BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xBD44, symBinAddr: 0x62B6C, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8E7D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xBD64, symBinAddr: 0x62B8C, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8E7E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xBDA4, symBinAddr: 0x62BCC, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8E7F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBDB4, symBinAddr: 0x62BDC, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8E80C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBDB8, symBinAddr: 0x62BE0, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8E820, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBDFC, symBinAddr: 0x62C24, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8E834, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBE00, symBinAddr: 0x62C28, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8E848, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBE44, symBinAddr: 0x62C6C, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8E85C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBE48, symBinAddr: 0x62C70, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8E870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBE8C, symBinAddr: 0x62CB4, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8E884, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBE90, symBinAddr: 0x62CB8, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8E898, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBED4, symBinAddr: 0x62CFC, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8E8AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBED8, symBinAddr: 0x62D00, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8E8C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBF1C, symBinAddr: 0x62D44, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8E8D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBF20, symBinAddr: 0x62D48, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8E8E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF64, symBinAddr: 0x62D8C, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8E8FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF68, symBinAddr: 0x62D90, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8E910, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFAC, symBinAddr: 0x62DD4, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8E924, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBFB0, symBinAddr: 0x62DD8, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8E938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBFF4, symBinAddr: 0x62E1C, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8E94C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBFF8, symBinAddr: 0x62E20, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8E960, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC03C, symBinAddr: 0x62E64, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8E974, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC040, symBinAddr: 0x62E68, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8E988, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC084, symBinAddr: 0x62EAC, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8E99C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC088, symBinAddr: 0x62EB0, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8E9B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0CC, symBinAddr: 0x62EF4, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8E9C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC0D0, symBinAddr: 0x62EF8, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8E9D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC114, symBinAddr: 0x62F3C, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8E9EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC118, symBinAddr: 0x62F40, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8EA00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC15C, symBinAddr: 0x62F84, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8EA14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC160, symBinAddr: 0x62F88, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8EA28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC1A4, symBinAddr: 0x62FCC, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8EA3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC1A8, symBinAddr: 0x62FD0, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8EA50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC1EC, symBinAddr: 0x63014, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8EA64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC1F0, symBinAddr: 0x63018, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8EA78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC234, symBinAddr: 0x6305C, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8EA8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC238, symBinAddr: 0x63060, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8EAA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC27C, symBinAddr: 0x630A4, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8EAB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC280, symBinAddr: 0x630A8, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8EAC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xC2C4, symBinAddr: 0x630EC, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8EADC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xC308, symBinAddr: 0x63130, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8EAF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xC398, symBinAddr: 0x631C0, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8EB04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xC454, symBinAddr: 0x6327C, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8EB18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xC458, symBinAddr: 0x63280, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8EB2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC468, symBinAddr: 0x63290, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8EB40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC46C, symBinAddr: 0x63294, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8EB54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC4B0, symBinAddr: 0x632D8, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8EB68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC4B4, symBinAddr: 0x632DC, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8EB7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC4F8, symBinAddr: 0x63320, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8EB90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC4FC, symBinAddr: 0x63324, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8EBBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1044, symBinAddr: 0x58924, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8EBDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x106C, symBinAddr: 0x5894C, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8EBFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x121C, symBinAddr: 0x58AFC, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8EC18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1244, symBinAddr: 0x58B24, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8EC34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x130C, symBinAddr: 0x58BEC, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8ECB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1318, symBinAddr: 0x58BF8, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8ED36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x13BC, symBinAddr: 0x58C9C, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8ED74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x143C, symBinAddr: 0x58D1C, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8EDDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1614, symBinAddr: 0x58EF4, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8EDF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x163C, symBinAddr: 0x58F1C, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8EE18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1738, symBinAddr: 0x59018, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8EE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1760, symBinAddr: 0x59040, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8EE87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x18C4, symBinAddr: 0x591A4, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8EF29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1964, symBinAddr: 0x59244, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8EF45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x5926C, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8EF67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B3C, symBinAddr: 0x5941C, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8EF83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B64, symBinAddr: 0x59444, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8EFCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C64, symBinAddr: 0x59544, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8F0A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1CEC, symBinAddr: 0x595CC, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8F11E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1D4C, symBinAddr: 0x5962C, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8F170, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D8C, symBinAddr: 0x5966C, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8F1D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E80, symBinAddr: 0x59760, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8F1EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1EA8, symBinAddr: 0x59788, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8F22F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E80, symBinAddr: 0x5D754, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8F3C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x578E0, symSize: 0x18C } + - { offsetInCU: 0x2A47, offset: 0x8F3F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18C, symBinAddr: 0x57A6C, symSize: 0x274 } + - { offsetInCU: 0x2A78, offset: 0x8F423, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x400, symBinAddr: 0x57CE0, symSize: 0x1A0 } + - { offsetInCU: 0x2AA9, offset: 0x8F454, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x5A0, symBinAddr: 0x57E80, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8F477, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x63C, symBinAddr: 0x57F1C, symSize: 0x278 } + - { offsetInCU: 0x2AFD, offset: 0x8F4A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B4, symBinAddr: 0x58194, symSize: 0x128 } + - { offsetInCU: 0x2B2E, offset: 0x8F4D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9DC, symBinAddr: 0x582BC, symSize: 0x224 } + - { offsetInCU: 0x2B5F, offset: 0x8F50A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC00, symBinAddr: 0x584E0, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8F540, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xCB0, symBinAddr: 0x58590, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD60, symBinAddr: 0x58640, symSize: 0x254 } + - { offsetInCU: 0x2DE8, offset: 0x8F793, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F78, symBinAddr: 0x59858, symSize: 0x1C8 } + - { offsetInCU: 0x2E34, offset: 0x8F7DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x2140, symBinAddr: 0x59A20, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8F8C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x633C0, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8F9FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x6342C, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8FA12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x63480, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8FA26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x634C4, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8FB07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x633C0, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8FB21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x633C8, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8FB53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x633D0, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8FB67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x633E0, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8FB88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x633E4, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8FB9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x633EC, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x8FBCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x633F4, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x8FBF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x63404, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x8FC13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x63408, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x8FC27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x63410, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x8FC57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x63418, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x8FC7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x63428, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x8FCD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x634D4, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x8FD22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x634F8, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x8FE28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x634D4, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x8FE90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63518, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x8FEE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x6353C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x8FFE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63518, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x90053, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6355C, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x900A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x635BC, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x900B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x635C4, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x900CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x63600, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x901D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x6355C, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x9023C, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x63678, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x90390, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x639E0, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x905B6, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x63678, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x907F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63A28, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x90842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x63A4C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90948, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x63A28, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x90A2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x9C8, symBinAddr: 0x643F4, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x90A46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x64400, symSize: 0x4C } + - { offsetInCU: 0xD5, offset: 0x90A5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x64400, symSize: 0x4C } + - { offsetInCU: 0xF1, offset: 0x90A7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA20, symBinAddr: 0x6444C, symSize: 0x38 } + - { offsetInCU: 0x180, offset: 0x90B09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xBF4, symBinAddr: 0x64620, symSize: 0xC } + - { offsetInCU: 0x19C, offset: 0x90B25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x6462C, symSize: 0x2C } + - { offsetInCU: 0x1B4, offset: 0x90B3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x6462C, symSize: 0x2C } + - { offsetInCU: 0x56B, offset: 0x90EF4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x754, symBinAddr: 0x64180, symSize: 0xC8 } + - { offsetInCU: 0x5DF, offset: 0x90F68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xC2C, symBinAddr: 0x64658, symSize: 0x334 } + - { offsetInCU: 0x811, offset: 0x9119A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xF60, symBinAddr: 0x6498C, symSize: 0x13C } + - { offsetInCU: 0xA33, offset: 0x913BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x336C, symBinAddr: 0x66CF8, symSize: 0x21C } + - { offsetInCU: 0xAE4, offset: 0x9146D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x36B0, symBinAddr: 0x66FE0, symSize: 0x25C } + - { offsetInCU: 0xB49, offset: 0x914D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x390C, symBinAddr: 0x6723C, symSize: 0x248 } + - { offsetInCU: 0xC71, offset: 0x915FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3B54, symBinAddr: 0x67484, symSize: 0x2BC } + - { offsetInCU: 0xDB0, offset: 0x91739, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3E10, symBinAddr: 0x67740, symSize: 0x1A8 } + - { offsetInCU: 0xDF6, offset: 0x9177F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3FB8, symBinAddr: 0x678E8, symSize: 0x43C } + - { offsetInCU: 0x112D, offset: 0x91AB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x43F4, symBinAddr: 0x67D24, symSize: 0xC4 } + - { offsetInCU: 0x1272, offset: 0x91BFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2DF8, symBinAddr: 0x66824, symSize: 0x4 } + - { offsetInCU: 0x1286, offset: 0x91C0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2DFC, symBinAddr: 0x66828, symSize: 0x44 } + - { offsetInCU: 0x129A, offset: 0x91C23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2E40, symBinAddr: 0x6686C, symSize: 0x4 } + - { offsetInCU: 0x12AE, offset: 0x91C37, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2E44, symBinAddr: 0x66870, symSize: 0x4C } + - { offsetInCU: 0x12C2, offset: 0x91C4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x2ED4, symBinAddr: 0x668BC, symSize: 0x4 } + - { offsetInCU: 0x12D6, offset: 0x91C5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x2ED8, symBinAddr: 0x668C0, symSize: 0x44 } + - { offsetInCU: 0x12EA, offset: 0x91C73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x2F2C, symBinAddr: 0x66904, symSize: 0x90 } + - { offsetInCU: 0x12FE, offset: 0x91C87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x2FBC, symBinAddr: 0x66994, symSize: 0xBC } + - { offsetInCU: 0x1312, offset: 0x91C9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x3078, symBinAddr: 0x66A50, symSize: 0x8 } + - { offsetInCU: 0x1326, offset: 0x91CAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x3080, symBinAddr: 0x66A58, symSize: 0x4 } + - { offsetInCU: 0x133A, offset: 0x91CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x3084, symBinAddr: 0x66A5C, symSize: 0x8 } + - { offsetInCU: 0x134E, offset: 0x91CD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x308C, symBinAddr: 0x66A64, symSize: 0x10 } + - { offsetInCU: 0x1362, offset: 0x91CEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x309C, symBinAddr: 0x66A74, symSize: 0x90 } + - { offsetInCU: 0x1376, offset: 0x91CFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x312C, symBinAddr: 0x66B04, symSize: 0xBC } + - { offsetInCU: 0x138A, offset: 0x91D13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x31E8, symBinAddr: 0x66BC0, symSize: 0x8 } + - { offsetInCU: 0x139E, offset: 0x91D27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x31F0, symBinAddr: 0x66BC8, symSize: 0x4 } + - { offsetInCU: 0x13B2, offset: 0x91D3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x31F4, symBinAddr: 0x66BCC, symSize: 0xC } + - { offsetInCU: 0x13C6, offset: 0x91D4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3200, symBinAddr: 0x66BD8, symSize: 0x10 } + - { offsetInCU: 0x13DA, offset: 0x91D63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3210, symBinAddr: 0x66BE8, symSize: 0x20 } + - { offsetInCU: 0x13EE, offset: 0x91D77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x3238, symBinAddr: 0x66C08, symSize: 0xC } + - { offsetInCU: 0x1402, offset: 0x91D8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x3244, symBinAddr: 0x66C14, symSize: 0x4 } + - { offsetInCU: 0x1416, offset: 0x91D9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x3248, symBinAddr: 0x66C18, symSize: 0x44 } + - { offsetInCU: 0x142A, offset: 0x91DB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x328C, symBinAddr: 0x66C5C, symSize: 0xC } + - { offsetInCU: 0x143E, offset: 0x91DC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x3298, symBinAddr: 0x66C68, symSize: 0x4 } + - { offsetInCU: 0x1452, offset: 0x91DDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x329C, symBinAddr: 0x66C6C, symSize: 0x44 } + - { offsetInCU: 0x1466, offset: 0x91DEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x32E0, symBinAddr: 0x66CB0, symSize: 0xC } + - { offsetInCU: 0x14DA, offset: 0x91E63, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x35C4, symBinAddr: 0x66F50, symSize: 0x48 } + - { offsetInCU: 0x14EE, offset: 0x91E77, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOc', symObjAddr: 0x360C, symBinAddr: 0x66F98, symSize: 0x48 } + - { offsetInCU: 0x154D, offset: 0x91ED6, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x44B8, symBinAddr: 0x67DE8, symSize: 0x3C } + - { offsetInCU: 0x1561, offset: 0x91EEA, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x44F4, symBinAddr: 0x67E24, symSize: 0x24 } + - { offsetInCU: 0x1575, offset: 0x91EFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x454C, symBinAddr: 0x67E6C, symSize: 0x8 } + - { offsetInCU: 0x1589, offset: 0x91F12, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4554, symBinAddr: 0x67E74, symSize: 0x10 } + - { offsetInCU: 0x159D, offset: 0x91F26, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4564, symBinAddr: 0x67E84, symSize: 0x8 } + - { offsetInCU: 0x15B1, offset: 0x91F3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x45C4, symBinAddr: 0x67E8C, symSize: 0x8 } + - { offsetInCU: 0x15C5, offset: 0x91F4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x4608, symBinAddr: 0x67E94, symSize: 0x10 } + - { offsetInCU: 0x16C3, offset: 0x9204C, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x144, symBinAddr: 0x63B70, symSize: 0x134 } + - { offsetInCU: 0x1784, offset: 0x9210D, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x278, symBinAddr: 0x63CA4, symSize: 0xF0 } + - { offsetInCU: 0x181F, offset: 0x921A8, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x368, symBinAddr: 0x63D94, symSize: 0x90 } + - { offsetInCU: 0x19FF, offset: 0x92388, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x6426C, symSize: 0xC } + - { offsetInCU: 0x1A7F, offset: 0x92408, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x84C, symBinAddr: 0x64278, symSize: 0x8C } + - { offsetInCU: 0x1B33, offset: 0x924BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D8, symBinAddr: 0x64304, symSize: 0x68 } + - { offsetInCU: 0x1BA3, offset: 0x9252C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x940, symBinAddr: 0x6436C, symSize: 0x88 } + - { offsetInCU: 0x1C3B, offset: 0x925C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xACC, symBinAddr: 0x644F8, symSize: 0xC } + - { offsetInCU: 0x1CBB, offset: 0x92644, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xAD8, symBinAddr: 0x64504, symSize: 0x6C } + - { offsetInCU: 0x1D6F, offset: 0x926F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB44, symBinAddr: 0x64570, symSize: 0x48 } + - { offsetInCU: 0x1DE1, offset: 0x9276A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x645B8, symSize: 0x68 } + - { offsetInCU: 0x21B4, offset: 0x92B3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x63A6C, symSize: 0x6C } + - { offsetInCU: 0x21EB, offset: 0x92B74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x63AD8, symSize: 0x28 } + - { offsetInCU: 0x220A, offset: 0x92B93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x63B00, symSize: 0x48 } + - { offsetInCU: 0x223D, offset: 0x92BC6, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63B48, symSize: 0x4 } + - { offsetInCU: 0x2255, offset: 0x92BDE, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63B48, symSize: 0x4 } + - { offsetInCU: 0x2269, offset: 0x92BF2, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63B48, symSize: 0x4 } + - { offsetInCU: 0x227D, offset: 0x92C06, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63B48, symSize: 0x4 } + - { offsetInCU: 0x2291, offset: 0x92C1A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x63B48, symSize: 0x4 } + - { offsetInCU: 0x22B1, offset: 0x92C3A, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x63B4C, symSize: 0x24 } + - { offsetInCU: 0x235C, offset: 0x92CE5, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x3F8, symBinAddr: 0x63E24, symSize: 0xC4 } + - { offsetInCU: 0x250F, offset: 0x92E98, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x63EE8, symSize: 0x48 } + - { offsetInCU: 0x2527, offset: 0x92EB0, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x63EE8, symSize: 0x48 } + - { offsetInCU: 0x2547, offset: 0x92ED0, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x63EE8, symSize: 0x48 } + - { offsetInCU: 0x255B, offset: 0x92EE4, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x63EE8, symSize: 0x48 } + - { offsetInCU: 0x256F, offset: 0x92EF8, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x63EE8, symSize: 0x48 } + - { offsetInCU: 0x2583, offset: 0x92F0C, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x63EE8, symSize: 0x48 } + - { offsetInCU: 0x2657, offset: 0x92FE0, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x504, symBinAddr: 0x63F30, symSize: 0x88 } + - { offsetInCU: 0x2714, offset: 0x9309D, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x58C, symBinAddr: 0x63FB8, symSize: 0x80 } + - { offsetInCU: 0x27AF, offset: 0x93138, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x60C, symBinAddr: 0x64038, symSize: 0xE4 } + - { offsetInCU: 0x2903, offset: 0x9328C, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x6411C, symSize: 0x64 } + - { offsetInCU: 0x291B, offset: 0x932A4, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x6411C, symSize: 0x64 } + - { offsetInCU: 0x292F, offset: 0x932B8, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x6411C, symSize: 0x64 } + - { offsetInCU: 0x2943, offset: 0x932CC, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x6411C, symSize: 0x64 } + - { offsetInCU: 0x2957, offset: 0x932E0, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x6411C, symSize: 0x64 } + - { offsetInCU: 0x29D4, offset: 0x9335D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x81C, symBinAddr: 0x64248, symSize: 0x24 } + - { offsetInCU: 0x2A36, offset: 0x933BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xA58, symBinAddr: 0x64484, symSize: 0x74 } + - { offsetInCU: 0x2AE5, offset: 0x9346E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x109C, symBinAddr: 0x64AC8, symSize: 0x9BC } + - { offsetInCU: 0x3093, offset: 0x93A1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1A58, symBinAddr: 0x65484, symSize: 0x694 } + - { offsetInCU: 0x3402, offset: 0x93D8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x20EC, symBinAddr: 0x65B18, symSize: 0x4B0 } + - { offsetInCU: 0x35CB, offset: 0x93F54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x259C, symBinAddr: 0x65FC8, symSize: 0x64C } + - { offsetInCU: 0x3ACE, offset: 0x94457, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2BE8, symBinAddr: 0x66614, symSize: 0x160 } + - { offsetInCU: 0x3BDA, offset: 0x94563, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2D48, symBinAddr: 0x66774, symSize: 0x2C } + - { offsetInCU: 0x3C13, offset: 0x9459C, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2DF4, symBinAddr: 0x66820, symSize: 0x4 } + - { offsetInCU: 0x3C40, offset: 0x945C9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3330, symBinAddr: 0x66CBC, symSize: 0x14 } + - { offsetInCU: 0x3C70, offset: 0x945F9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x3344, symBinAddr: 0x66CD0, symSize: 0x14 } + - { offsetInCU: 0x3CA0, offset: 0x94629, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x3358, symBinAddr: 0x66CE4, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x947B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x67EB0, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x947CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x68038, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x947E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x680DC, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x947F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x68238, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x94809, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x68420, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x9481D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x6850C, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x94831, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x68694, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x94845, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x6872C, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x94859, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x687C4, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x9486D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x6884C, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x94881, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x688A0, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x94895, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x689C4, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x948A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x68A48, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x948BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x68B3C, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x948D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x68C9C, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x948E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x68D78, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x948F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x68EC0, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x9490D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x68F58, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x94921, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x69024, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x949AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17AC, symBinAddr: 0x6961C, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x94A0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17C4, symBinAddr: 0x69634, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x94A84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17F0, symBinAddr: 0x69660, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x94AB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1860, symBinAddr: 0x696D0, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x94AEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1884, symBinAddr: 0x696F4, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x94B06, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1890, symBinAddr: 0x69700, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x94B22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F68, symBinAddr: 0x6ACDC, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x94BDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18EC, symBinAddr: 0x6975C, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x94BFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1900, symBinAddr: 0x69770, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x94C80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AD8, symBinAddr: 0x69948, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x94CB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x69990, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x94CE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B44, symBinAddr: 0x699B4, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x94D02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x699C0, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x94D1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3150, symBinAddr: 0x6AEC4, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x94DCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BAC, symBinAddr: 0x69A1C, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x94E05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BF8, symBinAddr: 0x69A68, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x94E28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x32A4, symBinAddr: 0x6B018, symSize: 0x2A4 } + - { offsetInCU: 0x716, offset: 0x94E8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2438, symBinAddr: 0x6A2A8, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x94EC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2440, symBinAddr: 0x6A2B0, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x94EF2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2464, symBinAddr: 0x6A2D4, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x94F0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2470, symBinAddr: 0x6A2E0, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x94F2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3548, symBinAddr: 0x6B2BC, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x95086, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x24CC, symBinAddr: 0x6A33C, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x950A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x24E0, symBinAddr: 0x6A350, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x950CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2518, symBinAddr: 0x6A364, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x950E1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x257C, symBinAddr: 0x6A3A8, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x950F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2644, symBinAddr: 0x6A428, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x95109, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x26CC, symBinAddr: 0x6A46C, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x9511D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x27F8, symBinAddr: 0x6A598, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x95131, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x284C, symBinAddr: 0x6A5DC, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x95145, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x28DC, symBinAddr: 0x6A66C, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x95159, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2998, symBinAddr: 0x6A728, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x9516D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x29A0, symBinAddr: 0x6A730, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x95181, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x29A4, symBinAddr: 0x6A734, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x95195, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x29AC, symBinAddr: 0x6A73C, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x951A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x29BC, symBinAddr: 0x6A74C, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x951BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2A4C, symBinAddr: 0x6A7DC, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x951D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2B08, symBinAddr: 0x6A898, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x951E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2B0C, symBinAddr: 0x6A89C, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x951F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2B1C, symBinAddr: 0x6A8AC, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x9520D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2B4C, symBinAddr: 0x6A8DC, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x95221, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2B7C, symBinAddr: 0x6A90C, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x95235, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2BD8, symBinAddr: 0x6A968, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x95249, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2C88, symBinAddr: 0x6A9FC, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x9525D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2CEC, symBinAddr: 0x6AA60, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x95271, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2D48, symBinAddr: 0x6AABC, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x95285, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2DA8, symBinAddr: 0x6AB1C, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x95299, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2DB8, symBinAddr: 0x6AB2C, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x952AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2DBC, symBinAddr: 0x6AB30, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x952C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2E00, symBinAddr: 0x6AB74, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x952D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2E04, symBinAddr: 0x6AB78, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x952E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E48, symBinAddr: 0x6ABBC, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x952FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E4C, symBinAddr: 0x6ABC0, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x95311, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x6AC04, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x95325, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E94, symBinAddr: 0x6AC08, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x95339, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED8, symBinAddr: 0x6AC4C, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x9534D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EDC, symBinAddr: 0x6AC50, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x95361, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F20, symBinAddr: 0x6AC94, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x95375, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F24, symBinAddr: 0x6AC98, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x95394, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3864, symBinAddr: 0x6B5D8, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x953A8, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x38A8, symBinAddr: 0x6B61C, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x953BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x3974, symBinAddr: 0x6B6E8, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x953D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3A04, symBinAddr: 0x6B778, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x953E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3AC0, symBinAddr: 0x6B834, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x953F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3AC4, symBinAddr: 0x6B838, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x9540C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3AD4, symBinAddr: 0x6B848, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x95420, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3AD8, symBinAddr: 0x6B84C, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x95434, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3B1C, symBinAddr: 0x6B890, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x95448, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3B20, symBinAddr: 0x6B894, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x9545C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3B64, symBinAddr: 0x6B8D8, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x95470, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3B68, symBinAddr: 0x6B8DC, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x9549E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x189C, symBinAddr: 0x6970C, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x954BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18C4, symBinAddr: 0x69734, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x954DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B5C, symBinAddr: 0x699CC, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x954F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B84, symBinAddr: 0x699F4, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x9551A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x247C, symBinAddr: 0x6A2EC, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x95536, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x24A4, symBinAddr: 0x6A314, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x95643, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x690AC, symSize: 0x210 } + - { offsetInCU: 0xF04, offset: 0x9567A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x144C, symBinAddr: 0x692BC, symSize: 0x360 } + - { offsetInCU: 0xF7F, offset: 0x956F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1914, symBinAddr: 0x69784, symSize: 0x1BC } + - { offsetInCU: 0xFCA, offset: 0x95740, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1C38, symBinAddr: 0x69AA8, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x95763, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CE0, symBinAddr: 0x69B50, symSize: 0x274 } + - { offsetInCU: 0x1024, offset: 0x9579A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F54, symBinAddr: 0x69DC4, symSize: 0x458 } + - { offsetInCU: 0x27, offset: 0x95821, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6B940, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x95900, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x6BA28, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x95914, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x6BA58, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x95928, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x6BA80, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x9593C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x6BABC, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x95950, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x6BB28, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x95964, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x6BB6C, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x95978, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x6BBB4, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x9598C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x6BBF4, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x95A9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x6B940, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x95AB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x6B96C, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x95AEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x6B9A0, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x95AFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x6B9B0, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x95B1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x6B9B4, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x95B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x6B9E0, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x95B68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x6BA14, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x95B8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x6BA24, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x95BDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6BC04, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x95C3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x6BE9C, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x95C5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6BEA4, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x95C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6BEA4, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x95C8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x6BD8C, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x95CA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x6BD90, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x95CD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x6BEBC, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x95CEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x6BF4C, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x95CFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x6C008, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x95D13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x6C010, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x95D27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x6C014, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x95D3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x6C01C, symSize: 0x10 } + - { offsetInCU: 0x1BF, offset: 0x95D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x438, symBinAddr: 0x6C02C, symSize: 0x248 } + - { offsetInCU: 0x31A, offset: 0x95ED1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x6BD68, symSize: 0x24 } + - { offsetInCU: 0x40E, offset: 0x95FC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x6BDD4, symSize: 0x4C } + - { offsetInCU: 0x4E6, offset: 0x9609D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x6BE20, symSize: 0x34 } + - { offsetInCU: 0x562, offset: 0x96119, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x6BE54, symSize: 0x48 } + - { offsetInCU: 0x6ED, offset: 0x962A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6BC04, symSize: 0x14 } + - { offsetInCU: 0x70E, offset: 0x962C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x6BC18, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x9636F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6C274, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x963C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x6C298, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x964C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6C274, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x96556, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1D50, symBinAddr: 0x885E8, symSize: 0x0 } + - { offsetInCU: 0x60A, offset: 0x96B11, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x6C2EC, symSize: 0x4C } + - { offsetInCU: 0x622, offset: 0x96B29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x6C338, symSize: 0x94 } + - { offsetInCU: 0x7AC, offset: 0x96CB3, size: 0x8, addend: 0x0, symName: '_$sSo11NSPredicateCMa', symObjAddr: 0x1894, symBinAddr: 0x6DA98, symSize: 0x3C } + - { offsetInCU: 0x7C0, offset: 0x96CC7, size: 0x8, addend: 0x0, symName: '_$sS2Ss7CVarArg10FoundationWl', symObjAddr: 0x18D0, symBinAddr: 0x6DAD4, symSize: 0x44 } + - { offsetInCU: 0x7D4, offset: 0x96CDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_TA', symObjAddr: 0x1914, symBinAddr: 0x6DB18, symSize: 0x8 } + - { offsetInCU: 0x7E8, offset: 0x96CEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_TA', symObjAddr: 0x191C, symBinAddr: 0x6DB20, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x96D03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_TA', symObjAddr: 0x1924, symBinAddr: 0x6DB28, symSize: 0x8 } + - { offsetInCU: 0x810, offset: 0x96D17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_TA', symObjAddr: 0x192C, symBinAddr: 0x6DB30, symSize: 0x8 } + - { offsetInCU: 0x824, offset: 0x96D2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_TA', symObjAddr: 0x1934, symBinAddr: 0x6DB38, symSize: 0x8 } + - { offsetInCU: 0x838, offset: 0x96D3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x1998, symBinAddr: 0x6DB40, symSize: 0x20 } + - { offsetInCU: 0x84C, offset: 0x96D53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOb', symObjAddr: 0x19B8, symBinAddr: 0x6DB60, symSize: 0x48 } + - { offsetInCU: 0x860, offset: 0x96D67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOd', symObjAddr: 0x1A00, symBinAddr: 0x6DBA8, symSize: 0x48 } + - { offsetInCU: 0x874, offset: 0x96D7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1B84, symBinAddr: 0x6DD1C, symSize: 0x8 } + - { offsetInCU: 0x888, offset: 0x96D8F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1B8C, symBinAddr: 0x6DD24, symSize: 0x10 } + - { offsetInCU: 0x89C, offset: 0x96DA3, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1B9C, symBinAddr: 0x6DD34, symSize: 0x8 } + - { offsetInCU: 0x8E5, offset: 0x96DEC, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1BA4, symBinAddr: 0x6DD3C, symSize: 0x10 } + - { offsetInCU: 0x901, offset: 0x96E08, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1BA4, symBinAddr: 0x6DD3C, symSize: 0x10 } + - { offsetInCU: 0x915, offset: 0x96E1C, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1BA4, symBinAddr: 0x6DD3C, symSize: 0x10 } + - { offsetInCU: 0x954, offset: 0x96E5B, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x6C2B8, symSize: 0x4 } + - { offsetInCU: 0x970, offset: 0x96E77, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x6C2BC, symSize: 0x4 } + - { offsetInCU: 0x98C, offset: 0x96E93, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x6C2C0, symSize: 0x4 } + - { offsetInCU: 0x9A8, offset: 0x96EAF, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x6C2C4, symSize: 0x4 } + - { offsetInCU: 0x9C4, offset: 0x96ECB, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x6C2C8, symSize: 0x4 } + - { offsetInCU: 0x9E0, offset: 0x96EE7, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x6C2CC, symSize: 0x4 } + - { offsetInCU: 0x9FC, offset: 0x96F03, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x6C2D0, symSize: 0x4 } + - { offsetInCU: 0xA18, offset: 0x96F1F, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x6C2D4, symSize: 0xC } + - { offsetInCU: 0xA34, offset: 0x96F3B, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x6C2E0, symSize: 0xC } + - { offsetInCU: 0xCBF, offset: 0x971C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0x114, symBinAddr: 0x6C3CC, symSize: 0x40 } + - { offsetInCU: 0xE1E, offset: 0x97325, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF', symObjAddr: 0x154, symBinAddr: 0x6C40C, symSize: 0x64C } + - { offsetInCU: 0x1241, offset: 0x97748, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_', symObjAddr: 0x7E0, symBinAddr: 0x6CA58, symSize: 0x5C } + - { offsetInCU: 0x12A7, offset: 0x977AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_', symObjAddr: 0x83C, symBinAddr: 0x6CAB4, symSize: 0x5C } + - { offsetInCU: 0x130D, offset: 0x97814, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_', symObjAddr: 0x898, symBinAddr: 0x6CB10, symSize: 0x5C } + - { offsetInCU: 0x1373, offset: 0x9787A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_', symObjAddr: 0x8F4, symBinAddr: 0x6CB6C, symSize: 0x5C } + - { offsetInCU: 0x13D9, offset: 0x978E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_', symObjAddr: 0x950, symBinAddr: 0x6CBC8, symSize: 0x5C } + - { offsetInCU: 0x14A4, offset: 0x979AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x9AC, symBinAddr: 0x6CC24, symSize: 0x44 } + - { offsetInCU: 0x150E, offset: 0x97A15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x9F0, symBinAddr: 0x6CC68, symSize: 0x10 } + - { offsetInCU: 0x1540, offset: 0x97A47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x9F0, symBinAddr: 0x6CC68, symSize: 0x10 } + - { offsetInCU: 0x156F, offset: 0x97A76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA00, symBinAddr: 0x6CC78, symSize: 0x54 } + - { offsetInCU: 0x15E6, offset: 0x97AED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0xB64, symBinAddr: 0x6CDDC, symSize: 0x34 } + - { offsetInCU: 0x1649, offset: 0x97B50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xB98, symBinAddr: 0x6CE10, symSize: 0x54 } + - { offsetInCU: 0x16C0, offset: 0x97BC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xBEC, symBinAddr: 0x6CE64, symSize: 0x4C } + - { offsetInCU: 0x174C, offset: 0x97C53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xC38, symBinAddr: 0x6CEB0, symSize: 0x84 } + - { offsetInCU: 0x17E7, offset: 0x97CEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xCBC, symBinAddr: 0x6CF34, symSize: 0x74 } + - { offsetInCU: 0x1896, offset: 0x97D9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xD30, symBinAddr: 0x6CFA8, symSize: 0x84 } + - { offsetInCU: 0x1931, offset: 0x97E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xDB4, symBinAddr: 0x6D02C, symSize: 0x38 } + - { offsetInCU: 0x19B1, offset: 0x97EB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xDEC, symBinAddr: 0x6D064, symSize: 0x38 } + - { offsetInCU: 0x1A31, offset: 0x97F38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE24, symBinAddr: 0x6D09C, symSize: 0x38 } + - { offsetInCU: 0x1AB1, offset: 0x97FB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE5C, symBinAddr: 0x6D0D4, symSize: 0x38 } + - { offsetInCU: 0x1B31, offset: 0x98038, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE94, symBinAddr: 0x6D10C, symSize: 0x38 } + - { offsetInCU: 0x1BB1, offset: 0x980B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xECC, symBinAddr: 0x6D144, symSize: 0x38 } + - { offsetInCU: 0x1C31, offset: 0x98138, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF04, symBinAddr: 0x6D17C, symSize: 0x38 } + - { offsetInCU: 0x1CB1, offset: 0x981B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xF3C, symBinAddr: 0x6D1B4, symSize: 0x38 } + - { offsetInCU: 0x1D11, offset: 0x98218, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xF74, symBinAddr: 0x6D1EC, symSize: 0x44 } + - { offsetInCU: 0x1DA8, offset: 0x982AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xFB8, symBinAddr: 0x6D230, symSize: 0x13C } + - { offsetInCU: 0x1E79, offset: 0x98380, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0x10F4, symBinAddr: 0x6D36C, symSize: 0xAC } + - { offsetInCU: 0x1F4B, offset: 0x98452, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x11A0, symBinAddr: 0x6D418, symSize: 0x78 } + - { offsetInCU: 0x1FE1, offset: 0x984E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x1218, symBinAddr: 0x6D490, symSize: 0x94 } + - { offsetInCU: 0x2004, offset: 0x9850B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x12AC, symBinAddr: 0x6D524, symSize: 0x20 } + - { offsetInCU: 0x2049, offset: 0x98550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1340, symBinAddr: 0x6D544, symSize: 0x254 } + - { offsetInCU: 0x2144, offset: 0x9864B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1594, symBinAddr: 0x6D798, symSize: 0x300 } +... diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h similarity index 99% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h index a663dff..7a92f1e 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Headers/IoTConnect2_AWS-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_AWS_SWIFT_H #define IOTCONNECT2_AWS_SWIFT_H #pragma clang diagnostic push @@ -308,7 +308,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef IOTCONNECT2_AWS_SWIFT_H #define IOTCONNECT2_AWS_SWIFT_H #pragma clang diagnostic push diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist similarity index 72% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist index 4316769..e88acc6 100644 Binary files a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist and b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Info.plist differ diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS new file mode 100755 index 0000000..92d08bf Binary files /dev/null and b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/IoTConnect2_AWS differ diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/LICENSE b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/LICENSE similarity index 100% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/LICENSE rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/LICENSE diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..e803f23 --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,11121 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS12ReachabilityC", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2_AWS.DebugConfig", + "usr": "s:15IoTConnect2_AWS11DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2_AWS.MqttConfig", + "usr": "s:15IoTConnect2_AWS10MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS11DebugConfigV", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS10MqttConfigV", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PREQA", + "printedName": "PREQA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "POC", + "printedName": "POC", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS0A4TCPfO", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS9SSLOptionV", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS11CommandTypeO", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:errorBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS9SDKClientC", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", + "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10694, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10714, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 21067, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1240, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1782, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1240, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1782, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17549, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19290, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33316, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7566, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 2071, + "length": 16, + "value": "\"^[a-zA-Z0-9]+$\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 2120, + "length": 17, + "value": "\"^[\\w\\d—-]*$\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6157, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6177, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6405, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6425, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6655, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6675, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 7555, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 10576, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface similarity index 97% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index f25075a..f8f162c 100644 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation @@ -219,7 +218,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2_AWS.SDKClient - public func initialize(config: IoTConnect2_AWS.IoTConnectConfig) + public func initialize(config: IoTConnect2_AWS.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc similarity index 82% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 4c111b1..53a9ba4 100644 Binary files a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface similarity index 97% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface index f25075a..f8f162c 100644 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation @@ -219,7 +218,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2_AWS.SDKClient - public func initialize(config: IoTConnect2_AWS.IoTConnectConfig) + public func initialize(config: IoTConnect2_AWS.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..e803f23 --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,11121 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Network", + "printedName": "Network", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClientOption", + "printedName": "SDKClientOption", + "children": [ + { + "kind": "Var", + "name": "ssl", + "printedName": "ssl", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SSLOption", + "printedName": "IoTConnect2_AWS.SSLOption", + "usr": "s:15IoTConnect2_AWS9SSLOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorage", + "printedName": "offlineStorage", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "OfflineStorageOption", + "printedName": "IoTConnect2_AWS.OfflineStorageOption", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skipValidation", + "printedName": "skipValidation", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "devicePK", + "printedName": "devicePK", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "cpId", + "printedName": "cpId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pf", + "printedName": "pf", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "env", + "printedName": "env", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionVACycfc", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionVACycfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV", + "mangledName": "$s15IoTConnect2_AWS15SDKClientOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "TypeDecl", + "name": "ReachabilityError", + "printedName": "ReachabilityError", + "children": [ + { + "kind": "Var", + "name": "failedToCreateWithAddress", + "printedName": "failedToCreateWithAddress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Darwin.sockaddr, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Darwin.sockaddr, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "sockaddr", + "printedName": "Darwin.sockaddr", + "usr": "c:@S@sockaddr" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO25failedToCreateWithAddressyACSo8sockaddrV_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "failedToCreateWithHostname", + "printedName": "failedToCreateWithHostname", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, Swift.Int32)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO26failedToCreateWithHostnameyACSS_s5Int32VtcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetCallback", + "printedName": "unableToSetCallback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO19unableToSetCallbackyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToSetDispatchQueue", + "printedName": "unableToSetDispatchQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO24unableToSetDispatchQueueyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "unableToGetFlags", + "printedName": "unableToGetFlags", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.ReachabilityError.Type) -> (Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int32) -> IoTConnect2_AWS.ReachabilityError", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.ReachabilityError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ReachabilityError", + "printedName": "IoTConnect2_AWS.ReachabilityError", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO16unableToGetFlagsyACs5Int32VcACmF", + "moduleName": "IoTConnect2_AWS" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS17ReachabilityErrorO", + "mangledName": "$s15IoTConnect2_AWS17ReachabilityErrorO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Reachability", + "printedName": "Reachability", + "children": [ + { + "kind": "TypeDecl", + "name": "Connection", + "printedName": "Connection", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4noneyA2EmF", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ] + }, + { + "kind": "Var", + "name": "unavailable", + "printedName": "unavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11unavailableyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "wifi", + "printedName": "wifi", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4wifiyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "cellular", + "printedName": "cellular", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability.Connection.Type) -> IoTConnect2_AWS.Reachability.Connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.Reachability.Connection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO8cellularyA2EmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + }, + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10ConnectionO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + }, + { + "kind": "Var", + "name": "whenReachable", + "printedName": "whenReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "whenUnreachable", + "printedName": "whenUnreachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((IoTConnect2_AWS.Reachability) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.Reachability) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reachableOnWWAN", + "printedName": "reachableOnWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "Available" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allowsCellularConnection", + "printedName": "allowsCellularConnection", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationCenter", + "printedName": "Foundation.NotificationCenter", + "usr": "c:objc(cs)NSNotificationCenter" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentReachabilityString", + "printedName": "currentReachabilityString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connection", + "printedName": "connection", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Connection", + "printedName": "IoTConnect2_AWS.Reachability.Connection", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10ConnectionO" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg", + "moduleName": "IoTConnect2_AWS", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reachabilityRef:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "SCNetworkReachability", + "printedName": "SystemConfiguration.SCNetworkReachability", + "usr": "c:@T@SCNetworkReachabilityRef" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hostname:queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(queueQoS:targetQueue:notificationQueue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Reachability", + "printedName": "IoTConnect2_AWS.Reachability", + "usr": "s:15IoTConnect2_AWS12ReachabilityC" + }, + { + "kind": "TypeNominal", + "name": "DispatchQoS", + "printedName": "Dispatch.DispatchQoS", + "hasDefaultArg": true, + "usr": "s:8Dispatch0A3QoSV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Dispatch.DispatchQueue?", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "throwing": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "startNotifier", + "printedName": "startNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopNotifier", + "printedName": "stopNotifier()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isReachable", + "printedName": "isReachable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11isReachableSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWWAN", + "printedName": "isReachableViaWWAN", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isReachableViaWiFi", + "printedName": "isReachableViaWiFi", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvp", + "moduleName": "IoTConnect2_AWS", + "deprecated": true, + "declAttributes": [ + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWiFiSbvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvp", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg", + "moduleName": "IoTConnect2_AWS", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS12ReachabilityC", + "mangledName": "$s15IoTConnect2_AWS12ReachabilityC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IoTConnectConfig", + "printedName": "IoTConnectConfig", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(uniqueId:mqttConnectionType:debugConfig:mqttConfig:sdkOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.DebugConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "DebugConfig", + "printedName": "IoTConnect2_AWS.DebugConfig", + "usr": "s:15IoTConnect2_AWS11DebugConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.MqttConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConfig", + "printedName": "IoTConnect2_AWS.MqttConfig", + "usr": "s:15IoTConnect2_AWS10MqttConfigV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKClientOption", + "printedName": "IoTConnect2_AWS.SDKClientOption", + "usr": "s:15IoTConnect2_AWS15SDKClientOptionV" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV", + "mangledName": "$s15IoTConnect2_AWS0A14TConnectConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DebugConfig", + "printedName": "DebugConfig", + "children": [ + { + "kind": "Var", + "name": "discoveryUrl", + "printedName": "discoveryUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV5debugSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS11DebugConfigV", + "mangledName": "$s15IoTConnect2_AWS11DebugConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConfig", + "printedName": "MqttConfig", + "children": [ + { + "kind": "Var", + "name": "certificateConfig", + "printedName": "certificateConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CertificateConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "CertificateConfig", + "printedName": "IoTConnect2_AWS.CertificateConfig", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "offlineStorageConfig", + "printedName": "offlineStorageConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig?", + "children": [ + { + "kind": "TypeNominal", + "name": "OfflineStorageConfig", + "printedName": "IoTConnect2_AWS.OfflineStorageConfig", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS10MqttConfigV", + "mangledName": "$s15IoTConnect2_AWS10MqttConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "CertificateConfig", + "printedName": "CertificateConfig", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "certificatePassword", + "printedName": "certificatePassword", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS17CertificateConfigV", + "mangledName": "$s15IoTConnect2_AWS17CertificateConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageConfig", + "printedName": "OfflineStorageConfig", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageConfigV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageConfigV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "TypeDecl", + "name": "MqttConnectionType", + "printedName": "MqttConnectionType", + "children": [ + { + "kind": "Var", + "name": "userCredntialAuthentication", + "printedName": "userCredntialAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO27userCredntialAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "certificateAuthentication", + "printedName": "certificateAuthentication", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.MqttConnectionType.Type) -> IoTConnect2_AWS.MqttConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.MqttConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO25certificateAuthenticationyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "MqttConnectionType", + "printedName": "IoTConnect2_AWS.MqttConnectionType", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hash", + "printedName": "hash(into:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Hasher", + "printedName": "Swift.Hasher", + "paramValueOwnership": "InOut", + "usr": "s:s6HasherV" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS18MqttConnectionTypeO", + "mangledName": "$s15IoTConnect2_AWS18MqttConnectionTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CocoaMQTT", + "printedName": "CocoaMQTT", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OfflineStorageOption", + "printedName": "OfflineStorageOption", + "children": [ + { + "kind": "Var", + "name": "availSpaceInMb", + "printedName": "availSpaceInMb", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "fileCount", + "printedName": "fileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "disabled", + "printedName": "disabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS20OfflineStorageOptionV", + "mangledName": "$s15IoTConnect2_AWS20OfflineStorageOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IOTCEnvironment", + "printedName": "IOTCEnvironment", + "children": [ + { + "kind": "Var", + "name": "PROD", + "printedName": "PROD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO4PRODyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PREQA", + "printedName": "PREQA", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO5PREQAyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "POC", + "printedName": "POC", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IOTCEnvironment.Type) -> IoTConnect2_AWS.IOTCEnvironment", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IOTCEnvironment.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO3POCyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IOTCEnvironment?", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO", + "mangledName": "$s15IoTConnect2_AWS15IOTCEnvironmentO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[IoTConnect2_AWS.IOTCEnvironment]", + "children": [ + { + "kind": "TypeNominal", + "name": "IOTCEnvironment", + "printedName": "IoTConnect2_AWS.IOTCEnvironment", + "usr": "s:15IoTConnect2_AWS15IOTCEnvironmentO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "IoTCPf", + "printedName": "IoTCPf", + "children": [ + { + "kind": "Var", + "name": "az", + "printedName": "az", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO2azyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "aws", + "printedName": "aws", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.IoTCPf.Type) -> IoTConnect2_AWS.IoTCPf", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.IoTCPf.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO3awsyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.IoTCPf?", + "children": [ + { + "kind": "TypeNominal", + "name": "IoTCPf", + "printedName": "IoTConnect2_AWS.IoTCPf", + "usr": "s:15IoTConnect2_AWS0A4TCPfO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS0A4TCPfO", + "mangledName": "$s15IoTConnect2_AWS0A4TCPfO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SSLOption", + "printedName": "SSLOption", + "children": [ + { + "kind": "Var", + "name": "certificatePath", + "printedName": "certificatePath", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "password", + "printedName": "password", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvp", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:15IoTConnect2_AWS9SSLOptionV", + "mangledName": "$s15IoTConnect2_AWS9SSLOptionV", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CommandType", + "printedName": "CommandType", + "children": [ + { + "kind": "Var", + "name": "DEVICE_COMMAND", + "printedName": "DEVICE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "OTA_COMMAND", + "printedName": "OTA_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO11OTA_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "MODULE_COMMAND", + "printedName": "MODULE_COMMAND", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14MODULE_COMMANDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "REFRESH_ATTRIBUTE", + "printedName": "REFRESH_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "FIRMWARE_UPDATE", + "printedName": "FIRMWARE_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15FIRMWARE_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_EDGE_RULE", + "printedName": "REFRESH_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO17REFRESH_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "REFRESH_CHILD_DEVICE", + "printedName": "REFRESH_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20REFRESH_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_CHANGE", + "printedName": "DATA_FREQUENCY_CHANGE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_CHANGEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DELETED", + "printedName": "DEVICE_DELETED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14DEVICE_DELETEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_DISABLED", + "printedName": "DEVICE_DISABLED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_DISABLEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_RELEASED", + "printedName": "DEVICE_RELEASED", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15DEVICE_RELEASEDyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_OPERATION", + "printedName": "STOP_OPERATION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO14STOP_OPERATIONyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "START_HEART_RATE", + "printedName": "START_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16START_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "STOP_HEART_RATE", + "printedName": "STOP_HEART_RATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO15STOP_HEART_RATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "PASSWORD_INFO_UPDATE", + "printedName": "PASSWORD_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO20PASSWORD_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DEVICE_INFO_UPDATE", + "printedName": "DEVICE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18DEVICE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "RULE_INFO_UPDATE", + "printedName": "RULE_INFO_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16RULE_INFO_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DEVICE_CONNECTION_STATUS", + "printedName": "DEVICE_CONNECTION_STATUS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24DEVICE_CONNECTION_STATUSyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "DATA_FREQUENCY_UPDATE", + "printedName": "DATA_FREQUENCY_UPDATE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO21DATA_FREQUENCY_UPDATEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "STOP_SDK_CONNECTION", + "printedName": "STOP_SDK_CONNECTION", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO19STOP_SDK_CONNECTIONyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "IDENTITIY_RESPONSE", + "printedName": "IDENTITIY_RESPONSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO18IDENTITIY_RESPONSEyA2CmF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "printedName": "GET_DEVICE_TEMPLATE_ATTRIBUTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO29GET_DEVICE_TEMPLATE_ATTRIBUTEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_DEVICE_TEMPLATE_TWIN", + "printedName": "GET_DEVICE_TEMPLATE_TWIN", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO24GET_DEVICE_TEMPLATE_TWINyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_EDGE_RULE", + "printedName": "GET_EDGE_RULE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13GET_EDGE_RULEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_CHILD_DEVICE", + "printedName": "GET_CHILD_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_CHILD_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "GET_PENDING_OTAS", + "printedName": "GET_PENDING_OTAS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO16GET_PENDING_OTASyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "CREATE_DEVICE", + "printedName": "CREATE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13CREATE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Var", + "name": "DELETE_DEVICE", + "printedName": "DELETE_DEVICE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(IoTConnect2_AWS.CommandType.Type) -> IoTConnect2_AWS.CommandType", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "IoTConnect2_AWS.CommandType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO13DELETE_DEVICEyA2CmF", + "moduleName": "IoTConnect2_AWS" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "IoTConnect2_AWS.CommandType?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommandType", + "printedName": "IoTConnect2_AWS.CommandType", + "usr": "s:15IoTConnect2_AWS11CommandTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfc", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivp", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg", + "moduleName": "IoTConnect2_AWS", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:15IoTConnect2_AWS11CommandTypeO", + "mangledName": "$s15IoTConnect2_AWS11CommandTypeO", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SDKClient", + "printedName": "SDKClient", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Var", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKClient", + "printedName": "IoTConnect2_AWS.SDKClient", + "usr": "s:15IoTConnect2_AWS9SDKClientC" + } + ], + "declKind": "Accessor", + "usr": "s:15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "initialize", + "printedName": "initialize(config:errorBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "IoTConnectConfig", + "printedName": "IoTConnect2_AWS.IoTConnectConfig", + "usr": "s:15IoTConnect2_AWS0A14TConnectConfigV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendData", + "printedName": "sendData(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendLog", + "printedName": "sendLog(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAck", + "printedName": "sendAck(data:msgType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckCmd", + "printedName": "sendAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10sendAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendOTAAckCmd", + "printedName": "sendOTAAckCmd(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendOTAAckCmd7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAckModule", + "printedName": "sendAckModule(ackGuid:status:msg:childId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13sendAckModule7ackGuid6status3msg7childIdySS_S3StF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAllTwins", + "printedName": "getAllTwins()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateTwin", + "printedName": "updateTwin(key:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dispose", + "printedName": "dispose(sdkconnection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getAttributes", + "printedName": "getAttributes(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTwins", + "printedName": "getTwins(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChildDevices", + "printedName": "getChildDevices(callBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceCallBack", + "printedName": "getDeviceCallBack(deviceCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceCommand", + "printedName": "onDeviceCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onAttrChangeCommand", + "printedName": "onAttrChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onDeviceChangeCommand", + "printedName": "onDeviceChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onRuleChangeCommand", + "printedName": "onRuleChangeCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onOTACommand", + "printedName": "onOTACommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onModuleCommand", + "printedName": "onModuleCommand(commandCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTwinChangeCommand", + "printedName": "onTwinChangeCommand(twinUpdateCallback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onFrequencyChangeCommand", + "printedName": "onFrequencyChangeCommand(dfValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createChildDevice", + "printedName": "createChildDevice(deviceId:deviceTag:displayName:createChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteChildDevice", + "printedName": "deleteChildDevice(deviceId:deleteChildCallBack:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Any?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:15IoTConnect2_AWS9SDKClientC", + "mangledName": "$s15IoTConnect2_AWS9SDKClientC", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "hasMissingDesignatedInitializers": true + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "reachabilityChanged", + "printedName": "reachabilityChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ", + "moduleName": "IoTConnect2_AWS", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:SS15IoTConnect2_AWSE6stringS2S_tcfc", + "mangledName": "$sSS15IoTConnect2_AWSE6stringS2S_tcfc", + "moduleName": "IoTConnect2_AWS", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", + "children": [ + { + "kind": "TypeNominal", + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ + { + "kind": "TypeNominal", + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sy", + "mangledName": "$sSy" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", + "children": [ + { + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] + } + ], + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1649, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1682, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "BooleanLiteral", + "offset": 1849, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "Array", + "offset": 1919, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "IntegerLiteral", + "offset": 2026, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2363, + "length": 48, + "value": "\"$iothub\/twin\/PATCH\/properties\/reported\/?$rid=1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 41, + "value": "\"$iothub\/twin\/PATCH\/properties\/desired\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2516, + "length": 26, + "value": "\"$iothub\/twin\/GET\/?$rid=0\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 2574, + "length": 20, + "value": "\"$iothub\/twin\/res\/#\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10694, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 10714, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectManager.swift", + "kind": "StringLiteral", + "offset": 21067, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 141, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 161, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 7, + "value": "\"https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 352, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 8, + "value": "\"Accept\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 494, + "length": 16, + "value": "\"Content-Length\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/NetworkConstants.swift", + "kind": "StringLiteral", + "offset": 562, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "BooleanLiteral", + "offset": 468, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/SDKClientOption.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1240, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1782, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 361, + "length": 29, + "value": "\"<>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 415, + "length": 37, + "value": "\"Discovery URL can not be blank\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 477, + "length": 62, + "value": "\"SDK options : set proper certificate file path and try again\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 23, + "value": "\"Unable to get baseUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 612, + "length": 30, + "value": "\"Device information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 667, + "length": 37, + "value": "\"Device broker information not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 729, + "length": 24, + "value": "\"Please give CPID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 778, + "length": 28, + "value": "\"Please give uniqueID value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 831, + "length": 26, + "value": "\"Client connection closed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 23, + "value": "\"Please give env value\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 930, + "length": 25, + "value": "\"Please enter valid CPID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 29, + "value": "\"Please enter valid UniqueID\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1034, + "length": 47, + "value": "\"It does not matched with payload's 'uniqueId'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1106, + "length": 35, + "value": "\"Missing required parameter 'data'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1166, + "length": 49, + "value": "\"Publish data failed : MQTT connection not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1240, + "length": 31, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1296, + "length": 55, + "value": "\"Device is barred updateTwin() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1376, + "length": 69, + "value": "\"Missing required parameter 'key' or 'value' to update twin property\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1470, + "length": 56, + "value": "\"Device is barred getAllTwins() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1551, + "length": 32, + "value": "\"<> \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1608, + "length": 72, + "value": "\"Missing required parameter 'data' or 'msgType' to send acknowledgement\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1705, + "length": 52, + "value": "\"Device is barred SendAck() method is not permitted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1782, + "length": 30, + "value": "\" <>\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1837, + "length": 26, + "value": "\"Unable to scan directory\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1888, + "length": 26, + "value": "\"Connection not available\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1939, + "length": 27, + "value": "\"Attributes data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 1991, + "length": 22, + "value": "\"Twins data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2038, + "length": 30, + "value": "\"Child devices data not found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2093, + "length": 20, + "value": "\"JSON parsing error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2151, + "length": 80, + "value": "\"Device not found. Device is not whitelisted to platform\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2257, + "length": 22, + "value": "\"Device is not active\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2305, + "length": 63, + "value": "\"Un-Associated. Device has not any template associated with it\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2394, + "length": 70, + "value": "\"Device is not acquired. Device is created but it is in release state\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2490, + "length": 67, + "value": "\"Device is disabled. It’s disabled from IoTHub by Platform Admin\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 39, + "value": "\"Company not found as SID is not valid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2647, + "length": 25, + "value": "\"Subscription is expired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2697, + "length": 24, + "value": "\"Connection Not Allowed\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2746, + "length": 31, + "value": "\"Invalid Bootstrap Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 33, + "value": "\"Invalid Operational Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2867, + "length": 73, + "value": "\"Please pass attribute value as String or check the format you have sent\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 42, + "value": "\"Device information received successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3064, + "length": 18, + "value": "\"Device connected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3108, + "length": 21, + "value": "\"Device disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3155, + "length": 17, + "value": "\"Initializing...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3198, + "length": 15, + "value": "\"Connecting...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3239, + "length": 15, + "value": "\"Rechecking...\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3280, + "length": 49, + "value": "\"BaseUrl received to sync the device information\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3355, + "length": 24, + "value": "\"Response Code : 0 'OK'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3405, + "length": 43, + "value": "\"Response Code : 1 'DEVICE_NOT_REGISTERED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3474, + "length": 35, + "value": "\"Response Code : 2 'AUTO_REGISTER'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3535, + "length": 38, + "value": "\"Response Code : 3 'DEVICE_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3599, + "length": 37, + "value": "\"Response Code : 4 'DEVICE_INACTIVE'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3662, + "length": 34, + "value": "\"Response Code : 5 'OBJECT_MOVED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3722, + "length": 36, + "value": "\"Response Code : 6 'CPID_NOT_FOUND'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3784, + "length": 44, + "value": "\"Response Code : 'NO_RESPONSE_CODE_MATCHED'\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3854, + "length": 14, + "value": "\"Publish data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3894, + "length": 36, + "value": "\"Twin property updated successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 3956, + "length": 59, + "value": "\"Request sent successfully to get the all twin properties.\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 35, + "value": "\"Command : 0x01 : STANDARD_COMMAND\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4102, + "length": 34, + "value": "\"Command : 0x02 : FIRMWARE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4162, + "length": 34, + "value": "\"Command : 101 : ATTRIBUTE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4222, + "length": 33, + "value": "\"Command : 0x11 : SETTING_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 34, + "value": "\"Command : 0x12 : PASSWORD_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4341, + "length": 32, + "value": "\"Command : 0x13 : DEVICE_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4399, + "length": 38, + "value": "\"Command : 0x99 : STOP_SDK_CONNECTION\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4463, + "length": 35, + "value": "\"Command acknowledgement success\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4524, + "length": 40, + "value": "\"Command : 0x17 : DATA_FREQUENCY_UPDATE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4590, + "length": 20, + "value": "\"Offline data saved\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4636, + "length": 45, + "value": "\"File has been created to store offline data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4707, + "length": 26, + "value": "\"Offline log file deleted\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4759, + "length": 23, + "value": "\"No offline data found\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 40, + "value": "\"Offline data publish :: Send\/Total :: \"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4874, + "length": 29, + "value": "\"Device already disconnected\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4929, + "length": 29, + "value": "\"Get attributes successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 4984, + "length": 24, + "value": "\"Get twind successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/ErrosLog.swift", + "kind": "StringLiteral", + "offset": 5034, + "length": 32, + "value": "\"Get child devices successfully\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1741, + "length": 33, + "value": "\"ReachabilityChangedNotification\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "StringLiteral", + "offset": 1869, + "length": 21, + "value": "\"reachabilityChanged\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 3138, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4271, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/OtherFramwork\/Reachability.swift", + "kind": "BooleanLiteral", + "offset": 4382, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/IoTConnectConfig.swift", + "kind": "BooleanLiteral", + "offset": 1244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/IoTConnectManager\/IoTConnectService.swift", + "kind": "StringLiteral", + "offset": 17549, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 397, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 477, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 611, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 659, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 707, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "IntegerLiteral", + "offset": 751, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 782, + "length": 15, + "value": "\"logs\/offline\/\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "BooleanLiteral", + "offset": 845, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 1708, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 19290, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/MQTTClient.swift", + "kind": "StringLiteral", + "offset": 33316, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 535, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Identity.swift", + "kind": "StringLiteral", + "offset": 1206, + "length": 5, + "value": "\"c2d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 6, + "value": "\"PROD\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 7, + "value": "\"PREQA\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 5, + "value": "\"poc\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 4, + "value": "\"az\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 407, + "length": 5, + "value": "\"aws\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 470, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/Common.swift", + "kind": "StringLiteral", + "offset": 511, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1262, + "length": 10, + "value": "\"log:mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Discovery.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 11, + "value": "\"log:https\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Models\/Attributes.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 155, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 177, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/common\/Network\/HTTPRequestConfig.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"PATCH\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 135, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 163, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 194, + "length": 3, + "value": "101" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 233, + "length": 3, + "value": "102" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 3, + "value": "103" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 310, + "length": 3, + "value": "104" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 3, + "value": "105" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "106" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 408, + "length": 3, + "value": "107" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 3, + "value": "108" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 3, + "value": "109" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 3, + "value": "110" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 3, + "value": "111" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 3, + "value": "112" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 3, + "value": "113" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 650, + "length": 3, + "value": "115" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 3, + "value": "116" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 3, + "value": "117" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 786, + "length": 3, + "value": "199" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 873, + "length": 3, + "value": "201" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 3, + "value": "202" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 942, + "length": 3, + "value": "203" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 974, + "length": 3, + "value": "204" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1006, + "length": 3, + "value": "205" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1035, + "length": 3, + "value": "221" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 3, + "value": "222" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1118, + "length": 33, + "value": "\"https:\/\/discovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1186, + "length": 61, + "value": "\"https:\/\/jzbybwq654.execute-api.us-east-1.amazonaws.com\/Prod\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 36, + "value": "\"https:\/\/awsdiscovery.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1392, + "length": 40, + "value": "\"https:\/\/discoveryconsole.iotconnect.io\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 6, + "value": "\"?pf=\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 2845, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2927, + "length": 7, + "value": "\"M_ios\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2960, + "length": 5, + "value": "\"2.1\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 2996, + "length": 6, + "value": "\"mqtt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3033, + "length": 6, + "value": "\"http\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3070, + "length": 6, + "value": "\"amqp\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3107, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3137, + "length": 9, + "value": "\"isDebug\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3177, + "length": 14, + "value": "\"discoveryUrl\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3221, + "length": 13, + "value": "\"Certificate\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3261, + "length": 10, + "value": "\"Password\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 3301, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3338, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3369, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "BooleanLiteral", + "offset": 3399, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "FloatLiteral", + "offset": 3442, + "length": 4, + "value": "10.0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "Dictionary", + "offset": 3482, + "length": 63, + "value": "[(\"min\", 1), (\"max\", 2), (\"sum\", 4), (\"avg\", 8), (\"count\", 16), (\"lv\", 32)]" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3593, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3621, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3649, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3751, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3783, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3814, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3861, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3884, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3911, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3946, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3969, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 3992, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4015, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4041, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4065, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4098, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4130, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4240, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4279, + "length": 8, + "value": "\"option\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4319, + "length": 11, + "value": "\"attribute\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4360, + "length": 9, + "value": "\"setting\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4403, + "length": 10, + "value": "\"protocol\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4442, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4482, + "length": 11, + "value": "\"sdkConfig\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 4520, + "length": 6, + "value": "\"rule\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4579, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4622, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4658, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4696, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4734, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4769, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4805, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4874, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4909, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4943, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 4977, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5011, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5045, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5079, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5113, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5147, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5181, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5215, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "IntegerLiteral", + "offset": 5250, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5301, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5331, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5359, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5390, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5424, + "length": 4, + "value": "\"st\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5457, + "length": 5, + "value": "\"msg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5487, + "length": 5, + "value": "\"cid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5550, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5580, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5610, + "length": 6, + "value": "\"meta\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5642, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5673, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5726, + "length": 4, + "value": "\"df\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5756, + "length": 4, + "value": "\"cd\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5786, + "length": 4, + "value": "\"at\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5817, + "length": 5, + "value": "\"gtw\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5848, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5877, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5908, + "length": 6, + "value": "\"edge\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5940, + "length": 4, + "value": "\"pf\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 5971, + "length": 5, + "value": "\"hwv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6003, + "length": 5, + "value": "\"swv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6033, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6089, + "length": 6, + "value": "\"cpId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6126, + "length": 10, + "value": "\"uniqueId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6167, + "length": 3, + "value": "\"t\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6201, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6236, + "length": 3, + "value": "\"d\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6270, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6306, + "length": 3, + "value": "\"l\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6340, + "length": 3, + "value": "\"e\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6374, + "length": 3, + "value": "\"v\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6408, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6445, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6480, + "length": 4, + "value": "\"tg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6515, + "length": 4, + "value": "\"dt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6550, + "length": 3, + "value": "\"g\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6584, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6622, + "length": 9, + "value": "\"desired\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6662, + "length": 6, + "value": "\"time\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6699, + "length": 5, + "value": "\"dtg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6735, + "length": 5, + "value": "\"has\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6771, + "length": 6, + "value": "\"attr\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6808, + "length": 5, + "value": "\"set\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6844, + "length": 3, + "value": "\"r\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6878, + "length": 5, + "value": "\"ota\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6921, + "length": 4, + "value": "\"cv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 6963, + "length": 4, + "value": "\"sg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7005, + "length": 4, + "value": "\"ct\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7047, + "length": 6, + "value": "\"guid\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7091, + "length": 9, + "value": "\"command\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7138, + "length": 5, + "value": "\"ack\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7181, + "length": 7, + "value": "\"ackId\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7226, + "length": 4, + "value": "\"ec\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7268, + "length": 4, + "value": "\"rg\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7310, + "length": 4, + "value": "\"dv\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7352, + "length": 4, + "value": "\"ln\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7394, + "length": 9, + "value": "\"rptdata\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7441, + "length": 4, + "value": "\"mt\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7483, + "length": 4, + "value": "\"dn\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7525, + "length": 3, + "value": "\"p\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/Config.swift", + "kind": "StringLiteral", + "offset": 7566, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 2071, + "length": 16, + "value": "\"^[a-zA-Z0-9]+$\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 2120, + "length": 17, + "value": "\"^[\\w\\d—-]*$\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6157, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6177, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6405, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6425, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6655, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 6675, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "StringLiteral", + "offset": 7555, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kirtan.vaghela\/Desktop\/IoTConnect\/IoTConnect2\/IoTConnect2\/IoTConnect_2.0\/SDKClient.swift", + "kind": "IntegerLiteral", + "offset": 10576, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface similarity index 97% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 370a428..359f0f8 100644 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation @@ -219,7 +218,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2_AWS.SDKClient - public func initialize(config: IoTConnect2_AWS.IoTConnectConfig) + public func initialize(config: IoTConnect2_AWS.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc similarity index 82% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index e12d362..944019a 100644 Binary files a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface similarity index 97% rename from IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 370a428..359f0f8 100644 --- a/IoTConnect2/framework_AWS2/xcframeworks/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,7 +1,6 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5) -// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name IoTConnect2_AWS -// swift-module-flags-ignorable: -enable-bare-slash-regex +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios14.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name IoTConnect2_AWS import CocoaMQTT import CommonCrypto import Foundation @@ -219,7 +218,7 @@ public typealias CreateChildDeviceCallBackBlock = (Any?) -> () public typealias DeleteChildDeviceCallBackBlock = (Any?) -> () @_hasMissingDesignatedInitializers public class SDKClient { public static let shared: IoTConnect2_AWS.SDKClient - public func initialize(config: IoTConnect2_AWS.IoTConnectConfig) + public func initialize(config: IoTConnect2_AWS.IoTConnectConfig, errorBlock: @escaping (_ error: Swift.String) -> Swift.Void) public func sendData(data: [Swift.String : Any]) public func sendLog(data: [Swift.String : Any]?) public func sendAck(data: [[Swift.String : Any]], msgType: Swift.String) diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/module.modulemap b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/module.modulemap similarity index 100% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/module.modulemap rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/Modules/module.modulemap diff --git a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/_CodeSignature/CodeResources b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources similarity index 84% rename from IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/_CodeSignature/CodeResources rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources index 9d888a6..855ea5b 100644 --- a/IoTConnect2/framework_AWS2/IoTConnect2AWS.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/IoTConnect2_AWS.framework/_CodeSignature/CodeResources +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/IoTConnect2_AWS.framework/_CodeSignature/CodeResources @@ -6,11 +6,11 @@ Headers/IoTConnect2_AWS-Swift.h - 3eyDqbdxxlXeyfjSKt3xqSpN8+k= + owtt8WnHlwLiJuobs6CHGLzSwtQ= Info.plist - tCgbaVTxmyguhH0Cm2d7MiwuelI= + sPFW9gqfRnasYrM88byg3pa0eGU= LICENSE @@ -18,43 +18,43 @@ Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.abi.json - Hfwi7NZMpQ45Rz33T1NDmv5aeuA= + AK4W7y98qyWVAM4oOwKS7loZHT4= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface - DpqlJA3OsRMr7X8YZMh7L/Ju0wo= + aliE2d2EGyw6ST3VBOZ5fKaD9xE= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc - yAxdVJzgY+2778ATlWF2zUPpKrg= + DKuQUpwZ0DuqnYCf/Az2upIBLts= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface - DpqlJA3OsRMr7X8YZMh7L/Ju0wo= + aliE2d2EGyw6ST3VBOZ5fKaD9xE= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule - IpkdthVbFT6LRhKqJIXi4anyEgg= + 6GX1dMf7UOs1nPjKs2NW/u01qDU= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json - Hfwi7NZMpQ45Rz33T1NDmv5aeuA= + AK4W7y98qyWVAM4oOwKS7loZHT4= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - vCdFUAOO2LIHztN8Sy9dPQxP0M4= + UpvUpXY4XdndCqfjrvBvPtU9xuI= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - tjgmZ62Dv3jTM2fEVyPUEqYZk6Q= + 6rlRPhPZ9u+hs9IsYqVqz/RWnoo= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - vCdFUAOO2LIHztN8Sy9dPQxP0M4= + UpvUpXY4XdndCqfjrvBvPtU9xuI= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - 7KeC2SSwepBbI3t4HTAmS5VW8pY= + 58ZoiEXrq8EfohqbrAQRBK/X5xw= Modules/module.modulemap @@ -67,7 +67,7 @@ hash2 - +BYwxp628zPRcYd6ac7n3Ux7khNdRvZzIRLymUwES60= + vXCcCcv2KqxNgdJFghz4muzYqgd5BxpcJZF61LmDjzc= LICENSE @@ -81,70 +81,70 @@ hash2 - TWoLTzUN0I0niG8boTNHAA/YxYy2xMOP/YQTpsIIV2Q= + Q6xh7Apl9I1ina8TlleuQC26k7RgXS/IYDRCOX52bqg= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash2 - c7jrGj139i19AryhJv1iUNDfeHSkxiyMmFEELqYls90= + Q6hlnEKOLtOnJa3ba8ksbcNFUlyAoyLYpSyCEL6vvcQ= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - BMBW6HQei+6QcN9UwDMr6MijnsIlMD47zADoO/I8Hmk= + 8q1O0TEHL7asMQ/5uv27qMujcZ7LJh+YQcpbkOPkEUY= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - c7jrGj139i19AryhJv1iUNDfeHSkxiyMmFEELqYls90= + Q6hlnEKOLtOnJa3ba8ksbcNFUlyAoyLYpSyCEL6vvcQ= Modules/IoTConnect2_AWS.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - qijlKq35lirHu6zf2ylgkHvnXuQyYzptczQ1MNnYUac= + 9Mlq8XWJ0txCU5WgLFqiI8Z8UyWAge3grU+RGHDz3xc= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.abi.json hash2 - TWoLTzUN0I0niG8boTNHAA/YxYy2xMOP/YQTpsIIV2Q= + Q6xh7Apl9I1ina8TlleuQC26k7RgXS/IYDRCOX52bqg= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash2 - UlZiYNE1kxYMASU1fgMCmn3k3gEhQblq9hog+yayK1A= + SyF7SvOvhP+m4/vGOn3pJ+ANRYw8KzIj1xRK8WzK9RY= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - VPxB0niJSyTAM9z4OWH2u7ynJC1kwskhTBQosrUfRxc= + Zjn8AJpZlSiMkf8wgvT7rhHra/h38NYepF7EZ66H4iE= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - UlZiYNE1kxYMASU1fgMCmn3k3gEhQblq9hog+yayK1A= + SyF7SvOvhP+m4/vGOn3pJ+ANRYw8KzIj1xRK8WzK9RY= Modules/IoTConnect2_AWS.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - N3ddGb0yaBpjPGXLvgdJuaF4J4aEAyIWSHw0jrw078A= + GO5YN4eOIiMvZtY8d0xeLkvDbGg7Act/y1UFgY44MQo= Modules/module.modulemap diff --git a/IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist similarity index 100% rename from IoTConnectDemo/IoTConnectDemo/IoTConnect_2_AWS.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist rename to IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Info.plist diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS new file mode 100644 index 0000000..d10cd4e Binary files /dev/null and b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/DWARF/IoTConnect2_AWS differ diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml new file mode 100644 index 0000000..9a778ce --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/aarch64/IoTConnect2_AWS.yml @@ -0,0 +1,1662 @@ +--- +triple: 'arm64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' +relocations: + - { offsetInCU: 0x34, offset: 0x58E66, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x6C090, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x58E9B, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x6C0C8, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x58F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x3AA30, symBinAddr: 0x854C8, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x591A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0x976C, symBinAddr: 0xDA84, symSize: 0x1558 } + - { offsetInCU: 0x1C16, offset: 0x5AAC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x40, symBinAddr: 0x4380, symSize: 0x3C } + - { offsetInCU: 0x1DD2, offset: 0x5AC83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1B5C, symBinAddr: 0x5E9C, symSize: 0x8 } + - { offsetInCU: 0x1DE6, offset: 0x5AC97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1B64, symBinAddr: 0x5EA4, symSize: 0x3C } + - { offsetInCU: 0x1DFA, offset: 0x5ACAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1BA0, symBinAddr: 0x5EE0, symSize: 0x168 } + - { offsetInCU: 0x2285, offset: 0x5B136, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0x8550, symBinAddr: 0xC880, symSize: 0xC } + - { offsetInCU: 0x2299, offset: 0x5B14A, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0x855C, symBinAddr: 0xC88C, symSize: 0x4 } + - { offsetInCU: 0x22AD, offset: 0x5B15E, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0x8560, symBinAddr: 0xC890, symSize: 0x20 } + - { offsetInCU: 0x22C1, offset: 0x5B172, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0x8580, symBinAddr: 0xC8B0, symSize: 0x28 } + - { offsetInCU: 0x24E6, offset: 0x5B397, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0x8BC0, symBinAddr: 0xCED8, symSize: 0x2C } + - { offsetInCU: 0x24FA, offset: 0x5B3AB, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0x8BEC, symBinAddr: 0xCF04, symSize: 0x2C } + - { offsetInCU: 0x250E, offset: 0x5B3BF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0x8C58, symBinAddr: 0xCF70, symSize: 0x2C } + - { offsetInCU: 0x2522, offset: 0x5B3D3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0x8C84, symBinAddr: 0xCF9C, symSize: 0x2C } + - { offsetInCU: 0x2576, offset: 0x5B427, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0x9094, symBinAddr: 0xD3AC, symSize: 0x68 } + - { offsetInCU: 0x2BAB, offset: 0x5BA5C, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xAD34, symBinAddr: 0xF04C, symSize: 0x40 } + - { offsetInCU: 0x2BBF, offset: 0x5BA70, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xAD74, symBinAddr: 0xF08C, symSize: 0x20 } + - { offsetInCU: 0x2BD3, offset: 0x5BA84, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xAD94, symBinAddr: 0xF0AC, symSize: 0x10 } + - { offsetInCU: 0x2BE7, offset: 0x5BA98, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xADA4, symBinAddr: 0xF0BC, symSize: 0x3C } + - { offsetInCU: 0x2BFB, offset: 0x5BAAC, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xAE40, symBinAddr: 0xF158, symSize: 0x44 } + - { offsetInCU: 0x2C0F, offset: 0x5BAC0, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xB00C, symBinAddr: 0xF324, symSize: 0x8 } + - { offsetInCU: 0x2C23, offset: 0x5BAD4, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xB014, symBinAddr: 0xF32C, symSize: 0x10 } + - { offsetInCU: 0x2C37, offset: 0x5BAE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xB024, symBinAddr: 0xF33C, symSize: 0x5C } + - { offsetInCU: 0x2C4B, offset: 0x5BAFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xB080, symBinAddr: 0xF398, symSize: 0x30C } + - { offsetInCU: 0x2C5F, offset: 0x5BB10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xB38C, symBinAddr: 0xF6A4, symSize: 0x240 } + - { offsetInCU: 0x2C73, offset: 0x5BB24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xB5CC, symBinAddr: 0xF8E4, symSize: 0x70 } + - { offsetInCU: 0x2C87, offset: 0x5BB38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xB63C, symBinAddr: 0xF954, symSize: 0x34 } + - { offsetInCU: 0x2C9B, offset: 0x5BB4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xB670, symBinAddr: 0xF988, symSize: 0x174 } + - { offsetInCU: 0x2CAF, offset: 0x5BB60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xB7E4, symBinAddr: 0xFAFC, symSize: 0xB4 } + - { offsetInCU: 0x2CC3, offset: 0x5BB74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xB898, symBinAddr: 0xFBB0, symSize: 0x10 } + - { offsetInCU: 0x2CD7, offset: 0x5BB88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xB8A8, symBinAddr: 0xFBC0, symSize: 0x34 } + - { offsetInCU: 0x2CEB, offset: 0x5BB9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xB95C, symBinAddr: 0xFC74, symSize: 0x5C } + - { offsetInCU: 0x2CFF, offset: 0x5BBB0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xBA5C, symBinAddr: 0xFD74, symSize: 0x2C } + - { offsetInCU: 0x2D13, offset: 0x5BBC4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xBA88, symBinAddr: 0xFDA0, symSize: 0x2C } + - { offsetInCU: 0x2D27, offset: 0x5BBD8, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xBAB4, symBinAddr: 0xFDCC, symSize: 0x2C } + - { offsetInCU: 0x2D3B, offset: 0x5BBEC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xBAE0, symBinAddr: 0xFDF8, symSize: 0x2C } + - { offsetInCU: 0x2D4F, offset: 0x5BC00, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xBB0C, symBinAddr: 0xFE24, symSize: 0x2C } + - { offsetInCU: 0x2D63, offset: 0x5BC14, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xBB38, symBinAddr: 0xFE50, symSize: 0x2C } + - { offsetInCU: 0x2D77, offset: 0x5BC28, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xBB64, symBinAddr: 0xFE7C, symSize: 0x2C } + - { offsetInCU: 0x314C, offset: 0x5BFFD, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x6E6C, symBinAddr: 0xB1AC, symSize: 0x6C } + - { offsetInCU: 0x3260, offset: 0x5C111, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x85BC, symBinAddr: 0xC8EC, symSize: 0x80 } + - { offsetInCU: 0x32F1, offset: 0x5C1A2, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0x863C, symBinAddr: 0xC96C, symSize: 0x90 } + - { offsetInCU: 0x3391, offset: 0x5C242, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x86CC, symBinAddr: 0xC9FC, symSize: 0x14 } + - { offsetInCU: 0x33CF, offset: 0x5C280, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x86EC, symBinAddr: 0xCA1C, symSize: 0x8 } + - { offsetInCU: 0x3432, offset: 0x5C2E3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x86F4, symBinAddr: 0xCA24, symSize: 0x14 } + - { offsetInCU: 0x34E3, offset: 0x5C394, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x8708, symBinAddr: 0xCA38, symSize: 0x14 } + - { offsetInCU: 0x358C, offset: 0x5C43D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x871C, symBinAddr: 0xCA4C, symSize: 0x14 } + - { offsetInCU: 0x3633, offset: 0x5C4E4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x8730, symBinAddr: 0xCA60, symSize: 0x30 } + - { offsetInCU: 0x37BF, offset: 0x5C670, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8760, symBinAddr: 0xCA90, symSize: 0x2C } + - { offsetInCU: 0x3956, offset: 0x5C807, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x878C, symBinAddr: 0xCABC, symSize: 0x24 } + - { offsetInCU: 0x3A42, offset: 0x5C8F3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x87B0, symBinAddr: 0xCAE0, symSize: 0x14 } + - { offsetInCU: 0x3AA8, offset: 0x5C959, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x87C4, symBinAddr: 0xCAF4, symSize: 0x14 } + - { offsetInCU: 0x3B0E, offset: 0x5C9BF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x87D8, symBinAddr: 0xCB08, symSize: 0x14 } + - { offsetInCU: 0x3B8D, offset: 0x5CA3E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x87EC, symBinAddr: 0xCB1C, symSize: 0x14 } + - { offsetInCU: 0x3C40, offset: 0x5CAF1, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x8800, symBinAddr: 0xCB30, symSize: 0x14 } + - { offsetInCU: 0x3CC1, offset: 0x5CB72, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x8814, symBinAddr: 0xCB44, symSize: 0x14 } + - { offsetInCU: 0x3D83, offset: 0x5CC34, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x8828, symBinAddr: 0xCB58, symSize: 0x14 } + - { offsetInCU: 0x3E1D, offset: 0x5CCCE, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x883C, symBinAddr: 0xCB6C, symSize: 0x10 } + - { offsetInCU: 0x3E85, offset: 0x5CD36, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x884C, symBinAddr: 0xCB7C, symSize: 0x18 } + - { offsetInCU: 0x3EA1, offset: 0x5CD52, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8864, symBinAddr: 0xCB94, symSize: 0x14 } + - { offsetInCU: 0x3F1D, offset: 0x5CDCE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0x8894, symBinAddr: 0xCBC4, symSize: 0x8 } + - { offsetInCU: 0x3F39, offset: 0x5CDEA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0x889C, symBinAddr: 0xCBCC, symSize: 0x14 } + - { offsetInCU: 0x3F6A, offset: 0x5CE1B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0x88B0, symBinAddr: 0xCBE0, symSize: 0x14 } + - { offsetInCU: 0x3F9B, offset: 0x5CE4C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0x88C4, symBinAddr: 0xCBF4, symSize: 0x14 } + - { offsetInCU: 0x3FCC, offset: 0x5CE7D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0x88D8, symBinAddr: 0xCC08, symSize: 0x30 } + - { offsetInCU: 0x3FFB, offset: 0x5CEAC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0x8908, symBinAddr: 0xCC38, symSize: 0x2C } + - { offsetInCU: 0x402C, offset: 0x5CEDD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0x8934, symBinAddr: 0xCC64, symSize: 0x24 } + - { offsetInCU: 0x405D, offset: 0x5CF0E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0x8958, symBinAddr: 0xCC88, symSize: 0x14 } + - { offsetInCU: 0x408E, offset: 0x5CF3F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0x896C, symBinAddr: 0xCC9C, symSize: 0x14 } + - { offsetInCU: 0x40BF, offset: 0x5CF70, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0x8980, symBinAddr: 0xCCB0, symSize: 0x14 } + - { offsetInCU: 0x40F0, offset: 0x5CFA1, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0x8994, symBinAddr: 0xCCC4, symSize: 0x14 } + - { offsetInCU: 0x4121, offset: 0x5CFD2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0x89A8, symBinAddr: 0xCCD8, symSize: 0x14 } + - { offsetInCU: 0x4152, offset: 0x5D003, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0x89BC, symBinAddr: 0xCCEC, symSize: 0x14 } + - { offsetInCU: 0x4183, offset: 0x5D034, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0x89D0, symBinAddr: 0xCD00, symSize: 0x14 } + - { offsetInCU: 0x41B4, offset: 0x5D065, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0x89E4, symBinAddr: 0xCD14, symSize: 0x10 } + - { offsetInCU: 0x41E5, offset: 0x5D096, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0x89F4, symBinAddr: 0xCD24, symSize: 0x18 } + - { offsetInCU: 0x4201, offset: 0x5D0B2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0x8A0C, symBinAddr: 0xCD3C, symSize: 0x14 } + - { offsetInCU: 0x4251, offset: 0x5D102, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8A2C, symBinAddr: 0xCD5C, symSize: 0x40 } + - { offsetInCU: 0x42D9, offset: 0x5D18A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x8A6C, symBinAddr: 0xCD9C, symSize: 0x70 } + - { offsetInCU: 0x435D, offset: 0x5D20E, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8B24, symBinAddr: 0xCE54, symSize: 0x4 } + - { offsetInCU: 0x4379, offset: 0x5D22A, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0x8B28, symBinAddr: 0xCE58, symSize: 0x4 } + - { offsetInCU: 0x43A4, offset: 0x5D255, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0x8B2C, symBinAddr: 0xCE5C, symSize: 0x40 } + - { offsetInCU: 0x4432, offset: 0x5D2E3, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0x8B84, symBinAddr: 0xCE9C, symSize: 0x3C } + - { offsetInCU: 0x4463, offset: 0x5D314, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8CB0, symBinAddr: 0xCFC8, symSize: 0x14 } + - { offsetInCU: 0x449A, offset: 0x5D34B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0x8CC4, symBinAddr: 0xCFDC, symSize: 0x3C } + - { offsetInCU: 0x44DA, offset: 0x5D38B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0x8D00, symBinAddr: 0xD018, symSize: 0x88 } + - { offsetInCU: 0x4584, offset: 0x5D435, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0x8E1C, symBinAddr: 0xD134, symSize: 0x84 } + - { offsetInCU: 0x45B8, offset: 0x5D469, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0x9434, symBinAddr: 0xD74C, symSize: 0xB8 } + - { offsetInCU: 0x4690, offset: 0x5D541, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0x94EC, symBinAddr: 0xD804, symSize: 0x164 } + - { offsetInCU: 0x48ED, offset: 0x5D79E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xACC4, symBinAddr: 0xEFDC, symSize: 0x38 } + - { offsetInCU: 0x490D, offset: 0x5D7BE, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xACC4, symBinAddr: 0xEFDC, symSize: 0x38 } + - { offsetInCU: 0x4921, offset: 0x5D7D2, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xACC4, symBinAddr: 0xEFDC, symSize: 0x38 } + - { offsetInCU: 0x4941, offset: 0x5D7F2, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xACC4, symBinAddr: 0xEFDC, symSize: 0x38 } + - { offsetInCU: 0x4955, offset: 0x5D806, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xACC4, symBinAddr: 0xEFDC, symSize: 0x38 } + - { offsetInCU: 0x4969, offset: 0x5D81A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xACC4, symBinAddr: 0xEFDC, symSize: 0x38 } + - { offsetInCU: 0x497D, offset: 0x5D82E, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xACC4, symBinAddr: 0xEFDC, symSize: 0x38 } + - { offsetInCU: 0x4A7A, offset: 0x5D92B, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xACFC, symBinAddr: 0xF014, symSize: 0x38 } + - { offsetInCU: 0x4A9A, offset: 0x5D94B, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xACFC, symBinAddr: 0xF014, symSize: 0x38 } + - { offsetInCU: 0x4AAE, offset: 0x5D95F, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xACFC, symBinAddr: 0xF014, symSize: 0x38 } + - { offsetInCU: 0x4ACE, offset: 0x5D97F, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xACFC, symBinAddr: 0xF014, symSize: 0x38 } + - { offsetInCU: 0x4AE2, offset: 0x5D993, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xACFC, symBinAddr: 0xF014, symSize: 0x38 } + - { offsetInCU: 0x4AF6, offset: 0x5D9A7, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xACFC, symBinAddr: 0xF014, symSize: 0x38 } + - { offsetInCU: 0x4B0A, offset: 0x5D9BB, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xACFC, symBinAddr: 0xF014, symSize: 0x38 } + - { offsetInCU: 0x4D37, offset: 0x5DBE8, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8DB0, symBinAddr: 0xD0C8, symSize: 0x44 } + - { offsetInCU: 0x4D60, offset: 0x5DC11, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8DF4, symBinAddr: 0xD10C, symSize: 0x28 } + - { offsetInCU: 0x4D9B, offset: 0x5DC4C, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0x8D94, symBinAddr: 0xD0AC, symSize: 0x10 } + - { offsetInCU: 0x4DB7, offset: 0x5DC68, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0x8DA4, symBinAddr: 0xD0BC, symSize: 0xC } + - { offsetInCU: 0x4DE5, offset: 0x5DC96, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0x8D88, symBinAddr: 0xD0A0, symSize: 0xC } + - { offsetInCU: 0x4EC9, offset: 0x5DD7A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0x86E0, symBinAddr: 0xCA10, symSize: 0xC } + - { offsetInCU: 0x4EFB, offset: 0x5DDAC, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0x8878, symBinAddr: 0xCBA8, symSize: 0x10 } + - { offsetInCU: 0x4F17, offset: 0x5DDC8, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0x8888, symBinAddr: 0xCBB8, symSize: 0xC } + - { offsetInCU: 0x4F75, offset: 0x5DE26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0x7C, symBinAddr: 0x43BC, symSize: 0x44 } + - { offsetInCU: 0x4F89, offset: 0x5DE3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0xC0, symBinAddr: 0x4400, symSize: 0x4 } + - { offsetInCU: 0x4FB1, offset: 0x5DE62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0xC4, symBinAddr: 0x4404, symSize: 0x2BC } + - { offsetInCU: 0x50E2, offset: 0x5DF93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x380, symBinAddr: 0x46C0, symSize: 0x1434 } + - { offsetInCU: 0x53E3, offset: 0x5E294, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x17B4, symBinAddr: 0x5AF4, symSize: 0x384 } + - { offsetInCU: 0x543C, offset: 0x5E2ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1B38, symBinAddr: 0x5E78, symSize: 0x24 } + - { offsetInCU: 0x54BF, offset: 0x5E370, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x1D08, symBinAddr: 0x6048, symSize: 0x684 } + - { offsetInCU: 0x582C, offset: 0x5E6DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x238C, symBinAddr: 0x66CC, symSize: 0x3D4 } + - { offsetInCU: 0x5AD7, offset: 0x5E988, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2760, symBinAddr: 0x6AA0, symSize: 0x794 } + - { offsetInCU: 0x6128, offset: 0x5EFD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x2EF4, symBinAddr: 0x7234, symSize: 0x524 } + - { offsetInCU: 0x651D, offset: 0x5F3CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3418, symBinAddr: 0x7758, symSize: 0x3A54 } + - { offsetInCU: 0x74F6, offset: 0x603A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x6EE8, symBinAddr: 0xB218, symSize: 0x150 } + - { offsetInCU: 0x75D5, offset: 0x60486, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x7038, symBinAddr: 0xB368, symSize: 0x300 } + - { offsetInCU: 0x7832, offset: 0x606E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x7338, symBinAddr: 0xB668, symSize: 0x3C8 } + - { offsetInCU: 0x7B90, offset: 0x60A41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x7700, symBinAddr: 0xBA30, symSize: 0x2B0 } + - { offsetInCU: 0x7D37, offset: 0x60BE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x7C00, symBinAddr: 0xBF30, symSize: 0x31C } + - { offsetInCU: 0x7E92, offset: 0x60D43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x7F1C, symBinAddr: 0xC24C, symSize: 0x438 } + - { offsetInCU: 0x80FC, offset: 0x60FAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x8354, symBinAddr: 0xC684, symSize: 0x188 } + - { offsetInCU: 0x83B1, offset: 0x61262, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0x8EA0, symBinAddr: 0xD1B8, symSize: 0x1F4 } + - { offsetInCU: 0x8436, offset: 0x612E7, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0x9258, symBinAddr: 0xD570, symSize: 0x1DC } + - { offsetInCU: 0x27, offset: 0x615E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xFEB4, symSize: 0x10 } + - { offsetInCU: 0x62, offset: 0x6161E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x10, symBinAddr: 0xFEC4, symSize: 0x20 } + - { offsetInCU: 0x149, offset: 0x61705, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xFEB4, symSize: 0x10 } + - { offsetInCU: 0x43, offset: 0x61772, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0xC, symBinAddr: 0xFEF0, symSize: 0x8 } + - { offsetInCU: 0x57, offset: 0x61786, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x20, symBinAddr: 0xFF04, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x617F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x100, symBinAddr: 0xFFE4, symSize: 0x14 } + - { offsetInCU: 0x124, offset: 0x61853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x118, symBinAddr: 0xFFFC, symSize: 0x28 } + - { offsetInCU: 0x19E, offset: 0x618CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x144, symBinAddr: 0x10028, symSize: 0x8 } + - { offsetInCU: 0x1D3, offset: 0x61902, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x14C, symBinAddr: 0x10030, symSize: 0x24 } + - { offsetInCU: 0x204, offset: 0x61933, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x170, symBinAddr: 0x10054, symSize: 0xC } + - { offsetInCU: 0x220, offset: 0x6194F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x17C, symBinAddr: 0x10060, symSize: 0xC } + - { offsetInCU: 0x23C, offset: 0x6196B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x22F8, symBinAddr: 0x121DC, symSize: 0x41C } + - { offsetInCU: 0x3FC, offset: 0x61B2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1348, symBinAddr: 0x1122C, symSize: 0x50 } + - { offsetInCU: 0x433, offset: 0x61B62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1398, symBinAddr: 0x1127C, symSize: 0x50 } + - { offsetInCU: 0x456, offset: 0x61B85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2714, symBinAddr: 0x125F8, symSize: 0x144C } + - { offsetInCU: 0x4B4, offset: 0x61BE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x13E8, symBinAddr: 0x112CC, symSize: 0x8 } + - { offsetInCU: 0x50C, offset: 0x61C3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x13F0, symBinAddr: 0x112D4, symSize: 0x40 } + - { offsetInCU: 0x5EF, offset: 0x61D1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1430, symBinAddr: 0x11314, symSize: 0x24 } + - { offsetInCU: 0x660, offset: 0x61D8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1490, symBinAddr: 0x11374, symSize: 0xC } + - { offsetInCU: 0x6AF, offset: 0x61DDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x149C, symBinAddr: 0x11380, symSize: 0x7C } + - { offsetInCU: 0x709, offset: 0x61E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1518, symBinAddr: 0x113FC, symSize: 0xC } + - { offsetInCU: 0x725, offset: 0x61E54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1524, symBinAddr: 0x11408, symSize: 0xC } + - { offsetInCU: 0x762, offset: 0x61E91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1580, symBinAddr: 0x11464, symSize: 0x50 } + - { offsetInCU: 0x799, offset: 0x61EC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x15D0, symBinAddr: 0x114B4, symSize: 0x50 } + - { offsetInCU: 0x7BC, offset: 0x61EEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3B60, symBinAddr: 0x13A44, symSize: 0x248 } + - { offsetInCU: 0x857, offset: 0x61F86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1628, symBinAddr: 0x1150C, symSize: 0x5C } + - { offsetInCU: 0x88C, offset: 0x61FBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1684, symBinAddr: 0x11568, symSize: 0x24 } + - { offsetInCU: 0x8BD, offset: 0x61FEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x16A8, symBinAddr: 0x1158C, symSize: 0xC } + - { offsetInCU: 0x8D9, offset: 0x62008, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x16B4, symBinAddr: 0x11598, symSize: 0xC } + - { offsetInCU: 0x8F5, offset: 0x62024, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x5CEC, symBinAddr: 0x15B8C, symSize: 0x1B0 } + - { offsetInCU: 0x9CE, offset: 0x620FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1710, symBinAddr: 0x115F4, symSize: 0x50 } + - { offsetInCU: 0xA05, offset: 0x62134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1760, symBinAddr: 0x11644, symSize: 0x40 } + - { offsetInCU: 0xA28, offset: 0x62157, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x5E9C, symBinAddr: 0x15D3C, symSize: 0x310 } + - { offsetInCU: 0xA97, offset: 0x621C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x17A8, symBinAddr: 0x1168C, symSize: 0x50 } + - { offsetInCU: 0xACC, offset: 0x621FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x17F8, symBinAddr: 0x116DC, symSize: 0x24 } + - { offsetInCU: 0xAFD, offset: 0x6222C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x181C, symBinAddr: 0x11700, symSize: 0xC } + - { offsetInCU: 0xB19, offset: 0x62248, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1828, symBinAddr: 0x1170C, symSize: 0xC } + - { offsetInCU: 0xB35, offset: 0x62264, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x61AC, symBinAddr: 0x1604C, symSize: 0x168 } + - { offsetInCU: 0xBE5, offset: 0x62314, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1884, symBinAddr: 0x11768, symSize: 0x40 } + - { offsetInCU: 0xC1C, offset: 0x6234B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C4, symBinAddr: 0x117A8, symSize: 0x38 } + - { offsetInCU: 0xC3F, offset: 0x6236E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6314, symBinAddr: 0x161B4, symSize: 0x2C8 } + - { offsetInCU: 0xCA2, offset: 0x623D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1904, symBinAddr: 0x117E8, symSize: 0x4C } + - { offsetInCU: 0xCD7, offset: 0x62406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1950, symBinAddr: 0x11834, symSize: 0x24 } + - { offsetInCU: 0xD08, offset: 0x62437, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1974, symBinAddr: 0x11858, symSize: 0xC } + - { offsetInCU: 0xD24, offset: 0x62453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1980, symBinAddr: 0x11864, symSize: 0xC } + - { offsetInCU: 0xD40, offset: 0x6246F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x65DC, symBinAddr: 0x1647C, symSize: 0x160 } + - { offsetInCU: 0xE00, offset: 0x6252F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x19DC, symBinAddr: 0x118C0, symSize: 0x70 } + - { offsetInCU: 0xE37, offset: 0x62566, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1A4C, symBinAddr: 0x11930, symSize: 0x58 } + - { offsetInCU: 0xE5A, offset: 0x62589, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x673C, symBinAddr: 0x165DC, symSize: 0x4D8 } + - { offsetInCU: 0xEC9, offset: 0x625F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AAC, symBinAddr: 0x11990, symSize: 0x88 } + - { offsetInCU: 0xEFE, offset: 0x6262D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B34, symBinAddr: 0x11A18, symSize: 0x24 } + - { offsetInCU: 0xF2F, offset: 0x6265E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B58, symBinAddr: 0x11A3C, symSize: 0xC } + - { offsetInCU: 0xF4B, offset: 0x6267A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B64, symBinAddr: 0x11A48, symSize: 0xC } + - { offsetInCU: 0xF67, offset: 0x62696, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6CE0, symBinAddr: 0x16B80, symSize: 0x294 } + - { offsetInCU: 0x107B, offset: 0x627AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BC0, symBinAddr: 0x11AA4, symSize: 0x64 } + - { offsetInCU: 0x10B2, offset: 0x627E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C24, symBinAddr: 0x11B08, symSize: 0x50 } + - { offsetInCU: 0x10D5, offset: 0x62804, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6F74, symBinAddr: 0x16E14, symSize: 0x57C } + - { offsetInCU: 0x1162, offset: 0x62891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1C74, symBinAddr: 0x11B58, symSize: 0x18 } + - { offsetInCU: 0x11E2, offset: 0x62911, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1C8C, symBinAddr: 0x11B70, symSize: 0x44 } + - { offsetInCU: 0x12C5, offset: 0x629F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CD0, symBinAddr: 0x11BB4, symSize: 0x28 } + - { offsetInCU: 0x134B, offset: 0x62A7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1D38, symBinAddr: 0x11C1C, symSize: 0x1C } + - { offsetInCU: 0x13A0, offset: 0x62ACF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D54, symBinAddr: 0x11C38, symSize: 0x24 } + - { offsetInCU: 0x13D1, offset: 0x62B00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D78, symBinAddr: 0x11C5C, symSize: 0xC } + - { offsetInCU: 0x13ED, offset: 0x62B1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D84, symBinAddr: 0x11C68, symSize: 0xC } + - { offsetInCU: 0x1409, offset: 0x62B38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7534, symBinAddr: 0x173D4, symSize: 0xC0 } + - { offsetInCU: 0x1497, offset: 0x62BC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DE0, symBinAddr: 0x11CC4, symSize: 0x2C } + - { offsetInCU: 0x14CE, offset: 0x62BFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E0C, symBinAddr: 0x11CF0, symSize: 0x1C } + - { offsetInCU: 0x14F1, offset: 0x62C20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x75F4, symBinAddr: 0x17494, symSize: 0x1A0 } + - { offsetInCU: 0x156C, offset: 0x62C9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1E30, symBinAddr: 0x11D14, symSize: 0x70 } + - { offsetInCU: 0x15A1, offset: 0x62CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1EA0, symBinAddr: 0x11D84, symSize: 0x24 } + - { offsetInCU: 0x15D2, offset: 0x62D01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1EC4, symBinAddr: 0x11DA8, symSize: 0xC } + - { offsetInCU: 0x15EE, offset: 0x62D1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1ED0, symBinAddr: 0x11DB4, symSize: 0xC } + - { offsetInCU: 0x160A, offset: 0x62D39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x77D8, symBinAddr: 0x17678, symSize: 0x244 } + - { offsetInCU: 0x1715, offset: 0x62E44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1F2C, symBinAddr: 0x11E10, symSize: 0x58 } + - { offsetInCU: 0x174C, offset: 0x62E7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1F84, symBinAddr: 0x11E68, symSize: 0x48 } + - { offsetInCU: 0x176F, offset: 0x62E9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7A1C, symBinAddr: 0x178BC, symSize: 0x360 } + - { offsetInCU: 0x17D2, offset: 0x62F01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1FD4, symBinAddr: 0x11EB8, symSize: 0x64 } + - { offsetInCU: 0x1807, offset: 0x62F36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2038, symBinAddr: 0x11F1C, symSize: 0x24 } + - { offsetInCU: 0x1838, offset: 0x62F67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x205C, symBinAddr: 0x11F40, symSize: 0xC } + - { offsetInCU: 0x1854, offset: 0x62F83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2068, symBinAddr: 0x11F4C, symSize: 0xC } + - { offsetInCU: 0x1870, offset: 0x62F9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7D7C, symBinAddr: 0x17C1C, symSize: 0x1F4 } + - { offsetInCU: 0x1952, offset: 0x63081, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x20C4, symBinAddr: 0x11FA8, symSize: 0x48 } + - { offsetInCU: 0x1989, offset: 0x630B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x210C, symBinAddr: 0x11FF0, symSize: 0x40 } + - { offsetInCU: 0x19AC, offset: 0x630DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7F70, symBinAddr: 0x17E10, symSize: 0x380 } + - { offsetInCU: 0x1A2F, offset: 0x6315E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x21D8, symBinAddr: 0x120BC, symSize: 0x18 } + - { offsetInCU: 0x1A79, offset: 0x631A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x21F0, symBinAddr: 0x120D4, symSize: 0x24 } + - { offsetInCU: 0x1AAA, offset: 0x631D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x2214, symBinAddr: 0x120F8, symSize: 0xC } + - { offsetInCU: 0x1AC6, offset: 0x631F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2220, symBinAddr: 0x12104, symSize: 0xC } + - { offsetInCU: 0x1AE2, offset: 0x63211, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8378, symBinAddr: 0x18218, symSize: 0x10C } + - { offsetInCU: 0x1B89, offset: 0x632B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x227C, symBinAddr: 0x12160, symSize: 0x44 } + - { offsetInCU: 0x1BC0, offset: 0x632EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x22C0, symBinAddr: 0x121A4, symSize: 0x38 } + - { offsetInCU: 0x1BE3, offset: 0x63312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8484, symBinAddr: 0x18324, symSize: 0x1CC } + - { offsetInCU: 0x1C20, offset: 0x6334F, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x3DE8, symBinAddr: 0x13C8C, symSize: 0x24 } + - { offsetInCU: 0x1C34, offset: 0x63363, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x3E0C, symBinAddr: 0x13CB0, symSize: 0x44 } + - { offsetInCU: 0x1C48, offset: 0x63377, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x3E50, symBinAddr: 0x13CF4, symSize: 0x20 } + - { offsetInCU: 0x1C5C, offset: 0x6338B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x3E70, symBinAddr: 0x13D14, symSize: 0x44 } + - { offsetInCU: 0x1C70, offset: 0x6339F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x3EB4, symBinAddr: 0x13D58, symSize: 0x44 } + - { offsetInCU: 0x1C84, offset: 0x633B3, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x3EF8, symBinAddr: 0x13D9C, symSize: 0x4 } + - { offsetInCU: 0x1C98, offset: 0x633C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x3F00, symBinAddr: 0x13DA0, symSize: 0x50 } + - { offsetInCU: 0x1CAC, offset: 0x633DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x3F50, symBinAddr: 0x13DF0, symSize: 0x8C } + - { offsetInCU: 0x1CC0, offset: 0x633EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x3FDC, symBinAddr: 0x13E7C, symSize: 0x8 } + - { offsetInCU: 0x1CD4, offset: 0x63403, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x3FE4, symBinAddr: 0x13E84, symSize: 0x4 } + - { offsetInCU: 0x1CE8, offset: 0x63417, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x3FE8, symBinAddr: 0x13E88, symSize: 0x4 } + - { offsetInCU: 0x1CFC, offset: 0x6342B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x3FEC, symBinAddr: 0x13E8C, symSize: 0x10 } + - { offsetInCU: 0x1D10, offset: 0x6343F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x3FFC, symBinAddr: 0x13E9C, symSize: 0x30 } + - { offsetInCU: 0x1D24, offset: 0x63453, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x48AC, symBinAddr: 0x1474C, symSize: 0x10 } + - { offsetInCU: 0x1D38, offset: 0x63467, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x48BC, symBinAddr: 0x1475C, symSize: 0x4 } + - { offsetInCU: 0x1D4C, offset: 0x6347B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x48C0, symBinAddr: 0x14760, symSize: 0x44 } + - { offsetInCU: 0x1D60, offset: 0x6348F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x4904, symBinAddr: 0x147A4, symSize: 0x4 } + - { offsetInCU: 0x1D74, offset: 0x634A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x4908, symBinAddr: 0x147A8, symSize: 0x44 } + - { offsetInCU: 0x1D88, offset: 0x634B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x494C, symBinAddr: 0x147EC, symSize: 0x4 } + - { offsetInCU: 0x1D9C, offset: 0x634CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x4950, symBinAddr: 0x147F0, symSize: 0x44 } + - { offsetInCU: 0x1DB0, offset: 0x634DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x4994, symBinAddr: 0x14834, symSize: 0x44 } + - { offsetInCU: 0x1DC4, offset: 0x634F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x49D8, symBinAddr: 0x14878, symSize: 0x44 } + - { offsetInCU: 0x1DD8, offset: 0x63507, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x4A1C, symBinAddr: 0x148BC, symSize: 0x44 } + - { offsetInCU: 0x1DEC, offset: 0x6351B, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x4A60, symBinAddr: 0x14900, symSize: 0x44 } + - { offsetInCU: 0x1E00, offset: 0x6352F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x4AA4, symBinAddr: 0x14944, symSize: 0x44 } + - { offsetInCU: 0x1E14, offset: 0x63543, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x4AE8, symBinAddr: 0x14988, symSize: 0x44 } + - { offsetInCU: 0x1E28, offset: 0x63557, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x4B2C, symBinAddr: 0x149CC, symSize: 0x44 } + - { offsetInCU: 0x1E3C, offset: 0x6356B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x4B70, symBinAddr: 0x14A10, symSize: 0x44 } + - { offsetInCU: 0x1E50, offset: 0x6357F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x4BB4, symBinAddr: 0x14A54, symSize: 0x44 } + - { offsetInCU: 0x1E64, offset: 0x63593, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x4BF8, symBinAddr: 0x14A98, symSize: 0x44 } + - { offsetInCU: 0x1E78, offset: 0x635A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x4C3C, symBinAddr: 0x14ADC, symSize: 0x44 } + - { offsetInCU: 0x1E8C, offset: 0x635BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x4C80, symBinAddr: 0x14B20, symSize: 0x44 } + - { offsetInCU: 0x1EA0, offset: 0x635CF, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x4CC4, symBinAddr: 0x14B64, symSize: 0xC } + - { offsetInCU: 0x1EB4, offset: 0x635E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4CD0, symBinAddr: 0x14B70, symSize: 0x90 } + - { offsetInCU: 0x1EC8, offset: 0x635F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4D60, symBinAddr: 0x14C00, symSize: 0xBC } + - { offsetInCU: 0x1EDC, offset: 0x6360B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x4E1C, symBinAddr: 0x14CBC, symSize: 0x8 } + - { offsetInCU: 0x1EF0, offset: 0x6361F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4E24, symBinAddr: 0x14CC4, symSize: 0x4 } + - { offsetInCU: 0x1F04, offset: 0x63633, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4E28, symBinAddr: 0x14CC8, symSize: 0x8 } + - { offsetInCU: 0x1F18, offset: 0x63647, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4E30, symBinAddr: 0x14CD0, symSize: 0x10 } + - { offsetInCU: 0x1F2C, offset: 0x6365B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x4E40, symBinAddr: 0x14CE0, symSize: 0x28 } + - { offsetInCU: 0x1F40, offset: 0x6366F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x4E68, symBinAddr: 0x14D08, symSize: 0x44 } + - { offsetInCU: 0x1F54, offset: 0x63683, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x4EAC, symBinAddr: 0x14D4C, symSize: 0x74 } + - { offsetInCU: 0x1F68, offset: 0x63697, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x4F20, symBinAddr: 0x14DC0, symSize: 0x14 } + - { offsetInCU: 0x1F7C, offset: 0x636AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x4F34, symBinAddr: 0x14DD4, symSize: 0x4C } + - { offsetInCU: 0x1F90, offset: 0x636BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x4F80, symBinAddr: 0x14E20, symSize: 0x48 } + - { offsetInCU: 0x1FA4, offset: 0x636D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x4FC8, symBinAddr: 0x14E68, symSize: 0x48 } + - { offsetInCU: 0x1FB8, offset: 0x636E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x5010, symBinAddr: 0x14EB0, symSize: 0x10 } + - { offsetInCU: 0x1FCC, offset: 0x636FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x5020, symBinAddr: 0x14EC0, symSize: 0x38 } + - { offsetInCU: 0x1FE0, offset: 0x6370F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5058, symBinAddr: 0x14EF8, symSize: 0x74 } + - { offsetInCU: 0x1FF4, offset: 0x63723, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x50CC, symBinAddr: 0x14F6C, symSize: 0xBC } + - { offsetInCU: 0x2008, offset: 0x63737, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5188, symBinAddr: 0x15028, symSize: 0x1C } + - { offsetInCU: 0x201C, offset: 0x6374B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x51A4, symBinAddr: 0x15044, symSize: 0x7C } + - { offsetInCU: 0x2030, offset: 0x6375F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5220, symBinAddr: 0x150C0, symSize: 0x48 } + - { offsetInCU: 0x2044, offset: 0x63773, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5268, symBinAddr: 0x15108, symSize: 0x54 } + - { offsetInCU: 0x2058, offset: 0x63787, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x52BC, symBinAddr: 0x1515C, symSize: 0x10 } + - { offsetInCU: 0x206C, offset: 0x6379B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x52CC, symBinAddr: 0x1516C, symSize: 0x28 } + - { offsetInCU: 0x2080, offset: 0x637AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x52F4, symBinAddr: 0x15194, symSize: 0x3C } + - { offsetInCU: 0x2094, offset: 0x637C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5330, symBinAddr: 0x151D0, symSize: 0x6C } + - { offsetInCU: 0x20A8, offset: 0x637D7, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x539C, symBinAddr: 0x1523C, symSize: 0xC } + - { offsetInCU: 0x20BC, offset: 0x637EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x53A8, symBinAddr: 0x15248, symSize: 0x44 } + - { offsetInCU: 0x20D0, offset: 0x637FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x53EC, symBinAddr: 0x1528C, symSize: 0x48 } + - { offsetInCU: 0x20E4, offset: 0x63813, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x5434, symBinAddr: 0x152D4, symSize: 0x40 } + - { offsetInCU: 0x20F8, offset: 0x63827, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5474, symBinAddr: 0x15314, symSize: 0x10 } + - { offsetInCU: 0x210C, offset: 0x6383B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x5484, symBinAddr: 0x15324, symSize: 0x50 } + - { offsetInCU: 0x2120, offset: 0x6384F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x54D4, symBinAddr: 0x15374, symSize: 0xAC } + - { offsetInCU: 0x2134, offset: 0x63863, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5580, symBinAddr: 0x15420, symSize: 0x114 } + - { offsetInCU: 0x2148, offset: 0x63877, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5694, symBinAddr: 0x15534, symSize: 0x2C } + - { offsetInCU: 0x215C, offset: 0x6388B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x56C0, symBinAddr: 0x15560, symSize: 0x9C } + - { offsetInCU: 0x2170, offset: 0x6389F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x575C, symBinAddr: 0x155FC, symSize: 0x48 } + - { offsetInCU: 0x2184, offset: 0x638B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x57A4, symBinAddr: 0x15644, symSize: 0x5C } + - { offsetInCU: 0x2198, offset: 0x638C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x5800, symBinAddr: 0x156A0, symSize: 0x10 } + - { offsetInCU: 0x21AC, offset: 0x638DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x5810, symBinAddr: 0x156B0, symSize: 0x58 } + - { offsetInCU: 0x21C0, offset: 0x638EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x5868, symBinAddr: 0x15708, symSize: 0xC4 } + - { offsetInCU: 0x21D4, offset: 0x63903, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x592C, symBinAddr: 0x157CC, symSize: 0x144 } + - { offsetInCU: 0x21E8, offset: 0x63917, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x5A70, symBinAddr: 0x15910, symSize: 0x34 } + - { offsetInCU: 0x21FC, offset: 0x6392B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x5AA4, symBinAddr: 0x15944, symSize: 0xB4 } + - { offsetInCU: 0x2210, offset: 0x6393F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x5B58, symBinAddr: 0x159F8, symSize: 0x48 } + - { offsetInCU: 0x2224, offset: 0x63953, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x5BA0, symBinAddr: 0x15A40, symSize: 0x64 } + - { offsetInCU: 0x2238, offset: 0x63967, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x5C04, symBinAddr: 0x15AA4, symSize: 0x10 } + - { offsetInCU: 0x224C, offset: 0x6397B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5C14, symBinAddr: 0x15AB4, symSize: 0x4 } + - { offsetInCU: 0x2260, offset: 0x6398F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x5C18, symBinAddr: 0x15AB8, symSize: 0x44 } + - { offsetInCU: 0x2274, offset: 0x639A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x5C5C, symBinAddr: 0x15AFC, symSize: 0x4 } + - { offsetInCU: 0x2288, offset: 0x639B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x5C60, symBinAddr: 0x15B00, symSize: 0x44 } + - { offsetInCU: 0x229C, offset: 0x639CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5CA4, symBinAddr: 0x15B44, symSize: 0x4 } + - { offsetInCU: 0x22B0, offset: 0x639DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x5CA8, symBinAddr: 0x15B48, symSize: 0x44 } + - { offsetInCU: 0x22C4, offset: 0x639F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x6C14, symBinAddr: 0x16AB4, symSize: 0x44 } + - { offsetInCU: 0x22D8, offset: 0x63A07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x6C58, symBinAddr: 0x16AF8, symSize: 0x44 } + - { offsetInCU: 0x22EC, offset: 0x63A1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x6C9C, symBinAddr: 0x16B3C, symSize: 0x44 } + - { offsetInCU: 0x2300, offset: 0x63A2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x74F0, symBinAddr: 0x17390, symSize: 0x44 } + - { offsetInCU: 0x2314, offset: 0x63A43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x7794, symBinAddr: 0x17634, symSize: 0x44 } + - { offsetInCU: 0x2328, offset: 0x63A57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x82F0, symBinAddr: 0x18190, symSize: 0x44 } + - { offsetInCU: 0x233C, offset: 0x63A6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8334, symBinAddr: 0x181D4, symSize: 0x44 } + - { offsetInCU: 0x2350, offset: 0x63A7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8650, symBinAddr: 0x184F0, symSize: 0x44 } + - { offsetInCU: 0x2364, offset: 0x63A93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8694, symBinAddr: 0x18534, symSize: 0x44 } + - { offsetInCU: 0x2378, offset: 0x63AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x86D8, symBinAddr: 0x18578, symSize: 0x44 } + - { offsetInCU: 0x238C, offset: 0x63ABB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x8780, symBinAddr: 0x18620, symSize: 0x44 } + - { offsetInCU: 0x23A0, offset: 0x63ACF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x87C4, symBinAddr: 0x18664, symSize: 0x90 } + - { offsetInCU: 0x23B4, offset: 0x63AE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8854, symBinAddr: 0x186F4, symSize: 0xBC } + - { offsetInCU: 0x23C8, offset: 0x63AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8910, symBinAddr: 0x187B0, symSize: 0x4 } + - { offsetInCU: 0x23DC, offset: 0x63B0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8914, symBinAddr: 0x187B4, symSize: 0x10 } + - { offsetInCU: 0x23F0, offset: 0x63B1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8924, symBinAddr: 0x187C4, symSize: 0x90 } + - { offsetInCU: 0x2404, offset: 0x63B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x89B4, symBinAddr: 0x18854, symSize: 0xBC } + - { offsetInCU: 0x2418, offset: 0x63B47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8A70, symBinAddr: 0x18910, symSize: 0x4 } + - { offsetInCU: 0x242C, offset: 0x63B5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8A74, symBinAddr: 0x18914, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x63B6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8A84, symBinAddr: 0x18924, symSize: 0x90 } + - { offsetInCU: 0x2454, offset: 0x63B83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8B14, symBinAddr: 0x189B4, symSize: 0xBC } + - { offsetInCU: 0x2468, offset: 0x63B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x8BD0, symBinAddr: 0x18A70, symSize: 0x8 } + - { offsetInCU: 0x247C, offset: 0x63BAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8BD8, symBinAddr: 0x18A78, symSize: 0x4 } + - { offsetInCU: 0x2490, offset: 0x63BBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x8BDC, symBinAddr: 0x18A7C, symSize: 0xC } + - { offsetInCU: 0x24A4, offset: 0x63BD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8BE8, symBinAddr: 0x18A88, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x63BE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x8BF8, symBinAddr: 0x18A98, symSize: 0x90 } + - { offsetInCU: 0x24CC, offset: 0x63BFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x8C88, symBinAddr: 0x18B28, symSize: 0xBC } + - { offsetInCU: 0x24E0, offset: 0x63C0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8D44, symBinAddr: 0x18BE4, symSize: 0x4 } + - { offsetInCU: 0x24F4, offset: 0x63C23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8D48, symBinAddr: 0x18BE8, symSize: 0x10 } + - { offsetInCU: 0x2508, offset: 0x63C37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x8D60, symBinAddr: 0x18C00, symSize: 0x4 } + - { offsetInCU: 0x251C, offset: 0x63C4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x8D64, symBinAddr: 0x18C04, symSize: 0x10 } + - { offsetInCU: 0x2530, offset: 0x63C5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x8D74, symBinAddr: 0x18C14, symSize: 0x38 } + - { offsetInCU: 0x2544, offset: 0x63C73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x8DAC, symBinAddr: 0x18C4C, symSize: 0x74 } + - { offsetInCU: 0x2558, offset: 0x63C87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x8E20, symBinAddr: 0x18CC0, symSize: 0xC4 } + - { offsetInCU: 0x256C, offset: 0x63C9B, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x8EE4, symBinAddr: 0x18D84, symSize: 0x24 } + - { offsetInCU: 0x2580, offset: 0x63CAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x8F08, symBinAddr: 0x18DA8, symSize: 0x74 } + - { offsetInCU: 0x2594, offset: 0x63CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x8F7C, symBinAddr: 0x18E1C, symSize: 0x48 } + - { offsetInCU: 0x25A8, offset: 0x63CD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x8FC4, symBinAddr: 0x18E64, symSize: 0x54 } + - { offsetInCU: 0x25BC, offset: 0x63CEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x9018, symBinAddr: 0x18EB8, symSize: 0x10 } + - { offsetInCU: 0x25D0, offset: 0x63CFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x9028, symBinAddr: 0x18EC8, symSize: 0x38 } + - { offsetInCU: 0x25E4, offset: 0x63D13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x9060, symBinAddr: 0x18F00, symSize: 0x64 } + - { offsetInCU: 0x25F8, offset: 0x63D27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x90C4, symBinAddr: 0x18F64, symSize: 0xAC } + - { offsetInCU: 0x260C, offset: 0x63D3B, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9170, symBinAddr: 0x19010, symSize: 0x14 } + - { offsetInCU: 0x2620, offset: 0x63D4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x9184, symBinAddr: 0x19024, symSize: 0x64 } + - { offsetInCU: 0x2634, offset: 0x63D63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x91E8, symBinAddr: 0x19088, symSize: 0x48 } + - { offsetInCU: 0x2648, offset: 0x63D77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9230, symBinAddr: 0x190D0, symSize: 0x50 } + - { offsetInCU: 0x265C, offset: 0x63D8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x9280, symBinAddr: 0x19120, symSize: 0x10 } + - { offsetInCU: 0x2670, offset: 0x63D9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x9290, symBinAddr: 0x19130, symSize: 0x38 } + - { offsetInCU: 0x2684, offset: 0x63DB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x92C8, symBinAddr: 0x19168, symSize: 0x6C } + - { offsetInCU: 0x2698, offset: 0x63DC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9334, symBinAddr: 0x191D4, symSize: 0xB4 } + - { offsetInCU: 0x26AC, offset: 0x63DDB, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x93E8, symBinAddr: 0x19288, symSize: 0x24 } + - { offsetInCU: 0x26C0, offset: 0x63DEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x940C, symBinAddr: 0x192AC, symSize: 0x6C } + - { offsetInCU: 0x26D4, offset: 0x63E03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9478, symBinAddr: 0x19318, symSize: 0x48 } + - { offsetInCU: 0x26E8, offset: 0x63E17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x94C0, symBinAddr: 0x19360, symSize: 0x50 } + - { offsetInCU: 0x26FC, offset: 0x63E2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9510, symBinAddr: 0x193B0, symSize: 0x10 } + - { offsetInCU: 0x2710, offset: 0x63E3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9520, symBinAddr: 0x193C0, symSize: 0x4 } + - { offsetInCU: 0x2724, offset: 0x63E53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9524, symBinAddr: 0x193C4, symSize: 0x44 } + - { offsetInCU: 0x2738, offset: 0x63E67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9568, symBinAddr: 0x19408, symSize: 0x4 } + - { offsetInCU: 0x274C, offset: 0x63E7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x956C, symBinAddr: 0x1940C, symSize: 0x44 } + - { offsetInCU: 0x2760, offset: 0x63E8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x95B0, symBinAddr: 0x19450, symSize: 0x4 } + - { offsetInCU: 0x2774, offset: 0x63EA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x95B4, symBinAddr: 0x19454, symSize: 0x44 } + - { offsetInCU: 0x2788, offset: 0x63EB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x95F8, symBinAddr: 0x19498, symSize: 0x4 } + - { offsetInCU: 0x279C, offset: 0x63ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x95FC, symBinAddr: 0x1949C, symSize: 0x44 } + - { offsetInCU: 0x27B0, offset: 0x63EDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9640, symBinAddr: 0x194E0, symSize: 0x4 } + - { offsetInCU: 0x27C4, offset: 0x63EF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9644, symBinAddr: 0x194E4, symSize: 0x44 } + - { offsetInCU: 0x27D8, offset: 0x63F07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9688, symBinAddr: 0x19528, symSize: 0x4 } + - { offsetInCU: 0x27EC, offset: 0x63F1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x968C, symBinAddr: 0x1952C, symSize: 0x44 } + - { offsetInCU: 0x2800, offset: 0x63F2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x96D0, symBinAddr: 0x19570, symSize: 0x4 } + - { offsetInCU: 0x2814, offset: 0x63F43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x96D4, symBinAddr: 0x19574, symSize: 0x44 } + - { offsetInCU: 0x2828, offset: 0x63F57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9718, symBinAddr: 0x195B8, symSize: 0x4 } + - { offsetInCU: 0x283C, offset: 0x63F6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x971C, symBinAddr: 0x195BC, symSize: 0x44 } + - { offsetInCU: 0x2850, offset: 0x63F7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9760, symBinAddr: 0x19600, symSize: 0x4 } + - { offsetInCU: 0x2864, offset: 0x63F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9764, symBinAddr: 0x19604, symSize: 0x44 } + - { offsetInCU: 0x2878, offset: 0x63FA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x97A8, symBinAddr: 0x19648, symSize: 0x4 } + - { offsetInCU: 0x288C, offset: 0x63FBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x97AC, symBinAddr: 0x1964C, symSize: 0x44 } + - { offsetInCU: 0x28A0, offset: 0x63FCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x97F0, symBinAddr: 0x19690, symSize: 0x4 } + - { offsetInCU: 0x28B4, offset: 0x63FE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x97F4, symBinAddr: 0x19694, symSize: 0x44 } + - { offsetInCU: 0x28C8, offset: 0x63FF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9838, symBinAddr: 0x196D8, symSize: 0x4 } + - { offsetInCU: 0x28DC, offset: 0x6400B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x983C, symBinAddr: 0x196DC, symSize: 0x44 } + - { offsetInCU: 0x28F0, offset: 0x6401F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9880, symBinAddr: 0x19720, symSize: 0x4 } + - { offsetInCU: 0x2904, offset: 0x64033, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9884, symBinAddr: 0x19724, symSize: 0x44 } + - { offsetInCU: 0x2918, offset: 0x64047, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x98C8, symBinAddr: 0x19768, symSize: 0x4 } + - { offsetInCU: 0x292C, offset: 0x6405B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x98CC, symBinAddr: 0x1976C, symSize: 0x44 } + - { offsetInCU: 0x2940, offset: 0x6406F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9910, symBinAddr: 0x197B0, symSize: 0x4 } + - { offsetInCU: 0x2954, offset: 0x64083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x9914, symBinAddr: 0x197B4, symSize: 0x44 } + - { offsetInCU: 0x2968, offset: 0x64097, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x9958, symBinAddr: 0x197F8, symSize: 0x44 } + - { offsetInCU: 0x297C, offset: 0x640AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x999C, symBinAddr: 0x1983C, symSize: 0x44 } + - { offsetInCU: 0x2990, offset: 0x640BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0x99E0, symBinAddr: 0x19880, symSize: 0x44 } + - { offsetInCU: 0x29A4, offset: 0x640D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9A24, symBinAddr: 0x198C4, symSize: 0x90 } + - { offsetInCU: 0x29B8, offset: 0x640E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9AB4, symBinAddr: 0x19954, symSize: 0xBC } + - { offsetInCU: 0x29CC, offset: 0x640FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9B70, symBinAddr: 0x19A10, symSize: 0x4 } + - { offsetInCU: 0x29E0, offset: 0x6410F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9B74, symBinAddr: 0x19A14, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x64123, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9CD8, symBinAddr: 0x19B78, symSize: 0x4 } + - { offsetInCU: 0x2A08, offset: 0x64137, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9CDC, symBinAddr: 0x19B7C, symSize: 0x10 } + - { offsetInCU: 0x2A1C, offset: 0x6414B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9CEC, symBinAddr: 0x19B8C, symSize: 0x90 } + - { offsetInCU: 0x2A30, offset: 0x6415F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9D7C, symBinAddr: 0x19C1C, symSize: 0xBC } + - { offsetInCU: 0x2A44, offset: 0x64173, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9E38, symBinAddr: 0x19CD8, symSize: 0x4 } + - { offsetInCU: 0x2A58, offset: 0x64187, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9E3C, symBinAddr: 0x19CDC, symSize: 0x10 } + - { offsetInCU: 0x2A6C, offset: 0x6419B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9E4C, symBinAddr: 0x19CEC, symSize: 0x4 } + - { offsetInCU: 0x2A80, offset: 0x641AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9E50, symBinAddr: 0x19CF0, symSize: 0x44 } + - { offsetInCU: 0x2A94, offset: 0x641C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9E94, symBinAddr: 0x19D34, symSize: 0x4 } + - { offsetInCU: 0x2AA8, offset: 0x641D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9E98, symBinAddr: 0x19D38, symSize: 0x44 } + - { offsetInCU: 0x2ABC, offset: 0x641EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9EDC, symBinAddr: 0x19D7C, symSize: 0x4 } + - { offsetInCU: 0x2AD0, offset: 0x641FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x9EE0, symBinAddr: 0x19D80, symSize: 0x44 } + - { offsetInCU: 0x2AE4, offset: 0x64213, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9F24, symBinAddr: 0x19DC4, symSize: 0x4 } + - { offsetInCU: 0x2AF8, offset: 0x64227, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9F28, symBinAddr: 0x19DC8, symSize: 0x44 } + - { offsetInCU: 0x2B0C, offset: 0x6423B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9F6C, symBinAddr: 0x19E0C, symSize: 0x4 } + - { offsetInCU: 0x2B20, offset: 0x6424F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x9F70, symBinAddr: 0x19E10, symSize: 0x44 } + - { offsetInCU: 0x2B34, offset: 0x64263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x9FB4, symBinAddr: 0x19E54, symSize: 0x4 } + - { offsetInCU: 0x2B48, offset: 0x64277, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x9FB8, symBinAddr: 0x19E58, symSize: 0x44 } + - { offsetInCU: 0x2B5C, offset: 0x6428B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x9FFC, symBinAddr: 0x19E9C, symSize: 0x4 } + - { offsetInCU: 0x2B70, offset: 0x6429F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA000, symBinAddr: 0x19EA0, symSize: 0x44 } + - { offsetInCU: 0x2B84, offset: 0x642B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA044, symBinAddr: 0x19EE4, symSize: 0x4 } + - { offsetInCU: 0x2B98, offset: 0x642C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA048, symBinAddr: 0x19EE8, symSize: 0x44 } + - { offsetInCU: 0x2BAC, offset: 0x642DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA08C, symBinAddr: 0x19F2C, symSize: 0x4 } + - { offsetInCU: 0x2BC0, offset: 0x642EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x19F30, symSize: 0x44 } + - { offsetInCU: 0x2C1A, offset: 0x64349, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x188, symBinAddr: 0x1006C, symSize: 0x28 } + - { offsetInCU: 0x2C36, offset: 0x64365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1B0, symBinAddr: 0x10094, symSize: 0x28 } + - { offsetInCU: 0x2CA1, offset: 0x643D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1454, symBinAddr: 0x11338, symSize: 0x3C } + - { offsetInCU: 0x2D61, offset: 0x64490, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1530, symBinAddr: 0x11414, symSize: 0x28 } + - { offsetInCU: 0x2D7D, offset: 0x644AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1558, symBinAddr: 0x1143C, symSize: 0x28 } + - { offsetInCU: 0x2D9F, offset: 0x644CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x16C0, symBinAddr: 0x115A4, symSize: 0x28 } + - { offsetInCU: 0x2DBB, offset: 0x644EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x16E8, symBinAddr: 0x115CC, symSize: 0x28 } + - { offsetInCU: 0x2DDD, offset: 0x6450C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1834, symBinAddr: 0x11718, symSize: 0x28 } + - { offsetInCU: 0x2DF9, offset: 0x64528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0x11740, symSize: 0x28 } + - { offsetInCU: 0x2E1B, offset: 0x6454A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x198C, symBinAddr: 0x11870, symSize: 0x28 } + - { offsetInCU: 0x2E37, offset: 0x64566, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x19B4, symBinAddr: 0x11898, symSize: 0x28 } + - { offsetInCU: 0x2E59, offset: 0x64588, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B70, symBinAddr: 0x11A54, symSize: 0x28 } + - { offsetInCU: 0x2E75, offset: 0x645A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B98, symBinAddr: 0x11A7C, symSize: 0x28 } + - { offsetInCU: 0x2EC8, offset: 0x645F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1CF8, symBinAddr: 0x11BDC, symSize: 0x40 } + - { offsetInCU: 0x2F6A, offset: 0x64699, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D90, symBinAddr: 0x11C74, symSize: 0x28 } + - { offsetInCU: 0x2F86, offset: 0x646B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DB8, symBinAddr: 0x11C9C, symSize: 0x28 } + - { offsetInCU: 0x2FA8, offset: 0x646D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1EDC, symBinAddr: 0x11DC0, symSize: 0x28 } + - { offsetInCU: 0x2FC4, offset: 0x646F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1F04, symBinAddr: 0x11DE8, symSize: 0x28 } + - { offsetInCU: 0x2FE6, offset: 0x64715, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2074, symBinAddr: 0x11F58, symSize: 0x28 } + - { offsetInCU: 0x3002, offset: 0x64731, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x209C, symBinAddr: 0x11F80, symSize: 0x28 } + - { offsetInCU: 0x3024, offset: 0x64753, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x222C, symBinAddr: 0x12110, symSize: 0x28 } + - { offsetInCU: 0x3040, offset: 0x6476F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2254, symBinAddr: 0x12138, symSize: 0x28 } + - { offsetInCU: 0x3129, offset: 0x64858, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x30, symBinAddr: 0xFF14, symSize: 0xD0 } + - { offsetInCU: 0x31AA, offset: 0x648D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1D8, symBinAddr: 0x100BC, symSize: 0x40C } + - { offsetInCU: 0x31DB, offset: 0x6490A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x5E4, symBinAddr: 0x104C8, symSize: 0x100 } + - { offsetInCU: 0x320C, offset: 0x6493B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6E4, symBinAddr: 0x105C8, symSize: 0x17C } + - { offsetInCU: 0x323D, offset: 0x6496C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x860, symBinAddr: 0x10744, symSize: 0x154 } + - { offsetInCU: 0x326E, offset: 0x6499D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0x9B4, symBinAddr: 0x10898, symSize: 0x1A4 } + - { offsetInCU: 0x329F, offset: 0x649CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xB58, symBinAddr: 0x10A3C, symSize: 0x1F4 } + - { offsetInCU: 0x32D0, offset: 0x649FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD4C, symBinAddr: 0x10C30, symSize: 0x118 } + - { offsetInCU: 0x3301, offset: 0x64A30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xE64, symBinAddr: 0x10D48, symSize: 0x1CC } + - { offsetInCU: 0x3332, offset: 0x64A61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1030, symBinAddr: 0x10F14, symSize: 0x1EC } + - { offsetInCU: 0x3363, offset: 0x64A92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x121C, symBinAddr: 0x11100, symSize: 0x12C } + - { offsetInCU: 0x27, offset: 0x64CCE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A008, symSize: 0x38 } + - { offsetInCU: 0x3ED, offset: 0x65094, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x314, symBinAddr: 0x1A31C, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x650A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x344, symBinAddr: 0x1A34C, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x650BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x384, symBinAddr: 0x1A38C, symSize: 0xA4 } + - { offsetInCU: 0x429, offset: 0x650D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x428, symBinAddr: 0x1A430, symSize: 0x104 } + - { offsetInCU: 0x43D, offset: 0x650E4, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x52C, symBinAddr: 0x1A534, symSize: 0x2C } + - { offsetInCU: 0x451, offset: 0x650F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x558, symBinAddr: 0x1A560, symSize: 0x9C } + - { offsetInCU: 0x465, offset: 0x6510C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x5F4, symBinAddr: 0x1A5FC, symSize: 0x48 } + - { offsetInCU: 0x479, offset: 0x65120, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x63C, symBinAddr: 0x1A644, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x65134, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x69C, symBinAddr: 0x1A6A4, symSize: 0x10 } + - { offsetInCU: 0x60E, offset: 0x652B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A008, symSize: 0x38 } + - { offsetInCU: 0x626, offset: 0x652CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A008, symSize: 0x38 } + - { offsetInCU: 0x64D, offset: 0x652F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x38, symBinAddr: 0x1A040, symSize: 0x3C } + - { offsetInCU: 0x667, offset: 0x6530E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0x74, symBinAddr: 0x1A07C, symSize: 0x54 } + - { offsetInCU: 0x69C, offset: 0x65343, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xC8, symBinAddr: 0x1A0D0, symSize: 0x10 } + - { offsetInCU: 0x6B0, offset: 0x65357, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0xD8, symBinAddr: 0x1A0E0, symSize: 0x4 } + - { offsetInCU: 0x6D1, offset: 0x65378, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0xDC, symBinAddr: 0x1A0E4, symSize: 0x14 } + - { offsetInCU: 0x6E5, offset: 0x6538C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0xF0, symBinAddr: 0x1A0F8, symSize: 0x14 } + - { offsetInCU: 0x715, offset: 0x653BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x104, symBinAddr: 0x1A10C, symSize: 0x10 } + - { offsetInCU: 0x739, offset: 0x653E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x114, symBinAddr: 0x1A11C, symSize: 0x4 } + - { offsetInCU: 0x75A, offset: 0x65401, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x118, symBinAddr: 0x1A120, symSize: 0x2C } + - { offsetInCU: 0x76E, offset: 0x65415, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x144, symBinAddr: 0x1A14C, symSize: 0x34 } + - { offsetInCU: 0x7A3, offset: 0x6544A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x178, symBinAddr: 0x1A180, symSize: 0x10 } + - { offsetInCU: 0x7C7, offset: 0x6546E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x188, symBinAddr: 0x1A190, symSize: 0x4 } + - { offsetInCU: 0x7E8, offset: 0x6548F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x18C, symBinAddr: 0x1A194, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x654A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x194, symBinAddr: 0x1A19C, symSize: 0x8 } + - { offsetInCU: 0x82C, offset: 0x654D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x19C, symBinAddr: 0x1A1A4, symSize: 0x10 } + - { offsetInCU: 0x850, offset: 0x654F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x1AC, symBinAddr: 0x1A1B4, symSize: 0x4 } + - { offsetInCU: 0x871, offset: 0x65518, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x1B0, symBinAddr: 0x1A1B8, symSize: 0x8 } + - { offsetInCU: 0x885, offset: 0x6552C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x1B8, symBinAddr: 0x1A1C0, symSize: 0x8 } + - { offsetInCU: 0x8B5, offset: 0x6555C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x1C0, symBinAddr: 0x1A1C8, symSize: 0x10 } + - { offsetInCU: 0x8D9, offset: 0x65580, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x1D0, symBinAddr: 0x1A1D8, symSize: 0x4 } + - { offsetInCU: 0x8FA, offset: 0x655A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x1D4, symBinAddr: 0x1A1DC, symSize: 0x2C } + - { offsetInCU: 0x90E, offset: 0x655B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x200, symBinAddr: 0x1A208, symSize: 0x34 } + - { offsetInCU: 0x943, offset: 0x655EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x234, symBinAddr: 0x1A23C, symSize: 0x10 } + - { offsetInCU: 0x967, offset: 0x6560E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x244, symBinAddr: 0x1A24C, symSize: 0x4 } + - { offsetInCU: 0x988, offset: 0x6562F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x248, symBinAddr: 0x1A250, symSize: 0x2C } + - { offsetInCU: 0x99C, offset: 0x65643, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x274, symBinAddr: 0x1A27C, symSize: 0x34 } + - { offsetInCU: 0x9D1, offset: 0x65678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x2A8, symBinAddr: 0x1A2B0, symSize: 0x10 } + - { offsetInCU: 0x9F5, offset: 0x6569C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x2B8, symBinAddr: 0x1A2C0, symSize: 0x4 } + - { offsetInCU: 0xA16, offset: 0x656BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x2BC, symBinAddr: 0x1A2C4, symSize: 0xC } + - { offsetInCU: 0xA2A, offset: 0x656D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x2C8, symBinAddr: 0x1A2D0, symSize: 0xC } + - { offsetInCU: 0xA5E, offset: 0x65705, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x2D4, symBinAddr: 0x1A2DC, symSize: 0x10 } + - { offsetInCU: 0xA82, offset: 0x65729, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x2E4, symBinAddr: 0x1A2EC, symSize: 0x4 } + - { offsetInCU: 0xAA3, offset: 0x6574A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x2E8, symBinAddr: 0x1A2F0, symSize: 0xC } + - { offsetInCU: 0xAB7, offset: 0x6575E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x2F4, symBinAddr: 0x1A2FC, symSize: 0xC } + - { offsetInCU: 0xAEB, offset: 0x65792, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x300, symBinAddr: 0x1A308, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x657B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x310, symBinAddr: 0x1A318, symSize: 0x4 } + - { offsetInCU: 0x7F, offset: 0x65879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x5B8, symBinAddr: 0x1AC6C, symSize: 0x2C } + - { offsetInCU: 0xB0, offset: 0x658AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x5E4, symBinAddr: 0x1AC98, symSize: 0x28 } + - { offsetInCU: 0xCC, offset: 0x658C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x820, symBinAddr: 0x1AED4, symSize: 0x64 } + - { offsetInCU: 0x145, offset: 0x6593F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x7CC, symBinAddr: 0x1AE80, symSize: 0x2C } + - { offsetInCU: 0x176, offset: 0x65970, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x7F8, symBinAddr: 0x1AEAC, symSize: 0x28 } + - { offsetInCU: 0x192, offset: 0x6598C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x884, symBinAddr: 0x1AF38, symSize: 0x64 } + - { offsetInCU: 0x1D2, offset: 0x659CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0x8E8, symBinAddr: 0x1AF9C, symSize: 0x104 } + - { offsetInCU: 0x202, offset: 0x659FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0x9FC, symBinAddr: 0x1B0A0, symSize: 0x90 } + - { offsetInCU: 0x216, offset: 0x65A10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xA8C, symBinAddr: 0x1B130, symSize: 0xBC } + - { offsetInCU: 0x22A, offset: 0x65A24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xB48, symBinAddr: 0x1B1EC, symSize: 0x4 } + - { offsetInCU: 0x23E, offset: 0x65A38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xB4C, symBinAddr: 0x1B1F0, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x65A4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xB5C, symBinAddr: 0x1B200, symSize: 0x90 } + - { offsetInCU: 0x266, offset: 0x65A60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xBEC, symBinAddr: 0x1B290, symSize: 0xBC } + - { offsetInCU: 0x27A, offset: 0x65A74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xCA8, symBinAddr: 0x1B34C, symSize: 0x8 } + - { offsetInCU: 0x28E, offset: 0x65A88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xCB0, symBinAddr: 0x1B354, symSize: 0x4 } + - { offsetInCU: 0x2A2, offset: 0x65A9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xCB4, symBinAddr: 0x1B358, symSize: 0x8 } + - { offsetInCU: 0x2B6, offset: 0x65AB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xCBC, symBinAddr: 0x1B360, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x65AC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xCCC, symBinAddr: 0x1B370, symSize: 0x4 } + - { offsetInCU: 0x2DE, offset: 0x65AD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xCD0, symBinAddr: 0x1B374, symSize: 0x44 } + - { offsetInCU: 0x2F2, offset: 0x65AEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xD14, symBinAddr: 0x1B3B8, symSize: 0x4 } + - { offsetInCU: 0x306, offset: 0x65B00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xD18, symBinAddr: 0x1B3BC, symSize: 0x44 } + - { offsetInCU: 0x410, offset: 0x65C0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1A6B4, symSize: 0x2CC } + - { offsetInCU: 0x433, offset: 0x65C2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x2CC, symBinAddr: 0x1A980, symSize: 0x2BC } + - { offsetInCU: 0xD3, offset: 0x65D57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x134, symBinAddr: 0x1B53C, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x65D9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x154, symBinAddr: 0x1B55C, symSize: 0x8C } + - { offsetInCU: 0x16B, offset: 0x65DEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x1E0, symBinAddr: 0x1B5E8, symSize: 0x4 } + - { offsetInCU: 0x192, offset: 0x65E16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x1E4, symBinAddr: 0x1B5EC, symSize: 0x4 } + - { offsetInCU: 0x1B9, offset: 0x65E3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x1E8, symBinAddr: 0x1B5F0, symSize: 0x4 } + - { offsetInCU: 0x1E0, offset: 0x65E64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x25C, symBinAddr: 0x1B664, symSize: 0x4 } + - { offsetInCU: 0x21C, offset: 0x65EA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x260, symBinAddr: 0x1B668, symSize: 0x80 } + - { offsetInCU: 0x288, offset: 0x65F0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x2E0, symBinAddr: 0x1B6E8, symSize: 0x64 } + - { offsetInCU: 0x2DD, offset: 0x65F61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x344, symBinAddr: 0x1B74C, symSize: 0x90 } + - { offsetInCU: 0x32F, offset: 0x65FB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x3D4, symBinAddr: 0x1B7DC, symSize: 0x80 } + - { offsetInCU: 0x38C, offset: 0x66010, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x454, symBinAddr: 0x1B85C, symSize: 0x64 } + - { offsetInCU: 0x3BE, offset: 0x66042, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x4B8, symBinAddr: 0x1B8C0, symSize: 0x4 } + - { offsetInCU: 0x3DA, offset: 0x6605E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x4BC, symBinAddr: 0x1B8C4, symSize: 0x4 } + - { offsetInCU: 0x4C2, offset: 0x66146, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0xC10, symBinAddr: 0x1C018, symSize: 0x374 } + - { offsetInCU: 0x7D5, offset: 0x66459, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x1050, symBinAddr: 0x1C458, symSize: 0x10 } + - { offsetInCU: 0x7E9, offset: 0x6646D, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x1060, symBinAddr: 0x1C468, symSize: 0x10 } + - { offsetInCU: 0x7FD, offset: 0x66481, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x10F4, symBinAddr: 0x1C478, symSize: 0x48 } + - { offsetInCU: 0x811, offset: 0x66495, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x113C, symBinAddr: 0x1C4C0, symSize: 0x14 } + - { offsetInCU: 0x825, offset: 0x664A9, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x1150, symBinAddr: 0x1C4D4, symSize: 0x44 } + - { offsetInCU: 0x839, offset: 0x664BD, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1194, symBinAddr: 0x1C518, symSize: 0x40 } + - { offsetInCU: 0x84D, offset: 0x664D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x11D4, symBinAddr: 0x1C558, symSize: 0x1C4 } + - { offsetInCU: 0x861, offset: 0x664E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x1398, symBinAddr: 0x1C71C, symSize: 0x30 } + - { offsetInCU: 0x875, offset: 0x664F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x13C8, symBinAddr: 0x1C74C, symSize: 0x1BC } + - { offsetInCU: 0x889, offset: 0x6650D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1584, symBinAddr: 0x1C908, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x66717, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1B408, symSize: 0x114 } + - { offsetInCU: 0xABC, offset: 0x66740, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x114, symBinAddr: 0x1B51C, symSize: 0x20 } + - { offsetInCU: 0xBEC, offset: 0x66870, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x4C0, symBinAddr: 0x1B8C8, symSize: 0x6DC } + - { offsetInCU: 0xCC9, offset: 0x6694D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xB9C, symBinAddr: 0x1BFA4, symSize: 0x74 } + - { offsetInCU: 0xD5C, offset: 0x669E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0xF84, symBinAddr: 0x1C38C, symSize: 0x68 } + - { offsetInCU: 0xDD0, offset: 0x66A54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0xFEC, symBinAddr: 0x1C3F4, symSize: 0x64 } + - { offsetInCU: 0x4F, offset: 0x66B00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2BF0, symBinAddr: 0x83C10, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x66B1A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2BF8, symBinAddr: 0x83C18, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x66B28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x10, symBinAddr: 0x1C948, symSize: 0x34 } + - { offsetInCU: 0xB3, offset: 0x66B64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x44, symBinAddr: 0x1C97C, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x66B9A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0x84, symBinAddr: 0x1C9BC, symSize: 0x34 } + - { offsetInCU: 0x159, offset: 0x66C0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1CA9C, symSize: 0x60 } + - { offsetInCU: 0x179, offset: 0x66C2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x164, symBinAddr: 0x1CA9C, symSize: 0x60 } + - { offsetInCU: 0x1F1, offset: 0x66CA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1CC04, symSize: 0x14 } + - { offsetInCU: 0x211, offset: 0x66CC2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2CC, symBinAddr: 0x1CC04, symSize: 0x14 } + - { offsetInCU: 0x237, offset: 0x66CE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x328, symBinAddr: 0x1CC60, symSize: 0x28 } + - { offsetInCU: 0x2B1, offset: 0x66D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1CCCC, symSize: 0x84 } + - { offsetInCU: 0x2D1, offset: 0x66D82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x394, symBinAddr: 0x1CCCC, symSize: 0x84 } + - { offsetInCU: 0x5EC, offset: 0x6709D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1D28, symBinAddr: 0x1E660, symSize: 0x190 } + - { offsetInCU: 0x6B4, offset: 0x67165, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x418, symBinAddr: 0x1CD50, symSize: 0x88 } + - { offsetInCU: 0x6EA, offset: 0x6719B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4A0, symBinAddr: 0x1CDD8, symSize: 0xAC } + - { offsetInCU: 0x72A, offset: 0x671DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x598, symBinAddr: 0x1CED0, symSize: 0x10 } + - { offsetInCU: 0x73E, offset: 0x671EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x5F8, symBinAddr: 0x1CF30, symSize: 0x10 } + - { offsetInCU: 0x752, offset: 0x67203, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x648, symBinAddr: 0x1CF80, symSize: 0x88 } + - { offsetInCU: 0x788, offset: 0x67239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x6D0, symBinAddr: 0x1D008, symSize: 0xAC } + - { offsetInCU: 0x7C8, offset: 0x67279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x904, symBinAddr: 0x1D23C, symSize: 0x5C } + - { offsetInCU: 0x98E, offset: 0x6743F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x17CC, symBinAddr: 0x1E104, symSize: 0x140 } + - { offsetInCU: 0xA8A, offset: 0x6753B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x190C, symBinAddr: 0x1E244, symSize: 0x18 } + - { offsetInCU: 0xA9E, offset: 0x6754F, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A60, symBinAddr: 0x1E398, symSize: 0x2C } + - { offsetInCU: 0xAB6, offset: 0x67567, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1CC4, symBinAddr: 0x1E5FC, symSize: 0x44 } + - { offsetInCU: 0xACA, offset: 0x6757B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1D08, symBinAddr: 0x1E640, symSize: 0x20 } + - { offsetInCU: 0xADE, offset: 0x6758F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1EB8, symBinAddr: 0x1E7F0, symSize: 0x20 } + - { offsetInCU: 0xAF2, offset: 0x675A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1ED8, symBinAddr: 0x1E810, symSize: 0x4 } + - { offsetInCU: 0xB06, offset: 0x675B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1EDC, symBinAddr: 0x1E814, symSize: 0x44 } + - { offsetInCU: 0xB1A, offset: 0x675CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1F20, symBinAddr: 0x1E858, symSize: 0x4 } + - { offsetInCU: 0xB2E, offset: 0x675DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1F24, symBinAddr: 0x1E85C, symSize: 0x44 } + - { offsetInCU: 0xB42, offset: 0x675F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x2048, symBinAddr: 0x1E980, symSize: 0x18 } + - { offsetInCU: 0xB56, offset: 0x67607, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x2060, symBinAddr: 0x1E998, symSize: 0x14 } + - { offsetInCU: 0xB6A, offset: 0x6761B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x2074, symBinAddr: 0x1E9AC, symSize: 0x18 } + - { offsetInCU: 0xB7E, offset: 0x6762F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x20EC, symBinAddr: 0x1EA24, symSize: 0x6C } + - { offsetInCU: 0xB92, offset: 0x67643, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2158, symBinAddr: 0x1EA90, symSize: 0x14 } + - { offsetInCU: 0xBA6, offset: 0x67657, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x216C, symBinAddr: 0x1EAA4, symSize: 0x50 } + - { offsetInCU: 0xBBA, offset: 0x6766B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x21BC, symBinAddr: 0x1EAF4, symSize: 0x48 } + - { offsetInCU: 0xBCE, offset: 0x6767F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x2204, symBinAddr: 0x1EB3C, symSize: 0x48 } + - { offsetInCU: 0xBE2, offset: 0x67693, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x224C, symBinAddr: 0x1EB84, symSize: 0x8 } + - { offsetInCU: 0xBF6, offset: 0x676A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2254, symBinAddr: 0x1EB8C, symSize: 0x4 } + - { offsetInCU: 0xC0A, offset: 0x676BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2258, symBinAddr: 0x1EB90, symSize: 0x8 } + - { offsetInCU: 0xC1E, offset: 0x676CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x1EB98, symSize: 0x10 } + - { offsetInCU: 0xC32, offset: 0x676E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2348, symBinAddr: 0x1EC70, symSize: 0x90 } + - { offsetInCU: 0xC46, offset: 0x676F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x23D8, symBinAddr: 0x1ED00, symSize: 0xBC } + - { offsetInCU: 0xC5A, offset: 0x6770B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x2494, symBinAddr: 0x1EDBC, symSize: 0x4 } + - { offsetInCU: 0xC6E, offset: 0x6771F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x2498, symBinAddr: 0x1EDC0, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x67733, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x24A8, symBinAddr: 0x1EDD0, symSize: 0x90 } + - { offsetInCU: 0xC96, offset: 0x67747, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2538, symBinAddr: 0x1EE60, symSize: 0xBC } + - { offsetInCU: 0xCAA, offset: 0x6775B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x25F4, symBinAddr: 0x1EF1C, symSize: 0x8 } + - { offsetInCU: 0xCBE, offset: 0x6776F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x25FC, symBinAddr: 0x1EF24, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x67783, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2600, symBinAddr: 0x1EF28, symSize: 0x8 } + - { offsetInCU: 0xCE6, offset: 0x67797, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2608, symBinAddr: 0x1EF30, symSize: 0x10 } + - { offsetInCU: 0xD05, offset: 0x677B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2640, symBinAddr: 0x1EF68, symSize: 0x24 } + - { offsetInCU: 0xD2E, offset: 0x677DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x274C, symBinAddr: 0x1F074, symSize: 0x8 } + - { offsetInCU: 0xD42, offset: 0x677F3, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2754, symBinAddr: 0x1F07C, symSize: 0x10 } + - { offsetInCU: 0xD56, offset: 0x67807, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2764, symBinAddr: 0x1F08C, symSize: 0x8 } + - { offsetInCU: 0xD6A, offset: 0x6781B, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x27F0, symBinAddr: 0x1F094, symSize: 0x3C } + - { offsetInCU: 0xDEC, offset: 0x6789D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1C938, symSize: 0x4 } + - { offsetInCU: 0xE08, offset: 0x678B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x4, symBinAddr: 0x1C93C, symSize: 0x4 } + - { offsetInCU: 0xE24, offset: 0x678D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x8, symBinAddr: 0x1C940, symSize: 0x4 } + - { offsetInCU: 0xE40, offset: 0x678F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0xC, symBinAddr: 0x1C944, symSize: 0x4 } + - { offsetInCU: 0x10B2, offset: 0x67B63, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xB8, symBinAddr: 0x1C9F0, symSize: 0x40 } + - { offsetInCU: 0x10E0, offset: 0x67B91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0xF8, symBinAddr: 0x1CA30, symSize: 0x60 } + - { offsetInCU: 0x1118, offset: 0x67BC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1C4, symBinAddr: 0x1CAFC, symSize: 0x84 } + - { offsetInCU: 0x113F, offset: 0x67BF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x248, symBinAddr: 0x1CB80, symSize: 0x14 } + - { offsetInCU: 0x1186, offset: 0x67C37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x25C, symBinAddr: 0x1CB94, symSize: 0x28 } + - { offsetInCU: 0x128D, offset: 0x67D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x54C, symBinAddr: 0x1CE84, symSize: 0x4C } + - { offsetInCU: 0x12AC, offset: 0x67D5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5A8, symBinAddr: 0x1CEE0, symSize: 0x50 } + - { offsetInCU: 0x12D5, offset: 0x67D86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x608, symBinAddr: 0x1CF40, symSize: 0x3C } + - { offsetInCU: 0x12FA, offset: 0x67DAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x644, symBinAddr: 0x1CF7C, symSize: 0x4 } + - { offsetInCU: 0x134F, offset: 0x67E00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x77C, symBinAddr: 0x1D0B4, symSize: 0x4C } + - { offsetInCU: 0x136E, offset: 0x67E1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7C8, symBinAddr: 0x1D100, symSize: 0x50 } + - { offsetInCU: 0x1397, offset: 0x67E48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x818, symBinAddr: 0x1D150, symSize: 0x3C } + - { offsetInCU: 0x13BC, offset: 0x67E6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x854, symBinAddr: 0x1D18C, symSize: 0x8 } + - { offsetInCU: 0x13DD, offset: 0x67E8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x85C, symBinAddr: 0x1D194, symSize: 0x30 } + - { offsetInCU: 0x13FA, offset: 0x67EAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x88C, symBinAddr: 0x1D1C4, symSize: 0x3C } + - { offsetInCU: 0x141F, offset: 0x67ED0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8C8, symBinAddr: 0x1D200, symSize: 0x3C } + - { offsetInCU: 0x1469, offset: 0x67F1A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x960, symBinAddr: 0x1D298, symSize: 0x30 } + - { offsetInCU: 0x1486, offset: 0x67F37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x990, symBinAddr: 0x1D2C8, symSize: 0x44 } + - { offsetInCU: 0x14AF, offset: 0x67F60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x9D4, symBinAddr: 0x1D30C, symSize: 0x3C } + - { offsetInCU: 0x14DB, offset: 0x67F8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0xA10, symBinAddr: 0x1D348, symSize: 0xC8 } + - { offsetInCU: 0x1552, offset: 0x68003, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0xAD8, symBinAddr: 0x1D410, symSize: 0xC0 } + - { offsetInCU: 0x15E1, offset: 0x68092, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB98, symBinAddr: 0x1D4D0, symSize: 0xC0 } + - { offsetInCU: 0x16BA, offset: 0x6816B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xC58, symBinAddr: 0x1D590, symSize: 0x204 } + - { offsetInCU: 0x1723, offset: 0x681D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1924, symBinAddr: 0x1E25C, symSize: 0x13C } + - { offsetInCU: 0x17D1, offset: 0x68282, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xE5C, symBinAddr: 0x1D794, symSize: 0x70 } + - { offsetInCU: 0x17FB, offset: 0x682AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xECC, symBinAddr: 0x1D804, symSize: 0x30 } + - { offsetInCU: 0x181D, offset: 0x682CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xEFC, symBinAddr: 0x1D834, symSize: 0x178 } + - { offsetInCU: 0x18C2, offset: 0x68373, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0x1074, symBinAddr: 0x1D9AC, symSize: 0x14 } + - { offsetInCU: 0x190F, offset: 0x683C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0x10F8, symBinAddr: 0x1DA30, symSize: 0x3C } + - { offsetInCU: 0x1995, offset: 0x68446, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0x1088, symBinAddr: 0x1D9C0, symSize: 0x70 } + - { offsetInCU: 0x1A29, offset: 0x684DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0x1134, symBinAddr: 0x1DA6C, symSize: 0x78 } + - { offsetInCU: 0x1B0D, offset: 0x685BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0x11AC, symBinAddr: 0x1DAE4, symSize: 0x224 } + - { offsetInCU: 0x1CF9, offset: 0x687AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x13D0, symBinAddr: 0x1DD08, symSize: 0xC } + - { offsetInCU: 0x1D50, offset: 0x68801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1DD14, symSize: 0x4 } + - { offsetInCU: 0x1D6C, offset: 0x6881D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1DD14, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x68836, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x13DC, symBinAddr: 0x1DD14, symSize: 0x4 } + - { offsetInCU: 0x1D9E, offset: 0x6884F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x13E0, symBinAddr: 0x1DD18, symSize: 0x4 } + - { offsetInCU: 0x1DB6, offset: 0x68867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x13E4, symBinAddr: 0x1DD1C, symSize: 0xB8 } + - { offsetInCU: 0x1E56, offset: 0x68907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x14DC, symBinAddr: 0x1DE14, symSize: 0x4 } + - { offsetInCU: 0x1E6E, offset: 0x6891F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x26AC, symBinAddr: 0x1EFD4, symSize: 0x7C } + - { offsetInCU: 0x1F45, offset: 0x689F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x149C, symBinAddr: 0x1DDD4, symSize: 0x40 } + - { offsetInCU: 0x1F7A, offset: 0x68A2B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14EC, symBinAddr: 0x1DE24, symSize: 0x98 } + - { offsetInCU: 0x2021, offset: 0x68AD2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x1634, symBinAddr: 0x1DF6C, symSize: 0x198 } + - { offsetInCU: 0x251E, offset: 0x68FCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x1A8C, symBinAddr: 0x1E3C4, symSize: 0x24 } + - { offsetInCU: 0x2561, offset: 0x69012, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1AB0, symBinAddr: 0x1E3E8, symSize: 0x214 } + - { offsetInCU: 0x43, offset: 0x691CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x1F1E8, symSize: 0x3C } + - { offsetInCU: 0x57, offset: 0x691DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x3C, symBinAddr: 0x1F224, symSize: 0x84 } + - { offsetInCU: 0x6B, offset: 0x691F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xC0, symBinAddr: 0x1F2A8, symSize: 0x128 } + - { offsetInCU: 0x86, offset: 0x6920D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E8, symBinAddr: 0x1F3D0, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x69236, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x218, symBinAddr: 0x1F400, symSize: 0x1C } + - { offsetInCU: 0xC3, offset: 0x6924A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x234, symBinAddr: 0x1F41C, symSize: 0x9C } + - { offsetInCU: 0xD7, offset: 0x6925E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x2D0, symBinAddr: 0x1F4B8, symSize: 0x64 } + - { offsetInCU: 0xEB, offset: 0x69272, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x334, symBinAddr: 0x1F51C, symSize: 0x5C } + - { offsetInCU: 0xFF, offset: 0x69286, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x390, symBinAddr: 0x1F578, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x6929A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3A0, symBinAddr: 0x1F588, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x692AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3D0, symBinAddr: 0x1F5B8, symSize: 0x28 } + - { offsetInCU: 0x13B, offset: 0x692C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x3F8, symBinAddr: 0x1F5E0, symSize: 0x5C } + - { offsetInCU: 0x14F, offset: 0x692D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x454, symBinAddr: 0x1F63C, symSize: 0x84 } + - { offsetInCU: 0x163, offset: 0x692EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4D8, symBinAddr: 0x1F6C0, symSize: 0x64 } + - { offsetInCU: 0x177, offset: 0x692FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x53C, symBinAddr: 0x1F724, symSize: 0x5C } + - { offsetInCU: 0x18B, offset: 0x69312, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x598, symBinAddr: 0x1F780, symSize: 0x60 } + - { offsetInCU: 0x19F, offset: 0x69326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F8, symBinAddr: 0x1F7E0, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x69372, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x1FC08, symSize: 0x8 } + - { offsetInCU: 0x243, offset: 0x693CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA28, symBinAddr: 0x1FC10, symSize: 0x40 } + - { offsetInCU: 0x326, offset: 0x694AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA68, symBinAddr: 0x1FC50, symSize: 0x24 } + - { offsetInCU: 0x397, offset: 0x6951E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAC8, symBinAddr: 0x1FCB0, symSize: 0xC } + - { offsetInCU: 0x3E6, offset: 0x6956D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD4, symBinAddr: 0x1FCBC, symSize: 0x7C } + - { offsetInCU: 0x440, offset: 0x695C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB50, symBinAddr: 0x1FD38, symSize: 0xC } + - { offsetInCU: 0x45C, offset: 0x695E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB5C, symBinAddr: 0x1FD44, symSize: 0xC } + - { offsetInCU: 0x499, offset: 0x69620, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBB8, symBinAddr: 0x1FDA0, symSize: 0x4C } + - { offsetInCU: 0x4D0, offset: 0x69657, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xC04, symBinAddr: 0x1FDEC, symSize: 0x40 } + - { offsetInCU: 0x4F3, offset: 0x6967A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFC8, symBinAddr: 0x201B0, symSize: 0x144 } + - { offsetInCU: 0x580, offset: 0x69707, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC44, symBinAddr: 0x1FE2C, symSize: 0x14 } + - { offsetInCU: 0x5DB, offset: 0x69762, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC5C, symBinAddr: 0x1FE44, symSize: 0x28 } + - { offsetInCU: 0x655, offset: 0x697DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC88, symBinAddr: 0x1FE70, symSize: 0x48 } + - { offsetInCU: 0x68A, offset: 0x69811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x1FEB8, symSize: 0x24 } + - { offsetInCU: 0x6BB, offset: 0x69842, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF4, symBinAddr: 0x1FEDC, symSize: 0xC } + - { offsetInCU: 0x6D7, offset: 0x6985E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x1FEE8, symSize: 0xC } + - { offsetInCU: 0x6F3, offset: 0x6987A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x125C, symBinAddr: 0x203C0, symSize: 0x154 } + - { offsetInCU: 0x7B3, offset: 0x6993A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD5C, symBinAddr: 0x1FF44, symSize: 0x4C } + - { offsetInCU: 0x7EA, offset: 0x69971, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xDA8, symBinAddr: 0x1FF90, symSize: 0x40 } + - { offsetInCU: 0x80D, offset: 0x69994, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x13B0, symBinAddr: 0x20514, symSize: 0x254 } + - { offsetInCU: 0x87C, offset: 0x69A03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE74, symBinAddr: 0x2005C, symSize: 0x50 } + - { offsetInCU: 0x8B1, offset: 0x69A38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEC4, symBinAddr: 0x200AC, symSize: 0x24 } + - { offsetInCU: 0x8E2, offset: 0x69A69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xEE8, symBinAddr: 0x200D0, symSize: 0xC } + - { offsetInCU: 0x8FE, offset: 0x69A85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xEF4, symBinAddr: 0x200DC, symSize: 0xC } + - { offsetInCU: 0x91A, offset: 0x69AA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D3C, symBinAddr: 0x20E34, symSize: 0x168 } + - { offsetInCU: 0x9CA, offset: 0x69B51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF50, symBinAddr: 0x20138, symSize: 0x40 } + - { offsetInCU: 0xA01, offset: 0x69B88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xF90, symBinAddr: 0x20178, symSize: 0x38 } + - { offsetInCU: 0xA24, offset: 0x69BAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1EA4, symBinAddr: 0x20F9C, symSize: 0x2A8 } + - { offsetInCU: 0xA81, offset: 0x69C08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1170, symBinAddr: 0x202F4, symSize: 0x44 } + - { offsetInCU: 0xA95, offset: 0x69C1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x11D4, symBinAddr: 0x20338, symSize: 0x44 } + - { offsetInCU: 0xAA9, offset: 0x69C30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1218, symBinAddr: 0x2037C, symSize: 0x44 } + - { offsetInCU: 0xABD, offset: 0x69C44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1604, symBinAddr: 0x20768, symSize: 0x44 } + - { offsetInCU: 0xAD1, offset: 0x69C58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x168C, symBinAddr: 0x207AC, symSize: 0x44 } + - { offsetInCU: 0xAE5, offset: 0x69C6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x177C, symBinAddr: 0x2089C, symSize: 0x44 } + - { offsetInCU: 0xAF9, offset: 0x69C80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x17D8, symBinAddr: 0x208E8, symSize: 0x8 } + - { offsetInCU: 0xB0D, offset: 0x69C94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x17E0, symBinAddr: 0x208F0, symSize: 0x4 } + - { offsetInCU: 0xB21, offset: 0x69CA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x17E4, symBinAddr: 0x208F4, symSize: 0x8 } + - { offsetInCU: 0xB35, offset: 0x69CBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x17EC, symBinAddr: 0x208FC, symSize: 0x10 } + - { offsetInCU: 0xB49, offset: 0x69CD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x1800, symBinAddr: 0x2090C, symSize: 0x50 } + - { offsetInCU: 0xB5D, offset: 0x69CE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1850, symBinAddr: 0x2095C, symSize: 0x8C } + - { offsetInCU: 0xB71, offset: 0x69CF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x18DC, symBinAddr: 0x209E8, symSize: 0x8 } + - { offsetInCU: 0xB85, offset: 0x69D0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x18E4, symBinAddr: 0x209F0, symSize: 0x4 } + - { offsetInCU: 0xB99, offset: 0x69D20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x18E8, symBinAddr: 0x209F4, symSize: 0x4 } + - { offsetInCU: 0xBAD, offset: 0x69D34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x18EC, symBinAddr: 0x209F8, symSize: 0x10 } + - { offsetInCU: 0xBC1, offset: 0x69D48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18FC, symBinAddr: 0x20A08, symSize: 0x38 } + - { offsetInCU: 0xBD5, offset: 0x69D5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1934, symBinAddr: 0x20A40, symSize: 0x64 } + - { offsetInCU: 0xBE9, offset: 0x69D70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x1998, symBinAddr: 0x20AA4, symSize: 0xAC } + - { offsetInCU: 0xBFD, offset: 0x69D84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A58, symBinAddr: 0x20B50, symSize: 0x64 } + - { offsetInCU: 0xC11, offset: 0x69D98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1ABC, symBinAddr: 0x20BB4, symSize: 0x5C } + - { offsetInCU: 0xC25, offset: 0x69DAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B18, symBinAddr: 0x20C10, symSize: 0x64 } + - { offsetInCU: 0xC39, offset: 0x69DC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1B7C, symBinAddr: 0x20C74, symSize: 0x10 } + - { offsetInCU: 0xC4D, offset: 0x69DD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1B8C, symBinAddr: 0x20C84, symSize: 0x4 } + - { offsetInCU: 0xC61, offset: 0x69DE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1B90, symBinAddr: 0x20C88, symSize: 0x44 } + - { offsetInCU: 0xC75, offset: 0x69DFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BD4, symBinAddr: 0x20CCC, symSize: 0x4 } + - { offsetInCU: 0xC89, offset: 0x69E10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BD8, symBinAddr: 0x20CD0, symSize: 0x44 } + - { offsetInCU: 0xC9D, offset: 0x69E24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C1C, symBinAddr: 0x20D14, symSize: 0x4 } + - { offsetInCU: 0xCB1, offset: 0x69E38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C20, symBinAddr: 0x20D18, symSize: 0x44 } + - { offsetInCU: 0xCC5, offset: 0x69E4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C64, symBinAddr: 0x20D5C, symSize: 0x4 } + - { offsetInCU: 0xCD9, offset: 0x69E60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C68, symBinAddr: 0x20D60, symSize: 0x44 } + - { offsetInCU: 0xCED, offset: 0x69E74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CAC, symBinAddr: 0x20DA4, symSize: 0x4 } + - { offsetInCU: 0xD01, offset: 0x69E88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CB0, symBinAddr: 0x20DA8, symSize: 0x44 } + - { offsetInCU: 0xD15, offset: 0x69E9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF4, symBinAddr: 0x20DEC, symSize: 0x4 } + - { offsetInCU: 0xD29, offset: 0x69EB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1CF8, symBinAddr: 0x20DF0, symSize: 0x44 } + - { offsetInCU: 0xD3D, offset: 0x69EC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x214C, symBinAddr: 0x21244, symSize: 0x44 } + - { offsetInCU: 0xD51, offset: 0x69ED8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x22E4, symBinAddr: 0x213DC, symSize: 0x4 } + - { offsetInCU: 0xD65, offset: 0x69EEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x22E8, symBinAddr: 0x213E0, symSize: 0x10 } + - { offsetInCU: 0xD79, offset: 0x69F00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x22F8, symBinAddr: 0x213F0, symSize: 0x4 } + - { offsetInCU: 0xD8D, offset: 0x69F14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x22FC, symBinAddr: 0x213F4, symSize: 0x44 } + - { offsetInCU: 0xDA1, offset: 0x69F28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2340, symBinAddr: 0x21438, symSize: 0x4 } + - { offsetInCU: 0xDB5, offset: 0x69F3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2344, symBinAddr: 0x2143C, symSize: 0x44 } + - { offsetInCU: 0xDC9, offset: 0x69F50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2388, symBinAddr: 0x21480, symSize: 0x4 } + - { offsetInCU: 0xDDD, offset: 0x69F64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x238C, symBinAddr: 0x21484, symSize: 0x44 } + - { offsetInCU: 0xE3C, offset: 0x69FC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA8C, symBinAddr: 0x1FC74, symSize: 0x3C } + - { offsetInCU: 0xEFC, offset: 0x6A083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB68, symBinAddr: 0x1FD50, symSize: 0x28 } + - { offsetInCU: 0xF18, offset: 0x6A09F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB90, symBinAddr: 0x1FD78, symSize: 0x28 } + - { offsetInCU: 0xF3A, offset: 0x6A0C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD0C, symBinAddr: 0x1FEF4, symSize: 0x28 } + - { offsetInCU: 0xF56, offset: 0x6A0DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD34, symBinAddr: 0x1FF1C, symSize: 0x28 } + - { offsetInCU: 0xF78, offset: 0x6A0FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF00, symBinAddr: 0x200E8, symSize: 0x28 } + - { offsetInCU: 0xF94, offset: 0x6A11B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF28, symBinAddr: 0x20110, symSize: 0x28 } + - { offsetInCU: 0x1083, offset: 0x6A20A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x608, symBinAddr: 0x1F7F0, symSize: 0x10C } + - { offsetInCU: 0x10B4, offset: 0x6A23B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x714, symBinAddr: 0x1F8FC, symSize: 0x1B8 } + - { offsetInCU: 0x10E5, offset: 0x6A26C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8CC, symBinAddr: 0x1FAB4, symSize: 0x154 } + - { offsetInCU: 0xA6, offset: 0x6A427, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x49C, symBinAddr: 0x21908, symSize: 0x18 } + - { offsetInCU: 0xC6, offset: 0x6A447, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x49C, symBinAddr: 0x21908, symSize: 0x18 } + - { offsetInCU: 0xEC, offset: 0x6A46D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x4B4, symBinAddr: 0x21920, symSize: 0x44 } + - { offsetInCU: 0x1CF, offset: 0x6A550, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4F8, symBinAddr: 0x21964, symSize: 0x28 } + - { offsetInCU: 0x4C0, offset: 0x6A841, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x560, symBinAddr: 0x219CC, symSize: 0x4 } + - { offsetInCU: 0x4D4, offset: 0x6A855, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x564, symBinAddr: 0x219D0, symSize: 0x44 } + - { offsetInCU: 0x4E8, offset: 0x6A869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x5A8, symBinAddr: 0x21A14, symSize: 0x30 } + - { offsetInCU: 0x4FC, offset: 0x6A87D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x5D8, symBinAddr: 0x21A44, symSize: 0x7C } + - { offsetInCU: 0x510, offset: 0x6A891, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x654, symBinAddr: 0x21AC0, symSize: 0x184 } + - { offsetInCU: 0x524, offset: 0x6A8A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0x7D8, symBinAddr: 0x21C44, symSize: 0x394 } + - { offsetInCU: 0x53F, offset: 0x6A8C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xB6C, symBinAddr: 0x21FD8, symSize: 0x30 } + - { offsetInCU: 0x568, offset: 0x6A8E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xB9C, symBinAddr: 0x22008, symSize: 0x2C } + - { offsetInCU: 0x57C, offset: 0x6A8FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xBC8, symBinAddr: 0x22034, symSize: 0x34 } + - { offsetInCU: 0x590, offset: 0x6A911, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xBFC, symBinAddr: 0x22068, symSize: 0x44 } + - { offsetInCU: 0x5A4, offset: 0x6A925, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xC40, symBinAddr: 0x220AC, symSize: 0x1B4 } + - { offsetInCU: 0x5B8, offset: 0x6A939, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0xDF4, symBinAddr: 0x22260, symSize: 0x48 } + - { offsetInCU: 0x5CC, offset: 0x6A94D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0xE3C, symBinAddr: 0x222A8, symSize: 0x78 } + - { offsetInCU: 0x5E0, offset: 0x6A961, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0xEB4, symBinAddr: 0x22320, symSize: 0x10 } + - { offsetInCU: 0x5F4, offset: 0x6A975, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0xEC8, symBinAddr: 0x22334, symSize: 0x8 } + - { offsetInCU: 0x608, offset: 0x6A989, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0xF08, symBinAddr: 0x22374, symSize: 0x54 } + - { offsetInCU: 0x61C, offset: 0x6A99D, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0xF5C, symBinAddr: 0x223C8, symSize: 0x14 } + - { offsetInCU: 0x630, offset: 0x6A9B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0xF70, symBinAddr: 0x223DC, symSize: 0x3C } + - { offsetInCU: 0x644, offset: 0x6A9C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0xFAC, symBinAddr: 0x22418, symSize: 0x48 } + - { offsetInCU: 0x658, offset: 0x6A9D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0xFF4, symBinAddr: 0x22460, symSize: 0x40 } + - { offsetInCU: 0x66C, offset: 0x6A9ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x1034, symBinAddr: 0x224A0, symSize: 0x10 } + - { offsetInCU: 0x680, offset: 0x6AA01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x1044, symBinAddr: 0x224B0, symSize: 0x38 } + - { offsetInCU: 0x694, offset: 0x6AA15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x107C, symBinAddr: 0x224E8, symSize: 0x6C } + - { offsetInCU: 0x6A8, offset: 0x6AA29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x10E8, symBinAddr: 0x22554, symSize: 0xDC } + - { offsetInCU: 0x6BC, offset: 0x6AA3D, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x11C4, symBinAddr: 0x22630, symSize: 0x1C } + - { offsetInCU: 0x6D0, offset: 0x6AA51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x11E0, symBinAddr: 0x2264C, symSize: 0x74 } + - { offsetInCU: 0x6E4, offset: 0x6AA65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1254, symBinAddr: 0x226C0, symSize: 0x5C } + - { offsetInCU: 0x6F8, offset: 0x6AA79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x12B0, symBinAddr: 0x2271C, symSize: 0x64 } + - { offsetInCU: 0x70C, offset: 0x6AA8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x1314, symBinAddr: 0x22780, symSize: 0x10 } + - { offsetInCU: 0x720, offset: 0x6AAA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x1324, symBinAddr: 0x22790, symSize: 0x28 } + - { offsetInCU: 0x734, offset: 0x6AAB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x134C, symBinAddr: 0x227B8, symSize: 0x3C } + - { offsetInCU: 0x748, offset: 0x6AAC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x1388, symBinAddr: 0x227F4, symSize: 0x6C } + - { offsetInCU: 0x75C, offset: 0x6AADD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x1400, symBinAddr: 0x22860, symSize: 0x44 } + - { offsetInCU: 0x770, offset: 0x6AAF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1444, symBinAddr: 0x228A4, symSize: 0x48 } + - { offsetInCU: 0x784, offset: 0x6AB05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x148C, symBinAddr: 0x228EC, symSize: 0x40 } + - { offsetInCU: 0x798, offset: 0x6AB19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x14CC, symBinAddr: 0x2292C, symSize: 0x10 } + - { offsetInCU: 0x7AC, offset: 0x6AB2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x14E0, symBinAddr: 0x2293C, symSize: 0x54 } + - { offsetInCU: 0x7C0, offset: 0x6AB41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1534, symBinAddr: 0x22990, symSize: 0x44 } + - { offsetInCU: 0x7D4, offset: 0x6AB55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1578, symBinAddr: 0x229D4, symSize: 0x10 } + - { offsetInCU: 0x7E8, offset: 0x6AB69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x1594, symBinAddr: 0x229E4, symSize: 0x90 } + - { offsetInCU: 0x7FC, offset: 0x6AB7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1624, symBinAddr: 0x22A74, symSize: 0xBC } + - { offsetInCU: 0x810, offset: 0x6AB91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x16E0, symBinAddr: 0x22B30, symSize: 0x8 } + - { offsetInCU: 0x824, offset: 0x6ABA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x16E8, symBinAddr: 0x22B38, symSize: 0x4 } + - { offsetInCU: 0x838, offset: 0x6ABB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x16EC, symBinAddr: 0x22B3C, symSize: 0xC } + - { offsetInCU: 0x84C, offset: 0x6ABCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x16F8, symBinAddr: 0x22B48, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x6AC44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x520, symBinAddr: 0x2198C, symSize: 0x40 } + - { offsetInCU: 0xA66, offset: 0x6ADE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x214E0, symSize: 0x18 } + - { offsetInCU: 0xA9F, offset: 0x6AE20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x18, symBinAddr: 0x214F8, symSize: 0x230 } + - { offsetInCU: 0xB10, offset: 0x6AE91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x28C, symBinAddr: 0x21728, symSize: 0x2C } + - { offsetInCU: 0xB2A, offset: 0x6AEAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x2B8, symBinAddr: 0x21754, symSize: 0x34 } + - { offsetInCU: 0xB5F, offset: 0x6AEE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x2EC, symBinAddr: 0x21788, symSize: 0x10 } + - { offsetInCU: 0xB73, offset: 0x6AEF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x2FC, symBinAddr: 0x21798, symSize: 0x4 } + - { offsetInCU: 0xB94, offset: 0x6AF15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x300, symBinAddr: 0x2179C, symSize: 0x8 } + - { offsetInCU: 0xBA8, offset: 0x6AF29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x308, symBinAddr: 0x217A4, symSize: 0x8 } + - { offsetInCU: 0xBD8, offset: 0x6AF59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x310, symBinAddr: 0x217AC, symSize: 0x10 } + - { offsetInCU: 0xBFC, offset: 0x6AF7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x320, symBinAddr: 0x217BC, symSize: 0x4 } + - { offsetInCU: 0xC1D, offset: 0x6AF9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x324, symBinAddr: 0x217C0, symSize: 0x14 } + - { offsetInCU: 0xC31, offset: 0x6AFB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x368, symBinAddr: 0x217D4, symSize: 0x14 } + - { offsetInCU: 0xC45, offset: 0x6AFC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x37C, symBinAddr: 0x217E8, symSize: 0x2C } + - { offsetInCU: 0xC59, offset: 0x6AFDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x3A8, symBinAddr: 0x21814, symSize: 0x2C } + - { offsetInCU: 0xC6D, offset: 0x6AFEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x3D4, symBinAddr: 0x21840, symSize: 0x8 } + - { offsetInCU: 0xC81, offset: 0x6B002, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x3DC, symBinAddr: 0x21848, symSize: 0x8 } + - { offsetInCU: 0xCB3, offset: 0x6B034, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x3E4, symBinAddr: 0x21850, symSize: 0x10 } + - { offsetInCU: 0xCC7, offset: 0x6B048, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x3F4, symBinAddr: 0x21860, symSize: 0x4 } + - { offsetInCU: 0xCE8, offset: 0x6B069, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x3F8, symBinAddr: 0x21864, symSize: 0x8 } + - { offsetInCU: 0xCFC, offset: 0x6B07D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x400, symBinAddr: 0x2186C, symSize: 0x8 } + - { offsetInCU: 0xD2E, offset: 0x6B0AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x408, symBinAddr: 0x21874, symSize: 0x10 } + - { offsetInCU: 0xD52, offset: 0x6B0D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x418, symBinAddr: 0x21884, symSize: 0x4 } + - { offsetInCU: 0xD73, offset: 0x6B0F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x41C, symBinAddr: 0x21888, symSize: 0x10 } + - { offsetInCU: 0xD97, offset: 0x6B118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x42C, symBinAddr: 0x21898, symSize: 0x4 } + - { offsetInCU: 0xDC6, offset: 0x6B147, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x430, symBinAddr: 0x2189C, symSize: 0x28 } + - { offsetInCU: 0xE51, offset: 0x6B1D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x458, symBinAddr: 0x218C4, symSize: 0x44 } + - { offsetInCU: 0x943, offset: 0x6BC3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x7220, symBinAddr: 0x29D88, symSize: 0x28 } + - { offsetInCU: 0x18F2, offset: 0x6CBEB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x14434, symBinAddr: 0x36F9C, symSize: 0x90 } + - { offsetInCU: 0x198A, offset: 0x6CC83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x15398, symBinAddr: 0x37F00, symSize: 0x44 } + - { offsetInCU: 0x19A6, offset: 0x6CC9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x153DC, symBinAddr: 0x37F44, symSize: 0x150 } + - { offsetInCU: 0x1ABF, offset: 0x6CDB8, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x1552C, symBinAddr: 0x38094, symSize: 0x54 } + - { offsetInCU: 0x1B3D, offset: 0x6CE36, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x155D4, symBinAddr: 0x380E8, symSize: 0x4C } + - { offsetInCU: 0x1BCB, offset: 0x6CEC4, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x15620, symBinAddr: 0x38134, symSize: 0x50 } + - { offsetInCU: 0x1C39, offset: 0x6CF32, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x15670, symBinAddr: 0x38184, symSize: 0x64 } + - { offsetInCU: 0x22CF, offset: 0x6D5C8, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x164E8, symBinAddr: 0x38FFC, symSize: 0x84 } + - { offsetInCU: 0x2333, offset: 0x6D62C, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x1656C, symBinAddr: 0x39080, symSize: 0x80 } + - { offsetInCU: 0x2400, offset: 0x6D6F9, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x16708, symBinAddr: 0x3921C, symSize: 0x40 } + - { offsetInCU: 0x2525, offset: 0x6D81E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1707C, symBinAddr: 0x39B14, symSize: 0x1A0 } + - { offsetInCU: 0x2703, offset: 0x6D9FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x17318, symBinAddr: 0x39DB0, symSize: 0x360 } + - { offsetInCU: 0x2E25, offset: 0x6E11E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x184A8, symBinAddr: 0x3AF40, symSize: 0xBB8 } + - { offsetInCU: 0x3E91, offset: 0x6F18A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19060, symBinAddr: 0x3BAF8, symSize: 0x1C0 } + - { offsetInCU: 0x4012, offset: 0x6F30B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x19220, symBinAddr: 0x3BCB8, symSize: 0x1A0 } + - { offsetInCU: 0x441A, offset: 0x6F713, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x19E1C, symBinAddr: 0x3C8B4, symSize: 0x8 } + - { offsetInCU: 0x442E, offset: 0x6F727, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x19EEC, symBinAddr: 0x3C984, symSize: 0x10 } + - { offsetInCU: 0x4442, offset: 0x6F73B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x19EFC, symBinAddr: 0x3C994, symSize: 0x14 } + - { offsetInCU: 0x4456, offset: 0x6F74F, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x19F10, symBinAddr: 0x3C9A8, symSize: 0x44 } + - { offsetInCU: 0x446A, offset: 0x6F763, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x19F64, symBinAddr: 0x3C9EC, symSize: 0x44 } + - { offsetInCU: 0x447E, offset: 0x6F777, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x19FA8, symBinAddr: 0x3CA30, symSize: 0x30C } + - { offsetInCU: 0x4492, offset: 0x6F78B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1A2B4, symBinAddr: 0x3CD3C, symSize: 0x240 } + - { offsetInCU: 0x44A6, offset: 0x6F79F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1A4F4, symBinAddr: 0x3CF7C, symSize: 0x70 } + - { offsetInCU: 0x44BA, offset: 0x6F7B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1A564, symBinAddr: 0x3CFEC, symSize: 0x34 } + - { offsetInCU: 0x44CE, offset: 0x6F7C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1A598, symBinAddr: 0x3D020, symSize: 0x174 } + - { offsetInCU: 0x44E2, offset: 0x6F7DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1A70C, symBinAddr: 0x3D194, symSize: 0xB4 } + - { offsetInCU: 0x4535, offset: 0x6F82E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1AFD8, symBinAddr: 0x3D248, symSize: 0xC4 } + - { offsetInCU: 0x45AB, offset: 0x6F8A4, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B09C, symBinAddr: 0x3D30C, symSize: 0x78 } + - { offsetInCU: 0x45D8, offset: 0x6F8D1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1B114, symBinAddr: 0x3D384, symSize: 0x80 } + - { offsetInCU: 0x466C, offset: 0x6F965, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1B194, symBinAddr: 0x3D404, symSize: 0x68 } + - { offsetInCU: 0x47D3, offset: 0x6FACC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1B1FC, symBinAddr: 0x3D46C, symSize: 0x640 } + - { offsetInCU: 0x4C97, offset: 0x6FF90, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1B84C, symBinAddr: 0x3DABC, symSize: 0x4C } + - { offsetInCU: 0x4CAB, offset: 0x6FFA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1B940, symBinAddr: 0x3DB28, symSize: 0x8 } + - { offsetInCU: 0x4CBF, offset: 0x6FFB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1B948, symBinAddr: 0x3DB30, symSize: 0x44 } + - { offsetInCU: 0x4CD3, offset: 0x6FFCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1B98C, symBinAddr: 0x3DB74, symSize: 0x44 } + - { offsetInCU: 0x4CE7, offset: 0x6FFE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1BA38, symBinAddr: 0x3DBDC, symSize: 0x8 } + - { offsetInCU: 0x4CFB, offset: 0x6FFF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1BAC8, symBinAddr: 0x3DC64, symSize: 0x44 } + - { offsetInCU: 0x4D30, offset: 0x70029, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1BBD0, symBinAddr: 0x3DD6C, symSize: 0x48 } + - { offsetInCU: 0x4D44, offset: 0x7003D, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1BC3C, symBinAddr: 0x3DDD8, symSize: 0x3C } + - { offsetInCU: 0x4D58, offset: 0x70051, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1BC78, symBinAddr: 0x3DE14, symSize: 0x34 } + - { offsetInCU: 0x4D6C, offset: 0x70065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1BCD0, symBinAddr: 0x3DE6C, symSize: 0x40 } + - { offsetInCU: 0x4D80, offset: 0x70079, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1BD10, symBinAddr: 0x3DEAC, symSize: 0x48 } + - { offsetInCU: 0x4D94, offset: 0x7008D, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1BE1C, symBinAddr: 0x3DFB8, symSize: 0x18 } + - { offsetInCU: 0x4DA8, offset: 0x700A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1BE34, symBinAddr: 0x3DFD0, symSize: 0x10 } + - { offsetInCU: 0x4DBC, offset: 0x700B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1BE44, symBinAddr: 0x3DFE0, symSize: 0x34 } + - { offsetInCU: 0x4DD0, offset: 0x700C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x1BEB4, symBinAddr: 0x3E050, symSize: 0x30 } + - { offsetInCU: 0x5456, offset: 0x7074F, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0x9A54, symBinAddr: 0x2C5BC, symSize: 0x400 } + - { offsetInCU: 0x55B9, offset: 0x708B2, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xACD0, symBinAddr: 0x2D838, symSize: 0x390 } + - { offsetInCU: 0x587D, offset: 0x70B76, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xB060, symBinAddr: 0x2DBC8, symSize: 0x3B8 } + - { offsetInCU: 0x5CDB, offset: 0x70FD4, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0xF450, symBinAddr: 0x31FB8, symSize: 0x18C } + - { offsetInCU: 0x60B1, offset: 0x713AA, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x16B98, symBinAddr: 0x396AC, symSize: 0x110 } + - { offsetInCU: 0x61CE, offset: 0x714C7, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x16ED4, symBinAddr: 0x3996C, symSize: 0x1A8 } + - { offsetInCU: 0x62FD, offset: 0x715F6, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x1721C, symBinAddr: 0x39CB4, symSize: 0xFC } + - { offsetInCU: 0x6434, offset: 0x7172D, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x17678, symBinAddr: 0x3A110, symSize: 0x188 } + - { offsetInCU: 0x6781, offset: 0x71A7A, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x19588, symBinAddr: 0x3C020, symSize: 0x1C8 } + - { offsetInCU: 0x68B0, offset: 0x71BA9, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x19750, symBinAddr: 0x3C1E8, symSize: 0x11C } + - { offsetInCU: 0x6A12, offset: 0x71D0B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x1986C, symBinAddr: 0x3C304, symSize: 0xFC } + - { offsetInCU: 0x6B74, offset: 0x71E6D, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x19968, symBinAddr: 0x3C400, symSize: 0xE4 } + - { offsetInCU: 0x6CCA, offset: 0x71FC3, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x19A4C, symBinAddr: 0x3C4E4, symSize: 0x114 } + - { offsetInCU: 0x6E20, offset: 0x72119, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x19B60, symBinAddr: 0x3C5F8, symSize: 0xF0 } + - { offsetInCU: 0x6F82, offset: 0x7227B, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x19D38, symBinAddr: 0x3C7D0, symSize: 0xE4 } + - { offsetInCU: 0x70F9, offset: 0x723F2, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1BB0C, symBinAddr: 0x3DCA8, symSize: 0xC4 } + - { offsetInCU: 0x7660, offset: 0x72959, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x22B68, symSize: 0x190 } + - { offsetInCU: 0x7733, offset: 0x72A2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x190, symBinAddr: 0x22CF8, symSize: 0x34C } + - { offsetInCU: 0x78A6, offset: 0x72B9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2548, symBinAddr: 0x250B0, symSize: 0x938 } + - { offsetInCU: 0x7C97, offset: 0x72F90, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x4DC, symBinAddr: 0x23044, symSize: 0x88 } + - { offsetInCU: 0x7E08, offset: 0x73101, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x564, symBinAddr: 0x230CC, symSize: 0x1D04 } + - { offsetInCU: 0x8FA5, offset: 0x7429E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xB418, symBinAddr: 0x2DF80, symSize: 0x37E0 } + - { offsetInCU: 0xA2CC, offset: 0x755C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0xEBF8, symBinAddr: 0x31760, symSize: 0x578 } + - { offsetInCU: 0xA71E, offset: 0x75A17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x1071C, symBinAddr: 0x33284, symSize: 0x2568 } + - { offsetInCU: 0xBDAC, offset: 0x770A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x13BCC, symBinAddr: 0x36734, symSize: 0x3DC } + - { offsetInCU: 0xBF47, offset: 0x77240, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x2268, symBinAddr: 0x24DD0, symSize: 0x2E0 } + - { offsetInCU: 0xC3CC, offset: 0x776C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x2E80, symBinAddr: 0x259E8, symSize: 0x3B8 } + - { offsetInCU: 0xC658, offset: 0x77951, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x3238, symBinAddr: 0x25DA0, symSize: 0x3914 } + - { offsetInCU: 0xE205, offset: 0x794FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x6B4C, symBinAddr: 0x296B4, symSize: 0x278 } + - { offsetInCU: 0xE311, offset: 0x7960A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x7248, symBinAddr: 0x29DB0, symSize: 0x1848 } + - { offsetInCU: 0xED98, offset: 0x7A091, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x6DC4, symBinAddr: 0x2992C, symSize: 0x118 } + - { offsetInCU: 0xEE11, offset: 0x7A10A, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x6EDC, symBinAddr: 0x29A44, symSize: 0x15C } + - { offsetInCU: 0xEE2C, offset: 0x7A125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x7038, symBinAddr: 0x29BA0, symSize: 0x1E8 } + - { offsetInCU: 0xF10F, offset: 0x7A408, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0x8AE4, symBinAddr: 0x2B64C, symSize: 0x3F8 } + - { offsetInCU: 0xF330, offset: 0x7A629, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x9E54, symBinAddr: 0x2C9BC, symSize: 0xE7C } + - { offsetInCU: 0xFC3C, offset: 0x7AF35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0x8EDC, symBinAddr: 0x2BA44, symSize: 0xB78 } + - { offsetInCU: 0x1060C, offset: 0x7B905, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0xF5DC, symBinAddr: 0x32144, symSize: 0x1140 } + - { offsetInCU: 0x117C1, offset: 0x7CABA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x17800, symBinAddr: 0x3A298, symSize: 0xB10 } + - { offsetInCU: 0x12251, offset: 0x7D54A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x12C84, symBinAddr: 0x357EC, symSize: 0xF48 } + - { offsetInCU: 0x12D35, offset: 0x7E02E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x13FA8, symBinAddr: 0x36B10, symSize: 0x1E8 } + - { offsetInCU: 0x12DB9, offset: 0x7E0B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x14190, symBinAddr: 0x36CF8, symSize: 0x294 } + - { offsetInCU: 0x12EC9, offset: 0x7E1C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x144C4, symBinAddr: 0x3702C, symSize: 0xED4 } + - { offsetInCU: 0x138F4, offset: 0x7EBED, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x156D4, symBinAddr: 0x381E8, symSize: 0x64 } + - { offsetInCU: 0x13932, offset: 0x7EC2B, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x15738, symBinAddr: 0x3824C, symSize: 0x30 } + - { offsetInCU: 0x13979, offset: 0x7EC72, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15768, symBinAddr: 0x3827C, symSize: 0x80 } + - { offsetInCU: 0x13A13, offset: 0x7ED0C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x157E8, symBinAddr: 0x382FC, symSize: 0x6C } + - { offsetInCU: 0x13AC3, offset: 0x7EDBC, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x15854, symBinAddr: 0x38368, symSize: 0x4C } + - { offsetInCU: 0x13B3C, offset: 0x7EE35, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x158CC, symBinAddr: 0x383E0, symSize: 0xE0 } + - { offsetInCU: 0x13BB0, offset: 0x7EEA9, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x159AC, symBinAddr: 0x384C0, symSize: 0xC4 } + - { offsetInCU: 0x13BD9, offset: 0x7EED2, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x15A70, symBinAddr: 0x38584, symSize: 0x174 } + - { offsetInCU: 0x13CB2, offset: 0x7EFAB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x15BE4, symBinAddr: 0x386F8, symSize: 0x104 } + - { offsetInCU: 0x13DE1, offset: 0x7F0DA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x15CE8, symBinAddr: 0x387FC, symSize: 0x124 } + - { offsetInCU: 0x13F02, offset: 0x7F1FB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x15E0C, symBinAddr: 0x38920, symSize: 0x170 } + - { offsetInCU: 0x14083, offset: 0x7F37C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x15F7C, symBinAddr: 0x38A90, symSize: 0x174 } + - { offsetInCU: 0x141D1, offset: 0x7F4CA, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x160F0, symBinAddr: 0x38C04, symSize: 0xFC } + - { offsetInCU: 0x14307, offset: 0x7F600, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x161EC, symBinAddr: 0x38D00, symSize: 0xFC } + - { offsetInCU: 0x1443D, offset: 0x7F736, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x163EC, symBinAddr: 0x38F00, symSize: 0xFC } + - { offsetInCU: 0x14573, offset: 0x7F86C, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x165EC, symBinAddr: 0x39100, symSize: 0x11C } + - { offsetInCU: 0x1465E, offset: 0x7F957, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x169AC, symBinAddr: 0x394C0, symSize: 0x138 } + - { offsetInCU: 0x1472D, offset: 0x7FA26, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x16AE4, symBinAddr: 0x395F8, symSize: 0xB4 } + - { offsetInCU: 0x14787, offset: 0x7FA80, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x16CE8, symBinAddr: 0x397BC, symSize: 0x18C } + - { offsetInCU: 0x149C7, offset: 0x7FCC0, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x18310, symBinAddr: 0x3ADA8, symSize: 0x198 } + - { offsetInCU: 0x27, offset: 0x803F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3E0B8, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x8040B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x3E0B8, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x8041F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x3E0E8, symSize: 0xEC } + - { offsetInCU: 0x67, offset: 0x80433, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x11C, symBinAddr: 0x3E1D4, symSize: 0x268 } + - { offsetInCU: 0x7B, offset: 0x80447, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x384, symBinAddr: 0x3E43C, symSize: 0x41C } + - { offsetInCU: 0x8F, offset: 0x8045B, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0x7D4, symBinAddr: 0x3E858, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x8046F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0x7DC, symBinAddr: 0x3E860, symSize: 0x23C } + - { offsetInCU: 0xB7, offset: 0x80483, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xA18, symBinAddr: 0x3EA9C, symSize: 0x48 } + - { offsetInCU: 0xCB, offset: 0x80497, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0xA60, symBinAddr: 0x3EAE4, symSize: 0xBC } + - { offsetInCU: 0xDF, offset: 0x804AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0xB1C, symBinAddr: 0x3EBA0, symSize: 0x10 } + - { offsetInCU: 0x519, offset: 0x80AA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0x8C04, symBinAddr: 0x477B4, symSize: 0x220 } + - { offsetInCU: 0x5D7, offset: 0x80B63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0x8E24, symBinAddr: 0x479D4, symSize: 0x224 } + - { offsetInCU: 0x6A4, offset: 0x80C30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xD41C, symBinAddr: 0x4BFCC, symSize: 0x774 } + - { offsetInCU: 0x9DA, offset: 0x80F66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xDB90, symBinAddr: 0x4C740, symSize: 0x9CC } + - { offsetInCU: 0xCB4, offset: 0x81240, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0xE55C, symBinAddr: 0x4D10C, symSize: 0x2AC } + - { offsetInCU: 0xDF6, offset: 0x81382, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0xEEC0, symBinAddr: 0x4DA70, symSize: 0x810 } + - { offsetInCU: 0x10EC, offset: 0x81678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0xF6D0, symBinAddr: 0x4E280, symSize: 0xBB4 } + - { offsetInCU: 0x13C6, offset: 0x81952, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x10284, symBinAddr: 0x4EE34, symSize: 0x314 } + - { offsetInCU: 0x1508, offset: 0x81A94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x10598, symBinAddr: 0x4F148, symSize: 0x208 } + - { offsetInCU: 0x1989, offset: 0x81F15, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x1E4C, symBinAddr: 0x409FC, symSize: 0x2C } + - { offsetInCU: 0x1E8E, offset: 0x8241A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0x90E8, symBinAddr: 0x47C98, symSize: 0x20 } + - { offsetInCU: 0x1ED3, offset: 0x8245F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x9108, symBinAddr: 0x47CB8, symSize: 0x8C } + - { offsetInCU: 0x1F8F, offset: 0x8251B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xA244, symBinAddr: 0x48DF4, symSize: 0x54 } + - { offsetInCU: 0x1FC9, offset: 0x82555, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xA298, symBinAddr: 0x48E48, symSize: 0x50 } + - { offsetInCU: 0x201F, offset: 0x825AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA2E8, symBinAddr: 0x48E98, symSize: 0x64 } + - { offsetInCU: 0x2052, offset: 0x825DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xA34C, symBinAddr: 0x48EFC, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8261D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xA350, symBinAddr: 0x48F00, symSize: 0x78 } + - { offsetInCU: 0x20E7, offset: 0x82673, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xA3C8, symBinAddr: 0x48F78, symSize: 0x88 } + - { offsetInCU: 0x2158, offset: 0x826E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xA450, symBinAddr: 0x49000, symSize: 0xDC } + - { offsetInCU: 0x21DA, offset: 0x82766, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xA52C, symBinAddr: 0x490DC, symSize: 0x4 } + - { offsetInCU: 0x21F6, offset: 0x82782, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xA530, symBinAddr: 0x490E0, symSize: 0x4 } + - { offsetInCU: 0x2230, offset: 0x827BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xA534, symBinAddr: 0x490E4, symSize: 0x64 } + - { offsetInCU: 0x259D, offset: 0x82B29, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xB7DC, symBinAddr: 0x4A38C, symSize: 0xE4 } + - { offsetInCU: 0x2681, offset: 0x82C0D, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xB9A4, symBinAddr: 0x4A554, symSize: 0x280 } + - { offsetInCU: 0x281D, offset: 0x82DA9, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xC1D4, symBinAddr: 0x4AD84, symSize: 0x64 } + - { offsetInCU: 0x2DFE, offset: 0x8338A, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xC9D8, symBinAddr: 0x4B588, symSize: 0x374 } + - { offsetInCU: 0x35A0, offset: 0x83B2C, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCD4C, symBinAddr: 0x4B8FC, symSize: 0x280 } + - { offsetInCU: 0x3977, offset: 0x83F03, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xCFCC, symBinAddr: 0x4BB7C, symSize: 0x148 } + - { offsetInCU: 0x3B71, offset: 0x840FD, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xD114, symBinAddr: 0x4BCC4, symSize: 0x1F8 } + - { offsetInCU: 0x3D30, offset: 0x842BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x10F50, symBinAddr: 0x4FB00, symSize: 0x104 } + - { offsetInCU: 0x3E7A, offset: 0x84406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x13A08, symBinAddr: 0x525B8, symSize: 0x120 } + - { offsetInCU: 0x3F92, offset: 0x8451E, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x141FC, symBinAddr: 0x52D4C, symSize: 0x10 } + - { offsetInCU: 0x3FA6, offset: 0x84532, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x1420C, symBinAddr: 0x52D5C, symSize: 0x10 } + - { offsetInCU: 0x3FBA, offset: 0x84546, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x142A0, symBinAddr: 0x52D6C, symSize: 0x48 } + - { offsetInCU: 0x3FCE, offset: 0x8455A, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x1438C, symBinAddr: 0x52DB4, symSize: 0x3C } + - { offsetInCU: 0x3FE2, offset: 0x8456E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x143C8, symBinAddr: 0x52DF0, symSize: 0x44 } + - { offsetInCU: 0x3FF6, offset: 0x84582, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOd', symObjAddr: 0x1440C, symBinAddr: 0x52E34, symSize: 0x48 } + - { offsetInCU: 0x400A, offset: 0x84596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x14454, symBinAddr: 0x52E7C, symSize: 0x8 } + - { offsetInCU: 0x401E, offset: 0x845AA, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1445C, symBinAddr: 0x52E84, symSize: 0x10 } + - { offsetInCU: 0x4032, offset: 0x845BE, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1446C, symBinAddr: 0x52E94, symSize: 0x8 } + - { offsetInCU: 0x4046, offset: 0x845D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x144F4, symBinAddr: 0x52ED8, symSize: 0x30 } + - { offsetInCU: 0x409E, offset: 0x8462A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x145B4, symBinAddr: 0x52F98, symSize: 0x24 } + - { offsetInCU: 0x40DA, offset: 0x84666, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x1461C, symBinAddr: 0x53000, symSize: 0x44 } + - { offsetInCU: 0x4BFF, offset: 0x8518B, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x3EBB0, symSize: 0x134 } + - { offsetInCU: 0x4C2D, offset: 0x851B9, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x134, symBinAddr: 0x3ECE4, symSize: 0x80 } + - { offsetInCU: 0x4C95, offset: 0x85221, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x1B4, symBinAddr: 0x3ED64, symSize: 0xA0 } + - { offsetInCU: 0x4DF8, offset: 0x85384, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x254, symBinAddr: 0x3EE04, symSize: 0x9C } + - { offsetInCU: 0x4F23, offset: 0x854AF, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x2F0, symBinAddr: 0x3EEA0, symSize: 0x74 } + - { offsetInCU: 0x4FA8, offset: 0x85534, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x364, symBinAddr: 0x3EF14, symSize: 0x4 } + - { offsetInCU: 0x4FF9, offset: 0x85585, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x368, symBinAddr: 0x3EF18, symSize: 0xE8 } + - { offsetInCU: 0x50DB, offset: 0x85667, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x450, symBinAddr: 0x3F000, symSize: 0x204 } + - { offsetInCU: 0x525A, offset: 0x857E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x654, symBinAddr: 0x3F204, symSize: 0xB0C } + - { offsetInCU: 0x56EC, offset: 0x85C78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x1160, symBinAddr: 0x3FD10, symSize: 0x3CC } + - { offsetInCU: 0x5903, offset: 0x85E8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x152C, symBinAddr: 0x400DC, symSize: 0x920 } + - { offsetInCU: 0x5C7A, offset: 0x86206, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x1E78, symBinAddr: 0x40A28, symSize: 0x21E4 } + - { offsetInCU: 0x7197, offset: 0x87723, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0xE808, symBinAddr: 0x4D3B8, symSize: 0x6B8 } + - { offsetInCU: 0x75A2, offset: 0x87B2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x405C, symBinAddr: 0x42C0C, symSize: 0x158C } + - { offsetInCU: 0x845D, offset: 0x889E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x55E8, symBinAddr: 0x44198, symSize: 0xFD4 } + - { offsetInCU: 0x8E64, offset: 0x893F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x65BC, symBinAddr: 0x4516C, symSize: 0x3B0 } + - { offsetInCU: 0x8FCD, offset: 0x89559, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x71F0, symBinAddr: 0x45DA0, symSize: 0x1E8 } + - { offsetInCU: 0x921F, offset: 0x897AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x73D8, symBinAddr: 0x45F88, symSize: 0x92C } + - { offsetInCU: 0x9A1F, offset: 0x89FAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x7D04, symBinAddr: 0x468B4, symSize: 0x2A8 } + - { offsetInCU: 0x9B71, offset: 0x8A0FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x7FAC, symBinAddr: 0x46B5C, symSize: 0x614 } + - { offsetInCU: 0x9F3E, offset: 0x8A4CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x85C0, symBinAddr: 0x47170, symSize: 0x644 } + - { offsetInCU: 0xA1E0, offset: 0x8A76C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0x9048, symBinAddr: 0x47BF8, symSize: 0x80 } + - { offsetInCU: 0xA203, offset: 0x8A78F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0x90C8, symBinAddr: 0x47C78, symSize: 0x20 } + - { offsetInCU: 0xA28E, offset: 0x8A81A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0x9194, symBinAddr: 0x47D44, symSize: 0x1070 } + - { offsetInCU: 0xA8F6, offset: 0x8AE82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xA204, symBinAddr: 0x48DB4, symSize: 0x40 } + - { offsetInCU: 0xA969, offset: 0x8AEF5, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xA598, symBinAddr: 0x49148, symSize: 0x4 } + - { offsetInCU: 0xA984, offset: 0x8AF10, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA59C, symBinAddr: 0x4914C, symSize: 0x8 } + - { offsetInCU: 0xA99C, offset: 0x8AF28, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xA59C, symBinAddr: 0x4914C, symSize: 0x8 } + - { offsetInCU: 0xA9AD, offset: 0x8AF39, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xA5A4, symBinAddr: 0x49154, symSize: 0xC8 } + - { offsetInCU: 0xAA35, offset: 0x8AFC1, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xA66C, symBinAddr: 0x4921C, symSize: 0xCC } + - { offsetInCU: 0xAAD5, offset: 0x8B061, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xA834, symBinAddr: 0x493E4, symSize: 0x1F4 } + - { offsetInCU: 0xAB75, offset: 0x8B101, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xAA28, symBinAddr: 0x495D8, symSize: 0x1C4 } + - { offsetInCU: 0xAC31, offset: 0x8B1BD, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xABEC, symBinAddr: 0x4979C, symSize: 0x340 } + - { offsetInCU: 0xAD28, offset: 0x8B2B4, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xAF2C, symBinAddr: 0x49ADC, symSize: 0x340 } + - { offsetInCU: 0xAE12, offset: 0x8B39E, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xB26C, symBinAddr: 0x49E1C, symSize: 0x1DC } + - { offsetInCU: 0xAEB7, offset: 0x8B443, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xB448, symBinAddr: 0x49FF8, symSize: 0x204 } + - { offsetInCU: 0xAF55, offset: 0x8B4E1, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xB64C, symBinAddr: 0x4A1FC, symSize: 0x4C } + - { offsetInCU: 0xB001, offset: 0x8B58D, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xB698, symBinAddr: 0x4A248, symSize: 0x90 } + - { offsetInCU: 0xB08D, offset: 0x8B619, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xB728, symBinAddr: 0x4A2D8, symSize: 0x40 } + - { offsetInCU: 0xB0CA, offset: 0x8B656, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xB768, symBinAddr: 0x4A318, symSize: 0x18 } + - { offsetInCU: 0xB11C, offset: 0x8B6A8, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xB780, symBinAddr: 0x4A330, symSize: 0x3C } + - { offsetInCU: 0xB145, offset: 0x8B6D1, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xB7BC, symBinAddr: 0x4A36C, symSize: 0x1C } + - { offsetInCU: 0xB186, offset: 0x8B712, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xBEA8, symBinAddr: 0x4AA58, symSize: 0x8C } + - { offsetInCU: 0xB19A, offset: 0x8B726, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xBF34, symBinAddr: 0x4AAE4, symSize: 0x4C } + - { offsetInCU: 0xB1CA, offset: 0x8B756, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xBF80, symBinAddr: 0x4AB30, symSize: 0x164 } + - { offsetInCU: 0xB227, offset: 0x8B7B3, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xC0E4, symBinAddr: 0x4AC94, symSize: 0xF0 } + - { offsetInCU: 0xB24E, offset: 0x8B7DA, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xC238, symBinAddr: 0x4ADE8, symSize: 0x214 } + - { offsetInCU: 0xB283, offset: 0x8B80F, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xC44C, symBinAddr: 0x4AFFC, symSize: 0x78 } + - { offsetInCU: 0xB297, offset: 0x8B823, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xC4C4, symBinAddr: 0x4B074, symSize: 0x1C } + - { offsetInCU: 0xB2AB, offset: 0x8B837, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC4E0, symBinAddr: 0x4B090, symSize: 0x1C } + - { offsetInCU: 0xB2BF, offset: 0x8B84B, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC4FC, symBinAddr: 0x4B0AC, symSize: 0x1C } + - { offsetInCU: 0xB2F6, offset: 0x8B882, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xC518, symBinAddr: 0x4B0C8, symSize: 0x104 } + - { offsetInCU: 0xB3F4, offset: 0x8B980, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xC61C, symBinAddr: 0x4B1CC, symSize: 0x174 } + - { offsetInCU: 0xB50A, offset: 0x8BA96, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xC790, symBinAddr: 0x4B340, symSize: 0x124 } + - { offsetInCU: 0xB5DE, offset: 0x8BB6A, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xC8B4, symBinAddr: 0x4B464, symSize: 0x124 } + - { offsetInCU: 0xB71D, offset: 0x8BCA9, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xD30C, symBinAddr: 0x4BEBC, symSize: 0x14 } + - { offsetInCU: 0xB73F, offset: 0x8BCCB, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xD320, symBinAddr: 0x4BED0, symSize: 0xFC } + - { offsetInCU: 0xB819, offset: 0x8BDA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x107A0, symBinAddr: 0x4F350, symSize: 0x7B0 } + - { offsetInCU: 0xBCA0, offset: 0x8C22C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x11054, symBinAddr: 0x4FC04, symSize: 0x29B4 } + - { offsetInCU: 0xC434, offset: 0x8C9C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x13B28, symBinAddr: 0x526D8, symSize: 0x674 } + - { offsetInCU: 0x95, offset: 0x8CE95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xF4C, symBinAddr: 0x5404C, symSize: 0x4C } + - { offsetInCU: 0xE8, offset: 0x8CEE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xF98, symBinAddr: 0x54098, symSize: 0x24 } + - { offsetInCU: 0x119, offset: 0x8CF19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xFBC, symBinAddr: 0x540BC, symSize: 0xC } + - { offsetInCU: 0x135, offset: 0x8CF35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xFC8, symBinAddr: 0x540C8, symSize: 0xC } + - { offsetInCU: 0x151, offset: 0x8CF51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x5F38, symBinAddr: 0x58FA8, symSize: 0x134 } + - { offsetInCU: 0x1E8, offset: 0x8CFE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1024, symBinAddr: 0x54124, symSize: 0x50 } + - { offsetInCU: 0x21F, offset: 0x8D01F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1074, symBinAddr: 0x54174, symSize: 0x50 } + - { offsetInCU: 0x242, offset: 0x8D042, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x606C, symBinAddr: 0x590DC, symSize: 0x132C } + - { offsetInCU: 0x2D0, offset: 0x8D0D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x10C4, symBinAddr: 0x541C4, symSize: 0x14 } + - { offsetInCU: 0x32B, offset: 0x8D12B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x10DC, symBinAddr: 0x541DC, symSize: 0x28 } + - { offsetInCU: 0x3A5, offset: 0x8D1A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1108, symBinAddr: 0x54208, symSize: 0x68 } + - { offsetInCU: 0x3DA, offset: 0x8D1DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1170, symBinAddr: 0x54270, symSize: 0x24 } + - { offsetInCU: 0x40B, offset: 0x8D20B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1194, symBinAddr: 0x54294, symSize: 0xC } + - { offsetInCU: 0x427, offset: 0x8D227, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x11A0, symBinAddr: 0x542A0, symSize: 0xC } + - { offsetInCU: 0x443, offset: 0x8D243, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7E7C, symBinAddr: 0x5A4D4, symSize: 0x1FC } + - { offsetInCU: 0x535, offset: 0x8D335, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11FC, symBinAddr: 0x542FC, symSize: 0x50 } + - { offsetInCU: 0x56C, offset: 0x8D36C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x124C, symBinAddr: 0x5434C, symSize: 0x50 } + - { offsetInCU: 0x58F, offset: 0x8D38F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8078, symBinAddr: 0x5A6D0, symSize: 0xF38 } + - { offsetInCU: 0x611, offset: 0x8D411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x146C, symBinAddr: 0x5456C, symSize: 0x2C } + - { offsetInCU: 0x642, offset: 0x8D442, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1498, symBinAddr: 0x54598, symSize: 0x70 } + - { offsetInCU: 0x65E, offset: 0x8D45E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1508, symBinAddr: 0x54608, symSize: 0x60 } + - { offsetInCU: 0x693, offset: 0x8D493, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1568, symBinAddr: 0x54668, symSize: 0x24 } + - { offsetInCU: 0x6E3, offset: 0x8D4E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x158C, symBinAddr: 0x5468C, symSize: 0xC } + - { offsetInCU: 0x6FF, offset: 0x8D4FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1598, symBinAddr: 0x54698, symSize: 0xC } + - { offsetInCU: 0x71B, offset: 0x8D51B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x918C, symBinAddr: 0x5B7E4, symSize: 0x5C } + - { offsetInCU: 0x77A, offset: 0x8D57A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x15F4, symBinAddr: 0x546F4, symSize: 0x48 } + - { offsetInCU: 0x7B1, offset: 0x8D5B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x163C, symBinAddr: 0x5473C, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x8D5D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x91E8, symBinAddr: 0x5B840, symSize: 0x220 } + - { offsetInCU: 0x838, offset: 0x8D638, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1684, symBinAddr: 0x54784, symSize: 0x8 } + - { offsetInCU: 0x86D, offset: 0x8D66D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x168C, symBinAddr: 0x5478C, symSize: 0x24 } + - { offsetInCU: 0x89E, offset: 0x8D69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16B0, symBinAddr: 0x547B0, symSize: 0xC } + - { offsetInCU: 0x8BA, offset: 0x8D6BA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16BC, symBinAddr: 0x547BC, symSize: 0xC } + - { offsetInCU: 0x8D6, offset: 0x8D6D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9408, symBinAddr: 0x5BA60, symSize: 0x2EC } + - { offsetInCU: 0xA32, offset: 0x8D832, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1718, symBinAddr: 0x54818, symSize: 0x60 } + - { offsetInCU: 0xA69, offset: 0x8D869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1778, symBinAddr: 0x54878, symSize: 0x58 } + - { offsetInCU: 0xA8C, offset: 0x8D88C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x96F4, symBinAddr: 0x5BD4C, symSize: 0x538 } + - { offsetInCU: 0xB19, offset: 0x8D919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x17D0, symBinAddr: 0x548D0, symSize: 0x18 } + - { offsetInCU: 0xB99, offset: 0x8D999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x17E8, symBinAddr: 0x548E8, symSize: 0x44 } + - { offsetInCU: 0xC7C, offset: 0x8DA7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x182C, symBinAddr: 0x5492C, symSize: 0x28 } + - { offsetInCU: 0xD02, offset: 0x8DB02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1894, symBinAddr: 0x54994, symSize: 0x24 } + - { offsetInCU: 0xD57, offset: 0x8DB57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18B8, symBinAddr: 0x549B8, symSize: 0x24 } + - { offsetInCU: 0xD88, offset: 0x8DB88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18DC, symBinAddr: 0x549DC, symSize: 0xC } + - { offsetInCU: 0xDA4, offset: 0x8DBA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18E8, symBinAddr: 0x549E8, symSize: 0xC } + - { offsetInCU: 0xDC0, offset: 0x8DBC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9C2C, symBinAddr: 0x5C284, symSize: 0xBC } + - { offsetInCU: 0xE4E, offset: 0x8DC4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1944, symBinAddr: 0x54A44, symSize: 0x2C } + - { offsetInCU: 0xE85, offset: 0x8DC85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1970, symBinAddr: 0x54A70, symSize: 0x1C } + - { offsetInCU: 0xEA8, offset: 0x8DCA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x9CE8, symBinAddr: 0x5C340, symSize: 0x1A0 } + - { offsetInCU: 0xF18, offset: 0x8DD18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A18, symBinAddr: 0x54B18, symSize: 0x78 } + - { offsetInCU: 0xF4D, offset: 0x8DD4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A90, symBinAddr: 0x54B90, symSize: 0x24 } + - { offsetInCU: 0xF7E, offset: 0x8DD7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AB4, symBinAddr: 0x54BB4, symSize: 0xC } + - { offsetInCU: 0xF9A, offset: 0x8DD9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x54BC0, symSize: 0xC } + - { offsetInCU: 0xFB6, offset: 0x8DDB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x9E88, symBinAddr: 0x5C4E0, symSize: 0x24C } + - { offsetInCU: 0x10B1, offset: 0x8DEB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B1C, symBinAddr: 0x54C1C, symSize: 0x70 } + - { offsetInCU: 0x10E8, offset: 0x8DEE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B8C, symBinAddr: 0x54C8C, symSize: 0x68 } + - { offsetInCU: 0x110B, offset: 0x8DF0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA0D4, symBinAddr: 0x5C72C, symSize: 0x8C8 } + - { offsetInCU: 0x11A5, offset: 0x8DFA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1D78, symBinAddr: 0x54E78, symSize: 0x2C } + - { offsetInCU: 0x11D6, offset: 0x8DFD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1DA4, symBinAddr: 0x54EA4, symSize: 0x28 } + - { offsetInCU: 0x11EA, offset: 0x8DFEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1DCC, symBinAddr: 0x54ECC, symSize: 0x8 } + - { offsetInCU: 0x121F, offset: 0x8E01F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1DD4, symBinAddr: 0x54ED4, symSize: 0x24 } + - { offsetInCU: 0x126F, offset: 0x8E06F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1DF8, symBinAddr: 0x54EF8, symSize: 0xC } + - { offsetInCU: 0x128B, offset: 0x8E08B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E04, symBinAddr: 0x54F04, symSize: 0xC } + - { offsetInCU: 0x12A7, offset: 0x8E0A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xAA68, symBinAddr: 0x5D0C0, symSize: 0x5C } + - { offsetInCU: 0x1325, offset: 0x8E125, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1E60, symBinAddr: 0x54F60, symSize: 0x58 } + - { offsetInCU: 0x135C, offset: 0x8E15C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1EB8, symBinAddr: 0x54FB8, symSize: 0x50 } + - { offsetInCU: 0x137F, offset: 0x8E17F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAAC4, symBinAddr: 0x5D11C, symSize: 0x760 } + - { offsetInCU: 0x1457, offset: 0x8E257, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x5D00, symBinAddr: 0x58DF4, symSize: 0x54 } + - { offsetInCU: 0x14B0, offset: 0x8E2B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x5D54, symBinAddr: 0x58E48, symSize: 0x80 } + - { offsetInCU: 0x1503, offset: 0x8E303, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x5DD4, symBinAddr: 0x58EC8, symSize: 0x8 } + - { offsetInCU: 0x1538, offset: 0x8E338, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5DDC, symBinAddr: 0x58ED0, symSize: 0x24 } + - { offsetInCU: 0x15B8, offset: 0x8E3B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x5E3C, symBinAddr: 0x58F30, symSize: 0x8 } + - { offsetInCU: 0x15D5, offset: 0x8E3D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x20D0, symBinAddr: 0x551D0, symSize: 0x20 } + - { offsetInCU: 0x15E9, offset: 0x8E3E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x20F0, symBinAddr: 0x551F0, symSize: 0xF4 } + - { offsetInCU: 0x15FD, offset: 0x8E3FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x21E4, symBinAddr: 0x552E4, symSize: 0x380 } + - { offsetInCU: 0x1611, offset: 0x8E411, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x2564, symBinAddr: 0x55664, symSize: 0xC58 } + - { offsetInCU: 0x162C, offset: 0x8E42C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x31BC, symBinAddr: 0x562BC, symSize: 0x30 } + - { offsetInCU: 0x1655, offset: 0x8E455, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x31EC, symBinAddr: 0x562EC, symSize: 0x2C } + - { offsetInCU: 0x1669, offset: 0x8E469, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x3218, symBinAddr: 0x56318, symSize: 0x2C } + - { offsetInCU: 0x167D, offset: 0x8E47D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x3244, symBinAddr: 0x56344, symSize: 0x2C } + - { offsetInCU: 0x1691, offset: 0x8E491, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x3270, symBinAddr: 0x56370, symSize: 0x2C } + - { offsetInCU: 0x16A5, offset: 0x8E4A5, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x329C, symBinAddr: 0x5639C, symSize: 0x8 } + - { offsetInCU: 0x16B9, offset: 0x8E4B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x32A4, symBinAddr: 0x563A4, symSize: 0x3C0 } + - { offsetInCU: 0x16CD, offset: 0x8E4CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x3664, symBinAddr: 0x56764, symSize: 0x5C } + - { offsetInCU: 0x16E1, offset: 0x8E4E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x36C0, symBinAddr: 0x567C0, symSize: 0xEC } + - { offsetInCU: 0x16F5, offset: 0x8E4F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x37AC, symBinAddr: 0x568AC, symSize: 0x10 } + - { offsetInCU: 0x1709, offset: 0x8E509, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x37BC, symBinAddr: 0x568BC, symSize: 0x30 } + - { offsetInCU: 0x171D, offset: 0x8E51D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x37EC, symBinAddr: 0x568EC, symSize: 0xE0 } + - { offsetInCU: 0x1731, offset: 0x8E531, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x38CC, symBinAddr: 0x569CC, symSize: 0x338 } + - { offsetInCU: 0x1745, offset: 0x8E545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x3C04, symBinAddr: 0x56D04, symSize: 0x864 } + - { offsetInCU: 0x1759, offset: 0x8E559, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4468, symBinAddr: 0x57568, symSize: 0x8 } + - { offsetInCU: 0x176D, offset: 0x8E56D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4470, symBinAddr: 0x57570, symSize: 0x364 } + - { offsetInCU: 0x1781, offset: 0x8E581, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x47D4, symBinAddr: 0x578D4, symSize: 0x5C } + - { offsetInCU: 0x1795, offset: 0x8E595, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x4830, symBinAddr: 0x57930, symSize: 0xE4 } + - { offsetInCU: 0x17A9, offset: 0x8E5A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x4914, symBinAddr: 0x57A14, symSize: 0x10 } + - { offsetInCU: 0x17BD, offset: 0x8E5BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x4924, symBinAddr: 0x57A24, symSize: 0xA4 } + - { offsetInCU: 0x17D1, offset: 0x8E5D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x49C8, symBinAddr: 0x57AC8, symSize: 0x18C } + - { offsetInCU: 0x17E5, offset: 0x8E5E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x4B54, symBinAddr: 0x57C54, symSize: 0x3A8 } + - { offsetInCU: 0x17F9, offset: 0x8E5F9, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x4EFC, symBinAddr: 0x57FFC, symSize: 0x44 } + - { offsetInCU: 0x180D, offset: 0x8E60D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x4F40, symBinAddr: 0x58040, symSize: 0x17C } + - { offsetInCU: 0x1821, offset: 0x8E621, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x50BC, symBinAddr: 0x581BC, symSize: 0x5C } + - { offsetInCU: 0x1835, offset: 0x8E635, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x5118, symBinAddr: 0x58218, symSize: 0x94 } + - { offsetInCU: 0x1849, offset: 0x8E649, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x51AC, symBinAddr: 0x582AC, symSize: 0x10 } + - { offsetInCU: 0x185D, offset: 0x8E65D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x51BC, symBinAddr: 0x582BC, symSize: 0x68 } + - { offsetInCU: 0x1871, offset: 0x8E671, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x5224, symBinAddr: 0x58324, symSize: 0xDC } + - { offsetInCU: 0x1885, offset: 0x8E685, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x5300, symBinAddr: 0x58400, symSize: 0x16C } + - { offsetInCU: 0x1899, offset: 0x8E699, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x546C, symBinAddr: 0x5856C, symSize: 0x2C } + - { offsetInCU: 0x18AD, offset: 0x8E6AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x5498, symBinAddr: 0x58598, symSize: 0xC4 } + - { offsetInCU: 0x18C1, offset: 0x8E6C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x555C, symBinAddr: 0x5865C, symSize: 0x5C } + - { offsetInCU: 0x18D5, offset: 0x8E6D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x55B8, symBinAddr: 0x586B8, symSize: 0x7C } + - { offsetInCU: 0x18E9, offset: 0x8E6E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x5634, symBinAddr: 0x58734, symSize: 0x10 } + - { offsetInCU: 0x18FD, offset: 0x8E6FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x5644, symBinAddr: 0x58744, symSize: 0x48 } + - { offsetInCU: 0x1911, offset: 0x8E711, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x568C, symBinAddr: 0x5878C, symSize: 0xE4 } + - { offsetInCU: 0x1925, offset: 0x8E725, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x5770, symBinAddr: 0x58870, symSize: 0x198 } + - { offsetInCU: 0x1939, offset: 0x8E739, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x5908, symBinAddr: 0x58A08, symSize: 0x34 } + - { offsetInCU: 0x194D, offset: 0x8E74D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x593C, symBinAddr: 0x58A3C, symSize: 0xFC } + - { offsetInCU: 0x1961, offset: 0x8E761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x5A38, symBinAddr: 0x58B38, symSize: 0x5C } + - { offsetInCU: 0x1975, offset: 0x8E775, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x5A94, symBinAddr: 0x58B94, symSize: 0x7C } + - { offsetInCU: 0x1989, offset: 0x8E789, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x5B10, symBinAddr: 0x58C10, symSize: 0x10 } + - { offsetInCU: 0x199D, offset: 0x8E79D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x5B20, symBinAddr: 0x58C20, symSize: 0x28 } + - { offsetInCU: 0x19B1, offset: 0x8E7B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x5B48, symBinAddr: 0x58C48, symSize: 0x3C } + - { offsetInCU: 0x19C5, offset: 0x8E7C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x5B84, symBinAddr: 0x58C84, symSize: 0x6C } + - { offsetInCU: 0x19D9, offset: 0x8E7D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x5BFC, symBinAddr: 0x58CF0, symSize: 0x44 } + - { offsetInCU: 0x19ED, offset: 0x8E7ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x5C40, symBinAddr: 0x58D34, symSize: 0x5C } + - { offsetInCU: 0x1A01, offset: 0x8E801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x5C9C, symBinAddr: 0x58D90, symSize: 0x54 } + - { offsetInCU: 0x1A15, offset: 0x8E815, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x5CF0, symBinAddr: 0x58DE4, symSize: 0x10 } + - { offsetInCU: 0x1A29, offset: 0x8E829, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x5E44, symBinAddr: 0x58F38, symSize: 0x4 } + - { offsetInCU: 0x1A3D, offset: 0x8E83D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x5E48, symBinAddr: 0x58F3C, symSize: 0x44 } + - { offsetInCU: 0x1A51, offset: 0x8E851, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x5F10, symBinAddr: 0x58F80, symSize: 0x28 } + - { offsetInCU: 0x1A65, offset: 0x8E865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x7398, symBinAddr: 0x5A408, symSize: 0x44 } + - { offsetInCU: 0x1A79, offset: 0x8E879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x73DC, symBinAddr: 0x5A44C, symSize: 0x44 } + - { offsetInCU: 0x1A8D, offset: 0x8E88D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x7E38, symBinAddr: 0x5A490, symSize: 0x44 } + - { offsetInCU: 0x1AA1, offset: 0x8E8A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0x8FB0, symBinAddr: 0x5B608, symSize: 0x44 } + - { offsetInCU: 0x1AB5, offset: 0x8E8B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0x8FF4, symBinAddr: 0x5B64C, symSize: 0x44 } + - { offsetInCU: 0x1AC9, offset: 0x8E8C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0x9038, symBinAddr: 0x5B690, symSize: 0x44 } + - { offsetInCU: 0x1ADD, offset: 0x8E8DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0x907C, symBinAddr: 0x5B6D4, symSize: 0x44 } + - { offsetInCU: 0x1AF1, offset: 0x8E8F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0x90C0, symBinAddr: 0x5B718, symSize: 0x44 } + - { offsetInCU: 0x1B05, offset: 0x8E905, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0x9104, symBinAddr: 0x5B75C, symSize: 0x44 } + - { offsetInCU: 0x1B19, offset: 0x8E919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0x9148, symBinAddr: 0x5B7A0, symSize: 0x44 } + - { offsetInCU: 0x1B2D, offset: 0x8E92D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA99C, symBinAddr: 0x5CFF4, symSize: 0x44 } + - { offsetInCU: 0x1B41, offset: 0x8E941, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xA9E0, symBinAddr: 0x5D038, symSize: 0x44 } + - { offsetInCU: 0x1B55, offset: 0x8E955, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xAA24, symBinAddr: 0x5D07C, symSize: 0x44 } + - { offsetInCU: 0x1B69, offset: 0x8E969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xB224, symBinAddr: 0x5D87C, symSize: 0x44 } + - { offsetInCU: 0x1B7D, offset: 0x8E97D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB268, symBinAddr: 0x5D8C0, symSize: 0x44 } + - { offsetInCU: 0x1B91, offset: 0x8E991, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xB2AC, symBinAddr: 0x5D904, symSize: 0x44 } + - { offsetInCU: 0x1BA5, offset: 0x8E9A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xB334, symBinAddr: 0x5D98C, symSize: 0x44 } + - { offsetInCU: 0x1BB9, offset: 0x8E9B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xB378, symBinAddr: 0x5D9D0, symSize: 0x44 } + - { offsetInCU: 0x1BCD, offset: 0x8E9CD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB3CC, symBinAddr: 0x5DA14, symSize: 0x90 } + - { offsetInCU: 0x1BE1, offset: 0x8E9E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB45C, symBinAddr: 0x5DAA4, symSize: 0xBC } + - { offsetInCU: 0x1BF5, offset: 0x8E9F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xB518, symBinAddr: 0x5DB60, symSize: 0x8 } + - { offsetInCU: 0x1C09, offset: 0x8EA09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB520, symBinAddr: 0x5DB68, symSize: 0x4 } + - { offsetInCU: 0x1C1D, offset: 0x8EA1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xB524, symBinAddr: 0x5DB6C, symSize: 0xC } + - { offsetInCU: 0x1C31, offset: 0x8EA31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB530, symBinAddr: 0x5DB78, symSize: 0x10 } + - { offsetInCU: 0x1C45, offset: 0x8EA45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB540, symBinAddr: 0x5DB88, symSize: 0x90 } + - { offsetInCU: 0x1C59, offset: 0x8EA59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB5D0, symBinAddr: 0x5DC18, symSize: 0xBC } + - { offsetInCU: 0x1C6D, offset: 0x8EA6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB68C, symBinAddr: 0x5DCD4, symSize: 0x4 } + - { offsetInCU: 0x1C81, offset: 0x8EA81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB690, symBinAddr: 0x5DCD8, symSize: 0x10 } + - { offsetInCU: 0x1C95, offset: 0x8EA95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xB6A0, symBinAddr: 0x5DCE8, symSize: 0x90 } + - { offsetInCU: 0x1CA9, offset: 0x8EAA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xB730, symBinAddr: 0x5DD78, symSize: 0xBC } + - { offsetInCU: 0x1CBD, offset: 0x8EABD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xB7EC, symBinAddr: 0x5DE34, symSize: 0x4 } + - { offsetInCU: 0x1CD1, offset: 0x8EAD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xB7F0, symBinAddr: 0x5DE38, symSize: 0x10 } + - { offsetInCU: 0x1CE5, offset: 0x8EAE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB800, symBinAddr: 0x5DE48, symSize: 0x90 } + - { offsetInCU: 0x1CF9, offset: 0x8EAF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB890, symBinAddr: 0x5DED8, symSize: 0xBC } + - { offsetInCU: 0x1D0D, offset: 0x8EB0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xB94C, symBinAddr: 0x5DF94, symSize: 0x4 } + - { offsetInCU: 0x1D21, offset: 0x8EB21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xB950, symBinAddr: 0x5DF98, symSize: 0x10 } + - { offsetInCU: 0x1D35, offset: 0x8EB35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xB960, symBinAddr: 0x5DFA8, symSize: 0x90 } + - { offsetInCU: 0x1D49, offset: 0x8EB49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xB9F0, symBinAddr: 0x5E038, symSize: 0xBC } + - { offsetInCU: 0x1D5D, offset: 0x8EB5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xBAAC, symBinAddr: 0x5E0F4, symSize: 0x8 } + - { offsetInCU: 0x1D71, offset: 0x8EB71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBAB4, symBinAddr: 0x5E0FC, symSize: 0x4 } + - { offsetInCU: 0x1D85, offset: 0x8EB85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xBAB8, symBinAddr: 0x5E100, symSize: 0x8 } + - { offsetInCU: 0x1D99, offset: 0x8EB99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBAC0, symBinAddr: 0x5E108, symSize: 0x10 } + - { offsetInCU: 0x1DAD, offset: 0x8EBAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xBAD0, symBinAddr: 0x5E118, symSize: 0x90 } + - { offsetInCU: 0x1DC1, offset: 0x8EBC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xBB60, symBinAddr: 0x5E1A8, symSize: 0xBC } + - { offsetInCU: 0x1DD5, offset: 0x8EBD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xBC1C, symBinAddr: 0x5E264, symSize: 0x4 } + - { offsetInCU: 0x1DE9, offset: 0x8EBE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xBC20, symBinAddr: 0x5E268, symSize: 0x10 } + - { offsetInCU: 0x1DFD, offset: 0x8EBFD, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xBC30, symBinAddr: 0x5E278, symSize: 0x24 } + - { offsetInCU: 0x1E11, offset: 0x8EC11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xBC54, symBinAddr: 0x5E29C, symSize: 0x20 } + - { offsetInCU: 0x1E25, offset: 0x8EC25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xBC74, symBinAddr: 0x5E2BC, symSize: 0x40 } + - { offsetInCU: 0x1E39, offset: 0x8EC39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xBCB4, symBinAddr: 0x5E2FC, symSize: 0x10 } + - { offsetInCU: 0x1E4D, offset: 0x8EC4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBCC4, symBinAddr: 0x5E30C, symSize: 0x4 } + - { offsetInCU: 0x1E61, offset: 0x8EC61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBCC8, symBinAddr: 0x5E310, symSize: 0x44 } + - { offsetInCU: 0x1E75, offset: 0x8EC75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBD0C, symBinAddr: 0x5E354, symSize: 0x4 } + - { offsetInCU: 0x1E89, offset: 0x8EC89, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBD10, symBinAddr: 0x5E358, symSize: 0x44 } + - { offsetInCU: 0x1E9D, offset: 0x8EC9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBD54, symBinAddr: 0x5E39C, symSize: 0x4 } + - { offsetInCU: 0x1EB1, offset: 0x8ECB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBD58, symBinAddr: 0x5E3A0, symSize: 0x44 } + - { offsetInCU: 0x1EC5, offset: 0x8ECC5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xBD9C, symBinAddr: 0x5E3E4, symSize: 0x4 } + - { offsetInCU: 0x1ED9, offset: 0x8ECD9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xBDA0, symBinAddr: 0x5E3E8, symSize: 0x44 } + - { offsetInCU: 0x1EED, offset: 0x8ECED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBDE4, symBinAddr: 0x5E42C, symSize: 0x4 } + - { offsetInCU: 0x1F01, offset: 0x8ED01, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBDE8, symBinAddr: 0x5E430, symSize: 0x44 } + - { offsetInCU: 0x1F15, offset: 0x8ED15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xBE2C, symBinAddr: 0x5E474, symSize: 0x4 } + - { offsetInCU: 0x1F29, offset: 0x8ED29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xBE30, symBinAddr: 0x5E478, symSize: 0x44 } + - { offsetInCU: 0x1F3D, offset: 0x8ED3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBE74, symBinAddr: 0x5E4BC, symSize: 0x4 } + - { offsetInCU: 0x1F51, offset: 0x8ED51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBE78, symBinAddr: 0x5E4C0, symSize: 0x44 } + - { offsetInCU: 0x1F65, offset: 0x8ED65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBEBC, symBinAddr: 0x5E504, symSize: 0x4 } + - { offsetInCU: 0x1F79, offset: 0x8ED79, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBEC0, symBinAddr: 0x5E508, symSize: 0x44 } + - { offsetInCU: 0x1F8D, offset: 0x8ED8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF04, symBinAddr: 0x5E54C, symSize: 0x4 } + - { offsetInCU: 0x1FA1, offset: 0x8EDA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF08, symBinAddr: 0x5E550, symSize: 0x44 } + - { offsetInCU: 0x1FB5, offset: 0x8EDB5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBF4C, symBinAddr: 0x5E594, symSize: 0x4 } + - { offsetInCU: 0x1FC9, offset: 0x8EDC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xBF50, symBinAddr: 0x5E598, symSize: 0x44 } + - { offsetInCU: 0x1FDD, offset: 0x8EDDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xBF94, symBinAddr: 0x5E5DC, symSize: 0x4 } + - { offsetInCU: 0x1FF1, offset: 0x8EDF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xBF98, symBinAddr: 0x5E5E0, symSize: 0x44 } + - { offsetInCU: 0x2005, offset: 0x8EE05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xBFDC, symBinAddr: 0x5E624, symSize: 0x4 } + - { offsetInCU: 0x2019, offset: 0x8EE19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xBFE0, symBinAddr: 0x5E628, symSize: 0x44 } + - { offsetInCU: 0x202D, offset: 0x8EE2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC024, symBinAddr: 0x5E66C, symSize: 0x4 } + - { offsetInCU: 0x2041, offset: 0x8EE41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC028, symBinAddr: 0x5E670, symSize: 0x44 } + - { offsetInCU: 0x2055, offset: 0x8EE55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC06C, symBinAddr: 0x5E6B4, symSize: 0x4 } + - { offsetInCU: 0x2069, offset: 0x8EE69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC070, symBinAddr: 0x5E6B8, symSize: 0x44 } + - { offsetInCU: 0x207D, offset: 0x8EE7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC0B4, symBinAddr: 0x5E6FC, symSize: 0x4 } + - { offsetInCU: 0x2091, offset: 0x8EE91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC0B8, symBinAddr: 0x5E700, symSize: 0x44 } + - { offsetInCU: 0x20A5, offset: 0x8EEA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC0FC, symBinAddr: 0x5E744, symSize: 0x4 } + - { offsetInCU: 0x20B9, offset: 0x8EEB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC100, symBinAddr: 0x5E748, symSize: 0x44 } + - { offsetInCU: 0x20CD, offset: 0x8EECD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC144, symBinAddr: 0x5E78C, symSize: 0x4 } + - { offsetInCU: 0x20E1, offset: 0x8EEE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC148, symBinAddr: 0x5E790, symSize: 0x44 } + - { offsetInCU: 0x20F5, offset: 0x8EEF5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC18C, symBinAddr: 0x5E7D4, symSize: 0x4 } + - { offsetInCU: 0x2109, offset: 0x8EF09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xC190, symBinAddr: 0x5E7D8, symSize: 0x44 } + - { offsetInCU: 0x211D, offset: 0x8EF1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xC1D4, symBinAddr: 0x5E81C, symSize: 0x44 } + - { offsetInCU: 0x2131, offset: 0x8EF31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xC218, symBinAddr: 0x5E860, symSize: 0x90 } + - { offsetInCU: 0x2145, offset: 0x8EF45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xC2A8, symBinAddr: 0x5E8F0, symSize: 0xBC } + - { offsetInCU: 0x2159, offset: 0x8EF59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xC364, symBinAddr: 0x5E9AC, symSize: 0x4 } + - { offsetInCU: 0x216D, offset: 0x8EF6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xC368, symBinAddr: 0x5E9B0, symSize: 0x10 } + - { offsetInCU: 0x2181, offset: 0x8EF81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xC378, symBinAddr: 0x5E9C0, symSize: 0x4 } + - { offsetInCU: 0x2195, offset: 0x8EF95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xC37C, symBinAddr: 0x5E9C4, symSize: 0x44 } + - { offsetInCU: 0x21A9, offset: 0x8EFA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xC3C0, symBinAddr: 0x5EA08, symSize: 0x4 } + - { offsetInCU: 0x21BD, offset: 0x8EFBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xC3C4, symBinAddr: 0x5EA0C, symSize: 0x44 } + - { offsetInCU: 0x21D1, offset: 0x8EFD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xC408, symBinAddr: 0x5EA50, symSize: 0x4 } + - { offsetInCU: 0x21E5, offset: 0x8EFE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xC40C, symBinAddr: 0x5EA54, symSize: 0x44 } + - { offsetInCU: 0x2213, offset: 0x8F013, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xFD4, symBinAddr: 0x540D4, symSize: 0x28 } + - { offsetInCU: 0x222F, offset: 0x8F02F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xFFC, symBinAddr: 0x540FC, symSize: 0x28 } + - { offsetInCU: 0x2251, offset: 0x8F051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x11AC, symBinAddr: 0x542AC, symSize: 0x28 } + - { offsetInCU: 0x226D, offset: 0x8F06D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x11D4, symBinAddr: 0x542D4, symSize: 0x28 } + - { offsetInCU: 0x2289, offset: 0x8F089, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x129C, symBinAddr: 0x5439C, symSize: 0xC } + - { offsetInCU: 0x2309, offset: 0x8F109, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x12A8, symBinAddr: 0x543A8, symSize: 0xA4 } + - { offsetInCU: 0x238B, offset: 0x8F18B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x134C, symBinAddr: 0x5444C, symSize: 0x80 } + - { offsetInCU: 0x23C9, offset: 0x8F1C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x13CC, symBinAddr: 0x544CC, symSize: 0xA0 } + - { offsetInCU: 0x242F, offset: 0x8F22F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x15A4, symBinAddr: 0x546A4, symSize: 0x28 } + - { offsetInCU: 0x244B, offset: 0x8F24B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x15CC, symBinAddr: 0x546CC, symSize: 0x28 } + - { offsetInCU: 0x246D, offset: 0x8F26D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x16C8, symBinAddr: 0x547C8, symSize: 0x28 } + - { offsetInCU: 0x2489, offset: 0x8F289, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x16F0, symBinAddr: 0x547F0, symSize: 0x28 } + - { offsetInCU: 0x24DC, offset: 0x8F2DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1854, symBinAddr: 0x54954, symSize: 0x40 } + - { offsetInCU: 0x257E, offset: 0x8F37E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x18F4, symBinAddr: 0x549F4, symSize: 0x28 } + - { offsetInCU: 0x259A, offset: 0x8F39A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x191C, symBinAddr: 0x54A1C, symSize: 0x28 } + - { offsetInCU: 0x25BC, offset: 0x8F3BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1ACC, symBinAddr: 0x54BCC, symSize: 0x28 } + - { offsetInCU: 0x25D8, offset: 0x8F3D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x54BF4, symSize: 0x28 } + - { offsetInCU: 0x2621, offset: 0x8F421, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1BF4, symBinAddr: 0x54CF4, symSize: 0x88 } + - { offsetInCU: 0x26F5, offset: 0x8F4F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1C7C, symBinAddr: 0x54D7C, symSize: 0x60 } + - { offsetInCU: 0x2773, offset: 0x8F573, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1CDC, symBinAddr: 0x54DDC, symSize: 0x40 } + - { offsetInCU: 0x27C5, offset: 0x8F5C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1D1C, symBinAddr: 0x54E1C, symSize: 0x5C } + - { offsetInCU: 0x2827, offset: 0x8F627, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1E10, symBinAddr: 0x54F10, symSize: 0x28 } + - { offsetInCU: 0x2843, offset: 0x8F643, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1E38, symBinAddr: 0x54F38, symSize: 0x28 } + - { offsetInCU: 0x2884, offset: 0x8F684, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x5E00, symBinAddr: 0x58EF4, symSize: 0x3C } + - { offsetInCU: 0x2A16, offset: 0x8F816, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x53100, symSize: 0x17C } + - { offsetInCU: 0x2A47, offset: 0x8F847, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x17C, symBinAddr: 0x5327C, symSize: 0x264 } + - { offsetInCU: 0x2A78, offset: 0x8F878, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x3E0, symBinAddr: 0x534E0, symSize: 0x190 } + - { offsetInCU: 0x2AA9, offset: 0x8F8A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x570, symBinAddr: 0x53670, symSize: 0x9C } + - { offsetInCU: 0x2ACC, offset: 0x8F8CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x60C, symBinAddr: 0x5370C, symSize: 0x268 } + - { offsetInCU: 0x2AFD, offset: 0x8F8FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x874, symBinAddr: 0x53974, symSize: 0x118 } + - { offsetInCU: 0x2B2E, offset: 0x8F92E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0x98C, symBinAddr: 0x53A8C, symSize: 0x214 } + - { offsetInCU: 0x2B5F, offset: 0x8F95F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xBA0, symBinAddr: 0x53CA0, symSize: 0xB0 } + - { offsetInCU: 0x2B95, offset: 0x8F995, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xC50, symBinAddr: 0x53D50, symSize: 0xB0 } + - { offsetInCU: 0x2BD7, offset: 0x8F9D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xD00, symBinAddr: 0x53E00, symSize: 0x244 } + - { offsetInCU: 0x2DE8, offset: 0x8FBE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x1F08, symBinAddr: 0x55008, symSize: 0x1B8 } + - { offsetInCU: 0x2E34, offset: 0x8FC34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x20C0, symBinAddr: 0x551C0, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x8FD17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5EAF0, symSize: 0x8 } + - { offsetInCU: 0x163, offset: 0x8FE53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x84, symBinAddr: 0x5EB5C, symSize: 0x54 } + - { offsetInCU: 0x177, offset: 0x8FE67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0xD8, symBinAddr: 0x5EBB0, symSize: 0x44 } + - { offsetInCU: 0x18B, offset: 0x8FE7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x11C, symBinAddr: 0x5EBF4, symSize: 0x10 } + - { offsetInCU: 0x26C, offset: 0x8FF5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x5EAF0, symSize: 0x8 } + - { offsetInCU: 0x286, offset: 0x8FF76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x8, symBinAddr: 0x5EAF8, symSize: 0x8 } + - { offsetInCU: 0x2B8, offset: 0x8FFA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x10, symBinAddr: 0x5EB00, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x8FFBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x20, symBinAddr: 0x5EB10, symSize: 0x4 } + - { offsetInCU: 0x2ED, offset: 0x8FFDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x24, symBinAddr: 0x5EB14, symSize: 0x8 } + - { offsetInCU: 0x301, offset: 0x8FFF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x2C, symBinAddr: 0x5EB1C, symSize: 0x8 } + - { offsetInCU: 0x333, offset: 0x90023, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x34, symBinAddr: 0x5EB24, symSize: 0x10 } + - { offsetInCU: 0x357, offset: 0x90047, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x44, symBinAddr: 0x5EB34, symSize: 0x4 } + - { offsetInCU: 0x378, offset: 0x90068, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x48, symBinAddr: 0x5EB38, symSize: 0x8 } + - { offsetInCU: 0x38C, offset: 0x9007C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0x50, symBinAddr: 0x5EB40, symSize: 0x8 } + - { offsetInCU: 0x3BC, offset: 0x900AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0x58, symBinAddr: 0x5EB48, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x900D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0x68, symBinAddr: 0x5EB58, symSize: 0x4 } + - { offsetInCU: 0x2B, offset: 0x90126, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EC04, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x90177, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x24, symBinAddr: 0x5EC28, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x9027D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EC04, symSize: 0x24 } + - { offsetInCU: 0x27, offset: 0x902E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5EC48, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x90336, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5EC6C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x9043C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5EC48, symSize: 0x24 } + - { offsetInCU: 0x2B, offset: 0x904A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EC8C, symSize: 0x60 } + - { offsetInCU: 0x7C, offset: 0x904F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x60, symBinAddr: 0x5ECEC, symSize: 0x8 } + - { offsetInCU: 0x90, offset: 0x9050D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x68, symBinAddr: 0x5ECF4, symSize: 0x3C } + - { offsetInCU: 0xA4, offset: 0x90521, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0xA4, symBinAddr: 0x5ED30, symSize: 0x78 } + - { offsetInCU: 0x1AA, offset: 0x90627, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x5EC8C, symSize: 0x60 } + - { offsetInCU: 0x27, offset: 0x90691, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5EDA8, symSize: 0x368 } + - { offsetInCU: 0x17B, offset: 0x907E5, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x3A4, symBinAddr: 0x5F110, symSize: 0x48 } + - { offsetInCU: 0x3A1, offset: 0x90A0B, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x5EDA8, symSize: 0x368 } + - { offsetInCU: 0x27, offset: 0x90C46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5F158, symSize: 0x24 } + - { offsetInCU: 0x78, offset: 0x90C97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x24, symBinAddr: 0x5F17C, symSize: 0x20 } + - { offsetInCU: 0x17E, offset: 0x90D9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x5F158, symSize: 0x24 } + - { offsetInCU: 0xA1, offset: 0x90E7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x9C8, symBinAddr: 0x5FB24, symSize: 0xC } + - { offsetInCU: 0xBD, offset: 0x90E9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x5FB30, symSize: 0x4C } + - { offsetInCU: 0xD5, offset: 0x90EB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0x9D4, symBinAddr: 0x5FB30, symSize: 0x4C } + - { offsetInCU: 0xF1, offset: 0x90ECF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA20, symBinAddr: 0x5FB7C, symSize: 0x38 } + - { offsetInCU: 0x180, offset: 0x90F5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xBF4, symBinAddr: 0x5FD50, symSize: 0xC } + - { offsetInCU: 0x19C, offset: 0x90F7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x5FD5C, symSize: 0x2C } + - { offsetInCU: 0x1B4, offset: 0x90F92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC00, symBinAddr: 0x5FD5C, symSize: 0x2C } + - { offsetInCU: 0x56B, offset: 0x91349, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x754, symBinAddr: 0x5F8B0, symSize: 0xC8 } + - { offsetInCU: 0x5DF, offset: 0x913BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xC2C, symBinAddr: 0x5FD88, symSize: 0x334 } + - { offsetInCU: 0x811, offset: 0x915EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0xF60, symBinAddr: 0x600BC, symSize: 0x13C } + - { offsetInCU: 0xA33, offset: 0x91811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x3208, symBinAddr: 0x622C4, symSize: 0x1FC } + - { offsetInCU: 0xAE4, offset: 0x918C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x352C, symBinAddr: 0x6258C, symSize: 0x23C } + - { offsetInCU: 0xB49, offset: 0x91927, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3768, symBinAddr: 0x627C8, symSize: 0x238 } + - { offsetInCU: 0xC71, offset: 0x91A4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x39A0, symBinAddr: 0x62A00, symSize: 0x29C } + - { offsetInCU: 0xDB0, offset: 0x91B8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3C3C, symBinAddr: 0x62C9C, symSize: 0x188 } + - { offsetInCU: 0xDF6, offset: 0x91BD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x3DC4, symBinAddr: 0x62E24, symSize: 0x43C } + - { offsetInCU: 0x112D, offset: 0x91F0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4200, symBinAddr: 0x63260, symSize: 0xC4 } + - { offsetInCU: 0x1272, offset: 0x92050, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x2C94, symBinAddr: 0x61DF0, symSize: 0x4 } + - { offsetInCU: 0x1286, offset: 0x92064, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x2C98, symBinAddr: 0x61DF4, symSize: 0x44 } + - { offsetInCU: 0x129A, offset: 0x92078, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x2CDC, symBinAddr: 0x61E38, symSize: 0x4 } + - { offsetInCU: 0x12AE, offset: 0x9208C, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x2CE0, symBinAddr: 0x61E3C, symSize: 0x4C } + - { offsetInCU: 0x12C2, offset: 0x920A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x2D70, symBinAddr: 0x61E88, symSize: 0x4 } + - { offsetInCU: 0x12D6, offset: 0x920B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x2D74, symBinAddr: 0x61E8C, symSize: 0x44 } + - { offsetInCU: 0x12EA, offset: 0x920C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x2DC8, symBinAddr: 0x61ED0, symSize: 0x90 } + - { offsetInCU: 0x12FE, offset: 0x920DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x2E58, symBinAddr: 0x61F60, symSize: 0xBC } + - { offsetInCU: 0x1312, offset: 0x920F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x2F14, symBinAddr: 0x6201C, symSize: 0x8 } + - { offsetInCU: 0x1326, offset: 0x92104, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x2F1C, symBinAddr: 0x62024, symSize: 0x4 } + - { offsetInCU: 0x133A, offset: 0x92118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x2F20, symBinAddr: 0x62028, symSize: 0x8 } + - { offsetInCU: 0x134E, offset: 0x9212C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x2F28, symBinAddr: 0x62030, symSize: 0x10 } + - { offsetInCU: 0x1362, offset: 0x92140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x2F38, symBinAddr: 0x62040, symSize: 0x90 } + - { offsetInCU: 0x1376, offset: 0x92154, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x2FC8, symBinAddr: 0x620D0, symSize: 0xBC } + - { offsetInCU: 0x138A, offset: 0x92168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x3084, symBinAddr: 0x6218C, symSize: 0x8 } + - { offsetInCU: 0x139E, offset: 0x9217C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x308C, symBinAddr: 0x62194, symSize: 0x4 } + - { offsetInCU: 0x13B2, offset: 0x92190, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x3090, symBinAddr: 0x62198, symSize: 0xC } + - { offsetInCU: 0x13C6, offset: 0x921A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x309C, symBinAddr: 0x621A4, symSize: 0x10 } + - { offsetInCU: 0x13DA, offset: 0x921B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x30AC, symBinAddr: 0x621B4, symSize: 0x20 } + - { offsetInCU: 0x13EE, offset: 0x921CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x30D4, symBinAddr: 0x621D4, symSize: 0xC } + - { offsetInCU: 0x1402, offset: 0x921E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x30E0, symBinAddr: 0x621E0, symSize: 0x4 } + - { offsetInCU: 0x1416, offset: 0x921F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x30E4, symBinAddr: 0x621E4, symSize: 0x44 } + - { offsetInCU: 0x142A, offset: 0x92208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x3128, symBinAddr: 0x62228, symSize: 0xC } + - { offsetInCU: 0x143E, offset: 0x9221C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x3134, symBinAddr: 0x62234, symSize: 0x4 } + - { offsetInCU: 0x1452, offset: 0x92230, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3138, symBinAddr: 0x62238, symSize: 0x44 } + - { offsetInCU: 0x1466, offset: 0x92244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x317C, symBinAddr: 0x6227C, symSize: 0xC } + - { offsetInCU: 0x14DA, offset: 0x922B8, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x3440, symBinAddr: 0x624FC, symSize: 0x48 } + - { offsetInCU: 0x14EE, offset: 0x922CC, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOc', symObjAddr: 0x3488, symBinAddr: 0x62544, symSize: 0x48 } + - { offsetInCU: 0x154D, offset: 0x9232B, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x42C4, symBinAddr: 0x63324, symSize: 0x3C } + - { offsetInCU: 0x1561, offset: 0x9233F, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4300, symBinAddr: 0x63360, symSize: 0x24 } + - { offsetInCU: 0x1575, offset: 0x92353, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x4358, symBinAddr: 0x633A8, symSize: 0x8 } + - { offsetInCU: 0x1589, offset: 0x92367, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4360, symBinAddr: 0x633B0, symSize: 0x10 } + - { offsetInCU: 0x159D, offset: 0x9237B, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4370, symBinAddr: 0x633C0, symSize: 0x8 } + - { offsetInCU: 0x15B1, offset: 0x9238F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x43D0, symBinAddr: 0x633C8, symSize: 0x8 } + - { offsetInCU: 0x15C5, offset: 0x923A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x4414, symBinAddr: 0x633D0, symSize: 0x10 } + - { offsetInCU: 0x16C3, offset: 0x924A1, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x144, symBinAddr: 0x5F2A0, symSize: 0x134 } + - { offsetInCU: 0x1784, offset: 0x92562, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x278, symBinAddr: 0x5F3D4, symSize: 0xF0 } + - { offsetInCU: 0x181F, offset: 0x925FD, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x368, symBinAddr: 0x5F4C4, symSize: 0x90 } + - { offsetInCU: 0x19FF, offset: 0x927DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x840, symBinAddr: 0x5F99C, symSize: 0xC } + - { offsetInCU: 0x1A7F, offset: 0x9285D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x84C, symBinAddr: 0x5F9A8, symSize: 0x8C } + - { offsetInCU: 0x1B33, offset: 0x92911, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x8D8, symBinAddr: 0x5FA34, symSize: 0x68 } + - { offsetInCU: 0x1BA3, offset: 0x92981, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x940, symBinAddr: 0x5FA9C, symSize: 0x88 } + - { offsetInCU: 0x1C3B, offset: 0x92A19, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xACC, symBinAddr: 0x5FC28, symSize: 0xC } + - { offsetInCU: 0x1CBB, offset: 0x92A99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xAD8, symBinAddr: 0x5FC34, symSize: 0x6C } + - { offsetInCU: 0x1D6F, offset: 0x92B4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB44, symBinAddr: 0x5FCA0, symSize: 0x48 } + - { offsetInCU: 0x1DE1, offset: 0x92BBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xB8C, symBinAddr: 0x5FCE8, symSize: 0x68 } + - { offsetInCU: 0x21B4, offset: 0x92F92, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x5F19C, symSize: 0x6C } + - { offsetInCU: 0x21EB, offset: 0x92FC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xAC, symBinAddr: 0x5F208, symSize: 0x28 } + - { offsetInCU: 0x220A, offset: 0x92FE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xD4, symBinAddr: 0x5F230, symSize: 0x48 } + - { offsetInCU: 0x223D, offset: 0x9301B, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F278, symSize: 0x4 } + - { offsetInCU: 0x2255, offset: 0x93033, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F278, symSize: 0x4 } + - { offsetInCU: 0x2269, offset: 0x93047, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F278, symSize: 0x4 } + - { offsetInCU: 0x227D, offset: 0x9305B, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F278, symSize: 0x4 } + - { offsetInCU: 0x2291, offset: 0x9306F, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x11C, symBinAddr: 0x5F278, symSize: 0x4 } + - { offsetInCU: 0x22B1, offset: 0x9308F, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x120, symBinAddr: 0x5F27C, symSize: 0x24 } + - { offsetInCU: 0x235C, offset: 0x9313A, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x3F8, symBinAddr: 0x5F554, symSize: 0xC4 } + - { offsetInCU: 0x250F, offset: 0x932ED, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F618, symSize: 0x48 } + - { offsetInCU: 0x2527, offset: 0x93305, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F618, symSize: 0x48 } + - { offsetInCU: 0x2547, offset: 0x93325, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F618, symSize: 0x48 } + - { offsetInCU: 0x255B, offset: 0x93339, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F618, symSize: 0x48 } + - { offsetInCU: 0x256F, offset: 0x9334D, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F618, symSize: 0x48 } + - { offsetInCU: 0x2583, offset: 0x93361, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4BC, symBinAddr: 0x5F618, symSize: 0x48 } + - { offsetInCU: 0x2657, offset: 0x93435, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x504, symBinAddr: 0x5F660, symSize: 0x88 } + - { offsetInCU: 0x2714, offset: 0x934F2, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x58C, symBinAddr: 0x5F6E8, symSize: 0x80 } + - { offsetInCU: 0x27AF, offset: 0x9358D, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x60C, symBinAddr: 0x5F768, symSize: 0xE4 } + - { offsetInCU: 0x2903, offset: 0x936E1, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5F84C, symSize: 0x64 } + - { offsetInCU: 0x291B, offset: 0x936F9, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5F84C, symSize: 0x64 } + - { offsetInCU: 0x292F, offset: 0x9370D, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5F84C, symSize: 0x64 } + - { offsetInCU: 0x2943, offset: 0x93721, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5F84C, symSize: 0x64 } + - { offsetInCU: 0x2957, offset: 0x93735, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x6F0, symBinAddr: 0x5F84C, symSize: 0x64 } + - { offsetInCU: 0x29D4, offset: 0x937B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x81C, symBinAddr: 0x5F978, symSize: 0x24 } + - { offsetInCU: 0x2A36, offset: 0x93814, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xA58, symBinAddr: 0x5FBB4, symSize: 0x74 } + - { offsetInCU: 0x2AE5, offset: 0x938C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x109C, symBinAddr: 0x601F8, symSize: 0x938 } + - { offsetInCU: 0x3093, offset: 0x93E71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x19D4, symBinAddr: 0x60B30, symSize: 0x654 } + - { offsetInCU: 0x3402, offset: 0x941E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2028, symBinAddr: 0x61184, symSize: 0x470 } + - { offsetInCU: 0x35CB, offset: 0x943A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x2498, symBinAddr: 0x615F4, symSize: 0x5FC } + - { offsetInCU: 0x3ACE, offset: 0x948AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2A94, symBinAddr: 0x61BF0, symSize: 0x150 } + - { offsetInCU: 0x3BDA, offset: 0x949B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2BE4, symBinAddr: 0x61D40, symSize: 0x2C } + - { offsetInCU: 0x3C13, offset: 0x949F1, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x2C90, symBinAddr: 0x61DEC, symSize: 0x4 } + - { offsetInCU: 0x3C40, offset: 0x94A1E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x31CC, symBinAddr: 0x62288, symSize: 0x14 } + - { offsetInCU: 0x3C70, offset: 0x94A4E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x31E0, symBinAddr: 0x6229C, symSize: 0x14 } + - { offsetInCU: 0x3CA0, offset: 0x94A7E, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x31F4, symBinAddr: 0x622B0, symSize: 0x14 } + - { offsetInCU: 0x43, offset: 0x94C0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x633EC, symSize: 0x188 } + - { offsetInCU: 0x57, offset: 0x94C22, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1C8, symBinAddr: 0x63574, symSize: 0xA4 } + - { offsetInCU: 0x6B, offset: 0x94C36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x26C, symBinAddr: 0x63618, symSize: 0x15C } + - { offsetInCU: 0x7F, offset: 0x94C4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3C8, symBinAddr: 0x63774, symSize: 0x1E8 } + - { offsetInCU: 0x93, offset: 0x94C5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5B0, symBinAddr: 0x6395C, symSize: 0xEC } + - { offsetInCU: 0xA7, offset: 0x94C72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x69C, symBinAddr: 0x63A48, symSize: 0x188 } + - { offsetInCU: 0xBB, offset: 0x94C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x824, symBinAddr: 0x63BD0, symSize: 0xC } + - { offsetInCU: 0xCF, offset: 0x94C9A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x8BC, symBinAddr: 0x63C68, symSize: 0xC } + - { offsetInCU: 0xE3, offset: 0x94CAE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x954, symBinAddr: 0x63D00, symSize: 0x88 } + - { offsetInCU: 0xF7, offset: 0x94CC2, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0x9DC, symBinAddr: 0x63D88, symSize: 0x54 } + - { offsetInCU: 0x10B, offset: 0x94CD6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA30, symBinAddr: 0x63DDC, symSize: 0x124 } + - { offsetInCU: 0x11F, offset: 0x94CEA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xB54, symBinAddr: 0x63F00, symSize: 0x84 } + - { offsetInCU: 0x133, offset: 0x94CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xBD8, symBinAddr: 0x63F84, symSize: 0xF4 } + - { offsetInCU: 0x147, offset: 0x94D12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xCCC, symBinAddr: 0x64078, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x94D26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE2C, symBinAddr: 0x641D8, symSize: 0xDC } + - { offsetInCU: 0x16F, offset: 0x94D3A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF08, symBinAddr: 0x642B4, symSize: 0x148 } + - { offsetInCU: 0x183, offset: 0x94D4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1050, symBinAddr: 0x643FC, symSize: 0xC } + - { offsetInCU: 0x197, offset: 0x94D62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x10E8, symBinAddr: 0x64494, symSize: 0xC } + - { offsetInCU: 0x1AB, offset: 0x94D76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11B4, symBinAddr: 0x64560, symSize: 0x88 } + - { offsetInCU: 0x239, offset: 0x94E04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x176C, symBinAddr: 0x64B18, symSize: 0x14 } + - { offsetInCU: 0x294, offset: 0x94E5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1784, symBinAddr: 0x64B30, symSize: 0x28 } + - { offsetInCU: 0x30E, offset: 0x94ED9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x64B5C, symSize: 0x70 } + - { offsetInCU: 0x343, offset: 0x94F0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1820, symBinAddr: 0x64BCC, symSize: 0x24 } + - { offsetInCU: 0x374, offset: 0x94F3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1844, symBinAddr: 0x64BF0, symSize: 0xC } + - { offsetInCU: 0x390, offset: 0x94F5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x64BFC, symSize: 0xC } + - { offsetInCU: 0x3AC, offset: 0x94F77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2ED4, symBinAddr: 0x66184, symSize: 0x1E8 } + - { offsetInCU: 0x466, offset: 0x95031, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18AC, symBinAddr: 0x64C58, symSize: 0x14 } + - { offsetInCU: 0x489, offset: 0x95054, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18C0, symBinAddr: 0x64C6C, symSize: 0x14 } + - { offsetInCU: 0x50A, offset: 0x950D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A88, symBinAddr: 0x64E34, symSize: 0x48 } + - { offsetInCU: 0x53F, offset: 0x9510A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AD0, symBinAddr: 0x64E7C, symSize: 0x24 } + - { offsetInCU: 0x570, offset: 0x9513B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AF4, symBinAddr: 0x64EA0, symSize: 0xC } + - { offsetInCU: 0x58C, offset: 0x95157, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B00, symBinAddr: 0x64EAC, symSize: 0xC } + - { offsetInCU: 0x5A8, offset: 0x95173, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30BC, symBinAddr: 0x6636C, symSize: 0x154 } + - { offsetInCU: 0x658, offset: 0x95223, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B5C, symBinAddr: 0x64F08, symSize: 0x4C } + - { offsetInCU: 0x68F, offset: 0x9525A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BA8, symBinAddr: 0x64F54, symSize: 0x40 } + - { offsetInCU: 0x6B2, offset: 0x9527D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3210, symBinAddr: 0x664C0, symSize: 0x294 } + - { offsetInCU: 0x716, offset: 0x952E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x23A4, symBinAddr: 0x65750, symSize: 0x8 } + - { offsetInCU: 0x74B, offset: 0x95316, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x23AC, symBinAddr: 0x65758, symSize: 0x24 } + - { offsetInCU: 0x77C, offset: 0x95347, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x23D0, symBinAddr: 0x6577C, symSize: 0xC } + - { offsetInCU: 0x798, offset: 0x95363, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x23DC, symBinAddr: 0x65788, symSize: 0xC } + - { offsetInCU: 0x7B4, offset: 0x9537F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x34A4, symBinAddr: 0x66754, symSize: 0x31C } + - { offsetInCU: 0x910, offset: 0x954DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2438, symBinAddr: 0x657E4, symSize: 0x14 } + - { offsetInCU: 0x933, offset: 0x954FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x244C, symBinAddr: 0x657F8, symSize: 0x14 } + - { offsetInCU: 0x957, offset: 0x95522, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2484, symBinAddr: 0x6580C, symSize: 0x44 } + - { offsetInCU: 0x96B, offset: 0x95536, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x24E8, symBinAddr: 0x65850, symSize: 0x40 } + - { offsetInCU: 0x97F, offset: 0x9554A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x25B0, symBinAddr: 0x658D0, symSize: 0x44 } + - { offsetInCU: 0x993, offset: 0x9555E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x2638, symBinAddr: 0x65914, symSize: 0x44 } + - { offsetInCU: 0x9A7, offset: 0x95572, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x2764, symBinAddr: 0x65A40, symSize: 0x44 } + - { offsetInCU: 0x9BB, offset: 0x95586, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x27B8, symBinAddr: 0x65A84, symSize: 0x90 } + - { offsetInCU: 0x9CF, offset: 0x9559A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2848, symBinAddr: 0x65B14, symSize: 0xBC } + - { offsetInCU: 0x9E3, offset: 0x955AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2904, symBinAddr: 0x65BD0, symSize: 0x8 } + - { offsetInCU: 0x9F7, offset: 0x955C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x290C, symBinAddr: 0x65BD8, symSize: 0x4 } + - { offsetInCU: 0xA0B, offset: 0x955D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x2910, symBinAddr: 0x65BDC, symSize: 0x8 } + - { offsetInCU: 0xA1F, offset: 0x955EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2918, symBinAddr: 0x65BE4, symSize: 0x10 } + - { offsetInCU: 0xA33, offset: 0x955FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2928, symBinAddr: 0x65BF4, symSize: 0x90 } + - { offsetInCU: 0xA47, offset: 0x95612, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x29B8, symBinAddr: 0x65C84, symSize: 0xBC } + - { offsetInCU: 0xA5B, offset: 0x95626, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2A74, symBinAddr: 0x65D40, symSize: 0x4 } + - { offsetInCU: 0xA6F, offset: 0x9563A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2A78, symBinAddr: 0x65D44, symSize: 0x10 } + - { offsetInCU: 0xA83, offset: 0x9564E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2A88, symBinAddr: 0x65D54, symSize: 0x30 } + - { offsetInCU: 0xA97, offset: 0x95662, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2AB8, symBinAddr: 0x65D84, symSize: 0x30 } + - { offsetInCU: 0xAAB, offset: 0x95676, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2AE8, symBinAddr: 0x65DB4, symSize: 0x5C } + - { offsetInCU: 0xABF, offset: 0x9568A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2B44, symBinAddr: 0x65E10, symSize: 0x94 } + - { offsetInCU: 0xAD3, offset: 0x9569E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2BF4, symBinAddr: 0x65EA4, symSize: 0x64 } + - { offsetInCU: 0xAE7, offset: 0x956B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2C58, symBinAddr: 0x65F08, symSize: 0x5C } + - { offsetInCU: 0xAFB, offset: 0x956C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2CB4, symBinAddr: 0x65F64, symSize: 0x60 } + - { offsetInCU: 0xB0F, offset: 0x956DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2D14, symBinAddr: 0x65FC4, symSize: 0x10 } + - { offsetInCU: 0xB23, offset: 0x956EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D24, symBinAddr: 0x65FD4, symSize: 0x4 } + - { offsetInCU: 0xB37, offset: 0x95702, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D28, symBinAddr: 0x65FD8, symSize: 0x44 } + - { offsetInCU: 0xB4B, offset: 0x95716, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2D6C, symBinAddr: 0x6601C, symSize: 0x4 } + - { offsetInCU: 0xB5F, offset: 0x9572A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2D70, symBinAddr: 0x66020, symSize: 0x44 } + - { offsetInCU: 0xB73, offset: 0x9573E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2DB4, symBinAddr: 0x66064, symSize: 0x4 } + - { offsetInCU: 0xB87, offset: 0x95752, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2DB8, symBinAddr: 0x66068, symSize: 0x44 } + - { offsetInCU: 0xB9B, offset: 0x95766, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2DFC, symBinAddr: 0x660AC, symSize: 0x4 } + - { offsetInCU: 0xBAF, offset: 0x9577A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E00, symBinAddr: 0x660B0, symSize: 0x44 } + - { offsetInCU: 0xBC3, offset: 0x9578E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E44, symBinAddr: 0x660F4, symSize: 0x4 } + - { offsetInCU: 0xBD7, offset: 0x957A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E48, symBinAddr: 0x660F8, symSize: 0x44 } + - { offsetInCU: 0xBEB, offset: 0x957B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E8C, symBinAddr: 0x6613C, symSize: 0x4 } + - { offsetInCU: 0xBFF, offset: 0x957CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2E90, symBinAddr: 0x66140, symSize: 0x44 } + - { offsetInCU: 0xC1E, offset: 0x957E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x37C0, symBinAddr: 0x66A70, symSize: 0x44 } + - { offsetInCU: 0xC32, offset: 0x957FD, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3804, symBinAddr: 0x66AB4, symSize: 0x48 } + - { offsetInCU: 0xC46, offset: 0x95811, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x38D0, symBinAddr: 0x66B80, symSize: 0x90 } + - { offsetInCU: 0xC5A, offset: 0x95825, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3960, symBinAddr: 0x66C10, symSize: 0xBC } + - { offsetInCU: 0xC6E, offset: 0x95839, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3A1C, symBinAddr: 0x66CCC, symSize: 0x4 } + - { offsetInCU: 0xC82, offset: 0x9584D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3A20, symBinAddr: 0x66CD0, symSize: 0x10 } + - { offsetInCU: 0xC96, offset: 0x95861, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3A30, symBinAddr: 0x66CE0, symSize: 0x4 } + - { offsetInCU: 0xCAA, offset: 0x95875, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3A34, symBinAddr: 0x66CE4, symSize: 0x44 } + - { offsetInCU: 0xCBE, offset: 0x95889, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3A78, symBinAddr: 0x66D28, symSize: 0x4 } + - { offsetInCU: 0xCD2, offset: 0x9589D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x3A7C, symBinAddr: 0x66D2C, symSize: 0x44 } + - { offsetInCU: 0xCE6, offset: 0x958B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x3AC0, symBinAddr: 0x66D70, symSize: 0x4 } + - { offsetInCU: 0xCFA, offset: 0x958C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x3AC4, symBinAddr: 0x66D74, symSize: 0x44 } + - { offsetInCU: 0xD28, offset: 0x958F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x185C, symBinAddr: 0x64C08, symSize: 0x28 } + - { offsetInCU: 0xD44, offset: 0x9590F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1884, symBinAddr: 0x64C30, symSize: 0x28 } + - { offsetInCU: 0xD66, offset: 0x95931, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B0C, symBinAddr: 0x64EB8, symSize: 0x28 } + - { offsetInCU: 0xD82, offset: 0x9594D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B34, symBinAddr: 0x64EE0, symSize: 0x28 } + - { offsetInCU: 0xDA4, offset: 0x9596F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x23E8, symBinAddr: 0x65794, symSize: 0x28 } + - { offsetInCU: 0xDC0, offset: 0x9598B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2410, symBinAddr: 0x657BC, symSize: 0x28 } + - { offsetInCU: 0xECD, offset: 0x95A98, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x123C, symBinAddr: 0x645E8, symSize: 0x200 } + - { offsetInCU: 0xF04, offset: 0x95ACF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x143C, symBinAddr: 0x647E8, symSize: 0x330 } + - { offsetInCU: 0xF7F, offset: 0x95B4A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18D4, symBinAddr: 0x64C80, symSize: 0x1AC } + - { offsetInCU: 0xFCA, offset: 0x95B95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1BE8, symBinAddr: 0x64F94, symSize: 0xA8 } + - { offsetInCU: 0xFED, offset: 0x95BB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1C90, symBinAddr: 0x6503C, symSize: 0x264 } + - { offsetInCU: 0x1024, offset: 0x95BEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1EF4, symBinAddr: 0x652A0, symSize: 0x424 } + - { offsetInCU: 0x27, offset: 0x95C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x66DD8, symSize: 0x2C } + - { offsetInCU: 0x106, offset: 0x95D55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0xE8, symBinAddr: 0x66EC0, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x95D69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x118, symBinAddr: 0x66EF0, symSize: 0x28 } + - { offsetInCU: 0x12E, offset: 0x95D7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x140, symBinAddr: 0x66F18, symSize: 0x3C } + - { offsetInCU: 0x142, offset: 0x95D91, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x17C, symBinAddr: 0x66F54, symSize: 0x6C } + - { offsetInCU: 0x156, offset: 0x95DA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x1F4, symBinAddr: 0x66FC0, symSize: 0x44 } + - { offsetInCU: 0x16A, offset: 0x95DB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x238, symBinAddr: 0x67004, symSize: 0x48 } + - { offsetInCU: 0x17E, offset: 0x95DCD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x280, symBinAddr: 0x6704C, symSize: 0x40 } + - { offsetInCU: 0x192, offset: 0x95DE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x2C0, symBinAddr: 0x6708C, symSize: 0x10 } + - { offsetInCU: 0x2A1, offset: 0x95EF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x66DD8, symSize: 0x2C } + - { offsetInCU: 0x2BB, offset: 0x95F0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x2C, symBinAddr: 0x66E04, symSize: 0x34 } + - { offsetInCU: 0x2F0, offset: 0x95F3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x66E38, symSize: 0x10 } + - { offsetInCU: 0x304, offset: 0x95F53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x66E48, symSize: 0x4 } + - { offsetInCU: 0x325, offset: 0x95F74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x74, symBinAddr: 0x66E4C, symSize: 0x2C } + - { offsetInCU: 0x339, offset: 0x95F88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xA0, symBinAddr: 0x66E78, symSize: 0x34 } + - { offsetInCU: 0x36E, offset: 0x95FBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xD4, symBinAddr: 0x66EAC, symSize: 0x10 } + - { offsetInCU: 0x392, offset: 0x95FE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0xE4, symBinAddr: 0x66EBC, symSize: 0x4 } + - { offsetInCU: 0x27, offset: 0x96033, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6709C, symSize: 0x14 } + - { offsetInCU: 0x87, offset: 0x96093, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x298, symBinAddr: 0x67334, symSize: 0x8 } + - { offsetInCU: 0xA3, offset: 0x960AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6733C, symSize: 0x18 } + - { offsetInCU: 0xBB, offset: 0x960C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x2A0, symBinAddr: 0x6733C, symSize: 0x18 } + - { offsetInCU: 0xD8, offset: 0x960E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x188, symBinAddr: 0x67224, symSize: 0x4 } + - { offsetInCU: 0xEC, offset: 0x960F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x18C, symBinAddr: 0x67228, symSize: 0x44 } + - { offsetInCU: 0x120, offset: 0x9612C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x2C8, symBinAddr: 0x67354, symSize: 0x90 } + - { offsetInCU: 0x134, offset: 0x96140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x358, symBinAddr: 0x673E4, symSize: 0xBC } + - { offsetInCU: 0x148, offset: 0x96154, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x414, symBinAddr: 0x674A0, symSize: 0x8 } + - { offsetInCU: 0x15C, offset: 0x96168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x41C, symBinAddr: 0x674A8, symSize: 0x4 } + - { offsetInCU: 0x170, offset: 0x9617C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x420, symBinAddr: 0x674AC, symSize: 0x8 } + - { offsetInCU: 0x184, offset: 0x96190, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x428, symBinAddr: 0x674B4, symSize: 0x10 } + - { offsetInCU: 0x1BF, offset: 0x961CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x438, symBinAddr: 0x674C4, symSize: 0x248 } + - { offsetInCU: 0x31A, offset: 0x96326, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x164, symBinAddr: 0x67200, symSize: 0x24 } + - { offsetInCU: 0x40E, offset: 0x9641A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x1D0, symBinAddr: 0x6726C, symSize: 0x4C } + - { offsetInCU: 0x4E6, offset: 0x964F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x21C, symBinAddr: 0x672B8, symSize: 0x34 } + - { offsetInCU: 0x562, offset: 0x9656E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x250, symBinAddr: 0x672EC, symSize: 0x48 } + - { offsetInCU: 0x6ED, offset: 0x966F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x6709C, symSize: 0x14 } + - { offsetInCU: 0x70E, offset: 0x9671A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x14, symBinAddr: 0x670B0, symSize: 0x150 } + - { offsetInCU: 0x2B, offset: 0x967C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6770C, symSize: 0x24 } + - { offsetInCU: 0x7C, offset: 0x96815, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x24, symBinAddr: 0x67730, symSize: 0x20 } + - { offsetInCU: 0x182, offset: 0x9691B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x6770C, symSize: 0x24 } + - { offsetInCU: 0x4F, offset: 0x969AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x1D50, symBinAddr: 0x84EE8, symSize: 0x0 } + - { offsetInCU: 0x60A, offset: 0x96F66, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0x34, symBinAddr: 0x67784, symSize: 0x4C } + - { offsetInCU: 0x622, offset: 0x96F7E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x80, symBinAddr: 0x677D0, symSize: 0x94 } + - { offsetInCU: 0x7AC, offset: 0x97108, size: 0x8, addend: 0x0, symName: '_$sSo11NSPredicateCMa', symObjAddr: 0x1894, symBinAddr: 0x68F30, symSize: 0x3C } + - { offsetInCU: 0x7C0, offset: 0x9711C, size: 0x8, addend: 0x0, symName: '_$sS2Ss7CVarArg10FoundationWl', symObjAddr: 0x18D0, symBinAddr: 0x68F6C, symSize: 0x44 } + - { offsetInCU: 0x7D4, offset: 0x97130, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_TA', symObjAddr: 0x1914, symBinAddr: 0x68FB0, symSize: 0x8 } + - { offsetInCU: 0x7E8, offset: 0x97144, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_TA', symObjAddr: 0x191C, symBinAddr: 0x68FB8, symSize: 0x8 } + - { offsetInCU: 0x7FC, offset: 0x97158, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_TA', symObjAddr: 0x1924, symBinAddr: 0x68FC0, symSize: 0x8 } + - { offsetInCU: 0x810, offset: 0x9716C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_TA', symObjAddr: 0x192C, symBinAddr: 0x68FC8, symSize: 0x8 } + - { offsetInCU: 0x824, offset: 0x97180, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_TA', symObjAddr: 0x1934, symBinAddr: 0x68FD0, symSize: 0x8 } + - { offsetInCU: 0x838, offset: 0x97194, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x1998, symBinAddr: 0x68FD8, symSize: 0x20 } + - { offsetInCU: 0x84C, offset: 0x971A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOb', symObjAddr: 0x19B8, symBinAddr: 0x68FF8, symSize: 0x48 } + - { offsetInCU: 0x860, offset: 0x971BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOd', symObjAddr: 0x1A00, symBinAddr: 0x69040, symSize: 0x48 } + - { offsetInCU: 0x874, offset: 0x971D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x1B84, symBinAddr: 0x691B4, symSize: 0x8 } + - { offsetInCU: 0x888, offset: 0x971E4, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x1B8C, symBinAddr: 0x691BC, symSize: 0x10 } + - { offsetInCU: 0x89C, offset: 0x971F8, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x1B9C, symBinAddr: 0x691CC, symSize: 0x8 } + - { offsetInCU: 0x8E5, offset: 0x97241, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1BA4, symBinAddr: 0x691D4, symSize: 0x10 } + - { offsetInCU: 0x901, offset: 0x9725D, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1BA4, symBinAddr: 0x691D4, symSize: 0x10 } + - { offsetInCU: 0x915, offset: 0x97271, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x1BA4, symBinAddr: 0x691D4, symSize: 0x10 } + - { offsetInCU: 0x954, offset: 0x972B0, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x67750, symSize: 0x4 } + - { offsetInCU: 0x970, offset: 0x972CC, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x4, symBinAddr: 0x67754, symSize: 0x4 } + - { offsetInCU: 0x98C, offset: 0x972E8, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x8, symBinAddr: 0x67758, symSize: 0x4 } + - { offsetInCU: 0x9A8, offset: 0x97304, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0xC, symBinAddr: 0x6775C, symSize: 0x4 } + - { offsetInCU: 0x9C4, offset: 0x97320, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x10, symBinAddr: 0x67760, symSize: 0x4 } + - { offsetInCU: 0x9E0, offset: 0x9733C, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x14, symBinAddr: 0x67764, symSize: 0x4 } + - { offsetInCU: 0x9FC, offset: 0x97358, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x18, symBinAddr: 0x67768, symSize: 0x4 } + - { offsetInCU: 0xA18, offset: 0x97374, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x1C, symBinAddr: 0x6776C, symSize: 0xC } + - { offsetInCU: 0xA34, offset: 0x97390, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x28, symBinAddr: 0x67778, symSize: 0xC } + - { offsetInCU: 0xCBF, offset: 0x9761B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0x114, symBinAddr: 0x67864, symSize: 0x40 } + - { offsetInCU: 0xE1E, offset: 0x9777A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF', symObjAddr: 0x154, symBinAddr: 0x678A4, symSize: 0x64C } + - { offsetInCU: 0x1241, offset: 0x97B9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_', symObjAddr: 0x7E0, symBinAddr: 0x67EF0, symSize: 0x5C } + - { offsetInCU: 0x12A7, offset: 0x97C03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_', symObjAddr: 0x83C, symBinAddr: 0x67F4C, symSize: 0x5C } + - { offsetInCU: 0x130D, offset: 0x97C69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_', symObjAddr: 0x898, symBinAddr: 0x67FA8, symSize: 0x5C } + - { offsetInCU: 0x1373, offset: 0x97CCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_', symObjAddr: 0x8F4, symBinAddr: 0x68004, symSize: 0x5C } + - { offsetInCU: 0x13D9, offset: 0x97D35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_', symObjAddr: 0x950, symBinAddr: 0x68060, symSize: 0x5C } + - { offsetInCU: 0x14A4, offset: 0x97E00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0x9AC, symBinAddr: 0x680BC, symSize: 0x44 } + - { offsetInCU: 0x150E, offset: 0x97E6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x9F0, symBinAddr: 0x68100, symSize: 0x10 } + - { offsetInCU: 0x1540, offset: 0x97E9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0x9F0, symBinAddr: 0x68100, symSize: 0x10 } + - { offsetInCU: 0x156F, offset: 0x97ECB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xA00, symBinAddr: 0x68110, symSize: 0x54 } + - { offsetInCU: 0x15E6, offset: 0x97F42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0xB64, symBinAddr: 0x68274, symSize: 0x34 } + - { offsetInCU: 0x1649, offset: 0x97FA5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xB98, symBinAddr: 0x682A8, symSize: 0x54 } + - { offsetInCU: 0x16C0, offset: 0x9801C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xBEC, symBinAddr: 0x682FC, symSize: 0x4C } + - { offsetInCU: 0x174C, offset: 0x980A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xC38, symBinAddr: 0x68348, symSize: 0x84 } + - { offsetInCU: 0x17E7, offset: 0x98143, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xCBC, symBinAddr: 0x683CC, symSize: 0x74 } + - { offsetInCU: 0x1896, offset: 0x981F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xD30, symBinAddr: 0x68440, symSize: 0x84 } + - { offsetInCU: 0x1931, offset: 0x9828D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0xDB4, symBinAddr: 0x684C4, symSize: 0x38 } + - { offsetInCU: 0x19B1, offset: 0x9830D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xDEC, symBinAddr: 0x684FC, symSize: 0x38 } + - { offsetInCU: 0x1A31, offset: 0x9838D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE24, symBinAddr: 0x68534, symSize: 0x38 } + - { offsetInCU: 0x1AB1, offset: 0x9840D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE5C, symBinAddr: 0x6856C, symSize: 0x38 } + - { offsetInCU: 0x1B31, offset: 0x9848D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xE94, symBinAddr: 0x685A4, symSize: 0x38 } + - { offsetInCU: 0x1BB1, offset: 0x9850D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0xECC, symBinAddr: 0x685DC, symSize: 0x38 } + - { offsetInCU: 0x1C31, offset: 0x9858D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0xF04, symBinAddr: 0x68614, symSize: 0x38 } + - { offsetInCU: 0x1CB1, offset: 0x9860D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0xF3C, symBinAddr: 0x6864C, symSize: 0x38 } + - { offsetInCU: 0x1D11, offset: 0x9866D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0xF74, symBinAddr: 0x68684, symSize: 0x44 } + - { offsetInCU: 0x1DA8, offset: 0x98704, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0xFB8, symBinAddr: 0x686C8, symSize: 0x13C } + - { offsetInCU: 0x1E79, offset: 0x987D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0x10F4, symBinAddr: 0x68804, symSize: 0xAC } + - { offsetInCU: 0x1F4B, offset: 0x988A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x11A0, symBinAddr: 0x688B0, symSize: 0x78 } + - { offsetInCU: 0x1FE1, offset: 0x9893D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x1218, symBinAddr: 0x68928, symSize: 0x94 } + - { offsetInCU: 0x2004, offset: 0x98960, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x12AC, symBinAddr: 0x689BC, symSize: 0x20 } + - { offsetInCU: 0x2049, offset: 0x989A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1340, symBinAddr: 0x689DC, symSize: 0x254 } + - { offsetInCU: 0x2144, offset: 0x98AA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1594, symBinAddr: 0x68C30, symSize: 0x300 } +... diff --git a/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml new file mode 100644 index 0000000..752384c --- /dev/null +++ b/IoTConnectDemo/IoTConnectDemo/IotConnect2_aws.xcframework/ios-arm64_x86_64-simulator/dSYMs/IoTConnect2_AWS.framework.dSYM/Contents/Resources/Relocations/x86_64/IoTConnect2_AWS.yml @@ -0,0 +1,1623 @@ +--- +triple: 'x86_64-apple-darwin' +binary-path: '/Users/kirtan.vaghela/Library/Developer/Xcode/DerivedData/IoTConnect2-bhvazebfhzdirfdaqumgilgqnuod/Build/Intermediates.noindex/ArchiveIntermediates/IoTConnect2_AWS/InstallationBuildProductsLocation/Library/Frameworks/IoTConnect2_AWS.framework/IoTConnect2_AWS' +relocations: + - { offsetInCU: 0x34, offset: 0x5A510, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionString, symObjAddr: 0x0, symBinAddr: 0x766C0, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x5A545, size: 0x8, addend: 0x0, symName: _IoTConnect2_AWSVersionNumber, symObjAddr: 0x38, symBinAddr: 0x766F8, symSize: 0x0 } + - { offsetInCU: 0x4F, offset: 0x5A5AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstanceACvpZ', symObjAddr: 0x41628, symBinAddr: 0x8D4C0, symSize: 0x0 } + - { offsetInCU: 0x2EF, offset: 0x5A84A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12calcEdgeData9arrValues9latestValSaySSGAG_SStFTf4nnd_n', symObjAddr: 0xB450, symBinAddr: 0xCD90, symSize: 0x1BD0 } + - { offsetInCU: 0x1CEF, offset: 0x5C24A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14sharedInstance_WZ', symObjAddr: 0x80, symBinAddr: 0x1A00, symSize: 0x40 } + - { offsetInCU: 0x1EAB, offset: 0x5C406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMU', symObjAddr: 0x1E50, symBinAddr: 0x37D0, symSize: 0x10 } + - { offsetInCU: 0x1EBF, offset: 0x5C41A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMa', symObjAddr: 0x1E60, symBinAddr: 0x37E0, symSize: 0x30 } + - { offsetInCU: 0x1ED3, offset: 0x5C42E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCMr', symObjAddr: 0x1E90, symBinAddr: 0x3810, symSize: 0x220 } + - { offsetInCU: 0x2399, offset: 0x5C8F4, size: 0x8, addend: 0x0, symName: ___swift_memcpy16_1, symObjAddr: 0xA160, symBinAddr: 0xBAD0, symSize: 0x10 } + - { offsetInCU: 0x23AD, offset: 0x5C908, size: 0x8, addend: 0x0, symName: ___swift_noop_void_return, symObjAddr: 0xA170, symBinAddr: 0xBAE0, symSize: 0x10 } + - { offsetInCU: 0x23C1, offset: 0x5C91C, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwet', symObjAddr: 0xA180, symBinAddr: 0xBAF0, symSize: 0x20 } + - { offsetInCU: 0x23D5, offset: 0x5C930, size: 0x8, addend: 0x0, symName: '_$sSo8sockaddrVwst', symObjAddr: 0xA1A0, symBinAddr: 0xBB10, symSize: 0x30 } + - { offsetInCU: 0x25FA, offset: 0x5CB55, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCSQWb', symObjAddr: 0xA840, symBinAddr: 0xC180, symSize: 0x20 } + - { offsetInCU: 0x260E, offset: 0x5CB69, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xA860, symBinAddr: 0xC1A0, symSize: 0x20 } + - { offsetInCU: 0x2622, offset: 0x5CB7D, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCSYWb', symObjAddr: 0xA8B0, symBinAddr: 0xC1F0, symSize: 0x20 } + - { offsetInCU: 0x2636, offset: 0x5CB91, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCs0E7AlgebraPWb', symObjAddr: 0xA8D0, symBinAddr: 0xC210, symSize: 0x20 } + - { offsetInCU: 0x268A, offset: 0x5CBE5, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_', symObjAddr: 0xACD0, symBinAddr: 0xC610, symSize: 0x50 } + - { offsetInCU: 0x2CFF, offset: 0x5D25A, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledName, symObjAddr: 0xD1C0, symBinAddr: 0xEB00, symSize: 0x40 } + - { offsetInCU: 0x2D13, offset: 0x5D26E, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_0, symObjAddr: 0xD200, symBinAddr: 0xEB40, symSize: 0x30 } + - { offsetInCU: 0x2D27, offset: 0x5D282, size: 0x8, addend: 0x0, symName: '_$sypWOb', symObjAddr: 0xD230, symBinAddr: 0xEB70, symSize: 0x20 } + - { offsetInCU: 0x2D3B, offset: 0x5D296, size: 0x8, addend: 0x0, symName: '_$sypWOc', symObjAddr: 0xD250, symBinAddr: 0xEB90, symSize: 0x30 } + - { offsetInCU: 0x2D4F, offset: 0x5D2AA, size: 0x8, addend: 0x0, symName: '_$sS2SSysWl', symObjAddr: 0xD2D0, symBinAddr: 0xEC10, symSize: 0x30 } + - { offsetInCU: 0x2D63, offset: 0x5D2BE, size: 0x8, addend: 0x0, symName: '_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe', symObjAddr: 0xD490, symBinAddr: 0xEDD0, symSize: 0x20 } + - { offsetInCU: 0x2D77, offset: 0x5D2D2, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOe', symObjAddr: 0xD4B0, symBinAddr: 0xEDF0, symSize: 0x20 } + - { offsetInCU: 0x2D8B, offset: 0x5D2E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOe', symObjAddr: 0xD4D0, symBinAddr: 0xEE10, symSize: 0x50 } + - { offsetInCU: 0x2D9F, offset: 0x5D2FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOe', symObjAddr: 0xD520, symBinAddr: 0xEE60, symSize: 0x180 } + - { offsetInCU: 0x2DB3, offset: 0x5D30E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOe', symObjAddr: 0xD6A0, symBinAddr: 0xEFE0, symSize: 0x2D0 } + - { offsetInCU: 0x2DC7, offset: 0x5D322, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOe', symObjAddr: 0xD970, symBinAddr: 0xF2B0, symSize: 0x70 } + - { offsetInCU: 0x2DDB, offset: 0x5D336, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOe', symObjAddr: 0xD9E0, symBinAddr: 0xF320, symSize: 0x30 } + - { offsetInCU: 0x2DEF, offset: 0x5D34A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOe', symObjAddr: 0xDA10, symBinAddr: 0xF350, symSize: 0xD0 } + - { offsetInCU: 0x2E03, offset: 0x5D35E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOe', symObjAddr: 0xDAE0, symBinAddr: 0xF420, symSize: 0xB0 } + - { offsetInCU: 0x2E17, offset: 0x5D372, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOe', symObjAddr: 0xDB90, symBinAddr: 0xF4D0, symSize: 0x20 } + - { offsetInCU: 0x2E2B, offset: 0x5D386, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOe', symObjAddr: 0xDBB0, symBinAddr: 0xF4F0, symSize: 0x30 } + - { offsetInCU: 0x2E3F, offset: 0x5D39A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVSgWOy', symObjAddr: 0xDC40, symBinAddr: 0xF580, symSize: 0x50 } + - { offsetInCU: 0x2E53, offset: 0x5D3AE, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCSQWb', symObjAddr: 0xDD30, symBinAddr: 0xF670, symSize: 0x20 } + - { offsetInCU: 0x2E67, offset: 0x5D3C2, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCs25ExpressibleByArrayLiteralPWb', symObjAddr: 0xDD50, symBinAddr: 0xF690, symSize: 0x20 } + - { offsetInCU: 0x2E7B, offset: 0x5D3D6, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCSYWb', symObjAddr: 0xDD70, symBinAddr: 0xF6B0, symSize: 0x20 } + - { offsetInCU: 0x2E8F, offset: 0x5D3EA, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs9OptionSetSCs0D7AlgebraPWb', symObjAddr: 0xDD90, symBinAddr: 0xF6D0, symSize: 0x20 } + - { offsetInCU: 0x2EA3, offset: 0x5D3FE, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCSYWb', symObjAddr: 0xDDB0, symBinAddr: 0xF6F0, symSize: 0x20 } + - { offsetInCU: 0x2EB7, offset: 0x5D412, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb', symObjAddr: 0xDDD0, symBinAddr: 0xF710, symSize: 0x20 } + - { offsetInCU: 0x2ECB, offset: 0x5D426, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSQWb', symObjAddr: 0xDDF0, symBinAddr: 0xF730, symSize: 0x20 } + - { offsetInCU: 0x3273, offset: 0x5D7CE, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufCSS_Tgm5', symObjAddr: 0x8610, symBinAddr: 0x9F90, symSize: 0x70 } + - { offsetInCU: 0x3387, offset: 0x5D8E2, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE016_forceBridgeFromD1C_6resultyAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0xA1F0, symBinAddr: 0xBB60, symSize: 0x80 } + - { offsetInCU: 0x3418, offset: 0x5D973, size: 0x8, addend: 0x0, symName: '_$ss20_SwiftNewtypeWrapperPss21_ObjectiveCBridgeable8RawValueRpzrlE024_conditionallyBridgeFromD1C_6resultSbAD_01_D5CTypeQZ_xSgztFZSo18NSFileAttributeKeya_Tgmq5', symObjAddr: 0xA270, symBinAddr: 0xBBE0, symSize: 0x80 } + - { offsetInCU: 0x34B8, offset: 0x5DA13, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA2F0, symBinAddr: 0xBC60, symSize: 0x10 } + - { offsetInCU: 0x34F6, offset: 0x5DA51, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA310, symBinAddr: 0xBC80, symSize: 0x10 } + - { offsetInCU: 0x3559, offset: 0x5DAB4, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA320, symBinAddr: 0xBC90, symSize: 0x10 } + - { offsetInCU: 0x360A, offset: 0x5DB65, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA330, symBinAddr: 0xBCA0, symSize: 0x10 } + - { offsetInCU: 0x36B3, offset: 0x5DC0E, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA340, symBinAddr: 0xBCB0, symSize: 0x10 } + - { offsetInCU: 0x375A, offset: 0x5DCB5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA350, symBinAddr: 0xBCC0, symSize: 0x30 } + - { offsetInCU: 0x38CE, offset: 0x5DE29, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA380, symBinAddr: 0xBCF0, symSize: 0x30 } + - { offsetInCU: 0x39D5, offset: 0x5DF30, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA3B0, symBinAddr: 0xBD20, symSize: 0x20 } + - { offsetInCU: 0x3AC1, offset: 0x5E01C, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA3D0, symBinAddr: 0xBD40, symSize: 0x10 } + - { offsetInCU: 0x3AFF, offset: 0x5E05A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA3E0, symBinAddr: 0xBD50, symSize: 0x10 } + - { offsetInCU: 0x3B3D, offset: 0x5E098, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA3F0, symBinAddr: 0xBD60, symSize: 0x10 } + - { offsetInCU: 0x3B94, offset: 0x5E0EF, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA400, symBinAddr: 0xBD70, symSize: 0x10 } + - { offsetInCU: 0x3C47, offset: 0x5E1A2, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA410, symBinAddr: 0xBD80, symSize: 0x20 } + - { offsetInCU: 0x3CC8, offset: 0x5E223, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA430, symBinAddr: 0xBDA0, symSize: 0x10 } + - { offsetInCU: 0x3D8A, offset: 0x5E2E5, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA440, symBinAddr: 0xBDB0, symSize: 0x20 } + - { offsetInCU: 0x3E24, offset: 0x5E37F, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA460, symBinAddr: 0xBDD0, symSize: 0x10 } + - { offsetInCU: 0x3E8C, offset: 0x5E3E7, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA470, symBinAddr: 0xBDE0, symSize: 0x20 } + - { offsetInCU: 0x3EA8, offset: 0x5E403, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA490, symBinAddr: 0xBE00, symSize: 0x10 } + - { offsetInCU: 0x3F24, offset: 0x5E47F, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPxycfCTW', symObjAddr: 0xA4C0, symBinAddr: 0xBE30, symSize: 0x10 } + - { offsetInCU: 0x3F40, offset: 0x5E49B, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP5unionyxxnFTW', symObjAddr: 0xA4D0, symBinAddr: 0xBE40, symSize: 0x10 } + - { offsetInCU: 0x3F71, offset: 0x5E4CC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW', symObjAddr: 0xA4E0, symBinAddr: 0xBE50, symSize: 0x10 } + - { offsetInCU: 0x3FA2, offset: 0x5E4FD, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP19symmetricDifferenceyxxnFTW', symObjAddr: 0xA4F0, symBinAddr: 0xBE60, symSize: 0x10 } + - { offsetInCU: 0x3FD3, offset: 0x5E52E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW', symObjAddr: 0xA500, symBinAddr: 0xBE70, symSize: 0x30 } + - { offsetInCU: 0x4002, offset: 0x5E55D, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6removey7ElementQzSgAGFTW', symObjAddr: 0xA530, symBinAddr: 0xBEA0, symSize: 0x30 } + - { offsetInCU: 0x4033, offset: 0x5E58E, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP6update4with7ElementQzSgAHn_tFTW', symObjAddr: 0xA560, symBinAddr: 0xBED0, symSize: 0x30 } + - { offsetInCU: 0x4064, offset: 0x5E5BF, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW', symObjAddr: 0xA590, symBinAddr: 0xBF00, symSize: 0x10 } + - { offsetInCU: 0x4095, offset: 0x5E5F0, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW', symObjAddr: 0xA5A0, symBinAddr: 0xBF10, symSize: 0x10 } + - { offsetInCU: 0x40C6, offset: 0x5E621, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP23formSymmetricDifferenceyyxnFTW', symObjAddr: 0xA5B0, symBinAddr: 0xBF20, symSize: 0x10 } + - { offsetInCU: 0x40F7, offset: 0x5E652, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP11subtractingyxxFTW', symObjAddr: 0xA5C0, symBinAddr: 0xBF30, symSize: 0x20 } + - { offsetInCU: 0x4128, offset: 0x5E683, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8isSubset2ofSbx_tFTW', symObjAddr: 0xA5E0, symBinAddr: 0xBF50, symSize: 0x20 } + - { offsetInCU: 0x4159, offset: 0x5E6B4, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isDisjoint4withSbx_tFTW', symObjAddr: 0xA600, symBinAddr: 0xBF70, symSize: 0x10 } + - { offsetInCU: 0x418A, offset: 0x5E6E5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP10isSuperset2ofSbx_tFTW', symObjAddr: 0xA610, symBinAddr: 0xBF80, symSize: 0x20 } + - { offsetInCU: 0x41BB, offset: 0x5E716, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP7isEmptySbvgTW', symObjAddr: 0xA630, symBinAddr: 0xBFA0, symSize: 0x10 } + - { offsetInCU: 0x41EC, offset: 0x5E747, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACPyxqd__ncSTRd__7ElementQyd__AERtzlufCTW', symObjAddr: 0xA640, symBinAddr: 0xBFB0, symSize: 0x20 } + - { offsetInCU: 0x4208, offset: 0x5E763, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs10SetAlgebraSCsACP8subtractyyxFTW', symObjAddr: 0xA660, symBinAddr: 0xBFD0, symSize: 0x10 } + - { offsetInCU: 0x4258, offset: 0x5E7B3, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA690, symBinAddr: 0xC000, symSize: 0x30 } + - { offsetInCU: 0x42E0, offset: 0x5E83B, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSHSCSH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA6C0, symBinAddr: 0xC030, symSize: 0x60 } + - { offsetInCU: 0x4364, offset: 0x5E8BF, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromD1C_6resulty01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA780, symBinAddr: 0xC0F0, symSize: 0x10 } + - { offsetInCU: 0x4380, offset: 0x5E8DB, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromD1C_6resultSb01_D5CTypeQz_xSgztFZTW', symObjAddr: 0xA790, symBinAddr: 0xC100, symSize: 0x10 } + - { offsetInCU: 0x43AB, offset: 0x5E906, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromD1Cyx01_D5CTypeQzSgFZTW', symObjAddr: 0xA7A0, symBinAddr: 0xC110, symSize: 0x40 } + - { offsetInCU: 0x4439, offset: 0x5E994, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs25ExpressibleByArrayLiteralSCsACP05arrayG0x0fG7ElementQzd_tcfCTW', symObjAddr: 0xA810, symBinAddr: 0xC150, symSize: 0x30 } + - { offsetInCU: 0x446A, offset: 0x5E9C5, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA8F0, symBinAddr: 0xC230, symSize: 0x10 } + - { offsetInCU: 0x44A1, offset: 0x5E9FC, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVs25ExpressibleByArrayLiteralSCsACP05arrayF0x0eF7ElementQzd_tcfCTW', symObjAddr: 0xA900, symBinAddr: 0xC240, symSize: 0x30 } + - { offsetInCU: 0x44E1, offset: 0x5EA3C, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSQSCSQ2eeoiySbx_xtFZTW', symObjAddr: 0xA930, symBinAddr: 0xC270, symSize: 0x80 } + - { offsetInCU: 0x45A3, offset: 0x5EAFE, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyas35_HasCustomAnyHashableRepresentationSCsACP03_toefG0s0fG0VSgyFTW', symObjAddr: 0xAA40, symBinAddr: 0xC380, symSize: 0x70 } + - { offsetInCU: 0x45EB, offset: 0x5EB46, size: 0x8, addend: 0x0, symName: '_$sSaySayxGqd__c7ElementQyd__RszSTRd__lufCSS3key_yp5valuet_SDySSypGTgm5Tf4g_n', symObjAddr: 0xB0D0, symBinAddr: 0xCA10, symSize: 0xB0 } + - { offsetInCU: 0x46C3, offset: 0x5EC1E, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5118$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStFSbAJXEfU0_SSSgTf1cn_nTf4ng_n', symObjAddr: 0xB180, symBinAddr: 0xCAC0, symSize: 0x190 } + - { offsetInCU: 0x493F, offset: 0x5EE9A, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo20NSJSONWritingOptionsV_Tgm5Tf4g_n', symObjAddr: 0xD020, symBinAddr: 0xE960, symSize: 0xD0 } + - { offsetInCU: 0x4AA1, offset: 0x5EFFC, size: 0x8, addend: 0x0, symName: '_$ss10SetAlgebraPs7ElementQz012ArrayLiteralC0RtzrlE05arrayE0xAFd_tcfCSo26SCNetworkReachabilityFlagsV_Tgq5Tf4gd_n', symObjAddr: 0xD0F0, symBinAddr: 0xEA30, symSize: 0xD0 } + - { offsetInCU: 0x4D5A, offset: 0x5F2B5, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA9E0, symBinAddr: 0xC320, symSize: 0x40 } + - { offsetInCU: 0x4D83, offset: 0x5F2DE, size: 0x8, addend: 0x0, symName: '_$sSo18NSFileAttributeKeyaSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xAA20, symBinAddr: 0xC360, symSize: 0x20 } + - { offsetInCU: 0x4DBE, offset: 0x5F319, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW', symObjAddr: 0xA9C0, symBinAddr: 0xC300, symSize: 0x10 } + - { offsetInCU: 0x4DDA, offset: 0x5F335, size: 0x8, addend: 0x0, symName: '_$sSo20NSJSONWritingOptionsVSYSCSY8rawValue03RawD0QzvgTW', symObjAddr: 0xA9D0, symBinAddr: 0xC310, symSize: 0x10 } + - { offsetInCU: 0x4E08, offset: 0x5F363, size: 0x8, addend: 0x0, symName: '_$sSo17NSMatchingOptionsVs9OptionSetSCsACP8rawValuex03RawF0Qz_tcfCTW', symObjAddr: 0xA9B0, symBinAddr: 0xC2F0, symSize: 0x10 } + - { offsetInCU: 0x4EEC, offset: 0x5F447, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVs9OptionSetSCsACP8rawValuex03RawG0Qz_tcfCTW', symObjAddr: 0xA300, symBinAddr: 0xBC70, symSize: 0x10 } + - { offsetInCU: 0x4F0F, offset: 0x5F46A, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW', symObjAddr: 0xA4A0, symBinAddr: 0xBE10, symSize: 0x10 } + - { offsetInCU: 0x4F2B, offset: 0x5F486, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsVSYSCSY8rawValue03RawE0QzvgTW', symObjAddr: 0xA4B0, symBinAddr: 0xBE20, symSize: 0x10 } + - { offsetInCU: 0x4F91, offset: 0x5F4EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM', symObjAddr: 0xC0, symBinAddr: 0x1A40, symSize: 0x40 } + - { offsetInCU: 0x4FA5, offset: 0x5F500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10attributesAA14AttributesDataVSgvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x1A80, symSize: 0x10 } + - { offsetInCU: 0x4FCD, offset: 0x5F528, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCACycfc', symObjAddr: 0x110, symBinAddr: 0x1A90, symSize: 0x320 } + - { offsetInCU: 0x50FC, offset: 0x5F657, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC4cpId06uniqueG03env10sdkOptions14deviceCallback010twinUpdateM017attributeCallBack05twinsqR008getChildM0ACSS_S2SAA15SDKClientOptionVSgyypSgcyAPcyAPcyAPcyAPctcfc', symObjAddr: 0x430, symBinAddr: 0x1DB0, symSize: 0x13A0 } + - { offsetInCU: 0x53FD, offset: 0x5F958, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfd', symObjAddr: 0x17D0, symBinAddr: 0x3150, symSize: 0x660 } + - { offsetInCU: 0x5474, offset: 0x5F9CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerCfD', symObjAddr: 0x1E30, symBinAddr: 0x37B0, symSize: 0x20 } + - { offsetInCU: 0x54E9, offset: 0x5FA44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC8sendData4dataySDySSypG_tF', symObjAddr: 0x20B0, symBinAddr: 0x3A30, symSize: 0x770 } + - { offsetInCU: 0x5817, offset: 0x5FD72, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0x2820, symBinAddr: 0x41A0, symSize: 0x480 } + - { offsetInCU: 0x5AC0, offset: 0x6001B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7sendAck4data7msgTypeySaySDySSypGG_SStFyyXEfU_', symObjAddr: 0x2CA0, symBinAddr: 0x4620, symSize: 0x8E0 } + - { offsetInCU: 0x6081, offset: 0x605DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10sendAckCmd7ackGuid6status3msg7childId4typeySS_S3SSitF', symObjAddr: 0x3580, symBinAddr: 0x4F00, symSize: 0x620 } + - { offsetInCU: 0x645D, offset: 0x609B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19storeEdgeDeviceData3arr7dictVal2id2tg2dtSaySDySSypGGAK_AJSSSgALSStF', symObjAddr: 0x3BA0, symBinAddr: 0x5520, symSize: 0x4A70 } + - { offsetInCU: 0x7429, offset: 0x61984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11getAllTwinsyyF', symObjAddr: 0x8690, symBinAddr: 0xA000, symSize: 0x190 } + - { offsetInCU: 0x74F2, offset: 0x61A4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10updateTwin3key5valueySS_yptF', symObjAddr: 0x8820, symBinAddr: 0xA190, symSize: 0x3B0 } + - { offsetInCU: 0x7750, offset: 0x61CAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC7dispose13sdkconnectionySS_tF', symObjAddr: 0x8BD0, symBinAddr: 0xA540, symSize: 0x480 } + - { offsetInCU: 0x7AD4, offset: 0x6202F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0x9050, symBinAddr: 0xA9C0, symSize: 0x330 } + - { offsetInCU: 0x7C79, offset: 0x621D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x9640, symBinAddr: 0xAFB0, symSize: 0x380 } + - { offsetInCU: 0x7D9C, offset: 0x622F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17createChildDevice8deviceId0I3Tag11displayNameySS_S2StF', symObjAddr: 0x99C0, symBinAddr: 0xB330, symSize: 0x560 } + - { offsetInCU: 0x800F, offset: 0x6256A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17deleteChildDevice8uniqueIDySS_tF', symObjAddr: 0x9F20, symBinAddr: 0xB890, symSize: 0x1C0 } + - { offsetInCU: 0x830C, offset: 0x62867, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo7NSTimerC_Tg5', symObjAddr: 0xAAB0, symBinAddr: 0xC3F0, symSize: 0x220 } + - { offsetInCU: 0x83A5, offset: 0x62900, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSDySSypG_Tg5', symObjAddr: 0xAE70, symBinAddr: 0xC7B0, symSize: 0x260 } + - { offsetInCU: 0x27, offset: 0x62C11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xF780, symSize: 0x20 } + - { offsetInCU: 0x62, offset: 0x62C4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCMa', symObjAddr: 0x20, symBinAddr: 0xF7A0, symSize: 0x14 } + - { offsetInCU: 0x149, offset: 0x62D33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS19EnvironmentSelectorCfD', symObjAddr: 0x0, symBinAddr: 0xF780, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x62D9E, size: 0x8, addend: 0x0, symName: ___swift_memcpy392_8, symObjAddr: 0x30, symBinAddr: 0xF7F0, symSize: 0x10 } + - { offsetInCU: 0x57, offset: 0x62DB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVMa', symObjAddr: 0x70, symBinAddr: 0xF830, symSize: 0x10 } + - { offsetInCU: 0xC9, offset: 0x62E24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x150, symBinAddr: 0xF910, symSize: 0x10 } + - { offsetInCU: 0x11C, offset: 0x62E77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x170, symBinAddr: 0xF930, symSize: 0x20 } + - { offsetInCU: 0x196, offset: 0x62EF1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0xF960, symSize: 0x10 } + - { offsetInCU: 0x1CB, offset: 0x62F26, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B0, symBinAddr: 0xF970, symSize: 0x20 } + - { offsetInCU: 0x1FC, offset: 0x62F57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1D0, symBinAddr: 0xF990, symSize: 0x10 } + - { offsetInCU: 0x218, offset: 0x62F73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1E0, symBinAddr: 0xF9A0, symSize: 0x10 } + - { offsetInCU: 0x234, offset: 0x62F8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x25B0, symBinAddr: 0x11D70, symSize: 0x370 } + - { offsetInCU: 0x3E4, offset: 0x6313F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1520, symBinAddr: 0x10CE0, symSize: 0x50 } + - { offsetInCU: 0x41B, offset: 0x63176, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1570, symBinAddr: 0x10D30, symSize: 0x50 } + - { offsetInCU: 0x43E, offset: 0x63199, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x2920, symBinAddr: 0x120E0, symSize: 0x14F0 } + - { offsetInCU: 0x49C, offset: 0x631F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x15C0, symBinAddr: 0x10D80, symSize: 0x10 } + - { offsetInCU: 0x4F4, offset: 0x6324F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x15D0, symBinAddr: 0x10D90, symSize: 0x30 } + - { offsetInCU: 0x5D8, offset: 0x63333, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1600, symBinAddr: 0x10DC0, symSize: 0x20 } + - { offsetInCU: 0x64A, offset: 0x633A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1650, symBinAddr: 0x10E10, symSize: 0x20 } + - { offsetInCU: 0x699, offset: 0x633F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1670, symBinAddr: 0x10E30, symSize: 0x70 } + - { offsetInCU: 0x6F3, offset: 0x6344E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x16E0, symBinAddr: 0x10EA0, symSize: 0x10 } + - { offsetInCU: 0x70F, offset: 0x6346A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x16F0, symBinAddr: 0x10EB0, symSize: 0x10 } + - { offsetInCU: 0x74C, offset: 0x634A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1740, symBinAddr: 0x10F00, symSize: 0x50 } + - { offsetInCU: 0x783, offset: 0x634DE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1790, symBinAddr: 0x10F50, symSize: 0x50 } + - { offsetInCU: 0x7A6, offset: 0x63501, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x3E10, symBinAddr: 0x135D0, symSize: 0x3A0 } + - { offsetInCU: 0x841, offset: 0x6359C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x1800, symBinAddr: 0x10FC0, symSize: 0x70 } + - { offsetInCU: 0x876, offset: 0x635D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1870, symBinAddr: 0x11030, symSize: 0x20 } + - { offsetInCU: 0x8A7, offset: 0x63602, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1890, symBinAddr: 0x11050, symSize: 0x10 } + - { offsetInCU: 0x8C3, offset: 0x6361E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x18A0, symBinAddr: 0x11060, symSize: 0x10 } + - { offsetInCU: 0x8DF, offset: 0x6363A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6630, symBinAddr: 0x15DA0, symSize: 0x170 } + - { offsetInCU: 0x9A8, offset: 0x63703, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x110B0, symSize: 0x50 } + - { offsetInCU: 0x9DF, offset: 0x6373A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1940, symBinAddr: 0x11100, symSize: 0x50 } + - { offsetInCU: 0xA02, offset: 0x6375D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x67A0, symBinAddr: 0x15F10, symSize: 0x320 } + - { offsetInCU: 0xA71, offset: 0x637CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x19B0, symBinAddr: 0x11170, symSize: 0x70 } + - { offsetInCU: 0xAA6, offset: 0x63801, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1A20, symBinAddr: 0x111E0, symSize: 0x20 } + - { offsetInCU: 0xAD7, offset: 0x63832, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x1A40, symBinAddr: 0x11200, symSize: 0x10 } + - { offsetInCU: 0xAF3, offset: 0x6384E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x1A50, symBinAddr: 0x11210, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x6386A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x6AC0, symBinAddr: 0x16230, symSize: 0x130 } + - { offsetInCU: 0xBBF, offset: 0x6391A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1AA0, symBinAddr: 0x11260, symSize: 0x40 } + - { offsetInCU: 0xBF6, offset: 0x63951, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1AE0, symBinAddr: 0x112A0, symSize: 0x40 } + - { offsetInCU: 0xC19, offset: 0x63974, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x6BF0, symBinAddr: 0x16360, symSize: 0x310 } + - { offsetInCU: 0xC7C, offset: 0x639D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1B40, symBinAddr: 0x11300, symSize: 0x60 } + - { offsetInCU: 0xCB1, offset: 0x63A0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x11360, symSize: 0x20 } + - { offsetInCU: 0xCE2, offset: 0x63A3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1BC0, symBinAddr: 0x11380, symSize: 0x10 } + - { offsetInCU: 0xCFE, offset: 0x63A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1BD0, symBinAddr: 0x11390, symSize: 0x10 } + - { offsetInCU: 0xD1A, offset: 0x63A75, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6F00, symBinAddr: 0x16670, symSize: 0x130 } + - { offsetInCU: 0xDCA, offset: 0x63B25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1C20, symBinAddr: 0x113E0, symSize: 0x50 } + - { offsetInCU: 0xE01, offset: 0x63B5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1C70, symBinAddr: 0x11430, symSize: 0x50 } + - { offsetInCU: 0xE24, offset: 0x63B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7030, symBinAddr: 0x167A0, symSize: 0x580 } + - { offsetInCU: 0xE93, offset: 0x63BEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1CE0, symBinAddr: 0x114A0, symSize: 0x90 } + - { offsetInCU: 0xEC8, offset: 0x63C23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1D70, symBinAddr: 0x11530, symSize: 0x20 } + - { offsetInCU: 0xEF9, offset: 0x63C54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1D90, symBinAddr: 0x11550, symSize: 0x10 } + - { offsetInCU: 0xF15, offset: 0x63C70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1DA0, symBinAddr: 0x11560, symSize: 0x10 } + - { offsetInCU: 0xF31, offset: 0x63C8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7640, symBinAddr: 0x16DB0, symSize: 0x220 } + - { offsetInCU: 0x1045, offset: 0x63DA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1DF0, symBinAddr: 0x115B0, symSize: 0x60 } + - { offsetInCU: 0x107C, offset: 0x63DD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1E50, symBinAddr: 0x11610, symSize: 0x70 } + - { offsetInCU: 0x109F, offset: 0x63DFA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7860, symBinAddr: 0x16FD0, symSize: 0x660 } + - { offsetInCU: 0x112C, offset: 0x63E87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1EC0, symBinAddr: 0x11680, symSize: 0x10 } + - { offsetInCU: 0x11A4, offset: 0x63EFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH9hashValueSivgTW', symObjAddr: 0x1ED0, symBinAddr: 0x11690, symSize: 0x40 } + - { offsetInCU: 0x1288, offset: 0x63FE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1F10, symBinAddr: 0x116D0, symSize: 0x20 } + - { offsetInCU: 0x130E, offset: 0x64069, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1F70, symBinAddr: 0x11730, symSize: 0x30 } + - { offsetInCU: 0x1358, offset: 0x640B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FA0, symBinAddr: 0x11760, symSize: 0x20 } + - { offsetInCU: 0x1389, offset: 0x640E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1FC0, symBinAddr: 0x11780, symSize: 0x10 } + - { offsetInCU: 0x13A5, offset: 0x64100, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FD0, symBinAddr: 0x11790, symSize: 0x10 } + - { offsetInCU: 0x13C1, offset: 0x6411C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x7EF0, symBinAddr: 0x17660, symSize: 0xB0 } + - { offsetInCU: 0x143F, offset: 0x6419A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2020, symBinAddr: 0x117E0, symSize: 0x30 } + - { offsetInCU: 0x1476, offset: 0x641D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2050, symBinAddr: 0x11810, symSize: 0x20 } + - { offsetInCU: 0x1499, offset: 0x641F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x7FA0, symBinAddr: 0x17710, symSize: 0x180 } + - { offsetInCU: 0x1514, offset: 0x6426F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValueSSvgTW', symObjAddr: 0x2090, symBinAddr: 0x11850, symSize: 0x80 } + - { offsetInCU: 0x1549, offset: 0x642A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP11stringValuexSgSS_tcfCTW', symObjAddr: 0x2110, symBinAddr: 0x118D0, symSize: 0x20 } + - { offsetInCU: 0x157A, offset: 0x642D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValueSiSgvgTW', symObjAddr: 0x2130, symBinAddr: 0x118F0, symSize: 0x10 } + - { offsetInCU: 0x1596, offset: 0x642F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAsAIP8intValuexSgSi_tcfCTW', symObjAddr: 0x2140, symBinAddr: 0x11900, symSize: 0x10 } + - { offsetInCU: 0x15B2, offset: 0x6430D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAHSgSS_tcfCTf4nd_n', symObjAddr: 0x8150, symBinAddr: 0x178C0, symSize: 0x1F0 } + - { offsetInCU: 0x16AD, offset: 0x64408, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2190, symBinAddr: 0x11950, symSize: 0x50 } + - { offsetInCU: 0x16E4, offset: 0x6443F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x21E0, symBinAddr: 0x119A0, symSize: 0x50 } + - { offsetInCU: 0x1707, offset: 0x64462, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV4fromAEs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8340, symBinAddr: 0x17AB0, symSize: 0x3A0 } + - { offsetInCU: 0x176A, offset: 0x644C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2250, symBinAddr: 0x11A10, symSize: 0x80 } + - { offsetInCU: 0x179F, offset: 0x644FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x22D0, symBinAddr: 0x11A90, symSize: 0x20 } + - { offsetInCU: 0x17D0, offset: 0x6452B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x22F0, symBinAddr: 0x11AB0, symSize: 0x10 } + - { offsetInCU: 0x17EC, offset: 0x64547, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x2300, symBinAddr: 0x11AC0, symSize: 0x10 } + - { offsetInCU: 0x1808, offset: 0x64563, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x86E0, symBinAddr: 0x17E50, symSize: 0x1A0 } + - { offsetInCU: 0x18EA, offset: 0x64645, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2350, symBinAddr: 0x11B10, symSize: 0x50 } + - { offsetInCU: 0x1921, offset: 0x6467C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x23A0, symBinAddr: 0x11B60, symSize: 0x50 } + - { offsetInCU: 0x1944, offset: 0x6469F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8880, symBinAddr: 0x17FF0, symSize: 0x3D0 } + - { offsetInCU: 0x19C7, offset: 0x64722, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x11C50, symSize: 0x20 } + - { offsetInCU: 0x1A11, offset: 0x6476C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24B0, symBinAddr: 0x11C70, symSize: 0x20 } + - { offsetInCU: 0x1A42, offset: 0x6479D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24D0, symBinAddr: 0x11C90, symSize: 0x10 } + - { offsetInCU: 0x1A5E, offset: 0x647B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24E0, symBinAddr: 0x11CA0, symSize: 0x10 } + - { offsetInCU: 0x1A7A, offset: 0x647D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8CB0, symBinAddr: 0x18420, symSize: 0xF0 } + - { offsetInCU: 0x1B11, offset: 0x6486C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2530, symBinAddr: 0x11CF0, symSize: 0x40 } + - { offsetInCU: 0x1B48, offset: 0x648A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2570, symBinAddr: 0x11D30, symSize: 0x40 } + - { offsetInCU: 0x1B6B, offset: 0x648C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x8DA0, symBinAddr: 0x18510, symSize: 0x1C0 } + - { offsetInCU: 0x1BA8, offset: 0x64903, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_1, symObjAddr: 0x41F0, symBinAddr: 0x13970, symSize: 0x30 } + - { offsetInCU: 0x1BBC, offset: 0x64917, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x4220, symBinAddr: 0x139A0, symSize: 0x30 } + - { offsetInCU: 0x1BD0, offset: 0x6492B, size: 0x8, addend: 0x0, symName: ___swift_destroy_boxed_opaque_existential_1, symObjAddr: 0x4250, symBinAddr: 0x139D0, symSize: 0x30 } + - { offsetInCU: 0x1BE4, offset: 0x6493F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESeAAWl', symObjAddr: 0x4280, symBinAddr: 0x13A00, symSize: 0x30 } + - { offsetInCU: 0x1BF8, offset: 0x64953, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVAESEAAWl', symObjAddr: 0x42B0, symBinAddr: 0x13A30, symSize: 0x30 } + - { offsetInCU: 0x1C0C, offset: 0x64967, size: 0x8, addend: 0x0, symName: ___swift_memcpy0_1, symObjAddr: 0x42E0, symBinAddr: 0x13A60, symSize: 0x10 } + - { offsetInCU: 0x1C20, offset: 0x6497B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x4300, symBinAddr: 0x13A70, symSize: 0x50 } + - { offsetInCU: 0x1C34, offset: 0x6498F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x4350, symBinAddr: 0x13AC0, symSize: 0xA0 } + - { offsetInCU: 0x1C48, offset: 0x649A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x43F0, symBinAddr: 0x13B60, symSize: 0x10 } + - { offsetInCU: 0x1C5C, offset: 0x649B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x4400, symBinAddr: 0x13B70, symSize: 0x10 } + - { offsetInCU: 0x1C70, offset: 0x649CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x4410, symBinAddr: 0x13B80, symSize: 0x10 } + - { offsetInCU: 0x1C84, offset: 0x649DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x4420, symBinAddr: 0x13B90, symSize: 0x10 } + - { offsetInCU: 0x1C98, offset: 0x649F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVwCP', symObjAddr: 0x4430, symBinAddr: 0x13BA0, symSize: 0x30 } + - { offsetInCU: 0x1CAC, offset: 0x64A07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DVMa', symObjAddr: 0x5180, symBinAddr: 0x148F0, symSize: 0x10 } + - { offsetInCU: 0x1CC0, offset: 0x64A1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x5190, symBinAddr: 0x14900, symSize: 0x10 } + - { offsetInCU: 0x1CD4, offset: 0x64A2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x51A0, symBinAddr: 0x14910, symSize: 0x30 } + - { offsetInCU: 0x1CE8, offset: 0x64A43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x51D0, symBinAddr: 0x14940, symSize: 0x10 } + - { offsetInCU: 0x1CFC, offset: 0x64A57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x51E0, symBinAddr: 0x14950, symSize: 0x30 } + - { offsetInCU: 0x1D10, offset: 0x64A6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x5210, symBinAddr: 0x14980, symSize: 0x10 } + - { offsetInCU: 0x1D24, offset: 0x64A7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x5220, symBinAddr: 0x14990, symSize: 0x30 } + - { offsetInCU: 0x1D38, offset: 0x64A93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0E3KeyAAWl', symObjAddr: 0x5250, symBinAddr: 0x149C0, symSize: 0x30 } + - { offsetInCU: 0x1D4C, offset: 0x64AA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSeAAWl', symObjAddr: 0x5280, symBinAddr: 0x149F0, symSize: 0x30 } + - { offsetInCU: 0x1D60, offset: 0x64ABB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSeAAWl', symObjAddr: 0x52B0, symBinAddr: 0x14A20, symSize: 0x30 } + - { offsetInCU: 0x1D74, offset: 0x64ACF, size: 0x8, addend: 0x0, symName: ___swift_instantiateConcreteTypeFromMangledNameAbstract, symObjAddr: 0x52E0, symBinAddr: 0x14A50, symSize: 0x40 } + - { offsetInCU: 0x1D88, offset: 0x64AE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSeAAWl', symObjAddr: 0x5320, symBinAddr: 0x14A90, symSize: 0x30 } + - { offsetInCU: 0x1D9C, offset: 0x64AF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSeAAWl', symObjAddr: 0x5350, symBinAddr: 0x14AC0, symSize: 0x30 } + - { offsetInCU: 0x1DB0, offset: 0x64B0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSeAAWl', symObjAddr: 0x5380, symBinAddr: 0x14AF0, symSize: 0x30 } + - { offsetInCU: 0x1DC4, offset: 0x64B1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVACSEAAWl', symObjAddr: 0x53B0, symBinAddr: 0x14B20, symSize: 0x30 } + - { offsetInCU: 0x1DD8, offset: 0x64B33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVACSEAAWl', symObjAddr: 0x53E0, symBinAddr: 0x14B50, symSize: 0x30 } + - { offsetInCU: 0x1DEC, offset: 0x64B47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVACSEAAWl', symObjAddr: 0x5410, symBinAddr: 0x14B80, symSize: 0x30 } + - { offsetInCU: 0x1E00, offset: 0x64B5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVACSEAAWl', symObjAddr: 0x5440, symBinAddr: 0x14BB0, symSize: 0x30 } + - { offsetInCU: 0x1E14, offset: 0x64B6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVACSEAAWl', symObjAddr: 0x5470, symBinAddr: 0x14BE0, symSize: 0x30 } + - { offsetInCU: 0x1E28, offset: 0x64B83, size: 0x8, addend: 0x0, symName: ___swift_memcpy1_1, symObjAddr: 0x54A0, symBinAddr: 0x14C10, symSize: 0x10 } + - { offsetInCU: 0x1E3C, offset: 0x64B97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x54B0, symBinAddr: 0x14C20, symSize: 0x80 } + - { offsetInCU: 0x1E50, offset: 0x64BAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x5530, symBinAddr: 0x14CA0, symSize: 0xD0 } + - { offsetInCU: 0x1E64, offset: 0x64BBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x5600, symBinAddr: 0x14D70, symSize: 0x10 } + - { offsetInCU: 0x1E78, offset: 0x64BD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x5610, symBinAddr: 0x14D80, symSize: 0x10 } + - { offsetInCU: 0x1E8C, offset: 0x64BE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x5620, symBinAddr: 0x14D90, symSize: 0x10 } + - { offsetInCU: 0x1EA0, offset: 0x64BFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x5630, symBinAddr: 0x14DA0, symSize: 0x10 } + - { offsetInCU: 0x1EB4, offset: 0x64C0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwxx', symObjAddr: 0x5640, symBinAddr: 0x14DB0, symSize: 0x30 } + - { offsetInCU: 0x1EC8, offset: 0x64C23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwcp', symObjAddr: 0x5670, symBinAddr: 0x14DE0, symSize: 0x40 } + - { offsetInCU: 0x1EDC, offset: 0x64C37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwca', symObjAddr: 0x56B0, symBinAddr: 0x14E20, symSize: 0x70 } + - { offsetInCU: 0x1EF0, offset: 0x64C4B, size: 0x8, addend: 0x0, symName: ___swift_memcpy40_8, symObjAddr: 0x5720, symBinAddr: 0x14E90, symSize: 0x20 } + - { offsetInCU: 0x1F04, offset: 0x64C5F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwta', symObjAddr: 0x5740, symBinAddr: 0x14EB0, symSize: 0x50 } + - { offsetInCU: 0x1F18, offset: 0x64C73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwet', symObjAddr: 0x5790, symBinAddr: 0x14F00, symSize: 0x40 } + - { offsetInCU: 0x1F2C, offset: 0x64C87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVwst', symObjAddr: 0x57D0, symBinAddr: 0x14F40, symSize: 0x40 } + - { offsetInCU: 0x1F40, offset: 0x64C9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETVMa', symObjAddr: 0x5810, symBinAddr: 0x14F80, symSize: 0x10 } + - { offsetInCU: 0x1F54, offset: 0x64CAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwxx', symObjAddr: 0x5820, symBinAddr: 0x14F90, symSize: 0x40 } + - { offsetInCU: 0x1F68, offset: 0x64CC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwcp', symObjAddr: 0x5860, symBinAddr: 0x14FD0, symSize: 0x80 } + - { offsetInCU: 0x1F7C, offset: 0x64CD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwca', symObjAddr: 0x58E0, symBinAddr: 0x15050, symSize: 0xB0 } + - { offsetInCU: 0x1F90, offset: 0x64CEB, size: 0x8, addend: 0x0, symName: ___swift_memcpy80_8, symObjAddr: 0x5990, symBinAddr: 0x15100, symSize: 0x30 } + - { offsetInCU: 0x1FA4, offset: 0x64CFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwta', symObjAddr: 0x59C0, symBinAddr: 0x15130, symSize: 0x80 } + - { offsetInCU: 0x1FB8, offset: 0x64D13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwet', symObjAddr: 0x5A40, symBinAddr: 0x151B0, symSize: 0x40 } + - { offsetInCU: 0x1FCC, offset: 0x64D27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVwst', symObjAddr: 0x5A80, symBinAddr: 0x151F0, symSize: 0x50 } + - { offsetInCU: 0x1FE0, offset: 0x64D3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTVMa', symObjAddr: 0x5AD0, symBinAddr: 0x15240, symSize: 0x10 } + - { offsetInCU: 0x1FF4, offset: 0x64D4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwxx', symObjAddr: 0x5AE0, symBinAddr: 0x15250, symSize: 0x30 } + - { offsetInCU: 0x2008, offset: 0x64D63, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwcp', symObjAddr: 0x5B10, symBinAddr: 0x15280, symSize: 0x40 } + - { offsetInCU: 0x201C, offset: 0x64D77, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwca', symObjAddr: 0x5B50, symBinAddr: 0x152C0, symSize: 0x60 } + - { offsetInCU: 0x2030, offset: 0x64D8B, size: 0x8, addend: 0x0, symName: ___swift_memcpy32_8, symObjAddr: 0x5BB0, symBinAddr: 0x15320, symSize: 0x20 } + - { offsetInCU: 0x2044, offset: 0x64D9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwta', symObjAddr: 0x5BD0, symBinAddr: 0x15340, symSize: 0x50 } + - { offsetInCU: 0x2058, offset: 0x64DB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwet', symObjAddr: 0x5C20, symBinAddr: 0x15390, symSize: 0x40 } + - { offsetInCU: 0x206C, offset: 0x64DC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVwst', symObjAddr: 0x5C60, symBinAddr: 0x153D0, symSize: 0x50 } + - { offsetInCU: 0x2080, offset: 0x64DDB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDVMa', symObjAddr: 0x5CB0, symBinAddr: 0x15420, symSize: 0x10 } + - { offsetInCU: 0x2094, offset: 0x64DEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwxx', symObjAddr: 0x5CC0, symBinAddr: 0x15430, symSize: 0x50 } + - { offsetInCU: 0x20A8, offset: 0x64E03, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwcp', symObjAddr: 0x5D10, symBinAddr: 0x15480, symSize: 0xE0 } + - { offsetInCU: 0x20BC, offset: 0x64E17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwca', symObjAddr: 0x5DF0, symBinAddr: 0x15560, symSize: 0x110 } + - { offsetInCU: 0x20D0, offset: 0x64E2B, size: 0x8, addend: 0x0, symName: ___swift_memcpy120_8, symObjAddr: 0x5F00, symBinAddr: 0x15670, symSize: 0x50 } + - { offsetInCU: 0x20E4, offset: 0x64E3F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwta', symObjAddr: 0x5F50, symBinAddr: 0x156C0, symSize: 0xD0 } + - { offsetInCU: 0x20F8, offset: 0x64E53, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwet', symObjAddr: 0x6020, symBinAddr: 0x15790, symSize: 0x40 } + - { offsetInCU: 0x210C, offset: 0x64E67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVwst', symObjAddr: 0x6060, symBinAddr: 0x157D0, symSize: 0x60 } + - { offsetInCU: 0x2120, offset: 0x64E7B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PVMa', symObjAddr: 0x60C0, symBinAddr: 0x15830, symSize: 0x10 } + - { offsetInCU: 0x2134, offset: 0x64E8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwxx', symObjAddr: 0x60D0, symBinAddr: 0x15840, symSize: 0x60 } + - { offsetInCU: 0x2148, offset: 0x64EA3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwcp', symObjAddr: 0x6130, symBinAddr: 0x158A0, symSize: 0x110 } + - { offsetInCU: 0x215C, offset: 0x64EB7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwca', symObjAddr: 0x6240, symBinAddr: 0x159B0, symSize: 0x160 } + - { offsetInCU: 0x2170, offset: 0x64ECB, size: 0x8, addend: 0x0, symName: ___swift_memcpy152_8, symObjAddr: 0x63A0, symBinAddr: 0x15B10, symSize: 0x10 } + - { offsetInCU: 0x2184, offset: 0x64EDF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwta', symObjAddr: 0x63B0, symBinAddr: 0x15B20, symSize: 0x100 } + - { offsetInCU: 0x2198, offset: 0x64EF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwet', symObjAddr: 0x64B0, symBinAddr: 0x15C20, symSize: 0x40 } + - { offsetInCU: 0x21AC, offset: 0x64F07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVwst', symObjAddr: 0x64F0, symBinAddr: 0x15C60, symSize: 0x70 } + - { offsetInCU: 0x21C0, offset: 0x64F1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCVMa', symObjAddr: 0x6560, symBinAddr: 0x15CD0, symSize: 0x10 } + - { offsetInCU: 0x21D4, offset: 0x64F2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x6570, symBinAddr: 0x15CE0, symSize: 0x10 } + - { offsetInCU: 0x21E8, offset: 0x64F43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0x6580, symBinAddr: 0x15CF0, symSize: 0x30 } + - { offsetInCU: 0x21FC, offset: 0x64F57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x65B0, symBinAddr: 0x15D20, symSize: 0x10 } + - { offsetInCU: 0x2210, offset: 0x64F6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x65C0, symBinAddr: 0x15D30, symSize: 0x30 } + - { offsetInCU: 0x2224, offset: 0x64F7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x65F0, symBinAddr: 0x15D60, symSize: 0x10 } + - { offsetInCU: 0x2238, offset: 0x64F93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0x6600, symBinAddr: 0x15D70, symSize: 0x30 } + - { offsetInCU: 0x224C, offset: 0x64FA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x75B0, symBinAddr: 0x16D20, symSize: 0x30 } + - { offsetInCU: 0x2260, offset: 0x64FBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESeAAWl', symObjAddr: 0x75E0, symBinAddr: 0x16D50, symSize: 0x30 } + - { offsetInCU: 0x2274, offset: 0x64FCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESeAAWl', symObjAddr: 0x7610, symBinAddr: 0x16D80, symSize: 0x30 } + - { offsetInCU: 0x2288, offset: 0x64FE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0D3KeyAAWl', symObjAddr: 0x7EC0, symBinAddr: 0x17630, symSize: 0x30 } + - { offsetInCU: 0x229C, offset: 0x64FF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8120, symBinAddr: 0x17890, symSize: 0x30 } + - { offsetInCU: 0x22B0, offset: 0x6500B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8C50, symBinAddr: 0x183C0, symSize: 0x30 } + - { offsetInCU: 0x22C4, offset: 0x6501F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESeAAWl', symObjAddr: 0x8C80, symBinAddr: 0x183F0, symSize: 0x30 } + - { offsetInCU: 0x22D8, offset: 0x65033, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs0E3KeyAAWl', symObjAddr: 0x8F60, symBinAddr: 0x186D0, symSize: 0x30 } + - { offsetInCU: 0x22EC, offset: 0x65047, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVAESEAAWl', symObjAddr: 0x8F90, symBinAddr: 0x18700, symSize: 0x30 } + - { offsetInCU: 0x2300, offset: 0x6505B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVAESEAAWl', symObjAddr: 0x8FC0, symBinAddr: 0x18730, symSize: 0x30 } + - { offsetInCU: 0x2314, offset: 0x6506F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVAESEAAWl', symObjAddr: 0x9050, symBinAddr: 0x187C0, symSize: 0x30 } + - { offsetInCU: 0x2328, offset: 0x65083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9080, symBinAddr: 0x187F0, symSize: 0x80 } + - { offsetInCU: 0x233C, offset: 0x65097, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9100, symBinAddr: 0x18870, symSize: 0xD0 } + - { offsetInCU: 0x2350, offset: 0x650AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x91D0, symBinAddr: 0x18940, symSize: 0x10 } + - { offsetInCU: 0x2364, offset: 0x650BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x91E0, symBinAddr: 0x18950, symSize: 0x10 } + - { offsetInCU: 0x2378, offset: 0x650D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x91F0, symBinAddr: 0x18960, symSize: 0x80 } + - { offsetInCU: 0x238C, offset: 0x650E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9270, symBinAddr: 0x189E0, symSize: 0xD0 } + - { offsetInCU: 0x23A0, offset: 0x650FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9340, symBinAddr: 0x18AB0, symSize: 0x10 } + - { offsetInCU: 0x23B4, offset: 0x6510F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9350, symBinAddr: 0x18AC0, symSize: 0x10 } + - { offsetInCU: 0x23C8, offset: 0x65123, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x9360, symBinAddr: 0x18AD0, symSize: 0x80 } + - { offsetInCU: 0x23DC, offset: 0x65137, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x93E0, symBinAddr: 0x18B50, symSize: 0xD0 } + - { offsetInCU: 0x23F0, offset: 0x6514B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwug', symObjAddr: 0x94B0, symBinAddr: 0x18C20, symSize: 0x10 } + - { offsetInCU: 0x2404, offset: 0x6515F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x94C0, symBinAddr: 0x18C30, symSize: 0x10 } + - { offsetInCU: 0x2418, offset: 0x65173, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwui', symObjAddr: 0x94D0, symBinAddr: 0x18C40, symSize: 0x10 } + - { offsetInCU: 0x242C, offset: 0x65187, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x94E0, symBinAddr: 0x18C50, symSize: 0x10 } + - { offsetInCU: 0x2440, offset: 0x6519B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0x94F0, symBinAddr: 0x18C60, symSize: 0x80 } + - { offsetInCU: 0x2454, offset: 0x651AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0x9570, symBinAddr: 0x18CE0, symSize: 0xD0 } + - { offsetInCU: 0x2468, offset: 0x651C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9640, symBinAddr: 0x18DB0, symSize: 0x10 } + - { offsetInCU: 0x247C, offset: 0x651D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9650, symBinAddr: 0x18DC0, symSize: 0x10 } + - { offsetInCU: 0x2490, offset: 0x651EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0x9680, symBinAddr: 0x18DF0, symSize: 0x10 } + - { offsetInCU: 0x24A4, offset: 0x651FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0x9690, symBinAddr: 0x18E00, symSize: 0x10 } + - { offsetInCU: 0x24B8, offset: 0x65213, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwxx', symObjAddr: 0x96A0, symBinAddr: 0x18E10, symSize: 0x40 } + - { offsetInCU: 0x24CC, offset: 0x65227, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwcp', symObjAddr: 0x96E0, symBinAddr: 0x18E50, symSize: 0x80 } + - { offsetInCU: 0x24E0, offset: 0x6523B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwca', symObjAddr: 0x9760, symBinAddr: 0x18ED0, symSize: 0xC0 } + - { offsetInCU: 0x24F4, offset: 0x6524F, size: 0x8, addend: 0x0, symName: ___swift_memcpy88_8, symObjAddr: 0x9820, symBinAddr: 0x18F90, symSize: 0x40 } + - { offsetInCU: 0x2508, offset: 0x65263, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwta', symObjAddr: 0x9860, symBinAddr: 0x18FD0, symSize: 0x90 } + - { offsetInCU: 0x251C, offset: 0x65277, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwet', symObjAddr: 0x98F0, symBinAddr: 0x19060, symSize: 0x40 } + - { offsetInCU: 0x2530, offset: 0x6528B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVwst', symObjAddr: 0x9930, symBinAddr: 0x190A0, symSize: 0x50 } + - { offsetInCU: 0x2544, offset: 0x6529F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDVMa', symObjAddr: 0x9980, symBinAddr: 0x190F0, symSize: 0x10 } + - { offsetInCU: 0x2558, offset: 0x652B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwxx', symObjAddr: 0x9990, symBinAddr: 0x19100, symSize: 0x40 } + - { offsetInCU: 0x256C, offset: 0x652C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwcp', symObjAddr: 0x99D0, symBinAddr: 0x19140, symSize: 0x80 } + - { offsetInCU: 0x2580, offset: 0x652DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwca', symObjAddr: 0x9A50, symBinAddr: 0x191C0, symSize: 0xA0 } + - { offsetInCU: 0x2594, offset: 0x652EF, size: 0x8, addend: 0x0, symName: ___swift_memcpy64_8, symObjAddr: 0x9AF0, symBinAddr: 0x19260, symSize: 0x30 } + - { offsetInCU: 0x25A8, offset: 0x65303, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwta', symObjAddr: 0x9B20, symBinAddr: 0x19290, symSize: 0x80 } + - { offsetInCU: 0x25BC, offset: 0x65317, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwet', symObjAddr: 0x9BA0, symBinAddr: 0x19310, symSize: 0x40 } + - { offsetInCU: 0x25D0, offset: 0x6532B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVwst', symObjAddr: 0x9BE0, symBinAddr: 0x19350, symSize: 0x50 } + - { offsetInCU: 0x25E4, offset: 0x6533F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGVMa', symObjAddr: 0x9C30, symBinAddr: 0x193A0, symSize: 0x10 } + - { offsetInCU: 0x25F8, offset: 0x65353, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwxx', symObjAddr: 0x9C40, symBinAddr: 0x193B0, symSize: 0x40 } + - { offsetInCU: 0x260C, offset: 0x65367, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwcp', symObjAddr: 0x9C80, symBinAddr: 0x193F0, symSize: 0x80 } + - { offsetInCU: 0x2620, offset: 0x6537B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwca', symObjAddr: 0x9D00, symBinAddr: 0x19470, symSize: 0xB0 } + - { offsetInCU: 0x2634, offset: 0x6538F, size: 0x8, addend: 0x0, symName: ___swift_memcpy72_8, symObjAddr: 0x9DB0, symBinAddr: 0x19520, symSize: 0x30 } + - { offsetInCU: 0x2648, offset: 0x653A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwta', symObjAddr: 0x9DE0, symBinAddr: 0x19550, symSize: 0x80 } + - { offsetInCU: 0x265C, offset: 0x653B7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwet', symObjAddr: 0x9E60, symBinAddr: 0x195D0, symSize: 0x40 } + - { offsetInCU: 0x2670, offset: 0x653CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVwst', symObjAddr: 0x9EA0, symBinAddr: 0x19610, symSize: 0x50 } + - { offsetInCU: 0x2684, offset: 0x653DF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBVMa', symObjAddr: 0x9EF0, symBinAddr: 0x19660, symSize: 0x10 } + - { offsetInCU: 0x2698, offset: 0x653F3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F00, symBinAddr: 0x19670, symSize: 0x10 } + - { offsetInCU: 0x26AC, offset: 0x65407, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9F10, symBinAddr: 0x19680, symSize: 0x30 } + - { offsetInCU: 0x26C0, offset: 0x6541B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F40, symBinAddr: 0x196B0, symSize: 0x10 } + - { offsetInCU: 0x26D4, offset: 0x6542F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9F50, symBinAddr: 0x196C0, symSize: 0x30 } + - { offsetInCU: 0x26E8, offset: 0x65443, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9F80, symBinAddr: 0x196F0, symSize: 0x10 } + - { offsetInCU: 0x26FC, offset: 0x65457, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9F90, symBinAddr: 0x19700, symSize: 0x30 } + - { offsetInCU: 0x2710, offset: 0x6546B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0x9FC0, symBinAddr: 0x19730, symSize: 0x10 } + - { offsetInCU: 0x2724, offset: 0x6547F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0x9FD0, symBinAddr: 0x19740, symSize: 0x30 } + - { offsetInCU: 0x2738, offset: 0x65493, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA000, symBinAddr: 0x19770, symSize: 0x10 } + - { offsetInCU: 0x274C, offset: 0x654A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFSQAAWl', symObjAddr: 0xA010, symBinAddr: 0x19780, symSize: 0x30 } + - { offsetInCU: 0x2760, offset: 0x654BB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA040, symBinAddr: 0x197B0, symSize: 0x10 } + - { offsetInCU: 0x2774, offset: 0x654CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA050, symBinAddr: 0x197C0, symSize: 0x30 } + - { offsetInCU: 0x2788, offset: 0x654E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA080, symBinAddr: 0x197F0, symSize: 0x10 } + - { offsetInCU: 0x279C, offset: 0x654F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA090, symBinAddr: 0x19800, symSize: 0x30 } + - { offsetInCU: 0x27B0, offset: 0x6550B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA0C0, symBinAddr: 0x19830, symSize: 0x10 } + - { offsetInCU: 0x27C4, offset: 0x6551F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA0D0, symBinAddr: 0x19840, symSize: 0x30 } + - { offsetInCU: 0x27D8, offset: 0x65533, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA100, symBinAddr: 0x19870, symSize: 0x10 } + - { offsetInCU: 0x27EC, offset: 0x65547, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA110, symBinAddr: 0x19880, symSize: 0x30 } + - { offsetInCU: 0x2800, offset: 0x6555B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA140, symBinAddr: 0x198B0, symSize: 0x10 } + - { offsetInCU: 0x2814, offset: 0x6556F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA150, symBinAddr: 0x198C0, symSize: 0x30 } + - { offsetInCU: 0x2828, offset: 0x65583, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA180, symBinAddr: 0x198F0, symSize: 0x10 } + - { offsetInCU: 0x283C, offset: 0x65597, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA190, symBinAddr: 0x19900, symSize: 0x30 } + - { offsetInCU: 0x2850, offset: 0x655AB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA1C0, symBinAddr: 0x19930, symSize: 0x10 } + - { offsetInCU: 0x2864, offset: 0x655BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA1D0, symBinAddr: 0x19940, symSize: 0x30 } + - { offsetInCU: 0x2878, offset: 0x655D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0D3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA200, symBinAddr: 0x19970, symSize: 0x10 } + - { offsetInCU: 0x288C, offset: 0x655E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA210, symBinAddr: 0x19980, symSize: 0x30 } + - { offsetInCU: 0x28A0, offset: 0x655FB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA240, symBinAddr: 0x199B0, symSize: 0x10 } + - { offsetInCU: 0x28B4, offset: 0x6560F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA250, symBinAddr: 0x199C0, symSize: 0x30 } + - { offsetInCU: 0x28C8, offset: 0x65623, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA280, symBinAddr: 0x199F0, symSize: 0x10 } + - { offsetInCU: 0x28DC, offset: 0x65637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xA290, symBinAddr: 0x19A00, symSize: 0x30 } + - { offsetInCU: 0x28F0, offset: 0x6564B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0xA2C0, symBinAddr: 0x19A30, symSize: 0x30 } + - { offsetInCU: 0x2904, offset: 0x6565F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0xA2F0, symBinAddr: 0x19A60, symSize: 0x30 } + - { offsetInCU: 0x2918, offset: 0x65673, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs0F3KeyAAWl', symObjAddr: 0xA320, symBinAddr: 0x19A90, symSize: 0x30 } + - { offsetInCU: 0x292C, offset: 0x65687, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0xA350, symBinAddr: 0x19AC0, symSize: 0x80 } + - { offsetInCU: 0x2940, offset: 0x6569B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA3D0, symBinAddr: 0x19B40, symSize: 0xD0 } + - { offsetInCU: 0x2954, offset: 0x656AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA4A0, symBinAddr: 0x19C10, symSize: 0x10 } + - { offsetInCU: 0x2968, offset: 0x656C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA4B0, symBinAddr: 0x19C20, symSize: 0x10 } + - { offsetInCU: 0x297C, offset: 0x656D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA630, symBinAddr: 0x19DA0, symSize: 0x10 } + - { offsetInCU: 0x2990, offset: 0x656EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA640, symBinAddr: 0x19DB0, symSize: 0x10 } + - { offsetInCU: 0x29A4, offset: 0x656FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwet', symObjAddr: 0xA650, symBinAddr: 0x19DC0, symSize: 0x80 } + - { offsetInCU: 0x29B8, offset: 0x65713, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwst', symObjAddr: 0xA6D0, symBinAddr: 0x19E40, symSize: 0xD0 } + - { offsetInCU: 0x29CC, offset: 0x65727, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOwup', symObjAddr: 0xA7A0, symBinAddr: 0x19F10, symSize: 0x10 } + - { offsetInCU: 0x29E0, offset: 0x6573B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOMa', symObjAddr: 0xA7B0, symBinAddr: 0x19F20, symSize: 0x10 } + - { offsetInCU: 0x29F4, offset: 0x6574F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA7C0, symBinAddr: 0x19F30, symSize: 0x10 } + - { offsetInCU: 0x2A08, offset: 0x65763, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA7D0, symBinAddr: 0x19F40, symSize: 0x30 } + - { offsetInCU: 0x2A1C, offset: 0x65777, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA800, symBinAddr: 0x19F70, symSize: 0x10 } + - { offsetInCU: 0x2A30, offset: 0x6578B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA810, symBinAddr: 0x19F80, symSize: 0x30 } + - { offsetInCU: 0x2A44, offset: 0x6579F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASQWb', symObjAddr: 0xA840, symBinAddr: 0x19FB0, symSize: 0x10 } + - { offsetInCU: 0x2A58, offset: 0x657B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHSQAAWl', symObjAddr: 0xA850, symBinAddr: 0x19FC0, symSize: 0x30 } + - { offsetInCU: 0x2A6C, offset: 0x657C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA880, symBinAddr: 0x19FF0, symSize: 0x10 } + - { offsetInCU: 0x2A80, offset: 0x657DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA890, symBinAddr: 0x1A000, symSize: 0x30 } + - { offsetInCU: 0x2A94, offset: 0x657EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA8C0, symBinAddr: 0x1A030, symSize: 0x10 } + - { offsetInCU: 0x2AA8, offset: 0x65803, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA8D0, symBinAddr: 0x1A040, symSize: 0x30 } + - { offsetInCU: 0x2ABC, offset: 0x65817, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA900, symBinAddr: 0x1A070, symSize: 0x10 } + - { offsetInCU: 0x2AD0, offset: 0x6582B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA910, symBinAddr: 0x1A080, symSize: 0x30 } + - { offsetInCU: 0x2AE4, offset: 0x6583F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA940, symBinAddr: 0x1A0B0, symSize: 0x10 } + - { offsetInCU: 0x2AF8, offset: 0x65853, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA950, symBinAddr: 0x1A0C0, symSize: 0x30 } + - { offsetInCU: 0x2B0C, offset: 0x65867, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xA980, symBinAddr: 0x1A0F0, symSize: 0x10 } + - { offsetInCU: 0x2B20, offset: 0x6587B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xA990, symBinAddr: 0x1A100, symSize: 0x30 } + - { offsetInCU: 0x2B34, offset: 0x6588F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xA9C0, symBinAddr: 0x1A130, symSize: 0x10 } + - { offsetInCU: 0x2B48, offset: 0x658A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOAHs23CustomStringConvertibleAAWl', symObjAddr: 0xA9D0, symBinAddr: 0x1A140, symSize: 0x30 } + - { offsetInCU: 0x2BA2, offset: 0x658FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1F0, symBinAddr: 0xF9B0, symSize: 0x20 } + - { offsetInCU: 0x2BBE, offset: 0x65919, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x210, symBinAddr: 0xF9D0, symSize: 0x20 } + - { offsetInCU: 0x2C29, offset: 0x65984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1620, symBinAddr: 0x10DE0, symSize: 0x30 } + - { offsetInCU: 0x2CEA, offset: 0x65A45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x10EC0, symSize: 0x20 } + - { offsetInCU: 0x2D06, offset: 0x65A61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1720, symBinAddr: 0x10EE0, symSize: 0x20 } + - { offsetInCU: 0x2D28, offset: 0x65A83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x11070, symSize: 0x20 } + - { offsetInCU: 0x2D44, offset: 0x65A9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x18D0, symBinAddr: 0x11090, symSize: 0x20 } + - { offsetInCU: 0x2D66, offset: 0x65AC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x1A60, symBinAddr: 0x11220, symSize: 0x20 } + - { offsetInCU: 0x2D82, offset: 0x65ADD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x1A80, symBinAddr: 0x11240, symSize: 0x20 } + - { offsetInCU: 0x2DA4, offset: 0x65AFF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1BE0, symBinAddr: 0x113A0, symSize: 0x20 } + - { offsetInCU: 0x2DC0, offset: 0x65B1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1C00, symBinAddr: 0x113C0, symSize: 0x20 } + - { offsetInCU: 0x2DE2, offset: 0x65B3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1DB0, symBinAddr: 0x11570, symSize: 0x20 } + - { offsetInCU: 0x2DFE, offset: 0x65B59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1DD0, symBinAddr: 0x11590, symSize: 0x20 } + - { offsetInCU: 0x2E51, offset: 0x65BAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1F30, symBinAddr: 0x116F0, symSize: 0x40 } + - { offsetInCU: 0x2EF4, offset: 0x65C4F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1FE0, symBinAddr: 0x117A0, symSize: 0x20 } + - { offsetInCU: 0x2F10, offset: 0x65C6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2000, symBinAddr: 0x117C0, symSize: 0x20 } + - { offsetInCU: 0x2F32, offset: 0x65C8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAIP16debugDescriptionSSvgTW', symObjAddr: 0x2150, symBinAddr: 0x11910, symSize: 0x20 } + - { offsetInCU: 0x2F4E, offset: 0x65CA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAIP11descriptionSSvgTW', symObjAddr: 0x2170, symBinAddr: 0x11930, symSize: 0x20 } + - { offsetInCU: 0x2F70, offset: 0x65CCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x2310, symBinAddr: 0x11AD0, symSize: 0x20 } + - { offsetInCU: 0x2F8C, offset: 0x65CE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2330, symBinAddr: 0x11AF0, symSize: 0x20 } + - { offsetInCU: 0x2FAE, offset: 0x65D09, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24F0, symBinAddr: 0x11CB0, symSize: 0x20 } + - { offsetInCU: 0x2FCA, offset: 0x65D25, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2510, symBinAddr: 0x11CD0, symSize: 0x20 } + - { offsetInCU: 0x30B3, offset: 0x65E0E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV10CodingKeys33_123C4186D491771D1BB89AC314ECEF84LLO11stringValueSSvg', symObjAddr: 0x80, symBinAddr: 0xF840, symSize: 0xD0 } + - { offsetInCU: 0x3132, offset: 0x65E8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV1DV6encode2toys7Encoder_p_tKF', symObjAddr: 0x230, symBinAddr: 0xF9F0, symSize: 0x4C0 } + - { offsetInCU: 0x3163, offset: 0x65EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A5TDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x6F0, symBinAddr: 0xFEB0, symSize: 0xE0 } + - { offsetInCU: 0x3194, offset: 0x65EEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV2HBV6encode2toys7Encoder_p_tKF', symObjAddr: 0x7D0, symBinAddr: 0xFF90, symSize: 0x1A0 } + - { offsetInCU: 0x31C5, offset: 0x65F20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV3LOGV6encode2toys7Encoder_p_tKF', symObjAddr: 0x970, symBinAddr: 0x10130, symSize: 0x170 } + - { offsetInCU: 0x31F6, offset: 0x65F51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2SCV6encode2toys7Encoder_p_tKF', symObjAddr: 0xAE0, symBinAddr: 0x102A0, symSize: 0x1D0 } + - { offsetInCU: 0x3227, offset: 0x65F82, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS1PV6encode2toys7Encoder_p_tKF', symObjAddr: 0xCB0, symBinAddr: 0x10470, symSize: 0x230 } + - { offsetInCU: 0x3258, offset: 0x65FB3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS2DDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xEE0, symBinAddr: 0x106A0, symSize: 0x110 } + - { offsetInCU: 0x3289, offset: 0x65FE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV4ATTDV6encode2toys7Encoder_p_tKF', symObjAddr: 0xFF0, symBinAddr: 0x107B0, symSize: 0x1F0 } + - { offsetInCU: 0x32BA, offset: 0x66015, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3ATTV6encode2toys7Encoder_p_tKF', symObjAddr: 0x11E0, symBinAddr: 0x109A0, symSize: 0x210 } + - { offsetInCU: 0x32EB, offset: 0x66046, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3SETV6encode2toys7Encoder_p_tKF', symObjAddr: 0x13F0, symBinAddr: 0x10BB0, symSize: 0x130 } + - { offsetInCU: 0x27, offset: 0x66282, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A3C0, symSize: 0x60 } + - { offsetInCU: 0x3ED, offset: 0x66648, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwCP', symObjAddr: 0x470, symBinAddr: 0x1A830, symSize: 0x30 } + - { offsetInCU: 0x401, offset: 0x6665C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwxx', symObjAddr: 0x4A0, symBinAddr: 0x1A860, symSize: 0x40 } + - { offsetInCU: 0x415, offset: 0x66670, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwcp', symObjAddr: 0x4E0, symBinAddr: 0x1A8A0, symSize: 0xD0 } + - { offsetInCU: 0x429, offset: 0x66684, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwca', symObjAddr: 0x5B0, symBinAddr: 0x1A970, symSize: 0x100 } + - { offsetInCU: 0x43D, offset: 0x66698, size: 0x8, addend: 0x0, symName: ___swift_memcpy114_8, symObjAddr: 0x6B0, symBinAddr: 0x1AA70, symSize: 0x50 } + - { offsetInCU: 0x451, offset: 0x666AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwta', symObjAddr: 0x700, symBinAddr: 0x1AAC0, symSize: 0xD0 } + - { offsetInCU: 0x465, offset: 0x666C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwet', symObjAddr: 0x7D0, symBinAddr: 0x1AB90, symSize: 0x40 } + - { offsetInCU: 0x479, offset: 0x666D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVwst', symObjAddr: 0x810, symBinAddr: 0x1ABD0, symSize: 0x60 } + - { offsetInCU: 0x48D, offset: 0x666E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVMa', symObjAddr: 0x870, symBinAddr: 0x1AC30, symSize: 0xA } + - { offsetInCU: 0x60E, offset: 0x66869, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVACycfC', symObjAddr: 0x0, symBinAddr: 0x1A3C0, symSize: 0x60 } + - { offsetInCU: 0x64D, offset: 0x668A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvg', symObjAddr: 0x60, symBinAddr: 0x1A420, symSize: 0x40 } + - { offsetInCU: 0x667, offset: 0x668C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvs', symObjAddr: 0xA0, symBinAddr: 0x1A460, symSize: 0x50 } + - { offsetInCU: 0x697, offset: 0x668F2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM', symObjAddr: 0xF0, symBinAddr: 0x1A4B0, symSize: 0x10 } + - { offsetInCU: 0x6AB, offset: 0x66906, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3sslAA9SSLOptionVvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x1A4C0, symSize: 0x10 } + - { offsetInCU: 0x6CC, offset: 0x66927, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvg', symObjAddr: 0x110, symBinAddr: 0x1A4D0, symSize: 0x20 } + - { offsetInCU: 0x6E0, offset: 0x6693B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0Vvs', symObjAddr: 0x130, symBinAddr: 0x1A4F0, symSize: 0x20 } + - { offsetInCU: 0x710, offset: 0x6696B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM', symObjAddr: 0x150, symBinAddr: 0x1A510, symSize: 0x20 } + - { offsetInCU: 0x734, offset: 0x6698F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14offlineStorageAA07OfflinegE0VvM.resume.0', symObjAddr: 0x170, symBinAddr: 0x1A530, symSize: 0x10 } + - { offsetInCU: 0x755, offset: 0x669B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvg', symObjAddr: 0x180, symBinAddr: 0x1A540, symSize: 0x30 } + - { offsetInCU: 0x769, offset: 0x669C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvs', symObjAddr: 0x1B0, symBinAddr: 0x1A570, symSize: 0x30 } + - { offsetInCU: 0x79D, offset: 0x669F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM', symObjAddr: 0x1E0, symBinAddr: 0x1A5A0, symSize: 0x20 } + - { offsetInCU: 0x7C1, offset: 0x66A1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV12discoveryUrlSSSgvM.resume.0', symObjAddr: 0x200, symBinAddr: 0x1A5C0, symSize: 0x10 } + - { offsetInCU: 0x7E2, offset: 0x66A3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvg', symObjAddr: 0x210, symBinAddr: 0x1A5D0, symSize: 0x10 } + - { offsetInCU: 0x7F6, offset: 0x66A51, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvs', symObjAddr: 0x220, symBinAddr: 0x1A5E0, symSize: 0x10 } + - { offsetInCU: 0x82A, offset: 0x66A85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM', symObjAddr: 0x230, symBinAddr: 0x1A5F0, symSize: 0x20 } + - { offsetInCU: 0x84E, offset: 0x66AA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV5debugSbvM.resume.0', symObjAddr: 0x250, symBinAddr: 0x1A610, symSize: 0x10 } + - { offsetInCU: 0x86F, offset: 0x66ACA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvg', symObjAddr: 0x260, symBinAddr: 0x1A620, symSize: 0x10 } + - { offsetInCU: 0x883, offset: 0x66ADE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvs', symObjAddr: 0x270, symBinAddr: 0x1A630, symSize: 0x10 } + - { offsetInCU: 0x8B7, offset: 0x66B12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM', symObjAddr: 0x280, symBinAddr: 0x1A640, symSize: 0x20 } + - { offsetInCU: 0x8DB, offset: 0x66B36, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV14skipValidationSbvM.resume.0', symObjAddr: 0x2A0, symBinAddr: 0x1A660, symSize: 0x10 } + - { offsetInCU: 0x8FC, offset: 0x66B57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvg', symObjAddr: 0x2B0, symBinAddr: 0x1A670, symSize: 0x30 } + - { offsetInCU: 0x910, offset: 0x66B6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvs', symObjAddr: 0x2E0, symBinAddr: 0x1A6A0, symSize: 0x30 } + - { offsetInCU: 0x944, offset: 0x66B9F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM', symObjAddr: 0x310, symBinAddr: 0x1A6D0, symSize: 0x20 } + - { offsetInCU: 0x968, offset: 0x66BC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV8devicePKSSvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x1A6F0, symSize: 0x10 } + - { offsetInCU: 0x989, offset: 0x66BE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvg', symObjAddr: 0x340, symBinAddr: 0x1A700, symSize: 0x30 } + - { offsetInCU: 0x99D, offset: 0x66BF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvs', symObjAddr: 0x370, symBinAddr: 0x1A730, symSize: 0x30 } + - { offsetInCU: 0x9D1, offset: 0x66C2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM', symObjAddr: 0x3A0, symBinAddr: 0x1A760, symSize: 0x20 } + - { offsetInCU: 0x9F5, offset: 0x66C50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV4cpIdSSvM.resume.0', symObjAddr: 0x3C0, symBinAddr: 0x1A780, symSize: 0x10 } + - { offsetInCU: 0xA16, offset: 0x66C71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvg', symObjAddr: 0x3D0, symBinAddr: 0x1A790, symSize: 0x10 } + - { offsetInCU: 0xA2A, offset: 0x66C85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvs', symObjAddr: 0x3E0, symBinAddr: 0x1A7A0, symSize: 0x10 } + - { offsetInCU: 0xA5E, offset: 0x66CB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM', symObjAddr: 0x3F0, symBinAddr: 0x1A7B0, symSize: 0x20 } + - { offsetInCU: 0xA82, offset: 0x66CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV2pfAA0A4TCPfOSgvM.resume.0', symObjAddr: 0x410, symBinAddr: 0x1A7D0, symSize: 0x10 } + - { offsetInCU: 0xAA3, offset: 0x66CFE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvg', symObjAddr: 0x420, symBinAddr: 0x1A7E0, symSize: 0x10 } + - { offsetInCU: 0xAB7, offset: 0x66D12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvs', symObjAddr: 0x430, symBinAddr: 0x1A7F0, symSize: 0x10 } + - { offsetInCU: 0xAEB, offset: 0x66D46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM', symObjAddr: 0x440, symBinAddr: 0x1A800, symSize: 0x20 } + - { offsetInCU: 0xB0F, offset: 0x66D6A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionV3envAA15IOTCEnvironmentOSgvM.resume.0', symObjAddr: 0x460, symBinAddr: 0x1A820, symSize: 0x10 } + - { offsetInCU: 0x7F, offset: 0x66E2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x700, symBinAddr: 0x1B340, symSize: 0x30 } + - { offsetInCU: 0xB0, offset: 0x66E5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x730, symBinAddr: 0x1B370, symSize: 0x30 } + - { offsetInCU: 0xCC, offset: 0x66E7A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x990, symBinAddr: 0x1B5D0, symSize: 0x60 } + - { offsetInCU: 0x145, offset: 0x66EF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x930, symBinAddr: 0x1B570, symSize: 0x30 } + - { offsetInCU: 0x176, offset: 0x66F24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x960, symBinAddr: 0x1B5A0, symSize: 0x30 } + - { offsetInCU: 0x192, offset: 0x66F40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0x9F0, symBinAddr: 0x1B630, symSize: 0x60 } + - { offsetInCU: 0x1D2, offset: 0x66F80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV14getAPIErrorMsg9errorCodeSSSi_tFZTf4nd_n', symObjAddr: 0xA50, symBinAddr: 0x1B690, symSize: 0x120 } + - { offsetInCU: 0x202, offset: 0x66FB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwet', symObjAddr: 0xB90, symBinAddr: 0x1B7B0, symSize: 0x80 } + - { offsetInCU: 0x216, offset: 0x66FC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwst', symObjAddr: 0xC10, symBinAddr: 0x1B830, symSize: 0xD0 } + - { offsetInCU: 0x22A, offset: 0x66FD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOwup', symObjAddr: 0xCE0, symBinAddr: 0x1B900, symSize: 0x10 } + - { offsetInCU: 0x23E, offset: 0x66FEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOMa', symObjAddr: 0xCF0, symBinAddr: 0x1B910, symSize: 0x10 } + - { offsetInCU: 0x252, offset: 0x67000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwet', symObjAddr: 0xD00, symBinAddr: 0x1B920, symSize: 0x80 } + - { offsetInCU: 0x266, offset: 0x67014, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwst', symObjAddr: 0xD80, symBinAddr: 0x1B9A0, symSize: 0xD0 } + - { offsetInCU: 0x27A, offset: 0x67028, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwug', symObjAddr: 0xE50, symBinAddr: 0x1BA70, symSize: 0x10 } + - { offsetInCU: 0x28E, offset: 0x6703C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwup', symObjAddr: 0xE60, symBinAddr: 0x1BA80, symSize: 0x10 } + - { offsetInCU: 0x2A2, offset: 0x67050, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOwui', symObjAddr: 0xE70, symBinAddr: 0x1BA90, symSize: 0x10 } + - { offsetInCU: 0x2B6, offset: 0x67064, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOMa', symObjAddr: 0xE80, symBinAddr: 0x1BAA0, symSize: 0x10 } + - { offsetInCU: 0x2CA, offset: 0x67078, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOSHAASQWb', symObjAddr: 0xE90, symBinAddr: 0x1BAB0, symSize: 0x10 } + - { offsetInCU: 0x2DE, offset: 0x6708C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoOAESQAAWl', symObjAddr: 0xEA0, symBinAddr: 0x1BAC0, symSize: 0x30 } + - { offsetInCU: 0x2F2, offset: 0x670A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOSHAASQWb', symObjAddr: 0xED0, symBinAddr: 0x1BAF0, symSize: 0x10 } + - { offsetInCU: 0x306, offset: 0x670B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsOAESQAAWl', symObjAddr: 0xEE0, symBinAddr: 0x1BB00, symSize: 0x30 } + - { offsetInCU: 0x410, offset: 0x671BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV6ErrorsO8rawValueSSvg', symObjAddr: 0x0, symBinAddr: 0x1AC40, symSize: 0x370 } + - { offsetInCU: 0x433, offset: 0x671E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3LogV4InfoO8rawValueSSvg', symObjAddr: 0x370, symBinAddr: 0x1AFB0, symSize: 0x310 } + - { offsetInCU: 0xD3, offset: 0x6730B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCMa', symObjAddr: 0x2D0, symBinAddr: 0x1BE20, symSize: 0x20 } + - { offsetInCU: 0x117, offset: 0x6734F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0x2F0, symBinAddr: 0x1BE40, symSize: 0x90 } + - { offsetInCU: 0x16B, offset: 0x673A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU_', symObjAddr: 0x380, symBinAddr: 0x1BED0, symSize: 0x10 } + - { offsetInCU: 0x194, offset: 0x673CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU0_', symObjAddr: 0x390, symBinAddr: 0x1BEE0, symSize: 0x10 } + - { offsetInCU: 0x1BD, offset: 0x673F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFySbcfU1_', symObjAddr: 0x3A0, symBinAddr: 0x1BEF0, symSize: 0x10 } + - { offsetInCU: 0x1E6, offset: 0x6741E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x440, symBinAddr: 0x1BF90, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x6745A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0x450, symBinAddr: 0x1BFA0, symSize: 0x80 } + - { offsetInCU: 0x28E, offset: 0x674C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0x4D0, symBinAddr: 0x1C020, symSize: 0x60 } + - { offsetInCU: 0x2E3, offset: 0x6751B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0x530, symBinAddr: 0x1C080, symSize: 0x90 } + - { offsetInCU: 0x335, offset: 0x6756D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0x5C0, symBinAddr: 0x1C110, symSize: 0x80 } + - { offsetInCU: 0x392, offset: 0x675CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTo', symObjAddr: 0x640, symBinAddr: 0x1C190, symSize: 0x60 } + - { offsetInCU: 0x3C4, offset: 0x675FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0x6A0, symBinAddr: 0x1C1F0, symSize: 0x10 } + - { offsetInCU: 0x3E0, offset: 0x67618, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0x6B0, symBinAddr: 0x1C200, symSize: 0x10 } + - { offsetInCU: 0x4D3, offset: 0x6770B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0L11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x1020, symBinAddr: 0x1CB70, symSize: 0x3E0 } + - { offsetInCU: 0x7C6, offset: 0x679FE, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOe', symObjAddr: 0x14C0, symBinAddr: 0x1D010, symSize: 0x20 } + - { offsetInCU: 0x7DA, offset: 0x67A12, size: 0x8, addend: 0x0, symName: '_$sSbIegy_SgWOy', symObjAddr: 0x14E0, symBinAddr: 0x1D030, symSize: 0x20 } + - { offsetInCU: 0x7EE, offset: 0x67A26, size: 0x8, addend: 0x0, symName: '_$sypSgWOb', symObjAddr: 0x1570, symBinAddr: 0x1D050, symSize: 0x40 } + - { offsetInCU: 0x802, offset: 0x67A3A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOe', symObjAddr: 0x15B0, symBinAddr: 0x1D090, symSize: 0x20 } + - { offsetInCU: 0x816, offset: 0x67A4E, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOe', symObjAddr: 0x15D0, symBinAddr: 0x1D0B0, symSize: 0x40 } + - { offsetInCU: 0x82A, offset: 0x67A62, size: 0x8, addend: 0x0, symName: '_$sypSgWOh', symObjAddr: 0x1610, symBinAddr: 0x1D0F0, symSize: 0x30 } + - { offsetInCU: 0x83E, offset: 0x67A76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOy', symObjAddr: 0x1640, symBinAddr: 0x1D120, symSize: 0x260 } + - { offsetInCU: 0x852, offset: 0x67A8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOy', symObjAddr: 0x18A0, symBinAddr: 0x1D380, symSize: 0x30 } + - { offsetInCU: 0x866, offset: 0x67A9E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVSgWOe', symObjAddr: 0x18D0, symBinAddr: 0x1D3B0, symSize: 0x260 } + - { offsetInCU: 0x87A, offset: 0x67AB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVSgWOe', symObjAddr: 0x1B30, symBinAddr: 0x1D610, symSize: 0x25 } + - { offsetInCU: 0xA79, offset: 0x67CB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfd', symObjAddr: 0x0, symBinAddr: 0x1BB50, symSize: 0x2B0 } + - { offsetInCU: 0xAA2, offset: 0x67CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceCfD', symObjAddr: 0x2B0, symBinAddr: 0x1BE00, symSize: 0x20 } + - { offsetInCU: 0xBD2, offset: 0x67E0A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0k8MQTTConnJ0OtFTf4dnn_n', symObjAddr: 0x6C0, symBinAddr: 0x1C210, symSize: 0x8F0 } + - { offsetInCU: 0xCD9, offset: 0x67F11, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0l8MQTTConnI0OtFTf4dnn_n', symObjAddr: 0xFB0, symBinAddr: 0x1CB00, symSize: 0x70 } + - { offsetInCU: 0xD57, offset: 0x67F8F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4ddnn_n', symObjAddr: 0x1400, symBinAddr: 0x1CF50, symSize: 0x60 } + - { offsetInCU: 0xD8C, offset: 0x67FC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientServiceC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0K0_pSgtFTf4dnn_n', symObjAddr: 0x1460, symBinAddr: 0x1CFB0, symSize: 0x60 } + - { offsetInCU: 0x4F, offset: 0x68070, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavp', symObjAddr: 0x2B20, symBinAddr: 0x8BC08, symSize: 0x0 } + - { offsetInCU: 0x69, offset: 0x6808A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvpZ', symObjAddr: 0x2B28, symBinAddr: 0x8BC10, symSize: 0x0 } + - { offsetInCU: 0x77, offset: 0x68098, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotification_WZ', symObjAddr: 0x40, symBinAddr: 0x1D680, symSize: 0x30 } + - { offsetInCU: 0xB3, offset: 0x680D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS31ReachabilityChangedNotificationSo18NSNotificationNameavg', symObjAddr: 0x70, symBinAddr: 0x1D6B0, symSize: 0x40 } + - { offsetInCU: 0xE9, offset: 0x6810A, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChanged_WZ', symObjAddr: 0xB0, symBinAddr: 0x1D6F0, symSize: 0x30 } + - { offsetInCU: 0x159, offset: 0x6817A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x1A0, symBinAddr: 0x1D7E0, symSize: 0x50 } + - { offsetInCU: 0x1E6, offset: 0x68207, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x2F0, symBinAddr: 0x1D930, symSize: 0x10 } + - { offsetInCU: 0x222, offset: 0x68243, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x350, symBinAddr: 0x1D990, symSize: 0x20 } + - { offsetInCU: 0x29C, offset: 0x682BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x3C0, symBinAddr: 0x1DA00, symSize: 0x80 } + - { offsetInCU: 0x5C1, offset: 0x685E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfCTf4nnnd_n', symObjAddr: 0x1CC0, symBinAddr: 0x1F300, symSize: 0x170 } + - { offsetInCU: 0x688, offset: 0x686A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTK', symObjAddr: 0x440, symBinAddr: 0x1DA80, symSize: 0x80 } + - { offsetInCU: 0x6C0, offset: 0x686E1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvpACTk', symObjAddr: 0x4C0, symBinAddr: 0x1DB00, symSize: 0xB0 } + - { offsetInCU: 0x700, offset: 0x68721, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOy', symObjAddr: 0x5B0, symBinAddr: 0x1DBF0, symSize: 0x20 } + - { offsetInCU: 0x714, offset: 0x68735, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_SgWOe', symObjAddr: 0x620, symBinAddr: 0x1DC60, symSize: 0x20 } + - { offsetInCU: 0x728, offset: 0x68749, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTK', symObjAddr: 0x680, symBinAddr: 0x1DCC0, symSize: 0x80 } + - { offsetInCU: 0x760, offset: 0x68781, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvpACTk', symObjAddr: 0x700, symBinAddr: 0x1DD40, symSize: 0xB0 } + - { offsetInCU: 0x7A0, offset: 0x687C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvpACTk', symObjAddr: 0x910, symBinAddr: 0x1DF50, symSize: 0x50 } + - { offsetInCU: 0x9AA, offset: 0x689CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_', symObjAddr: 0x17C0, symBinAddr: 0x1EE00, symSize: 0x130 } + - { offsetInCU: 0xAA6, offset: 0x68AC7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC03setD5Flags33_E131EE1A321802F9691AF9C811969C8CLLyyKFyyKXEfU_TA', symObjAddr: 0x18F0, symBinAddr: 0x1EF30, symSize: 0x10 } + - { offsetInCU: 0xABA, offset: 0x68ADB, size: 0x8, addend: 0x0, symName: '_$sIegh_IeyBh_TR', symObjAddr: 0x1A20, symBinAddr: 0x1F060, symSize: 0x30 } + - { offsetInCU: 0xAD2, offset: 0x68AF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOACs0E0AAWl', symObjAddr: 0x1C70, symBinAddr: 0x1F2B0, symSize: 0x30 } + - { offsetInCU: 0xAE6, offset: 0x68B07, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCMa', symObjAddr: 0x1CA0, symBinAddr: 0x1F2E0, symSize: 0x20 } + - { offsetInCU: 0xAFA, offset: 0x68B1B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCMa', symObjAddr: 0x1E30, symBinAddr: 0x1F470, symSize: 0x20 } + - { offsetInCU: 0xB0E, offset: 0x68B2F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOSHAASQWb', symObjAddr: 0x1E50, symBinAddr: 0x1F490, symSize: 0x10 } + - { offsetInCU: 0xB22, offset: 0x68B43, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOAESQAAWl', symObjAddr: 0x1E60, symBinAddr: 0x1F4A0, symSize: 0x30 } + - { offsetInCU: 0xB36, offset: 0x68B57, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOSHAASQWb', symObjAddr: 0x1E90, symBinAddr: 0x1F4D0, symSize: 0x10 } + - { offsetInCU: 0xB4A, offset: 0x68B6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOAESQAAWl', symObjAddr: 0x1EA0, symBinAddr: 0x1F4E0, symSize: 0x30 } + - { offsetInCU: 0xB5E, offset: 0x68B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOy', symObjAddr: 0x1FF0, symBinAddr: 0x1F630, symSize: 0x20 } + - { offsetInCU: 0xB72, offset: 0x68B93, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwxx', symObjAddr: 0x2010, symBinAddr: 0x1F650, symSize: 0x20 } + - { offsetInCU: 0xB86, offset: 0x68BA7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOWOe', symObjAddr: 0x2030, symBinAddr: 0x1F670, symSize: 0x20 } + - { offsetInCU: 0xB9A, offset: 0x68BBB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwca', symObjAddr: 0x20C0, symBinAddr: 0x1F700, symSize: 0x70 } + - { offsetInCU: 0xBAE, offset: 0x68BCF, size: 0x8, addend: 0x0, symName: ___swift_memcpy21_8, symObjAddr: 0x2130, symBinAddr: 0x1F770, symSize: 0x20 } + - { offsetInCU: 0xBC2, offset: 0x68BE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwta', symObjAddr: 0x2150, symBinAddr: 0x1F790, symSize: 0x40 } + - { offsetInCU: 0xBD6, offset: 0x68BF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwet', symObjAddr: 0x2190, symBinAddr: 0x1F7D0, symSize: 0x50 } + - { offsetInCU: 0xBEA, offset: 0x68C0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwst', symObjAddr: 0x21E0, symBinAddr: 0x1F820, symSize: 0x50 } + - { offsetInCU: 0xBFE, offset: 0x68C1F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwug', symObjAddr: 0x2230, symBinAddr: 0x1F870, symSize: 0x10 } + - { offsetInCU: 0xC12, offset: 0x68C33, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwup', symObjAddr: 0x2240, symBinAddr: 0x1F880, symSize: 0x10 } + - { offsetInCU: 0xC26, offset: 0x68C47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOwui', symObjAddr: 0x2250, symBinAddr: 0x1F890, symSize: 0x10 } + - { offsetInCU: 0xC3A, offset: 0x68C5B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOMa', symObjAddr: 0x2260, symBinAddr: 0x1F8A0, symSize: 0x10 } + - { offsetInCU: 0xC4E, offset: 0x68C6F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwet', symObjAddr: 0x2450, symBinAddr: 0x1FA70, symSize: 0x80 } + - { offsetInCU: 0xC62, offset: 0x68C83, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwst', symObjAddr: 0x24D0, symBinAddr: 0x1FAF0, symSize: 0xD0 } + - { offsetInCU: 0xC76, offset: 0x68C97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOwup', symObjAddr: 0x25A0, symBinAddr: 0x1FBC0, symSize: 0x10 } + - { offsetInCU: 0xC8A, offset: 0x68CAB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusOMa', symObjAddr: 0x25B0, symBinAddr: 0x1FBD0, symSize: 0x10 } + - { offsetInCU: 0xC9E, offset: 0x68CBF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwet', symObjAddr: 0x25C0, symBinAddr: 0x1FBE0, symSize: 0x80 } + - { offsetInCU: 0xCB2, offset: 0x68CD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwst', symObjAddr: 0x2640, symBinAddr: 0x1FC60, symSize: 0xD0 } + - { offsetInCU: 0xCC6, offset: 0x68CE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwug', symObjAddr: 0x2710, symBinAddr: 0x1FD30, symSize: 0x10 } + - { offsetInCU: 0xCDA, offset: 0x68CFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwup', symObjAddr: 0x2720, symBinAddr: 0x1FD40, symSize: 0x10 } + - { offsetInCU: 0xCEE, offset: 0x68D0F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOwui', symObjAddr: 0x2730, symBinAddr: 0x1FD50, symSize: 0x10 } + - { offsetInCU: 0xD02, offset: 0x68D23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionOMa', symObjAddr: 0x2740, symBinAddr: 0x1FD60, symSize: 0x10 } + - { offsetInCU: 0xD21, offset: 0x68D42, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCIegg_ACytIegnr_TRTA', symObjAddr: 0x2780, symBinAddr: 0x1FDA0, symSize: 0x20 } + - { offsetInCU: 0xD4A, offset: 0x68D6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_TA', symObjAddr: 0x2880, symBinAddr: 0x1FEA0, symSize: 0x10 } + - { offsetInCU: 0xD5E, offset: 0x68D7F, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2890, symBinAddr: 0x1FEB0, symSize: 0x20 } + - { offsetInCU: 0xD72, offset: 0x68D93, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x28B0, symBinAddr: 0x1FED0, symSize: 0x10 } + - { offsetInCU: 0xD86, offset: 0x68DA7, size: 0x8, addend: 0x0, symName: '_$sSo17OS_dispatch_queueCMa', symObjAddr: 0x2940, symBinAddr: 0x1FEE0, symSize: 0x30 } + - { offsetInCU: 0xE08, offset: 0x68E29, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP7_domainSSvgTW', symObjAddr: 0x0, symBinAddr: 0x1D640, symSize: 0x10 } + - { offsetInCU: 0xE24, offset: 0x68E45, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP5_codeSivgTW', symObjAddr: 0x10, symBinAddr: 0x1D650, symSize: 0x10 } + - { offsetInCU: 0xE40, offset: 0x68E61, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP9_userInfoyXlSgvgTW', symObjAddr: 0x20, symBinAddr: 0x1D660, symSize: 0x10 } + - { offsetInCU: 0xE5C, offset: 0x68E7D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17ReachabilityErrorOs0E0AAsADP19_getEmbeddedNSErroryXlSgyFTW', symObjAddr: 0x30, symBinAddr: 0x1D670, symSize: 0x10 } + - { offsetInCU: 0x11AB, offset: 0x691CC, size: 0x8, addend: 0x0, symName: '_$sSo18NSNotificationNamea15IoTConnect2_AWSE19reachabilityChangedABvgZ', symObjAddr: 0xE0, symBinAddr: 0x1D720, symSize: 0x40 } + - { offsetInCU: 0x11D9, offset: 0x691FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13NetworkStatusO11descriptionSSvg', symObjAddr: 0x120, symBinAddr: 0x1D760, symSize: 0x50 } + - { offsetInCU: 0x120D, offset: 0x6922E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO11descriptionSSvg', symObjAddr: 0x1F0, symBinAddr: 0x1D830, symSize: 0x80 } + - { offsetInCU: 0x1234, offset: 0x69255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO2eeoiySbAE_AEtFZ', symObjAddr: 0x270, symBinAddr: 0x1D8B0, symSize: 0x10 } + - { offsetInCU: 0x1277, offset: 0x69298, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10ConnectionO4hash4intoys6HasherVz_tF', symObjAddr: 0x280, symBinAddr: 0x1D8C0, symSize: 0x20 } + - { offsetInCU: 0x137E, offset: 0x6939F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvg', symObjAddr: 0x570, symBinAddr: 0x1DBB0, symSize: 0x40 } + - { offsetInCU: 0x139B, offset: 0x693BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvs', symObjAddr: 0x5D0, symBinAddr: 0x1DC10, symSize: 0x50 } + - { offsetInCU: 0x13C2, offset: 0x693E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM', symObjAddr: 0x640, symBinAddr: 0x1DC80, symSize: 0x30 } + - { offsetInCU: 0x13E5, offset: 0x69406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13whenReachableyACcSgvM.resume.0', symObjAddr: 0x670, symBinAddr: 0x1DCB0, symSize: 0x10 } + - { offsetInCU: 0x143A, offset: 0x6945B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvg', symObjAddr: 0x7B0, symBinAddr: 0x1DDF0, symSize: 0x40 } + - { offsetInCU: 0x1457, offset: 0x69478, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvs', symObjAddr: 0x7F0, symBinAddr: 0x1DE30, symSize: 0x50 } + - { offsetInCU: 0x147E, offset: 0x6949F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15whenUnreachableyACcSgvM', symObjAddr: 0x840, symBinAddr: 0x1DE80, symSize: 0x30 } + - { offsetInCU: 0x14A1, offset: 0x694C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachableOnWWANSbvg', symObjAddr: 0x870, symBinAddr: 0x1DEB0, symSize: 0x10 } + - { offsetInCU: 0x14C2, offset: 0x694E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvg', symObjAddr: 0x880, symBinAddr: 0x1DEC0, symSize: 0x30 } + - { offsetInCU: 0x14DF, offset: 0x69500, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvs', symObjAddr: 0x8B0, symBinAddr: 0x1DEF0, symSize: 0x30 } + - { offsetInCU: 0x1506, offset: 0x69527, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC24allowsCellularConnectionSbvM', symObjAddr: 0x8E0, symBinAddr: 0x1DF20, symSize: 0x30 } + - { offsetInCU: 0x154E, offset: 0x6956F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvg', symObjAddr: 0x960, symBinAddr: 0x1DFA0, symSize: 0x30 } + - { offsetInCU: 0x156B, offset: 0x6958C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0Cvs', symObjAddr: 0x990, symBinAddr: 0x1DFD0, symSize: 0x40 } + - { offsetInCU: 0x1592, offset: 0x695B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18notificationCenterSo014NSNotificationF0CvM', symObjAddr: 0x9D0, symBinAddr: 0x1E010, symSize: 0x30 } + - { offsetInCU: 0x15BC, offset: 0x695DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StringSSvg', symObjAddr: 0xA00, symBinAddr: 0x1E040, symSize: 0xD0 } + - { offsetInCU: 0x1633, offset: 0x69654, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC07currentD6StatusAC10ConnectionOvg', symObjAddr: 0xAD0, symBinAddr: 0x1E110, symSize: 0xA0 } + - { offsetInCU: 0x16A6, offset: 0x696C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC10connectionAC10ConnectionOvg', symObjAddr: 0xB70, symBinAddr: 0x1E1B0, symSize: 0xA0 } + - { offsetInCU: 0x1763, offset: 0x69784, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyF', symObjAddr: 0xC10, symBinAddr: 0x1E250, symSize: 0x1F0 } + - { offsetInCU: 0x17CC, offset: 0x697ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC06notifyD7Changed33_E131EE1A321802F9691AF9C811969C8CLLyyFyycfU_', symObjAddr: 0x1900, symBinAddr: 0x1EF40, symSize: 0x120 } + - { offsetInCU: 0x1890, offset: 0x698B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfC', symObjAddr: 0xE00, symBinAddr: 0x1E440, symSize: 0x60 } + - { offsetInCU: 0x18BA, offset: 0x698DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfc', symObjAddr: 0xE60, symBinAddr: 0x1E4A0, symSize: 0x30 } + - { offsetInCU: 0x18DC, offset: 0x698FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8hostname8queueQoS11targetQueue012notificationI0ACSS_8Dispatch0kG1SVSo012OS_dispatch_F0CSgAMtKcfC', symObjAddr: 0xE90, symBinAddr: 0x1E4D0, symSize: 0x160 } + - { offsetInCU: 0x1981, offset: 0x699A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC8queueQoS11targetQueue012notificationH0AC8Dispatch0jF1SV_So012OS_dispatch_E0CSgALtKcfC', symObjAddr: 0xFF0, symBinAddr: 0x1E630, symSize: 0x10 } + - { offsetInCU: 0x19CE, offset: 0x699EF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC12stopNotifieryyF', symObjAddr: 0x1070, symBinAddr: 0x1E6B0, symSize: 0x30 } + - { offsetInCU: 0x1A52, offset: 0x69A73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfd', symObjAddr: 0x1000, symBinAddr: 0x1E640, symSize: 0x70 } + - { offsetInCU: 0x1AE4, offset: 0x69B05, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityCfD', symObjAddr: 0x10A0, symBinAddr: 0x1E6E0, symSize: 0x80 } + - { offsetInCU: 0x1BB2, offset: 0x69BD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKF', symObjAddr: 0x1120, symBinAddr: 0x1E760, symSize: 0x230 } + - { offsetInCU: 0x1D80, offset: 0x69DA1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_To', symObjAddr: 0x1350, symBinAddr: 0x1E990, symSize: 0x10 } + - { offsetInCU: 0x1DD7, offset: 0x69DF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFS2VcfU0_To', symObjAddr: 0x1360, symBinAddr: 0x1E9A0, symSize: 0x10 } + - { offsetInCU: 0x1E25, offset: 0x69E46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySVcfU1_To', symObjAddr: 0x1370, symBinAddr: 0x1E9B0, symSize: 0x10 } + - { offsetInCU: 0x1E3D, offset: 0x69E5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_', symObjAddr: 0x1380, symBinAddr: 0x1E9C0, symSize: 0xB0 } + - { offsetInCU: 0x1EE3, offset: 0x69F04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFs9UnmanagedVySo11CFStringRefaGSVcfU2_To', symObjAddr: 0x1470, symBinAddr: 0x1EAB0, symSize: 0x10 } + - { offsetInCU: 0x1EFB, offset: 0x69F1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC13startNotifieryyKFySo09SCNetworkD3Refa_So0gD5FlagsVSvSgtcfU_Tf4dnn_n', symObjAddr: 0x27F0, symBinAddr: 0x1FE10, symSize: 0x70 } + - { offsetInCU: 0x1FD2, offset: 0x69FF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC11descriptionSSvg', symObjAddr: 0x1430, symBinAddr: 0x1EA70, symSize: 0x40 } + - { offsetInCU: 0x200D, offset: 0x6A02E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC18isReachableViaWWANSbvg', symObjAddr: 0x14A0, symBinAddr: 0x1EAE0, symSize: 0x90 } + - { offsetInCU: 0x20EA, offset: 0x6A10B, size: 0x8, addend: 0x0, symName: '_$sSo26SCNetworkReachabilityFlagsV15IoTConnect2_AWSE11descriptionSSvg', symObjAddr: 0x15F0, symBinAddr: 0x1EC30, symSize: 0x1D0 } + - { offsetInCU: 0x27E1, offset: 0x6A802, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21ReachabilityWeakifier33_E131EE1A321802F9691AF9C811969C8CLLCfD', symObjAddr: 0x1A50, symBinAddr: 0x1F090, symSize: 0x20 } + - { offsetInCU: 0x2824, offset: 0x6A845, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ReachabilityC15reachabilityRef8queueQoS11targetQueue012notificationJ0ACSo09SCNetworkdF0a_8Dispatch0mH1SVSo012OS_dispatch_G0CSgAOtcfcTf4gnnnn_n', symObjAddr: 0x1A70, symBinAddr: 0x1F0B0, symSize: 0x200 } + - { offsetInCU: 0x43, offset: 0x6A9F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwxx', symObjAddr: 0x0, symBinAddr: 0x200A0, symSize: 0x30 } + - { offsetInCU: 0x57, offset: 0x6AA0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwcp', symObjAddr: 0x30, symBinAddr: 0x200D0, symSize: 0x80 } + - { offsetInCU: 0x6B, offset: 0x6AA20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwca', symObjAddr: 0xB0, symBinAddr: 0x20150, symSize: 0x130 } + - { offsetInCU: 0x86, offset: 0x6AA3B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVWOh', symObjAddr: 0x1E0, symBinAddr: 0x20280, symSize: 0x30 } + - { offsetInCU: 0xAF, offset: 0x6AA64, size: 0x8, addend: 0x0, symName: ___swift_memcpy56_8, symObjAddr: 0x210, symBinAddr: 0x202B0, symSize: 0x30 } + - { offsetInCU: 0xC3, offset: 0x6AA78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwta', symObjAddr: 0x240, symBinAddr: 0x202E0, symSize: 0xC0 } + - { offsetInCU: 0xD7, offset: 0x6AA8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwet', symObjAddr: 0x300, symBinAddr: 0x203A0, symSize: 0x50 } + - { offsetInCU: 0xEB, offset: 0x6AAA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVwst', symObjAddr: 0x350, symBinAddr: 0x203F0, symSize: 0x50 } + - { offsetInCU: 0xFF, offset: 0x6AAB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVMa', symObjAddr: 0x3A0, symBinAddr: 0x20440, symSize: 0x10 } + - { offsetInCU: 0x113, offset: 0x6AAC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwCP', symObjAddr: 0x3B0, symBinAddr: 0x20450, symSize: 0x30 } + - { offsetInCU: 0x127, offset: 0x6AADC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwxx', symObjAddr: 0x3E0, symBinAddr: 0x20480, symSize: 0x30 } + - { offsetInCU: 0x13B, offset: 0x6AAF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwcp', symObjAddr: 0x410, symBinAddr: 0x204B0, symSize: 0x60 } + - { offsetInCU: 0x14F, offset: 0x6AB04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwca', symObjAddr: 0x470, symBinAddr: 0x20510, symSize: 0x80 } + - { offsetInCU: 0x163, offset: 0x6AB18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwta', symObjAddr: 0x4F0, symBinAddr: 0x20590, symSize: 0x60 } + - { offsetInCU: 0x177, offset: 0x6AB2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwet', symObjAddr: 0x550, symBinAddr: 0x205F0, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x6AB40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVwst', symObjAddr: 0x5A0, symBinAddr: 0x20640, symSize: 0x50 } + - { offsetInCU: 0x19F, offset: 0x6AB54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVMa', symObjAddr: 0x5F0, symBinAddr: 0x20690, symSize: 0x10 } + - { offsetInCU: 0x1EB, offset: 0x6ABA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xA20, symBinAddr: 0x20AC0, symSize: 0x10 } + - { offsetInCU: 0x243, offset: 0x6ABF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH9hashValueSivgTW', symObjAddr: 0xA30, symBinAddr: 0x20AD0, symSize: 0x30 } + - { offsetInCU: 0x327, offset: 0x6ACDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xA60, symBinAddr: 0x20B00, symSize: 0x20 } + - { offsetInCU: 0x399, offset: 0x6AD4E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xAB0, symBinAddr: 0x20B50, symSize: 0x20 } + - { offsetInCU: 0x3E8, offset: 0x6AD9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xAD0, symBinAddr: 0x20B70, symSize: 0x70 } + - { offsetInCU: 0x442, offset: 0x6ADF7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xB40, symBinAddr: 0x20BE0, symSize: 0x10 } + - { offsetInCU: 0x45E, offset: 0x6AE13, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xB50, symBinAddr: 0x20BF0, symSize: 0x10 } + - { offsetInCU: 0x49B, offset: 0x6AE50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xBA0, symBinAddr: 0x20C40, symSize: 0x40 } + - { offsetInCU: 0x4D2, offset: 0x6AE87, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xBE0, symBinAddr: 0x20C80, symSize: 0x40 } + - { offsetInCU: 0x4F5, offset: 0x6AEAA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xFE0, symBinAddr: 0x21080, symSize: 0x140 } + - { offsetInCU: 0x582, offset: 0x6AF37, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xC20, symBinAddr: 0x20CC0, symSize: 0x10 } + - { offsetInCU: 0x5D5, offset: 0x6AF8A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xC40, symBinAddr: 0x20CE0, symSize: 0x20 } + - { offsetInCU: 0x64F, offset: 0x6B004, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xC70, symBinAddr: 0x20D10, symSize: 0x60 } + - { offsetInCU: 0x684, offset: 0x6B039, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xCD0, symBinAddr: 0x20D70, symSize: 0x20 } + - { offsetInCU: 0x6B5, offset: 0x6B06A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xCF0, symBinAddr: 0x20D90, symSize: 0x10 } + - { offsetInCU: 0x6D1, offset: 0x6B086, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xD00, symBinAddr: 0x20DA0, symSize: 0x10 } + - { offsetInCU: 0x6ED, offset: 0x6B0A2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1250, symBinAddr: 0x21250, symSize: 0x120 } + - { offsetInCU: 0x79D, offset: 0x6B152, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xD50, symBinAddr: 0x20DF0, symSize: 0x40 } + - { offsetInCU: 0x7D4, offset: 0x6B189, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xD90, symBinAddr: 0x20E30, symSize: 0x40 } + - { offsetInCU: 0x7F7, offset: 0x6B1AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1370, symBinAddr: 0x21370, symSize: 0x250 } + - { offsetInCU: 0x866, offset: 0x6B21B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0xE70, symBinAddr: 0x20F10, symSize: 0x70 } + - { offsetInCU: 0x89B, offset: 0x6B250, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0xEE0, symBinAddr: 0x20F80, symSize: 0x20 } + - { offsetInCU: 0x8CC, offset: 0x6B281, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0xF00, symBinAddr: 0x20FA0, symSize: 0x10 } + - { offsetInCU: 0x8E8, offset: 0x6B29D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0xF10, symBinAddr: 0x20FB0, symSize: 0x10 } + - { offsetInCU: 0x904, offset: 0x6B2B9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x1D30, symBinAddr: 0x21C90, symSize: 0x130 } + - { offsetInCU: 0x9B4, offset: 0x6B369, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0xF60, symBinAddr: 0x21000, symSize: 0x40 } + - { offsetInCU: 0x9EB, offset: 0x6B3A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0xFA0, symBinAddr: 0x21040, symSize: 0x40 } + - { offsetInCU: 0xA0E, offset: 0x6B3C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x1E60, symBinAddr: 0x21DC0, symSize: 0x2F0 } + - { offsetInCU: 0xA6B, offset: 0x6B420, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x1190, symBinAddr: 0x211C0, symSize: 0x30 } + - { offsetInCU: 0xA7F, offset: 0x6B434, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSeAAWl', symObjAddr: 0x11F0, symBinAddr: 0x211F0, symSize: 0x30 } + - { offsetInCU: 0xA93, offset: 0x6B448, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVACSEAAWl', symObjAddr: 0x1220, symBinAddr: 0x21220, symSize: 0x30 } + - { offsetInCU: 0xAA7, offset: 0x6B45C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0G3KeyAAWl', symObjAddr: 0x15C0, symBinAddr: 0x215C0, symSize: 0x30 } + - { offsetInCU: 0xABB, offset: 0x6B470, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSeAAWl', symObjAddr: 0x1630, symBinAddr: 0x215F0, symSize: 0x30 } + - { offsetInCU: 0xACF, offset: 0x6B484, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVACSEAAWl', symObjAddr: 0x16F0, symBinAddr: 0x216B0, symSize: 0x30 } + - { offsetInCU: 0xAE3, offset: 0x6B498, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x1760, symBinAddr: 0x21700, symSize: 0x10 } + - { offsetInCU: 0xAF7, offset: 0x6B4AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x1770, symBinAddr: 0x21710, symSize: 0x10 } + - { offsetInCU: 0xB0B, offset: 0x6B4C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x1780, symBinAddr: 0x21720, symSize: 0x10 } + - { offsetInCU: 0xB1F, offset: 0x6B4D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x1790, symBinAddr: 0x21730, symSize: 0x10 } + - { offsetInCU: 0xB33, offset: 0x6B4E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwet', symObjAddr: 0x17B0, symBinAddr: 0x21740, symSize: 0x50 } + - { offsetInCU: 0xB47, offset: 0x6B4FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwst', symObjAddr: 0x1800, symBinAddr: 0x21790, symSize: 0xA0 } + - { offsetInCU: 0xB5B, offset: 0x6B510, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwug', symObjAddr: 0x18A0, symBinAddr: 0x21830, symSize: 0x10 } + - { offsetInCU: 0xB6F, offset: 0x6B524, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x18B0, symBinAddr: 0x21840, symSize: 0x10 } + - { offsetInCU: 0xB83, offset: 0x6B538, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwui', symObjAddr: 0x18C0, symBinAddr: 0x21850, symSize: 0x10 } + - { offsetInCU: 0xB97, offset: 0x6B54C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x18D0, symBinAddr: 0x21860, symSize: 0x10 } + - { offsetInCU: 0xBAB, offset: 0x6B560, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwxx', symObjAddr: 0x18E0, symBinAddr: 0x21870, symSize: 0x40 } + - { offsetInCU: 0xBBF, offset: 0x6B574, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwcp', symObjAddr: 0x1920, symBinAddr: 0x218B0, symSize: 0x80 } + - { offsetInCU: 0xBD3, offset: 0x6B588, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwca', symObjAddr: 0x19A0, symBinAddr: 0x21930, symSize: 0xA0 } + - { offsetInCU: 0xBE7, offset: 0x6B59C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwta', symObjAddr: 0x1A70, symBinAddr: 0x219D0, symSize: 0x80 } + - { offsetInCU: 0xBFB, offset: 0x6B5B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwet', symObjAddr: 0x1AF0, symBinAddr: 0x21A50, symSize: 0x50 } + - { offsetInCU: 0xC0F, offset: 0x6B5C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVwst', symObjAddr: 0x1B40, symBinAddr: 0x21AA0, symSize: 0x60 } + - { offsetInCU: 0xC23, offset: 0x6B5D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataVMa', symObjAddr: 0x1BA0, symBinAddr: 0x21B00, symSize: 0x10 } + - { offsetInCU: 0xC37, offset: 0x6B5EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BB0, symBinAddr: 0x21B10, symSize: 0x10 } + - { offsetInCU: 0xC4B, offset: 0x6B600, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1BC0, symBinAddr: 0x21B20, symSize: 0x30 } + - { offsetInCU: 0xC5F, offset: 0x6B614, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x1BF0, symBinAddr: 0x21B50, symSize: 0x10 } + - { offsetInCU: 0xC73, offset: 0x6B628, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x1C00, symBinAddr: 0x21B60, symSize: 0x30 } + - { offsetInCU: 0xC87, offset: 0x6B63C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1C30, symBinAddr: 0x21B90, symSize: 0x10 } + - { offsetInCU: 0xC9B, offset: 0x6B650, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1C40, symBinAddr: 0x21BA0, symSize: 0x30 } + - { offsetInCU: 0xCAF, offset: 0x6B664, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1C70, symBinAddr: 0x21BD0, symSize: 0x10 } + - { offsetInCU: 0xCC3, offset: 0x6B678, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1C80, symBinAddr: 0x21BE0, symSize: 0x30 } + - { offsetInCU: 0xCD7, offset: 0x6B68C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x1CB0, symBinAddr: 0x21C10, symSize: 0x10 } + - { offsetInCU: 0xCEB, offset: 0x6B6A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x1CC0, symBinAddr: 0x21C20, symSize: 0x30 } + - { offsetInCU: 0xCFF, offset: 0x6B6B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0G3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x1CF0, symBinAddr: 0x21C50, symSize: 0x10 } + - { offsetInCU: 0xD13, offset: 0x6B6C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x1D00, symBinAddr: 0x21C60, symSize: 0x30 } + - { offsetInCU: 0xD27, offset: 0x6B6DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs0H3KeyAAWl', symObjAddr: 0x2150, symBinAddr: 0x220B0, symSize: 0x30 } + - { offsetInCU: 0xD3B, offset: 0x6B6F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOwup', symObjAddr: 0x22F0, symBinAddr: 0x22250, symSize: 0x10 } + - { offsetInCU: 0xD4F, offset: 0x6B704, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOMa', symObjAddr: 0x2300, symBinAddr: 0x22260, symSize: 0x10 } + - { offsetInCU: 0xD63, offset: 0x6B718, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASQWb', symObjAddr: 0x2310, symBinAddr: 0x22270, symSize: 0x10 } + - { offsetInCU: 0xD77, offset: 0x6B72C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFSQAAWl', symObjAddr: 0x2320, symBinAddr: 0x22280, symSize: 0x30 } + - { offsetInCU: 0xD8B, offset: 0x6B740, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2350, symBinAddr: 0x222B0, symSize: 0x10 } + - { offsetInCU: 0xD9F, offset: 0x6B754, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2360, symBinAddr: 0x222C0, symSize: 0x30 } + - { offsetInCU: 0xDB3, offset: 0x6B768, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs0H3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2390, symBinAddr: 0x222F0, symSize: 0x10 } + - { offsetInCU: 0xDC7, offset: 0x6B77C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x23A0, symBinAddr: 0x22300, symSize: 0x30 } + - { offsetInCU: 0xE26, offset: 0x6B7DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xA80, symBinAddr: 0x20B20, symSize: 0x30 } + - { offsetInCU: 0xEE7, offset: 0x6B89C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xB60, symBinAddr: 0x20C00, symSize: 0x20 } + - { offsetInCU: 0xF03, offset: 0x6B8B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xB80, symBinAddr: 0x20C20, symSize: 0x20 } + - { offsetInCU: 0xF25, offset: 0x6B8DA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xD10, symBinAddr: 0x20DB0, symSize: 0x20 } + - { offsetInCU: 0xF41, offset: 0x6B8F6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xD30, symBinAddr: 0x20DD0, symSize: 0x20 } + - { offsetInCU: 0xF63, offset: 0x6B918, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0xF20, symBinAddr: 0x20FC0, symSize: 0x20 } + - { offsetInCU: 0xF7F, offset: 0x6B934, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV10CodingKeys33_2C5D9CA336235447E3B0862B2ED6D54CLLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0xF40, symBinAddr: 0x20FE0, symSize: 0x20 } + - { offsetInCU: 0x106E, offset: 0x6BA23, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleV6encode2toys7Encoder_p_tKF', symObjAddr: 0x600, symBinAddr: 0x206A0, symSize: 0x100 } + - { offsetInCU: 0x109F, offset: 0x6BA54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x700, symBinAddr: 0x207A0, symSize: 0x1B0 } + - { offsetInCU: 0x10D0, offset: 0x6BA85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS21EdgeRuleConditionDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x8B0, symBinAddr: 0x20950, symSize: 0x170 } + - { offsetInCU: 0xA6, offset: 0x6BC40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x590, symBinAddr: 0x228C0, symSize: 0x10 } + - { offsetInCU: 0xE2, offset: 0x6BC7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x5A0, symBinAddr: 0x228D0, symSize: 0x40 } + - { offsetInCU: 0x1C6, offset: 0x6BD60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x5E0, symBinAddr: 0x22910, symSize: 0x20 } + - { offsetInCU: 0x4B7, offset: 0x6C051, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASQWb', symObjAddr: 0x640, symBinAddr: 0x22970, symSize: 0x10 } + - { offsetInCU: 0x4CB, offset: 0x6C065, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOACSQAAWl', symObjAddr: 0x650, symBinAddr: 0x22980, symSize: 0x30 } + - { offsetInCU: 0x4DF, offset: 0x6C079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwCP', symObjAddr: 0x680, symBinAddr: 0x229B0, symSize: 0x30 } + - { offsetInCU: 0x4F3, offset: 0x6C08D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwxx', symObjAddr: 0x6B0, symBinAddr: 0x229E0, symSize: 0x80 } + - { offsetInCU: 0x507, offset: 0x6C0A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwcp', symObjAddr: 0x730, symBinAddr: 0x22A60, symSize: 0x250 } + - { offsetInCU: 0x51B, offset: 0x6C0B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwca', symObjAddr: 0x980, symBinAddr: 0x22CB0, symSize: 0x4F0 } + - { offsetInCU: 0x536, offset: 0x6C0D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVWOh', symObjAddr: 0xE70, symBinAddr: 0x231A0, symSize: 0x30 } + - { offsetInCU: 0x55F, offset: 0x6C0F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVWOh', symObjAddr: 0xEA0, symBinAddr: 0x231D0, symSize: 0x20 } + - { offsetInCU: 0x573, offset: 0x6C10D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15SDKClientOptionVWOh', symObjAddr: 0xEC0, symBinAddr: 0x231F0, symSize: 0x30 } + - { offsetInCU: 0x587, offset: 0x6C121, size: 0x8, addend: 0x0, symName: ___swift_memcpy218_8, symObjAddr: 0xEF0, symBinAddr: 0x23220, symSize: 0x10 } + - { offsetInCU: 0x59B, offset: 0x6C135, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwta', symObjAddr: 0xF00, symBinAddr: 0x23230, symSize: 0x340 } + - { offsetInCU: 0x5AF, offset: 0x6C149, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwet', symObjAddr: 0x1240, symBinAddr: 0x23570, symSize: 0x40 } + - { offsetInCU: 0x5C3, offset: 0x6C15D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVwst', symObjAddr: 0x1280, symBinAddr: 0x235B0, symSize: 0x90 } + - { offsetInCU: 0x5D7, offset: 0x6C171, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigVMa', symObjAddr: 0x1310, symBinAddr: 0x23640, symSize: 0x10 } + - { offsetInCU: 0x5EB, offset: 0x6C185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwxx', symObjAddr: 0x1330, symBinAddr: 0x23660, symSize: 0x10 } + - { offsetInCU: 0x5FF, offset: 0x6C199, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwca', symObjAddr: 0x1380, symBinAddr: 0x236B0, symSize: 0x50 } + - { offsetInCU: 0x613, offset: 0x6C1AD, size: 0x8, addend: 0x0, symName: ___swift_memcpy17_8, symObjAddr: 0x13D0, symBinAddr: 0x23700, symSize: 0x20 } + - { offsetInCU: 0x627, offset: 0x6C1C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwta', symObjAddr: 0x13F0, symBinAddr: 0x23720, symSize: 0x40 } + - { offsetInCU: 0x63B, offset: 0x6C1D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwet', symObjAddr: 0x1430, symBinAddr: 0x23760, symSize: 0x40 } + - { offsetInCU: 0x64F, offset: 0x6C1E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVwst', symObjAddr: 0x1470, symBinAddr: 0x237A0, symSize: 0x50 } + - { offsetInCU: 0x663, offset: 0x6C1FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigVMa', symObjAddr: 0x14C0, symBinAddr: 0x237F0, symSize: 0x10 } + - { offsetInCU: 0x677, offset: 0x6C211, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwxx', symObjAddr: 0x14D0, symBinAddr: 0x23800, symSize: 0x30 } + - { offsetInCU: 0x68B, offset: 0x6C225, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwcp', symObjAddr: 0x1500, symBinAddr: 0x23830, symSize: 0x80 } + - { offsetInCU: 0x69F, offset: 0x6C239, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwca', symObjAddr: 0x1580, symBinAddr: 0x238B0, symSize: 0xE0 } + - { offsetInCU: 0x6B3, offset: 0x6C24D, size: 0x8, addend: 0x0, symName: ___swift_memcpy49_8, symObjAddr: 0x1660, symBinAddr: 0x23990, symSize: 0x30 } + - { offsetInCU: 0x6C7, offset: 0x6C261, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwta', symObjAddr: 0x1690, symBinAddr: 0x239C0, symSize: 0x90 } + - { offsetInCU: 0x6DB, offset: 0x6C275, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwet', symObjAddr: 0x1720, symBinAddr: 0x23A50, symSize: 0x50 } + - { offsetInCU: 0x6EF, offset: 0x6C289, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVwst', symObjAddr: 0x1770, symBinAddr: 0x23AA0, symSize: 0x60 } + - { offsetInCU: 0x703, offset: 0x6C29D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigVMa', symObjAddr: 0x17D0, symBinAddr: 0x23B00, symSize: 0x10 } + - { offsetInCU: 0x717, offset: 0x6C2B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwxx', symObjAddr: 0x17E0, symBinAddr: 0x23B10, symSize: 0x30 } + - { offsetInCU: 0x72B, offset: 0x6C2C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwcp', symObjAddr: 0x1810, symBinAddr: 0x23B40, symSize: 0x40 } + - { offsetInCU: 0x73F, offset: 0x6C2D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwca', symObjAddr: 0x1850, symBinAddr: 0x23B80, symSize: 0x60 } + - { offsetInCU: 0x753, offset: 0x6C2ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwta', symObjAddr: 0x18D0, symBinAddr: 0x23BE0, symSize: 0x50 } + - { offsetInCU: 0x767, offset: 0x6C301, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwet', symObjAddr: 0x1920, symBinAddr: 0x23C30, symSize: 0x40 } + - { offsetInCU: 0x77B, offset: 0x6C315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVwst', symObjAddr: 0x1960, symBinAddr: 0x23C70, symSize: 0x50 } + - { offsetInCU: 0x78F, offset: 0x6C329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigVMa', symObjAddr: 0x19B0, symBinAddr: 0x23CC0, symSize: 0x10 } + - { offsetInCU: 0x7A3, offset: 0x6C33D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwet', symObjAddr: 0x19D0, symBinAddr: 0x23CD0, symSize: 0x40 } + - { offsetInCU: 0x7B7, offset: 0x6C351, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVwst', symObjAddr: 0x1A10, symBinAddr: 0x23D10, symSize: 0x50 } + - { offsetInCU: 0x7CB, offset: 0x6C365, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigVMa', symObjAddr: 0x1A60, symBinAddr: 0x23D60, symSize: 0x10 } + - { offsetInCU: 0x7DF, offset: 0x6C379, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwet', symObjAddr: 0x1A80, symBinAddr: 0x23D70, symSize: 0x80 } + - { offsetInCU: 0x7F3, offset: 0x6C38D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwst', symObjAddr: 0x1B00, symBinAddr: 0x23DF0, symSize: 0xD0 } + - { offsetInCU: 0x807, offset: 0x6C3A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwug', symObjAddr: 0x1BD0, symBinAddr: 0x23EC0, symSize: 0x10 } + - { offsetInCU: 0x81B, offset: 0x6C3B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwup', symObjAddr: 0x1BE0, symBinAddr: 0x23ED0, symSize: 0x10 } + - { offsetInCU: 0x82F, offset: 0x6C3C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOwui', symObjAddr: 0x1BF0, symBinAddr: 0x23EE0, symSize: 0x10 } + - { offsetInCU: 0x843, offset: 0x6C3DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOMa', symObjAddr: 0x1C00, symBinAddr: 0x23EF0, symSize: 0x10 } + - { offsetInCU: 0x8BA, offset: 0x6C454, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x600, symBinAddr: 0x22930, symSize: 0x40 } + - { offsetInCU: 0xA5E, offset: 0x6C5F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO2eeoiySbAC_ACtFZ', symObjAddr: 0x0, symBinAddr: 0x22390, symSize: 0x10 } + - { offsetInCU: 0xA93, offset: 0x6C62D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A14TConnectConfigV8uniqueId18mqttConnectionType05debugE00hE010sdkOptionsACSS_AA04MqttiJ0OAA05DebugE0VSgAA0nE0VSgAA15SDKClientOptionVtcfC', symObjAddr: 0x10, symBinAddr: 0x223A0, symSize: 0x280 } + - { offsetInCU: 0xB04, offset: 0x6C69E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvg', symObjAddr: 0x2C0, symBinAddr: 0x22620, symSize: 0x30 } + - { offsetInCU: 0xB1E, offset: 0x6C6B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvs', symObjAddr: 0x2F0, symBinAddr: 0x22650, symSize: 0x30 } + - { offsetInCU: 0xB52, offset: 0x6C6EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM', symObjAddr: 0x320, symBinAddr: 0x22680, symSize: 0x10 } + - { offsetInCU: 0xB66, offset: 0x6C700, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV12discoveryUrlSSvM.resume.0', symObjAddr: 0x330, symBinAddr: 0x22690, symSize: 0x10 } + - { offsetInCU: 0xB87, offset: 0x6C721, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvg', symObjAddr: 0x340, symBinAddr: 0x226A0, symSize: 0x10 } + - { offsetInCU: 0xB9B, offset: 0x6C735, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvs', symObjAddr: 0x350, symBinAddr: 0x226B0, symSize: 0x10 } + - { offsetInCU: 0xBCF, offset: 0x6C769, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM', symObjAddr: 0x360, symBinAddr: 0x226C0, symSize: 0x20 } + - { offsetInCU: 0xBF3, offset: 0x6C78D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11DebugConfigV5debugSbvM.resume.0', symObjAddr: 0x380, symBinAddr: 0x226E0, symSize: 0x10 } + - { offsetInCU: 0xC14, offset: 0x6C7AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV011certificateE0AA011CertificateE0VSgvg', symObjAddr: 0x390, symBinAddr: 0x226F0, symSize: 0x30 } + - { offsetInCU: 0xC28, offset: 0x6C7C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MqttConfigV014offlineStorageE0AA07OfflinegE0VSgvg', symObjAddr: 0x3F0, symBinAddr: 0x22720, symSize: 0x20 } + - { offsetInCU: 0xC3C, offset: 0x6C7D6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV15certificatePathSSvg', symObjAddr: 0x410, symBinAddr: 0x22740, symSize: 0x30 } + - { offsetInCU: 0xC50, offset: 0x6C7EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17CertificateConfigV19certificatePasswordSSvg', symObjAddr: 0x440, symBinAddr: 0x22770, symSize: 0x30 } + - { offsetInCU: 0xC64, offset: 0x6C7FE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivg', symObjAddr: 0x470, symBinAddr: 0x227A0, symSize: 0x10 } + - { offsetInCU: 0xC78, offset: 0x6C812, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivs', symObjAddr: 0x480, symBinAddr: 0x227B0, symSize: 0x10 } + - { offsetInCU: 0xCAA, offset: 0x6C844, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM', symObjAddr: 0x490, symBinAddr: 0x227C0, symSize: 0x10 } + - { offsetInCU: 0xCBE, offset: 0x6C858, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV14availSpaceInMbSivM.resume.0', symObjAddr: 0x4A0, symBinAddr: 0x227D0, symSize: 0x10 } + - { offsetInCU: 0xCDF, offset: 0x6C879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivg', symObjAddr: 0x4B0, symBinAddr: 0x227E0, symSize: 0x10 } + - { offsetInCU: 0xCF3, offset: 0x6C88D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivs', symObjAddr: 0x4C0, symBinAddr: 0x227F0, symSize: 0x10 } + - { offsetInCU: 0xD25, offset: 0x6C8BF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM', symObjAddr: 0x4D0, symBinAddr: 0x22800, symSize: 0x20 } + - { offsetInCU: 0xD49, offset: 0x6C8E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV9fileCountSivM.resume.0', symObjAddr: 0x4F0, symBinAddr: 0x22820, symSize: 0x10 } + - { offsetInCU: 0xD6A, offset: 0x6C904, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM', symObjAddr: 0x500, symBinAddr: 0x22830, symSize: 0x20 } + - { offsetInCU: 0xD8E, offset: 0x6C928, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageConfigV8disabledSbvM.resume.0', symObjAddr: 0x520, symBinAddr: 0x22850, symSize: 0x10 } + - { offsetInCU: 0xDBD, offset: 0x6C957, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO4hash4intoys6HasherVz_tF', symObjAddr: 0x530, symBinAddr: 0x22860, symSize: 0x20 } + - { offsetInCU: 0xE48, offset: 0x6C9E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS18MqttConnectionTypeO9hashValueSivg', symObjAddr: 0x550, symBinAddr: 0x22880, symSize: 0x40 } + - { offsetInCU: 0x95E, offset: 0x6D468, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyFTo', symObjAddr: 0x8C20, symBinAddr: 0x2CB60, symSize: 0x30 } + - { offsetInCU: 0x1908, offset: 0x6E412, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tFTo', symObjAddr: 0x17E80, symBinAddr: 0x3BDC0, symSize: 0x80 } + - { offsetInCU: 0x198A, offset: 0x6E494, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tFTo', symObjAddr: 0x19070, symBinAddr: 0x3CFB0, symSize: 0x40 } + - { offsetInCU: 0x19A6, offset: 0x6E4B0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_', symObjAddr: 0x190B0, symBinAddr: 0x3CFF0, symSize: 0x160 } + - { offsetInCU: 0x1AAF, offset: 0x6E5B9, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_ypt_Tgm5', symObjAddr: 0x19210, symBinAddr: 0x3D150, symSize: 0x50 } + - { offsetInCU: 0x1B2D, offset: 0x6E637, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSS_Tgm5', symObjAddr: 0x192B0, symBinAddr: 0x3D1A0, symSize: 0x40 } + - { offsetInCU: 0x1BBB, offset: 0x6E6C5, size: 0x8, addend: 0x0, symName: '_$sSa22_allocateUninitializedySayxG_SpyxGtSiFZSo20NSJSONWritingOptionsV_Tgm5', symObjAddr: 0x192F0, symBinAddr: 0x3D1E0, symSize: 0x40 } + - { offsetInCU: 0x1C29, offset: 0x6E733, size: 0x8, addend: 0x0, symName: '_$ss29getContiguousArrayStorageType3fors01_bcD0CyxGmxm_tlFSo7NSTimerC_Tgm5', symObjAddr: 0x19330, symBinAddr: 0x3D220, symSize: 0x60 } + - { offsetInCU: 0x22F5, offset: 0x6EDFF, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSS3key_yp5valuet_Tgm5', symObjAddr: 0x1A280, symBinAddr: 0x3E170, symSize: 0x90 } + - { offsetInCU: 0x2359, offset: 0x6EE63, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCSo7NSTimerC_Tgm5', symObjAddr: 0x1A310, symBinAddr: 0x3E200, symSize: 0x80 } + - { offsetInCU: 0x2426, offset: 0x6EF30, size: 0x8, addend: 0x0, symName: '_$sxq_xq_Iegnnrr_x3key_q_5valuetx_q_tIegnr_SHRzr0_lTRSS_ypTg575$sSD5merge_16uniquingKeysWithySDyxq_Gn_q_q__q_tKXEtKFx_q_tx_q_tcfU_SS_ypTG5Tf3nnpf_n', symObjAddr: 0x1A4B0, symBinAddr: 0x3E3A0, symSize: 0x40 } + - { offsetInCU: 0x254B, offset: 0x6F055, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16checkEdgeRuleVal12valToCompare11strOperator0jkL4WithSbSf_SSSftFTf4nnnd_n', symObjAddr: 0x1AF10, symBinAddr: 0x3ED90, symSize: 0x1B0 } + - { offsetInCU: 0x26D9, offset: 0x6F1E3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC18addValInNestedDict4dict10parentName03attM03valSDySSypGAI_S3StFTf4nnnnd_n', symObjAddr: 0x1B1B0, symBinAddr: 0x3F030, symSize: 0x3E0 } + - { offsetInCU: 0x2E52, offset: 0x6F95C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14validateNumber5value2dv8dataTypeSbSS_SSSgSitFTf4nnnd_n', symObjAddr: 0x1C610, symBinAddr: 0x40490, symSize: 0xD90 } + - { offsetInCU: 0x3F5C, offset: 0x70A66, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC17validateBoolValue5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D3A0, symBinAddr: 0x41220, symSize: 0x1E0 } + - { offsetInCU: 0x40CD, offset: 0x70BD7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC15validateLatLong5value2dvSbSS_SSSgtFTf4nnd_n', symObjAddr: 0x1D580, symBinAddr: 0x41400, symSize: 0x1B0 } + - { offsetInCU: 0x44C5, offset: 0x70FCF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1E1D0, symBinAddr: 0x42050, symSize: 0x10 } + - { offsetInCU: 0x44D9, offset: 0x70FE3, size: 0x8, addend: 0x0, symName: '_$sypSgIegn_SgWOy', symObjAddr: 0x1E290, symBinAddr: 0x42110, symSize: 0x20 } + - { offsetInCU: 0x44ED, offset: 0x70FF7, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgWOy', symObjAddr: 0x1E2B0, symBinAddr: 0x42130, symSize: 0x20 } + - { offsetInCU: 0x4501, offset: 0x7100B, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOWOy', symObjAddr: 0x1E2D0, symBinAddr: 0x42150, symSize: 0x40 } + - { offsetInCU: 0x4515, offset: 0x7101F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVACSeAAWl', symObjAddr: 0x1E330, symBinAddr: 0x42190, symSize: 0x30 } + - { offsetInCU: 0x4529, offset: 0x71033, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSgWOy', symObjAddr: 0x1E360, symBinAddr: 0x421C0, symSize: 0x180 } + - { offsetInCU: 0x453D, offset: 0x71047, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSgWOy', symObjAddr: 0x1E4E0, symBinAddr: 0x42340, symSize: 0x2D0 } + - { offsetInCU: 0x4551, offset: 0x7105B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSgWOy', symObjAddr: 0x1E7B0, symBinAddr: 0x42610, symSize: 0x70 } + - { offsetInCU: 0x4565, offset: 0x7106F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSgWOy', symObjAddr: 0x1E820, symBinAddr: 0x42680, symSize: 0x30 } + - { offsetInCU: 0x4579, offset: 0x71083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSgWOy', symObjAddr: 0x1E850, symBinAddr: 0x426B0, symSize: 0xD0 } + - { offsetInCU: 0x458D, offset: 0x71097, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSgWOy', symObjAddr: 0x1E920, symBinAddr: 0x42780, symSize: 0xB0 } + - { offsetInCU: 0x45E0, offset: 0x710EA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV06InlineB0VyAESWcfCTf4nd_n', symObjAddr: 0x1F040, symBinAddr: 0x42830, symSize: 0xC0 } + - { offsetInCU: 0x4656, offset: 0x71160, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV10LargeSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F100, symBinAddr: 0x428F0, symSize: 0x80 } + - { offsetInCU: 0x4683, offset: 0x7118D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV11InlineSliceVyAESWcfCTf4nd_n', symObjAddr: 0x1F180, symBinAddr: 0x42970, symSize: 0x80 } + - { offsetInCU: 0x4717, offset: 0x71221, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataV15_RepresentationOyAESWcfCTf4nd_n', symObjAddr: 0x1F200, symBinAddr: 0x429F0, symSize: 0x70 } + - { offsetInCU: 0x486E, offset: 0x71378, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC16generateSasToken11resourceUri3keyS2S_SStKFTf4nnd_n', symObjAddr: 0x1F270, symBinAddr: 0x42A60, symSize: 0x780 } + - { offsetInCU: 0x4D47, offset: 0x71851, size: 0x8, addend: 0x0, symName: '_$sSays5UInt8VGSayxG10Foundation15ContiguousBytesAeBRszlWl', symObjAddr: 0x1F9F0, symBinAddr: 0x431E0, symSize: 0x40 } + - { offsetInCU: 0x4D5B, offset: 0x71865, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_TA', symObjAddr: 0x1FAE0, symBinAddr: 0x43250, symSize: 0x10 } + - { offsetInCU: 0x4D6F, offset: 0x71879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pWOc', symObjAddr: 0x1FAF0, symBinAddr: 0x43260, symSize: 0x30 } + - { offsetInCU: 0x4D83, offset: 0x7188D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVACSeAAWl', symObjAddr: 0x1FB20, symBinAddr: 0x43290, symSize: 0x30 } + - { offsetInCU: 0x4D97, offset: 0x718A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_TA', symObjAddr: 0x1FBC0, symBinAddr: 0x432E0, symSize: 0x20 } + - { offsetInCU: 0x4DAB, offset: 0x718B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVWOc', symObjAddr: 0x1FC60, symBinAddr: 0x43360, symSize: 0x30 } + - { offsetInCU: 0x4DE0, offset: 0x718EA, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOd', symObjAddr: 0x1FD60, symBinAddr: 0x43460, symSize: 0x40 } + - { offsetInCU: 0x4DF4, offset: 0x718FE, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOc', symObjAddr: 0x1FDD0, symBinAddr: 0x434D0, symSize: 0x30 } + - { offsetInCU: 0x4E08, offset: 0x71912, size: 0x8, addend: 0x0, symName: '_$ss11AnyHashableVWOh', symObjAddr: 0x1FE00, symBinAddr: 0x43500, symSize: 0x30 } + - { offsetInCU: 0x4E1C, offset: 0x71926, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_TA', symObjAddr: 0x1FE50, symBinAddr: 0x43550, symSize: 0x50 } + - { offsetInCU: 0x4E30, offset: 0x7193A, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVACSLAAWl', symObjAddr: 0x1FEA0, symBinAddr: 0x435A0, symSize: 0x40 } + - { offsetInCU: 0x4E44, offset: 0x7194E, size: 0x8, addend: 0x0, symName: '_$sSdySdSgxcSyRzlufcSbSpySdGXEfU_SbSPys4Int8VGXEfU_TA', symObjAddr: 0x1FF70, symBinAddr: 0x43670, symSize: 0x10 } + - { offsetInCU: 0x4E58, offset: 0x71962, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS13ModelEdgeRuleVSgWOy', symObjAddr: 0x1FF80, symBinAddr: 0x43680, symSize: 0x20 } + - { offsetInCU: 0x4E6C, offset: 0x71976, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12EdgeRuleDataVSgWOy', symObjAddr: 0x1FFA0, symBinAddr: 0x436A0, symSize: 0x30 } + - { offsetInCU: 0x4E80, offset: 0x7198A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_TA', symObjAddr: 0x20010, symBinAddr: 0x43710, symSize: 0x40 } + - { offsetInCU: 0x54F1, offset: 0x71FFB, size: 0x8, addend: 0x0, symName: '_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5', symObjAddr: 0xBA80, symBinAddr: 0x2F9C0, symSize: 0x4B0 } + - { offsetInCU: 0x5640, offset: 0x7214A, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int32V_Tgm5', symObjAddr: 0xD130, symBinAddr: 0x31070, symSize: 0x3C0 } + - { offsetInCU: 0x5944, offset: 0x7244E, size: 0x8, addend: 0x0, symName: '_$ss17FixedWidthIntegerPsEyxSgSScfCs5Int64V_Tgm5', symObjAddr: 0xD4F0, symBinAddr: 0x31430, symSize: 0x390 } + - { offsetInCU: 0x5DBC, offset: 0x728C6, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5158$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_A2DTf1cn_n', symObjAddr: 0x11F00, symBinAddr: 0x35E40, symSize: 0x1B0 } + - { offsetInCU: 0x61A6, offset: 0x72CB0, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgm5Tf4g_n', symObjAddr: 0x1AA10, symBinAddr: 0x3E900, symSize: 0xE0 } + - { offsetInCU: 0x62AF, offset: 0x72DB9, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg552$sSSyps5Error_pIggnzo_SS3key_yp5valuetsAA_pIegnzo_TRSSyps0F0_pIggnzo_Tf1cn_nTf4ng_n', symObjAddr: 0x1ACF0, symBinAddr: 0x3EB70, symSize: 0x220 } + - { offsetInCU: 0x63E4, offset: 0x72EEE, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTgm5Tf4g_n', symObjAddr: 0x1B0C0, symBinAddr: 0x3EF40, symSize: 0xF0 } + - { offsetInCU: 0x651B, offset: 0x73025, size: 0x8, addend: 0x0, symName: '_$sSlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKFSaySDySSypGG_Tg5179$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFSbAIXEfU_SaySSGTf1cn_nTf4ng_n', symObjAddr: 0x1B590, symBinAddr: 0x3F410, symSize: 0x1A0 } + - { offsetInCU: 0x6861, offset: 0x7336B, size: 0x8, addend: 0x0, symName: '_$sSTsE7forEachyyy7ElementQzKXEKFSDySSypG_Tg5113$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_Sb0eF4_AWS0eiJ0CA2DSiSgSayADGSgADz_XxTf1cn_nTf4nngnnngg_n', symObjAddr: 0x1D940, symBinAddr: 0x417C0, symSize: 0x240 } + - { offsetInCU: 0x6990, offset: 0x7349A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypSgTgm5Tf4g_n', symObjAddr: 0x1DB80, symBinAddr: 0x41A00, symSize: 0xF0 } + - { offsetInCU: 0x6ADE, offset: 0x735E8, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSSgTgm5Tf4g_n', symObjAddr: 0x1DC70, symBinAddr: 0x41AF0, symSize: 0xF0 } + - { offsetInCU: 0x6C40, offset: 0x7374A, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SbTgm5Tf4g_n', symObjAddr: 0x1DD60, symBinAddr: 0x41BE0, symSize: 0xE0 } + - { offsetInCU: 0x6D96, offset: 0x738A0, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgm5Tf4g_n', symObjAddr: 0x1DE40, symBinAddr: 0x41CC0, symSize: 0xF0 } + - { offsetInCU: 0x6ED8, offset: 0x739E2, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_So8NSObjectCTgm5Tf4g_n', symObjAddr: 0x1DF30, symBinAddr: 0x41DB0, symSize: 0xE0 } + - { offsetInCU: 0x703A, offset: 0x73B44, size: 0x8, addend: 0x0, symName: '_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SiTgm5Tf4g_n', symObjAddr: 0x1E0F0, symBinAddr: 0x41F70, symSize: 0xE0 } + - { offsetInCU: 0x71B1, offset: 0x73CBB, size: 0x8, addend: 0x0, symName: '_$sSlsE8dropLasty11SubSequenceQzSiFSS_Tg5Tf4ng_n', symObjAddr: 0x1FC90, symBinAddr: 0x43390, symSize: 0xD0 } + - { offsetInCU: 0x7718, offset: 0x74222, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC20reachabilityObserveryyF', symObjAddr: 0x0, symBinAddr: 0x23F40, symSize: 0x170 } + - { offsetInCU: 0x77EB, offset: 0x742F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctF', symObjAddr: 0x170, symBinAddr: 0x240B0, symSize: 0x390 } + - { offsetInCU: 0x7955, offset: 0x7445F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC10initialize4cpId06uniqueH02pf14deviceCallback010twinUpdateL0013getAttributesL00o5TwinsL00o12ChildDevucesL0ySS_S2SyypSgcyAMcyAMcyAMcyAMctFySb_yptcfU_', symObjAddr: 0x2A00, symBinAddr: 0x26940, symSize: 0xA70 } + - { offsetInCU: 0x7D42, offset: 0x7484C, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcigSS_ypTg5', symObjAddr: 0x500, symBinAddr: 0x24440, symSize: 0x80 } + - { offsetInCU: 0x7E97, offset: 0x749A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF', symObjAddr: 0x580, symBinAddr: 0x244C0, symSize: 0x2140 } + - { offsetInCU: 0x8E52, offset: 0x7595C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS_yptXEfU_', symObjAddr: 0xD880, symBinAddr: 0x317C0, symSize: 0x3D60 } + - { offsetInCU: 0xA29C, offset: 0x76DA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF15checkisValValidL_3val2dt2dvSbSS_SiSSSgtF', symObjAddr: 0x115E0, symBinAddr: 0x35520, symSize: 0x640 } + - { offsetInCU: 0xA6B8, offset: 0x771C2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtFySS3key_yp5valuet_tXEfU0_', symObjAddr: 0x13740, symBinAddr: 0x37680, symSize: 0x2E30 } + - { offsetInCU: 0xBC0F, offset: 0x78719, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateData4data14skipValidationySDySSypG_SbtF040createResponseForEdgeRuleDeviceTelemetryG0L_4dictyAG_tFySS_yptXEfU_', symObjAddr: 0x175A0, symBinAddr: 0x3B4E0, symSize: 0x450 } + - { offsetInCU: 0xBDA0, offset: 0x788AA, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSAA14StringProtocolRzrlE7keyPathypSgAA03KeyG0V_tcigSS_ypTg5', symObjAddr: 0x26C0, symBinAddr: 0x26600, symSize: 0x340 } + - { offsetInCU: 0xC1D8, offset: 0x78CE2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tF', symObjAddr: 0x3470, symBinAddr: 0x273B0, symSize: 0x460 } + - { offsetInCU: 0xC464, offset: 0x78F6E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13initaliseCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL8uniqueIdySS_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0x38D0, symBinAddr: 0x27810, symSize: 0x4C20 } + - { offsetInCU: 0xE0BF, offset: 0x7ABC9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStF', symObjAddr: 0x84F0, symBinAddr: 0x2C430, symSize: 0x2E0 } + - { offsetInCU: 0xE1B6, offset: 0x7ACC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC13startMQTTCall33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dataSyncResponse8passwordySDySSypG_SStFyypSg_SitcfU_', symObjAddr: 0x8C50, symBinAddr: 0x2CB90, symSize: 0x1CB0 } + - { offsetInCU: 0xEBBF, offset: 0x7B6C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC28startTimerForReInitialiseDSC33_6AE9C8E8605AFC2A88927A9847ED7B2ELL21durationSyncFrequencyySd_tF', symObjAddr: 0x87D0, symBinAddr: 0x2C710, symSize: 0x120 } + - { offsetInCU: 0xEC38, offset: 0x7B742, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerC12timeInterval6target8selector8userInfo7repeatsABSd_yp10ObjectiveC8SelectorVypSgSbtcfCTO', symObjAddr: 0x88F0, symBinAddr: 0x2C830, symSize: 0x120 } + - { offsetInCU: 0xEC53, offset: 0x7B75D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12reInitialise33_6AE9C8E8605AFC2A88927A9847ED7B2ELLyyF', symObjAddr: 0x8A10, symBinAddr: 0x2C950, symSize: 0x210 } + - { offsetInCU: 0xEF5D, offset: 0x7BA67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tF', symObjAddr: 0xA900, symBinAddr: 0x2E840, symSize: 0x4C0 } + - { offsetInCU: 0xF1BA, offset: 0x7BCC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC25getUpdatedSyncResponseFor33_6AE9C8E8605AFC2A88927A9847ED7B2ELL6strKeyySi_tFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtcfU_', symObjAddr: 0xBF30, symBinAddr: 0x2FE70, symSize: 0x1200 } + - { offsetInCU: 0xFACF, offset: 0x7C5D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22startEdgeDeviceProcess33_6AE9C8E8605AFC2A88927A9847ED7B2ELL16dictSyncResponseySDySSypG_tF', symObjAddr: 0xADC0, symBinAddr: 0x2ED00, symSize: 0xCC0 } + - { offsetInCU: 0x104E5, offset: 0x7CFEF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF', symObjAddr: 0x120B0, symBinAddr: 0x35FF0, symSize: 0x1690 } + - { offsetInCU: 0x115FD, offset: 0x7E107, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC27sendMessageForEdgeRuleMatch13dictValidData0L15DeviceTelemetry2id3tagySDySSypG_AIS2StF22handleHashSeperatedAttL_7ruleArrySaySSG_tFTf4nndn_n', symObjAddr: 0x1B730, symBinAddr: 0x3F5B0, symSize: 0xD70 } + - { offsetInCU: 0x11FB7, offset: 0x7EAC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC12validateDate5value10dateFormat2dvSbSS_S2SSgtF', symObjAddr: 0x16570, symBinAddr: 0x3A4B0, symSize: 0x1030 } + - { offsetInCU: 0x12AAE, offset: 0x7F5B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC11isDateValid7dateVal0I6Format10Foundation0G0VSgSS_SStF', symObjAddr: 0x179F0, symBinAddr: 0x3B930, symSize: 0x1C0 } + - { offsetInCU: 0x12B32, offset: 0x7F63C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC19reachabilityChanged33_6AE9C8E8605AFC2A88927A9847ED7B2ELL4notey10Foundation12NotificationV_tF', symObjAddr: 0x17BB0, symBinAddr: 0x3BAF0, symSize: 0x2D0 } + - { offsetInCU: 0x12C57, offset: 0x7F761, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC22fireTimerForEdgeDevice5timerySo7NSTimerC_tF', symObjAddr: 0x17F00, symBinAddr: 0x3BE40, symSize: 0x1170 } + - { offsetInCU: 0x1361F, offset: 0x80129, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSS_Tg5', symObjAddr: 0x19390, symBinAddr: 0x3D280, symSize: 0x60 } + - { offsetInCU: 0x1365D, offset: 0x80167, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x193F0, symBinAddr: 0x3D2E0, symSize: 0x30 } + - { offsetInCU: 0x136A4, offset: 0x801AE, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4findys10_HashTableV6BucketV6bucket_Sb5foundtxSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19420, symBinAddr: 0x3D310, symSize: 0x80 } + - { offsetInCU: 0x1373E, offset: 0x80248, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_ypTg5', symObjAddr: 0x194A0, symBinAddr: 0x3D390, symSize: 0x60 } + - { offsetInCU: 0x137DA, offset: 0x802E4, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFSS_So8NSObjectCTg5', symObjAddr: 0x19500, symBinAddr: 0x3D3F0, symSize: 0x50 } + - { offsetInCU: 0x13853, offset: 0x8035D, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSS_Tg5', symObjAddr: 0x195A0, symBinAddr: 0x3D490, symSize: 0xE0 } + - { offsetInCU: 0x138B7, offset: 0x803C1, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFs11AnyHashableV_Tg5', symObjAddr: 0x19680, symBinAddr: 0x3D570, symSize: 0xC0 } + - { offsetInCU: 0x138E0, offset: 0x803EA, size: 0x8, addend: 0x0, symName: '_$ss22__RawDictionaryStorageC4find_9hashValues10_HashTableV6BucketV6bucket_Sb5foundtx_SitSHRzlFSo18NSFileAttributeKeya_Tg5', symObjAddr: 0x19740, symBinAddr: 0x3D630, symSize: 0x180 } + - { offsetInCU: 0x139C9, offset: 0x804D3, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0x198C0, symBinAddr: 0x3D7B0, symSize: 0x110 } + - { offsetInCU: 0x13AF8, offset: 0x80602, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0x199D0, symBinAddr: 0x3D8C0, symSize: 0x130 } + - { offsetInCU: 0x13C27, offset: 0x80731, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSo7NSTimerC_Tg5', symObjAddr: 0x19B00, symBinAddr: 0x3D9F0, symSize: 0x180 } + - { offsetInCU: 0x13D98, offset: 0x808A2, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0x19C80, symBinAddr: 0x3DB70, symSize: 0x1A0 } + - { offsetInCU: 0x13F10, offset: 0x80A1A, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFs5Int32V_Tg5', symObjAddr: 0x19E20, symBinAddr: 0x3DD10, symSize: 0x110 } + - { offsetInCU: 0x14046, offset: 0x80B50, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSf_Tg5', symObjAddr: 0x19F30, symBinAddr: 0x3DE20, symSize: 0x110 } + - { offsetInCU: 0x1417C, offset: 0x80C86, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tg5', symObjAddr: 0x1A170, symBinAddr: 0x3E060, symSize: 0x110 } + - { offsetInCU: 0x1429A, offset: 0x80DA4, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo7NSTimerC_Tg5', symObjAddr: 0x1A390, symBinAddr: 0x3E280, symSize: 0x120 } + - { offsetInCU: 0x14385, offset: 0x80E8F, size: 0x8, addend: 0x0, symName: '_$ss15LazyMapSequenceV8IteratorV4nextq_SgyFSDySSypG_SS_yptTg5', symObjAddr: 0x1A7C0, symBinAddr: 0x3E6B0, symSize: 0x180 } + - { offsetInCU: 0x14454, offset: 0x80F5E, size: 0x8, addend: 0x0, symName: '_$sSq3mapyqd__Sgqd__xKXEKlFSS3key_yp5valuet_SS_yptTg5', symObjAddr: 0x1A940, symBinAddr: 0x3E830, symSize: 0xD0 } + - { offsetInCU: 0x144AE, offset: 0x80FB8, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySSG_s15EmptyCollectionVySSGTg5Tf4nndn_n', symObjAddr: 0x1AB30, symBinAddr: 0x3E9E0, symSize: 0x170 } + - { offsetInCU: 0x146EE, offset: 0x811F8, size: 0x8, addend: 0x0, symName: '_$ss20_ArrayBufferProtocolPsE15replaceSubrange_4with10elementsOfySnySiG_Siqd__ntSlRd__7ElementQyd__AGRtzlFs01_aB0VySDySSypGG_s15EmptyCollectionVyALGTg5Tf4nndn_n', symObjAddr: 0x1C4A0, symBinAddr: 0x40320, symSize: 0x170 } + - { offsetInCU: 0x27, offset: 0x8191D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43780, symSize: 0x30 } + - { offsetInCU: 0x3F, offset: 0x81935, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwCP', symObjAddr: 0x0, symBinAddr: 0x43780, symSize: 0x30 } + - { offsetInCU: 0x53, offset: 0x81949, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwxx', symObjAddr: 0x30, symBinAddr: 0x437B0, symSize: 0x140 } + - { offsetInCU: 0x67, offset: 0x8195D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwcp', symObjAddr: 0x170, symBinAddr: 0x438F0, symSize: 0x440 } + - { offsetInCU: 0x7B, offset: 0x81971, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwca', symObjAddr: 0x5B0, symBinAddr: 0x43D30, symSize: 0x590 } + - { offsetInCU: 0x8F, offset: 0x81985, size: 0x8, addend: 0x0, symName: ___swift_memcpy488_8, symObjAddr: 0xB70, symBinAddr: 0x442C0, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x81999, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwta', symObjAddr: 0xB80, symBinAddr: 0x442D0, symSize: 0x440 } + - { offsetInCU: 0xB7, offset: 0x819AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwet', symObjAddr: 0xFC0, symBinAddr: 0x44710, symSize: 0x40 } + - { offsetInCU: 0xCB, offset: 0x819C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVwst', symObjAddr: 0x1000, symBinAddr: 0x44750, symSize: 0x110 } + - { offsetInCU: 0xDF, offset: 0x819D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15CocoaMqttConfigVMa', symObjAddr: 0x1110, symBinAddr: 0x44860, symSize: 0xA } + - { offsetInCU: 0x4F9, offset: 0x81FAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17publishDataOnMQTT33_0784B8373DAEE0B837B4462EE4A65405LL17dictSDKToHubForOS11strPubTopic0T13MessageToPassySDySSypG_S2StFyyXEfU_', symObjAddr: 0xA490, symBinAddr: 0x4ED00, symSize: 0x250 } + - { offsetInCU: 0x5CD, offset: 0x82083, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11getAllTwinsyyFyyXEfU_', symObjAddr: 0xA6E0, symBinAddr: 0x4EF50, symSize: 0x260 } + - { offsetInCU: 0x6B0, offset: 0x82166, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnc_nTf4nnng_n', symObjAddr: 0xF630, symBinAddr: 0x53EA0, symSize: 0x8E0 } + - { offsetInCU: 0x9E6, offset: 0x8249C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnnnnnc_nTf4nnnnnng_n', symObjAddr: 0xFF10, symBinAddr: 0x54780, symSize: 0xA50 } + - { offsetInCU: 0xCC0, offset: 0x82776, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL21LLyySDySSypGFySbcfU0_ACTf1nnncn_nTf4nnnng_n', symObjAddr: 0x10960, symBinAddr: 0x551D0, symSize: 0x300 } + - { offsetInCU: 0xDD8, offset: 0x8288E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnc_nTf4nnnggg_n', symObjAddr: 0x11450, symBinAddr: 0x55CC0, symSize: 0x950 } + - { offsetInCU: 0x10CE, offset: 0x82B84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12swapFilename33_0784B8373DAEE0B837B4462EE4A65405LL11oldFileName7logPath8callBackySSSg_SSyyctF04$s15ab6_AWS10d20C10createFile33_0784ghijkL67LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctFyycfU_ACSSSDySSypGSbIegy_Tf1nncn_n0tab1_ud24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnnnnnc_nTf4nnnnnnggg_n', symObjAddr: 0x11DA0, symBinAddr: 0x56610, symSize: 0xBD0 } + - { offsetInCU: 0x13A8, offset: 0x82E5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10createFile33_0784B8373DAEE0B837B4462EE4A65405LL11offlineData03oldF07logPath8callBackySDySSypG_SSSgSSySbctF04$s15ab6_AWS10d24C14offlineProcess33_0784ghijkL29LLyySDySSypGFySSXEfU1_ySbcfU_ACSSSaySSGz_XxTf1nnncn_nTf4nnnnggg_n', symObjAddr: 0x12970, symBinAddr: 0x571E0, symSize: 0x370 } + - { offsetInCU: 0x14C0, offset: 0x82F76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC5TRACE_3funySS_SStFTf4nnd_n', symObjAddr: 0x12CE0, symBinAddr: 0x57550, symSize: 0x210 } + - { offsetInCU: 0x190C, offset: 0x833C2, size: 0x8, addend: 0x0, symName: '_$sIeg_IeyB_TR', symObjAddr: 0x2490, symBinAddr: 0x46D00, symSize: 0x30 } + - { offsetInCU: 0x1E10, offset: 0x838C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCMa', symObjAddr: 0xAA20, symBinAddr: 0x4F290, symSize: 0x20 } + - { offsetInCU: 0x1E55, offset: 0x8390B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_10didReceive17completionHandlery9CocoaMQTTAGC_So11SecTrustRefaySbctFTo', symObjAddr: 0xAA40, symBinAddr: 0x4F2B0, symSize: 0x90 } + - { offsetInCU: 0x1F1C, offset: 0x839D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFTo', symObjAddr: 0xBED0, symBinAddr: 0x50740, symSize: 0x50 } + - { offsetInCU: 0x1F56, offset: 0x83A0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTo', symObjAddr: 0xBF20, symBinAddr: 0x50790, symSize: 0x50 } + - { offsetInCU: 0x1FAC, offset: 0x83A62, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBF70, symBinAddr: 0x507E0, symSize: 0x60 } + - { offsetInCU: 0x1FDF, offset: 0x83A95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didPublishAcky9CocoaMQTTAFC_s6UInt16VtFTo', symObjAddr: 0xBFD0, symBinAddr: 0x50840, symSize: 0x10 } + - { offsetInCU: 0x201E, offset: 0x83AD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTo', symObjAddr: 0xBFE0, symBinAddr: 0x50850, symSize: 0x70 } + - { offsetInCU: 0x2074, offset: 0x83B2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTo', symObjAddr: 0xC050, symBinAddr: 0x508C0, symSize: 0x90 } + - { offsetInCU: 0x20E5, offset: 0x83B9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_20didUnsubscribeTopicsy9CocoaMQTTAFC_SaySSGtFTo', symObjAddr: 0xC0E0, symBinAddr: 0x50950, symSize: 0xE0 } + - { offsetInCU: 0x2167, offset: 0x83C1D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC11mqttDidPingyy9CocoaMQTTAECFTo', symObjAddr: 0xC1C0, symBinAddr: 0x50A30, symSize: 0x10 } + - { offsetInCU: 0x2183, offset: 0x83C39, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18mqttDidReceivePongyy9CocoaMQTTAECFTo', symObjAddr: 0xC1D0, symBinAddr: 0x50A40, symSize: 0x10 } + - { offsetInCU: 0x21BD, offset: 0x83C73, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTo', symObjAddr: 0xC1E0, symBinAddr: 0x50A50, symSize: 0x60 } + - { offsetInCU: 0x24DE, offset: 0x83F94, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFSS_s5Int32VTg5', symObjAddr: 0xD6B0, symBinAddr: 0x51F20, symSize: 0x120 } + - { offsetInCU: 0x2544, offset: 0x83FFA, size: 0x8, addend: 0x0, symName: '_$ss13_parseInteger5ascii5radixq_Sgx_SitSyRzs010FixedWidthB0R_r0_lFADSRys5UInt8VGXEfU_SS_s5Int32VTg5', symObjAddr: 0xD8F0, symBinAddr: 0x52160, symSize: 0x2A0 } + - { offsetInCU: 0x26C8, offset: 0x8417E, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV19_uninitializedCount15minimumCapacityAByxGSi_SitcfCs5UInt8V_Tgmq5', symObjAddr: 0xE180, symBinAddr: 0x529F0, symSize: 0x70 } + - { offsetInCU: 0x2CC4, offset: 0x8477A, size: 0x8, addend: 0x0, symName: '_$sSMsSkRzrlE4sort2byySb7ElementSTQz_ADtKXE_tKFSaySiG_Tg5012$sSMsSkRzSL7C39STRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1cn_n', symObjAddr: 0xEAA0, symBinAddr: 0x53310, symSize: 0x450 } + - { offsetInCU: 0x34EB, offset: 0x84FA1, size: 0x8, addend: 0x0, symName: '_$sSr13_mergeTopRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xEEF0, symBinAddr: 0x53760, symSize: 0x2D0 } + - { offsetInCU: 0x38AD, offset: 0x85363, size: 0x8, addend: 0x0, symName: '_$sSr13_finalizeRuns_6buffer2bySbSaySnySiGGz_SpyxGSbx_xtKXEtKFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nncn_n', symObjAddr: 0xF1C0, symBinAddr: 0x53A30, symSize: 0x160 } + - { offsetInCU: 0x3AA8, offset: 0x8555E, size: 0x8, addend: 0x0, symName: '_$ss6_merge3low3mid4high6buffer2bySbSpyxG_A3GSbx_xtKXEtKlFSi_Tg558$sSMsSkRzSL7ElementSTRpzrlE4sortyyFSbAB_ABtcfu_SaySiG_TGm5Tf1nnnnc_n', symObjAddr: 0xF320, symBinAddr: 0x53B90, symSize: 0x1E0 } + - { offsetInCU: 0x3CF1, offset: 0x857A7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didPublishMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dndd_n', symObjAddr: 0x137E0, symBinAddr: 0x58050, symSize: 0x130 } + - { offsetInCU: 0x3E3B, offset: 0x858F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_18didSubscribeTopics6failedy9CocoaMQTTAGC_So12NSDictionaryCSaySSGtFTf4dnnd_n', symObjAddr: 0x167E0, symBinAddr: 0x5B050, symSize: 0x130 } + - { offsetInCU: 0x3F53, offset: 0x85A09, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOy', symObjAddr: 0x171D0, symBinAddr: 0x5B9D0, symSize: 0x20 } + - { offsetInCU: 0x3F67, offset: 0x85A1D, size: 0x8, addend: 0x0, symName: '_$sypSgSiIegny_SgWOe', symObjAddr: 0x171F0, symBinAddr: 0x5B9F0, symSize: 0x20 } + - { offsetInCU: 0x3F7B, offset: 0x85A31, size: 0x8, addend: 0x0, symName: '_$sypSgWOc', symObjAddr: 0x17270, symBinAddr: 0x5BA10, symSize: 0x40 } + - { offsetInCU: 0x3F8F, offset: 0x85A45, size: 0x8, addend: 0x0, symName: ___swift_allocate_boxed_opaque_existential_0, symObjAddr: 0x17360, symBinAddr: 0x5BA50, symSize: 0x30 } + - { offsetInCU: 0x3FA3, offset: 0x85A59, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVWOb', symObjAddr: 0x17390, symBinAddr: 0x5BA80, symSize: 0x30 } + - { offsetInCU: 0x3FB7, offset: 0x85A6D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSgWOd', symObjAddr: 0x173C0, symBinAddr: 0x5BAB0, symSize: 0x40 } + - { offsetInCU: 0x3FCB, offset: 0x85A81, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_TA', symObjAddr: 0x17400, symBinAddr: 0x5BAF0, symSize: 0x10 } + - { offsetInCU: 0x3FDF, offset: 0x85A95, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x17410, symBinAddr: 0x5BB00, symSize: 0x20 } + - { offsetInCU: 0x3FF3, offset: 0x85AA9, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x17430, symBinAddr: 0x5BB20, symSize: 0x10 } + - { offsetInCU: 0x4007, offset: 0x85ABD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StFyyScMYccfU_TA', symObjAddr: 0x174C0, symBinAddr: 0x5BB70, symSize: 0x40 } + - { offsetInCU: 0x405F, offset: 0x85B15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFyyScMYccfU_TA', symObjAddr: 0x17580, symBinAddr: 0x5BC30, symSize: 0x20 } + - { offsetInCU: 0x409B, offset: 0x85B51, size: 0x8, addend: 0x0, symName: '_$sS2sSTsWl', symObjAddr: 0x175D0, symBinAddr: 0x5BC80, symSize: 0x30 } + - { offsetInCU: 0x4BB5, offset: 0x8666B, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzlF9CocoaMQTT0G11MQTTConnAckO_Tg5', symObjAddr: 0x0, symBinAddr: 0x44870, symSize: 0x140 } + - { offsetInCU: 0x4BE3, offset: 0x86699, size: 0x8, addend: 0x0, symName: '_$sSDyq_SgxcisSS_ypTg5', symObjAddr: 0x140, symBinAddr: 0x449B0, symSize: 0x70 } + - { offsetInCU: 0x4C44, offset: 0x866FA, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSS_Tg5', symObjAddr: 0x1B0, symBinAddr: 0x44A20, symSize: 0xA0 } + - { offsetInCU: 0x4D8B, offset: 0x86841, size: 0x8, addend: 0x0, symName: '_$sSa6appendyyxnFSDySSypG_Tg5', symObjAddr: 0x250, symBinAddr: 0x44AC0, symSize: 0x90 } + - { offsetInCU: 0x4EA1, offset: 0x86957, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5', symObjAddr: 0x2E0, symBinAddr: 0x44B50, symSize: 0x60 } + - { offsetInCU: 0x4EFD, offset: 0x869B3, size: 0x8, addend: 0x0, symName: '_$sSayxSiciMSDySSypG_Tg5.resume.0', symObjAddr: 0x340, symBinAddr: 0x44BB0, symSize: 0x10 } + - { offsetInCU: 0x4F4E, offset: 0x86A04, size: 0x8, addend: 0x0, symName: '_$sSD11removeValue6forKeyq_Sgx_tFSS_ypTg5', symObjAddr: 0x350, symBinAddr: 0x44BC0, symSize: 0xE0 } + - { offsetInCU: 0x5030, offset: 0x86AE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCyACSS_SSAA15SDKClientOptionVS2btcfc', symObjAddr: 0x430, symBinAddr: 0x44CA0, symSize: 0x2D0 } + - { offsetInCU: 0x51AE, offset: 0x86C64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC12initiateMQTT16dictSyncResponse8password18callbackMQTTStatusySDySSypG_SSyypSg_SitctF', symObjAddr: 0x700, symBinAddr: 0x44F70, symSize: 0xDA0 } + - { offsetInCU: 0x561D, offset: 0x870D3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10disconnectyyF', symObjAddr: 0x14A0, symBinAddr: 0x45D10, symSize: 0x4F0 } + - { offsetInCU: 0x589C, offset: 0x87352, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGF', symObjAddr: 0x1990, symBinAddr: 0x46200, symSize: 0xB00 } + - { offsetInCU: 0x5C0F, offset: 0x876C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_', symObjAddr: 0x24C0, symBinAddr: 0x46D30, symSize: 0x2870 } + - { offsetInCU: 0x7052, offset: 0x88B08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC14offlineProcess33_0784B8373DAEE0B837B4462EE4A65405LLyySDySSypGFySSXEfU1_ySbcfU_Tf4dnnn_n', symObjAddr: 0x10C60, symBinAddr: 0x554D0, symSize: 0x7F0 } + - { offsetInCU: 0x7410, offset: 0x88EC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC10deleteFile33_0784B8373DAEE0B837B4462EE4A65405LL7logPath0efN0ySS_SStF', symObjAddr: 0x4D30, symBinAddr: 0x495A0, symSize: 0x19B0 } + - { offsetInCU: 0x8255, offset: 0x89D0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyF', symObjAddr: 0x66E0, symBinAddr: 0x4AF50, symSize: 0x1200 } + - { offsetInCU: 0x8C0F, offset: 0x8A6C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC16checkOfflineData33_0784B8373DAEE0B837B4462EE4A65405LLyyFySiXEfU0_', symObjAddr: 0x78E0, symBinAddr: 0x4C150, symSize: 0x400 } + - { offsetInCU: 0x8D78, offset: 0x8A82E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x8700, symBinAddr: 0x4CF70, symSize: 0x210 } + - { offsetInCU: 0x9003, offset: 0x8AAB9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC22sendOfflineDataProcess33_0784B8373DAEE0B837B4462EE4A65405LL03offG3Obj07offlineG6Length0qG4File7logPathySaySDySSypGG_SiS2StFyAJXEfU_', symObjAddr: 0x8910, symBinAddr: 0x4D180, symSize: 0xA60 } + - { offsetInCU: 0x97BC, offset: 0x8B272, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC8holdFunc33_0784B8373DAEE0B837B4462EE4A65405LL10offDataObj07offlineN6Length0pN4File7logPathySaySDySSypGG_SiS2StF', symObjAddr: 0x9370, symBinAddr: 0x4DBE0, symSize: 0x2F0 } + - { offsetInCU: 0x990E, offset: 0x8B3C4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC18publishTopicOnMQTT8withData5topicySDySSypG_SStF', symObjAddr: 0x9660, symBinAddr: 0x4DED0, symSize: 0x6F0 } + - { offsetInCU: 0x9CDD, offset: 0x8B793, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC29publishTwinPropertyDataOnMQTT04withH0ySDySSypG_tF', symObjAddr: 0x9D50, symBinAddr: 0x4E5C0, symSize: 0x740 } + - { offsetInCU: 0x9F97, offset: 0x8BA4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfd', symObjAddr: 0xA940, symBinAddr: 0x4F1B0, symSize: 0xC0 } + - { offsetInCU: 0x9FBA, offset: 0x8BA70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientCfD', symObjAddr: 0xAA00, symBinAddr: 0x4F270, symSize: 0x20 } + - { offsetInCU: 0xA045, offset: 0x8BAFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtF', symObjAddr: 0xAAD0, symBinAddr: 0x4F340, symSize: 0x13C0 } + - { offsetInCU: 0xA644, offset: 0x8C0FA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_13didConnectAcky9CocoaMQTTAFC_AF0i8MQTTConnH0OtFyyScMYccfU_', symObjAddr: 0xBE90, symBinAddr: 0x50700, symSize: 0x40 } + - { offsetInCU: 0xA6B7, offset: 0x8C16D, size: 0x8, addend: 0x0, symName: '_$sSa12_endMutationyyFSDySSypG_Tg5', symObjAddr: 0xC240, symBinAddr: 0x50AB0, symSize: 0x10 } + - { offsetInCU: 0xA6D2, offset: 0x8C188, size: 0x8, addend: 0x0, symName: '_$sSa9_getCountSiyF15IoTConnect2_AWS3AttV_Tg5', symObjAddr: 0xC250, symBinAddr: 0x50AC0, symSize: 0x10 } + - { offsetInCU: 0xA6FB, offset: 0x8C1B1, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV8setValue_6forKeyyq_n_xtFSS_ypTg5', symObjAddr: 0xC260, symBinAddr: 0x50AD0, symSize: 0xC0 } + - { offsetInCU: 0xA76E, offset: 0x8C224, size: 0x8, addend: 0x0, symName: '_$sSD8_VariantV11removeValue6forKeyq_Sgx_tFSS_So8NSObjectCTg5', symObjAddr: 0xC320, symBinAddr: 0x50B90, symSize: 0xC0 } + - { offsetInCU: 0xA81A, offset: 0x8C2D0, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_ypTg5', symObjAddr: 0xC4B0, symBinAddr: 0x50D20, symSize: 0x260 } + - { offsetInCU: 0xA8A6, offset: 0x8C35C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV4copyyyFSS_So8NSObjectCTg5', symObjAddr: 0xC710, symBinAddr: 0x50F80, symSize: 0x220 } + - { offsetInCU: 0xA976, offset: 0x8C42C, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_ypTg5', symObjAddr: 0xC930, symBinAddr: 0x511A0, symSize: 0x3C0 } + - { offsetInCU: 0xAA59, offset: 0x8C50F, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV20_copyOrMoveAndResize8capacity12moveElementsySi_SbtFSS_So8NSObjectCTg5', symObjAddr: 0xCCF0, symBinAddr: 0x51560, symSize: 0x3D0 } + - { offsetInCU: 0xAB4A, offset: 0x8C600, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_ypTg5', symObjAddr: 0xD0C0, symBinAddr: 0x51930, symSize: 0x220 } + - { offsetInCU: 0xABE7, offset: 0x8C69D, size: 0x8, addend: 0x0, symName: '_$ss17_NativeDictionaryV7_delete2atys10_HashTableV6BucketV_tFSS_So8NSObjectCTg5', symObjAddr: 0xD2E0, symBinAddr: 0x51B50, symSize: 0x230 } + - { offsetInCU: 0xAC7D, offset: 0x8C733, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSDySSypG_Tg5', symObjAddr: 0xD510, symBinAddr: 0x51D80, symSize: 0x40 } + - { offsetInCU: 0xAD30, offset: 0x8C7E6, size: 0x8, addend: 0x0, symName: '_$sSa034_makeUniqueAndReserveCapacityIfNotB0yyFSo7NSTimerC_Tg5', symObjAddr: 0xD550, symBinAddr: 0x51DC0, symSize: 0xA0 } + - { offsetInCU: 0xADE5, offset: 0x8C89B, size: 0x8, addend: 0x0, symName: '_$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSDySSypG_Tg5', symObjAddr: 0xD5F0, symBinAddr: 0x51E60, symSize: 0x40 } + - { offsetInCU: 0xAE22, offset: 0x8C8D8, size: 0x8, addend: 0x0, symName: '_$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntFSDySSypG_Tg5', symObjAddr: 0xD630, symBinAddr: 0x51EA0, symSize: 0x20 } + - { offsetInCU: 0xAE4B, offset: 0x8C901, size: 0x8, addend: 0x0, symName: '_$sSa21_makeMutableAndUniqueyyFSDySSypG_Tg5', symObjAddr: 0xD650, symBinAddr: 0x51EC0, symSize: 0x30 } + - { offsetInCU: 0xAE74, offset: 0x8C92A, size: 0x8, addend: 0x0, symName: '_$sSa24_checkSubscript_mutatingyySiFSDySSypG_Tg5', symObjAddr: 0xD680, symBinAddr: 0x51EF0, symSize: 0x20 } + - { offsetInCU: 0xAEB5, offset: 0x8C96B, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingyS2SFZ', symObjAddr: 0xDE20, symBinAddr: 0x52690, symSize: 0x80 } + - { offsetInCU: 0xAEC9, offset: 0x8C97F, size: 0x8, addend: 0x0, symName: '_$sSlsEy11SubSequenceQzqd__cSXRd__5BoundQyd__5IndexRtzluigSS_s16PartialRangeFromVySSAEVGTgq5', symObjAddr: 0xDEA0, symBinAddr: 0x52710, symSize: 0x60 } + - { offsetInCU: 0xAEF9, offset: 0x8C9AF, size: 0x8, addend: 0x0, symName: '_$sSS8_copyingySSSsFZ', symObjAddr: 0xDF00, symBinAddr: 0x52770, symSize: 0x180 } + - { offsetInCU: 0xAF56, offset: 0x8CA0C, size: 0x8, addend: 0x0, symName: '_$sSlsE5countSivgSs8UTF8ViewV_Tgq5', symObjAddr: 0xE080, symBinAddr: 0x528F0, symSize: 0x100 } + - { offsetInCU: 0xAF7D, offset: 0x8CA33, size: 0x8, addend: 0x0, symName: '_$sSTsE21_copySequenceContents12initializing8IteratorQz_SitSry7ElementQzG_tFSs8UTF8ViewV_Tgq5', symObjAddr: 0xE1F0, symBinAddr: 0x52A60, symSize: 0x2D0 } + - { offsetInCU: 0xAFB2, offset: 0x8CA68, size: 0x8, addend: 0x0, symName: '_$ss11_StringGutsV27_slowEnsureMatchingEncodingySS5IndexVAEF', symObjAddr: 0xE4C0, symBinAddr: 0x52D30, symSize: 0xA0 } + - { offsetInCU: 0xAFC6, offset: 0x8CA7C, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSS_Tg5', symObjAddr: 0xE560, symBinAddr: 0x52DD0, symSize: 0x20 } + - { offsetInCU: 0xAFDA, offset: 0x8CA90, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE580, symBinAddr: 0x52DF0, symSize: 0x20 } + - { offsetInCU: 0xAFEE, offset: 0x8CAA4, size: 0x8, addend: 0x0, symName: '_$ss15ContiguousArrayV16_createNewBuffer14bufferIsUnique15minimumCapacity13growForAppendySb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE5A0, symBinAddr: 0x52E10, symSize: 0x20 } + - { offsetInCU: 0xB025, offset: 0x8CADB, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSS_Tg5', symObjAddr: 0xE5C0, symBinAddr: 0x52E30, symSize: 0x110 } + - { offsetInCU: 0xB123, offset: 0x8CBD9, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtF15IoTConnect2_AWS7AttDataV_Tg5', symObjAddr: 0xE6D0, symBinAddr: 0x52F40, symSize: 0x1A0 } + - { offsetInCU: 0xB263, offset: 0x8CD19, size: 0x8, addend: 0x0, symName: '_$ss22_ContiguousArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSDySSypG_Tg5', symObjAddr: 0xE870, symBinAddr: 0x530E0, symSize: 0x130 } + - { offsetInCU: 0xB337, offset: 0x8CDED, size: 0x8, addend: 0x0, symName: '_$sSo6NSDataC10contentsOf7optionsAB10Foundation3URLV_So0A14ReadingOptionsVtKcfcTO', symObjAddr: 0xE9A0, symBinAddr: 0x53210, symSize: 0x100 } + - { offsetInCU: 0xB47D, offset: 0x8CF33, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSnySiG_Tgq5', symObjAddr: 0xF500, symBinAddr: 0x53D70, symSize: 0x20 } + - { offsetInCU: 0xB49F, offset: 0x8CF55, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNew14bufferIsUnique15minimumCapacity13growForAppendAByxGSb_SiSbtFSnySiG_Tgq5', symObjAddr: 0xF520, symBinAddr: 0x53D90, symSize: 0x110 } + - { offsetInCU: 0xB571, offset: 0x8D027, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_16didStateChangeToy9CocoaMQTTAFC_AF0j8MQTTConnG0OtFTf4dnn_n', symObjAddr: 0x12EF0, symBinAddr: 0x57760, symSize: 0x8F0 } + - { offsetInCU: 0xBA7E, offset: 0x8D534, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC4mqtt_17didReceiveMessage2idy9CocoaMQTTAGC_AG0J11MQTTMessageCs6UInt16VtFTf4dnnn_n', symObjAddr: 0x13910, symBinAddr: 0x58180, symSize: 0x2ED0 } + - { offsetInCU: 0xC1F0, offset: 0x8DCA6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS10MQTTClientC17mqttDidDisconnect_9withErrory9CocoaMQTTAFC_s0I0_pSgtFTf4dnn_n', symObjAddr: 0x16910, symBinAddr: 0x5B180, symSize: 0x850 } + - { offsetInCU: 0x95, offset: 0x8E181, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x10E0, symBinAddr: 0x5CE80, symSize: 0x50 } + - { offsetInCU: 0xDF, offset: 0x8E1CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1130, symBinAddr: 0x5CED0, symSize: 0x20 } + - { offsetInCU: 0x110, offset: 0x8E1FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1150, symBinAddr: 0x5CEF0, symSize: 0x10 } + - { offsetInCU: 0x12C, offset: 0x8E218, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1160, symBinAddr: 0x5CF00, symSize: 0x10 } + - { offsetInCU: 0x148, offset: 0x8E234, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x6FD0, symBinAddr: 0x62CB0, symSize: 0xF0 } + - { offsetInCU: 0x1DF, offset: 0x8E2CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x11B0, symBinAddr: 0x5CF50, symSize: 0x50 } + - { offsetInCU: 0x216, offset: 0x8E302, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1200, symBinAddr: 0x5CFA0, symSize: 0x50 } + - { offsetInCU: 0x239, offset: 0x8E325, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x70C0, symBinAddr: 0x62DA0, symSize: 0x13C0 } + - { offsetInCU: 0x2C7, offset: 0x8E3B3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1250, symBinAddr: 0x5CFF0, symSize: 0x10 } + - { offsetInCU: 0x31A, offset: 0x8E406, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1270, symBinAddr: 0x5D010, symSize: 0x20 } + - { offsetInCU: 0x394, offset: 0x8E480, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x12A0, symBinAddr: 0x5D040, symSize: 0x90 } + - { offsetInCU: 0x3C9, offset: 0x8E4B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1330, symBinAddr: 0x5D0D0, symSize: 0x20 } + - { offsetInCU: 0x3FA, offset: 0x8E4E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1350, symBinAddr: 0x5D0F0, symSize: 0x10 } + - { offsetInCU: 0x416, offset: 0x8E502, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1360, symBinAddr: 0x5D100, symSize: 0x10 } + - { offsetInCU: 0x432, offset: 0x8E51E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x8EF0, symBinAddr: 0x641F0, symSize: 0x1B0 } + - { offsetInCU: 0x514, offset: 0x8E600, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x13B0, symBinAddr: 0x5D150, symSize: 0x50 } + - { offsetInCU: 0x54B, offset: 0x8E637, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1400, symBinAddr: 0x5D1A0, symSize: 0x50 } + - { offsetInCU: 0x56E, offset: 0x8E65A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x90A0, symBinAddr: 0x643A0, symSize: 0x1180 } + - { offsetInCU: 0x5F0, offset: 0x8E6DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1650, symBinAddr: 0x5D3F0, symSize: 0x30 } + - { offsetInCU: 0x621, offset: 0x8E70D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1680, symBinAddr: 0x5D420, symSize: 0x80 } + - { offsetInCU: 0x63D, offset: 0x8E729, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1700, symBinAddr: 0x5D4A0, symSize: 0x70 } + - { offsetInCU: 0x672, offset: 0x8E75E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1770, symBinAddr: 0x5D510, symSize: 0x20 } + - { offsetInCU: 0x6C2, offset: 0x8E7AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1790, symBinAddr: 0x5D530, symSize: 0x10 } + - { offsetInCU: 0x6DE, offset: 0x8E7CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x17A0, symBinAddr: 0x5D540, symSize: 0x10 } + - { offsetInCU: 0x6FA, offset: 0x8E7E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xA370, symBinAddr: 0x65670, symSize: 0x60 } + - { offsetInCU: 0x759, offset: 0x8E845, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x17F0, symBinAddr: 0x5D590, symSize: 0x50 } + - { offsetInCU: 0x790, offset: 0x8E87C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1840, symBinAddr: 0x5D5E0, symSize: 0x50 } + - { offsetInCU: 0x7B3, offset: 0x8E89F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA3D0, symBinAddr: 0x656D0, symSize: 0x210 } + - { offsetInCU: 0x817, offset: 0x8E903, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x5D650, symSize: 0x10 } + - { offsetInCU: 0x84C, offset: 0x8E938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x18C0, symBinAddr: 0x5D660, symSize: 0x20 } + - { offsetInCU: 0x87D, offset: 0x8E969, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x18E0, symBinAddr: 0x5D680, symSize: 0x10 } + - { offsetInCU: 0x899, offset: 0x8E985, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x18F0, symBinAddr: 0x5D690, symSize: 0x10 } + - { offsetInCU: 0x8B5, offset: 0x8E9A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xA5E0, symBinAddr: 0x658E0, symSize: 0x270 } + - { offsetInCU: 0xA01, offset: 0x8EAED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1940, symBinAddr: 0x5D6E0, symSize: 0x50 } + - { offsetInCU: 0xA38, offset: 0x8EB24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1990, symBinAddr: 0x5D730, symSize: 0x50 } + - { offsetInCU: 0xA5B, offset: 0x8EB47, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xA850, symBinAddr: 0x65B50, symSize: 0x5E0 } + - { offsetInCU: 0xAE8, offset: 0x8EBD4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x19E0, symBinAddr: 0x5D780, symSize: 0x10 } + - { offsetInCU: 0xB60, offset: 0x8EC4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH9hashValueSivgTW', symObjAddr: 0x19F0, symBinAddr: 0x5D790, symSize: 0x40 } + - { offsetInCU: 0xC44, offset: 0x8ED30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1A30, symBinAddr: 0x5D7D0, symSize: 0x20 } + - { offsetInCU: 0xCCA, offset: 0x8EDB6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1A90, symBinAddr: 0x5D830, symSize: 0x30 } + - { offsetInCU: 0xD14, offset: 0x8EE00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1AC0, symBinAddr: 0x5D860, symSize: 0x20 } + - { offsetInCU: 0xD45, offset: 0x8EE31, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1AE0, symBinAddr: 0x5D880, symSize: 0x10 } + - { offsetInCU: 0xD61, offset: 0x8EE4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1AF0, symBinAddr: 0x5D890, symSize: 0x10 } + - { offsetInCU: 0xD7D, offset: 0x8EE69, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xAE30, symBinAddr: 0x66130, symSize: 0xA0 } + - { offsetInCU: 0xDFB, offset: 0x8EEE7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1B40, symBinAddr: 0x5D8E0, symSize: 0x30 } + - { offsetInCU: 0xE32, offset: 0x8EF1E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1B70, symBinAddr: 0x5D910, symSize: 0x20 } + - { offsetInCU: 0xE55, offset: 0x8EF41, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xAED0, symBinAddr: 0x661D0, symSize: 0x180 } + - { offsetInCU: 0xEC5, offset: 0x8EFB1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1C30, symBinAddr: 0x5D9D0, symSize: 0xA0 } + - { offsetInCU: 0xEFA, offset: 0x8EFE6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1CD0, symBinAddr: 0x5DA70, symSize: 0x20 } + - { offsetInCU: 0xF2B, offset: 0x8F017, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1CF0, symBinAddr: 0x5DA90, symSize: 0x10 } + - { offsetInCU: 0xF47, offset: 0x8F033, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1D00, symBinAddr: 0x5DAA0, symSize: 0x10 } + - { offsetInCU: 0xF63, offset: 0x8F04F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0xB050, symBinAddr: 0x66350, symSize: 0x1F0 } + - { offsetInCU: 0x105E, offset: 0x8F14A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1D50, symBinAddr: 0x5DAF0, symSize: 0x50 } + - { offsetInCU: 0x1095, offset: 0x8F181, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1DA0, symBinAddr: 0x5DB40, symSize: 0x50 } + - { offsetInCU: 0x10B8, offset: 0x8F1A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xB240, symBinAddr: 0x66540, symSize: 0x840 } + - { offsetInCU: 0x1152, offset: 0x8F23E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValuexSg03RawH0Qz_tcfCTW', symObjAddr: 0x1F40, symBinAddr: 0x5DCE0, symSize: 0x30 } + - { offsetInCU: 0x1183, offset: 0x8F26F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSYAASY8rawValue03RawH0QzvgTW', symObjAddr: 0x1F70, symBinAddr: 0x5DD10, symSize: 0x30 } + - { offsetInCU: 0x1197, offset: 0x8F283, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValueSSvgTW', symObjAddr: 0x1FA0, symBinAddr: 0x5DD40, symSize: 0x10 } + - { offsetInCU: 0x11CC, offset: 0x8F2B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1FB0, symBinAddr: 0x5DD50, symSize: 0x20 } + - { offsetInCU: 0x121C, offset: 0x8F308, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValueSiSgvgTW', symObjAddr: 0x1FD0, symBinAddr: 0x5DD70, symSize: 0x10 } + - { offsetInCU: 0x1238, offset: 0x8F324, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAsAFP8intValuexSgSi_tcfCTW', symObjAddr: 0x1FE0, symBinAddr: 0x5DD80, symSize: 0x10 } + - { offsetInCU: 0x1254, offset: 0x8F340, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueAESgSS_tcfCTf4nd_n', symObjAddr: 0xBB10, symBinAddr: 0x66E10, symSize: 0x60 } + - { offsetInCU: 0x12D2, offset: 0x8F3BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2030, symBinAddr: 0x5DDD0, symSize: 0x50 } + - { offsetInCU: 0x1309, offset: 0x8F3F5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2080, symBinAddr: 0x5DE20, symSize: 0x50 } + - { offsetInCU: 0x132C, offset: 0x8F418, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0xBB70, symBinAddr: 0x66E70, symSize: 0x950 } + - { offsetInCU: 0x1404, offset: 0x8F4F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x6D80, symBinAddr: 0x62B00, symSize: 0x50 } + - { offsetInCU: 0x145D, offset: 0x8F549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x6DD0, symBinAddr: 0x62B50, symSize: 0x80 } + - { offsetInCU: 0x14B1, offset: 0x8F59D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH9hashValueSivgTW', symObjAddr: 0x6E50, symBinAddr: 0x62BD0, symSize: 0x10 } + - { offsetInCU: 0x14E6, offset: 0x8F5D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x6E60, symBinAddr: 0x62BE0, symSize: 0x20 } + - { offsetInCU: 0x1567, offset: 0x8F653, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x6EB0, symBinAddr: 0x62C30, symSize: 0x10 } + - { offsetInCU: 0x1584, offset: 0x8F670, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCMa', symObjAddr: 0x22C0, symBinAddr: 0x5E060, symSize: 0x20 } + - { offsetInCU: 0x1598, offset: 0x8F684, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwxx', symObjAddr: 0x22E0, symBinAddr: 0x5E080, symSize: 0x140 } + - { offsetInCU: 0x15AC, offset: 0x8F698, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwcp', symObjAddr: 0x2420, symBinAddr: 0x5E1C0, symSize: 0x4F0 } + - { offsetInCU: 0x15C0, offset: 0x8F6AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwca', symObjAddr: 0x2910, symBinAddr: 0x5E6B0, symSize: 0xED0 } + - { offsetInCU: 0x15DB, offset: 0x8F6C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVWOh', symObjAddr: 0x37E0, symBinAddr: 0x5F580, symSize: 0x30 } + - { offsetInCU: 0x1604, offset: 0x8F6F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVWOh', symObjAddr: 0x3810, symBinAddr: 0x5F5B0, symSize: 0x20 } + - { offsetInCU: 0x1618, offset: 0x8F704, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVWOh', symObjAddr: 0x3830, symBinAddr: 0x5F5D0, symSize: 0x20 } + - { offsetInCU: 0x162C, offset: 0x8F718, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVWOh', symObjAddr: 0x3850, symBinAddr: 0x5F5F0, symSize: 0x20 } + - { offsetInCU: 0x1640, offset: 0x8F72C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVWOh', symObjAddr: 0x3870, symBinAddr: 0x5F610, symSize: 0x20 } + - { offsetInCU: 0x1654, offset: 0x8F740, size: 0x8, addend: 0x0, symName: ___swift_memcpy576_8, symObjAddr: 0x3890, symBinAddr: 0x5F630, symSize: 0x10 } + - { offsetInCU: 0x1668, offset: 0x8F754, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwta', symObjAddr: 0x38A0, symBinAddr: 0x5F640, symSize: 0x580 } + - { offsetInCU: 0x167C, offset: 0x8F768, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwet', symObjAddr: 0x3E20, symBinAddr: 0x5FBC0, symSize: 0x50 } + - { offsetInCU: 0x1690, offset: 0x8F77C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVwst', symObjAddr: 0x3E70, symBinAddr: 0x5FC10, symSize: 0x140 } + - { offsetInCU: 0x16A4, offset: 0x8F790, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityVMa', symObjAddr: 0x3FB0, symBinAddr: 0x5FD50, symSize: 0x10 } + - { offsetInCU: 0x16B8, offset: 0x8F7A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwCP', symObjAddr: 0x3FC0, symBinAddr: 0x5FD60, symSize: 0x30 } + - { offsetInCU: 0x16CC, offset: 0x8F7B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwxx', symObjAddr: 0x3FF0, symBinAddr: 0x5FD90, symSize: 0x120 } + - { offsetInCU: 0x16E0, offset: 0x8F7CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwcp', symObjAddr: 0x4110, symBinAddr: 0x5FEB0, symSize: 0x480 } + - { offsetInCU: 0x16F4, offset: 0x8F7E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwca', symObjAddr: 0x4590, symBinAddr: 0x60330, symSize: 0x9D0 } + - { offsetInCU: 0x1708, offset: 0x8F7F4, size: 0x8, addend: 0x0, symName: ___swift_memcpy544_8, symObjAddr: 0x4F60, symBinAddr: 0x60D00, symSize: 0x10 } + - { offsetInCU: 0x171C, offset: 0x8F808, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwta', symObjAddr: 0x4F70, symBinAddr: 0x60D10, symSize: 0x500 } + - { offsetInCU: 0x1730, offset: 0x8F81C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwet', symObjAddr: 0x5470, symBinAddr: 0x61210, symSize: 0x50 } + - { offsetInCU: 0x1744, offset: 0x8F830, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVwst', symObjAddr: 0x54C0, symBinAddr: 0x61260, symSize: 0x130 } + - { offsetInCU: 0x1758, offset: 0x8F844, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVMa', symObjAddr: 0x55F0, symBinAddr: 0x61390, symSize: 0x10 } + - { offsetInCU: 0x176C, offset: 0x8F858, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwxx', symObjAddr: 0x5600, symBinAddr: 0x613A0, symSize: 0xC0 } + - { offsetInCU: 0x1780, offset: 0x8F86C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwcp', symObjAddr: 0x56C0, symBinAddr: 0x61460, symSize: 0x240 } + - { offsetInCU: 0x1794, offset: 0x8F880, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwca', symObjAddr: 0x5900, symBinAddr: 0x616A0, symSize: 0x450 } + - { offsetInCU: 0x17A8, offset: 0x8F894, size: 0x8, addend: 0x0, symName: ___swift_memcpy256_8, symObjAddr: 0x5D50, symBinAddr: 0x61AF0, symSize: 0x10 } + - { offsetInCU: 0x17BC, offset: 0x8F8A8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwta', symObjAddr: 0x5D60, symBinAddr: 0x61B00, symSize: 0x250 } + - { offsetInCU: 0x17D0, offset: 0x8F8BC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwet', symObjAddr: 0x5FB0, symBinAddr: 0x61D50, symSize: 0x50 } + - { offsetInCU: 0x17E4, offset: 0x8F8D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVwst', symObjAddr: 0x6000, symBinAddr: 0x61DA0, symSize: 0xA0 } + - { offsetInCU: 0x17F8, offset: 0x8F8E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVMa', symObjAddr: 0x60A0, symBinAddr: 0x61E40, symSize: 0x10 } + - { offsetInCU: 0x180C, offset: 0x8F8F8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwxx', symObjAddr: 0x60B0, symBinAddr: 0x61E50, symSize: 0x70 } + - { offsetInCU: 0x1820, offset: 0x8F90C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwcp', symObjAddr: 0x6120, symBinAddr: 0x61EC0, symSize: 0x150 } + - { offsetInCU: 0x1834, offset: 0x8F920, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwca', symObjAddr: 0x6270, symBinAddr: 0x62010, symSize: 0x190 } + - { offsetInCU: 0x1848, offset: 0x8F934, size: 0x8, addend: 0x0, symName: ___swift_memcpy160_8, symObjAddr: 0x6400, symBinAddr: 0x621A0, symSize: 0x10 } + - { offsetInCU: 0x185C, offset: 0x8F948, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwta', symObjAddr: 0x6410, symBinAddr: 0x621B0, symSize: 0x130 } + - { offsetInCU: 0x1870, offset: 0x8F95C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwet', symObjAddr: 0x6540, symBinAddr: 0x622E0, symSize: 0x50 } + - { offsetInCU: 0x1884, offset: 0x8F970, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVwst', symObjAddr: 0x6590, symBinAddr: 0x62330, symSize: 0x80 } + - { offsetInCU: 0x1898, offset: 0x8F984, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVMa', symObjAddr: 0x6610, symBinAddr: 0x623B0, symSize: 0x10 } + - { offsetInCU: 0x18AC, offset: 0x8F998, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwxx', symObjAddr: 0x6620, symBinAddr: 0x623C0, symSize: 0x50 } + - { offsetInCU: 0x18C0, offset: 0x8F9AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwcp', symObjAddr: 0x6670, symBinAddr: 0x62410, symSize: 0x120 } + - { offsetInCU: 0x18D4, offset: 0x8F9C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwca', symObjAddr: 0x6790, symBinAddr: 0x62530, symSize: 0x1C0 } + - { offsetInCU: 0x18E8, offset: 0x8F9D4, size: 0x8, addend: 0x0, symName: ___swift_memcpy153_8, symObjAddr: 0x6950, symBinAddr: 0x626F0, symSize: 0x10 } + - { offsetInCU: 0x18FC, offset: 0x8F9E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwta', symObjAddr: 0x6960, symBinAddr: 0x62700, symSize: 0x150 } + - { offsetInCU: 0x1910, offset: 0x8F9FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwet', symObjAddr: 0x6AB0, symBinAddr: 0x62850, symSize: 0x50 } + - { offsetInCU: 0x1924, offset: 0x8FA10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVwst', symObjAddr: 0x6B00, symBinAddr: 0x628A0, symSize: 0x80 } + - { offsetInCU: 0x1938, offset: 0x8FA24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVMa', symObjAddr: 0x6B80, symBinAddr: 0x62920, symSize: 0x10 } + - { offsetInCU: 0x194C, offset: 0x8FA38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwxx', symObjAddr: 0x6B90, symBinAddr: 0x62930, symSize: 0x30 } + - { offsetInCU: 0x1960, offset: 0x8FA4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwcp', symObjAddr: 0x6BC0, symBinAddr: 0x62960, symSize: 0x40 } + - { offsetInCU: 0x1974, offset: 0x8FA60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwca', symObjAddr: 0x6C00, symBinAddr: 0x629A0, symSize: 0x60 } + - { offsetInCU: 0x1988, offset: 0x8FA74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwta', symObjAddr: 0x6C80, symBinAddr: 0x62A00, symSize: 0x50 } + - { offsetInCU: 0x199C, offset: 0x8FA88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwet', symObjAddr: 0x6CD0, symBinAddr: 0x62A50, symSize: 0x50 } + - { offsetInCU: 0x19B0, offset: 0x8FA9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVwst', symObjAddr: 0x6D20, symBinAddr: 0x62AA0, symSize: 0x50 } + - { offsetInCU: 0x19C4, offset: 0x8FAB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVMa', symObjAddr: 0x6D70, symBinAddr: 0x62AF0, symSize: 0x10 } + - { offsetInCU: 0x19D8, offset: 0x8FAC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASQWb', symObjAddr: 0x6EC0, symBinAddr: 0x62C40, symSize: 0x10 } + - { offsetInCU: 0x19EC, offset: 0x8FAD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCACSQAAWl', symObjAddr: 0x6ED0, symBinAddr: 0x62C50, symSize: 0x30 } + - { offsetInCU: 0x1A00, offset: 0x8FAEC, size: 0x8, addend: 0x0, symName: ___swift_mutable_project_boxed_opaque_existential_1, symObjAddr: 0x6FA0, symBinAddr: 0x62C80, symSize: 0x30 } + - { offsetInCU: 0x1A14, offset: 0x8FB00, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0x8480, symBinAddr: 0x64160, symSize: 0x30 } + - { offsetInCU: 0x1A28, offset: 0x8FB14, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSeAAWl', symObjAddr: 0x84B0, symBinAddr: 0x64190, symSize: 0x30 } + - { offsetInCU: 0x1A3C, offset: 0x8FB28, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataVACSEAAWl', symObjAddr: 0x8EC0, symBinAddr: 0x641C0, symSize: 0x30 } + - { offsetInCU: 0x1A50, offset: 0x8FB3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xA220, symBinAddr: 0x65520, symSize: 0x30 } + - { offsetInCU: 0x1A64, offset: 0x8FB50, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSeAAWl', symObjAddr: 0xA250, symBinAddr: 0x65550, symSize: 0x30 } + - { offsetInCU: 0x1A78, offset: 0x8FB64, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSeAAWl', symObjAddr: 0xA280, symBinAddr: 0x65580, symSize: 0x30 } + - { offsetInCU: 0x1A8C, offset: 0x8FB78, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSeAAWl', symObjAddr: 0xA2B0, symBinAddr: 0x655B0, symSize: 0x30 } + - { offsetInCU: 0x1AA0, offset: 0x8FB8C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaVACSEAAWl', symObjAddr: 0xA2E0, symBinAddr: 0x655E0, symSize: 0x30 } + - { offsetInCU: 0x1AB4, offset: 0x8FBA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVACSEAAWl', symObjAddr: 0xA310, symBinAddr: 0x65610, symSize: 0x30 } + - { offsetInCU: 0x1AC8, offset: 0x8FBB4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoVACSEAAWl', symObjAddr: 0xA340, symBinAddr: 0x65640, symSize: 0x30 } + - { offsetInCU: 0x1ADC, offset: 0x8FBC8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0F3KeyAAWl', symObjAddr: 0xBA80, symBinAddr: 0x66D80, symSize: 0x30 } + - { offsetInCU: 0x1AF0, offset: 0x8FBDC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSeAAWl', symObjAddr: 0xBAB0, symBinAddr: 0x66DB0, symSize: 0x30 } + - { offsetInCU: 0x1B04, offset: 0x8FBF0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsVACSEAAWl', symObjAddr: 0xBAE0, symBinAddr: 0x66DE0, symSize: 0x30 } + - { offsetInCU: 0x1B18, offset: 0x8FC04, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xC4C0, symBinAddr: 0x677C0, symSize: 0x30 } + - { offsetInCU: 0x1B2C, offset: 0x8FC18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xC4F0, symBinAddr: 0x677F0, symSize: 0x30 } + - { offsetInCU: 0x1B40, offset: 0x8FC2C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSeAAWl', symObjAddr: 0xC520, symBinAddr: 0x67820, symSize: 0x30 } + - { offsetInCU: 0x1B54, offset: 0x8FC40, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwVACSEAAWl', symObjAddr: 0xC580, symBinAddr: 0x67880, symSize: 0x30 } + - { offsetInCU: 0x1B68, offset: 0x8FC54, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs0E3KeyAAWl', symObjAddr: 0xC5B0, symBinAddr: 0x678B0, symSize: 0x30 } + - { offsetInCU: 0x1B7C, offset: 0x8FC68, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC600, symBinAddr: 0x678E0, symSize: 0x80 } + - { offsetInCU: 0x1B90, offset: 0x8FC7C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC680, symBinAddr: 0x67960, symSize: 0xD0 } + - { offsetInCU: 0x1BA4, offset: 0x8FC90, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xC750, symBinAddr: 0x67A30, symSize: 0x10 } + - { offsetInCU: 0x1BB8, offset: 0x8FCA4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC760, symBinAddr: 0x67A40, symSize: 0x10 } + - { offsetInCU: 0x1BCC, offset: 0x8FCB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xC770, symBinAddr: 0x67A50, symSize: 0x10 } + - { offsetInCU: 0x1BE0, offset: 0x8FCCC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC780, symBinAddr: 0x67A60, symSize: 0x10 } + - { offsetInCU: 0x1BF4, offset: 0x8FCE0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xC790, symBinAddr: 0x67A70, symSize: 0x80 } + - { offsetInCU: 0x1C08, offset: 0x8FCF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xC810, symBinAddr: 0x67AF0, symSize: 0xD0 } + - { offsetInCU: 0x1C1C, offset: 0x8FD08, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xC8E0, symBinAddr: 0x67BC0, symSize: 0x10 } + - { offsetInCU: 0x1C30, offset: 0x8FD1C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xC8F0, symBinAddr: 0x67BD0, symSize: 0x10 } + - { offsetInCU: 0x1C44, offset: 0x8FD30, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwet', symObjAddr: 0xC900, symBinAddr: 0x67BE0, symSize: 0x80 } + - { offsetInCU: 0x1C58, offset: 0x8FD44, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwst', symObjAddr: 0xC980, symBinAddr: 0x67C60, symSize: 0xD0 } + - { offsetInCU: 0x1C6C, offset: 0x8FD58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOwup', symObjAddr: 0xCA50, symBinAddr: 0x67D30, symSize: 0x10 } + - { offsetInCU: 0x1C80, offset: 0x8FD6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOMa', symObjAddr: 0xCA60, symBinAddr: 0x67D40, symSize: 0x10 } + - { offsetInCU: 0x1C94, offset: 0x8FD80, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xCA70, symBinAddr: 0x67D50, symSize: 0x80 } + - { offsetInCU: 0x1CA8, offset: 0x8FD94, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xCAF0, symBinAddr: 0x67DD0, symSize: 0xD0 } + - { offsetInCU: 0x1CBC, offset: 0x8FDA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xCBC0, symBinAddr: 0x67EA0, symSize: 0x10 } + - { offsetInCU: 0x1CD0, offset: 0x8FDBC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xCBD0, symBinAddr: 0x67EB0, symSize: 0x10 } + - { offsetInCU: 0x1CE4, offset: 0x8FDD0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xCBE0, symBinAddr: 0x67EC0, symSize: 0x80 } + - { offsetInCU: 0x1CF8, offset: 0x8FDE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xCC60, symBinAddr: 0x67F40, symSize: 0xD0 } + - { offsetInCU: 0x1D0C, offset: 0x8FDF8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwug', symObjAddr: 0xCD30, symBinAddr: 0x68010, symSize: 0x10 } + - { offsetInCU: 0x1D20, offset: 0x8FE0C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xCD40, symBinAddr: 0x68020, symSize: 0x10 } + - { offsetInCU: 0x1D34, offset: 0x8FE20, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwui', symObjAddr: 0xCD50, symBinAddr: 0x68030, symSize: 0x10 } + - { offsetInCU: 0x1D48, offset: 0x8FE34, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xCD60, symBinAddr: 0x68040, symSize: 0x10 } + - { offsetInCU: 0x1D5C, offset: 0x8FE48, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwet', symObjAddr: 0xCD70, symBinAddr: 0x68050, symSize: 0x80 } + - { offsetInCU: 0x1D70, offset: 0x8FE5C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwst', symObjAddr: 0xCDF0, symBinAddr: 0x680D0, symSize: 0xD0 } + - { offsetInCU: 0x1D84, offset: 0x8FE70, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOwup', symObjAddr: 0xCEC0, symBinAddr: 0x681A0, symSize: 0x10 } + - { offsetInCU: 0x1D98, offset: 0x8FE84, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOMa', symObjAddr: 0xCED0, symBinAddr: 0x681B0, symSize: 0x10 } + - { offsetInCU: 0x1DAC, offset: 0x8FE98, size: 0x8, addend: 0x0, symName: ___swift_memcpy73_8, symObjAddr: 0xCEE0, symBinAddr: 0x681C0, symSize: 0x30 } + - { offsetInCU: 0x1DC0, offset: 0x8FEAC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwet', symObjAddr: 0xCF10, symBinAddr: 0x681F0, symSize: 0x20 } + - { offsetInCU: 0x1DD4, offset: 0x8FEC0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVwst', symObjAddr: 0xCF30, symBinAddr: 0x68210, symSize: 0x40 } + - { offsetInCU: 0x1DE8, offset: 0x8FED4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasVMa', symObjAddr: 0xCF70, symBinAddr: 0x68250, symSize: 0x10 } + - { offsetInCU: 0x1DFC, offset: 0x8FEE8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCF80, symBinAddr: 0x68260, symSize: 0x10 } + - { offsetInCU: 0x1E10, offset: 0x8FEFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCF90, symBinAddr: 0x68270, symSize: 0x30 } + - { offsetInCU: 0x1E24, offset: 0x8FF10, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xCFC0, symBinAddr: 0x682A0, symSize: 0x10 } + - { offsetInCU: 0x1E38, offset: 0x8FF24, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xCFD0, symBinAddr: 0x682B0, symSize: 0x30 } + - { offsetInCU: 0x1E4C, offset: 0x8FF38, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xD000, symBinAddr: 0x682E0, symSize: 0x10 } + - { offsetInCU: 0x1E60, offset: 0x8FF4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xD010, symBinAddr: 0x682F0, symSize: 0x30 } + - { offsetInCU: 0x1E74, offset: 0x8FF60, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASQWb', symObjAddr: 0xD040, symBinAddr: 0x68320, symSize: 0x10 } + - { offsetInCU: 0x1E88, offset: 0x8FF74, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAESQAAWl', symObjAddr: 0xD050, symBinAddr: 0x68330, symSize: 0x30 } + - { offsetInCU: 0x1E9C, offset: 0x8FF88, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xD080, symBinAddr: 0x68360, symSize: 0x10 } + - { offsetInCU: 0x1EB0, offset: 0x8FF9C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xD090, symBinAddr: 0x68370, symSize: 0x30 } + - { offsetInCU: 0x1EC4, offset: 0x8FFB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASQWb', symObjAddr: 0xD0C0, symBinAddr: 0x683A0, symSize: 0x10 } + - { offsetInCU: 0x1ED8, offset: 0x8FFC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFSQAAWl', symObjAddr: 0xD0D0, symBinAddr: 0x683B0, symSize: 0x30 } + - { offsetInCU: 0x1EEC, offset: 0x8FFD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD100, symBinAddr: 0x683E0, symSize: 0x10 } + - { offsetInCU: 0x1F00, offset: 0x8FFEC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD110, symBinAddr: 0x683F0, symSize: 0x30 } + - { offsetInCU: 0x1F14, offset: 0x90000, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD140, symBinAddr: 0x68420, symSize: 0x10 } + - { offsetInCU: 0x1F28, offset: 0x90014, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD150, symBinAddr: 0x68430, symSize: 0x30 } + - { offsetInCU: 0x1F3C, offset: 0x90028, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD180, symBinAddr: 0x68460, symSize: 0x10 } + - { offsetInCU: 0x1F50, offset: 0x9003C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD190, symBinAddr: 0x68470, symSize: 0x30 } + - { offsetInCU: 0x1F64, offset: 0x90050, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD1C0, symBinAddr: 0x684A0, symSize: 0x10 } + - { offsetInCU: 0x1F78, offset: 0x90064, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD1D0, symBinAddr: 0x684B0, symSize: 0x30 } + - { offsetInCU: 0x1F8C, offset: 0x90078, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD200, symBinAddr: 0x684E0, symSize: 0x10 } + - { offsetInCU: 0x1FA0, offset: 0x9008C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD210, symBinAddr: 0x684F0, symSize: 0x30 } + - { offsetInCU: 0x1FB4, offset: 0x900A0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD240, symBinAddr: 0x68520, symSize: 0x10 } + - { offsetInCU: 0x1FC8, offset: 0x900B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD250, symBinAddr: 0x68530, symSize: 0x30 } + - { offsetInCU: 0x1FDC, offset: 0x900C8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD280, symBinAddr: 0x68560, symSize: 0x10 } + - { offsetInCU: 0x1FF0, offset: 0x900DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD290, symBinAddr: 0x68570, symSize: 0x30 } + - { offsetInCU: 0x2004, offset: 0x900F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD2C0, symBinAddr: 0x685A0, symSize: 0x10 } + - { offsetInCU: 0x2018, offset: 0x90104, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD2D0, symBinAddr: 0x685B0, symSize: 0x30 } + - { offsetInCU: 0x202C, offset: 0x90118, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD300, symBinAddr: 0x685E0, symSize: 0x10 } + - { offsetInCU: 0x2040, offset: 0x9012C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD310, symBinAddr: 0x685F0, symSize: 0x30 } + - { offsetInCU: 0x2054, offset: 0x90140, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD340, symBinAddr: 0x68620, symSize: 0x10 } + - { offsetInCU: 0x2068, offset: 0x90154, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD350, symBinAddr: 0x68630, symSize: 0x30 } + - { offsetInCU: 0x207C, offset: 0x90168, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD380, symBinAddr: 0x68660, symSize: 0x10 } + - { offsetInCU: 0x2090, offset: 0x9017C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD390, symBinAddr: 0x68670, symSize: 0x30 } + - { offsetInCU: 0x20A4, offset: 0x90190, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD3C0, symBinAddr: 0x686A0, symSize: 0x10 } + - { offsetInCU: 0x20B8, offset: 0x901A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0xD3D0, symBinAddr: 0x686B0, symSize: 0x30 } + - { offsetInCU: 0x20CC, offset: 0x901B8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs0E3KeyAAWl', symObjAddr: 0xD400, symBinAddr: 0x686E0, symSize: 0x30 } + - { offsetInCU: 0x20E0, offset: 0x901CC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwet', symObjAddr: 0xD430, symBinAddr: 0x68710, symSize: 0x80 } + - { offsetInCU: 0x20F4, offset: 0x901E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwst', symObjAddr: 0xD4B0, symBinAddr: 0x68790, symSize: 0xD0 } + - { offsetInCU: 0x2108, offset: 0x901F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOwup', symObjAddr: 0xD580, symBinAddr: 0x68860, symSize: 0x10 } + - { offsetInCU: 0x211C, offset: 0x90208, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOMa', symObjAddr: 0xD590, symBinAddr: 0x68870, symSize: 0x10 } + - { offsetInCU: 0x2130, offset: 0x9021C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASQWb', symObjAddr: 0xD5A0, symBinAddr: 0x68880, symSize: 0x10 } + - { offsetInCU: 0x2144, offset: 0x90230, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAESQAAWl', symObjAddr: 0xD5B0, symBinAddr: 0x68890, symSize: 0x30 } + - { offsetInCU: 0x2158, offset: 0x90244, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0xD5E0, symBinAddr: 0x688C0, symSize: 0x10 } + - { offsetInCU: 0x216C, offset: 0x90258, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs28CustomDebugStringConvertibleAAWl', symObjAddr: 0xD5F0, symBinAddr: 0x688D0, symSize: 0x30 } + - { offsetInCU: 0x2180, offset: 0x9026C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0xD620, symBinAddr: 0x68900, symSize: 0x10 } + - { offsetInCU: 0x2194, offset: 0x90280, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOAEs23CustomStringConvertibleAAWl', symObjAddr: 0xD630, symBinAddr: 0x68910, symSize: 0x30 } + - { offsetInCU: 0x21C2, offset: 0x902AE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1170, symBinAddr: 0x5CF10, symSize: 0x20 } + - { offsetInCU: 0x21DE, offset: 0x902CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1190, symBinAddr: 0x5CF30, symSize: 0x20 } + - { offsetInCU: 0x2200, offset: 0x902EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1370, symBinAddr: 0x5D110, symSize: 0x20 } + - { offsetInCU: 0x221C, offset: 0x90308, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1390, symBinAddr: 0x5D130, symSize: 0x20 } + - { offsetInCU: 0x2238, offset: 0x90324, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1450, symBinAddr: 0x5D1F0, symSize: 0x10 } + - { offsetInCU: 0x22B8, offset: 0x903A4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1460, symBinAddr: 0x5D200, symSize: 0xB0 } + - { offsetInCU: 0x233A, offset: 0x90426, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1510, symBinAddr: 0x5D2B0, symSize: 0x90 } + - { offsetInCU: 0x2378, offset: 0x90464, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x15A0, symBinAddr: 0x5D340, symSize: 0xB0 } + - { offsetInCU: 0x23DE, offset: 0x904CA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x17B0, symBinAddr: 0x5D550, symSize: 0x20 } + - { offsetInCU: 0x23FA, offset: 0x904E6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x5D570, symSize: 0x20 } + - { offsetInCU: 0x241C, offset: 0x90508, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1900, symBinAddr: 0x5D6A0, symSize: 0x20 } + - { offsetInCU: 0x2438, offset: 0x90524, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1920, symBinAddr: 0x5D6C0, symSize: 0x20 } + - { offsetInCU: 0x248B, offset: 0x90577, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1A50, symBinAddr: 0x5D7F0, symSize: 0x40 } + - { offsetInCU: 0x252E, offset: 0x9061A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B00, symBinAddr: 0x5D8A0, symSize: 0x20 } + - { offsetInCU: 0x254A, offset: 0x90636, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B20, symBinAddr: 0x5D8C0, symSize: 0x20 } + - { offsetInCU: 0x256C, offset: 0x90658, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1D10, symBinAddr: 0x5DAB0, symSize: 0x20 } + - { offsetInCU: 0x2588, offset: 0x90674, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1D30, symBinAddr: 0x5DAD0, symSize: 0x20 } + - { offsetInCU: 0x25D1, offset: 0x906BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1DF0, symBinAddr: 0x5DB90, symSize: 0x80 } + - { offsetInCU: 0x26BD, offset: 0x907A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH9hashValueSivgTW', symObjAddr: 0x1E70, symBinAddr: 0x5DC10, symSize: 0x50 } + - { offsetInCU: 0x273B, offset: 0x90827, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x1EC0, symBinAddr: 0x5DC60, symSize: 0x30 } + - { offsetInCU: 0x278D, offset: 0x90879, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x1EF0, symBinAddr: 0x5DC90, symSize: 0x50 } + - { offsetInCU: 0x27EF, offset: 0x908DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs28CustomDebugStringConvertibleAAsAFP16debugDescriptionSSvgTW', symObjAddr: 0x1FF0, symBinAddr: 0x5DD90, symSize: 0x20 } + - { offsetInCU: 0x280B, offset: 0x908F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysOs23CustomStringConvertibleAAsAFP11descriptionSSvgTW', symObjAddr: 0x2010, symBinAddr: 0x5DDB0, symSize: 0x20 } + - { offsetInCU: 0x284C, offset: 0x90938, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x6E80, symBinAddr: 0x62C00, symSize: 0x30 } + - { offsetInCU: 0x29DF, offset: 0x90ACB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8IdentityV6encode2toys7Encoder_p_tKF', symObjAddr: 0x0, symBinAddr: 0x5BDA0, symSize: 0x190 } + - { offsetInCU: 0x2A10, offset: 0x90AFC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12IdentityDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x190, symBinAddr: 0x5BF30, symSize: 0x2B0 } + - { offsetInCU: 0x2A41, offset: 0x90B2D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3HasV6encode2toys7Encoder_p_tKF', symObjAddr: 0x440, symBinAddr: 0x5C1E0, symSize: 0x190 } + - { offsetInCU: 0x2A72, offset: 0x90B5E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV10CodingKeys33_C1450E973D6D1C45DD0450967186C69ALLO11stringValueSSvg', symObjAddr: 0x5D0, symBinAddr: 0x5C370, symSize: 0xB0 } + - { offsetInCU: 0x2A93, offset: 0x90B7F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS4MetaV6encode2toys7Encoder_p_tKF', symObjAddr: 0x680, symBinAddr: 0x5C420, symSize: 0x2A0 } + - { offsetInCU: 0x2AC4, offset: 0x90BB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3GtwV6encode2toys7Encoder_p_tKF', symObjAddr: 0x920, symBinAddr: 0x5C6C0, symSize: 0x110 } + - { offsetInCU: 0x2AF5, offset: 0x90BE1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12ProtocolInfoV6encode2toys7Encoder_p_tKF', symObjAddr: 0xA30, symBinAddr: 0x5C7D0, symSize: 0x250 } + - { offsetInCU: 0x2B26, offset: 0x90C12, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO8rawValueSSvg', symObjAddr: 0xC80, symBinAddr: 0x5CA20, symSize: 0xB0 } + - { offsetInCU: 0x2B5A, offset: 0x90C46, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV10CodingKeysO11stringValueSSvg', symObjAddr: 0xD30, symBinAddr: 0x5CAD0, symSize: 0xB0 } + - { offsetInCU: 0x2B9A, offset: 0x90C86, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6TopicsV6encode2toys7Encoder_p_tKF', symObjAddr: 0xDE0, symBinAddr: 0x5CB80, symSize: 0x2E0 } + - { offsetInCU: 0x2DAB, offset: 0x90E97, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullC4fromACs7Decoder_p_tKcfc', symObjAddr: 0x20D0, symBinAddr: 0x5DE70, symSize: 0x1D0 } + - { offsetInCU: 0x2DF7, offset: 0x90EE3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS8JSONNullCfD', symObjAddr: 0x22A0, symBinAddr: 0x5E040, symSize: 0x20 } + - { offsetInCU: 0x27, offset: 0x90FC4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x68AA0, symSize: 0x10 } + - { offsetInCU: 0x163, offset: 0x91100, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwet', symObjAddr: 0x110, symBinAddr: 0x68B80, symSize: 0x40 } + - { offsetInCU: 0x177, offset: 0x91114, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVwst', symObjAddr: 0x150, symBinAddr: 0x68BC0, symSize: 0x50 } + - { offsetInCU: 0x18B, offset: 0x91128, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionVMa', symObjAddr: 0x1A0, symBinAddr: 0x68C10, symSize: 0xA } + - { offsetInCU: 0x26C, offset: 0x91209, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivg', symObjAddr: 0x0, symBinAddr: 0x68AA0, symSize: 0x10 } + - { offsetInCU: 0x286, offset: 0x91223, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivs', symObjAddr: 0x10, symBinAddr: 0x68AB0, symSize: 0x10 } + - { offsetInCU: 0x2B8, offset: 0x91255, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM', symObjAddr: 0x20, symBinAddr: 0x68AC0, symSize: 0x10 } + - { offsetInCU: 0x2CC, offset: 0x91269, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV14availSpaceInMbSivM.resume.0', symObjAddr: 0x30, symBinAddr: 0x68AD0, symSize: 0x10 } + - { offsetInCU: 0x2ED, offset: 0x9128A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivg', symObjAddr: 0x40, symBinAddr: 0x68AE0, symSize: 0x10 } + - { offsetInCU: 0x301, offset: 0x9129E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivs', symObjAddr: 0x50, symBinAddr: 0x68AF0, symSize: 0x10 } + - { offsetInCU: 0x333, offset: 0x912D0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM', symObjAddr: 0x60, symBinAddr: 0x68B00, symSize: 0x20 } + - { offsetInCU: 0x357, offset: 0x912F4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV9fileCountSivM.resume.0', symObjAddr: 0x80, symBinAddr: 0x68B20, symSize: 0x10 } + - { offsetInCU: 0x378, offset: 0x91315, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvg', symObjAddr: 0x90, symBinAddr: 0x68B30, symSize: 0x10 } + - { offsetInCU: 0x38C, offset: 0x91329, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvs', symObjAddr: 0xA0, symBinAddr: 0x68B40, symSize: 0x10 } + - { offsetInCU: 0x3C0, offset: 0x9135D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM', symObjAddr: 0xB0, symBinAddr: 0x68B50, symSize: 0x20 } + - { offsetInCU: 0x3E4, offset: 0x91381, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS20OfflineStorageOptionV8disabledSbvM.resume.0', symObjAddr: 0xD0, symBinAddr: 0x68B70, symSize: 0x10 } + - { offsetInCU: 0x2B, offset: 0x913D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68C20, symSize: 0x30 } + - { offsetInCU: 0x7C, offset: 0x91428, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCMa', symObjAddr: 0x30, symBinAddr: 0x68C50, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x9152E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68C20, symSize: 0x30 } + - { offsetInCU: 0x27, offset: 0x91596, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68C70, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x915E7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCMa', symObjAddr: 0x20, symBinAddr: 0x68C90, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x916ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS17MqttClientManagerCfD', symObjAddr: 0x0, symBinAddr: 0x68C70, symSize: 0x20 } + - { offsetInCU: 0x2B, offset: 0x91759, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68CB0, symSize: 0x50 } + - { offsetInCU: 0x7C, offset: 0x917AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMU', symObjAddr: 0x50, symBinAddr: 0x68D00, symSize: 0x10 } + - { offsetInCU: 0x90, offset: 0x917BE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMa', symObjAddr: 0x60, symBinAddr: 0x68D10, symSize: 0x30 } + - { offsetInCU: 0xA4, offset: 0x917D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCMr', symObjAddr: 0x90, symBinAddr: 0x68D40, symSize: 0x69 } + - { offsetInCU: 0x1AA, offset: 0x918D8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheServiceCfD', symObjAddr: 0x0, symBinAddr: 0x68CB0, symSize: 0x50 } + - { offsetInCU: 0x27, offset: 0x91940, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x68DB0, symSize: 0x430 } + - { offsetInCU: 0x16B, offset: 0x91A84, size: 0x8, addend: 0x0, symName: '_$sSS3key_yp5valuetSgWOb', symObjAddr: 0x460, symBinAddr: 0x691E0, symSize: 0x40 } + - { offsetInCU: 0x38A, offset: 0x91CA3, size: 0x8, addend: 0x0, symName: '_$sSD15IoTConnect2_AWSSSRszypRs_rlE6append11anotherDictySDySSypG_tF', symObjAddr: 0x0, symBinAddr: 0x68DB0, symSize: 0x430 } + - { offsetInCU: 0x27, offset: 0x91EA2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69220, symSize: 0x20 } + - { offsetInCU: 0x78, offset: 0x91EF3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCMa', symObjAddr: 0x20, symBinAddr: 0x69240, symSize: 0x14 } + - { offsetInCU: 0x17E, offset: 0x91FF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS12CacheManagerCfD', symObjAddr: 0x0, symBinAddr: 0x69220, symSize: 0x20 } + - { offsetInCU: 0xA1, offset: 0x920DB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0x9E0, symBinAddr: 0x69C00, symSize: 0x20 } + - { offsetInCU: 0xBD, offset: 0x920F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xA00, symBinAddr: 0x69C20, symSize: 0x60 } + - { offsetInCU: 0xE6, offset: 0x92120, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAAsADP8allCases03AllH0QzvgZTW', symObjAddr: 0xA60, symBinAddr: 0x69C80, symSize: 0x30 } + - { offsetInCU: 0x175, offset: 0x921AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValuexSg03RawF0Qz_tcfCTW', symObjAddr: 0xC10, symBinAddr: 0x69E30, symSize: 0x20 } + - { offsetInCU: 0x191, offset: 0x921CB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSYAASY8rawValue03RawF0QzvgTW', symObjAddr: 0xC30, symBinAddr: 0x69E50, symSize: 0x30 } + - { offsetInCU: 0x497, offset: 0x924D1, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DataVSgSo13NSURLResponseCSgs5Error_pSgIeghggg_So6NSDataCSgAGSo7NSErrorCSgIeyBhyyy_TR', symObjAddr: 0x760, symBinAddr: 0x69980, symSize: 0xF0 } + - { offsetInCU: 0x50B, offset: 0x92545, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_', symObjAddr: 0xC60, symBinAddr: 0x69E80, symSize: 0x3B0 } + - { offsetInCU: 0x73E, offset: 0x92778, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_', symObjAddr: 0x1010, symBinAddr: 0x6A230, symSize: 0x150 } + - { offsetInCU: 0x960, offset: 0x9299A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC8toString33_DF9952315E942148D16381E934981C02LL12fromDateTimeSS10Foundation0M0VSg_tFTf4nd_n', symObjAddr: 0x35F0, symBinAddr: 0x6C770, symSize: 0x1F0 } + - { offsetInCU: 0xA11, offset: 0x92A4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC25checkForIfFileExistAtPath04fileK0Sbyp_tFTf4nd_n', symObjAddr: 0x38F0, symBinAddr: 0x6CA10, symSize: 0x220 } + - { offsetInCU: 0xA76, offset: 0x92AB0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFTf4nnd_n', symObjAddr: 0x3B10, symBinAddr: 0x6CC30, symSize: 0x240 } + - { offsetInCU: 0xB9E, offset: 0x92BD8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFTf4ndnd_n', symObjAddr: 0x3D50, symBinAddr: 0x6CE70, symSize: 0x290 } + - { offsetInCU: 0xCDD, offset: 0x92D17, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC11getFilePathySSypFTf4nd_n', symObjAddr: 0x3FE0, symBinAddr: 0x6D100, symSize: 0x170 } + - { offsetInCU: 0xD23, offset: 0x92D5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC24getClientCertFromP12File15pathCertificate12certPasswordSo10CFArrayRefaSgSS_SStFTf4nnd_n', symObjAddr: 0x4150, symBinAddr: 0x6D270, symSize: 0x520 } + - { offsetInCU: 0x1052, offset: 0x9308C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC15getSubStringFor12strToProcess8indStart0L3EndS2S_S2itFTf4nnnd_n', symObjAddr: 0x4670, symBinAddr: 0x6D790, symSize: 0xD0 } + - { offsetInCU: 0x1177, offset: 0x931B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASQWb', symObjAddr: 0x3030, symBinAddr: 0x6C250, symSize: 0x10 } + - { offsetInCU: 0x118B, offset: 0x931C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOACSQAAWl', symObjAddr: 0x3040, symBinAddr: 0x6C260, symSize: 0x30 } + - { offsetInCU: 0x119F, offset: 0x931D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOs12CaseIterableAA8AllCasessADP_SlWT', symObjAddr: 0x3070, symBinAddr: 0x6C290, symSize: 0x10 } + - { offsetInCU: 0x11B3, offset: 0x931ED, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS15IOTCEnvironmentOGSayxGSlsWl', symObjAddr: 0x3080, symBinAddr: 0x6C2A0, symSize: 0x40 } + - { offsetInCU: 0x11C7, offset: 0x93201, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASQWb', symObjAddr: 0x3100, symBinAddr: 0x6C2E0, symSize: 0x10 } + - { offsetInCU: 0x11DB, offset: 0x93215, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOACSQAAWl', symObjAddr: 0x3110, symBinAddr: 0x6C2F0, symSize: 0x30 } + - { offsetInCU: 0x11EF, offset: 0x93229, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwet', symObjAddr: 0x3160, symBinAddr: 0x6C320, symSize: 0x80 } + - { offsetInCU: 0x1203, offset: 0x9323D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwst', symObjAddr: 0x31E0, symBinAddr: 0x6C3A0, symSize: 0xD0 } + - { offsetInCU: 0x1217, offset: 0x93251, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwug', symObjAddr: 0x32B0, symBinAddr: 0x6C470, symSize: 0x10 } + - { offsetInCU: 0x122B, offset: 0x93265, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwup', symObjAddr: 0x32C0, symBinAddr: 0x6C480, symSize: 0x10 } + - { offsetInCU: 0x123F, offset: 0x93279, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOwui', symObjAddr: 0x32D0, symBinAddr: 0x6C490, symSize: 0x10 } + - { offsetInCU: 0x1253, offset: 0x9328D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOMa', symObjAddr: 0x32E0, symBinAddr: 0x6C4A0, symSize: 0x10 } + - { offsetInCU: 0x1267, offset: 0x932A1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwet', symObjAddr: 0x32F0, symBinAddr: 0x6C4B0, symSize: 0x80 } + - { offsetInCU: 0x127B, offset: 0x932B5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwst', symObjAddr: 0x3370, symBinAddr: 0x6C530, symSize: 0xD0 } + - { offsetInCU: 0x128F, offset: 0x932C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwug', symObjAddr: 0x3440, symBinAddr: 0x6C600, symSize: 0x10 } + - { offsetInCU: 0x12A3, offset: 0x932DD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwup', symObjAddr: 0x3450, symBinAddr: 0x6C610, symSize: 0x10 } + - { offsetInCU: 0x12B7, offset: 0x932F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOwui', symObjAddr: 0x3460, symBinAddr: 0x6C620, symSize: 0x10 } + - { offsetInCU: 0x12CB, offset: 0x93305, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOMa', symObjAddr: 0x3470, symBinAddr: 0x6C630, symSize: 0x10 } + - { offsetInCU: 0x12DF, offset: 0x93319, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCMa', symObjAddr: 0x3480, symBinAddr: 0x6C640, symSize: 0x20 } + - { offsetInCU: 0x12F3, offset: 0x9332D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs33ExpressibleByUnicodeScalarLiteralAA0hiJ4TypesADP_s01_fg7BuiltinhiJ0PWT', symObjAddr: 0x34B0, symBinAddr: 0x6C660, symSize: 0x10 } + - { offsetInCU: 0x1307, offset: 0x93341, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0fg13UnicodeScalarK0PWb', symObjAddr: 0x34C0, symBinAddr: 0x6C670, symSize: 0x10 } + - { offsetInCU: 0x131B, offset: 0x93355, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs33ExpressibleByUnicodeScalarLiteralAAWl', symObjAddr: 0x34D0, symBinAddr: 0x6C680, symSize: 0x30 } + - { offsetInCU: 0x132F, offset: 0x93369, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs43ExpressibleByExtendedGraphemeClusterLiteralAA0hijK4TypesADP_s01_fg7BuiltinhijK0PWT', symObjAddr: 0x3500, symBinAddr: 0x6C6B0, symSize: 0x10 } + - { offsetInCU: 0x1343, offset: 0x9337D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAAs0fg23ExtendedGraphemeClusterI0PWb', symObjAddr: 0x3510, symBinAddr: 0x6C6C0, symSize: 0x10 } + - { offsetInCU: 0x1357, offset: 0x93391, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl', symObjAddr: 0x3520, symBinAddr: 0x6C6D0, symSize: 0x30 } + - { offsetInCU: 0x136B, offset: 0x933A5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVs26ExpressibleByStringLiteralAA0hI4TypesADP_s01_fg7BuiltinhI0PWT', symObjAddr: 0x3550, symBinAddr: 0x6C700, symSize: 0x10 } + - { offsetInCU: 0x13DF, offset: 0x93419, size: 0x8, addend: 0x0, symName: '_$s10Foundation3URLVACs23CustomStringConvertibleAAWl', symObjAddr: 0x3810, symBinAddr: 0x6C990, symSize: 0x40 } + - { offsetInCU: 0x13F3, offset: 0x9342D, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOc', symObjAddr: 0x3850, symBinAddr: 0x6C9D0, symSize: 0x40 } + - { offsetInCU: 0x1452, offset: 0x9348C, size: 0x8, addend: 0x0, symName: '_$sSo12NSDictionaryCMa', symObjAddr: 0x4740, symBinAddr: 0x6D860, symSize: 0x30 } + - { offsetInCU: 0x1466, offset: 0x934A0, size: 0x8, addend: 0x0, symName: ___swift_project_boxed_opaque_existential_0, symObjAddr: 0x4770, symBinAddr: 0x6D890, symSize: 0x30 } + - { offsetInCU: 0x147A, offset: 0x934B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC12makeSyncCall11withBaseURL0H4Data0H5BlockySS_SDys11AnyHashableVypGSgy10Foundation0K0VSg_So13NSURLResponseCSgs5Error_pSgtctFyAO_ArTtYbcfU_TA', symObjAddr: 0x47E0, symBinAddr: 0x6D8E0, symSize: 0x20 } + - { offsetInCU: 0x148E, offset: 0x934C8, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x4800, symBinAddr: 0x6D900, symSize: 0x20 } + - { offsetInCU: 0x14A2, offset: 0x934DC, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x4820, symBinAddr: 0x6D920, symSize: 0x10 } + - { offsetInCU: 0x14B6, offset: 0x934F0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC10getBaseURL03strG08callBackySS_ySb_yptctFy10Foundation4DataVSg_So13NSURLResponseCSgs5Error_pSgtYbcfU_TA', symObjAddr: 0x4890, symBinAddr: 0x6D930, symSize: 0x20 } + - { offsetInCU: 0x14CA, offset: 0x93504, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7KeyPathVMa', symObjAddr: 0x48E0, symBinAddr: 0x6D950, symSize: 0x10 } + - { offsetInCU: 0x15C8, offset: 0x93602, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS3HasV10CodingKeysO_Tg5', symObjAddr: 0x170, symBinAddr: 0x69390, symSize: 0x160 } + - { offsetInCU: 0x168B, offset: 0x936C5, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS15IOTCEnvironmentO_TB5', symObjAddr: 0x2D0, symBinAddr: 0x694F0, symSize: 0xE0 } + - { offsetInCU: 0x174E, offset: 0x93788, size: 0x8, addend: 0x0, symName: '_$ss2eeoiySbx_xtSYRzSQ8RawValueRpzlF15IoTConnect2_AWS0D4TCPfO_TB5', symObjAddr: 0x3B0, symBinAddr: 0x695D0, symSize: 0x90 } + - { offsetInCU: 0x18F0, offset: 0x9392A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x870, symBinAddr: 0x69A90, symSize: 0x10 } + - { offsetInCU: 0x1970, offset: 0x939AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH9hashValueSivgTW', symObjAddr: 0x880, symBinAddr: 0x69AA0, symSize: 0x80 } + - { offsetInCU: 0x1A1B, offset: 0x93A55, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x900, symBinAddr: 0x69B20, symSize: 0x60 } + - { offsetInCU: 0x1A82, offset: 0x93ABC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x960, symBinAddr: 0x69B80, symSize: 0x80 } + - { offsetInCU: 0x1B11, offset: 0x93B4B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0xB00, symBinAddr: 0x69D20, symSize: 0x10 } + - { offsetInCU: 0x1B91, offset: 0x93BCB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH9hashValueSivgTW', symObjAddr: 0xB10, symBinAddr: 0x69D30, symSize: 0x60 } + - { offsetInCU: 0x1C3C, offset: 0x93C76, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0xB70, symBinAddr: 0x69D90, symSize: 0x40 } + - { offsetInCU: 0x1CA3, offset: 0x93CDD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0xBB0, symBinAddr: 0x69DD0, symSize: 0x60 } + - { offsetInCU: 0x2073, offset: 0x940AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueACSgSS_tcfC', symObjAddr: 0x0, symBinAddr: 0x69260, symSize: 0x70 } + - { offsetInCU: 0x20AA, offset: 0x940E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueSSvg', symObjAddr: 0xB0, symBinAddr: 0x692D0, symSize: 0x30 } + - { offsetInCU: 0x20C5, offset: 0x940FF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8rawValueSSvg', symObjAddr: 0xE0, symBinAddr: 0x69300, symSize: 0x50 } + - { offsetInCU: 0x20F4, offset: 0x9412E, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxs06CustomB11ConvertibleRzs20TextOutputStreamableRzlFSS_Tg5', symObjAddr: 0x130, symBinAddr: 0x69350, symSize: 0x10 } + - { offsetInCU: 0x2168, offset: 0x941A2, size: 0x8, addend: 0x0, symName: '_$ss26DefaultStringInterpolationV06appendC0yyxlFyp_Tg5', symObjAddr: 0x140, symBinAddr: 0x69360, symSize: 0x30 } + - { offsetInCU: 0x2213, offset: 0x9424D, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySSG_Tg5', symObjAddr: 0x440, symBinAddr: 0x69660, symSize: 0xB0 } + - { offsetInCU: 0x23C5, offset: 0x943FF, size: 0x8, addend: 0x0, symName: '_$sSTsSQ7ElementRpzrlE8containsySbABFSaySiSgG_Tg5', symObjAddr: 0x4F0, symBinAddr: 0x69710, symSize: 0x50 } + - { offsetInCU: 0x24AC, offset: 0x944E6, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSS_Tg5', symObjAddr: 0x540, symBinAddr: 0x69760, symSize: 0x90 } + - { offsetInCU: 0x253A, offset: 0x94574, size: 0x8, addend: 0x0, symName: '_$sSa6remove2atxSi_tFSDySSypG_Tg5', symObjAddr: 0x5D0, symBinAddr: 0x697F0, symSize: 0x80 } + - { offsetInCU: 0x25AC, offset: 0x945E6, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySSG_Tg5', symObjAddr: 0x650, symBinAddr: 0x69870, symSize: 0xD0 } + - { offsetInCU: 0x26DB, offset: 0x94715, size: 0x8, addend: 0x0, symName: '_$sSlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tFSaySiG_Tg5', symObjAddr: 0x720, symBinAddr: 0x69940, symSize: 0x40 } + - { offsetInCU: 0x2769, offset: 0x947A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS15IOTCEnvironmentO8allCasesSayACGvgZ', symObjAddr: 0x850, symBinAddr: 0x69A70, symSize: 0x20 } + - { offsetInCU: 0x27CB, offset: 0x94805, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A4TCPfO8rawValueACSgSS_tcfC', symObjAddr: 0xA90, symBinAddr: 0x69CB0, symSize: 0x70 } + - { offsetInCU: 0x287A, offset: 0x948B4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC14manageDebugLog4code8uniqueId02cpJ07message7logFlag02isF7Enabledyyp_S3SS2btF', symObjAddr: 0x1160, symBinAddr: 0x6A380, symSize: 0x960 } + - { offsetInCU: 0x2E20, offset: 0x94E5A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtF', symObjAddr: 0x1AC0, symBinAddr: 0x6ACE0, symSize: 0x7A0 } + - { offsetInCU: 0x318F, offset: 0x951C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC16deleteAllLogFile7logPath7debugYNySS_SbtFySSXEfU_', symObjAddr: 0x2260, symBinAddr: 0x6B480, symSize: 0x540 } + - { offsetInCU: 0x334A, offset: 0x95384, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC32createPredeffinedLogDirecctories10folderNameySS_tF', symObjAddr: 0x27A0, symBinAddr: 0x6B9C0, symSize: 0x670 } + - { offsetInCU: 0x3823, offset: 0x9585D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonC21getDocumentsDirectory10Foundation3URLVyF', symObjAddr: 0x2E10, symBinAddr: 0x6C030, symSize: 0x130 } + - { offsetInCU: 0x3905, offset: 0x9593F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6CommonCfD', symObjAddr: 0x2F40, symBinAddr: 0x6C160, symSize: 0x30 } + - { offsetInCU: 0x393E, offset: 0x95978, size: 0x8, addend: 0x0, symName: '_$sSS15IoTConnect2_AWSE6stringS2S_tcfC', symObjAddr: 0x3020, symBinAddr: 0x6C240, symSize: 0x10 } + - { offsetInCU: 0x396B, offset: 0x959A5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSS_Tg5', symObjAddr: 0x3590, symBinAddr: 0x6C710, symSize: 0x20 } + - { offsetInCU: 0x399B, offset: 0x959D5, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSDySSypG_Tg5', symObjAddr: 0x35B0, symBinAddr: 0x6C730, symSize: 0x20 } + - { offsetInCU: 0x39CB, offset: 0x95A05, size: 0x8, addend: 0x0, symName: '_$ss12_ArrayBufferV20_consumeAndCreateNewAByxGyFSi_Tg5', symObjAddr: 0x35D0, symBinAddr: 0x6C750, symSize: 0x20 } + - { offsetInCU: 0x43, offset: 0x95B95, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwCP', symObjAddr: 0x0, symBinAddr: 0x6D990, symSize: 0x1A0 } + - { offsetInCU: 0x57, offset: 0x95BA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwxx', symObjAddr: 0x1E0, symBinAddr: 0x6DB30, symSize: 0x90 } + - { offsetInCU: 0x6B, offset: 0x95BBD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwcp', symObjAddr: 0x270, symBinAddr: 0x6DBC0, symSize: 0x170 } + - { offsetInCU: 0x7F, offset: 0x95BD1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwca', symObjAddr: 0x3E0, symBinAddr: 0x6DD30, symSize: 0x1F0 } + - { offsetInCU: 0x93, offset: 0x95BE5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwtk', symObjAddr: 0x5D0, symBinAddr: 0x6DF20, symSize: 0xE0 } + - { offsetInCU: 0xA7, offset: 0x95BF9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwta', symObjAddr: 0x6B0, symBinAddr: 0x6E000, symSize: 0x1C0 } + - { offsetInCU: 0xBB, offset: 0x95C0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwet', symObjAddr: 0x870, symBinAddr: 0x6E1C0, symSize: 0x20 } + - { offsetInCU: 0xCF, offset: 0x95C21, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVwst', symObjAddr: 0x900, symBinAddr: 0x6E250, symSize: 0x20 } + - { offsetInCU: 0xE3, offset: 0x95C35, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVMr', symObjAddr: 0x9A0, symBinAddr: 0x6E2F0, symSize: 0x90 } + - { offsetInCU: 0xF7, offset: 0x95C49, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgMa', symObjAddr: 0xA30, symBinAddr: 0x6E380, symSize: 0x50 } + - { offsetInCU: 0x10B, offset: 0x95C5D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwCP', symObjAddr: 0xA80, symBinAddr: 0x6E3D0, symSize: 0x120 } + - { offsetInCU: 0x11F, offset: 0x95C71, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwxx', symObjAddr: 0xBA0, symBinAddr: 0x6E4F0, symSize: 0x70 } + - { offsetInCU: 0x133, offset: 0x95C85, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwcp', symObjAddr: 0xC10, symBinAddr: 0x6E560, symSize: 0xF0 } + - { offsetInCU: 0x147, offset: 0x95C99, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwca', symObjAddr: 0xD00, symBinAddr: 0x6E650, symSize: 0x160 } + - { offsetInCU: 0x15B, offset: 0x95CAD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwtk', symObjAddr: 0xE60, symBinAddr: 0x6E7B0, symSize: 0xC0 } + - { offsetInCU: 0x16F, offset: 0x95CC1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwta', symObjAddr: 0xF20, symBinAddr: 0x6E870, symSize: 0x150 } + - { offsetInCU: 0x183, offset: 0x95CD5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwet', symObjAddr: 0x1070, symBinAddr: 0x6E9C0, symSize: 0x20 } + - { offsetInCU: 0x197, offset: 0x95CE9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVwst', symObjAddr: 0x1100, symBinAddr: 0x6EA50, symSize: 0x20 } + - { offsetInCU: 0x1AB, offset: 0x95CFD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVMr', symObjAddr: 0x11C0, symBinAddr: 0x6EB10, symSize: 0x80 } + - { offsetInCU: 0x239, offset: 0x95D8B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x1780, symBinAddr: 0x6F0D0, symSize: 0x10 } + - { offsetInCU: 0x28C, offset: 0x95DDE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x17A0, symBinAddr: 0x6F0F0, symSize: 0x20 } + - { offsetInCU: 0x306, offset: 0x95E58, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x17D0, symBinAddr: 0x6F120, symSize: 0x80 } + - { offsetInCU: 0x33B, offset: 0x95E8D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1850, symBinAddr: 0x6F1A0, symSize: 0x20 } + - { offsetInCU: 0x36C, offset: 0x95EBE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1870, symBinAddr: 0x6F1C0, symSize: 0x10 } + - { offsetInCU: 0x388, offset: 0x95EDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1880, symBinAddr: 0x6F1D0, symSize: 0x10 } + - { offsetInCU: 0x3A4, offset: 0x95EF6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x2F50, symBinAddr: 0x70770, symSize: 0x170 } + - { offsetInCU: 0x44E, offset: 0x95FA0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x18D0, symBinAddr: 0x6F220, symSize: 0x10 } + - { offsetInCU: 0x471, offset: 0x95FC3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x18E0, symBinAddr: 0x6F230, symSize: 0x10 } + - { offsetInCU: 0x4F2, offset: 0x96044, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x1AC0, symBinAddr: 0x6F410, symSize: 0x60 } + - { offsetInCU: 0x527, offset: 0x96079, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x1B20, symBinAddr: 0x6F470, symSize: 0x20 } + - { offsetInCU: 0x558, offset: 0x960AA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x1B40, symBinAddr: 0x6F490, symSize: 0x10 } + - { offsetInCU: 0x574, offset: 0x960C6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x1B50, symBinAddr: 0x6F4A0, symSize: 0x10 } + - { offsetInCU: 0x590, offset: 0x960E2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x30C0, symBinAddr: 0x708E0, symSize: 0x120 } + - { offsetInCU: 0x640, offset: 0x96192, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x1BA0, symBinAddr: 0x6F4F0, symSize: 0x40 } + - { offsetInCU: 0x677, offset: 0x961C9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x1BE0, symBinAddr: 0x6F530, symSize: 0x40 } + - { offsetInCU: 0x69A, offset: 0x961EC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV4fromACs7Decoder_p_tKcfCTf4nd_n', symObjAddr: 0x31E0, symBinAddr: 0x70A00, symSize: 0x2B0 } + - { offsetInCU: 0x6FE, offset: 0x96250, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValueSSvgTW', symObjAddr: 0x2490, symBinAddr: 0x6FDE0, symSize: 0x10 } + - { offsetInCU: 0x733, offset: 0x96285, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP11stringValuexSgSS_tcfCTW', symObjAddr: 0x24A0, symBinAddr: 0x6FDF0, symSize: 0x20 } + - { offsetInCU: 0x764, offset: 0x962B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValueSiSgvgTW', symObjAddr: 0x24C0, symBinAddr: 0x6FE10, symSize: 0x10 } + - { offsetInCU: 0x780, offset: 0x962D2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAsAGP8intValuexSgSi_tcfCTW', symObjAddr: 0x24D0, symBinAddr: 0x6FE20, symSize: 0x10 } + - { offsetInCU: 0x79C, offset: 0x962EE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueAFSgSS_tcfCTf4nd_n', symObjAddr: 0x3490, symBinAddr: 0x70CB0, symSize: 0x270 } + - { offsetInCU: 0x8E8, offset: 0x9643A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSeAASe4fromxs7Decoder_p_tKcfCTW', symObjAddr: 0x2520, symBinAddr: 0x6FE70, symSize: 0x10 } + - { offsetInCU: 0x90B, offset: 0x9645D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataVSEAASE6encode2toys7Encoder_p_tKFTW', symObjAddr: 0x2530, symBinAddr: 0x6FE80, symSize: 0x10 } + - { offsetInCU: 0x92F, offset: 0x96481, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2570, symBinAddr: 0x6FE90, symSize: 0x30 } + - { offsetInCU: 0x943, offset: 0x96495, size: 0x8, addend: 0x0, symName: '_$s10Foundation4DateVSgWOh', symObjAddr: 0x25D0, symBinAddr: 0x6FEC0, symSize: 0x30 } + - { offsetInCU: 0x957, offset: 0x964A9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0F3KeyAAWl', symObjAddr: 0x2670, symBinAddr: 0x6FF20, symSize: 0x30 } + - { offsetInCU: 0x96B, offset: 0x964BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSeAAWl', symObjAddr: 0x26E0, symBinAddr: 0x6FF50, symSize: 0x30 } + - { offsetInCU: 0x97F, offset: 0x964D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVACSEAAWl', symObjAddr: 0x27D0, symBinAddr: 0x70040, symSize: 0x30 } + - { offsetInCU: 0x993, offset: 0x964E5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x2820, symBinAddr: 0x70070, symSize: 0x80 } + - { offsetInCU: 0x9A7, offset: 0x964F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x28A0, symBinAddr: 0x700F0, symSize: 0xD0 } + - { offsetInCU: 0x9BB, offset: 0x9650D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwug', symObjAddr: 0x2970, symBinAddr: 0x701C0, symSize: 0x10 } + - { offsetInCU: 0x9CF, offset: 0x96521, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2980, symBinAddr: 0x701D0, symSize: 0x10 } + - { offsetInCU: 0x9E3, offset: 0x96535, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwui', symObjAddr: 0x2990, symBinAddr: 0x701E0, symSize: 0x10 } + - { offsetInCU: 0x9F7, offset: 0x96549, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x29A0, symBinAddr: 0x701F0, symSize: 0x10 } + - { offsetInCU: 0xA0B, offset: 0x9655D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x29B0, symBinAddr: 0x70200, symSize: 0x80 } + - { offsetInCU: 0xA1F, offset: 0x96571, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x2A30, symBinAddr: 0x70280, symSize: 0xD0 } + - { offsetInCU: 0xA33, offset: 0x96585, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x2B00, symBinAddr: 0x70350, symSize: 0x10 } + - { offsetInCU: 0xA47, offset: 0x96599, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x2B10, symBinAddr: 0x70360, symSize: 0x10 } + - { offsetInCU: 0xA5B, offset: 0x965AD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwCP', symObjAddr: 0x2B20, symBinAddr: 0x70370, symSize: 0x30 } + - { offsetInCU: 0xA6F, offset: 0x965C1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwxx', symObjAddr: 0x2B50, symBinAddr: 0x703A0, symSize: 0x30 } + - { offsetInCU: 0xA83, offset: 0x965D5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwcp', symObjAddr: 0x2B80, symBinAddr: 0x703D0, symSize: 0x70 } + - { offsetInCU: 0xA97, offset: 0x965E9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwca', symObjAddr: 0x2BF0, symBinAddr: 0x70440, symSize: 0x90 } + - { offsetInCU: 0xAAB, offset: 0x965FD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwta', symObjAddr: 0x2CB0, symBinAddr: 0x704D0, symSize: 0x70 } + - { offsetInCU: 0xABF, offset: 0x96611, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwet', symObjAddr: 0x2D20, symBinAddr: 0x70540, symSize: 0x50 } + - { offsetInCU: 0xAD3, offset: 0x96625, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVwst', symObjAddr: 0x2D70, symBinAddr: 0x70590, symSize: 0x50 } + - { offsetInCU: 0xAE7, offset: 0x96639, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttVMa', symObjAddr: 0x2DC0, symBinAddr: 0x705E0, symSize: 0x10 } + - { offsetInCU: 0xAFB, offset: 0x9664D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2DD0, symBinAddr: 0x705F0, symSize: 0x10 } + - { offsetInCU: 0xB0F, offset: 0x96661, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2DE0, symBinAddr: 0x70600, symSize: 0x30 } + - { offsetInCU: 0xB23, offset: 0x96675, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x2E10, symBinAddr: 0x70630, symSize: 0x10 } + - { offsetInCU: 0xB37, offset: 0x96689, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x2E20, symBinAddr: 0x70640, symSize: 0x30 } + - { offsetInCU: 0xB4B, offset: 0x9669D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2E50, symBinAddr: 0x70670, symSize: 0x10 } + - { offsetInCU: 0xB5F, offset: 0x966B1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2E60, symBinAddr: 0x70680, symSize: 0x30 } + - { offsetInCU: 0xB73, offset: 0x966C5, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2E90, symBinAddr: 0x706B0, symSize: 0x10 } + - { offsetInCU: 0xB87, offset: 0x966D9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2EA0, symBinAddr: 0x706C0, symSize: 0x30 } + - { offsetInCU: 0xB9B, offset: 0x966ED, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x2ED0, symBinAddr: 0x706F0, symSize: 0x10 } + - { offsetInCU: 0xBAF, offset: 0x96701, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x2EE0, symBinAddr: 0x70700, symSize: 0x30 } + - { offsetInCU: 0xBC3, offset: 0x96715, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0F3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x2F10, symBinAddr: 0x70730, symSize: 0x10 } + - { offsetInCU: 0xBD7, offset: 0x96729, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x2F20, symBinAddr: 0x70740, symSize: 0x30 } + - { offsetInCU: 0xBF6, offset: 0x96748, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs0E3KeyAAWl', symObjAddr: 0x3700, symBinAddr: 0x70F20, symSize: 0x30 } + - { offsetInCU: 0xC0A, offset: 0x9675C, size: 0x8, addend: 0x0, symName: '_$sSay15IoTConnect2_AWS7AttDataVGSgWOb', symObjAddr: 0x3730, symBinAddr: 0x70F50, symSize: 0x40 } + - { offsetInCU: 0xC1E, offset: 0x96770, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwet', symObjAddr: 0x37E0, symBinAddr: 0x71000, symSize: 0x80 } + - { offsetInCU: 0xC32, offset: 0x96784, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwst', symObjAddr: 0x3860, symBinAddr: 0x71080, symSize: 0xD0 } + - { offsetInCU: 0xC46, offset: 0x96798, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOwup', symObjAddr: 0x3930, symBinAddr: 0x71150, symSize: 0x10 } + - { offsetInCU: 0xC5A, offset: 0x967AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOMa', symObjAddr: 0x3940, symBinAddr: 0x71160, symSize: 0x10 } + - { offsetInCU: 0xC6E, offset: 0x967C0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOSHAASQWb', symObjAddr: 0x3950, symBinAddr: 0x71170, symSize: 0x10 } + - { offsetInCU: 0xC82, offset: 0x967D4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFSQAAWl', symObjAddr: 0x3960, symBinAddr: 0x71180, symSize: 0x30 } + - { offsetInCU: 0xC96, offset: 0x967E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs28CustomDebugStringConvertiblePWb', symObjAddr: 0x3990, symBinAddr: 0x711B0, symSize: 0x10 } + - { offsetInCU: 0xCAA, offset: 0x967FC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs28CustomDebugStringConvertibleAAWl', symObjAddr: 0x39A0, symBinAddr: 0x711C0, symSize: 0x30 } + - { offsetInCU: 0xCBE, offset: 0x96810, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs0E3KeyAAs23CustomStringConvertiblePWb', symObjAddr: 0x39D0, symBinAddr: 0x711F0, symSize: 0x10 } + - { offsetInCU: 0xCD2, offset: 0x96824, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOAFs23CustomStringConvertibleAAWl', symObjAddr: 0x39E0, symBinAddr: 0x71200, symSize: 0x30 } + - { offsetInCU: 0xD00, offset: 0x96852, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1890, symBinAddr: 0x6F1E0, symSize: 0x20 } + - { offsetInCU: 0xD1C, offset: 0x9686E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x18B0, symBinAddr: 0x6F200, symSize: 0x20 } + - { offsetInCU: 0xD3E, offset: 0x96890, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x1B60, symBinAddr: 0x6F4B0, symSize: 0x20 } + - { offsetInCU: 0xD5A, offset: 0x968AC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x1B80, symBinAddr: 0x6F4D0, symSize: 0x20 } + - { offsetInCU: 0xD7C, offset: 0x968CE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs28CustomDebugStringConvertibleAAsAGP16debugDescriptionSSvgTW', symObjAddr: 0x24E0, symBinAddr: 0x6FE30, symSize: 0x20 } + - { offsetInCU: 0xD98, offset: 0x968EA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLOs23CustomStringConvertibleAAsAGP11descriptionSSvgTW', symObjAddr: 0x2500, symBinAddr: 0x6FE50, symSize: 0x20 } + - { offsetInCU: 0xEA5, offset: 0x969F7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1240, symBinAddr: 0x6EB90, symSize: 0x1F0 } + - { offsetInCU: 0xEDC, offset: 0x96A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS14AttributesDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1430, symBinAddr: 0x6ED80, symSize: 0x350 } + - { offsetInCU: 0xF57, offset: 0x96AA9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS3AttV6encode2toys7Encoder_p_tKF', symObjAddr: 0x18F0, symBinAddr: 0x6F240, symSize: 0x1B0 } + - { offsetInCU: 0xFA2, offset: 0x96AF4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV10CodingKeys33_DDA945E51BE2C81EBE7338885C59C229LLO11stringValueSSvg', symObjAddr: 0x1C20, symBinAddr: 0x6F570, symSize: 0xB0 } + - { offsetInCU: 0xFC3, offset: 0x96B15, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV6encode2toys7Encoder_p_tKF', symObjAddr: 0x1CD0, symBinAddr: 0x6F620, symSize: 0x2B0 } + - { offsetInCU: 0xFFA, offset: 0x96B4C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS7AttDataV4fromACs7Decoder_p_tKcfC', symObjAddr: 0x1F80, symBinAddr: 0x6F8D0, symSize: 0x470 } + - { offsetInCU: 0x27, offset: 0x96BD3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x712B0, symSize: 0x30 } + - { offsetInCU: 0x106, offset: 0x96CB2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwCP', symObjAddr: 0x110, symBinAddr: 0x713C0, symSize: 0x30 } + - { offsetInCU: 0x11A, offset: 0x96CC6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwxx', symObjAddr: 0x140, symBinAddr: 0x713F0, symSize: 0x30 } + - { offsetInCU: 0x12E, offset: 0x96CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwcp', symObjAddr: 0x170, symBinAddr: 0x71420, symSize: 0x40 } + - { offsetInCU: 0x142, offset: 0x96CEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwca', symObjAddr: 0x1B0, symBinAddr: 0x71460, symSize: 0x60 } + - { offsetInCU: 0x156, offset: 0x96D02, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwta', symObjAddr: 0x230, symBinAddr: 0x714C0, symSize: 0x50 } + - { offsetInCU: 0x16A, offset: 0x96D16, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwet', symObjAddr: 0x280, symBinAddr: 0x71510, symSize: 0x40 } + - { offsetInCU: 0x17E, offset: 0x96D2A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVwst', symObjAddr: 0x2C0, symBinAddr: 0x71550, symSize: 0x50 } + - { offsetInCU: 0x192, offset: 0x96D3E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionVMa', symObjAddr: 0x310, symBinAddr: 0x715A0, symSize: 0xA } + - { offsetInCU: 0x2A1, offset: 0x96E4D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvg', symObjAddr: 0x0, symBinAddr: 0x712B0, symSize: 0x30 } + - { offsetInCU: 0x2BB, offset: 0x96E67, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvs', symObjAddr: 0x30, symBinAddr: 0x712E0, symSize: 0x30 } + - { offsetInCU: 0x2EF, offset: 0x96E9B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM', symObjAddr: 0x60, symBinAddr: 0x71310, symSize: 0x10 } + - { offsetInCU: 0x303, offset: 0x96EAF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV15certificatePathSSSgvM.resume.0', symObjAddr: 0x70, symBinAddr: 0x71320, symSize: 0x10 } + - { offsetInCU: 0x324, offset: 0x96ED0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvg', symObjAddr: 0x80, symBinAddr: 0x71330, symSize: 0x30 } + - { offsetInCU: 0x338, offset: 0x96EE4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvs', symObjAddr: 0xB0, symBinAddr: 0x71360, symSize: 0x30 } + - { offsetInCU: 0x36C, offset: 0x96F18, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM', symObjAddr: 0xE0, symBinAddr: 0x71390, symSize: 0x20 } + - { offsetInCU: 0x390, offset: 0x96F3C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SSLOptionV8passwordSSvM.resume.0', symObjAddr: 0x100, symBinAddr: 0x713B0, symSize: 0x10 } + - { offsetInCU: 0x27, offset: 0x96F8E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x715B0, symSize: 0x20 } + - { offsetInCU: 0x87, offset: 0x96FEE, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValuexSg03RawG0Qz_tcfCTW', symObjAddr: 0x540, symBinAddr: 0x71AF0, symSize: 0x10 } + - { offsetInCU: 0xA3, offset: 0x9700A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSYAASY8rawValue03RawG0QzvgTW', symObjAddr: 0x550, symBinAddr: 0x71B00, symSize: 0x20 } + - { offsetInCU: 0xD8, offset: 0x9703F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASQWb', symObjAddr: 0x450, symBinAddr: 0x71A00, symSize: 0x10 } + - { offsetInCU: 0xEC, offset: 0x97053, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOACSQAAWl', symObjAddr: 0x460, symBinAddr: 0x71A10, symSize: 0x30 } + - { offsetInCU: 0x120, offset: 0x97087, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwet', symObjAddr: 0x590, symBinAddr: 0x71B20, symSize: 0x80 } + - { offsetInCU: 0x134, offset: 0x9709B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwst', symObjAddr: 0x610, symBinAddr: 0x71BA0, symSize: 0xD0 } + - { offsetInCU: 0x148, offset: 0x970AF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwug', symObjAddr: 0x6E0, symBinAddr: 0x71C70, symSize: 0x10 } + - { offsetInCU: 0x15C, offset: 0x970C3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwup', symObjAddr: 0x6F0, symBinAddr: 0x71C80, symSize: 0x10 } + - { offsetInCU: 0x170, offset: 0x970D7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOwui', symObjAddr: 0x700, symBinAddr: 0x71C90, symSize: 0x10 } + - { offsetInCU: 0x184, offset: 0x970EB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOMa', symObjAddr: 0x710, symBinAddr: 0x71CA0, symSize: 0x10 } + - { offsetInCU: 0x1FF, offset: 0x97166, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS6SDKURLV9discoveryyS2S_S5StFZTf4dndnnnd_n', symObjAddr: 0x720, symBinAddr: 0x71CB0, symSize: 0x27B } + - { offsetInCU: 0x456, offset: 0x973BD, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSQAASQ2eeoiySbx_xtFZTW', symObjAddr: 0x430, symBinAddr: 0x719E0, symSize: 0x20 } + - { offsetInCU: 0x529, offset: 0x97490, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH9hashValueSivgTW', symObjAddr: 0x490, symBinAddr: 0x71A40, symSize: 0x40 } + - { offsetInCU: 0x601, offset: 0x97568, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH4hash4intoys6HasherVz_tFTW', symObjAddr: 0x4D0, symBinAddr: 0x71A80, symSize: 0x30 } + - { offsetInCU: 0x67D, offset: 0x975E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeOSHAASH13_rawHashValue4seedS2i_tFTW', symObjAddr: 0x500, symBinAddr: 0x71AB0, symSize: 0x40 } + - { offsetInCU: 0x860, offset: 0x977C7, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueSivg', symObjAddr: 0x0, symBinAddr: 0x715B0, symSize: 0x20 } + - { offsetInCU: 0x881, offset: 0x977E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11CommandTypeO8rawValueACSgSi_tcfC', symObjAddr: 0x20, symBinAddr: 0x715D0, symSize: 0x410 } + - { offsetInCU: 0x2B, offset: 0x978B6, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x71F30, symSize: 0x20 } + - { offsetInCU: 0x7C, offset: 0x97907, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCMa', symObjAddr: 0x20, symBinAddr: 0x71F50, symSize: 0x14 } + - { offsetInCU: 0x182, offset: 0x97A0D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS11HTTPManagerCfD', symObjAddr: 0x0, symBinAddr: 0x71F30, symSize: 0x20 } + - { offsetInCU: 0x4F, offset: 0x97A9D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvpZ', symObjAddr: 0x2330, symBinAddr: 0x8CEE0, symSize: 0x0 } + - { offsetInCU: 0x60A, offset: 0x98058, size: 0x8, addend: 0x0, symName: '_$sSo7NSTimerCIeghg_ABIeyBhy_TR', symObjAddr: 0xB0, symBinAddr: 0x72020, symSize: 0x50 } + - { offsetInCU: 0x622, offset: 0x98070, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6shared_WZ', symObjAddr: 0x100, symBinAddr: 0x72070, symSize: 0xC0 } + - { offsetInCU: 0x79C, offset: 0x981EA, size: 0x8, addend: 0x0, symName: '_$sSo11NSPredicateCMa', symObjAddr: 0x1D20, symBinAddr: 0x73BA0, symSize: 0x30 } + - { offsetInCU: 0x7B0, offset: 0x981FE, size: 0x8, addend: 0x0, symName: '_$sS2Ss7CVarArg10FoundationWl', symObjAddr: 0x1D50, symBinAddr: 0x73BD0, symSize: 0x30 } + - { offsetInCU: 0x7C4, offset: 0x98212, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_TA', symObjAddr: 0x1D80, symBinAddr: 0x73C00, symSize: 0x10 } + - { offsetInCU: 0x7D8, offset: 0x98226, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_TA', symObjAddr: 0x1D90, symBinAddr: 0x73C10, symSize: 0x10 } + - { offsetInCU: 0x7EC, offset: 0x9823A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_TA', symObjAddr: 0x1DA0, symBinAddr: 0x73C20, symSize: 0x10 } + - { offsetInCU: 0x800, offset: 0x9824E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_TA', symObjAddr: 0x1DB0, symBinAddr: 0x73C30, symSize: 0x10 } + - { offsetInCU: 0x814, offset: 0x98262, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_TA', symObjAddr: 0x1DC0, symBinAddr: 0x73C40, symSize: 0x10 } + - { offsetInCU: 0x828, offset: 0x98276, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCMa', symObjAddr: 0x1E20, symBinAddr: 0x73C50, symSize: 0x20 } + - { offsetInCU: 0x83C, offset: 0x9828A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOb', symObjAddr: 0x1E40, symBinAddr: 0x73C70, symSize: 0x40 } + - { offsetInCU: 0x850, offset: 0x9829E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS16callBackResponse_pSgWOd', symObjAddr: 0x1E80, symBinAddr: 0x73CB0, symSize: 0x40 } + - { offsetInCU: 0x864, offset: 0x982B2, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS0A15TConnectManagerC14startHeartRate2dfySd_tFySo7NSTimerCYbcfU_TA', symObjAddr: 0x21F0, symBinAddr: 0x74000, symSize: 0x10 } + - { offsetInCU: 0x878, offset: 0x982C6, size: 0x8, addend: 0x0, symName: _block_copy_helper, symObjAddr: 0x2200, symBinAddr: 0x74010, symSize: 0x20 } + - { offsetInCU: 0x88C, offset: 0x982DA, size: 0x8, addend: 0x0, symName: _block_destroy_helper, symObjAddr: 0x2220, symBinAddr: 0x74030, symSize: 0x10 } + - { offsetInCU: 0x8D5, offset: 0x98323, size: 0x8, addend: 0x0, symName: '_$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SDySSSayypGGt_Tgm5', symObjAddr: 0x2230, symBinAddr: 0x74040, symSize: 0x20 } + - { offsetInCU: 0x944, offset: 0x98392, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFyp_Tg5', symObjAddr: 0x0, symBinAddr: 0x71F70, symSize: 0x10 } + - { offsetInCU: 0x960, offset: 0x983AE, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_ypt_Tg5', symObjAddr: 0x10, symBinAddr: 0x71F80, symSize: 0x10 } + - { offsetInCU: 0x97C, offset: 0x983CA, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFs7CVarArg_p_Tg5', symObjAddr: 0x20, symBinAddr: 0x71F90, symSize: 0x10 } + - { offsetInCU: 0x998, offset: 0x983E6, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SayypGt_Tg5', symObjAddr: 0x30, symBinAddr: 0x71FA0, symSize: 0x10 } + - { offsetInCU: 0x9B4, offset: 0x98402, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSSayypGGt_Tg5', symObjAddr: 0x40, symBinAddr: 0x71FB0, symSize: 0x10 } + - { offsetInCU: 0x9D0, offset: 0x9841E, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_SDySSypGt_Tg5', symObjAddr: 0x50, symBinAddr: 0x71FC0, symSize: 0x10 } + - { offsetInCU: 0x9EC, offset: 0x9843A, size: 0x8, addend: 0x0, symName: '_$ss27_finalizeUninitializedArrayySayxGABnlFSS_Sit_Tg5', symObjAddr: 0x60, symBinAddr: 0x71FD0, symSize: 0x10 } + - { offsetInCU: 0xA08, offset: 0x98456, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA0_', symObjAddr: 0x70, symBinAddr: 0x71FE0, symSize: 0x20 } + - { offsetInCU: 0xA24, offset: 0x98472, size: 0x8, addend: 0x0, symName: '_$ss5print_9separator10terminatoryypd_S2StFfA1_', symObjAddr: 0x90, symBinAddr: 0x72000, symSize: 0x20 } + - { offsetInCU: 0xCA3, offset: 0x986F1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC6sharedACvgZ', symObjAddr: 0x1C0, symBinAddr: 0x72130, symSize: 0x30 } + - { offsetInCU: 0xE02, offset: 0x98850, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctF', symObjAddr: 0x1F0, symBinAddr: 0x72160, symSize: 0x870 } + - { offsetInCU: 0x121D, offset: 0x98C6B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU_', symObjAddr: 0xAA0, symBinAddr: 0x729D0, symSize: 0x50 } + - { offsetInCU: 0x128C, offset: 0x98CDA, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU0_', symObjAddr: 0xAF0, symBinAddr: 0x72A20, symSize: 0x50 } + - { offsetInCU: 0x12FB, offset: 0x98D49, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU1_', symObjAddr: 0xB40, symBinAddr: 0x72A70, symSize: 0x50 } + - { offsetInCU: 0x136A, offset: 0x98DB8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU2_', symObjAddr: 0xB90, symBinAddr: 0x72AC0, symSize: 0x50 } + - { offsetInCU: 0x13D9, offset: 0x98E27, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10initialize6config10errorBlockyAA0A14TConnectConfigV_ySSctFyypSgcfU3_', symObjAddr: 0xBE0, symBinAddr: 0x72B10, symSize: 0x50 } + - { offsetInCU: 0x14AD, offset: 0x98EFB, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8sendData4dataySDySSypG_tF', symObjAddr: 0xC30, symBinAddr: 0x72B60, symSize: 0x40 } + - { offsetInCU: 0x1517, offset: 0x98F65, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendLog4dataySDySSypGSg_tF', symObjAddr: 0xC70, symBinAddr: 0x72BA0, symSize: 0x10 } + - { offsetInCU: 0x155A, offset: 0x98FA8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7sendAck4data7msgTypeySaySDySSypGG_SStF', symObjAddr: 0xC80, symBinAddr: 0x72BB0, symSize: 0x50 } + - { offsetInCU: 0x15D1, offset: 0x9901F, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC11getAllTwinsyyF', symObjAddr: 0xDF0, symBinAddr: 0x72D20, symSize: 0x30 } + - { offsetInCU: 0x1634, offset: 0x99082, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC10updateTwin3key5valueySS_yptF', symObjAddr: 0xE20, symBinAddr: 0x72D50, symSize: 0x50 } + - { offsetInCU: 0x16AB, offset: 0x990F9, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC7dispose13sdkconnectionySS_tF', symObjAddr: 0xE70, symBinAddr: 0x72DA0, symSize: 0x40 } + - { offsetInCU: 0x1737, offset: 0x99185, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC13getAttributes8callBackyyypSgc_tF', symObjAddr: 0xEB0, symBinAddr: 0x72DE0, symSize: 0x80 } + - { offsetInCU: 0x17D2, offset: 0x99220, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC8getTwins8callBackyyypSgc_tF', symObjAddr: 0xF30, symBinAddr: 0x72E60, symSize: 0x70 } + - { offsetInCU: 0x1881, offset: 0x992CF, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15getChildDevices8callBackyyypSgc_tF', symObjAddr: 0xFA0, symBinAddr: 0x72ED0, symSize: 0x80 } + - { offsetInCU: 0x191C, offset: 0x9936A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17getDeviceCallBack14deviceCallbackyyypSgc_tF', symObjAddr: 0x1020, symBinAddr: 0x72F50, symSize: 0x30 } + - { offsetInCU: 0x199A, offset: 0x993E8, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onDeviceCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1050, symBinAddr: 0x72F80, symSize: 0x30 } + - { offsetInCU: 0x1A18, offset: 0x99466, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onAttrChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1080, symBinAddr: 0x72FB0, symSize: 0x40 } + - { offsetInCU: 0x1A96, offset: 0x994E4, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x10C0, symBinAddr: 0x72FF0, symSize: 0x40 } + - { offsetInCU: 0x1B14, offset: 0x99562, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onRuleChangeCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1100, symBinAddr: 0x73030, symSize: 0x40 } + - { offsetInCU: 0x1B92, offset: 0x995E0, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC12onOTACommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1140, symBinAddr: 0x73070, symSize: 0x40 } + - { offsetInCU: 0x1C10, offset: 0x9965E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC15onModuleCommand15commandCallbackyyypSgc_tF', symObjAddr: 0x1180, symBinAddr: 0x730B0, symSize: 0x40 } + - { offsetInCU: 0x1C8E, offset: 0x996DC, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onTwinChangeCommand18twinUpdateCallbackyyypSgc_tF', symObjAddr: 0x11C0, symBinAddr: 0x730F0, symSize: 0x30 } + - { offsetInCU: 0x1CEC, offset: 0x9973A, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC24onFrequencyChangeCommand7dfValueySi_tF', symObjAddr: 0x11F0, symBinAddr: 0x73120, symSize: 0x40 } + - { offsetInCU: 0x1D83, offset: 0x997D1, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC18onHeartbeatCommand7isStart2dfySb_SitF', symObjAddr: 0x1230, symBinAddr: 0x73160, symSize: 0x130 } + - { offsetInCU: 0x1E55, offset: 0x998A3, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17createChildDevice8deviceId0H3Tag11displayName0eF8CallBackySS_S2SyypSgctF', symObjAddr: 0x1360, symBinAddr: 0x73290, symSize: 0xB0 } + - { offsetInCU: 0x1F27, offset: 0x99975, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC17deleteChildDevice8deviceId0eF8CallBackySS_yypSgctF', symObjAddr: 0x1410, symBinAddr: 0x73340, symSize: 0x90 } + - { offsetInCU: 0x1FBD, offset: 0x99A0B, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfd', symObjAddr: 0x14A0, symBinAddr: 0x733D0, symSize: 0x100 } + - { offsetInCU: 0x1FE0, offset: 0x99A2E, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientCfD', symObjAddr: 0x15A0, symBinAddr: 0x734D0, symSize: 0x20 } + - { offsetInCU: 0x201E, offset: 0x99A6C, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC21onDeviceDeleteCommand8responseySDySSypG_tF', symObjAddr: 0x1670, symBinAddr: 0x734F0, symSize: 0x310 } + - { offsetInCU: 0x20EF, offset: 0x99B3D, size: 0x8, addend: 0x0, symName: '_$s15IoTConnect2_AWS9SDKClientC19onCreateChildDevice8responseySDySSypG_tF', symObjAddr: 0x1980, symBinAddr: 0x73800, symSize: 0x3A0 } +... diff --git a/IoTConnectDemo/IoTConnectDemo/Main.storyboard b/IoTConnectDemo/IoTConnectDemo/Main.storyboard index 29b3e11..022c297 100644 --- a/IoTConnectDemo/IoTConnectDemo/Main.storyboard +++ b/IoTConnectDemo/IoTConnectDemo/Main.storyboard @@ -1,9 +1,9 @@ - + - + @@ -12,7 +12,7 @@ - + @@ -21,12 +21,12 @@ - + - + - - + - - @@ -982,6 +1035,7 @@ + @@ -989,19 +1043,19 @@ - + - + - + - + - + diff --git a/IoTConnectDemo/IoTConnectDemo/Models/Attributes.swift b/IoTConnectDemo/IoTConnectDemo/Models/Attributes.swift index e5b4dca..a087b77 100644 --- a/IoTConnectDemo/IoTConnectDemo/Models/Attributes.swift +++ b/IoTConnectDemo/IoTConnectDemo/Models/Attributes.swift @@ -26,9 +26,9 @@ struct Att: Codable { } struct AttData: Codable { - let dt: Int? - let dv, ln,tw,tg: String? - let sq: Int? + var dt: Int? + var dv, ln,tw,tg: String? + var sq: Int? var p:String? = "" var value:String? } diff --git a/IoTConnectDemo/IoTConnectDemo/View/PropertyCell.swift b/IoTConnectDemo/IoTConnectDemo/View/PropertyCell.swift index 576badd..b2b2aaa 100644 --- a/IoTConnectDemo/IoTConnectDemo/View/PropertyCell.swift +++ b/IoTConnectDemo/IoTConnectDemo/View/PropertyCell.swift @@ -27,7 +27,7 @@ class PropertyCell: UITableViewCell { let parentName = data[index].p let ln = data[index].ln self.txtField.placeholder = !(parentName?.isEmpty ?? true) ? "\(parentName ?? ""):\(ln ?? "")" : "\(ln ?? "")" - self.txtField.text = data[index].value ?? "" +// self.txtField.text = data[index].value ?? "" } } diff --git a/IoTConnectDemo/IoTConnectDemo/ViewController/ChildOperationVC.swift b/IoTConnectDemo/IoTConnectDemo/ViewController/ChildOperationVC.swift index 3b57e28..44df732 100644 --- a/IoTConnectDemo/IoTConnectDemo/ViewController/ChildOperationVC.swift +++ b/IoTConnectDemo/IoTConnectDemo/ViewController/ChildOperationVC.swift @@ -16,15 +16,19 @@ import IoTConnect2 class ChildOperationVC: UIViewController { //MARK: @IBOutlet - @IBOutlet weak var dropDown: DropDown! +// @IBOutlet weak var dropDown: DropDown! @IBOutlet weak var txtFieldUniqueID: UITextField! @IBOutlet weak var txtFieldDisplayName: UITextField! @IBOutlet weak var viewProgress: UIView! + @IBOutlet weak var btnDropDown: UIButton! + //MARK: Variable var tag = "" var tagArray = [String]() + private var btnTagDropDown = DropDown() + lazy var dropDown:DropDown = btnTagDropDown override func viewDidLoad() { super.viewDidLoad() @@ -38,11 +42,24 @@ class ChildOperationVC: UIViewController { } func setupDropDown(){ - dropDown.arrowSize = 20 - dropDown.optionArray = tagArray//["Option 1", "Option 2", "Option 3"] - dropDown.didSelect{(selectedText , index ,id) in - self.tag = selectedText +// dropDown.arrowSize = 20 +// dropDown.optionArray = tagArray//["Option 1", "Option 2", "Option 3"] +// dropDown.didSelect{(selectedText , index ,id) in +// self.tag = selectedText +// } + + DispatchQueue.main.async { + self.btnDropDown.layer.borderColor = UIColor.black.cgColor + self.btnDropDown.layer.borderWidth = 1.0 + } + + btnTagDropDown.dataSource = tagArray + btnTagDropDown.selectionAction = { [weak self] (index,item) in + self?.btnDropDown.setTitle(self?.tagArray[index], for: .normal) + self?.tag = self?.tagArray[index] ?? "" } + btnTagDropDown.anchorView = btnDropDown + btnTagDropDown.bottomOffset = CGPoint(x: 0, y: btnDropDown.bounds.height+5) } func presentAlert(title:String = "",msg:String = ""){ @@ -64,17 +81,20 @@ class ChildOperationVC: UIViewController { tag != ""{ DispatchQueue.main.async { self.viewProgress.isHidden = false + } //Send data to SDK and handle response and show alert SDKClient.shared.createChildDevice(deviceId: txtFieldUniqueID.text ?? "", deviceTag:self.tag, displayName: txtFieldDisplayName.text ?? "" , createChildCallBack:{ (response) in DispatchQueue.main.async { self.viewProgress.isHidden = true + self.txtFieldUniqueID.text = "" + self.txtFieldDisplayName.text = "" } if let dict = response as? [String:Any]{ let dictD = dict["d"] as? [String:Any] let ec = dictD?["ec"] as? Int if ec == 0{ - self.presentAlert(title: "Device created successfully") + self.presentAlert(title: "Child Device created successfully") }else{ self.presentAlert(title: "Error") } @@ -87,6 +107,11 @@ class ChildOperationVC: UIViewController { } } + @IBAction func btnDropDownTapped(_ sender: Any) { + self.btnTagDropDown.show() + } + + @IBAction func deleteDeviceTapped(_ sender: Any) { if !txtFieldUniqueID.text!.isEmpty{ DispatchQueue.main.async { @@ -96,12 +121,14 @@ class ChildOperationVC: UIViewController { SDKClient.shared.deleteChildDevice(deviceId: txtFieldUniqueID.text ?? "") { response in DispatchQueue.main.async { self.viewProgress.isHidden = true + self.txtFieldUniqueID.text = "" + self.txtFieldDisplayName.text = "" } if let dict = response as? [String:Any]{ let dictD = dict["d"] as? [String:Any] let ec = dictD?["ec"] as? Int if ec == 0{ - self.presentAlert(title: "Device deleted successfully") + self.presentAlert(title: "Child Device deleted successfully") }else{ self.presentAlert(title: "Error") } diff --git a/IoTConnectDemo/IoTConnectDemo/ViewController/ViewController.swift b/IoTConnectDemo/IoTConnectDemo/ViewController/ViewController.swift index ef6baa1..4f3b38e 100644 --- a/IoTConnectDemo/IoTConnectDemo/ViewController/ViewController.swift +++ b/IoTConnectDemo/IoTConnectDemo/ViewController/ViewController.swift @@ -36,14 +36,15 @@ class ViewController: UIViewController { @IBOutlet weak var btnGetTwins: UIButton! @IBOutlet weak var btnChildDevicesOperation: UIButton! @IBOutlet weak var viewDropDown: UIView! - @IBOutlet weak var txtFieldDropDown: DropDown! - + @IBOutlet weak var btnDropDown: UIButton! + @IBOutlet weak var imgArrow: UIImageView! + //MARK: Variable private var btnConnectTitle = "CONNECT" private var btnDisConnectTitle = "DISCONNECT" private let tblViewRowheight = 44.0 private var noOfSecrions = 0 - private var env:IOTCEnvironment = .PROD + private var env:IOTCEnvironment? //= .PROD private var devivceStatus:DeviceConnectionStatus = .disconnected private let radioController: RadioButtonController = RadioButtonController() private var noOfAttributes = 0 @@ -61,6 +62,10 @@ class ViewController: UIViewController { private var isDeviceGateway = false private var isDeviceEdge = false private var is204WillCalled = false + private var isDataSent = false + private var btnEnvDropDown = DropDown() + + lazy var dropDown:DropDown = btnEnvDropDown //MARK: view lifecycle override func viewDidLoad() { @@ -109,22 +114,25 @@ class ViewController: UIViewController { //MARK: - Custom Methods func connectSDK() { //This code works for certificate authentication - - if !txtCPID.text!.isEmpty && !txtUniqueID.text!.isEmpty{ - self.viewLoader.isHidden = false +// if !txtCPID.text!.isEmpty && !txtUniqueID.text!.isEmpty{ + DispatchQueue.main.async { + self.viewLoader.isHidden = false + self.txtCPID.resignFirstResponder() + self.txtUniqueID.resignFirstResponder() + } //DeviceCertificate.pfx var sdkOptions = SDKClientOption() - sdkOptions.ssl.certificatePath = Bundle.main.path(forResource: "client2301AWS.p12", ofType: nil) - sdkOptions.ssl.password = "Softweb#123" - +// sdkOptions.ssl.certificatePath = Bundle.main.path(forResource: "", ofType: nil) +// sdkOptions.ssl.password = "" + //Offline Storage Configuration sdkOptions.offlineStorage.availSpaceInMb = 0 sdkOptions.offlineStorage.fileCount = 10 sdkOptions.cpId = txtCPID.text?.replacingOccurrences(of: " ", with: "") ?? "" sdkOptions.env = env - sdkOptions.pf = .aws + sdkOptions.pf = .az //for device PK //this is base64 string for SmplPk device @@ -132,16 +140,24 @@ class ViewController: UIViewController { let objConfig = IoTConnectConfig(uniqueId: txtUniqueID.text?.replacingOccurrences(of: " ", with: "") ?? "", mqttConnectionType: .certificateAuthentication, sdkOptions: sdkOptions) - SDKClient.shared.initialize(config: objConfig) +// SDKClient.shared.initialize(config: objConfig) + + //In callback you will get error while initialising + SDKClient.shared.initialize(config: objConfig) { error in + DispatchQueue.main.async { + print(error) + self.viewLoader.isHidden = true + self.txtView.text = "\(error)" + } + } //callback fro connect,disconnect,identity,attribute,get child device and get twins reponse SDKClient.shared.getDeviceCallBack { (message) in - print("message: ", message as Any) + print("getDeviceCallBack message: ", message as Any) DispatchQueue.main.async { - self.viewLoader.isHidden = true +// self.viewLoader.isHidden = true self.txtView.text = "\(message ?? "")" - self.txtUniqueID.resignFirstResponder() - self.txtCPID.resignFirstResponder() + self.view.resignFirstResponder() } if let msg = message as? [String:Any]{ if let msg = msg["d"] as? [String:Any]{ @@ -163,6 +179,7 @@ class ViewController: UIViewController { } else if msg["ct"] as? Int == CommandType.GET_DEVICE_TEMPLATE_TWIN.rawValue{ print("GET_DEVICE_TEMPLATE_TWIN \(msg)") + self.hideLoader() DispatchQueue.main.async { self.txtView.text = "\(msg)" } @@ -172,6 +189,7 @@ class ViewController: UIViewController { } } else if let msg = msg["sdkStatus"] as? String{ + self.hideLoader() if msg == "error"{ self.presentAlert(title: "Error") self.setDisconnectUI() @@ -183,16 +201,19 @@ class ViewController: UIViewController { commandType == CommandType.DEVICE_RELEASED.rawValue || commandType == CommandType.STOP_OPERATION.rawValue || commandType == CommandType.DEVICE_CONNECTION_STATUS.rawValue{ + self.hideLoader() SDKClient.shared.dispose() self.setDisconnectUI() } } else if let msgError = msg["error"]{ + self.hideLoader() DispatchQueue.main.async { self.txtView.text = msgError as? String } self.setDisconnectUI() }else{ + self.hideLoader() print("Message \(msg)") } }else if let msgData = message as? Data{ @@ -224,6 +245,7 @@ class ViewController: UIViewController { } }) + self.hideLoader() SDKClient.shared.updateTwin(key: keyToSend, value: valToSend) DispatchQueue.main.async { self.txtView.text = "\(twinMessage ?? "")" @@ -248,6 +270,7 @@ class ViewController: UIViewController { self.tblProperty.reloadData() } self.manageAttributeResponse(response: msg) +// self.hideLoader() } } } @@ -257,6 +280,7 @@ class ViewController: UIViewController { self.arrChildAttributeData.removeAll() self.isGetDevicesCalled = false self.arrSimpleDeviceData.removeAll() + self.hideLoader() if self.is204Received{ self.arrParentData.removeAll() } @@ -267,6 +291,7 @@ class ViewController: UIViewController { self.noOfSecrions = msg.count self.is204Received = true self.arrChildDevicesAttributes = msg + self.hideLoader() if self.is201Received{ self.getChildDevicesAttributes() } @@ -278,6 +303,7 @@ class ViewController: UIViewController { //callback for refresh edge rule SDKClient.shared.onRuleChangeCommand { response in print("Response on rule change \(response ?? [:])") + self.hideLoader() DispatchQueue.main.async { self.txtView.text = "\(response ?? "")" } @@ -286,46 +312,69 @@ class ViewController: UIViewController { //callback for device command and sending ack SDKClient.shared.onDeviceCommand { response in print("response onDeviceCommand vc \(response ?? [:])") - self.txtView.text = "\(response ?? "")" + DispatchQueue.main.async { + self.txtView.text = "\(response ?? "")" + } + self.hideLoader() let msg = response as? [String:Any] - SDKClient.shared.sendAckCmd(ackGuid: msg?["ack"] as? String ?? "", status: "6", msg: "Device command received ack",childId: msg?["id"] as? String ?? "") + SDKClient.shared.sendAckCmd(ackGuid: msg?["ack"] as? String ?? "", status: "2", msg: "Device command received ack",childId: msg?["id"] as? String ?? "")//6 } //callback on OTA and ack SDKClient.shared.onOTACommand { response in let msg = response as? [String:Any] - self.txtView.text = "\(msg ?? [:])" - SDKClient.shared.sendOTAAckCmd(ackGuid: msg?["ack"] as? String ?? "", status: "0",msg: "OTA message received ack",childId: msg?["id"] as? String ?? "") + self.hideLoader() + DispatchQueue.main.async { + self.txtView.text = "\(msg ?? [:])" + } + SDKClient.shared.sendOTAAckCmd(ackGuid: msg?["ack"] as? String ?? "", status: "5",msg: "OTA message received ack",childId: msg?["id"] as? String ?? "") } //callbakck for module command and ack SDKClient.shared.onModuleCommand { response in print("On module command response \(response ?? [:])") let msg = response as? [String:Any] - self.txtView.text = "\(msg ?? [:])" + self.hideLoader() + DispatchQueue.main.async { + self.txtView.text = "\(msg ?? [:])" + } SDKClient.shared.sendAckModule(ackGuid: msg?["ack"] as? String ?? "", status: "0",msg: "Cloud message received",childId: msg?["id"] as? String ?? "") } - } - else{ - if txtCPID.text!.isEmpty{ - presentAlert(title: "Please enter CPID value") - }else{ - presentAlert(title: "Please enter unique ID value") - } - } +// } +// else{ +// if txtCPID.text!.isEmpty{ +// presentAlert(title: "Please enter CPID value") +// }else{ +// presentAlert(title: "Please enter unique ID value") +// } +// } } func setUpDropDown(){ + DispatchQueue.main.async { + self.btnDropDown.layer.borderColor = UIColor.black.cgColor + self.btnDropDown.layer.borderWidth = 1.0 + self.imgArrow.transform = CGAffineTransform(rotationAngle: CGFloat.pi * 2) + } let arrEnvValues: [String] = IOTCEnvironment.allCases.map { $0.rawValue } let arrEnv = IOTCEnvironment.allCases - txtFieldDropDown.optionArray = arrEnvValues - txtFieldDropDown.arrowSize = 20.0 - txtFieldDropDown.arrowColor = .black - self.env = arrEnv[0] - txtFieldDropDown.text = arrEnv[0].rawValue - txtFieldDropDown.didSelect{(selectedText , index ,id) in - self.env = arrEnv[index] + btnEnvDropDown.dataSource = arrEnvValues + btnEnvDropDown.selectionAction = { [weak self] (index,item) in + self?.env = arrEnv[index] + self?.btnDropDown.setTitle(arrEnvValues[index], for: .normal) + self?.imgArrow.transform = CGAffineTransform(rotationAngle: CGFloat.pi * 2) } + btnEnvDropDown.anchorView = btnDropDown + btnEnvDropDown.bottomOffset = CGPoint(x: 0, y: btnDropDown.bounds.height+5) + +// txtFieldDropDown.optionArray = arrEnvValues +// txtFieldDropDown.arrowSize = 20.0 +// txtFieldDropDown.arrowColor = .black +// self.env = arrEnv[0] +// txtFieldDropDown.text = arrEnv[0].rawValue +// txtFieldDropDown.didSelect{(selectedText , index ,id) in +// self.env = arrEnv[index] +// } } //get SimpleDevice Data @@ -448,11 +497,11 @@ class ViewController: UIViewController { if self.arrChildDevicesAttributes?.count ?? 0 > 0{ dataSection = self.arrChildDevicesAttributes?[i] ?? [:] } - + if self.arrChildDevicesAttributes?.count ?? 0 > 0 && self.attributeData?.att?.count ?? 0 > 0{ for j in 0...(arrAttData?.count ?? 0)-1{ - print("arrAttData \(arrAttData) \(j)") + print("arrAttData \(String(describing: arrAttData)) \(j)") if arrAttData?[j].p?.isEmpty == true || arrAttData?[j].p == nil{ print("data dict load data \(dict) \(arrAttData?[j])") @@ -465,12 +514,13 @@ class ViewController: UIViewController { if let _ = itemd["\(arrAttData?[j].p ?? "")"] as? [String:Any] ,itemd["id"] as? String == dataSection["id"] as? String //issue same object { - return true + return true } } return false } + if arr.count > 0{ print("\(arrAttData?[j].p ?? "") exist \(arr) \(arrDictForChildDevices[arrDictForChildDevices.count-1]["d"] ?? "")" ) @@ -516,26 +566,26 @@ class ViewController: UIViewController { } finalDict = ["dt":now(), - "d":[["dt":now(), - "id":txtUniqueID.text ?? "", - "tg":parentTag, - "d":dict]]] as [String : Any] + "d":[["dt":now(), + "id":txtUniqueID.text ?? "", + "tg":parentTag, + "d":dict]]] as [String : Any] } } if arrParentData.count > 0 && - self.arrChildDevicesAttributes?.count ?? 0 > 0{ + self.arrChildDevicesAttributes?.count ?? 0 > 0{ var dictParentData = [String:Any]() let parentData = arrParentData[0]["Tag"] let arrData = parentData?[0] - + for k in 0...(arrData?.count ?? 0)-1{ // print("arrParentData \(arrParentData[k])") if arrData?[k].p?.isEmpty == true || arrData?[k].p == nil{ dictParentData.append(anotherDict: ["\(arrData?[k].ln! ?? "")": arrData?[k].value ?? ""]) }else{ - if dictParentData["\(arrData?[k].p ?? "")"] != nil{//arrAttData?[j].p{ + if dictParentData["\(arrData?[k].p ?? "")"] != nil{//arrAttData?[j].p{ let val = dictParentData["\(arrData?[k].p ?? "")"] as? [String:Any] let newVal = ["\(arrData?[k].ln! ?? "")":arrData?[k].value ?? ""] as? [String:Any] @@ -557,26 +607,106 @@ class ViewController: UIViewController { finalDict = ["dt":now(), "d":arrDictForChildDevices] } - + print("finalDict \(finalDict)") - DispatchQueue.main.async { - self.viewLoader.isHidden = true - } + self.hideLoader() //Format for sending data to SDK //dateTime format "2023-08-24T05:52:11.392Z" -// ["d": -// [[ -// "d": -// [ -// : ], -// "dt": , "id": , "tg": -// ] -// ], -// "dt": -// ] + // ["d": + // [[ + // "d": + // [ + // : ], + // "dt": , "id": , "tg": + // ] + // ], + // "dt": + // ] + + DispatchQueue.main.async { + self.txtView.text = "\(finalDict)" + } SDKClient.shared.sendData(data: finalDict) + + if self.arrChildDevicesAttributes?.count ?? 0 > 0{ + if sections > 0{ + for i in 0...sections-1{ +// _ = arrChildAttributeData[i]["Tag"]?[0].map({ +// $0.value = "" +// }) +// arrChildAttributeData = arrChild + + if let tagArray = arrChildAttributeData[i]["Tag"]?[0]{ + let updatedTagArray = tagArray.map { tag in + var mutableTag = tag + mutableTag.value = "" + return mutableTag + } + arrChildAttributeData[i]["Tag"]?[0] = updatedTagArray + } + } + }else{ +// _ = arrChildAttributeData[0]["Tag"]?[0].map({ +// $0.value = "" +// }) + + if let tagArray = arrChildAttributeData[0]["Tag"]?[0]{ + let updatedTagArray = tagArray.map { tag in + var mutableTag = tag + mutableTag.value = "" + return mutableTag + } + arrChildAttributeData[0]["Tag"]?[0] = updatedTagArray + } + } + }else if arrSimpleDeviceData.count > 0{ + if sections > 0{ + for i in 0...sections-1{ +// _ = arrSimpleDeviceData[i]["Tag"]?[0].map({ +// $0.value = "" +// }) + if let tagArray = arrSimpleDeviceData[i]["Tag"]?[0]{ + let updatedTagArray = tagArray.map { tag in + var mutableTag = tag + mutableTag.value = "" + return mutableTag + } + arrSimpleDeviceData[i]["Tag"]?[0] = updatedTagArray + } + } + }else{ +// _ = arrSimpleDeviceData[0]["Tag"]?[0].map({ +// $0.value = "" +// }) + if let tagArray = arrSimpleDeviceData[0]["Tag"]?[0]{ + let updatedTagArray = tagArray.map { tag in + var mutableTag = tag + mutableTag.value = "" + return mutableTag + } + arrSimpleDeviceData[0]["Tag"]?[0] = updatedTagArray + } + } + } + + if arrParentData.count > 0{ + if let tagArray = arrParentData[0]["Tag"]?[0]{ + let updatedTagArray = tagArray.map { tag in + var mutableTag = tag + mutableTag.value = "" + return mutableTag + } + arrParentData[0]["Tag"]?[0] = updatedTagArray + print("arrParentData \(arrParentData[0]["Tag"]?[0])") + } + } + + DispatchQueue.main.async { + self.isDataSent = true + self.tblProperty.reloadData() + } } //parse Identity reponse and idenitfy device type @@ -606,6 +736,7 @@ class ViewController: UIViewController { } } } else { + hideLoader() print("Error parsing syncCall Response") } } @@ -641,7 +772,9 @@ class ViewController: UIViewController { self.getTblViewHeight() self.enableMessageBtns() } + self.hideLoader() } catch { + self.hideLoader() print(error) } } @@ -683,6 +816,7 @@ class ViewController: UIViewController { tblViewHeightConstraint.constant = Double(totalCount) * tblViewRowheight print("total rows \(totalCount)") + self.hideLoader() DispatchQueue.main.async { self.tblProperty.reloadData() } @@ -712,6 +846,10 @@ class ViewController: UIViewController { self.viewLblTag.isHidden = true self.tblProperty.isHidden = true self.manageBtnControl(btn: self.btnChildDevicesOperation, isEnable: false) +// self.txtFieldDropDown.isEnabled = false + self.btnDropDown.isEnabled = true + self.txtCPID.isEnabled = true + self.txtUniqueID.isEnabled = true } } disableMsgBtns() @@ -724,6 +862,10 @@ class ViewController: UIViewController { self.btnConnect.setTitle(self.btnDisConnectTitle, for: .normal) self.btnStatus.backgroundColor = .green self.lblStatus.text = statusText.connected.rawValue +// self.txtFieldDropDown.isEnabled = true + self.btnDropDown.isEnabled = false + self.txtCPID.isEnabled = false + self.txtUniqueID.isEnabled = false if boolBtnEnable{ self.enableMessageBtns() @@ -769,6 +911,12 @@ class ViewController: UIViewController { } } + func hideLoader(){ + DispatchQueue.main.async { + self.viewLoader.isHidden = true + } + } + //get current date time func now() -> String { return toString(fromDateTime: Date()) @@ -793,8 +941,23 @@ class ViewController: UIViewController { //MARK: IBAction events + @IBAction func btnDropDownTapped(_ sender: Any) { + + DispatchQueue.main.async { + if (DropDown.VisibleDropDown != nil) && DropDown.VisibleDropDown?.isHidden == false { + self.imgArrow.transform = CGAffineTransform(rotationAngle: CGFloat.pi) + }else{ + self.imgArrow.transform = CGAffineTransform(rotationAngle: CGFloat.pi * 2) + } + } + self.btnEnvDropDown.show() + } + + + @IBAction func btnConnectTapped(_ sender: Any) { - if txtFieldDropDown.text != "" || ((txtFieldDropDown.text?.isEmpty) == nil){ +// if txtFieldDropDown.text != "" || ((txtFieldDropDown.text?.isEmpty) == nil){ + if env != nil{ if self.devivceStatus == .disconnected{ connectSDK() }else{ @@ -816,6 +979,7 @@ class ViewController: UIViewController { @IBAction func btnSendDataTapped(_ sender: Any) { DispatchQueue.main.async { self.viewLoader.isHidden = false + self.view.resignFirstResponder() } if self.arrChildAttributeData.count > 0{ loadData(data: arrChildAttributeData) @@ -852,18 +1016,20 @@ class ViewController: UIViewController { print("arrChildDevicesAttributes \(arrChildDevicesAttributes ?? [[:]])") var arrTag = [String]() - for i in 0...(attributeData?.att?.count ?? 1)-1 - { - for j in 0...((attributeData?.att?[i].d?.count ?? 0)-1){ - arrTag.append(attributeData?.att?[i].d?[j].tg as? String ?? "") + if let att = attributeData?.att{ + for i in 0...(attributeData?.att?.count ?? 1)-1 + { + for j in 0...((attributeData?.att?[i].d?.count ?? 0)-1){ + arrTag.append(attributeData?.att?[i].d?[j].tg as? String ?? "") + } } + let parentTag = self.identity?.d?.meta?.gtw?.tg + arrTag.removeAll(where: {$0 == parentTag}) + arrTag = Array(Set(arrTag)) + vc?.tagArray = arrTag + print("arrTag \(arrTag)") + self.navigationController?.pushViewController(vc!, animated: true) } - let parentTag = self.identity?.d?.meta?.gtw?.tg - arrTag.removeAll(where: {$0 == parentTag}) - arrTag = Array(Set(arrTag)) - vc?.tagArray = arrTag - print("arrTag \(arrTag)") - self.navigationController?.pushViewController(vc!, animated: true) } } @@ -932,6 +1098,10 @@ extension ViewController: UITableViewDelegate,UITableViewDataSource { let cell : PropertyCell = tableView.dequeueReusableCell(withIdentifier: "PropertyCell", for: indexPath) as! PropertyCell cell.selectionStyle = .none cell.txtField.delegate = self + if isDataSent{ + cell.txtField.text = "" + } + if self.arrChildAttributeData.count > indexPath.section, self.arrChildAttributeData.count > 0{ cell.setAttData(data: (arrChildAttributeData[indexPath.section]["Tag"]?[0])!,index: indexPath.row) }else if arrParentData.count > 0{ @@ -945,16 +1115,17 @@ extension ViewController: UITableViewDelegate,UITableViewDataSource { } extension ViewController:UITextFieldDelegate{ - + func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool { var v : UIView = textField repeat { v = v.superview! } while !(v is UITableViewCell) let cell = v as! PropertyCell // or UITableViewCell or whatever let ip = self.tblProperty.indexPath(for:cell)! if let text = textField.text, - let textRange = Range(range, in: text) { + let textRange = Range(range, in: text),!isDataSent { let updatedText = text.replacingCharacters(in: textRange, with: string) + self.isDataSent = false //update the updated textfield value in model if self.arrChildDevicesAttributes?.count ?? 0 > ip.section{ arrChildAttributeData[ip.section]["Tag"]?[0][ip.row].value = updatedText @@ -966,6 +1137,17 @@ extension ViewController:UITextFieldDelegate{ } return true } + + func textFieldDidBeginEditing(_ textField: UITextField) { + print("textFieldDidBeginEditing") + self.isDataSent = false + } + + func textFieldDidEndEditing(_ textField: UITextField) { + DispatchQueue.main.async { + self.view.resignFirstResponder() + } + } } @@ -978,3 +1160,6 @@ extension Dictionary where Key == String, Value == Any { } } } + + + diff --git a/IoTConnectDemo/IoTConnectDemo/client2301AWS.p12 b/IoTConnectDemo/IoTConnectDemo/client2301AWS.p12 deleted file mode 100644 index cc49a1d..0000000 Binary files a/IoTConnectDemo/IoTConnectDemo/client2301AWS.p12 and /dev/null differ diff --git a/IoTConnectDemo/Podfile b/IoTConnectDemo/Podfile index bbccb00..7b4da4a 100644 --- a/IoTConnectDemo/Podfile +++ b/IoTConnectDemo/Podfile @@ -10,6 +10,7 @@ target 'IoTConnectDemo' do # Pods for IoTConnectDemo pod 'IQKeyboardManagerSwift' pod 'CocoaMQTT', :git => 'https://github.com/emqx/CocoaMQTT.git', :tag => '2.1.6' + pod 'AppCenter' end target 'IoTConnectDemo_AWS' do @@ -19,5 +20,6 @@ target 'IoTConnectDemo_AWS' do # Pods for IoTConnectDemo pod 'IQKeyboardManagerSwift' pod 'CocoaMQTT', :git => 'https://github.com/emqx/CocoaMQTT.git', :tag => '2.1.6' + pod 'AppCenter' end diff --git a/IoTConnectDemo/Podfile.lock b/IoTConnectDemo/Podfile.lock index aa9d056..1776e08 100644 --- a/IoTConnectDemo/Podfile.lock +++ b/IoTConnectDemo/Podfile.lock @@ -1,4 +1,12 @@ PODS: + - AppCenter (5.0.4): + - AppCenter/Analytics (= 5.0.4) + - AppCenter/Crashes (= 5.0.4) + - AppCenter/Analytics (5.0.4): + - AppCenter/Core + - AppCenter/Core (5.0.4) + - AppCenter/Crashes (5.0.4): + - AppCenter/Core - CocoaMQTT (2.1.6): - CocoaMQTT/Core (= 2.1.6) - CocoaMQTT/Core (2.1.6): @@ -7,11 +15,13 @@ PODS: - MqttCocoaAsyncSocket (1.0.8) DEPENDENCIES: + - AppCenter - CocoaMQTT (from `https://github.com/emqx/CocoaMQTT.git`, tag `2.1.6`) - IQKeyboardManagerSwift SPEC REPOS: trunk: + - AppCenter - IQKeyboardManagerSwift - MqttCocoaAsyncSocket @@ -26,10 +36,11 @@ CHECKOUT OPTIONS: :tag: 2.1.6 SPEC CHECKSUMS: + AppCenter: 85c92db0759d2792a65eb61d6842d2e86611a49a CocoaMQTT: 1f206228b29318eabdacad0c2e4e88575922c27a IQKeyboardManagerSwift: 12d89768845bb77b55cc092ecc2b1f9370f06b76 MqttCocoaAsyncSocket: 77d3b74f76228dd5a05d1f9526eab101d415b30c -PODFILE CHECKSUM: 97edd60efc01ea1dffb9d2c36abee2122a85cdc1 +PODFILE CHECKSUM: 027dec611cb6370534dacb4564109f361ca5a7c7 -COCOAPODS: 1.15.2 +COCOAPODS: 1.13.0 diff --git a/README.md b/README.md index f3eb8ab..61b4dfe 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ + # IOT Connect SDK: iotconnect-iOS-sdk(Device Message 2.1) +![Static Badge](https://img.shields.io/badge/platform-ios-blue?style=flat) + This is iOS library to connect with IoTConnect cloud by MQTT This library only abstract JSON responses from both end D2C and C2D @@ -7,7 +10,7 @@ IoTConnect Device SDKs (System Development Kit) are highly secure and reliable, IoTConnect Device SDKs help you to easily and quickly connect your devices to IoTConnect. IoTConnect Device SDKs include a set of tools, libraries, developer guides with code samples, and porting guides. IoTConnect SDK is a full-fledged workshop for you to build innovative IoT products or solutions on your choice of hardware platforms. -## Features +# Features * The SDK supports to send telemetry data and receive commands from IoTConnect portal. * User can update firmware Over The Air using "OTA update" Feature supported by SDK. @@ -25,266 +28,252 @@ IoTConnect Device SDKs help you to easily and quickly connect your devices to Io # The SDK has two targets -* IoTConnect_2.0 - This target is for AZ platform. -* IoTConnect_2_AWS - This target is for AWS platform. - -# The Example also has two targets - -* IoTConnectDemo - This is AZ platform Demo -* IoTConnectDemo_AWS - This is AWS okatfirm Demo. - -# How to create XCFramework: - -* Open terminal -* Go to file path by this ocmmand - cd -* Create archive for device by this command: - xcodebuild archive \-workspace IoTConnect_2.0.xcworkspace \-scheme IoTConnect_2.0 \-configuration Release \-destination 'generic/platform=iOS' \-archivePath './build/IoTConnect_2.0.framework-iphoneos.xcarchive' \ SKIP_INSTALL=NO \ BUILD_LIBRARIES_FOR_DISTRIBUTION=YES -* Create archive for simlulator by this command: - xcodebuild archive \-workspace IoTConnect_2.0.xcworkspace \-scheme IoTConnect_2.0 \-configuration Release \-destination 'generic/platform=iOS Simulator' \-archivePath './build/IoTConnect_2.0.framework-iphonesimulator.xcarchive' \ SKIP_INSTALL=NO \ BUILD_LIBRARIES_FOR_DISTRIBUTION=YES -* Then create XCFramework by this command: - xcodebuild -create-xcframework -archive IoTConnect_2.0.framework-iphoneos.xcarchive -framework IoTConnect_2_0.framework -archive IoTConnect_2.0.framework-iphonesimulator.xcarchive -framework IoTConnect_2_0.framework -output xcframeworks/IoTConnect_2_0.xcframework - -# Example Usage: - -You must install COCOAMQTT as pod: - -pod 'CocoaMQTT', :git => 'https://github.com/emqx/CocoaMQTT.git', :tag => '2.1.6' - -The demo contains list of envioenment accrding to selected targets. - -* Prerequisite input data - -* "uniqueId" : Your device uniqueId -* "cpId" : It is the company code. It gets from the IoTConnect UI portal "Settings->Key Vault" -* "environment" : pass environment type from mentioned enum(EnvironmentType) i.e. AVNET, DEV, QA, PROD, POC, PREQA - -* You need a .p12 file to authenticate with certificate which is generated by a public key file and a private key file. You can generate the p12 file in the terminal - - openssl pkcs12 -export -clcerts -in client-cert.pem -inkey client-key.pem -out client.p12 - -* SdkOptions is for the SDK configuration and needs to parse in SDK object initialize call. You need to manage the below configuration as per your device authentication type. - -- public struct SDKClientOption { - public var ssl = SSLOption() - public var offlineStorage = OfflineStorageOption() - public var discoveryUrl: String? - public var debug: Bool = false - public var skipValidation = false - - public var devicePK = "" +* IoTConnect_2.0_az - This target is for AZ platform. +* IoTConnect_2_aws - This target is for AWS platform. + +# Third party Frameworks Used +> [!IMPORTANT] +> Please install below framework +- [CocoaMQTT](https://github.com/emqx/CocoaMQTT) for MQTTClient connection +- [Starscream](https://github.com/nuclearace/Starscream) for Websocket library +- [CocoaAsyncSocket](https://github.com/robbiehanson/CocoaAsyncSocket) for socket library + +# Requirements + * **iOS version:** Minimum 12.0 + * **Xcode version:** Xcode 15.2 or higher + * **Swift version:** Swift 5 + * **pod requirement:** + ``` + source 'https://github.com/CocoaPods/Specs.git' + platform :ios, '12.0' + use_frameworks! + target 'MyApp' do + pod 'CocoaMQTT', :git => 'https://github.com/emqx/CocoaMQTT.git', :tag => '2.1.6' + end + ``` +# SDK Usage + ## Frameworks path: + * There is a zip file named frameworks.zip, from where you can download frameowrksof AZ and AWs env. + + ## Import Framework: + * You have to drag and drop framework in bundle. + * Click on your Project's target section. + * In General section scroll down to Frameowrks, libraries, and embeded Content section. + * Here you can find IoTConnect2_az or IoTConnect2_aws SDK. Select Embed & Sign option from there as shown in image below. - public var cpId: String = "" - public var pf:IoTCPf? - public var env: IOTCEnvironment? - - public init () {} -} - -- Create object for SDKClientOption and init values -- make sure you are giving the value of cpId, env and pf value, - -* "devicePK": If authentication type is symmetric key then use it. -* "skipValidation": false = do not want to skip data validation for attributes, true= want to skip data validation for attributes -* "SSLOption": It is indicated to define the path of the certificate file. Mandatory for X.509/SSL device CA signed or self-signed authentication type only. - - certificatePath: your device certificate path - - password: your device certificate password -* "offlineStorage" : Define the configuration related to the offline data storage - - disabled : false = offline data storing, true = not storing offline data - - availSpaceInMb : Define the file size of off-line data which should be in (MB) - - fileCount : Number of files need to create for off-line data -* "cpID" : Enter the device CPID -* "env" : Enter device env -* "pf" : give the platform AZ or AWS - -If you do not provide off-line storage, it will set the default settings as per defined above. It may harm your device by storing the large data. Once memory gets full may chance to stop the execution. - -- To Initialize the SDK object and connect to the cloud. -``` - let objConfig = IoTConnectConfig( uniqueId:, mqttConnectionType: .userCredntialAuthentication, sdkOptions: sdkOptions) - - SDKClient.shared.initialize(config: objConfig) -``` - -- To receive the command from Cloud to Device(C2D). - -``` - SDKClient.shared.getDeviceCallBack { (message) in - - - } - -``` - -- To receive Device Command C2D(C2D) -``` - SDKClient.shared.onDeviceCommand { message in + ![Screenshot 2024-05-07 at 10 39 44 AM](https://github.com/avnet-iotconnect/iotc-ios-swift-sdk/assets/135005218/436d8985-1e0e-4246-946a-b8c7e7eeea6a) + + ## Input data + ### Required Values: + | Parameters | Description | + | --- | --- | + | uniqueId | Your device uniqueID | + | cpId | It is the company code. It gets from the IoTConnect UI portal "Settings->Key Vault | + | env | Pass environment type from mentioned enum(EnvironmentType) i.e. AVNET, DEV, QA, PROD, POC, PREQA | + | pf | Give the platform AZ or AWS | + + ### Optional values + * You need a .p12 file to authenticate with certificate. + + | Parameters | Description | + | --- | --- | + | devicePK | If authentication type is symmetric key then use it | + | skipValidation | false = do not want to skip data validation for attributes, true= want to skip data validation for attributes | + | SSLOption | It is indicated to define the path of the certificate file. Mandatory for X.509/SSL device CA signed or self-signed authentication type only. | + | certificatePath | Your device certificate path | + | password | Your device certificate password | + | offlineStorage | Define the configuration related to the offline data storage | + | disabled | false = offline data storing, true = not storing offline data | + | availSpaceInMb | Define the file size of off-line data which should be in (MB) | + | fileCount | Number of files need to create for off-line data | + + ## Functions and callbacks: + + - To Initialize the SDK object and connect to the cloud. If there is any error while initialising it will come in this completion handler. + ```swift + let objConfig = IoTConnectConfig( uniqueId:, mqttConnectionType: .userCredntialAuthentication, sdkOptions: sdkOptions) + SDKClient.shared.initialize(config: objConfig) { errorMsg in + + } + ``` + + - To receive the command from Cloud to Device(C2D), or any error during the process will come in this callback. + ```swift + SDKClient.shared.getDeviceCallBack { (message) in + + } + ``` + + - To receive Device Command C2D(C2D) + ```swift + SDKClient.shared.onDeviceCommand { message in - } -``` + } + ``` -- To receive OTA Command(C2D) -``` - SDKClient.shared.onOTACommand { message in + - To receive OTA Command(C2D) + ```swift + SDKClient.shared.onOTACommand { message in - } -``` + } + ``` -- To receive Module Command(C2D) -``` - SDKClient.shared.onModuleCommand { message in + - To receive Module Command(C2D) + ```swift + SDKClient.shared.onModuleCommand { message in - } -``` + } + ``` -- To receive Attributes Change Command(C2D) + - To receive Attributes Change Command(C2D) + ```swift + SDKClient.shared.onAttrChangeCommand { message in -``` - SDKClient.shared.onAttrChangeCommand { message in - - - } + } + ``` -``` + - To receive Twin Change Command(C2D) + ```swift + SDKClient.shared.onTwinChangeCommand { (twinMessage) in -- To receive Twin Change Command(C2D) + } + ``` -``` - SDKClient.shared.onTwinChangeCommand { (twinMessage) in - + - To receive Rule Change Command(C2D) + ```swift + SDKClient.shared.onRuleChangeCommand { response in - } - -``` + } + ``` -- To receive Rule Change Command(C2D) -``` - SDKClient.shared.onRuleChangeCommand { response in - - } -``` - -- To receive Device Change Command(C2D) -``` - SDKClient.shared.onDeviceChangeCommand { response in + - To receive Device Change Command(C2D) + ```swift + SDKClient.shared.onDeviceChangeCommand { response in - } + } + ``` -``` - -- To get the list of attributes with respective device. -``` - SDKClient.shared.getAttributes { attrinuteResponse in + - To get the list of attributes with respective device. + ```swift + SDKClient.shared.getAttributes { attrinuteResponse in - } -``` - -- To get the all twin property Desired and Reported -``` - SDKClient.shared.getAllTwins() + } + ``` -``` + - To get the all twin property Desired and Reported + ```swift + SDKClient.shared.getAllTwins() + ``` -- To get the child devices -``` - SDKClient.shared.getChildDevices { response in + - To get the child devices + ```swift + SDKClient.shared.getChildDevices { response in - } - -``` + } + ``` -- To create child device -``` - SDKClient.shared.createChildDevice(deviceId: , deviceTag:, displayName: , createChildCallBack:{ (response) in + - To create child device + ```swift + SDKClient.shared.createChildDevice(deviceId: , deviceTag:, displayName: , createChildCallBack:{ (response) in - } -``` + } + ``` -- To delete child device -``` - SDKClient.shared.deleteChildDevice(deviceId:) { response in + - To delete child device + ```swift + SDKClient.shared.deleteChildDevice(deviceId:) { response in - } -``` - -- This is the standard data input format for non Gateway device to send the data on IoTConnect cloud(D2C) Please make sure to pass of any attribute is in string. -``` - ["d": - [ - [ - "d":[: ], - "dt": , "id": , "tg": - ] - ], - "dt": + } + ``` + + - This is the standard data input format for non Gateway device to send the data on IoTConnect cloud(D2C) Please make sure to pass of any attribute is in string. + ```swift + [ + "d": [ + [ + "d": [ + : + ], + "dt": , + "id": , + "tg": + ] + ], + "dt": ] -``` + ``` -- This is the standard data input format for Gateway device to send the data on IoTConnect cloud(D2C) Please make sure to pass of any attribute is in string. + - This is the standard data input format for Gateway device to send the data on IoTConnect cloud(D2C) Please make sure to pass of any attribute is in string. -``` -["dt": , -"d": [ + ```json + [ + "dt": , + "d": [ "id”:, "dt": , "tg": "d": [: ], - ], - ["dt": , - "tg": , - "id":, + ], + [ + "dt": , + "tg": , + "id":, "d": [: ] - ], - ["dt": , - "id": , - "tg": - "d": [ - : , - : - ] - ] + ], + [ + "dt": , + "id": , + "tg": + "d": [ + : , + : + ] + ] ] -] -``` + ``` -## Third party Frameworks Used -- [CocoaMQTT] (https://github.com/emqx/CocoaMQTT) for MQTTClient connection -- [Starscream] (https://github.com/nuclearace/Starscream) for Websocket library -- [CocoaAsyncSocket] (https://github.com/robbiehanson/CocoaAsyncSocket) for socket library +## Usage Example: -## Build Details -- IDE -- - Please use Xcode 12.4 to compile -- Targets -- - IoTConnect -- - IoTConnect_2.0 -- - IoTConnectDemo -- Key Branches -- - **develop:** contains the latest dev code. -- - **master:** this contains the code for the current app store release. - -## Usage - -```Swift -import IoTConnect - -let objConfig = IoTConnectConfig(cpId: "{replace-with-your-id}", - uniqueId: "{replace-with-your-id}", - env: .QA, - mqttConnectionType: .userCredntialAuthentication, - sdkOptions: nil) -SDKClient.shared.initialize(config: objConfig) - -SDKClient.shared.getDeviceCallBack { (message) in - print("message: ", message as Any) -} - -SDKClient.shared.getTwinUpdateCallBack { (twinMessage) in - print("twinMessage: ", twinMessage as Any) -} + ```swift + import IoTConnect_2_az + + var sdkOptions = SDKClientOption() + + //If device need p12 to authenticate + sdkOptions.ssl.certificatePath = Bundle.main.path(forResource: , ofType: nil) + sdkOptions.ssl.password = "" + + sdkOptions.env = + sdkOptions.cpId = + sdkOptions.pf = + let objConfig = IoTConnectConfig(uniqueId:"{replace-with-your-id}", + mqttConnectionType: .certificateAuthentication, + sdkOptions: sdkOptions) + + SDKClient.shared.initialize(config: objConfig) + + SDKClient.shared.getDeviceCallBack { (message) in + print("message: ", message as Any) + } + + SDKClient.shared.getTwinUpdateCallBack { (twinMessage) in + print("twinMessage: ", twinMessage as Any) + } ``` +## Build Details + +| Targets | Description | +| --- | --- | +| IoTConnect_2_AWS | This target contains code for IotCOnnectSDK code for AWS platform. | +| IoTConnect_2.0 | This target contains code for IotCOnnectSDK code for AZ platform. | +| IoTConnectDemo | This target contains code for IotCOnnectSDK Demo for AZ platform. | +| IoTConnectDemo_AWS | This target contains code for IotCOnnectSDK Demo for AWS platform. | + +## Key Branches +- **develop:** contains the latest dev code. +- **master:** this contains the code for the current app store release. ## License [Softweb Proprietor](https://www.softwebsolutions.com)